diff --git a/CHANGELOG.md b/CHANGELOG.md index 935baccbc..93b142593 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,4 +1,4 @@ -## 0.8.4 (Unreleased) +## 0.8.4 (June 11, 2018) IMPROVEMENTS: * core: Updated serf library to improve how leave intents are handled [[GH-4278](https://github.com/hashicorp/nomad/issues/4278)] @@ -36,12 +36,14 @@ IMPROVEMENTS: an empty string rather than the field key. [[GH-3720](https://github.com/hashicorp/nomad/issues/3720)] * ui: Show node drain, node eligibility, and node drain strategy information in the Client list and Client detail pages [[GH-4353](https://github.com/hashicorp/nomad/issues/4353)] * ui: Show reschedule-event information for allocations that were server-side rescheduled [[GH-4254](https://github.com/hashicorp/nomad/issues/4254)] + * ui: Show the running deployment Progress Deadlines on the Job Detail Page [[GH-4388](https://github.com/hashicorp/nomad/issues/4388)] * ui: Show driver health status and node events on the Client Detail Page [[GH-4294](https://github.com/hashicorp/nomad/issues/4294)] * ui: Fuzzy and tokenized search on the Jobs List Page [[GH-4201](https://github.com/hashicorp/nomad/issues/4201)] * ui: The stop job button looks more dangerous [[GH-4339](https://github.com/hashicorp/nomad/issues/4339)] BUG FIXES: * core: Clean up leaked deployments on restoration [[GH-4329](https://github.com/hashicorp/nomad/issues/4329)] + * core: Fix regression to allow for dynamic Vault configuration reload [[GH-4395](https://github.com/hashicorp/nomad/issues/4395)] * core: Fix bug where older failed allocations of jobs that have been updated to a newer version were not being garbage collected [[GH-4313](https://github.com/hashicorp/nomad/issues/4313)] * core: Fix bug when upgrading an existing server to Raft protocol 3 that @@ -57,9 +59,10 @@ BUG FIXES: * driver/exec: Disable exec on non-linux platforms [[GH-4366](https://github.com/hashicorp/nomad/issues/4366)] * rpc: Fix RPC tunneling when running both client/server on one machine [[GH-4317](https://github.com/hashicorp/nomad/issues/4317)] * ui: Track the method in XHR tracking to prevent errant ACL error dialogs when stopping a job [[GH-4319](https://github.com/hashicorp/nomad/issues/4319)] + * ui: Make the tasks list on the Allocation Detail Page look and behave like other lists [[GH-4387](https://github.com/hashicorp/nomad/issues/4387)] [[GH-4393](https://github.com/hashicorp/nomad/issues/4393)] + * ui: Use the Network IP, not the Node IP, for task addresses [[GH-4369](https://github.com/hashicorp/nomad/issues/4369)] * ui: Use Polling instead of Streaming for logs in Safari [[GH-4335](https://github.com/hashicorp/nomad/issues/4335)] * ui: Track PlaceCanaries in deployment metrics [[GH-4325](https://github.com/hashicorp/nomad/issues/4325)] - * ui: Use the Network IP, not the Node IP, for task addresses [[GH-4369](https://github.com/hashicorp/nomad/issues/4369)] ## 0.8.3 (April 27, 2018) diff --git a/GNUmakefile b/GNUmakefile index e6dcbfd9b..d5a5e37f8 100644 --- a/GNUmakefile +++ b/GNUmakefile @@ -288,7 +288,6 @@ test-ui: ## Run Nomad UI test suite @cd ui && npm rebuild node-sass @cd ui && yarn install @echo "--> Running ember tests" - @cd ui && phantomjs --version @cd ui && npm test .PHONY: ember-dist diff --git a/Vagrantfile b/Vagrantfile index 46d6882e5..36a44e44f 100644 --- a/Vagrantfile +++ b/Vagrantfile @@ -15,6 +15,22 @@ Vagrant.configure(2) do |config| vmCfg = configureLinuxProvisioners(vmCfg) + vmCfg.vm.synced_folder '.', + '/opt/gopath/src/github.com/hashicorp/nomad' + + vmCfg.vm.provision "shell", + privileged: false, + path: './scripts/vagrant-linux-unpriv-bootstrap.sh' + end + + config.vm.define "linux-ui", autostart: false, primary: false do |vmCfg| + vmCfg.vm.box = LINUX_BASE_BOX + vmCfg.vm.hostname = "linux" + vmCfg = configureProviders vmCfg, + cpus: suggestedCPUCores() + + vmCfg = configureLinuxProvisioners(vmCfg) + vmCfg.vm.synced_folder '.', '/opt/gopath/src/github.com/hashicorp/nomad' diff --git a/api/jobs.go b/api/jobs.go index 254322977..45a7c180b 100644 --- a/api/jobs.go +++ b/api/jobs.go @@ -614,6 +614,7 @@ type Job struct { Update *UpdateStrategy Periodic *PeriodicConfig ParameterizedJob *ParameterizedJobConfig + Dispatched bool Payload []byte Reschedule *ReschedulePolicy Migrate *MigrateStrategy @@ -636,7 +637,7 @@ func (j *Job) IsPeriodic() bool { // IsParameterized returns whether a job is parameterized job. func (j *Job) IsParameterized() bool { - return j.ParameterizedJob != nil + return j.ParameterizedJob != nil && !j.Dispatched } func (j *Job) Canonicalize() { diff --git a/client/allocdir/alloc_dir_test.go b/client/allocdir/alloc_dir_test.go index 93799a78d..d3a71e3b7 100644 --- a/client/allocdir/alloc_dir_test.go +++ b/client/allocdir/alloc_dir_test.go @@ -15,8 +15,9 @@ import ( cstructs "github.com/hashicorp/nomad/client/structs" "github.com/hashicorp/nomad/client/testutil" + "github.com/hashicorp/nomad/helper/testlog" "github.com/hashicorp/nomad/nomad/structs" - "github.com/kr/pretty" + "github.com/stretchr/testify/require" ) var ( @@ -45,13 +46,6 @@ var ( } ) -func testLogger() *log.Logger { - if testing.Verbose() { - return log.New(os.Stderr, "", log.LstdFlags) - } - return log.New(ioutil.Discard, "", log.LstdFlags) -} - // Test that AllocDir.Build builds just the alloc directory. func TestAllocDir_BuildAlloc(t *testing.T) { tmp, err := ioutil.TempDir("", "AllocDir") @@ -60,7 +54,7 @@ func TestAllocDir_BuildAlloc(t *testing.T) { } defer os.RemoveAll(tmp) - d := NewAllocDir(testLogger(), tmp) + d := NewAllocDir(testlog.Logger(t), tmp) defer d.Destroy() d.NewTaskDir(t1.Name) d.NewTaskDir(t2.Name) @@ -97,7 +91,7 @@ func TestAllocDir_MountSharedAlloc(t *testing.T) { } defer os.RemoveAll(tmp) - d := NewAllocDir(testLogger(), tmp) + d := NewAllocDir(testlog.Logger(t), tmp) defer d.Destroy() if err := d.Build(); err != nil { t.Fatalf("Build() failed: %v", err) @@ -142,7 +136,7 @@ func TestAllocDir_Snapshot(t *testing.T) { } defer os.RemoveAll(tmp) - d := NewAllocDir(testLogger(), tmp) + d := NewAllocDir(testlog.Logger(t), tmp) defer d.Destroy() if err := d.Build(); err != nil { t.Fatalf("Build() failed: %v", err) @@ -229,13 +223,13 @@ func TestAllocDir_Move(t *testing.T) { defer os.RemoveAll(tmp2) // Create two alloc dirs - d1 := NewAllocDir(testLogger(), tmp1) + d1 := NewAllocDir(testlog.Logger(t), tmp1) if err := d1.Build(); err != nil { t.Fatalf("Build() failed: %v", err) } defer d1.Destroy() - d2 := NewAllocDir(testLogger(), tmp2) + d2 := NewAllocDir(testlog.Logger(t), tmp2) if err := d2.Build(); err != nil { t.Fatalf("Build() failed: %v", err) } @@ -290,7 +284,7 @@ func TestAllocDir_EscapeChecking(t *testing.T) { } defer os.RemoveAll(tmp) - d := NewAllocDir(testLogger(), tmp) + d := NewAllocDir(testlog.Logger(t), tmp) if err := d.Build(); err != nil { t.Fatalf("Build() failed: %v", err) } @@ -331,7 +325,7 @@ func TestAllocDir_ReadAt_SecretDir(t *testing.T) { } defer os.RemoveAll(tmp) - d := NewAllocDir(testLogger(), tmp) + d := NewAllocDir(testlog.Logger(t), tmp) if err := d.Build(); err != nil { t.Fatalf("Build() failed: %v", err) } @@ -416,14 +410,14 @@ func TestAllocDir_CreateDir(t *testing.T) { // TestAllocDir_Copy asserts that AllocDir.Copy does a deep copy of itself and // all TaskDirs. func TestAllocDir_Copy(t *testing.T) { - a := NewAllocDir(testLogger(), "foo") + a := NewAllocDir(testlog.Logger(t), "foo") a.NewTaskDir("bar") a.NewTaskDir("baz") b := a.Copy() - if diff := pretty.Diff(a, b); len(diff) > 0 { - t.Errorf("differences between copies: %# v", pretty.Formatter(diff)) - } + + // Clear the logger + require.Equal(t, a, b) // Make sure TaskDirs map is copied a.NewTaskDir("new") diff --git a/client/allocdir/task_dir_linux_test.go b/client/allocdir/task_dir_linux_test.go index 43faf3c85..0f4da6bce 100644 --- a/client/allocdir/task_dir_linux_test.go +++ b/client/allocdir/task_dir_linux_test.go @@ -6,6 +6,7 @@ import ( "path/filepath" "testing" + "github.com/hashicorp/nomad/helper/testlog" "golang.org/x/sys/unix" ) @@ -21,7 +22,7 @@ func TestLinuxSpecialDirs(t *testing.T) { } defer os.RemoveAll(allocDir) - td := newTaskDir(testLogger(), allocDir, "test") + td := newTaskDir(testlog.Logger(t), allocDir, "test") // Despite the task dir not existing, unmountSpecialDirs should *not* // return an error diff --git a/client/allocdir/task_dir_test.go b/client/allocdir/task_dir_test.go index bc213ce1a..318e48413 100644 --- a/client/allocdir/task_dir_test.go +++ b/client/allocdir/task_dir_test.go @@ -7,6 +7,7 @@ import ( "testing" cstructs "github.com/hashicorp/nomad/client/structs" + "github.com/hashicorp/nomad/helper/testlog" ) // Test that building a chroot will skip nonexistent directories. @@ -17,7 +18,7 @@ func TestTaskDir_EmbedNonexistent(t *testing.T) { } defer os.RemoveAll(tmp) - d := NewAllocDir(testLogger(), tmp) + d := NewAllocDir(testlog.Logger(t), tmp) defer d.Destroy() td := d.NewTaskDir(t1.Name) if err := d.Build(); err != nil { @@ -39,7 +40,7 @@ func TestTaskDir_EmbedDirs(t *testing.T) { } defer os.RemoveAll(tmp) - d := NewAllocDir(testLogger(), tmp) + d := NewAllocDir(testlog.Logger(t), tmp) defer d.Destroy() td := d.NewTaskDir(t1.Name) if err := d.Build(); err != nil { @@ -96,7 +97,7 @@ func TestTaskDir_NonRoot_Image(t *testing.T) { } defer os.RemoveAll(tmp) - d := NewAllocDir(testLogger(), tmp) + d := NewAllocDir(testlog.Logger(t), tmp) defer d.Destroy() td := d.NewTaskDir(t1.Name) if err := d.Build(); err != nil { @@ -119,7 +120,7 @@ func TestTaskDir_NonRoot(t *testing.T) { } defer os.RemoveAll(tmp) - d := NewAllocDir(testLogger(), tmp) + d := NewAllocDir(testlog.Logger(t), tmp) defer d.Destroy() td := d.NewTaskDir(t1.Name) if err := d.Build(); err != nil { diff --git a/client/alloc_runner.go b/client/allocrunner/alloc_runner.go similarity index 86% rename from client/alloc_runner.go rename to client/allocrunner/alloc_runner.go index aeb284a3b..590685751 100644 --- a/client/alloc_runner.go +++ b/client/allocrunner/alloc_runner.go @@ -1,10 +1,9 @@ -package client +package allocrunner import ( "context" "fmt" "log" - "os" "path/filepath" "sync" "time" @@ -13,7 +12,10 @@ import ( "github.com/boltdb/bolt" "github.com/hashicorp/go-multierror" "github.com/hashicorp/nomad/client/allocdir" + "github.com/hashicorp/nomad/client/allocrunner/taskrunner" "github.com/hashicorp/nomad/client/config" + consulApi "github.com/hashicorp/nomad/client/consul" + "github.com/hashicorp/nomad/client/state" "github.com/hashicorp/nomad/client/vaultclient" "github.com/hashicorp/nomad/helper" "github.com/hashicorp/nomad/nomad/structs" @@ -60,7 +62,7 @@ type AllocRunner struct { allocDir *allocdir.AllocDir allocDirLock sync.Mutex - tasks map[string]*TaskRunner + tasks map[string]*taskrunner.TaskRunner taskStates map[string]*structs.TaskState restored map[string]struct{} taskLock sync.RWMutex @@ -70,7 +72,7 @@ type AllocRunner struct { updateCh chan *structs.Allocation vaultClient vaultclient.VaultClient - consulClient ConsulServiceAPI + consulClient consulApi.ConsulServiceAPI // prevAlloc allows for Waiting until a previous allocation exits and // the migrates it data. If sticky volumes aren't used and there's no @@ -109,29 +111,6 @@ type AllocRunner struct { baseLabels []metrics.Label } -// COMPAT: Remove in 0.7.0 -// allocRunnerState is used to snapshot the state of the alloc runner -type allocRunnerState struct { - Version string - Alloc *structs.Allocation - AllocDir *allocdir.AllocDir - AllocClientStatus string - AllocClientDescription string - - // COMPAT: Remove in 0.7.0: removing will break upgrading directly from - // 0.5.2, so don't remove in the 0.6 series. - // Context is deprecated and only used to migrate from older releases. - // It will be removed in the future. - Context *struct { - AllocID string // unused; included for completeness - AllocDir struct { - AllocDir string - SharedDir string // unused; included for completeness - TaskDirs map[string]string - } - } `json:"Context,omitempty"` -} - // allocRunnerAllocState is state that only has to be written when the alloc // changes. type allocRunnerAllocState struct { @@ -154,7 +133,7 @@ type allocRunnerMutableState struct { // NewAllocRunner is used to create a new allocation context func NewAllocRunner(logger *log.Logger, config *config.Config, stateDB *bolt.DB, updater AllocStateUpdater, - alloc *structs.Allocation, vaultClient vaultclient.VaultClient, consulClient ConsulServiceAPI, + alloc *structs.Allocation, vaultClient vaultclient.VaultClient, consulClient consulApi.ConsulServiceAPI, prevAlloc prevAllocWatcher) *AllocRunner { ar := &AllocRunner{ @@ -168,7 +147,7 @@ func NewAllocRunner(logger *log.Logger, config *config.Config, stateDB *bolt.DB, prevAlloc: prevAlloc, dirtyCh: make(chan struct{}, 1), allocDir: allocdir.NewAllocDir(logger, filepath.Join(config.AllocDir, alloc.ID)), - tasks: make(map[string]*TaskRunner), + tasks: make(map[string]*taskrunner.TaskRunner), taskStates: copyTaskStates(alloc.TaskStates), restored: make(map[string]struct{}), updateCh: make(chan *structs.Allocation, 64), @@ -220,82 +199,44 @@ func (r *AllocRunner) pre060StateFilePath() string { // RestoreState is used to restore the state of the alloc runner func (r *AllocRunner) RestoreState() error { - - // COMPAT: Remove in 0.7.0 - // Check if the old snapshot is there - oldPath := r.pre060StateFilePath() - var snap allocRunnerState - var upgrading bool - if err := pre060RestoreState(oldPath, &snap); err == nil { - // Restore fields - r.logger.Printf("[INFO] client: restoring pre v0.6.0 alloc runner state for alloc %q", r.allocID) - r.alloc = snap.Alloc - r.allocDir = snap.AllocDir - r.allocClientStatus = snap.AllocClientStatus - r.allocClientDescription = snap.AllocClientDescription - - if r.alloc != nil { - r.taskStates = snap.Alloc.TaskStates - } - - // COMPAT: Remove in 0.7.0 - // #2132 Upgrade path: if snap.AllocDir is nil, try to convert old - // Context struct to new AllocDir struct - if snap.AllocDir == nil && snap.Context != nil { - r.logger.Printf("[DEBUG] client: migrating state snapshot for alloc %q", r.allocID) - r.allocDir = allocdir.NewAllocDir(r.logger, snap.Context.AllocDir.AllocDir) - for taskName := range snap.Context.AllocDir.TaskDirs { - r.allocDir.NewTaskDir(taskName) - } - } - - // Delete the old state - os.RemoveAll(oldPath) - upgrading = true - } else if !os.IsNotExist(err) { - // Something corrupt in the old state file - return err - } else { - // We are doing a normal restore - err := r.stateDB.View(func(tx *bolt.Tx) error { - bkt, err := getAllocationBucket(tx, r.allocID) - if err != nil { - return fmt.Errorf("failed to get allocation bucket: %v", err) - } - - // Get the state objects - var mutable allocRunnerMutableState - var immutable allocRunnerImmutableState - var allocState allocRunnerAllocState - var allocDir allocdir.AllocDir - - if err := getObject(bkt, allocRunnerStateAllocKey, &allocState); err != nil { - return fmt.Errorf("failed to read alloc runner alloc state: %v", err) - } - if err := getObject(bkt, allocRunnerStateImmutableKey, &immutable); err != nil { - return fmt.Errorf("failed to read alloc runner immutable state: %v", err) - } - if err := getObject(bkt, allocRunnerStateMutableKey, &mutable); err != nil { - return fmt.Errorf("failed to read alloc runner mutable state: %v", err) - } - if err := getObject(bkt, allocRunnerStateAllocDirKey, &allocDir); err != nil { - return fmt.Errorf("failed to read alloc runner alloc_dir state: %v", err) - } - - // Populate the fields - r.alloc = allocState.Alloc - r.allocDir = &allocDir - r.allocClientStatus = mutable.AllocClientStatus - r.allocClientDescription = mutable.AllocClientDescription - r.taskStates = mutable.TaskStates - r.alloc.ClientStatus = getClientStatus(r.taskStates) - r.alloc.DeploymentStatus = mutable.DeploymentStatus - return nil - }) - + err := r.stateDB.View(func(tx *bolt.Tx) error { + bkt, err := state.GetAllocationBucket(tx, r.allocID) if err != nil { - return fmt.Errorf("failed to read allocation state: %v", err) + return fmt.Errorf("failed to get allocation bucket: %v", err) } + + // Get the state objects + var mutable allocRunnerMutableState + var immutable allocRunnerImmutableState + var allocState allocRunnerAllocState + var allocDir allocdir.AllocDir + + if err := state.GetObject(bkt, allocRunnerStateAllocKey, &allocState); err != nil { + return fmt.Errorf("failed to read alloc runner alloc state: %v", err) + } + if err := state.GetObject(bkt, allocRunnerStateImmutableKey, &immutable); err != nil { + return fmt.Errorf("failed to read alloc runner immutable state: %v", err) + } + if err := state.GetObject(bkt, allocRunnerStateMutableKey, &mutable); err != nil { + return fmt.Errorf("failed to read alloc runner mutable state: %v", err) + } + if err := state.GetObject(bkt, allocRunnerStateAllocDirKey, &allocDir); err != nil { + return fmt.Errorf("failed to read alloc runner alloc_dir state: %v", err) + } + + // Populate the fields + r.alloc = allocState.Alloc + r.allocDir = &allocDir + r.allocClientStatus = mutable.AllocClientStatus + r.allocClientDescription = mutable.AllocClientDescription + r.taskStates = mutable.TaskStates + r.alloc.ClientStatus = getClientStatus(r.taskStates) + r.alloc.DeploymentStatus = mutable.DeploymentStatus + return nil + }) + + if err != nil { + return fmt.Errorf("failed to read allocation state: %v", err) } var snapshotErrors multierror.Error @@ -344,7 +285,7 @@ func (r *AllocRunner) RestoreState() error { continue } - tr := NewTaskRunner(r.logger, r.config, r.stateDB, r.setTaskState, td, r.Alloc(), task, r.vaultClient, r.consulClient) + tr := taskrunner.NewTaskRunner(r.logger, r.config, r.stateDB, r.setTaskState, td, r.Alloc(), task, r.vaultClient, r.consulClient) r.tasks[name] = tr if restartReason, err := tr.RestoreState(); err != nil { @@ -354,12 +295,6 @@ func (r *AllocRunner) RestoreState() error { // Only start if the alloc isn't in a terminal status. go tr.Run() - if upgrading { - if err := tr.SaveState(); err != nil { - r.logger.Printf("[WARN] client: initial save state for alloc %s task %s failed: %v", r.allocID, name, err) - } - } - // Restart task runner if RestoreState gave a reason if restartReason != "" { r.logger.Printf("[INFO] client: restarting alloc %s task %s: %v", r.allocID, name, restartReason) @@ -367,6 +302,11 @@ func (r *AllocRunner) RestoreState() error { tr.Restart("upgrade", restartReason, failure) } } else { + // XXX This does nothing and is broken since the task runner is not + // running yet, and there is nothing listening to the destroy ch. + // XXX When a single task is dead in the allocation we should kill + // all the task. This currently does NOT happen. Re-enable test: + // TestAllocRunner_TaskLeader_StopRestoredTG tr.Destroy(taskDestroyEvent) } } @@ -389,7 +329,7 @@ func (r *AllocRunner) SaveState() error { for _, tr := range runners { if err := tr.SaveState(); err != nil { mErr.Errors = append(mErr.Errors, fmt.Errorf("failed to save state for alloc %s task %q: %v", - r.allocID, tr.task.Name, err)) + r.allocID, tr.Name(), err)) } } return mErr.ErrorOrNil() @@ -419,7 +359,7 @@ func (r *AllocRunner) saveAllocRunnerState() error { return r.stateDB.Batch(func(tx *bolt.Tx) error { // Grab the allocation bucket - allocBkt, err := getAllocationBucket(tx, r.allocID) + allocBkt, err := state.GetAllocationBucket(tx, r.allocID) if err != nil { return fmt.Errorf("failed to retrieve allocation bucket: %v", err) } @@ -433,7 +373,7 @@ func (r *AllocRunner) saveAllocRunnerState() error { Alloc: alloc, } - if err := putObject(allocBkt, allocRunnerStateAllocKey, &allocState); err != nil { + if err := state.PutObject(allocBkt, allocRunnerStateAllocKey, &allocState); err != nil { return fmt.Errorf("failed to write alloc_runner alloc state: %v", err) } @@ -450,7 +390,7 @@ func (r *AllocRunner) saveAllocRunnerState() error { Version: r.config.Version.VersionNumber(), } - if err := putObject(allocBkt, allocRunnerStateImmutableKey, &immutable); err != nil { + if err := state.PutObject(allocBkt, allocRunnerStateImmutableKey, &immutable); err != nil { return fmt.Errorf("failed to write alloc_runner immutable state: %v", err) } @@ -461,7 +401,7 @@ func (r *AllocRunner) saveAllocRunnerState() error { // Write the alloc dir data if it hasn't been written before and it exists. if !r.allocDirPersisted && allocDir != nil { - if err := putObject(allocBkt, allocRunnerStateAllocDirKey, allocDir); err != nil { + if err := state.PutObject(allocBkt, allocRunnerStateAllocDirKey, allocDir); err != nil { return fmt.Errorf("failed to write alloc_runner allocDir state: %v", err) } @@ -478,7 +418,7 @@ func (r *AllocRunner) saveAllocRunnerState() error { DeploymentStatus: alloc.DeploymentStatus, } - if err := putObject(allocBkt, allocRunnerStateMutableKey, &mutable); err != nil { + if err := state.PutObject(allocBkt, allocRunnerStateMutableKey, &mutable); err != nil { return fmt.Errorf("failed to write alloc_runner mutable state: %v", err) } @@ -492,7 +432,7 @@ func (r *AllocRunner) DestroyState() error { defer r.allocStateLock.Unlock() return r.stateDB.Update(func(tx *bolt.Tx) error { - if err := deleteAllocationBucket(tx, r.allocID); err != nil { + if err := state.DeleteAllocationBucket(tx, r.allocID); err != nil { return fmt.Errorf("failed to delete allocation bucket: %v", err) } return nil @@ -754,14 +694,14 @@ func (r *AllocRunner) setTaskState(taskName, state string, event *structs.TaskEv // Find all tasks that are not the one that is dead and check if the one // that is dead is a leader - var otherTaskRunners []*TaskRunner + var otherTaskRunners []*taskrunner.TaskRunner var otherTaskNames []string leader := false for task, tr := range r.tasks { if task != taskName { otherTaskRunners = append(otherTaskRunners, tr) otherTaskNames = append(otherTaskNames, task) - } else if tr.task.Leader { + } else if tr.IsLeader() { leader = true } } @@ -784,6 +724,7 @@ func (r *AllocRunner) setTaskState(taskName, state string, event *structs.TaskEv metrics.IncrCounter([]string{"client", "allocs", r.alloc.Job.Name, r.alloc.TaskGroup, taskName, "complete"}, 1) } } + // If the task failed, we should kill all the other tasks in the task group. if taskState.Failed { for _, tr := range otherTaskRunners { @@ -922,7 +863,7 @@ func (r *AllocRunner) Run() { taskdir := r.allocDir.NewTaskDir(task.Name) r.allocDirLock.Unlock() - tr := NewTaskRunner(r.logger, r.config, r.stateDB, r.setTaskState, taskdir, r.Alloc(), task.Copy(), r.vaultClient, r.consulClient) + tr := taskrunner.NewTaskRunner(r.logger, r.config, r.stateDB, r.setTaskState, taskdir, r.Alloc(), task.Copy(), r.vaultClient, r.consulClient) r.tasks[task.Name] = tr tr.MarkReceived() @@ -1118,11 +1059,11 @@ func (r *AllocRunner) StatsReporter() AllocStatsReporter { // getTaskRunners is a helper that returns a copy of the task runners list using // the taskLock. -func (r *AllocRunner) getTaskRunners() []*TaskRunner { +func (r *AllocRunner) getTaskRunners() []*taskrunner.TaskRunner { // Get the task runners r.taskLock.RLock() defer r.taskLock.RUnlock() - runners := make([]*TaskRunner, 0, len(r.tasks)) + runners := make([]*taskrunner.TaskRunner, 0, len(r.tasks)) for _, tr := range r.tasks { runners = append(runners, tr) } @@ -1156,7 +1097,7 @@ func (r *AllocRunner) LatestAllocStats(taskFilter string) (*cstructs.AllocResour for _, tr := range runners { l := tr.LatestResourceUsage() if l != nil { - astat.Tasks[tr.task.Name] = l + astat.Tasks[tr.Name()] = l flat = append(flat, l) if l.Timestamp > astat.Timestamp { astat.Timestamp = l.Timestamp @@ -1181,9 +1122,9 @@ func sumTaskResourceUsage(usages []*cstructs.TaskResourceUsage) *cstructs.Resour return summed } -// shouldUpdate takes the AllocModifyIndex of an allocation sent from the server and +// ShouldUpdate takes the AllocModifyIndex of an allocation sent from the server and // checks if the current running allocation is behind and should be updated. -func (r *AllocRunner) shouldUpdate(serverIndex uint64) bool { +func (r *AllocRunner) ShouldUpdate(serverIndex uint64) bool { r.allocLock.Lock() defer r.allocLock.Unlock() return r.alloc.AllocModifyIndex < serverIndex @@ -1215,3 +1156,11 @@ func (r *AllocRunner) IsDestroyed() bool { func (r *AllocRunner) WaitCh() <-chan struct{} { return r.waitCh } + +// AllocID returns the allocation ID of the allocation being run +func (r *AllocRunner) AllocID() string { + if r == nil { + return "" + } + return r.allocID +} diff --git a/client/alloc_runner_health_watcher.go b/client/allocrunner/alloc_runner_health_watcher.go similarity index 98% rename from client/alloc_runner_health_watcher.go rename to client/allocrunner/alloc_runner_health_watcher.go index ede4eaeaa..81c726f73 100644 --- a/client/alloc_runner_health_watcher.go +++ b/client/allocrunner/alloc_runner_health_watcher.go @@ -1,4 +1,4 @@ -package client +package allocrunner import ( "context" @@ -9,6 +9,7 @@ import ( "time" "github.com/hashicorp/consul/api" + consulApi "github.com/hashicorp/nomad/client/consul" cstructs "github.com/hashicorp/nomad/client/structs" "github.com/hashicorp/nomad/command/agent/consul" "github.com/hashicorp/nomad/helper" @@ -160,7 +161,7 @@ type allocHealthTracker struct { allocUpdates *cstructs.AllocListener // consulClient is used to look up the state of the task's checks - consulClient ConsulServiceAPI + consulClient consulApi.ConsulServiceAPI // healthy is used to signal whether we have determined the allocation to be // healthy or unhealthy @@ -191,7 +192,7 @@ type allocHealthTracker struct { // alloc listener and consul API object are given so that the watcher can detect // health changes. func newAllocHealthTracker(parentCtx context.Context, logger *log.Logger, alloc *structs.Allocation, - allocUpdates *cstructs.AllocListener, consulClient ConsulServiceAPI, + allocUpdates *cstructs.AllocListener, consulClient consulApi.ConsulServiceAPI, minHealthyTime time.Duration, useChecks bool) *allocHealthTracker { a := &allocHealthTracker{ diff --git a/client/alloc_runner_test.go b/client/allocrunner/alloc_runner_test.go similarity index 78% rename from client/alloc_runner_test.go rename to client/allocrunner/alloc_runner_test.go index 34f483feb..6bb919381 100644 --- a/client/alloc_runner_test.go +++ b/client/allocrunner/alloc_runner_test.go @@ -1,4 +1,4 @@ -package client +package allocrunner import ( "fmt" @@ -6,93 +6,34 @@ import ( "os" "path/filepath" "strings" - "sync" "testing" - "text/template" "time" "github.com/boltdb/bolt" "github.com/hashicorp/consul/api" - "github.com/hashicorp/go-multierror" "github.com/hashicorp/nomad/command/agent/consul" "github.com/hashicorp/nomad/helper/testlog" "github.com/hashicorp/nomad/helper/uuid" "github.com/hashicorp/nomad/nomad/mock" "github.com/hashicorp/nomad/nomad/structs" "github.com/hashicorp/nomad/testutil" - "github.com/hashicorp/nomad/version" - "github.com/kr/pretty" "github.com/stretchr/testify/assert" - "github.com/hashicorp/nomad/client/config" - "github.com/hashicorp/nomad/client/vaultclient" + "github.com/hashicorp/nomad/client/allocrunner/taskrunner" + consulApi "github.com/hashicorp/nomad/client/consul" + "github.com/hashicorp/nomad/client/state" "github.com/stretchr/testify/require" ) -type MockAllocStateUpdater struct { - Allocs []*structs.Allocation - mu sync.Mutex -} - -// Update fulfills the TaskStateUpdater interface -func (m *MockAllocStateUpdater) Update(alloc *structs.Allocation) { - m.mu.Lock() - m.Allocs = append(m.Allocs, alloc) - m.mu.Unlock() -} - -// Last returns a copy of the last alloc (or nil) sync'd -func (m *MockAllocStateUpdater) Last() *structs.Allocation { - m.mu.Lock() - defer m.mu.Unlock() - n := len(m.Allocs) - if n == 0 { - return nil - } - return m.Allocs[n-1].Copy() -} - // allocationBucketExists checks if the allocation bucket was created. func allocationBucketExists(tx *bolt.Tx, allocID string) bool { - allocations := tx.Bucket(allocationsBucket) - if allocations == nil { - return false - } - - // Retrieve the specific allocations bucket - alloc := allocations.Bucket([]byte(allocID)) - return alloc != nil -} - -func testAllocRunnerFromAlloc(t *testing.T, alloc *structs.Allocation, restarts bool) (*MockAllocStateUpdater, *AllocRunner) { - conf := config.DefaultConfig() - conf.Node = mock.Node() - conf.StateDir = os.TempDir() - conf.AllocDir = os.TempDir() - tmp, _ := ioutil.TempFile("", "state-db") - db, _ := bolt.Open(tmp.Name(), 0600, nil) - upd := &MockAllocStateUpdater{} - if !restarts { - *alloc.Job.LookupTaskGroup(alloc.TaskGroup).RestartPolicy = structs.RestartPolicy{Attempts: 0} - alloc.Job.Type = structs.JobTypeBatch - } - vclient := vaultclient.NewMockVaultClient() - ar := NewAllocRunner(testlog.Logger(t), conf, db, upd.Update, alloc, vclient, newMockConsulServiceClient(t), noopPrevAlloc{}) - return upd, ar -} - -func testAllocRunner(t *testing.T, restarts bool) (*MockAllocStateUpdater, *AllocRunner) { - // Use mock driver - alloc := mock.Alloc() - task := alloc.Job.TaskGroups[0].Tasks[0] - task.Driver = "mock_driver" - task.Config["run_for"] = "500ms" - return testAllocRunnerFromAlloc(t, alloc, restarts) + bucket, err := state.GetAllocationBucket(tx, allocID) + return err == nil && bucket != nil } func TestAllocRunner_SimpleRun(t *testing.T) { t.Parallel() - upd, ar := testAllocRunner(t, false) + upd, ar := TestAllocRunner(t, false) go ar.Run() defer ar.Destroy() @@ -114,7 +55,7 @@ func TestAllocRunner_SimpleRun(t *testing.T) { func TestAllocRunner_FinishedAtSet(t *testing.T) { t.Parallel() require := require.New(t) - _, ar := testAllocRunner(t, false) + _, ar := TestAllocRunner(t, false) ar.allocClientStatus = structs.AllocClientStatusFailed alloc := ar.Alloc() taskFinishedAt := make(map[string]time.Time) @@ -136,7 +77,7 @@ func TestAllocRunner_FinishedAtSet(t *testing.T) { func TestAllocRunner_FinishedAtSet_TaskEvents(t *testing.T) { t.Parallel() require := require.New(t) - _, ar := testAllocRunner(t, false) + _, ar := TestAllocRunner(t, false) ar.taskStates[ar.alloc.Job.TaskGroups[0].Tasks[0].Name] = &structs.TaskState{State: structs.TaskStateDead, Failed: true} alloc := ar.Alloc() @@ -161,7 +102,7 @@ func TestAllocRunner_DeploymentHealth_Unhealthy_BadStart(t *testing.T) { assert := assert.New(t) // Ensure the task fails and restarts - upd, ar := testAllocRunner(t, true) + upd, ar := TestAllocRunner(t, true) // Make the task fail task := ar.alloc.Job.TaskGroups[0].Tasks[0] @@ -208,7 +149,7 @@ func TestAllocRunner_DeploymentHealth_Unhealthy_Deadline(t *testing.T) { t.Parallel() // Don't restart but force service job type - upd, ar := testAllocRunner(t, false) + upd, ar := TestAllocRunner(t, false) ar.alloc.Job.Type = structs.JobTypeService // Make the task block @@ -268,7 +209,7 @@ func TestAllocRunner_DeploymentHealth_Healthy_NoChecks(t *testing.T) { t.Parallel() // Ensure the task fails and restarts - upd, ar := testAllocRunner(t, true) + upd, ar := TestAllocRunner(t, true) // Make the task run healthy task := ar.alloc.Job.TaskGroups[0].Tasks[0] @@ -316,7 +257,7 @@ func TestAllocRunner_DeploymentHealth_Healthy_Checks(t *testing.T) { t.Parallel() // Ensure the task fails and restarts - upd, ar := testAllocRunner(t, true) + upd, ar := TestAllocRunner(t, true) // Make the task fail task := ar.alloc.Job.TaskGroups[0].Tasks[0] @@ -347,7 +288,7 @@ func TestAllocRunner_DeploymentHealth_Healthy_Checks(t *testing.T) { // Only return the check as healthy after a duration trigger := time.After(500 * time.Millisecond) - ar.consulClient.(*mockConsulServiceClient).allocRegistrationsFn = func(allocID string) (*consul.AllocRegistration, error) { + ar.consulClient.(*consulApi.MockConsulServiceClient).AllocRegistrationsFn = func(allocID string) (*consul.AllocRegistration, error) { select { case <-trigger: return &consul.AllocRegistration{ @@ -409,7 +350,7 @@ func TestAllocRunner_DeploymentHealth_Unhealthy_Checks(t *testing.T) { assert := assert.New(t) // Ensure the task fails and restarts - upd, ar := testAllocRunner(t, true) + upd, ar := TestAllocRunner(t, true) // Make the task fail task := ar.alloc.Job.TaskGroups[0].Tasks[0] @@ -430,7 +371,7 @@ func TestAllocRunner_DeploymentHealth_Unhealthy_Checks(t *testing.T) { } // Only return the check as healthy after a duration - ar.consulClient.(*mockConsulServiceClient).allocRegistrationsFn = func(allocID string) (*consul.AllocRegistration, error) { + ar.consulClient.(*consulApi.MockConsulServiceClient).AllocRegistrationsFn = func(allocID string) (*consul.AllocRegistration, error) { return &consul.AllocRegistration{ Tasks: map[string]*consul.TaskRegistration{ task.Name: { @@ -478,7 +419,7 @@ func TestAllocRunner_DeploymentHealth_Healthy_UpdatedDeployment(t *testing.T) { t.Parallel() // Ensure the task fails and restarts - upd, ar := testAllocRunner(t, true) + upd, ar := TestAllocRunner(t, true) // Make the task run healthy task := ar.alloc.Job.TaskGroups[0].Tasks[0] @@ -535,7 +476,7 @@ func TestAllocRunner_DeploymentHealth_Healthy_Migration(t *testing.T) { t.Parallel() // Ensure the task fails and restarts - upd, ar := testAllocRunner(t, true) + upd, ar := TestAllocRunner(t, true) // Make the task run healthy tg := ar.alloc.Job.TaskGroups[0] @@ -588,7 +529,7 @@ func TestAllocRunner_DeploymentHealth_BatchDisabled(t *testing.T) { task := tg.Tasks[0] task.Driver = "mock_driver" task.Config["run_for"] = "5s" - upd, ar := testAllocRunnerFromAlloc(t, alloc, false) + upd, ar := TestAllocRunnerFromAlloc(t, alloc, false) go ar.Run() defer ar.Destroy() @@ -634,7 +575,7 @@ func TestAllocRunner_RetryArtifact(t *testing.T) { } alloc.Job.TaskGroups[0].Tasks = append(alloc.Job.TaskGroups[0].Tasks, badtask) - upd, ar := testAllocRunnerFromAlloc(t, alloc, true) + upd, ar := TestAllocRunnerFromAlloc(t, alloc, true) go ar.Run() defer ar.Destroy() @@ -673,7 +614,7 @@ func TestAllocRunner_RetryArtifact(t *testing.T) { func TestAllocRunner_TerminalUpdate_Destroy(t *testing.T) { t.Parallel() - upd, ar := testAllocRunner(t, false) + upd, ar := TestAllocRunner(t, false) // Ensure task takes some time task := ar.alloc.Job.TaskGroups[0].Tasks[0] @@ -772,7 +713,7 @@ func TestAllocRunner_TerminalUpdate_Destroy(t *testing.T) { func TestAllocRunner_Destroy(t *testing.T) { t.Parallel() - upd, ar := testAllocRunner(t, false) + upd, ar := TestAllocRunner(t, false) // Ensure task takes some time task := ar.alloc.Job.TaskGroups[0].Tasks[0] @@ -828,7 +769,7 @@ func TestAllocRunner_Destroy(t *testing.T) { func TestAllocRunner_Update(t *testing.T) { t.Parallel() - _, ar := testAllocRunner(t, false) + _, ar := TestAllocRunner(t, false) // Deep copy the alloc to avoid races when updating newAlloc := ar.Alloc().Copy() @@ -863,7 +804,7 @@ func TestAllocRunner_SaveRestoreState(t *testing.T) { "run_for": "10s", } - upd, ar := testAllocRunnerFromAlloc(t, alloc, false) + upd, ar := TestAllocRunnerFromAlloc(t, alloc, false) go ar.Run() defer ar.Destroy() @@ -882,9 +823,9 @@ func TestAllocRunner_SaveRestoreState(t *testing.T) { } // Create a new alloc runner - l2 := prefixedTestLogger("----- ar2: ") + l2 := testlog.WithPrefix(t, "----- ar2: ") alloc2 := &structs.Allocation{ID: ar.alloc.ID} - prevAlloc := newAllocWatcher(alloc2, ar, nil, ar.config, l2, "") + prevAlloc := NewAllocWatcher(alloc2, ar, nil, ar.config, l2, "") ar2 := NewAllocRunner(l2, ar.config, ar.stateDB, upd.Update, alloc2, ar.vaultClient, ar.consulClient, prevAlloc) err = ar2.RestoreState() @@ -931,8 +872,8 @@ func TestAllocRunner_SaveRestoreState(t *testing.T) { func TestAllocRunner_SaveRestoreState_TerminalAlloc(t *testing.T) { t.Parallel() - upd, ar := testAllocRunner(t, false) - ar.logger = prefixedTestLogger("ar1: ") + upd, ar := TestAllocRunner(t, false) + ar.logger = testlog.WithPrefix(t, "ar1: ") // Ensure task takes some time ar.alloc.Job.TaskGroups[0].Tasks[0].Driver = "mock_driver" @@ -977,9 +918,9 @@ func TestAllocRunner_SaveRestoreState_TerminalAlloc(t *testing.T) { defer ar.allocLock.Unlock() // Create a new alloc runner - l2 := prefixedTestLogger("ar2: ") + l2 := testlog.WithPrefix(t, "ar2: ") alloc2 := &structs.Allocation{ID: ar.alloc.ID} - prevAlloc := newAllocWatcher(alloc2, ar, nil, ar.config, l2, "") + prevAlloc := NewAllocWatcher(alloc2, ar, nil, ar.config, l2, "") ar2 := NewAllocRunner(l2, ar.config, ar.stateDB, upd.Update, alloc2, ar.vaultClient, ar.consulClient, prevAlloc) err = ar2.RestoreState() @@ -1052,230 +993,9 @@ func TestAllocRunner_SaveRestoreState_TerminalAlloc(t *testing.T) { }) } -// TestAllocRunner_SaveRestoreState_Upgrade asserts that pre-0.6 exec tasks are -// restarted on upgrade. -func TestAllocRunner_SaveRestoreState_Upgrade(t *testing.T) { - t.Parallel() - alloc := mock.Alloc() - task := alloc.Job.TaskGroups[0].Tasks[0] - task.Driver = "mock_driver" - task.Config = map[string]interface{}{ - "exit_code": "0", - "run_for": "10s", - } - - upd, ar := testAllocRunnerFromAlloc(t, alloc, false) - // Hack in old version to cause an upgrade on RestoreState - origConfig := ar.config.Copy() - ar.config.Version = &version.VersionInfo{Version: "0.5.6"} - go ar.Run() - defer ar.Destroy() - - // Snapshot state - testutil.WaitForResult(func() (bool, error) { - last := upd.Last() - if last == nil { - return false, fmt.Errorf("No updates") - } - - if last.ClientStatus != structs.AllocClientStatusRunning { - return false, fmt.Errorf("got status %v; want %v", last.ClientStatus, structs.AllocClientStatusRunning) - } - return true, nil - }, func(err error) { - t.Fatalf("task never started: %v", err) - }) - - err := ar.SaveState() - if err != nil { - t.Fatalf("err: %v", err) - } - - // Create a new alloc runner - l2 := prefixedTestLogger("ar2: ") - alloc2 := &structs.Allocation{ID: ar.alloc.ID} - prevAlloc := newAllocWatcher(alloc2, ar, nil, origConfig, l2, "") - ar2 := NewAllocRunner(l2, origConfig, ar.stateDB, upd.Update, alloc2, ar.vaultClient, ar.consulClient, prevAlloc) - err = ar2.RestoreState() - if err != nil { - t.Fatalf("err: %v", err) - } - go ar2.Run() - defer ar2.Destroy() // Just-in-case of failure before Destroy below - - testutil.WaitForResult(func() (bool, error) { - last := upd.Last() - if last == nil { - return false, fmt.Errorf("No updates") - } - for _, ev := range last.TaskStates["web"].Events { - if strings.HasSuffix(ev.RestartReason, pre06ScriptCheckReason) { - return true, nil - } - } - return false, fmt.Errorf("no restart with proper reason found") - }, func(err error) { - last := upd.Last() - t.Fatalf("err: %v\nweb state: % #v", err, pretty.Formatter(last.TaskStates["web"])) - }) - - // Destroy and wait - ar2.Destroy() - start := time.Now() - - testutil.WaitForResult(func() (bool, error) { - alloc := ar2.Alloc() - if alloc.ClientStatus != structs.AllocClientStatusComplete { - return false, fmt.Errorf("Bad client status; got %v; want %v", alloc.ClientStatus, structs.AllocClientStatusComplete) - } - return true, nil - }, func(err error) { - last := upd.Last() - t.Fatalf("err: %v %#v %#v", err, last, last.TaskStates) - }) - - if time.Since(start) > time.Duration(testutil.TestMultiplier()*5)*time.Second { - t.Fatalf("took too long to terminate") - } -} - -// Ensure pre-#2132 state files containing the Context struct are properly -// migrated to the new format. -// -// Old Context State: -// -// "Context": { -// "AllocDir": { -// "AllocDir": "/path/to/allocs/2a54fcff-fc44-8d4f-e025-53c48e9cbbbb", -// "SharedDir": "/path/to/allocs/2a54fcff-fc44-8d4f-e025-53c48e9cbbbb/alloc", -// "TaskDirs": { -// "echo1": "/path/to/allocs/2a54fcff-fc44-8d4f-e025-53c48e9cbbbb/echo1" -// } -// }, -// "AllocID": "2a54fcff-fc44-8d4f-e025-53c48e9cbbbb" -// } -func TestAllocRunner_RestoreOldState(t *testing.T) { - t.Parallel() - alloc := mock.Alloc() - task := alloc.Job.TaskGroups[0].Tasks[0] - task.Driver = "mock_driver" - task.Config = map[string]interface{}{ - "exit_code": "0", - "run_for": "10s", - } - - logger := testLogger() - conf := config.DefaultConfig() - conf.Node = mock.Node() - conf.StateDir = os.TempDir() - conf.AllocDir = os.TempDir() - tmp, err := ioutil.TempFile("", "state-db") - if err != nil { - t.Fatalf("error creating state db file: %v", err) - } - db, err := bolt.Open(tmp.Name(), 0600, nil) - if err != nil { - t.Fatalf("error creating state db: %v", err) - } - - if err := os.MkdirAll(filepath.Join(conf.StateDir, "alloc", alloc.ID), 0777); err != nil { - t.Fatalf("error creating state dir: %v", err) - } - statePath := filepath.Join(conf.StateDir, "alloc", alloc.ID, "state.json") - w, err := os.Create(statePath) - if err != nil { - t.Fatalf("error creating state file: %v", err) - } - tmplctx := &struct { - AllocID string - AllocDir string - }{alloc.ID, conf.AllocDir} - err = template.Must(template.New("test_state").Parse(`{ - "Version": "0.5.1", - "Alloc": { - "ID": "{{ .AllocID }}", - "Name": "example", - "JobID": "example", - "Job": { - "ID": "example", - "Name": "example", - "Type": "batch", - "TaskGroups": [ - { - "Name": "example", - "Tasks": [ - { - "Name": "example", - "Driver": "mock", - "Config": { - "exit_code": "0", - "run_for": "10s" - } - } - ] - } - ] - }, - "TaskGroup": "example", - "DesiredStatus": "run", - "ClientStatus": "running", - "TaskStates": { - "example": { - "State": "running", - "Failed": false, - "Events": [] - } - } - }, - "Context": { - "AllocDir": { - "AllocDir": "{{ .AllocDir }}/{{ .AllocID }}", - "SharedDir": "{{ .AllocDir }}/{{ .AllocID }}/alloc", - "TaskDirs": { - "example": "{{ .AllocDir }}/{{ .AllocID }}/example" - } - }, - "AllocID": "{{ .AllocID }}" - } -}`)).Execute(w, tmplctx) - if err != nil { - t.Fatalf("error writing state file: %v", err) - } - w.Close() - - upd := &MockAllocStateUpdater{} - *alloc.Job.LookupTaskGroup(alloc.TaskGroup).RestartPolicy = structs.RestartPolicy{Attempts: 0} - alloc.Job.Type = structs.JobTypeBatch - vclient := vaultclient.NewMockVaultClient() - cclient := newMockConsulServiceClient(t) - ar := NewAllocRunner(logger, conf, db, upd.Update, alloc, vclient, cclient, noopPrevAlloc{}) - defer ar.Destroy() - - // RestoreState should fail on the task state since we only test the - // alloc state restoring. - err = ar.RestoreState() - if err == nil { - t.Fatal("expected error restoring Task state") - } - merr, ok := err.(*multierror.Error) - if !ok { - t.Fatalf("expected RestoreState to return a multierror but found: %T -> %v", err, err) - } - if len(merr.Errors) != 1 { - t.Fatalf("expected exactly 1 error from RestoreState but found: %d: %v", len(merr.Errors), err) - } - if expected := "failed to get task bucket"; !strings.Contains(merr.Errors[0].Error(), expected) { - t.Fatalf("expected %q but got: %q", expected, merr.Errors[0].Error()) - } - - if err := ar.SaveState(); err != nil { - t.Fatalf("error saving new state: %v", err) - } -} - func TestAllocRunner_TaskFailed_KillTG(t *testing.T) { t.Parallel() - upd, ar := testAllocRunner(t, false) + upd, ar := TestAllocRunner(t, false) // Create two tasks in the task group task := ar.alloc.Job.TaskGroups[0].Tasks[0] @@ -1343,7 +1063,7 @@ func TestAllocRunner_TaskFailed_KillTG(t *testing.T) { func TestAllocRunner_TaskLeader_KillTG(t *testing.T) { t.Parallel() - upd, ar := testAllocRunner(t, false) + upd, ar := TestAllocRunner(t, false) // Create two tasks in the task group task := ar.alloc.Job.TaskGroups[0].Tasks[0] @@ -1417,7 +1137,7 @@ func TestAllocRunner_TaskLeader_KillTG(t *testing.T) { // with a leader the leader is stopped before other tasks. func TestAllocRunner_TaskLeader_StopTG(t *testing.T) { t.Parallel() - upd, ar := testAllocRunner(t, false) + upd, ar := TestAllocRunner(t, false) // Create 3 tasks in the task group task := ar.alloc.Job.TaskGroups[0].Tasks[0] @@ -1509,8 +1229,9 @@ func TestAllocRunner_TaskLeader_StopTG(t *testing.T) { // not stopped as it does not exist. // See https://github.com/hashicorp/nomad/issues/3420#issuecomment-341666932 func TestAllocRunner_TaskLeader_StopRestoredTG(t *testing.T) { + t.Skip("Skipping because the functionality being tested doesn't exist") t.Parallel() - _, ar := testAllocRunner(t, false) + _, ar := TestAllocRunner(t, false) defer ar.Destroy() // Create a leader and follower task in the task group @@ -1535,11 +1256,11 @@ func TestAllocRunner_TaskLeader_StopRestoredTG(t *testing.T) { ar.alloc.TaskResources[task2.Name] = task2.Resources // Mimic Nomad exiting before the leader stopping is able to stop other tasks. - ar.tasks = map[string]*TaskRunner{ - "leader": NewTaskRunner(ar.logger, ar.config, ar.stateDB, ar.setTaskState, + ar.tasks = map[string]*taskrunner.TaskRunner{ + "leader": taskrunner.NewTaskRunner(ar.logger, ar.config, ar.stateDB, ar.setTaskState, ar.allocDir.NewTaskDir(task2.Name), ar.Alloc(), task2.Copy(), ar.vaultClient, ar.consulClient), - "follower1": NewTaskRunner(ar.logger, ar.config, ar.stateDB, ar.setTaskState, + "follower1": taskrunner.NewTaskRunner(ar.logger, ar.config, ar.stateDB, ar.setTaskState, ar.allocDir.NewTaskDir(task.Name), ar.Alloc(), task.Copy(), ar.vaultClient, ar.consulClient), } @@ -1564,22 +1285,14 @@ func TestAllocRunner_TaskLeader_StopRestoredTG(t *testing.T) { // Wait for tasks to be stopped because leader is dead testutil.WaitForResult(func() (bool, error) { - last := upd2.Last() - if last == nil { - return false, fmt.Errorf("No updates") - } - if actual := last.TaskStates["leader"].State; actual != structs.TaskStateDead { - return false, fmt.Errorf("Task leader is not dead yet (it's %q)", actual) - } - if actual := last.TaskStates["follower1"].State; actual != structs.TaskStateDead { - return false, fmt.Errorf("Task follower1 is not dead yet (it's %q)", actual) + alloc := ar2.Alloc() + for task, state := range alloc.TaskStates { + if state.State != structs.TaskStateDead { + return false, fmt.Errorf("Task %q should be dead: %v", task, state.State) + } } return true, nil }, func(err error) { - last := upd2.Last() - for name, state := range last.TaskStates { - t.Logf("%s: %s", name, state.State) - } t.Fatalf("err: %v", err) }) @@ -1606,7 +1319,7 @@ func TestAllocRunner_MoveAllocDir(t *testing.T) { task.Config = map[string]interface{}{ "run_for": "1s", } - upd, ar := testAllocRunnerFromAlloc(t, alloc, false) + upd, ar := TestAllocRunnerFromAlloc(t, alloc, false) go ar.Run() defer ar.Destroy() @@ -1639,10 +1352,10 @@ func TestAllocRunner_MoveAllocDir(t *testing.T) { task.Config = map[string]interface{}{ "run_for": "1s", } - upd2, ar2 := testAllocRunnerFromAlloc(t, alloc2, false) + upd2, ar2 := TestAllocRunnerFromAlloc(t, alloc2, false) // Set prevAlloc like Client does - ar2.prevAlloc = newAllocWatcher(alloc2, ar, nil, ar2.config, ar2.logger, "") + ar2.prevAlloc = NewAllocWatcher(alloc2, ar, nil, ar2.config, ar2.logger, "") go ar2.Run() defer ar2.Destroy() diff --git a/client/alloc_watcher.go b/client/allocrunner/alloc_watcher.go similarity index 94% rename from client/alloc_watcher.go rename to client/allocrunner/alloc_watcher.go index e84db9ed2..8fdd6bf27 100644 --- a/client/alloc_watcher.go +++ b/client/allocrunner/alloc_watcher.go @@ -1,4 +1,4 @@ -package client +package allocrunner import ( "archive/tar" @@ -20,6 +20,12 @@ import ( "github.com/hashicorp/nomad/nomad/structs" ) +const ( + // getRemoteRetryIntv is minimum interval on which we retry + // to fetch remote objects. We pick a value between this and 2x this. + getRemoteRetryIntv = 30 * time.Second +) + // rpcer is the interface needed by a prevAllocWatcher to make RPC calls. type rpcer interface { // RPC allows retrieving remote allocs. @@ -49,13 +55,13 @@ type prevAllocWatcher interface { IsMigrating() bool } -// newAllocWatcher creates a prevAllocWatcher appropriate for whether this +// NewAllocWatcher creates a prevAllocWatcher appropriate for whether this // alloc's previous allocation was local or remote. If this alloc has no // previous alloc then a noop implementation is returned. -func newAllocWatcher(alloc *structs.Allocation, prevAR *AllocRunner, rpc rpcer, config *config.Config, l *log.Logger, migrateToken string) prevAllocWatcher { +func NewAllocWatcher(alloc *structs.Allocation, prevAR *AllocRunner, rpc rpcer, config *config.Config, l *log.Logger, migrateToken string) prevAllocWatcher { if alloc.PreviousAllocation == "" { // No previous allocation, use noop transitioner - return noopPrevAlloc{} + return NoopPrevAlloc{} } tg := alloc.Job.LookupTaskGroup(alloc.TaskGroup) @@ -295,7 +301,7 @@ func (p *remotePrevAlloc) Wait(ctx context.Context) error { err := p.rpc.RPC("Alloc.GetAlloc", &req, &resp) if err != nil { p.logger.Printf("[ERR] client: failed to query previous alloc %q: %v", p.prevAllocID, err) - retry := getAllocRetryIntv + lib.RandomStagger(getAllocRetryIntv) + retry := getRemoteRetryIntv + lib.RandomStagger(getRemoteRetryIntv) select { case <-time.After(retry): continue @@ -386,7 +392,7 @@ func (p *remotePrevAlloc) getNodeAddr(ctx context.Context, nodeID string) (strin err := p.rpc.RPC("Node.GetNode", &req, &resp) if err != nil { p.logger.Printf("[ERR] client: failed to query node info %q: %v", nodeID, err) - retry := getAllocRetryIntv + lib.RandomStagger(getAllocRetryIntv) + retry := getRemoteRetryIntv + lib.RandomStagger(getRemoteRetryIntv) select { case <-time.After(retry): continue @@ -568,15 +574,15 @@ func (p *remotePrevAlloc) streamAllocDir(ctx context.Context, resp io.ReadCloser return nil } -// noopPrevAlloc does not block or migrate on a previous allocation and never +// NoopPrevAlloc does not block or migrate on a previous allocation and never // returns an error. -type noopPrevAlloc struct{} +type NoopPrevAlloc struct{} // Wait returns nil immediately. -func (noopPrevAlloc) Wait(context.Context) error { return nil } +func (NoopPrevAlloc) Wait(context.Context) error { return nil } // Migrate returns nil immediately. -func (noopPrevAlloc) Migrate(context.Context, *allocdir.AllocDir) error { return nil } +func (NoopPrevAlloc) Migrate(context.Context, *allocdir.AllocDir) error { return nil } -func (noopPrevAlloc) IsWaiting() bool { return false } -func (noopPrevAlloc) IsMigrating() bool { return false } +func (NoopPrevAlloc) IsWaiting() bool { return false } +func (NoopPrevAlloc) IsMigrating() bool { return false } diff --git a/client/alloc_watcher_test.go b/client/allocrunner/alloc_watcher_test.go similarity index 95% rename from client/alloc_watcher_test.go rename to client/allocrunner/alloc_watcher_test.go index 43048363b..907f4a521 100644 --- a/client/alloc_watcher_test.go +++ b/client/allocrunner/alloc_watcher_test.go @@ -1,4 +1,4 @@ -package client +package allocrunner import ( "archive/tar" @@ -15,15 +15,15 @@ import ( "time" "github.com/hashicorp/nomad/client/allocdir" - "github.com/hashicorp/nomad/client/config" "github.com/hashicorp/nomad/client/testutil" + "github.com/hashicorp/nomad/helper/testlog" "github.com/hashicorp/nomad/nomad/mock" ) // TestPrevAlloc_LocalPrevAlloc asserts that when a previous alloc runner is // set a localPrevAlloc will block on it. func TestPrevAlloc_LocalPrevAlloc(t *testing.T) { - _, prevAR := testAllocRunner(t, false) + _, prevAR := TestAllocRunner(t, false) prevAR.alloc.Job.TaskGroups[0].Tasks[0].Config["run_for"] = "10s" newAlloc := mock.Alloc() @@ -33,7 +33,7 @@ func TestPrevAlloc_LocalPrevAlloc(t *testing.T) { task.Driver = "mock_driver" task.Config["run_for"] = "500ms" - waiter := newAllocWatcher(newAlloc, prevAR, nil, nil, testLogger(), "") + waiter := NewAllocWatcher(newAlloc, prevAR, nil, nil, testlog.Logger(t), "") // Wait in a goroutine with a context to make sure it exits at the right time ctx, cancel := context.WithCancel(context.Background()) @@ -177,14 +177,8 @@ func TestPrevAlloc_StreamAllocDir_Ok(t *testing.T) { } defer os.RemoveAll(dir1) - c1 := TestClient(t, func(c *config.Config) { - c.RPCHandler = nil - }) - defer c1.Shutdown() - rc := ioutil.NopCloser(buf) - - prevAlloc := &remotePrevAlloc{logger: testLogger()} + prevAlloc := &remotePrevAlloc{logger: testlog.Logger(t)} if err := prevAlloc.streamAllocDir(context.Background(), rc, dir1); err != nil { t.Fatalf("err: %v", err) } @@ -234,7 +228,7 @@ func TestPrevAlloc_StreamAllocDir_Error(t *testing.T) { // This test only unit tests streamAllocDir so we only need a partially // complete remotePrevAlloc prevAlloc := &remotePrevAlloc{ - logger: testLogger(), + logger: testlog.Logger(t), allocID: "123", prevAllocID: "abc", migrate: true, diff --git a/client/getter/getter.go b/client/allocrunner/getter/getter.go similarity index 100% rename from client/getter/getter.go rename to client/allocrunner/getter/getter.go diff --git a/client/getter/getter_test.go b/client/allocrunner/getter/getter_test.go similarity index 100% rename from client/getter/getter_test.go rename to client/allocrunner/getter/getter_test.go diff --git a/client/getter/test-fixtures/archive.tar.gz b/client/allocrunner/getter/test-fixtures/archive.tar.gz similarity index 100% rename from client/getter/test-fixtures/archive.tar.gz rename to client/allocrunner/getter/test-fixtures/archive.tar.gz diff --git a/client/getter/test-fixtures/archive/exist/my.config b/client/allocrunner/getter/test-fixtures/archive/exist/my.config similarity index 100% rename from client/getter/test-fixtures/archive/exist/my.config rename to client/allocrunner/getter/test-fixtures/archive/exist/my.config diff --git a/client/getter/test-fixtures/archive/new/my.config b/client/allocrunner/getter/test-fixtures/archive/new/my.config similarity index 100% rename from client/getter/test-fixtures/archive/new/my.config rename to client/allocrunner/getter/test-fixtures/archive/new/my.config diff --git a/client/getter/test-fixtures/archive/test.sh b/client/allocrunner/getter/test-fixtures/archive/test.sh similarity index 100% rename from client/getter/test-fixtures/archive/test.sh rename to client/allocrunner/getter/test-fixtures/archive/test.sh diff --git a/client/getter/test-fixtures/test.sh b/client/allocrunner/getter/test-fixtures/test.sh similarity index 100% rename from client/getter/test-fixtures/test.sh rename to client/allocrunner/getter/test-fixtures/test.sh diff --git a/client/consul_template.go b/client/allocrunner/taskrunner/consul_template.go similarity index 99% rename from client/consul_template.go rename to client/allocrunner/taskrunner/consul_template.go index 3e4869706..ac7aed79c 100644 --- a/client/consul_template.go +++ b/client/allocrunner/taskrunner/consul_template.go @@ -1,4 +1,4 @@ -package client +package taskrunner import ( "fmt" diff --git a/client/consul_template_test.go b/client/allocrunner/taskrunner/consul_template_test.go similarity index 99% rename from client/consul_template_test.go rename to client/allocrunner/taskrunner/consul_template_test.go index c32a202bf..d07744493 100644 --- a/client/consul_template_test.go +++ b/client/allocrunner/taskrunner/consul_template_test.go @@ -1,4 +1,4 @@ -package client +package taskrunner import ( "fmt" @@ -19,6 +19,7 @@ import ( sconfig "github.com/hashicorp/nomad/nomad/structs/config" "github.com/hashicorp/nomad/testutil" "github.com/stretchr/testify/assert" + "github.com/stretchr/testify/require" ) const ( @@ -563,11 +564,12 @@ func TestTaskTemplateManager_Unblock_Consul(t *testing.T) { func TestTaskTemplateManager_Unblock_Vault(t *testing.T) { t.Parallel() + require := require.New(t) // Make a template that will render based on a key in Vault - vaultPath := "secret/password" + vaultPath := "secret/data/password" key := "password" content := "barbaz" - embedded := fmt.Sprintf(`{{with secret "%s"}}{{.Data.%s}}{{end}}`, vaultPath, key) + embedded := fmt.Sprintf(`{{with secret "%s"}}{{.Data.data.%s}}{{end}}`, vaultPath, key) file := "my.tmpl" template := &structs.Template{ EmbeddedTmpl: embedded, @@ -588,7 +590,8 @@ func TestTaskTemplateManager_Unblock_Vault(t *testing.T) { // Write the secret to Vault logical := harness.vault.Client.Logical() - logical.Write(vaultPath, map[string]interface{}{key: content}) + _, err := logical.Write(vaultPath, map[string]interface{}{"data": map[string]interface{}{key: content}}) + require.NoError(err) // Wait for the unblock select { diff --git a/client/allocrunner/taskrunner/getters.go b/client/allocrunner/taskrunner/getters.go new file mode 100644 index 000000000..0a4bca06f --- /dev/null +++ b/client/allocrunner/taskrunner/getters.go @@ -0,0 +1,19 @@ +package taskrunner + +// Name returns the name of the task +func (r *TaskRunner) Name() string { + if r == nil || r.task == nil { + return "" + } + + return r.task.Name +} + +// IsLeader returns whether the task is a leader task +func (r *TaskRunner) IsLeader() bool { + if r == nil || r.task == nil { + return false + } + + return r.task.Leader +} diff --git a/client/restarts.go b/client/allocrunner/taskrunner/restarts/restarts.go similarity index 95% rename from client/restarts.go rename to client/allocrunner/taskrunner/restarts/restarts.go index ebdc62cff..05dd22958 100644 --- a/client/restarts.go +++ b/client/allocrunner/taskrunner/restarts/restarts.go @@ -1,4 +1,4 @@ -package client +package restarts import ( "fmt" @@ -20,7 +20,7 @@ const ( ReasonDelay = "Exceeded allowed attempts, applying a delay" ) -func newRestartTracker(policy *structs.RestartPolicy, jobType string) *RestartTracker { +func NewRestartTracker(policy *structs.RestartPolicy, jobType string) *RestartTracker { onSuccess := true if jobType == structs.JobTypeBatch { onSuccess = false @@ -54,6 +54,13 @@ func (r *RestartTracker) SetPolicy(policy *structs.RestartPolicy) { r.policy = policy } +// GetPolicy returns a copy of the policy used to determine restarts. +func (r *RestartTracker) GetPolicy() *structs.RestartPolicy { + r.lock.Lock() + defer r.lock.Unlock() + return r.policy.Copy() +} + // SetStartError is used to mark the most recent start error. If starting was // successful the error should be nil. func (r *RestartTracker) SetStartError(err error) *RestartTracker { diff --git a/client/restarts_test.go b/client/allocrunner/taskrunner/restarts/restarts_test.go similarity index 91% rename from client/restarts_test.go rename to client/allocrunner/taskrunner/restarts/restarts_test.go index 915902e04..7b8e5ea36 100644 --- a/client/restarts_test.go +++ b/client/allocrunner/taskrunner/restarts/restarts_test.go @@ -1,4 +1,4 @@ -package client +package restarts import ( "fmt" @@ -32,7 +32,7 @@ func testWaitResult(exit int) *cstructs.WaitResult { func TestClient_RestartTracker_ModeDelay(t *testing.T) { t.Parallel() p := testPolicy(true, structs.RestartPolicyModeDelay) - rt := newRestartTracker(p, structs.JobTypeService) + rt := NewRestartTracker(p, structs.JobTypeService) for i := 0; i < p.Attempts; i++ { state, when := rt.SetWaitResult(testWaitResult(127)).GetState() if state != structs.TaskRestarting { @@ -58,7 +58,7 @@ func TestClient_RestartTracker_ModeDelay(t *testing.T) { func TestClient_RestartTracker_ModeFail(t *testing.T) { t.Parallel() p := testPolicy(true, structs.RestartPolicyModeFail) - rt := newRestartTracker(p, structs.JobTypeSystem) + rt := NewRestartTracker(p, structs.JobTypeSystem) for i := 0; i < p.Attempts; i++ { state, when := rt.SetWaitResult(testWaitResult(127)).GetState() if state != structs.TaskRestarting { @@ -78,7 +78,7 @@ func TestClient_RestartTracker_ModeFail(t *testing.T) { func TestClient_RestartTracker_NoRestartOnSuccess(t *testing.T) { t.Parallel() p := testPolicy(false, structs.RestartPolicyModeDelay) - rt := newRestartTracker(p, structs.JobTypeBatch) + rt := NewRestartTracker(p, structs.JobTypeBatch) if state, _ := rt.SetWaitResult(testWaitResult(0)).GetState(); state != structs.TaskTerminated { t.Fatalf("NextRestart() returned %v, expected: %v", state, structs.TaskTerminated) } @@ -90,28 +90,28 @@ func TestClient_RestartTracker_ZeroAttempts(t *testing.T) { p.Attempts = 0 // Test with a non-zero exit code - rt := newRestartTracker(p, structs.JobTypeService) + rt := NewRestartTracker(p, structs.JobTypeService) if state, when := rt.SetWaitResult(testWaitResult(1)).GetState(); state != structs.TaskNotRestarting { t.Fatalf("expect no restart, got restart/delay: %v/%v", state, when) } // Even with a zero (successful) exit code non-batch jobs should exit // with TaskNotRestarting - rt = newRestartTracker(p, structs.JobTypeService) + rt = NewRestartTracker(p, structs.JobTypeService) if state, when := rt.SetWaitResult(testWaitResult(0)).GetState(); state != structs.TaskNotRestarting { t.Fatalf("expect no restart, got restart/delay: %v/%v", state, when) } // Batch jobs with a zero exit code and 0 attempts *do* exit cleanly // with Terminated - rt = newRestartTracker(p, structs.JobTypeBatch) + rt = NewRestartTracker(p, structs.JobTypeBatch) if state, when := rt.SetWaitResult(testWaitResult(0)).GetState(); state != structs.TaskTerminated { t.Fatalf("expect terminated, got restart/delay: %v/%v", state, when) } // Batch jobs with a non-zero exit code and 0 attempts exit with // TaskNotRestarting - rt = newRestartTracker(p, structs.JobTypeBatch) + rt = NewRestartTracker(p, structs.JobTypeBatch) if state, when := rt.SetWaitResult(testWaitResult(1)).GetState(); state != structs.TaskNotRestarting { t.Fatalf("expect no restart, got restart/delay: %v/%v", state, when) } @@ -121,7 +121,7 @@ func TestClient_RestartTracker_RestartTriggered(t *testing.T) { t.Parallel() p := testPolicy(true, structs.RestartPolicyModeFail) p.Attempts = 0 - rt := newRestartTracker(p, structs.JobTypeService) + rt := NewRestartTracker(p, structs.JobTypeService) if state, when := rt.SetRestartTriggered(false).GetState(); state != structs.TaskRestarting && when != 0 { t.Fatalf("expect restart immediately, got %v %v", state, when) } @@ -131,7 +131,7 @@ func TestClient_RestartTracker_RestartTriggered_Failure(t *testing.T) { t.Parallel() p := testPolicy(true, structs.RestartPolicyModeFail) p.Attempts = 1 - rt := newRestartTracker(p, structs.JobTypeService) + rt := NewRestartTracker(p, structs.JobTypeService) if state, when := rt.SetRestartTriggered(true).GetState(); state != structs.TaskRestarting || when == 0 { t.Fatalf("expect restart got %v %v", state, when) } @@ -143,7 +143,7 @@ func TestClient_RestartTracker_RestartTriggered_Failure(t *testing.T) { func TestClient_RestartTracker_StartError_Recoverable_Fail(t *testing.T) { t.Parallel() p := testPolicy(true, structs.RestartPolicyModeFail) - rt := newRestartTracker(p, structs.JobTypeSystem) + rt := NewRestartTracker(p, structs.JobTypeSystem) recErr := structs.NewRecoverableError(fmt.Errorf("foo"), true) for i := 0; i < p.Attempts; i++ { state, when := rt.SetStartError(recErr).GetState() @@ -164,7 +164,7 @@ func TestClient_RestartTracker_StartError_Recoverable_Fail(t *testing.T) { func TestClient_RestartTracker_StartError_Recoverable_Delay(t *testing.T) { t.Parallel() p := testPolicy(true, structs.RestartPolicyModeDelay) - rt := newRestartTracker(p, structs.JobTypeSystem) + rt := NewRestartTracker(p, structs.JobTypeSystem) recErr := structs.NewRecoverableError(fmt.Errorf("foo"), true) for i := 0; i < p.Attempts; i++ { state, when := rt.SetStartError(recErr).GetState() diff --git a/client/task_runner.go b/client/allocrunner/taskrunner/task_runner.go similarity index 97% rename from client/task_runner.go rename to client/allocrunner/taskrunner/task_runner.go index 4affba3e6..2cbb01008 100644 --- a/client/task_runner.go +++ b/client/allocrunner/taskrunner/task_runner.go @@ -1,4 +1,4 @@ -package client +package taskrunner import ( "bytes" @@ -21,9 +21,12 @@ import ( "github.com/hashicorp/go-multierror" version "github.com/hashicorp/go-version" "github.com/hashicorp/nomad/client/allocdir" + "github.com/hashicorp/nomad/client/allocrunner/getter" + "github.com/hashicorp/nomad/client/allocrunner/taskrunner/restarts" "github.com/hashicorp/nomad/client/config" + consulApi "github.com/hashicorp/nomad/client/consul" "github.com/hashicorp/nomad/client/driver" - "github.com/hashicorp/nomad/client/getter" + "github.com/hashicorp/nomad/client/state" "github.com/hashicorp/nomad/client/vaultclient" "github.com/hashicorp/nomad/command/agent/consul" "github.com/hashicorp/nomad/nomad/structs" @@ -89,8 +92,8 @@ type TaskRunner struct { config *config.Config updater TaskStateUpdater logger *log.Logger - restartTracker *RestartTracker - consul ConsulServiceAPI + restartTracker *restarts.RestartTracker + consul consulApi.ConsulServiceAPI // running marks whether the task is running running bool @@ -230,7 +233,7 @@ type SignalEvent struct { func NewTaskRunner(logger *log.Logger, config *config.Config, stateDB *bolt.DB, updater TaskStateUpdater, taskDir *allocdir.TaskDir, alloc *structs.Allocation, task *structs.Task, - vaultClient vaultclient.VaultClient, consulClient ConsulServiceAPI) *TaskRunner { + vaultClient vaultclient.VaultClient, consulClient consulApi.ConsulServiceAPI) *TaskRunner { // Merge in the task resources task.Resources = alloc.TaskResources[task.Name] @@ -241,7 +244,7 @@ func NewTaskRunner(logger *log.Logger, config *config.Config, logger.Printf("[ERR] client: alloc %q for missing task group %q", alloc.ID, alloc.TaskGroup) return nil } - restartTracker := newRestartTracker(tg.RestartPolicy, alloc.Job.Type) + restartTracker := restarts.NewRestartTracker(tg.RestartPolicy, alloc.Job.Type) // Initialize the environment builder envBuilder := env.NewBuilder(config.Node, alloc, task, config.Region) @@ -329,40 +332,20 @@ func (r *TaskRunner) pre060StateFilePath() string { // backwards incompatible upgrades that need to restart tasks with a new // executor. func (r *TaskRunner) RestoreState() (string, error) { - // COMPAT: Remove in 0.7.0 - // 0.6.0 transitioned from individual state files to a single bolt-db. - // The upgrade path is to: - // Check if old state exists - // If so, restore from that and delete old state - // Restore using state database - var snap taskRunnerState - - // Check if the old snapshot is there - oldPath := r.pre060StateFilePath() - if err := pre060RestoreState(oldPath, &snap); err == nil { - // Delete the old state - os.RemoveAll(oldPath) - } else if !os.IsNotExist(err) { - // Something corrupt in the old state file - return "", err - } else { - // We are doing a normal restore - err := r.stateDB.View(func(tx *bolt.Tx) error { - bkt, err := getTaskBucket(tx, r.alloc.ID, r.task.Name) - if err != nil { - return fmt.Errorf("failed to get task bucket: %v", err) - } - - if err := getObject(bkt, taskRunnerStateAllKey, &snap); err != nil { - return fmt.Errorf("failed to read task runner state: %v", err) - } - return nil - }) + err := r.stateDB.View(func(tx *bolt.Tx) error { + bkt, err := state.GetTaskBucket(tx, r.alloc.ID, r.task.Name) if err != nil { - return "", err + return fmt.Errorf("failed to get task bucket: %v", err) } + if err := state.GetObject(bkt, taskRunnerStateAllKey, &snap); err != nil { + return fmt.Errorf("failed to read task runner state: %v", err) + } + return nil + }) + if err != nil { + return "", err } // Restore fields from the snapshot @@ -510,12 +493,12 @@ func (r *TaskRunner) SaveState() error { // Start the transaction. return r.stateDB.Batch(func(tx *bolt.Tx) error { // Grab the task bucket - taskBkt, err := getTaskBucket(tx, r.alloc.ID, r.task.Name) + taskBkt, err := state.GetTaskBucket(tx, r.alloc.ID, r.task.Name) if err != nil { return fmt.Errorf("failed to retrieve allocation bucket: %v", err) } - if err := putData(taskBkt, taskRunnerStateAllKey, buf.Bytes()); err != nil { + if err := state.PutData(taskBkt, taskRunnerStateAllKey, buf.Bytes()); err != nil { return fmt.Errorf("failed to write task_runner state: %v", err) } @@ -534,7 +517,7 @@ func (r *TaskRunner) DestroyState() error { defer r.persistLock.Unlock() return r.stateDB.Update(func(tx *bolt.Tx) error { - if err := deleteTaskBucket(tx, r.alloc.ID, r.task.Name); err != nil { + if err := state.DeleteTaskBucket(tx, r.alloc.ID, r.task.Name); err != nil { return fmt.Errorf("failed to delete task bucket: %v", err) } return nil diff --git a/client/task_runner_test.go b/client/allocrunner/taskrunner/task_runner_test.go similarity index 98% rename from client/task_runner_test.go rename to client/allocrunner/taskrunner/task_runner_test.go index dc22abcaf..a0aa7c79d 100644 --- a/client/task_runner_test.go +++ b/client/allocrunner/taskrunner/task_runner_test.go @@ -1,9 +1,8 @@ -package client +package taskrunner import ( "fmt" "io/ioutil" - "log" "net/http" "net/http/httptest" "os" @@ -17,32 +16,24 @@ import ( "github.com/boltdb/bolt" "github.com/golang/snappy" "github.com/hashicorp/nomad/client/allocdir" + "github.com/hashicorp/nomad/client/allocrunner/taskrunner/restarts" "github.com/hashicorp/nomad/client/config" + consulApi "github.com/hashicorp/nomad/client/consul" "github.com/hashicorp/nomad/client/driver/env" cstructs "github.com/hashicorp/nomad/client/structs" "github.com/hashicorp/nomad/client/vaultclient" "github.com/hashicorp/nomad/command/agent/consul" + "github.com/hashicorp/nomad/helper/testlog" "github.com/hashicorp/nomad/nomad/mock" "github.com/hashicorp/nomad/nomad/structs" "github.com/hashicorp/nomad/testutil" "github.com/kr/pretty" ) -func testLogger() *log.Logger { - return prefixedTestLogger("") -} - -func prefixedTestLogger(prefix string) *log.Logger { - if testing.Verbose() { - return log.New(os.Stderr, prefix, log.LstdFlags|log.Lmicroseconds) - } - return log.New(ioutil.Discard, "", 0) -} - // Returns a tracker that never restarts. -func noRestartsTracker() *RestartTracker { +func noRestartsTracker() *restarts.RestartTracker { policy := &structs.RestartPolicy{Attempts: 0, Mode: structs.RestartPolicyModeFail} - return newRestartTracker(policy, structs.JobTypeBatch) + return restarts.NewRestartTracker(policy, structs.JobTypeBatch) } type MockTaskStateUpdater struct { @@ -102,7 +93,7 @@ func testTaskRunner(t *testing.T, restarts bool) *taskRunnerTestCtx { // // Callers should defer Cleanup() to cleanup after completion func testTaskRunnerFromAlloc(t *testing.T, restarts bool, alloc *structs.Allocation) *taskRunnerTestCtx { - logger := testLogger() + logger := testlog.Logger(t) conf := config.DefaultConfig() conf.Node = mock.Node() conf.StateDir = os.TempDir() @@ -120,7 +111,7 @@ func testTaskRunnerFromAlloc(t *testing.T, restarts bool, alloc *structs.Allocat upd := &MockTaskStateUpdater{} task := alloc.Job.TaskGroups[0].Tasks[0] - allocDir := allocdir.NewAllocDir(testLogger(), filepath.Join(conf.AllocDir, alloc.ID)) + allocDir := allocdir.NewAllocDir(testlog.Logger(t), filepath.Join(conf.AllocDir, alloc.ID)) if err := allocDir.Build(); err != nil { t.Fatalf("error building alloc dir: %v", err) return nil @@ -387,8 +378,8 @@ func TestTaskRunner_Update(t *testing.T) { if ctx.tr.task.Driver != newTask.Driver { return false, fmt.Errorf("Task not copied") } - if ctx.tr.restartTracker.policy.Mode != newMode { - return false, fmt.Errorf("expected restart policy %q but found %q", newMode, ctx.tr.restartTracker.policy.Mode) + if ctx.tr.restartTracker.GetPolicy().Mode != newMode { + return false, fmt.Errorf("expected restart policy %q but found %q", newMode, ctx.tr.restartTracker.GetPolicy().Mode) } if ctx.tr.handle.ID() == oldHandle { return false, fmt.Errorf("handle not ctx.updated") @@ -642,7 +633,7 @@ func TestTaskRunner_UnregisterConsul_Retries(t *testing.T) { ctx := testTaskRunnerFromAlloc(t, true, alloc) // Use mockConsulServiceClient - consul := newMockConsulServiceClient(t) + consul := consulApi.NewMockConsulServiceClient(t) ctx.tr.consul = consul ctx.tr.MarkReceived() @@ -650,26 +641,26 @@ func TestTaskRunner_UnregisterConsul_Retries(t *testing.T) { defer ctx.Cleanup() // Assert it is properly registered and unregistered - if expected := 6; len(consul.ops) != expected { - t.Errorf("expected %d consul ops but found: %d", expected, len(consul.ops)) + if expected := 6; len(consul.Ops) != expected { + t.Errorf("expected %d consul ops but found: %d", expected, len(consul.Ops)) } - if consul.ops[0].op != "add" { - t.Errorf("expected first op to be add but found: %q", consul.ops[0].op) + if consul.Ops[0].Op != "add" { + t.Errorf("expected first Op to be add but found: %q", consul.Ops[0].Op) } - if consul.ops[1].op != "remove" { - t.Errorf("expected second op to be remove but found: %q", consul.ops[1].op) + if consul.Ops[1].Op != "remove" { + t.Errorf("expected second op to be remove but found: %q", consul.Ops[1].Op) } - if consul.ops[2].op != "remove" { - t.Errorf("expected third op to be remove but found: %q", consul.ops[2].op) + if consul.Ops[2].Op != "remove" { + t.Errorf("expected third op to be remove but found: %q", consul.Ops[2].Op) } - if consul.ops[3].op != "add" { - t.Errorf("expected fourth op to be add but found: %q", consul.ops[3].op) + if consul.Ops[3].Op != "add" { + t.Errorf("expected fourth op to be add but found: %q", consul.Ops[3].Op) } - if consul.ops[4].op != "remove" { - t.Errorf("expected fifth op to be remove but found: %q", consul.ops[4].op) + if consul.Ops[4].Op != "remove" { + t.Errorf("expected fifth op to be remove but found: %q", consul.Ops[4].Op) } - if consul.ops[5].op != "remove" { - t.Errorf("expected sixth op to be remove but found: %q", consul.ops[5].op) + if consul.Ops[5].Op != "remove" { + t.Errorf("expected sixth op to be remove but found: %q", consul.Ops[5].Op) } } @@ -1199,7 +1190,7 @@ func TestTaskRunner_Template_Artifact(t *testing.T) { t.Fatalf("bad: %v", err) } - ts := httptest.NewServer(http.FileServer(http.Dir(filepath.Join(dir, "..")))) + ts := httptest.NewServer(http.FileServer(http.Dir(filepath.Join(dir, "../../..")))) defer ts.Close() alloc := mock.Alloc() diff --git a/client/task_runner_unix_test.go b/client/allocrunner/taskrunner/task_runner_unix_test.go similarity index 99% rename from client/task_runner_unix_test.go rename to client/allocrunner/taskrunner/task_runner_unix_test.go index b7c2aa441..1bb397f46 100644 --- a/client/task_runner_unix_test.go +++ b/client/allocrunner/taskrunner/task_runner_unix_test.go @@ -1,6 +1,6 @@ // +build !windows -package client +package taskrunner import ( "syscall" diff --git a/client/allocrunner/testing.go b/client/allocrunner/testing.go new file mode 100644 index 000000000..60a7b7b20 --- /dev/null +++ b/client/allocrunner/testing.go @@ -0,0 +1,65 @@ +package allocrunner + +import ( + "io/ioutil" + "os" + "sync" + "testing" + + "github.com/boltdb/bolt" + "github.com/hashicorp/nomad/client/config" + consulApi "github.com/hashicorp/nomad/client/consul" + "github.com/hashicorp/nomad/client/vaultclient" + "github.com/hashicorp/nomad/helper/testlog" + "github.com/hashicorp/nomad/nomad/mock" + "github.com/hashicorp/nomad/nomad/structs" +) + +type MockAllocStateUpdater struct { + Allocs []*structs.Allocation + mu sync.Mutex +} + +// Update fulfills the TaskStateUpdater interface +func (m *MockAllocStateUpdater) Update(alloc *structs.Allocation) { + m.mu.Lock() + m.Allocs = append(m.Allocs, alloc) + m.mu.Unlock() +} + +// Last returns a copy of the last alloc (or nil) sync'd +func (m *MockAllocStateUpdater) Last() *structs.Allocation { + m.mu.Lock() + defer m.mu.Unlock() + n := len(m.Allocs) + if n == 0 { + return nil + } + return m.Allocs[n-1].Copy() +} + +func TestAllocRunnerFromAlloc(t *testing.T, alloc *structs.Allocation, restarts bool) (*MockAllocStateUpdater, *AllocRunner) { + conf := config.DefaultConfig() + conf.Node = mock.Node() + conf.StateDir = os.TempDir() + conf.AllocDir = os.TempDir() + tmp, _ := ioutil.TempFile("", "state-db") + db, _ := bolt.Open(tmp.Name(), 0600, nil) + upd := &MockAllocStateUpdater{} + if !restarts { + *alloc.Job.LookupTaskGroup(alloc.TaskGroup).RestartPolicy = structs.RestartPolicy{Attempts: 0} + alloc.Job.Type = structs.JobTypeBatch + } + vclient := vaultclient.NewMockVaultClient() + ar := NewAllocRunner(testlog.Logger(t), conf, db, upd.Update, alloc, vclient, consulApi.NewMockConsulServiceClient(t), NoopPrevAlloc{}) + return upd, ar +} + +func TestAllocRunner(t *testing.T, restarts bool) (*MockAllocStateUpdater, *AllocRunner) { + // Use mock driver + alloc := mock.Alloc() + task := alloc.Job.TaskGroups[0].Tasks[0] + task.Driver = "mock_driver" + task.Config["run_for"] = "500ms" + return TestAllocRunnerFromAlloc(t, alloc, restarts) +} diff --git a/client/client.go b/client/client.go index 0cc2d8111..5f36c3689 100644 --- a/client/client.go +++ b/client/client.go @@ -21,8 +21,11 @@ import ( "github.com/hashicorp/consul/lib" multierror "github.com/hashicorp/go-multierror" "github.com/hashicorp/nomad/client/allocdir" + "github.com/hashicorp/nomad/client/allocrunner" "github.com/hashicorp/nomad/client/config" + consulApi "github.com/hashicorp/nomad/client/consul" "github.com/hashicorp/nomad/client/servers" + "github.com/hashicorp/nomad/client/state" "github.com/hashicorp/nomad/client/stats" cstructs "github.com/hashicorp/nomad/client/structs" "github.com/hashicorp/nomad/client/vaultclient" @@ -88,7 +91,7 @@ const ( type ClientStatsReporter interface { // GetAllocStats returns the AllocStatsReporter for the passed allocation. // If it does not exist an error is reported. - GetAllocStats(allocID string) (AllocStatsReporter, error) + GetAllocStats(allocID string) (allocrunner.AllocStatsReporter, error) // LatestHostStats returns the latest resource usage stats for the host LatestHostStats() *stats.HostStats @@ -145,7 +148,7 @@ type Client struct { // allocs maps alloc IDs to their AllocRunner. This map includes all // AllocRunners - running and GC'd - until the server GCs them. - allocs map[string]*AllocRunner + allocs map[string]*allocrunner.AllocRunner allocLock sync.RWMutex // allocUpdates stores allocations that need to be synced to the server. @@ -153,7 +156,7 @@ type Client struct { // consulService is Nomad's custom Consul client for managing services // and checks. - consulService ConsulServiceAPI + consulService consulApi.ConsulServiceAPI // consulCatalog is the subset of Consul's Catalog API Nomad uses. consulCatalog consul.CatalogAPI @@ -193,7 +196,7 @@ var ( ) // NewClient is used to create a new client from the given configuration -func NewClient(cfg *config.Config, consulCatalog consul.CatalogAPI, consulService ConsulServiceAPI, logger *log.Logger) (*Client, error) { +func NewClient(cfg *config.Config, consulCatalog consul.CatalogAPI, consulService consulApi.ConsulServiceAPI, logger *log.Logger) (*Client, error) { // Create the tls wrapper var tlsWrap tlsutil.RegionWrapper if cfg.TLSConfig.EnableRPC { @@ -217,7 +220,7 @@ func NewClient(cfg *config.Config, consulCatalog consul.CatalogAPI, consulServic tlsWrap: tlsWrap, streamingRpcs: structs.NewStreamingRpcRegistry(), logger: logger, - allocs: make(map[string]*AllocRunner), + allocs: make(map[string]*allocrunner.AllocRunner), allocUpdates: make(chan *structs.Allocation, 64), shutdownCh: make(chan struct{}), triggerDiscoveryCh: make(chan struct{}), @@ -432,7 +435,17 @@ func (c *Client) reloadTLSConnections(newConfig *nconfig.TLSConfig) error { // Reload allows a client to reload its configuration on the fly func (c *Client) Reload(newConfig *config.Config) error { - return c.reloadTLSConnections(newConfig.TLSConfig) + shouldReloadTLS, err := tlsutil.ShouldReloadRPCConnections(c.config.TLSConfig, newConfig.TLSConfig) + if err != nil { + c.logger.Printf("[ERR] nomad: error parsing server TLS configuration: %s", err) + return err + } + + if shouldReloadTLS { + return c.reloadTLSConnections(newConfig.TLSConfig) + } + + return nil } // Leave is used to prepare the client to leave the cluster @@ -507,10 +520,16 @@ func (c *Client) Shutdown() error { // Destroy all the running allocations. if c.config.DevMode { + var wg sync.WaitGroup for _, ar := range c.getAllocRunners() { - ar.Destroy() - <-ar.WaitCh() + wg.Add(1) + go func(ar *allocrunner.AllocRunner) { + ar.Destroy() + <-ar.WaitCh() + wg.Done() + }(ar) } + wg.Wait() } c.shutdown = true @@ -562,7 +581,7 @@ func (c *Client) StatsReporter() ClientStatsReporter { return c } -func (c *Client) GetAllocStats(allocID string) (AllocStatsReporter, error) { +func (c *Client) GetAllocStats(allocID string) (allocrunner.AllocStatsReporter, error) { c.allocLock.RLock() defer c.allocLock.RUnlock() ar, ok := c.allocs[allocID] @@ -714,7 +733,7 @@ func (c *Client) restoreState() error { } else { // Normal path err := c.stateDB.View(func(tx *bolt.Tx) error { - allocs, err = getAllAllocationIDs(tx) + allocs, err = state.GetAllAllocationIDs(tx) if err != nil { return fmt.Errorf("failed to list allocations: %v", err) } @@ -731,10 +750,10 @@ func (c *Client) restoreState() error { alloc := &structs.Allocation{ID: id} // don't worry about blocking/migrating when restoring - watcher := noopPrevAlloc{} + watcher := allocrunner.NoopPrevAlloc{} c.configLock.RLock() - ar := NewAllocRunner(c.logger, c.configCopy.Copy(), c.stateDB, c.updateAllocStatus, alloc, c.vaultClient, c.consulService, watcher) + ar := allocrunner.NewAllocRunner(c.logger, c.configCopy.Copy(), c.stateDB, c.updateAllocStatus, alloc, c.vaultClient, c.consulService, watcher) c.configLock.RUnlock() c.allocLock.Lock() @@ -778,7 +797,7 @@ func (c *Client) saveState() error { wg.Add(len(runners)) for id, ar := range runners { - go func(id string, ar *AllocRunner) { + go func(id string, ar *allocrunner.AllocRunner) { err := ar.SaveState() if err != nil { c.logger.Printf("[ERR] client: failed to save state for alloc %q: %v", id, err) @@ -795,10 +814,10 @@ func (c *Client) saveState() error { } // getAllocRunners returns a snapshot of the current set of alloc runners. -func (c *Client) getAllocRunners() map[string]*AllocRunner { +func (c *Client) getAllocRunners() map[string]*allocrunner.AllocRunner { c.allocLock.RLock() defer c.allocLock.RUnlock() - runners := make(map[string]*AllocRunner, len(c.allocs)) + runners := make(map[string]*allocrunner.AllocRunner, len(c.allocs)) for id, ar := range c.allocs { runners[id] = ar } @@ -1677,7 +1696,7 @@ OUTER: // allocation or if the alloc runner requires an updated allocation. runner, ok := runners[allocID] - if !ok || runner.shouldUpdate(modifyIndex) { + if !ok || runner.ShouldUpdate(modifyIndex) { // Only pull allocs that are required. Filtered // allocs might be at a higher index, so ignore // it. @@ -1810,7 +1829,7 @@ func (c *Client) runAllocs(update *allocUpdates) { c.allocLock.RLock() exist := make([]*structs.Allocation, 0, len(c.allocs)) for _, ar := range c.allocs { - exist = append(exist, ar.alloc) + exist = append(exist, ar.Alloc()) } c.allocLock.RUnlock() @@ -1899,18 +1918,18 @@ func (c *Client) addAlloc(alloc *structs.Allocation, migrateToken string) error // get the previous alloc runner - if one exists - for the // blocking/migrating watcher - var prevAR *AllocRunner + var prevAR *allocrunner.AllocRunner if alloc.PreviousAllocation != "" { prevAR = c.allocs[alloc.PreviousAllocation] } c.configLock.RLock() - prevAlloc := newAllocWatcher(alloc, prevAR, c, c.configCopy, c.logger, migrateToken) + prevAlloc := allocrunner.NewAllocWatcher(alloc, prevAR, c, c.configCopy, c.logger, migrateToken) // Copy the config since the node can be swapped out as it is being updated. // The long term fix is to pass in the config and node separately and then // we don't have to do a copy. - ar := NewAllocRunner(c.logger, c.configCopy.Copy(), c.stateDB, c.updateAllocStatus, alloc, c.vaultClient, c.consulService, prevAlloc) + ar := allocrunner.NewAllocRunner(c.logger, c.configCopy.Copy(), c.stateDB, c.updateAllocStatus, alloc, c.vaultClient, c.consulService, prevAlloc) c.configLock.RUnlock() // Store the alloc runner. diff --git a/client/client_test.go b/client/client_test.go index f697972d7..03b466cbf 100644 --- a/client/client_test.go +++ b/client/client_test.go @@ -3,7 +3,6 @@ package client import ( "fmt" "io/ioutil" - "log" "os" "path/filepath" "testing" @@ -11,8 +10,10 @@ import ( memdb "github.com/hashicorp/go-memdb" "github.com/hashicorp/nomad/client/config" + consulApi "github.com/hashicorp/nomad/client/consul" "github.com/hashicorp/nomad/client/driver" "github.com/hashicorp/nomad/command/agent/consul" + "github.com/hashicorp/nomad/helper/testlog" "github.com/hashicorp/nomad/helper/uuid" "github.com/hashicorp/nomad/nomad" "github.com/hashicorp/nomad/nomad/mock" @@ -601,10 +602,10 @@ func TestClient_SaveRestoreState(t *testing.T) { } // Create a new client - logger := log.New(c1.config.LogOutput, "", log.LstdFlags) + logger := testlog.Logger(t) catalog := consul.NewMockCatalog(logger) - mockService := newMockConsulServiceClient(t) - mockService.logger = logger + mockService := consulApi.NewMockConsulServiceClient(t) + mockService.Logger = logger c2, err := NewClient(c1.config, catalog, mockService, logger) if err != nil { t.Fatalf("err: %v", err) @@ -649,7 +650,7 @@ func TestClient_Init(t *testing.T) { config: &config.Config{ AllocDir: allocDir, }, - logger: log.New(os.Stderr, "", log.LstdFlags), + logger: testlog.Logger(t), } if err := client.init(); err != nil { t.Fatalf("err: %s", err) diff --git a/client/consul.go b/client/consul/consul.go similarity index 96% rename from client/consul.go rename to client/consul/consul.go index 58f75e6f8..69f2f6e67 100644 --- a/client/consul.go +++ b/client/consul/consul.go @@ -1,4 +1,4 @@ -package client +package consul import ( "github.com/hashicorp/nomad/command/agent/consul" diff --git a/client/consul/consul_testing.go b/client/consul/consul_testing.go new file mode 100644 index 000000000..e9f642112 --- /dev/null +++ b/client/consul/consul_testing.go @@ -0,0 +1,86 @@ +package consul + +import ( + "fmt" + "log" + "sync" + + "github.com/hashicorp/nomad/command/agent/consul" + "github.com/hashicorp/nomad/helper/testlog" + "github.com/mitchellh/go-testing-interface" +) + +// MockConsulOp represents the register/deregister operations. +type MockConsulOp struct { + Op string // add, remove, or update + AllocID string + Task string +} + +func NewMockConsulOp(op, allocID, task string) MockConsulOp { + if op != "add" && op != "remove" && op != "update" && op != "alloc_registrations" { + panic(fmt.Errorf("invalid consul op: %s", op)) + } + return MockConsulOp{ + Op: op, + AllocID: allocID, + Task: task, + } +} + +// MockConsulServiceClient implements the ConsulServiceAPI interface to record +// and log task registration/deregistration. +type MockConsulServiceClient struct { + Ops []MockConsulOp + mu sync.Mutex + + Logger *log.Logger + + // AllocRegistrationsFn allows injecting return values for the + // AllocRegistrations function. + AllocRegistrationsFn func(allocID string) (*consul.AllocRegistration, error) +} + +func NewMockConsulServiceClient(t testing.T) *MockConsulServiceClient { + m := MockConsulServiceClient{ + Ops: make([]MockConsulOp, 0, 20), + Logger: testlog.Logger(t), + } + return &m +} + +func (m *MockConsulServiceClient) UpdateTask(old, new *consul.TaskServices) error { + m.mu.Lock() + defer m.mu.Unlock() + m.Logger.Printf("[TEST] mock_consul: UpdateTask(alloc: %s, task: %s)", new.AllocID[:6], new.Name) + m.Ops = append(m.Ops, NewMockConsulOp("update", new.AllocID, new.Name)) + return nil +} + +func (m *MockConsulServiceClient) RegisterTask(task *consul.TaskServices) error { + m.mu.Lock() + defer m.mu.Unlock() + m.Logger.Printf("[TEST] mock_consul: RegisterTask(alloc: %s, task: %s)", task.AllocID, task.Name) + m.Ops = append(m.Ops, NewMockConsulOp("add", task.AllocID, task.Name)) + return nil +} + +func (m *MockConsulServiceClient) RemoveTask(task *consul.TaskServices) { + m.mu.Lock() + defer m.mu.Unlock() + m.Logger.Printf("[TEST] mock_consul: RemoveTask(%q, %q)", task.AllocID, task.Name) + m.Ops = append(m.Ops, NewMockConsulOp("remove", task.AllocID, task.Name)) +} + +func (m *MockConsulServiceClient) AllocRegistrations(allocID string) (*consul.AllocRegistration, error) { + m.mu.Lock() + defer m.mu.Unlock() + m.Logger.Printf("[TEST] mock_consul: AllocRegistrations(%q)", allocID) + m.Ops = append(m.Ops, NewMockConsulOp("alloc_registrations", allocID, "")) + + if m.AllocRegistrationsFn != nil { + return m.AllocRegistrationsFn(allocID) + } + + return nil, nil +} diff --git a/client/consul_testing.go b/client/consul_testing.go deleted file mode 100644 index 1db5d4ccf..000000000 --- a/client/consul_testing.go +++ /dev/null @@ -1,86 +0,0 @@ -package client - -import ( - "fmt" - "log" - "sync" - - "github.com/hashicorp/nomad/command/agent/consul" - "github.com/hashicorp/nomad/helper/testlog" - "github.com/mitchellh/go-testing-interface" -) - -// mockConsulOp represents the register/deregister operations. -type mockConsulOp struct { - op string // add, remove, or update - allocID string - task string -} - -func newMockConsulOp(op, allocID, task string) mockConsulOp { - if op != "add" && op != "remove" && op != "update" && op != "alloc_registrations" { - panic(fmt.Errorf("invalid consul op: %s", op)) - } - return mockConsulOp{ - op: op, - allocID: allocID, - task: task, - } -} - -// mockConsulServiceClient implements the ConsulServiceAPI interface to record -// and log task registration/deregistration. -type mockConsulServiceClient struct { - ops []mockConsulOp - mu sync.Mutex - - logger *log.Logger - - // allocRegistrationsFn allows injecting return values for the - // AllocRegistrations function. - allocRegistrationsFn func(allocID string) (*consul.AllocRegistration, error) -} - -func newMockConsulServiceClient(t testing.T) *mockConsulServiceClient { - m := mockConsulServiceClient{ - ops: make([]mockConsulOp, 0, 20), - logger: testlog.Logger(t), - } - return &m -} - -func (m *mockConsulServiceClient) UpdateTask(old, new *consul.TaskServices) error { - m.mu.Lock() - defer m.mu.Unlock() - m.logger.Printf("[TEST] mock_consul: UpdateTask(alloc: %s, task: %s)", new.AllocID[:6], new.Name) - m.ops = append(m.ops, newMockConsulOp("update", new.AllocID, new.Name)) - return nil -} - -func (m *mockConsulServiceClient) RegisterTask(task *consul.TaskServices) error { - m.mu.Lock() - defer m.mu.Unlock() - m.logger.Printf("[TEST] mock_consul: RegisterTask(alloc: %s, task: %s)", task.AllocID, task.Name) - m.ops = append(m.ops, newMockConsulOp("add", task.AllocID, task.Name)) - return nil -} - -func (m *mockConsulServiceClient) RemoveTask(task *consul.TaskServices) { - m.mu.Lock() - defer m.mu.Unlock() - m.logger.Printf("[TEST] mock_consul: RemoveTask(%q, %q)", task.AllocID, task.Name) - m.ops = append(m.ops, newMockConsulOp("remove", task.AllocID, task.Name)) -} - -func (m *mockConsulServiceClient) AllocRegistrations(allocID string) (*consul.AllocRegistration, error) { - m.mu.Lock() - defer m.mu.Unlock() - m.logger.Printf("[TEST] mock_consul: AllocRegistrations(%q)", allocID) - m.ops = append(m.ops, newMockConsulOp("alloc_registrations", allocID, "")) - - if m.allocRegistrationsFn != nil { - return m.allocRegistrationsFn(allocID) - } - - return nil, nil -} diff --git a/client/driver/docker_coordinator_test.go b/client/driver/docker_coordinator_test.go index c81cee99b..79bcfdc31 100644 --- a/client/driver/docker_coordinator_test.go +++ b/client/driver/docker_coordinator_test.go @@ -6,6 +6,7 @@ import ( "time" docker "github.com/fsouza/go-dockerclient" + "github.com/hashicorp/nomad/helper/testlog" "github.com/hashicorp/nomad/helper/uuid" "github.com/hashicorp/nomad/testutil" ) @@ -52,7 +53,7 @@ func TestDockerCoordinator_ConcurrentPulls(t *testing.T) { // Add a delay so we can get multiple queued up mock := newMockImageClient(mapping, 10*time.Millisecond) config := &dockerCoordinatorConfig{ - logger: testLogger(), + logger: testlog.Logger(t), cleanup: true, client: mock, removeDelay: 100 * time.Millisecond, @@ -99,7 +100,7 @@ func TestDockerCoordinator_Pull_Remove(t *testing.T) { // Add a delay so we can get multiple queued up mock := newMockImageClient(mapping, 10*time.Millisecond) config := &dockerCoordinatorConfig{ - logger: testLogger(), + logger: testlog.Logger(t), cleanup: true, client: mock, removeDelay: 1 * time.Millisecond, @@ -162,7 +163,7 @@ func TestDockerCoordinator_Remove_Cancel(t *testing.T) { mock := newMockImageClient(mapping, 1*time.Millisecond) config := &dockerCoordinatorConfig{ - logger: testLogger(), + logger: testlog.Logger(t), cleanup: true, client: mock, removeDelay: 100 * time.Millisecond, @@ -210,7 +211,7 @@ func TestDockerCoordinator_No_Cleanup(t *testing.T) { mock := newMockImageClient(mapping, 1*time.Millisecond) config := &dockerCoordinatorConfig{ - logger: testLogger(), + logger: testlog.Logger(t), cleanup: false, client: mock, removeDelay: 1 * time.Millisecond, diff --git a/client/driver/docker_progress.go b/client/driver/docker_progress.go index 912c2d4a8..1bfd1312c 100644 --- a/client/driver/docker_progress.go +++ b/client/driver/docker_progress.go @@ -6,6 +6,7 @@ import ( "encoding/json" "fmt" "io" + "strings" "sync" "time" @@ -114,9 +115,15 @@ func (p *imageProgress) get() (string, time.Time) { est = (elapsed.Nanoseconds() / cur * total) - elapsed.Nanoseconds() } - return fmt.Sprintf("Pulled %d/%d (%s/%s) layers: %d waiting/%d pulling - est %.1fs remaining", + var msg strings.Builder + fmt.Fprintf(&msg, "Pulled %d/%d (%s/%s) layers: %d waiting/%d pulling", pulled, len(p.layers), units.BytesSize(float64(cur)), units.BytesSize(float64(total)), - waiting, pulling, time.Duration(est).Seconds()), p.timestamp + waiting, pulling) + + if est > 0 { + fmt.Fprintf(&msg, " - est %.1fs remaining", time.Duration(est).Seconds()) + } + return msg.String(), p.timestamp } // set takes a status message received from the docker engine api during an image diff --git a/client/driver/docker_test.go b/client/driver/docker_test.go index 151f034a7..674cae9b2 100644 --- a/client/driver/docker_test.go +++ b/client/driver/docker_test.go @@ -24,6 +24,7 @@ import ( "github.com/hashicorp/nomad/client/fingerprint" cstructs "github.com/hashicorp/nomad/client/structs" "github.com/hashicorp/nomad/client/testutil" + "github.com/hashicorp/nomad/helper/testlog" "github.com/hashicorp/nomad/helper/uuid" "github.com/hashicorp/nomad/nomad/mock" "github.com/hashicorp/nomad/nomad/structs" @@ -225,7 +226,7 @@ func TestDockerDriver_Fingerprint_Bridge(t *testing.T) { conf := testConfig(t) conf.Node = mock.Node() - dd := NewDockerDriver(NewDriverContext("", "", "", "", conf, conf.Node, testLogger(), nil)) + dd := NewDockerDriver(NewDriverContext("", "", "", "", conf, conf.Node, testlog.Logger(t), nil)) request := &cstructs.FingerprintRequest{Config: conf, Node: conf.Node} var response cstructs.FingerprintResponse @@ -277,7 +278,7 @@ func TestDockerDriver_Check_DockerHealthStatus(t *testing.T) { conf := testConfig(t) conf.Node = mock.Node() - dd := NewDockerDriver(NewDriverContext("", "", "", "", conf, conf.Node, testLogger(), nil)) + dd := NewDockerDriver(NewDriverContext("", "", "", "", conf, conf.Node, testlog.Logger(t), nil)) request := &cstructs.HealthCheckRequest{} var response cstructs.HealthCheckResponse @@ -1677,7 +1678,7 @@ func setupDockerVolumes(t *testing.T, cfg *config.Config, hostpath string) (*str } // Build alloc and task directory structure - allocDir := allocdir.NewAllocDir(testLogger(), filepath.Join(cfg.AllocDir, uuid.Generate())) + allocDir := allocdir.NewAllocDir(testlog.Logger(t), filepath.Join(cfg.AllocDir, uuid.Generate())) if err := allocDir.Build(); err != nil { t.Fatalf("failed to build alloc dir: %v", err) } @@ -1690,11 +1691,11 @@ func setupDockerVolumes(t *testing.T, cfg *config.Config, hostpath string) (*str // Setup driver alloc := mock.Alloc() - logger := testLogger() + logger := testlog.Logger(t) emitter := func(m string, args ...interface{}) { logger.Printf("[EVENT] "+m, args...) } - driverCtx := NewDriverContext(alloc.Job.Name, alloc.TaskGroup, task.Name, alloc.ID, cfg, cfg.Node, testLogger(), emitter) + driverCtx := NewDriverContext(alloc.Job.Name, alloc.TaskGroup, task.Name, alloc.ID, cfg, cfg.Node, testlog.Logger(t), emitter) driver := NewDockerDriver(driverCtx) // Setup execCtx diff --git a/client/driver/driver_test.go b/client/driver/driver_test.go index 11caf922c..d17ffefcc 100644 --- a/client/driver/driver_test.go +++ b/client/driver/driver_test.go @@ -3,7 +3,6 @@ package driver import ( "io" "io/ioutil" - "log" "math/rand" "os" "path/filepath" @@ -14,6 +13,7 @@ import ( "github.com/hashicorp/nomad/client/allocdir" "github.com/hashicorp/nomad/client/config" "github.com/hashicorp/nomad/client/driver/env" + "github.com/hashicorp/nomad/helper/testlog" "github.com/hashicorp/nomad/helper/testtask" "github.com/hashicorp/nomad/helper/uuid" "github.com/hashicorp/nomad/nomad/mock" @@ -60,10 +60,6 @@ func copyFile(src, dst string, t *testing.T) { } } -func testLogger() *log.Logger { - return log.New(os.Stderr, "", log.LstdFlags) -} - func testConfig(t *testing.T) *config.Config { conf := config.DefaultConfig() @@ -116,7 +112,7 @@ type testContext struct { func testDriverContexts(t *testing.T, task *structs.Task) *testContext { cfg := testConfig(t) cfg.Node = mock.Node() - allocDir := allocdir.NewAllocDir(testLogger(), filepath.Join(cfg.AllocDir, uuid.Generate())) + allocDir := allocdir.NewAllocDir(testlog.Logger(t), filepath.Join(cfg.AllocDir, uuid.Generate())) if err := allocDir.Build(); err != nil { t.Fatalf("AllocDir.Build() failed: %v", err) } @@ -141,7 +137,7 @@ func testDriverContexts(t *testing.T, task *structs.Task) *testContext { SetEnvvars(eb, tmpdrv.FSIsolation(), td, cfg) execCtx := NewExecContext(td, eb.Build()) - logger := testLogger() + logger := testlog.Logger(t) emitter := func(m string, args ...interface{}) { logger.Printf("[EVENT] "+m, args...) } @@ -182,7 +178,7 @@ func setupTaskEnv(t *testing.T, driver string) (*allocdir.TaskDir, map[string]st alloc.Name = "Bar" alloc.TaskResources["web"].Networks[0].DynamicPorts[0].Value = 2000 conf := testConfig(t) - allocDir := allocdir.NewAllocDir(testLogger(), filepath.Join(conf.AllocDir, alloc.ID)) + allocDir := allocdir.NewAllocDir(testlog.Logger(t), filepath.Join(conf.AllocDir, alloc.ID)) taskDir := allocDir.NewTaskDir(task.Name) eb := env.NewBuilder(conf.Node, alloc, task, conf.Region) tmpDriver, err := NewDriver(driver, NewEmptyDriverContext()) diff --git a/client/driver/env/env.go b/client/driver/env/env.go index 19f934967..c59ef807e 100644 --- a/client/driver/env/env.go +++ b/client/driver/env/env.go @@ -402,9 +402,9 @@ func (b *Builder) setAlloc(alloc *structs.Allocation) *Builder { taskMetaSize := len(combined) * 2 // if job is parameterized initialize optional meta to empty strings - if alloc.Job.IsParameterized() { - b.taskMeta = make(map[string]string, - taskMetaSize+(len(alloc.Job.ParameterizedJob.MetaOptional)*2)) + if alloc.Job.Dispatched { + optionalMetaCount := len(alloc.Job.ParameterizedJob.MetaOptional) + b.taskMeta = make(map[string]string, taskMetaSize+optionalMetaCount*2) for _, k := range alloc.Job.ParameterizedJob.MetaOptional { b.taskMeta[fmt.Sprintf("%s%s", MetaPrefix, strings.ToUpper(k))] = "" diff --git a/client/driver/env/env_test.go b/client/driver/env/env_test.go index 35a703292..01a712e57 100644 --- a/client/driver/env/env_test.go +++ b/client/driver/env/env_test.go @@ -378,13 +378,15 @@ func TestEnvironment_UpdateTask(t *testing.T) { // job, if an optional meta field is not set, it will get interpolated as an // empty string. func TestEnvironment_InterpolateEmptyOptionalMeta(t *testing.T) { + require := require.New(t) a := mock.Alloc() a.Job.ParameterizedJob = &structs.ParameterizedJobConfig{ MetaOptional: []string{"metaopt1", "metaopt2"}, } + a.Job.Dispatched = true task := a.Job.TaskGroups[0].Tasks[0] task.Meta = map[string]string{"metaopt1": "metaopt1val"} env := NewBuilder(mock.Node(), a, task, "global").Build() - require.Equal(t, "metaopt1val", env.ReplaceEnv("${NOMAD_META_metaopt1}")) - require.Empty(t, env.ReplaceEnv("${NOMAD_META_metaopt2}")) + require.Equal("metaopt1val", env.ReplaceEnv("${NOMAD_META_metaopt1}")) + require.Empty(env.ReplaceEnv("${NOMAD_META_metaopt2}")) } diff --git a/client/driver/executor/executor.go b/client/driver/executor/executor.go index aba0ee8b4..76272372f 100644 --- a/client/driver/executor/executor.go +++ b/client/driver/executor/executor.go @@ -364,7 +364,7 @@ func (e *UniversalExecutor) configureLoggers() error { return fmt.Errorf("error creating new stdout log file for %q: %v", e.ctx.Task.Name, err) } - r, err := NewLogRotatorWrapper(lro) + r, err := newLogRotatorWrapper(e.logger, lro) if err != nil { return err } @@ -378,7 +378,7 @@ func (e *UniversalExecutor) configureLoggers() error { return fmt.Errorf("error creating new stderr log file for %q: %v", e.ctx.Task.Name, err) } - r, err := NewLogRotatorWrapper(lre) + r, err := newLogRotatorWrapper(e.logger, lre) if err != nil { return err } @@ -851,11 +851,12 @@ type logRotatorWrapper struct { processOutReader *os.File rotatorWriter *logging.FileRotator hasFinishedCopied chan struct{} + logger *log.Logger } -// NewLogRotatorWrapper takes a rotator and returns a wrapper that has the +// newLogRotatorWrapper takes a rotator and returns a wrapper that has the // processOutWriter to attach to the processes stdout or stderr. -func NewLogRotatorWrapper(rotator *logging.FileRotator) (*logRotatorWrapper, error) { +func newLogRotatorWrapper(logger *log.Logger, rotator *logging.FileRotator) (*logRotatorWrapper, error) { r, w, err := os.Pipe() if err != nil { return nil, fmt.Errorf("failed to create os.Pipe for extracting logs: %v", err) @@ -865,7 +866,8 @@ func NewLogRotatorWrapper(rotator *logging.FileRotator) (*logRotatorWrapper, err processOutWriter: w, processOutReader: r, rotatorWriter: rotator, - hasFinishedCopied: make(chan struct{}, 1), + hasFinishedCopied: make(chan struct{}), + logger: logger, } wrap.start() return wrap, nil @@ -875,22 +877,51 @@ func NewLogRotatorWrapper(rotator *logging.FileRotator) (*logRotatorWrapper, err // called by the constructor and not the user of the wrapper. func (l *logRotatorWrapper) start() { go func() { - io.Copy(l.rotatorWriter, l.processOutReader) - l.processOutReader.Close() // in case io.Copy stopped due to write error - close(l.hasFinishedCopied) + defer close(l.hasFinishedCopied) + _, err := io.Copy(l.rotatorWriter, l.processOutReader) + if err != nil { + // Close reader to propagate io error across pipe. + // Note that this may block until the process exits on + // Windows due to + // https://github.com/PowerShell/PowerShell/issues/4254 + // or similar issues. Since this is already running in + // a goroutine its safe to block until the process is + // force-killed. + l.processOutReader.Close() + } }() return } // Close closes the rotator and the process writer to ensure that the Wait // command exits. -func (l *logRotatorWrapper) Close() error { +func (l *logRotatorWrapper) Close() { // Wait up to the close tolerance before we force close select { case <-l.hasFinishedCopied: case <-time.After(processOutputCloseTolerance): } - err := l.processOutReader.Close() + + // Closing the read side of a pipe may block on Windows if the process + // is being debugged as in: + // https://github.com/PowerShell/PowerShell/issues/4254 + // The pipe will be closed and cleaned up when the process exits. + closeDone := make(chan struct{}) + go func() { + defer close(closeDone) + err := l.processOutReader.Close() + if err != nil && !strings.Contains(err.Error(), "file already closed") { + l.logger.Printf("[WARN] executor: error closing read-side of process output pipe: %v", err) + } + + }() + + select { + case <-closeDone: + case <-time.After(processOutputCloseTolerance): + l.logger.Printf("[WARN] executor: timed out waiting for read-side of process output pipe to close") + } + l.rotatorWriter.Close() - return err + return } diff --git a/client/driver/executor/executor_linux_test.go b/client/driver/executor/executor_linux_test.go index 17063b4bd..3d423ddd0 100644 --- a/client/driver/executor/executor_linux_test.go +++ b/client/driver/executor/executor_linux_test.go @@ -2,7 +2,6 @@ package executor import ( "io/ioutil" - "log" "os" "path/filepath" "strconv" @@ -15,6 +14,7 @@ import ( dstructs "github.com/hashicorp/nomad/client/driver/structs" cstructs "github.com/hashicorp/nomad/client/structs" "github.com/hashicorp/nomad/client/testutil" + "github.com/hashicorp/nomad/helper/testlog" "github.com/hashicorp/nomad/nomad/mock" ) @@ -41,13 +41,13 @@ func testExecutorContextWithChroot(t *testing.T) (*ExecutorContext, *allocdir.Al task := alloc.Job.TaskGroups[0].Tasks[0] taskEnv := env.NewBuilder(mock.Node(), alloc, task, "global").Build() - allocDir := allocdir.NewAllocDir(testLogger(), filepath.Join(os.TempDir(), alloc.ID)) + allocDir := allocdir.NewAllocDir(testlog.Logger(t), filepath.Join(os.TempDir(), alloc.ID)) if err := allocDir.Build(); err != nil { - log.Fatalf("AllocDir.Build() failed: %v", err) + t.Fatalf("AllocDir.Build() failed: %v", err) } if err := allocDir.NewTaskDir(task.Name).Build(false, chrootEnv, cstructs.FSIsolationChroot); err != nil { allocDir.Destroy() - log.Fatalf("allocDir.NewTaskDir(%q) failed: %v", task.Name, err) + t.Fatalf("allocDir.NewTaskDir(%q) failed: %v", task.Name, err) } td := allocDir.TaskDirs[task.Name] ctx := &ExecutorContext{ @@ -71,7 +71,7 @@ func TestExecutor_IsolationAndConstraints(t *testing.T) { execCmd.ResourceLimits = true execCmd.User = dstructs.DefaultUnprivilegedUser - executor := NewExecutor(log.New(os.Stdout, "", log.LstdFlags)) + executor := NewExecutor(testlog.Logger(t)) if err := executor.SetContext(ctx); err != nil { t.Fatalf("Unexpected error: %v", err) @@ -151,7 +151,7 @@ func TestExecutor_ClientCleanup(t *testing.T) { ctx.Task.LogConfig.MaxFileSizeMB = 300 defer allocDir.Destroy() - executor := NewExecutor(log.New(os.Stdout, "", log.LstdFlags)) + executor := NewExecutor(testlog.Logger(t)) if err := executor.SetContext(ctx); err != nil { t.Fatalf("Unexpected error") diff --git a/client/driver/executor/executor_test.go b/client/driver/executor/executor_test.go index e3a41571c..ddb5169ba 100644 --- a/client/driver/executor/executor_test.go +++ b/client/driver/executor/executor_test.go @@ -2,7 +2,6 @@ package executor import ( "io/ioutil" - "log" "os" "path/filepath" "strings" @@ -13,15 +12,12 @@ import ( "github.com/hashicorp/nomad/client/allocdir" "github.com/hashicorp/nomad/client/driver/env" cstructs "github.com/hashicorp/nomad/client/structs" + "github.com/hashicorp/nomad/helper/testlog" "github.com/hashicorp/nomad/nomad/mock" tu "github.com/hashicorp/nomad/testutil" "github.com/mitchellh/go-ps" ) -func testLogger() *log.Logger { - return log.New(os.Stderr, "", log.LstdFlags) -} - // testExecutorContext returns an ExecutorContext and AllocDir. // // The caller is responsible for calling AllocDir.Destroy() to cleanup. @@ -30,13 +26,13 @@ func testExecutorContext(t *testing.T) (*ExecutorContext, *allocdir.AllocDir) { task := alloc.Job.TaskGroups[0].Tasks[0] taskEnv := env.NewBuilder(mock.Node(), alloc, task, "global").Build() - allocDir := allocdir.NewAllocDir(testLogger(), filepath.Join(os.TempDir(), alloc.ID)) + allocDir := allocdir.NewAllocDir(testlog.Logger(t), filepath.Join(os.TempDir(), alloc.ID)) if err := allocDir.Build(); err != nil { - log.Fatalf("AllocDir.Build() failed: %v", err) + t.Fatalf("AllocDir.Build() failed: %v", err) } if err := allocDir.NewTaskDir(task.Name).Build(false, nil, cstructs.FSIsolationNone); err != nil { allocDir.Destroy() - log.Fatalf("allocDir.NewTaskDir(%q) failed: %v", task.Name, err) + t.Fatalf("allocDir.NewTaskDir(%q) failed: %v", task.Name, err) } td := allocDir.TaskDirs[task.Name] ctx := &ExecutorContext{ @@ -54,7 +50,7 @@ func TestExecutor_Start_Invalid(t *testing.T) { execCmd := ExecCommand{Cmd: invalid, Args: []string{"1"}} ctx, allocDir := testExecutorContext(t) defer allocDir.Destroy() - executor := NewExecutor(log.New(os.Stdout, "", log.LstdFlags)) + executor := NewExecutor(testlog.Logger(t)) if err := executor.SetContext(ctx); err != nil { t.Fatalf("Unexpected error") @@ -70,7 +66,7 @@ func TestExecutor_Start_Wait_Failure_Code(t *testing.T) { execCmd := ExecCommand{Cmd: "/bin/date", Args: []string{"fail"}} ctx, allocDir := testExecutorContext(t) defer allocDir.Destroy() - executor := NewExecutor(log.New(os.Stdout, "", log.LstdFlags)) + executor := NewExecutor(testlog.Logger(t)) if err := executor.SetContext(ctx); err != nil { t.Fatalf("Unexpected error") @@ -98,7 +94,7 @@ func TestExecutor_Start_Wait(t *testing.T) { execCmd := ExecCommand{Cmd: "/bin/echo", Args: []string{"hello world"}} ctx, allocDir := testExecutorContext(t) defer allocDir.Destroy() - executor := NewExecutor(log.New(os.Stdout, "", log.LstdFlags)) + executor := NewExecutor(testlog.Logger(t)) if err := executor.SetContext(ctx); err != nil { t.Fatalf("Unexpected error") @@ -137,7 +133,7 @@ func TestExecutor_WaitExitSignal(t *testing.T) { execCmd := ExecCommand{Cmd: "/bin/sleep", Args: []string{"10000"}} ctx, allocDir := testExecutorContext(t) defer allocDir.Destroy() - executor := NewExecutor(log.New(os.Stdout, "", log.LstdFlags)) + executor := NewExecutor(testlog.Logger(t)) if err := executor.SetContext(ctx); err != nil { t.Fatalf("Unexpected error") @@ -180,7 +176,7 @@ func TestExecutor_Start_Kill(t *testing.T) { execCmd := ExecCommand{Cmd: "/bin/sleep", Args: []string{"10 && hello world"}} ctx, allocDir := testExecutorContext(t) defer allocDir.Destroy() - executor := NewExecutor(log.New(os.Stdout, "", log.LstdFlags)) + executor := NewExecutor(testlog.Logger(t)) if err := executor.SetContext(ctx); err != nil { t.Fatalf("Unexpected error") @@ -230,7 +226,7 @@ func TestExecutor_MakeExecutable(t *testing.T) { f.Chmod(os.FileMode(0610)) // Make a fake executor - executor := NewExecutor(log.New(os.Stdout, "", log.LstdFlags)) + executor := NewExecutor(testlog.Logger(t)) err = executor.(*UniversalExecutor).makeExecutable(f.Name()) if err != nil { @@ -259,7 +255,7 @@ func TestScanPids(t *testing.T) { p5 := NewFakeProcess(20, 18) // Make a fake executor - executor := NewExecutor(log.New(os.Stdout, "", log.LstdFlags)).(*UniversalExecutor) + executor := NewExecutor(testlog.Logger(t)).(*UniversalExecutor) nomadPids, err := executor.scanPids(5, []ps.Process{p1, p2, p3, p4, p5}) if err != nil { diff --git a/client/driver/executor/executor_windows.go b/client/driver/executor/executor_windows.go index e81af8b49..b3c027bfb 100644 --- a/client/driver/executor/executor_windows.go +++ b/client/driver/executor/executor_windows.go @@ -63,7 +63,7 @@ func (e *UniversalExecutor) shutdownProcess(proc *os.Process) error { if err := sendCtrlBreak(proc.Pid); err != nil { return fmt.Errorf("executor.shutdown error: %v", err) } - e.logger.Printf("Sent Ctrl-Break to process %v", proc.Pid) + e.logger.Printf("[INFO] executor: sent Ctrl-Break to process %v", proc.Pid) return nil } diff --git a/client/driver/logging/rotator_test.go b/client/driver/logging/rotator_test.go index 4fcf23952..d988c6493 100644 --- a/client/driver/logging/rotator_test.go +++ b/client/driver/logging/rotator_test.go @@ -3,24 +3,23 @@ package logging import ( "fmt" "io/ioutil" - "log" "math/rand" "os" "path/filepath" "testing" + "github.com/hashicorp/nomad/helper/testlog" "github.com/hashicorp/nomad/testutil" ) var ( - logger = log.New(os.Stdout, "", log.LstdFlags) pathPrefix = "logrotator" baseFileName = "redis.stdout" ) func TestFileRotator_IncorrectPath(t *testing.T) { t.Parallel() - if _, err := NewFileRotator("/foo", baseFileName, 10, 10, logger); err == nil { + if _, err := NewFileRotator("/foo", baseFileName, 10, 10, testlog.Logger(t)); err == nil { t.Fatalf("expected error") } } @@ -34,7 +33,7 @@ func TestFileRotator_CreateNewFile(t *testing.T) { } defer os.RemoveAll(path) - _, err = NewFileRotator(path, baseFileName, 10, 10, logger) + _, err = NewFileRotator(path, baseFileName, 10, 10, testlog.Logger(t)) if err != nil { t.Fatalf("test setup err: %v", err) } @@ -62,7 +61,7 @@ func TestFileRotator_OpenLastFile(t *testing.T) { t.Fatalf("test setup failure: %v", err) } - fr, err := NewFileRotator(path, baseFileName, 10, 10, logger) + fr, err := NewFileRotator(path, baseFileName, 10, 10, testlog.Logger(t)) if err != nil { t.Fatalf("test setup err: %v", err) } @@ -86,7 +85,7 @@ func TestFileRotator_WriteToCurrentFile(t *testing.T) { t.Fatalf("test setup failure: %v", err) } - fr, err := NewFileRotator(path, baseFileName, 10, 5, logger) + fr, err := NewFileRotator(path, baseFileName, 10, 5, testlog.Logger(t)) if err != nil { t.Fatalf("test setup err: %v", err) } @@ -119,7 +118,7 @@ func TestFileRotator_RotateFiles(t *testing.T) { } defer os.RemoveAll(path) - fr, err := NewFileRotator(path, baseFileName, 10, 5, logger) + fr, err := NewFileRotator(path, baseFileName, 10, 5, testlog.Logger(t)) if err != nil { t.Fatalf("test setup err: %v", err) } @@ -178,7 +177,7 @@ func TestFileRotator_RotateFiles_Boundary(t *testing.T) { } defer os.RemoveAll(path) - fr, err := NewFileRotator(path, baseFileName, 10, 5, logger) + fr, err := NewFileRotator(path, baseFileName, 10, 5, testlog.Logger(t)) if err != nil { t.Fatalf("test setup err: %v", err) } @@ -244,7 +243,7 @@ func TestFileRotator_WriteRemaining(t *testing.T) { t.Fatalf("test setup failure: %v", err) } - fr, err := NewFileRotator(path, baseFileName, 10, 5, logger) + fr, err := NewFileRotator(path, baseFileName, 10, 5, testlog.Logger(t)) if err != nil { t.Fatalf("test setup err: %v", err) } @@ -317,7 +316,7 @@ func TestFileRotator_PurgeOldFiles(t *testing.T) { } defer os.RemoveAll(path) - fr, err := NewFileRotator(path, baseFileName, 2, 2, logger) + fr, err := NewFileRotator(path, baseFileName, 2, 2, testlog.Logger(t)) if err != nil { t.Fatalf("test setup err: %v", err) } @@ -367,7 +366,7 @@ func benchmarkRotatorWithInputSize(size int, b *testing.B) { } defer os.RemoveAll(path) - fr, err := NewFileRotator(path, baseFileName, 5, 1024*1024, logger) + fr, err := NewFileRotator(path, baseFileName, 5, 1024*1024, testlog.Logger(b)) if err != nil { b.Fatalf("test setup err: %v", err) } diff --git a/client/driver/logging/syslog_parser_unix_test.go b/client/driver/logging/syslog_parser_unix_test.go index bed6682a0..38d0b6b8a 100644 --- a/client/driver/logging/syslog_parser_unix_test.go +++ b/client/driver/logging/syslog_parser_unix_test.go @@ -4,17 +4,16 @@ package logging import ( "bytes" - "log" - "os" "testing" syslog "github.com/RackSec/srslog" + "github.com/hashicorp/nomad/helper/testlog" ) func TestLogParser_Priority(t *testing.T) { t.Parallel() line := []byte("<30>2016-02-10T10:16:43-08:00 d-thinkpad docker/e2a1e3ebd3a3[22950]: 1:C 10 Feb 18:16:43.391 # Warning: no config file specified, using the default config. In order to specify a config file use redis-server /path/to/redis.conf") - d := NewDockerLogParser(log.New(os.Stdout, "", log.LstdFlags)) + d := NewDockerLogParser(testlog.Logger(t)) p, _, err := d.parsePriority(line) if err != nil { t.Fatalf("got an err: %v", err) @@ -33,7 +32,7 @@ func TestLogParser_Priority(t *testing.T) { func TestLogParser_Priority_UnixFormatter(t *testing.T) { t.Parallel() line := []byte("<30>Feb 6, 10:16:43 docker/e2a1e3ebd3a3[22950]: 1:C 10 Feb 18:16:43.391 # Warning: no config file specified, using the default config. In order to specify a config file use redis-server /path/to/redis.conf") - d := NewDockerLogParser(log.New(os.Stdout, "", log.LstdFlags)) + d := NewDockerLogParser(testlog.Logger(t)) p, _, err := d.parsePriority(line) if err != nil { t.Fatalf("got an err: %v", err) diff --git a/client/driver/qemu_test.go b/client/driver/qemu_test.go index b3d442b09..51f021068 100644 --- a/client/driver/qemu_test.go +++ b/client/driver/qemu_test.go @@ -14,6 +14,7 @@ import ( "github.com/hashicorp/consul/lib/freeport" "github.com/hashicorp/nomad/client/config" cstructs "github.com/hashicorp/nomad/client/structs" + "github.com/hashicorp/nomad/helper/testlog" "github.com/hashicorp/nomad/nomad/structs" "github.com/hashicorp/nomad/testutil" @@ -65,7 +66,7 @@ func TestQemuDriver_Fingerprint(t *testing.T) { } func TestQemuDriver_StartOpen_Wait(t *testing.T) { - logger := testLogger() + logger := testlog.Logger(t) if !testutil.IsTravis() { t.Parallel() } @@ -143,7 +144,7 @@ func TestQemuDriver_GracefulShutdown(t *testing.T) { } ctestutils.QemuCompatible(t) - logger := testLogger() + logger := testlog.Logger(t) // Graceful shutdown may be really slow unfortunately killTimeout := 3 * time.Minute diff --git a/client/fingerprint/arch_test.go b/client/fingerprint/arch_test.go index 320ccc321..58c600b6a 100644 --- a/client/fingerprint/arch_test.go +++ b/client/fingerprint/arch_test.go @@ -5,11 +5,12 @@ import ( "github.com/hashicorp/nomad/client/config" cstructs "github.com/hashicorp/nomad/client/structs" + "github.com/hashicorp/nomad/helper/testlog" "github.com/hashicorp/nomad/nomad/structs" ) func TestArchFingerprint(t *testing.T) { - f := NewArchFingerprint(testLogger()) + f := NewArchFingerprint(testlog.Logger(t)) node := &structs.Node{ Attributes: make(map[string]string), } diff --git a/client/fingerprint/cgroup_test.go b/client/fingerprint/cgroup_test.go index 2dc1d51ec..b3894d2d2 100644 --- a/client/fingerprint/cgroup_test.go +++ b/client/fingerprint/cgroup_test.go @@ -8,6 +8,7 @@ import ( "github.com/hashicorp/nomad/client/config" cstructs "github.com/hashicorp/nomad/client/structs" + "github.com/hashicorp/nomad/helper/testlog" "github.com/hashicorp/nomad/nomad/structs" ) @@ -42,7 +43,7 @@ func (m *MountPointDetectorEmptyMountPoint) MountPoint() (string, error) { func TestCGroupFingerprint(t *testing.T) { { f := &CGroupFingerprint{ - logger: testLogger(), + logger: testlog.Logger(t), lastState: cgroupUnavailable, mountPointDetector: &MountPointDetectorMountPointFail{}, } @@ -65,7 +66,7 @@ func TestCGroupFingerprint(t *testing.T) { { f := &CGroupFingerprint{ - logger: testLogger(), + logger: testlog.Logger(t), lastState: cgroupUnavailable, mountPointDetector: &MountPointDetectorValidMountPoint{}, } @@ -87,7 +88,7 @@ func TestCGroupFingerprint(t *testing.T) { { f := &CGroupFingerprint{ - logger: testLogger(), + logger: testlog.Logger(t), lastState: cgroupUnavailable, mountPointDetector: &MountPointDetectorEmptyMountPoint{}, } @@ -108,7 +109,7 @@ func TestCGroupFingerprint(t *testing.T) { } { f := &CGroupFingerprint{ - logger: testLogger(), + logger: testlog.Logger(t), lastState: cgroupAvailable, mountPointDetector: &MountPointDetectorValidMountPoint{}, } diff --git a/client/fingerprint/consul_test.go b/client/fingerprint/consul_test.go index 400ab01f4..a96c73b07 100644 --- a/client/fingerprint/consul_test.go +++ b/client/fingerprint/consul_test.go @@ -9,12 +9,13 @@ import ( "github.com/hashicorp/nomad/client/config" cstructs "github.com/hashicorp/nomad/client/structs" + "github.com/hashicorp/nomad/helper/testlog" "github.com/hashicorp/nomad/nomad/structs" "github.com/stretchr/testify/assert" ) func TestConsulFingerprint(t *testing.T) { - fp := NewConsulFingerprint(testLogger()) + fp := NewConsulFingerprint(testlog.Logger(t)) node := &structs.Node{ Attributes: make(map[string]string), } @@ -170,7 +171,7 @@ const mockConsulResponse = ` // See https://github.com/hashicorp/nomad/issues/3326 func TestConsulFingerprint_UnexpectedResponse(t *testing.T) { assert := assert.New(t) - fp := NewConsulFingerprint(testLogger()) + fp := NewConsulFingerprint(testlog.Logger(t)) node := &structs.Node{ Attributes: make(map[string]string), } diff --git a/client/fingerprint/cpu_test.go b/client/fingerprint/cpu_test.go index 5bb761970..07dd64d3d 100644 --- a/client/fingerprint/cpu_test.go +++ b/client/fingerprint/cpu_test.go @@ -5,11 +5,12 @@ import ( "github.com/hashicorp/nomad/client/config" cstructs "github.com/hashicorp/nomad/client/structs" + "github.com/hashicorp/nomad/helper/testlog" "github.com/hashicorp/nomad/nomad/structs" ) func TestCPUFingerprint(t *testing.T) { - f := NewCPUFingerprint(testLogger()) + f := NewCPUFingerprint(testlog.Logger(t)) node := &structs.Node{ Attributes: make(map[string]string), } @@ -52,7 +53,7 @@ func TestCPUFingerprint(t *testing.T) { // TestCPUFingerprint_OverrideCompute asserts that setting cpu_total_compute in // the client config overrides the detected CPU freq (if any). func TestCPUFingerprint_OverrideCompute(t *testing.T) { - f := NewCPUFingerprint(testLogger()) + f := NewCPUFingerprint(testlog.Logger(t)) node := &structs.Node{ Attributes: make(map[string]string), } diff --git a/client/fingerprint/env_aws_test.go b/client/fingerprint/env_aws_test.go index 2a94561df..e69bf5a50 100644 --- a/client/fingerprint/env_aws_test.go +++ b/client/fingerprint/env_aws_test.go @@ -10,12 +10,13 @@ import ( "github.com/hashicorp/nomad/client/config" cstructs "github.com/hashicorp/nomad/client/structs" + "github.com/hashicorp/nomad/helper/testlog" "github.com/hashicorp/nomad/nomad/structs" ) func TestEnvAWSFingerprint_nonAws(t *testing.T) { os.Setenv("AWS_ENV_URL", "http://127.0.0.1/latest/meta-data/") - f := NewEnvAWSFingerprint(testLogger()) + f := NewEnvAWSFingerprint(testlog.Logger(t)) node := &structs.Node{ Attributes: make(map[string]string), } @@ -33,7 +34,7 @@ func TestEnvAWSFingerprint_nonAws(t *testing.T) { } func TestEnvAWSFingerprint_aws(t *testing.T) { - f := NewEnvAWSFingerprint(testLogger()) + f := NewEnvAWSFingerprint(testlog.Logger(t)) node := &structs.Node{ Attributes: make(map[string]string), } @@ -167,7 +168,7 @@ func TestNetworkFingerprint_AWS(t *testing.T) { defer ts.Close() os.Setenv("AWS_ENV_URL", ts.URL+"/latest/meta-data/") - f := NewEnvAWSFingerprint(testLogger()) + f := NewEnvAWSFingerprint(testlog.Logger(t)) node := &structs.Node{ Attributes: make(map[string]string), } @@ -216,7 +217,7 @@ func TestNetworkFingerprint_AWS_network(t *testing.T) { defer ts.Close() os.Setenv("AWS_ENV_URL", ts.URL+"/latest/meta-data/") - f := NewEnvAWSFingerprint(testLogger()) + f := NewEnvAWSFingerprint(testlog.Logger(t)) { node := &structs.Node{ Attributes: make(map[string]string), @@ -297,7 +298,7 @@ func TestNetworkFingerprint_AWS_network(t *testing.T) { func TestNetworkFingerprint_notAWS(t *testing.T) { os.Setenv("AWS_ENV_URL", "http://127.0.0.1/latest/meta-data/") - f := NewEnvAWSFingerprint(testLogger()) + f := NewEnvAWSFingerprint(testlog.Logger(t)) node := &structs.Node{ Attributes: make(map[string]string), } diff --git a/client/fingerprint/env_gce_test.go b/client/fingerprint/env_gce_test.go index 9d1a2c4bc..445643765 100644 --- a/client/fingerprint/env_gce_test.go +++ b/client/fingerprint/env_gce_test.go @@ -11,12 +11,13 @@ import ( "github.com/hashicorp/nomad/client/config" cstructs "github.com/hashicorp/nomad/client/structs" + "github.com/hashicorp/nomad/helper/testlog" "github.com/hashicorp/nomad/nomad/structs" ) func TestGCEFingerprint_nonGCE(t *testing.T) { os.Setenv("GCE_ENV_URL", "http://127.0.0.1/computeMetadata/v1/instance/") - f := NewEnvGCEFingerprint(testLogger()) + f := NewEnvGCEFingerprint(testlog.Logger(t)) node := &structs.Node{ Attributes: make(map[string]string), } @@ -90,7 +91,7 @@ func testFingerprint_GCE(t *testing.T, withExternalIp bool) { })) defer ts.Close() os.Setenv("GCE_ENV_URL", ts.URL+"/computeMetadata/v1/instance/") - f := NewEnvGCEFingerprint(testLogger()) + f := NewEnvGCEFingerprint(testlog.Logger(t)) request := &cstructs.FingerprintRequest{Config: &config.Config{}, Node: node} var response cstructs.FingerprintResponse diff --git a/client/fingerprint/fingerprint_test.go b/client/fingerprint/fingerprint_test.go index 41a7e6549..ca14bd9b7 100644 --- a/client/fingerprint/fingerprint_test.go +++ b/client/fingerprint/fingerprint_test.go @@ -3,8 +3,6 @@ package fingerprint // This file contains helper methods for testing fingerprinters import ( - "log" - "os" "testing" "github.com/hashicorp/nomad/client/config" @@ -12,10 +10,6 @@ import ( "github.com/hashicorp/nomad/nomad/structs" ) -func testLogger() *log.Logger { - return log.New(os.Stderr, "", log.LstdFlags) -} - func assertFingerprintOK(t *testing.T, fp Fingerprint, node *structs.Node) *cstructs.FingerprintResponse { request := &cstructs.FingerprintRequest{Config: new(config.Config), Node: node} var response cstructs.FingerprintResponse diff --git a/client/fingerprint/host_test.go b/client/fingerprint/host_test.go index 79ef870c5..6fafca0d9 100644 --- a/client/fingerprint/host_test.go +++ b/client/fingerprint/host_test.go @@ -5,11 +5,12 @@ import ( "github.com/hashicorp/nomad/client/config" cstructs "github.com/hashicorp/nomad/client/structs" + "github.com/hashicorp/nomad/helper/testlog" "github.com/hashicorp/nomad/nomad/structs" ) func TestHostFingerprint(t *testing.T) { - f := NewHostFingerprint(testLogger()) + f := NewHostFingerprint(testlog.Logger(t)) node := &structs.Node{ Attributes: make(map[string]string), } diff --git a/client/fingerprint/memory_test.go b/client/fingerprint/memory_test.go index 5190f8b4e..24365cebc 100644 --- a/client/fingerprint/memory_test.go +++ b/client/fingerprint/memory_test.go @@ -5,13 +5,14 @@ import ( "github.com/hashicorp/nomad/client/config" cstructs "github.com/hashicorp/nomad/client/structs" + "github.com/hashicorp/nomad/helper/testlog" "github.com/hashicorp/nomad/nomad/structs" "github.com/stretchr/testify/require" ) func TestMemoryFingerprint(t *testing.T) { - f := NewMemoryFingerprint(testLogger()) + f := NewMemoryFingerprint(testlog.Logger(t)) node := &structs.Node{ Attributes: make(map[string]string), } @@ -34,7 +35,7 @@ func TestMemoryFingerprint(t *testing.T) { } func TestMemoryFingerprint_Override(t *testing.T) { - f := NewMemoryFingerprint(testLogger()) + f := NewMemoryFingerprint(testlog.Logger(t)) node := &structs.Node{ Attributes: make(map[string]string), } diff --git a/client/fingerprint/network_test.go b/client/fingerprint/network_test.go index fd01a9ea8..527865ed6 100644 --- a/client/fingerprint/network_test.go +++ b/client/fingerprint/network_test.go @@ -8,6 +8,7 @@ import ( "github.com/hashicorp/nomad/client/config" cstructs "github.com/hashicorp/nomad/client/structs" + "github.com/hashicorp/nomad/helper/testlog" "github.com/hashicorp/nomad/nomad/structs" ) @@ -184,7 +185,7 @@ func TestNetworkFingerprint_basic(t *testing.T) { t.Skipf("Environment variable %+q not empty, skipping test", skipOnlineTestsEnvVar) } - f := &NetworkFingerprint{logger: testLogger(), interfaceDetector: &DefaultNetworkInterfaceDetector{}} + f := &NetworkFingerprint{logger: testlog.Logger(t), interfaceDetector: &DefaultNetworkInterfaceDetector{}} node := &structs.Node{ Attributes: make(map[string]string), } @@ -235,7 +236,7 @@ func TestNetworkFingerprint_basic(t *testing.T) { } func TestNetworkFingerprint_default_device_absent(t *testing.T) { - f := &NetworkFingerprint{logger: testLogger(), interfaceDetector: &NetworkInterfaceDetectorOnlyLo{}} + f := &NetworkFingerprint{logger: testlog.Logger(t), interfaceDetector: &NetworkInterfaceDetectorOnlyLo{}} node := &structs.Node{ Attributes: make(map[string]string), } @@ -258,7 +259,7 @@ func TestNetworkFingerprint_default_device_absent(t *testing.T) { } func TestNetworkFingerPrint_default_device(t *testing.T) { - f := &NetworkFingerprint{logger: testLogger(), interfaceDetector: &NetworkInterfaceDetectorOnlyLo{}} + f := &NetworkFingerprint{logger: testlog.Logger(t), interfaceDetector: &NetworkInterfaceDetectorOnlyLo{}} node := &structs.Node{ Attributes: make(map[string]string), } @@ -309,7 +310,7 @@ func TestNetworkFingerPrint_default_device(t *testing.T) { } func TestNetworkFingerPrint_LinkLocal_Allowed(t *testing.T) { - f := &NetworkFingerprint{logger: testLogger(), interfaceDetector: &NetworkInterfaceDetectorMultipleInterfaces{}} + f := &NetworkFingerprint{logger: testlog.Logger(t), interfaceDetector: &NetworkInterfaceDetectorMultipleInterfaces{}} node := &structs.Node{ Attributes: make(map[string]string), } @@ -356,7 +357,7 @@ func TestNetworkFingerPrint_LinkLocal_Allowed(t *testing.T) { } func TestNetworkFingerPrint_LinkLocal_Allowed_MixedIntf(t *testing.T) { - f := &NetworkFingerprint{logger: testLogger(), interfaceDetector: &NetworkInterfaceDetectorMultipleInterfaces{}} + f := &NetworkFingerprint{logger: testlog.Logger(t), interfaceDetector: &NetworkInterfaceDetectorMultipleInterfaces{}} node := &structs.Node{ Attributes: make(map[string]string), } @@ -410,7 +411,7 @@ func TestNetworkFingerPrint_LinkLocal_Allowed_MixedIntf(t *testing.T) { } func TestNetworkFingerPrint_LinkLocal_Disallowed(t *testing.T) { - f := &NetworkFingerprint{logger: testLogger(), interfaceDetector: &NetworkInterfaceDetectorMultipleInterfaces{}} + f := &NetworkFingerprint{logger: testlog.Logger(t), interfaceDetector: &NetworkInterfaceDetectorMultipleInterfaces{}} node := &structs.Node{ Attributes: make(map[string]string), } diff --git a/client/fingerprint/network_windows_test.go b/client/fingerprint/network_windows_test.go index 0cc8acfdf..6eedf5010 100644 --- a/client/fingerprint/network_windows_test.go +++ b/client/fingerprint/network_windows_test.go @@ -1,9 +1,13 @@ package fingerprint -import "testing" +import ( + "testing" + + "github.com/hashicorp/nomad/helper/testlog" +) func TestNetworkFingerPrint_linkspeed_parse(t *testing.T) { - f := &NetworkFingerprint{logger: testLogger(), interfaceDetector: &DefaultNetworkInterfaceDetector{}} + f := &NetworkFingerprint{logger: testlog.Logger(t), interfaceDetector: &DefaultNetworkInterfaceDetector{}} var outputTests = []struct { in string diff --git a/client/fingerprint/nomad_test.go b/client/fingerprint/nomad_test.go index 8d2c04c03..f86eea4ba 100644 --- a/client/fingerprint/nomad_test.go +++ b/client/fingerprint/nomad_test.go @@ -5,12 +5,13 @@ import ( "github.com/hashicorp/nomad/client/config" cstructs "github.com/hashicorp/nomad/client/structs" + "github.com/hashicorp/nomad/helper/testlog" "github.com/hashicorp/nomad/nomad/structs" "github.com/hashicorp/nomad/version" ) func TestNomadFingerprint(t *testing.T) { - f := NewNomadFingerprint(testLogger()) + f := NewNomadFingerprint(testlog.Logger(t)) v := "foo" r := "123" diff --git a/client/fingerprint/signal_test.go b/client/fingerprint/signal_test.go index bf61f7544..ff0577125 100644 --- a/client/fingerprint/signal_test.go +++ b/client/fingerprint/signal_test.go @@ -3,11 +3,12 @@ package fingerprint import ( "testing" + "github.com/hashicorp/nomad/helper/testlog" "github.com/hashicorp/nomad/nomad/structs" ) func TestSignalFingerprint(t *testing.T) { - fp := NewSignalFingerprint(testLogger()) + fp := NewSignalFingerprint(testlog.Logger(t)) node := &structs.Node{ Attributes: make(map[string]string), } diff --git a/client/fingerprint/storage_test.go b/client/fingerprint/storage_test.go index c4388905f..509521bb3 100644 --- a/client/fingerprint/storage_test.go +++ b/client/fingerprint/storage_test.go @@ -4,11 +4,12 @@ import ( "strconv" "testing" + "github.com/hashicorp/nomad/helper/testlog" "github.com/hashicorp/nomad/nomad/structs" ) func TestStorageFingerprint(t *testing.T) { - fp := NewStorageFingerprint(testLogger()) + fp := NewStorageFingerprint(testlog.Logger(t)) node := &structs.Node{ Attributes: make(map[string]string), } diff --git a/client/fingerprint/vault_test.go b/client/fingerprint/vault_test.go index 25e7f1386..3ca1fa448 100644 --- a/client/fingerprint/vault_test.go +++ b/client/fingerprint/vault_test.go @@ -5,6 +5,7 @@ import ( "github.com/hashicorp/nomad/client/config" cstructs "github.com/hashicorp/nomad/client/structs" + "github.com/hashicorp/nomad/helper/testlog" "github.com/hashicorp/nomad/nomad/structs" "github.com/hashicorp/nomad/testutil" ) @@ -13,7 +14,7 @@ func TestVaultFingerprint(t *testing.T) { tv := testutil.NewTestVault(t) defer tv.Stop() - fp := NewVaultFingerprint(testLogger()) + fp := NewVaultFingerprint(testlog.Logger(t)) node := &structs.Node{ Attributes: make(map[string]string), } diff --git a/client/fingerprint_manager_test.go b/client/fingerprint_manager_test.go index 1a8ccd9b3..11c8d49ae 100644 --- a/client/fingerprint_manager_test.go +++ b/client/fingerprint_manager_test.go @@ -2,11 +2,10 @@ package client import ( "fmt" - "log" - "os" "testing" "github.com/hashicorp/nomad/client/config" + "github.com/hashicorp/nomad/helper/testlog" "github.com/hashicorp/nomad/testutil" "github.com/stretchr/testify/require" ) @@ -16,7 +15,7 @@ func TestFingerprintManager_Run_MockDriver(t *testing.T) { require := require.New(t) testClient := TestClient(t, nil) - testClient.logger = log.New(os.Stderr, "", log.LstdFlags) + testClient.logger = testlog.Logger(t) defer testClient.Shutdown() fm := NewFingerprintManager( @@ -25,7 +24,7 @@ func TestFingerprintManager_Run_MockDriver(t *testing.T) { testClient.shutdownCh, testClient.updateNodeFromFingerprint, testClient.updateNodeFromDriver, - testLogger(), + testlog.Logger(t), ) err := fm.Run() @@ -43,7 +42,7 @@ func TestFingerprintManager_Run_ResourcesFingerprint(t *testing.T) { require := require.New(t) testClient := TestClient(t, nil) - testClient.logger = testLogger() + testClient.logger = testlog.Logger(t) defer testClient.Shutdown() fm := NewFingerprintManager( @@ -70,7 +69,7 @@ func TestFingerprintManager_Fingerprint_Run(t *testing.T) { require := require.New(t) testClient := TestClient(t, nil) - testClient.logger = testLogger() + testClient.logger = testlog.Logger(t) defer testClient.Shutdown() fm := NewFingerprintManager( @@ -102,7 +101,7 @@ func TestFingerprintManager_Fingerprint_Periodic(t *testing.T) { } }) - testClient.logger = testLogger() + testClient.logger = testlog.Logger(t) defer testClient.Shutdown() fm := NewFingerprintManager( @@ -164,7 +163,7 @@ func TestFingerprintManager_HealthCheck_Driver(t *testing.T) { } }) - testClient.logger = testLogger() + testClient.logger = testlog.Logger(t) defer testClient.Shutdown() fm := NewFingerprintManager( @@ -264,7 +263,7 @@ func TestFingerprintManager_HealthCheck_Periodic(t *testing.T) { } }) - testClient.logger = testLogger() + testClient.logger = testlog.Logger(t) defer testClient.Shutdown() fm := NewFingerprintManager( @@ -360,7 +359,7 @@ func TestFimgerprintManager_Run_InWhitelist(t *testing.T) { } }) - testClient.logger = testLogger() + testClient.logger = testlog.Logger(t) defer testClient.Shutdown() fm := NewFingerprintManager( @@ -390,7 +389,7 @@ func TestFingerprintManager_Run_InBlacklist(t *testing.T) { } }) - testClient.logger = testLogger() + testClient.logger = testlog.Logger(t) defer testClient.Shutdown() fm := NewFingerprintManager( @@ -422,7 +421,7 @@ func TestFingerprintManager_Run_Combination(t *testing.T) { } }) - testClient.logger = testLogger() + testClient.logger = testlog.Logger(t) defer testClient.Shutdown() fm := NewFingerprintManager( @@ -455,7 +454,7 @@ func TestFingerprintManager_Run_WhitelistDrivers(t *testing.T) { } }) - testClient.logger = testLogger() + testClient.logger = testlog.Logger(t) defer testClient.Shutdown() fm := NewFingerprintManager( @@ -485,7 +484,7 @@ func TestFingerprintManager_Run_AllDriversBlacklisted(t *testing.T) { } }) - testClient.logger = testLogger() + testClient.logger = testlog.Logger(t) defer testClient.Shutdown() fm := NewFingerprintManager( @@ -519,7 +518,7 @@ func TestFingerprintManager_Run_DriversWhiteListBlacklistCombination(t *testing. } }) - testClient.logger = testLogger() + testClient.logger = testlog.Logger(t) defer testClient.Shutdown() fm := NewFingerprintManager( @@ -552,7 +551,7 @@ func TestFingerprintManager_Run_DriversInBlacklist(t *testing.T) { } }) - testClient.logger = testLogger() + testClient.logger = testlog.Logger(t) defer testClient.Shutdown() fm := NewFingerprintManager( diff --git a/client/fs_endpoint_test.go b/client/fs_endpoint_test.go index 4e90daf06..49d5d7ec5 100644 --- a/client/fs_endpoint_test.go +++ b/client/fs_endpoint_test.go @@ -5,7 +5,6 @@ import ( "fmt" "io" "io/ioutil" - "log" "math" "net" "os" @@ -20,6 +19,7 @@ import ( "github.com/hashicorp/nomad/client/config" sframer "github.com/hashicorp/nomad/client/lib/streamframer" cstructs "github.com/hashicorp/nomad/client/structs" + "github.com/hashicorp/nomad/helper/testlog" "github.com/hashicorp/nomad/helper/uuid" "github.com/hashicorp/nomad/nomad" "github.com/hashicorp/nomad/nomad/mock" @@ -41,7 +41,7 @@ func tempAllocDir(t testing.TB) *allocdir.AllocDir { t.Fatalf("failed to chmod dir: %v", err) } - return allocdir.NewAllocDir(log.New(os.Stderr, "", log.LstdFlags), dir) + return allocdir.NewAllocDir(testlog.Logger(t), dir) } type nopWriteCloser struct { @@ -83,6 +83,9 @@ func TestFS_Stat(t *testing.T) { // Create and add an alloc a := mock.Alloc() + task := a.Job.TaskGroups[0].Tasks[0] + task.Driver = "mock_driver" + task.Config["run_for"] = "500ms" c.addAlloc(a, "") // Wait for the client to start it @@ -92,7 +95,17 @@ func TestFS_Stat(t *testing.T) { return false, fmt.Errorf("alloc doesn't exist") } - return len(ar.tasks) != 0, fmt.Errorf("tasks not running") + alloc := ar.Alloc() + running := false + for _, s := range alloc.TaskStates { + if s.State == structs.TaskStateRunning { + running = true + } else { + running = false + } + } + + return running, fmt.Errorf("tasks not running") }, func(err error) { t.Fatal(err) }) @@ -208,6 +221,9 @@ func TestFS_List(t *testing.T) { // Create and add an alloc a := mock.Alloc() + task := a.Job.TaskGroups[0].Tasks[0] + task.Driver = "mock_driver" + task.Config["run_for"] = "500ms" c.addAlloc(a, "") // Wait for the client to start it @@ -217,7 +233,17 @@ func TestFS_List(t *testing.T) { return false, fmt.Errorf("alloc doesn't exist") } - return len(ar.tasks) != 0, fmt.Errorf("tasks not running") + alloc := ar.Alloc() + running := false + for _, s := range alloc.TaskStates { + if s.State == structs.TaskStateRunning { + running = true + } else { + running = false + } + } + + return running, fmt.Errorf("tasks not running") }, func(err error) { t.Fatal(err) }) @@ -1736,6 +1762,7 @@ func TestFS_streamFile_Truncate(t *testing.T) { // Start the reader truncateCh := make(chan struct{}) + truncateClosed := false dataPostTruncCh := make(chan struct{}) frames := make(chan *sframer.StreamFrame, 4) go func() { @@ -1746,8 +1773,9 @@ func TestFS_streamFile_Truncate(t *testing.T) { continue } - if frame.FileEvent == truncateEvent { + if frame.FileEvent == truncateEvent && !truncateClosed { close(truncateCh) + truncateClosed = true } collected = append(collected, frame.Data...) diff --git a/client/gc.go b/client/gc.go index 7eab6fe03..3981d8c96 100644 --- a/client/gc.go +++ b/client/gc.go @@ -7,6 +7,7 @@ import ( "sync" "time" + "github.com/hashicorp/nomad/client/allocrunner" "github.com/hashicorp/nomad/client/stats" "github.com/hashicorp/nomad/nomad/structs" ) @@ -169,7 +170,7 @@ func (a *AllocGarbageCollector) keepUsageBelowThreshold() error { // destroyAllocRunner is used to destroy an allocation runner. It will acquire a // lock to restrict parallelism and then destroy the alloc runner, returning // once the allocation has been destroyed. -func (a *AllocGarbageCollector) destroyAllocRunner(ar *AllocRunner, reason string) { +func (a *AllocGarbageCollector) destroyAllocRunner(ar *allocrunner.AllocRunner, reason string) { id := "" if alloc := ar.Alloc(); alloc != nil { id = alloc.ID @@ -327,7 +328,7 @@ func (a *AllocGarbageCollector) MakeRoomFor(allocations []*structs.Allocation) e } // MarkForCollection starts tracking an allocation for Garbage Collection -func (a *AllocGarbageCollector) MarkForCollection(ar *AllocRunner) { +func (a *AllocGarbageCollector) MarkForCollection(ar *allocrunner.AllocRunner) { if ar.Alloc() == nil { a.destroyAllocRunner(ar, "alloc is nil") return @@ -342,7 +343,7 @@ func (a *AllocGarbageCollector) MarkForCollection(ar *AllocRunner) { // a PQ type GCAlloc struct { timeStamp time.Time - allocRunner *AllocRunner + allocRunner *allocrunner.AllocRunner index int } @@ -396,7 +397,7 @@ func NewIndexedGCAllocPQ() *IndexedGCAllocPQ { // Push an alloc runner into the GC queue. Returns true if alloc was added, // false if the alloc already existed. -func (i *IndexedGCAllocPQ) Push(ar *AllocRunner) bool { +func (i *IndexedGCAllocPQ) Push(ar *allocrunner.AllocRunner) bool { i.pqLock.Lock() defer i.pqLock.Unlock() diff --git a/client/gc_test.go b/client/gc_test.go index f94b8bb7b..9c0cd7dc9 100644 --- a/client/gc_test.go +++ b/client/gc_test.go @@ -5,8 +5,10 @@ import ( "testing" "time" + "github.com/hashicorp/nomad/client/allocrunner" "github.com/hashicorp/nomad/client/config" "github.com/hashicorp/nomad/client/stats" + "github.com/hashicorp/nomad/helper/testlog" "github.com/hashicorp/nomad/nomad/mock" "github.com/hashicorp/nomad/nomad/structs" "github.com/hashicorp/nomad/testutil" @@ -22,14 +24,24 @@ func gcConfig() *GCConfig { } } +// exitAllocRunner is a helper that updates the allocs on the given alloc +// runners to be terminal +func exitAllocRunner(runners ...*allocrunner.AllocRunner) { + for _, ar := range runners { + terminalAlloc := ar.Alloc() + terminalAlloc.DesiredStatus = structs.AllocDesiredStatusStop + ar.Update(terminalAlloc) + } +} + func TestIndexedGCAllocPQ(t *testing.T) { t.Parallel() pq := NewIndexedGCAllocPQ() - _, ar1 := testAllocRunnerFromAlloc(t, mock.Alloc(), false) - _, ar2 := testAllocRunnerFromAlloc(t, mock.Alloc(), false) - _, ar3 := testAllocRunnerFromAlloc(t, mock.Alloc(), false) - _, ar4 := testAllocRunnerFromAlloc(t, mock.Alloc(), false) + _, ar1 := allocrunner.TestAllocRunnerFromAlloc(t, mock.Alloc(), false) + _, ar2 := allocrunner.TestAllocRunnerFromAlloc(t, mock.Alloc(), false) + _, ar3 := allocrunner.TestAllocRunnerFromAlloc(t, mock.Alloc(), false) + _, ar4 := allocrunner.TestAllocRunnerFromAlloc(t, mock.Alloc(), false) pq.Push(ar1) pq.Push(ar2) @@ -105,10 +117,10 @@ func (m *MockStatsCollector) Stats() *stats.HostStats { func TestAllocGarbageCollector_MarkForCollection(t *testing.T) { t.Parallel() - logger := testLogger() + logger := testlog.Logger(t) gc := NewAllocGarbageCollector(logger, &MockStatsCollector{}, &MockAllocCounter{}, gcConfig()) - _, ar1 := testAllocRunnerFromAlloc(t, mock.Alloc(), false) + _, ar1 := allocrunner.TestAllocRunnerFromAlloc(t, mock.Alloc(), false) gc.MarkForCollection(ar1) gcAlloc := gc.allocRunners.Pop() @@ -119,17 +131,19 @@ func TestAllocGarbageCollector_MarkForCollection(t *testing.T) { func TestAllocGarbageCollector_Collect(t *testing.T) { t.Parallel() - logger := testLogger() + logger := testlog.Logger(t) gc := NewAllocGarbageCollector(logger, &MockStatsCollector{}, &MockAllocCounter{}, gcConfig()) - _, ar1 := testAllocRunnerFromAlloc(t, mock.Alloc(), false) - _, ar2 := testAllocRunnerFromAlloc(t, mock.Alloc(), false) + _, ar1 := allocrunner.TestAllocRunnerFromAlloc(t, mock.Alloc(), false) + _, ar2 := allocrunner.TestAllocRunnerFromAlloc(t, mock.Alloc(), false) + go ar1.Run() + go ar2.Run() + gc.MarkForCollection(ar1) gc.MarkForCollection(ar2) - // Fake that ar.Run() exits - close(ar1.waitCh) - close(ar2.waitCh) + // Exit the alloc runners + exitAllocRunner(ar1, ar2) gc.Collect(ar1.Alloc().ID) gcAlloc := gc.allocRunners.Pop() @@ -140,11 +154,11 @@ func TestAllocGarbageCollector_Collect(t *testing.T) { func TestAllocGarbageCollector_CollectAll(t *testing.T) { t.Parallel() - logger := testLogger() + logger := testlog.Logger(t) gc := NewAllocGarbageCollector(logger, &MockStatsCollector{}, &MockAllocCounter{}, gcConfig()) - _, ar1 := testAllocRunnerFromAlloc(t, mock.Alloc(), false) - _, ar2 := testAllocRunnerFromAlloc(t, mock.Alloc(), false) + _, ar1 := allocrunner.TestAllocRunnerFromAlloc(t, mock.Alloc(), false) + _, ar2 := allocrunner.TestAllocRunnerFromAlloc(t, mock.Alloc(), false) gc.MarkForCollection(ar1) gc.MarkForCollection(ar2) @@ -157,19 +171,23 @@ func TestAllocGarbageCollector_CollectAll(t *testing.T) { func TestAllocGarbageCollector_MakeRoomForAllocations_EnoughSpace(t *testing.T) { t.Parallel() - logger := testLogger() + logger := testlog.Logger(t) statsCollector := &MockStatsCollector{} conf := gcConfig() conf.ReservedDiskMB = 20 gc := NewAllocGarbageCollector(logger, statsCollector, &MockAllocCounter{}, conf) - _, ar1 := testAllocRunnerFromAlloc(t, mock.Alloc(), false) - close(ar1.waitCh) - _, ar2 := testAllocRunnerFromAlloc(t, mock.Alloc(), false) - close(ar2.waitCh) + _, ar1 := allocrunner.TestAllocRunnerFromAlloc(t, mock.Alloc(), false) + _, ar2 := allocrunner.TestAllocRunnerFromAlloc(t, mock.Alloc(), false) + go ar1.Run() + go ar2.Run() + gc.MarkForCollection(ar1) gc.MarkForCollection(ar2) + // Exit the alloc runners + exitAllocRunner(ar1, ar2) + // Make stats collector report 200MB free out of which 20MB is reserved statsCollector.availableValues = []uint64{200 * MB} statsCollector.usedPercents = []float64{0} @@ -192,19 +210,23 @@ func TestAllocGarbageCollector_MakeRoomForAllocations_EnoughSpace(t *testing.T) func TestAllocGarbageCollector_MakeRoomForAllocations_GC_Partial(t *testing.T) { t.Parallel() - logger := testLogger() + logger := testlog.Logger(t) statsCollector := &MockStatsCollector{} conf := gcConfig() conf.ReservedDiskMB = 20 gc := NewAllocGarbageCollector(logger, statsCollector, &MockAllocCounter{}, conf) - _, ar1 := testAllocRunnerFromAlloc(t, mock.Alloc(), false) - close(ar1.waitCh) - _, ar2 := testAllocRunnerFromAlloc(t, mock.Alloc(), false) - close(ar2.waitCh) + _, ar1 := allocrunner.TestAllocRunnerFromAlloc(t, mock.Alloc(), false) + _, ar2 := allocrunner.TestAllocRunnerFromAlloc(t, mock.Alloc(), false) + go ar1.Run() + go ar2.Run() + gc.MarkForCollection(ar1) gc.MarkForCollection(ar2) + // Exit the alloc runners + exitAllocRunner(ar1, ar2) + // Make stats collector report 80MB and 175MB free in subsequent calls statsCollector.availableValues = []uint64{80 * MB, 80 * MB, 175 * MB} statsCollector.usedPercents = []float64{0, 0, 0} @@ -228,19 +250,23 @@ func TestAllocGarbageCollector_MakeRoomForAllocations_GC_Partial(t *testing.T) { func TestAllocGarbageCollector_MakeRoomForAllocations_GC_All(t *testing.T) { t.Parallel() - logger := testLogger() + logger := testlog.Logger(t) statsCollector := &MockStatsCollector{} conf := gcConfig() conf.ReservedDiskMB = 20 gc := NewAllocGarbageCollector(logger, statsCollector, &MockAllocCounter{}, conf) - _, ar1 := testAllocRunnerFromAlloc(t, mock.Alloc(), false) - close(ar1.waitCh) - _, ar2 := testAllocRunnerFromAlloc(t, mock.Alloc(), false) - close(ar2.waitCh) + _, ar1 := allocrunner.TestAllocRunnerFromAlloc(t, mock.Alloc(), false) + _, ar2 := allocrunner.TestAllocRunnerFromAlloc(t, mock.Alloc(), false) + go ar1.Run() + go ar2.Run() + gc.MarkForCollection(ar1) gc.MarkForCollection(ar2) + // Exit the alloc runners + exitAllocRunner(ar1, ar2) + // Make stats collector report 80MB and 95MB free in subsequent calls statsCollector.availableValues = []uint64{80 * MB, 80 * MB, 95 * MB} statsCollector.usedPercents = []float64{0, 0, 0} @@ -260,19 +286,23 @@ func TestAllocGarbageCollector_MakeRoomForAllocations_GC_All(t *testing.T) { func TestAllocGarbageCollector_MakeRoomForAllocations_GC_Fallback(t *testing.T) { t.Parallel() - logger := testLogger() + logger := testlog.Logger(t) statsCollector := &MockStatsCollector{} conf := gcConfig() conf.ReservedDiskMB = 20 gc := NewAllocGarbageCollector(logger, statsCollector, &MockAllocCounter{}, conf) - _, ar1 := testAllocRunnerFromAlloc(t, mock.Alloc(), false) - close(ar1.waitCh) - _, ar2 := testAllocRunnerFromAlloc(t, mock.Alloc(), false) - close(ar2.waitCh) + _, ar1 := allocrunner.TestAllocRunnerFromAlloc(t, mock.Alloc(), false) + _, ar2 := allocrunner.TestAllocRunnerFromAlloc(t, mock.Alloc(), false) + go ar1.Run() + go ar2.Run() + gc.MarkForCollection(ar1) gc.MarkForCollection(ar2) + // Exit the alloc runners + exitAllocRunner(ar1, ar2) + alloc := mock.Alloc() alloc.Resources.DiskMB = 150 if err := gc.MakeRoomFor([]*structs.Allocation{alloc}); err != nil { @@ -419,19 +449,23 @@ func TestAllocGarbageCollector_MaxAllocs(t *testing.T) { func TestAllocGarbageCollector_UsageBelowThreshold(t *testing.T) { t.Parallel() - logger := testLogger() + logger := testlog.Logger(t) statsCollector := &MockStatsCollector{} conf := gcConfig() conf.ReservedDiskMB = 20 gc := NewAllocGarbageCollector(logger, statsCollector, &MockAllocCounter{}, conf) - _, ar1 := testAllocRunnerFromAlloc(t, mock.Alloc(), false) - close(ar1.waitCh) - _, ar2 := testAllocRunnerFromAlloc(t, mock.Alloc(), false) - close(ar2.waitCh) + _, ar1 := allocrunner.TestAllocRunnerFromAlloc(t, mock.Alloc(), false) + _, ar2 := allocrunner.TestAllocRunnerFromAlloc(t, mock.Alloc(), false) + go ar1.Run() + go ar2.Run() + gc.MarkForCollection(ar1) gc.MarkForCollection(ar2) + // Exit the alloc runners + exitAllocRunner(ar1, ar2) + statsCollector.availableValues = []uint64{1000} statsCollector.usedPercents = []float64{20} statsCollector.inodePercents = []float64{10} @@ -451,19 +485,23 @@ func TestAllocGarbageCollector_UsageBelowThreshold(t *testing.T) { func TestAllocGarbageCollector_UsedPercentThreshold(t *testing.T) { t.Parallel() - logger := testLogger() + logger := testlog.Logger(t) statsCollector := &MockStatsCollector{} conf := gcConfig() conf.ReservedDiskMB = 20 gc := NewAllocGarbageCollector(logger, statsCollector, &MockAllocCounter{}, conf) - _, ar1 := testAllocRunnerFromAlloc(t, mock.Alloc(), false) - close(ar1.waitCh) - _, ar2 := testAllocRunnerFromAlloc(t, mock.Alloc(), false) - close(ar2.waitCh) + _, ar1 := allocrunner.TestAllocRunnerFromAlloc(t, mock.Alloc(), false) + _, ar2 := allocrunner.TestAllocRunnerFromAlloc(t, mock.Alloc(), false) + go ar1.Run() + go ar2.Run() + gc.MarkForCollection(ar1) gc.MarkForCollection(ar2) + // Exit the alloc runners + exitAllocRunner(ar1, ar2) + statsCollector.availableValues = []uint64{1000, 800} statsCollector.usedPercents = []float64{85, 60} statsCollector.inodePercents = []float64{50, 30} diff --git a/client/servers/manager_internal_test.go b/client/servers/manager_internal_test.go index e6ad03bb3..dc17be1f9 100644 --- a/client/servers/manager_internal_test.go +++ b/client/servers/manager_internal_test.go @@ -2,12 +2,12 @@ package servers import ( "fmt" - "log" "math/rand" "net" - "os" "testing" "time" + + "github.com/hashicorp/nomad/helper/testlog" ) func init() { @@ -36,14 +36,14 @@ func (cp *fauxConnPool) Ping(net.Addr) error { } func testManager(t *testing.T) (m *Manager) { - logger := log.New(os.Stderr, "", 0) + logger := testlog.Logger(t) shutdownCh := make(chan struct{}) m = New(logger, shutdownCh, &fauxConnPool{}) return m } -func testManagerFailProb(failPct float64) (m *Manager) { - logger := log.New(os.Stderr, "", 0) +func testManagerFailProb(t *testing.T, failPct float64) (m *Manager) { + logger := testlog.Logger(t) shutdownCh := make(chan struct{}) m = New(logger, shutdownCh, &fauxConnPool{failPct: failPct}) return m @@ -136,7 +136,7 @@ func TestManagerInternal_refreshServerRebalanceTimer(t *testing.T) { {1000000, 19, 10 * time.Minute}, } - logger := log.New(os.Stderr, "", log.LstdFlags) + logger := testlog.Logger(t) shutdownCh := make(chan struct{}) for _, s := range clusters { diff --git a/client/servers/manager_test.go b/client/servers/manager_test.go index 33d76469b..235064797 100644 --- a/client/servers/manager_test.go +++ b/client/servers/manager_test.go @@ -2,10 +2,8 @@ package servers_test import ( "fmt" - "log" "math/rand" "net" - "os" "strings" "testing" @@ -115,7 +113,7 @@ func TestServers_FindServer(t *testing.T) { } func TestServers_New(t *testing.T) { - logger := log.New(os.Stderr, "", log.LstdFlags) + logger := testlog.Logger(t) shutdownCh := make(chan struct{}) m := servers.New(logger, shutdownCh, &fauxConnPool{}) if m == nil { diff --git a/client/state_database.go b/client/state/state_database.go similarity index 83% rename from client/state_database.go rename to client/state/state_database.go index a9a36a5f9..4c3d9c2ed 100644 --- a/client/state_database.go +++ b/client/state/state_database.go @@ -1,4 +1,4 @@ -package client +package state import ( "bytes" @@ -25,7 +25,7 @@ var ( allocationsBucket = []byte("allocations") ) -func putObject(bkt *bolt.Bucket, key []byte, obj interface{}) error { +func PutObject(bkt *bolt.Bucket, key []byte, obj interface{}) error { if !bkt.Writable() { return fmt.Errorf("bucket must be writable") } @@ -43,7 +43,7 @@ func putObject(bkt *bolt.Bucket, key []byte, obj interface{}) error { return nil } -func putData(bkt *bolt.Bucket, key, value []byte) error { +func PutData(bkt *bolt.Bucket, key, value []byte) error { if !bkt.Writable() { return fmt.Errorf("bucket must be writable") } @@ -55,7 +55,7 @@ func putData(bkt *bolt.Bucket, key, value []byte) error { return nil } -func getObject(bkt *bolt.Bucket, key []byte, obj interface{}) error { +func GetObject(bkt *bolt.Bucket, key []byte, obj interface{}) error { // Get the data data := bkt.Get(key) if data == nil { @@ -70,11 +70,11 @@ func getObject(bkt *bolt.Bucket, key []byte, obj interface{}) error { return nil } -// getAllocationBucket returns the bucket used to persist state about a +// GetAllocationBucket returns the bucket used to persist state about a // particular allocation. If the root allocation bucket or the specific // allocation bucket doesn't exist, it will be created as long as the // transaction is writable. -func getAllocationBucket(tx *bolt.Tx, allocID string) (*bolt.Bucket, error) { +func GetAllocationBucket(tx *bolt.Tx, allocID string) (*bolt.Bucket, error) { var err error w := tx.Writable() @@ -108,12 +108,12 @@ func getAllocationBucket(tx *bolt.Tx, allocID string) (*bolt.Bucket, error) { return alloc, nil } -// getTaskBucket returns the bucket used to persist state about a +// GetTaskBucket returns the bucket used to persist state about a // particular task. If the root allocation bucket, the specific // allocation or task bucket doesn't exist, they will be created as long as the // transaction is writable. -func getTaskBucket(tx *bolt.Tx, allocID, taskName string) (*bolt.Bucket, error) { - alloc, err := getAllocationBucket(tx, allocID) +func GetTaskBucket(tx *bolt.Tx, allocID, taskName string) (*bolt.Bucket, error) { + alloc, err := GetAllocationBucket(tx, allocID) if err != nil { return nil, err } @@ -136,8 +136,8 @@ func getTaskBucket(tx *bolt.Tx, allocID, taskName string) (*bolt.Bucket, error) return task, nil } -// deleteAllocationBucket is used to delete an allocation bucket if it exists. -func deleteAllocationBucket(tx *bolt.Tx, allocID string) error { +// DeleteAllocationBucket is used to delete an allocation bucket if it exists. +func DeleteAllocationBucket(tx *bolt.Tx, allocID string) error { if !tx.Writable() { return fmt.Errorf("transaction must be writable") } @@ -157,8 +157,8 @@ func deleteAllocationBucket(tx *bolt.Tx, allocID string) error { return allocations.DeleteBucket(key) } -// deleteTaskBucket is used to delete a task bucket if it exists. -func deleteTaskBucket(tx *bolt.Tx, allocID, taskName string) error { +// DeleteTaskBucket is used to delete a task bucket if it exists. +func DeleteTaskBucket(tx *bolt.Tx, allocID, taskName string) error { if !tx.Writable() { return fmt.Errorf("transaction must be writable") } @@ -184,7 +184,7 @@ func deleteTaskBucket(tx *bolt.Tx, allocID, taskName string) error { return alloc.DeleteBucket(key) } -func getAllAllocationIDs(tx *bolt.Tx) ([]string, error) { +func GetAllAllocationIDs(tx *bolt.Tx) ([]string, error) { allocationsBkt := tx.Bucket(allocationsBucket) if allocationsBkt == nil { return nil, nil diff --git a/client/stats/cpu_test.go b/client/stats/cpu_test.go index b6d9f1d27..b963d91a6 100644 --- a/client/stats/cpu_test.go +++ b/client/stats/cpu_test.go @@ -1,13 +1,13 @@ package stats import ( - "log" "math" "os" "testing" "time" shelpers "github.com/hashicorp/nomad/helper/stats" + "github.com/hashicorp/nomad/helper/testlog" "github.com/stretchr/testify/assert" ) @@ -26,7 +26,7 @@ func TestHostStats_CPU(t *testing.T) { assert := assert.New(t) assert.Nil(shelpers.Init()) - logger := log.New(os.Stderr, "", log.LstdFlags|log.Lmicroseconds) + logger := testlog.Logger(t) cwd, err := os.Getwd() assert.Nil(err) hs := NewHostStatsCollector(logger, cwd) diff --git a/client/testing.go b/client/testing.go index 4043da298..5b6b87659 100644 --- a/client/testing.go +++ b/client/testing.go @@ -2,6 +2,7 @@ package client import ( "github.com/hashicorp/nomad/client/config" + consulApi "github.com/hashicorp/nomad/client/consul" "github.com/hashicorp/nomad/client/fingerprint" "github.com/hashicorp/nomad/command/agent/consul" "github.com/hashicorp/nomad/helper" @@ -37,8 +38,8 @@ func TestClient(t testing.T, cb func(c *config.Config)) *Client { logger := testlog.Logger(t) catalog := consul.NewMockCatalog(logger) - mockService := newMockConsulServiceClient(t) - mockService.logger = logger + mockService := consulApi.NewMockConsulServiceClient(t) + mockService.Logger = logger client, err := NewClient(conf, catalog, mockService, logger) if err != nil { t.Fatalf("err: %v", err) diff --git a/client/util.go b/client/util.go index 32f765550..02ce36a5e 100644 --- a/client/util.go +++ b/client/util.go @@ -1,9 +1,7 @@ package client import ( - "encoding/json" "fmt" - "io/ioutil" "math/rand" "github.com/hashicorp/nomad/nomad/structs" @@ -73,16 +71,3 @@ func shuffleStrings(list []string) { list[i], list[j] = list[j], list[i] } } - -// pre060RestoreState is used to read back in the persisted state for pre v0.6.0 -// state -func pre060RestoreState(path string, data interface{}) error { - buf, err := ioutil.ReadFile(path) - if err != nil { - return err - } - if err := json.Unmarshal(buf, data); err != nil { - return fmt.Errorf("failed to decode state: %v", err) - } - return nil -} diff --git a/client/vaultclient/vaultclient_test.go b/client/vaultclient/vaultclient_test.go index 98fd7af99..faa9c6695 100644 --- a/client/vaultclient/vaultclient_test.go +++ b/client/vaultclient/vaultclient_test.go @@ -1,13 +1,12 @@ package vaultclient import ( - "log" - "os" "strings" "testing" "time" "github.com/hashicorp/nomad/client/config" + "github.com/hashicorp/nomad/helper/testlog" "github.com/hashicorp/nomad/testutil" vaultapi "github.com/hashicorp/vault/api" ) @@ -17,7 +16,7 @@ func TestVaultClient_TokenRenewals(t *testing.T) { v := testutil.NewTestVault(t) defer v.Stop() - logger := log.New(os.Stderr, "TEST: ", log.Lshortfile|log.LstdFlags) + logger := testlog.Logger(t) v.Config.ConnectionRetryIntv = 100 * time.Millisecond v.Config.TaskTokenTTL = "4s" c, err := NewVaultClient(v.Config, logger, nil) @@ -101,7 +100,7 @@ func TestVaultClient_Heap(t *testing.T) { conf.VaultConfig.Token = "testvaulttoken" conf.VaultConfig.TaskTokenTTL = "10s" - logger := log.New(os.Stderr, "TEST: ", log.Lshortfile|log.LstdFlags) + logger := testlog.Logger(t) c, err := NewVaultClient(conf.VaultConfig, logger, nil) if err != nil { t.Fatal(err) @@ -204,7 +203,7 @@ func TestVaultClient_RenewNonRenewableLease(t *testing.T) { v := testutil.NewTestVault(t) defer v.Stop() - logger := log.New(os.Stderr, "TEST: ", log.Lshortfile|log.LstdFlags) + logger := testlog.Logger(t) v.Config.ConnectionRetryIntv = 100 * time.Millisecond v.Config.TaskTokenTTL = "4s" c, err := NewVaultClient(v.Config, logger, nil) @@ -253,7 +252,7 @@ func TestVaultClient_RenewNonexistentLease(t *testing.T) { v := testutil.NewTestVault(t) defer v.Stop() - logger := log.New(os.Stderr, "TEST: ", log.Lshortfile|log.LstdFlags) + logger := testlog.Logger(t) v.Config.ConnectionRetryIntv = 100 * time.Millisecond v.Config.TaskTokenTTL = "4s" c, err := NewVaultClient(v.Config, logger, nil) diff --git a/command/agent/agent.go b/command/agent/agent.go index b9bd554b9..a18fdf694 100644 --- a/command/agent/agent.go +++ b/command/agent/agent.go @@ -866,16 +866,16 @@ func (a *Agent) Stats() map[string]map[string]string { // ShouldReload determines if we should reload the configuration and agent // connections. If the TLS Configuration has not changed, we shouldn't reload. -func (a *Agent) ShouldReload(newConfig *Config) (agent, http, rpc bool) { +func (a *Agent) ShouldReload(newConfig *Config) (agent, http bool) { a.configLock.Lock() defer a.configLock.Unlock() isEqual, err := a.config.TLSConfig.CertificateInfoIsEqual(newConfig.TLSConfig) if err != nil { a.logger.Printf("[INFO] agent: error when parsing TLS certificate %v", err) - return false, false, false + return false, false } else if !isEqual { - return true, true, true + return true, true } // Allow the ability to only reload HTTP connections @@ -886,11 +886,10 @@ func (a *Agent) ShouldReload(newConfig *Config) (agent, http, rpc bool) { // Allow the ability to only reload HTTP connections if a.config.TLSConfig.EnableRPC != newConfig.TLSConfig.EnableRPC { - rpc = true agent = true } - return agent, http, rpc + return agent, http } // Reload handles configuration changes for the agent. Provides a method that diff --git a/command/agent/agent_test.go b/command/agent/agent_test.go index 89c556808..871453fe7 100644 --- a/command/agent/agent_test.go +++ b/command/agent/agent_test.go @@ -2,7 +2,6 @@ package agent import ( "io/ioutil" - "log" "os" "path/filepath" "strings" @@ -11,6 +10,7 @@ import ( cstructs "github.com/hashicorp/nomad/client/structs" "github.com/hashicorp/nomad/helper" + "github.com/hashicorp/nomad/helper/testlog" "github.com/hashicorp/nomad/nomad/structs" sconfig "github.com/hashicorp/nomad/nomad/structs/config" "github.com/stretchr/testify/assert" @@ -333,10 +333,7 @@ func TestAget_Client_TelemetryConfiguration(t *testing.T) { // API health check depending on configuration. func TestAgent_HTTPCheck(t *testing.T) { t.Parallel() - logger := log.New(ioutil.Discard, "", 0) - if testing.Verbose() { - logger = log.New(os.Stdout, "[TestAgent_HTTPCheck] ", log.Lshortfile) - } + logger := testlog.Logger(t) agent := func() *Agent { return &Agent{ logger: logger, @@ -417,14 +414,11 @@ func TestAgent_HTTPCheckPath(t *testing.T) { // Agent.agentHTTPCheck only needs a config and logger a := &Agent{ config: DevConfig(), - logger: log.New(ioutil.Discard, "", 0), + logger: testlog.Logger(t), } if err := a.config.normalizeAddrs(); err != nil { t.Fatalf("error normalizing config: %v", err) } - if testing.Verbose() { - a.logger = log.New(os.Stderr, "", log.LstdFlags) - } // Assert server check uses /v1/agent/health?type=server isServer := true @@ -638,7 +632,7 @@ func TestServer_Reload_TLS_WithNilConfiguration(t *testing.T) { t.Parallel() assert := assert.New(t) - logger := log.New(ioutil.Discard, "", 0) + logger := testlog.Logger(t) agent := &Agent{ logger: logger, @@ -662,7 +656,7 @@ func TestServer_Reload_TLS_UpgradeToTLS(t *testing.T) { dir := tmpDir(t) defer os.RemoveAll(dir) - logger := log.New(ioutil.Discard, "", 0) + logger := testlog.Logger(t) agentConfig := &Config{ TLSConfig: &sconfig.TLSConfig{}, @@ -704,7 +698,7 @@ func TestServer_Reload_TLS_DowngradeFromTLS(t *testing.T) { dir := tmpDir(t) defer os.RemoveAll(dir) - logger := log.New(ioutil.Discard, "", 0) + logger := testlog.Logger(t) agentConfig := &Config{ TLSConfig: &sconfig.TLSConfig{ @@ -769,10 +763,9 @@ func TestServer_ShouldReload_ReturnFalseForNoChanges(t *testing.T) { }) defer agent.Shutdown() - shouldReloadAgent, shouldReloadHTTP, shouldReloadRPC := agent.ShouldReload(sameAgentConfig) + shouldReloadAgent, shouldReloadHTTP := agent.ShouldReload(sameAgentConfig) assert.False(shouldReloadAgent) assert.False(shouldReloadHTTP) - assert.False(shouldReloadRPC) } func TestServer_ShouldReload_ReturnTrueForOnlyHTTPChanges(t *testing.T) { @@ -810,10 +803,9 @@ func TestServer_ShouldReload_ReturnTrueForOnlyHTTPChanges(t *testing.T) { }) defer agent.Shutdown() - shouldReloadAgent, shouldReloadHTTP, shouldReloadRPC := agent.ShouldReload(sameAgentConfig) + shouldReloadAgent, shouldReloadHTTP := agent.ShouldReload(sameAgentConfig) require.True(shouldReloadAgent) require.True(shouldReloadHTTP) - require.False(shouldReloadRPC) } func TestServer_ShouldReload_ReturnTrueForOnlyRPCChanges(t *testing.T) { @@ -851,10 +843,9 @@ func TestServer_ShouldReload_ReturnTrueForOnlyRPCChanges(t *testing.T) { }) defer agent.Shutdown() - shouldReloadAgent, shouldReloadHTTP, shouldReloadRPC := agent.ShouldReload(sameAgentConfig) + shouldReloadAgent, shouldReloadHTTP := agent.ShouldReload(sameAgentConfig) assert.True(shouldReloadAgent) assert.False(shouldReloadHTTP) - assert.True(shouldReloadRPC) } func TestServer_ShouldReload_ReturnTrueForConfigChanges(t *testing.T) { @@ -894,10 +885,9 @@ func TestServer_ShouldReload_ReturnTrueForConfigChanges(t *testing.T) { }, } - shouldReloadAgent, shouldReloadHTTP, shouldReloadRPC := agent.ShouldReload(newConfig) + shouldReloadAgent, shouldReloadHTTP := agent.ShouldReload(newConfig) assert.True(shouldReloadAgent) assert.True(shouldReloadHTTP) - assert.True(shouldReloadRPC) } func TestServer_ShouldReload_ReturnTrueForFileChanges(t *testing.T) { @@ -927,7 +917,7 @@ func TestServer_ShouldReload_ReturnTrueForFileChanges(t *testing.T) { content := []byte(oldCertificate) dir, err := ioutil.TempDir("", "certificate") if err != nil { - log.Fatal(err) + t.Fatal(err) } defer os.RemoveAll(dir) // clean up @@ -940,7 +930,7 @@ func TestServer_ShouldReload_ReturnTrueForFileChanges(t *testing.T) { key = "../../helper/tlsutil/testdata/nomad-foo-key.pem" ) - logger := log.New(ioutil.Discard, "", 0) + logger := testlog.Logger(t) agentConfig := &Config{ TLSConfig: &sconfig.TLSConfig{ @@ -959,10 +949,9 @@ func TestServer_ShouldReload_ReturnTrueForFileChanges(t *testing.T) { } agent.config.TLSConfig.SetChecksum() - shouldReloadAgent, shouldReloadHTTP, shouldReloadRPC := agent.ShouldReload(agentConfig) + shouldReloadAgent, shouldReloadHTTP := agent.ShouldReload(agentConfig) require.False(shouldReloadAgent) require.False(shouldReloadHTTP) - require.False(shouldReloadRPC) newCertificate := ` -----BEGIN CERTIFICATE----- @@ -999,10 +988,9 @@ func TestServer_ShouldReload_ReturnTrueForFileChanges(t *testing.T) { }, } - shouldReloadAgent, shouldReloadHTTP, shouldReloadRPC = agent.ShouldReload(newAgentConfig) + shouldReloadAgent, shouldReloadHTTP = agent.ShouldReload(newAgentConfig) require.True(shouldReloadAgent) require.True(shouldReloadHTTP) - require.True(shouldReloadRPC) } func TestServer_ShouldReload_ShouldHandleMultipleChanges(t *testing.T) { @@ -1043,20 +1031,18 @@ func TestServer_ShouldReload_ShouldHandleMultipleChanges(t *testing.T) { defer agent.Shutdown() { - shouldReloadAgent, shouldReloadHTTP, shouldReloadRPC := agent.ShouldReload(sameAgentConfig) + shouldReloadAgent, shouldReloadHTTP := agent.ShouldReload(sameAgentConfig) require.True(shouldReloadAgent) require.True(shouldReloadHTTP) - require.True(shouldReloadRPC) } err := agent.Reload(sameAgentConfig) require.Nil(err) { - shouldReloadAgent, shouldReloadHTTP, shouldReloadRPC := agent.ShouldReload(sameAgentConfig) + shouldReloadAgent, shouldReloadHTTP := agent.ShouldReload(sameAgentConfig) require.False(shouldReloadAgent) require.False(shouldReloadHTTP) - require.False(shouldReloadRPC) } } diff --git a/command/agent/bindata_assetfs.go b/command/agent/bindata_assetfs.go index 08344d391..93fd475f0 100644 --- a/command/agent/bindata_assetfs.go +++ b/command/agent/bindata_assetfs.go @@ -1,7 +1,7 @@ // Code generated by go-bindata. // sources: -// ui/dist/assets/nomad-ui-86a6a48023a8c1c93c72271f1283550a.js // ui/dist/assets/nomad-ui-ad7b09549502674646af03f41d1d62f1.css +// ui/dist/assets/nomad-ui-d4e693a82d9bb50c3b64289ff72827ee.js // ui/dist/assets/vendor-ba9b921906f8503d3378ceb83aece15b.js // ui/dist/assets/vendor-d41d8cd98f00b204e9800998ecf8427e.css // ui/dist/crossdomain.xml @@ -85,26 +85,6 @@ func (fi bindataFileInfo) Sys() interface{} { return nil } -var _distAssetsNomadUi86a6a48023a8c1c93c72271f1283550aJs = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xec\xfd\x7d\x77\xdb\xb6\xb2\x28\x8c\xff\xef\x4f\x21\xe3\x9e\xa3\x4b\x1e\x43\xb4\x9c\x97\x7d\xce\x4f\xd9\xdc\xbe\x69\x9c\xec\x9d\x9e\x36\xf5\x8d\xdd\x7d\x7e\xcf\xe3\xab\xd5\x0b\x89\x90\x84\x9a\x02\x54\x00\xb2\xa3\xda\xfa\xee\xcf\xc2\x0b\x49\xf0\x9d\x72\x9c\xc4\xea\xe9\x6a\x57\x2c\x92\x18\x00\x33\x18\x0c\x66\x06\x83\x01\x58\x0b\xdc\x13\x92\x93\xa9\x04\x07\x11\x9e\x11\x8a\x3d\x40\xd9\x12\x45\x83\x35\x39\x46\x11\x5a\x49\xcc\xc5\x31\x9a\x63\x2a\x01\xbc\x02\xf8\xd3\x8a\x71\x29\x00\xac\x2a\xb4\x5a\xc5\x64\x8a\x24\x61\x14\x8c\xe1\x6c\x4d\xa7\xea\xa7\x87\xa1\xf4\xef\x7e\x9a\xfc\x8a\xa7\x32\x30\x2d\x9c\x73\xb6\xc2\x5c\x6e\x3c\x0c\xc1\x2f\xbf\x60\xf1\x23\x8b\xd6\x31\x06\xf0\xee\x06\xc5\x6b\x3c\x3a\x1c\x6e\x7d\x88\x55\x59\xb4\x8e\x65\x28\x93\x5f\x01\xfe\x24\x31\x8d\xbc\xbb\x15\x92\x8b\x77\x8c\x5f\x6e\x56\x78\x94\x36\xe3\xdf\x71\x2c\xd7\x9c\x02\xdd\xd7\xe3\x25\x5e\x4e\x30\x17\x60\x0b\xd7\x3c\x7e\xc7\xf8\x3b\x42\xa3\x8f\x78\xca\x78\xe4\x82\xdc\x20\xde\xc3\xe1\x6b\xce\xd1\x26\x58\x71\x26\x99\xdc\xac\x70\x20\x62\x32\xc5\xc1\x14\xc5\xb1\x87\xf8\x7c\xbd\xc4\x54\x0a\xdf\xbc\xf5\x4e\xfc\x03\xd3\x4e\x4f\x2e\x88\x08\xb2\xca\x5f\xc7\x71\xa0\x28\xb0\xf1\xd4\x07\x07\x7d\xff\x8e\xcc\x3c\xd3\x04\x11\xfa\xaf\x87\x7d\xff\x6e\xc6\xb8\xa7\x9a\x97\xe1\x10\xd2\xd0\xbe\x0f\x62\x4c\xe7\x72\xe1\xbf\x92\x7f\x4d\x7e\xbf\x92\x47\x47\x3e\xbd\x92\xe3\x10\x5f\xc9\x71\xd2\x38\xdd\xda\x1f\xa6\xe2\x19\x67\x4b\x0f\xfb\x5b\x55\xf3\x76\xeb\x6f\x7d\xd8\x30\x96\x71\xcc\xec\x28\xb5\x0c\xe8\x2d\x92\xd3\x05\x9a\xc4\xf8\x8b\x0e\x67\x4b\x6f\x1d\xa6\xca\x75\x57\x8f\xef\x20\x42\x12\x65\x85\x39\x16\xd2\xc5\x64\x2d\x49\x2c\x8e\xa7\x2c\xc2\x62\x30\x63\x7c\x80\x39\x67\xbc\x5c\x80\xe3\x25\xbb\xc1\x03\xae\xd9\xa3\x80\x2b\xa4\x10\x3d\x08\x5f\x8a\x96\x58\xac\xd0\x14\x87\x37\x8c\x44\xbd\xe1\x81\x1a\x6c\x11\xba\x1f\xc0\xcd\x09\x38\x68\x62\xf4\xb4\xe8\x48\x40\xc9\xae\x31\x1d\xbd\x55\x58\x07\x84\xea\xee\x08\xcc\x6f\x14\x4f\xfa\x70\x81\x51\x84\xb9\xb0\x9f\xa7\x6c\xb9\x5a\x4b\x1c\x79\x40\x03\x05\x02\x4f\x39\x96\x00\x96\x18\x5f\xb3\xf0\x1c\xcb\x42\x41\xff\x80\xcc\x3c\xec\x1b\x0e\xbb\x03\xff\xff\xc1\x07\x4d\xaf\x4b\x55\x06\x8c\xf0\x76\xeb\xc3\x99\xe1\xf8\xf2\xf4\x33\xd3\xe2\x17\xb1\x5e\x61\xee\xce\x07\x67\x22\x4d\x15\x5b\x79\x85\x09\xe2\x0d\x21\x4d\xf0\xf7\x3d\xec\x07\x84\x4e\xe3\x75\x84\x85\x07\x5e\x0e\x4f\x80\x6f\x7b\x73\x35\x3e\x90\x0b\xce\x6e\x7b\x78\xeb\x6f\x75\x2f\xfe\x81\xc4\x8f\x88\x6e\x46\x85\x41\x13\x3b\x74\x48\x2e\x30\xcd\xfa\x43\x0d\x75\x78\x28\x02\x25\x0d\x20\x0b\x65\x60\x58\x23\x20\xf4\x06\x73\x81\xdf\x31\xee\x89\xe0\x1a\x6f\x52\x59\xc0\xfa\x7d\x1c\xac\x30\xbe\x7e\x1d\xc7\x1e\xf7\x83\x19\x89\x25\xe6\x39\x1c\x6d\x49\xac\xe9\xcd\x34\x17\x1c\x81\x80\x44\xc0\x0f\xc3\x50\x06\x24\xda\xfa\xc1\x8c\xf1\xb7\xc8\xa5\x8d\xf4\xef\xbc\x21\x44\x0e\x61\xa0\x54\xf3\x85\x2a\xec\xeb\x05\x9b\x9e\xa3\x0a\x09\x6a\x99\x0f\xa2\xf0\x6a\x0c\x45\x68\xf8\x43\xf5\x40\xd3\x00\x2c\x98\x90\xc0\x87\x3c\x4c\x84\xd9\x39\xc7\x33\xf2\xc9\xcb\x84\x5c\xbf\xef\xd1\x50\x06\x53\xb4\xc4\x31\xf9\x1d\x7b\xbe\xdf\xef\xa3\x60\xb5\x16\x0b\x8f\xfa\x10\xa7\x0f\x98\xaa\x69\xf6\xf3\xc7\xf7\x6f\xd8\x72\xc5\x28\xa6\x52\xc9\x22\xc8\x55\x81\x35\x15\x0b\x32\x93\x1e\xf7\x21\x0a\x51\xf0\x2b\x23\xd4\x03\xc7\xc0\x87\x87\xa2\xdf\x47\xfd\x3e\x38\x06\x87\x61\x88\x82\xe9\x02\xf1\xd7\xd2\x1b\xfa\xfd\xbe\x87\x42\x70\x0c\x8e\x90\x0f\x51\x9b\x3c\xfb\x95\x4d\x06\x62\xbd\x5c\x22\xbe\xf9\x7a\x02\xed\xc0\x50\xb7\xcc\xfe\xf9\x6a\xab\x24\x7f\xc2\x08\x6a\x92\x5d\x6c\x96\x13\x16\x07\x44\x62\x8e\x24\xe3\x3d\x42\x7b\xa6\x27\x4e\xc1\xaa\x51\xbd\x1a\x43\x14\x1e\x0e\xa1\x08\x0f\x4f\x20\x4f\x24\x8c\xe4\x9b\x74\x59\x61\x30\x0e\xf1\x55\xa1\xfe\xb1\xe7\xbf\x3a\xf4\x50\xe8\xb1\x30\x0e\x28\xfe\x24\x3d\xdf\x0f\x22\x46\xb1\xa2\x38\x35\x03\xc9\x02\x8d\xa5\x0f\x0f\xe5\xfd\x3d\xb5\x8b\xd0\x61\x18\x4a\xff\x95\x6a\xd2\x7f\xb5\x35\xf3\x17\xfb\x77\x42\x75\x81\x87\x78\x3b\x23\x14\xc5\xf1\xe6\x4e\x75\xe0\x10\xf5\xfb\x71\x60\xfa\x9e\xfd\xf2\xfc\xb4\x10\x99\x79\xc2\x37\x93\x98\x6f\xb7\xe9\x7a\xa6\xd1\xb3\x93\x9b\xe2\xdb\x9e\x5a\xdd\xdf\x2a\x79\xed\x81\xf7\xf4\x06\xc5\x24\xea\x21\x29\xf1\x72\x25\x7b\x92\xf5\x22\x2c\x24\x5f\x4f\xe5\x9a\xe3\x1e\x65\x74\xa0\x31\x9c\xc4\xb8\x47\xa8\x90\x88\x4e\x31\xf0\xb7\x5b\xcf\x6f\x94\xae\x8d\xf3\x47\x49\x7d\x23\xb1\xbf\xbf\xf8\xe9\x43\xb0\x42\x5c\x60\x0f\xab\xa9\x42\x3d\x01\x9f\xf9\x90\x85\xfc\x6a\x38\x86\x71\xc8\xaf\x4e\xc6\x90\x84\x8e\x98\xf1\x18\x04\xbf\xb2\x09\x80\xc8\x3f\x02\xc7\x09\x6f\x26\x53\x2a\xee\xf7\x81\xed\x8a\x62\xfb\xb8\xdf\xf7\xc8\x51\x08\x4e\x9d\x75\xe1\x28\xf6\x21\xe9\xc0\xf7\x7f\xf2\xfb\x9f\xfc\xde\x9d\xdf\xc5\x46\x48\xbc\xac\x53\x21\x26\x6b\x12\x47\xff\x7b\x8d\xf9\xa6\xac\x20\x67\x7a\x82\xa9\x23\x40\x53\x49\x6e\xf0\x87\x84\x63\xf5\x32\x96\xf0\x37\xce\xf3\x37\x3e\x75\xd4\x18\xbc\x1d\xdd\x6d\xb7\x55\xda\x43\xb7\x86\x40\x5e\xfb\xde\x61\x55\x97\x99\x3e\x50\xb9\xcc\xca\x20\x6d\x24\xc4\xa7\x66\x95\x06\x0a\xad\x51\x8a\xcc\xd6\x87\x32\xd1\x3a\x8c\xc4\xb8\x30\x53\xbb\xa8\x7b\xa0\xbc\xee\x81\x7e\x45\x9f\x74\xef\x02\x4d\xe3\x9f\x3f\xfe\x60\xcb\x81\xac\x26\xe0\x4a\x0a\x08\xfe\xfe\xf6\x12\xc0\x3b\xa5\xdc\xda\xe1\x42\x42\x90\x39\x75\x6a\xd1\x23\xe5\xf9\xf7\xf7\x77\x5b\x88\xfc\x7c\xb7\x0a\x82\x4c\xe9\x42\x46\xa3\x71\x44\x19\x52\x12\x8c\x7a\x1c\x3e\xf3\x95\xfc\x8a\x43\x96\x1f\x36\xe6\x0e\x1b\x53\xc3\x56\x41\xf9\xa4\x7e\x18\xb7\xa9\x23\x9f\x29\x4e\x15\xfc\xce\xf2\x13\x7e\x5a\xf0\xff\xc4\x9b\x4a\xb5\x28\xe5\x13\x3b\xe1\xff\xf6\xac\xdf\x37\x52\x45\x69\x22\xc9\xc7\xab\x67\xe3\x53\xf7\x61\xa4\x88\x1d\xb6\xb2\x1e\x14\x21\x0d\xd4\xe0\xf5\xfb\xe6\x6f\xa6\xf3\x27\x48\x88\x53\x74\x94\xef\xb2\x18\xa1\x2d\xe4\x38\xd6\xa6\x8e\x58\x90\xd5\x3b\x14\xc7\x13\x34\xbd\xfe\x81\xd0\x6b\x31\xba\xb3\xcc\x31\xca\xd8\x24\x9d\x47\xd6\x9c\x13\x23\x57\xdf\x34\xb6\xa5\xee\x19\x0d\xf3\xdc\x67\x16\x27\x87\xc7\x21\x2e\xf1\x62\x66\x25\x0a\x70\x50\xe2\x66\x9a\x63\xd1\x12\x57\x6e\x8b\xb3\x0f\x3b\xb3\x4f\x48\xc6\xb1\x96\xbd\xe7\x68\x13\x33\x14\x79\xc0\x35\x49\xef\x9c\x96\x47\x4a\xcb\x57\xac\x8d\xe5\x74\xf1\x11\xdd\x9e\xa9\xe5\x8a\xa8\x4f\x35\xa8\xee\x80\x63\x19\x29\xd9\x86\xd4\x16\xce\x18\x9f\xe2\x73\xcc\x09\x8b\xc8\x74\x54\x30\x61\x6c\x63\x2b\xfb\x19\xf8\x49\xcf\xca\x7d\x2d\xb1\xdf\x49\x25\xfb\x9d\xb8\xec\x77\x32\x1e\x01\x00\x51\x88\x03\xb1\x8a\x89\xf4\xc0\x29\xd0\x9c\xe6\x21\x35\x7f\x78\x28\xd4\xfc\x61\xa1\x30\xd3\x19\x80\x23\x7e\x24\x1d\xfb\xc4\x8b\xd5\x24\x01\x47\xcc\x87\xf1\xd6\x2b\x38\x2f\x0c\x51\x3c\x97\x5c\x9a\x80\x3e\x04\xc7\x09\x3e\xc7\x1a\xf9\x1a\xc2\x9d\xff\x74\x71\xa9\x96\x20\x28\x24\x5b\xd5\x0d\x4e\x87\xf6\x2a\x2b\x3f\x7b\xfb\xc3\xdb\xcb\xb7\xa0\xd5\xb3\x91\x4e\xa7\x5d\x3c\x55\xad\xee\x82\xa2\x3f\xe0\x91\x9d\x59\xb5\x62\xfb\x2b\x59\xd4\x77\x6a\xdd\x1b\x69\x2b\xab\x8d\xbc\x2c\x6a\xa5\xec\xd7\x71\x19\xdd\x3d\x54\xf0\x19\x14\x1e\x41\xf2\x3d\xae\x80\x6b\x21\xfc\x8a\xc5\x64\xda\x6a\xdc\x7e\x35\xf7\x6b\xa6\x17\xc8\x6c\x61\x53\x84\x9b\xc6\xa0\x05\x13\xed\x66\x7a\x32\x88\xe8\x81\xaa\xd3\x87\x9b\xb0\xd4\x0b\xef\x05\x8e\x67\xd5\x1a\x6c\x85\x10\xcb\xb1\xa1\xe2\x32\x4d\x89\x63\x81\xe3\x59\x89\x97\x52\x25\xc5\xf2\xa9\xee\x66\x26\x1a\x69\x9e\xb5\x2c\x49\xef\xf4\x5f\x31\xba\x92\xe3\xad\x0f\xa9\x76\x46\x59\x29\x9b\x14\xa1\x01\x65\x7c\x89\xb4\x1b\x27\x79\x27\x7d\xa3\xa0\x90\xa8\x03\x1f\x66\x93\x3b\x3f\x82\xab\xe5\xe8\x37\xb5\x46\x0e\x84\xe4\x84\xce\x3b\x88\xdc\x2a\xe7\xad\x96\xb6\xe2\x51\xdc\xaf\xd6\xd7\xfa\xa7\xb5\xba\x37\xd6\x2a\x2d\x4d\x4e\xcd\x6c\x3f\x10\x21\xeb\x26\x68\xe3\xec\xfd\xb4\x28\x7b\xc3\x4b\xec\x70\x17\xab\xea\xef\xb6\x50\x72\x34\xbd\x2e\xd8\x09\x7a\xca\xaa\x02\x57\x78\x7c\xea\x3e\x98\x81\x90\xfe\xc8\x7d\x19\xaa\x79\x07\xa7\x0a\xb7\x38\xb7\x1a\xa9\x11\x7f\xe5\x96\xec\xf7\x73\x95\xd9\x4d\x1e\x5f\xbf\x34\x1b\x11\xaa\x7d\xa7\xc8\xd5\x70\xec\x2b\xcb\x40\x7d\x6a\xe8\x63\xbf\xef\xc9\x00\x4d\x18\x97\x9e\x9f\x83\xb7\xb5\x5a\xce\x95\xbe\xbf\xdd\x6e\x7d\xa8\xc4\xd2\x4f\xab\xc2\xea\x99\x33\xc3\x1b\x2d\x1c\xab\xd1\x19\x0b\xab\xa6\x8c\x12\x60\x13\x3c\x63\x1c\x5f\x60\x1a\xa5\xee\x01\xe7\x5d\x49\x33\x36\xc6\xd5\x01\x55\x86\x93\xa9\x34\xf1\x5f\x3b\x4d\xa7\x3e\x02\x35\xc8\x4a\x7a\xaa\xd1\xf3\x24\xc4\x4a\xda\xa3\xf8\x16\x6d\x84\x3b\xd6\x28\x57\xd8\x92\x58\x95\x56\x0a\x3d\xae\xb1\x12\x13\x09\x7e\x04\x7a\xe0\x08\x57\x78\x2c\x52\xd9\x64\x44\x4d\x49\xa1\x7f\x51\xa9\xd0\xbf\x70\x15\xfa\x17\xda\x9e\xe4\x61\xb3\x85\x0f\x85\x32\x8e\xcb\x9b\x8d\x9e\x0c\x96\x2c\xc2\xb1\x52\xdf\xd2\xb5\x21\xf3\xef\x23\xed\x19\x00\x56\xba\xda\x91\x0e\xf4\xa4\x02\x4a\x9e\xa8\x39\x13\xe1\x4f\x8e\xc7\x25\x9d\x70\xc0\x57\x2f\xde\xab\xcf\xef\x18\xf7\x98\x6f\x69\xae\x57\x32\x96\x33\x92\x78\xbd\xe3\x81\x42\x0e\x99\x21\x4f\xfc\x19\xe4\x21\x05\x15\x8e\x66\x58\xab\x06\xf2\xda\x9b\x6b\x19\xad\x43\xe1\x11\x65\x19\x45\xe1\x5a\x59\x46\xd3\x70\x7d\x75\x92\xee\x9f\x4e\x0b\x54\x4f\xc5\x8f\xf1\x4c\x4c\x8d\x63\xa5\x3c\x18\xb1\x0f\x33\x1a\xb3\x16\x1a\x4f\x3b\xd3\x38\xca\xd1\x38\xca\xd1\x78\xba\xad\x51\xf0\x0f\xbd\x4c\xa0\xb2\x59\x0f\x05\xaf\xd5\xec\xd7\x52\xd9\xf7\x9d\x5d\x32\x8e\x95\xa6\xf0\xd1\x71\x2d\xe4\xc6\x29\x61\x61\x3d\x7d\x79\x77\xcf\x48\xbf\xef\x3e\x41\x16\xe2\x20\xe7\xbe\x60\xdc\xa3\x7a\x27\x11\x4c\x70\xcc\xe8\x5c\x5c\x32\xed\x58\x0a\xae\x09\x8d\xfa\x7d\xb0\x30\x1b\x77\xd9\x3b\x3f\x5b\x5e\xcc\xd2\xc2\x82\x6b\xbc\x39\x02\xbd\xe5\x5a\xc8\xde\x04\xf7\x50\x2f\xad\xa9\xc7\x78\xcf\x56\x00\x35\x11\x30\x8a\x7a\x44\xf6\x6e\x91\xe8\x81\x23\x5b\xdf\x81\x61\x3e\x7c\x65\x9e\xc7\xa6\x42\x3f\x88\x09\xbd\xf6\x7c\x48\xc2\xbb\xad\xea\x1f\xef\xf7\x3d\xd2\x79\xa8\x62\xdf\x87\xb1\x63\x4b\x9d\x26\x76\xfe\x3a\x2c\x72\x51\xec\xf0\xe3\xd5\xc9\xd8\x3f\xb0\x7a\xcc\x35\xde\x08\x6f\x5d\xb1\xdd\x87\xfd\xbb\x08\xc7\x58\xe2\x1e\xb9\xc2\xe3\xad\xbf\x2d\x29\x92\x71\x8e\x35\x48\x95\xa3\xc5\xd8\x3f\x22\xa7\x3b\x42\x1a\x3a\xa3\x10\x26\x14\x3f\x05\xa9\x46\xa8\xa4\xca\x77\x49\x89\x8f\x58\xac\x18\x15\x18\x8c\xf2\x05\xec\x5e\x6b\xfa\x19\xa2\x50\x2f\xba\x44\x97\xe0\x5a\x5a\xe8\x4d\x53\xbd\xa5\x68\x66\xaa\xfb\x32\x0e\xd1\x15\x1d\x7b\x12\x72\x88\xfd\x03\x69\x56\xd2\x58\x89\x90\x82\x27\xa5\x96\xaf\x6d\x8c\x47\x15\x2e\x77\xdb\x51\x7e\x77\x78\x81\x68\x14\xe3\xa4\xb3\xb5\xa2\x5b\x5e\x81\x4f\x03\xa3\xb0\x6a\x1e\x00\xe3\xfb\x7b\x79\x95\xee\x7a\xbf\x37\xef\x52\xc7\x9d\x5d\xbf\x4b\x3c\x22\x1c\x1e\x41\x4a\x54\xc3\x64\xad\x6a\x5a\x48\x13\x9d\xa1\x76\x17\x57\x51\xa3\xdf\xa7\xeb\x38\x3e\x0c\x53\x05\xb3\xda\x9b\x22\x35\x51\x8b\xab\xa3\xa9\xdf\x53\x6c\xd3\x03\x47\xd4\xdf\xba\x4d\xe6\x97\x34\xd3\x5a\x4d\x23\x6a\xc9\xc1\xbe\x1e\xf1\x84\xcb\x8d\xba\x4f\x66\x9b\xf2\xaa\xe5\x1f\x20\xbd\x73\x4c\x8f\xc0\xa9\xde\xc6\xed\xde\xaf\x8f\x8d\xe2\x2a\x25\x89\x63\x25\x15\xc5\x8e\xac\x10\x3b\xb4\x42\xec\xd0\x6a\xb1\x43\x1f\x2a\x76\xa8\x23\x76\x50\x88\xaf\xa8\x15\x3b\xd4\x15\x3b\x6d\x23\x84\xb4\x7e\x56\x69\x87\xad\x56\x35\xa6\x33\xc7\x82\xc5\x37\x98\xa7\x96\x95\xa2\xe0\x40\xbb\x4a\xcd\xcc\xcc\x95\x9e\x32\x3a\x23\xf3\x63\x4c\x6f\x08\x67\x54\xf1\xe1\x63\x1a\x5d\xd6\xda\x49\x62\x0d\x5e\x67\x76\x5f\xaa\xda\x2f\x35\xb0\x09\x35\x18\xa5\xc1\x0d\x81\xfb\x1a\xae\x58\xf4\x63\x75\xb1\xc2\x17\xf8\xd1\x22\x3f\x4a\x19\x73\xeb\xc3\xbc\xf3\x4b\xc0\xea\x56\x5c\xf7\x80\xa8\x22\xf9\x34\x09\x66\x70\xc3\xa6\x06\x9c\xdd\xd6\x0c\xc4\x02\xc7\x2b\x65\xcb\xc6\xe8\xf7\xcd\x60\x1a\x93\xe9\x75\x3a\x24\x53\x46\xa7\x6b\xce\x31\x9d\x6e\x2a\x5c\x8a\xc9\x73\x0f\xe5\x94\xf0\x44\xcf\xd6\xec\xe2\x38\x91\x32\x3f\x69\x60\x56\x77\xaf\xb8\x10\xf8\x77\xd6\x7b\xa0\x7d\xe7\x17\x12\x49\xc5\x6a\x2b\xcc\x67\x8c\x2f\x3d\x99\xa8\x31\x7c\x4d\x03\x31\x5d\x60\x45\x93\x9f\xe8\x14\x7b\x00\xcd\x24\xe6\x1f\x31\x8d\x14\x3b\x61\x28\x94\x9a\x9c\xf6\x4e\x54\xec\xd4\xe5\xba\x95\xb9\xc1\x19\x27\x73\x65\x53\x7e\xcf\x26\xef\xa3\xcc\x17\xee\xec\xf0\x99\xa5\x29\xe7\xa9\x70\x9d\xf6\xc5\x0a\x0e\xe4\xa9\x87\x95\x98\xb5\xbc\x48\xb0\xf0\xee\x7e\x65\x93\x91\x84\xb9\xa2\x23\x25\x2c\xb7\x3e\x94\xd6\xcb\x27\xce\x11\x57\xf3\x40\xa9\x64\x19\xb9\xac\xf9\x96\xeb\x49\xa6\x4a\x36\xf7\xa4\xec\xaf\xd1\xfd\xb2\x40\x52\x7b\x52\x3e\xc3\x51\x65\x46\x26\x8d\xa3\xe9\xe6\xae\x92\x68\xae\x1d\xb9\x40\x72\x00\xa7\x31\x12\x42\xef\x67\x8e\xae\x40\x91\x71\x01\x11\x03\x42\x95\x45\xae\xf7\x56\xc1\x18\x66\x25\x34\xed\xe0\x94\x51\x89\x3f\x49\xf3\x30\x41\xd3\x6b\x36\x9b\x5d\xe0\xdf\xd6\x98\x4e\x71\xab\x51\x7d\xf5\x72\x38\x84\xff\x31\x1c\xc2\x93\xe7\xc3\x21\x7c\x76\x32\x1c\xc2\xe7\x2f\x86\x43\xf8\xf2\xe5\x70\x38\xde\x2a\xb3\x1d\x49\x61\xaa\xd6\x3f\xb5\xcc\x1d\x1d\x9e\x40\x4c\xd1\x24\xc6\xe7\x2c\x8e\x09\x9d\xb7\x36\x73\x68\x0a\x48\x2c\x24\xa1\xf3\xad\x0f\x19\x7d\xa3\xe6\x9b\x6b\xcc\x6e\xe1\x34\xff\x0a\xeb\x70\x2a\x19\xa8\xe9\xa9\x4b\xfb\xde\x55\xc6\x06\xb6\x06\xe0\x43\xac\x2c\xee\x88\x28\x66\xc0\xe4\x06\xbf\x96\x92\xe7\xac\xe4\x6a\xe6\x3f\xed\x34\xa5\x8c\x02\xe0\x8f\xbc\xac\x92\xdc\x14\x35\xab\x81\x5a\x6d\xed\xa2\x29\x0c\x8b\xaa\xaf\x50\x91\xcd\x4f\x36\xc4\x34\xc4\x48\x4b\x3a\x89\xc4\xb5\xef\x71\x3c\xc7\xd4\xf8\x92\x3e\xae\xa9\x24\x4b\x1c\x2c\x11\xbf\x4e\x89\xd7\xc3\x89\x6f\x11\x41\x01\x79\x22\x43\x2a\xc0\x6e\x39\x5a\x79\x25\x37\xc6\x2b\x5f\xdc\x12\xed\x5d\x0a\x56\x1c\xdf\x84\x58\x7b\xa9\xfc\xbb\x29\x12\xb8\x37\x1c\x21\x67\x72\x17\xb8\x06\x24\xe1\xb3\x3e\x14\x21\x0a\x56\x6c\xe5\xf9\x07\x1a\xec\xd9\x28\xf5\x0b\xe8\x3a\x9f\x41\x53\x6b\xf8\x12\xca\x20\x43\x33\x29\xfe\x72\xc4\x43\x35\xd9\xa8\x2c\x13\x87\x97\x08\xf6\xd6\xc4\x7b\x1e\x9e\xf8\x49\xad\x27\xcf\x0f\x26\x1c\xa3\x6b\x53\xdb\xc9\x70\x64\x9b\x3d\x19\x42\x1c\xc8\x61\x88\xad\xa9\xf5\xac\xb6\xae\xa1\xed\xc9\xc9\xf3\xac\xe7\xa6\xea\x97\x66\xd5\x51\x04\x64\x6b\xe9\x7b\x28\x30\x61\x6f\xfe\xfd\xbd\x48\x80\x5e\x8e\xc8\xcc\x19\xf9\x1c\xcf\x2b\x21\x69\xeb\x7a\x66\x7a\xb9\x35\x40\x7f\x19\xa9\xbf\x00\xd3\x08\x64\x6d\x0a\xa9\x88\xb8\xdd\x42\xe3\x2d\x82\x57\x57\xcf\xe0\xc9\x70\x3c\xf6\xb7\xbe\x1f\x44\x5c\x7f\xac\x54\x23\xaa\xd7\x34\x85\xe3\x5a\x0c\x26\x88\xd7\x2c\x6d\x0e\x58\x44\x94\xe6\x37\x59\x6b\x40\x05\xf1\x45\xbd\xf4\x31\xda\xb0\xb5\x34\xc2\xad\xa9\x13\x8e\x18\x7b\xc3\xa8\x44\x84\x62\x6e\xe4\x8c\x13\x47\x91\x85\xc6\x56\x94\x0e\xee\x7e\x5b\xe3\x35\x36\x3b\x4b\x02\xaa\xb2\xca\x18\xb3\x8f\x33\x44\xe2\xf4\x1b\x5f\x53\x4a\xe8\xdc\x3e\x09\xa9\x96\x98\xe4\x71\x9b\x8b\xb4\x55\x86\x7a\x95\xbc\x48\x5b\x75\x63\x5b\xeb\xd7\x56\xa7\xb8\xfa\xe4\xac\x81\xc0\xed\x34\x80\x20\xdf\x6d\x00\x81\xdb\x71\x00\x41\xae\xeb\x00\x82\x7c\xe7\x01\x04\x31\x13\xd2\x3e\x24\x7a\xc6\xd5\x5d\x8c\x26\x38\x1e\x81\xff\xad\xdb\x02\xd0\x8c\x1d\x0e\xf2\x04\x4b\x96\x9d\x91\xed\x13\xd8\xc2\x04\xf0\xc2\xb6\x92\x81\xe6\xdb\x75\x81\x45\x5a\x36\x46\x1b\xcc\xc5\xe8\x59\x56\xcf\x47\xd3\xfb\xac\x9a\xfc\x48\x38\xb5\xd8\x0f\x4e\x1f\xde\x58\xca\x64\xc0\x85\x21\x76\xa0\x93\x2f\x0e\xf8\x3b\x4d\xc7\x0c\x38\xc7\x10\x0e\xa8\x79\xef\x00\xfe\xc0\x84\xcc\xc0\x32\xf2\xba\x40\xea\x2d\xd8\x8e\xb7\x1d\x26\xad\x34\x7c\x8f\xc5\x40\xe0\x69\x31\x30\x7e\x9c\xb3\xa5\xbf\x80\x16\x92\x2a\x1a\x35\x7b\x7d\x4e\x4f\x27\x48\x90\xe9\x40\xc9\xa2\x88\xdd\x56\x86\xef\xe7\x4b\x34\xc0\x7e\xb6\x84\xa9\x05\x48\x42\x89\xe0\x1d\xa6\xeb\xa5\xd9\xa7\x18\x1d\x0e\xe1\x1c\xcb\xaa\xe8\xf6\xd4\xc6\xd8\x11\xfb\x63\xad\x54\x51\x39\xc0\x31\x5e\x96\x0e\xd3\xec\x46\x8d\x52\x5d\x7f\x18\xea\x3c\x06\x55\xfe\x00\xd4\x90\x9c\xcc\xe7\x98\x7f\x16\x35\x92\x3a\xf6\x90\x1a\xd3\x05\x89\x23\x8e\xff\x10\x4a\x89\x32\x50\xeb\x95\x90\x5f\xd9\x24\xb8\x5b\x61\x1a\x11\x3a\x7f\x63\xb1\x4e\x74\x8b\xf4\x39\xc2\x28\x4a\x1e\x9a\x74\x0b\x1d\x40\x55\xaf\x4b\xe8\xcf\x45\xdd\xa1\xd0\x76\xa6\x1e\x38\x6f\xdc\xf6\xcb\x1a\xc1\xb9\xa9\x21\x5b\xdf\x8a\xe8\x34\x69\x05\x75\xab\x79\x15\x70\x79\x3d\x3f\xc3\xc8\x59\x8e\xdd\x6e\x56\xaf\xe4\x5d\x56\xd7\x69\x4c\x94\x64\xa5\x2c\xc2\xbb\xfa\x79\x0a\x71\x64\xab\x94\xcc\x26\x70\xc2\x2d\xb1\x24\x9f\x08\x15\xc7\xb7\x44\x2e\x06\x69\xe3\x83\x1b\x22\xc8\x84\xc4\x44\x6e\x06\x11\x96\x76\x6d\x7f\xa4\xe3\x68\x2d\xcb\x7a\xea\x1f\x83\x0f\x75\x33\x94\x08\x57\xf6\x33\xa8\x6f\x66\x32\x7c\x4d\x63\xbd\xc6\x9b\xa6\x43\xc1\xfc\x03\xe9\x3a\x85\xea\x7c\x68\x76\x4b\x2f\x73\x9f\xc1\x93\xe1\x50\xef\x1f\x67\x43\xf6\x0f\xbd\xdb\xc0\x47\xf9\xe9\x19\xb1\xa9\xf6\xf4\x07\x0b\x12\x45\x98\xfa\x85\xbd\x83\xbc\xbd\x7f\x80\x63\x81\x4b\xfe\x35\xdb\x51\x5c\xda\x78\x70\x3a\x84\x4d\x87\xb6\xf0\x96\xc4\xf1\x19\x16\x92\xb3\x4d\xb5\xc3\xa2\xa2\xd9\x2e\xbb\x14\x1a\xcc\xf8\x1a\xf4\x4f\xd7\x3d\xef\xbb\x76\x8a\x00\xed\x73\xac\x2c\x25\x8b\xe1\x44\xd1\xf3\x81\xc0\x71\xa2\xdd\x56\xcc\x1b\x1a\xb1\xdb\x01\xc7\x82\xfc\x6e\xe2\x91\x1a\x26\x9f\x90\x9b\x18\x3b\xa1\x49\xa6\x7a\xc9\x11\x15\xe4\xd1\x66\x58\x31\xe2\xc8\x0d\x22\xc0\x47\x72\x7b\xd0\x3a\x03\x69\x36\x03\xf3\xf3\x6a\x81\xb8\x54\x52\xb8\xbc\xbe\xa5\xe5\xbe\x23\x5a\xe4\xaa\xe2\x44\x7c\x40\x9c\xb3\xdb\x11\x11\x03\xaa\x7f\xa9\x82\xaa\x0e\x67\x19\xd2\xbf\xcc\xb4\x3c\x43\x72\xbd\x34\x2f\x52\xd0\xc3\x13\x28\x19\x8b\x25\x59\x5d\x28\xda\x8d\xf2\x47\x10\x81\xfd\x76\xce\x2c\xfd\x7c\xb8\x44\xe2\xda\x3a\x5e\xe1\x2f\x95\x0b\x9d\x7a\x59\x71\x00\x35\x29\xb6\xda\x38\x4e\x11\x5d\xd6\x87\x87\x43\x1f\xca\x10\x07\x4b\xb4\xfa\x6e\xe3\x01\x4d\x6b\x1d\xc0\x11\xad\xa7\xd8\x13\x70\x98\x9d\x38\x51\x65\x9c\x03\x9c\xc9\xde\x1e\x0f\x69\xa0\x97\x0a\xc8\x42\x6a\x02\xa7\x0e\x92\xc8\x1f\xbd\x82\x70\xbb\x78\x30\x67\xbd\xa0\x41\xfa\x3b\x31\x3f\x55\x2d\xea\x07\xd4\xfb\x83\x23\x04\x57\x98\x4f\x31\x95\x23\x76\x2c\x21\x9b\xcd\x04\x96\x23\x7b\x6a\x5c\x91\xca\x6f\xe8\xf2\x71\xa2\xfe\x90\xe8\x3d\x15\x98\xcb\xb7\x46\x85\xaf\x11\x58\xd4\xdd\x6d\xd3\x13\xc2\xd0\xe9\x5f\x3c\x20\x6e\xe6\xc0\xbf\x1a\x8e\x7d\x88\x42\xcd\x1c\x03\x35\x0a\x03\x70\x64\xe3\x13\xd6\x24\xd2\x7b\x61\x0b\x22\xec\x9e\x53\xc1\x75\x6e\x99\x22\x19\x3c\xb4\xb5\x82\xc0\xd4\xdd\x9b\xc6\x64\x75\x8e\xa4\x92\x15\xca\xe2\xd4\xe1\xb2\x10\xf9\x90\x06\x8c\x7a\x60\xc9\xd6\xaa\x3f\xe8\x06\xe7\x46\x35\xf5\x80\xe6\x85\xa8\x30\x8e\xf8\xd7\x66\x21\xb0\xfe\x38\xfd\xd2\x61\x42\xeb\xdd\x84\xd4\x62\xaa\x64\x13\x98\x2b\x51\xa5\xc6\x43\xbb\x6c\x32\xf8\xec\x25\xa1\xce\x6b\x4d\x5b\x1b\x4a\x45\x23\xcc\xdf\x28\x1c\x3d\xb3\x3e\xfc\xbc\x8a\x90\xac\xf1\xe5\x16\x4a\xaf\x75\x51\xfd\x68\x39\x99\x4d\xd4\x1a\x88\xb9\x07\x34\x7f\x07\xff\x0b\xa3\xe9\x22\x30\x02\x00\x1a\x1e\x4b\xd9\x26\xaf\xa3\x55\xd4\xef\x43\xe7\xb9\x7e\xe4\xed\x84\x70\xd5\xb5\x44\x18\xfc\x62\xe6\x53\x3a\xdb\x81\xe2\x02\xaa\x0f\xd0\x4a\x7d\xfa\x44\x17\x80\x6a\x02\x24\x45\x92\x20\xa2\x84\x75\x82\x5b\x12\xc9\x85\xe7\xc3\x38\x14\x8d\xe7\x95\x35\x8e\x7f\x53\x5a\x04\x09\x51\xc2\x85\x20\x98\x20\xbd\x79\x59\x18\x2b\xd5\xac\x17\xc3\xca\x8a\x34\x99\xb6\x3e\x5c\x87\xb1\x8d\x2d\x39\x20\x01\xfe\x44\xa4\x97\x86\x65\x19\x39\x1a\x85\x24\xc0\x4a\x73\xf0\x7c\xb5\x1e\x29\xe9\xa8\x2b\x4f\x19\x4f\x7f\x74\xa8\x2c\x6b\x38\x2f\x1f\x46\xab\xe6\xa7\xb0\x94\x6a\x42\x58\xf7\x53\x1f\xca\xb6\x3d\x3e\xa0\xdd\x79\x70\xe8\x43\x54\x51\x7a\x58\xc7\xb1\x95\x13\x41\x26\xeb\x09\x0a\xd4\xea\xef\x69\xb5\xfd\xbb\xef\xd8\x27\x4f\x1f\xf4\x08\x3e\x1d\x09\x33\x7c\xc7\xcf\x0e\xca\x9b\x0e\xa5\x3d\xbc\xb2\x31\x56\x9e\x92\x4a\x9d\x49\xfa\x52\x14\xf0\xf0\x2e\xc6\x33\xa9\x83\xbd\xfc\xad\xff\xca\x23\x21\x09\x96\x98\xcf\xb1\x17\xf9\x89\x74\xd0\xd8\xe5\x87\xc4\x86\x11\x64\xf2\xf4\xfe\xde\x0c\xc2\x00\x1c\x09\x13\x6f\xf3\xd3\xcc\x93\xbe\x3e\xd3\x32\x2f\x12\x41\x61\x8a\xfa\x7d\x54\x1c\x0e\xc8\x9c\xd7\x87\xe9\xeb\xc4\x2c\xa1\x90\xf7\xfb\x29\xdd\x59\xbf\x9f\x91\x7b\xac\xd7\x23\x34\x55\xfc\x66\xce\xa0\xf7\x40\x2a\x2f\x84\xc3\x22\x90\x18\xfa\x4f\xc3\x0a\xfe\x60\xff\xa6\x4c\x1c\x2d\xff\x07\x1e\xb6\x61\x43\x61\xb8\x1e\x9c\xdc\xdf\x0f\xc3\x30\xb4\xaf\x4e\x4f\x46\xcf\xfc\x23\xb0\xfa\x04\xb6\x70\x59\x57\x8f\x59\x3b\x8e\x3c\x17\x6e\x38\x3a\x49\xe0\x56\x21\x71\xe7\x57\x20\x11\x9f\x63\x99\xcc\xb2\x72\x9d\x3a\x66\xe8\x60\x55\x9a\x3b\x1c\x4f\x25\x28\x0c\x14\x48\x2b\x33\xaf\x35\x3b\x01\x38\x4d\x9e\x17\x98\xcc\x17\x4a\xd4\x9c\x0c\x87\xff\x9a\x96\xfa\x04\xe0\xd2\xb7\x63\xbf\xd2\x91\x97\x56\x89\xf2\xfc\x20\x5a\x73\xad\x01\x7a\xcf\x86\xc3\xba\x5a\x35\xbc\xa6\xed\xac\x80\x9b\xd2\x68\x4a\x88\x39\x4a\x14\xc5\xb7\xbd\x34\x49\x8a\x5e\x8d\xef\xef\x4f\x74\xa2\x85\xd8\xcb\x85\xf2\xdd\x99\x45\x5a\x6e\x21\xf6\xfd\xad\x7f\x30\x6b\x26\x47\x65\x0f\xed\xef\x0d\xa8\x98\x3a\xfc\x14\xbc\x1c\xfe\x2b\x18\x0d\xb7\x19\x45\xc9\x6a\xb0\x52\x4b\x25\x04\x6b\x1e\x7b\xff\x03\x1c\x65\xca\x8c\x59\x5d\x81\x7f\x04\x7c\x50\xa4\x6d\x65\xe5\x7f\x59\x7d\x02\x23\x43\xf5\xb4\x05\x4d\x67\xa5\xe8\xd7\xc0\xe8\xef\x31\x92\x4a\xfd\xe8\x0d\x9e\xfb\x40\x7b\x67\xed\x38\xcd\xea\xa6\xa8\x43\x5e\x30\x41\xbc\xa7\xc9\x3a\x00\x47\x72\xfb\xd0\x91\x55\x73\xaf\x5a\x61\x31\xbb\x5d\xd6\x5d\xe9\xfb\xd9\x32\xa2\xe8\x53\x22\x8c\x26\x82\x33\x0a\x9a\xe2\xca\x0a\xd1\x7a\xff\x47\xa5\xf6\xe3\x0a\x7b\x2b\x13\x85\x8c\x4e\xb1\x31\x62\x8a\xcb\x6f\xdd\x21\x07\xc7\x3c\x31\x8e\xb6\x5b\xc6\x97\x0b\x56\x3c\xeb\x90\xff\xd6\x00\xb5\x87\x6e\xb7\x19\xc7\x58\x1b\x4b\xc7\x62\x3e\x98\xb0\x4f\x38\xfa\x26\x1b\x0c\x37\x88\x13\x44\x65\x7b\xf8\xfe\xd5\xdd\x35\xde\x8c\xc0\x07\x1d\xa1\x08\xa0\x24\x32\xc6\xd9\xa3\x88\xd7\x73\x35\x0d\xa0\x29\xf5\x9e\xce\x58\x5a\xc6\x3c\x98\x12\xda\x4b\x31\x63\x69\xc1\xff\x42\xdc\xb8\xa4\x6c\xd9\xf4\x39\x2d\x7e\x6b\xdf\x24\x10\x67\x88\x6a\x67\xad\x05\x48\x1e\xd3\xf2\x91\x79\xd1\xc9\xfd\x94\x1b\x83\x29\x8b\x19\x17\x5f\x95\xf8\xba\x4f\x97\x0b\xbc\xec\x10\xe8\xa1\x0f\x82\x8d\xc0\x39\x27\xe6\xd4\xfa\x04\x09\x3c\x02\xff\xe3\xd9\xcb\x09\xfa\x8f\x13\x45\x9d\xdc\xf7\xde\x19\xe2\xd7\x69\xa1\x93\xe8\xff\xf7\xe2\x2f\xff\x9e\x15\xba\xc4\x9f\x64\xfa\x71\x88\xd4\x7f\xd9\xc7\x1f\x08\x75\x20\x5f\xfe\xe5\xf9\x6c\x96\x7d\xfc\x3b\x47\x59\xdb\x93\xc9\xf4\x45\xe4\xb4\xfd\xd3\x6c\x36\xb8\x5d\x10\x89\xd3\x12\xb3\x97\xea\x3f\x3d\x18\x70\xc5\x59\xb4\x9e\xca\x37\x9a\xcc\x9d\xf1\x7d\xc3\xa8\x58\xc7\xbd\x73\xb7\x53\xb3\xd9\x70\xf8\x1f\x0e\x3a\x4e\x99\x3c\xde\xd3\xbf\x3c\x43\xff\xee\x12\x07\x4d\xaf\x31\xef\x7d\xa7\x0c\xc5\x8c\x36\x08\xbb\x18\x3a\x65\xca\x44\x8c\x22\x97\x88\x9c\x23\xb5\x4c\xf4\xce\xd7\x7c\x15\x67\x35\xbe\x9c\xbe\xc0\xf8\x65\x7d\xc1\x7c\xb5\x2f\x86\x2f\x86\x93\x67\x59\xe9\x7f\xa2\x39\x47\x54\x16\x3a\x59\x18\x06\xb7\x50\xa1\x97\xc3\x17\xd8\xad\x4e\x87\xd5\xf6\xfe\xce\x31\xa6\xb5\x3c\xe3\x94\x69\xe6\x9b\x62\x41\x35\xf1\x92\xa2\x7f\xf9\xf7\xe1\x8b\xc8\x8c\x34\x5e\x32\xa5\x02\xee\x38\xd2\x17\xeb\xe9\x14\xab\x25\x33\xe9\xe5\xf3\xe8\xe4\x2f\xc3\xac\xf1\x54\x34\x24\x5c\x80\xfe\x03\x3f\x7b\x9e\x7d\x4f\x24\x41\x32\xf6\xff\xf1\x62\xf8\xfc\x45\xf6\xd9\x48\xa1\x02\x3d\x77\x16\x12\x45\xbf\xd0\xe0\xd7\xf5\x72\xc2\xbe\xaa\xd0\x70\xbb\xf0\x1d\xe2\x67\x15\x0e\xa0\x0a\x1a\x5b\x27\x3e\xa3\xe9\x7e\xfc\xc9\x30\xf3\xed\xcb\x5b\x96\xbc\x7e\xe6\xbe\x5e\x70\x9c\x96\x77\xde\xcf\xd8\x9a\x27\xaf\x9f\xbf\xfc\x7c\x2a\x7e\xdd\x2d\x75\xb2\xc4\xfc\x92\x4c\xaf\xc5\x68\x68\x62\x49\x2e\xd5\x9b\x9a\xc3\xa5\x99\xb9\xa2\xe1\x00\xd4\x91\xe7\x12\xf3\x1b\x14\xe7\xdd\x2e\x84\x4e\xb9\xd6\xb8\xd2\x6e\x82\xac\x29\xa5\x4f\xbd\x1c\x0e\x7d\x7f\xab\xed\x6a\x42\x89\x04\x7e\x9d\xff\x78\x1a\x63\xc4\xd3\x46\x9c\xb4\x71\xba\x07\xbe\x76\xb0\x7c\x1b\x1e\x78\x3e\xd4\x13\xbc\xa2\xf9\xff\x22\x72\xf1\x46\xdb\xdc\x5d\x66\x7c\x65\x7c\xcb\xc9\xb0\x71\xf7\xaa\x18\x4f\xf2\x6c\xb8\x53\x04\xc9\xf3\x61\x55\xd4\x48\x0d\x36\x1f\x99\x44\xb2\x22\x30\xd2\x1d\xd1\xb2\x71\x50\x45\xe1\x1f\x91\x5c\x04\x9c\xad\x69\xe4\xbd\x1c\xfe\x9b\x79\x42\x34\x62\x4b\x4f\x8d\x63\x05\xed\x3b\x02\xb8\xa3\xd2\x08\xd2\x65\x72\xce\xd7\x52\x62\x3e\x58\x62\xba\xfe\xaa\x53\xb1\x39\x47\x92\x60\x5c\xe2\x28\x4d\x14\x54\xce\xb7\x68\xb3\x16\xa5\xe7\xc5\x85\x75\x14\xaa\x17\x15\xc3\xe3\x95\xf2\x1d\x65\x90\xc0\x0f\x24\x33\x16\xaf\x7f\x7f\x7f\x35\xf6\x03\xd5\xba\x57\x75\xde\xd8\x7a\x4f\x74\x23\xe6\x84\x86\xf3\x6c\x1d\x23\xa9\xd9\x10\x86\x21\x3d\x1d\x9c\x8c\xdc\x17\xe8\xf4\x64\x44\xff\x8a\xd4\x6b\xfa\x37\xf5\x30\xd4\x03\xc4\x68\x8a\xea\x9b\x85\x5a\xcb\x72\xfb\x75\xad\x63\xf8\x2b\x9b\x0c\x22\xbc\x8a\xd9\xa6\x18\xf0\xf2\xc5\x87\x31\xb7\x83\x52\xec\x07\xc8\xdb\x36\x63\x98\x7d\x4c\x36\x42\x7e\x5a\x61\x3a\x3a\x3c\xd9\x11\xc5\xe3\xec\xe7\x60\x89\x25\x27\xd3\xaf\xab\xbc\xef\x10\x9a\x95\xef\xb8\x18\x08\xc9\x31\x5a\xe6\x6d\xdd\x25\x7b\x9c\xe0\xa2\x1d\x3a\xce\xe2\xc2\xae\xb2\x92\x6e\x31\xa1\x38\x37\x4a\x1d\xe4\xb9\x8e\x34\xd7\xb3\xf5\xac\x1e\x0c\x38\x55\xda\x89\x7a\x83\xb9\x20\x8c\x5e\xac\x27\x4b\xa2\x57\xe1\x2a\x8f\x8b\xb3\x55\x95\x55\x00\xcc\x04\xd5\xfb\x3e\xa5\x4a\xfc\x80\x63\x9d\x3a\x54\x7b\xff\x11\xa5\x4a\x9a\x37\xf7\xad\xd4\xfb\x7c\x0f\x1b\xb3\xb9\x96\x60\x41\xeb\x5e\x99\xb0\x87\x21\x87\x4a\x1c\xf8\x22\x10\x0b\x76\x7b\x86\x24\x0e\x0f\x87\xd9\xb6\x34\x0f\x71\xc0\xf4\xf0\xbf\x96\x1e\x1a\x9c\xf8\xa6\x39\xdb\xa5\x40\x38\x08\xeb\x2d\x37\xd3\x19\xe7\xed\x01\xeb\xf7\x79\xbf\xaf\xf7\xf5\xd3\x0d\x45\xee\x9b\x58\xd0\x9f\x66\x1e\x88\xd0\x06\xf8\x41\x44\x66\x3a\x7f\x8d\x53\x88\x15\x0b\x41\xf5\x47\x00\xff\x6f\xc3\x7e\xdf\xcb\xf5\x37\x39\x36\x79\xe7\xce\x6b\xb8\xc4\x12\x8d\xc4\xd6\xac\x3d\x5b\xbf\x9c\xec\xba\x38\x3b\xc8\x6c\x36\x98\x11\x1c\x47\x62\x80\x68\x34\x30\x78\x3f\xed\x09\x4d\x66\xb3\x6f\x2c\x66\x55\x0f\xea\x36\xa6\xdf\x46\x44\xe2\x68\x44\xc4\x00\xeb\x5f\x7a\xff\xea\x75\x14\x99\x77\x48\xfd\xd0\xaf\xce\xf4\x11\x58\xfd\xd2\x9c\x86\x8d\xd4\xec\x27\xb3\x99\x91\xce\x37\x98\x4f\x98\xd0\x2e\xaf\xb4\xce\xfc\xe4\x09\xf0\x6f\x6b\x14\x7b\x40\xc1\x04\x97\x9b\x15\x06\x10\x98\x82\xc0\x87\x49\x93\xed\x20\xba\x9c\x86\x48\x7a\xd4\x0e\x63\x4b\x76\x08\x82\x50\xe4\x5a\xa1\x39\x3e\x46\x13\x21\x39\x9a\xd6\xa5\x57\xb7\x49\xa9\x8c\x22\x7b\x6c\xf2\xac\xac\x10\x47\xcb\x62\xaa\x94\x6f\xa0\x0f\xa5\xc1\x6d\x4a\xe0\x24\x0d\x66\x6f\xce\xb0\x98\x9a\x60\xb0\x24\xea\xa7\x49\x9f\x80\x73\x26\xd9\x25\x12\xd7\x7f\xe7\x6c\xbd\x2a\x7f\xfa\x9e\x4d\xf2\x2f\x75\xc2\x98\x1f\xb1\x10\x68\x6e\xc3\x8a\x26\x1c\xa3\x68\xca\xd7\xcb\x49\x59\x9e\xea\x50\x3b\xa5\x12\x41\x12\x6d\x1b\xa5\xa7\x9b\x88\x2c\x55\xa0\xbf\x67\x13\x01\x20\xe2\x73\xcb\xea\x02\x8c\x53\xdd\xb7\xa0\x7f\x65\x65\x02\x73\x8a\x0c\x6a\x51\xf6\xdb\xea\xbb\x35\x89\x23\xcc\x7d\x7d\x6c\xed\x43\x96\x14\x33\x03\x37\xd9\x34\x4d\x45\xf7\xf7\x4e\xe6\xc9\xb1\xb6\x0b\x90\xee\xb2\x18\x19\x7b\xec\xad\x8b\x7f\x71\xc7\x59\x1b\x88\x2e\x85\xec\xf6\x7a\x72\x2c\xda\x1c\xbb\x72\xe5\x43\x1d\x18\xae\x3d\x90\x5a\xc5\xcd\x13\x13\xea\xd6\x16\xad\x59\xe6\xfe\xaf\x9e\x62\xbe\xaa\x37\x7a\x62\x61\x89\x39\xf9\x1d\x47\x03\x1d\x87\xba\x03\x2e\x49\xa6\x3c\x0b\xf8\x85\xef\x40\xd0\xf9\x9f\x8a\x22\x09\xc5\x04\x09\xc3\xec\x11\x9e\xb2\x08\x47\x36\x51\x14\xf0\xa1\x05\xf9\xfe\xe2\xa7\x0f\xa5\xd9\x61\xbf\x55\xcc\x0b\x27\x7b\x11\x76\x93\x77\x66\xf3\x25\x81\xf5\xfd\x2c\xf9\x50\x92\xb9\x00\x77\xb0\xf5\xaa\xa9\xbf\xcf\x3c\xe4\xc4\x30\xd7\xa0\x61\x03\xd9\x94\x94\x7c\xec\x6c\x79\x35\xa2\x5c\x66\xf1\x65\xa9\xd8\xce\xad\xdf\x45\xab\xa8\x9b\x4c\x37\x67\x9a\xe5\x79\x2a\x83\x2b\x45\xb5\x22\xcc\x05\xf9\x5d\x7b\x54\x64\x22\xe2\xab\x65\x74\xf6\x39\xb8\x1a\x37\x6b\xdf\xf9\xe2\x40\x9b\xc9\x5b\x1f\x26\xa4\xaf\xac\x3e\xf9\xd8\xa9\xf2\x74\x10\x93\xaa\x63\x22\xe4\x25\xbb\x60\x69\x5c\x50\x71\xe2\x65\x10\xd6\xfc\x78\x53\xdd\x99\xa4\xbc\xaa\xf0\x42\x17\xdc\x45\x65\x30\x2c\x66\x6f\xb3\xf8\x26\xfa\x68\xc5\xe2\xcb\xe8\x19\x11\x4b\x22\xc4\xee\x5e\x02\x17\x29\xd5\x21\x1b\x49\xfa\x35\x51\xeb\x3e\x27\x70\xf4\x36\xeb\x63\x25\x8f\x39\x38\x58\xa3\x6d\xc9\x22\x32\xdb\x98\x54\x22\x8d\x6e\xa0\x02\x38\x70\x5c\x3f\xca\xb2\x74\xeb\xc9\xd9\x94\xbb\x92\x79\x15\xa3\xa9\x76\x0d\x0f\x66\x88\xc4\x6b\x8e\xbf\x11\xb5\x77\xb4\x70\x1c\x0c\xec\x71\x80\x6f\xe5\x61\x7a\x04\x0c\x2a\x2e\xad\xf8\xf2\xfe\xcd\xa6\xe0\xfe\x4c\x9d\xb7\xb9\xa6\xeb\x95\x8b\xa4\xef\x7e\xe3\x7c\xd9\x95\x22\x4a\x98\x0f\xe6\x46\x9a\xff\xc1\xd7\xcd\x06\x63\xe7\x8b\x2f\x90\xad\xab\x98\x0b\x63\x65\xde\x65\x5d\xa7\x1e\x63\x25\xd3\x91\x13\xdf\x6a\x25\xcb\x66\xb2\x8e\xdf\xd0\x3f\x2b\x6d\x24\x35\x36\xa9\x05\x26\x24\x5b\x15\xd4\x9c\xe2\x1e\x9d\x73\xea\xca\x1c\xd6\x2f\xa6\x71\x4b\xcf\x97\x38\xcd\x01\xdf\xbb\xb3\x81\x24\x6f\xd8\x3a\x8e\x7a\x1f\x98\xec\x5d\x48\xb6\xea\x7d\xaf\x6c\xc9\x08\x8b\x29\x27\x3a\xd3\xdc\x08\xfc\x3f\x6c\xcd\x7b\xaf\xdf\xfc\xd0\xd3\xc9\x5c\x7b\x11\xc3\xa2\x47\x99\xec\x99\x9d\xf8\x15\xe6\x6a\x35\x26\x8c\xf6\x24\xeb\xa9\x1e\xf4\xb4\x4d\x0a\x4c\xca\xe1\x1d\xc6\x28\x6f\xd6\x3c\x31\xbd\xfc\x6e\x07\xa3\x5f\x3f\xaf\x90\x52\x58\x77\xf1\x05\xe4\xce\x0d\x65\x55\xec\xe6\x24\x90\xcd\x4e\x02\x59\x72\x27\x48\x4e\x96\x4b\xb3\xdb\x54\xe9\x55\x18\x77\xda\x48\x2b\x8d\xe2\x93\x1b\xbf\xc6\x25\xa9\xac\x66\xa6\x33\x50\xa7\xa3\xff\x01\xad\xe9\x74\xd1\x71\x16\xe6\xb2\xf7\x57\x4f\xc7\x0a\xff\x47\x79\x3a\xbe\x53\xf5\xf4\x4c\xd3\x9f\x33\x25\xb5\x63\xdc\x9d\x94\xf0\x33\xfc\x3a\x3b\x4c\x68\x4b\xde\xa7\xc6\x09\xdd\xfb\xaf\x9d\x92\xfb\xd8\xfd\x9d\x4e\x94\x7e\x0d\xf7\xee\xc3\xce\x7a\xa6\xa8\x94\xcf\x78\xa6\xab\xe9\x63\x1f\xf1\xec\xc4\xde\xe9\xe6\x58\x9d\x2a\x91\xa6\x42\x92\x59\xd8\xbc\x87\x83\x77\x7a\x9f\xc7\xd8\x5a\xf6\xb4\x16\x87\x43\xff\xc8\xc3\x81\xa1\x7a\xfe\x1b\x85\x43\x27\x29\x9a\xcd\xa2\x9a\x04\xaa\x9f\xe2\x23\xe9\x51\x7f\x84\x77\xce\x01\x66\x13\x07\x5e\xd9\x9d\x87\x6c\x37\x21\xdd\xbe\x18\xb7\x9f\x23\x2c\x6f\xca\xa4\x44\x29\xa9\xaa\xf6\x4b\x61\xd7\xdb\xdd\x61\x99\x6a\x3f\xfd\x1b\xb6\xa6\x45\x5d\x31\xdb\xf6\x33\xdb\x4e\x0d\x8b\x68\xae\xa0\x39\xee\x91\xa9\x93\x8a\xb0\xe9\xe6\xe4\xa9\x1a\x96\x23\xe4\xd2\xf9\xc8\x43\xc9\x79\x3a\x05\x94\x9a\xc4\xe9\xa1\xba\xc2\xb8\x8c\x86\xae\xa3\x5c\xb2\xf9\x3c\xc6\x67\x64\x36\x2b\x49\x52\xf3\x29\x0b\x8d\x32\xf8\x03\x2d\x49\x1b\x8f\x73\x06\x53\x46\xa7\x48\x7a\xd2\xdf\x42\x5e\x5d\x06\x65\x09\x62\xa5\xde\x1a\xf2\x4f\xf1\xd1\x89\xb9\x3a\xb3\x23\x0f\xef\xc5\x9e\x7c\xd2\xd7\x6e\x1b\xf2\x0e\x5f\xa5\x5b\xe0\xff\xac\xa9\x21\x61\x9a\x92\x91\x53\xc3\x5c\xee\xfe\xbb\xa8\xdc\x78\xff\x32\x3b\xe0\x90\x85\x85\xdd\xec\xf2\xae\x77\x69\xeb\x3a\x2e\xc0\x54\xec\x94\x17\x61\x0e\x98\xd9\x15\x8f\x3b\xec\x7b\xa7\xd3\xba\xb8\xe9\xdd\xcc\x7b\x82\xd1\xc1\x0d\xc1\xb7\xc5\xc4\x23\x74\xb5\x1c\xe9\x8f\x33\xc6\x97\x48\xc7\x65\xfd\x5a\xde\x7c\x74\xc4\xa1\x9d\x60\xff\xe2\xf9\x01\x5e\xae\xe4\x26\x3b\x7b\xe3\xe4\xbc\x4b\xea\xd2\x43\x44\x23\xcc\x3d\xdf\x7f\xa8\xc4\xcc\xd6\x62\xfb\x77\x67\x31\xe9\xe0\x3e\x86\xea\xc9\xc8\x44\xfc\x69\x85\x68\x74\x86\x57\x72\x31\x3a\x39\x1e\xc2\xb4\xd7\x65\x4b\x43\x98\x8b\x2d\x32\x80\x2a\xd3\x9c\xe2\xdb\x1e\xf2\x2a\x4f\x3d\xeb\x0a\xec\xa9\xe7\xec\xc4\x8c\x53\x9d\x0f\xef\xa4\x0e\xcc\x37\xa3\x07\x92\x73\xc4\xed\x49\x0a\x4d\xd5\xfd\x7e\xf7\xfc\x84\xb4\xc3\x7a\xab\x0c\xfe\x01\x9a\x4e\x19\x8f\xbe\xf6\x11\x91\x7c\x7e\xcb\xb4\x0b\x63\xa8\xcf\x63\x90\x08\x40\xc1\xd6\xbc\x4b\xb2\x4a\x1d\x6d\x89\xa7\x8c\x2b\x59\x74\x51\x09\x04\x4c\x5d\x6d\x72\x48\x28\x71\xf6\x06\x4d\x17\xb8\x60\x30\x5e\xe3\x8d\x49\xc0\x4d\x24\x5e\x06\xe0\x48\x42\x94\x0b\xd5\x59\xeb\x5b\xb5\xf2\x42\x29\x15\x49\x58\x27\x25\xfd\x6e\xe3\x51\x27\xef\x3c\x82\xd2\x4f\xc4\xd9\x9d\xaa\x75\x84\xd2\xd5\xfb\x50\xf4\xfb\x87\x87\x22\x30\xcf\x6a\x29\x73\xbd\x42\xa2\xd0\x53\xa8\x2f\xd8\x35\x49\x39\xcd\xab\x4e\x24\xdb\x91\x37\x8e\xd3\x5f\x83\x09\x8b\xbe\xae\xc3\xd3\x71\xf4\x74\x0f\xeb\xab\xed\xfe\x42\x67\x9c\xf9\xe6\x9c\x6e\xfa\x51\x17\x67\xa3\xb1\x1c\x11\x31\x88\xed\x69\x3a\x22\xde\x6a\x39\xa2\x4f\x8a\x8d\xb4\xca\x9e\xea\xeb\x93\xb5\x94\x8c\xfe\x60\x63\x78\xb5\x4a\xe4\x50\x0a\xe6\x40\x0f\x87\x50\x73\x5b\xaa\xdf\x33\x51\x08\xe1\x60\x54\x03\xee\xb4\x01\xa4\x89\xbd\x42\x73\x42\x4b\xb7\xbc\x7f\x79\x77\xf8\x0e\x62\x42\x90\xdf\xf1\xe8\xd9\x4b\xbd\x97\x39\x3a\x81\x62\xc5\x31\x8a\x46\xcf\x4c\xc0\xbe\x78\x5d\xd6\x8f\x15\x00\x80\x60\xa5\x8d\xf4\xa6\x4d\x1f\x5d\xc2\x1f\x9c\xf8\xff\xe6\xc8\x05\x05\xec\x1f\x9d\x28\x34\x68\x54\x59\x7d\x26\x96\x5a\x9a\xea\xe9\x00\xec\x25\x29\xb7\x59\x6a\x10\x16\x25\x93\x3d\xa9\x0f\x7c\x35\x8c\x31\x12\x66\xa7\xb7\xbd\x2f\x35\x9d\x98\x62\xe2\x9e\x1f\x28\xb4\x71\x5c\xec\x8e\x6a\x54\xf5\xd4\xdc\x81\xd9\xd4\xaa\x41\x1d\x98\x51\x69\x10\xd4\x6e\x36\x85\xa4\x70\x02\x9c\xa0\x07\x4c\xe2\x11\xf3\x59\x5f\x63\xa3\x0a\x68\xbb\x25\x29\xa2\x14\xc5\x13\xad\x28\xe6\xf2\x6d\x89\xd0\x90\x1a\x7d\xf2\x4e\x20\x1d\x48\x1f\xf2\x30\x25\x3e\x82\xf4\x48\xfa\x47\x27\x89\x44\x36\xc1\xdd\x7c\x20\xec\x31\x66\xed\xc7\xc9\xaf\x03\x8e\x4d\x71\xa7\xfa\xf0\x61\xad\x48\x30\x12\x47\xf6\x38\x67\x9c\xdd\x8f\xd4\x4c\x96\xe2\x98\x94\x56\x2f\x3b\xfa\x61\x25\x5b\xe2\x83\xd2\xd6\x42\xba\x6e\x99\xb4\x27\x12\xca\x23\xdc\x45\xcb\x2c\xcc\xf6\xf4\x19\x7f\xab\x9d\xec\x6e\x3d\x96\xc5\x6b\xcf\xbe\x5e\x0f\x6d\xd3\x79\x13\xcc\x6e\x7e\x7d\x79\x35\xa7\x7e\xe0\x97\x85\x14\xd1\x96\x4d\xf5\xa5\x1f\xda\xd2\xed\xca\x0d\x1a\x19\xbd\xa5\x37\x98\x7c\x23\xe5\x40\x69\xeb\x69\x5e\x55\x67\x31\x35\x1b\x53\xe3\x34\xca\x85\xb3\x95\xd2\x24\x56\xf6\x6f\x6e\x4c\x88\xb0\x39\xab\xec\xd8\x54\x2f\xce\x26\xe1\x86\x0e\x78\xb5\x39\x2a\x40\x61\x7b\x30\xc2\x62\x3a\x42\x62\x0a\xc6\x30\x2d\x5e\x1c\x2b\xa7\x3f\x6a\x92\xeb\x3f\x4d\x83\xe6\x96\xf7\xc3\xd0\x99\xf8\x1a\x56\x0d\x93\x58\xb0\x75\x1c\x5d\xe4\xfb\x52\x15\x94\x9e\x7d\x36\x01\xbc\x16\x8d\x52\xf3\x4e\x66\xc2\xb4\x94\x7f\x7f\x7f\x98\x0f\x53\x77\x6a\xdb\x91\x61\xf4\xbf\xdf\x50\xa1\x94\xba\xe9\xd6\x58\xf2\x52\x8f\xbf\xba\x0e\xe9\x70\x39\x4e\xed\xc6\x86\x1e\xaf\xd8\x2d\xe6\x96\x97\x07\xcb\x75\x2c\xc9\xaa\x3a\x0d\x82\x5b\xb0\xbd\x82\x3d\xcc\x88\x50\x89\x48\x53\x76\xd6\x9d\x28\xb2\xcf\x29\x5a\x5d\x84\x1e\x4a\x88\x7d\xc7\xfb\xd8\x5c\x64\x38\x60\xab\x52\xb8\xda\x2e\x64\x28\x56\xb3\xef\x54\xf9\x5c\x72\xfc\x51\xe8\xa0\x43\xec\x16\x2c\x8e\x1e\x2e\x2a\x72\x75\xec\x3d\x3d\x5c\x19\xa8\x83\xbc\x1e\x4e\x96\x72\x55\xfb\x4e\x1d\x81\x11\x9f\x2e\x06\xcb\x64\x53\xff\x81\x94\x29\x54\xb3\xef\x54\xf9\xcc\xa5\x76\x9f\x57\x58\x8e\x13\x27\xfd\x00\xdf\x60\x2a\x8b\xb1\x03\xdf\x36\x54\xd4\x71\xab\x66\xb9\x7f\x93\x14\xb0\xce\x7d\x52\xf5\xb7\xae\xbc\x8f\x5a\xec\xcc\x8a\x4b\xb9\xdc\x6b\xf4\xab\x2e\x49\xd1\xb7\x73\x6d\x7d\x28\xc9\xd2\x46\x0b\xc5\x84\x5e\x5f\xb2\xd7\x59\x87\x0e\x87\xd0\x06\x6b\xb5\x2b\xc2\x76\x32\x4d\xd8\xa7\x4e\x01\x05\x6e\x84\x8e\x01\xbd\xc4\x7c\xe9\xf6\xf4\x17\xe7\xf5\x03\x76\xbb\xba\x0c\x5a\xda\x80\xcd\xc6\xeb\xbc\x28\xc4\x6d\x72\x8c\x22\x91\xeb\xa9\xa2\xc6\x84\xad\xe9\x14\x8f\x4e\x5e\x0e\xf3\xd6\xad\x4b\x0b\xa0\x8f\xc5\x02\x08\x16\x48\x9f\xdb\x34\xab\x75\x16\x1a\x89\xe5\x45\xd6\x6a\xf5\x11\x33\x97\x12\x10\xdb\xcc\x86\xc9\xdd\xe6\xd9\x3e\x55\xd2\x1f\x9b\xcb\x0d\xba\x27\xaf\xcd\x17\xe0\x77\x09\x7d\x32\xc9\x5b\x07\x68\x5e\x31\x91\xbe\x79\x10\xce\x2f\x9c\xad\xb3\x2d\xc5\xc2\x54\x03\x03\xf5\x55\x9b\xc7\x30\x57\xae\x18\x7f\x6b\x6b\x09\xcc\x1f\xd0\x14\xbe\x53\xa6\x46\x39\x8e\xa7\xa3\xf7\x62\x0c\x75\x2d\x49\x04\x49\x8d\xbb\x42\x97\x01\x10\xd8\x2e\x5a\x6f\xc4\xcf\x1f\x7f\x68\xf4\x49\x66\x98\xe8\x0c\x17\xfa\x8a\x32\xec\xd9\xde\x8b\xc0\xfc\xcd\x09\x82\xb9\xc9\x2e\x98\xa4\xbc\x00\x47\x38\xa9\x89\xe9\xd6\xfc\x34\x49\xf3\xe0\xc4\x4f\x3e\x3a\xbd\x71\x2f\x90\xbe\x1a\x8e\xc3\x30\x94\x5b\xbf\x18\xb4\xe4\x76\xf4\x55\x29\x7c\xa9\x2c\xd2\x70\x1e\x1b\x27\xb5\xe2\x25\x2b\x63\x83\xf3\xa8\x6c\xa1\x16\xfe\x5d\xe2\x9f\xb2\xe0\xf9\x27\xc7\xe1\xf5\xac\x58\xec\x74\x99\x11\xd3\x58\xf4\x6f\x14\x56\xa6\x7b\x18\xb3\x79\x95\x0e\xe2\xde\xe9\x59\x7b\x64\x5b\xc3\x3e\x20\x85\xbd\xbd\x47\xae\x22\x3d\x3d\x14\x5f\xf8\x0a\x08\x1d\xbc\x5a\xb7\xf4\x37\x1c\x7e\x80\x20\xa5\x56\xf9\x56\x49\xf5\xc9\xfc\x5a\x0b\x7c\xa1\xd9\x7d\x74\x78\x02\x29\x7b\xc3\x28\x35\x15\xa8\x67\x73\x8f\xc4\xa5\x41\x7e\x74\x82\x9f\x43\x33\x35\x92\x37\x2f\xf1\xf3\xdd\xaf\x66\x74\xef\x4e\x90\x3a\xe3\xa8\x7d\x23\x74\x46\x58\xb3\xef\x79\x61\xe2\xad\x4c\xb6\xf0\xda\xec\xec\x1a\x6c\x46\xe2\xf8\xf5\x0d\x22\xb1\x1a\xba\x7f\xe8\xac\xa5\xde\x67\xe4\x27\xad\xa8\x4e\xdf\xab\x5f\x7a\x5b\x2d\x85\x82\x7f\xf1\x40\x30\x8d\xc9\xc0\xb4\x0f\xfc\x03\x1c\x98\x54\xaa\x9e\x79\x13\x10\x4a\x31\x37\x55\x0c\x92\xb4\xc3\x9e\x1f\x48\xb6\x1a\x3c\x7b\xe9\x6f\xe1\x92\x45\xfa\xde\xb5\x48\x31\x1c\x8c\xd9\xfc\x67\x1e\x37\xe8\x6e\x01\x51\xab\xbf\xf3\x4c\x59\x84\x83\x85\x94\xab\xd7\x51\xc4\x01\x04\xe9\x08\x37\x0a\xf8\xda\x0a\x94\xc8\x07\xc7\x37\x27\xf6\x36\x96\xe3\x99\x9e\x45\xe2\xd8\x4d\xac\x9b\xef\x8d\x5f\xde\xa1\xca\xfa\xe0\x9f\xca\x11\x38\x3e\x06\x47\xf8\x48\xc9\xf3\x98\xcd\xcf\x75\x02\x85\x72\x2e\x2d\xc5\x1a\x10\x28\x6a\x54\x28\xa7\x77\x9a\x83\x8b\x8c\x04\xe5\x66\x85\x9d\xb7\x1a\x58\xc9\x15\xd5\xce\x1c\x73\x73\x69\x86\xf9\xed\x7b\xc0\xd0\x56\xdf\xb2\x67\x7b\x51\x43\xa2\x5c\x0c\x49\x0e\x97\x4c\x45\x76\x27\x06\x70\x6f\xb4\xcd\x4d\xa2\x8c\x38\x59\xd0\x5b\xba\x3a\x19\x12\x7c\xbc\xf8\xe7\x79\xc0\xd1\x14\x7b\x57\xc9\xe9\x03\x25\x02\x80\x1f\xa0\xb5\x5c\x30\x7d\x20\xfb\x23\xfe\x6d\x8d\x85\xf4\xa8\xbe\x5d\x59\x64\xd1\x6b\xd2\x1f\x57\x5c\x43\x9f\x1e\x00\xcf\xe5\x04\xb7\xd7\xb3\x97\xb1\xb2\xa1\xf7\xae\x34\xd0\x59\xc9\x47\xfa\xce\x5f\x35\x49\x67\x88\xc4\x4c\xe1\xcb\x12\xa0\x64\xb1\xb4\x81\x92\xd9\x75\x28\xbe\x0f\xe5\x56\x8f\xc1\x02\xa3\x68\xa4\x17\x83\xce\x57\xa4\xba\x37\x15\x3f\xf6\x15\xa9\xf9\x1b\x43\x9f\x39\xba\x8b\x61\x90\x60\xce\x24\xfb\x07\x46\x91\x8b\x4c\x72\x51\x6a\xa7\xf0\x2d\x57\x52\x95\xe4\x42\x20\xa6\x9c\xc5\xf1\x25\x5b\x79\x43\x7f\x6b\x2b\x7e\xde\xe1\x76\x51\x7f\xab\x48\x8a\x48\xbc\x6f\xb4\xbc\x44\x24\x7e\x0c\x5a\xda\x79\x59\x25\x69\x33\x9a\xe2\xab\xe1\xd8\x3e\x26\x42\x7c\x57\x1a\x1b\x56\x7e\x7a\x54\x2e\x12\xd7\xde\xc6\x20\xf5\xcd\x57\x95\x4b\xdc\x17\xa6\xeb\x36\xbd\xd2\xf7\x79\x69\xe4\x81\x0d\x9e\x35\x0b\x3a\xa1\x73\x2f\x1d\x86\x2a\x3c\x66\x33\x8b\x88\x2d\xf5\xa2\xeb\x60\xb5\x5e\xb6\xe4\x74\x47\x43\xe7\x6c\xe4\x1f\xd5\x9a\x5b\xb2\x8e\xab\xe0\x9c\x1b\x0a\xcc\xd2\x84\x73\x71\x3a\x25\xe9\xb7\x85\xae\x42\xd3\xd4\xb5\x80\x88\x94\x48\xb9\xa5\xa5\xd0\x83\x51\x73\x73\x45\xd1\x5c\x7d\x6a\xc9\x51\x0a\x0e\x87\x5d\xac\x76\x79\xcb\x06\x42\xe2\xd5\xc0\x04\xa9\x7d\xbb\xc0\xbb\x62\x47\xc6\x90\x44\x31\xbe\xc4\x9f\xa4\x8e\x02\xd0\x57\x69\xa5\x4f\x8c\xce\x08\x5f\x16\x1e\xb5\xa2\x92\x9c\xe9\x02\x00\xea\x0b\x7d\xd5\x87\x62\xfc\xdc\x1b\x5d\x59\xfe\xad\x8e\xce\x1c\x01\xd5\x26\x80\x44\xbc\x8f\xe2\xa2\x89\x9d\xa4\xa2\xd2\x25\x95\x15\xa5\x8a\xfa\x90\x08\x7b\x3b\xdf\x1b\xa7\x17\x2d\xa0\x2b\xce\x96\x2b\x09\xfc\x1c\xaf\x5e\x32\xdd\x68\xe5\xb0\xe6\xdb\xdc\x42\x53\xc1\x3b\xc6\x73\x8d\x36\x82\x26\x6d\xd6\xf3\x04\x95\x6a\xf6\x2b\xcb\xd5\xb9\x6a\xec\xd8\xf5\x07\x3e\x81\xe4\x59\x49\x27\x3b\x1d\x4d\xd5\x71\x32\xe6\x28\x67\x39\x5e\xa7\xd3\x81\xd2\x9c\xca\xa9\xab\x0a\x6a\x4f\x97\x56\x94\x5d\xc5\x88\x68\x8f\x69\x4b\x7a\xaa\xba\x76\x1a\x72\x55\xd5\x75\x31\xb5\xe5\xab\x0f\xb5\x06\x99\x37\xa0\xb2\xcb\xb9\xf0\xc4\xea\x1a\x77\x43\xe5\x81\x68\x88\x05\xe3\x52\x53\xce\x22\xe0\xf0\x64\x50\xed\xa3\xd6\x80\xc0\x6f\x3c\xb3\xdb\xc6\xe3\xc7\xc4\xe4\x0f\xf9\x56\x89\x11\x8a\xec\xed\x64\x46\xc8\xdf\x53\x6e\x8a\xe5\xfd\x07\x19\x7a\x5e\x1d\xb9\x7c\xa8\x27\xa8\xb5\xcd\xee\x72\x79\x14\x74\xac\x10\x28\x66\x52\x00\x11\x16\x53\xb0\xcd\xa7\x5c\x30\x47\xac\x8b\x45\x0f\x4f\x1a\xb2\xc3\x25\x3e\xd4\x2a\x34\x02\x07\x0c\x74\xc8\x9d\x60\x59\x44\x49\xb6\x2c\x7b\xc2\x85\x7e\xfc\x8c\xcc\x09\xad\xbc\x61\x4c\xd7\x2f\xb8\x40\x96\x84\xdb\x23\x8d\x79\x93\x8c\x6c\x1b\x0f\x13\xe3\x9a\xcd\xe5\xe6\x1d\xa5\xf6\xd1\x4d\x4e\xf6\x5d\xd5\x4c\xfc\xbc\x78\xad\x46\x29\x30\x23\x51\x04\xcd\xe1\x5c\x25\x17\x1a\xa2\xdf\x3a\x0d\x7e\x59\x3a\x7c\x79\x16\x50\xed\x3e\x7c\xf0\x03\xeb\x40\x69\x9f\x97\xf9\x76\x0a\x33\x92\x62\x79\xcb\xf8\x75\xe3\x74\xe4\xd8\x84\xad\x8a\xc0\x96\x16\xc1\x8c\x70\x21\x0d\x51\x80\x0f\x35\xc5\x4a\xfc\x67\x0b\x2b\x70\xa5\xb8\x46\xe7\xaa\x94\x61\xba\xe4\x53\xb4\xa1\x68\x49\xa6\xd9\x97\xa6\x40\xff\xca\xfa\x92\x03\xad\x35\xf1\xb4\xfa\xae\x08\x1c\xe8\x13\x1a\xba\x9b\x23\x1c\xfc\x53\x5f\x3b\x48\xc4\x99\x69\x7c\x74\x78\xb2\xdd\xa6\xcc\x5b\xd1\x9e\xdb\xc9\xc7\x68\x6e\xb8\xdd\xfa\xd9\x71\x4b\x33\x2b\x3e\x97\x7d\x63\x36\xff\xb2\x39\xa8\x9e\x24\xf7\x76\xa0\xd9\x6a\x15\x93\x2e\x4a\x2e\x8b\xb0\x18\xcc\x18\x1f\x98\xbc\x70\x5f\x43\xbf\xd5\xc6\xcd\xbc\x31\x77\x87\x3d\x47\xa9\x7e\x5e\xc8\xf2\xb1\x49\x9b\xc3\xae\x49\x6c\x9b\x22\x7e\x20\xd9\x85\xbe\xc3\x57\x27\x5a\xd0\x2f\xdf\x28\x94\x3b\x57\x99\x3f\x72\x5b\xaa\x5f\xd5\x4a\xc4\x8b\xe1\xf3\xea\x0a\x75\x5b\xad\xc1\xf1\x59\x51\xe0\x67\x47\xc0\xc1\x8b\xe1\x73\x90\xd4\xff\xe2\x8b\xd4\xff\xc2\xd6\xff\x72\x38\xfc\x02\xf5\xbf\x1c\x0e\xed\x4d\x89\x9c\xdd\x9a\xac\x48\xa6\x91\xec\x5a\xd4\x32\xd5\x2b\x13\xb1\x18\x8e\x09\x88\x38\xc3\x37\xc0\x3f\xcd\xdc\x45\x14\x7f\x92\x5e\xce\x48\x74\x1c\xc5\x76\x88\xb6\xbe\x6d\x56\x62\x21\x09\x9d\xdf\xdf\xd7\xc3\x4f\x19\x15\x2c\xc6\xc1\x2d\xe2\xd4\x03\x3f\x7f\xf8\xf8\xf6\xcd\x4f\xff\x7c\xfb\xf1\xf5\x77\x3f\xbc\xed\xbd\xfd\xf8\xf1\xa7\x8f\xa3\x74\xaf\x35\x63\x80\x2e\x32\xcc\xb8\xd6\xbf\xb2\xa8\x22\xe2\x1d\xe3\x13\x7d\x85\x78\xc3\xf9\xc5\x52\x27\xed\xdf\x8e\x26\x43\xc5\x27\x1d\xa4\x51\x61\x4f\x40\xfa\x85\x2d\x0a\xe7\x36\xec\x9c\x51\xe0\xa6\x1b\xb5\x87\x9b\x9c\x08\x17\x1b\xa5\x02\xe0\x0e\xb6\x83\x5b\xe3\x49\x96\xa8\xf4\x3f\x0a\x75\xe4\x32\x38\x16\x6d\x8b\xa1\xed\x84\x2a\xde\x21\x17\x02\x48\x0c\x48\x68\xd6\xce\x4e\x39\xd9\x8a\x6a\xa4\x63\x8c\xe8\xb6\x3b\x18\x17\xd6\x18\xc9\xa2\xa1\x1a\x2d\x12\x5d\xab\x03\xf6\xf6\xa6\xf2\x9e\x02\xd3\x2f\x1d\xa5\x90\x64\xbb\x94\xad\xf7\x26\xb8\x40\x4e\xe2\x06\x59\xbe\x2b\xc1\x5e\x65\xc0\x89\x7a\x55\xd3\x78\x64\xbe\x36\xdf\xb5\x52\x6a\xdd\x42\x81\xb2\x22\x93\xb9\xbe\xe6\x4c\xba\xc1\x63\x25\x6f\xad\x1b\xcb\xf1\x91\xad\x25\xae\x35\x74\x1a\xd3\x68\x97\x27\xee\x2e\xa6\xfe\x13\x9d\xb7\x16\x95\x2e\x1a\x56\x22\x53\x7d\x48\x2b\x96\xf4\xfc\x0c\xa0\x66\x75\x32\x71\x47\xcd\x45\x4d\x91\xa2\x5f\xe1\x8f\x21\x42\x48\x2a\x3d\xa0\xbe\x30\x7f\x6a\xee\xc4\xee\x24\x4a\x12\x12\x3e\x4c\x7c\x7c\x68\x18\xa2\x82\xe0\x70\x97\xad\x9a\x7c\xc9\x45\x26\x09\x1c\x18\x50\x98\x89\x1f\x2a\x77\x4c\x2a\xe6\xa0\xad\x35\x48\x96\xbf\x6e\x73\x2f\xbd\x10\xae\x2a\xd4\x27\xbb\x2d\xae\x1a\xe4\x8b\xa6\xc8\xd3\x5d\x78\x97\xb4\x55\xa3\x6f\xb7\x23\xa8\x1d\xc8\x9d\x52\x63\x39\xa9\x8c\x0a\x8a\x1e\x86\xf8\x08\xe8\xf8\x8f\x82\xaa\x67\x2e\xac\x77\x73\x5b\xd8\x82\xfe\xfd\x7d\xf6\xca\x87\x22\x2b\x20\xcb\x05\xa4\x7f\x20\xc2\x30\x44\xf7\xf7\x87\x9e\xc9\x3c\x7f\x18\x8a\x7e\x3f\x75\xcb\x1e\x86\xa1\xb8\xbf\x4f\xbe\xa0\xfc\x17\xe4\xdf\xdf\x7b\xe9\xee\x82\x84\xc8\x0d\x25\x2d\x2a\x88\xd4\x86\x15\x70\x3c\xe3\x58\x2c\x34\xe7\x28\xe1\xaf\xe8\xf8\x25\x54\xb8\xe6\x9b\x34\x72\x12\x2a\xe7\xb3\xce\xee\x85\x00\x5b\x98\xd7\x03\x61\xbe\x60\x1a\x8a\x2e\x36\x74\x9a\xbe\xbf\x30\x6d\x8c\x4c\x16\xc4\xf4\x35\x80\xc9\x95\x63\x26\xd2\x2e\xfb\xe0\xe7\xe1\x75\xa7\x46\xd9\x0d\x65\xc5\xe2\x30\x5f\xad\x33\x65\x5d\xca\x96\x63\xe1\x0f\x87\x5d\xe6\xa4\x62\xd9\x3f\xc2\x62\xd8\x7a\x8f\x4a\xa7\x75\x52\x4f\xe0\x2e\x62\x35\x5f\x61\x41\xa6\x7e\x9b\xd5\xf0\x64\xf8\x75\x96\x43\xb5\x02\xce\xd6\xbf\xff\xbe\xb9\xd8\xa9\x82\x2a\xd8\xb7\x54\x71\x4d\xa4\x7a\x33\x23\xb1\xc4\x1c\x47\xdf\xb3\xda\xad\x3c\xc7\x17\x6d\x14\x51\x9b\x25\xb6\x76\xa2\xc1\x8a\xeb\x02\x6d\x26\x8c\xc6\x54\x0d\x75\x40\xf9\xb4\x43\xd5\x8d\x5a\x79\x9b\xca\x8a\x72\xd8\x9c\xf5\x48\x6b\xf4\xd0\x54\x7a\x3a\x39\x85\xc4\xdc\x2b\x07\x8f\x1d\xe2\xfb\x7b\x5a\xbc\xbc\x46\x35\x60\x02\xa7\x4b\x80\x38\x03\x4c\x32\x4c\xe8\x54\xbc\x8a\xc5\x75\xb8\x73\x9a\xd3\xa2\x51\x7d\x71\xc7\xe2\xc1\x5a\x4c\xc5\x40\xd6\x2a\x31\x17\x0b\x76\x4b\xe8\x3c\xbb\x4f\xed\x0c\x4b\x44\x62\xa1\x44\x70\x4e\x41\xc9\x25\x84\x6e\xd0\x4f\x9c\x2c\xbe\x96\x10\xc9\x5e\xac\xbf\x85\x56\x6c\x56\xec\x98\x57\x2c\x57\x5d\x45\xa8\x6e\x6c\x3f\xb7\xc8\xab\x13\x35\x7f\xc6\x46\x79\xd7\x4d\xf2\x87\x6e\x90\xb7\x5f\xe4\xd4\x7d\xd0\x8e\x75\x29\xd2\xe0\xfd\x4d\xe3\xc9\xe5\x62\x90\xb6\x3c\xe0\x58\x60\xa9\x8f\x8d\x7c\xdd\x8d\xe0\x5f\xd9\xa4\xeb\x42\x66\x77\xf4\x7f\x65\x93\x46\x23\xce\x94\x6a\xf7\xb2\xe7\x5a\x2e\x3b\xd9\xab\x72\x34\x54\x92\x3b\xbb\x33\xf1\xbf\x25\xbd\xf5\x21\xb0\xba\x5b\x29\xf3\x23\x93\xbb\xfc\xf2\xf3\x47\xa8\xe3\x84\xe8\xa0\x0c\x3e\x91\xb1\x69\xd5\xf9\x76\x1c\xb9\x56\xbd\xed\xa1\x3a\xda\x63\x85\x4f\x34\x0c\x70\x07\xb6\xcb\xad\xa4\x15\x57\x63\x74\x58\x4f\x73\x01\x44\xd8\xcd\xe0\x8f\xfd\x8a\x4b\x04\xbb\xad\xd0\x05\x0f\x74\x97\xab\xfb\xb6\x4d\x17\x2c\x54\xf0\x74\xcc\x90\xc9\xa7\xf3\x35\xf7\x14\x76\x67\xc0\xaf\x35\xc5\xdd\x51\xfc\x7c\xa3\x6f\x07\xf9\xf0\x10\xb5\xe8\x11\x0f\x64\x75\xb1\x24\xd1\xe7\xc8\xfe\x3f\xa2\xe5\x57\xb1\x97\x82\x6a\x37\x38\x2a\xb6\x51\x5a\xf7\x44\x2b\x36\x5e\xba\xde\xa3\xf3\x4d\x76\x6b\x5a\xee\x43\x69\x8f\xa4\xd2\x0a\x77\x95\xb6\x9d\xbf\x59\xe8\x71\x82\xa8\x3a\xc5\x7e\xd2\x34\xb8\x53\x3c\x6a\x9c\xea\xf8\xdb\x6e\xf6\xa4\x02\x2f\xcd\x61\xbe\x0f\x6a\xcd\x97\x50\x39\x6b\xf2\xc8\xe7\xf5\xcd\x2c\xd3\xfb\x97\x5e\x89\xec\xa1\xec\x27\x19\x6a\xfb\x8d\x76\xc8\x1e\x7d\x37\x8c\x88\x1f\x30\xd2\xc7\x81\xca\x2b\x40\xc1\xcd\xdd\x2e\x67\x13\x34\xac\xc8\x6c\x42\x7c\xb7\x68\x5b\xcb\x09\xdf\x22\xb8\xd2\x36\xdd\x65\xae\x25\xfc\xda\xc5\x35\x5c\xaa\x36\xef\x1d\xee\x4e\x92\x24\x63\xc1\x57\x8d\x39\xd6\xde\xcc\x4b\x34\x19\x01\x89\xe6\x02\xa4\x97\xd3\xcd\xeb\x56\x7a\x53\xac\xc1\x9d\xea\x14\xf3\xef\xef\xef\xb6\x89\x47\xd4\x76\xff\x1a\x6f\x84\x87\x0b\xe1\x92\x32\x1f\x2e\x29\xa1\xc1\x02\x5f\xc9\xf1\x76\xdb\x14\x4f\x20\xb0\x54\x9d\xaf\xce\x89\x92\x22\xd7\x75\xfd\xb0\xf2\x5f\x1c\xeb\xc3\xba\x5f\x3b\x7a\xb2\x29\x47\x40\x63\xee\x20\x81\xa7\x1c\x97\xa6\xb2\x4d\x47\xa3\xab\x0d\x4c\x11\xe0\x43\xfd\xf8\x5e\xfc\x13\xc5\x24\x52\xa2\xc0\x3e\xbf\xa7\x37\xb9\x37\x26\x41\x90\x89\x35\xd4\xeb\xe2\x85\xee\x40\xe5\xc9\xb7\x24\xb1\xd0\x9a\x2a\xb3\xeb\x75\x1c\xe7\x0e\xe6\xe9\x1b\xb8\x2e\x55\x9d\x59\xa6\xe8\xea\x7a\x92\x13\xd2\x22\x97\x54\xfa\xce\x62\x67\xb6\x28\xb7\xd9\xd9\x3d\xb7\xcc\xee\x58\x25\x15\x65\xc8\xa9\x5e\xdf\x60\x4e\x66\x1b\xdd\xdb\xea\xcc\x00\xce\x8e\x40\x2e\xf1\xb5\x21\x2f\x04\x68\x3a\xc5\x42\xe8\xf0\x4a\xf3\x0e\x52\x3b\xe2\x73\x2c\x7f\xba\xa5\x98\xeb\xfd\x54\x3f\x88\x19\xbb\x5e\xaf\x3c\x80\x22\xb4\x92\x98\x8f\x2c\xf2\x07\x19\xf7\xe6\x06\x0e\x4a\x1f\x52\x9d\xba\xe9\x02\xc7\x33\xaf\x78\x3c\x5c\xa6\x5b\xc6\x36\x3f\x6c\xa4\x4f\x7c\xba\xc8\xd9\x9b\x3d\x70\x7d\x32\x28\xd3\x05\x48\xf5\x59\xd1\x26\xfa\x0e\x5b\xe8\x8b\xb6\xfe\xd6\x95\x10\xb8\x0a\x21\x33\x9e\x6a\x66\xec\x38\x96\xc3\x8a\xb1\xac\x77\x0f\x24\xf9\x59\x10\x8d\xaa\xa2\x10\x24\x5f\xcb\xc5\x20\x29\xe4\x16\x7e\x8a\x19\xce\xea\xeb\xd4\xe8\x75\xac\x0f\xd1\xa8\x8d\x58\xfa\x72\x99\xea\x04\x2d\xcb\x15\x13\x36\xed\x6e\x81\x68\x06\x68\xcf\xe8\x66\x31\xed\x4a\x3a\x5d\xbc\x8d\x7a\x9c\xa3\xcd\xae\xc4\xd3\x30\x7b\x46\x3b\x83\x67\x57\xd2\xa9\xd2\x2d\x94\x9b\xa2\x25\x8e\x75\x66\xfd\x0a\xe2\xc5\x64\x20\x74\xbc\x7a\x89\x78\x29\xd8\x7e\xd1\x2f\xc3\xb6\x63\xa5\x09\x40\x2b\x15\xe9\x14\xc7\x03\x14\xc7\x2d\x29\x96\x8e\x13\x4a\x36\xdd\x3d\x85\x93\xa5\x05\x5f\x0d\xd3\x7b\xe5\x68\xbf\x0f\x92\x32\x20\x0c\xe5\x66\x85\xd9\xac\x47\x03\xd3\xf4\xeb\x38\x4e\x22\xc9\x91\x10\x98\x4b\x0f\x5c\x2e\x70\x4f\x1f\x10\xea\x21\x3e\x5f\x2f\x31\x95\xbd\x95\xfa\x16\xf5\x24\xeb\xc9\x05\xee\xfd\xdf\xac\xd7\xff\xb7\x67\xba\xd5\x33\x19\xd4\x7b\x13\xdc\x43\xbd\x4b\x24\xae\x7b\x8c\xf7\x52\x3f\x76\xcf\x53\xe6\x3b\x5b\xcb\xde\x6f\x6b\x26\xb1\xf0\x5f\xf5\x36\x6c\x9d\xd4\x0a\x8e\x28\x3c\x3c\xb1\x1b\x8d\x12\x89\xeb\x7f\xe8\x2a\xdf\xc4\x4c\xac\x39\xf6\x3d\xe0\x12\x09\xa4\xdd\x06\xf0\x8a\x42\x34\x7e\x50\xc0\x92\xa9\xc4\xb4\x13\x52\xbb\xdc\x02\x85\xdb\xff\xcc\x1a\xfb\x9f\x3d\x89\x97\xab\x18\x49\x9c\x20\x79\x8b\x44\x8f\xd0\x1b\x76\x8d\x23\x50\xba\x65\xcb\xd4\x16\x98\xa2\x1e\x6d\x19\xf6\x15\x91\xe8\x41\xd3\x27\x05\xdc\xb7\x09\x94\x61\xdc\x79\x0a\x25\x20\x6d\x93\x68\xb1\xa6\xd7\x3b\x0a\x71\x03\xb3\x67\x34\x34\x78\x76\x25\x9f\x2a\xdd\x46\xb9\x18\x09\x41\x66\xd5\x2b\x60\x03\x17\x26\x60\x7b\x46\xbf\x14\xdb\xae\x24\xb4\x00\x6d\x54\x34\xd1\x42\xbb\x72\xa0\x85\xda\x33\x1a\x26\xb8\x76\x25\xa1\x29\xdf\x81\x82\x6b\x59\x2d\x0c\x9b\x29\xa8\xa0\xf6\x8f\x82\x1a\xd7\x1d\x28\xb8\x96\xad\x32\x90\x51\x89\x48\x75\xe6\xf9\x46\x12\x5a\xb0\x7d\xa3\x61\x82\x6d\x67\x22\x1a\x80\x36\x2a\x0a\x31\xd0\x93\x7e\xb7\x4b\x94\xf5\x2d\xc8\x27\xfe\xd5\x70\x1c\x70\xac\xd3\xd6\x7b\xc7\xff\xe7\xf8\x78\x0e\xc1\x00\xf8\x41\x84\xc4\x02\x73\xf2\x3b\xf6\x1e\xa6\xab\x08\xf1\x46\x75\x29\x94\x07\x46\xb9\x2b\xe3\x97\x1f\x3a\x32\xf3\xf4\xed\x5a\x01\x11\xe6\x96\x2d\xec\xfb\x49\x2a\xa7\x03\x32\xf3\x2e\x36\xcb\x09\x8b\x03\x22\x4d\x86\xac\x1e\x49\xfc\x7d\x4e\xc1\x7c\x8d\xa6\xdd\xab\x31\x44\xe1\xe1\x10\x8a\xf0\xf0\x04\xf2\xd0\x38\x05\x0e\x24\xdf\xe8\x5c\x5a\xaa\x0c\x83\x71\x88\xaf\x0a\xf5\x8f\x3d\xff\xd5\xa1\x87\x42\x8f\x85\xb1\x09\x44\xf7\xfd\x20\x62\x14\xfb\xfd\xbe\x47\x83\xd5\x5a\x2c\x3c\x96\x64\x3f\x3e\x94\xf7\xf7\xd4\xc6\x74\x1e\x86\xa1\xf4\x5f\xa9\x26\xfd\x57\x5b\x73\x5d\x3d\xf6\xef\x84\xea\x02\x0f\xf1\x76\x46\x28\x8a\xe3\xcd\x9d\xea\xc0\x21\xea\xf7\xe3\xc0\xf4\x3d\xfb\xe5\xf9\x69\x21\x32\xf3\x84\x6f\x8e\x55\xf2\xed\x36\x19\xb5\xad\x46\xef\xc0\xbc\xa7\xf8\xb6\x77\xb9\x59\x61\x7d\xc4\xd3\x03\xd6\x87\xd1\x43\x52\x69\x81\x52\xe9\xbe\x11\x16\x92\xaf\xa7\x72\xcd\x71\x8f\x32\x3a\xd0\x18\x4e\x62\xdc\x23\x54\x48\xa4\xf3\x31\x6f\xb7\x9e\xdf\xa2\x19\xca\x46\x0e\x4c\x99\x65\xc7\x25\x39\x83\xdb\xaf\x99\xec\xe0\xdb\xb5\xd6\x04\xa2\x65\x2e\x47\x78\xba\xa3\x30\x54\x10\x7b\x46\x3d\x85\x63\xe7\xfa\xa6\x6d\x14\xd3\x57\x69\xed\x46\x32\x05\xb2\x67\x34\xd3\x58\x76\xad\x90\xb3\x55\x0b\xd5\xca\x37\x32\x0c\x88\xe8\x78\xc7\x47\x97\x3a\xf6\x8b\xba\x1a\x93\x73\x85\xc8\x85\xc6\xe3\xbd\xf8\xbb\xa1\x44\xc7\x36\x6a\xe0\x1f\x34\x06\xe6\x17\xae\x74\x8e\xee\x30\x0c\x69\x35\xfb\x3e\x12\x17\x29\x3d\x1e\x3c\x18\x49\x15\xbb\x8f\x87\xe4\x6b\x9c\x2c\x5e\x64\x36\x58\x71\x2c\x4a\xa7\xf3\x77\x1b\x9a\x9a\x1a\xf7\x7b\x94\x2e\xf9\x1a\x9b\x54\x1f\xef\x67\xe7\x09\x8d\x1e\x38\x5c\x15\x75\xb5\x8d\xdb\x6f\xdd\x37\x5e\x74\xea\xc4\x7d\xa3\xb6\xee\x73\x67\x7a\xaa\xd2\x2d\x14\x33\xe7\x71\x0a\x77\x77\x76\x58\x38\x33\xb8\xfd\xa2\xa0\xe9\xf7\x77\xdd\x7d\x28\x09\x40\x27\x3a\x3e\x88\x88\x7b\x49\xc1\x1d\xe9\xb7\xad\x3e\xc6\x91\x11\x82\x46\x0f\xe1\x41\x03\xb5\x6f\xf4\xa3\xd1\x4e\xfc\xa7\x8a\xb7\x71\x5f\xac\xcc\x3c\xba\x2b\xfd\x2c\xd4\x9e\xd1\x2f\xc1\xb5\x2b\x01\x4d\xf9\x36\x0a\x32\xbe\x44\x72\x30\xd9\x48\xdc\xd9\x79\x62\x12\x77\xa7\xbe\x93\x03\x79\x7f\xef\xc9\x70\xe8\x1f\x24\xfe\x04\x11\x0e\x5f\xc9\xbf\x85\x27\xc3\x67\x2f\xfa\x7d\xf1\x57\x64\x1d\x03\x83\x93\x57\xbe\x3c\xd6\xaf\xa1\x38\x3a\x3a\x70\xef\x58\x9f\xc5\x8c\x29\x1b\xfb\x08\xf4\xc0\x11\xba\x12\xe3\x87\xb8\x5c\x0c\x32\xdf\x29\x5c\xfe\xf4\xba\xec\x89\xd7\x05\xa2\xf0\x0a\x7c\x67\xd8\x0f\xfc\x27\xf9\x0e\x40\xf0\x23\xf9\x0e\x8c\x3f\xcb\x1b\x63\xb9\x3a\x5a\xf3\xf6\x1c\x74\xc5\xb2\x9f\x2b\x15\xfe\xe4\xbb\xbd\xe0\xbb\x16\xfe\x72\x48\x8b\x0c\x69\x45\x26\xf1\x20\x0f\x51\xb0\xa6\x44\x26\x37\x17\xe4\xd3\xf4\x09\xc8\x6b\x42\x52\x0b\xfc\xb9\xc2\x7c\x8a\xa9\x2c\xdc\x9d\xd9\x2e\x7a\x93\xfd\xfd\xe4\x14\xfd\xdf\x4e\xfa\xfd\x24\xbd\x48\xf6\xf1\xea\x64\x7c\xea\x3e\x8c\xee\xb6\x10\x29\x24\xae\x86\x63\x9d\xd2\x44\x6f\x51\x98\xcb\x82\x52\x4e\x81\x2c\x94\x81\x64\x12\xc5\x89\x78\x66\x61\x5a\x35\x3b\xa5\x1e\xf3\x47\xe9\xb3\x38\x45\x47\xd4\x13\xfe\x08\xc1\xe1\x5f\x3d\x1e\xb2\x53\x74\xcc\x46\x43\xbf\xdf\xe7\x7f\x0d\x86\x27\xa7\xe0\xaf\xbd\x93\x7f\x05\x23\x2d\xe0\x39\x5b\xd3\xc8\x3b\x19\x0e\xff\x8d\xfb\x47\xe0\x5f\xc1\x36\x1f\xff\x60\x1b\x23\xe2\x03\xfa\xe0\x61\xff\x74\x38\x3a\xc2\x0f\x5f\x02\xce\x53\xc2\x86\xb2\x14\x17\xba\x8b\x20\x31\xb7\x7c\xed\xac\xa1\xa5\x60\xfb\xa5\x62\xe8\x6e\xef\xa0\xa3\xd9\xf2\x2d\x2a\xc6\xbc\xd2\x5b\x50\x6d\x9c\xce\xf7\xcd\x0f\x30\xef\x5e\xdd\xbc\xcd\x8a\x9f\x57\xef\xa4\xd6\x51\x6a\xdf\xb6\x0c\xe6\x3b\x6c\x9e\xce\x5b\x37\x4e\x17\x48\x0c\xd4\x3a\xb5\xe3\xcc\x4c\xc1\xf6\x8b\x76\x0b\x24\x3e\x68\x64\x3b\xd6\x69\xcb\x77\xa0\xe1\x8a\xe3\x1b\xc2\xd6\xbb\x6e\x40\xe7\x40\xf7\x8e\x96\xe7\x29\xd2\xdd\xe9\x99\xc0\xb4\xd1\x54\x2e\xe3\x81\x40\xb3\x5d\x37\x02\x33\xb8\x3d\xa3\xa6\x5c\xc6\x17\x1a\xdd\xae\xa4\xb4\x00\x6d\x74\x5c\x2f\x11\xdd\x7d\x3f\x35\x05\xdb\x33\x2a\xa6\xd8\x76\xa5\xa2\x05\x68\xa1\x22\xa1\xbb\x6e\xa6\x2a\x88\xfd\xa2\x9d\xc6\xb1\x63\x7d\x84\xb6\x6d\xa6\x12\x1a\x13\x8a\x07\xe2\xa6\xf2\xf2\xd4\xec\x6b\x25\x40\x56\x9d\xb8\x99\x97\x0f\xdd\x3f\xd0\x98\x44\x7f\x1a\x93\x4f\xdc\x98\x84\x22\xa1\x8d\xc8\x19\x19\xfd\x7e\x85\xc9\x71\xda\x62\x6f\x0a\x43\x7d\x1e\xa2\xd4\xc3\xe6\x58\x99\x86\xdd\x2e\x6e\xe6\xbe\x97\x25\x58\xe0\x50\x64\x89\xc6\xcd\x25\xae\x13\xc4\x45\xb0\x44\xd7\xf8\x3b\x65\x78\xfd\xa3\xca\xaa\x6d\xab\x15\x43\xa4\x16\xbe\xc5\xfd\xfd\x9d\xbd\xbb\x2e\x31\xa4\x44\xf3\x0c\x92\x98\x0b\xbc\x73\x60\x65\x06\xb7\x6f\xf2\x27\xc5\xb7\xb3\x14\xb2\x10\xad\xb2\xe8\x86\x5d\xef\x1a\x5d\x69\x81\xf6\x8d\x86\x06\xd3\xce\x04\x54\xc5\xdb\xa8\x27\x06\xfa\x06\xc7\x2a\xfa\x2d\xd9\x12\x53\x59\x2e\xfa\x14\xa9\xd6\x86\x63\xdd\x51\xa8\x6a\xbb\x31\x85\x78\x8a\xa8\x36\x30\x88\x59\xd8\xba\x73\x88\x29\xdf\x4e\xbe\x09\x9e\x31\x5e\x39\xc7\xca\x3c\x62\xcb\x3e\x45\xca\xb5\x62\x29\x6f\x71\xf5\x46\x59\x15\x9a\xa6\xf0\x1e\xe2\x69\x03\x05\x76\x98\x0c\xfb\x18\x0e\x41\xc4\xdb\x9d\x02\x22\x6c\xf9\x76\xf2\x31\xdd\xe2\x8e\xce\xe8\x82\x96\x72\x98\xd7\x44\xa5\xdf\xef\xd3\x75\x1c\x2b\xd5\xae\xdf\x07\xb6\x85\x30\x0c\x6d\xaa\xec\x30\x0c\xe5\x29\x58\x53\xd3\xad\x08\x8c\xa8\x27\xfd\x07\x05\x5c\x13\x61\x80\xd2\xad\xbf\x8a\xe3\x73\x46\x51\xed\xf7\x81\xd0\x3f\x8a\x1f\x52\x0d\xf6\xd4\xc5\x3a\xa1\xa3\x29\x89\xb7\xa3\x8a\x8f\xb8\xf2\xb4\x5e\xd2\x1c\x0e\xa6\x8c\x1a\x4d\x92\xf1\x30\x0c\xd3\xf7\x87\xc9\xef\x60\xc5\x99\x64\x0a\xec\x34\xe9\xdb\x28\x6d\x10\xfe\x69\x01\x3c\x75\x0b\xe0\xb3\xb6\x2b\x89\x18\x08\xb4\xc4\x03\xc6\x77\xd1\x58\xf2\x20\x4f\x51\x82\x75\xc4\x79\x97\x25\xb8\x00\xb3\xa7\x58\x77\xc7\x75\xef\x30\xfc\x95\x91\x5d\xe3\x71\x34\xc8\x53\xc4\xb3\xbe\x4e\x83\x65\xc7\x0a\x55\xe1\x16\xaa\xc5\xe8\xf7\xcd\x60\x1a\xeb\x9b\xe9\x77\x0d\xc2\x79\xe6\x43\x14\xca\xab\xe1\x18\x8a\x50\x5e\x9d\x8c\x0f\x8c\x00\xfa\x17\x4f\x04\x12\xf1\x39\x96\x7e\x40\x84\x07\x10\xf0\xef\xef\x91\x27\x1e\xb4\xb6\xaa\xfe\xbd\x51\xdd\xfb\x33\xae\xe6\xbf\xc3\x82\x14\xb3\x5b\xcc\xa7\x48\xec\xea\x7d\xcf\xe0\xf6\x6b\x3a\x3b\xf8\x76\xac\x35\x85\x68\x9b\xd8\x3b\x6c\x7e\xc7\xfb\xe6\xf9\xda\xa1\xba\xd6\x75\x23\xde\x65\xf3\x3b\xde\xbb\xcd\xef\x78\x87\xcd\xef\xd8\x6e\x7e\xd7\xc7\x0d\x2f\xd1\x03\x82\x52\x2c\xd0\x7e\xd1\x6d\x89\x76\x09\x48\xd1\xa5\x5b\x18\x6d\x89\x76\x3d\x2c\xa7\x20\xf6\x8e\x6a\xbb\xd0\xac\x8d\x62\x5a\x33\x1d\xa0\xa8\xf2\x44\x56\x41\x6f\x75\x0a\x3f\x45\x9a\x75\xc0\x73\x8a\x62\x4c\x23\xd4\xc5\x0a\x2b\x42\xec\x29\xc6\x11\x99\xcd\xba\x63\xab\x4b\xef\x2b\xa6\x95\x11\xc1\x8d\xd8\x3e\x56\x5c\xf0\x37\xc2\xd8\x04\x44\x76\xc7\xd7\x96\xdf\x57\x6c\x39\x5b\x0e\x28\xbb\xdd\x01\xdf\x04\x62\x8f\x31\xde\x0d\xdb\x7d\xc5\x54\xac\x27\x92\xd7\xe4\xeb\xa9\xc6\x36\x85\xd8\x53\x8c\x25\x1b\x44\xa8\x5a\x2f\xae\x46\x38\x01\xd8\x5f\x7c\x77\x9a\xbb\xb6\xfc\xde\x62\xbb\x0b\xa6\xfb\x8a\xe5\x9a\x92\x4f\x1d\xf0\xd4\xc5\x9e\x22\x8a\xf5\x75\x1a\xcc\x3a\x56\xa8\x0a\x77\x22\x58\x67\x9e\x78\x92\xd4\x6a\xc2\xef\x01\xd1\xda\x7b\x18\xa9\x4d\x77\x09\xd3\xa6\xed\x31\xda\x94\xc9\xc1\x2e\xc7\xfb\x4d\xf9\xfd\xdb\xd3\xa6\x4c\xbe\xfd\xad\x3b\xe1\x54\xe9\x76\xca\xed\x44\xb6\xfd\x23\xd8\x2e\xe4\x6a\x25\x56\x97\x75\x77\x1f\x57\x5b\x13\x71\x30\xa8\xb6\x81\x1a\x64\x4f\x06\xf7\x14\x31\xae\xaf\xd3\xf4\xfb\x75\xf7\x4a\x13\x80\x36\x3a\xae\x14\x60\x75\x74\x4d\x13\x19\x13\xb0\x3d\xa3\x62\x8a\x6d\x57\x2a\x5a\x80\x36\x2a\x56\xba\x95\xaa\x65\x12\x7b\x9a\x0e\xa5\x06\xa2\x75\x4f\x8f\xc1\x78\x0b\xa1\x56\x98\xcf\x18\xaf\x34\x6d\x77\x4e\xaf\x0d\x69\x2e\xd8\xb9\x2a\x57\x75\xda\x5c\xf6\x4b\x81\x3d\x64\xaf\xd4\x56\x90\x64\xa9\x6e\x39\x7f\xda\x9c\x70\x7a\x45\x56\x78\x60\xee\xf9\xd8\x71\xde\xb9\x90\x4f\x91\x8b\xda\xb0\x7e\x00\xba\x4f\x12\xcf\xfa\x3a\x0d\x96\x1d\x2b\x54\x85\xdb\xa8\x16\xaf\x39\x2a\xe6\x26\xdf\x31\x84\x20\x39\xf4\x7d\x12\x86\x3a\x96\xe0\x14\x8d\x50\x90\x56\xfc\xb0\x44\xa8\x29\xf8\x9f\xb1\x03\xff\x1d\x62\x07\x1e\x78\xa0\x74\x4f\x0f\x93\xae\x76\x3d\x49\xba\xea\x76\x8c\xf4\xb7\x35\x5e\xef\x2a\x03\x0d\xcc\x7e\xd1\xcf\xe2\xd9\xb1\x46\x5d\xba\x85\x72\x1c\xd1\xf9\xae\x94\x33\x30\xfb\x45\x39\x8b\x67\xc7\x1a\x75\xe9\x36\xca\xe1\x68\x3d\xdd\x99\x74\x06\x68\xcf\x68\x67\x31\xed\x4a\x3c\x5d\xbc\x25\x26\x83\x63\x6d\x2f\xee\x1c\x96\x91\xc1\xed\x1b\x0d\xd5\x87\x1d\x82\x33\x12\x80\x56\x2e\x5c\xe1\x9d\x8d\x75\x0b\xb4\x6f\x14\x34\x98\x76\xa6\x9f\x2a\xde\x4a\xbd\x1b\xcc\x6b\xe2\xf6\x9a\xc8\x67\xa0\xf6\x8d\x7e\x16\xd7\xce\x04\xd4\xe5\x5b\x28\x28\x16\xeb\xd9\x2c\xde\x95\x82\x09\xd4\x7e\x51\x30\xc5\xb5\x63\x9d\xb6\x7c\x1b\x05\x09\x9d\xaf\x63\x54\x97\x0d\x9f\xd0\x59\x8c\xa7\x92\xf1\xe3\x98\x4c\x2a\x81\x1e\xf1\x72\xe2\x8c\x0e\x4d\x1d\x8e\xc9\xce\xeb\x9e\x81\xd9\xb3\xe1\x36\x78\x76\x1d\x6c\x55\xba\x6d\xa8\x19\x7f\xc0\x92\x97\x40\xed\x19\xf5\xf4\x0d\xb9\xdd\xc9\xa7\x8b\xb7\xd0\x4f\xa2\x9d\xcf\x77\x6b\x90\xfd\xa2\x9c\xc1\xb2\x63\x85\xaa\x70\x2b\xd5\x44\xc3\x39\x89\xcf\x90\x16\xcd\x99\x19\x12\x8f\x89\xfb\xc6\x76\xbb\xe8\xae\x38\xc5\x23\xf3\x6a\xc6\xd9\xd2\xc3\xfe\xd6\xc3\x3e\xa4\xe6\x94\x06\x0a\xed\xdc\xf2\x4e\xfc\xf4\xb2\xbf\xe0\x97\xe9\x9a\xf3\x4d\x80\x56\xab\x78\xe3\xd1\x1c\x42\x55\xee\x90\xd4\x63\x21\xc3\x21\xa4\xa1\x7d\x6f\xfd\x0e\xfe\x2b\xf9\xd7\xe4\xf7\x2b\x79\x74\xe4\xd3\x2b\x39\x0e\xf1\x95\xcc\x2e\x17\xdc\xe6\x3a\x9e\xf6\x12\xf9\x2d\x99\x0b\x25\x91\x31\xde\x3d\x2d\x4f\x0a\xb6\x67\x8c\x9b\x62\xdb\x95\x79\x2d\x40\x1b\x03\xb3\xf9\x3c\x7e\xa0\x63\x37\x0f\xfb\x14\xe9\xd9\x8e\xf9\x83\x50\x7e\x92\xb8\x36\xf0\x8e\xc5\xb4\x2b\xe7\xe8\xe2\x6d\xd4\xe3\x6b\x3a\xad\x89\x08\x6b\x9a\x7d\x09\xd8\x9e\x51\x30\xc5\xb6\x2b\x0d\x2d\x40\x0b\x15\xd7\x34\xc2\x5c\x4c\x6b\xce\x9c\x36\xd0\xd1\x01\xdc\x2f\x4a\xba\x18\x77\x0e\x58\x4a\x40\x5a\xa9\xb9\xbb\x0c\x33\x30\xfb\x46\x43\x8d\x67\xf7\x78\x2f\xd6\x76\xe8\xf3\xcf\xd0\xb8\xae\xa1\x71\xeb\xd5\xea\x41\xe7\x11\x33\xb8\x3d\xa3\x5f\x86\x6f\x57\x22\x26\x10\x2d\x94\xac\x8c\xf2\x69\xa0\xe0\xd3\x8c\xf7\xa9\xaf\xf3\xb6\x73\x6d\xb7\x6d\x94\x32\x57\x5f\xef\x28\xd9\x12\xa8\x3d\xa3\x5a\x82\x6b\x57\xda\x99\xf2\x2d\x14\xfc\x34\x20\xd3\xea\xa5\xe1\x73\xd3\x28\xa6\xfb\xd8\xc8\xcd\xcf\x8e\x4d\x6a\xf6\x2b\x64\x2e\x00\x86\xc0\x34\xaf\xff\x0c\x88\x18\x80\x23\x31\x4e\x2e\xb6\xf5\x7c\x7d\x2c\xdf\x03\x3d\xe0\xb7\xa6\xd7\x13\xf0\x4e\xd7\x38\xe2\xdb\x07\xed\x80\x7f\x7a\x3f\x65\x34\x44\x2d\x86\x26\x6a\x26\xe6\x2e\x91\x43\x9f\xf6\x2e\x74\xe8\xd3\x0e\xb1\x43\x9f\x6a\x83\x87\x08\x25\x92\xe8\x58\x03\x2e\x8e\xd1\x6a\x35\xc0\xf4\xa6\x53\x34\x84\x61\x21\x9c\x4b\x9e\x7f\x7f\x9f\x3d\x0d\xc7\x07\x38\x20\x54\xc7\x18\xe8\x5b\x6c\x39\x8b\x63\xcc\x81\xbe\xd2\x76\x46\x14\xcf\x0a\xcc\x6f\xc8\x14\x8f\xec\x0b\x9d\x91\x28\x05\x58\xae\x18\xd5\xc1\xdd\xf5\xe5\x1f\x94\xf2\x28\xc5\x37\x97\xe7\xfe\x8e\xa2\x25\x1e\x01\x45\x80\xa4\xb9\xac\xe4\x48\x0f\x44\x3b\xe9\x24\xbb\xce\x27\x0c\xfb\x02\xc4\xb3\x6d\xa4\xb4\x30\xcf\x75\xa4\xab\x29\xfd\x65\x08\x67\x1b\xdb\x8d\x6e\xf6\xba\x62\xcc\x07\x11\x9e\xac\xe7\x03\x14\xa1\x55\x4d\x3e\x1f\x8e\x05\x8b\x6f\x30\x3f\x4e\x7e\x24\xd7\xb3\x4f\x6b\x6b\x79\x44\xb7\xb8\x45\xb4\xb6\xbf\x0e\xda\xce\x0c\xec\x30\xcc\x1c\xcf\x89\x90\x98\x7b\x75\x75\x8f\x96\x88\x50\xe0\x5c\x97\x01\xf3\xbc\x51\x0f\x02\x54\x9f\xc5\x0a\x4d\x31\x80\x6a\x88\x62\x32\xd5\x27\x33\xcd\x67\x7f\xdb\x3e\x3c\x11\x92\xa8\x6a\x4c\x1e\xcd\x7f\x68\xc9\x9a\x6f\xc7\xa4\x2a\x1a\x01\x21\xb5\xfd\x55\x4d\xda\x0e\xbd\xcf\x74\xb5\x25\xe1\x8d\x77\x86\x7c\x3e\x06\xe5\xb6\x3e\xb7\xdb\x59\xcc\x66\x4b\x48\xe7\x97\xc2\xc5\xed\xc0\x67\x22\xa3\xc6\xb7\x0a\x0b\xf5\xfe\x58\x60\xb9\xd6\x72\xd7\xb0\x72\xee\xe3\x17\x98\xc2\x6e\x8f\x5c\x61\xe5\xae\xba\x2d\x38\x69\x2c\x06\xce\x8c\x1a\xcc\x63\x36\x29\x46\x7a\xa7\xc0\x66\x49\x39\xc6\xf4\x86\x70\x46\x2b\x8f\x22\x39\xc1\xb7\x1d\xa4\x06\x99\x79\x87\x27\x87\x61\xb6\x57\x17\x98\x56\x5f\x67\x3d\xfa\xbb\xee\x90\x8d\xe3\x53\x00\x4e\xc6\xc0\xc3\x24\xdb\xde\x2d\xa1\x11\xbb\xf5\x69\x68\x7e\x1c\xe0\x58\xe0\x5e\x4d\x59\x83\xa1\x4f\x43\xf3\x43\x97\xbd\xcb\x97\x4d\xb3\xf8\x09\x1c\xcf\x6c\x58\xe1\x01\x0d\xd5\xd3\x56\xa7\xe5\xd6\x77\xe8\xb4\x74\xf9\x00\x85\xc0\x98\x56\x4e\x7d\xa7\xc2\xa6\x6a\x36\xb7\x7c\x1a\x75\x95\xcc\x36\x5e\x56\xdd\x52\x8f\xfd\x39\xc7\x33\xf2\xc9\x87\xf4\x0a\x8d\xef\xef\x3d\xf5\x27\xc4\x50\x49\x59\xb6\xc2\xd4\xbb\xbb\x25\x71\x7c\x86\x85\xe4\x6c\xe3\x32\xb2\x5c\x10\x11\xfc\x22\xd6\x4a\xb9\x34\x1b\x0a\xea\x0d\x4c\x89\xae\x38\x22\xc6\x12\xf7\x54\x85\xdb\xad\xef\x6f\x3f\x73\x0d\xa5\x15\x7c\x59\xcf\x55\x0e\x9b\xd2\x76\xf6\x9c\x71\x34\x37\xa7\x79\x31\xb7\x2f\x6b\x18\x33\x2b\x90\x41\x35\xc6\x85\xfb\x77\xee\x82\x95\x81\x8f\x06\x29\xb8\xb3\x50\x3d\x3e\x8d\x2a\x51\x2b\x50\xa7\x1c\x70\x94\xa3\x8e\x59\x3a\x2f\x64\xc1\x99\xf9\xd8\x32\x34\xd7\xcc\x63\x2d\x68\x4b\x16\xe1\x38\x25\x75\x65\xc0\xa8\x5e\x49\x0b\xe5\x8e\x25\x47\x54\xcc\x18\x5f\x3a\xc3\xbc\x2b\x40\x92\x36\xb9\x23\x58\x7b\xe9\x92\x95\xaa\xec\xd2\xcf\x27\x7c\x52\xff\x65\xd2\x97\x8c\xfc\x35\x92\xdf\x1d\x78\x97\xbd\x53\x6c\x46\x55\xcc\x0d\x9b\x8b\x26\xe4\xa2\x6d\x00\xb6\x1c\xca\x66\x4d\x3b\x1f\x88\x2f\xcd\xbd\xb6\x01\x9d\x28\xb3\x9d\x6e\x9d\x78\x37\xe3\x8d\x2f\xd9\x71\xb7\x95\xcf\x9a\x75\x26\xba\x7b\xb0\xab\x2e\x93\x95\x1f\xe8\x66\x07\xd6\xf4\x7a\x2a\x7a\xcc\x92\x7c\x22\x54\x1c\x0b\x8c\xf8\x74\x81\x26\xc5\x8d\x45\xba\x5a\x8e\x66\x6b\x81\x83\x5f\x9b\xcf\x07\x7d\xcd\x2d\xf6\xcf\x8e\x4e\xf8\x51\xe1\x1c\x4c\x39\x46\x12\x7b\x77\x06\xf5\x4b\xcc\x97\x23\x00\x60\x4c\x84\xbc\x64\x17\xfa\x9d\x55\x31\x94\x01\xbd\x96\x38\xf2\x4a\x9e\x94\xab\xf1\xd6\x87\x06\x5e\xf5\x43\x8c\xe8\x3a\x8e\x21\xfe\x84\xa6\xf2\x47\x24\xa7\x8b\x0b\xe7\x53\xbe\xae\x80\x63\x14\x09\xb5\x62\xa6\x25\x80\x0f\x39\x9e\xe3\x4f\xbb\x02\xcd\xd6\xbf\xff\xbe\xd9\x15\x28\xeb\xe3\x5b\xaa\x46\x3d\x1a\x1d\x0e\xdd\x9a\xd2\xb7\x27\xa6\x53\xb9\x52\x02\x17\x29\x03\x5c\xb2\x05\x57\x63\x00\x41\xb1\x5b\xfa\x6d\xd9\x17\x45\xf1\x6d\xe6\xdf\xd2\x4a\x56\x30\xc7\x32\x5f\x21\xf0\xe1\x9d\x58\xb0\x75\x1c\x5d\x30\x2e\x55\x1f\xe4\x82\x63\xb1\x60\x71\x34\x0a\x5e\xc0\x98\x59\x2b\x76\x08\x23\x62\xa6\xe9\xe8\x64\x38\x84\xda\xff\xa0\x66\xc0\xe1\x10\x2e\x15\xaa\xaf\xe3\xf8\x52\xbd\x13\xe6\xcd\xa7\x73\x24\x25\xe6\xf4\x07\xcd\x82\xa3\xe7\xcf\xe0\x92\x50\x4d\x93\x37\x0b\xc4\xed\xdb\x13\x78\x8d\x37\x62\x94\x75\xac\x88\x17\xf0\xef\xef\xaf\xc6\x70\x8e\xe5\x3b\x3a\xca\x4f\x10\x8b\xa2\xa1\x95\x02\x56\x6f\x8d\xdf\x4d\xa1\x67\x2a\xc1\x51\x89\x98\x19\x47\x02\x58\x41\xd9\xd2\xd8\xe5\xa9\x9d\xbd\x74\x47\x2e\x07\x57\x1c\x96\xea\xc1\x02\x45\x76\x2c\x0e\xa1\x31\x4b\x32\xd2\x38\xfd\xf6\x03\xc9\xc9\xd2\xf3\xb5\x65\x82\xef\xef\x0f\xd3\x59\x9f\xf8\x20\x6b\x46\xfa\xc0\x88\x8b\xab\x54\x08\x64\x05\xcb\x78\xfb\xfd\xbe\xd4\x87\x87\x12\x1d\x1d\x52\xaf\xe8\xe8\x26\x33\xaf\xd4\xb6\xbd\x5a\x3c\x2b\x9b\x0d\x16\x0d\x04\x5b\xe2\xec\x0b\xad\x18\x46\x55\x6f\x18\x86\x58\x8d\xa4\x3e\x3e\x54\xc7\xb5\x55\x7d\xcf\xb1\x8e\xef\xbb\x85\x2a\x06\xb1\x0a\x43\x17\x40\x60\xe0\x07\x86\xee\x4a\xe0\xba\xb5\xe5\x46\x7f\x57\x4a\xe9\x13\x55\xe6\xe6\x24\x35\x43\x3f\xe2\xf9\xdb\x4f\x2b\x25\x63\x49\xea\xec\xaf\x20\x23\xae\x25\x63\x46\x60\x14\x48\x2c\xa4\x97\x9f\x14\x3a\x64\x2a\x3b\xdf\xb5\x4d\xc5\x6b\x47\xf2\x16\x39\xd5\x52\x36\x58\x53\xf2\x9b\x67\x2a\x6f\x58\xfb\x18\x97\xc5\x95\xef\x91\xe3\xe1\x0a\x2b\x0e\xe3\x32\xa9\xc5\x2c\x19\xea\xcd\x19\x16\x53\x4c\x23\x42\xe7\x4a\x3c\x59\x54\x95\xbc\xeb\xb4\x0a\x69\x81\xc2\xb8\xac\x10\x27\x59\x55\x66\x5a\xbb\xcd\xdb\xc7\xac\xed\xc6\x09\x9e\xd5\x04\x7c\x67\x1b\xc8\xc4\x69\x3a\x7c\x99\x6b\xc1\xf7\xcb\x53\xb9\xd0\xa6\x7f\x8a\x93\xd0\x72\xcf\x1f\xe1\x96\xf1\x32\xbe\x89\x01\xc7\x82\xfc\xfe\x55\xc7\xcd\x34\xfc\x51\xb5\x8b\xcd\x15\x51\x3c\xa7\x39\x42\xed\xb8\xfa\x2f\xa7\x54\xd9\xf5\xab\x68\x60\xd3\x4b\xf3\x35\x0d\x84\x5a\x00\xd6\x31\xfe\x89\x4e\xb1\x07\xb4\x7a\xfd\x11\xd3\x48\x59\xb1\xda\xe1\xe0\xc0\xe3\x40\x28\xd2\xfd\x52\xd1\x0b\x00\xb1\xa1\x6b\xd5\x37\x3f\x98\x10\x1a\x29\xe9\x00\x93\xb4\xd6\xd6\xcd\x13\x30\xaa\xa6\x8e\xd0\xe1\x79\xb6\x86\xca\xea\xf5\xfc\xd4\xa5\x23\x12\xbd\xa7\x02\x73\xf9\xd6\xdc\x7a\xac\x95\x96\x25\xbb\xc1\x75\x58\x97\x9a\x9c\xcd\xb2\x36\x33\x86\xa8\x6b\x56\x37\xea\xf8\x68\xd2\x66\x5b\x38\x44\x2e\x06\xe9\xbe\xc7\xe0\x86\x08\x32\x21\x31\x91\x9b\x41\x84\x25\x2e\x85\x0c\x7e\x51\xa6\xc9\x1a\xaf\x67\x99\x33\x36\xd5\x6e\xa5\x7f\xa6\x65\xcb\x24\x54\x52\x93\xd0\xf9\xfd\xbd\x99\x67\x86\x17\x4a\x95\xbb\x34\x2d\x7f\xb4\xac\xa0\x8a\xf8\x3e\x8c\x6c\xab\x01\x8a\xa2\xb7\x37\x98\xca\x1f\x94\x2d\x4a\x95\x35\x9a\x81\x4e\x17\xe6\x90\x9c\x33\x54\x15\xf5\x26\x23\xa5\xcc\x8e\x94\x25\x76\xc2\x2a\xed\x8c\x81\xfd\xdc\xfe\x94\x18\xa7\x0b\xc7\xcc\x18\x9f\x90\x28\xc2\x74\x20\x64\x21\x44\xf0\xcb\xae\x07\x8a\x07\xde\xa4\xbb\x7a\x39\xff\x43\x86\x27\x11\xef\x92\xfe\xa9\xe5\xdc\x61\x03\xf7\x0b\x34\x47\xb2\x55\x93\xe5\x6f\x87\xc3\x44\x43\x68\x72\x6d\x6e\x21\xc7\x02\xcb\x9a\x0e\x55\xd6\x7b\xd2\xa5\xda\xf6\x01\x30\x0e\x21\xcc\x39\xe3\x83\x85\x1a\x4b\xbd\x20\x55\x7a\x2a\xd7\x92\xc4\x3a\xe7\x10\x99\x6d\x0c\xc4\x63\x5a\xd4\x55\xa3\xa4\x3b\x57\xb5\x9b\xde\x86\x78\x60\xf4\x9a\xfc\x0d\xf7\x66\x0e\x76\xa0\x49\xba\x65\x37\xd0\xa3\x22\x0b\x24\xf9\xb2\x8c\xb9\x11\x12\x2f\xad\x42\x61\x1c\x98\x81\xf5\x5f\x78\x3e\xfc\x95\x4d\x84\xc3\x24\xb9\x52\xd9\x1e\xb5\x07\x54\x39\xe0\x43\x13\x6e\x2d\x46\x77\x73\x26\xd9\xf7\x6c\x22\xca\x7c\xae\x39\xcb\x34\x1a\xa8\xe2\x37\xf8\x43\xb6\x61\x99\xcd\x84\x7c\xc3\xc1\xaf\x6c\x92\x15\x4b\x18\x5c\xb4\x15\x4c\x16\x3c\x12\xa5\x30\xda\x57\x44\x54\x8f\x2e\xd9\x47\xb6\x96\x38\xe9\xfb\xb6\xc3\x38\x71\x05\xf0\xe7\x52\xf3\xd5\x96\x1a\xcd\x1f\x4a\x4a\x3f\x9d\xe5\x26\xc2\x59\xa7\xda\x19\xe6\x56\x49\x05\xcc\x45\x8d\x80\xeb\xc8\x5b\x5f\x56\xe8\xa5\x02\x0b\xde\x25\xdd\xed\x66\x8e\x4c\x11\x9d\xe2\xf8\x75\x1c\xff\x57\x02\x56\xdc\x5c\x33\xfa\x6a\x42\x03\x3f\x98\x31\xfe\x16\x4d\x17\x5e\x7e\xad\x49\xeb\xd1\x56\x1c\x14\x12\x71\x59\x55\xa5\xe5\xee\xaa\x35\x2b\x2f\xa8\x73\x35\xd4\x6c\xed\x75\x58\x21\x1b\xa7\x5a\xca\x5c\x0b\xbd\x3e\x9e\xea\xfa\x4a\x14\xf1\xfc\x51\xb9\x47\x66\xc6\x65\xd2\x13\x16\x9e\x0d\xd9\xf4\x52\xa4\xd8\x2e\x13\xaa\x4a\xd5\xb9\x4c\xe5\x57\x89\xda\x15\xad\xd7\x0a\x35\x55\xb9\x38\x46\xf3\x9a\x54\x9a\xda\xad\x6d\x7a\x90\x7b\x85\xa4\x2c\xae\xc1\x0f\xb9\xaf\xb9\xea\xe4\x69\x80\x3f\x49\x4c\xa3\xb6\x05\x49\xbb\xc1\xbd\xa1\xb3\xc5\xe2\x25\x3b\xc7\x3e\x44\x51\xc4\xb1\x10\xb5\xdf\x05\xe6\xb3\x73\x65\x6e\xd7\x15\xe0\xab\x69\xe3\x77\x89\xe6\xc5\xda\xef\xec\xaf\x7f\x6a\xec\x4a\x1c\x69\xf6\x1a\x94\xae\xb9\xae\xef\x97\xa2\xed\x14\x53\x89\x79\x7d\xcf\xf0\x5c\x8d\x79\x43\xc7\x5f\x47\x11\x2f\xf9\x05\x2c\x45\x00\x04\x6a\x80\x1b\x0c\x7f\x3b\x6a\x04\x0b\x17\xc8\xd2\x43\x61\x1e\xe2\xc0\xbe\x87\x34\xc4\x81\xfd\x92\x9a\xfd\xfd\x3e\xed\xf7\xe5\x11\x18\x81\x23\xba\xf5\x21\x11\x3f\x60\x14\xe1\x72\x87\xec\xca\x1f\xeb\xaf\x81\xed\x76\x95\xd3\xd8\x71\x24\x54\x82\xf8\x61\xe8\x78\x2d\xd2\xb7\xb5\x7e\x05\xcb\xf1\x71\xe2\x49\xde\x99\xed\x73\x6f\x38\x8e\x75\x2d\x62\x41\x56\x2d\xfb\xb0\x0a\x98\x4c\xd6\x12\x27\x7b\x2d\x31\x8b\x90\x58\x64\xd7\x1b\xeb\xce\x14\xb5\xde\x55\x3a\x1e\xc7\x62\xc1\xb8\x1c\xac\xd7\x24\x2a\x17\xd3\x31\x11\xd8\xc5\x4b\xdb\x35\x55\xfb\xac\x50\x40\x0e\x19\x8c\x1f\x78\xbd\x3a\x09\xef\x56\xd6\x75\x75\x02\xf9\x9a\x52\xf5\xeb\x19\x54\x23\x1b\x63\x89\x47\xcf\xe1\x0c\x91\x18\x47\xa3\x17\x30\x66\x42\x8e\x5e\x6e\x0f\x9a\x66\xb9\x76\xdc\xd7\x4d\x72\x8d\xf1\xfb\x48\x71\x3b\x73\xb8\x5d\xa9\x71\x4a\x23\x55\xef\x51\x30\xc1\x31\xa3\x73\x71\xc9\x7c\xad\xc2\x01\x1f\x52\x16\xe1\xf2\x37\xf5\x16\xb4\x08\x0e\x89\xc4\xf5\xdf\x39\x5b\xaf\x3e\x34\x95\xe2\x58\xb0\x35\x9f\x62\x3d\x91\x45\x90\x0c\xb1\xaf\x9d\x1d\xe6\x0b\xf0\xe1\x92\x45\x64\xb6\x79\x4f\x23\xfc\xa9\x58\x13\x5d\x2b\x7c\xd3\x32\x97\xa4\xdc\x58\x64\xd4\x9d\x5f\xd9\xe4\x9f\x98\x8b\x8a\x29\x9f\xd6\xc1\x38\x99\x13\x8a\xe2\xef\xd9\xc4\x90\xaa\xb2\xcf\xd3\x98\x60\x2a\x2f\x5a\xe4\x0f\x16\x84\xe3\xa8\xa5\x94\x11\x62\x06\xb1\xe2\xb4\x76\x9b\xa9\x9a\xcd\xe4\x2a\x9b\xab\xb9\xb2\xfe\xf8\xfe\xfe\x64\xa8\xd6\x84\x24\xe5\xd3\xeb\x94\x95\xcb\x63\xe9\x4e\xdf\x3b\x42\xb5\x37\x71\xa4\x93\x09\x67\x50\x60\xeb\xc3\xfc\x9b\xae\xf5\x94\x7b\xa0\xea\x9a\xb1\x38\x66\xb7\x3f\xaf\xde\xaa\x09\x51\x53\x1f\x4e\xbf\xa5\x74\x7a\xa3\x43\xe1\x77\xa4\x53\x3a\xc5\x00\x11\x83\x55\xe2\xad\x4d\x66\x9b\x7e\xc9\xc9\x12\xf1\x0d\xc8\x26\x9e\x7a\x9b\x3c\x80\x64\x12\xaa\x97\xc6\x62\x36\xb3\x51\x3d\xc7\x64\xbe\x90\x60\xdb\x34\x12\xaa\x58\x84\xf8\xb5\xc2\x3b\x9d\x13\x25\x24\x72\xb3\x05\x40\x35\xfb\x82\xf4\x5d\xeb\x0e\x52\xbe\x74\xb6\xd5\x80\xfb\x7d\x1c\xcc\x08\x8d\xbe\xdb\x78\x3a\x88\xd5\xd5\xc8\xf3\x4d\xfa\x4a\xc4\xaf\xe9\x02\xa3\x58\x2e\x36\x67\x9c\xdc\x54\x28\xad\x19\x4c\x10\x99\x12\xc6\x35\xae\xe4\x41\x50\x00\xd6\x26\x63\x5b\xc7\x4b\xf5\xe9\x65\x31\xfb\x5e\x5b\x71\x0e\x47\x79\xea\x0d\x21\xcf\xe6\x97\xd2\xe8\x47\x5a\x9f\x9e\x61\x39\x5d\xa8\xc1\x10\x35\x2e\xe5\xd2\xca\x68\x43\xbb\x03\xb4\x96\x0b\xc6\xc9\xef\x38\xfa\x88\x7f\x5b\x63\x21\x3d\x70\x7c\x73\x72\x6c\x86\xd7\x59\x1b\x8e\xc1\x91\xe3\x6b\x8a\x80\x7f\x04\x8e\xcd\x72\xe1\x07\x72\x81\x69\xd5\x2e\x0f\x0e\x7e\x15\xaa\x23\xdb\x62\x11\x99\xdb\xdf\x8d\xd3\xfd\xdd\x3b\x5d\xe3\x48\xc2\xac\x5d\xeb\xee\xd7\x33\xa3\x28\x3d\xf5\xbe\xbf\x6f\xa8\x6b\x7d\x72\x5a\xd2\x5a\xa7\xb9\xb6\xda\x6a\x40\xb2\x52\x03\x7c\x63\x1c\xd5\x0b\x24\x3e\x16\x61\x8b\x7c\x51\xac\xdc\xee\x87\x01\x58\x14\x24\x8d\x5a\x49\x5d\x2d\xfe\xdf\x86\xf7\xf7\x0e\x53\xe4\xab\x54\x8c\xbb\x40\xe2\x42\xb2\xd5\x4a\x8d\x96\xad\x43\xcd\xee\x62\x37\x8b\x9d\x29\xc8\x0e\x50\x96\x4b\x15\x1d\x3e\xac\xeb\x89\xb6\x37\x34\xcd\xfa\x7d\xa7\x50\xb9\x52\xb7\x20\x30\xd2\x05\xe4\x54\xaf\xbc\x10\x69\xd1\xbf\x22\xbc\x8a\xd9\xa6\x2e\x83\xff\x57\xd0\xbf\x1e\xa4\x65\xb9\xc5\xd6\xcb\x01\x9a\xcf\x39\x9e\x57\xdd\x77\x94\xe9\x59\x8f\x6d\x14\x65\x1a\x11\xdf\x41\x23\xba\x31\x3a\xc4\x07\xad\x33\xd4\x6a\x12\x1c\xff\xb6\x26\x1c\x8b\x73\xce\x96\x4c\xcf\xd7\x5a\x51\x7a\xb1\x5e\x2e\x11\x27\x58\x04\xff\x0b\xa3\xe9\x22\x58\x69\x10\x1c\x55\xb0\x1e\xb0\xcb\x56\x9e\x5b\x84\xe5\x93\x7e\xbf\x42\xb0\xa6\xb5\x2b\x79\xc4\x4c\x28\x91\x5f\xd8\x65\x76\x25\x93\x9d\x88\x85\xde\x6b\x96\xb6\x1f\xd3\xfe\x19\xb6\x6c\xb1\xc3\xcc\xe7\x33\x2c\xa6\x9c\xac\x64\x93\xbd\x55\xee\x72\x83\x54\x9b\xab\x82\x83\x8c\xf5\x07\x42\x03\x6d\x94\xc5\x9a\x4e\x48\x61\xc6\x70\x81\xc4\x8f\x88\x6e\x72\x3a\x8a\xc8\x46\xb2\x34\x32\xb9\x11\xb6\x6b\xb1\x7d\x27\x92\xa9\x6b\xc7\xca\x8e\x77\x79\xa4\xbc\xfc\xe2\x9c\x80\x9b\xa8\x17\x3f\x5b\x93\x2d\xbc\xe3\x12\xcc\x35\xae\x57\x65\xfb\xea\x62\x3d\x59\x12\xa9\x15\xdc\x42\xa8\x12\x8a\x09\x12\x29\x68\x20\xd2\x82\xc0\x87\xab\x18\x4d\x71\xf4\x06\xd1\x94\xa2\xae\xfa\x5f\xc1\x26\x10\xe4\x41\x32\x5d\x76\xa7\x4a\x0a\x30\x59\x2d\x97\x4c\xa2\x78\x97\x2a\x34\x40\x8a\x89\x16\xb7\xbb\xe0\x61\x00\xd4\x3a\x66\x94\x88\x1d\x2a\xc8\x41\x00\x47\x3d\xda\xa1\x8e\x02\x4c\x8b\x2e\x2b\x6a\xb5\x58\x57\x61\x4d\xa4\x00\x14\xeb\xe9\x14\x0b\x31\x5b\xc7\x79\x45\x76\x85\xd6\xc2\x6a\xac\x46\x43\xad\xd0\x61\x8d\x6b\x2b\x79\x99\x3e\xe5\x94\x59\x51\xa9\xc6\x36\xaf\x46\x1c\x11\x65\x30\x73\x24\xf1\xbc\xf2\xc4\x4d\xf5\xf2\x53\x5a\x63\x6a\xe2\xe8\x3f\xd3\x37\x46\x4b\xcb\x40\x84\x51\x14\x13\xaa\xad\x46\x59\x25\xca\x67\x8c\x4f\xf1\x59\x4d\x29\x6b\x5b\x92\x39\x65\x1c\x5f\x68\xaf\x8a\xde\xa3\x29\x14\x9b\x30\x16\x63\xa4\x2c\x19\xbd\x01\x38\x2d\x85\x9b\x04\xb1\xd4\x8e\x70\xdd\x08\x80\x43\xad\xd2\x7c\x60\x69\xb3\x85\xd2\xfa\x9e\x95\x3c\x40\xe3\xa8\x38\xc6\xd4\xd3\xd5\x11\xaa\xd7\xfd\xaf\xb8\xea\xaf\x38\x61\x9c\xc8\x4d\xed\xaa\x2e\x37\xab\x06\x87\x07\x27\xf3\x39\xe6\x38\xfa\xae\x54\x41\x61\x35\x7c\x84\xc5\xd2\xcc\xe7\xcb\xbf\x67\x92\xa8\xbc\x50\x6a\xf9\x67\x2e\xdf\x43\x24\x5e\xeb\x14\x2c\xcd\x9e\xd5\xab\xf1\xd6\x28\xd3\xe7\x09\xe8\x3b\x03\x59\x8a\x8e\x55\x0c\xed\x81\x7c\x2f\x52\x75\x1d\x12\xf1\x5d\xcc\xa6\xd7\x65\x2e\xb7\x7c\x9b\x88\x39\x30\x31\xc5\x3a\xbb\x5e\x1a\xf4\xb2\x2e\x3e\xa2\x5b\x44\xe4\xcf\x54\x92\xb8\xda\x45\xd4\x38\x85\x7e\x65\x93\x54\xc9\x78\x6a\x73\xa8\x93\x02\xfd\xc8\x13\xa9\x61\x28\x1e\xa0\xc9\x65\xea\x9b\xce\xb4\xed\x2c\xf3\xbc\x6d\x85\x75\x01\xcc\x1c\xe2\x92\xd0\xf9\x0e\x35\xe4\x41\x94\xf6\x6e\x16\xd8\x1d\xaa\xc8\x41\x00\x3f\x75\x25\xed\x50\x45\x1e\x24\x9d\xe3\x3b\xd4\xe0\x02\x00\x5f\x7b\xa9\x76\x80\xce\x8a\x27\x4a\xb4\xf8\x81\x88\x62\x1c\x65\x30\x65\x71\xac\xcf\x4c\xe7\xe8\x5e\x22\x62\x91\x24\x25\xfc\x0a\xdd\x2d\xb4\x2f\x95\xd2\x67\x3b\x5f\xe8\x80\x58\x2f\xad\x26\xaf\xfb\xa7\xe4\xb6\xf1\xea\xbd\x59\x90\x38\xe2\xb8\xde\xbd\x6b\x7b\xd4\x5a\x4e\x2d\xab\xad\x85\xa6\xb6\x40\x23\x8d\x0a\x3d\xcb\xa8\xe2\xbc\x71\x5b\x4b\x30\x4f\x5b\xaf\xc2\xdd\x6d\xb9\x83\xd0\xb2\x66\xc1\x63\x0a\xad\x47\x3e\x71\xb6\x93\x70\x11\x3a\xe8\xb8\x38\x2c\x99\x82\x95\x59\x3f\x35\xfb\x00\xb4\xd9\x72\x8f\xc8\x6c\x56\xf8\xd8\x4a\xe3\x6f\xb1\x20\x54\x09\x79\xe7\x70\x11\x7f\xda\x87\x8b\xf4\xfe\x17\x0b\xaf\x92\x94\x1a\x4a\x17\x40\x72\xba\x50\x82\x44\x6b\xd1\x60\xdc\xb8\xd7\xd5\xb2\x77\xdb\xb8\x33\xb5\x8a\x11\xa1\x0d\x4a\x46\xa3\x96\xd7\xaa\x23\xa2\x38\x7e\x2d\x7f\xa2\xd3\x26\x16\x7d\x2c\x2d\xd0\x84\x9b\x74\xd9\x17\x6b\x2e\xb3\xc2\x9c\xb0\x88\x4c\xeb\xbb\xbc\x42\x1c\x2d\xb1\xc4\xda\x23\xde\x50\xcc\x56\x74\x86\x25\x22\x71\x11\xc5\x42\x35\x75\x85\x16\x48\xd4\xc9\x3f\xc6\xf5\x85\x59\xba\x0d\x65\xe1\xbb\xd5\x99\x5e\x62\x2a\xab\x25\x87\xb3\x29\x95\x08\x50\xb0\xcd\xc4\x78\xd1\x55\x54\x00\x31\x35\xeb\x3d\x1c\x4e\x96\x4b\x1c\xe9\x5d\xcd\x92\x7f\xd9\x6c\xde\xd8\xc2\x8d\xbe\x6e\x53\x26\xf3\x04\x9f\x3a\x5e\x65\xbd\x1f\x13\x70\xac\x15\x78\xef\x38\x38\x3a\xfd\x3f\xc7\xc7\x10\x00\x7f\x54\x2c\xa4\xc4\x12\x11\xab\x18\x6d\x2e\x15\xd3\x96\x7c\x8c\x9b\x15\x36\x17\x8b\x55\x53\xac\xb9\x87\x09\x94\x7f\x9a\xfd\x1e\xe5\x30\x70\x89\x7f\x5a\x78\xe1\x94\xd4\xdd\x50\x7d\x95\x78\xb9\x8a\x91\xc4\x0f\xeb\x6c\x42\xb3\x7c\x09\xfd\xa6\x16\xab\xd2\x86\x93\xee\x4a\x79\xdb\xe7\xf1\x90\x2d\x76\xd2\xa9\x70\xa0\x99\xad\xaa\x70\x63\xed\x09\x18\x0b\x08\x9d\xc6\xeb\x08\x0b\x0f\xbb\xfc\x62\x70\x1a\xa5\xa2\x74\xeb\x46\xbf\x94\xa7\x57\xb6\x51\xd8\xa6\x95\x77\xb4\x17\xad\xee\x5e\x39\xed\x1c\xc5\x9e\x88\x73\xa5\x21\xa2\xb8\xc6\x28\x74\xb6\x3b\x93\xdd\xa3\xa1\xd3\xdb\x37\x6c\x4d\x4b\x8a\x96\x92\x07\x15\x70\x55\xce\xf5\xd4\x38\xad\xb0\x4e\xaa\xfd\xa9\xb6\xeb\x41\x95\x2f\x3d\x6f\xa6\x34\xc3\x37\x1b\x28\xcd\xb0\x2d\xa6\x49\x33\x70\x8b\x51\xd2\x0c\xdc\x6c\x8e\x34\xc3\xd6\x1b\x22\xcd\x70\x5d\x4d\x80\xe2\x00\x65\x25\x2b\xac\x81\x66\xd8\xa2\x86\x5e\xb6\x12\x3a\xd1\xd8\x81\xcf\x59\x0f\xcd\xc0\xbb\xa8\xfe\x55\x38\x3b\xb0\x37\x2d\xa1\x2d\xc9\x0e\x44\xc5\x3a\x37\xc8\x76\x27\xba\x6f\x9e\x64\x5b\x2f\xa5\x82\xce\x27\xe0\xc3\xcc\xf5\x58\x2a\xe8\x7c\xb2\x3a\x9b\x8e\x31\xaf\x88\x37\xca\xe2\xd4\x61\xd4\x16\x9a\x90\xec\xa3\x25\x11\x05\x8d\x8b\x9c\x1b\x35\x11\x2c\xd1\xea\xbb\x8d\x07\xd2\x50\x04\x7b\xfd\x92\x57\x79\x3c\x19\xbb\xe7\x42\x31\xe4\x9e\xf4\x7d\x88\xb7\xf0\x6a\xec\xa7\xe7\x27\xdb\x03\x2a\x1c\xa2\xda\x6e\x17\x41\x6a\x0e\x80\x67\x28\xe4\xc6\x25\xc1\xa1\x58\xcb\x63\x20\xb3\x40\x89\x5b\xcf\x89\xdb\x29\x22\xe4\x8c\xa9\x45\x28\x75\x06\x36\xa3\x91\x63\x86\xee\x5b\x95\x59\xed\xc6\x4a\xeb\xe2\xbc\x44\x34\xf2\x80\xd2\x43\x44\x52\xc4\xdd\xf0\x07\x55\x78\x2a\x29\xa6\x01\x76\x42\xdd\xd1\xbd\x95\x5d\xe7\x7c\x27\xe2\xbc\xc3\xc1\xd1\x1c\x4d\xac\xd2\x72\x88\xef\xef\x53\xdc\xcf\xd3\x93\xa0\x74\x1d\xc7\x23\x9c\x9c\x29\x05\x6e\xcb\xbe\x3d\x85\x8a\x84\x34\x66\x9a\xd6\xc5\x6a\xf0\xff\xea\x58\xd9\x93\xee\x65\x94\x92\x63\xe7\x0a\x33\x7b\xbc\x1d\xdb\xa3\xd3\x0a\xc3\xaa\x81\x76\x34\xbb\x53\xd9\x95\x16\x23\x73\xf4\x4b\x2b\x32\x2b\x6d\xc3\x9f\x39\xb2\xad\x46\x57\x31\xba\x6a\xa2\x71\xa5\x8b\x46\x06\x59\xa2\xa3\x23\x15\x2d\x1d\x6b\x37\xfb\x9c\x59\x91\x93\xa5\xe9\xb6\x71\xea\x3f\x4f\x76\x02\xfd\x24\xd6\xe9\x23\xba\x3d\x53\x36\x78\x29\x9c\x3d\x1f\xcc\xcf\x38\x0e\x6c\x9a\xc0\x77\x8c\x5b\xd7\x4a\x50\xae\xc1\x1c\x44\xd9\x9a\x3d\xb0\xf3\xc4\x4a\xdc\xb5\x5a\x17\x38\xa9\x51\x48\xb6\xda\xb5\x22\x05\x93\xc1\x3f\x64\x17\xb5\x7b\x2c\xa0\x5a\x9a\x6b\x42\xfc\xaa\x77\x45\xe1\x0a\x6d\x62\x86\xea\xdd\x0a\x11\x9e\xb2\x08\x47\xe7\xb6\x58\xb1\xd3\x16\xbc\x8a\x1d\xcc\x21\xdf\x00\x49\x36\xf1\x5c\xdb\xc1\x00\xf8\xf7\xf7\xa0\x35\x48\xc8\xc9\x60\xf9\xb4\x8e\x26\xd0\xb2\x1d\xad\x53\xaf\xfc\x44\xe3\x8d\xdd\x96\x5b\x20\xb1\x68\x8a\xb3\x6d\x73\x93\x34\x13\x06\xcb\x5b\xc6\xaf\x1f\x63\xa3\xfa\xe1\x9e\xbb\x47\xdf\xd2\xd6\x59\x6a\x0b\x7b\xd0\x99\xd7\x88\x44\xbc\xf6\x23\x59\xd5\x7e\x5a\x4e\x88\x2c\xed\x6c\x3b\x11\x4f\x4a\x1a\xe2\xe8\x5c\xd1\xd0\xa8\x70\xc8\x58\x94\x3e\x8c\x36\x14\x2d\xc9\xb4\xe2\x53\xf3\xd8\xb0\x08\x0f\xdc\x3d\xb0\xc7\x18\x23\x9d\x9a\x29\x2e\x5d\xd9\xf8\xb0\x61\x38\x30\xf9\xbf\xd3\xa4\x63\xc1\x9a\xaa\xba\x25\xa6\x07\x4d\x03\x94\xe1\x54\x20\xa7\x0f\xb3\x4f\x17\xc9\x85\xc9\x65\x59\xe1\xd2\xa4\x61\xa1\x75\x8a\xe9\x75\x36\xbd\x47\xca\xa2\x79\x8d\x37\xc2\xc3\x26\x11\x85\x57\x56\x10\x65\x76\x7b\x7d\x4f\x5e\xd1\x71\x88\xaf\xe8\x18\xca\x2d\xbc\xdb\xa6\xeb\xac\xf0\x24\xbc\x63\x37\x98\xdf\x72\x22\x0d\x4d\xb6\x5a\xef\xbd\xa6\xec\x96\xa6\xd9\x3a\x2a\xf4\x37\x27\x2f\x4c\x45\x87\x33\xe4\x95\x09\x51\x7b\xe0\xd7\xe1\x13\xa3\xb5\x77\x4e\xe5\x57\x39\x6b\x3b\x70\xd2\x97\x9b\xc7\x15\xb2\x31\x3d\x7c\x91\xb4\xff\xd3\x2d\xc5\x3c\xcf\x26\xf9\x02\xf6\x70\x86\x3b\x6b\x72\x3c\xb5\xa8\xc8\x8c\x92\xb8\x2d\xb3\x62\x41\xe5\x40\x74\x63\xb5\x6a\xd8\x94\x61\xdc\x04\x36\xd6\xd2\x0a\xdc\x10\x6a\x9a\x06\xa3\x37\xfa\xf0\xcd\x49\xce\x7a\x57\x74\xc1\x73\x75\x78\xb2\x4d\x03\xc0\x76\x07\xe9\xe2\x8a\x5f\xaf\x22\x24\x71\xc3\xb6\x93\xa9\xaa\x5a\x61\xb1\x3d\x6b\x56\x05\x93\x42\xfe\x69\xaa\xf6\x8d\x92\xe8\xe1\xb6\xd5\x5f\xb1\x84\x89\xe7\xfe\x6f\x32\x3f\x96\x58\x08\x34\xaf\xe7\x1f\xb1\x9e\xd8\x43\x91\x0d\x1c\x56\xb9\x3b\x21\xeb\x87\xd8\xb0\x73\x8d\xe3\xc6\xd6\x67\xdd\x12\x6d\x5a\x09\x8b\x76\xd7\xd4\xbe\x61\x34\x37\x59\x0d\x56\xa8\x78\x50\xff\x0b\xc6\x6e\x37\xcb\x86\xf6\xa3\x9f\x44\x9c\x71\x44\xb4\xd6\x5f\xbf\x4b\x97\x9e\x23\x78\x1b\x93\x79\x72\x36\xfe\x8b\x47\x76\x35\x05\xa8\x75\xd9\xcb\x5b\x48\xb9\xd2\xe7\x56\x6b\xb7\x37\x63\x91\xa4\x25\xac\xc5\x3d\xbf\xbc\x88\xe6\xe5\x65\x89\x25\xea\x50\xac\xdb\x51\xbf\x44\x8d\x6c\x2c\xa4\x83\x4c\x2f\x6c\x8c\x69\xa9\x64\x21\x04\x55\x8d\xb6\x19\xc1\xb8\x2e\x8e\xb2\x72\xa8\xd5\xa4\xb1\x60\xce\x39\xe8\x92\xe8\xb6\xe4\xae\x8a\x01\xcf\x85\x07\x3b\x82\x3c\x01\xf1\xfd\xe4\xfc\xaf\x32\x1f\xab\x56\xe6\xcf\xac\x5d\xd5\xb9\xad\xdf\x79\x69\xac\x5f\xfb\x5d\xdc\x63\x06\x59\xc5\xdb\xce\x7e\x62\xf7\x44\xa1\x12\x69\xdb\xcc\x7f\x5b\xb9\xf7\xe4\x6a\x72\x3e\xc4\x0d\x07\x95\x9c\x25\x2d\xd3\x06\xea\xbc\xac\xc9\x61\x35\xeb\x18\xb6\xa5\x5b\x3c\x2f\xa9\xe3\x34\xf3\x39\xa5\x90\x9d\x7c\xbb\x85\x5e\xd9\xd6\x3b\xad\xf5\x05\xd0\x5c\x27\xd2\x0a\x0e\x4f\x2a\xba\xa1\x4f\xc7\x95\xba\x52\x72\x2a\xdb\xe3\x0b\x5a\xf1\x6b\xea\x48\x85\x1f\xd9\x7a\x98\xd3\x0d\x68\x73\x27\x15\x91\xd8\x9e\x75\xad\xf3\xc6\x80\x6c\x1a\x36\xb7\xe9\x94\x73\xb7\x39\x13\xb7\xcb\x08\x10\x9a\x4e\xcc\x16\xc5\xa7\x22\x04\xf6\xc9\x07\xa4\x27\x6b\x5b\xb5\xed\xce\x50\x8c\xc5\x14\x47\xa9\x6f\xbb\xce\x1e\x57\x13\x44\x58\xbf\xae\x11\xa7\x0d\xc5\x3e\x2d\xd0\x5a\xb4\x16\x7b\x7d\x83\x48\x9c\x44\x5f\xe5\xac\x56\x7d\x66\xfe\x9d\x66\xd1\x52\x25\xaa\xd3\x54\x49\x63\x42\x65\x7d\x11\x55\x41\x5d\x37\x7c\x18\x91\x25\xa6\x82\x30\x5a\x5f\xe4\xb7\x35\x93\xa8\xfe\xb3\xbe\x50\xb2\x64\x6e\x37\x33\x0f\x8b\x49\xf5\xa5\x21\xdf\xdc\x61\xf6\x19\xde\x30\xc8\xd7\x31\xae\x55\x54\x14\x41\xca\x89\xff\x2d\x41\x4a\x87\x43\xbf\xa2\x31\xf1\x19\x67\x08\x1e\x79\x00\x50\xe1\x10\x7c\xc9\xf6\x28\x9f\x79\x6f\x08\x36\x4b\x0a\x7f\x60\x11\x6e\x8a\x49\x6b\xb0\x3a\x70\x8c\xea\xf5\xd2\x72\x67\x2e\x32\x05\x53\x38\x10\x55\xbd\x2e\xf4\xaf\x05\xd2\x29\xd2\x62\xde\x64\xba\xdc\x1f\xc9\xed\x3a\x5d\xad\x6b\xe5\xe7\x12\x2f\x99\x09\x91\xa9\xfc\x1c\x11\x71\x5d\xfb\x91\xb0\x55\x83\x98\x37\xfe\xeb\x82\x1b\x28\xd5\x92\x12\xef\x76\x97\x40\x9e\xc6\x21\xd3\x51\x41\x7f\x3c\x17\x82\x3e\x1d\x5f\x33\x8f\x1b\xe3\x40\x05\x99\x53\x54\x3a\x47\x92\x0e\x0b\xfe\x44\xe4\x1b\xeb\x9e\xa8\x3e\x4a\x54\x3f\xa1\xd5\xa7\x0f\x88\xb2\x92\x90\x76\xb8\xa9\xd1\xbb\xd1\x3e\x90\xb5\xc7\x67\xff\x48\x63\x9b\xa1\x57\x33\xc0\xcd\x89\xaf\xd6\x92\x7d\xc4\x37\xb8\x9c\xba\xca\x09\x77\xb5\x47\xa1\xeb\x4b\xb4\x9d\x03\x0f\xe6\x5a\xdb\xcf\x9f\x95\x85\xc3\xdc\xb9\xdd\xcd\xeb\xbc\xb1\xd5\x3d\x53\x96\x89\xcf\x2b\x1c\x01\xae\x76\x4f\xd5\xb4\x97\x85\xcd\x55\x1c\x02\xae\x39\x3c\x91\x3f\xe6\x5b\x1d\x70\x5c\x38\xcb\x5b\xed\xc9\x28\x1e\xb6\xad\x2c\x55\x71\x28\xb7\xaa\x5c\xd7\x39\xf1\x47\x9c\x08\xe9\x69\x8a\xdd\x66\x40\xf1\x24\x56\x25\xf9\xcb\xc7\xad\x9a\x8e\xde\xb4\x94\x2a\x9f\x9a\xaa\x2c\x56\x3c\x18\x55\x59\x28\x7f\xfa\xa9\x2e\x54\x7f\x6f\x0e\x39\x75\xe4\xdf\x27\xa3\x92\x77\x38\x92\xf8\xc0\xed\x56\x1e\x56\x45\x83\xdd\xdf\x5f\x8d\x9b\xd3\xa3\x3d\x70\x16\x4c\x75\xdc\x71\xed\x32\x8e\x44\x9d\xee\xa5\x3e\xb5\xc4\x2b\xe6\x43\x15\xdb\x23\x15\x4b\x41\x8a\xc0\x09\xcf\x73\x5d\x72\xc5\xc6\x7e\x65\x93\xa0\x1c\x6a\x98\x06\x3f\x56\xb5\xcc\x0b\x29\x2c\x72\x61\x86\xae\x3f\xaa\x90\xba\xaa\x6a\x2b\x2f\x71\xea\xbe\x39\xff\xb9\x68\x3c\x18\xb4\x20\x70\x8a\x38\x5e\xe0\x1f\x53\xb5\xb9\x09\xc6\x94\x72\xc0\xce\xac\x3a\xdd\x04\xa4\xca\x38\x20\x6f\x57\x0b\xbc\xc4\x1c\xc5\x09\x6c\xfd\xba\xd5\x10\x5a\x68\x48\x55\x13\x5a\x17\x14\x8e\x4b\x77\x48\xea\xd5\xad\xa6\x8e\x09\xbf\xb2\xf1\x30\x52\xed\x27\x7e\xd1\x14\x8a\x9e\xc5\x1a\xdf\xb9\x52\xb0\x20\xf1\xb7\x2d\x89\x26\x2b\x63\xe0\x8f\xca\x05\x8a\x81\xee\xce\xb9\x82\x2a\x12\x57\x04\xf8\x57\xc7\xc9\x16\xd9\xb8\x2a\x98\xdf\x6f\x27\x59\xbb\xf8\x2d\xe5\xbe\xdf\x7b\xb5\xa1\x51\x2c\xa6\x86\x53\xdd\x57\x2e\x71\xf4\xba\x24\x38\xad\x89\x33\x23\x94\x88\x45\x53\x01\x93\xaf\xa4\x56\xaf\x26\xe2\xb5\x4e\x74\x5e\x5c\x37\x29\x53\x03\x94\x55\x9f\x0b\x69\xaf\xb3\xf3\x90\xb8\x6e\x08\xcc\xce\x58\x26\x30\x32\xbb\x65\xde\xd6\x43\xee\x3c\x4f\x1b\x37\x94\x55\x95\xe9\x6e\xb2\x2d\x5a\xe3\x82\x77\x8b\x42\xb7\x83\x3a\xbf\x5e\xd4\x14\x68\xee\x55\x22\xe6\xc2\x95\x72\x1a\x55\xe4\x19\x4c\xfb\x69\x57\x83\x6c\x23\x10\xd5\xed\xf1\x65\x9b\x3f\xd5\x4b\x6b\xba\xf9\xa3\x39\xb1\x3e\x10\xb4\x6a\xb3\x61\x87\x38\xd0\x84\x95\xda\x72\x42\x16\x03\x44\xf1\x4e\x59\x73\xb4\xae\xb0\xe7\x5b\x13\x96\x59\xeb\x3e\x97\x97\xf4\xc6\x30\x42\xab\x2a\x34\x96\x39\x6b\xf2\x9a\xd5\x2e\xec\x55\xa5\x9b\x07\xc7\x5c\xc8\xbf\x47\xc7\xe7\x05\x9e\x72\x5c\x9f\x72\xbb\x51\xb0\x9b\xbb\x92\xeb\x25\xaf\x39\x73\xdc\x10\xe8\xd4\x7c\x7c\x9a\xc5\x64\x4a\x70\x69\xd3\xd8\xee\xb5\xd8\x02\x1b\xb3\x8b\x59\x0c\xbd\x41\x3a\xdb\x15\xab\x13\x88\xa4\xd6\xed\xac\xe4\x4a\x5c\x13\x1d\x98\x7e\x7b\xc4\x2b\x01\xb2\xbb\x43\xab\x3a\xc3\xd6\xb2\xf6\x26\xe9\x0e\x57\x9c\x3f\xc8\x68\xa2\xf6\x9a\x02\x7d\x3f\x07\x4f\x19\x25\x5d\x19\x33\x1e\x4a\x5e\x5d\x6e\x56\x18\x72\xc6\xe4\xcf\x1f\x7f\x70\x3e\xdb\x37\x5b\xff\x80\x2a\x53\xc4\x2b\x66\xcc\xe7\xce\x05\x20\xb0\xfe\x23\x80\x77\x2b\x24\x17\x23\x70\x3c\xfa\x95\x4d\x7e\xd1\x6b\xc6\xb6\xae\x7c\xee\x44\x6a\x02\x66\x40\xec\xad\x03\xb6\x60\x94\x1e\x5c\x00\xf9\x0f\xce\x09\xb7\x7c\x79\xe7\x74\x85\x66\x1d\xf7\xab\xc9\xc2\x59\x8f\x86\xf9\xee\x76\x89\x45\xf8\x17\x62\xa2\xf1\x72\x35\x69\x49\xc4\xeb\x6b\x32\xdf\x9d\x9a\xf4\x2d\x02\x95\x55\xe5\xa2\x2b\x6a\xaa\xcb\xa5\x62\x4e\xab\x4c\x5f\xea\x7a\x9b\x68\x5d\xa2\x72\x5d\xe1\x98\xcd\xb3\xfc\xa4\x79\x84\xf4\x8d\x3b\xf5\x5d\xd4\x32\xd5\xa8\xf9\x20\xc2\x37\x38\x66\x2b\xcd\xec\x61\xee\x32\xfe\x6c\x16\xd8\xdc\x96\x16\x7a\xc6\x31\x16\x72\xa3\x03\x73\xdc\xf7\x94\xc9\xc1\x8c\xad\x69\x94\x61\xf0\x6f\x86\x84\xce\xaa\x56\x3b\x27\xdd\x94\xef\xf5\x69\xed\xeb\x7d\x1e\xb7\x36\x81\x45\xcb\xb5\x25\x3b\x5c\xc6\xf4\xd9\x4b\x83\x33\xe9\x93\x39\x9f\x4a\x54\x78\x57\x73\x2d\x88\x96\x32\xf6\xbe\x2a\xdb\x6d\x57\x9f\x33\x68\xfa\xc1\x0a\xf3\x19\xe3\x4b\x4f\xfa\xfe\x16\x3e\xfc\x96\xa7\xfa\x24\xc9\x89\xcd\x56\xca\xa4\x9c\x95\x51\x63\x9b\xdd\x13\x85\xf2\xf1\x50\xaa\x5f\xba\xb3\x66\xd5\xd7\x3f\x3f\xe2\x29\xe3\x51\x3e\x5d\xb9\x0f\x6b\x2e\x69\xc9\xdc\x80\x16\xe7\x9a\xd5\xa5\x89\x79\x4a\xaa\xdd\x23\x5f\x65\x94\x1b\xdb\x3b\x7d\x72\xaa\xee\x0a\x80\xc2\x18\xa5\xa7\x01\xb0\x8e\x03\x82\xd4\xd8\x30\xba\x94\x3e\x74\xe5\x3a\x8c\x5c\x72\x1d\x90\x99\x47\xfd\xe4\x9a\x53\x47\xe5\x75\x8f\xa8\x59\x2b\x40\x17\x46\xc9\x51\x3e\x64\xcf\x4b\x50\x7c\x6b\x03\xc1\xdf\x2a\xae\xf7\xc0\x25\x12\xd7\x3d\x70\x24\x8f\x40\x8f\x32\xd9\xd3\x73\xb8\x37\x63\xbc\x97\xb5\xdb\x03\x47\xd4\xb9\x7a\xea\x40\x04\x53\x16\xe1\x10\xbc\x18\xbe\x00\xc5\xeb\x5e\x4c\xf7\x57\xab\x98\x24\x7d\x36\xdc\x6c\x53\x5f\x8a\xda\x4b\x5c\xda\x87\xf2\x58\xcb\xbc\xaf\x35\x9e\xa5\x69\xe5\x18\x9b\x4d\xb3\xea\x20\x3f\x89\x0a\x96\x5b\xf3\x84\x6a\xa6\x8c\x43\xd4\x5a\x7b\xc5\x1c\xdc\x13\xc7\x9a\xdc\xe5\x0b\xd0\x1f\x99\x46\x46\x65\xaa\x63\xfa\xfa\x3b\xf9\x54\x57\xa4\xb2\xc3\x5d\xd6\xa0\xeb\x38\x76\xef\x07\x8a\x48\xd4\x70\x3d\x90\x49\xd6\xad\xdb\x0f\x88\xb8\xc4\x42\x2a\x63\xd8\x1e\xd7\x13\x53\xd5\xe4\x25\xf3\x86\x70\xa8\x24\x51\xcb\x4d\x43\x5d\x99\xd7\xf6\x50\x3f\xe5\x6f\x18\xec\x25\xb7\xed\xb3\x59\x4f\x06\xaf\x27\x8c\x4b\x3d\xbd\x6c\xee\xf4\xce\x2d\xe0\xb6\xe9\x91\x2a\x46\xad\x37\x70\x95\xae\x86\xac\x59\xfc\xd2\x72\x8f\x6b\xc1\x56\xb0\x8b\x74\x97\xbf\x06\x61\xd9\x7c\x65\xd2\x04\xcf\x18\xc7\x3f\x36\x2d\x7a\xe5\x7b\x76\x40\xc3\x3a\x69\x7b\x7a\xf1\xcf\x73\x65\x14\x2d\xcc\xd9\x06\xf7\xfe\x74\xdd\x59\x2b\x5f\x5f\xc7\x71\x7a\x07\x8b\xd6\x14\x1b\x0b\x9a\x1b\xa9\x72\x0b\x25\x2d\x2d\x94\x5d\xc6\xfb\x38\x51\x78\xbb\xde\x2c\xf9\xf9\xca\xd2\x97\x57\x87\x50\x47\x7e\xf8\x22\xd7\x58\x42\x7d\x73\xf1\x8f\xa5\x75\xd9\xf5\x12\x26\xc7\xe2\x4d\x04\xb7\xbd\xf3\x39\x66\x28\xf2\x5a\x75\xa7\xdc\x96\xcd\xd6\x1f\x65\xf5\xe5\xbf\xd4\xdd\x0f\x57\x52\x04\x7f\x34\xbe\x8e\x46\x5d\x10\xba\x00\xaf\x5d\x6b\xa5\x00\xf6\x3a\x97\xb7\x22\xa7\x4d\xa6\x5a\x1b\x2d\x68\x6d\x96\xe9\x8b\xf0\xb9\xa2\x99\xa7\xa5\x94\xb4\xa4\xa3\x9e\x07\x2b\x3a\xd8\x69\x82\x10\x93\x13\xe1\x31\xcd\x85\x2f\x2d\x0f\x3b\x98\x03\xbb\x18\x03\x55\x3a\xf7\xeb\x38\x2e\x0c\xdd\xe7\xaa\xda\x99\xfd\xf7\xb5\x14\x31\xad\xde\xbc\x4b\x9a\xdd\x71\x59\x28\x25\xc0\xc8\x55\xe6\xec\x0a\x04\x98\x8a\x35\xc7\xff\x88\x7f\x15\xa5\xd9\x5d\xb5\x54\xa0\x38\xf6\xae\x5c\xa8\x1f\x10\x9d\xaf\xd1\x1c\x7b\x40\xdf\x03\x8c\x27\x48\x5f\xa9\x53\x53\x44\x2e\x63\x53\x60\xec\xb7\xe9\x7d\x25\xce\xfe\xa2\xd4\xe6\x38\x22\x1c\x4f\x65\x49\x4b\x72\xaf\x9a\xcd\x6e\x99\x6d\xea\xb8\x71\x44\xed\xb9\xa2\xd2\xa8\x8b\x34\x2e\x5b\x3b\x2a\x2a\x69\x9a\x08\xd1\xa4\xac\x34\x28\x1b\xc6\x5c\x6f\x50\x34\xa0\xd8\xd0\xe9\x25\xab\xb9\x25\xdb\x18\xa4\xa5\x6e\x15\x2e\x35\x0e\x94\x05\x78\x60\x30\xe6\x6b\x1a\x50\xfc\x49\xe6\x1c\x91\xfd\x3e\xb0\xed\x82\xc3\x30\x94\xa7\x38\xbd\xd7\xd8\xbd\x18\xd9\x1f\x55\xbe\x4f\x41\xcd\xfd\x4a\x0d\x97\x8c\xe7\x72\x96\x14\xd0\xf2\x70\xa7\x0b\x51\x53\x43\x83\xe3\x19\xc7\x62\xa1\x59\xa0\xc4\xf6\xf6\x63\xfd\xe5\xa3\x0e\xb3\xff\xd1\x17\x21\xcd\x94\xff\x65\xba\xfd\x90\x75\xc8\x64\x11\xee\xba\x0c\xb5\x0f\x90\xcd\xca\x34\xec\x32\x34\xa5\x54\xc1\x5f\xf5\x5e\xf6\x1d\x5c\x45\xcd\x57\x49\x62\x4e\x50\x4c\x7e\xc7\x15\x93\xe1\x2e\xf1\xe6\x8f\x92\xdb\x82\x4c\xb2\x5d\x25\xa6\x4b\x0e\x28\xe8\x78\x91\x7e\x5b\x63\xbe\x39\x47\x1c\x2d\x45\x26\x85\xdc\x5b\xbf\x1a\x44\x01\x14\x21\x0e\x92\x86\x21\x0f\xbf\xbf\xf8\xe9\x43\x60\xb6\x9c\xc8\x6c\xe3\x5d\x09\x88\xee\xef\xd3\x69\x3d\xae\x48\xff\xe9\xca\x31\xa3\x6c\xda\x5d\x0a\x0e\xef\x8c\xb6\xad\x49\x5a\xab\x70\x97\xd7\xe4\xb2\x9a\x9d\xdc\x9c\x9e\x4b\x7f\x35\xee\xea\xdb\xec\x7a\x07\x7e\x81\xdd\x8e\x9d\x2d\x91\xa7\xe0\xb4\xca\xbc\x8b\xaa\x87\x81\x9e\x8c\x99\xfa\x53\x91\x80\xaa\xf6\x8a\x3c\x1d\xcf\x87\x61\x86\xdf\x48\x6e\xdb\xb4\x18\x87\x2a\xd9\xc6\xcf\xbe\x4a\xca\x87\x92\xb9\x86\x57\x0b\x59\x1b\x73\xb7\x51\xb5\x32\x6a\x67\x0b\xf2\xcc\x25\x7c\x41\x7c\x9f\xe5\x72\x9d\xd5\x99\x94\xff\x4c\xba\x54\x04\x4f\x3f\x54\x19\x93\x67\xf9\x74\x95\xb2\xd2\x58\xcc\x93\x20\x57\x69\x3d\x90\xb3\xb5\xd8\x6d\x51\xc9\x91\xa0\xd8\xf5\x6e\xec\xfb\xc7\x5c\xe2\xf3\x0e\xd9\x6c\xc3\xcc\x72\x7a\x93\xd7\x21\x8d\x15\x2c\x14\xba\x48\xb2\x0f\x67\x65\x73\x61\x87\xc0\xcf\x27\x28\x2d\x80\xbf\xcd\xe5\xa4\x74\x9a\x73\xb3\x9f\xa6\x35\x96\x92\x07\xe6\xaf\xe4\x6b\xe4\x71\x18\x13\x21\x93\xaa\x9c\x04\xe8\x15\x55\xbc\x8e\x63\x57\xd1\xd9\x36\xed\x72\x39\xca\xce\xeb\x38\x6e\xd2\x85\x2e\xb2\x24\xce\x15\x95\x38\x69\x9c\x8b\x84\xa9\x9f\x19\xf9\xf4\xae\x9f\x35\x0d\x77\xf1\xd9\x24\x3f\x93\xb1\x87\xe5\xb1\x84\x15\x83\xd1\x6d\xe6\xd5\x45\xda\xef\xd1\xf4\x6b\xde\x06\xcc\xe9\x46\x55\xcb\x48\x17\xef\xa3\x8d\xeb\x29\xe6\xa6\xad\x81\x2c\xba\x2d\x73\x39\x79\x8b\xfb\x89\xe9\xad\xb7\xb5\x22\xc4\x84\xbb\x48\x67\xfb\xf8\xa0\x2c\x52\x94\xf2\x50\x98\x57\xdf\x6b\xec\x92\x79\x45\x77\x90\x29\xb4\x24\x53\xdc\x58\xfc\x4e\x6e\x4f\x9a\xcd\xe3\xef\xcd\x39\x85\x86\xa9\xbc\xdb\x5c\x2d\xf8\x49\xab\xe7\xdc\x43\xfc\xa4\x8a\x60\xd5\x73\xad\xbb\xe7\x34\x9d\x58\xe9\x32\xfa\x07\x99\x56\x3b\x68\xbd\x05\x4d\xeb\x51\xf4\xac\x0a\x2f\x6d\xa3\x7e\xf4\x05\xf4\x9c\x8e\x4a\x8d\x13\xb3\xf3\x6d\xed\x93\x52\x50\xc2\x39\x9a\xe3\x2c\x1c\x41\x8b\x91\x07\x87\x1c\xd4\xa6\x30\xb4\x54\x48\x23\xc4\xf6\xdc\x53\xf9\xe7\x96\x6a\xce\x3e\x2f\xa7\xd2\xc8\x8f\xf7\x71\x12\xf9\xd7\x3a\xec\x26\xe4\x5b\x73\xd3\x40\xfb\xf6\x09\x9d\x7f\x61\x17\x51\xe6\x72\xa8\x62\xdc\xd4\x0b\xc4\xc5\xb1\xa1\x47\x35\x12\xb9\x72\x6e\xf4\x48\xf7\x90\x11\xc5\xb2\xc9\x73\x0f\x3d\xed\x8b\xad\x9a\x53\x87\x48\xc9\xc5\xe8\xce\x49\x50\x07\xa2\x29\x48\x73\x8b\x01\x93\x8a\x4b\x60\x3e\x3b\x67\x5c\x8e\x80\xfa\x17\x6c\x21\x65\x7c\x59\x74\xb8\xa9\xe1\x26\x33\xef\x50\xa6\x2e\x34\x7c\xdb\xa3\xc1\x6b\x43\x48\x23\xc1\xae\xee\x6c\x56\x3a\x2d\xb1\xb6\x63\xff\x40\x2e\x38\xbb\xed\xa1\xc0\x26\x10\x08\xc1\x47\xfc\xdb\x1a\x0b\x89\xa3\xde\x6b\x35\x86\xbd\x5b\x24\x9c\x08\x2c\x42\x7b\x02\xcb\x1e\x9b\xf5\x50\x92\xfa\xc7\x94\x13\x00\xa2\x84\x5e\x32\x78\x7f\x16\xca\xe0\x03\x5a\x62\x28\x83\xb3\x14\xb7\x50\x06\x97\x68\x2e\xfa\x7d\xf3\x37\x88\xa6\x50\x06\x1f\xf5\xbd\x5d\xc5\x4f\xe6\x36\x2f\xf5\x79\xa5\x93\x04\x17\xbf\x2b\xa6\x72\xbd\xe9\x1a\x7d\x87\x2e\x1f\xb1\x58\x31\x2a\xf2\xf4\xd1\x5c\x63\x59\x42\x84\xa9\xd3\xdd\x32\x01\xe4\x96\x43\xc4\xdf\x9e\x9f\x8a\xc1\xf3\xd1\xd0\x87\x2c\x7c\xfe\x8a\xfd\x55\xbc\x62\x47\x47\x3e\xbf\x62\x83\xe7\xe3\x0c\xec\x8a\x8d\x0f\x9a\xb7\xfc\xaf\x74\x9b\xc1\x8f\x9a\xad\xc5\xfd\xfd\xd5\x78\xac\xd6\x87\x29\x92\x1e\xf2\xb8\xef\xbb\x1d\xbe\x20\x74\x1e\xd7\x75\x5b\xdf\xe3\x66\x3b\xce\xcb\x1d\x67\xb6\xe3\xfc\x6f\x2f\x4e\xf9\xe0\x85\xea\x78\x1c\xbe\x78\x15\xff\x95\xbf\x8a\x8f\x8e\x7c\x76\x15\x0f\x5e\xb8\x1d\x8f\x3b\x76\x3c\xd1\xb4\xcd\x31\x4e\xe1\x43\xe1\xf4\x9f\xf9\xb5\x1e\xc7\xdc\x04\x6f\x0b\x9a\xad\x93\x06\x5f\x22\xf8\x3e\x73\x75\x37\x2e\x3c\x76\x52\xe6\x8e\xb1\x8e\x74\x44\xa2\x3d\x1b\x6b\x62\x1b\xcd\xab\x0b\x13\xe7\x58\x3f\x27\xd3\x49\x91\x95\xce\xa5\x5b\x76\xd2\x1e\x43\xb7\x46\xff\xfe\xfe\x6e\xeb\xe7\x43\xea\x71\x62\xcc\xd4\x00\x05\xe0\x08\xfb\x10\x85\x77\xba\xcb\x78\x9b\x8c\xb3\xdb\x1e\xd5\xf9\xf7\xdf\xa2\xe9\xa2\xca\x54\x43\x57\x78\x1c\xd2\x2b\x3c\xde\xfa\x10\x05\x1f\x93\xe3\x57\xa1\xe9\x7e\xfa\x6c\x26\xa2\xf3\xe2\x0a\x8f\x21\xda\xfa\x50\x06\xdf\xb3\x89\x55\xf4\x42\xba\x8e\xe3\xc3\xd0\x7d\x75\xea\x3e\x8c\x72\x58\x7c\xcf\x26\x81\xfd\x00\x54\x3d\xe7\x31\x22\x54\x5f\xfe\x6b\x6a\x78\x7f\x06\x8d\x4c\xd1\x6e\xfe\xd0\xf9\x7d\x7f\x5f\xaa\x28\xdb\xbd\xf3\x3b\x6e\x19\x38\xfb\x01\xd0\xb6\x57\xda\x36\xa8\xe8\xc7\x58\x75\xf5\x27\xf7\xaa\x62\xa7\xb7\x3f\xea\xec\x9c\x97\x49\xf6\x96\xd0\x7d\xf3\xaf\x27\xf8\x2f\xb9\x22\xe1\x8f\x48\x2e\x82\x59\xcc\x18\xf7\xdc\xf7\xc7\x27\xf8\x2f\xbe\x16\x94\x49\xae\xad\xb7\xfa\x20\x5c\xe8\xb9\xef\x2e\x39\x9a\x5e\x63\x6e\x78\xc6\x14\x50\x34\x2c\xa7\x70\x52\x92\xb9\xfc\xfa\xb4\xea\xe5\x48\x8d\x9f\x42\x16\x7f\x92\x85\x1a\xf2\xaf\x4e\x8b\x2f\x12\xc8\x77\x2c\x8e\xd9\xed\xcf\xab\xcc\xd5\xa2\xa1\xcd\xeb\xb5\x7e\xfd\xfe\xec\xb4\xf8\xc2\x42\x17\xa5\x7b\x07\x61\xd3\x21\x16\xd5\x2d\xff\xab\xd0\x6a\x47\x41\x5d\xe6\x78\xc9\x6e\xf0\x80\x6b\x0b\xfa\x4b\x27\x6f\xb3\xc7\x0a\xff\x13\x6f\x46\xe0\xfd\x19\x80\xd7\x78\xf3\x8e\xf1\xd7\xc9\xa1\xde\xca\x20\xb0\x60\x8a\x96\x58\xa1\xe0\x29\x75\x73\x45\x24\x32\x0f\x5b\x0b\xed\xda\x69\x95\xae\x10\x1c\x08\x42\xe7\xeb\x18\xf1\xa4\x92\xca\xfa\x8e\x54\x8f\xac\x08\x01\xd6\x83\xa3\xcf\x63\x9c\xd2\x60\x15\xaf\xb9\x2d\x36\xa2\x5b\xb8\x5a\x8b\x45\x72\x8f\x45\xa5\xf3\x45\x6f\x73\x87\x5a\xd1\x19\x5d\x8d\xa1\xbd\xb7\x2e\x1a\x5d\x8d\xb7\x07\xae\x74\x92\x15\xd2\x49\x98\x5a\x78\x48\x8d\xdd\xac\x26\xdf\x3b\xce\x96\xb6\xc1\xff\xc4\x1b\x4f\xa8\xb5\x5a\x99\xbb\xc9\xe0\x2a\xeb\x8b\xab\x75\x10\x67\xb6\x36\x4f\x42\x04\x96\xe8\x1a\x9b\x25\x53\x5e\x89\x71\xb5\x3c\x34\x7a\x23\x0b\x52\xb1\xee\xc5\x10\xab\x45\x50\xe9\x2a\x0a\x0d\xa8\xf4\x99\x04\x0f\x1d\xd4\xae\x5f\xeb\x7b\x93\x3c\xea\x43\x6e\xea\x20\xaf\x3c\x12\xa2\xb4\xa0\xef\xde\xab\x44\x72\x46\xed\xd7\x53\x61\x95\xf2\xb1\xb5\xa7\x60\x74\x77\x91\xab\x8a\xbc\x33\x46\x4d\xa5\x2e\xe2\x8e\x67\xa7\x78\x73\x63\x14\xaf\xe3\xf8\x42\x99\x4c\xaa\x8a\x6c\x0c\x95\x89\x84\x24\xf2\x21\xdd\xc2\xb4\x48\x5e\xf5\x41\xa6\xc1\xb2\xb6\xf6\xb7\xe7\xfd\xbe\xb9\xa6\xe7\x30\x74\x54\x9b\xe7\xe3\x53\xf7\xa1\x72\x5b\x1e\xf2\x30\x71\x53\xac\x36\x1e\x4a\x32\x57\xd4\xef\xe2\xda\xdc\xf4\xe6\x34\xe1\x01\x0e\x56\x18\x5f\x2b\xab\x4f\xee\x08\x9a\x94\x16\x15\x1c\x97\x6a\xed\x5c\xab\x5d\x9d\x6a\x0c\xc3\xbc\x1e\x60\x3b\x88\x4e\x79\x60\x64\x98\x99\x58\x1e\xf2\x0b\x07\x27\xb1\x71\x9b\xc2\x9a\xd9\x54\x2d\x74\x22\x24\x16\xd8\x0a\x8c\x9c\xf8\xe8\x20\x98\x33\x07\xfe\x53\xd2\x02\xad\x9e\x67\xfd\x58\x1f\xcc\x2d\xd0\x20\xd3\x4f\xba\x2a\x75\xf9\xec\x11\xcd\xca\x5d\xe2\xc6\xde\x49\xb9\xb3\xb7\xd8\x29\xe5\x2e\xbf\x67\x8b\x84\x20\x73\xea\x25\xea\x1e\xa4\xfa\xd8\xdd\x1e\xa9\x4e\x25\x0b\x0e\x7f\x92\x1c\x4d\xa5\xbb\x84\xd5\xb8\xf3\x2b\xef\x85\xc2\x99\x74\xf1\xb3\xdc\x09\xc9\x4d\x81\xc8\x40\xd9\x36\xde\x47\xba\xbe\x6a\x8a\xba\xfe\xfa\xbb\x98\xd0\x6b\x1d\xf0\x13\xeb\xcc\xb9\xe0\x18\x1c\xd1\x23\xe0\x70\x75\xee\x7c\x10\x38\x42\xdb\xed\xb6\x84\x5b\xa7\x79\x92\x4f\x54\xfe\x84\xe6\x4a\xf3\x44\x00\xc3\xe1\xf0\x64\xa0\xff\xbf\x1c\x0e\x47\xfa\xff\xff\xd7\x1c\xdd\x7c\xc7\xf8\x14\x9f\x61\x14\xc5\x84\xe2\x7e\xdf\x2b\xbc\xd1\x36\x42\x05\x23\xb4\xd3\x0a\x3b\x37\xf4\x3d\x1d\x3a\x35\x5b\x96\xad\xe2\xe4\x5d\x2e\x8d\x4f\x4e\x94\x14\x3f\x56\x4b\x90\x46\xf1\x90\x9b\xeb\xf9\xda\xb4\x70\xd1\x55\xee\x99\x04\xa9\x33\xbe\x76\x67\xa8\x2c\x03\xcf\xd3\x61\xa7\xf6\x5e\xbb\xfb\x7b\x4f\xa8\xe3\x75\x9c\x5e\xc3\x5a\xdd\xc6\x3b\x17\xb3\x97\x32\x8a\x82\x86\xbb\xad\xc4\xe9\x8e\x6d\xe7\x65\xd8\x42\xa4\xd3\xe4\x73\x9d\x2c\x47\xc0\xe6\xb5\xca\xbc\x2d\x85\xc4\x0c\xb6\xe1\x2c\xee\x23\x55\xea\xfb\xfd\xee\x4d\x49\xd5\x54\x5a\x47\xda\xd8\x03\xa6\x87\x73\x2f\xf0\x53\x62\x34\xab\xc4\x51\xab\xbd\x55\xa8\x6e\xca\x9e\xf9\x87\xb1\x5e\xeb\xfc\xab\x3a\xf7\x60\x62\x63\x26\xdb\x94\x05\xb6\x70\xe4\x74\x5e\xba\x6e\x21\x86\x77\x67\x64\x36\x1b\xd1\x40\xfd\x11\xfd\xbe\xfd\x71\x25\xc7\xf0\xfd\xd9\x08\x07\xef\xcf\x8e\xc0\x00\x1c\xe1\xa4\x6e\xa8\x39\x77\x54\x64\x79\x55\x10\xe2\x3a\x7e\xbf\x58\x4f\x96\x44\xea\x3c\x2b\x8e\xab\x08\x07\xd9\x7b\xe3\x2a\xca\x9e\x4d\xce\x60\xb7\xc4\xbf\x9e\xe0\xbf\xe8\x6d\xa8\xb2\x03\x58\x93\x82\x5b\x62\x74\xe3\x87\x9d\x37\x78\xe8\x6a\x39\xd2\x71\xbd\x03\x9b\xff\xa5\x79\x5b\x07\x66\x7b\x19\xe9\xb8\x67\xe4\xca\x54\x37\x74\x8a\x8f\xc0\x29\x38\x42\x23\xbc\xf3\xf6\x8c\x3d\x80\x5e\xde\x2d\x2c\xed\xac\x94\x8c\xf3\xc4\x34\x52\xc6\xff\xc5\x66\x39\x61\x71\x40\x24\xe6\x48\x32\xde\x23\x89\x3c\x70\x0a\x56\xa9\xb1\x57\x63\x88\xc2\xc3\x21\x14\xe1\xe1\x09\xe4\xa1\x31\x69\x0f\x24\xdf\xa4\x96\x3f\x83\x71\x88\xaf\x0a\xf5\x8f\x3d\xff\xd5\xa1\x87\x42\x8f\x85\xb1\x39\xed\xe0\xfb\x41\xc4\x28\xf6\xfb\x7d\x8f\x1a\xa3\x9e\x05\x1a\x4b\x1f\x1e\xca\xfb\x7b\x6a\xed\xe6\xc3\x30\x94\xfe\x2b\xd5\xa4\xff\x6a\x6b\xf6\x2a\xb1\x7f\x27\x54\x17\x78\x88\xb7\x33\xb5\x92\xc6\x9b\x3b\xd5\x81\x43\xd4\xef\xc7\x81\xe9\x7b\xf6\xcb\xf3\xd3\x42\x64\xe6\x09\xdf\x6c\x20\xf1\xed\x36\x75\x39\x18\xad\xda\xbc\xa7\xf8\xb6\x77\xb9\x59\x61\xbb\x81\xfe\x9e\xde\xa0\x98\x44\x3d\x24\x25\x5e\xae\x64\x4f\xb2\x5e\x84\x45\x72\x29\x5c\x8f\x32\x3a\xd0\x18\x4e\xe2\xec\xec\x32\xf0\xb7\x5b\xcf\x6f\x4c\xe4\x69\x65\xc0\x0a\x71\xb4\xc4\x52\x1b\xa9\xd1\x08\x9c\xbb\x8f\xdf\xb3\x49\x17\x73\x2e\x9d\x7a\xe9\x0e\x96\x7e\x4a\x34\x22\xbd\x66\xd5\x2f\x58\xf9\xd5\xea\xfd\x59\x71\xbd\x3a\x47\x1c\x53\xa9\x3d\x9e\xc9\xcf\x8a\x5a\x92\x4f\x0d\x75\x8d\x9c\x0a\xac\xab\xd5\x2e\x50\xd9\x7a\x98\xdc\xaf\xeb\x1e\x02\x37\x2c\xa9\xb5\xf0\xe4\xf3\x99\xb9\x85\x2c\xcc\xde\x38\xb0\x8a\x4d\x4c\xbf\x73\x94\xac\xab\xd2\x2d\xe6\xd4\x5b\x80\xae\xa8\xd0\xb6\xf3\x3d\x9b\x58\x34\x6c\x8c\xa3\xb1\xef\x1c\xe7\x62\x3e\x9e\x09\xde\xe5\x1e\x47\x57\x6e\x15\x95\xcb\xdc\x0e\xf6\xa5\x4b\xfc\xc2\xf1\x21\xf7\xd3\x69\xee\xc9\x5e\x1d\xad\xe6\x92\xe3\xe7\x62\x35\xd6\x2a\xf7\x83\xc9\x9a\xc4\xd1\xcf\x1f\x7f\xf0\x38\x34\xe3\x06\x41\x76\xe4\x00\xf8\x81\x58\xc5\x44\x7a\xe0\x14\xf8\x30\x0e\x85\xc7\xe0\x89\x7f\x35\x1c\x57\xda\xac\xad\x3e\x39\xd8\x68\xd5\x22\x2f\x3e\x02\xc7\xf9\xbb\x9a\xb2\x1b\xf8\xe9\xd6\xdf\x6e\x61\x12\xf2\x53\x03\x9c\x85\x6c\xb9\x90\x30\x52\x6b\xa1\xbd\x09\x34\x17\x28\x5b\x5d\x4b\x2e\x14\xbf\xd4\x05\x37\x38\xb7\x1a\xde\x8d\x32\x2d\xc1\xd7\x1e\x08\x70\x17\xad\x9a\xbb\x91\xbf\xad\xa2\xe3\xee\x14\x7c\x30\xa9\xae\x5a\xf1\xa8\xba\xca\xf8\x49\xa8\x6b\xfa\xc6\x61\xf0\xe6\xfd\xd9\x47\x00\xc9\x6a\x04\xde\x9f\x03\x7b\x9b\x30\xf8\xf1\x3b\x22\x05\xe8\x32\x4a\x4d\x97\x01\x3f\x4d\xeb\xa7\x52\xeb\xba\x7b\x9d\xdd\xad\x27\xbb\xf1\x67\xcd\xed\x9d\x4f\x62\x68\xf5\x3d\x16\x40\x29\x9b\x42\xa2\xe5\xaa\xeb\x48\x3e\x25\x4c\x9a\x13\xc8\x58\x3c\x9d\x1b\x23\x81\xfe\x05\xb2\x9b\x16\xc1\x3f\x2e\x2f\xcf\x75\xec\x4e\x07\x9d\xc3\x5e\xa4\x56\x6f\xad\x9e\x65\x69\x55\x3b\xbb\x7c\x0a\xce\x9e\xe4\x96\x37\x1d\x1f\x90\x18\xae\xfe\xe7\xad\x90\xce\x0a\x67\xd7\xa3\xc6\xf5\xa5\x7a\x09\xa4\xce\x12\x48\x61\x85\x7b\xb6\xb8\x22\x16\xd6\xa8\xed\xb6\xee\x98\xa5\xcb\x39\x55\x17\x77\x3d\x6d\x09\xe1\x86\x50\xed\x6e\xab\x37\xdf\xcb\xf5\xc4\x31\x77\xe3\x25\x9c\x00\x87\x2c\x66\xa2\x1c\x2d\x91\x2f\x96\x44\x4c\x54\x44\x3f\x44\x36\xfa\x41\xbf\x32\x8a\x78\xf6\x94\x44\x2d\x9c\xe7\x6e\xe0\xb2\x10\xfa\x21\x01\x30\x0f\x0f\x8e\x53\xa8\xb9\xed\xea\x49\x88\xef\xe9\x6a\x3d\x02\x6f\xce\x7f\x06\xc9\x0d\x55\xc0\xe4\xe7\xfd\xf1\x3b\x60\x2e\xa5\x02\x67\x44\x5c\xab\x27\x7d\x0b\x15\x78\xff\xd3\xf9\x45\x17\x19\x5f\x77\x5d\xd4\x93\x40\x3a\xb9\x3e\x49\xe1\xb6\x8a\xd1\xe6\x47\xf3\xdc\x69\x03\xd0\xe1\xd6\x46\x1e\x75\x38\x73\x77\x8e\xd9\xe1\x8e\xa6\x27\x3e\xbb\xcf\xab\xaf\x15\x0a\x73\x5f\x08\xd6\xe1\x92\x30\xc2\x31\x96\xb8\x57\xfc\xf6\x79\x14\xdc\x2b\x72\x5d\xea\x04\xf3\x55\x0e\x5e\x1c\xe4\x12\x59\xbb\x31\x0d\x32\xff\xc9\x6c\xe9\x7c\xac\x4a\x7f\xfd\xff\xb1\xf7\xf7\xcb\x6d\xe3\xc8\xde\x38\xfe\xff\x5c\x05\x86\x5b\xbf\x59\xbb\x86\x92\x25\xbf\xc5\xf1\x6e\x76\x7f\x8e\x9d\x8c\x93\x8d\x1d\x4f\xec\x64\x36\x93\x4d\x9d\x82\x48\x48\x42\x4c\x11\x1a\x10\xb4\xec\x64\x53\xf5\xdc\xc3\xb9\xc3\x73\x25\xdf\xc2\x0b\x49\x90\x04\x49\x50\x6f\x4e\x76\x3d\xcf\xb3\x27\x96\x44\x02\x8d\x46\xa3\xd1\x68\x74\x7f\xfa\x49\xe1\xd1\xee\x25\xfe\x8c\xce\x9e\xce\xcd\x60\x43\xcd\x83\x6f\x99\xc1\x75\xf7\x96\x69\xc5\x00\x79\x69\x99\x7e\x9c\xff\xc6\xb2\x8c\xe9\xfe\x6d\xf2\x26\x71\x80\xa4\xc1\x9d\xda\xcd\xc3\x46\x26\x48\x72\x5f\x78\x22\x02\x9c\xc5\x06\xa1\x09\xd9\xf1\xc5\xdb\x27\x61\xf7\xf8\xe2\xad\xf6\x9d\x90\xb7\xb0\x2b\xb7\x8f\x96\x02\x39\x1f\xbf\xcb\x30\xed\xdf\xce\x11\xfe\x48\x41\x97\xbf\x38\x71\x92\x13\x85\x02\x69\x77\x2e\xc5\xbf\x2f\x4e\x6c\xb6\x9f\x0b\x61\xd9\xbe\x38\x11\x0a\x54\x41\xa9\xbb\xc9\xd7\xc2\x31\x95\x57\x0c\xc9\x33\x6d\x18\xca\xcf\x3d\xd1\x16\xfc\x04\x6f\x4d\x51\x95\xfc\xfb\xc2\x53\x0b\x33\xb1\xf2\x85\xf4\x96\xf8\x0b\x0a\xe3\x89\xf4\x14\x1f\xfe\xd8\x73\x47\x88\x99\x72\x84\x92\x19\x68\x1a\x9b\x3c\xf0\xad\x0f\x81\xbd\x94\x66\x73\x29\x29\x49\x25\x25\x0e\xaf\x43\x32\x0b\x93\xa6\x4c\x11\x59\xda\xf9\x2e\x4d\xb7\x42\x9b\x5f\x5d\x1c\x9d\xa0\x9b\x8a\xb2\xf6\xfa\x18\xf2\x30\xdb\xa2\x26\x3c\x25\xbe\xd5\x8b\x53\x4a\xfc\x58\xd0\x23\xde\xbb\x42\xe5\x7a\x69\xc6\xf7\x18\xaa\x2e\x5c\x96\xce\x85\x94\x2a\x23\xa0\x5b\x22\x72\xe9\x8f\xd5\x6f\xad\x74\x1d\xab\xcf\x57\x5c\x4f\x1d\x3a\x11\x91\x91\x70\x7e\x27\xc0\xa3\x31\xab\xf6\xcb\x49\x4a\x27\xa4\x1c\x64\x20\xa9\x97\xbf\x94\x9f\x6c\x21\x8a\xf3\xc4\x27\xff\x20\xaf\xd8\x52\x79\xaa\xbd\x6a\x51\x9f\x9f\x73\xbd\xc4\x0e\xa1\x96\xef\xea\x48\x72\xbb\x24\x66\xd3\x58\x3d\xd0\x38\xd9\x32\x26\xa4\x36\xc5\x57\x14\x02\x47\x22\xd5\x77\x82\x23\xd4\x21\x62\x78\xfa\x73\x69\xae\x58\xb5\x22\x5f\x4a\x8e\x63\x71\x91\xd6\x63\x22\xd5\x25\x3e\xca\x5c\xc5\x62\x75\x1a\x63\xaa\x70\x12\xb4\x26\x13\xe1\xc5\x8e\x96\xdd\xde\xa6\xd3\x23\x6b\x70\xf0\x1d\x46\x30\xe9\x10\x76\x61\xcc\xc6\x44\x88\xa5\xca\xe8\xda\x10\x61\x6b\x19\x94\xd2\xcf\xce\x96\x4c\x06\xdb\x4a\x32\x27\x6b\xf2\xf7\x3f\x45\x9c\xac\x6a\xbc\xa3\x2f\x74\xea\x09\xcf\x17\xfa\x5a\x7a\x88\x69\xed\xc8\x54\xd4\x84\xf9\xc7\x63\x18\x8e\xd0\x86\x23\x09\xe8\xaa\x36\x9c\x4d\x97\xa9\x0a\x02\x19\xfa\x5c\x0d\xaf\x9a\x31\xe8\xb4\x18\xc0\xaf\x9b\x6e\x34\x26\x71\xe0\x5f\x8e\xc9\xec\xbc\xb2\xf9\xec\x95\xc6\xea\x4e\x3a\x42\x5e\x97\x11\x79\x3b\xac\x25\x73\xcb\x7b\x57\x81\x62\x42\x26\xc8\xc0\x3b\xfd\x6a\x09\x65\x80\xe6\x82\x01\x85\x60\xa9\x26\x32\xbf\x14\xf6\x41\x49\xab\x82\x9f\xe6\x67\x2d\x11\x63\x0d\x47\x7c\x22\x26\xd0\x3f\xca\xb7\x9e\x8b\xc2\xaa\x1a\x61\x92\x14\x86\x7d\xc7\xcd\xc2\x51\xd9\xbf\xff\x2d\xef\x9f\x44\x8a\x73\x81\x6a\x05\x51\xed\x5a\xb4\x98\x41\xed\x49\xa4\xbd\x72\x7e\xa3\xca\x29\x52\x77\xea\x49\x1d\x99\x27\x4f\xd8\xdd\x54\xc0\x5c\xff\x7d\xc3\x76\xb8\x4f\x98\x0d\x45\x6c\x73\xf3\xb0\x45\x93\x7a\xc1\x2e\x97\x6d\xfe\x60\x7a\x53\x06\x67\xbf\x60\x68\xa2\x54\x62\xa1\x15\x85\x60\x69\x4a\x16\x4e\x15\x27\x43\xb7\xac\x33\x41\x30\x8a\xa9\xb9\x8a\x4d\xee\x81\xaa\xf7\xbe\x3b\x43\xad\xce\xa4\x97\xdb\x85\x40\x0c\x5b\xbd\x81\xa6\x6c\xf5\xc2\x7a\x2c\xae\x3f\x35\xbc\x04\xff\x1d\x45\x11\x26\x61\x4e\x80\xae\xf8\x80\xa4\xc1\x6f\x12\xf8\xe4\xe0\x15\x07\xc1\x93\x27\xec\xef\xe6\x86\x4a\xf2\xa4\x35\xea\x6c\x1e\xda\xf5\xce\x57\xc3\xd7\xaf\xa2\xca\x75\x7e\xdf\x28\x01\xc3\x84\xe5\x64\x8c\xbe\x31\x19\xa3\xaf\x27\x63\xf4\x3f\x1e\x7e\xf1\x28\xf2\x51\xc8\x30\x0c\xa2\x43\x47\x65\xc4\x38\x22\x94\xee\xab\x1b\xe9\x20\x9f\x8a\xf4\x44\xbb\x44\x3f\xfd\xb4\x01\x3f\x38\xff\xec\x9c\x8b\xb9\x16\x54\x3b\x1f\x9f\x44\x9b\x6e\x1e\x07\x0f\xb9\xb9\x4b\x90\xd0\xfd\x32\x16\x3b\x4b\x74\x08\xbf\xd6\xc5\x5f\x4b\xd9\x12\x18\x15\x9d\x00\x47\x6c\x79\xc0\x13\x3f\xc8\xdc\x9d\x2f\x7a\x21\x5a\xb3\x40\x05\x86\xa2\xc3\x14\x41\xff\x75\x18\xdc\x55\x62\xfe\xca\x43\x9d\xfb\x63\x8f\x8f\x0c\x87\x38\x8f\x8f\xfb\xe4\xcb\xd7\xaf\x7c\xc1\xbd\x08\x7d\x74\xfb\x9c\x98\xa1\x4a\x3f\xa0\x8f\xff\xfe\x77\x5f\xc8\x9e\xe1\x39\x6e\x37\x31\x91\x12\x5a\xc5\xbd\x9b\x15\x15\xbf\xf8\xe2\x05\xc4\xbb\x3e\xfc\xf3\x5f\xa3\x9b\x11\xb8\x9d\x04\x61\xf4\xc4\x19\x33\x36\x3d\xdc\xda\x9a\xcd\x66\xdd\xd9\x4e\x97\xd0\xd1\xd6\x76\xaf\xd7\xe3\x34\x38\x60\x86\x7d\x36\x7e\xe2\x1c\x38\x60\x8c\xb8\x19\x2e\xfe\xbc\xc1\x68\xf6\x94\xdc\x3e\x71\x7a\xa0\x07\x0e\xc0\x81\xf3\xb7\xbf\x4e\x21\x1b\x03\xff\x89\x73\xb6\x0b\x7a\xc7\xfd\xee\x01\xe0\x3f\xc9\x7f\x77\x23\xfe\xef\xae\xfc\x7f\x1d\xf1\x77\x47\xfc\xdb\xe1\xff\xee\x7e\x9e\xf4\x40\xdf\xeb\x77\xf7\xf7\x41\x0f\xec\x80\x7e\x77\x67\x17\xec\x80\x9d\xcb\x3d\xfe\xcd\x23\xb0\x0b\x1e\x81\x3e\x10\x1f\xfa\xa2\xa9\x9d\xdd\xce\x0e\xd8\xe9\xec\x7c\x9e\x74\xba\x7b\xa0\x7f\xb3\xdd\xdd\xde\x0e\xba\xfd\xfd\x6e\x7f\xa7\xbb\xd7\xdd\xeb\xee\xec\x76\x77\x0e\xba\x8f\xb6\x3b\xe2\x7f\x3b\x07\x1d\xfe\x86\xfa\xdf\xbb\xed\x6e\x6f\x7b\xdc\xe9\x7f\x76\xb6\xfe\xf6\x57\x3e\xc0\xbf\xfd\xd9\x1d\x63\x6e\xd8\xdc\xad\x90\x25\x3d\xd0\xbb\xd9\x1d\xef\xbe\xeb\x9d\xf6\x3e\x4f\xf6\xc0\xf6\xcd\xce\xe9\xf6\x4d\x7f\xbc\xfb\x6e\xfb\x74\xef\xf3\x64\x5b\x7c\xb1\x2b\xbe\xd8\x3d\x7d\xa4\x93\xe6\x4c\x90\x8f\x61\x67\x0a\xe3\x08\x39\x2b\x24\xb0\x0f\xfa\x37\xfb\xe3\xed\x77\xfd\xd3\xfe\xe7\xc9\x2e\xe8\xa9\x0f\x7b\x26\x5a\x02\x78\xb7\x72\x52\x82\xfd\xce\x4e\x67\xbf\xb3\xa3\xf7\x3f\x83\x54\x5c\x0a\xaf\xae\xeb\x9d\x6e\xef\x31\xe8\x79\x9d\x6e\x6f\x1f\xf4\x3a\xdd\x7e\xb7\xb7\xdb\xe1\x42\xd5\x7b\xfc\xaa\xdb\xdb\x06\xfb\xdd\xc7\xfc\xb7\xed\x6e\x6f\xaf\xd3\xed\xed\x74\xfb\x3b\xf2\x9f\xc7\x37\xdd\x83\xbe\xd7\x03\xdd\xde\x5e\xb7\xb7\xdb\xed\x3d\x96\xff\x7f\xbc\xcf\xbf\xee\xf6\xf6\x00\xff\xe9\x71\x47\xfe\xd6\xe9\xf6\x1e\xdf\x74\xc4\x0b\x1d\xd9\x50\xbf\xd3\xed\xef\xf2\x96\x3a\xdd\xfe\xe3\x57\xbb\xdd\x5e\xbf\xdb\x7b\x7c\xd4\xed\xef\x6e\xf3\xff\x89\x65\xd4\x03\x3b\xdd\x83\x03\xd0\x1b\xf3\x17\x3f\x9f\xed\x80\x9d\x71\xff\x66\xfb\x74\xe7\xdd\x0e\x5f\x3b\xfc\x43\xff\x74\xe7\xdd\xbe\xc6\xad\xaf\x26\x9d\xc2\xd0\x64\x2a\xea\x1c\xe7\xa3\x91\x56\x06\x06\x74\x7a\x75\xf6\xea\x29\xa4\x51\x37\xe9\x78\xe3\x0b\xf6\x0f\x9d\x7f\xfe\x7e\xfe\xfb\xc9\xa3\xf1\xb5\xe3\x0e\xa4\x2a\xfa\xe2\x44\x22\x0a\x33\x72\x0e\x3f\x7c\x74\x65\x85\x23\x19\xa6\x74\xf8\xe1\xc3\xbe\xeb\xf8\xf8\xc6\xf9\xe8\x7e\x78\xec\x3a\xe2\xcc\xea\xb8\xce\x14\x8e\x50\x27\x80\x77\x24\xe6\x07\xf5\x0f\x8f\x3e\xba\x1f\x7a\xae\xf3\xaf\x7f\x85\x00\xf0\xcf\x7d\xf7\x43\xff\xc0\x75\x48\xcc\x02\x24\x4e\xf2\x30\x88\x50\xfa\x0c\x7f\xe2\x40\xfb\xf4\xd1\x75\xc6\x30\x7a\x76\x03\x03\xe7\x50\x3c\xf9\xf5\xcf\xee\x04\x31\x78\xf8\x65\x22\x06\x29\x61\x0a\xea\xb9\xd8\x1d\x0f\x2a\x63\x6b\x8c\x2f\x54\x00\x38\xac\x67\x06\xae\x06\xc3\xd9\xf8\xf6\xf7\x9e\xdd\x0c\x34\x71\x73\x19\xfc\xd3\xfe\x5e\x84\x95\x2b\x47\xcf\xaf\x60\xe8\xc4\xdb\x7a\xf9\xf6\xe9\xf9\x9d\x91\xa1\x0e\x73\x5c\x87\x92\x19\x97\x5b\x42\x59\xf6\xcf\x80\xdb\x21\x1e\x8d\x27\x03\xc7\x75\x24\xe5\x25\xe6\xef\xba\x8e\xac\x13\xda\x91\x26\x97\x3c\xf3\xb9\x1f\x3e\xa8\xb5\xf0\xd1\xfd\x20\x57\x83\xfa\xf9\xe3\x47\xf7\x4b\xb9\x09\x04\xbd\xb1\xe3\x7e\xf8\xb0\xdd\x73\x3f\x68\xdd\x46\xce\xc7\x8f\x1f\x65\x83\xc5\x97\x7a\xae\x03\x80\x5c\x4d\xfb\xae\x13\x60\xb1\xac\x7a\xe9\x0a\xfc\xb0\xbd\xcf\x9b\xdb\x73\x1d\x3c\x74\xd4\x5f\xe8\x8f\xe4\x2f\x1c\x7a\xfc\xcf\xfe\x63\x77\xdf\xfd\x90\x74\xf1\xd1\x2d\x77\xef\x3a\xd2\xd0\x75\xb2\x87\x1c\x1c\x75\xe4\x39\xd7\x51\x5f\xf1\xdf\xb4\x25\xce\x29\xd9\xe5\x24\x85\xd7\x1d\x46\x32\x7e\x88\x28\x65\xc1\x10\xde\xf1\x9e\xfb\xc1\x81\x74\x24\x46\x58\x66\x89\x1a\x5d\x32\x42\x2e\xe1\xf2\x95\x00\x0e\x50\xc0\x99\x68\x10\xf2\x34\x0c\x5a\xac\x92\xaf\xc9\xa0\x34\x4e\x1d\xd4\xbc\xb0\xe7\xee\x27\xef\x54\xb7\xc5\x67\x3b\x66\x0c\xd1\xce\x04\x85\x71\xe5\x5c\x0f\x88\x7f\x67\x9a\x69\x41\x8a\x9a\xb2\x08\x79\xca\x5f\xa7\x2b\x4e\xed\x5b\x5d\x69\xa6\x6f\x8d\xfb\x85\x17\x18\x66\xc2\xeb\x5b\x78\x1c\x80\x23\xad\x5e\x9c\x64\xa1\x98\xdd\xa4\x48\xaf\x38\xa9\x97\xf8\x98\xb1\x9c\x53\x38\x85\xa1\x49\xac\x9c\x41\x3c\x99\x22\xda\x09\xd0\x90\x01\x06\x47\xc0\x29\xb4\x2d\xdd\x6b\xc7\x92\x27\x99\x78\x14\x49\x90\xb5\x62\x64\xa1\x6e\x9d\x94\x83\x7a\x72\xf4\xc1\xc3\x11\xc0\x51\x67\x2c\x50\x34\xf8\x5f\xd1\x04\x06\x01\x08\x89\xf4\x02\x88\x1a\x19\x43\x42\x27\x4e\x05\x05\xd8\xaf\xee\x37\x2f\x2f\xf9\x59\x28\x6f\x78\x03\x72\x8b\xfc\x8e\x9a\xbd\x94\x12\xd3\xbc\xd8\x35\x21\x44\x08\xe0\x30\xc0\x21\xea\x64\xc8\xde\x91\xa9\xc5\x3a\x0e\xa9\xf5\x92\xbe\xa4\x49\x85\x0a\x54\x77\x0c\x1c\xaf\x6b\x71\x0a\x31\x05\x9f\xc8\xa0\xc3\x17\x78\xd2\x72\xc5\xf4\xa0\x8c\xf5\x3d\x91\x22\x69\xee\x4c\x76\xa7\xeb\x8c\x0f\x19\x3c\x64\x61\xca\xf8\x57\x5c\xa0\xb8\x1a\x93\x19\x35\x4a\xaf\xa4\x6b\x31\x57\xc3\xe2\x63\xa2\x54\xf5\xf7\x5d\xcd\x31\xaa\x84\xe0\x63\xa5\xa2\x2d\xca\x4c\xd6\x40\x26\x3b\xb5\xca\xa7\xc0\xd5\xd6\xbc\x16\x41\xaf\xad\x99\x7d\x2c\x2b\x94\x59\xf3\x5b\x15\x6e\xea\xa6\x95\xcd\xf2\xda\x82\xf8\xa8\x7a\x2f\x2a\xe9\x16\x11\xd6\xea\x44\x63\x42\xd9\x0b\x7f\x39\x6c\x2a\x7f\xb7\xc0\x02\x5d\x60\x5d\xf2\x6d\xdc\xbc\x08\x45\xc4\x4a\x0d\xbd\x2d\x97\x7e\xd4\x19\xc6\x41\xd0\x19\x04\x08\x15\x3a\x4c\x27\x2f\x62\x1d\x06\x07\x01\xca\x64\x5f\xc6\x2d\x70\xde\x13\xca\x12\xfb\x49\x7d\x3c\x41\x91\x97\x14\xf8\xcf\x36\x2c\x39\x73\xfc\x77\xe4\x2b\x00\xae\x8f\x89\x25\x90\x6b\x24\xf7\xad\xd6\xd6\x47\x69\x12\x44\x8c\xe2\x29\xf2\x2b\xec\x1b\x8f\x4c\xa6\x24\x94\x82\xc5\xb7\xf2\xbe\xfb\xc1\x91\x9c\x6c\xb0\x6f\x0a\x6b\x84\x5b\x22\x39\xce\xe1\xa8\x13\x42\xca\x8d\x37\xc5\x22\x93\xb4\xa7\xf2\x6e\x22\x83\x0f\xa7\x33\xb8\x13\x94\x70\x2b\x85\x92\xa9\xd8\xc8\x93\x15\x6e\x20\xec\x5c\xfd\x64\x27\xcd\x73\xf6\x2f\x23\x8a\xcc\x04\x5c\x26\xbf\xb5\xa3\x20\x65\xa0\x92\xa5\x57\x30\x62\x40\x60\x66\x55\xe9\x89\xb9\x28\x17\xc1\x8e\x51\x37\x80\x11\x53\xf6\x3c\xc3\x95\xbc\xbc\xc2\xf3\xf0\xb2\x38\x92\x23\x89\x1b\x89\xa2\x26\x2b\x2f\x67\xca\x99\x06\xa5\x4c\xb7\x76\x52\x49\xcd\x1a\x21\xff\x90\xdf\x24\xba\xb9\xd5\x9d\x99\xed\x21\x49\xe8\xdb\xd6\x74\xac\x2f\x02\xdb\x95\xf1\xe4\xf2\xc5\x14\xb0\x71\x46\xb9\xe5\x00\x9a\x36\x20\x46\x48\xc0\xf0\x14\x08\x73\x4a\x82\x59\x26\x16\x21\xa4\x18\x76\xa4\x79\xa1\x4e\x1b\x46\x0a\xc5\x14\x00\x1c\x81\x38\xd4\x69\xac\xe4\x56\x46\x51\x5f\x6e\xf2\xb7\x1d\xec\xc9\x33\xb8\x72\x30\x09\xad\xa5\x59\xdc\x38\xea\xa4\xbf\x54\x18\xb4\xc5\xa6\xed\x24\xa4\xc4\xab\xea\x55\x52\x98\xe5\xea\xc3\xd0\x87\x8a\x5a\xd2\x5d\x15\x23\x57\xe0\xa1\xe6\x84\xe0\x4c\xcb\xfd\x6a\x2b\xa4\x39\x8e\x16\xda\x37\x9f\x02\x56\xc7\x94\x32\x05\xa9\x9a\xab\xb2\xfe\xed\x18\x2c\x97\x4b\xa1\x6d\xa9\x88\x84\x15\x9c\xa8\x22\xc7\x75\x54\xcc\xf3\x52\xf8\xd7\xd4\x83\x0d\x63\xdb\x2c\x51\xa4\x9b\x78\xe7\x04\xa4\x3d\x35\xc9\xf4\x32\x66\x8e\xaf\x46\x19\xeb\xd2\x19\xca\x28\x17\x5b\x96\x27\xfa\xdf\x39\x3b\xdb\x3a\x39\xd9\x7a\xff\x1e\x9c\x9e\x1e\x4e\x26\x87\x62\x05\x4b\xc1\x9a\x73\xfa\x2b\xf8\x14\x07\x46\x29\x49\xdc\x2c\x05\xa2\xb5\xb4\x04\x47\xa5\x0e\xf2\x3f\x87\x98\x6a\x63\xa0\x2a\x6a\xf3\x42\xba\xad\x5a\x09\x4f\xc1\x4f\x53\xaf\xfb\x32\x7d\xcc\x28\x91\xea\x2e\x5b\x3a\xbb\xee\x07\xe7\x95\xc1\x07\x72\x58\x14\x81\xea\x55\xa1\x3b\x36\x13\x53\x5d\xe1\x2e\xb7\x1e\x96\x46\x2d\x4c\x36\x86\x31\x45\xc3\xc4\x53\xa0\xdc\xff\xb5\x8a\xcd\x40\x04\x1f\x4f\x3a\xdc\x77\x30\x88\x51\xe2\x47\x78\xcc\x0f\xfd\x74\x84\xf8\x8c\xfc\xcf\x20\x80\xd9\xa9\xa8\xbc\x38\x1b\xfa\x28\x72\xaf\x5f\xea\xd1\x20\x94\xf3\xaf\x60\xf9\x5f\xb7\xdb\x6d\xb1\x42\x33\x06\xd7\x51\xb0\x9b\x33\x6a\x16\x91\x71\xff\x2e\x84\x13\xec\xdd\xaf\x88\xef\xfc\x77\x89\xf8\xce\xda\x45\x7c\xe7\xfb\x13\xf1\x9d\x1a\x03\xa4\x79\x23\xab\x3e\xd9\xd4\xf5\xb9\x5d\xe5\x0e\xee\x1b\x88\xb1\x70\x4f\xe4\x0d\x7b\xdd\x5f\x32\x86\x51\x11\xe4\xd8\x42\x4c\xe7\x77\x75\xb4\x72\x76\x64\x0e\xd6\xaa\x75\x9d\xd1\x2e\x0f\x93\x91\xad\xc7\xcb\xc6\x11\x52\xd5\xa9\x76\x42\x28\x26\x7d\x76\xb8\xb9\x11\xe0\x50\xf3\x8b\xe8\x76\x74\x9e\xfb\x72\xd1\x99\x0f\x0d\xcd\x7e\xa8\x46\x4b\xd9\xf6\xf1\x25\xdf\xd1\xc9\x7b\xb6\x85\x6e\xea\x8a\x49\x3b\xeb\xb9\xa8\x7b\xf5\xfb\xf5\xc1\xf1\x78\x6f\xff\x9b\xbc\xf9\x14\x3c\x59\x98\xa9\xf7\x75\x07\x7a\x1c\x87\xb3\xc9\xe4\xfd\xaf\x4d\x77\xa0\xd9\x5f\x0f\xf7\x9f\x0f\xf7\x9f\xab\xb9\xff\xec\x6f\xeb\xb6\x4b\x79\x89\x44\xf1\x20\x84\x37\x0e\x9f\x9c\x7c\xe4\xc8\x1a\x2e\x4e\x9d\x7b\xb8\x2d\x45\x8d\x97\xa5\x0d\x7e\x92\x05\x2e\x43\xbe\xe1\xdb\xca\x2b\x18\x5d\x2f\x72\x4f\x59\x67\x3c\x58\xdd\xa2\x5d\x32\x48\x45\x49\xa0\xda\x9b\xb4\x2a\xdf\x48\x71\x02\x79\x53\xbc\x25\x2b\x47\x48\x9d\x29\x52\x6d\x4a\x0e\xd3\x74\x5d\xcb\x83\xce\x7c\x0c\x6c\xc1\xc2\x24\x81\xb8\x86\x87\x2d\xb8\x98\x1b\x5f\x7b\x36\xce\xe9\xfe\x5d\xb1\x94\x9d\x28\x4f\x79\xbd\x84\xe9\x6c\x90\xc6\x99\xe6\x62\x9f\xd7\x80\x35\xea\x8e\xb2\x78\x25\x39\x07\x85\xdd\xf0\xde\x0f\x27\x55\xac\x4f\xef\x83\x96\x79\x14\x59\xec\x4e\xf6\x63\x9e\x97\xc6\x6d\xdf\x70\x27\xb5\xd3\xf6\xa6\xb4\xf6\xae\xb4\xaf\x4b\x9d\x74\xf6\xfc\xdd\xc6\x0d\x6c\x68\x6a\x5b\x6b\x4a\x5e\x88\x5a\x36\x93\xbf\xb2\xb3\x5f\x8f\x15\xcc\x69\x75\x61\x67\x79\x65\x57\xed\xff\x4e\xdd\x4d\xbb\x7a\x18\x51\xa4\x78\x29\xc8\x7f\x2f\x7c\x6c\xe7\xc4\xda\xb5\x5d\x79\x4f\xb2\x5b\x63\x81\xb4\x68\xac\xee\x26\xac\xd9\xab\x95\xd3\x3b\x2d\xdc\xb6\xc9\x2b\x22\x96\xb2\xd1\xb5\xd5\x7c\x15\xd8\x82\x8c\x6a\xcf\x6e\x81\xa8\x96\x97\x85\x6d\x7e\x6d\x92\xeb\xdd\x2a\x63\xdb\xec\xea\x5a\xd8\x15\x71\xff\xf1\x31\x6f\x90\x87\x42\x56\x74\x11\x55\x0d\x6c\x4d\x71\x32\x5a\x1c\x8c\xf0\x24\xdd\x20\x1a\xa1\x92\xd5\x81\xf2\x3e\xb9\xfb\x8e\x78\xd9\xd1\x4d\x64\x5c\xa7\x7a\x2d\xb7\x82\xab\xbb\xa9\x6d\x23\xc9\xe6\x81\x22\x8f\xe2\x69\x22\x2c\xdf\x72\xc8\x45\x8b\xdb\xcb\x55\xdc\x53\x96\x9d\xf6\x4c\x70\x7b\x25\x37\xde\xcb\xbc\xdb\xfe\xee\x6f\xb1\x9b\xda\x5b\xaa\x83\x7f\x3e\x57\x2f\xa3\xf1\x32\x7c\x92\x4b\x72\xf7\x6e\x05\x64\x45\x49\x8d\xb5\x8e\x49\x74\xe6\x85\x47\xcf\x77\x02\xb3\x63\xf2\xbf\xc0\x09\xb9\x7d\x5f\x4e\xc8\x7e\x7b\x27\x64\x7f\xa5\x4e\xc8\xbe\x5b\xb9\x28\xbf\x7b\x27\xa4\xda\x83\x04\x5c\x5c\x40\x46\xc6\xcb\x29\x75\xb2\x2f\x45\xad\x17\xe2\xc0\x4c\xbe\x49\xd3\x35\xd6\x7d\xaa\x24\xae\x4b\x16\xd7\x48\xe9\x1c\xac\x59\x27\xcd\x6e\xe0\xde\x99\xdf\x27\x0b\xe4\x40\x32\x38\x88\x84\x6f\x55\x0e\xc1\x90\x06\x69\x08\x54\x2a\xa9\x93\x47\x6d\x02\x08\xbb\xc9\xd5\x92\xa5\xf0\xa8\xc8\x5d\xa9\x49\x8e\xf5\x88\xca\x44\xb9\x18\x97\xcf\xeb\x1b\x44\x6f\x30\x9a\xd5\x2d\xf8\xf2\x5e\x39\xe7\x90\xd4\x9e\xb4\xda\x11\xbd\x22\xa3\xc8\x76\x34\xc5\x45\xb5\xfc\x64\xd5\x8a\x55\x60\xb9\x9a\xcc\xb5\x80\xd7\xb3\x6c\xfa\x37\x57\x8f\x7a\x51\x18\x59\x5e\xdf\x6e\xbb\x4e\x74\x33\xea\x4c\x21\xd7\xe6\x22\xd5\xf9\x63\x71\x07\x8b\xc3\x00\x89\xbd\x54\xce\x32\xa2\x94\xd0\x86\x0d\xd9\xb1\xc8\x30\xb6\xb5\x60\x2b\x8f\xa2\x82\x90\x8e\x47\x42\x06\x71\x88\x0c\xa7\x91\x86\x37\x35\x9b\xb7\x2a\xf6\xbb\x27\x04\x77\xaf\xd7\xb3\x32\xe7\x9d\xba\x7b\x2e\xa1\x87\xa6\xd0\xcb\x1d\x91\x2f\x11\xbd\x41\x14\x3c\x93\x2c\xad\x71\x8e\x4e\x8b\xdb\x5c\x3c\x28\xde\x9e\x1d\x81\x48\xb6\x26\x46\x07\xa6\x54\x1c\x99\x91\x0f\x7c\xc8\x20\x18\x52\x32\x01\x03\x84\xc3\x11\x88\x50\x28\xca\xdf\xb0\x31\x02\x32\xd7\xa8\x6b\xb1\x4b\x19\xac\xb5\x1c\x93\x76\x7b\xbb\x2b\x62\xd2\x39\x61\xe0\x39\x89\x43\x7f\x51\x0e\xfd\x36\x86\x0c\xdc\x91\xf8\x5f\x7f\xa6\x08\x04\x84\x5c\x73\x6e\x0c\x09\x05\x1e\x89\x03\x3f\xfc\xd7\x9f\x19\x18\x20\x30\xe4\x5d\x75\xc1\x0b\x06\x10\x66\x63\x44\x81\x4f\x50\x24\x7e\x44\xb7\x38\x62\x80\x50\xde\x06\x80\xa2\x68\x10\x03\x19\x68\x0d\xe7\x69\x84\x10\xc0\x4b\xe2\xe7\xce\x0a\xf9\x79\x94\x52\x5d\xd6\xa5\x79\x4a\x14\xec\x51\x02\x8c\xd3\xea\x4a\xcb\x62\x4e\xde\x93\x98\x82\xa2\xa9\xfc\xc1\x89\x10\x63\x38\x1c\x45\x5d\xd1\x7d\x72\xf6\x37\x75\x7a\x74\xfc\x0a\x48\x1a\x1b\x6c\x5f\x3e\x8d\x62\xc6\xa6\x94\xdc\x60\x1f\x09\xf9\xa7\xe8\x8f\x18\x53\xe4\x83\x29\xa2\x13\x1c\xc9\xe2\x6b\xe0\x98\xeb\x14\x4f\xc8\x0a\x05\xd0\x9f\xe0\x10\x8b\xc2\xa8\x84\x02\x3c\x14\x68\x6f\x00\x47\x00\x86\x72\xa9\xcd\x33\xdb\x73\x72\xeb\x42\x91\x0e\xc3\xf5\xf0\x6c\x86\xd9\x58\xf2\x28\xc2\x0c\xe9\x4c\xe2\xc2\xce\x0d\x10\x89\x7d\x67\xe1\x37\x68\xc7\x94\xf6\x52\xbd\x14\x1d\x7a\x49\x26\x88\x8d\xb9\x5a\x98\x71\x25\x39\xa3\x24\x1c\x75\xcd\xfe\x51\xab\x21\x9a\x1d\x28\xbb\x86\xd3\x28\x5f\x6a\x09\x14\x6c\x0e\xba\x94\x37\xa1\xa3\xa5\x5a\x27\x17\x25\xa3\xa6\xc8\xb8\xfb\x45\x0c\x7a\xd7\x1d\x46\x55\x8a\xae\xca\x6a\xf5\x44\x96\x69\xe6\x36\x3b\x50\x8f\x5f\x0a\x6f\x9f\xee\x2e\x6b\x75\x83\xdb\xde\x51\x33\xff\x81\x28\x33\xbe\xec\xac\x35\x95\x76\xbb\x7e\x4b\xed\xe8\x3c\xa6\xec\xe0\x05\xfa\xee\x41\x5e\x92\xc4\xe5\x36\xec\xde\x4a\xb3\x9c\xd7\xcc\xf5\xcb\xcb\x97\x83\xab\x57\xd3\x53\xb3\xab\x0b\xe6\xa2\xef\xa6\xda\xa7\x55\x78\xbc\x74\xfb\xd6\x14\xb4\x5f\xd6\xf1\x09\xab\x13\x2f\x5c\x95\x12\x38\x56\x42\x6d\x71\x23\x65\x5a\x9b\x29\x3d\xf9\x0b\x8b\xd4\xdf\x65\x4d\xa7\x39\x97\x1d\xd7\xdc\xc1\x94\xa2\xae\xda\xa7\xb0\xb7\xba\x0e\xf9\x5e\xc0\x44\x9c\x86\x18\x37\x81\x51\x20\x61\x3f\x24\x18\x74\x29\xca\x4d\x5c\xfc\xf0\x7d\x3c\xc5\xfb\x48\x3d\x96\xa6\xeb\x3f\xe5\x2c\x23\xb4\x74\x17\x97\x5c\x84\x57\x4d\x54\x5d\x00\x90\xf3\x80\x24\xb2\xb4\xd8\x3c\xb9\xc8\xef\x3b\x3a\x4f\x88\x52\x75\xdc\x54\x9d\xcc\x2a\x71\xe5\xf3\x2b\x31\x36\xcc\x30\x36\x4d\x41\x99\xf5\xd8\x35\x0d\x61\x47\xab\xe2\x8c\x31\xb8\x26\xdf\x4e\x71\x2c\x49\x0d\xb7\x76\xd1\x64\x6b\x88\x8d\x93\xb5\xe6\x9a\x4e\x8a\x5a\x2c\x4e\xfa\x46\xbb\x2b\x65\x03\x2d\xba\x88\xe0\xa8\x83\xc3\x21\xd1\x48\xe3\x86\xe1\xa2\xa7\x2f\x00\x04\xaf\xad\xee\x3b\xef\x85\xff\xcf\x02\x3c\xc2\x03\x1c\x60\x76\x67\x3f\x05\xf2\xa5\xc0\xfe\x1e\xda\x24\x90\x2a\xa9\x07\x87\xa3\x1c\x0d\xcb\xb8\x8d\xb6\x9e\x71\x0d\x72\xc0\xb8\xfe\x9b\x48\x6c\x73\x9d\x7d\x3f\xcb\x0b\x32\x98\xe1\x3a\xd8\xea\x0a\x5f\x7b\xeb\x1b\xd3\x16\xb2\x62\xa4\xa5\xa4\xa6\x98\x14\xc9\x7b\x2d\x22\x5c\xf3\xdc\xb1\x04\xaa\x28\xc9\x55\x6d\x0c\x9a\x89\xf5\x75\x24\xeb\x4d\x01\x32\x34\x4f\x1d\x62\xc8\x63\xc8\x6f\x7a\x5d\x1b\xd8\x34\x88\xa9\xa8\xc5\xc3\xc7\xa6\x42\x8e\xed\x5b\x35\xd8\x63\x19\x16\xc8\x9c\xeb\xf7\x28\x08\x40\x7d\x0b\x6d\xa3\xe7\xca\xdf\xd4\x0a\x8e\xcf\xf7\x98\x4b\x46\x21\x43\x23\x9b\xd8\xa5\x96\xd6\x9e\x61\xb3\x99\x37\x64\xd9\xd2\xee\x6b\x63\xf9\x89\x0d\x16\x64\xa3\xb7\x32\xbf\x96\x9f\x58\x70\x82\xa0\x2f\xb2\x3c\x2d\x17\x7b\x7e\xce\xf8\x36\xf5\x9c\x50\xe1\xc6\x6b\x1b\x3c\x6c\xa0\x6d\x00\xfd\x91\x70\x0d\xfa\x30\x1c\xe5\xae\x83\x64\x27\x40\x56\xca\x5d\xd4\x33\x5f\x35\x96\x31\x8c\xce\x49\xc6\x10\xeb\x01\x9d\x13\xe0\xab\xb7\xe6\x0e\xec\xd2\x34\x85\x0c\xac\xeb\xf8\x31\x4d\xee\x1f\xeb\xc9\xf6\x8b\x14\xd7\x6b\x43\x5b\x17\x67\xc9\xbf\x3d\x8f\x78\x0c\xf9\xbc\xb5\x66\xe9\xbc\x52\xdf\x26\xa1\x46\x09\x94\x51\xfc\x2b\xa7\xa6\x3e\xad\xa6\x69\xf0\xf3\x64\xda\xf0\xff\x36\x0c\x14\x50\x32\xe9\x84\x64\x36\xc7\x04\x7c\xf8\xe0\x60\x6e\x74\xdc\xc0\x40\x9e\xe8\x7a\xbd\xc2\x06\xba\xd9\x32\x04\xb0\x02\x56\x60\xe5\xba\xeb\xc5\x28\x24\x14\x81\x4b\x51\x05\x0a\xbc\x24\x83\xa8\x26\x0d\xc3\x29\xa6\x1f\xd4\xab\x35\xd1\xb4\x6c\x99\x37\x5c\x9f\x93\x60\xd2\xda\x76\x67\xd8\x56\xac\xbd\xff\xe8\xf3\x7c\x03\x25\x34\xd4\xc8\x46\xb7\xcf\xc6\x98\xa1\xaa\xb3\x40\x0e\xb2\xdd\x60\x54\x1d\x54\x72\x56\xcd\x6d\x84\x20\xf5\xc6\x9d\x01\xb9\xd5\xe2\xd4\xc5\x77\x57\x5c\x78\xb8\x1d\x06\x3d\x34\x26\x81\x70\xf7\x66\x9e\xd1\x70\x1a\xb3\xe3\x5c\x18\xfb\x24\xce\x56\xb8\xd6\x82\x16\x3e\x78\x29\xbe\x05\x7a\xdc\x4d\xb7\x2b\xdd\xac\xd2\x62\x00\xd3\x38\x08\x3a\x54\xd4\x75\x13\x5f\x7b\x64\x32\x85\x1e\xab\xb4\x58\xab\x44\x64\xc9\x71\xfc\x53\x38\xc2\xa1\xda\x5c\xca\xa0\x97\xc2\x46\x15\x5e\x53\xa7\x00\x6d\xa9\xcd\x74\xe6\x3c\xe4\x0f\x5e\xf2\x77\xd2\x6f\xbc\x98\x52\x14\xb2\x0b\x15\x43\x6d\x0c\x13\x5d\x12\xee\xa6\xca\x48\x11\x65\x57\xda\x23\x6e\xce\x30\x1b\x77\x86\x84\x30\xcb\xf4\x83\xbd\xa5\xa6\x91\xd9\x40\x6e\xa6\x8e\x79\x13\x29\x95\xa0\x97\x99\xbf\xdd\x40\xdf\x8b\x93\x76\x48\x91\xad\x49\xd0\x3c\xe0\x7c\x5d\xe3\xe1\xdd\x0b\x19\x50\xe7\x9c\x89\x4f\x40\x7e\x34\x53\x27\x1e\xc1\x32\x21\x64\x85\x34\x2e\x1d\x9b\x74\xbe\x89\x12\x7e\x92\x3a\x76\x64\xb8\xde\x2b\x26\xe5\x13\x19\x74\x6b\x18\xf2\x52\x02\x46\xaf\x9e\x88\x77\x88\x46\x2a\x22\xd1\x40\x86\xf6\x6b\x5b\x52\x8a\xb9\x37\xc7\x17\x6f\x9b\x8c\xbe\xe2\x2b\xb2\x52\xb1\xfd\x96\x5d\x31\xfa\x39\x72\x2d\xd5\xe6\x96\xed\x34\x1d\x71\xbb\x69\x8c\x7d\xf6\x48\xc8\xd0\x2d\xdf\x70\x48\x78\x1c\x60\xef\x3a\x51\x94\xfb\x5a\x7c\x67\x92\xf0\x27\x9b\xf5\x92\x73\x46\xff\xb1\xdb\x13\xe1\x83\xce\x88\x30\x72\xa4\x17\xef\x28\x34\xa0\x05\xcc\x37\x79\x12\x2b\x11\x31\xf6\xea\x0d\x47\x63\x30\x70\x80\x94\xc2\x6e\xb0\x1e\x55\xb0\x70\xfe\xa2\x3d\xd9\xf4\x9a\x0f\x10\xc6\x7b\x7a\xf5\x7a\x27\x8c\x27\x03\xe5\x1f\xab\xcf\x7d\xcd\x52\x26\x05\x6e\x41\x74\x54\x4c\x97\xfc\xbf\xff\xf7\xbf\xf9\xe7\x50\xe8\x97\x9f\x2a\x7a\xa1\xca\x9b\x71\x85\xff\xa9\x21\x9f\xd2\x6a\xbd\x72\xaa\xa6\x14\xdd\x24\x8b\x35\x77\xaf\x9a\x70\x84\x3f\x80\x89\x54\x54\x26\x81\xfe\xab\xf1\xdc\x39\x87\xf6\xe0\xd4\x84\x5c\xba\xeb\xa8\x51\x0f\x18\x29\xf9\xdb\x5c\x94\xa4\x31\xe6\x66\x81\x90\xe6\x47\x13\x74\x76\x95\x7f\xc7\x12\x95\xb0\x0d\x4a\x5a\xad\x24\xaf\xfe\x98\xa0\x6e\x35\xbf\xd9\x24\xd5\x6c\x11\xa5\x38\x71\x73\x24\xa3\x6e\x2f\x31\x19\x55\xc7\x01\x98\x3b\x19\x55\x6f\xe4\x32\x1e\xa8\xea\xc8\xad\x32\x52\xcf\x6c\x93\x08\x6b\xf6\xb8\xed\x7b\xcf\x46\xdd\x59\x4b\x36\xaa\xde\x4b\x94\xb1\x7b\x69\x29\xa9\x3b\x6d\x52\x52\xab\x5e\x4c\xc1\x4d\xe6\x82\x21\xad\x3b\xc7\x47\xc8\x23\xa1\x0f\xe9\x5d\x29\xbc\xa2\xcc\x9e\x32\xc4\xca\x9c\xe0\xe1\x20\xb7\xb3\x9a\x39\xf4\x1f\x9a\x68\xbb\x53\x65\x46\x6d\x7f\x97\x7b\x84\xbc\xe4\x02\xf2\x80\xb3\xac\x3d\xa2\x7a\x57\x80\x9e\x47\xa8\x6f\xf6\x78\x5c\xa3\xbb\xe2\xbe\x90\x5e\x81\x7e\x74\x2b\xcf\x89\x4d\xf8\x04\x1f\x3e\x38\x83\x98\x31\x12\x4a\x1c\x5e\x71\xa5\x7f\x3b\x85\xa1\x2f\x36\x28\x6e\xb3\xf8\x2a\xec\x27\xcd\x09\xc5\xa2\x9c\x7d\x7a\x11\xd8\x98\x51\x5a\x66\x4f\x29\x40\xc7\x23\x41\x3c\x09\x23\xc3\x1d\x16\x50\xe6\x7f\x96\x1c\x54\x49\x85\xd8\x5e\x86\xd0\x17\xfb\xae\x29\x53\xd6\xb8\x70\xca\x33\x26\x89\x01\x05\xe0\x84\x6a\xf8\x95\x44\xff\x3c\xca\x65\xce\x2a\xfa\x6c\xc1\x5c\x2c\x8e\x79\x75\x94\x6e\xd7\x6b\xe9\x8a\x69\x6b\x09\x1c\x50\x18\xab\x99\x29\x86\x87\x4d\xd3\x4d\x68\x27\x12\xd5\x88\x41\x49\xb0\xe4\x75\x6f\x09\x26\xaf\x1a\x9c\x05\x98\x3c\xe7\xa6\x36\x85\xa3\xcd\x39\x55\x7f\xbb\xce\xdb\xac\x50\x85\xc5\x0d\x47\x79\x9a\x5a\xed\x0a\x0b\xcc\x70\x2b\x31\x6c\x71\x11\x55\xff\x76\xe9\x12\x36\x11\x9c\xfa\xb9\x30\xaf\x8a\xaa\x89\xc9\xad\xdf\x39\xf1\x94\x1a\x01\x92\x0c\x83\xc3\x51\x67\x1a\x07\x01\xf2\x95\xe7\x7b\x6e\x2e\xd9\xf0\xb8\x05\x97\x45\xa1\x9e\xb7\x53\x1f\x5a\x70\xba\x8e\xd7\x86\x2b\xb8\x3c\xe3\x63\xd1\x87\xaa\xc9\xd3\x78\xe1\xd6\x34\xe1\xcb\x40\x4e\xaa\xfe\x65\x4d\x48\x33\xc5\xc4\x9d\x42\xe2\x66\x49\xb7\x4b\xe5\x91\xc3\xc7\x69\xe2\xd8\xfc\xb6\x4c\xbb\x16\x6a\x21\xf3\xb4\x96\x94\xb4\x78\x70\x8a\x59\x12\xf8\x63\xde\xc1\x4c\xc1\x3d\x47\x8c\x51\x3c\x88\x59\x0e\x7c\xcf\x3c\x81\x95\xfb\x11\x4c\xdb\xc8\x7d\xb8\x64\x34\xf6\x58\x4c\x5b\x6e\x54\x4b\x3a\xaa\x9b\x85\x3c\x71\x70\xa6\x44\x16\x8f\xf1\xb9\xb1\xe4\xee\x7f\x8c\x03\xbe\x1c\x2b\x6c\xb2\x72\x93\xcd\xe5\x8d\x2c\x56\xc8\x72\xf9\x65\xa9\x22\x0d\x59\xd0\x93\x29\xbb\x33\x67\x41\x97\x5b\x49\xdb\x19\xef\xd4\x35\x23\xe4\x3b\x89\x89\xc8\x4e\x3d\xca\x5e\xcf\xe4\xd2\x66\xb3\xb2\xd5\x5d\x76\xa7\x27\x5b\xcd\xb5\xa4\x52\x03\xf6\x93\xb8\x92\x03\x92\x41\x03\x2c\x78\x3a\xb2\x59\x96\x8b\x2c\xc6\xfc\x4d\xbe\x85\xf2\x69\xb1\x3a\x17\x18\x7a\x35\x8b\xcf\x10\x83\x95\xa1\x18\x55\x21\x4e\x13\xc4\xe0\x22\xfa\x74\xe9\x7a\x74\x69\x53\x56\x3f\xb2\x56\xaa\x74\x31\x15\xba\x04\xd5\xb9\xa8\xca\x5c\x44\x55\x72\xb1\xb2\x52\x94\x15\xc6\x51\xbe\x8f\xc2\x28\xaf\xc6\x38\x52\x98\x0f\x80\xff\x25\x12\x8e\xf9\x14\xc9\x4c\xef\x90\x00\x3e\x8d\x20\x9b\x2b\x63\xf2\x73\xb5\x82\x6e\xa3\x98\x8b\x2d\xb4\x50\xd0\x0b\xa5\xa9\xaa\x7f\xdb\x65\xab\xde\x53\xc1\x08\xf2\xbb\xbf\x33\x1a\xdd\xcd\xcc\xc9\xaa\xeb\x4f\x4f\x5d\x34\x1d\x74\x65\x69\xab\xdf\x5e\x92\x67\x79\x0f\x10\xd1\xce\x03\xec\xfb\x02\x77\xc1\x26\x5e\xbd\xbf\x2d\x06\xc5\x30\x0c\xa2\xad\x61\xf2\x72\xaa\x7f\xf2\x58\x3d\xad\x23\x99\x43\xe2\xa3\x96\xf9\x16\x35\xfe\x90\x90\xa9\x22\xb6\xcd\x0a\xf5\xd1\x9c\x11\x77\xad\x83\xeb\x12\xb1\xeb\x76\x9d\xfa\x43\x73\x2b\x61\x5a\x28\x0a\xee\x5c\x30\xfd\x9b\x89\x7f\xeb\xaf\x2f\xfe\x6d\x99\x37\x9e\x0b\x14\x9c\xde\xae\x09\x21\xc2\xcb\x0a\x7b\xb3\xef\x3b\x75\x57\xa5\x34\x44\x9d\xed\x5e\x6f\x7a\xcb\xcd\x37\x46\xe3\xd0\x83\x6a\xa2\xd7\x52\x0e\xbb\x8e\x3b\x59\xaa\xed\x92\x62\xcd\xe6\x99\x21\x3d\xb7\xd4\x44\x87\x4a\xf2\x58\x35\x2b\xaa\xb2\x0e\x0d\x14\x15\x9e\x58\x4a\x95\xed\x7a\xab\xb0\xe5\x60\xf2\xa9\x84\x26\x9e\xe6\x1e\x58\x6c\x00\x7f\x02\x22\xf4\x68\xb1\xa2\x03\x73\x05\x09\x24\x2e\x35\xb1\x27\x74\x44\xba\x79\x2e\x0e\x4e\x81\xd8\x17\xe2\xde\x76\xf4\xb8\xb7\xda\x80\xb7\x73\x19\x13\x57\x78\xa7\x45\xa8\x5b\xab\x3b\xda\x85\x02\xdd\x9c\x45\xc2\xdc\x2a\xfb\x6d\x17\xe4\xe6\xe4\x3c\xb7\x36\x21\x6e\xfd\x76\x21\x6e\xe7\x45\xf3\xa6\x21\xcd\xb3\xd5\x7a\xea\xdf\x47\x60\x5b\x0d\x2d\x6b\x0d\x6b\x73\x16\x0f\x6a\x9b\xef\xf8\xd8\x9f\xf3\xe4\x5f\x73\x6c\x77\x6a\xf0\xb8\x4a\x06\xb2\xdb\x6b\x55\xda\x7f\x11\x37\x40\x7a\x12\x5a\xe6\xf1\xbf\xb4\x08\xaf\x04\x04\x64\x1c\x31\x44\x81\x32\x3c\x83\x3b\x30\x86\x11\x08\x49\xe2\x27\x10\x5c\xe8\xb6\xbf\x07\xaa\x3f\x7c\x18\xec\xf6\x55\xb2\xf3\x0c\x32\x6f\xbc\x6c\x6f\xca\x79\xc2\xa3\x08\x4c\xc4\x95\x39\x1b\x23\xc0\x10\x9d\xa4\xc7\xc5\x52\x6d\xe5\x03\x37\x37\xf2\x86\xd4\x24\x50\xb3\x30\xdb\x25\x5c\xb7\xcc\xdc\x9c\xc7\x17\xd3\x06\xa4\x2d\xe7\x56\x69\xe7\x89\x09\x08\x94\x07\x99\x75\xfb\x62\x7e\xfd\x6d\xb4\xff\x7a\x72\x67\x06\x0e\x7b\x70\xbf\xdc\xbb\xfb\x85\xab\x2d\x09\x15\x25\x6d\xd5\xcc\xe7\x9d\x73\xa3\x28\xf9\xe9\x44\x53\x1c\x86\x02\x46\xe1\xe3\x9a\x84\x5d\xf5\x6c\x29\xee\xc9\x26\xaf\x43\x51\x4b\x83\x75\xdd\x82\x7f\x71\xfb\xe2\xe7\xbb\x37\x07\x9f\xac\x71\x0a\x65\x6c\x6a\xdd\x89\xbd\xca\x45\x96\xcb\x45\x99\x1f\x1a\xc4\xa9\x8e\xea\x20\x24\x60\x78\x0a\x34\x39\x51\x4f\x40\x8a\x61\x27\x50\xc1\x76\x59\x7a\x04\xf0\xd1\x94\x1b\x9d\x80\x84\x19\x66\x06\xf0\x33\x90\x13\xd3\xd5\x5d\x0b\x38\x92\x7a\x18\x92\x56\xab\xac\x8a\x8f\xdc\xf4\x3b\xd2\xe1\xda\xd7\xc7\xbc\x19\x8c\x40\x56\x1b\xdc\x78\x09\x65\xe4\xd7\x18\x47\x4c\x65\x4b\x15\xf8\xa5\xe2\x08\x17\xe4\x56\xfe\xaa\xae\x3a\x9c\xba\x11\x20\x3f\x41\x61\x81\x79\xfe\x16\xa9\x9e\x52\x3c\x81\xb4\x5a\xbf\x81\xdc\xf9\x25\x37\x7b\x25\xfc\xc3\x05\xc7\x57\x0b\x46\x90\xeb\x59\xa6\x5f\x5e\xe5\x42\xe0\x6d\xe2\xdf\x8d\x5d\x96\xa5\xb2\x32\x00\x33\xf7\x7e\x5e\x8b\x90\x10\x75\x0a\xc6\x5d\xba\x1b\xb5\x09\x6c\x2c\x93\x23\x95\x74\x25\x32\x62\xf5\xfc\x14\x5e\x6c\xc0\x58\xad\x05\xff\x65\xea\x8c\xe6\x7c\x22\x03\x1b\x9c\x5f\x3b\x46\xe7\xf3\x22\x4d\x3e\xf0\x52\x3b\x36\x58\x9e\xe5\x02\x80\x8d\x90\x9e\xa6\x9a\x81\x2d\xe0\x3d\xe7\x3e\x6f\x54\x33\x5a\xd2\x3d\x07\xa7\x2b\xe6\x53\x03\xcb\x2c\xce\x81\x10\xe0\x8b\xcc\x7f\x5e\xf3\xd4\x1b\x94\x18\xb9\x99\xff\xa8\xe1\x84\xd4\xed\x76\x5b\x5f\x95\x97\x75\xdc\x27\x32\x88\xba\x82\x8a\x0a\xea\x12\x1f\xd8\x1f\x31\xa2\x77\x1d\x55\xc9\x28\xb5\xe8\x3e\x91\x01\x37\x82\x04\x34\x77\x76\xef\x61\x18\x62\x98\x3e\x95\x60\xc1\xb6\x93\x9d\xac\x15\x1b\xb9\x31\x44\x7d\x98\x03\x4f\x93\x18\xf5\x64\x86\xb7\xaa\x57\x3d\x83\xd1\xf5\x2f\x94\xc4\xd3\x06\x4d\x66\x7b\xc4\x5a\xd6\x62\x6e\x79\x5e\x34\xa9\xd9\x4a\x33\xba\x42\xe6\x61\xe8\x27\x7f\x86\x44\xbb\x98\x63\x30\x57\xaf\x51\x7e\x3b\x44\xcc\x1b\x5f\x8a\x9f\x84\xa4\xc7\x61\xd8\x42\xce\x5b\x48\x79\x8e\x44\x9d\x2e\x58\xb6\x84\x2a\x7a\x6d\xef\xd3\xe0\xe3\x7a\x66\x51\x1e\x65\x09\x46\xd6\x71\x5a\xb2\xc2\x23\x41\x80\x3c\x06\x14\xc3\xef\xdf\x22\xad\x1f\x72\xd9\x3b\xa7\x92\x4b\xbc\x31\xa4\x0c\xa8\xe1\x27\xbb\xb8\x3e\x66\x55\xcb\x2d\x13\x2e\xd7\xf1\xa6\xf1\xdb\x48\x05\x18\x81\xad\x74\x67\x4f\x7e\xa6\x48\x94\x44\xf1\x45\xba\x3e\x7f\xe4\xec\xf4\xb3\x63\x4c\x3e\x49\xdc\x3f\x94\x8c\x92\xfb\x15\xdd\xb1\xa9\xbe\x4e\x40\xe1\x72\x49\x6b\x9c\x4c\x71\xa8\x32\x52\x38\x45\x94\x4f\xa2\xa4\x20\xa9\xc0\x3b\x81\xb7\x8e\xeb\x54\x64\xb1\xe4\x3c\xd9\xa6\x56\x2c\x43\xdc\xca\x0a\x66\x81\x92\x05\xcd\xd6\xd9\x83\xda\x78\x50\x1b\xdf\xb2\xda\xc8\xb0\xf1\x06\x77\x22\x90\xb1\xb0\x50\x27\x02\x9f\x43\x69\x93\x34\x90\xa4\x46\xa9\x24\x80\x1e\x42\xaf\xe0\xa7\x8b\xea\x15\x89\x5a\xd8\x5e\xb3\xa4\x64\x2c\xaa\x5c\xb2\xf1\xdc\xb3\x7e\x99\x3f\xc0\xaf\xca\x67\xd6\xde\xe5\x96\x05\xab\x26\x3e\xc7\xb5\xbb\xdd\x9e\xef\xbd\x3b\xfa\xfc\xe8\x35\x35\xc7\xfe\x5d\xa3\x3b\x27\x91\x0e\x93\xf3\x39\xad\xa4\xba\xe7\x3a\x1d\xfe\xa1\x83\x33\x30\x48\x2d\x9e\xb7\x49\x85\xe6\x14\x22\x3f\x81\x8b\xd1\x1a\xaa\xa6\x5a\x29\x2e\x73\x96\x7e\xcd\x81\x3f\x8a\x07\x63\xa4\xce\x42\xf2\x37\x12\x08\xed\xe7\x3a\xdb\xd5\x12\x9e\xd7\xaf\x53\x8a\x86\xf8\xb6\x5a\xb7\xda\x9d\x07\xd4\xed\x4d\xd2\x98\xbe\x48\x54\x90\x6c\xf5\x09\x24\xbd\xbf\x9e\x7b\x71\x55\x05\x6a\xa7\xd2\x99\x9c\xc1\x14\x7d\xb9\x10\xfa\x8f\xf9\x12\xb8\x39\x9e\xa8\xa0\x08\x12\x7a\x9a\x1b\x28\xfb\xd5\xe9\x3a\x19\xed\xe9\x9e\x6c\xfa\x42\xca\xc2\x42\x09\xf4\xf6\x42\xf2\x9f\x3a\xed\x85\x61\xf2\x0d\x40\xc2\xa1\xa9\x0d\x40\xe7\xb3\x96\xfb\xb6\x9d\xeb\xa2\x4e\x92\xac\x94\x74\xbe\x04\xf0\xe2\xba\xb8\x24\xae\x8b\xe8\x63\x15\x0d\xb7\x6e\x6d\x3c\xda\x99\xd2\xfd\xad\xb3\xdf\xec\x2f\x41\x92\x44\xfd\x62\x64\x0e\xc8\xb0\x62\x44\x8a\x06\xbe\x95\x7f\x28\x78\x47\x69\x0b\xd0\x6b\x14\x96\xfd\xe5\x89\x70\x98\x93\x52\xac\x96\x8f\x21\x98\x92\x84\xa8\xc3\xc6\x98\xe6\x6a\x04\x42\x33\x8c\x8c\x63\x08\xe9\x7a\xa7\x36\xa1\x46\xfb\xc0\xec\xf0\x30\xc7\x28\x58\xaa\xbb\xa2\x96\x2b\xef\x6e\x16\x35\x99\x57\x60\x7e\x14\xe4\xb5\xb5\xc0\x97\xa2\xd4\xd6\x2d\xef\xbf\x4f\xfb\xc1\xc1\xa3\xf7\x83\x35\x5c\xfa\x29\x4f\xf0\x3d\x5e\xf7\x29\xc8\xa9\x31\x8c\xbe\xe9\x3b\xbe\x9a\x2b\x16\x1b\x8f\xbd\xe2\x33\xf6\xdb\x5e\x51\xf5\xf3\x0d\xcc\xe9\xb2\xaf\xb4\xf1\x8c\xe1\xce\xa6\xdd\x4f\x27\x42\x2b\xb9\x9e\xf3\x96\xe6\x7f\x6e\x73\x3b\x95\x8c\xae\xa6\xa0\x90\xd5\x35\x80\xce\x6a\xfb\x4a\x38\xd5\x32\xbc\xca\x0a\x38\x0d\x95\x6f\x16\x19\xb9\x75\x01\x1a\xc7\x30\x07\xcb\xaf\x3b\x63\xcd\xdf\x8a\x7a\x33\xb6\x94\x35\x3a\xff\xed\x25\xd1\x54\x0e\xca\xfe\x6d\x73\x81\x98\xf9\x67\x34\x0f\xae\xad\x5f\x65\x2d\xcd\xf9\x56\x2d\x10\x4d\xc8\xde\xd6\x1c\x5f\xc6\xe6\x5e\xd8\x9b\x5b\xef\xed\x3e\x8e\xa4\x75\x20\xd2\x50\x21\x5d\xff\xe6\xfe\xf2\x3c\x8e\xc7\x3d\x0f\x9b\x5d\x0b\x3e\x64\xf1\x44\x38\xd8\x24\xf0\xf2\x4f\xaa\xcd\xb2\x9f\x61\x5f\x14\x8f\xaf\xb0\x52\x7d\x34\x34\x6c\x9e\xea\x47\x2f\xc0\xd3\x0b\x98\x33\x23\x8b\x36\x26\x45\x1e\x2b\x2c\xd5\x09\x8c\xae\xd5\x57\x9c\xb0\x9e\xfa\xfb\x4e\xfb\x7b\x86\x7d\x36\x76\x5c\xa7\xdf\xeb\xfd\xff\xd4\x57\x63\xa4\x30\xd4\xb5\xef\x28\x7f\x7f\x7b\x7a\x9b\x7c\xbc\xcb\x3e\x96\x43\x96\x2d\x2d\xd9\x91\x53\x04\xbb\xcb\xac\x87\x6a\x73\x53\x5f\x6e\xdb\xee\x4e\x73\x59\xfd\xbe\xbb\xa3\xce\xf3\x63\x18\x8d\x33\x53\x98\x2f\x78\x47\xa6\x27\xdc\xa0\x13\x31\x87\xa9\x49\xfc\x3f\xe2\xc7\xec\xd6\x59\x7f\x46\xdd\xbe\xb6\xd6\xa9\x4e\x03\x74\xd8\x18\x52\xd6\x49\x0c\x30\xa7\x54\x3c\x01\x47\x47\x2a\x7e\xf1\x63\x42\xb4\x90\xb9\x34\xaa\x31\x43\x0a\xe3\x6d\x47\xec\x4e\x18\x02\xfc\x30\xae\x1a\xbd\x14\x5f\xa5\x3e\x08\xa3\x9c\x91\xc0\xa8\xde\x52\xef\x98\xce\x1c\xeb\xf4\x47\x19\x8c\x59\x1c\xb1\x3e\xc0\x34\xe2\x20\x81\x18\x49\x50\xba\xcb\xfc\x77\xd3\x1f\x53\xa7\xb3\x81\x05\x35\x59\x1c\x95\x41\x2f\xc2\xba\x2d\x70\xbe\x48\x98\x72\x20\x66\x91\xed\xc2\x22\x13\x51\xcf\x16\x60\x6d\x4d\x14\x94\xc2\x6e\x8a\x60\x53\xe2\xe9\x24\x79\xcd\xfc\x65\xce\x3d\xe5\xc8\xb6\x3a\x8e\x6b\x76\x3f\x36\xa1\x92\x39\xb9\x64\x12\x55\x55\xa9\x6d\x29\x8e\x3a\x63\x22\x71\xc8\x16\x80\x89\x52\x36\xcf\x9f\x82\xaa\x39\x65\xdc\x0f\xcb\x29\xab\x3d\xef\x06\x58\xdc\xc0\x5a\xef\x80\x43\x8a\x90\x58\xd0\x5b\xd1\xa8\x93\x07\x43\x59\xfb\x5e\xf8\xfe\xf4\xdd\xc5\xb3\x67\xff\xfc\xd5\xbc\x17\xaa\x5b\x32\x19\x7c\x71\xc3\x0f\x8d\xfc\x3c\xb5\xae\xaf\x4d\x8e\xfd\x94\x77\x1d\xfd\xfd\x74\x13\x90\x43\xfe\x87\x04\xa5\x74\xce\x09\x9d\xc0\xc0\x16\x7f\x52\x4a\xaa\xa4\x43\x1d\x11\xaf\x6d\x1a\xca\x48\x8a\x55\x5e\x7a\x01\x6b\x23\x14\x6f\xab\x7f\xe4\x01\x39\xab\xf2\x20\x9b\x06\x4f\xf9\x1b\xe0\x32\x19\x79\x0d\x72\xa5\xb3\x00\x56\x97\xdd\xbb\xb5\x28\x5d\x26\x7a\x2b\xd7\x71\xcb\x7e\xe7\x02\x25\x99\x10\xef\xba\xd3\x90\x80\xdf\xf4\x3a\x9e\x68\x99\x51\x2d\x21\xd2\x54\xff\xd3\xbb\x55\xbe\x5f\xcd\x56\x93\x8b\x72\xbe\x80\xa8\x3a\xe8\xba\x9a\xb5\xf1\x42\x9c\xc8\x17\x5a\x19\xc9\xa1\x5e\x5f\x17\xbc\xd9\xa5\xaf\x8a\xa5\x94\x35\x7c\x58\x1d\x0f\xab\xc3\x7a\x75\xfc\x96\x3a\x3f\x17\x59\x20\x39\xe7\x6a\xb6\x46\x54\xe3\x2b\x59\x26\x05\x47\xd0\xc3\x4a\x79\x58\x29\xab\x5d\x29\x27\xaa\x6e\xe9\x42\x0b\x25\x2b\x7e\xaa\xaf\x13\xd9\xf4\x4a\x96\x49\xa9\xda\xea\xc3\x2a\x79\x58\x25\xf6\xab\xa4\x74\xcc\xed\x17\x03\xf7\x95\xcb\x66\x79\xe7\x9e\x9c\xf3\x47\xad\xc5\xa8\xb6\x38\x46\x71\x15\x3f\xae\x5c\xc4\x62\x8d\xf3\x76\xc5\xe7\x0a\xf8\xa6\xc6\xb5\x2c\xa0\xaf\x3b\x63\x18\xfa\xe6\x33\x53\x21\x66\x27\xe9\x53\xfd\xfe\xd1\x35\x9e\xa9\xc0\x6f\x98\x8d\xc1\x1b\xde\x34\x38\x85\xa1\x0f\x4e\x54\x01\x81\xd4\x75\x62\x8f\xad\x50\xf2\xf4\xe4\xd5\x82\x8a\x19\x12\x41\x86\x41\x3c\xd2\xef\xe9\xac\xd7\x59\x1b\xd8\x64\xab\x71\xd6\xfb\xae\xf4\xa8\xcc\xac\xee\x66\x3e\x67\x2e\xd4\xe1\x62\xda\xa2\x72\x9b\x97\xd4\x52\x74\xd5\xc2\xda\x6a\x09\xfa\x6a\x71\x8d\xb5\x1c\x9d\xb7\x4c\xac\xca\x96\x9a\xab\x57\xf5\xcb\xe3\xef\x40\xa5\x3d\xaa\x55\x69\x07\x8b\x6a\xb4\x00\x0d\x59\x47\x54\xff\xb1\xd5\x68\x07\x39\x85\x66\xb4\x03\xe4\x4a\xbf\xe2\x0f\x81\x13\xe4\x11\x9a\x20\x17\xad\x46\x9f\x1d\xdc\xa3\x3a\x2b\x0e\xd2\x5a\x99\x99\x2b\x27\xf7\x5c\xe7\x51\xbb\xd5\xf2\xa0\xa8\xfe\x63\x14\xd5\x41\xd5\x0f\x8f\xbe\x03\x3d\xb5\x57\xab\xa7\xf6\x17\xd5\x53\x29\xa8\xa5\xad\x9a\xda\xcf\xab\x29\xc3\xd2\x7d\x2e\x81\xd8\x56\xa3\x93\xf6\xef\x51\x27\xbd\x82\x74\x84\xc0\xa9\xc0\xaf\x59\xb6\x06\x01\x1a\xba\xe8\x83\x2e\x59\x9e\x2e\xb1\x9e\x04\x2b\xd6\x17\xaa\x4e\xbd\xe2\x9b\x3c\x0c\xf0\x28\x44\xbe\xb9\xd0\x9d\xa1\x0d\xa8\xc8\x18\x53\x34\x74\x5c\xe7\x4f\x8d\xc6\x78\xcf\x75\xae\xc8\x68\x14\x20\x40\x28\x20\x6c\x8c\x28\x80\xe9\x8d\xcf\xfd\x69\x55\xcb\x42\xc5\xdf\xa6\x56\xdd\xa9\xd5\xaa\xbb\x4b\xd1\xaa\x01\x57\x17\x29\xdc\x55\x83\x5a\xdd\x6d\x54\xab\xba\xf6\x59\x99\x7a\xdd\x5d\x97\x7a\xb5\x6c\xa4\x14\x4d\x9d\xd7\x25\x6d\x94\xb4\x61\x19\x57\x9a\x8d\x40\x66\x62\x71\x13\x74\x10\x4f\xa6\x88\x0a\x7b\x5e\xa3\x24\x81\x3f\x69\xab\xa4\x96\x35\xf0\xea\x81\x30\x38\xe2\xd4\x93\x98\x05\x38\x9f\x51\x71\x04\xf8\x6f\x6c\x0c\x19\x18\x11\x24\x00\x9e\x20\x90\x75\x49\x01\x7f\x16\x0c\x90\x07\xe3\x08\x01\xcc\xfe\xf5\xe7\x08\x50\x28\x54\x4d\xa0\x00\xfd\xd6\xaa\x8c\x1f\x6c\xea\x6f\xdd\xa6\xde\xad\xfa\x61\xe7\x3b\xd0\xfe\xd5\x77\x12\x09\xd8\xf2\xe2\xda\xdf\x87\xf4\x3a\x95\xe3\x5a\xd5\xbf\xdd\xa8\xfa\x4f\x20\xbd\x06\x4f\x65\x5b\xab\xd1\xfb\xdb\xf7\x68\x56\xa7\xa3\x5b\xba\x4d\xad\x32\xcb\x1e\x34\xc9\xb7\xac\x49\xb6\x1b\x0b\x91\x2d\x23\x84\xaf\x3a\x02\x6f\xc1\x60\x3e\x8a\xa0\xef\xd1\x78\x32\x88\xd6\x1f\xca\xf7\xea\xea\x15\x7b\x39\x78\xfe\xde\x1a\xa1\xd5\xa4\xba\xb2\x01\x74\x22\x06\x43\x1f\xca\xbc\x48\xfd\x36\xf5\x52\x7d\x0f\x9e\x6a\xa3\x6d\x80\x2e\x2d\x4b\x63\x08\x6f\x06\x90\xe6\x8a\xa1\x97\x97\x56\xc3\xdb\x1d\xcc\xb2\x02\xe3\xe5\xa0\x75\x23\xc6\x7b\x36\x42\xde\xb7\xb0\xca\x4d\x4b\xda\xd1\x63\x9d\x2b\xaf\x76\x4d\xa7\xb7\xf4\x90\x36\xc5\x9e\x69\xcd\x54\x7d\xb7\x50\x6f\x97\xf1\xa0\xc3\xe6\xee\xd1\x0e\x58\xd7\x8e\x12\x19\xd6\x0e\x5a\x0c\xbf\xf8\x8d\xad\x4a\x29\x18\x12\x30\x0c\x09\xd3\x4b\xd2\x54\x87\xb3\x6b\x82\x0b\x20\x45\x80\x84\xc1\x1d\x40\x37\x88\x82\x38\x42\x3e\xc0\xa1\x80\xb2\xce\x8a\xf4\x87\xf0\x06\x90\xa1\xf8\x52\xe5\x09\x02\x79\x90\xab\xcc\xed\xa9\xb7\x79\xcc\xcb\x0d\x87\x23\x65\x14\xe8\x8b\x4d\x7c\xab\x51\xfc\xb0\xd2\x16\x58\x69\xf7\x2f\x6a\x23\x7c\x83\xf8\x49\x2b\x20\x8c\x8b\x14\x9a\x4c\xc7\x30\xc2\x11\x80\xa1\x0f\xc8\x90\xa1\x10\xf8\x24\x1e\x04\x08\xc0\x08\x40\x30\x85\x23\x04\x84\x30\x74\xc1\x25\x0e\x3d\xc4\x65\xf0\x4e\x34\x04\x83\x88\x00\x89\xb1\x2d\x40\x8c\x90\x9b\xfd\x86\x27\x7c\xdf\x81\x21\x03\x43\x42\xc1\x18\x05\x53\x1c\x8e\x00\xe4\xd2\x4d\xc1\x35\x42\x53\xfe\x28\xa6\x60\x80\x20\xc5\xe1\x28\xaa\x17\xe3\xe5\x6f\xb8\x19\x4f\x16\xdc\x6e\x63\xc6\x44\x4e\xdc\xba\xb7\xda\xdd\x5b\xc4\x4e\xc6\xb0\xa2\x30\xdd\x32\x43\xd8\xb3\x4d\xd8\x2e\x88\xbd\x3a\xbe\xaa\xa1\x25\x93\x76\x92\xec\xb5\x30\x04\xd4\x3c\xcc\x17\x52\xc5\x39\x68\xb5\xf6\xd3\x37\x44\x77\xda\x2b\x4f\xd3\x2f\x2a\x83\xa1\xcc\x6d\x98\x6e\x06\x7f\x4b\x3e\xcf\xd1\x56\x50\xf0\xd4\xbe\x4a\x3e\xcf\xd1\x56\xe1\xac\x72\xa2\x3e\xce\xd1\xd2\x20\x80\x39\x0e\x3f\x4d\x3e\xcf\x35\xc2\xf0\x3a\x37\xc0\xd0\xd8\x52\x8d\xc9\xb1\x3c\x09\x00\x7a\xde\x7e\xfa\xf6\x45\xf6\xcd\x1c\xe3\x2b\x44\x87\xbf\x50\x1f\xe7\x68\x29\x8a\x3d\x4f\x61\x9e\xa5\x46\x5a\xfa\xcd\x3c\x72\x5a\x0a\xc8\xfd\x2d\xfb\x66\x2e\xf9\x2a\x44\x2e\x9e\xa4\x5f\xac\x27\x16\xb4\x5a\x55\x29\x77\xa5\x51\xa1\xd4\xab\xaa\xec\xcd\xbc\xaa\x7a\x2d\xbf\xbf\x1f\x4d\x55\xe1\x81\x7d\xad\x7d\x35\xc7\xfc\x25\x96\xa8\xb9\xf1\xc5\x57\x41\x45\xc3\x8b\xaf\x88\x8a\x86\x97\xb2\x3a\x2a\xda\x5e\xc6\x4a\xd1\x9b\x16\x3c\x4a\x8c\xac\x6f\x72\x09\x8d\x49\x10\x90\x59\xfb\x05\x94\xbc\x97\x5f\x3e\xa7\xe2\xdb\x25\xad\x9e\xc7\x69\x3a\xb3\x33\x80\xde\xf5\x88\x92\x38\xf4\x0f\xff\xb4\xbd\xf7\xf4\xe8\xa0\xff\x17\x30\x85\xbe\x8f\xc3\xd1\xe1\x4e\x2f\x4b\x48\x9f\x7f\x69\xe0\xf0\x06\x51\x26\x67\x6c\x65\xcb\xa4\xa1\x93\xe5\x2c\x99\x86\x4e\x96\xb6\x7c\x1a\xfa\x59\xd6\x52\x6a\xe8\xe6\xdb\x59\x49\x11\xfe\xdc\x2e\x81\x27\xb1\x9a\xd5\x7b\xf9\x95\x24\x97\x10\xb8\xc4\x9f\xcd\xdb\xdb\x6a\x77\xa1\x14\x5b\x35\x11\x9a\xe4\x73\xcb\xa9\xd4\x9a\x38\x4f\x03\x85\xe6\x10\x87\x09\xf2\x71\x3c\xd1\x5a\x3b\x4b\xbf\x98\xc7\x36\x2d\xb8\x18\x5e\x25\x9f\x57\x1e\xb5\xbf\xba\xa3\xb2\x14\xa6\xc5\x8e\xc9\x02\x87\xe0\x1e\x4e\xc9\xd3\xdf\xc3\xd3\xb7\xef\xb7\xcf\x17\x71\x48\x2b\xda\x1b\x61\x41\x64\x88\x7a\xd6\xc0\x14\x06\x88\x31\xad\x40\xb4\x68\xe8\x22\xf9\x36\x41\xd6\x72\x7c\x14\x79\x14\x4f\x93\x00\x9a\x04\x76\x67\x02\xfd\xab\x31\x9a\x24\xe9\x04\x13\xe8\x03\xf9\xd9\x75\x8e\x3c\x0f\x85\x4c\x38\x6c\x42\x14\x33\x0a\x83\xa8\x6b\xc0\x36\x4b\xfd\x4b\xcb\x25\x6d\x4a\x89\x1f\x7b\xec\x58\xb1\xe5\x23\xdf\xc2\xc4\x37\x40\x7d\xe5\x3a\xf2\x0f\x30\xa4\x64\xa2\x02\x84\x4e\x61\x34\xc6\xc7\x84\x4e\x81\x7a\x3d\xea\x82\xd7\xc2\xd9\x34\x20\x94\x92\x19\xf2\x85\xa3\x08\x06\x0c\xd1\x10\x0a\xff\x2d\x14\xa3\x94\x7e\x29\x41\x1f\x88\x3c\xce\x80\x75\x8e\x15\x4d\x08\xa7\x45\x1b\xeb\x33\xf9\x4d\x69\xac\x89\xdb\xd6\x23\xe1\x27\x25\xd8\x22\x84\x0e\xc0\x10\x88\x56\x48\x08\x03\x40\x51\x34\x25\x61\x84\x4c\x43\x58\xa3\xfb\x4b\x8a\xf4\x62\x4b\xba\x88\x41\xd1\xf9\x14\x4f\x06\xe4\x1e\x70\x41\x3f\xef\x3f\x7f\xf7\xfc\xea\x69\x85\x23\x6c\x0c\x29\x93\x60\x5c\x3a\xd4\x8b\xdd\xca\x17\x23\x2a\x0d\xb4\x4a\x13\xec\xf2\xad\xb2\x08\x2c\x55\xc0\x06\x4a\x01\xff\xa4\x78\xe9\xcf\x3f\x85\xf4\x44\x61\x04\x39\xd1\x34\xc0\xac\x73\x83\x91\xd1\x7c\xce\x03\xaa\x91\x62\x11\xd8\x00\x8d\x50\x68\x06\x15\x4b\x22\x15\x94\xb9\xb1\x24\xd8\x1d\x75\x5d\x9f\x43\x8d\x71\x6a\x60\x6f\xb6\x73\x78\x3c\x8a\x96\x06\x44\x1e\xfd\x52\x28\x41\x86\xaf\xef\x61\x11\x60\x1d\x67\x11\x58\x9d\x12\x2f\xcc\x5f\xd6\xc0\xea\xec\xb4\x84\xd5\x71\xda\xa0\xe1\x6c\xdb\xa1\xe1\xd4\xb5\xaa\x60\x7b\xea\x82\x18\xb2\xbe\xe6\xc4\xf8\x69\x32\x90\xb6\xdd\x9d\x06\x34\x1e\x03\x82\x8f\x95\x61\x3e\xd7\x25\x4b\x5b\x5b\xf9\x08\x08\x5b\x5f\x6c\x13\xea\x5e\xef\x44\x53\x06\xe0\x29\xa4\x20\xd5\xbc\x62\x6b\x9c\x8d\x91\xbc\x14\xd4\x95\x06\x90\xd7\x6a\xe2\x7b\xbe\x5b\x52\x18\x68\xaf\x25\x17\x86\x70\x84\xba\xe0\x85\x08\xa2\x83\x40\x98\xa8\x14\xc8\x52\x0c\x32\xfa\x8e\xa2\x3f\x62\x4c\x91\xa8\x39\x2c\xb2\xea\x64\x38\x2f\x60\x04\x44\x08\xc9\x4e\x21\xe3\xaf\x0e\x50\x20\x37\x64\x21\x41\xaa\x28\x71\x71\x02\xab\x79\x51\x0f\x0f\x63\xf7\x5e\x63\x24\x8d\x66\x05\x7c\x8a\x48\x28\xd4\xa8\x5e\xfe\x95\x7f\xd9\xa4\x82\x6d\x80\x62\x5b\x19\xf1\xcb\xdd\xbf\xcd\x7b\xef\x72\xf7\xf3\xf5\xef\xe4\x11\x39\x3d\x7b\x3b\xfb\xe7\xc9\xb2\xaf\xb4\x16\x8f\xc2\x9b\xe3\xe6\xaa\x34\x45\xda\x15\x56\xfd\x76\xdb\xca\x7d\x25\xa1\x15\x0f\xf7\x7a\xd3\xdb\xbf\x00\x01\xbd\x78\x28\xd0\x7c\xff\x52\x7d\x3c\x57\x6b\xa3\xc1\x56\x99\x6b\x81\xac\xe3\x3a\x7b\x5e\xcf\xc4\x95\x49\x75\xca\xda\x35\x53\x4a\xb8\x9c\x0b\x13\x3d\xb8\x03\xd1\x98\xcc\xa4\xc2\xc3\x22\x22\x59\xc6\x3f\x0c\x20\xe5\x4a\x14\xe0\xd0\x0b\x62\x1f\x71\x55\x9a\x60\x2b\x92\x38\xd5\xb5\x03\x72\xeb\x02\x18\x45\xf1\x04\x49\xad\x1c\xe1\xcf\x28\xf9\xd1\x23\x21\x83\x38\x44\x14\xa0\x40\x8c\xca\x15\xba\x14\x47\xc0\x47\x91\x4c\xda\x60\x04\x0c\x10\x10\x4c\xf1\xe5\xf9\xe1\xf8\xf2\xb2\x3b\xe7\xa5\xd6\xd2\xd0\xb8\x6c\x82\x17\x57\xa7\x76\xeb\x06\xbe\x4e\x37\x9c\x98\x0e\xc1\xa0\x36\xf7\x42\x25\x45\x20\xa2\x71\xd3\x66\xbe\x7b\x65\xf0\x1b\x66\xe3\xe3\x94\x29\xdf\x9f\x5e\x78\x31\x04\x10\x88\xe3\x21\xd7\x03\x37\x58\x2e\x6d\xd5\x92\x27\xcb\x93\x26\xaf\x69\x16\x7c\x3a\x1c\xa1\x3d\xf8\x0e\xe8\x02\xcc\xc0\x0c\x07\x01\x5f\xc1\x30\xca\x16\xb4\x5c\xfa\x54\x9e\xfd\x7d\x1c\x8e\x2a\x5a\x4f\xf0\x76\x93\x86\x33\x25\x11\x04\x64\xc6\xdf\xe3\x76\xa0\x17\x47\x8c\x4c\xa4\x47\x04\x7f\x16\xbc\xf9\xef\xd0\x0f\x76\x82\xf6\x6d\xa8\x8a\x61\x80\x6e\x35\x6c\xf2\x79\x4d\x06\xe1\xbf\xef\xf4\x57\xa2\x25\xfa\x9a\x96\xd8\xff\x0e\x4d\x86\x46\xb6\x6d\xaf\x84\x6d\x52\xa1\x2a\xbe\xed\x7c\x7f\x6c\x5b\xb9\x46\x3d\x29\xda\x58\xba\x35\xe4\xe3\x09\x0a\x23\x4c\xc2\xa8\x64\x13\x55\x29\xb1\xd5\x2f\xd6\x00\xdf\x20\x10\x4f\x7d\xc8\x5a\xdd\xb2\x95\xe4\x2e\x6b\x62\xc5\x9b\xfa\xea\x97\xeb\x1b\x21\x23\xe1\xe8\x3f\x42\xfe\x42\x3c\xe1\x27\x5f\x69\x4e\x0b\xbb\xde\x1b\xc3\x70\x94\xb8\x2f\xfe\xd3\xf7\x4d\x8b\xb9\x5c\xcd\xa6\xb9\xbe\x3b\xca\xe5\xe2\x61\x0f\x49\xc8\x92\xbb\xf3\xf5\x57\x86\x38\x7b\xff\xf2\xed\xe0\xea\xf5\x22\x37\x96\xfa\x00\x2c\x8a\xea\x5b\x2f\x2e\xf5\xfc\xb8\x5f\x78\x3c\x8d\x2d\xd0\x6f\xbd\x25\x62\x4e\x59\xae\x54\x23\x53\xed\xf9\x4b\x32\x41\xdc\x8c\x8e\x10\x37\x97\x87\x32\xd2\x87\x6f\x0e\xc2\x57\x99\x44\x9f\x9f\x13\x06\x42\xe4\xa1\x28\x82\x14\x07\x77\x60\x82\x92\xf0\x72\x2a\x0b\x54\x76\xeb\xfd\x73\xf3\x8f\x77\xdb\x34\x5e\xbe\x6e\x77\x9d\x62\xdc\xc0\x7f\xd0\xa8\x77\xaa\x46\xbd\xe7\x14\xc2\x37\xbe\xb9\x41\xaf\xd1\x15\xab\xad\xb5\x65\x68\x1d\x06\xbd\xeb\x7b\x88\x93\xb8\xbc\x1a\x86\x37\xef\xf6\x77\x56\x90\x4d\x20\xab\x44\xf3\xf9\x61\x34\x46\x0b\xe7\x10\x74\xe0\x74\x1a\xa0\x4e\x74\x17\x89\x74\x20\x5b\x63\x4d\x70\x37\xff\x6a\x3e\x2a\xaa\xb1\xdd\x9c\x49\x52\x8a\x32\x60\x77\x53\x34\x84\x9e\x16\x66\xc0\x7b\x7c\x0e\x27\x38\x30\xd3\xdd\xea\xf6\x7f\x29\x66\xee\xd3\x00\x87\xd7\x67\xd0\xbb\x14\x24\x3c\x27\xe2\x89\x36\xec\x1b\x88\x02\x77\x13\xe8\x55\xb0\xd0\xae\x83\x05\xf9\x68\xec\x64\xfd\xcc\xbc\x44\x23\x82\xc0\xdb\x17\x2d\x59\x18\xf1\xd7\x3a\x31\x2e\xb2\xae\xae\xb9\x05\x19\xa6\x35\xbd\x7e\x36\xbd\x21\x03\xc2\x5a\x60\xf3\x0b\x26\x51\xf5\x52\x9e\x45\xd5\x4d\x2d\xc8\xa0\xb4\xe1\xf5\xb3\xe7\xf5\xed\xdd\x08\x85\xe0\x12\x9a\x23\x9a\x6b\x78\x44\xc4\x9b\x9d\x48\xbc\x59\x48\x34\xa8\x6f\x74\x41\x6e\xc9\xd6\x3b\xaa\xf5\xf5\xb3\xec\xed\x20\x0e\x59\xdc\x92\x5b\xb1\x7a\x29\xcf\xa8\xea\xa6\x16\xe4\x51\xda\xf0\xfa\xd9\x73\x0c\x43\x06\x29\x0a\x5a\x54\x8a\x11\x1c\xf2\xb2\xf7\xf2\x4c\xaa\x6d\x70\x41\x3e\xe9\x6d\xaf\x9f\x55\xa7\x28\xb8\x41\x0c\x7b\x10\x9c\x23\x19\x0d\xd3\x82\x5f\xe3\xe4\xe5\x4e\x88\xe2\x52\xca\x74\x73\xd3\x0b\x72\xae\xd4\xc1\xfa\xd9\xc7\x55\x4f\x27\x42\x14\x0f\xdb\xee\x81\xda\x8b\x79\xb6\xd5\x37\xb9\x20\xcb\x72\x8d\xaf\x9f\x5d\x13\x12\x92\x68\xca\x09\x6c\xc7\x2d\xed\xbd\x3c\xb3\x6a\x1b\x5c\x90\x57\x7a\xdb\x8b\xb3\x6a\x7d\x7e\x20\xed\x0c\xd5\xfa\x30\x26\x13\xd9\x13\x78\xbc\xb5\x9f\xc0\x76\xde\x9e\xf9\x17\xc7\x14\x9a\x4f\x60\xb5\x15\x40\xcb\xb8\x07\x19\xde\x42\x39\x39\xb5\xde\x27\xa0\xb0\x16\x06\x14\x16\x43\x48\x41\x6d\x48\xa0\x86\xd1\x20\xf2\x20\xc8\xc8\x58\xe1\x48\x35\x80\x27\x49\xa9\xce\x88\x7a\x8e\xeb\x6c\xc5\x78\x4b\x60\x13\x45\x5b\x72\x92\xf8\xfb\x5d\x55\xd9\xf4\xb1\xeb\xc0\x80\x39\x2a\x08\xde\xa9\x44\x80\x98\xcb\x07\xa2\xe8\xae\x0a\x98\x2d\xc6\x96\x0a\x1f\xab\x47\xc2\x21\x1e\x39\xae\x83\xc2\x1b\x4c\x49\x38\x41\xf2\xa4\xe3\xf8\xe8\x06\x05\x64\x2a\x3f\xeb\xe1\x9b\xf5\xeb\x33\x5f\x3a\x3c\x15\x68\xa7\x50\x22\x3c\x07\x83\x61\x5c\xf2\xa2\x1e\xe7\x28\xc6\x3e\xb2\x41\x04\xa9\x7d\x02\x54\xe2\x5e\x8c\x19\x9b\x46\x87\x5b\x72\xa2\xa6\x94\x88\xe5\x80\xc9\x96\x4f\xbc\xa8\x5a\x28\x34\xee\x9e\x10\x2f\xe6\x54\x43\x33\x64\x68\x99\x23\x11\x62\x4c\x60\x44\x30\x72\x8d\x12\x7b\xb7\x0d\x5f\x8e\x8e\x5f\x81\x2b\xf5\x6e\x13\x5f\xca\xae\xa4\xe2\xa7\x79\x11\x4e\x9a\x64\x30\x59\x3b\xa3\x98\xb1\x2c\x2b\xda\x20\xc5\x73\xe2\x9c\xa8\xb7\x63\x63\xe4\xae\x23\x0b\xdb\xf6\x5b\xc5\x3b\x96\x5c\x6e\x0b\x6b\xf3\x9c\x12\xce\x54\xf8\x0f\x96\x2a\x5c\x70\xae\x33\x41\x61\x7c\x0f\xd8\x57\xe3\x6d\x7a\x7c\xfe\xf8\x67\xb3\x02\x0f\xe1\x04\xc9\x1d\xb5\xa1\x9c\x73\x59\x3c\xa6\x70\x24\x3c\x6b\xf1\x44\xa6\x98\xe5\x81\x3f\xeb\x45\x2b\x2f\x4b\x25\x59\x80\x11\x96\x11\x28\x3a\x46\x1b\xe7\x5e\xb5\xea\x9e\x1a\x1e\xef\xd4\x04\x84\xff\x46\xe8\x75\x40\xa0\x6f\x73\xd5\x16\x17\x53\x19\x64\xe3\x38\x62\x75\xca\x59\x14\x39\x91\x0e\x29\xd7\x89\xc6\x24\x0e\xfc\xcb\x31\x99\x9d\x27\x1c\xaf\x81\x62\xd4\x52\x1c\x0a\x49\x0e\x6d\xe1\xf9\x38\xa1\x05\x3d\x97\x11\x3a\x25\x33\x44\x3b\x11\x0a\x90\xc7\x32\x9b\x8b\x88\x5c\x23\xfe\xb6\xfc\x05\xf9\xe2\x4f\x48\xbd\xf1\x73\x8c\x82\xec\xd3\xb3\x10\x0e\x02\xf1\x2b\x09\xe5\xcd\xa5\x84\x55\x15\x81\x48\xa5\x9c\x92\x88\x50\x86\xfc\xdc\xe8\xdd\x02\x93\x64\x26\x45\xfa\x88\x58\xba\xa1\x68\x4c\x6c\x75\x23\xe6\x54\x36\xa6\xd7\x7e\xef\xa7\x99\x15\xe2\x35\x98\xd4\x8f\xe5\x96\x70\xcf\xfd\x90\x24\x39\xfc\x11\xf3\x23\x8a\xda\x46\xab\x1e\x9a\xc4\xac\x3c\x99\x65\x3a\xf3\x49\x11\x35\xfd\xf2\x76\x48\x98\xbe\x7a\x2c\xd9\x56\xca\xaa\x48\x32\x43\xf8\x8c\xba\xd9\x22\xed\x44\x33\xcc\xbc\x71\x65\x2d\xb0\x8a\x5a\xce\x61\x92\xfc\x92\x2d\x70\x2b\x23\x40\xff\xef\x44\xbe\x0a\x52\xd2\x5b\xd6\xee\xcf\xff\xe7\xe4\x8a\x20\x27\xf4\x59\x14\xed\xaf\xb4\xd9\xdd\x62\x47\xa6\xf5\xdc\xe6\xf6\x38\xd7\x60\x69\x0d\xe6\x2d\x81\x4f\x64\xa0\xb6\x7f\x29\x1a\xc7\xa9\x11\xa0\xe5\x07\x19\x4d\x80\x97\x64\x50\xbb\xf9\xb7\x40\x8f\x69\xab\x01\x8f\x83\x38\x62\x1a\xf6\xf3\x12\x14\xa0\x25\xbb\xbc\x00\x0b\x16\xcc\xc5\xb1\xe3\xe4\x65\x7b\xa6\x35\x12\x14\x21\x7a\x83\xe8\x9c\x04\x5d\x26\x2f\x2f\x32\x8b\xed\x4c\x9a\x0a\x6d\x5f\xd8\x91\x8b\xe0\xf8\x59\x2e\x6a\xdf\xdd\x5e\xad\xb9\x94\x19\x3c\xad\xcf\xbb\x9f\xc8\xa0\xe3\xa3\x69\x40\xee\x38\x93\x3b\xbe\xaa\x45\xb6\x76\xbb\x69\x6f\xef\x15\xf6\x67\x8c\xb6\x3d\xf8\x72\x6b\x55\x29\xe1\x31\x8c\xc6\xd9\xbe\x3a\x41\x8c\x62\x4f\x42\x8f\x47\xd7\xbf\x50\x12\x4f\xf9\x07\x18\x04\xc4\x83\x72\xcb\xcd\x60\x8f\x33\xff\x8d\x93\x67\xc8\x96\xc6\x9b\xa4\xc5\x8f\x12\x1d\x2d\xf9\x3e\xdb\x73\xf5\xef\x64\xaa\x5e\x53\xeb\x9c\xb4\xce\x48\xd2\xb6\xc4\x66\x35\xa2\x8b\xe3\xb5\xea\x41\x75\xb3\x4c\x19\x35\xcb\xd9\x82\xe2\xba\x7e\x31\x1d\xdf\xbd\x3b\x21\x47\xbf\xbc\x34\x8b\xa9\x6f\x69\xcb\x97\x91\xa9\x53\xcc\x36\x20\x2f\xca\x3b\x82\x72\x9c\xce\x9b\xc1\xcc\xd7\x8b\x7e\xf4\xdd\xd2\x44\x0a\x23\x98\xb2\x17\x7e\x55\x82\xa7\xd3\x90\xdd\xaa\x55\x18\x10\x08\xfd\x8e\xb1\x0f\x51\x70\x40\x69\xef\x2c\x3d\xd5\x4c\x8f\x2a\x4e\x60\x22\xa7\x6c\xcb\xe7\x5e\x4d\x52\x13\x2f\x28\x91\x49\xf4\x8d\xc6\x7c\xb5\x8f\x4a\x1f\x57\x56\x5e\x21\x83\x9d\xc9\x80\x87\x14\xd3\xdf\x24\x79\x91\x5a\xef\xad\x8c\x9a\x6a\x5a\x8c\x55\x55\x1a\xbd\x6c\x53\x88\x85\x8f\x61\x08\x7d\x64\xc4\x34\xaf\x7e\x95\x21\xaa\x1f\x4e\xde\x21\x1a\x55\x54\x6c\xa9\x6e\x63\x0c\x45\x02\xb5\x80\x0b\xd5\xda\xfa\x93\x53\x35\xf1\x37\xaa\x17\xd7\x09\x63\xbe\xb8\xea\x52\x8e\x0d\xc2\xdd\x73\x9d\x7f\xeb\x1e\xec\x09\x11\x2a\x64\x48\xc9\xa4\x23\x4a\x41\x9a\x24\x26\xeb\x33\x8a\x07\x13\xcc\xae\xf0\x44\x33\xfc\x2b\xba\x37\x1b\x0a\xfb\x3a\xd8\x4c\x35\xda\x22\xff\x83\x6b\x2a\xe8\x31\x90\x9f\xd7\x9d\xea\x03\x0f\x13\x15\x74\x1c\x61\xf7\xbc\x9e\xa2\x50\x66\x7e\xf7\xf4\xcc\xef\x8c\x0b\x7e\x5a\x28\x54\xa7\xb2\xc9\x76\xc9\x2f\x2b\xd5\x4d\xfd\xf2\xa9\x34\x79\x9a\xca\x61\xa8\xfe\xaa\x8c\x8a\x0c\x5a\xb4\x71\x0f\x6a\xbc\xcb\x50\x87\x99\x74\x53\xae\x0e\x4f\xce\x1e\xd6\x2c\x01\xab\xe7\x73\x9b\x67\xf3\x81\xa9\x78\x3a\xb2\x55\x13\xcb\xdf\x5f\x17\xdc\x57\xab\x0c\x88\xb5\x6f\xb7\x37\xbf\xff\xe3\xfd\x1d\x9c\x1c\x99\xb7\x5b\xb1\x33\x08\x55\xdd\x7a\xd3\xb5\x76\x9d\xd9\x14\x91\x38\xca\x58\xb4\x40\x26\x7c\x1a\x06\x3e\xe4\xca\x63\x10\xa0\xa2\x6e\x77\x92\x83\x54\xc4\x3a\x0c\x0e\x02\xed\xe2\x2e\x22\x31\xf5\x0c\x5e\xa0\x9c\x4a\x2c\x48\x73\xf1\xb3\x65\x40\x9e\x64\x81\x3d\x5a\x08\x1b\x3b\x25\x60\xf7\x10\x52\xad\x90\x50\xe5\xf9\x51\xbe\x9a\x60\xd7\x9d\x98\x5d\x0c\xa6\x67\xcf\x88\x8f\x87\xb8\x01\xd0\x32\xf7\x46\x21\x9b\xaf\xe1\xe9\xba\x32\x4b\xa6\xe7\x6b\xb6\xd9\x0a\x72\x54\x4a\xa0\xdd\xd3\xc7\x17\x6f\x5b\xf0\x06\x4d\x48\x11\x67\xb0\x21\x6d\xc3\x24\x06\x52\xf7\x5b\x8a\x81\xda\xb8\x33\x81\x13\x75\xa4\x52\xe9\xcd\xbe\x77\x04\x18\x0a\x43\xb7\x72\x63\x50\xd8\x21\x13\xe2\x4b\xec\x10\xbe\xb1\x58\xdd\x45\x37\x17\xef\xa8\x50\xd1\xcb\x3f\x9c\x5b\x69\xd6\x25\xea\xeb\xf4\xdc\xbb\x6e\x5d\xfd\xe6\x3d\xdd\x7e\xb7\x1f\xfe\xd3\x2e\x65\xc1\xa8\x0f\xa5\x33\x25\x02\xe6\x43\xb7\x95\xbe\x56\xfe\x98\x90\xcc\x28\x9c\x56\x1a\xd5\x26\xd7\x3d\xef\x47\x9e\xc5\x6b\x4c\xea\xaa\xe2\x45\xf2\xf5\x2a\x2c\xa2\xb2\x2e\x9e\x06\xd0\x43\xfe\x31\x0c\x21\xc5\xba\x73\x3e\xf7\x90\x8f\x22\x4c\x73\x4f\xe9\x18\x46\xd9\x9d\x7e\x03\x12\x92\x4d\xc3\x79\x78\xa4\xe4\x60\x51\x07\x8f\xe4\x54\xe4\x07\x14\x5d\xa0\x59\x27\x35\x1a\xaa\xe8\x4c\x2d\x02\x16\xd9\x30\x50\xd3\x09\x60\x0b\x54\x1e\x46\x0c\x63\xaf\x3b\x8b\xd4\x1d\x10\x96\x2b\x53\xa5\x17\x4d\xaf\xd8\xf3\xfd\x42\x30\x68\x25\x5c\x17\xf6\x4e\x4b\xce\xad\x78\xb4\x27\x72\x56\x97\x3c\x5c\x25\x2b\x57\x84\xc1\xe0\xdb\x11\x14\x6b\xe5\xa3\xdd\xe0\xe5\x86\x35\x46\x30\x60\xe3\xbb\x6c\x1a\x7b\x26\xbd\xb2\x74\x4d\x70\x2a\xbb\x5d\xf2\x1c\x95\x06\xf3\x1f\x32\x49\x71\x58\x3f\x4d\x0a\x35\x7f\xe9\xb3\xf4\x36\xe9\x77\xc9\xf3\x64\x18\xcf\xbc\x33\xd5\xe2\x84\x25\xcd\x81\x26\x3b\xa0\x34\x59\x21\x61\x78\x88\xa5\x71\xd6\xca\xf1\x69\xf0\x25\x54\xbd\x7b\xa2\x23\x8d\xce\x83\x33\xb6\x4e\x5b\x55\x99\x61\x8b\xda\xa9\xfa\x7d\xc7\xda\x0d\xd4\x18\x1e\xbf\xfc\x74\x72\x1c\x7e\xdb\xce\x84\x2b\x18\x5d\x03\xe9\xa4\xfa\x96\x9d\x09\xa9\x2b\xed\x32\x9e\x4c\x52\x4b\xca\xc9\x5d\x68\xad\xd8\xa7\x30\xd7\xd1\xfd\x1c\x21\x5f\xf3\xe4\xff\xdd\xfe\xcd\xa3\x98\x11\xf0\x06\xdd\x20\xca\x5a\xbc\x65\x65\xfe\xe6\xfb\x51\xfa\xd1\xf6\x79\xb5\xad\x82\xb6\xef\xa5\x8a\xde\xf8\xe6\xaa\x5d\x02\x9c\x1a\x43\x44\x5a\xfe\x01\xdf\x29\x61\x96\x4a\x5f\x80\x5b\x0a\x62\xa9\x81\x2e\x65\x75\x41\xbd\x85\x66\xdb\x5f\x34\xe5\xbb\xeb\x1b\x50\x60\x93\xb6\xa7\xa2\x4d\xe4\x2b\x28\x6f\xc7\x75\xde\xa7\xd0\x5f\x56\xe1\xf5\x8d\x14\x9c\x6f\x1d\x55\x45\xf2\xb8\x1f\x4a\x51\x6e\x56\x2c\xab\x1b\x10\x8c\x19\x91\x0b\x42\x74\xf9\x5e\x04\x86\x9d\x93\xd2\x90\xda\x74\x44\xa8\x89\x73\xa5\xc3\x5e\xcf\xc0\xb6\xec\xd4\x57\x78\xbd\xc5\x91\xcf\x52\xfa\xaa\xce\x41\x16\x54\x34\x1e\x26\x2c\x49\xb0\xb6\xa6\x2c\xdb\x6b\x61\x9f\x35\xdf\x6c\x2c\xc5\xff\xb6\x2a\xb3\x46\xdb\xa3\x16\xb4\x67\xa2\x4e\xc4\x28\x82\x93\xf5\xdb\x32\xbf\x3d\xfa\x15\xff\xe3\x06\x8e\xcc\xb6\x0c\x45\x1e\xa1\x86\x60\x84\x62\x95\x72\x85\xc2\x83\xfc\x93\x6c\x48\xc5\x8c\x25\xed\x52\x09\x57\x01\x9f\xa6\xda\x41\xdd\xc8\x41\x19\x7d\x30\x3b\x81\x0c\xd9\xde\xd4\x97\x0a\xc0\x32\x3c\x41\x22\x14\x22\x24\x0c\xd5\x6b\xf0\x7e\xab\xdb\x5f\x4b\x6f\x75\x72\xcd\x2c\x10\x92\x5b\x76\xe4\x3a\x67\x67\x67\x67\xe0\xc4\x05\xef\xdf\xbf\x7f\xbf\x24\x1d\xff\x36\xbc\x0e\xc9\x2c\x04\x9c\x31\x8d\x6a\xde\x7e\x37\xd7\x6f\x7c\xab\x27\x81\x08\x41\x36\x1f\xa4\x12\x5c\xa2\x42\x6c\x4e\xc5\x6d\x6f\x99\x8d\x66\x44\xa2\xa6\x11\x2c\x35\x7f\xcc\xbc\xae\xe7\x53\x0f\x78\x38\xec\x0c\x31\x0a\xfc\xa8\x03\x43\x5f\x71\xee\x3e\x1c\xf2\xcf\x7e\x0e\x7f\xf6\x9e\xbe\x32\xeb\x08\x35\xa1\xae\x23\x48\xb5\x3c\xf6\x88\xb1\x25\x47\x0c\x79\x6c\xa8\x2b\x30\x20\x94\x8c\x64\x85\xad\x1a\xa8\x3a\x91\x97\x7b\xee\x50\x32\x4b\xdc\x29\x19\x82\x7e\xee\x39\xe1\xdb\xe0\xa7\x20\xf5\x58\x40\x66\x88\x7a\x30\x42\x9a\x8d\x71\x75\x37\x35\x44\x84\x57\x9d\xe7\xcd\x11\x31\x06\xe2\x3c\x14\x54\x04\x02\x3b\x0d\x71\x57\x13\x48\xaf\x11\x2d\x8f\x6c\xf1\x61\x38\x15\xd9\x6c\x56\x4d\xba\x0e\xf4\x75\x2f\x93\x95\x51\xfc\xb3\xad\x9a\x5b\x80\x2c\x1f\x05\x88\xb5\x25\xac\xb3\x06\xc2\x90\x8f\x5b\xd3\xf5\xf3\x56\xa7\x60\xb8\xd9\xa7\xd9\x36\x9a\xfd\xd5\x67\xc3\xcc\x1c\x3c\x2f\x27\x07\x1c\x56\x42\xc1\xad\x53\x9c\x5a\xaf\x3e\x90\xfb\x5e\x65\xcc\xe8\xeb\xc1\x29\x8c\x5c\x96\x59\xc9\x6d\x43\x8e\xc5\x36\x7a\x9f\xa2\xbc\x72\xa6\xbc\x0e\xfc\xfb\x66\x4a\xdb\x65\x74\x3f\x3c\x01\x4f\xfe\x06\x56\x26\x52\x8b\x8c\x6e\x41\x91\xaf\x56\x43\x6d\x35\x90\xf5\x99\xb1\x74\x06\x2c\xdb\x14\x89\x4d\xd5\x26\x8c\xb1\x54\xb0\x68\x01\xc3\xa1\xdf\xc2\x70\x58\xfe\x7e\x6f\xdb\x7b\x0b\x05\x5d\x6e\xb2\xb5\x82\x5e\xf6\x5e\x6f\x22\xa9\xb5\x82\x5c\xf6\x3e\x6f\x22\xaa\xad\x82\xd2\xf7\xf8\xa5\xed\xef\xe6\x3b\xb3\x2c\x94\xd5\xb0\xaf\x83\x2f\xcd\x77\xf3\xe5\x55\x51\x6d\xd4\xea\xc7\xc0\xaa\x33\x50\x8a\x34\x22\x0f\x05\x6e\xb6\x92\x33\xfe\x3e\x4f\x0e\x0c\x29\xf1\xaf\xb3\xe5\x6e\x05\x43\xcc\xbf\xf9\x7a\x4f\x87\x48\xf3\xc8\xe7\x3e\x49\xde\x43\xb1\xcc\xb3\x9d\x60\x3a\x79\xb7\x6d\x3e\x36\xca\xeb\x6f\x79\xd1\xe3\xb8\x8e\x8e\xe3\xac\xca\xb5\xb9\x8e\x40\xc0\x46\x62\x99\x70\x85\x16\x87\xb5\x39\xee\x46\xbd\xac\x27\x82\x08\x2e\x24\xab\x6e\xfe\xf3\x9e\xa1\x31\x63\x1a\x70\x49\x85\x2f\x59\x81\x37\xd3\x31\x9f\x16\xaf\x6e\xb7\xa5\x2a\x5f\xaa\x22\xaf\xa3\xaa\xa5\x36\x5f\xaa\x2e\xaf\xa3\xab\x9d\x42\xcf\xd4\xf9\x92\x94\x79\xc5\x8d\x6f\x93\xc9\x37\x20\x81\x7e\xd1\xf5\x92\x0c\x0e\x35\x8b\x54\x1f\xef\x8b\x93\x66\xab\xd4\x6c\x84\x65\x6c\x95\xf7\x34\xa2\xd5\x1b\x44\x07\x24\xca\x16\xe7\x92\x38\x3e\x5f\x86\x8a\xcd\x86\xb5\x94\xcd\x4a\x1f\x8e\xb6\x63\xe9\x5f\xd7\x6f\x5b\xad\x3c\xb4\x15\x76\x70\xc2\x4e\x3d\xaf\x65\x41\x8b\x38\xe7\x54\x5f\x58\xe9\xd6\x5a\xab\x0f\x26\xf3\x83\xc9\xfc\xcd\x99\xcc\xed\x35\x6d\x16\xb1\x73\x98\x77\x01\x54\xd8\xdd\x46\x6d\x5b\xbc\xce\x7a\x2b\x6c\x28\x1b\xd0\x9a\x8d\xa2\x62\xd8\x73\x9d\x0e\xff\xd0\xc1\x61\x4d\x83\x35\xed\xb6\x70\x56\xa7\xfa\x53\xda\x7c\x1d\x61\xed\xa5\x0b\x33\x8a\x3a\xc9\xd3\x9c\x8c\xbd\x5c\x5a\x63\xee\x26\x7a\x5f\xa4\x44\xea\x87\x93\x8c\x8d\x7b\xb9\xdf\x9a\x5d\x13\x7b\xee\x7e\x4e\x77\x6e\xb6\x51\xaf\xa5\x1d\x6e\x41\xd9\x76\x8b\x7b\x64\x0b\x44\xb8\xff\xa0\x13\x59\xeb\xed\x2d\x61\x2e\x8c\xae\x6d\x16\x41\x9b\x8d\x6d\x7b\x49\x1b\x5b\xf5\xb5\x8b\xfd\x25\xd2\x7f\xf0\xed\xcf\x37\x7a\xf7\xf3\x6d\xde\xfc\xe4\xef\x7d\x96\x78\xeb\x63\xf2\xe6\xf2\x45\x75\x68\xf0\x56\x1b\xb7\xaa\x8a\x80\xb9\xa3\xf4\xe0\x6f\x0b\xac\x56\xdc\xa7\x5a\x36\x64\xc6\x60\xab\x5a\x47\xc6\xfd\x67\xa7\x7a\xff\xd9\xa9\xdd\x63\xb2\x2e\x77\x5d\x27\x0e\x03\x24\x9b\xcc\x21\x7f\xed\x66\x49\xfd\x3e\xf2\x8a\x21\x36\x0a\xe2\x2d\x45\x4d\xb3\x3d\xe9\xb8\x36\x50\x95\xd5\x62\xb3\xe3\xee\xb6\xda\x0a\x17\x3c\xe2\x15\x94\x6b\xdd\xb1\xce\x1a\x8b\x6f\x19\x7b\xd8\x76\x69\x0f\xdb\x6e\xd8\xc3\xac\x80\xca\x5a\xdc\x68\x58\xe1\x01\xac\xc4\x19\x39\x97\xe7\x71\x0a\x47\x68\x6b\x00\x99\x58\xa9\x6b\xf6\x3f\xce\x7e\xff\xfd\xea\xdd\x24\x7a\x67\xf6\x3f\x66\x18\xa7\xa9\xc3\xd1\x14\xe6\x56\x80\x71\x4e\x04\x24\x83\x8b\x15\xe0\x5d\xea\x67\x73\x50\x5b\xee\xa0\x9d\x75\x6b\x1d\xc9\x22\x63\xa9\xea\xbc\x9b\xb9\x85\x84\x43\x2f\x5b\x42\x1f\x3f\xe6\xcd\x47\xbd\xfb\xb2\x16\x71\x75\xd0\xb4\x06\xdb\x43\x47\x62\x4b\xb8\x22\x84\x30\x67\xf0\x41\x3a\x8a\xcc\x30\x1c\xd9\xc9\x46\xd9\x9e\xc9\xca\xb1\x51\x53\x8d\x0b\xc0\xad\x0c\x1c\xcd\xe9\xa8\x54\x44\xa7\x90\xb2\x68\x4b\x04\x9e\xa7\xa3\xf9\x44\x06\x02\x23\xb3\x84\xfa\x98\xcc\xa5\x4c\x22\xaf\x43\x87\xac\x40\x1f\x29\xa8\x23\x8d\x02\x44\x29\xd1\xc4\x4c\x7c\x3c\x43\x91\x84\x70\x77\x48\x78\x82\xa3\x09\xd6\x73\x29\x72\x4f\x7c\xac\x86\xb0\x74\xbc\x00\x41\xfa\x2c\xf7\x74\x36\xc3\x79\x9d\x95\x01\xce\x19\x69\x94\x98\xf1\x05\x36\x8d\x61\xe8\x07\x48\xb4\x6f\x60\x50\x05\x4d\xf9\x97\x9a\xa8\x69\x4e\x56\x01\x9c\x52\xce\xef\x52\x9a\x77\xab\x74\x17\xd3\x39\xc8\x29\xc3\x09\xf1\x8f\x8c\x12\x51\x14\x2f\x3d\xc2\xdf\x4d\xd1\xa1\x26\x9d\xb9\xdc\x2d\xc9\x29\xa6\x36\x35\xfd\x8c\xfa\xef\xba\x44\xd7\xa6\x3e\x2f\x28\x26\x14\xb3\xbb\x86\x7e\xa7\xea\xb1\x62\xdf\x0d\xb1\x38\x30\xf4\x1d\x7d\x3e\x35\x58\x53\x03\x14\x6c\x2d\x5e\x6e\xfb\x98\x8b\x47\x39\xfe\x98\x06\x9f\x76\xd3\x30\x7a\x1d\x30\xb9\x3a\xe5\xc3\x62\xb7\x36\x39\xd5\x0f\x6c\x97\x4e\x24\x72\x9c\x0a\x3a\xa6\xb0\x5c\x5a\xaf\x47\x91\x43\x20\x43\x8c\x21\x0e\x62\x8a\xa2\xe5\xb6\x9f\xcb\xb5\xcb\xaf\xfa\x88\x50\x96\xec\xd8\xea\xe3\x09\x8a\x3c\x24\xca\x92\x3b\xae\x33\x22\x8c\xa4\x3e\xe5\x0a\xc5\x99\x6b\x23\xf7\xad\xd6\x54\xfa\x7d\xa1\xc5\xf6\xa3\x41\xdc\x90\x48\xec\xe8\x56\x6c\x5a\x3d\xee\x52\x66\x2d\xcd\x6f\x6c\xa5\x04\xe2\xcf\xc8\xef\x78\x63\x1c\xf8\xeb\x37\xbd\xfe\xb1\xff\xe9\xfd\xe0\x57\xff\xf8\xc1\xf4\x7a\x30\xbd\x1e\x4c\xaf\x15\x9b\x5e\xea\xcb\x06\x13\x4c\x33\x40\x28\x9e\x4c\x24\x0a\xfb\x83\x75\xf6\x7d\x59\x67\x75\x46\x92\xe1\xb2\xa5\x44\x0b\xa4\x28\x64\x87\x46\x8b\xaf\x00\x8b\xde\x15\x64\xe5\x28\x14\x2f\x3b\x1a\x0c\x3f\xbd\xeb\x28\xb5\xa3\x4b\xa4\x86\xaf\x9f\xb7\x1b\x55\x03\x46\x5b\xec\xa3\x7d\x4d\x85\xbe\x89\xaa\xb2\x51\xb7\x80\xfb\xe5\xc1\x02\x7e\xb0\x80\x1f\x2c\xe0\xc5\x94\xfd\xdc\x2a\xbe\x00\x66\x71\x01\xef\x02\x02\x0d\x78\x4c\x2d\x76\x0c\x20\x50\x6e\x68\xa1\x36\xb9\x53\x82\xb4\x9d\xca\xbe\x5e\x5e\xbe\x3e\x6f\x9b\xe3\xf9\x29\x22\x61\xe7\x06\xa3\x99\x6e\xa9\xf2\x2f\x33\xa6\x16\x5a\xb7\x53\x55\xcd\x8a\x62\x4a\x8b\x15\x77\xbc\x00\x77\x66\x38\xf4\xc9\x8c\x0f\x1c\x05\x30\x62\x19\x2a\xd6\xbe\xeb\x78\x0a\x13\x32\xb9\xb4\x38\x70\x13\xda\x9c\xbc\x46\xa8\xd7\x0a\xb6\x0a\x61\x4d\xc7\x26\xc3\xb9\x67\x49\x87\xa8\xf5\x1f\x9f\x4e\x51\x70\xc6\xde\xf9\x15\x00\x33\x0f\xc7\xa7\x87\xe3\xd3\xc3\xf1\xa9\xea\x34\xe2\x18\xf9\xb3\x62\x9f\x75\xfb\xe2\x01\x0c\x9a\x6b\x04\x5c\xe4\x34\x4f\xcb\xd0\x97\xef\xe7\x24\xa6\x80\x8c\x1b\x4c\xd6\x04\x14\xe1\x9b\x3d\x8f\x3d\x9c\x15\xbe\xbd\xb3\x42\x5d\x8b\xc2\x2c\xa0\x28\x6c\x6b\xc5\x7b\x31\xe5\xc7\xcc\x0b\xa9\xcc\xb8\x05\xfe\xb2\x4c\xca\x5c\xd6\xbc\xde\x72\xce\xc4\x7f\x79\xbf\x5e\xe8\x9c\x05\xb4\x90\x21\x95\xee\x4e\xeb\xb6\xa2\x3e\xfd\xba\x77\xe2\xdd\xf8\xa8\x6d\x25\xa8\xdd\xa4\xce\xa5\xaa\xfc\x99\xb7\x9c\x2a\xf6\x55\x69\x4d\xa9\x81\xce\xb7\xad\x6e\x0b\x71\x15\xcc\xdb\x8a\xe2\x41\x08\x6f\x1c\x19\x0a\x54\xcc\xdf\xc8\x4e\x58\x9a\x7a\xae\x3d\x77\x15\x4a\xb1\xce\x63\xa0\x33\x1a\x2f\x2a\x50\x4a\x12\x16\x95\xa6\x6c\x11\xaf\x5b\xa2\x9e\x7e\xfa\xe5\x88\x1e\xd0\x0a\x20\x14\x91\xcd\x36\x3f\xf8\xa3\x11\xc6\xf1\x25\x19\x80\x57\x30\x0e\xbd\x31\x8a\x1a\x0a\xca\x95\xeb\x2e\x95\x0f\xc2\x79\xd0\xd8\xac\x22\xe7\x71\xca\x52\xad\x1e\xa7\x53\x44\x7d\xac\x09\x06\x15\xf0\x8f\x53\x38\xc2\xa1\xca\xe1\x0b\x8b\x18\x90\x11\xfe\x8c\x54\xad\x3b\xe7\x63\x45\xef\xa9\x02\xe4\x4f\x5d\xf2\x17\x2a\xf4\xa4\xf9\xb8\x52\x8b\x41\xd9\xa8\xe2\x53\x8c\xca\xc4\xb8\x17\x65\x12\xdb\x6a\x75\x67\x86\xd9\xb8\x33\x24\x84\x55\x9c\xa9\x8a\x80\x87\xdb\x6d\x61\x2b\x2b\xda\xe0\xa4\x74\x06\x77\x09\xea\xd6\x94\x12\xe1\x6e\x4a\xb7\x6f\x43\xab\xc9\x0d\x80\x5d\x58\xe0\x1c\x7d\x67\x85\xba\x8c\xd5\xc5\x93\x1f\x57\xd6\x7f\xe2\xcc\x37\xf4\x9e\x86\x16\xae\xaa\x6f\xdd\x80\x34\xf4\x7f\xa1\xfd\x6c\x4f\x43\x11\x7a\xf3\x97\xb4\xe2\x5f\x03\x54\x67\xbe\x6c\xca\x8e\xd6\xc4\xa5\x32\xb2\x16\x01\xed\xdc\xd6\x41\x3b\x35\xc8\x37\x01\x09\x58\x81\xf6\x56\xe1\x47\x23\x83\x7c\x49\x8f\xe4\x28\x7b\x1c\x60\xef\x3a\x59\x9e\x3b\x7a\x2d\x8f\xaa\x93\x5a\xd1\x94\x72\x8b\x6f\x56\x9e\x22\x0d\xe1\xaf\x55\x67\xf2\x62\x64\x66\xcd\xf9\x49\x22\x69\x48\xcd\x50\x79\x6e\x2a\xd7\x62\xd7\x94\x6a\xdd\x5d\x8f\xb1\xaa\xa8\x7a\xb1\x23\xab\xa5\x19\x0e\x7b\x39\xfe\x2b\xbd\x17\x31\xbe\xcb\x1e\xb1\xc2\xc9\xe7\xff\xfe\xdf\xff\xe6\x9f\x43\xa1\x5f\x7e\x0a\x90\x61\xee\x38\x51\xb3\xbd\x98\x72\x3d\xea\xa0\x85\x2a\xc0\x62\xa7\x14\xdd\x24\x72\x97\xf3\x6d\x25\x83\xe7\x0f\x60\x52\xa9\x86\xc0\x5f\x6b\xa2\xe4\x5b\xd0\x11\x8a\x5a\x33\x35\x74\xa8\x07\x8c\x34\xfc\xad\x25\x0d\xa6\xda\xbe\x5a\x57\x7a\x85\xdf\xb6\x98\xe8\xe6\x68\x62\x2b\xac\x35\x8d\x18\x34\x99\xb2\xbb\xce\x24\xf5\xd7\x54\xc9\x7b\x09\x45\x3e\xf7\xa2\x30\x89\x02\x1c\xea\x2d\x9c\x93\x9c\x51\x54\xe3\x09\x28\x42\xcb\xe7\x9b\x2e\x38\x30\xce\x09\xa0\x68\x02\xb1\x28\xde\x18\xe0\x1b\xfe\xcf\x27\x32\x00\x81\xea\xa7\xdb\x9e\x6f\xc2\x45\xbe\x0a\x64\x75\x83\x2d\xbc\xa8\x4d\xad\xbc\x77\xeb\x36\xa8\x8f\xe8\xe5\x3f\x3e\x7d\x3e\x33\x87\x68\x9b\x0e\x66\x9a\xe5\x5a\xf0\x1f\xce\x95\xe4\x9d\x83\xe7\xcf\x6a\x21\xd8\x3b\xc5\x54\xa1\xa1\x1a\x09\xb7\x2f\x25\x50\xb7\x2c\x84\xff\x92\x53\xb8\xeb\x14\x6a\x23\x14\x1c\xad\xd2\xd1\xd9\x88\xb9\x9b\x2c\x8f\x9a\x96\x7c\x73\x59\x81\x85\x2a\xb4\x64\x45\xae\x3d\x14\x32\x44\x91\xa8\x57\x3b\xc1\x21\x9e\xc4\x93\x5a\x8e\x34\x14\xce\xcc\x26\x8e\x1f\x83\x48\xe8\x09\x73\xa1\xb1\xa0\x7f\xea\x94\x4e\xef\x11\x94\xca\x55\x74\xbc\xbe\x86\xc6\xf2\x15\x4d\xca\xe0\xfe\xee\xc0\x92\xb5\xbc\xb0\x42\xd0\x2f\x89\xd7\x0e\x38\xfa\xf8\xe8\x13\x7e\xb5\x5f\x01\x4a\xbc\xec\x33\xf6\xb3\x6c\xa8\x2b\x3c\x62\x3f\xd3\x19\xda\x78\xca\x76\x1d\xa0\xcf\x40\x6d\x06\x66\x63\x1f\x15\xaa\xb1\xfe\xc4\xfc\xb1\xba\xe9\xaa\xf3\xf7\xd2\x2b\x32\xb4\x29\xd5\x98\x1d\xa8\x6c\xdf\xb8\xa2\x78\x34\x12\x3a\xe8\x69\x8b\xb7\xda\x96\x6c\xbc\x48\x62\x53\xc0\xf3\x24\x36\xe5\xbb\xaa\x8f\xd0\x50\xfc\xbb\x45\x4b\xa6\x2b\x95\x39\x9b\x62\xc9\xd4\x3d\x5d\x46\x6b\x75\xf5\xc4\x6b\x1a\xaa\xcd\x86\xae\xec\xc2\x11\x2a\xad\x2d\x9c\xab\x28\xc9\x00\x3a\xe0\x45\x08\x2e\x28\x19\x51\x14\x45\xad\xd3\x8f\x8b\xb8\xff\x30\x4a\x65\x33\x13\x4d\x6b\x7a\xae\x68\x5c\x05\x1e\xde\xfc\xf2\x73\xce\xe7\x52\x56\xec\x1c\x48\xb4\x75\x07\xc6\xc5\xea\x0a\xd8\x0f\xeb\x7e\x0e\x41\x39\x85\xbc\x9c\x33\xd0\xd5\x18\x47\x00\x47\x60\x42\x22\x06\x02\x7c\x8d\x82\x3b\xe0\xc7\x08\x30\x02\x46\x90\x0e\xe0\x08\x01\x8f\x04\x81\xdc\xed\xbe\xd1\x03\x91\xb6\x6b\x2e\x6a\x02\x99\xa2\x0a\xd7\x6d\x09\xed\x45\xec\xf4\xee\xe9\x51\xc5\x1d\x16\xd3\x02\x0b\x6b\xcf\x4a\x49\xbc\x43\xeb\x15\x5f\x29\xdb\xf9\x78\x82\x79\x8e\x4e\x36\x35\xac\x00\x28\x6f\x9f\x15\x06\xf7\x02\x91\x0b\x8e\x01\x10\x4b\x45\x83\xdb\xe2\x61\x65\x8b\x4e\x39\x32\x4b\xc2\x93\x19\x58\x2c\x17\x0e\x2a\xf7\x74\xbb\x9b\xde\x62\xd1\x93\x6f\xea\xd8\x51\x5e\x2e\x8b\x2e\x40\x1a\x87\x21\x0e\x47\xb9\x5a\x10\xeb\x5e\x80\xd7\x77\xdb\x7b\xbf\xed\x0f\x7f\x33\x2f\x40\x73\x69\x94\xd2\xc2\x53\x03\x39\xc9\x55\xaa\x58\xca\xaa\xc3\xe1\x90\x2c\x7d\xcd\x59\xbe\x4e\x73\x81\x4b\xda\xe6\x7b\x24\xe2\xf0\x40\x36\xdc\x6a\x1c\x28\xbd\x71\xe8\x8f\x84\x8b\x63\x36\xc6\x4c\xfc\x11\xc5\x03\x16\x20\x30\x88\x27\x53\x44\x3b\x01\x1a\xb2\xa2\xcb\xa2\x8a\xbd\x0d\x66\x6b\xf9\xfc\x54\xdd\xd0\xdc\x15\x60\xea\xc6\x3a\xe5\x07\x3e\x8a\x47\x63\x06\x64\xab\x1d\x86\x27\xb9\xb2\x97\x5a\xdd\x18\x4a\x26\x9d\x90\xcc\x16\xa5\x75\xce\x08\x9e\x96\x1e\x1e\x4b\x11\xa9\x66\x8d\x0a\x8c\xe3\x82\xcd\xff\x25\x31\xe3\xb6\x8f\x2e\xa7\x6f\xe4\xc8\xcb\x07\x75\xdb\x29\x9d\xb7\x36\x5b\x3d\xd1\x9a\x98\x0a\x29\x86\x54\xf8\x92\x43\xd2\x61\xe8\x96\x75\x18\x85\x61\x34\x24\x54\x77\x73\x65\x54\x71\xb3\x4b\x91\x0a\x06\x31\x03\x09\x89\x60\x9a\xd1\xb8\x84\x89\x5b\x68\xd3\x04\xda\xd5\xb6\x61\xfb\xcc\x57\xbe\xe9\xf8\x88\x41\x1c\x44\x95\xd5\x7b\x9a\xd4\xa3\xcd\x8d\x61\x56\x28\x4a\x96\x76\x2f\xef\xa0\x45\xa1\xc0\xd1\xe5\x98\xcc\x72\x9d\x9d\x28\x42\x5b\x65\x20\xa9\x9e\x73\xf6\x41\xc5\x8d\x56\xf1\x1d\xad\x5a\x7f\x9b\x7c\xa5\xf6\xb6\x80\xf5\xe4\x36\xdc\x49\xc2\x4a\xe5\xc5\x7f\xd8\xa9\x70\xb0\xee\xb9\x0e\x23\xa3\x11\xdf\x76\x6b\xd9\xee\xa6\x2f\x65\xd1\xb4\xf5\x28\x74\xb6\xd3\xe9\x3a\xa7\xd8\x47\x8e\xeb\xf0\x67\x4c\xa5\xb3\x40\x26\x92\x80\xcf\x24\x90\x29\x3e\x00\x86\x3e\xd0\x66\xe9\xfb\xf0\xfa\x96\x8d\xa5\x45\xcd\xaf\x34\xfc\x72\xdd\x36\x57\xf8\x8f\xd3\xa3\x9b\x5f\x6e\x9f\x9a\x6d\x2e\x6f\x0c\xa9\xa8\xa9\x0e\x59\x3c\xa9\xce\x80\x98\xd3\xfe\xc9\x2f\x99\x3a\x97\x6b\x7a\xa6\xd2\xc2\x97\x9a\x34\x48\xf2\x28\x90\x5e\x44\x6b\x6b\xa8\x68\xf7\xa4\x53\xe3\x30\xc2\x60\xa0\x07\x50\x59\x6e\xf2\x95\x24\x1e\xa5\x82\xbf\x64\x22\xeb\xca\x41\xd6\xe5\x17\x95\xf7\xf9\x2a\xf7\x7c\xfb\x23\x5f\xce\xbb\x5a\xd0\x2d\xa6\xf9\x75\x9d\xe4\xc2\xb5\x23\x3d\x7a\x9d\x01\xa4\x8e\xab\xe9\x74\xfd\xfb\xd4\xc3\xf7\x41\xd7\xfa\xc7\x24\x64\x10\x87\xa2\xe4\xba\xec\xa3\x50\x1e\x39\xe1\x5b\x16\x65\x96\x7d\xe1\x44\xd3\x00\x33\x91\x69\x56\x13\x54\xa3\xd8\x42\x8a\x21\x02\x01\x1a\xa1\xd0\xec\xbf\x2c\xc0\x65\xfa\x90\xc1\x36\x2e\xe6\x8a\x4c\x1f\xe5\x72\x14\xdf\xa5\xd1\x66\xe5\xd2\xf5\x39\x97\xa9\x5a\xcf\x19\x44\xa8\x4c\xeb\x39\xc9\x2f\xf7\x9a\xc4\x9f\xc6\x1e\x54\x8d\xf9\x42\x1d\x7c\xe1\x1a\x6b\xa8\x7d\x5f\xb2\x01\x4b\x37\x42\x1e\x09\x08\xed\x44\x33\xc8\xbc\x71\x9e\x0c\x13\x2f\xcc\x5f\xe6\x01\x3b\x65\x5b\x1d\xc7\x2d\x21\x0f\x16\x48\xad\x71\x5a\x1b\xd6\x6e\xb1\xd0\x7e\x91\x37\x16\xae\x70\x43\xab\x35\x38\xb2\x79\x4b\x68\xbb\x9c\x3e\x65\xee\x67\x0e\xdf\xae\xbb\xd3\x60\x1b\xd5\x7a\x56\x56\xec\xa0\x54\x8b\x79\xd1\xcd\xf9\x5e\x0b\xe0\x23\xfc\xfa\xe9\xcf\xa8\xff\xfe\xa1\x00\xbe\x65\x01\xfc\xfa\xe0\xe3\xc2\x55\x6b\x0e\x84\xbf\x5d\xf8\xf1\x8a\xee\x65\x2b\xda\xb8\xaf\x90\xe3\xba\xbe\x55\x95\x18\x63\xe7\xc7\xc9\x6f\x2b\xe9\x5d\xdb\xc7\x9d\x3f\x62\x14\x23\xff\x35\xbd\x64\x90\x32\x1c\x8e\x94\xed\x93\x04\xdf\x1a\xa9\x2b\x19\x5e\x2b\xe5\x13\x45\x11\xa2\x37\xc8\x3f\xbe\x78\x5b\x41\xcf\x1b\xf5\x04\x50\x8f\xac\x9c\x94\x33\x34\x21\xb4\x2a\x5e\x3a\xa5\x26\x7b\x6a\xe5\x04\x3d\x9b\x8e\xd1\x04\x51\x18\x9c\xe0\xe8\xba\x89\xae\xe4\x99\x26\x70\xf2\xd5\xde\xf6\xab\x23\x72\xb6\x3b\xe4\xa3\xa9\xb3\xab\x87\x52\x4c\xf5\x76\xbb\x98\x6a\x1d\x81\xc2\x2d\xbe\xdf\x22\xb2\x7a\x29\x05\xde\x57\xb2\x51\x2f\x5a\xdd\xbd\x9c\x7d\xbc\x76\x00\xdc\xb3\xad\x77\x93\x70\x76\xd3\x36\x01\x6e\xdf\x75\xc6\xfd\xa2\x87\x53\xc6\x15\x96\xb7\x67\x25\x71\x1a\xc6\x73\x1a\x82\x58\xcc\x28\x35\xb8\xa2\x8b\xa9\x6d\x55\x66\xb5\xee\x5c\x65\x70\x04\xf2\xd0\x44\xf2\xcc\x75\x2c\xd5\x6f\x0e\x91\xbb\xf4\x50\x95\x69\xeb\x14\xb3\xe4\x9c\x62\x5c\x47\x48\x58\x01\xb2\xc0\xd4\xb6\xe3\x4b\x5b\x24\xb4\x46\xa8\xd6\x97\xed\x8c\x74\x22\x86\xa6\x1d\x15\xed\x98\xae\x5b\xec\x07\xe8\x0a\xdd\x72\xcb\xca\x83\xa1\x87\x82\xe4\x03\x09\x87\x98\x4e\xf2\x9f\xc4\x1e\xa2\xa7\xde\x1f\xcb\xef\x85\x6e\xbb\x64\x62\xab\x3a\x16\xad\x38\xae\xf3\x1e\x45\x2e\x50\x5f\x1e\x51\x04\xee\x48\x0c\xa2\x58\xfd\x31\x83\x21\x03\x8c\x80\x88\x91\x29\x60\x63\x1c\x81\x4f\x64\xf0\xf7\xea\xb0\x4a\x87\x3f\x28\x33\x63\xad\x15\xc0\xda\x0c\x6f\x21\x96\x0b\xac\x64\x44\x31\xf1\xb1\x77\x5f\x90\x8a\x8f\xae\x0e\x82\x59\x7c\xfc\x8f\x07\x4c\x90\x07\x4c\x90\x07\x4c\x90\x07\x48\xc5\x6f\x04\xc8\xe3\x01\x52\xf1\x01\x52\xf1\x01\x52\xf1\x3b\x84\x49\x79\x80\x54\x74\xbe\x05\x48\xc5\x75\xdd\x11\xe7\xac\xd7\xc5\xad\xe0\x7b\x80\x14\x47\xc3\xdb\x97\x37\xbf\x1d\x3c\xd8\xbf\x0f\xf6\xef\x83\xfd\xbb\x32\x4c\xbc\xb5\x5a\xbe\xcb\x83\xcd\x4b\xf5\x52\x55\x0c\x54\x43\xfe\x68\x12\xad\x87\xa3\x4e\x34\x81\x41\x20\x43\x10\x93\xac\x0b\xab\x9c\x52\x67\x48\xa8\x87\x64\x5e\xba\x63\x4e\x27\x7d\xce\x9f\x00\xe9\x23\x0f\xd8\x7e\x0f\xd8\x7e\xdf\xb1\xd1\x3a\x07\x8d\xc7\xd4\x20\x17\x65\x48\x62\x7d\xae\xd4\xc2\x4e\xc3\x05\x9d\xcb\x29\xf2\x8a\x34\xb7\x89\xca\x7b\x00\x1d\xfc\x76\x41\x07\xd5\x64\xcf\x6f\x9f\x46\x88\xde\x60\xef\x1e\xee\x5a\x8e\xa8\xf7\xfa\xe0\x8f\xe9\x43\xc5\x9b\x07\xf3\xf4\xc1\x3c\x7d\x28\x36\xf8\xe0\x7b\x7d\x30\xb1\x1e\xfc\x82\x73\xb4\x6f\xca\xf9\x7c\xf0\x3b\x7e\xb7\x7e\x47\x65\x8f\x2d\x60\xd0\xa9\xc5\xbe\x6e\x7b\x6e\x7c\xf2\xfb\xe9\xe3\xde\x74\xef\xc1\x9e\x7b\xb0\xe7\x1e\xec\xb9\x07\x7b\xee\xc1\x9e\x7b\xb0\xe7\x1e\xec\xb9\x07\x7b\xeb\x5b\xb7\xb7\xc4\x5a\x9a\xcb\xdc\x12\x81\xe2\xeb\x36\xb3\x3e\x5f\x8d\xbc\xdd\xe1\x2b\x73\xa5\x33\x53\x60\x72\x06\xbf\x66\x15\x60\x13\x40\x1c\xbe\xf0\xcb\xb8\xcc\x38\xea\x4c\x29\x4e\xb2\x2a\x0d\xe6\x45\x39\x74\xb9\xd1\xc2\x28\xa5\xa5\x16\xa1\xe2\x9a\xc3\x9c\x57\x10\xda\x5c\xd6\xd0\x45\x34\x3c\xad\x21\x1f\x47\xd3\x00\xde\x5d\x15\x76\x19\xeb\xf7\xeb\x21\xfe\x2a\xd8\xe2\x54\xa4\x56\xa7\xc9\x0a\x49\xde\x8e\x5d\x1c\x75\x4d\x03\x0b\x54\x5c\xec\x74\xec\x20\xcd\xea\x27\xbe\x6c\x40\xc8\x4b\xc6\x8e\x4c\x6a\x5f\x5e\xc6\x79\x6e\x17\x1e\xb1\x22\x67\x8b\x49\xe3\xbd\x56\x7b\xac\xd2\x8d\xc6\x54\xe8\xbc\x8a\xc7\xd1\x39\xa4\x0a\x04\x26\xa7\xbd\x19\x8d\xd1\xd2\x4a\x60\xa2\x49\x91\xa9\x51\x67\x08\xfd\x5c\xa2\xde\x39\x01\xd9\x80\x1b\x53\xcf\xdb\x90\xa1\x71\xc4\x9c\x06\x9e\xf2\xc4\x9c\x03\xbe\x04\x1e\x25\x06\x46\x79\xad\xaf\x22\xa6\x9e\x92\xd9\x5c\x1b\x4c\x8a\x4e\xb4\xee\x4d\xe6\xd5\xc1\xc8\xdf\xff\xf5\x73\xdf\x7a\x93\xb1\xc9\x37\x05\x38\xea\x04\x02\xc1\x49\x2d\x61\x41\x36\x4e\x01\x19\xf5\xd5\xaf\x6e\xc4\xc1\x9f\x74\x1d\x95\x81\x35\xc9\xf2\x0c\xa6\x44\x68\xa7\x1a\x7a\x41\x4b\x88\x99\x42\x4c\x81\x41\xe6\xf3\x87\x17\x53\x34\x05\xca\xc1\x11\x5d\xca\xf4\xd5\xaa\x10\x8a\x3a\x00\x08\xc5\x89\x02\x0d\x15\x37\xbb\x1a\x4c\x95\xea\xb1\xfa\x36\xd7\x64\x31\x57\x60\x6a\x2d\x8b\x0b\x02\x3a\x8b\x15\xab\x2f\xd6\xb7\xa1\x50\xbc\x7c\xc8\xaa\x50\xbc\x08\x9d\xc0\x4c\x0f\x57\x20\x75\xb9\xce\xd9\xd9\xd6\xc9\xc9\xd6\xfb\xf7\xe0\xf4\xf4\x70\x32\x39\x14\xe6\x4a\x58\x81\xde\x55\x1f\x66\x9b\xef\xc6\xc7\xc3\xa1\xad\xcf\xa8\x21\x56\x26\x9d\x6b\xbe\xbe\xa1\xc7\x80\x0d\x20\x90\x02\x03\x3a\x91\x64\x64\xa8\x03\x07\x7c\x1f\x81\xe1\x08\xa9\x3d\xba\x74\xba\x4c\xf1\x14\x63\x0a\x03\x51\x43\xea\x83\xa3\x7c\x24\xc9\x6d\xb6\xfe\x7e\x5b\xb0\xb3\xd6\x11\x48\xf9\xc1\xea\xbb\x0b\xa7\xc2\x02\xdc\xb9\x61\xca\x70\xf4\x7a\xda\x88\x25\xd3\xc2\x1f\x61\x2e\x7e\x5d\xd8\xb8\x04\x76\x17\x9f\x9a\x74\xaf\x92\x9f\xb8\x00\x0d\x48\xa4\xb9\xad\x4a\x12\x95\xad\x69\xf9\x60\x65\x70\xc4\x3a\x71\x91\x14\x95\x8b\x6c\x53\x51\x27\x62\x14\xc1\x7b\x70\x3d\xff\xfc\xf8\xea\xf8\xe0\xf4\xdd\xef\x66\xd7\x33\x45\x1e\xa1\x66\xdc\xc9\x9c\xaf\x18\x86\x21\xe1\x0f\xf8\x6a\xf3\x89\x8a\xc5\x99\x12\x1e\x99\xcb\x33\xe9\xa8\xd1\x0a\x63\x0d\x4a\x17\xcd\xec\x44\x28\xb9\x36\xee\xe7\x5c\x1e\xe9\x04\x89\xed\x32\x24\xac\x12\x13\xb9\x4a\x75\x2a\x5a\x6a\x94\xe7\xd9\x19\x38\x71\xc1\xfb\xf7\xef\xdf\x9b\x00\xbf\xac\x71\x8a\x4b\x99\xc7\xb5\x43\x21\x42\x10\x1a\x17\x58\x4a\x76\xb2\xc6\xb2\x71\xe8\xcb\xac\x30\xc8\x25\xad\xb0\xfe\x8a\x96\x58\xb2\x4c\x5a\x2f\x35\x81\x97\x01\x3d\x2e\xcc\xf7\x62\x14\x0e\x8f\x1e\x9d\xc1\xf8\x72\x62\x5e\x65\x58\x7a\x24\x6b\x8b\x84\xe6\x96\x9b\xcf\x97\x25\x5f\x6e\x97\xaa\x7c\x42\xa3\xfe\xee\xf7\xdd\x6d\x75\x40\x1b\xc3\x68\x9c\x89\x85\x80\xe6\x70\x65\xde\xbf\x2b\x29\xf9\xa8\x1e\xd4\xf1\x01\x9c\x3c\x07\xb7\xd2\xbf\x52\x38\x94\x74\x33\x71\x1d\x12\xa6\x7f\x1c\x07\x05\x49\x4b\x77\x9c\x9a\xb4\x7f\xbe\x1a\x63\x7d\x0d\x16\xb6\x29\x75\x5a\x49\xaf\x8b\xe6\x6f\x47\x09\x76\x76\x7f\x64\x3f\xee\xc4\xfd\x9e\xb5\x6a\xea\x47\x43\x96\x92\xbc\x55\xa9\x52\xeb\x59\x3a\x79\xe2\x17\x5c\x35\xc5\xb1\xaf\x7d\x11\x6d\x1f\x0f\xe2\x7f\xee\x1d\x3d\x9b\xa3\xc4\xee\xd2\x4c\x9e\xf2\xfc\x1b\xb4\xf0\xe2\xf5\x6f\x97\x33\xe1\x85\x19\xcb\xe6\xff\x87\x05\xe7\x5f\x2a\x8d\x75\xcf\xff\x64\x2b\x78\x7e\x7b\xfc\xde\x9b\x03\x61\xa2\x6e\x22\xf9\x60\x3a\x1e\x09\x99\x02\x8b\x2d\x61\x4e\x14\x81\x1a\x4a\x1e\xb8\xec\x08\x63\x80\x92\xb0\x38\xc8\x80\x8c\x18\x79\x70\x49\xb0\xdc\xe2\x30\x40\xa2\xad\x44\x74\x9f\xdd\x4e\x61\xe8\x27\xc7\x58\x47\xe4\x0d\xdc\xe0\x08\xcb\x93\x74\xa6\xc6\x2c\xeb\x52\x15\xf1\x4d\x33\xd5\x2c\xef\x89\x95\xf6\xce\xbe\x28\xa8\x4f\xf5\x9e\x52\x6c\xc6\x2c\x04\xfd\x8e\x83\x9f\xbf\x24\x43\x5e\x29\xe4\xb6\x32\x82\xee\xb2\x7d\x48\xb5\x32\x3c\x9f\x46\xd4\x2b\x0f\xaf\x7b\x0d\x1c\x3f\x7a\xf3\xe9\x74\x0b\x57\x14\x85\xfe\x09\x87\xdc\x52\x42\x4d\xc6\x44\xae\x96\x93\x42\x0d\x6b\x2a\xe0\xd4\x6c\x4a\x0c\x31\x8d\x98\xf0\xcb\xa3\x1b\xc7\x95\x35\x2a\x5d\x27\x80\xf2\x4b\x38\x42\xaf\x70\x78\x1d\x95\x62\xcd\x85\x7f\x98\xff\x1d\x49\x1f\x8d\xac\x07\xea\x26\x25\x3f\x5d\x27\x29\x30\x59\xb1\x39\x67\xd3\x91\x4e\x8f\x2c\x0d\x21\x23\x5e\xb8\xc1\x9b\xae\x90\xc4\x42\x36\xc3\xab\x4c\x55\x64\x42\xdf\x80\x79\xb8\x84\xbe\x45\x1b\x3e\xf2\x8a\xfd\xe5\x0c\x99\xfb\xa3\x4c\x45\xe3\xcc\x49\x99\xfc\xc4\x27\xfb\x22\xf7\xee\xd2\x29\x2d\x74\xb3\x34\xda\x92\x17\xa4\x90\xe6\xbe\x32\xb6\x91\xdc\xfe\x6a\x05\x6c\x55\x9c\x4b\x5a\xaa\x56\xbd\x23\x4b\x7b\x37\xd8\x7d\x55\xde\x21\xc3\x0e\x64\xbe\x42\x58\x8e\xa6\xcc\x26\x63\x51\xdd\xa8\x4f\xe6\xda\xd5\x64\x4c\x4f\x8f\x76\x8e\xc7\x15\x35\xfd\x52\xdd\xe8\x3a\xff\xff\xe4\x96\xb6\x56\x49\xa6\x02\x58\x5b\xdd\x2e\xb9\x1e\xae\x81\x57\xc8\xe5\xc2\x14\x17\x5b\xf1\xde\x38\x0b\x8c\xab\xcd\x5d\x6c\x94\x8e\xfa\xe8\xb2\x15\x88\x8e\x36\xf5\xf3\x49\x91\x42\xb6\x5c\x3b\x14\xf8\xe9\xe7\xa3\xc1\xdb\x7f\x9c\xb6\x35\x30\xf9\x0c\x58\x1c\xae\x53\x04\xc0\xca\xad\x4c\x8c\x7b\x4b\xd6\xee\x1e\x6b\xd0\x5e\x55\xaa\x53\x7f\x3e\x3b\x8f\x52\x32\xd3\xc2\xee\x0c\xbe\x82\x6a\x5d\x2c\x1b\xd4\x09\x4d\x45\x56\xa2\x4e\xd6\x81\x89\x5a\x41\x86\x1a\xf4\xe0\x72\xc4\x4f\x90\xbe\x80\xb8\xa5\xa3\x5e\xbb\xd8\x05\x2f\xff\xd8\xf7\x1f\x8d\xae\xe6\x38\xd7\x5a\x29\x1d\x4b\x3c\x58\x89\x48\x99\x4e\x9d\x0c\x8f\x33\x4d\x60\xb3\x7d\x68\xa9\x8f\x96\x38\xf1\xc9\xec\x2d\x22\x00\xda\x3a\x5a\xbb\x0c\x9c\x50\x7c\x10\x91\x67\x8f\x2a\xdc\xf0\x64\xd6\xca\x3f\x28\x35\x40\xce\x03\x2f\x7f\x10\x1f\xea\x83\x7d\xa5\x75\x9f\x15\x0a\x5b\xa7\xab\xaa\x38\x0f\x8b\xcf\xe6\x3d\x79\x2a\xfe\x79\xf2\x8f\xcf\xa8\xca\xdd\x5b\xeb\xa9\x28\x97\x4f\x6d\xf4\x41\xac\x84\xfd\x73\x1d\x8f\x0d\x75\xe8\xd6\x1e\x7e\xf1\xf3\x6c\xf2\x7b\xef\x7c\x60\x66\x7d\x16\x76\x2a\x03\xed\x5c\x27\xf2\x08\x27\xd3\xf9\x23\x26\xe2\xce\xc9\xc7\x13\x14\xa6\x97\x8e\xd9\xdf\x12\xea\x59\x2f\x2e\xae\x3e\x93\x30\x62\x14\x62\xf5\xc1\xfc\x90\x0f\x19\x94\x35\xc8\x1d\xd7\x81\x37\x10\x07\x2a\xf6\xa1\xd6\xea\xd4\xf1\x73\xa7\xf6\xa5\x14\x77\x5d\x67\x86\xd9\x78\xd1\x66\xf2\x57\x6b\xd5\x35\xe2\xf7\xea\xee\xd5\x8a\xfd\x9b\x41\xbe\x8c\x01\xd5\x95\x81\x1f\x85\x90\x87\x2c\x89\xa4\x2f\x10\xb9\x61\xc0\xf7\x2b\xbf\x34\xc0\xfc\x65\x7f\x1c\x0a\x56\x54\x84\x5d\x18\x03\x31\xe2\x62\x81\x8b\x08\x4f\xa6\x01\xea\x24\xee\x09\x9b\x2a\xbd\x9c\xc4\x90\xf8\x28\x52\x05\x55\x91\xdf\x3e\x20\x2e\xbd\x1d\xcc\xc2\x01\x44\x93\x60\x86\x28\x02\x28\xc0\x23\x7e\x56\x01\x43\x42\xb5\xaa\xde\xf6\xb7\x90\xfa\x5e\xb2\xe7\x3a\x1d\xfe\xa1\x83\xc3\xe2\x00\x8e\x32\x29\x6e\x88\x99\xaf\xe0\xc4\x9e\xf0\x41\xda\x0f\xbd\x61\xf0\x90\x22\x90\xae\x2c\x80\x43\x90\xad\xb9\xd4\xfd\xf8\xd8\xed\xef\x8a\x5e\xdb\x84\xd3\x97\x76\xbd\x5d\xb7\xbf\xd7\x86\x5d\x42\x5c\x9e\xe3\x80\x21\x8a\xfc\x39\x32\x0c\x72\xe3\x15\xb1\xb9\xfa\x80\xb6\x73\x03\xe2\x6f\x0f\x55\x57\xfa\x53\x3b\xa5\xa7\xaa\xa2\x5d\x38\x37\x1d\xed\xa5\x36\x11\x2e\xfd\x6d\xb7\xbf\xd3\x8a\x35\xa9\xf2\x5c\x1a\x7f\xd2\x16\x2b\xd0\x3e\x78\xcf\x3d\x93\x10\x18\xf9\xd6\x9f\x87\x6f\xfd\xd6\x7c\xeb\xb9\xfd\x7e\x8e\x6f\xb9\x68\x08\xa9\x30\x6e\xc7\x30\x8e\x18\x6a\x55\xdf\x3e\xc7\x9a\x37\x48\xfa\x7a\x23\x80\x92\xb6\x00\x09\xf5\xd1\x9a\xfa\x6a\x3b\xf8\x6a\x7a\xdb\x66\xb1\x58\xae\x2c\x43\x47\xcb\x59\x5a\x07\xa5\xb9\xaf\xe0\xdb\xe3\x39\x84\xe4\x71\x5b\x19\x39\x70\x1f\xb7\x61\x4d\x6a\xba\x2c\x8d\x3d\x27\x49\x8b\xda\xc8\xf7\x6d\x59\xf4\x68\x0e\x16\x3d\x6a\xcb\xa2\x7d\xf7\x51\x1b\x16\x09\x8b\x6f\x69\xec\xf9\x95\xb7\x06\x02\x3c\xc1\x0c\x8c\x31\xd3\xc6\xbe\x67\xbd\xe5\xec\xba\xad\x36\x16\x61\xba\xce\x93\xb3\x96\x23\xfc\x92\xb7\xa2\x91\x5b\xde\x50\x9e\x68\xbf\xee\x58\x0f\x66\xa1\xc2\x48\x56\x95\x2d\x16\x3e\xf4\x94\x8e\x2b\xad\x0f\x3c\x14\x45\xde\x18\xf1\xfe\x3a\xe8\x86\x37\x74\x2f\x79\x4d\xaf\x7f\xf9\x1d\xc6\xc3\x83\xc7\xd6\x21\xe7\x6d\x02\xe5\xca\x41\xa3\x49\x16\xb4\xd5\xc1\x21\x9f\x06\xa9\x2e\x81\x83\xc2\xf5\x6f\xcb\xf8\xb8\xda\x60\x67\x66\x8a\xcf\xab\x0e\x70\xae\xb9\xd6\x6f\x1b\x83\x67\x17\x27\x6b\xe4\x6e\xe1\xa2\x3f\xc0\xe1\xf5\x15\xc9\x6a\xf4\x58\xec\xf9\x76\x9d\x57\x56\xe1\x06\xe0\x6a\x8c\x23\xad\x1e\x63\x45\x1d\x52\xcb\xb4\x53\xeb\x70\xe1\xc6\x6c\x86\xda\x16\x3d\x12\xc4\x13\xf3\x3b\x8d\x6f\x89\x50\x0c\x71\x3e\x40\x22\xbd\x62\x82\x43\x3c\x89\x27\xe6\xb6\xda\x25\xd3\x65\xa9\x37\xd5\x39\x75\xc5\xf6\xf3\x67\xe6\x5c\x0b\x5e\x80\x51\xc8\x2e\x4b\x69\x77\x26\x12\x9b\x0a\xd8\x59\x32\xa7\x81\x0b\x73\x57\xe2\xae\x3f\xe7\x4f\x21\x2e\x79\xbf\xec\xde\x2c\x64\x55\xe8\x2b\xa7\x3e\x00\xde\x7e\xa5\xe5\x33\x40\xb5\x8a\xbd\x5d\x7d\xb2\x0c\xd3\x87\xed\x4c\xf6\xd2\x30\x4d\xc9\x2c\x79\xc9\xaa\xaf\x3a\xdf\xe2\x22\xd0\x82\xac\x95\x11\x95\x29\x8e\x7a\x89\x5d\x93\xe8\x1c\x8b\xc5\x56\x4d\x42\x55\xe2\xbf\x11\x88\x5f\xae\xdc\xa8\x2b\xff\x35\x4a\x87\xb4\x77\x57\x27\x24\x7a\xfb\xf3\x22\x6f\xda\x4d\x4c\x55\xed\x4e\x3b\x95\xd4\xec\x88\x2b\x2f\xe5\x65\x3b\xc1\x4d\xd6\xdc\xe2\x26\x61\x62\x35\xac\xdf\x2e\xfc\xed\x26\xfa\x15\xfe\xe3\xa4\x22\x58\x4c\x50\x67\xbc\x83\x28\x95\xf2\x4d\x87\xd0\x60\x19\xe6\x25\x0f\xdd\xb2\x16\x26\x8c\x66\xd8\x99\xad\xea\xe4\x3a\x53\x1a\x8f\x6e\xbe\x33\x69\xf5\xb9\x1f\x9c\x73\x74\xcb\x34\x33\xc6\xbc\xe6\x8a\x94\x59\x3c\xc4\xcd\x4d\x1f\x0f\xef\x54\xfa\x47\xbb\x62\x53\x35\x5c\x1a\xc3\xe8\x92\x91\xe9\x14\xf9\x6f\x92\x51\xab\x9b\xd6\x95\x67\xbc\xdc\x76\xb0\x27\x63\x18\x15\x20\xb5\x53\xc6\x2d\xd0\xa0\xaa\x19\xba\x95\x29\x6f\xfa\xd9\xf0\x9c\xaf\x05\x30\x86\x91\x28\xdb\x35\x45\x3e\x80\x8c\x0b\x21\xe3\x2f\x31\x02\xb2\xa9\x94\x25\xbd\xb2\xb1\x77\x5b\xe7\xc7\x54\x82\xbd\xe4\x18\x3a\x14\x68\xdd\x6f\xa7\xcf\x32\xdf\xb7\xeb\xcc\x20\x66\x6f\x43\x86\x83\x52\xc4\x98\xad\xd8\xda\x97\x57\x5b\xde\xb4\x78\x7c\xd5\x1a\x26\x05\x87\x43\xd2\x30\x23\x33\x1c\x04\xc9\x54\xe4\xe7\xa1\x2e\xf7\x89\x92\x49\x27\x14\x27\xd8\x79\x18\x2b\x93\x21\xb8\x45\xcd\xb5\xb0\x30\x92\x7b\x3d\x53\xfa\xd0\x5c\x49\x51\x56\xba\x21\x47\x70\xc9\xb6\xcb\xd4\x44\x69\x78\x09\x95\x26\x4d\xd0\xb0\xf0\xcb\x65\xcd\x25\x9d\x2a\x12\xd7\xc4\xca\x6c\x10\xcf\x6e\x84\x04\x59\xfa\x70\xe6\xe0\xc3\x0b\x5f\x1f\xb6\xf2\x1c\x4d\x29\xba\xc1\x24\x8e\x8e\xf4\xc7\xb4\x54\x15\x66\xaf\xe4\x56\x58\xcb\xba\x72\x27\x6d\xbd\x27\x47\x08\x52\x6f\xdc\x19\x90\xdb\xf5\x6f\xc2\x7b\xde\xf1\x74\xf8\xc7\x27\x73\x50\x99\x5d\xae\x82\x47\x42\x46\x49\xa9\xd2\xb9\x52\x36\x38\x9c\xc6\xcc\x78\x26\x15\xbf\xf0\x53\x69\xff\x40\x3d\x96\x1d\x43\x45\x07\x02\xe0\x8b\x9b\xc0\xb7\x69\x03\xc2\x27\x36\x26\x81\xc0\x10\x14\x2f\xea\xdf\xa4\xf1\x68\xfc\x51\x59\xbd\x5d\x3e\xf4\x3f\x92\xc5\x57\xd2\x98\xd6\x1e\x22\xa1\xa4\xaf\xa6\x8c\x23\x62\x97\xe5\x97\xb5\x2c\x82\xd5\x1a\x7d\x99\x6c\xcc\x21\x56\xf4\x06\xd1\x0e\x1c\xdd\x9b\xe7\x6f\x6b\x10\x6d\xff\xf1\xcf\x77\xfb\x0b\x23\x1a\xc9\xa1\x44\x5d\xf9\x6f\x6a\x35\x8d\x64\x6d\x2e\x3c\x37\xa8\x51\xd2\xc2\x12\x60\x8d\x8a\x4d\x36\xe1\x10\x95\x5e\xce\x67\xbb\xa4\x63\x8b\x5e\xa5\x90\x98\xce\x15\xe5\x12\xed\x3c\xe7\x0d\xd6\x60\x21\x34\xd2\x06\x7d\x9f\xa2\xa8\x0d\x71\xb9\x91\x21\x3a\xbc\x20\x94\xcd\xf9\xba\x16\x6d\x52\x7d\xe6\x5b\xc2\xba\xc9\x0b\x7f\xeb\xd5\x53\x2c\x1b\xbd\xee\xb5\x33\xf0\x07\x77\x8f\xae\x7e\xd9\x9d\x63\xed\x54\x9d\xf7\x13\x5c\xb0\x6e\x36\x36\xc7\x10\x05\x93\x03\x95\x63\x3a\x44\x5c\x9b\x25\x66\x40\xa2\x6a\x0e\xb5\xa9\x33\xb5\x2c\x44\x4c\xef\xc0\x2b\xe2\x5c\x2d\x1b\x99\x6a\xb9\x38\x47\x3a\xe9\x09\xb8\xa1\x01\xf7\xa8\x35\x96\x99\xde\x6e\xa1\xce\xbd\x6e\x96\x9f\x9d\x7e\x5e\xa0\xc1\xac\x0e\x7d\xae\x4d\xfc\x74\x81\x36\x4b\x05\xe7\x1b\x9a\x5e\x86\xd2\xc8\xaf\xf9\xf9\x54\x46\x40\x46\xeb\x57\x16\xbd\x57\x3f\xcf\xe8\xa3\x78\x68\xa7\x2c\xf2\xe7\xfd\x90\x1c\x93\x30\x4c\x6e\x7f\xe6\xcb\x3b\x0e\x09\xc3\x43\x2c\xe5\x9c\x1f\xfd\x50\x02\x5f\x6b\xc4\x1d\xaa\x8e\xd6\xdb\xd5\x5d\x9d\x02\xb5\x03\x0c\x11\xf3\xc6\x20\x20\xa3\xc8\xec\x83\xdb\x77\x9d\xa9\xf6\xd6\xd5\x18\x89\x87\x45\x80\x99\x38\xd3\xf3\x59\x11\xf1\x57\x38\x84\x9e\x87\x22\x91\x2b\xd3\x05\xc7\x63\xe4\x5d\x03\x36\x46\xc0\x23\xa1\x2f\x6e\x77\x00\x19\x8a\x2f\x42\xe2\x23\xf1\x47\xb6\x78\x01\x8e\x00\x09\xbb\x4d\x4e\xbf\x6a\xed\x35\xe7\xe5\x57\xa5\x37\x17\x98\x20\x8a\xaa\xf2\x7b\x1d\xd7\x0c\x72\xcd\xa7\x7f\x22\x5c\xb4\x42\x46\x7c\x22\x2c\xf5\x30\x45\xb0\xe6\x27\xf9\x5c\xe2\x6e\x05\x9e\x51\x84\xd8\x99\x74\xe4\x26\x8d\x64\xb4\xa6\xcd\x36\xd5\x22\x5b\x94\x78\x44\x69\x8e\x78\x1f\x86\x23\x44\x5b\x93\x2f\x9a\xc9\x91\x2f\x1b\x9e\x17\x89\xcb\x04\x91\xd4\xae\x1c\xdb\x18\xb3\x8a\xca\x6b\x53\x44\x87\x84\x4e\x52\x76\x48\x09\xaa\x48\x75\x3e\x55\xe2\x35\x57\x49\x38\x7b\x1a\x18\xc4\x41\x25\x0d\x57\xe2\xc7\xa5\xd3\x50\x8d\xb1\x75\x29\x71\x8b\x6a\x92\xbf\xab\xdc\x5b\x45\x83\x3c\x20\xa3\x91\xda\xbb\x65\xa3\x0a\x4d\xd7\x99\x20\x1f\xc3\xce\x14\xc6\x22\xb1\x59\x7d\x0a\xe0\x5d\x2a\x79\x25\xab\xc9\xe4\x18\x9b\xeb\x56\xa1\x35\xf0\x95\xc0\x84\xe3\x12\x39\x08\x50\x19\x18\x2e\x51\xa7\x14\x15\x4f\xf8\x01\xee\xcc\x70\xe8\x67\xf7\xa6\x15\x77\x3b\x29\x93\x48\xcc\xa6\x71\xc9\xfc\x5a\xed\x51\x39\xd9\x7e\xdb\xef\xdb\x33\xd2\x89\x18\x9a\x76\x94\x04\xae\x7d\xfb\x7e\xf4\xe9\x22\xf8\xdd\x67\xe6\x9b\x90\x46\xc0\x90\x17\x7e\x5d\xee\xa7\xbe\x71\xe7\x56\x98\xf2\xae\x34\xac\x3a\xa9\x45\xf9\x5f\x24\x66\xdc\x08\x16\xd1\x08\x78\xc2\xd9\x03\x43\xb6\x50\x91\xc8\x29\x25\x93\x29\x7b\x4e\xe8\x31\x09\x87\x98\x4e\x92\x2b\xf1\x9a\xb5\xea\x64\x51\x3a\xd8\x0f\xd0\x95\x74\x0d\xcd\x01\xb1\x56\x1d\x06\x2e\x99\x7a\x21\x73\xca\xf2\x94\xd9\xf0\xd8\xb0\x07\x78\x5a\x23\x9d\xc4\x9b\xa5\x83\xfe\x69\xbf\x67\x35\x05\xaa\x30\x0e\xe7\x9d\x47\xb9\xfa\xf5\x59\x9c\x77\xe2\x92\x64\xbe\x18\xa5\xd7\x1d\xe6\x5d\xf5\x8a\x48\xd9\x6c\x84\x42\x52\x78\x1e\x30\xf4\xb4\xd0\xad\xc2\x3f\x8d\x02\xe1\x89\xd7\xad\x44\xc2\x76\xcf\xc9\xa4\xff\x9b\xe3\x95\x94\x99\xf9\x99\x25\xdf\x9f\x7f\x01\x55\x04\x6b\x2c\x47\x93\xe7\x15\xb2\x9d\x42\x1f\x52\x84\x22\x76\x77\x1f\x99\xd9\xe3\xde\xec\x0c\xef\x42\xf3\xf1\xcb\x49\x22\xeb\x5c\xc3\x5f\xf5\x1e\x76\xec\x0b\x9b\xf4\x2e\x40\xa3\x18\xfb\xe6\xfb\xed\x74\xd8\x1d\xf9\x4c\xea\x79\x48\xaa\x17\x47\xf1\x40\xfe\x29\xee\x9f\xc5\xf5\xdb\xdb\x17\x8e\xeb\x5c\xf2\x97\x22\x00\x43\x1f\x5c\x40\xc6\x10\x15\xb0\x88\x26\xc5\x98\x75\x91\x0e\x20\xe9\x44\xba\x71\xdc\x0f\xfc\xdc\x25\x1d\x3a\x86\xf7\xf5\x44\x6e\x15\xa5\xcb\xa9\x8a\xb4\x33\xa7\xde\xd4\x73\x12\x32\x70\xc9\xa0\x77\x6d\x24\xa8\x0c\xc0\xcd\xe5\x39\xa5\x71\x2b\x1a\x75\x86\x24\x64\x9d\x48\xb5\xd0\xc2\xc5\x94\x63\x6c\x4b\xaa\xf9\x4a\x02\x97\xf8\xb3\x32\x0b\xe7\xa6\x5a\xb5\xb0\x26\xaa\x8f\x49\x40\xe8\xbc\x6c\xf6\xd4\xcb\x6d\xca\x3b\xe4\xbe\xdf\xa9\x18\x84\x8d\xc0\x1d\xa7\xea\xc2\x52\xea\xb6\xeb\x39\xf1\x94\x1b\xcd\x20\xfb\x75\x1e\x86\x14\x23\x69\x97\x34\x87\x4d\x94\xe7\x2a\x61\xcd\x45\xb7\xde\xc2\xba\xa8\x16\xaa\x7d\x6e\x8a\x93\xb7\xd7\x44\xed\x09\x1e\x0e\xc1\x3b\x8c\x66\xc6\xe2\x64\xb5\x41\x21\x6d\x7b\xa2\x64\xea\x93\x99\x49\x04\x97\xd9\x8d\xb8\xd9\x07\x0a\xd6\x77\xb5\x5d\xfd\x12\xf3\xdd\x05\x84\xf0\x06\x8f\x60\xc5\xea\x5a\x66\x7f\xa7\x55\x35\xe4\x96\xd9\xc9\x0b\x61\x06\x82\x5c\x68\xf8\x4a\x3b\x7c\x79\xf9\xfa\x7c\x3d\x12\xf8\x8a\x8c\xc0\xe5\x3a\x04\xe3\x0c\x31\x8a\xbd\x15\x77\x72\x01\x47\x08\x30\x68\xd4\x8d\xcb\xef\x47\x1a\x5a\x2b\xed\x48\x46\x23\x80\x01\xb9\x5d\x71\x47\x57\x09\x90\xe3\xaa\xfb\x70\x81\x38\xcd\x8c\x62\xda\x56\x3d\x94\xb2\xba\x16\x31\x28\xc6\x90\x5a\x1b\x13\xfd\xa6\xed\x22\x62\x14\x0f\x62\x71\x75\xf0\x14\x1a\x0b\x5a\x5a\xec\x72\xbe\xd6\x8c\xb8\x56\x5c\xda\x76\xd7\x40\xff\xcb\x78\x32\x20\x60\x45\xa3\xe8\x7c\xe2\xad\xaf\x6d\x2c\x17\x94\x8c\x28\x8a\xa2\x8a\x11\x58\x27\xd6\x37\x27\xff\x1d\xe4\x83\xee\xe6\x3e\x09\xa7\xdc\xb3\x3b\xf8\xca\x9a\xab\xeb\x0f\xdf\x7e\x7e\x7e\xb5\x03\x2f\x5e\x5a\x39\x2d\xe7\xe6\x85\x18\x9c\x1d\x1f\x3e\x91\x41\xb4\x7e\x36\x1c\xfd\x7a\xf7\xe9\x97\xb3\xe0\x60\x81\x00\x3a\x51\xf9\x36\x80\x77\xea\x9e\xac\x02\x9a\x96\xc4\x2c\x40\x65\x67\xcd\xd2\x3c\xe9\x22\x3a\xc4\x9a\xd1\xf7\x25\x75\xf8\xf2\xd9\xcb\xbb\x97\x53\xdf\xec\x6a\x99\x3a\xae\xc3\x1c\xd7\x91\xa1\x15\xcb\x2f\x42\x5c\x5b\x03\x41\x2f\xf9\x6b\x70\xbc\x19\x62\x71\x92\x6a\xc9\x55\x4e\xe5\x97\x44\x9a\x2d\x4d\x75\x7c\xed\xaf\xa1\x39\x0f\x84\x39\xde\x99\xa0\x30\x2e\x72\xa0\xa2\x48\xaf\xe4\x8a\x42\x1e\xab\x72\x61\x52\x34\xa4\x28\x1a\x67\xf7\xad\xf5\x5e\xf2\x2c\xdb\x54\x87\xac\xa9\xc9\x41\xcd\x79\xe7\x9f\x13\x3a\xc0\xbe\xdf\x08\x94\x9e\x6e\x4b\xdb\x82\x23\x0c\xc3\x20\xda\x1a\x26\x2f\x77\x26\x49\x41\xe0\x0f\x2d\xb1\x4f\xf3\xf4\x24\xd0\x1c\x62\xba\x2c\xa1\x8a\x73\x69\x52\xe6\x98\x5a\x03\xe0\xb7\xf9\x3d\x2d\x1a\x49\x0f\x25\x4e\xe6\x56\x8b\x7d\x2d\x86\xcb\x7e\xd0\xab\x10\x48\x60\x3d\x2d\xd6\x35\xab\x66\xad\x6c\x4e\x21\xb4\xdd\xae\x63\x8e\x48\x32\xe7\x4f\x35\x48\x63\x09\xb2\x3a\xa5\x3a\x41\x7e\x8e\x04\xf4\x82\x82\x21\xd5\x01\x1d\x15\xc3\x73\x58\xb8\x97\xfc\xe1\xf4\x9b\x1c\x9e\xa9\x49\x24\x13\x02\x14\xa2\x67\xb9\xef\x86\xb2\xac\x39\x30\xd4\x7e\x86\xa6\xdb\xb2\x22\xab\x40\xc4\xea\x0c\x09\x61\x2d\x7c\x59\xb9\xcb\xfe\xa6\xac\xbc\x3a\xaf\x47\x02\xa7\x29\xed\x26\x89\xb3\xe8\x7e\x48\x23\xf4\x0c\x2d\x9f\xab\x9f\x9a\xeb\x8b\x2f\xd0\x7f\x16\x40\x6b\xa0\x20\x4b\x37\x5e\x29\x0d\x49\x89\x69\x03\x05\x49\x5d\xd0\x95\xf6\xaf\xd7\x10\x35\xd0\x70\xa1\xfd\xdc\x8e\x8e\x7d\xd7\xe1\x2a\x2a\xd5\x2e\xbf\xc8\xaa\xc4\x4d\xa9\xad\xf2\x9d\xfc\x9e\xb7\xe3\xe8\xf5\xe2\x54\xe4\x62\x0b\x0d\x60\xe2\x87\x44\x8b\xcd\xd7\x68\x9a\x10\x1f\x05\x15\x15\x9a\x0c\xd2\xae\x15\x1b\xca\xe5\x9e\x24\xc5\xe8\x8f\xc5\xbd\xdd\xc7\xcc\x4b\x2e\xda\x77\xea\xaa\xac\x8f\x08\x23\x2f\x45\x59\xdd\xc2\x2b\x95\x25\xd7\xcb\x43\xdf\xb1\x3b\xba\x36\x6e\x10\x12\x06\x51\xaa\x8c\xda\x3d\x22\x84\x06\x73\x33\xd1\xb6\x4d\x59\xf0\x46\x5b\x55\xbd\xdc\x91\xa5\x1a\x2b\xe0\x0d\xf2\x47\x42\x75\x48\xd3\xc0\xc8\x35\x3e\xfd\xdf\xff\xfb\xdf\xfc\x73\x19\x44\xb9\x1e\xf3\x49\x86\xb9\x60\x62\x6d\x07\xd0\xb6\x5c\x83\x71\x5c\x28\x28\x50\xde\xdf\x5a\xe4\x97\x23\x3d\x17\x7b\x43\x13\x33\x1d\x37\xbf\x82\x32\x1b\x5b\x21\x3f\xe2\xb1\xb0\x52\xc0\xe0\x0e\x48\xaa\x01\x43\x74\xb2\x69\xbf\xb8\x5a\x25\xae\x57\x1c\xac\x45\xb5\x84\x52\xe8\xb7\x26\x05\x49\xb2\x56\xd5\xb2\xfc\x2b\x58\x8a\x96\x14\xc8\x5d\x49\xdc\x54\x15\x2d\xea\x01\x23\x1d\x7f\x9b\x83\x0e\x13\xac\xa2\xd6\x9d\x0e\xad\x38\x6f\x7a\xb9\x39\x65\x6d\x1e\x93\x11\x4d\xa6\xec\x2e\x35\x69\x6d\x10\x1f\x6b\x05\xb2\x15\xf6\x61\x75\x68\x6f\x8e\x2a\x71\xb2\x2a\x64\x6a\x9f\x13\x20\xcd\xb8\x86\xad\x67\x5a\xdb\xb0\xb9\xdc\x51\xf6\xdf\xd5\x18\x01\x2f\x88\x23\x26\xa2\x39\x80\x32\x0c\x83\x3b\x20\x9a\xe9\xd6\xe2\x05\xcc\x71\x22\x98\x43\xcb\x2c\xc2\xc0\x33\xc8\xbc\x71\xb1\xde\xe6\xa2\x3c\x3c\x27\xc2\xde\x07\x13\xde\xb8\x08\x87\xe6\xea\xa7\x16\x38\x29\x97\x65\x57\x55\xc5\x36\xa3\xa9\x45\x54\x49\x69\x53\x6c\x5d\xb4\x3a\x69\xc2\x56\x7d\xea\x7e\x14\x46\xe3\x56\x6e\x94\xb6\x5e\xab\x2d\x59\xac\x7f\xcd\xae\x94\x17\xaf\xc2\xe1\x63\xf6\xe6\x85\x9d\xe7\xaa\xc9\x0b\xb5\x90\xdf\x89\xff\x9f\x76\xec\xda\xca\x6e\xde\xee\xa1\xd4\xdb\xf6\x20\xda\xdd\x7a\x16\x9a\x9d\x50\xd9\x6d\xba\xc8\x1c\x92\x2e\x9e\xe5\xfb\xa2\x8a\xa8\xea\xb9\x4b\xfc\x36\x40\x00\xc5\xc0\x7b\x73\xb8\x7d\x0e\xcb\x78\x5b\x07\x3f\x2c\x77\x6f\xb0\x6b\x72\xde\xb1\x2c\x22\xdf\x14\x89\xad\x3b\xca\x12\xae\xa8\xa2\x01\xda\x49\x1b\xd2\x51\x64\x3e\xd4\x67\x86\x64\x02\x05\xd7\x98\xd7\x69\x9f\xfa\xdf\x77\xb7\x9b\x2f\x02\x56\xe7\x65\x53\x47\x90\xc8\xc6\xcd\xd6\xdf\x16\xc7\x1f\xb9\x5c\xa2\x78\xc0\x4f\x02\xba\xa7\x6b\x1e\x67\x5c\xad\x05\x52\x03\x24\xd7\x60\xbb\xb4\x29\xd5\x0c\x0a\x07\xbc\x88\x84\x9d\x1b\x79\x2f\x9e\x1d\xf2\x22\x49\x40\x96\x25\x12\x38\xdc\x48\x4f\x55\x86\xb9\x70\xac\xd9\x68\x2b\x7e\xb3\x96\x1d\x24\xaf\xe2\x5a\xeb\xc6\x69\x40\xee\xa4\x44\xac\x5d\x39\xde\x5d\xbd\x39\x3b\xfb\xe3\xed\x9b\x07\xe5\xf8\xa0\x1c\xff\x3b\x95\xa3\x5e\x48\x3e\x5b\x89\x69\x0d\xf5\x64\xc0\xfa\x2a\xd5\xea\x21\x69\x5f\x2e\xad\x7e\xfc\x9c\xea\x27\x25\xa5\xa5\xfe\xb9\xa7\xbb\xc1\x7f\xfe\x81\x5f\x1f\x4f\x7f\xb5\x04\x9a\xed\x97\xab\x4c\xa9\x2f\x42\x4f\x00\xb6\x8a\x09\xe4\x72\xb7\x95\x64\xc9\x27\x1b\x49\xd2\xad\xf2\x01\xeb\x89\x5e\xd2\xbd\xd8\x78\x6f\x90\x2b\x31\x59\x96\x78\xcd\xd7\x28\xfe\xba\xca\xb2\xf0\xf3\x9b\x5a\xeb\xab\x06\xd3\xc5\x88\xfd\x8a\x6a\xf6\x8d\x5a\x3d\xa8\x0f\xa7\xce\x73\xba\xd8\x81\x62\x9e\x53\xd8\x56\x40\xa0\x9c\xa3\x75\x0b\xef\xbb\xcb\x9d\xc1\xef\x7f\xf4\xd1\xc3\xb6\xf9\xb0\x6d\xb6\xdf\x36\xf3\x5b\xe4\xea\x37\x3e\x30\x86\x32\x8f\x35\x05\x29\x4e\x5d\x41\xfa\x55\xbb\x5a\x4d\x9d\x68\x8a\x43\x81\x7c\x21\x3a\x5a\xcb\xee\xa5\xba\x6e\xb9\xfc\x53\x86\xac\xbb\xb6\xe3\xd1\xd1\xab\x4f\x5b\x37\xf1\x02\x51\x44\x0c\x0e\x22\x91\xa9\x26\x87\x60\xce\xed\x8d\x4b\x30\x5d\x85\x85\x5b\xc6\x5e\x4a\x51\x63\x92\x5d\x5d\x2c\x4d\x09\x12\x23\xb6\x3c\xb9\x04\x8f\xf5\x0c\xe7\x64\x55\x1a\xe5\xf0\xf5\x0d\xa2\xfc\xc0\x66\x07\xf6\xd2\x86\xc2\x9c\x4f\x68\x51\x32\x4f\xf4\xd3\xe2\x92\x09\xbd\x41\x34\x12\x31\xe3\x8b\x93\xf9\x2e\x69\xca\x1a\x3a\x27\xef\xaa\x56\x06\x4b\x3c\x15\xe2\x7e\x92\x37\x3f\x2d\x42\x6b\xec\xe6\x45\x3f\x8f\x2e\x3e\x31\x3a\x8d\x56\x83\xb6\x00\x70\x5c\x41\x6e\x7a\x41\xab\xb4\x54\x45\x39\x90\xa6\x35\xab\xa3\x8b\xb7\x2f\x07\x27\x3f\xbf\xef\x37\x47\xd9\xb9\x8e\x04\x45\x12\xb8\x5e\xf1\x24\xb5\x4e\xdc\xff\x06\x93\xe5\x60\xf9\x26\x8b\x9d\xb1\xf2\xa8\xd6\x58\x31\xc4\x64\xcb\x57\x0a\xb6\x4b\x8b\x3b\xe4\x26\x13\xe6\x91\x7b\xf0\xbd\x9c\xfc\xe7\xd8\x3c\x6b\xb7\x4f\x7b\x35\x58\x86\x5d\x4b\x0e\x94\x39\xc8\xb5\x2c\xaa\x64\x6d\x9b\xab\x0d\xb6\xcd\x5c\x4e\xe2\x71\xbf\xc8\xe8\x24\x15\xb9\xae\x26\x63\xc2\x96\xea\x7a\x8c\x4e\x31\xdc\xde\xde\xbd\x9c\x66\xf3\x2f\xec\xa1\xb6\xaa\x0e\x52\x07\x0c\x91\x14\x9a\xc9\xe0\x71\xa2\x6b\x20\x0e\xc6\xe0\x04\x31\x88\x83\xc8\x38\xce\xfa\x46\xf5\x5a\x03\x56\x35\x05\xfe\x04\x78\xbf\x7a\x57\xc6\xc9\x60\xe2\x21\x53\xac\x4d\x65\xfd\x8e\x65\x50\xf7\x46\xe1\xc1\x01\x81\x5a\x57\x4f\x62\x1b\x80\xbb\x55\x92\x9a\xe0\xe1\xd9\x51\x6b\x89\x9e\xb7\x4a\x82\x25\xc6\x9e\x1d\xb9\xed\x80\xf9\xec\x2e\x55\xd6\x75\xb3\x54\x5d\x5f\xc8\x29\x45\x54\xe7\x0a\xb5\x00\x19\x70\x5a\xc3\xfc\xb4\x0a\x6c\x8a\x53\x65\x2e\x7a\x51\xbd\x84\x9a\x99\xd6\x4a\x3f\x39\x26\xbb\x62\x2e\xb4\xca\x2c\xca\x39\x27\x10\x1a\x4c\xa5\x13\x4d\x03\xcc\x3a\xc9\xc6\x63\x53\x27\xb5\x54\xc5\x21\x40\x23\x14\x9a\x31\x4c\x13\x03\xaf\xff\xd8\xdd\x75\x3f\x08\x04\xd9\x16\xd1\x7b\xf5\x56\x9e\x2c\x81\x27\xbf\x4b\xe3\x9a\xab\x40\xe7\xd4\xc3\xca\x9a\x95\x88\xe4\x9c\x22\xb9\x25\x9f\xe4\x2c\xe0\x3a\xa3\xaf\xb1\x07\x09\x5e\xad\x45\x61\x89\x46\x44\xbc\x4e\xad\xaf\xab\x34\xea\xca\x8a\x50\x02\xbc\xa1\x13\xcd\x44\x74\x4f\x8e\x18\x13\x47\xcc\x5f\xe6\xdd\xe5\xb2\xad\x8e\x93\xd5\x5e\x2c\x40\xd3\x7c\xac\x89\x95\x6b\xd2\x6d\x8a\x21\x7a\xa1\xd4\x1c\x9f\xaa\xf7\xa2\xf6\xdb\xb0\xe1\x65\xdd\x92\xde\xab\xb6\xa4\x4d\x2f\xd5\x15\xea\xa9\x33\xa9\xf7\xdc\xfd\x8a\x50\xce\xa6\x37\x77\x0d\xef\x7d\xfb\x1a\x38\x53\xb6\x91\xf9\xa6\xbf\x55\x6e\x8b\x8e\xdd\x9b\x21\xcb\xb7\x4d\x78\xd1\xeb\x68\x75\xbb\x8e\x02\xc5\x14\x99\xff\x1a\xb0\xa3\xf8\xda\x23\x93\x29\xf4\xaa\x70\xfd\x16\xd6\xe6\x75\xc8\x7d\xce\x3c\xa9\x34\x25\xb5\x2e\xc3\x96\xb5\x59\xb0\xcf\xac\x71\x73\xfb\xdb\x7f\x73\x9e\x4d\x6d\xa6\x44\x98\x62\x3e\xd7\x69\x41\x67\x8e\x54\x99\xac\xaa\x99\x81\xbe\x17\x27\xed\x22\x9f\x5b\x93\xa0\x9d\xea\x54\x35\x92\x17\xca\x07\x74\x26\x3e\x81\x17\xc9\x7e\x69\xa0\x4e\x3c\x82\x65\x31\xe7\x15\xd2\xb8\xf4\x8c\xa6\x05\x72\x9a\xea\xd8\x31\x4f\x62\xd3\x5c\xa4\x7c\x22\x03\xe5\x3a\xae\x77\x2c\xaf\x63\x5e\x88\x8f\xba\xf5\x32\x9c\xd4\xbd\x6b\x4f\x4b\x31\xd3\x29\x7f\x8c\xb4\x7a\xa5\x74\x9c\x5b\x30\xa9\xc9\x5e\x91\x94\x31\xe6\xab\xeb\x09\x89\x94\xd1\x5b\xd6\x90\xdc\x24\xfd\xfd\xb5\x8e\xb4\x5c\x79\xb2\xb5\x65\x3a\x2d\x94\xeb\xb4\x60\xb6\xd3\xd2\xf2\x9d\xd6\x90\xf1\x74\xd4\x70\x92\x6c\x36\x35\xad\xd6\xeb\xbd\xe4\xfe\x7c\x3b\xd9\x3f\x4b\xc9\xff\xa9\x66\x7c\x93\x2e\x31\xe5\x00\x55\x55\xe9\x6b\x99\x72\x5e\x2b\xed\x4d\x5e\x04\xcb\x45\x53\x93\x8a\x64\x5a\x2f\x2b\x4b\x7b\x01\xf3\xa7\xbe\x68\xfc\x5d\x59\x06\x4c\xfd\xd2\xb4\xd8\x6f\xfe\x3b\xa6\x39\x77\x24\x59\xf1\x54\x8f\xe1\x0d\x02\x03\x84\x42\x20\x0e\x93\x7e\xa9\xe2\xc3\xb2\xe6\xae\x21\xc9\xa9\xe9\xb8\x3e\x5f\x18\xe8\x7c\xb7\xd7\xd9\xb5\x55\xcb\x1b\x6c\x2d\xca\x61\xcd\xf7\xd7\xc1\xaf\x37\x6f\x7b\xc7\x83\xcf\x0f\xc1\x74\x0f\xc1\x74\xdf\xee\x4d\xf4\x9a\x62\xd0\x93\x65\x58\x0a\x40\xcf\xd6\x27\xff\x73\x40\x22\x0d\x60\xe5\x46\x0b\x2b\x2a\x16\xa1\x5a\x7b\x24\x7a\x42\x4c\x0b\xfd\x73\x6f\x71\xbc\x8f\x5f\xa2\xa7\xbf\x05\x2f\x5f\x5b\xd7\x72\x78\xc0\xa4\x5a\x52\x64\xeb\xf7\x1d\xb3\xda\x2a\x5e\xf5\xde\xa4\xfb\x8f\x9d\xf3\xfd\xed\x67\x3b\x66\xf8\xb5\x05\xd1\xee\x94\x40\x2e\xb8\x1e\x56\x2b\x67\xdf\x88\xa4\x55\x07\x28\xb6\x91\xbb\x56\x22\x57\x0b\x9f\xb6\x66\x29\xbc\xbe\x89\xfa\xfb\xef\xa6\x9f\x16\x90\xc2\xda\xb3\xcb\x02\xa7\x15\x06\x8e\x62\x36\x26\x14\x7f\x46\xa5\x6a\x5b\xf3\x9c\x4f\x8c\x31\xbb\x8c\x5c\x23\x55\x45\x82\x22\x66\x71\xec\x7f\x4f\x62\x6a\x50\xf8\x11\x62\x0c\x87\xa3\xa8\x2b\x1a\x8c\x6a\xb4\xfe\xd1\xf1\x2b\x20\x7b\x6d\x88\x15\xf4\x09\x8a\x40\x48\x18\x98\x52\x72\x83\x55\x1d\x3d\x8a\xfe\x88\x31\x45\x3e\x98\x22\x3a\xc1\x91\xdc\xcb\x81\x08\x31\xf0\x18\xb8\xe3\xc4\x41\x7f\x82\x43\x1c\x31\x0a\x19\xa1\x00\x0f\x65\xed\x3e\x1c\x01\x18\x02\x51\x4d\xb0\xdb\xfa\x10\x7c\xa1\x28\x80\xe1\x7a\x86\x3e\xc3\x6c\x2c\x87\x1a\x61\x86\xf4\xb1\x02\x46\xc0\x0d\x46\x33\x31\xa8\xaa\x81\xac\x38\x18\xb9\x7a\xfd\x66\xeb\xff\x07\x9b\xf5\x5f\xd6\x5a\x6b\x5e\xfd\x9f\x46\xfd\x5f\x7a\xbb\x07\x5b\x0b\xac\xfe\xe2\x18\x6c\xeb\xc0\x16\xde\xeb\x44\x7f\xc4\x90\x22\x60\xfe\xba\x6f\xf2\x0d\x2e\xa7\xe9\xed\xd5\x35\xbd\xb3\xba\xa6\x77\x57\xd7\xf4\xde\xea\x9a\xde\x5f\x5d\xd3\x8f\x56\xd7\xf4\xc1\xea\x9a\x7e\x5c\x6e\x7a\xf9\x5a\xaa\xd0\xb5\x9d\x8d\xa2\xca\xc4\xdf\x43\x01\xbf\xdb\xad\x67\x8f\xb6\xef\xe0\x1c\xa8\xc4\xf7\x61\x23\x1b\xbd\x4c\x76\xa7\x46\xd3\xb9\x31\xa9\xce\xdf\x74\x74\xbc\x54\xd3\xb3\x14\x3f\xcf\x7d\xd8\xf5\x4d\x76\x59\x3b\x60\xe2\xcc\x09\xb4\x64\x68\xe2\x85\x30\x75\x8f\x46\x49\x62\xd5\x03\xaa\xae\xdd\x25\xfd\x77\x1a\x85\x72\xdf\x01\x28\x38\x7a\x55\xa7\x9f\xb2\x1f\x57\x4c\x07\xf4\x7d\x8a\xa2\x2a\x76\x1c\x65\xbf\xae\x7a\x56\x10\x1d\x5e\x10\x5a\x75\x85\x3d\x55\x3f\xad\x98\x0a\x1f\x32\x28\x9d\x16\x55\xd9\x97\xb9\x07\x9a\x0a\x76\xac\x31\x48\x46\xee\x42\x1d\xc8\xf5\x57\x21\x4c\x66\xa4\xa0\xd4\x4b\xd1\x2c\x0f\x61\x2c\xf7\x16\xc6\x22\xb7\x99\x87\x08\x96\xff\xe0\x08\x96\xf2\xea\x70\x2c\xca\x99\xd4\x5d\x8c\xdb\x1b\x85\xcb\xf0\x8f\x26\x76\x6d\x9b\xb3\xc7\xfd\xb9\xe6\xdf\xbe\x88\x6e\xde\x4d\x43\x73\xce\x76\xe9\xd8\x71\x2f\xb7\x26\x8b\xcc\x42\x3b\x6f\x75\xf2\x92\xfc\x77\xfd\x93\xf1\x9c\xfc\x76\x7b\x19\x6e\x3f\x35\x1f\x08\x19\x1c\x59\x1e\x04\x3d\x12\xc4\x93\x72\x62\x69\xa5\x9e\x97\xcf\x03\x1c\x75\xc6\x30\x18\x9a\x2f\xfd\x8c\x2f\xd6\x44\xf1\x34\xbd\x93\x9e\x33\x4d\x1b\xca\x15\x1c\x45\x36\x39\x10\xf2\xac\x60\xd8\x30\x81\xda\xd7\x19\x1c\xd5\xe7\xd7\xb2\xea\xd4\x92\xec\x99\x0a\x2a\xf5\x47\xf4\x36\xce\x55\x11\xb1\xfa\xa2\x08\xfa\x1b\xef\x92\x3c\xa5\x79\x01\xc1\x8b\x8d\x57\xde\x07\xe4\x62\x4b\xe4\xa6\x7a\x05\x47\x36\xb0\x1d\xd6\x2c\x31\x0c\x31\xdb\xec\x8b\xc9\xd9\x4d\x11\xd5\x86\x26\x2c\xb3\xb7\xe6\xdf\x6b\xda\xe6\xa1\xae\xcc\xfb\x9e\xd7\x47\xb6\x3a\x4c\x5e\x51\xdc\x43\x0c\xc3\xee\xf6\xe5\xa3\xa3\x0b\x4b\x20\xbd\xff\xd4\x5b\xde\xf6\x86\x4a\x93\xf1\xd1\x52\x64\xd4\x0d\x55\x2b\x61\xd9\x52\xf7\x59\xeb\x2f\x07\x78\x77\xf9\xea\x97\xbd\xc7\xa7\x15\x2e\x50\x12\x60\xef\xce\xb8\xe9\xb5\x0a\x6e\x72\x2c\x61\x25\x8e\x3c\x0f\x45\x91\xb8\x62\xa4\x24\x00\x57\xc9\x25\x9f\x9d\x3b\xbc\x62\xd7\xb5\xda\x77\xd9\x8c\x74\xd8\x18\x53\xdf\xb8\x5b\x39\xe6\x2b\xe0\xf2\xee\x7b\x2c\x8b\x15\x44\x80\x8d\x21\x03\x71\x84\x40\x61\x48\xaf\x70\xc4\xa2\xe4\x66\x55\x5e\x50\x8a\x7b\xc6\x29\xa2\x43\x42\x27\xc0\x43\x94\x41\x1c\x02\x01\xdb\xd0\x05\x4f\xef\xd4\x8d\x2c\x0e\x47\x00\xca\xe7\xcd\x91\xcc\xc2\x51\xeb\x51\xc4\xc0\x8b\x13\x8d\x63\x2e\xe0\x1b\x0e\x18\xc6\x2c\xa6\xf2\x46\x17\x45\x0c\xcc\x70\x10\x80\x01\x02\x30\x66\x63\x14\x32\xec\x41\x86\x7c\x17\x4c\x09\xe3\x9f\x60\x10\xdc\x89\x9f\x08\x15\x65\xed\x01\x45\xd0\x07\x50\x0e\x84\x11\x00\x7d\x5f\x00\x67\xc0\x00\xe0\x90\x53\x2d\x4e\x25\x2d\x89\x95\x7c\x21\xb4\x48\x2e\x1b\x23\x20\xc4\x0e\xa3\x08\xc0\xd0\x07\x34\x0e\x50\x04\x86\x84\xca\x50\x6e\xd1\x68\x42\x3f\x3f\x08\x95\xa2\x7d\x9b\x2d\xa0\x90\x30\x3c\xc4\x0a\x22\x40\xe4\x86\x0e\x49\xad\x91\xd2\x42\xd6\xac\xde\x6b\x34\x67\x4a\x31\x0c\x62\xa5\x70\x5a\x77\xb5\x77\xc5\xfa\x00\x97\x8c\x50\x25\x85\xcd\x65\x24\xd2\x37\xf9\x54\x31\xe4\x31\x90\x4a\x4d\xe4\x26\xf2\x08\x29\x02\x11\x23\x14\xf9\xc0\x13\x19\x5c\x9d\x08\xfb\x08\xe0\x74\x36\xa1\xa2\x6e\x4c\xd1\xd0\x71\x9d\x31\x63\xd3\xe8\x70\x6b\xcb\x47\x37\x28\xe0\xaa\xa9\x3b\x21\x9f\x71\x10\xc0\x2e\xa1\xa3\x2d\x14\x76\xde\x5e\x6e\xf9\xc4\x8b\xb6\x7e\x43\x83\xad\xa3\x8b\x17\x5b\xbf\xe1\xd0\x27\xb3\xad\x08\x89\x8b\x76\x6d\x00\x8a\x3c\xf5\x83\x20\x22\x3f\xb4\xae\x0c\x8a\x48\x6f\xf7\x45\xac\x41\xcc\x08\x97\x41\x4f\x08\xae\x17\x20\xc8\x29\x1f\x52\x32\x49\x1a\x00\xf1\x94\x84\xc0\x0b\x48\xc4\x45\x53\x44\x2e\x0c\x28\x99\x45\x88\x82\x99\x20\x45\x34\x0b\x3c\x18\x02\x18\x44\x04\x4c\x60\x18\x67\x8d\xc9\x17\x54\x77\x61\xc4\x10\xac\x0e\x30\xaf\xfb\xbe\x41\x05\x25\x07\x35\xfe\xf7\x04\x87\x78\x12\x4f\x1a\xe5\x44\x16\xd4\x2f\x34\x29\xbf\xd4\x05\x7b\xc7\x1c\xf5\x2a\x46\x27\x84\x48\xed\x28\x18\xc9\x2b\x84\x54\x9b\xf1\xd1\x5f\xc9\x28\x8a\x45\x6d\xe3\xd2\x22\x75\x8a\xe5\x6d\x42\xc2\xf2\xb1\x32\x2f\xa2\x77\x30\xc0\xbe\x53\x80\x24\x98\xab\xce\xce\x10\xa3\xa0\xe9\x9c\x91\x22\x0a\xd4\xa0\x0c\x98\x94\xac\xed\x4c\x8b\x2d\xa0\x71\x4e\x45\xe6\x7b\xe1\x5d\xfd\x3b\x51\xdd\xce\x75\x44\xd6\xa0\xfc\x26\x9f\x41\xff\x4f\xf5\x5f\xc7\xf0\x7f\x92\xff\x1c\x15\x9f\x2e\x4d\x79\xb7\x22\x3e\x29\x31\x8c\xf8\x93\x24\x94\x34\x54\xc6\x50\x1b\x52\xf4\x73\x61\x4e\xd2\x81\x96\x02\x42\x38\x0c\xd2\x11\x62\xdd\xe4\x30\x91\x76\xd6\xae\x2c\x53\xe5\xde\x3c\x46\xc1\x34\x37\x6d\x21\x93\xa1\x3e\xe8\x06\xd1\xbb\x74\x27\x64\x04\xf8\xdc\x12\x9c\xe0\x10\xa5\x7b\x5e\xea\xb0\x6d\x92\xec\xf2\x4e\x51\x24\xa3\x50\x11\xb4\x79\xc9\x4e\x29\x4e\x6a\xf1\x55\xac\xda\x1b\x44\xf1\xf0\xee\x2a\x89\x6d\xca\x46\xc8\xf2\x4b\xd5\x1a\x49\xb1\x3a\x58\xad\xb8\x00\xe7\x5a\x79\xc5\xdd\x36\x8a\xc5\xd6\x3f\xe7\xd6\x59\xe3\x01\x9f\x7b\xd3\x9d\x6b\xdb\x3d\xd2\x6d\xa7\x1f\xab\x77\x5f\xe3\xfe\xfb\x5e\xdb\x51\x22\x70\xc3\x99\x2c\x8c\x1d\x98\x46\x21\xa6\x16\xcf\x90\x04\x01\x99\xf1\x7d\x2b\x31\x8b\x6a\xb2\x9b\x16\x51\xd3\x0b\x48\xc9\x8b\xf0\x66\xf9\x72\xe2\xc3\x70\x54\xe5\x9f\xfa\x7e\xc4\xe4\x39\xc4\x01\xf2\xb9\x9e\xd1\x05\xa6\xa5\xb8\x5c\xa5\x96\xaf\x54\xaa\xdc\x22\x91\x49\x6f\x2a\x5e\xd3\xcf\x22\x38\x65\xda\x23\x0c\x01\xba\xc5\x11\x3f\x5c\xca\x37\xbf\x35\xa1\x79\x83\x3c\x42\x5b\x49\x4c\x0b\xae\x1f\xe6\xae\xae\xf4\xfe\xca\xe8\x84\x95\x3e\xbc\x25\x94\x77\xd6\xce\x39\x2f\x4e\x0e\x93\x07\x3c\xe2\x97\x90\xc6\xf2\x34\x42\xf5\x52\x13\xd6\x58\x65\xaf\xd2\x4a\x69\xd5\x67\xb6\xeb\xd7\xf7\x58\x2d\x15\xd6\x73\x74\xa1\x14\x59\x51\x94\xaa\xcb\x1d\xe6\x49\x4d\xea\xfb\x3a\x13\x18\xc2\x91\x90\x19\xa7\x45\xd9\xc3\xca\xf9\x6d\x44\x4b\x6a\xf3\xbe\xc4\xff\x19\xc3\xcc\xb0\xef\x24\x26\x5b\x95\x7a\xe1\xcb\x3c\x1b\x92\x5a\xf1\x63\x18\x01\x18\x04\x7a\x60\xf2\x92\x2e\xfb\xcc\x61\x48\x39\x07\x75\x9e\xef\xd3\x74\xde\x96\x9a\xb1\x6e\xa1\x71\xe7\xc7\xa7\xd2\x1b\xaa\xf6\x82\xcf\x73\x79\xbd\x84\x1c\x6d\x5b\xb3\xd1\xb0\x40\xd4\x40\x7c\x14\x79\x14\x4f\x93\xea\x58\x96\xf1\x17\x26\x96\xe4\x5b\xb2\x71\x9b\xb6\xe8\xa6\x58\x84\xf7\x9c\x9b\xdd\x5a\x7f\x8d\x79\xd7\xae\xa9\xf5\xba\x19\xca\x58\x4b\x91\x66\x7d\x17\xf4\xa0\x1a\xbb\xf0\x31\xd9\x28\xdb\xfa\x5e\x9b\xc6\xd1\xaf\x29\x95\xd9\x12\xcb\xb9\xfe\xca\x63\x39\x2e\x6c\xe5\x94\xb6\xf4\x64\xdf\x8c\x3a\x53\xc8\x18\xa2\xf7\xe1\xc6\xfe\xf4\xf3\xed\xd1\xee\xc5\x6f\xf6\xc9\x05\xd1\xcd\xa8\xb0\xe4\xb4\x01\xa8\x5f\xc6\x48\xe1\xc4\xf5\xd4\x17\x33\xec\xb3\xb1\xf6\xf9\x76\x12\x88\x34\xdc\x31\x63\xd3\xc3\xad\xad\xd9\x6c\xd6\x9d\xed\x08\x9f\xd7\x76\xaf\xd7\xe3\x2c\xa9\xfe\x51\xbc\xbb\xa5\x1a\x52\x99\xb2\x8e\xeb\xf4\xbb\xfd\x82\xc2\x48\x54\x0d\x1a\x16\x6c\x5a\x35\xeb\x09\xf0\x2b\x17\xf5\x1c\xf9\x98\xab\x6c\x1f\xc3\x11\x09\x61\xd0\x89\x18\xc5\x53\xd4\x49\xf6\x67\xf5\xe8\xdb\x10\x8b\x70\x9e\x38\x42\xf4\x72\x0a\x3d\xf4\x3a\x7c\x1b\xa1\xc2\x70\xfb\xbd\x22\x43\xe4\x37\x06\x0f\x3f\x9e\x28\x77\x1d\xe7\x4e\x80\xc3\xeb\x43\xe5\x22\xf4\x21\x83\x87\xe2\x57\xce\x96\x9f\x6f\x27\xc1\x5f\x06\x30\x42\xfb\xbb\xee\xc5\xe9\xf9\xf6\xef\x77\x4f\x77\x07\xbf\xdd\xc6\xde\xe7\x5e\x08\x4f\xdf\xf4\xbc\x13\x72\xf3\x6a\xc7\xdf\xf1\xef\xf6\x76\xce\xee\xf6\x6e\xbc\x89\x77\x73\xf6\xe9\x68\x76\x76\xfc\xf8\xb3\x3f\xf1\xc2\x17\xa7\xfe\xf4\xf7\xd3\x37\xe4\xe2\xd2\xbb\x3d\x3b\xf6\x46\xf0\x97\x77\xd3\xdf\xb7\xc7\x3d\xf5\xf9\xe7\x63\x7c\x34\xba\x38\x7d\x19\xbc\xdf\xf9\x75\xe4\x6f\x07\xd7\xfe\x2f\xa3\xc7\x2f\x3f\x3f\x9b\xbd\xbc\x7b\x4a\x7e\xff\x2d\x08\xe1\xe9\xaf\xc9\xe7\x09\xfc\xed\x36\xba\xb8\xf4\x77\xe0\x2f\x41\xef\xf7\x4b\xef\xe6\x62\x44\x46\x2f\x4e\x6e\x67\xef\xff\xf9\x86\xbc\xf8\xe5\xd7\xc7\x2f\x7b\x3d\x76\x76\x39\xbb\x7d\xf1\xcb\xec\xee\xd5\x71\xef\x8e\xb7\xfd\xe2\x38\xfb\xdf\xd5\xd5\x51\x74\x76\x75\x34\x1a\x9c\x3c\x9b\xbd\x3a\xee\xdd\x9e\x1d\x91\xdc\xef\x2f\x9e\xf5\xf6\x5e\x9d\x3c\x4b\xdf\x7f\x79\xf7\xf4\xb3\x7f\xfa\xf2\x06\x6e\xbf\x7d\xfc\x72\xfb\x65\xf4\xfe\xb7\x73\xaa\x7d\xc7\x32\x7a\xcf\xc2\x57\x9f\x77\xff\x71\x21\xc7\xfc\xb3\x51\x94\xfa\x8f\x1f\x3f\xde\x12\x8c\x4e\x98\xae\x89\xe7\x9d\x41\x74\xeb\xe6\xf2\x20\x2f\x74\x79\x37\x47\x9d\xba\x59\x44\xd7\x68\x6a\xa3\x56\xd1\x50\x18\x46\x43\x42\x27\xd1\x16\xa4\x14\xde\xe9\x2a\x86\xef\x2d\x03\x44\x3b\x5c\xc6\x3a\x22\x48\xb0\x33\xa4\x70\x24\x96\x7b\xf9\x45\x5d\x21\xb9\x6c\x21\x95\xc4\x92\xbf\x1a\x28\x4e\xa8\xe9\xcc\x4d\x7a\xa1\x85\x7b\x1c\xc3\x22\xd4\xaf\x8d\xee\x98\xe1\x20\xda\x12\x9a\x1d\x45\x5b\x70\x10\x31\x0a\x3d\xd6\x09\xc8\x68\x94\x0f\x2b\x72\x9d\x70\x3a\x39\xfc\x23\x46\xf4\x4e\x68\x48\x71\x45\xb5\x18\x8d\x3f\x14\xb7\xac\x33\x7c\x8b\xc3\xae\x47\x91\xd8\xad\x62\x1a\x1c\x3a\x8e\x2b\x81\x37\x0e\xe5\x13\x1e\x99\x4c\x63\x86\xfc\x8d\xb4\xe7\xcd\x2f\x14\xb1\x98\x86\x5f\xbe\x7e\xdd\x74\x03\x32\x7a\x8e\x98\x37\x3e\xd4\x7e\xfe\xea\xa2\xd0\x7f\x3d\x1c\x46\x88\x1d\x0a\x9b\x8f\x88\xbf\x2f\x8c\xcd\x3a\xe9\xb3\x8e\xab\xb5\x71\x03\x29\x40\x4f\x44\x72\xe3\x08\x31\xfd\xa9\xcd\x1f\x64\xf7\x00\xfd\xfd\x0b\xa1\x78\x84\xc3\x43\x19\x4d\xea\xa8\x7e\x0e\xd1\xd7\xc3\xf4\x17\x14\xfa\xe9\xf7\x7b\x68\x97\x93\x9c\x5d\x11\x9a\x29\x32\x0f\x74\x18\x07\xc1\x5b\x1a\x94\xc8\x8f\x69\xe0\xb8\x09\x56\x89\xeb\xe8\x43\xe5\x87\xe5\x42\x5f\xa6\x31\x26\x53\xd2\x95\x93\x8c\x87\x77\x1b\xb2\x13\x18\x45\x78\x14\x6e\x7c\xf9\xea\x66\x7c\x50\x1d\x6d\x6a\x5f\xe5\xba\xd4\x7f\x28\x75\xbe\xb9\x99\x32\x2f\x7b\x8a\x0f\x60\xf3\x67\xe7\xef\xce\xcf\x88\xab\x37\x0b\x91\xcd\x03\x7e\xaf\xd2\xa2\x52\x0d\xa0\x5b\x86\x42\x7f\xe3\x4b\xd6\xb3\x94\x2b\xd1\xbd\xfc\x33\x8f\x7c\x5f\x98\xa5\x2e\x0c\x30\x8c\x36\x34\x84\x33\x51\x38\x43\x94\x45\xe8\x16\x30\xf3\x37\x5d\x0d\xf2\x7f\x9e\x76\x8e\x2f\xde\x3a\x9b\xee\x44\xb4\xf6\x36\x42\x7e\xb1\x0d\x8a\xa0\xff\x3a\x0c\xee\x36\x84\xe1\x17\x75\xdf\x20\x99\xc5\xf2\x56\x24\xce\x4a\x2a\x2e\xe5\x2f\x97\x97\xce\xa6\xeb\x4d\x63\x43\x33\xe6\xb7\x8f\xa7\xb1\x7c\xf5\x8a\x30\x18\x5c\x61\xef\x3a\x2f\x71\x6a\xf2\xcf\x20\x1b\x77\x87\x01\x21\x74\x23\x93\x03\xdb\xf6\x36\xff\xfd\xef\x1e\x97\x92\x29\xa2\x1e\x0a\x99\x91\xe1\x1b\xc5\x4a\x04\xae\x93\x31\xa4\x76\x9d\x6b\x8f\x6d\x6e\xf5\x7b\xdb\xbb\xe2\xff\xb8\x4c\x7b\xa4\x38\x61\xa9\x48\xff\xf4\x13\xfa\x3b\xda\x62\x87\xbd\x8c\xba\xf2\x1c\x6e\xe4\x4a\x3a\xb8\x8e\x62\x6f\x2d\x51\xc9\x33\x9b\x46\x3a\xc4\x84\x9b\x88\xb0\x59\x4c\x01\x19\x35\xe8\xfc\x64\x23\xf3\x48\x28\xd3\xa4\xbc\x3b\xe1\x90\x36\x36\x27\xf1\x78\xd2\xcd\xa4\xea\xb1\x29\x09\x82\xe4\xa1\xfc\x9e\xe2\x86\x2e\x74\xa3\xb9\x96\xee\x90\xef\x03\xcf\x21\x0e\x62\x8a\x9e\xdc\x10\xec\x83\x9e\x8b\xba\xb2\x97\x27\xf9\x3e\x52\x49\x2c\xcc\x0d\xff\xb1\x2c\xae\x24\xdd\xa0\xd2\xdd\x26\xec\x7a\x30\x08\x84\xf4\x6e\x26\xfb\x55\x3a\x33\x6c\xd3\xe5\x3b\x59\xfa\x19\x89\x99\xf8\xfa\x03\x9f\x56\xfa\xa4\x40\xa8\xae\xaf\x54\x7f\x65\x0a\x24\x99\xaf\xc4\x50\xba\x33\x48\xc3\x0d\xe7\xd5\xeb\x5f\xc0\xf3\x67\x57\xc7\xa7\x87\xe0\x98\xc4\x81\x1f\xfe\x99\x01\x8f\x84\x21\xf2\xc4\xc5\x9d\xf3\x33\xda\xfc\xfa\xd5\x25\x46\x45\x26\xbf\x7b\x76\x83\x42\x86\x7c\x77\x79\xdb\x2e\x8e\x2e\xc5\xfc\xe3\x70\x54\xa1\xb9\x02\x32\x92\x8f\x20\xda\xe5\x42\xd0\xc5\xd1\x9b\x38\x0c\xb9\x9c\x89\x46\x2f\x08\x0e\x19\xa2\x52\xa7\x6a\x0f\xcb\x2f\xc6\x08\xfa\x9c\x52\x06\xb1\xa0\x98\xc4\x6c\x1a\xb3\xd2\x02\xcb\xda\x11\x77\x9d\x50\xb8\x45\x21\x0e\x0c\xaa\x48\xfe\xfc\xe4\x89\xb6\xac\xb4\xb7\x37\xff\x9e\x7d\x2d\x1e\xdc\xcc\x26\x55\xb6\xc8\x57\x18\x0e\x31\x3b\x34\xae\xde\x1f\xc4\xd3\xff\x13\xc5\x53\x44\x37\x36\xc5\xfc\x67\x0b\x38\x0b\x2b\x28\x6d\xe2\x09\x77\x9d\xcd\x1f\x58\x77\x46\x31\xd3\xc4\x84\xc9\x0e\xc2\x27\x48\x27\xe3\x67\xf6\x43\xd8\x95\x79\x27\x7f\xdb\x43\xbb\x3f\xfd\xb4\x11\x3e\x09\xbb\x51\xcc\xad\xbb\x8d\xe4\x97\xce\x1e\xda\xdd\xe4\x2b\x25\x4a\x5f\x74\x43\xfe\x99\x51\xcc\x25\x6b\xc3\x61\xd8\xbb\x76\x5c\xb6\xf9\xd5\x85\xa9\x55\x80\xa3\x4b\x59\x49\x0f\xf9\x92\x1d\x91\xe2\x52\x32\x37\x8e\xf6\xb0\x5a\x28\x6c\x53\x71\xaa\xfc\x6c\x64\x78\xf6\xab\xeb\xa3\x88\x51\x72\xa7\xb3\x51\xbe\xcf\xc8\x74\x43\xd9\x14\x09\x1f\xbf\xba\x23\xc2\xc8\x29\x97\x85\x8d\x9e\x2b\xb7\xc0\xcd\x0d\x8a\x46\x28\x44\x02\x6b\xe3\x4d\x1c\x32\x3c\x41\xdd\x09\xa4\xd7\xa9\xfc\x02\xa4\xa6\x46\x28\x18\x97\x24\x0a\xd3\xf0\xde\x8c\xc2\xe9\x86\xbe\x2e\x87\x84\x6e\xfc\xe5\x2f\x9b\xd1\x0c\x33\x6f\xbc\x81\xba\x53\x8a\x6e\x9e\xa0\x6e\x88\x6e\xd9\xe6\x17\x0f\x46\x08\xf4\x0e\x55\x73\x61\x5e\x92\xd4\x34\xba\xb0\xd9\xcc\x32\xd8\x58\x5f\xa6\x01\xc4\xe1\xe1\x8f\x3d\xd7\x6c\x68\xf6\xbe\x6e\x6e\xba\xd1\x13\x93\x2d\x05\x5d\x9d\x7f\x92\xd6\x27\xfb\x6e\xb8\x11\x6d\x76\xd9\x18\x85\x1b\x06\xbd\x83\xba\x0c\xdd\x32\xce\x60\xba\x11\x6d\x6e\xfe\x20\x46\xb6\x7f\xb8\x41\x9e\x70\x91\x09\xd9\xe6\x4f\x3f\x91\xbc\x90\x91\x27\x24\x11\xb2\x9e\xcb\xa5\xcb\x25\x3f\x3f\xf9\xf3\xbf\xc2\x7f\x85\x9d\xf4\x3f\x70\xf5\xe6\xed\xf9\xf1\xd1\xd5\xb3\x93\x43\x20\x40\x9c\x81\x14\x3d\x0d\x41\x04\x81\x01\x61\x8c\x4c\x00\x19\x8a\x4f\x01\x19\x81\xac\x81\x3f\xab\xf9\x8f\xd2\x65\xe8\x12\xfd\xab\xf2\x72\x57\xa4\xf7\x7b\x87\xfc\x5f\x61\x83\x1f\xa6\x63\x94\x2c\xf9\xfa\xd5\x45\xa2\x8d\x4d\xce\x43\x59\xc1\x19\x07\xff\x7d\x02\x55\x3c\x9f\xac\x43\xa0\x12\x79\xd2\xe6\x50\x2a\xa3\xea\x69\x95\x5a\x4e\x36\xf0\xd8\x76\x56\xc5\x62\xc9\x76\xa4\xf2\xb6\x5a\xdb\x99\x9b\xe3\x7b\xaa\xc0\x36\xbb\xa2\x59\x3e\x28\xde\x67\x49\x63\x19\x5f\x90\xb4\xe9\xc7\x5f\xd2\x6c\x9a\xe9\x46\x92\xc1\xb1\x60\x65\x8f\x95\x8e\xf7\x75\x76\x60\xd9\x12\x5b\xfa\x11\x2a\x4c\x7e\x75\xbf\x08\x6e\xdf\xc0\xe0\xb0\x8f\x76\xe4\x54\x55\xcd\x90\x94\x61\x12\x04\xce\x66\x37\xc0\xe1\x35\xf2\x37\x36\xbb\x2a\x28\xd8\x34\x0f\x55\xef\x7a\x30\xf4\x50\x70\x14\x04\xfc\x25\xfe\x1d\x5f\xee\xac\xfd\x72\x8f\x5c\xea\x12\x37\x70\xb1\x1b\xbb\xfe\xb2\x97\x7d\x68\x34\x10\x12\x66\xe5\x8c\x03\x37\x7a\x12\x76\x93\x5f\x5c\xfa\x24\xec\x26\xbf\x29\xfd\x97\x2c\x0f\xa2\xad\x68\xe5\x47\x70\xd2\x35\xbc\xe7\xd2\x0d\x52\xb3\x86\xbf\xba\x1b\x3d\x17\xe6\x8c\xd6\xcd\x0d\x92\xac\xe6\xbd\x43\x3c\xdc\x08\x92\x0d\xe2\x8b\x6a\xf3\xe0\x87\x01\x45\xf0\xfa\x6b\xba\x3c\xe1\x80\xc6\x53\x71\x66\x11\x56\x97\x7a\xf9\x20\x5b\xbf\xe2\xb5\x7e\xcf\x0d\x94\xca\x48\x35\xb8\x7c\x62\x03\x67\x7b\xd0\x46\xfc\x04\x77\x29\x12\x81\x7d\x1b\x5b\xff\xfa\xfa\xaf\x2f\x5b\x23\xd7\xf9\xfa\xaf\xf0\x0b\x5f\x6b\xd3\x00\xb3\x0d\xe7\x5f\xa1\xb3\xe9\x6e\xf8\x4f\xe2\xee\xa4\x30\x07\xaa\xc7\x97\x97\xaf\xcf\xbb\x53\x48\x23\x24\xcc\xf3\xee\x10\x07\x0c\x51\xd3\x93\xdc\xf2\xfc\xf1\x09\xea\x9e\x40\x06\x7f\xfa\x29\xf9\x24\x9d\x41\x5f\x37\x37\xd5\x86\xf8\xd3\x4f\x1b\x7e\x77\x48\xe8\x33\xe8\x8d\xcd\xaa\x90\xbf\xff\x44\x45\xd4\x42\x46\x06\x1b\xf2\x2b\x6e\x41\x66\x7a\x48\x73\x46\xf9\x1f\xfc\xc4\x6e\xeb\x7f\x54\xfd\xe9\x4a\x49\xd8\x85\xce\xe6\x86\xcf\x87\xf8\xf4\x6e\x43\xa4\xb1\x3b\x9b\xdd\x4f\x04\x87\x1b\x8e\xb3\xb9\xb9\x99\x4e\x71\x7f\xd7\x95\x92\x8e\x27\x88\xc4\x6c\x73\x23\x4a\xf8\xbb\x7b\x98\x3c\x22\x67\x4c\x7d\xbd\x6f\xa9\x62\x6d\x4e\x98\x53\x4a\x26\x38\x42\x1d\x22\x14\xc1\xca\x9d\x35\x17\x94\xdc\xde\xe5\x0f\x3a\x17\x92\x02\xf1\x8b\x70\x38\x5a\x50\x2d\x8f\xc0\x89\x45\xbe\x2c\x9a\xd5\x11\xc0\xe8\x5c\xc2\xd1\xaf\xbc\x4f\xe5\x13\xfc\xb1\xe7\x8a\xd7\xa4\x7b\x49\x6c\x1d\x7f\x4c\x9f\xc6\x38\xf0\x73\x87\xd9\x4c\xd9\xa5\x67\x54\xf5\x1a\xe2\x27\x4e\xcd\x25\xdc\x3c\xe4\xc2\xd9\x7d\xce\x1d\x47\xe4\xd5\xfa\xc8\x23\x7e\xdd\x76\xb3\xe0\xbe\x34\x8f\x87\x40\x1d\xbf\xcb\xfb\x44\xde\xa5\x8d\x87\x1b\x47\x94\xc2\xbb\x2e\x8e\xc4\xbf\x1b\x68\x73\x33\x59\x02\x3f\xe0\xe1\xc6\xa5\xb8\x3a\xed\x62\x86\x14\xae\x5f\x08\x24\x25\xda\x83\xf9\x16\xe5\x71\xed\xc3\x47\x17\x3e\xf9\xb1\xe7\x46\x4f\x7e\xec\xbb\x54\xf9\x27\x7e\x60\xf4\x4e\xec\x0a\xfc\x19\xe2\x06\x4f\xd0\x87\x42\xfb\x1f\x37\x36\xff\xf2\xe3\x06\x7c\xb2\x41\x9e\x04\x62\xa5\x6e\x6c\x6e\x76\x7d\x12\x22\xae\x08\xc3\xee\x34\x8e\xc6\x1b\x44\x06\x0a\x6f\xba\x3f\xb2\x7f\xff\x3b\x39\xec\xfd\xf8\xe4\x09\xdb\xfc\x0b\xef\x72\xf3\x2f\x5f\x3d\x28\x36\x9c\xcd\x2f\x11\x27\x81\x3e\x41\x5f\x87\x38\x84\x41\x70\xf7\x85\x13\xf0\x23\xfc\xe9\xa7\xa0\x2b\x69\xcf\xfe\xda\xd8\x4c\x1f\xc2\xc3\x8d\x68\x93\x8d\x29\x99\x01\xfa\x35\x51\xea\xe1\x57\x31\xbc\x1f\xe4\xf7\x21\x9a\x81\xab\xbb\x29\x7a\x46\x29\xa1\x1b\x8e\x0a\x7a\x04\x90\x31\x34\x99\xaa\x50\xe2\x88\xd1\xd8\x13\xb9\x36\x21\x09\x3b\x62\x84\x83\x00\x89\xb4\x01\xbe\x33\x3b\x9b\x5f\xbf\x6e\x94\xaf\x08\xf2\xcb\x04\x66\x06\x04\x15\x99\x74\xd2\x33\xd0\xde\xa7\x2e\x43\x47\xb9\x64\x7c\xdd\xb4\x37\x3f\x6a\xac\x8e\xa2\xd3\x4e\x92\xa7\x5d\x17\xfc\xf4\x13\x52\x26\xc8\x86\xae\xc7\x97\x6a\x9c\x30\x17\x66\xa6\x89\xf4\x41\xac\xe6\x58\xc2\x8c\x26\x05\x34\x1f\x56\x08\x97\xf9\xe0\xc9\xff\x47\xdd\xf5\x35\xb7\x8d\x1b\xf1\x77\x7f\x0a\x0b\xd3\xca\xc0\x09\xa2\x45\x39\xb5\x67\x98\x62\xd4\xcc\xb5\x99\x3e\x5c\xee\x3a\x49\xa6\xf7\xc0\xf2\x01\x11\xd7\x36\x27\x24\xa8\x12\xe0\x25\xaa\xa4\x8f\xd5\x2f\xd0\x4f\xd6\xc1\x1f\x92\xa0\x44\xe9\x54\xe7\x9c\xde\xbd\x49\x20\x17\x58\x2c\x16\x8b\xdf\x2e\x16\x20\x42\x34\x63\x5a\x51\x3a\x14\xe8\x56\x9f\x3b\xca\xb1\x3a\xe5\x47\x7c\x28\xd3\xb5\xae\xf6\xad\x11\xaa\x16\x11\x9e\x51\xb9\x07\x4a\x54\x03\x4a\xee\x34\x28\xa9\xf7\x41\x49\x38\x3b\x0f\x95\x84\x33\x2f\x76\xe1\x46\x91\xd6\xcd\xc3\x50\xd7\x5d\x76\x95\xde\xee\x57\xda\xac\xb8\xb5\x89\xb4\xe3\x81\x5e\xd9\x45\x00\xec\xac\xa5\x82\x81\x99\xd0\xda\xb8\x94\x4c\xd0\x69\x38\x62\x0c\xe7\x13\x96\x05\xd6\x8c\x62\x45\x37\xd6\x36\x1b\x3b\x46\xec\xa5\x64\x3f\xdc\x63\xb4\x43\xc4\xd6\xc6\x59\x1e\x98\xdc\x56\x7c\x8d\x83\x6f\xfe\xb1\x23\x38\xf8\x86\xfc\xee\x5a\x23\xc4\x0a\x73\x7a\x43\x68\xcd\x64\x1c\x26\x74\xc9\x64\x3c\x4f\x2e\x72\xb6\x34\xe6\xb0\x60\xf5\x39\x48\xea\xcb\x41\x94\xc5\x3a\x3b\x72\x51\x74\x78\xa9\x78\x32\x5e\x4a\x0f\xc0\x52\x11\x17\x03\x60\x29\xed\x23\xa5\xe2\x28\x52\xd2\xbe\xd9\x3e\x20\x7a\x2a\x22\x0a\x2a\x28\x57\x20\xcc\xe7\x19\xf5\xaa\xde\x46\xcf\xa2\xd1\xc8\x75\x47\x6b\xb1\x36\x7d\xd6\x47\x1c\x8f\x47\x07\x66\xe4\x7a\x59\x0a\x6b\x2e\xcb\xea\x3a\x0b\x14\x48\x85\x1d\xf1\x5f\xdf\xbf\xf9\xee\x2f\xb9\x49\xd8\x21\x54\x31\x14\x5b\x60\x75\xf9\x8e\xdf\xf3\x2a\x7b\x0b\x45\xa9\xe0\x7b\x2f\x5d\x3c\x41\x8c\x31\xdc\x34\x2d\xcd\x5b\xdb\xad\x5d\x7f\x46\x8c\xf5\xca\xc7\xe3\xde\x5f\xb3\xbc\xf8\x75\x91\x40\x95\xef\x4c\xb4\x01\x77\x76\x6d\xbb\x55\x3b\x7c\x16\x14\xec\x63\x83\x67\x00\x82\x8e\xfb\xf7\xf0\x59\xfd\xd9\x36\xb3\xdd\xee\x3b\xe8\xb6\x7d\xb6\x6f\xf7\xec\xa4\x44\x88\x0a\x76\xf3\x52\xfc\x11\x82\x0f\x6b\x05\xdf\x19\x95\x7a\x29\x26\x13\xa2\x26\xcc\xf6\x3c\xb8\xaf\xca\xe2\xdb\x47\x5e\x7d\xab\xe7\x26\xc4\x22\xe9\x36\x5f\x76\xbb\x13\x42\x28\x53\x90\xd3\xfb\xb2\x9a\x9a\xcb\x7f\x9f\xa5\xff\x87\x56\x26\x86\x40\x37\x9c\xb4\xa3\x15\x98\xd6\xa5\x5e\x8c\xec\xaf\xc1\x59\xa8\x2c\xb2\xd0\x2a\xce\x55\x2d\x8d\x93\x12\xb8\xef\x81\x62\x12\xd4\x22\xfb\x27\x3e\x66\x16\x90\xdd\xc9\x3d\x2e\x09\x63\xb5\xfb\x00\xd3\x15\x75\x6f\x2e\x4b\x71\x9f\x3d\x5c\x83\xf8\x29\xab\x4a\x31\x90\x20\x41\xc5\x13\x21\x20\x67\x68\x55\x95\x69\x6d\xd3\x6b\x47\x8c\xb5\xab\x51\xe0\xb5\x36\x1e\xb7\xc5\x71\x03\x7f\xf3\x6c\x5a\x64\xf6\xcc\xe5\x78\x3c\x0a\x7d\xd2\xa1\x77\x02\x10\x7a\x92\xa7\x54\x3a\x24\xa3\x67\x71\x26\x1e\xb6\x5b\xbe\x68\x83\x77\x91\x53\x59\x23\x80\xed\xb6\x2d\xf7\x60\x90\x3c\x21\x49\x73\xc0\x78\x9a\xd6\x55\xf3\x71\x3b\x4f\xa6\x45\xf9\x4b\xe7\x95\x1c\x98\x29\x5e\x3d\xd4\x26\xa3\xa5\x09\x0b\xcf\xc6\xe3\xd6\xb2\xb4\x0f\xe3\x59\xb2\xf0\xff\x44\x33\xca\x0f\x49\xc3\x41\xd2\xd0\x27\x0d\x93\x08\x09\x89\xa8\x64\x9b\xdd\x85\xfe\xc5\x18\xe3\x0b\x2c\x03\xc1\x45\x29\x61\x59\x8a\x54\x32\xf8\xbd\x09\x28\x05\x45\xb6\xac\xda\x42\x6f\xc7\x59\x3f\xbf\xbd\x0e\xe1\x86\x50\xe8\x95\x5f\x87\x70\x4b\x48\x84\x8a\xc2\x56\x3c\x1e\xe3\xbd\x5a\x6c\xd5\x07\x54\x37\xa4\x71\x2e\xb8\xe1\x6a\x64\x88\x4d\x3d\xfa\xe7\x76\x8b\x2b\x86\x0a\x89\xec\x5b\xa5\x17\xb9\x6d\x06\x0e\x03\xad\xc8\x85\x70\x0b\xa8\x5e\xa2\x32\xf1\xc6\x0e\x1f\x69\x16\x2d\x93\x96\x4d\x06\x67\xab\x8c\x21\x61\x65\x0c\x89\x36\xc3\xa6\x91\x9c\x89\xa0\x82\xb4\x5e\x02\x3e\x70\x6f\x64\xac\x02\x5d\x59\xd2\xb8\x26\x6d\x01\xe5\xcc\x68\xf5\x78\xac\x82\x55\x5e\x57\x3c\xcf\xfe\xa5\x55\x78\xa1\x02\x59\xdf\xdf\x67\x9f\xdb\x52\xc0\x24\x6a\x0a\x2f\xc0\x1a\x0b\x31\xc1\x7b\x64\xe8\x12\x45\x08\x91\x09\x27\xbb\x2e\x9a\x14\x27\x44\x43\x9d\xdc\x8d\x7b\xe3\x33\xe5\x6e\x39\xbe\x74\x62\xca\x98\x16\x87\x48\x75\xd7\x6d\x3b\x88\x72\x8d\x63\xb2\x7e\x1b\xbc\xc7\x13\x77\x76\x0e\xcd\xd0\x04\x67\xc3\xdc\xd4\x76\x27\x56\xb0\x78\x23\x4c\xea\xdd\x1a\x78\xa5\xb5\xca\xb4\x62\xff\x22\xda\x0c\x80\xf6\xc4\xfd\x6a\xf4\x9c\xa0\x8e\xb0\x28\x85\x7a\xf4\x28\xcd\xff\xf3\x48\x53\xbe\xf6\x08\x53\xbe\x3e\x8f\xec\xb1\xac\x7d\x56\x4f\x36\x16\x76\x7c\x66\xa2\x56\xe0\x33\x7a\x1e\x9d\xd3\xfb\x8e\x4e\x9e\xdb\x5e\x9e\x67\x07\xc4\xc5\xd9\xd4\xdd\x94\xeb\xa8\xff\xf3\xef\x1e\x79\x78\x94\xdc\xb3\x05\x1d\xb5\xf8\x19\xe2\xe4\xb8\x8d\xcd\x56\xd3\x15\xaf\x9e\x29\xcd\x68\xc0\x2d\x58\x40\x03\xbd\x23\x44\xa2\xb8\x5d\xb9\x67\x8c\x31\xe5\x26\xcd\x62\xe3\xae\xf8\x8c\x80\x6a\x8e\x22\x6b\x39\x77\xd1\x7c\xf0\x25\x15\xcf\x12\xfb\x9e\x8a\xc3\x64\x17\x81\xdd\xc3\x90\x3f\x66\xea\x11\xa3\x18\x11\xef\xd5\x40\xe6\xd9\x12\x8c\xef\xd9\x00\xea\x06\x29\x47\x88\x34\xb5\x74\x0f\x93\x5d\x74\x84\x99\x13\x08\xc0\x1c\x67\x5c\x7f\x25\x20\xb4\x1f\x94\x31\x1e\xa1\x3b\x70\x9e\x43\xf5\xba\xac\x30\xe2\xab\x55\xee\x30\xae\x76\x7d\x8c\x77\x61\x99\x53\xe4\x8c\x8e\xb4\x97\x1c\xef\xe5\xd2\x9c\x46\x80\xcf\xb1\x32\x0f\xf4\x57\x18\xab\x3f\x32\x43\xea\xde\x27\x58\x68\x37\x72\x99\xd7\x29\x48\x8c\x5e\xcc\x6e\x10\x71\x01\x1e\x71\xe1\xf2\x03\xfc\x9b\x9f\xe9\x68\x76\x52\x0c\xab\x76\xab\xe2\xda\x7c\xf4\x78\x5a\xd7\x59\xfa\xb5\x06\xf6\x20\x87\xe7\x44\x1c\x07\x5a\xbf\x76\x8a\x48\x3c\x4b\x4e\xe2\x54\xbf\x57\x6a\x9d\x43\x9b\x11\xf5\xff\xef\x57\x3f\x95\x04\x03\xa1\x82\x21\xe4\x25\x81\x61\xc1\x1c\x37\x1f\x61\x2d\xb1\x22\x03\x70\x40\x34\xc1\x03\x15\x0b\xcf\x41\x70\x8b\x39\x8a\xd0\x04\x23\x7b\xb5\x2a\x62\x4c\xad\x57\x50\xde\x5f\xf2\x05\x0f\x54\xf9\x3a\xfb\x0c\x29\x9e\x93\x09\x5a\x7d\x46\x11\x27\x84\xda\x85\xdd\x19\x8a\x97\x88\x10\x2a\x82\x47\x55\xe4\xef\xf8\x3d\x18\xe7\xf0\x3c\x31\xd7\xc5\x94\x3f\x3c\x54\xf0\x70\x80\x67\x9f\x41\xd2\x7a\xce\x1d\x91\xf5\x04\x05\x7f\x02\xbe\x7c\x0c\xd0\x64\x28\x23\xcc\xd7\x27\x0b\xcf\x06\x05\xdc\xd5\x0f\x13\xb5\xa3\xb3\xb3\xe5\xf0\x89\x1f\x78\x48\x67\x84\xe0\x3f\xf1\xec\x97\xf0\x92\x28\x04\xa6\x7d\x7b\xb4\x71\x40\x33\xff\x97\xc0\xa4\xc2\xd2\x6a\x59\xf5\x54\xc4\x3f\x87\x9b\xb3\x63\x98\x6a\x3f\x86\xa9\x6c\x0c\x53\xf5\x63\x98\xc8\xed\x45\x31\xc6\xb0\xe5\x80\x31\x26\x17\xa8\x16\x56\x48\x29\x8a\x38\x96\x84\x68\x0f\xc0\xf9\x6e\x7a\xb0\xa5\x39\x37\xd4\x04\x19\x4d\x20\xb0\xe7\xd8\x69\xb7\xd9\xc6\x8e\xee\xfa\x41\x41\xc7\xc5\x9c\xaa\x66\xcb\xd5\xd2\xbd\x7d\xf7\xf7\xbf\x05\x3c\xcf\x71\xec\xa7\xc1\x96\x95\xc1\xf9\x99\x48\xed\x08\x60\xa0\x92\x6e\x2a\xc8\x4b\x9e\x6a\xdc\xc4\x53\xbe\x52\x50\xfd\x60\x8e\x07\xca\x68\x63\x06\xcb\x05\xb2\x4d\xfe\x4a\x6b\xe4\x2b\x92\xb4\xdb\xb4\x0d\x6b\x73\x3f\xac\x75\x17\xf5\x39\xbc\xd3\x03\x3b\x63\x2a\xb0\x1b\x06\x73\xd2\x70\x1c\x86\xe6\x49\x1b\x03\x6d\xc9\x9a\x10\xaa\xa9\x14\xd1\xf0\xae\x91\xce\x7c\xaf\xea\x70\x4e\x0f\x3b\xe9\xba\xa2\x97\x60\x68\x42\xe0\xaf\x7b\x1d\xd7\x1c\xdc\x67\x22\x93\x8f\x38\x9c\x37\x75\x77\xbd\xe9\xc5\xe8\xee\x0e\x63\x74\xaa\x8b\xd1\xd9\x74\x13\x1a\xc7\x73\x7a\x47\xc3\x39\x0d\xff\x90\x24\x64\x47\x48\x90\x56\xe6\x8d\x4e\xed\x73\xfb\xe5\xdc\xc7\x6c\xf5\xc5\xca\xcf\xad\xf2\xcb\x5f\x91\xf2\x1f\xd7\xda\xdb\x41\xad\x0d\x1b\x1d\x78\x71\x86\xd6\x7a\x03\xca\x03\x2f\x86\x19\x98\x13\x30\xdf\xf3\x02\xb4\x9d\xd4\x9a\xec\x8b\x19\x73\x0a\x1a\x62\xec\xa9\xaf\x6c\xd5\xf7\x45\x3b\xe0\xbd\x11\xbf\xdd\xd3\xb1\xdb\xbe\xfa\x86\x9d\xfa\xce\x7c\xf5\x9d\x1d\x57\xdf\x5b\x72\xa8\xe2\x56\x0a\xe1\x69\xf5\x3d\xda\x5b\xab\xd4\x6f\x07\xfb\xec\x2b\x77\xd8\x45\xa0\x1d\xd3\xb3\x9f\x0b\x40\x0f\x29\x77\x48\x6f\x69\x18\xd2\xf0\xc5\xb0\x72\xbf\xca\xf3\x2f\xd6\xe9\x06\x35\x3c\x31\xf8\xf3\x5b\x53\x69\x6d\x88\x5f\xe5\x39\x86\xa7\xd9\x60\xfe\x1b\x52\xe2\x9e\x0d\x36\x7d\xfe\x7a\x1a\xda\xc4\x66\x9b\xb1\xef\x20\xa7\xdd\x11\x1f\x8f\xdd\xa9\xe5\xfd\x07\xed\x56\xf9\x62\x28\x2d\xc2\xbe\x09\xbb\x68\x68\x8f\x69\x3c\x3e\xd1\x1c\xf8\x33\x9a\x31\xd6\x96\x8f\x9a\xdf\xc1\xaa\x2a\x55\xa9\xc9\x16\x0d\x6f\x51\xdb\xe0\x71\x9c\x57\x41\x51\xfe\x04\xd3\xca\xdd\x1c\xf1\xec\x10\xb7\xc9\x3f\xb8\x50\x81\x86\xb4\x3d\x23\x74\xf8\x26\x67\x2a\xf8\x98\x89\xf4\xc2\x25\x17\x6c\x3e\xc2\x3a\x02\xaa\x8b\x22\x6e\x36\x79\x9c\x87\xb0\x31\xc7\x96\x37\x59\x1a\x29\xab\x50\x99\x39\xa0\xb2\x5e\x41\xa4\x86\x8d\x21\xad\xbc\xa6\x65\x74\x24\x42\xd9\x0c\x4e\x6c\x5c\x97\x84\xd9\x76\xd0\x23\x97\x6f\xb8\x58\x9b\x5c\x7d\xc3\xe0\x22\x4e\x6c\x6e\x8c\xf6\x3d\x36\x16\x59\x43\x50\x0b\x6b\x68\x0d\x7e\x50\xa7\xe0\xb6\x4b\x86\xfa\x5a\xde\x9c\x80\x4f\x97\x9e\xb1\x71\x39\x49\x9e\xa9\xd3\x50\x5d\x82\x7a\x6f\xd9\xf2\x33\x16\x04\x46\xae\xd4\x7c\x78\x62\x02\x13\x54\xc8\x4b\xf8\xbc\x04\x48\x21\x45\xda\xba\x5b\xcf\xe2\xf0\x63\x87\x4d\x57\x55\x0e\xe6\xfb\x48\x03\x1e\x45\x9e\x39\xbf\x76\xfa\x08\xf9\x0a\x2a\xb9\x4f\xf4\xc5\x61\x8a\xa3\x04\x4e\x5c\x88\x6e\x40\xd4\x85\x4d\x07\xd1\xd6\xf5\x01\x06\x93\x31\xda\x53\xad\xa7\xf6\x1a\x8d\x13\xf4\x6b\x19\xd3\x63\x23\xaa\x30\xfa\x91\x67\x0a\xd2\x66\x34\xbd\x41\x3c\xec\xd8\xc0\x5e\x18\x8d\x13\xdf\x2d\x55\xd5\xda\xed\xc8\x9c\xa6\x52\x2c\x2d\x97\x66\x29\x0e\x4c\x82\xdb\x3b\xc8\x41\xcf\x51\x7c\x55\x80\xe2\xb1\xe0\x05\x30\x74\x35\x81\xc9\x15\x4a\xae\x88\x9e\xd6\xaf\x94\xaa\xb2\x0f\xb5\x02\xdc\xde\xbb\x42\xa8\x60\x9b\x66\xfb\xca\x4b\x01\xa8\x05\xc8\x25\x5f\xd9\x13\x1d\xcd\x12\x3f\x2c\x70\x71\x5c\xe0\xc2\x25\x2b\x29\xb2\xe9\x32\x8b\x6c\x56\xd1\x95\x39\xe8\x64\x2e\xf2\x32\xb7\xee\xda\x1e\xda\xcb\x4c\x35\xff\x97\x8a\x3f\xd8\x7b\x0c\x75\x47\x2e\x5d\x47\x82\x2b\x23\xd5\xca\x1e\x33\x7a\x0f\x52\xc9\xed\xd6\x5d\x32\xec\x09\x99\xaf\x56\x88\xec\x9f\x4d\xd9\xec\xc8\xc5\x7f\x03\x00\x00\xff\xff\xae\xd6\x2c\xcd\xb8\x99\x05\x00") - -func distAssetsNomadUi86a6a48023a8c1c93c72271f1283550aJsBytes() ([]byte, error) { - return bindataRead( - _distAssetsNomadUi86a6a48023a8c1c93c72271f1283550aJs, - "dist/assets/nomad-ui-86a6a48023a8c1c93c72271f1283550a.js", - ) -} - -func distAssetsNomadUi86a6a48023a8c1c93c72271f1283550aJs() (*asset, error) { - bytes, err := distAssetsNomadUi86a6a48023a8c1c93c72271f1283550aJsBytes() - if err != nil { - return nil, err - } - - info := bindataFileInfo{name: "dist/assets/nomad-ui-86a6a48023a8c1c93c72271f1283550a.js", size: 367032, mode: os.FileMode(420), modTime: time.Unix(1480000000, 0)} - a := &asset{bytes: bytes, info: info} - return a, nil -} - var _distAssetsNomadUiAd7b09549502674646af03f41d1d62f1Css = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xdc\xfd\xeb\x92\xf4\x38\x92\x18\x88\xbe\x0a\x55\x6d\x65\x53\xd9\x15\x11\x43\xc6\x2d\x33\x23\x6c\xca\xe6\x68\x64\xd2\x91\x99\xa4\x63\x76\x46\x32\x93\xac\xb7\x7f\x30\x82\x88\x4c\x76\x31\xc8\x18\x92\xf1\x65\x7e\x1d\xca\xfd\xb9\xfb\x32\xfb\x54\xfb\x24\x6b\xc4\x8d\x70\xc0\x1d\x00\x23\xf3\xeb\xb1\xd5\xe4\x74\x7d\x99\x84\xdf\x70\x73\x38\x1c\x0e\xc7\x3f\x1e\x5f\xf3\xb6\x63\x7d\xf2\xd3\x7f\xfb\xaf\xff\x7e\xfe\xf4\xd3\xfe\xd0\x14\xdf\x67\xc7\xa6\x60\xb7\x53\x53\xf7\xf3\x37\x56\xbe\xbc\xf6\xbb\x75\x9a\x7e\xe4\x6d\x5f\x1e\x2b\x36\xcb\xbb\xb2\x60\xb3\x53\xf9\x72\x6d\xd9\xec\xd4\x34\x3d\x6b\x67\xaf\x2c\x2f\x86\x7f\x5e\xda\xe6\x7a\x99\xbd\xb6\xb3\x8e\x1d\xfb\xb2\xa9\x6f\x45\xd9\x5d\xaa\xfc\xfb\xee\x50\x35\xc7\xdf\x3f\xf2\x6b\x51\x36\x33\x76\x3e\xb0\x62\x56\x9e\x5f\x66\xcd\xe1\x2f\xec\xd8\xcf\xbe\x95\x05\x6b\x6e\xe7\xfc\x7d\xfe\x56\x16\xfd\xeb\x2e\x4b\xd3\x9f\x3f\x06\x19\x66\x97\x96\xdd\x0e\xf9\xf1\xf7\x81\x6e\x5d\xcc\x8f\x4d\xd5\xb4\xbb\x3f\x9c\x36\xc3\xcf\x07\x17\x75\x80\x90\x9f\xd3\x7c\xf8\xf9\x58\x1c\x9b\xba\x67\x75\x9f\x5c\x5a\x41\xe0\xad\x69\x8b\xf9\x5b\x9b\x5f\x76\x75\xd3\x9e\xf3\xea\x23\x4f\xba\xbe\x6d\xea\x97\xa1\x34\xe1\x75\x15\x14\x8e\xd7\xb6\x65\x75\xff\x4f\xc3\x1f\x1f\x12\xa4\xcf\x0f\x15\x4b\xfa\x57\xc5\x64\xb5\x1d\x7e\x04\x93\xb6\xa9\x16\xaf\x79\x37\x2f\x8f\x4d\xad\x7f\x99\xb7\x43\x8b\x25\x8b\xe1\xf7\x99\x03\xd6\x99\xc5\x8b\x52\xfe\x79\xe3\xff\xdd\xa5\x1f\x8b\xc3\xb5\xef\x07\xbc\x82\x55\xac\x67\xb3\xc5\xa9\xac\xd8\xfc\xd8\xe7\xf2\xb7\x3a\x3f\xb3\xd9\xe2\xd2\x36\x2f\x2d\xeb\xba\xd9\xa2\x63\x15\x3b\xf6\x89\xf8\xe7\x36\x7f\x63\x87\xdf\xcb\x7e\x9e\x5f\x2e\x2c\x6f\xf3\xfa\xc8\x76\x75\x53\x33\x4d\x75\x68\xb0\x5b\x55\xd6\x6c\xfe\x2a\xba\x35\x5b\x6c\x74\x61\x7e\x3b\x5e\xdb\xae\x69\x77\x97\xa6\xac\x7b\xd6\xaa\x82\x8e\xcb\x9e\x17\x45\x53\x77\x89\xfc\x36\x08\xfe\xda\x7c\x63\x2d\x2b\x66\x1e\xb0\x1d\x87\x19\x44\x67\x55\x01\xca\x65\xb3\xa0\xf4\x82\xd0\x11\x64\xcb\xfa\x72\xed\x63\xa9\x72\xe0\x08\xa2\xa0\xb1\x63\x89\x03\x24\xc1\xe4\xf6\xd7\x79\x59\x17\xec\x7d\xb7\xfc\x30\xea\xdf\xb3\xf7\x7e\xb6\xa8\x9b\xbe\x3c\x95\xc7\x7c\x98\x3c\x49\xbe\xab\x9b\xfe\x17\x09\xf3\x30\xcb\x17\x7d\xfe\x22\x49\x0c\xd0\xf3\x82\x1d\x9b\x96\x83\xee\xae\x75\xc1\xda\xa1\x6b\xc5\xac\x18\xfe\xf3\xdb\x62\x98\x68\xed\xfc\x5b\xc9\xde\x66\xaf\xfd\xb9\xba\xa9\x5e\x4f\xd3\x9f\xf7\xc6\x4c\x5b\x1c\xae\xe7\x0b\x6b\xe7\x15\x3b\xf5\xb7\x73\xde\xbe\x94\x35\xff\x7d\x18\x1e\x2d\x3b\xeb\x72\x31\x54\x25\x40\xab\x06\xd0\x00\xf1\xf7\x7f\xfc\x37\xc9\xe1\x5a\x9d\xf3\x45\xd9\x24\xdf\xd2\xc5\x76\x91\x25\xff\x33\xf9\xcf\xff\xf1\xbf\x26\xff\xa9\x3c\xb2\xba\x63\xc9\xff\x4c\x5e\xca\xfe\xf5\x7a\x58\x1c\x9b\xf3\xdf\xff\xe5\xa5\x7f\x3d\x77\x7f\xcf\x31\x92\x3f\xfe\xfd\x3f\xfe\xce\xbe\x9f\xda\xfc\xcc\xba\xa4\xbb\x94\xf5\xff\x87\xcf\xf5\xdb\xa9\x6d\xce\xb7\xbe\xcd\xeb\xee\xd4\xb4\xe7\x5d\xdb\xf4\x79\xcf\x7e\x49\x1f\x3e\xfa\xc6\xfd\xbc\xda\x3c\x17\xec\xe5\xe1\x83\x4b\x72\x2e\xeb\xb2\x65\x1d\xeb\x17\xc7\xae\x1b\xc4\x49\x17\xcb\x08\x71\x20\xda\x1f\xff\x9e\xab\xac\x7f\xb9\x36\x3d\xe3\xcd\x39\x2b\x8a\x59\x51\xcd\x8a\x7e\xc6\x7b\xbb\x63\xbd\xd2\x81\xaf\xd9\xec\x75\x39\x7b\x5d\xcd\x5e\xd7\xb3\xd7\xcd\xec\x75\x3b\x28\xc0\xa1\xc1\x67\x25\xaf\xd6\xac\x62\x2f\xac\x2e\x66\x55\x39\x6b\xaa\xd9\x65\xd0\x3a\xb3\xa1\xff\xf2\x96\xe5\xb3\x6b\x25\x5b\x74\x97\xee\x2f\x79\x51\x94\xf5\xcb\x2e\xfd\x70\x48\x0a\x6d\xdc\x95\x7f\x65\xa2\xfb\x6c\xe5\x7c\xad\x6e\x55\xd9\xf5\xf3\xae\xff\x5e\xc9\x59\x2f\xe7\x35\x1f\xdd\x33\x31\xfe\x34\x5b\xcd\xf3\x83\x0f\x8c\x43\xf3\x3e\xd0\x1e\x78\x1f\x9a\xb6\x60\xed\xfc\xd0\xbc\xef\x11\xc5\x7b\x3a\xed\x0d\x41\xd6\x97\xf7\xfd\xfc\xdc\xfc\x75\xde\x74\xef\x73\xf1\xfd\xdc\x34\xfd\xeb\x40\xe7\xa5\xcd\xbf\x77\xc7\xbc\x62\x7b\xa5\x95\x2c\x80\xbc\xee\xcb\xbc\x2a\xf3\x8e\x15\xfb\x73\x59\x4b\xd5\xbf\x4a\xd3\xcb\xfb\x7e\x18\xe2\xa7\xaa\x79\x9b\xbf\xef\x5e\xcb\xa2\x60\xf5\xf8\xe5\xfb\xae\x3b\xb6\x4d\x55\xed\xf9\x0c\x68\xd9\x30\xee\x07\x72\xcd\xa5\x2f\xcf\xe5\x5f\xd9\x7f\x62\x2f\xe5\xa1\xac\xca\xfe\xbb\x80\x18\x24\x9d\xe7\xc5\x5f\xae\x9d\x18\xf8\x1f\x7f\x9c\xed\xf2\xd3\xb0\x66\xed\x0e\xec\xd4\x0c\xeb\xcb\x58\xf9\xb2\x7e\x65\x6d\xd9\x7f\xc8\x99\x73\xc8\xbb\xf2\x38\x2f\xda\xe6\x52\x34\x6f\xf5\x0c\xfd\x3a\x97\xab\x8d\xbf\x34\xf9\xa3\x2a\xbf\x34\x6f\xac\x9d\x8b\xee\xd0\x60\xc9\x1f\xf1\x2e\xf8\x10\x03\xe8\x26\xbe\xec\xd2\x0f\xbe\x1a\xc9\x3f\x87\x4e\xa9\xf2\x4b\xc7\x76\xea\x97\xbd\x2c\xe8\x2e\xf9\x51\x8c\xa3\xbe\x98\xf5\xaf\x37\x3d\xae\x44\x93\xe4\x55\xf9\x52\xef\x86\x19\x2e\x95\x85\x6f\xa0\xf0\x5e\x3b\xe5\xe7\xb2\xfa\xbe\x1b\x16\x96\x8a\xcd\xbb\xef\x5d\xcf\xce\xb3\x7f\x5b\x95\xf5\xef\xff\x39\x3f\xfe\x33\xff\xf3\xdf\x37\x75\x3f\xfb\xe9\x9f\xd9\x4b\xc3\x92\xff\xf6\x1f\x7f\x9a\xfd\xff\x9b\x43\xd3\x37\xb3\xff\xdf\xfb\xf7\x17\x56\xcf\xff\x39\xaf\xbb\xd9\x7f\x3b\x5c\xeb\xfe\x3a\xfb\xa7\xbc\x1e\x48\x57\xd5\xec\xa7\xff\x2f\xab\xbe\xb1\xbe\x3c\xe6\xc9\x7f\x61\x57\xf6\xd3\xac\xcb\xeb\x6e\xde\xb1\xb6\x3c\x7d\x2c\xfe\xd2\x1c\xe6\x45\x79\x3a\xcd\x16\x7f\xe9\x9a\x7a\x3e\xcc\xf6\xbc\xef\x59\x3b\xaf\x9b\x73\x5e\xd8\x1f\xdb\xe6\x6d\xa6\x2d\x06\x53\xe6\x73\x53\x37\x43\x7b\xb0\xd1\xa0\xa0\x86\x6c\x7e\xed\x1b\x72\xb4\x5e\xfb\x86\xb7\x96\x39\x11\x07\xd5\x37\x4c\xe6\xee\x9c\x57\x95\x51\xb0\x78\x7a\xdc\xb0\xf3\xc7\x6b\x8b\xd8\x2e\xc5\x61\xf8\x91\x3d\xc5\x27\xea\x5e\xa9\xe5\xcb\xfb\x5e\x4e\x4b\xa1\x56\x93\xf4\xa3\x3c\xbf\x28\xad\xcd\x25\xe0\x7d\xf4\xa7\xfe\xfb\x85\xfd\xc3\xf1\x95\x1d\x7f\x3f\x34\xef\x7f\x9e\x19\x1f\xdb\xbc\x28\x9b\x3f\xdf\xbe\xb1\xc1\x56\xcb\x2b\xd9\xd5\x87\xbc\x63\x7c\x6d\xe8\x2e\x79\x2d\xe5\xe4\x7a\x42\x8e\x77\xa0\x4d\xd4\x1c\x10\xf6\x0f\xb0\x02\x1f\xd3\xf4\x83\x37\xa0\x6c\x23\x3d\x29\xc5\x94\x1c\xda\xa9\x6f\xae\xc7\x57\x73\xfe\xf2\x46\x55\x03\x30\x5b\x2c\x79\xc5\x44\xfd\xf6\x6f\xaf\x65\xcf\xf8\x68\x65\xbb\x4b\xcb\x3e\xb4\x39\xe6\x34\x1b\x57\xf8\x97\x7c\xb0\xce\x4c\x05\xc4\xce\x86\xce\x5c\x1c\x9a\x77\x65\x8d\x60\x46\xe3\xe9\xf4\x21\x8d\xb9\x62\xb4\xea\xac\x09\xb1\xb7\x5a\xae\x6f\x2e\x1f\xc3\xe2\x7c\xac\x58\xde\x9e\xca\x77\xa1\x3a\x6e\xfc\xcf\xdd\xa1\xe9\x5f\xf7\x72\x82\xef\x7e\x4a\x7e\xda\x2b\x63\x97\x53\xe7\x78\x97\x6b\x55\xb1\x42\xac\xac\xa7\xaa\xc9\x7b\xce\xe5\xdf\x94\xe7\x4b\xd3\xf6\x79\xdd\x9b\x40\x62\x79\x15\x50\xfc\x77\x0b\xec\x58\x95\x97\x0b\x2b\x6e\xaa\x71\xa5\x6a\x34\xa1\x4c\xcb\x77\x71\x6e\x8a\xbc\x9a\x1f\xf3\xb6\x98\xf3\x81\x1b\xea\x35\xce\x64\x28\xac\xf2\xef\xb7\x43\xd3\xf7\xcd\x79\x97\xee\xb9\x21\x90\xee\x2f\x4d\x57\x72\x43\x23\x3f\x74\x4d\x75\xed\xd9\x5e\x9a\xac\xfb\xbe\xb9\x0c\x8d\x5f\x76\x42\xd5\x66\xc6\x3c\x58\xb5\xec\x6c\x55\x82\xc3\x2c\x0d\x98\x25\x1f\x0a\x18\xd4\xca\x84\x22\x60\xd6\xe6\x74\x5c\x50\xfc\x36\x00\x2a\xa3\x18\x6e\xad\xb9\x8d\xc1\x3c\x82\x69\x6e\x51\xfa\xc7\x33\x2b\xca\x3c\xe9\x8e\x2d\x63\x75\x92\xd7\x45\xf2\xcb\xb8\xa9\x79\xdc\x3e\x5d\xde\x1f\x6e\x63\x43\xcd\xcf\xcd\xa1\xac\x58\x4c\x7b\xb9\xa0\x9e\x66\x43\x80\xa9\xd6\x73\x41\x3d\x8d\x88\x01\xd3\x6d\x89\x40\x53\x4d\xea\x82\x3a\x2d\xcb\x6d\x6b\x3e\x57\x8f\x6c\xd8\x9c\xb0\x42\x21\x19\x13\x58\x14\x19\x58\x68\x87\x68\x53\xe3\x71\xfb\x7c\x79\x7f\x98\x5d\xda\xb2\xee\xcd\x6e\xe1\xb3\xb7\x8f\xea\x16\x07\xd4\xd7\x2d\x2e\x30\xd9\x2d\x0e\xa8\xaf\x5b\x10\x60\x4f\xb7\xb8\xd0\x64\xb7\x38\xa0\x31\xdd\x22\x91\x26\x77\x8b\xb1\xf9\x5f\xae\xac\x89\xc2\xd5\x53\x5c\x87\x58\x90\xde\xfe\xb0\x61\xe9\xee\xb0\x20\xbd\xbd\xe1\xc0\xfa\x3a\xc3\x06\xa6\xfb\xc2\x82\x8c\xea\x0a\x8e\x73\xff\x04\xc9\xd2\xe5\xda\xea\x89\x82\x75\xbf\xf7\xcd\x25\xaa\x2f\x5c\x58\x5f\x6f\x20\xd0\x64\x7f\xb8\xb0\xbe\x1e\xc1\xa0\x3d\x7d\x82\x80\x93\xbd\xe2\xc2\xc6\xf4\x8b\xc2\xf2\xf6\x8c\x8b\xe7\x85\x8f\xd0\x74\xe4\x44\xa3\x26\xf1\xbc\xa9\xab\xef\x9f\x1f\x3f\x0e\xdf\x65\xb6\x21\xf8\xca\x96\xf9\x34\xe3\x65\xb6\xb5\x06\xee\x5b\x59\x30\x01\x1c\x35\x76\x51\x70\xdf\xf0\xc5\x11\xc8\x11\x8c\x82\xfb\x06\x31\x81\xe0\x19\xc7\x38\x06\x39\x94\x51\xf0\x98\xd1\x6c\x20\x7e\xba\xc7\x9c\xa1\xb2\x4e\x1f\x89\xa1\x32\xb2\xfd\xf4\x68\x59\xa7\xb6\x65\x76\xba\x56\xd5\x6b\x11\x35\x52\x1c\x50\xdf\x28\x71\x81\xc9\x11\xe2\x80\xfa\x46\x07\x02\xec\x19\x19\x2e\x34\x39\x2a\x1c\xd0\x98\x11\x21\x91\x7c\x3d\x32\x62\xfd\xe5\xda\xf5\xe5\xa9\x44\xd1\x44\xd9\x77\x5c\x2d\x6a\x44\x3f\x46\x94\x4d\x8e\x48\xe3\x9a\x97\x88\x34\x13\xec\x4b\x84\x85\x6b\x2a\xdd\xc7\x22\xac\xd8\x6d\x9e\xce\x94\x89\x64\x1c\xc7\xc2\x36\x3b\xa6\xd6\x4a\xdb\x1d\x08\x71\x64\xed\xbc\x93\x7c\x78\x59\x72\xb8\xde\xdb\x6c\xee\xc2\x84\xf0\xc0\xf5\xe8\x9d\x1c\xc2\x8a\x14\x63\x1c\x51\xbf\x91\x40\xc5\x4e\xbd\x0f\xd7\x72\x74\x58\x98\x1e\xc8\x69\x33\x96\x8b\xe1\x4e\x56\x9b\xfb\x3d\x33\x95\x93\x76\x27\xe9\x1d\xa4\xc3\xd3\xc7\xe0\x15\x6c\xc9\x89\x33\x53\x90\xb6\x27\xe5\xa4\x5a\xb8\x33\x92\x13\x45\x26\xe3\x3d\x64\xc3\x33\xd1\xe4\x76\x57\xf3\x78\x66\xa0\x35\x8e\xef\xa7\xac\xcc\x08\x48\xd9\x5d\xd5\x6c\x0f\xa0\x86\xe7\x1e\x35\x04\xc1\x76\x06\xda\x28\x3e\x58\xee\x38\xcc\x2f\x65\x9f\x57\xe5\x5f\xd5\x5a\x39\x1e\x9f\x8d\x45\x16\x4e\xd5\xbc\xb1\xf6\x98\x77\xcc\xc6\xd0\x05\x16\xc2\xf5\x72\xc1\x11\x74\x01\xa8\x33\xcb\x8b\xb2\x7e\x99\x2d\xce\xac\xbe\xce\xab\xfc\xc0\xaa\x19\x3f\xdd\xac\x9b\xfe\x97\x43\x53\x7c\x7f\x20\xc9\x18\xb5\xe7\xfe\xe3\xdb\xe8\xdf\x35\x38\xe4\x16\xd4\xee\xd4\x1c\xaf\xdd\xcc\xf9\x2c\x4e\x53\x25\x09\xb6\x1d\x7e\xd0\xbe\x39\x54\xf9\xf1\x77\x18\x68\x80\x73\xe3\x80\x2e\x37\xf1\x19\x70\x4b\xd3\x14\x57\xac\xbc\x4f\x41\xa8\x03\xce\x8a\x03\xba\xac\xc4\x67\xc0\x4a\x1c\x3a\xa0\xdc\x8a\xbc\xd5\xf5\x5a\xae\xd6\x38\xa7\x01\xc8\x65\xc4\xbf\x02\x3e\x59\x96\xe5\xcb\x25\xca\xe7\xd2\x96\xe7\xbc\xfd\xae\x59\x6d\x0e\xf9\x53\x86\x73\x93\xa0\x2e\x43\x55\x00\x79\x16\x4f\xa7\xed\x8a\x68\xc9\x5a\xd7\x2d\xdb\x6c\x57\xd4\x08\x19\xe0\xb0\x76\xac\x9d\x1e\x5b\x1f\x58\x86\xb2\x2a\xeb\x53\x13\xc3\x6a\x80\x73\x59\xf1\xaf\xb1\xac\xba\xeb\xf1\xc8\xba\x4e\xb7\x24\x3b\xa4\xab\x67\x9c\x9b\x04\x75\x19\xaa\x02\xc0\x73\xb9\x7a\x7a\x5a\x1e\x51\x9e\x6f\x79\x5b\x97\xf5\x8b\x1e\x95\xf9\x13\x5b\xae\x88\xe9\x26\x40\x91\x09\x27\x0b\xe0\x94\xdb\x3c\xae\xd3\x0d\x31\x32\xeb\x97\x11\xf0\xf8\xb4\x4e\xe9\xe1\x39\x40\x62\x03\x94\x7f\x07\x0c\xf3\x74\xb5\x5a\x3e\xd3\x73\x7c\x7e\x28\x75\xd3\x66\xcb\xe1\xc7\x03\xdb\x1b\x8d\xb7\x1e\x7e\x50\xd8\x97\x96\x7d\xe7\x93\x65\x84\x16\x51\x44\x7e\x68\x05\xbb\xce\x87\x1f\x12\x56\x81\x3d\xe6\xc3\x0f\x4d\x12\xa8\x95\xc3\x66\xf8\x09\x00\x47\xe9\x0f\x71\x86\x67\xc0\x3a\x1a\xcb\x86\x35\x1a\xf8\x94\x0f\x3f\x38\x2c\x3f\x72\x94\x52\x9b\x87\x90\x2b\x42\x6d\x4a\x04\x11\xe2\x65\x07\xaf\xf9\x30\x3a\x76\x2e\x0f\x4d\x55\x00\x9c\xad\x1f\xc7\x81\x7f\x84\xf0\x65\x37\xe7\xe1\x23\x30\xfe\xed\x6e\x23\x57\x58\x06\xae\x95\x8b\xad\xf6\x9c\x93\x82\xa5\xd8\xdf\x65\x0f\x0b\x29\x5c\x83\x98\x96\x42\xc2\x7e\x46\x8a\xb0\x7d\x6b\x8a\xe5\x18\x87\x21\xd9\x04\xc2\x24\x01\xc3\xa2\xd8\xb6\xb6\x47\x08\x0e\x7a\x5f\xfb\xb8\x46\xb9\x60\x8f\x58\xe5\xb4\x00\x0a\xf8\x53\x22\x84\x0d\x78\x20\xd9\x84\x4e\x02\x18\x77\xca\xe8\x58\xfc\x42\x18\xdc\xe4\xa7\x45\x31\xe0\x3f\x25\x48\x78\x6b\x6e\xcb\x37\xa1\xbd\x6c\xa4\x3b\x25\x35\x3c\xa2\x82\xae\xdc\x94\x50\xe4\x06\xc0\x53\xc5\xde\x6d\xb8\xe1\x1b\xd8\xb8\x48\x38\x0a\x20\xf6\x00\x9d\xf3\xb2\x54\x9c\xcd\x6b\xda\xd9\x2f\xa7\x68\xa9\xab\x3b\x28\xfa\x0e\x33\x0d\x16\xb0\x73\x62\xf8\x78\x28\x02\x15\x32\x49\x66\xf3\x80\x8f\xd3\xb2\xb5\xc1\x3d\xd4\x48\x65\x60\x31\x99\xde\x06\xe8\xf9\x0e\x27\x89\xcc\xcd\x7b\x08\x92\x53\xd3\xe5\xe3\x95\x7e\x80\x2f\x6b\x1e\x68\x4d\x61\x88\x62\x7b\x6e\x88\xaf\x34\x50\xec\xfc\x90\xcc\xad\x19\xe2\xf2\x9c\x36\x47\x24\x55\x6b\x96\xdc\x45\xd5\x37\xaa\x01\x9b\x50\xab\x45\xcf\x15\x45\x15\xcc\x96\x89\xb2\x9b\xf3\x45\xd2\xb3\x67\xcc\x7d\x14\x7d\x73\x06\x32\xba\xa7\x3d\xd0\x79\xe3\x8c\xcf\xbb\x89\x1a\x8b\x85\x24\x6a\xad\x02\x0e\x41\x03\x14\x5d\x5e\xcc\x32\x7c\x8a\x58\xd6\x35\x81\x30\x71\xba\xa0\x96\x33\x25\xcb\x5d\x53\x07\xb5\x8a\x3f\xc1\x21\x62\xc0\xd3\xc6\xee\x14\xbe\x11\x1c\x90\x89\x35\xb1\x4e\xc8\xf4\xc2\x8d\xd4\xcf\x50\x8f\x98\x6a\x1e\xd3\xf3\x3e\xce\xee\xb4\x23\x4d\xca\xcf\x30\xf0\x2d\x5f\x04\xdf\xa8\xda\x99\x33\xdb\xb7\x0a\x1a\x30\xc4\xac\x05\xb6\x1f\x0e\x3e\x71\xce\x62\x96\x20\x21\xc7\x5d\x33\x16\xb3\x0b\xef\xa7\x1f\x31\x9b\x48\x2b\x71\x02\xd7\x30\x7d\x6c\xb2\xde\x6d\x3a\x9a\x94\x89\xa9\xfa\xd5\x86\x24\xc2\xf2\xee\xd6\xf2\xcd\x53\xca\xba\xbc\x8b\x3c\xb2\x50\x22\x7b\x26\x9c\x34\xbf\x6e\xc6\xe3\xbd\x6d\xf8\xba\x71\xed\x48\x01\x49\x81\x08\x01\xbe\x95\x5d\x79\xa8\xd8\x8d\xff\xcb\x2f\xcc\xb8\x01\xe5\xb1\x93\x51\x4a\x66\xcd\x43\x1f\x5b\x05\xeb\xe3\x3e\x71\xc6\x4a\x21\xac\xc9\xea\x15\x42\xc2\x7e\x56\x08\xdf\xb4\x03\x52\xc1\x31\x1a\x21\x9a\x40\x98\x2c\x9f\x57\x12\x30\xf7\xfd\x32\x70\xd0\xfb\x5b\xc7\x54\x12\x92\xbb\xad\x1f\xbc\xfc\x15\xf0\xa7\x25\xf0\xa9\x12\x28\xd8\x84\x1e\x02\x18\x9f\x10\xd1\xd0\x3a\x52\x16\x44\xe1\x78\x25\x31\xe0\x3f\x2d\x87\xcf\x88\x70\xc4\x9b\xd0\x5a\x36\x92\x57\xd0\x01\x55\x5c\x85\xaa\x58\xd7\xe9\xcb\x8a\x16\x71\x79\xf5\x87\x83\xe8\x6b\x40\x16\x4c\x9b\x17\xe5\xb5\xe3\x20\xf2\x72\x9c\xf8\xe2\x00\x76\xaf\x79\xd1\xbc\x49\xc0\x77\xf9\xa7\x53\x25\x7e\xc5\xe8\x98\xb7\x85\x09\x94\x26\xcb\xcb\x7b\xb2\xba\xbc\x27\xed\xcb\x21\xff\x25\x4b\x67\xe2\xff\x17\xd9\xc3\x2c\x4d\x86\x9f\x0c\x2b\x13\xc7\xe6\xb5\xb8\x70\xc7\xef\xf5\xa9\x1b\x3a\x7c\xde\xcd\x8f\x79\x55\x35\xd7\x5e\xdc\x11\x53\x45\xd7\x4e\xdf\x1e\x94\x05\xe7\xe6\xaf\xd8\xd7\xce\xfd\x68\x7f\x18\x6f\x9b\x9f\xca\x00\xf7\x78\x26\x94\xa0\xbc\xed\xac\x3e\xd8\x5c\xde\xf7\xe0\x48\x7d\x0f\x1c\x8c\xf6\xb5\x31\x4e\x82\x47\x08\xec\xaa\xbc\xeb\xe7\xc7\xd7\xb2\x2a\x1e\xd4\x85\x64\x79\x63\x49\xde\x48\xce\x39\xac\x3a\x11\x1c\x7e\x17\xa7\x80\x93\xbb\x4d\x9e\xe6\x4a\x82\xf9\xb1\x2f\xbf\x31\x93\x4a\x59\x77\xac\x97\xb0\x4b\x97\xd6\x12\xa3\xa5\x2e\xa9\xf1\x66\xb5\x2e\xeb\xef\xb9\x8b\x77\x5e\xf6\xec\xdc\xc9\xb8\xc9\x3d\x6c\xb5\xe5\xe5\x7d\x8f\x18\x0b\x7b\x18\xcf\xa9\x6e\x15\x2e\x17\xcb\xcd\x78\x4d\x4e\xb5\xd2\x31\xaf\x8e\xbf\x2c\x56\x8f\x1b\x76\x4e\xe6\x83\x6c\x0f\x1a\xa2\x6f\x2e\x68\xb1\xba\x00\xd6\xb2\x2a\x1f\x1a\x01\xb9\x2a\xe7\x8c\xb0\x3d\x38\xee\xdc\xcb\x70\x32\x75\x29\x56\x55\x4f\x71\xe6\x57\xcd\x16\x8f\xa6\xb8\xe2\x92\x99\xf8\xe6\xc4\x93\x82\xfb\x83\x75\xf3\xd6\xe6\x17\xd5\xb4\x32\xc1\x83\x3c\x67\xd4\xd7\x7a\x65\xa1\xcc\xcd\x60\xfe\xc5\x63\x5e\xf2\xf6\x85\xb9\x9f\x07\xa5\x79\x3d\xbb\xdf\xc5\xad\xcf\x31\x93\x02\x3b\xab\x4b\xf5\xc3\xef\x90\xd9\xee\x54\xb6\x6a\xc4\x92\x23\x98\xd7\x9f\x37\xfd\x1c\xb6\x3d\xb8\x72\xbf\xc8\xc4\xed\x52\x48\x7f\x24\x27\xc8\x1b\xfc\x20\x7d\x89\x0e\x69\x22\x4c\x3d\xf2\x8f\xbc\xa6\x49\xee\xe1\xb2\x70\x13\x4a\xe8\x09\xab\xee\x3a\x8f\xe7\xd6\x7b\x2b\x17\xc7\x48\x83\x4f\x78\x83\x06\xff\xdb\xa2\x21\x26\x61\x90\x86\x68\x47\x31\xe1\x1f\x20\x41\x50\x04\x55\xca\xf0\xb3\xc8\x86\x29\x27\x34\xc1\x32\x9b\x3d\x3f\xcf\x96\x9b\xcd\x6c\xb1\xdc\x80\xea\x0a\x74\x4d\x58\x6b\x16\x53\x54\x71\xf4\x4f\x8b\x3a\x4c\x09\xff\x65\x59\x40\xcf\x2c\xb0\x72\xa6\x40\x9a\x48\x53\x9a\x45\x56\x4f\xa9\x22\xa9\x6e\xed\xaf\xb2\x1f\x89\x2c\x2e\xfe\xca\xb9\x0d\xa5\xc9\xaa\x06\x73\xe8\xb2\xa7\xe1\x87\xa6\xcb\xb5\x06\x4e\x58\x17\x21\x95\xd7\x65\x48\xed\x45\x2c\x19\x41\xcf\x6d\x16\x24\xf4\x0c\xef\x87\x3f\x15\x65\x37\x58\x06\xc5\x9f\xef\xec\x65\xcb\x94\x71\x9a\x01\xbf\x27\x4d\x0f\x0e\xbb\x81\xd0\x49\x62\xd5\x7c\xca\x6c\xd9\x6c\x66\xea\x7f\xf6\x7c\xe1\x14\x7d\x0d\xc2\x25\xbf\xbb\x25\xa4\xb5\xca\xda\x9e\x15\x08\x6d\x69\x9f\x18\x77\xc9\x7d\x04\xc8\x31\x9f\xa6\xa9\x17\xd1\x5b\x3f\x29\x43\x6c\x15\x43\xc2\x36\xd7\x7e\x30\x1e\xf0\x41\xae\x0a\x63\x47\x60\x80\x57\xd5\xf0\x78\x4f\x79\x7d\x9e\xaa\x41\x62\xfe\x2e\xab\x9b\xb8\xd1\x96\x3e\x79\xef\x65\x76\x3a\x9d\x12\x2b\x84\x34\xb6\x59\x80\xc6\x16\x63\x30\x7e\xa8\x05\x3b\x02\x03\xbc\x4b\x2d\x58\x43\xd8\x33\xb7\x43\x2c\xe9\xea\xf1\xa8\x38\x5c\xb5\xea\x22\x44\xb5\xea\x32\x44\xb5\x8a\xc0\x59\x82\x9e\xab\x5a\x91\x38\x5b\x6b\x4c\x8a\x48\xde\x89\x33\xdc\x96\x9e\xd4\x7b\x86\x58\x13\xf4\x9e\xb1\x5f\x80\x4a\x8f\x93\xfb\x4a\xa5\x80\x56\xca\xa3\xf7\xbc\xab\x81\x43\x80\x5e\xeb\x97\xc3\x8f\x17\xf7\xcb\x54\x7b\x84\xbc\xd8\x8c\x73\x0a\x27\xaa\x3e\x0f\xbb\xaf\x57\x48\x8e\xb0\x3f\x52\xc9\x7a\x5b\x06\x53\x31\x53\xc6\x5c\xb0\x3b\xbe\x4e\x01\x1a\x63\x99\x9a\xde\xf7\xab\x3e\x1e\xa8\x8a\xab\x3e\x5d\x84\xa8\x3e\x5d\x86\xa8\x3e\x11\xc8\x4f\xd0\x73\x55\x1f\x12\xf7\xbf\x5c\xad\x1d\x19\x83\x96\x38\x86\x14\xa3\xfa\x0c\xb1\xa6\x98\x7c\xeb\xcd\x4c\xfd\xcf\xd6\x7e\x9c\xa2\x5f\x2f\x08\xc9\xef\xd1\x7e\xba\x5e\x1e\xed\xb7\x5c\xad\xf7\x30\xe7\xa4\x8f\x00\xa9\xfd\xb2\x7c\xb9\x5d\xad\xbc\xb8\xde\x5a\x0e\x62\x4c\xb6\xfa\x68\x79\xb1\xe9\xe6\x14\x4e\x35\xfc\x68\x76\xf7\xa8\xa5\xe5\x6a\x9d\x58\xd7\x51\x7c\xc2\xde\xad\x64\xb9\xd4\x09\x12\xb3\x1e\xd9\x32\x50\xbf\xa8\xc1\x18\x3f\xe6\x82\xdd\xf1\x75\xda\xcf\x18\xcb\xd4\x0c\xbf\x5f\xfb\x15\x79\x4b\xd8\x7d\xaa\x04\xd1\x7d\xaa\x08\x51\x7d\xfc\x6a\x11\x4e\xcc\x55\x7c\xee\x3d\x24\x77\x34\xf2\x0b\x15\x13\x27\xb8\x25\x3a\xa9\xf8\x46\xa9\x26\xe8\xbd\xd5\x7a\xb6\xc9\x66\xdb\x27\x47\xe9\x0d\xd4\xbe\x4c\x1b\x60\xd5\xf1\x59\x7b\xbe\x85\xc0\xc6\x27\xd5\x9d\x70\xc0\xf8\x50\xbf\x52\xa7\x07\xa4\xc5\x66\x97\x5d\x36\x51\xd7\x11\x9c\x7e\x94\x02\xb2\xa5\xfd\x31\x3a\xd5\xd7\x26\x8e\x1e\x99\x30\xca\x42\x7d\xf0\x85\xe6\x1d\x18\xbc\xf4\x74\xbe\x5f\xcb\xc9\xfb\x87\xb8\xa2\x33\x0a\x11\x5d\x67\x94\x22\xea\x4e\x5d\x6c\x24\xa9\xba\x4a\x0f\xbd\x0b\x69\x99\xb5\xea\xce\x25\xa2\x43\xf8\xf5\x4b\xc2\x1a\x76\x6b\x42\xaa\x3e\x20\xde\x14\xed\xf7\x38\xcb\x9e\xb6\xb3\x6c\xf9\xec\xe8\x3f\x49\xd2\xaf\x02\x85\xf8\xf7\x68\x41\xa3\x72\x71\xdb\x5e\xc1\x2b\x40\x62\xc2\xc6\x17\xc1\xfe\xf2\xad\xaf\x57\xe6\xaf\xdf\x8d\x1a\xc4\xd5\x84\x8a\x53\xa4\x3e\x31\x3f\xad\xee\x38\xf1\xc4\xbd\x69\xec\x67\x77\xa7\x71\xa5\x06\xe4\xf4\xee\xc0\xd4\xd1\xd7\xec\x6a\x03\x4c\xee\xdf\x44\xc7\x39\x9a\xf9\xed\x6b\x64\x33\x04\x8e\xdf\x10\x1c\x72\xa7\x5c\x53\xd6\xa2\x71\x7f\xdb\xfe\xea\x53\x8f\x16\x33\xcf\xc6\xb6\x9e\x6e\xdf\xd1\x07\x7f\x8a\x2d\xb6\xb1\xaf\x95\xd5\xeb\x11\xd9\xab\x2d\x64\xeb\xde\xb7\x21\xae\x27\x78\x03\x61\x28\x03\x86\x3f\x41\x27\xda\xa8\x5f\xae\x10\x69\x69\xbf\x5e\x1b\x2a\xca\x93\x54\x21\x2d\xe0\x67\xf5\xa0\xa0\x9c\xb8\x59\x09\x3c\xbc\xee\x53\x0d\x7a\xec\x4d\xec\x82\x1f\xa7\x01\x7d\x1c\x7e\xb4\xfa\xe3\x19\x21\x26\xaa\xbf\x01\x87\x50\x7f\xaa\x08\x51\x7f\x46\x4e\x09\xfb\xab\x4f\xfd\x59\xcc\x48\xf5\x37\x92\xff\x12\xf5\xa7\xd8\xba\xea\x8f\x33\xf2\xaa\xbf\x01\xe2\x47\xa9\x3f\x25\xd7\xbd\xea\xcf\xc6\x9f\xa0\xfe\x6c\xd4\xbf\x81\xfa\x53\x2c\xbf\x5e\xfd\x29\xca\x9f\x54\x7f\x36\x99\x1f\xa9\xfe\x6c\x5e\x7f\x1b\xf5\x67\xf7\xfa\xd7\xab\x3f\x1f\x87\x1f\xad\xfe\x54\x96\x1a\x64\xf3\xc6\x13\xd6\xf8\xd1\x08\x25\x68\x94\x22\x7a\x10\x66\xbb\x41\x0a\x7c\xda\xd0\x65\x4c\x2a\x44\xc0\x67\x82\x4e\x5c\x6f\x67\xd9\xe3\x76\xb6\x79\x74\x74\xa2\xc1\xdc\x55\x8b\x8a\x9d\x57\x33\x4a\x20\xff\xae\x59\x34\xfc\x3d\xca\xd1\x10\x30\x72\xd7\xcc\x79\x05\x48\x4c\x50\x91\x08\xf6\xd7\xef\x9a\x7d\x32\x7f\xbd\xa2\x34\x88\x4f\xdb\x35\xfb\xc4\xfc\xf4\xae\x99\x13\x4f\xdc\xac\x52\x7e\x76\x77\xee\x9a\xd5\x80\x9c\xde\x1d\x3f\x4e\x69\x06\x98\xfc\x68\xbd\xa9\x32\x6d\x21\x43\x9a\x27\xdd\xf2\xa3\x11\x7a\xd3\x28\xc5\xa2\x17\x41\xc6\x2e\xa4\xc0\xa7\x37\x5d\xc6\x74\x4c\xa0\xc9\x67\x52\x54\x60\x3a\xcb\xd6\xcb\xd9\x0a\x09\x0a\x1c\xb9\x23\xd1\x97\x92\x9f\x57\x71\x4a\x20\xbf\x32\x11\x2d\x7f\x57\x6c\xe1\x28\x60\x9c\xe2\x14\xbc\x02\x24\x26\x28\x4e\x04\xfb\xcb\x15\xa7\x57\xe6\x1f\x10\x8d\x37\x12\x9f\xa4\x38\xbd\x62\x7e\xfa\x28\x99\x13\x4f\xdc\xd4\x78\x7e\x76\x77\xaa\x13\x35\x20\xa7\x77\xc7\x8f\x53\x9c\x01\x26\x3f\x5a\x71\xca\x74\x81\xee\x88\x16\x99\x03\xbd\x58\x84\xda\x1c\x0b\xd1\x23\x6a\x23\xe9\xa0\xfb\xdd\xa7\x33\x1d\xa6\x9e\xa3\xe5\x91\xc9\x14\x8d\x99\xa6\xb3\xed\x7a\xb6\x59\x22\xa7\xcb\x8a\x35\x76\xba\xce\x99\x79\xd5\xa5\x80\xf1\x6a\x10\xd9\xde\xf7\x1d\x51\x2b\xe9\xe2\x94\xa5\x60\xe5\xa7\x30\x41\x57\xba\xc8\x5f\xae\x2a\x7d\x12\xe3\xc7\xa4\x76\xe9\xc4\xc3\x6a\x1f\xc3\xaf\x57\xcd\xae\xb8\xf7\xf2\x11\x72\x27\x6e\xde\xcf\xe8\xc6\x01\x7a\x44\x0f\xca\x09\x63\x2f\xdc\x27\x7f\x8b\xd8\xc4\x78\x6e\x9e\xed\x1b\xbf\xaa\xe6\x5e\x23\xb4\xdf\x75\x30\x71\xc4\xb5\x37\xf7\x4d\x09\xe0\x5f\xcd\xdb\x17\xf7\xf5\x30\x05\x61\xc8\x26\x9f\x16\xae\x9b\x7e\x9e\x57\x55\xf3\xc6\x0a\xe2\x75\x51\xd8\x2a\xfa\xb1\x44\x38\x97\x9a\x4b\x7e\x2c\xfb\xef\xbb\x05\x38\xdf\xef\xfa\xbc\x2f\x8f\x33\xfd\x08\x9e\xf1\x7e\xab\xfe\x26\xdf\xfd\x6b\x03\x97\x92\x4c\xb2\xa7\x6b\x55\xf1\x7b\x7d\x20\xdb\x97\xf5\x7e\xae\x6e\x10\x31\xd2\x6f\x4e\x77\x8f\x03\x78\x2f\xdf\x57\x9e\xb3\x6f\xac\xee\x3b\xf7\x18\x06\x4c\x96\xbc\x2e\xcf\xe2\x85\xdf\xf1\x69\xdc\x64\xb1\xe9\x92\xb2\x3e\x95\x75\xd9\xb3\x64\x18\x06\xb9\xba\x23\x3a\xf4\x6a\xd2\x35\x55\x59\x24\xf0\xa5\x49\xdd\xeb\xcf\xe9\xfa\x69\x7b\x79\xd7\x9f\x79\xae\x41\x72\x74\xf6\xcd\x05\x55\x2d\xf2\xcd\xc3\x9f\xac\x0b\xbb\xea\x32\xe4\x78\x15\x92\x9d\xf7\xe3\xe5\xc0\x4d\xfa\x73\x32\x4f\x7e\xc9\xd8\x39\xf9\xfb\x64\xf9\xf0\xb0\xd7\x77\x4d\x9d\x12\xe7\xbd\x41\x62\x2b\xca\xfb\xfc\x86\x8e\x1a\xf9\x97\xc8\x8b\xeb\x8c\x21\x4f\x2f\x74\x37\xe4\x0e\x2e\xe8\x7c\x91\x16\xa4\xcd\x2f\xbb\xe1\x3f\xce\xbd\x56\x5e\xdc\xf5\x79\xab\x65\xd5\x4f\x62\x5b\xb7\x95\x17\xe6\x8c\x1a\xdf\xcd\xa6\x6e\x88\xca\x1b\xa0\x00\x09\xb9\x8e\x29\x89\xcf\x2d\xc0\xd0\xcd\x69\x13\x18\x7b\xcd\xdb\xbd\x58\xaa\x5f\xaa\x1d\x08\x88\x7c\xf7\xea\x7a\xbd\x39\x82\x40\x41\x98\x85\x29\x22\xe4\x20\x46\x2b\xc6\xc2\x2a\x01\xed\x35\xcf\x2e\xef\x5e\xae\x6e\x0b\x5a\xef\xb1\x53\x6f\xa0\x43\x1b\x8a\x82\xb2\x2c\x4b\x0a\x4c\xdc\x9b\x0e\xbc\xa8\x1e\xe6\x28\xef\xbc\xaa\x37\xc6\x57\x71\x75\x50\xcf\x9f\x47\xd5\x24\x0e\x58\xd5\x27\x0c\xbd\x8b\x95\x41\x1a\xc2\xf0\x15\xf5\xf5\x58\xc3\xb2\x1b\x5f\x4b\xc3\x2f\x9b\x03\x58\xf1\x7a\x02\x3a\x7b\x59\x5d\x88\xe7\x54\xf3\xb2\x66\xad\xce\x40\x91\x88\xe7\x6c\xed\xbb\xf0\x91\x69\x50\x4c\x7a\x2a\xbf\xc6\xf3\x36\xbd\xa8\xd5\x84\xff\x6e\xb0\xe5\x4d\x5e\x5d\x4b\x78\xcf\x7a\xb5\xd4\x0f\x05\xcb\x71\x2a\xbf\x28\x92\x5c\xbf\x89\x5f\xf9\xa3\xc1\x81\x14\x31\x2a\x17\x0a\x60\x6b\xa4\x14\x31\x40\xb3\xcd\x52\x0b\x1b\x43\x5a\xe5\x0e\x81\x35\x12\xf9\x8b\x0c\xb0\xd5\x7a\x1d\x41\xd6\xcd\x98\x82\xb5\x27\x90\x51\xfc\x31\x29\x2f\x93\xca\x57\x22\xa5\xf4\xa5\x29\xc1\xf9\x9b\x95\x11\x7f\x7c\xe8\x87\x79\x23\x93\x57\x68\x73\xa5\x2a\x7f\xad\x4a\x05\x33\x2c\x96\x3c\x99\xc3\x07\x62\xe2\x38\x94\x47\x9b\xa7\xa8\x3c\x85\x8d\xaf\xf0\xe2\x2b\x6b\x7d\x3c\xb9\x9d\xe5\x29\xbf\xba\x6c\xed\xa6\x30\xeb\xf9\x9a\x8d\xa8\xaf\x4b\xe3\xf7\x95\xf1\xfb\xda\xf8\x7d\x63\xfc\xbe\x85\x49\xf7\xed\xa7\xf3\xf7\x3c\x83\x86\x4e\xe3\x90\x2d\x37\x26\x5f\xf3\xad\xb6\x31\x6b\x82\x5e\xbd\xa1\x90\x74\xea\x85\xa1\xef\x60\x8d\x96\xc0\x6c\x36\x53\x32\x68\xe2\x8f\xd9\x1a\xa2\x04\xe8\x2f\xb2\xf5\xf2\x09\x60\xac\x00\x13\x84\xc7\x76\xbb\xdd\x42\x8c\x10\x8f\xd5\x6a\xb5\x32\x31\x9a\xca\xec\x55\xab\xbe\x7b\x53\x6f\x2d\x01\x23\xf8\x72\xf3\x12\x91\x0d\x56\xc5\x7a\xc3\x19\x45\x78\x7a\x82\x38\xe0\x41\x67\x07\x3e\xc3\x67\x92\x32\x39\xb8\xcc\x1b\xc7\x9c\x36\x73\xd2\x88\x97\xcc\x61\x6b\xdc\xaa\xb2\x53\xcf\xab\x17\xec\x58\x9e\xf3\xea\xc3\x6c\x20\xb3\xb8\xec\x8e\x66\x19\x2c\x9e\xf7\xdf\x2f\x6c\x77\x2c\xdb\x63\xc5\xf6\xa6\x0a\x00\x0c\x39\x16\x86\xd8\xfd\xcb\x35\x6f\xd9\x08\x58\xc0\x45\x04\x74\xc6\xa9\x7c\xb9\xb6\xcc\x2e\x87\x6b\xcc\x12\xcb\xc0\xf2\xb1\x38\xb4\x2c\x2f\x8e\xed\xf5\x7c\x70\x12\x91\xcc\x16\xfc\x35\xfa\x5f\xc5\x3f\x30\x09\xc9\xc6\x65\xef\x1f\x78\x88\xbc\x21\x0d\x82\xa0\x24\xe5\xf9\x05\xcd\x76\xe9\x00\x9e\xca\x97\x63\x7e\x19\x16\x79\xf0\x5e\x7e\x9f\x57\xe5\x11\xbc\xb3\x7e\xf3\xbd\x75\xaf\x06\x88\xf3\xd2\xbd\xd1\x6e\x22\xfb\x92\x7a\x03\x89\xff\x5e\xe7\x67\x36\x5b\xbc\x96\x2f\xaf\xfc\x6a\xce\x6c\x71\x69\x9b\x97\x96\x75\x9d\xfd\xf6\xfb\x28\x49\x77\x3d\xcc\x8c\x3f\xcc\x27\x69\x1f\x37\x3f\x7f\x40\xc5\x7c\x33\x37\xaf\xd6\xd6\xb8\x70\x36\xcb\xaf\x72\x46\xec\x32\x6a\x6f\x29\xc8\xc9\x2c\x47\xba\x01\x86\x8a\x27\x42\xb3\xa1\xaf\xea\xd7\x97\x6b\x3f\x5b\x08\x2b\x31\x11\xff\xcc\x16\xc3\x10\xcb\x5b\x96\xdf\x3e\x9d\xb0\xc8\x4c\x82\x87\xd4\xf3\xd5\x5a\x15\xac\x07\xba\x5c\x78\x96\x17\x68\xeb\xf0\xef\xaa\x8d\x8c\xa6\x58\x8e\xc9\xad\x54\x0e\x12\x0b\xf5\xd4\x34\x3d\x46\x52\x7c\xb7\x48\x0e\x1b\xfb\x34\x49\x03\x24\x0f\x4d\xf1\x3d\xe9\x5b\x63\x56\x60\x0c\x30\xa8\x57\x6b\xab\x25\x2b\xa2\x39\x8c\x6e\x24\xd7\x69\x64\x80\xd0\x5e\x23\x03\x88\x72\x1b\xc9\x21\xe1\x8c\x81\xd1\x83\xb0\xd8\x2e\x91\x11\x60\xa4\x17\x82\x00\x66\xff\x73\xe2\xbb\x1d\xcf\xb9\x75\xa9\xf2\x23\x7b\x6d\xaa\x62\xd8\x6e\x28\x76\x6e\x99\x1c\x22\xdc\xa5\xbe\x59\xcf\xc4\xff\x2f\x56\x0f\x23\x31\x99\xec\x8c\xff\x49\x52\xa5\x80\x42\xe4\x3d\xa2\x4e\x95\x74\x7e\xee\xbc\x42\xa2\xe5\x01\xa2\xe6\x06\x58\x7f\xd0\x7b\x5d\xc1\x17\x94\xab\xb3\x12\xc5\xd5\x24\x60\x7e\xd3\x34\xb4\x78\x36\x94\xce\xeb\x14\x1d\x81\xb8\x97\x0e\xd3\x61\x44\x73\x61\x46\xe7\xe4\x48\x96\x76\xa6\x42\x67\x92\x43\xc2\x37\xac\x7c\x50\x66\x0b\x67\xcb\xe5\x4c\xfd\x6f\x6c\x64\x80\x1d\x1e\x6d\x51\xe0\x93\xb8\x46\x55\xec\x53\xf5\x0a\x8c\xcd\x10\x64\x04\xaf\xc1\x20\xfa\x87\x8e\xe5\xed\xf1\xd5\xec\x6d\xf3\xb3\xed\x1c\x97\x6e\x52\x45\x61\x58\xad\x9b\xba\xfa\x6e\xa2\xeb\x6f\xae\xe7\x5d\x4f\x07\xbe\xee\xc3\xd1\x2d\xf3\x2e\xd9\xde\x7f\x1b\x09\x9d\x5d\x6e\x7e\x2a\x58\xb4\xc3\x31\xb0\x89\xe7\x30\x41\x0b\x9d\xa9\xe8\xb2\x72\x4b\x62\x26\xa7\x93\xe8\x49\x4b\xcc\x73\x31\x40\xb2\x32\x65\x0b\x92\x6a\xc2\xc6\x43\x5b\xcd\x4d\x3d\x03\x8b\xdc\x56\x03\xc9\x65\x1c\x49\xa8\x56\x73\xf9\x38\xa5\x68\xab\x19\xdc\x26\xa5\x89\xd1\xe2\x4a\x2b\xd1\xa4\x29\x53\x3d\x20\x17\x24\x6d\x3c\xb4\xc9\xdc\x94\x15\xb0\xc8\x6d\x32\x90\x94\xc2\x91\x84\x6a\x32\x97\x8f\x53\x8a\x36\x99\xc1\x6d\x6a\x7a\x09\x2d\x71\x91\xb7\xd6\x38\x13\x97\xc4\xed\xdb\xae\x16\x0a\xda\x5e\xce\x2d\x77\x50\xe2\xb6\x96\x79\x91\xdd\x96\x80\x6a\x2b\x87\x87\x5d\x88\xb6\xd4\xc8\x69\xd2\x7d\x74\x2d\xa9\xbc\x44\x06\x89\xea\x8b\xa5\xc8\x25\x38\x03\xb7\xac\x4f\x0d\x18\x22\xb5\xd5\xe0\x02\x00\x76\x6c\x6d\x77\x81\x8a\x9c\xb6\x45\x42\x3b\x02\xbb\x85\x6b\x17\xba\xdd\x61\xdd\xb2\x45\xaa\x4a\x75\x0a\xc6\x0f\x29\x47\xbb\x06\x70\x9d\x78\x5f\x16\xb4\x31\xda\x12\xce\x5d\x12\x50\xe2\xb6\x81\x79\x8b\x04\x74\x19\xa1\x20\x6a\x62\xc0\x1b\x97\xd8\xec\xaf\x48\xf3\xda\xe2\x63\x65\x68\xc3\x82\x4a\x38\x05\xa8\x1e\xaa\xc9\xa9\xe5\xd4\xc6\x2e\x24\x94\x50\x1d\x35\xb5\xec\xbb\x30\xba\x51\x64\xa8\x29\xa4\xaa\x03\xe7\x91\x50\x59\x17\x17\xed\x1c\x2c\x88\xde\x2e\x74\xbb\xc8\x0a\x9f\x47\x64\xa2\x9a\x0f\xe3\x87\x94\xa3\x8d\x08\xb8\x4e\x8b\x9f\x1f\x8d\x1c\x11\x79\x66\xd9\x22\x2a\x90\x16\x89\x9c\x73\x71\x71\x73\x0b\x09\xaa\xb5\x0b\x11\x93\x0b\x86\xd3\x22\x32\x91\x66\x17\xc2\x0f\x29\xc7\x4d\x2f\x93\xeb\xc4\x78\x5a\x63\x59\xaa\x5f\x4c\xdb\x7b\x61\xc4\xd5\x21\xe1\x34\x0e\x26\xb1\x36\x3a\x21\x76\x56\x19\xb6\x3e\x9a\xc1\x75\xae\x38\xf4\x1a\xe9\xf0\x72\x8b\x89\x75\x72\xe4\x38\x2d\xb8\x6e\x9c\x40\xe7\xbc\xaa\xac\xd1\x1d\x1d\x78\xa3\xa9\xa8\x74\xd3\x26\x19\xda\xab\x32\x2a\x58\x91\xbc\x1a\xe8\x27\x9f\x9b\x65\x61\x86\xb6\x58\xfb\x6f\x27\xe2\x45\x44\x77\x38\xde\x94\x85\x7e\xc9\xc4\x56\xc1\xc8\x33\x76\xe6\xf9\xde\xe2\xf8\xca\x8e\xbf\xf3\x64\xfa\xdc\x39\xac\xdc\x80\xa8\x6f\x16\x39\x6e\x35\xda\x5c\x06\x80\x7c\x45\x76\x5c\x98\x88\x3c\xb5\xdc\x4b\xe9\xc7\xe8\x98\x82\xbe\xc5\xbd\x79\xd4\x9b\xfe\xbc\x6f\x19\x6f\x6e\xe5\xf4\x1c\xf1\xb8\xc7\xfa\x4f\x6d\xf3\xd6\xfd\xf9\x81\xd3\x78\xd5\x8f\x0d\x5f\xde\x39\x15\x75\x0c\xb5\xe4\x07\xc1\xe3\x56\x73\x40\x51\xa9\xc6\xaf\x75\xc7\xfa\xb1\x90\x1f\x93\x9f\xca\x77\x56\xf0\x5e\xbe\x49\xee\x62\x23\x6a\xb5\xb3\x8a\xc3\x92\xc1\x2f\xd6\xd1\xd7\x72\xf3\x21\xfc\xcf\xc7\x3e\x07\x9e\x68\xe0\xa3\xc5\x82\x63\x20\x9d\x0d\x96\x1a\x1e\xcb\x75\x3f\xca\x97\x48\xd7\x1f\x97\x52\xfc\x61\xc9\x3a\xc2\xaa\x30\x01\x0e\x0b\xe3\x6c\xb5\x57\x54\x82\x9a\x4e\x1e\x0e\x6e\x86\xa4\x81\xf0\x20\x37\x40\xed\x43\x8d\x49\xab\xb3\x31\x5f\xb6\x4e\x79\xdf\xff\xc2\xa7\xeb\xb5\xea\xcb\x4b\xc5\x1e\x6e\x20\x09\x3f\x0d\xb7\x03\xa1\x91\xa6\xa3\x1d\x5e\x68\x95\x23\xd1\x08\x7c\xd9\xa5\x63\x34\x56\x42\x84\x63\xf1\x13\x08\x24\xde\xc9\x0d\xb2\xda\xf3\xd9\x71\x6a\xda\xf3\xae\x6d\xfa\xbc\x67\xbf\xcc\xd7\x9b\x82\xbd\x3c\x8c\x05\xf3\xa6\x2d\x5f\xca\x31\x05\x3f\x6f\x18\xf3\x68\x71\x10\x4a\x26\x79\xdf\xb7\xe3\xa1\x2a\x3b\xf3\x68\xaf\x4d\xfa\xf3\xde\x08\xdc\x80\x23\x2b\x74\xce\x60\x28\x50\x7b\xea\xc2\xd7\x0e\xe8\x80\xac\xfd\xa7\x7d\xca\xee\x43\x08\xde\x10\x65\x79\xbc\x60\x4d\x3c\xd8\x4f\xf0\x94\xd2\xf0\x54\x82\xe6\x99\xe2\x9f\xb6\x11\xa7\xbb\xa0\x21\x85\x7b\x39\x4f\xf4\x2b\x03\xe4\x85\x19\x77\x0f\xc9\xd2\x4f\x03\x20\x34\xd4\x6a\xef\x14\x68\x13\x01\x12\x47\xe1\xa5\x61\xa0\xfb\x26\x78\xf7\x37\xbc\x0d\x00\xf4\x27\xc7\xca\x22\x49\xd2\x88\x04\x84\xb6\xef\x9a\xe0\x3b\xd1\x3b\x4d\x53\xb9\xcb\xed\x4c\x91\xfb\x12\x99\xa6\xfb\x8d\x9d\x89\xd7\xcd\xd9\xfb\x25\xaf\xe1\xb3\x6b\x34\x47\x6c\x80\x2a\xf7\x1b\xa4\xcd\x4d\x02\xb5\x10\xfc\xf9\xe1\x06\xf5\xcf\x72\x61\xac\x1b\x8a\x8d\x86\x06\x16\x81\x3e\x77\xb5\xf5\xc6\x08\x9f\x34\xe2\x44\x1b\x9c\xd0\x66\xc6\xc2\xc4\xc5\xde\x61\x71\xfa\x7a\x69\x1d\xa7\x0f\x77\xf6\x42\xd5\x0d\xfc\xd9\x38\xa4\x3b\x23\x31\x08\x6b\x6a\xda\x20\x3b\x3f\x85\xfb\x3c\xd0\x23\x2d\xee\x90\xc5\x6b\xa6\xdc\xce\x38\x30\x5e\x39\x1b\x02\xa9\x9c\x09\x82\x54\x0e\x14\x4f\x77\x14\x8f\x84\xb8\xdf\x94\xe8\x33\x30\x3c\x6d\x60\xbc\x66\x36\x04\x52\x33\x13\x04\xa9\x19\x28\xbe\xcb\x9f\x3b\xd2\x2a\xf2\x96\xe8\x35\xee\xc5\x45\x01\xf1\x7a\x59\x00\x48\xb5\x0c\x08\xa4\x56\x66\xe9\x74\xdf\xeb\x48\x47\x7a\x08\x89\x4a\x49\x77\xeb\x08\x5e\xd6\xa7\x46\x47\x52\x98\x6d\x5c\x13\xed\xa2\x5c\xab\x14\x47\xbc\x75\x5c\x18\xa4\x81\x20\x10\xd2\x46\x16\xc0\x3d\x4e\x50\xb4\xe6\xb8\xcc\x16\x00\x22\xb0\x01\x81\x48\x6b\x96\x4a\xaf\x04\xda\xc0\xd4\x3c\xa9\x03\xe3\xc9\x80\x40\x67\x49\x3d\x65\x3c\xe1\x96\x86\xe1\x6d\x23\x06\x94\xf4\x31\x52\xe0\x78\xdd\x5c\x18\xa4\x7a\x10\x08\xa9\xa1\x05\x70\x87\x37\xd0\x58\x0a\x84\x2b\x8c\x50\x73\xd2\x01\x48\x81\x13\xeb\x93\x03\x83\xad\x50\x00\x08\x5b\xa3\x20\xc0\x3d\xae\x3a\x53\xc7\xd4\x2f\xac\xc5\x2b\xa9\xdc\x73\x04\x34\xa5\xf4\x2c\x10\x54\xed\x19\x30\xa8\xe2\x33\xcb\xef\x70\xa6\x19\x23\x22\xda\x75\x36\xe2\xd0\x7e\x32\x63\x2e\x11\x5e\x31\xa3\x12\xd2\x8c\xc3\x0d\x21\x68\x46\x5b\x6e\x34\xe4\xa3\xea\x21\xd3\x7b\x66\x48\x23\x6f\x7b\xfd\xaf\x73\xdd\xcb\x70\x03\xa4\x88\x87\x41\x5e\x61\xda\x6a\x8f\x80\xfa\x55\x7b\x1e\xa4\x67\xa8\xa9\xfb\xb6\x91\x11\x91\x66\x8c\xe4\x0d\x71\x07\x3a\xed\xa9\x07\x90\x6c\x57\xdf\xa0\x31\x50\xc4\xf8\x71\x70\xb0\x51\x34\x22\xf1\x01\x85\xe0\x88\x61\xc5\x9f\xd6\x74\xde\x45\x34\x7d\x68\x5d\xdf\xb2\xfe\xf8\x0a\x6f\x98\x79\xaf\x94\x19\xb1\xa3\x05\xab\x58\xff\x45\x6f\x77\x0a\x61\x47\x63\x5a\x3b\x03\xa7\xde\x7d\xb6\x6c\x65\x40\xd5\xd8\xd5\x27\x96\xb7\x71\x01\x9f\x46\xf3\xf3\x7f\x1e\x7e\xee\x17\x41\xea\x36\x5a\x04\x0e\x60\x8a\x10\xe1\x44\xe6\xca\x8d\xdc\x61\x04\x65\x12\xea\x94\x16\xc9\x2e\x27\xef\xb4\x4f\x6e\x16\xb1\xbf\xf0\x11\x0e\x3d\x33\x64\x6e\xfc\x00\xd5\x40\x7f\x1b\xef\x35\xf9\xf9\xaf\x87\x9f\x3b\xf9\x7b\x3a\xdb\x88\xbd\xf9\x54\x67\x83\x1d\x97\x5f\x1a\xba\x9b\xcd\x10\x21\x7f\x6b\xa4\xe9\xb4\xa6\x10\xdb\x2c\xef\xc8\x09\x64\xdd\x37\x77\x52\x80\x6a\xa0\x83\x8d\x57\x69\xbc\xfc\x19\x63\x77\x32\xf7\xf4\xae\x11\x26\xf4\xb9\xa9\x6c\xed\x3a\xfd\x02\xd1\x1d\x6c\x06\x34\xf9\x5b\x43\xbc\x61\x39\xa9\x41\xf8\xa6\xd3\x47\xd4\xfb\x70\x84\xe5\x05\x30\x89\x06\x7a\x78\x7c\x7e\xc3\xcb\x3d\x63\xcb\x62\x75\xbc\x5b\x00\x4f\x2f\x8f\x21\x4e\x9f\xea\x64\xb0\x0b\x0f\x89\x43\xf7\xb1\x11\x89\xe5\x6f\x0f\xfe\x28\xd0\xe4\xf6\x50\xdb\x66\x6f\x47\x07\xd2\xe3\x63\x1a\xc2\x7d\xa0\x00\xab\x1c\x78\x75\x20\x30\xd8\xf2\xd3\xe3\xc4\x05\xc3\x0d\xa6\xf2\xc9\xf0\x05\x3d\x0e\x1d\x0a\xa8\x4c\x56\x10\x12\x26\xd0\x18\x71\x84\xcf\xf9\x3a\x34\x80\xc7\x40\x22\x50\x1d\x4a\x19\xc1\xc0\xf6\x7b\x5b\x98\x1e\xc1\x30\x66\xcd\xdf\xcb\x59\xbe\x79\x0c\xdb\x1b\xd6\x5a\x54\xfb\xf5\x54\x28\x89\x2f\x45\x34\xb8\x12\xd5\x51\x96\xc6\xd3\xe6\x70\x2f\x77\x9f\xe6\xaf\x23\x57\xf6\xcd\xfa\x74\x98\xc6\x9d\xfb\xa6\xbe\xba\x41\xad\x7c\xd3\xe4\xb8\xff\x31\x0d\x0a\xc3\x02\x49\xe6\x3f\xa8\x41\x95\x33\xca\x3b\xf2\x03\xc9\x54\x3d\x74\x03\xcd\x0a\xb2\xd5\xfa\x65\x38\xe4\xdb\xd5\xf6\x6e\x19\x3c\x1a\x09\x44\xe5\x7d\x4a\xc7\x42\x37\x5d\x48\x24\xba\xbf\x61\x0c\xa1\xbf\x59\x9e\x9f\x8f\xab\x89\x4a\x49\xb9\xe6\xbc\x26\x72\x20\x0d\xa4\x87\x6e\x68\xd7\x6b\x26\xda\x0c\xc9\xf0\x94\x3d\xde\x2d\x83\x6f\xdb\x6b\x06\x10\x7e\x72\xe3\x0b\x9c\x96\x21\x99\x3c\xdb\x5e\x10\xef\x18\xf0\x07\x3c\x65\x53\xf7\xa7\xd2\x59\xe9\x23\x1b\xca\x65\x47\x93\x0d\x1a\xcd\x63\x96\x40\xaf\x04\x07\xb6\x2a\x56\x13\x6d\x39\x27\x0a\xd2\x23\xc1\x17\x74\x37\x70\xe1\x06\x04\xf2\xd9\xcd\x46\x6c\xa6\xbf\x49\xd6\xab\x7c\x39\x71\x41\xa1\xae\xae\xaa\x72\xda\x73\x0c\x21\xa4\x60\xe5\xb1\xa9\x93\xc5\x29\x37\xd3\x43\xf0\x2c\x43\x7a\xbd\x27\xbc\xcc\xa0\xdc\x43\xec\x49\x13\x7b\xcd\x3b\x1e\x86\xe7\xf6\xd1\xc4\xa4\x48\x38\xbd\xe1\xd7\x3b\xf3\x38\x01\x72\x43\xa5\xd8\xf9\xd2\x7f\x77\xe5\x1c\x9d\xf7\x01\x1c\x2e\x0b\x0c\xb0\x50\xed\x15\x4c\xeb\xa3\x00\x43\x39\x7d\x14\xdc\xa1\x79\xd7\xf3\x42\xf8\x95\x39\x4c\x51\xb6\xec\xc8\xbd\xcb\xc7\xa6\xba\x9e\x6b\x1c\x61\xa8\x1c\x0a\xae\x5c\xe2\x30\x13\x00\x3b\x27\x2b\xb3\xf3\x4d\x52\x66\xfb\xab\xcb\xe3\xd9\xe5\x3d\x01\xa3\xc9\x44\x18\x46\xcb\x6d\x8c\xb5\x1c\x7d\xef\x22\x54\x84\x42\xf1\x8e\x56\x0e\xac\xa7\x09\x8d\x95\xad\x51\xac\xe0\xd4\x78\x42\xd1\x02\x73\x60\xb5\x71\xb1\xe8\xc9\x30\x0e\xb2\x44\x5e\x95\x0f\xe0\x9a\x0d\xaf\xc6\xb4\xb8\xb6\x9f\x2c\xc7\x03\x13\xb2\x4b\x5a\xdb\xa3\x66\x51\xd2\x82\xe0\x28\x08\x77\x29\xb6\xcb\x3d\xe3\x05\x52\x82\xbd\x38\xf8\x99\x67\x23\xdd\xf1\xa8\xc9\x1c\xce\xe6\x79\x13\x05\xc9\xa5\xe0\x03\xf9\xa5\x6d\xde\x76\x99\x95\x44\xea\xc3\xa4\x17\x3c\xb2\xb0\x42\x1c\x7d\x27\x18\xaa\xd5\xcc\xf8\x5c\x2d\x90\xf9\xf1\x92\xbf\x94\x35\x3f\x10\x9b\xb3\xaa\x2a\x2f\x5d\xd9\x11\xc5\xf0\x65\x2c\x50\x54\xb3\xf7\x9e\x28\xba\xb4\xec\x5b\xd9\x5c\x3b\x6f\xf8\x9d\xd9\x0c\x91\x9e\x4c\x2b\x68\x8a\xc0\x37\x07\x81\xc4\x28\x36\xc3\x0f\xc0\x88\x77\x17\x62\x5c\xf9\x1a\x5b\x37\x7d\x79\x2a\x8f\xbc\xce\x9e\xa4\x97\x14\x53\x44\xce\xe3\x69\xf8\x91\x28\x22\x5e\x5b\x45\x1b\xa7\x3a\xe9\x63\x3a\xc6\xb2\x62\xb1\xc6\xfc\x84\x50\x06\x10\xa7\x99\x52\x5e\x56\xf4\xb9\x2f\x28\x18\x86\x39\x5a\x77\x07\xf8\x98\x9c\x1c\x16\x7c\x77\xba\x11\x24\x2c\xd8\x73\x74\x3d\x34\x11\x88\x44\x36\x3f\xb4\xe3\xa9\xaa\x91\x36\xa6\x6e\xde\xda\xfc\xa2\x0f\x46\xb9\x3a\xe3\x19\x77\x78\x34\xb9\xfa\x4b\x20\x3f\x24\x2a\x97\x86\x0d\xdd\x71\x76\xc1\x62\x10\x40\x08\xf3\x70\x2c\x8d\x1c\x64\x26\xaa\x25\x82\x87\x45\x64\x39\x2e\x43\x0b\x02\xea\xd5\x80\x59\x18\x11\x0d\xe6\x37\x1d\xc2\xa0\x3e\xee\x6c\x28\x15\xcd\xa3\x07\x9c\x43\x4a\x7d\x84\xb4\x86\xaf\x3b\x07\xce\x0e\x13\x1e\x25\x54\xf7\x0d\xd6\xf9\xf0\xf3\x41\x2b\x00\x70\x8c\x2f\xd2\x0e\xf1\x71\xef\xae\x09\xea\x7f\xa9\x75\x2c\x6f\x5c\x58\xd8\xc2\xac\x4d\x43\x07\x8a\xbf\x75\x22\x21\xa5\x56\x3f\x0c\xeb\x22\x94\xfe\xd4\x38\xf7\xc7\xcd\xb1\xbd\x95\xaf\xd4\x0c\x10\xf8\x58\xbc\xb2\xea\x32\x5b\x88\x55\x05\x48\xfe\x11\x30\x3c\x04\x0a\xd0\x72\xe6\x9c\x6a\xd9\x19\x24\x77\x7b\x4c\x53\x89\x13\x4a\x15\x25\x4c\x27\x0e\xea\xdb\x2c\x68\x00\x7a\xb7\xa0\x41\xa8\x0d\xc0\x50\x79\x87\xf4\x1e\xa6\xf8\xd3\x80\xfa\xec\x17\x64\x63\x57\x25\x22\x2d\x82\x75\xa4\xab\x0a\x45\x02\x00\x4b\xc1\xab\x42\x7e\xd1\xdd\x3c\x43\x52\x05\xea\x62\x37\x38\x48\x18\x8b\xc5\x7d\xed\x91\x45\xad\xa9\xa8\x48\x42\x55\xa6\x6e\xb1\x02\x6f\x99\x51\x29\x79\x39\x13\x78\x56\x4c\xf9\xf8\x9d\x43\xb0\x09\x1f\x06\x07\xab\x8a\x60\x57\x3e\xaa\x6d\x1b\xab\x0a\x23\x85\xe8\x2d\x3a\xbc\xc2\xc6\x4c\x94\x8a\x0a\xa4\xe5\x9d\x4b\xfb\x90\xc2\x36\x52\x9b\xa9\x7c\xa6\xb3\x58\x70\xa9\x2b\x23\xa1\xa1\xe6\xa4\x37\x77\x86\xa5\x69\x6f\xef\x96\xfe\xba\x18\x99\xa3\x22\xaa\x62\x42\x07\x6b\x62\x02\xfb\x2a\x02\x36\xb7\x56\x4d\xec\x32\x4f\x55\x22\xe4\x0f\x0b\x4d\x48\x6a\x6e\x95\x03\xec\xe1\xaa\x13\x01\x6c\xac\x46\x01\xe8\x5d\x34\xdd\x71\x2d\xf4\xb7\x44\xa4\xb0\x6e\x52\xa8\x10\x70\x8c\xa8\x20\x95\x54\x6c\x8f\x44\x4a\xec\xe0\xc4\x48\x0e\x90\x62\x6a\x00\x11\x9c\x74\xcd\x13\xc6\x8a\xba\x0a\x39\x65\xc4\x44\xe3\xec\x26\xf2\x30\x93\x33\x4f\x19\x43\x53\x30\xe2\xeb\x60\x8e\xa7\x68\xf0\xd8\x1a\x10\x63\xeb\x1e\xcc\xf8\x1a\x61\xe3\x6c\x32\x1a\x91\x40\x9b\xc4\xe7\x2e\x3a\x7e\xf3\x89\x15\xa6\xa7\xc0\x45\x31\x7e\x8d\xf1\xd6\xd1\xc8\x61\x0f\x1e\x8d\x6b\x38\x38\x64\x05\x80\x7b\x43\x2c\xf3\xaf\x6d\x59\xff\x3e\x6a\xe5\xb2\x1b\x8a\xaf\x17\x56\x4c\xb5\x11\x46\xcc\xdf\x20\x3b\x9a\xc5\x6f\x41\x63\x42\xda\x31\x56\x0e\x7b\x68\xd6\x20\xf4\xa8\x8e\x02\x75\xce\x5c\x02\xc6\xaf\xb1\xdd\x86\x23\xc7\x75\x1b\x8e\xcb\x6f\xa8\xf1\x9c\x01\xf0\x65\x85\x48\xac\xdf\x10\xe3\x61\x36\x15\x75\x92\x5d\x19\xa0\xea\x7b\x93\x61\x12\x9d\xd0\x20\x91\x74\x84\xd3\x26\x91\x1b\xa4\x71\x77\x51\xd6\xaf\xac\x2d\x7b\x7f\x96\xf6\xc7\xad\x48\x7f\x6e\x50\x42\x5f\xa9\x50\xbc\x78\xf6\x50\xf1\xbb\xfc\xc7\x91\xca\x9b\x6f\xfd\x71\xfb\x7c\x79\x7f\x98\x5d\xda\xb2\xee\x6f\x63\x3b\xbc\x36\x6d\xf9\xd7\xa6\xee\xf3\x0a\x4c\x43\x50\x43\x31\x3c\x0e\x79\x57\x76\xbb\x74\x4f\xce\x6c\x38\x75\x44\x52\x75\x73\x1b\xcc\xbf\x03\xc2\xf4\xae\x0f\xf8\x7d\x84\xcb\xc7\xc1\xac\x9b\xf6\x9c\x57\xb7\x08\x48\x6a\xe3\x18\xc3\x05\xdf\x51\x7a\x30\x87\x8e\xba\xb9\xef\x96\xb8\xcd\xb7\x41\x95\x84\xd9\xd1\xd4\xb8\x1b\x40\x7e\x93\x20\x24\x8d\xdf\x8c\x9d\x1b\x6f\xae\xbc\x6d\x9b\xb7\x07\x64\x39\x71\xc0\x3d\x8f\xa0\x3c\xca\x41\x59\x9e\xf3\x17\x36\x13\xff\x24\xe5\xf9\xc5\xc8\x96\x6c\x39\x17\x4c\x2f\x28\x92\x9b\x5e\xa1\x21\x45\x22\x6b\x32\x9d\xab\x9f\x2b\x7e\xe8\x88\x40\xf3\x09\x9b\x7e\x2e\x91\x2f\xfb\x06\xdd\x3e\xd0\x5f\x19\x99\xb3\xc1\xf0\xa3\x4a\x44\x63\x65\x47\xd8\x8e\xa6\xce\xaf\x5c\x86\x80\x97\x50\x80\xfe\xef\x01\x50\xd3\xbe\xa0\x61\x4d\xd7\x5f\x24\xac\x4b\x18\xa6\xee\x20\xab\xa8\xe7\xb4\xa8\x25\x91\xb7\x98\x40\x14\x13\xd5\xc1\x04\xd9\x8c\x09\x54\x3e\x4f\x11\xcc\x15\x8a\x48\xb9\x6f\x07\x6c\xe1\x44\x77\x71\x40\xf7\xe8\x6a\xc6\xf5\x50\x04\xb8\xd9\x49\xf1\xe0\x28\xf9\x88\x46\x77\x2a\x23\x9a\x3e\xbe\x36\x21\x78\xbb\x3a\x91\xf0\x38\x83\x98\xb1\xe0\xd4\x88\x8f\x88\xf8\x0a\x05\xc0\xed\xfa\xc4\x81\xa3\xe4\x23\xc6\xa7\xae\x4c\x40\x9a\xbf\x85\x2e\x33\x15\x78\xa2\x12\x8a\xcf\xac\xcf\xdd\xf5\xd0\x97\x7d\xc5\xec\xef\xd8\xc7\xae\x6f\x1b\xed\x85\x3c\x5e\xdb\x96\xd5\xfd\x3f\x0d\x7f\xf8\xdb\x81\xb7\x22\x3b\xf5\xce\x04\xfd\x5f\xf2\x42\x9f\xe7\x29\x36\xea\x36\x1f\xd6\x22\x8b\xe0\x95\x3c\x1c\x27\x74\x27\x0f\xc7\xf2\x5f\xca\xe3\xc6\x02\x76\x91\x50\x5b\x11\x37\x33\x90\x03\x24\x3e\x1b\x20\x06\x0e\xd9\xf6\xf0\xfd\x59\x18\x1c\xe3\xb7\xc3\xf7\xcc\xfa\xb4\x74\x3f\xad\x0e\xdf\x97\xd6\xa7\xf5\xe1\xfb\xca\xfa\x24\x1e\xf0\xe0\xb2\xe8\x2d\xa1\x4a\x4c\x46\xdc\xaa\x4c\xe5\xfc\x51\xdd\x98\xa6\x3f\x13\xb2\x1f\xbe\x67\x0e\x2b\x60\xbf\x5a\x08\x83\x7c\xa0\x9c\x3f\x2a\x01\x6a\x04\x8a\xb7\x5b\xfe\xb4\x8c\xd3\x5e\x00\x68\xb3\x5d\x2c\x01\x99\xa1\xad\x20\x84\xd5\xe2\xef\xd9\x56\x87\xbe\x6c\xc7\x57\x96\x44\xa2\x6e\x4d\x65\xfd\xbe\x5c\xeb\xcc\x5b\xe3\x63\x4c\xcb\x35\x00\x5b\x2d\xdf\x57\x4b\x05\xb6\x1a\xdf\x8c\x5a\x2d\x01\xd8\xfa\xe9\x7d\xfd\xa4\xc0\xd6\x4f\x1a\x6c\xfd\x04\xc0\xb6\xeb\xf7\xad\x66\xba\x1d\x99\x6e\x21\xd3\xe7\xed\xfb\xb3\xae\xc2\xf3\xd6\x78\xf9\x0b\x80\x65\xcb\xa7\xf7\x6c\xa9\xd9\x66\xcb\x91\x6f\x26\x82\x69\xe0\x89\xbe\x73\xd2\x8c\x0c\x6d\xa0\xf8\x44\x2a\x3a\xe9\xb8\x7b\x40\x15\x20\x80\x3f\x36\x85\xad\x3b\x2f\x2d\x33\x42\x09\xe4\xd1\x94\x0d\xc1\x11\x4d\x30\x1e\x97\x63\x42\xfd\xa6\xae\xb0\x92\x57\x85\xb5\x6a\xe1\x8a\x45\x40\x8b\x99\xad\xae\xbf\xee\x0e\xec\xd4\xb4\x6c\xb0\xd3\x5f\x78\xc5\x86\x6d\xc4\x03\x3f\x48\x02\xd0\x54\xb1\x40\x17\xda\x7c\x93\xfe\xac\x13\x95\x8d\x77\x92\xf9\x6f\x55\xde\xb3\xff\xfe\xcb\x7c\x93\xfe\xfc\x90\xe8\x0f\xff\x43\x7e\x90\xf9\xd2\x64\xba\xb4\x51\xc3\xc2\xda\x8e\x07\x7a\xe8\x95\x5a\x17\x58\xa6\x3e\x27\xee\x63\xba\xf0\x32\xef\x37\x19\xe2\x61\xc3\x8b\x94\xd7\xd8\x55\x31\x17\x56\x67\x7d\x26\x2e\x1c\xb9\x18\xe2\xbc\xd0\x95\xb1\xc6\x78\xaa\x23\x44\x1b\x5c\x27\xc4\x25\x62\xf0\x91\x16\x56\xa9\x5f\x89\x10\x6e\xac\x19\xbc\x8f\x87\x7f\x8c\x7b\x4a\x2c\x8f\xa1\x5a\xbc\x8d\xdf\x9d\xf5\x5a\x4d\x65\x63\xcb\xae\x2d\x1d\xa1\x6c\xf5\xfe\x53\xa7\xd0\x52\x5f\xe6\x87\x1c\x93\x4d\x18\x08\x5e\xc4\x6f\x79\x75\xc5\xc6\x9a\x1a\x3e\x06\x2a\x4f\xb4\xe5\x67\x88\x61\x75\xf3\x53\x59\x55\xa1\x1b\xc3\x32\x9c\x4c\x21\xea\x69\x30\x41\x64\x3e\x3d\x30\x02\x11\x82\xd3\xb8\xa4\xf8\x0e\x8a\xb8\x9c\x7b\x7f\x13\x9b\x34\xee\x68\x6b\x80\x1e\x68\x74\x88\x25\x2e\x9d\x4e\x68\x68\xa9\x2a\x30\x1a\x31\x6d\xed\x43\xa7\x9b\x1b\xc1\xe2\x37\x29\xe3\xe5\x5e\x9a\xf3\xd4\xc0\x8f\x90\x99\x44\x25\xe5\x75\x30\xd4\xa5\xb9\x09\xf2\x4a\xa5\x89\x53\x89\x91\xda\x4f\x80\x96\x1d\xc1\xe3\xf7\xd3\xe2\x65\x57\xba\x1a\x21\x11\x21\xb8\x0f\x9b\x94\x1a\x43\xe2\x97\xc0\x3e\x27\xb5\x24\x71\xa7\xd4\x0a\x7b\x92\xd4\xea\x2a\xd3\x84\xa1\x22\x17\x3a\x9c\x4a\xcc\x50\xf1\x13\xa0\x87\x0a\x82\xa7\x6e\xe5\x4c\xd0\x28\x72\xd5\xc5\xa9\xc4\xe8\x14\x3f\x01\x5a\xab\x20\x78\xf2\x9e\x49\xbc\xf4\xb6\x09\x00\x88\x44\x08\xef\xc7\x27\x65\xc7\xd0\xe4\xf1\xc1\xf8\x58\xa9\xd8\x02\x83\x79\xc4\x4f\x09\x34\x84\xd8\xef\x0a\xff\x35\xb1\xc8\x8d\x0f\xff\xe9\xa7\xf1\xb0\x1c\xc7\x0a\x6c\x61\x3c\x6b\x24\xe1\x03\x56\xad\x9d\xa5\x74\x4c\x8e\xab\x96\x2b\x93\xb6\x7a\xff\xc7\xa0\xed\x37\x82\xf7\x58\x86\xc6\x3d\x56\xc3\x85\xf1\x56\x8e\x41\xde\x6f\x33\xe3\x39\x56\xcd\x65\xc0\x24\x2f\x1f\x95\x31\xa8\xd3\x16\xf6\xde\x49\x52\x68\x5f\xfa\x37\x29\x8f\x0f\xb1\x18\xc4\x43\x26\xb9\xcd\x42\x7c\xa4\xda\x46\x3e\xc7\x02\x5a\xab\xb6\xaa\x03\x60\x5e\x83\xe6\x3c\x9e\x27\x97\x12\x60\x7c\x10\xc3\xa0\x1f\xb2\xff\xed\x3a\x8a\x8f\x14\x8b\xf1\xad\x08\x73\xf0\x06\x36\x0c\xf6\x18\x10\x1f\x29\x16\xfa\x15\x05\x30\x0a\xbc\x1b\x8c\x3d\x96\xbf\x8d\x64\x20\x0e\xd0\x20\x03\xf1\xed\xe6\x46\x8c\xab\x3d\xc6\xcf\x56\x53\x73\x7f\x30\x2b\xac\xb6\x96\x5f\xe9\x01\x45\x76\x9d\xc4\x4c\xf2\x19\xfe\x5d\xf8\x5a\x71\x76\x06\xd2\x2b\x82\x84\xfa\x27\x62\xdf\xf1\x94\x70\xed\xdd\xd5\x6b\x09\x49\xdb\x89\x92\x42\x78\x43\xdf\x5a\x05\xaf\x6e\x32\xdd\xbd\xaf\x01\xd4\xc3\xa4\x11\x0f\x92\x6a\x24\xfd\xf4\xe8\x1d\x4f\x8e\xfa\x9f\x1a\xbd\xe7\x89\x51\x8e\xc3\x15\x3d\x2f\x37\x5b\x07\x7e\xb5\x04\xcc\x74\x8d\x20\x18\x2e\x94\x0f\x06\x17\x0d\xd2\x1f\x9f\xc5\x30\x77\xed\xba\x98\xc7\x54\xc1\xca\xab\x03\x6f\xd5\xb7\x0f\x2a\x2f\x34\xa2\x66\x86\x1f\x8c\x1a\xc7\xef\xdb\xf2\x32\x08\x7d\x07\x61\x73\x25\x19\xf5\x04\x6c\x15\xf5\xed\x75\xcc\x0c\xcd\x33\x34\x0a\x8f\x5b\x3f\x41\x8c\xba\x7f\x15\x4d\xfa\x0b\xfb\xc6\xea\x07\x6f\x4d\x5f\xba\xe0\x45\x03\x18\x0d\xe4\x8d\xc8\x1a\xe8\x25\xc3\x7f\xd1\xd8\x95\xb1\x38\x14\x56\x30\x82\xfb\x82\x78\x0c\xa8\xd0\x3b\xf6\x1c\x92\x1f\xaf\x20\x81\x05\xea\xb0\x0a\x8b\x39\x40\xbf\x13\x41\x08\x83\x24\x20\x7c\xcf\x68\x88\xf1\xf9\x12\x04\x08\x79\x75\xfb\xbe\xcb\xc0\x34\x71\x53\xfa\x7b\x6f\x2e\x73\xea\x31\xd7\x80\x6d\x40\xa4\x25\xc4\x05\x0b\xf0\x34\xbd\xba\x73\xa1\xb0\x43\xb1\x6c\x00\x8e\x6a\x47\xf8\xe0\xb9\x4b\x3f\x66\x38\x8a\xaa\x8f\x4e\x6b\x6c\xc6\x90\x86\x2b\x34\x88\xb1\xeb\x71\xc4\xed\x1d\x70\xdf\x4b\xbc\xe0\x0d\xaf\x5f\x89\x6f\xd8\xed\x34\x20\x6d\xa2\x7c\xfb\x56\x5b\xdb\x6f\xcb\xcf\x55\xdc\x92\xe3\xa0\xf7\xed\x2a\x9c\x3d\x84\x85\x1b\xd8\x35\xc0\x95\xde\xc2\x0d\x6c\x09\xa0\xf5\x6f\x1f\x2a\xd0\x06\xbf\xa3\x94\x2d\xd4\xb0\x87\xdd\x41\x51\xf6\xb8\x53\x01\x9f\x51\xee\xad\x7b\xd0\xde\xf6\x62\x07\x4d\x69\x2f\x76\xc8\x4c\xf6\x22\xbb\xc1\x75\x2d\x3a\xa8\xdc\x40\xba\x6c\xe3\x42\x8a\xa3\x7e\x73\x4a\x93\x73\x95\x8f\x6b\xf5\xe6\x0d\xd4\x35\xd9\x13\x32\xb2\x25\xe9\x91\x52\x48\x7b\x08\x2a\x31\x93\x06\x91\xda\x5d\xc6\x68\x79\xe9\x99\x88\xcc\x64\xf3\xb1\xff\x14\xb9\x00\x2b\xad\x48\x0f\xb9\xc8\x83\x39\x67\x38\x98\x86\xb0\x15\xc2\xe0\x79\xd3\x08\x3e\x5d\x94\x18\x4b\x86\x8f\xb9\x72\xa5\xe8\x13\xd8\x8d\x30\xfb\x3c\x15\x52\x38\x9b\xf1\xfc\x5d\x58\x92\x38\x8e\x7a\xe5\x8e\x28\xa6\x4c\x3b\x71\xe9\xdb\x23\x0a\xbf\x21\xe0\x39\x37\x72\x10\x39\xd4\xb0\x3b\x42\x8f\xb0\x3e\x8c\xd0\x1a\xfe\xcf\xed\xad\x69\x8b\xf9\xa1\x65\xf9\xef\x3b\xfe\xdf\xf9\xf0\x61\x04\x4b\xd8\x79\xb4\x70\x92\xee\x92\xd7\x12\x91\x17\x8c\x5f\x6f\xe6\xa5\x4d\x15\xb2\x3c\x22\x0e\x72\x2a\x70\xbe\x9a\x5b\xde\xa9\x73\x59\x14\x15\xfb\x90\x32\x91\xb7\x43\x45\xc0\x28\xb8\x20\xba\x4d\x53\xeb\xe9\xb2\x6c\xb9\xf9\x50\x92\x99\x1b\x3a\x29\xd5\x1e\x95\x94\xc3\xff\xba\x78\x2d\x5f\x5e\xc5\xba\x01\x5e\xc2\x92\xf1\xde\xc0\xd2\xe3\x6a\x76\x58\x37\x8b\x87\x5f\x17\x66\x93\xba\xa5\x0a\x0f\x10\xd5\x66\xdf\x50\xc2\x03\x06\xcc\xbc\x19\xb0\x68\x69\x26\xe2\xb0\xf1\x56\x66\x21\x2c\x5a\x23\x71\x33\xba\x70\x83\xaa\x4f\x55\xba\x75\x75\xb0\x2a\x7a\xc4\x52\x71\xab\x2a\x82\x2b\xd2\x7b\x37\x48\xda\x6c\xfd\xb5\xd3\x77\x43\xd7\x8d\xa3\xcd\xec\x3d\x30\x1a\xc6\xbe\x37\x33\x69\x27\xb9\xba\x4a\x63\x7c\xab\xca\xc5\x98\xb2\x28\x37\xee\xe0\xee\x9b\x4b\x7e\x2c\xfb\xef\xbb\x6c\x64\x89\x77\x83\x59\x8a\xf5\x84\x59\xee\x76\x86\x59\x8a\xf5\x87\x59\x8e\x76\x89\x09\xe0\xf6\x8a\x59\x8a\x75\x8c\x95\x5c\xdc\x49\x22\x8e\x64\x15\xc7\x0e\xc7\x6d\x05\x64\x27\x4c\x7e\x88\x39\x3f\x27\x1e\x50\x03\x0f\x45\x8e\x01\xe5\xa9\x75\x21\x60\xac\x9b\x8e\x8e\x5a\xf2\x37\x17\xc7\x47\x18\xf5\xdf\x72\xd9\xb2\x9e\x64\xd4\x7f\x1b\xc5\x48\x76\x0b\xbd\xf8\x21\x4f\x20\x8e\x98\xde\x30\x16\xc2\xdc\xfd\xec\x32\x77\xcc\xdb\x62\xc6\xff\x3b\x97\x21\xf3\x45\xdb\x5c\x8a\xe6\xad\x9e\x2d\xaa\x26\x2f\x58\x8b\x05\xc4\xa1\x6b\xe1\x12\xae\x85\xfe\xa5\x6f\x69\x54\x57\xae\x74\xfe\x85\xcd\x1a\x1e\xab\x87\x91\x03\xb1\xa2\x59\x18\x6b\x8d\xb1\xd0\xd7\x3a\xcc\xa8\x31\xa3\xd3\xf5\xdf\x63\x24\x19\x78\x87\x73\x0b\x3a\xdd\x89\x39\x1b\xb9\xc0\x93\x19\x1e\x75\x66\x8e\xad\x35\x1c\x5b\x6b\x6b\x6c\xad\xe1\xd8\xb2\x63\xd6\x46\x36\xe0\x74\x87\x07\xad\x19\x5c\xf4\xdf\x63\x20\x9b\xc9\x45\xff\x6d\x14\x9b\x21\x6f\xaf\x8c\x47\x4f\xde\xc8\xb7\x09\x07\x13\xa8\x62\x7d\x3f\x4c\xfa\x41\xff\xd5\x2f\xdc\x2a\x82\x1e\x09\x9e\xb4\x69\xd4\xa1\x88\x63\x43\xaf\x93\xb1\xce\x8d\x71\x61\xb5\x17\x00\xeb\x69\x4e\xe3\x05\x34\x8d\xc3\xe3\xd4\x74\xb6\x0b\x1e\xce\x09\xb1\x3e\xd4\xe8\xff\x7f\x7f\xa8\xee\xc7\xa2\xbe\x9e\x0f\x43\x55\x26\x78\x09\x08\xa1\x31\x77\x81\xbb\x22\xab\x01\x1c\x99\x09\x44\x5e\xc5\x32\x86\xfa\xc2\x70\x2e\x48\x37\x4c\xe2\xdc\xd7\x92\xa4\xb0\x53\xc9\x71\xa4\x4d\x58\xa6\x82\xa9\xac\xac\xbb\x3c\x6a\xf8\xcc\xdf\x65\x3c\x30\xe2\xf8\x38\x37\x45\x5e\xcd\x8f\x55\xd3\x31\x34\x6d\x95\x93\xac\xca\x49\x51\x85\x26\xa6\xa2\x6b\x15\xff\xae\xc7\xde\xf3\x3a\x08\xf6\x52\xaf\x84\x76\x1e\xeb\x35\xad\x25\xcb\x4e\x0a\x79\x72\x21\xb2\x69\x49\xf9\x5d\x50\xe2\x89\xc2\x85\xd8\x93\xba\xd6\x1a\x48\x8b\x02\x04\x02\x09\x31\x72\x98\xc1\x28\xfd\x88\x33\xf2\xa4\xc9\x51\xb0\x53\x7e\xad\x7a\xec\x06\x83\x45\xe8\xd7\xaa\xdc\xa9\xa5\xd2\x3e\x56\x92\xd3\xf8\x7f\x4b\xd3\x74\x79\xfa\x09\x20\x36\x15\x68\xcd\x6b\x15\xe7\x17\x47\x6f\x3e\xc6\xbd\x1b\xe3\x7a\x09\x6c\x2f\x38\x6c\x6f\xe0\x51\x85\xe2\x82\xa2\x6b\x45\x3a\x66\x21\x86\x70\x80\xba\x94\xc4\x77\x84\xcc\xe8\x7b\x85\x08\x54\xaa\x1e\x08\x45\xe7\xeb\x81\x70\x54\xd2\x1e\x03\x8a\xbb\xb8\xdb\xb6\x79\x9b\x77\xec\x92\xb7\x79\xdf\xb4\x4e\xcf\xeb\xbe\x5e\x66\xcf\xcb\x9f\x1c\xf4\xc3\xb5\xaa\x58\x1f\x85\x9f\x2e\x11\xfc\xa2\x89\x42\x4e\xd3\xc3\xa3\x8b\xcc\xbd\x7b\xac\xe8\xa2\xd8\x2f\x1f\xff\xed\x4f\xc2\x72\x8c\xf1\xc1\x3a\x0b\x2b\x37\x36\x07\xb3\xc2\x5a\x92\x94\xce\x05\x29\x65\x33\x99\x30\xd1\x32\xe6\xb2\x07\x4b\x91\x18\x44\xe7\x62\xdb\x88\xcc\x16\xb8\xef\xa3\xe7\x0e\xcc\x16\x35\x6a\x1d\xb9\x69\x77\x78\x45\x9d\x41\x98\x58\x54\x3e\x2d\x62\x3b\x13\xe1\x95\x87\xc2\x89\x9b\x2c\xd6\x45\x57\x5e\x22\xb1\xf5\x91\x9e\xbe\xaf\x3a\x14\x9e\x9a\xc6\x78\xd9\x8c\x5f\xf8\x70\xac\x99\xd0\x2a\x09\x48\x71\xb8\x38\xbd\x15\xbe\xbe\x3d\xa5\x01\x0c\xf6\xe4\x71\x53\xab\x3c\x78\xb0\x86\x82\x42\xb2\xe0\x97\xd5\x63\xef\xff\xab\x4d\xd3\x0d\x33\x90\x30\x0b\x45\x21\x18\xab\x8c\xfe\x36\x3f\xb3\xfa\x3a\x03\x20\xfa\xe0\x57\x65\x8a\x04\xb0\x76\x4f\x9b\x98\xf2\x50\x09\xc2\xf3\x05\x8f\x1b\x2d\xfa\x40\xc9\xc4\xb9\x5e\x6c\x04\x65\x7b\x1b\xf6\xb4\x6a\x82\xf5\xe8\xef\xe5\x43\x46\x3c\x3b\x3c\xfc\x36\x30\xf8\x20\x24\xe5\x66\x86\xbc\xb8\x64\x6c\xa5\x96\xf6\xdd\xf5\xb5\x79\x6d\x05\x5c\x08\xe4\xb2\xa8\x6b\x80\xcb\x54\xda\x5a\x33\x69\x72\x8d\x8a\x49\x5e\xc7\xb3\x2e\x43\x8d\x57\xd6\xb5\x7c\x6a\x6a\x78\xa3\xd5\xf0\xc7\xe6\x45\x62\xd7\x15\xa6\xa7\x66\xe2\x75\xc3\x0c\xd5\x61\x56\x53\x2e\xdc\x4b\xff\x70\x78\x89\xf9\x04\x1d\x62\xd4\xc6\x6c\xf1\x24\x5c\x9b\xd0\x1d\xb6\x19\xe7\xcb\x8a\x97\x27\xe2\xee\x81\xbb\xc7\x1f\xba\x6b\x5e\x95\x5d\x3f\x5b\x9c\x59\xd7\xe5\x2f\x4c\x29\x6d\xc7\xc1\x96\x5b\x02\xc2\x63\x41\x9e\x8f\x00\x31\x8e\x2d\xac\x40\xb0\x82\x75\xb0\x67\x21\x8f\xd3\x28\xee\x78\x4b\x23\x17\xe5\xb7\xb2\x40\xd9\x82\xdd\x1b\xcc\x25\x0a\xf7\x5a\x7a\xb3\x2b\x7a\x2b\x19\x86\x22\x4f\x74\x21\xfe\x99\x89\x7f\x7e\x15\xff\xe0\xca\x55\xbe\xe0\xf2\x3c\x53\xff\x5b\x6c\x1e\x3e\x16\x15\xfb\xc6\x2a\x79\xc9\x4a\xf7\x46\x92\xeb\xfe\xc0\x32\x69\x73\x1c\x4c\xe3\xda\xda\x93\x77\xc5\xfc\xc0\xfa\x37\xc6\x6a\x89\x17\xbb\xf5\xe6\xc0\x9c\xbc\x79\xb1\xd6\xfc\x6a\x7e\xe2\xa6\x56\x73\x28\x2b\x96\x18\x30\x11\x49\x4c\x44\xfd\xcb\xf3\x8b\xad\x55\x45\xfb\x63\x6a\x75\xa4\xef\x30\x27\xa5\x19\xf4\x03\x59\xd8\x8a\xc0\x50\xd1\x77\x70\x9d\xf3\x90\xfb\xd5\xc4\x36\x7d\xf4\x29\x89\xc6\x27\x0e\x9a\xdc\x27\xd4\x88\x0b\x22\x79\xc6\x84\x74\x2b\x62\xd4\x20\xd5\xfb\x2d\x96\x99\x51\x79\x6f\x2f\xcf\xcc\x96\x89\x1a\x0f\x56\x62\x0f\xa3\xb5\x90\x51\x6e\x98\x12\x7c\x79\xa3\x7d\xbf\x94\x99\xe6\x8c\x09\xd9\x89\xd1\x94\xa9\xa6\xe0\xc1\x62\x15\x7b\x2f\x0f\xe3\x64\x71\x5a\xc1\x04\xa2\xda\x37\x66\x76\x1b\x1b\xbc\xa8\x2c\x3f\xf1\xf3\x12\x8c\x4a\xff\x60\xcf\x16\xa0\xcf\x44\x79\xac\xf0\xc3\xae\x6e\xea\x08\x46\xba\x0d\x8c\x69\xa9\x98\x81\x0c\x46\xb6\x67\x27\x48\x54\xaa\x71\x25\x57\x64\xcb\x98\xca\x1f\x26\xda\x01\x2b\x3b\x02\x4d\xb3\x9a\x21\x70\x31\xe9\xa9\x30\x1e\x42\x30\xc4\xca\x40\xc0\xd4\xaa\x65\x66\xa2\x35\x80\x91\xe2\xcc\x36\x61\xb2\x11\x7c\x31\xe6\x41\x71\xf1\x5c\xe3\x27\x33\x59\xc9\xbe\x15\xbf\x4f\x9e\x92\x23\x09\xa8\x56\x0c\xe1\xe0\xf8\x15\xa1\x0c\x46\xa9\xb2\x0e\x69\xa6\x56\x52\x35\x6c\x38\xd5\x57\xe7\xb4\x6d\xf8\xe8\x73\x59\xa8\x72\xda\x59\xa1\x20\x28\x37\x85\x61\x3a\xdc\xf0\xe0\x2f\x79\x78\x84\x38\xd7\x0c\xdc\x48\xfb\x4c\xc5\x03\x1b\x98\x53\x8d\xb3\x11\xb5\x2a\x93\xab\x7e\xed\x5b\x45\x97\x58\x1b\x52\x65\x7b\x81\x80\xb4\x31\x46\x4d\x91\x33\x93\x44\x8b\x14\x41\xa6\xad\xcc\x91\xad\x53\x8c\x45\x06\xb1\xe9\x70\x1c\x3e\x58\x31\x60\x8f\x29\x25\xc0\xa5\x1d\x47\xb5\xa9\x3b\x58\x38\x42\xac\x9d\x26\xc1\x7d\x51\xe8\x0a\x04\x5e\xfd\x17\x7f\xf4\xf9\x0b\x96\x04\x40\x0c\xec\x82\x1d\x9b\x56\x1c\x8c\x5c\xeb\x82\xb5\x83\x61\xa6\xc9\xf9\x07\xb4\x06\xf1\x8d\x69\x0d\x44\x0f\x6b\x0d\xe2\xbd\x3b\x6f\xc3\x25\xf6\x76\x26\x2a\x8e\x90\xa6\xc2\xf3\xa9\x91\x77\x99\xd6\xc5\xf0\x03\xf0\xa9\x08\x44\x15\x03\x6d\x83\x46\x08\x8c\x04\x2f\xd2\x54\x10\x81\x21\x7e\xfa\x3c\xfc\xc0\x4e\xa0\x22\x1f\x5d\x99\xe5\xa3\xc2\xe1\x46\x76\x83\x26\x69\x2a\x58\x23\x03\xfc\x4d\x3a\xfc\x00\x12\x44\xc4\xe5\xe9\xe9\x94\x9f\x8e\x0e\x64\x84\xc4\x48\xac\x26\x49\x04\x11\xd8\x40\xcf\x8e\xcb\x67\xa1\x24\x35\x3a\x1d\xe4\x79\xda\x9e\x8a\xd3\x01\x03\x8e\x91\xd9\xbd\xc0\xe2\xa3\x83\x89\x0d\x28\x64\xe9\xea\x71\xf9\x64\x75\x15\x1a\x54\x7a\xda\x9c\x9e\x2c\x76\xe2\x8d\xcf\xa0\xcc\xe8\x92\x40\x10\x41\x04\x86\xe8\xe9\x76\xbd\x3d\xc2\xa6\x2e\xeb\x53\x13\x27\xb0\x78\x43\xf3\x93\x02\x43\x22\xf7\x08\x4c\xc7\xde\x9e\x1e\x4f\xc5\xe9\x11\x03\x8e\x19\x1b\x6e\xe0\xae\x8f\x0e\x36\x36\x00\x85\xec\x71\xbd\xcc\xe0\x40\xf5\xc4\xfd\x9e\x4e\xb9\x35\x83\xf4\x6b\x8b\x61\xdd\xe1\x06\x0d\xfb\xe8\x60\xda\x03\x50\x78\x5c\xae\x58\x7a\xb0\xa6\x33\x11\x73\x3c\x34\xb8\xd5\xe4\xea\xc9\xc0\xa0\xdc\x48\xbc\xb2\x87\x0c\x22\x36\x24\xf0\x94\xaf\x96\xcb\x51\x6c\xec\x50\x85\x3c\xe7\x87\xb7\x64\xdd\x77\xb2\xf6\x48\x90\x11\x7a\x0e\x01\x1c\x49\x88\x11\x89\xfb\x16\x4d\x81\xf5\x85\x00\x7a\xb7\x0e\xe2\x9e\x95\x59\x67\xd2\xf8\x15\x6d\x35\xe7\x46\x0a\x7d\x9b\xc4\x28\x91\x87\xb8\x08\x41\xf4\xbd\x21\xdb\x2f\x0c\x1b\xd8\x7c\xee\x2d\x93\xef\xd3\x98\x94\xb5\x7f\xcf\xf8\x74\xa1\xc2\xbd\x3e\x1c\x38\x3b\x95\x92\x1b\x2c\x22\x1d\xe3\xbe\x53\x18\xee\xdc\x24\x8e\x57\x74\x90\xcc\x6b\x59\x14\x43\x07\xab\xde\x3c\x95\xef\xac\x70\x1d\xf0\x86\xb1\x0f\xfd\x49\x8e\x5f\xde\x75\xeb\x87\x42\xb8\x9e\xb6\x0f\x3a\xa4\x82\xc7\xad\xc9\xdf\xe5\xd6\x4c\xee\x04\xd2\xc4\x0e\xe2\xe3\x0f\x33\x65\x69\xfa\xed\x35\x99\x27\xd9\x36\xbd\xbc\x3f\xec\x61\xf0\x0f\x15\xa6\xce\x4f\x2c\x27\xb8\x21\x22\x84\xd3\xc1\x46\x98\x70\x6b\x2e\x9b\x4a\x12\x96\x5e\xb8\xcf\x62\x8c\x21\xb9\x45\xc6\x56\xfe\x2d\x03\x27\xbf\x2a\x58\x12\xa6\x03\x53\xde\xf5\xa1\x0d\xec\x31\xd7\x8e\xd4\x86\xd9\xca\x7f\x91\xe9\xd7\x78\x14\xa5\xd1\x60\x2a\x94\xd2\xfc\xe4\x8d\xa7\x24\x23\xab\x74\x1a\x30\xfc\x34\xea\x73\x89\xc1\x42\x51\x9a\x88\xf8\x78\xd0\xa5\x53\x75\x22\xf2\xd2\x84\x93\xe1\x97\xe6\xa7\xf8\x18\x4c\xc0\x30\x3e\x10\xd3\x40\xfb\xd1\xd1\x98\x16\xab\x1f\x1a\x92\x69\xf1\xfa\x91\x71\x99\xa3\xa6\x41\x92\x79\x3b\x0f\x90\xfa\xf5\x8d\xa5\xe3\x4d\xe2\xfc\x24\x7d\x66\x7e\x18\xd6\xdb\x49\xa1\x84\xae\x78\x11\x71\x49\x7a\xdd\x5c\xa6\x78\xe2\x42\x43\xa2\x61\x2d\x9c\x2d\xea\xfc\xdb\x21\x6f\xd5\xbf\x61\xb7\x80\x55\x23\x70\x07\x95\x5e\xe7\x6d\x8b\x62\xe3\x79\x62\x68\x03\xfb\x69\x8e\x5e\x45\x21\xc3\x1d\x9c\x94\xee\xe0\xd8\xd5\xe9\x23\xcf\x05\x5d\x43\x46\xec\x8a\x2d\xac\x02\x16\x10\x61\xb1\xd2\x4f\xbb\xf8\x8f\x6c\xb2\xd4\xaa\x3f\x37\xa4\x68\x7f\xa9\xb5\x22\x1b\xfd\xff\x21\x3b\x75\xde\xe7\x07\x91\x06\x64\x8c\x80\xd4\x51\x98\xdd\xb1\x6d\xaa\x6a\x40\xe1\x01\x8d\x0a\xe7\x66\xce\x29\x79\xc9\x17\xcb\x83\x09\x47\x8d\x33\x8c\x12\x25\xc2\xa1\x1d\x0c\x00\xf5\x97\x08\xd9\xf4\xc2\xfe\xa6\xfe\x32\xcf\xee\x75\xa2\xc6\x68\x2e\x0b\xe3\xad\xa2\x78\x2c\x75\x7d\xc5\x2f\x61\x6e\x8a\x18\xcd\x08\xa2\xd1\xee\xe1\xe5\xf0\x63\xfb\xd3\x26\x54\x41\x2e\x64\x98\xc7\xca\x6f\x9a\x65\xe9\xa0\x95\x1f\x6e\x24\x33\x76\x47\x1b\xdb\x38\xa1\x16\x66\xf7\xb4\xaf\x83\x14\xe2\xc2\x09\xf3\x28\x40\x24\xae\x28\x6a\xac\x3a\x14\x54\xa4\x51\x14\x36\xd7\xd9\x93\xdb\xd2\xc5\x0a\xd5\x93\x63\x4c\x6f\x4f\x04\xed\x8b\xc6\xab\x3d\x1c\xfc\x7d\x6a\x0a\x30\xa5\x59\x42\x35\xbb\x47\xc5\x38\x03\x59\xd9\xca\x13\x7a\xcb\x37\x35\x49\x3a\x6a\x80\x25\x44\x37\x46\x39\xe4\x4d\xf2\x13\xae\xf4\x5b\x48\x91\x5a\x1d\x81\x45\x9b\x7c\x22\x0b\x7c\xe4\x86\xb0\xdc\x29\x82\x89\x17\x31\x45\x82\x68\xe4\x14\x49\xd3\xf4\xce\x56\xc5\x47\xcc\x40\x64\xaa\x26\x87\x9c\xe2\x34\xb9\x1f\x27\xd4\xb0\x91\x9a\x3c\x80\x14\xe2\x72\x8f\x26\x0f\x50\x08\x68\x72\x88\x1d\xab\xc9\x43\x58\xa1\x7a\x46\x6b\xf2\x20\xda\xa7\x87\xa9\x4f\x87\xbb\xbd\x49\xe9\xf0\x50\x83\x84\xea\x34\x59\xa1\x44\x28\xf0\x60\x27\x91\xd3\x91\x24\x72\x87\xf6\x76\xf5\xb0\x49\x7e\x42\x52\x15\x0b\x29\x52\x7b\x23\xb0\x68\x63\x4f\x64\x81\x8f\xd6\x10\x96\x3b\x2d\x30\xf1\x22\xa6\x45\x10\x2d\x90\x21\xe2\xce\x86\xc5\x47\xcc\x40\x64\xaa\x02\x87\x9c\xe2\x14\xb8\x1f\x27\xd4\xb6\x91\x0a\x3c\x80\x14\xe2\x72\x8f\x02\x0f\x50\x08\x28\x70\x88\x1d\xab\xc0\x43\x58\xa1\x7a\x46\x2b\xf0\x20\xda\x57\x8c\x54\x9f\x0e\x77\x3b\x94\xd2\xe1\xa1\x36\x09\x55\x6b\xb2\x5a\x89\xd0\xe1\xc1\x7e\x22\x67\x24\x49\xe4\x1e\x0b\xdc\xd1\xc6\x26\xf9\xf8\xe4\x56\x10\x27\x52\x83\xbb\xa0\xf8\x6a\x39\x95\x07\x3e\x5e\x03\x48\xee\xbc\x40\xc4\x8b\x98\x16\x21\x2c\x72\x56\x64\xf9\x72\xbb\x5a\xdd\xdd\xb0\xc4\x9a\x2f\xc8\x4c\x55\xe2\x80\x57\x9c\x0e\xf7\xa2\x04\x1a\x37\x52\x83\xfb\x71\x02\x3c\xee\xd1\xdf\x7e\x02\x01\xf5\x0d\x90\x63\xb5\x77\x00\x29\x50\xc7\x68\xdd\x1d\xc2\xfa\x9a\x41\xea\x53\xde\x4e\x5f\x52\xba\x3b\xd0\x22\x81\x5a\xdd\xa1\x4f\x22\x74\x77\xa8\x97\x7c\x53\x91\x22\x73\x87\xf2\x76\xf5\x30\xa4\x2e\xc2\x4e\x42\x1a\xc3\xac\x98\x88\x69\x9a\x82\x21\xc2\xb6\xa6\x60\xe8\xe0\xb4\x29\x48\x3a\x6a\x69\x0a\x92\x0e\x18\x9a\xaa\x34\xe1\x46\x29\xe2\x25\xa4\x09\x95\x0b\x36\x45\xcc\x8e\x31\xcc\x06\x9f\xf7\x11\x6d\xef\x68\x18\x5c\xc8\x08\x25\x13\x81\x48\xea\x99\x65\x96\x6f\x1e\x97\xfb\x4f\x38\x92\x6c\xee\x71\xab\x58\x08\x2b\xdc\x3c\x91\x6b\x59\x10\x2d\xcc\xe9\x9e\x15\x2d\x48\x23\xb0\xa8\xd9\xf8\xb1\xeb\x5a\x18\x2f\x5c\xdf\xe8\xd5\x2d\x02\x71\xc2\xc0\x9b\x30\x3a\x42\x1d\x4c\xad\x71\xe1\xd6\x09\x57\xef\x0e\xad\x11\xb1\xd2\x45\xf4\xdb\x04\x15\xfa\xa9\xc5\xce\x89\x78\xfe\xb0\x96\xa1\xb8\x08\xde\xe8\xa5\xcb\xbf\xca\xc5\xb4\x77\x80\x01\xb5\xad\xf6\x2f\xa8\xc8\xf6\xdd\x91\x2d\x6a\xf7\xee\xc7\xf2\x78\x5f\x37\xeb\xd3\xe1\x33\x9a\x19\xb0\x8e\x75\x10\x79\x50\x02\x4d\x12\xed\x1e\xf2\xe1\x04\x78\xdc\xe7\x1c\xf2\x11\x08\xfa\x86\xea\xe9\x9b\x8b\x00\x52\xa0\x8e\x13\x1c\x43\x7e\xac\x09\x43\x2b\x76\x08\x78\x3b\x92\xd2\xba\x81\xe6\x08\x54\x69\xea\xfc\x8f\x72\x09\xf9\xfb\x27\x46\xd3\x02\x1a\x77\xa8\x59\x57\x63\x9a\xd4\x89\x2b\x16\x5e\x35\x1b\xd8\x53\xf8\xb7\x1f\x31\xcd\x1c\x60\x80\x0f\xd2\xd0\x4e\xc7\x99\x0b\x88\x6c\x11\x73\x21\x84\xf5\x03\xd5\x2c\x60\x1d\xa7\x66\xbd\x28\x81\x26\x89\x54\xb3\x7e\x9c\x00\x8f\x7b\xd4\xac\x9f\x40\x40\xcd\x02\xe4\x58\x35\x1b\x40\x0a\xd4\x31\x5a\xcd\x86\xb0\xee\x53\xb3\xde\x21\xe0\xed\x48\x4a\xcd\x06\x9a\x23\x50\xa5\xa9\xf3\x3f\x42\xcd\x86\xfa\x27\x46\xcd\x02\x1a\x5f\xae\x66\x27\x3d\xca\xe0\xa0\x45\x2a\x5b\x14\x3a\xa6\xbd\xc3\x6c\xf0\x01\x1b\xe1\xc3\x71\xa6\x06\x2e\x64\xc4\xec\x88\x40\xa4\xf7\x80\xcf\xcf\xc7\xd5\xa7\x9c\x0f\x36\xf7\x38\xf5\x1b\xc2\x0a\x37\x4f\xa4\x12\x0e\xa2\x85\x39\xdd\xa3\x8a\x83\x34\x02\xda\xd8\xc6\x8f\x55\xc8\x61\xbc\x70\x7d\xa3\xd5\x72\x04\xe2\x84\x81\x37\x61\x74\x84\x3a\x98\xd2\xcf\xe1\xd6\x09\x57\xef\x0e\xad\x11\xa1\xa8\x23\xfa\x2d\x46\x57\xdb\x64\xee\x71\x3e\x38\x6a\x17\xc4\x41\x4e\x79\x05\xc7\x41\x8b\x54\xd7\x28\x74\x4c\xc3\x87\xd9\xe0\x03\x39\xc2\x7b\xee\x46\xf5\xa2\x42\xc6\xc4\xf5\x86\x11\xe9\xc8\xde\xe7\xa7\x0c\xc6\x21\x4d\x0e\x1f\xb7\xb8\x47\x06\x90\x07\xb0\xc2\xcd\x13\x1b\x44\x1e\x42\x0b\x73\xba\x2b\x90\x3c\x44\x23\x14\x4a\x6e\xe1\x47\x07\x93\x07\xf1\xc2\xf5\x8d\x0f\x28\x0f\x23\x4e\x18\x78\x13\x46\x47\xa8\x83\x29\x75\x1d\x6e\x9d\x70\xf5\xee\xd0\x1a\x31\x61\xe5\xe1\x7e\x8b\x51\xd7\x36\x99\x7b\xa2\x5a\x1c\xb5\xeb\x1e\x8c\xc6\x5d\xe3\xb7\xb1\x22\x95\x35\x06\x1c\xd3\xea\x41\x26\xf8\x20\x0e\x1f\xf5\x22\x71\x03\x88\x84\x51\x91\x03\x21\x3c\x72\xba\x1c\xd6\xab\x7c\x79\xfa\x8c\x9e\xb6\x98\xc7\x06\xa6\x78\x91\x82\x4d\x13\x1d\x9c\xe2\xc7\x0a\xf2\xb9\x2f\x40\xc5\x4f\x22\x18\xa2\x02\xd0\xe3\x83\x54\x02\x68\xc1\xba\x4e\x08\x54\x09\xe1\x4d\x18\x6e\xf1\x83\x22\xd0\xb1\x94\x6e\x0e\x36\x4c\xb0\x6a\xd3\x75\x44\x54\xb8\x4a\xa8\xbf\x62\xf4\xb2\x45\xe5\x0e\xb5\xec\xea\x57\x45\xff\x37\x9e\xf9\x30\x2f\x6b\x22\x77\x3c\xb8\x6b\x8c\xdc\xfc\x34\xf3\xd0\x4b\x89\x79\xfa\x7b\x9e\xc6\xf9\x16\x97\xd1\xd9\xac\x2b\x4f\x48\x20\x6f\xd5\xce\x9c\xef\x7d\x73\x51\xd9\xa7\xd1\x14\x06\xa9\x4e\x9f\xb1\x4a\x29\xaa\xb7\x31\x1f\x2e\x0e\x40\x56\x60\x3e\xa1\x06\x83\xa4\x22\x3f\xed\x6b\x7f\xae\x38\x49\xd9\x59\x63\xb9\x99\x9a\x51\xb6\x27\x01\x2d\x25\xb7\xb2\x5b\x2b\x1c\xb0\x24\xa8\x46\xe3\x57\x7b\xc3\x5d\x6a\x65\x85\x71\x3a\x18\xdc\x14\xbe\x81\x97\x07\xbe\xbd\x39\x2f\xb6\xe8\xbf\xbf\xeb\x9b\xef\x4a\xb6\x6b\x3b\x2c\xfd\x44\x96\x0c\x90\xff\x99\xbc\x54\xac\xae\xeb\x23\x2f\x0b\x8b\xcc\xe8\x80\x97\x78\xf3\x70\xca\x9b\x96\x46\xfe\x69\x4e\x94\x5f\xec\xdf\xa4\x3f\x27\xf3\xe4\xe9\xf2\xfe\x10\xff\x18\x98\xf8\xce\x61\xe7\xc5\x55\x26\xf5\x7b\xda\x9e\x3b\xb3\xe0\xd2\x36\x17\xd6\xf6\xdf\x77\xb6\x88\x33\xf9\xea\xdd\x4c\x53\x37\xd1\xfa\xf2\x3c\x0c\x81\xd3\xb5\x16\xf9\x08\x58\xde\xb1\x79\x73\xed\x41\x8a\x06\xb7\x21\x8c\x27\xc3\xb3\x07\x3e\x32\x8d\xda\x6d\x2f\xef\x0f\x01\xa4\xa5\x83\x94\x85\x91\x56\x16\xd2\xaf\xc9\xda\x45\xf2\xe6\xc6\x48\x67\xc3\xcf\x22\xdd\xd8\x58\xc6\x12\x8d\x54\xcf\xcd\x1b\xf2\x3f\x7e\xd9\x5c\xde\xad\x2c\x21\xd1\x24\x97\x0f\x37\xf5\x12\x61\x1a\x8d\xb4\x22\xe4\x98\x9b\x82\xcc\x2d\x49\x9c\x94\xfe\x1f\xd8\x8a\x27\x82\x2e\xa4\x36\x47\xb3\xd6\x93\x39\xea\x7d\x19\xea\x29\xab\x00\xb3\xa6\x72\xc2\x58\xc9\x5d\x6b\x24\x18\xfc\x2e\x5c\xf2\xa0\xa6\x74\xe6\x2a\x00\xc6\x73\x99\x9b\x99\x4d\x54\x12\x60\xca\x2c\xbb\x19\x6f\x97\x59\x95\x65\xef\x97\x9c\x3f\xcb\x4a\x26\x54\x70\x50\xfa\xfc\x40\xa6\xb9\x30\x5f\x17\xc3\x32\x26\x40\x55\xce\xa7\x88\xe8\x1c\x6b\x66\x19\xbc\x5c\x43\xcd\x2c\xa5\x1a\x1b\x79\x03\x4d\x26\xad\xa0\x9b\xdf\x61\x68\x25\xc3\xe8\xfa\xef\x15\xdb\xf1\x8a\x5a\x34\xa5\x8a\x1e\xb3\x76\xc9\xf3\x16\x5f\x7d\x57\x66\x7d\x41\x5a\x60\x6f\x2f\xf0\x49\x00\x5f\x46\x58\x8a\x17\x95\x2c\x43\xe9\xe6\xbe\xe1\x10\xfb\x4e\x84\x6d\x72\x81\x31\x0a\x72\xe3\x5a\xe9\x96\xcd\x87\xd8\x46\x32\xf7\xbc\x8d\xc0\xff\xa0\x9f\x46\xf0\x66\x23\xcf\xd2\xe5\xca\xd8\xc9\x99\xc6\x9e\xf5\xc2\x09\xba\x81\x05\x3a\x67\x30\x00\x60\xfd\x83\x8f\x91\x99\x4a\x8d\x7a\x04\xc4\xb0\xaf\x9e\x2e\xef\xc9\xb0\x7e\xd1\xef\x7a\x8c\x0f\x42\x18\xa4\x17\x6e\x82\x34\x50\x29\xdb\xbe\x13\xef\xb3\xa1\xc6\xa5\x28\xfa\xb4\x89\x29\xc9\x84\x0c\x4d\x01\xf6\x55\xe6\xa6\x64\x2a\x1f\x45\x40\x00\x12\xb3\xd1\x3c\xd5\x07\x70\xc1\xb4\x30\x64\x26\x24\xa9\xe9\xac\xc4\x70\xb4\x39\x2c\xe5\x9f\x6a\x14\x5b\x68\x96\x69\x3c\xc9\xd1\x31\x33\x76\x76\x33\xac\xb1\xc4\x06\x2e\x68\x54\x7b\x32\xe5\x98\x1d\x63\x28\xe6\x4f\xb9\x22\xa2\xe9\x38\x6f\x1e\x45\x10\x8c\xf0\x14\x90\xe0\xae\x33\x02\x05\xa5\xdd\x1d\x24\x78\xc4\x5a\xf7\x6f\xca\xf3\xa5\x69\xfb\xbc\xee\x43\x6d\x8e\xef\xa7\xa7\xbd\x9e\x73\x17\x0b\xbf\x27\xd5\x67\x22\xc9\xdd\x54\xa4\xa1\x18\xab\xa7\x5d\x6b\x09\x19\xe9\x34\x34\x7f\xe5\x0a\xf1\x6d\x8c\x56\xb0\x34\x7a\xb3\x15\x37\x7a\xc7\x1c\x7e\xbf\xf0\x34\x9e\xb3\x39\xff\xe7\x21\x8e\x83\x96\x31\x32\xcf\xd8\x98\x9b\x2b\xd9\xc8\x84\xac\x56\x82\xd2\xbd\xf9\x26\x17\xd4\xc4\xc3\xca\xf4\x84\x2e\x4c\xe3\xb3\x5c\x68\xc7\x3a\xe2\x3a\x96\x1b\x35\x29\x9d\x07\xd0\xe0\x42\x1d\x60\x33\x14\x1d\x9a\x77\x56\x4c\xe6\xa7\x31\xf5\x96\x27\xb3\x9f\xe4\xe4\x5b\x7d\x74\x6f\x93\x3e\x7c\xd0\xde\x2d\xb3\x6f\xa4\x55\x08\x1e\x8e\x03\x1d\x92\x8e\x89\x23\x13\xe2\x4d\x5e\xf1\xa6\xad\xfb\x5a\xa8\x6f\x9f\xbe\x83\xfb\x2e\x72\x03\x2f\xd6\x07\xce\xc1\x78\x92\x60\xbe\x58\xf1\x04\xbc\xca\xb8\xcb\x86\xf1\xaa\xb2\x55\x42\x73\x87\x4c\x43\xf7\x01\xd7\x12\x4f\xc2\x3e\x90\xfb\x0d\x8c\x31\x56\xbb\xaf\x22\xaa\x37\x5e\x68\xb7\xc8\x38\x63\x7c\xef\xb1\x7d\x7d\xba\x3b\xd7\xc8\xc3\xa7\x12\x30\x78\x91\x67\xd7\x9c\xb7\xed\x52\x32\x79\xa8\xf3\x94\x5d\x8c\x1d\x0f\x1f\x70\xc3\x1e\x1f\xf6\x6a\x73\xe4\x91\xb6\x00\xc6\x5d\x4b\xcc\x97\xaf\x25\xee\xc4\x77\x34\x26\xa2\x29\x63\x7a\xd4\xfb\x52\x1f\x9c\xd2\xda\xbd\x82\x4e\x68\xed\x44\x1a\xfa\x35\xf9\x35\xf9\x65\x3e\x98\x6d\x0f\xb8\x0e\xe2\xfe\x95\x69\x1e\x38\xc7\xe1\x86\x36\x8e\x78\xce\x06\x79\xe9\xd1\xda\xdd\xd9\xaf\x84\xaa\x2d\x97\x3a\x62\x48\x50\x7f\xad\xb1\x37\x83\x00\xe0\x01\x9d\xb9\x78\xb6\x84\xa6\x69\x9a\xab\x18\x49\xae\x9c\x80\x66\x91\x24\x89\x2d\x4a\xc1\xba\xdf\xfb\xe6\x82\x6f\x17\x64\xe1\xe7\xf7\x4b\x8a\x50\x70\xc7\x24\x01\xbf\x6c\xcf\xa4\x18\x07\x5c\xf5\x1a\x6e\xf2\xee\xc4\x46\xb4\xf6\x27\x41\x97\x1b\x34\x8e\xad\x54\x74\x04\xb6\x48\x23\xca\x95\xcb\x03\x45\xc9\x84\x09\x64\x3b\xbf\x73\x6b\x12\x75\x26\x4a\x2a\xab\x0f\xf1\xf6\x4f\x02\xdf\x69\xe4\x3e\x88\xfc\x36\xce\xe1\xdd\xd8\xfb\xc9\x22\xeb\x12\xee\x0d\x2f\xeb\x79\x73\xed\x3f\x8c\x77\xde\xad\x47\xa2\x94\x0f\x65\xae\x36\x65\x23\xe4\xc2\xf3\xd0\x0e\x84\xa2\xdf\xda\x81\x70\xd4\x73\x3b\x23\x94\xf5\x66\x7d\x87\xbe\xe9\x16\xf3\x74\xb1\xf3\x96\xff\xc7\x97\x3e\x91\x8f\x65\x46\xc7\xf2\x16\xdb\xd6\x1e\xe2\x81\xc4\x5f\x7d\x05\x7e\x2f\xf3\xc1\x5f\x95\x2d\x9a\x6f\x10\x28\xe7\x36\xf4\x2d\x72\x4b\x4d\x3a\x53\x81\x67\x0f\x2b\x76\x4e\x9a\x9c\xb4\xf0\x46\xff\x39\xaf\x62\x6d\x1c\xbf\x1f\xff\x44\x74\x92\xf2\xdf\x09\x3f\x30\xda\x65\x35\xab\x44\xc6\xf8\xa4\xac\x2f\xd7\xfe\x4f\xfd\xf7\x0b\xfb\x87\xe3\x2b\x3b\xfe\x7e\x68\xde\xff\x3c\x93\x10\xfc\xcd\x6b\xfb\x4d\x47\x38\xb2\x74\x9f\x9b\xfb\x6b\xa2\x98\x67\x2d\x1f\x36\x0c\x48\xf9\xce\x83\xab\xd2\x9d\x5b\x83\x8a\xe0\xa8\x8a\x30\x6e\x7c\xcb\x40\xe0\x20\x5c\x86\x91\x4a\x70\x51\x45\x18\x97\xa1\x0c\xe3\xc2\xbf\xbb\x5c\xd4\xf0\x27\x38\x99\xc5\x18\x37\x55\x8e\x71\xd4\x65\x1c\xf1\xa6\x33\xf7\x7f\xdc\x39\x41\x61\x10\x81\x7a\xcd\x6d\x4c\xae\x2e\x1f\xcb\xb0\x5b\x56\x7a\x69\xec\xa6\x70\x3f\x6b\x79\xa5\xdd\x0a\xd8\x1d\x36\xc3\x8f\xfd\x68\x5d\x5c\x2f\x7a\x9a\x5d\xb6\x0d\xf6\xbe\x8f\x4b\x9d\xea\x55\x5f\xdb\xeb\xf3\x0d\xad\x85\xca\xba\x63\x7d\x42\xbe\x94\xbf\x7c\x70\x18\xff\xa9\x28\xbb\x61\x4b\x5d\xfc\xd9\xe1\x4d\x14\x29\xf6\x63\x71\xe8\x50\xc0\xf9\x08\xb5\xa6\x2c\x95\x0f\xf1\x29\x73\x7a\xb1\xf9\x88\x1b\x3a\xee\x33\x7f\xb6\x46\xe3\xdf\xb0\x4d\x11\x32\xb9\xe5\x19\x3b\x7d\xfb\xc6\xf7\x5c\xd3\x49\xf4\xec\xa0\xe1\x5e\x59\x3e\x88\x20\xd6\x7d\xbd\x3f\x51\x2f\x27\xce\x72\x53\x55\xca\x6f\xfc\xad\x40\xf7\x3b\x6d\x67\x60\x2a\xed\x06\xc7\x34\xb2\x25\xf9\x70\x96\x6c\xbe\xff\x1e\x5a\x64\xc7\x9b\x25\xea\x91\x58\xd3\x40\x81\xe8\x36\xf9\xa4\x2a\x23\x95\x00\x7d\x6e\x36\xe5\xd9\x15\xb4\x76\x68\x92\x79\x8f\x03\x43\xda\x01\x1f\xa8\x9c\xa2\x70\xe9\x8c\x4f\x59\xb0\x02\xe6\x5b\xe0\xad\x6d\x68\x70\x89\x75\x94\x15\x89\x87\x6f\x16\x85\xc4\xab\x4e\x3d\xe3\xe3\xca\x4f\xd2\xa1\xea\xa5\x77\x95\x93\x44\x75\x31\x0c\xfa\x8e\x40\x2e\x34\x5a\x2b\xed\x3e\x52\x62\xca\x39\xe8\x3c\xaf\xca\xbf\xc6\xbe\x97\x69\xcc\xc3\x99\x3d\xa7\xc5\x9f\x3c\xac\x28\xd2\x85\x4b\xbc\x57\x0a\x9c\x88\xc8\x63\x0b\xa6\x32\x30\x1e\x1b\xb5\x04\xc2\x8a\x06\xe1\xcc\xef\xf8\x5b\xf3\x16\x23\x49\xcf\x7d\x4b\xde\x7e\x08\x4c\x3d\x58\x61\xec\x0c\xb8\x79\xcb\x3f\xbc\xc9\x63\xa3\x34\xb5\xcc\xdd\xe5\x06\x7d\x57\xd6\x68\x4d\xe7\x31\xe6\xa1\x5b\x61\xd0\x17\x70\xae\x91\xa6\xaa\x49\x35\xc9\x83\xbd\x04\x87\xc0\x3c\xbb\xbc\x03\x49\x21\x35\x32\xb4\x00\x46\xb5\x38\xe6\xc4\x40\x01\x7b\x7a\x17\x96\x49\xa5\xef\x98\x0b\x7a\x20\x60\x3b\x2c\xd8\x2d\xde\xfd\x16\xf2\xac\x8a\xd9\x19\xbc\x8a\xd7\x6a\xd4\x07\x33\xf3\x13\x7f\x34\x19\x59\x5d\x81\x80\xbf\xa9\x17\xa9\x3d\xaa\xd7\x8c\xbd\x34\x50\x79\x28\x7f\x3b\x6c\xd4\x0a\x64\x59\x01\x60\xb0\x07\xb8\xcf\x17\x5d\x93\x61\xfb\x5b\xe8\x89\xb9\x1f\x81\x4d\x0e\x56\x68\x77\x6d\xb6\xc2\x01\x3f\x4c\x42\xf8\x03\x5a\xe3\x5c\x59\x5f\xf4\xb6\x30\xb3\xf7\x84\xd8\xbe\x6a\xff\x8d\xb5\x7d\x79\xcc\x2b\xf9\xb5\x6f\x2e\xaa\x01\xd9\x19\x9a\x4f\xa6\x1c\xc9\xe2\x94\x1b\x3a\xb0\xac\x5f\x59\x5b\xf6\x80\x9d\xfc\xf6\x01\x9f\x51\xe1\xc7\xd2\xf3\x63\x5e\x55\xcd\x55\x3d\x2d\x26\x8b\xf0\x37\xc7\x90\xaf\x9d\xfb\xd1\xf9\x10\x8e\xf0\x84\xae\x0f\xff\x6b\x83\xf6\xe3\x74\x76\x80\x27\x66\x00\x72\x2d\x19\xb9\x20\x48\x55\x72\xa7\x7f\x03\xd1\x30\x6e\xaf\x4a\x26\x55\x69\x3b\x62\xe5\x67\x63\xe0\xe6\xb8\xee\x81\x63\x5f\x69\x0f\x39\x83\xd1\x97\x9a\x30\x2a\x70\x75\x8a\x0c\x9c\x1a\xaa\xe4\xc6\xe7\xa2\xcf\x19\xd1\x3a\x09\x51\x40\x5c\x11\x78\x9f\x25\xc4\x1e\xfa\x36\xc8\x08\xe7\x37\x69\x35\x90\xd8\x8b\x61\x12\x81\x35\x14\x7a\x2c\x6c\xc8\x71\x08\x01\xbf\xf7\x08\x07\x8c\xac\x6b\x45\x98\x67\x23\xac\xb0\x7f\x10\x40\x25\xfb\x87\xbd\xbb\x70\x8f\x2b\xbd\x0e\x2c\xb5\xac\x3b\x74\xe0\x36\x19\x1b\x1c\x36\x8a\x3d\x38\x7d\xe7\x74\xbe\x51\xe6\x0d\x86\x50\x2c\x4f\xd7\xaa\xe2\x83\x6e\x98\x2a\x9e\xe3\x4a\x05\xdf\x37\x2f\x2f\x95\x31\x67\x50\x01\x90\xf1\x3d\x0e\x6c\x38\x7d\x53\xec\xd5\x28\x9b\x59\xe8\x88\x0c\xf5\x41\xe8\x83\x3f\x87\x5e\x55\xfe\x5a\x95\xd6\x81\xca\xe5\x1d\x01\x33\x47\xec\x58\x65\xa3\xd3\xd3\x84\x5f\x68\xc0\x50\xc7\x21\xec\x60\x8a\x4b\x10\x1c\x1f\xc1\x0c\x74\x7e\xdc\xde\x59\xd7\x3e\xfb\x58\xbc\xb2\xb6\x49\xd4\x2c\x9e\xd9\x0c\xaf\x95\x65\xd2\x89\x8d\xad\x82\xa2\xbc\xe0\xaa\x9c\xf6\x7f\x2b\x08\xca\xf3\x2d\x9e\xd0\x83\xea\x59\x8c\xba\x43\xde\x95\x9d\x8a\xf8\x45\x6d\x1e\x6d\x6e\xc9\x40\x5f\x41\x4b\x08\xd4\x1c\xca\x8a\xfd\x26\x3f\x0d\x5f\xea\xbc\x6d\x9b\xb7\x51\xf7\x05\xc0\x87\x19\x61\x28\x4a\xd3\xbc\xf2\xe2\xf5\xaf\x2d\x63\xf3\x7f\xb9\xe6\x6d\xcf\xda\xce\xa1\xf0\xb8\x09\x12\x78\x6b\xe6\xfd\x6b\xd9\x16\x2e\xf2\x76\xbb\xd8\x6e\xb7\xdb\x10\x85\xd7\xbc\x3a\x39\xb8\x9b\xa0\xe4\x4d\xcd\x04\x63\x07\x77\xb5\x5a\xac\x56\xab\x55\x0c\x01\x59\x71\x87\xc4\x32\x58\xef\x01\xfb\x54\x9e\xfa\x57\x17\x37\xdc\xe8\x6f\x8d\xc0\x75\xdb\x6c\x1d\xd9\x63\x04\xfa\x36\x88\x7e\x6a\xae\x2d\x85\xfd\x14\x6e\xf4\xd3\xa9\x63\xbd\x3d\x6a\x4c\xa5\x14\x1e\x31\x8a\xc6\x38\x70\x4c\xfc\xc8\x41\x23\x89\xf0\xb1\x63\xa2\x47\x8c\x1b\x81\x39\x0e\x1f\x13\x3d\x76\xe8\x8c\x34\xd4\x08\x32\xa9\x44\x8c\x9e\x91\x80\x18\x44\x00\x3d\xba\x1b\xc6\x71\x64\xe2\x87\xc7\x10\xe8\x46\x84\x42\x78\x18\x49\x0a\xe6\x68\x32\x09\x84\x47\x52\xe6\x8e\x3e\xde\xf4\xb1\x6d\x9f\x41\x7e\x71\xb8\x4b\x57\x45\x8a\xe1\xf6\x18\xc9\x75\x09\xb8\xc6\x22\xaf\xee\xd1\x2f\x82\xe1\x6a\xe2\xc0\x5a\x53\xda\x30\xb6\x5d\xd7\xd8\x7c\x08\x22\x6f\x5c\x45\x96\x4d\x6a\xd8\x0d\x1c\xc1\x91\xc8\xdb\x7b\xd6\x0d\xc1\x70\x3b\x51\x6d\x3c\xba\xac\xa6\x0d\xd8\x47\xc8\x30\x12\xf9\x89\x5a\x55\x63\x1b\xf6\x09\xd3\xae\x41\xe4\xe7\x3b\x2c\x01\xc9\xf0\x79\xe2\x72\x90\xa5\xae\x26\x98\x36\x64\xb3\x14\xea\x82\x48\xec\xcc\x55\x41\xcf\xd3\x06\x6d\x06\x95\x50\x2c\x76\x86\xa8\xa1\xb0\xa5\xa6\x78\x5a\x2a\x88\x7a\x93\xde\x39\xb0\xb1\x4d\x4b\xc9\xc2\xb5\x30\x95\x39\xe9\x00\x20\xb2\xba\x26\x24\x85\x65\x0c\x04\x68\x36\x52\x08\xb6\x21\xa0\x4c\x45\x0a\x7e\x03\xa5\xd2\xeb\x3b\x05\x6f\x2f\xf5\x96\x49\x48\xa1\x2d\x37\x0e\x06\x5f\xff\x48\xf8\xd4\xa9\xb7\x58\x2f\x29\x84\x35\xd6\xba\x7e\x94\x2d\x44\x31\x16\x65\x0a\xe3\xc9\x6a\x2c\xcc\xac\x53\xb8\xc4\x74\x46\x4d\x39\x0c\x07\xeb\x48\xc3\x7c\xc3\x50\xec\xbe\xb4\x4c\x36\x0c\x05\xed\x4e\xc7\x4c\xc3\x30\xed\x1e\xb5\x4c\x33\x14\x05\x6f\x3e\xa7\x6f\x09\xab\x8c\x30\xc1\xd0\xc6\x43\xb1\x90\x1e\x26\xac\x2f\xae\x6f\xc8\x51\x60\x29\x4a\x53\xcd\xa0\x74\x11\xf8\x25\xa9\x26\xec\xa5\xc6\x34\xa3\x30\xea\x28\xc2\x2a\x76\x1e\x4a\x73\x29\xa2\x83\xd7\x01\x8d\x80\xb6\xc7\xda\x33\xe6\x20\xc2\x86\x9c\xd8\xf6\xf2\x60\x9a\x3f\xe8\x88\xc1\x10\xb6\xb1\xfa\x4f\x9a\x39\x11\xd3\xeb\x91\x24\xe9\x19\x20\x8f\x28\x61\x0c\xe1\x29\xa0\xe1\xd1\x06\x79\xf2\x68\x12\x88\xf0\x1c\xb9\xe2\x28\xf3\x24\x42\xad\x65\x29\x39\x63\x3c\x43\x64\xc4\xf2\x5a\x23\xc2\xf4\xa0\x18\x38\x36\x04\x30\x37\x30\x06\x28\x46\x46\x4f\xcb\x14\x1d\x27\x19\x3e\x25\x07\xe0\x29\xb1\x17\xb6\x91\x31\x73\xcd\x8e\x3e\x3f\x54\xac\xa7\xcd\x8e\x99\x6d\x86\xd8\x08\x51\x66\xc8\x8c\x36\x50\x08\x7a\xa4\x81\x32\xc3\xcd\x16\x82\x0c\x65\xb6\xcc\x6c\x33\x86\xc0\xa7\xcc\x98\x19\x6a\xdb\x10\x44\x02\xb6\x8d\x4d\x4b\x2d\x8e\x04\x35\xca\xe4\xb1\xc9\x88\xe5\x92\x22\x42\xd9\x41\x76\xf3\xca\x65\x8d\x20\xe3\xb1\x8e\xdc\x2e\xf7\x93\xa2\xad\xa6\x19\x61\x4c\x11\x84\x62\x8c\xa9\x59\xd0\xda\x92\xc4\xa7\x58\x5b\x18\x51\x67\x80\x4e\x30\xc5\x10\x7a\xe6\x50\x9d\x60\xa1\x21\x94\x9c\x41\x3b\xdd\x7a\x23\xa8\x5a\xc3\x77\x82\x6d\x47\x10\x04\x03\x79\x8a\xdd\x47\x74\x08\x1c\x3e\xd3\x8c\x42\x72\xe0\xd0\x44\x83\x36\x23\x42\x13\x19\xe6\x3e\x8b\x72\x06\xcc\x4b\x6a\x5e\x78\xd6\x4a\x44\x84\x0c\x65\x8c\x99\x9c\x33\x60\x7f\x52\xeb\x83\xcf\xfe\x44\xd8\x2f\x31\xf6\xb8\x4d\x3a\x03\x06\x6a\xa4\xd6\x94\x06\x2a\xc2\x79\x15\x31\x72\xd7\x33\x60\xc1\xfa\xf5\x3e\x6e\xc1\x22\x9c\xd7\x9e\xb9\x68\x59\xb5\x33\x60\xe2\x52\xda\xd9\x67\xe2\x22\xfc\x37\xe8\x9c\x40\xcd\xde\x19\xb0\x81\x23\x17\x4f\x69\x03\x23\x9c\xb7\x11\x4a\xed\x71\x06\x8c\x64\x8a\xa7\xcf\x48\x46\x38\x3f\xa2\x9c\x51\xc3\x79\x06\xac\x68\xbf\xc1\x81\x5b\xd1\x08\xff\x27\xcf\xc2\x60\x59\xd6\x33\x60\x66\xc7\xd9\x4d\xca\xcc\x46\x38\x3f\x47\xac\x71\x59\x3a\x83\x86\x38\xa5\x5b\xbc\x86\x38\xa6\x5d\x52\x54\xbd\xe0\xd6\xf9\x0c\xda\xea\x84\x0c\x7e\x5b\x1d\x93\x01\x55\x71\x84\x01\x3f\x83\xe6\x7c\xa4\x15\xac\xcd\x79\x8c\x3d\xae\xe2\x4c\xd7\x23\x8f\x85\x1a\x50\xe4\xdd\xbf\x87\x1b\xc8\xb6\x10\x99\xb1\xc7\xb5\xf9\x79\x9e\x13\xda\xd3\x68\x95\xc7\x39\x1a\x71\x24\xda\xcf\x88\xc3\x93\x6e\x46\x1c\x9c\xf4\x32\xe2\xe0\x21\x27\x23\x8e\x45\xfa\x18\x09\x70\xd2\xc5\x88\xc3\xfb\x3c\x8c\x44\x23\xd1\x0e\x46\x1c\x21\xca\xbf\x28\x50\x27\xb9\x17\x5d\x94\x90\x77\xd1\xc5\x08\x39\x17\x5d\x8c\x48\xdf\xa2\x8b\x18\x72\x2d\x22\x18\x21\xcf\xa2\x8b\x12\xe1\x58\x44\x9a\x2d\xe8\x57\x74\x71\x1c\xb7\x22\xd1\xf7\x3e\xaf\x22\x42\x15\x75\x2a\x12\x1a\xc1\xeb\x53\x74\x69\x13\x2e\xc5\xb8\x59\xa7\x8d\xb3\x50\xb7\xae\xfd\x93\x9f\xf0\x27\x92\xc3\xcc\x76\x27\x12\x93\xd8\xeb\x4d\x44\x46\x09\xee\x4c\x8c\xd3\x72\xda\x66\x0a\x4d\xa6\x47\x8a\xa0\xd7\x93\x88\x90\xc5\x1d\x89\x5e\x15\x4e\xf8\x11\x49\x95\x61\xbb\x11\xa3\xd6\x93\xd1\x94\x09\x29\xaf\xc1\xe0\xc0\xe7\x87\xdf\x87\x88\xcc\x10\xc2\x85\x88\x93\x0f\x78\x10\x5d\xf2\x94\x03\x31\x6e\x51\x36\x6c\x0b\x77\xfa\x85\xdd\x87\x3a\x8d\x99\x63\x33\xa8\xec\x03\xb4\xd5\xe0\x40\xc4\xd9\x0d\x14\x1a\x6d\x39\x50\x18\xa4\xed\x40\x21\x90\xd6\x03\x85\x10\xb2\x1f\x28\x3c\xd2\x82\x20\x11\x48\x1b\x82\xc2\xf0\x59\x11\x64\x83\xd1\x76\x04\x85\x12\x65\x49\x28\xe4\x49\xb6\x04\x86\x14\xb2\x26\x30\x9c\x90\x3d\x81\xe1\x44\x5a\x14\x18\x6a\xc8\xa6\x40\x71\x42\x56\x05\x86\x14\x61\x57\xa0\x4d\x18\xb4\x2c\x30\x2c\xc7\xb6\x20\xc7\x83\xcf\xba\x40\x29\xa3\xf6\x05\xa9\x3b\xbc\x16\x06\x46\x9f\xb0\x31\x62\x67\xa6\xb2\x32\x22\xba\x7a\x1d\x52\x13\x84\xa5\xe1\x19\x80\xb6\xad\x41\x4e\x76\xaf\xb5\x81\x8e\x1e\xdc\xde\x88\xd5\x8c\xca\xe2\x88\x98\x70\x8f\x34\x51\xaf\xd5\x81\x92\xc6\xed\x8e\xc0\x02\x40\x58\x1e\x1e\x05\x63\xdb\x1e\x91\x6b\x92\xb6\x3e\x22\x14\x5e\x96\xd2\x73\xc8\x6f\x81\xa0\xb3\x88\xb0\x41\x28\x16\x01\x2b\x04\x63\x41\xd9\x21\xb1\xcb\xfc\x68\x89\xa0\xd3\xd4\x8e\xb0\x52\x40\x61\x07\xc7\x68\xac\x2c\xb3\x2d\x6e\xac\xbc\x95\x05\x13\x38\x1e\x7b\x05\x03\x8a\x33\x59\x3c\x98\xb4\xd5\xe2\x41\x22\x0d\x17\x0f\x0e\x69\xbb\x78\x70\x42\xe6\x8b\x07\x95\xb4\x60\x7c\x38\xa4\x11\xe3\x41\xf2\xd9\x31\xbe\x26\xa4\x4d\x19\x0f\x56\x94\x35\x63\xe0\x4f\x32\x68\x08\xbc\x90\x4d\x43\xa0\x85\xcc\x1a\x02\x2d\xd2\xb2\x21\xb0\x43\xc6\x0d\x85\x16\xb2\x6f\x08\xbc\x08\x13\x87\x6a\xd4\xa0\x95\x43\x20\x3a\x86\x8e\x6f\xb4\xf8\x6c\x1d\x8a\x3e\x6a\xee\xf8\x54\x8f\xd7\xe2\x21\xb8\x10\x46\xcf\x84\xf9\xac\xec\x9e\xb8\x81\xb0\x8e\xd0\x32\x84\xf5\xe3\x1f\xa7\xb6\x01\xe4\x53\x14\x5e\x1b\x88\x1a\x61\xb8\x19\x34\x41\xcf\x2a\x4b\x28\x6e\x9a\x3e\x7a\x49\x7b\xed\x21\x8a\x01\x6e\x12\x85\x57\x17\xc2\x2a\xf2\x6b\x29\xdb\x30\x8a\x5f\xf9\xb4\x6d\x14\xa7\x3e\xb3\xd4\x3b\xf3\xfc\x16\x12\x35\xf7\x08\x23\xc9\xc3\x28\x60\x27\x11\x8c\x28\x53\x69\x82\x85\x31\x5a\x4b\xd4\x14\x8f\x70\xde\xac\x53\x22\xb6\x7c\xb0\x77\x5e\x0b\x8f\x2d\x64\x03\xc4\xd9\x41\x04\x16\x6d\x03\x11\x08\xa4\xfd\x43\xc0\x93\xb6\x0f\x01\x1f\xb2\x7b\x08\x34\xd2\xe6\xa1\xe0\x49\x7b\x87\x40\xf0\xd9\x3a\x54\x53\xd1\x76\x0e\x81\x11\x65\xe3\x48\xdc\x49\xf6\x0d\x82\x13\xb2\x6d\x10\x94\x90\x5d\x83\xa0\x44\xda\x34\x08\x66\xc8\x9e\xc1\x50\x42\xb6\x0c\x82\x13\x61\xc7\x60\x8d\x17\xb4\x61\x10\x24\xc7\x7e\xa1\x46\x81\xcf\x76\xc1\xe8\xa2\x76\x0b\xa5\x26\xbc\x36\x0b\x42\x9d\xb0\x57\x22\xe7\xa1\xb2\x55\xc2\x1d\xbc\x0e\x68\x04\xc2\x46\xa1\xc7\x9c\x6d\x9f\x50\x13\xdb\x6b\x9b\x60\x23\x06\xb7\x4b\x22\xf5\x9f\xb2\x49\xc2\xd3\xeb\x91\x24\xe9\xb5\x45\x30\xc2\xb8\x1d\xe2\xd7\xf0\x84\x0d\x42\x6b\x12\xdb\xfe\x88\x5b\x71\xb4\xed\x11\x56\x6b\x59\x4a\xce\x18\xbf\xcd\x81\xcd\x19\xc2\xde\x20\x18\x04\x6c\x0d\x84\x01\x65\x67\x44\xae\xde\xa3\x8d\x81\x4d\x49\x6e\x5f\x28\x8f\x0c\x28\x9a\x8b\x0c\x09\xf0\x15\x01\xeb\xa3\x78\xd3\x00\x66\x52\x40\x32\xb0\xa8\x7c\x3b\x36\x64\x20\xe7\x8f\xc8\xd8\xae\x1e\xf9\x12\xc8\x0f\xc0\x7d\xa4\xf2\xb8\x90\x49\x5c\x0c\xd8\x97\xfc\x52\xb1\x0e\xd6\x31\x85\xb5\x4b\xcd\x7a\xa5\x18\xb6\xba\x0b\x28\xa9\xec\x52\x9d\x4f\x22\x35\x53\xa4\xb8\x88\xb1\xf9\x8d\x10\x4c\xb2\x3d\xa1\x84\xf2\xe6\x00\x7c\x98\xc5\x2c\xbf\x56\x7d\x59\x95\xb5\xb8\x8d\x60\xe6\xf4\x32\x80\xbe\xe9\x16\x75\xb3\x14\x41\xc0\xbc\x2d\xf3\x43\xc5\x6e\xf3\xb9\xf8\xfa\x1f\xf2\xcb\x2e\x85\xa3\x83\x37\x31\xef\xc4\x79\x96\xfc\x31\xf9\x96\xb7\xbf\x18\xd0\x0f\x0f\xb0\xf1\x3d\x80\x28\xe7\x44\x75\x05\x48\x1d\x64\xe3\x5a\x59\x48\xed\x62\x94\xf2\xf0\x7b\x0a\x2b\x66\xf7\x8d\x09\x9a\x59\x6d\xb0\x74\x7a\xd2\x84\x5e\x5a\xd0\x5e\xe0\x15\xd6\xbc\x24\xf4\x1a\x40\x67\x3e\xd0\x0d\x04\x0d\xc8\xbc\xb5\xa0\xbd\xc0\x8f\x16\xb0\x5f\xe6\x27\x00\xbd\x14\xe9\x5f\x86\x71\xec\x4b\x4b\x36\x29\xe1\x8b\xf1\x86\xd6\xf0\xab\xd4\x10\x1f\x8b\x33\xeb\xdb\xf2\x38\xe0\x5c\x2f\x89\xfc\x6b\xc6\x79\x73\x19\x65\x5a\x30\x31\x59\x8a\xb2\x65\xe2\xb5\x54\x21\xeb\x87\x86\xcb\xeb\x23\xeb\xfa\xa6\xfd\x9c\xea\xb4\xa9\x45\xe8\x50\x07\x25\xa0\x60\x6c\x3c\x93\x38\x54\x5e\x0a\x42\x64\x7e\xba\xd9\x09\x73\xec\x16\xfa\x0d\x92\x8c\x53\x74\x06\xbf\x09\x17\x9b\x06\x46\x3a\x38\x52\x52\x87\xfa\x4e\x89\xe2\x4b\x6c\xa1\x60\xbc\x79\x28\x14\x10\x91\x35\x42\x15\x7b\x33\x3d\x28\x20\x6f\x5e\x06\x05\x44\x64\x51\x50\xc5\xde\xcc\x07\x0a\xc8\x9b\xa7\x40\x01\x11\x59\x05\x74\xcb\x79\x33\x01\x68\x28\xef\xb5\x7d\x0d\x45\xdc\xb1\x17\x89\xa5\x22\xdf\x96\xb6\xe7\x9e\x3f\x01\xa1\xca\x59\x25\x1f\xd0\x1b\x93\x60\xed\x78\x86\xb5\xa1\x70\x90\x8c\xa7\x21\x24\xf2\xa3\x59\x69\x41\x01\x4a\x92\x8b\xf1\x77\xb8\xf6\x7d\x53\x3f\xcc\xac\xd2\xae\x6f\x9b\xfa\x45\xe6\xb0\xd4\x69\x1d\x21\xcc\xa2\x2f\xfb\xca\x7e\x88\xc3\x86\xe9\xae\x07\x13\xcc\xca\x20\xfe\xfc\x40\x22\x04\x04\x1c\xe1\x80\xa8\x4a\x8c\xb8\xc8\x62\x8b\x64\xf0\x91\xce\x0f\x47\x5a\xf0\xd2\x1c\x5e\x66\xbc\x50\x6c\xd5\xfe\xd1\xad\x3d\xf1\x10\x20\x0d\xa5\x92\xd3\x5b\x9d\x4b\xbd\x55\xe8\x01\xa3\x13\xcc\x2d\x87\x1f\xff\x68\x52\xe9\x2c\x01\xd0\x98\x7c\xfd\x99\x80\xc7\xa5\x47\xf3\x53\xea\x37\xd8\x50\x52\x8b\x31\xd9\x20\x4a\x6d\x61\xa6\xed\x0b\xd7\x64\xe1\x64\x58\x0f\x11\xf5\xbe\xdd\x0d\x5f\xdf\xf1\xf2\x83\xb5\x26\xd9\x62\xc0\x71\x92\x46\x32\x40\xa1\xc9\x21\x22\xfb\x1b\x26\xe4\x93\x1f\xcd\x64\xf6\x80\x99\xa8\x47\x55\x98\xf4\xca\x73\xfe\xc2\x76\x83\x71\x9f\xb7\xf3\x97\x36\x2f\x4a\x56\xf7\xbf\x64\xeb\xac\x60\x2f\xb3\x3f\xb0\xed\xf0\x93\xa4\xb3\x81\x5a\xf2\x98\xfd\x2c\x7e\x19\x54\xf1\x43\x5c\xda\x12\x54\x00\x72\xe6\x7f\x42\x1a\xcd\xe9\x50\xe5\x22\x45\xf0\x27\x38\xa5\x69\x3a\xb0\x11\x0d\x2a\x38\x65\x4f\xd9\x36\xdb\x4a\x66\x16\x37\xba\x83\xb0\xbe\xe0\x28\xa4\xb6\x15\xa5\xfe\xe5\x40\xc0\xc0\xe5\x00\x61\x81\xae\x05\xcb\xcd\x66\xa6\xfe\x07\x96\x03\x0b\x27\x20\x20\xb5\x1c\x0c\x62\x4c\x5b\x0b\x24\x3d\xff\x5a\x20\x55\x87\x23\x2d\xba\x1c\xc0\x32\x7b\x39\x00\x0d\xf0\xe8\x36\x40\x60\x45\x70\xa1\x6c\x35\x20\xfb\x37\xb4\x22\x20\x60\xf4\x74\x4f\x53\xcf\x50\xb2\xd6\x82\xc1\x12\xc1\x16\x02\x00\x8c\x0b\x1d\xbb\x10\x18\xd0\xe8\x42\x60\x95\xdb\x0b\x01\x55\x07\xcf\x2a\x40\x50\xbc\x63\x15\x40\xf9\x51\x4a\x3a\x02\x38\x4e\xd2\x48\x06\xd3\x56\x01\x37\x27\xaf\xc7\x0a\x05\x7a\xf1\xeb\x54\xa1\xa6\x5f\xf1\x34\xcd\xa1\x17\x20\x97\xab\xb5\x85\x42\x2a\x1a\x51\xea\xd7\x84\x02\x06\x6a\x42\x84\x05\xaa\x09\x57\xeb\xd9\x26\x9b\x6d\x9f\xa0\x1a\xb4\x10\x02\xd2\x51\x6a\x70\x90\x61\x9a\x1a\x94\xf4\x02\x26\xb1\x7a\xa0\x0e\xc7\x82\x6a\x10\x96\xd9\x6a\x70\xac\xfd\xa3\x5b\xfb\x80\x0e\x74\xa1\xec\x49\x20\x7b\x36\xa4\x03\x11\x30\x72\xb0\xb3\xa7\xe1\xc7\x33\x8e\x2c\x35\xb8\x5c\xad\x51\x35\x08\x80\x71\xb9\x63\xd5\xa0\x01\x8d\xaa\x41\xab\xdc\x56\x83\x54\x1d\x3c\x6a\x90\xa0\x78\x87\x1a\x44\xf9\x51\x5a\x2a\x02\x38\x4e\xd2\x48\x06\xd3\xd4\xe0\xd0\xd3\x50\x0d\x0e\x5f\xac\xb7\x96\x00\xa7\xe9\x6a\xb0\x38\x15\x4f\xc5\x33\xb7\x3d\x39\xc1\x4f\x19\xc3\x40\x86\x3b\x4d\xd4\x90\x40\x9a\x59\x91\xb7\x9f\x36\x87\x59\x56\x2c\x37\x03\xaf\xe5\x6a\x2d\x18\x2d\x1f\x57\x4f\x9b\x27\xc7\x1c\x1e\x98\x11\x3d\x44\xf4\xc7\x80\x41\x2a\x59\x5e\xe8\x5f\x01\x38\x88\x65\x0a\x63\x2c\x70\x63\x78\xbd\x99\xa9\xff\x81\x55\x00\xa2\xf8\xe5\x23\x4d\x61\x21\xc6\xb4\x65\x40\x50\xf4\xaf\x02\x83\xde\xb0\x45\x45\x57\x00\x50\xe4\xd8\xc1\x66\xdd\x1f\x9d\xba\x07\x96\x00\x07\xc8\x9e\xff\xa2\x5f\x43\x0b\x80\x0b\x45\xce\xf2\x2c\x5f\x6e\x57\x2b\xef\x30\xb2\x0d\x61\x61\x79\x60\x8b\x80\x09\x8e\x4a\x1e\xbb\x04\x8c\xc0\xe8\x0a\x00\x8b\x1d\x3b\x98\xac\x84\x67\x09\xc0\x49\xde\xb1\x02\x60\xdc\x28\xfd\x1c\x86\x8d\x12\x33\x8e\xfc\x44\x23\x18\x7b\x8e\xc1\x63\x74\x9a\xfa\xf0\xeb\x54\xa0\x26\x7f\x69\xcb\x73\xde\x7e\xc7\xa6\xed\xe6\x90\x3f\x65\xe8\x3e\x4e\x22\x91\x7a\x46\x95\xfb\x55\xa1\x82\xf2\x38\x06\x34\xc8\x24\xd7\x80\x83\x15\x14\xf4\xeb\xdc\x03\x9a\x62\x40\x27\xf2\xc6\xfd\x40\x64\x46\x35\xa3\x5d\x1a\xed\x24\xc0\x10\x31\xc5\x86\xc1\xd9\x53\x44\xf7\x7a\x48\x4b\xa2\x80\xb4\x39\x94\xe5\x9b\xc7\xa5\x77\x9c\x45\x7a\x0c\x2c\x70\x4a\xfe\x58\x5d\x09\xe0\x51\x75\xe9\x40\x78\x3d\x07\x14\x3d\xaf\x9c\x9f\x54\x9a\x04\x4f\x4a\xb1\x45\x81\xc7\xca\x1b\xcd\xe4\x0b\xbd\x08\x72\x5e\xd9\xbc\xa6\x2b\xd0\x6c\xfd\xfc\xb4\x3e\x71\x05\xca\x49\x4a\x1d\xba\x2a\x36\xf9\x5d\x36\xb4\x25\xc8\x9d\x96\x6d\x84\x54\x86\xd5\x5e\x7f\xde\xaf\xfc\x98\xb1\x6c\x60\x27\x1e\xcf\x91\xec\x4e\x9b\x4c\xdb\xed\x23\xbf\xb2\x3e\x35\x8a\xdf\x0c\x95\xe2\x4b\x19\x03\x0e\xf4\x1b\x40\xd8\x44\x1c\x30\x3c\x8e\x92\x3a\x64\xc3\x73\x10\xcf\xaa\x25\xca\x27\x2d\x59\x10\xc5\x2f\xdc\xd7\x2d\x56\x82\x9c\x7f\xa5\x92\x8f\xba\xd9\xa2\x12\x2e\x9c\xfa\x0e\x47\xb6\x83\x85\xad\x29\x0e\x90\xbb\x81\xaf\x23\x0c\x78\x17\xca\xe3\xc4\xde\xac\x4f\x07\x7a\x00\x45\x2e\x4a\x26\x2c\x2a\x73\xbc\xf7\xa6\xf6\x99\xee\xb0\xd8\xbb\x10\xa1\x94\x68\xd9\x3e\xb9\x04\x61\xdc\x68\xbf\x4a\x08\x36\x4a\xcc\x38\xf2\x5f\xb8\xec\xa8\x97\x0f\x4d\x5d\x38\x4d\x27\x0d\x18\xe4\xb4\xe7\x85\x7e\x9d\xc4\x41\x3c\x3a\x49\x94\x4f\xd2\x49\x10\xc5\x2f\xdc\xd7\xe9\x24\x41\x6e\xa2\x4e\x02\x48\x50\x27\x81\xa2\x68\x9d\xe4\x60\x61\xca\xc4\x01\xb2\x07\xa7\xe8\xd4\x90\x4e\x72\xa1\xee\xd1\x49\x72\x00\x44\xe9\x24\x13\x16\x95\x39\x56\x27\x8d\xc0\xa8\x4e\x82\xc5\x5e\x9d\x84\x52\xa2\x65\xfb\xa4\x4e\xc2\xb8\x51\x4a\x23\x0c\x1b\x25\x66\x1c\xf9\xaf\xd7\x49\x93\xac\x54\xd3\x86\xfb\x71\x36\xa3\x66\xd7\x5d\x8f\x47\xd6\x75\x9f\xe4\xb8\xdc\x3c\xa7\xd9\x81\x1b\xc5\xec\x90\xae\x9e\x25\xc7\xe2\x98\x6f\x36\x8e\x95\x2a\x59\x62\xfb\x50\x8e\x8c\xce\x2d\x89\x44\xaa\x40\x55\xee\x57\xd1\x0a\xca\xa3\xa5\x35\xc8\x24\x45\xed\x60\x05\x05\xfd\x3a\x75\xad\x29\x06\xfc\x1d\xbc\x71\xdd\x7e\x20\x94\xb6\x5d\x1a\xad\xb7\x31\x44\x4c\xe7\x62\x70\xf6\x34\xd6\xbd\x1e\x52\xe0\x28\x20\xed\xef\x78\x7e\x3e\xae\x70\x7f\xc7\x38\x42\xa2\xd4\xb8\x05\x4e\xc9\x1f\xab\xcc\x01\x3c\xaa\xcf\x1d\x08\xaf\x4a\xa7\xe8\x79\xe5\xfc\xa4\x62\x27\x78\x52\xca\x37\x0a\x3c\x56\xde\x68\x26\x5f\xe9\xef\x10\xf3\x8a\xd2\xa8\x5f\xaa\x44\x35\x93\xb7\xbc\xad\xcb\xfa\x05\x93\x35\x7f\x62\xcb\x15\x1e\xd2\x27\x90\xe8\xb0\x5d\x59\x1e\x88\x2c\x96\x50\x1e\x1d\xaa\x41\x26\xe9\x50\x07\x2b\x28\xe8\xd7\xe9\x50\x4d\x31\x10\x4d\xc1\x1b\xf7\x03\x91\x19\x8f\x32\xb6\x4a\xa3\x75\x28\x86\x88\xa9\x3d\x0c\xce\x89\x31\x55\xbd\x1e\x0c\x38\xc6\x00\xe9\x39\xf1\xfc\x94\x51\xa1\xa3\x7a\x84\x44\xe9\x50\x0b\x9c\x92\x3f\x3a\xe4\xd8\x84\x47\x75\xa8\x03\xe1\xd5\xa1\x14\x3d\xaf\x9c\x9f\xd4\xa1\x04\x4f\x32\x30\x38\x06\x3c\x56\xde\x68\x26\x5f\xa8\x43\xe5\xbc\xb2\x79\x4d\xd7\xa1\x2c\x5f\x17\x22\xfc\x4c\x90\x54\x31\x0e\x87\xe3\xea\xe9\xae\x20\x64\x28\xc8\xbd\x61\xc8\x61\xa9\x34\xc7\x22\xaf\x5f\x58\xfb\x49\x86\x79\x9e\x9d\x96\x7c\x29\x39\x3e\xad\x53\x75\xfc\x58\x6c\xb6\x9b\x75\x86\x44\x60\x0c\x1c\x91\x2e\x13\xb8\xe8\x14\x17\x38\x9e\x28\x07\x5e\x1c\x8a\xc3\xe0\x40\x9e\x75\x44\x41\x4c\x5a\x46\x6c\xa4\x90\x90\x5f\xb7\x88\x28\x82\xfe\x35\x44\xb4\xaa\xd3\xfe\x64\x40\x06\x28\x8c\x5e\x41\x10\x3c\x4c\xe7\x23\x60\xee\xb1\xbc\xe8\xea\x70\x60\x86\x0b\x47\x6a\x83\xc3\x7a\x95\x2f\x71\x37\x9c\x1e\x16\x51\x8b\x07\x84\x26\x64\x8f\x0f\xcd\x18\xc1\xd1\x95\xc3\x06\xf0\x2e\x1c\x04\x35\x9f\x8c\x9f\x5c\x36\x70\x8e\x74\x08\x45\x18\x3a\x52\xd8\x58\x16\x5f\xb8\x64\xc8\x69\x44\xe8\xcd\x2f\x55\x95\xa3\x69\x7f\xce\xab\x2a\xe1\x7f\xce\x0f\x4d\xf1\x5d\x5f\x07\x07\xf7\x4d\xf5\x35\xf0\xbe\x19\x2f\x30\x2b\x12\x3c\x2f\x02\x13\xb1\x8b\x9a\xce\xd8\x60\xaf\x79\x75\x72\x8a\x91\xfb\xf1\x7b\x78\x15\xd5\x4b\xfd\xb7\xc5\xb1\xa9\xfb\xbc\xac\xcd\x8e\x44\x19\x19\x90\x37\xf2\x92\xf3\x07\x42\xe3\x66\x5c\x7c\xde\xa4\xdf\x5e\x31\x89\x4c\x98\x2c\xd5\x40\xf3\x6f\x65\xc1\x9a\x9b\x4a\x33\xb0\x97\xb9\x12\x2e\x4d\x57\xf2\x8b\x98\xf9\xa1\x6b\xaa\x6b\xcf\xf6\x2a\x6d\x02\xcf\x97\xb0\x1f\x86\xcc\xa9\x6a\xde\x76\xaf\x65\x51\xa8\xab\x98\x82\x56\x22\x28\xaa\xe4\x24\x7b\xc8\x57\xfc\x3d\x5e\x10\x45\x38\x0d\x1c\x06\xc4\xbe\xcd\xeb\xee\xd4\xb4\xe7\x1d\xff\xad\xca\x7b\xb6\x2a\x7e\x99\x6f\xd2\x9f\x67\xfc\x3f\xe9\xc3\xc7\xa2\xac\x2f\xd7\x7e\x26\x75\xde\x82\x88\x22\xf9\x15\xea\xf6\x9e\xbd\xf7\x79\xcb\xf2\x9b\x66\xdd\xb2\x2a\x1f\x26\x83\x59\x0d\x3e\x5f\x06\xbe\xf2\x6e\xb4\xd6\x7e\xd2\x4e\x9a\x8b\x05\x4d\x27\x99\x30\x46\x5b\xb4\x89\x23\x1b\x5f\x0d\x26\x91\xb8\xcb\x24\x9e\xc8\x65\xf3\xe6\x8e\x37\x1b\x24\xf2\x52\xf8\x94\x3b\xd8\x6a\x10\x0d\x18\xd7\xb3\x67\xe2\x3d\xdb\xd3\xee\x19\x4c\xba\x2a\x6f\x5f\x98\x6f\xde\x3e\x39\xd3\xf6\x49\x13\xd0\xed\x0c\xae\x0b\x53\x49\x40\x26\xb5\x8c\x18\xd2\xb2\xd3\x24\xee\xa9\x69\x7a\x31\x4d\xe7\xaf\x2c\x2f\x8c\x79\x98\x82\x79\x98\x7e\x18\xf5\xa1\x26\xeb\x98\x32\x64\xd5\xb2\x73\xe2\x19\x1e\x6e\x7e\xfe\x4e\xdc\x84\x1e\xdb\x5f\xdf\xce\x7f\x36\x68\x99\x60\xbc\x99\x35\x14\x6f\xc2\x44\x57\x6e\xa8\x97\x2f\x1a\x0f\x11\x34\xd9\x72\x0e\x72\x04\x9e\x9a\xba\x9f\xbf\x89\x79\xfc\x98\xa6\xfb\x43\x33\x54\x33\x2f\x86\x96\x49\x96\x97\xf7\x24\x4d\xd2\x44\x2c\x8e\xcb\xe5\x4c\xfd\x6f\xb1\x7c\x90\x6b\xc8\x2e\xbb\xbc\x27\x5d\x53\x95\x45\x62\x4c\xab\xfd\x30\x19\xe7\x05\x3b\x36\x6d\xce\xa7\xa2\x98\x03\x82\x27\x57\x72\x83\xa6\x61\xc5\x4c\xf5\xa5\x58\xac\x42\x58\xca\x38\x1a\xbf\x9c\x9a\xe3\xb5\x33\xe8\x40\x88\x1d\x2f\xbe\x35\xd7\x7e\x58\xa7\x76\x53\x6a\x17\x12\xa5\xac\xbf\xb1\xb6\x67\xc5\xf0\xbb\xa4\x5f\xdc\x0c\xf2\xfc\xc2\xbc\x7d\x77\x7d\x44\xd7\xd7\x30\xdd\x2a\xe9\x22\xab\x6e\xba\x6c\x47\xe0\xc8\xda\xc2\xb5\x5d\xdc\xd5\x8c\xaf\x38\xac\x23\x4f\x36\xa3\xd2\x44\xcc\xf9\x82\xb9\x3b\x97\x45\x51\x81\xb6\x38\x36\xe7\x4b\x7e\x34\xf2\x4c\x2c\x37\xec\x9c\x2c\x1e\x37\x3a\x57\xc6\x6e\x2e\xbe\xc1\x7f\x52\x84\xc8\xe2\x72\xad\x2a\x31\x85\xe1\x7c\x9e\x67\xe3\xa8\x5d\x8c\xf7\xff\x91\xca\xa2\xed\x6c\x0d\xb8\xb1\xd1\xe2\xcd\x24\x0f\x75\xaa\x47\xc4\x77\xf2\x6a\x39\x4a\xcb\x18\x4d\x26\xf7\xe2\x30\xfc\x78\x31\x78\x9f\xa9\xac\x1c\x37\xc7\xc6\x0b\xe2\x52\x03\xce\x86\xa3\xda\xd2\x84\x13\x83\xd1\x0f\x42\x34\xbd\xa9\x47\xd0\xc1\x3c\xa1\x4a\x9e\xe9\xa5\xc5\xa0\x3a\x29\x56\x0e\xcf\xb8\x20\xb4\x84\x41\xcb\xda\x77\x6c\x1e\xf6\xe8\xf7\xe7\x87\x68\xfa\xa1\x9e\xa4\x70\x7c\xbd\x8a\xe1\x78\x7a\x18\x05\x9f\xdc\xdb\xf0\xea\xb6\xba\x46\x39\xa1\x46\x9e\xce\x47\x25\xa4\x06\x82\xb3\x37\x8c\x10\x74\x6f\xad\x05\xa6\xe0\xfa\x06\xa8\x2b\xa0\x2e\x42\x7a\x90\x97\x21\xca\x5f\x7c\xc7\x94\x7f\x3a\x65\x41\x77\x24\x74\x89\xa1\x95\x40\xc6\x8d\x90\x88\xbc\x40\xf2\x38\xfc\xd8\x6d\x48\x50\xa7\xaa\x4b\x6a\x56\x8a\x50\xb4\x5a\x75\x30\x7c\x6a\xd5\x1d\x95\x28\x3a\xd5\x9b\x11\x73\xd0\x81\x73\xe7\x9d\x0b\x32\x7d\xae\x8d\x17\xdb\x23\xab\xe4\x19\xbb\x9f\xd0\xac\xa6\x1c\x44\x47\x46\xea\x54\xe0\xc3\x83\x6a\xd5\x71\x72\x46\x72\x09\xf5\xe4\x04\xcd\xea\xc5\xf1\xf4\xf0\xd7\x68\xd6\x93\x15\xab\x37\xa1\x2e\x9e\x6e\x9f\xae\x53\x41\x47\x38\x6a\x15\x4a\xe9\x53\xa8\xfa\x1e\xa7\x2b\x9d\x2e\x42\x3a\x8e\x97\x21\x0a\x55\x7c\x57\x0a\x75\xda\x7e\x88\xd6\x2b\xf2\x5e\x7e\x0c\x14\x31\x68\x84\x5c\xf1\x06\xab\x87\x3a\x55\x69\x52\xad\x8a\x5b\xdf\x28\xad\x68\xcd\xea\x60\x78\x0d\x56\x79\x27\x2f\x80\x4e\x75\x6b\xc4\x1c\x74\xe0\xdc\x79\xe7\x82\x4c\x9e\x6b\xa2\x19\xec\xeb\x92\x01\x69\x3d\xe3\xf8\x13\xca\x15\x8a\xe2\xe9\x9f\x48\x15\x3b\xa6\x2e\x80\xfa\x15\x26\x74\x88\xa4\x1f\xea\xcc\x09\xca\xd5\x8b\xe3\xe9\xe4\xaf\x51\xae\xc6\x1d\x6b\x7e\xdf\x71\x42\x5d\x3c\xdd\x3e\x5d\xb9\x8e\xbd\xe0\x68\x56\x28\xa2\x4f\xb3\xaa\x4b\x9a\xae\x64\xaa\x04\xe9\xb3\xa1\x08\x51\xab\xfc\x33\x66\xa6\x66\x59\x96\x2f\x97\xf7\x59\xaa\xe2\xa2\x3b\x42\x0e\xab\x05\x32\x56\xb8\x50\x64\x44\xdb\x61\x9d\x6e\xec\x2b\xad\x34\x79\xa2\xca\xa4\x4e\x15\x37\xa9\x31\x4a\xd1\x2a\xd5\x46\xf0\x69\x54\x6b\x34\x62\xa8\x44\x67\x46\xcc\x39\x1b\xcc\x9d\x66\x0e\xc4\xe4\x99\x25\xc7\x49\x7c\x75\xe8\x51\xfb\x09\x2d\x0a\xa5\xa0\x47\x43\xac\x9d\x6a\x5e\xff\xb7\xec\x54\x3b\x2b\x42\x1c\x93\x40\x47\x4e\x50\xa4\x3e\x14\xba\x83\xbf\xc8\x46\x05\x37\xc7\xdd\x75\x33\x54\x1d\xba\xef\xef\xb0\x53\xcd\x8e\x70\xed\x54\x44\x52\x9f\x4e\x35\x6e\x4c\xba\x42\x1a\x85\x48\x1f\xca\x52\x44\xb9\xaa\x12\x54\xbf\x16\x4f\xa7\xed\xea\x3e\xfd\xaa\xaf\xd1\x23\x14\x89\x4a\x21\x03\x49\x49\x47\x87\x0e\x1f\x4f\xcf\xa9\x3d\xd1\x7c\x4c\xe8\x16\x20\xd5\xad\xb8\x8f\x4d\xd0\x8b\xd6\xb8\x08\x8e\x57\xe9\xca\x7b\xbb\x41\x02\x74\x6f\x47\x4c\x54\x04\xd2\x9d\x9f\x18\xd0\x74\x1d\x2c\xc6\xd2\xd4\xda\x79\x07\xfa\x67\x94\x31\x10\xc7\x3b\x62\x7e\xa8\xdf\x20\xc0\x27\xdc\xc1\x13\xb4\x72\x00\xcb\xdb\xf1\x3f\xda\x7f\x10\x51\x23\xef\x50\xf8\xd7\xf4\x21\xd4\x84\x11\xa7\x4a\xd0\xdd\x49\x8d\x59\xba\xfc\x33\xee\x90\x5d\x1f\x58\x76\x9f\x26\x16\xd7\xc1\x11\x72\x58\x2d\xd0\x5d\x51\xed\xb1\x74\x4f\x8f\x6b\xc7\x7f\x40\x93\x27\xaa\xec\x71\xca\x6e\xd6\xa7\x03\x46\x69\x82\xf3\xa0\x8e\xb6\x74\xd5\xad\x55\x3f\x36\xd1\x9f\x11\x33\xd0\x06\xc3\xf6\x94\xf5\xa7\x3d\xb2\x7c\xa8\x4c\xaa\x11\x3d\x76\x3f\xe5\x92\x35\x05\xa1\xc7\xc4\x0f\xd5\xaf\x3e\x26\x81\xbe\x9c\xe4\x38\xa0\x51\xe8\x3e\xfe\xd1\x3a\x35\x54\x11\xba\xd7\xff\xf5\xb4\xa9\xba\x6f\xe9\xca\xa6\x4a\x90\x1e\x1b\x8a\x10\x6d\xca\x3f\x7f\xb5\x36\x15\x17\xd9\x03\xea\x4e\xc9\x8a\x0c\x15\x2e\xd4\x27\xb5\xa9\xbf\x91\xa6\x68\x53\x45\x29\x5a\x9b\xda\x08\xd3\xb4\x29\x86\x4d\xf4\x67\xc4\xac\xb3\xc1\xdc\x99\xe6\x40\x7c\xb9\x36\xc5\x44\xa5\xc7\xee\x0f\xd4\xa6\x8a\xc5\x0f\xd5\xa6\x3e\x26\x81\xbe\x9c\xa0\x4d\x7d\x28\x74\x1f\xff\x68\x6d\x1a\xaa\x08\xdd\xeb\xff\x7a\xda\xd4\xb8\xfc\xe8\x8a\x67\x14\x22\xfd\x26\x4b\x11\xb5\xaa\x4a\x30\xcd\xba\x5c\x3d\x3d\x2d\x8f\xf7\x69\x56\x7d\x11\x1d\xa1\x48\x54\x0a\x19\x3c\x4a\x3a\x4a\xc5\xae\x56\xc7\xf5\xda\xf6\x18\x78\x99\xd0\x2d\x40\x7b\x0c\xf8\x8d\x66\x82\x5e\xb4\xae\x45\x70\x7c\xea\x56\xdd\x7c\x0d\x12\xa0\x7b\x3b\x62\x72\x22\x90\xee\x9c\xc4\x80\xee\x38\x0f\xe1\x63\x69\x6a\xed\xbc\x03\xfd\x13\x0a\xd8\x12\xc7\x37\x62\x7e\xa8\x0e\x0e\xf0\x09\x77\xf0\x04\x4d\x1c\xc0\xf2\x76\xfc\x8f\xd6\xc7\x11\x35\xf2\x0e\x85\x7f\x3d\xad\x6c\xdc\x62\x44\x22\xcd\xc6\x42\x2c\x18\x4f\x94\x62\x91\xbc\xb2\x04\x8d\xe5\xdd\x3c\xae\xd3\xcd\x7d\x5a\x59\x5f\x6d\x47\x28\x12\x95\xc2\x02\x02\xa5\x74\x64\x0c\xc2\xe1\xf9\xb0\x3a\xda\xd1\x92\x3e\x26\x74\x0b\xd0\xb1\xb3\xfc\x8e\x34\x41\x2f\x3e\x7a\xd6\xc5\xf1\x69\x65\x75\x97\x36\x48\x80\xee\xed\x88\x89\x8a\x40\x22\x61\x96\x08\xd0\xf4\x50\x5a\x31\x96\xa6\xd6\xce\x3b\xd0\x3f\x13\x51\x0b\xc4\xf1\x8e\x98\x1f\xaa\x95\x03\x7c\xc2\x1d\x3c\x25\xba\xd6\x8f\xe5\xed\xf8\x1f\xad\x95\x23\x6a\xe4\x1d\x0a\xff\x7a\x5a\x79\xbc\xb1\x88\x9d\x00\xaa\x32\xf4\x7c\x74\x28\x44\xe3\x16\x78\x01\xa6\x91\xf3\x74\xb5\x5a\x3e\xdf\x1b\xb9\x20\x2e\x88\x23\x04\xf1\xfa\xa0\x07\xb4\x5c\x34\x4a\x1d\x1f\x4f\x9b\xe5\x7a\xbb\x8f\x67\x41\x56\x9e\x54\xc6\xe2\xca\x31\x4e\x6d\x42\x14\x83\x8d\xe2\x53\xc5\xea\x8e\x6a\x08\x9f\xec\xe3\x88\xb9\xe9\x02\x62\xe7\xdd\x0e\xcc\xe4\x19\x28\x07\xd0\xc4\x9a\xf9\x46\xf6\x27\x94\x30\x14\xc6\x37\x4e\x7e\xa8\x0e\xf6\xb3\x09\xf6\xec\xa4\xf8\x06\x1f\x92\xaf\xc7\x7f\xb4\xfe\x0d\x57\xc7\x37\x06\xfe\x75\xb4\x6f\xb2\x28\x8f\x42\x92\x9e\xbd\xf7\xbb\x53\xd9\xaa\xab\x99\xc6\x2d\xcd\x59\x18\xd8\xbe\xd7\x49\xa0\x8c\x10\x02\xc3\x20\xf1\xe0\x7d\x22\xfe\x63\x71\x68\x59\x5e\x1c\xdb\xeb\xf9\x90\xe4\xe8\xa5\xc3\x31\x29\xc2\x23\x84\xf6\x5e\x54\x94\x0f\x64\x27\xc6\xd3\xfd\xd6\x63\xec\x1d\xab\x4e\xea\xae\xb9\xba\xeb\x6a\x7e\xe3\x74\xc5\x35\x3b\xeb\xc5\x76\x93\xe8\xb9\xac\xcb\xf3\xf5\x6c\x5e\x62\xd5\x57\xa6\xf5\x2d\xe8\xf9\xb9\xf9\xeb\x3c\xbf\x5c\x58\xde\xe6\xf5\x91\x89\x6a\xcd\xdf\xd8\xe1\xf7\xb2\x77\xbe\x23\x57\xe1\x9d\xeb\x9d\x7f\x38\x1c\x8e\xeb\x22\x53\x43\xa3\xcd\x8b\xf2\xda\xed\x96\x97\x77\x7d\x6b\x5e\xdc\x17\x9c\x8b\x87\x7f\x9b\xba\x9f\x77\xe5\x5f\x19\x7f\xc5\xdc\xb9\xd8\x2b\xae\xd3\xf6\x79\xdb\xef\x39\x8e\xba\x49\xbe\xd8\xec\xad\xeb\x86\x7d\x73\xd9\xe3\xc1\xce\xca\x87\x8a\xde\xb7\xd9\x1b\x8f\x5e\x8b\xab\xaf\xec\xbc\x97\x5c\xf2\x6b\xdf\xc8\x06\xfb\x53\x51\x76\xf9\xa1\x62\xc5\x9f\xc7\xa6\x1b\xbf\xdd\x8e\xd7\xb6\x13\x0f\x73\xcf\xf3\xaa\x6a\xde\x58\x81\xc8\x02\xdb\x45\x69\xcf\xe3\xe1\xf1\xf8\x28\xb9\x98\xf3\x55\x7f\xd0\x4a\x4c\x7f\xd1\x1a\x8a\x7f\xd9\x01\x0c\xa5\x8c\xc4\x1f\x32\x7f\x84\x92\xd8\xa4\x6f\x7e\xd3\x2c\xcc\x8f\x9a\x8b\xfa\xb8\xb3\x51\x15\x2f\xfd\xb7\x54\x6c\x74\x05\x77\xbb\x4b\x95\x1f\xd9\x6b\x53\x15\xa6\x5c\xe0\xf3\x0d\x34\x97\xd1\x32\xf2\xe6\x27\x94\xf2\x13\x77\x4a\x4f\x25\xab\x84\x01\x21\xee\xaf\x5a\xc3\x93\x3f\x3d\xff\xc1\x75\x89\x2f\x05\x84\x39\x98\xf1\x6b\xe9\xce\x48\x1d\x26\xef\x30\x5c\xf5\x60\xe6\x6f\xf2\xab\x67\xb3\xe5\x5f\xa7\xb2\xaa\xc6\x4b\x36\x4a\xa3\xf1\x1c\x18\x33\xa0\xe0\x6e\x8a\x8c\x41\x83\xdf\xdc\x56\x40\xf2\xfe\xf8\x38\x75\x4c\x66\x1b\x00\x2a\xee\x90\x4b\xc8\xe5\x08\xb7\x04\x50\xa7\xbc\x60\xc5\x4d\x08\x78\xd8\x0c\x3f\x63\x99\xb8\x6e\x2b\xca\xf8\x5a\xa5\x0a\xc4\x55\x31\xbc\x56\xe2\xca\x83\x44\x92\x11\x7c\xaa\x8c\x07\xee\x8a\x22\x1e\xc9\xa9\xbe\xab\x80\x33\x59\x24\x03\x8c\x54\x69\x59\x9f\x9a\x99\x41\xbf\x56\x34\xd4\x91\x8e\x6e\x50\xe9\x85\x96\x64\xa4\xd7\xf1\xf8\x9a\xb7\xfd\xa2\x28\xbb\xbe\x2d\x0f\xd7\x41\x75\xcf\x0f\x79\x9b\x74\xdf\x5e\x92\xc5\x21\x6f\xbb\x64\xd1\x55\xe5\x91\xcd\xd3\x91\x87\x72\x9c\xc8\x5a\xc8\x8d\xf2\x58\x0b\x6e\xc4\x8b\x42\x65\xbe\x55\xec\x1b\xab\x12\xf1\x8f\x4e\xec\x73\xb9\x56\x15\x2b\xe4\xcd\x66\x54\x1d\xb2\xba\xf0\xe3\x0e\xab\x19\x8e\xca\x35\xe9\xc7\xe2\xcc\xea\x6b\xc2\xff\x3b\xaf\xca\xae\x4f\x72\x70\xbd\x7f\x9b\x8e\x89\x0b\x44\x26\x00\x39\x66\xa0\x46\x07\x57\x06\xcb\xba\x63\x3d\xdf\xce\xa4\x7a\x01\xc0\x17\x3f\x87\xb7\xa9\x94\x9c\x42\xc7\x56\xda\xa5\x09\xc2\x78\xbe\x92\x9b\x29\x2b\xc3\xb8\xea\x6d\x9b\xae\xf8\x75\x68\x36\x69\x01\x80\x8a\x42\xf8\xfc\xc0\x2a\x05\x35\x4c\xac\x44\xa4\xd2\x48\xdc\x6c\x33\xe2\x8b\x64\xfd\xc8\x9e\x4e\xf9\xd3\xbe\x62\x7d\xcf\xda\x79\x37\xd8\x09\xf5\xcb\xb0\x00\xdb\xb4\x4d\x83\xc4\xcc\x26\x92\xc2\x94\x18\xa8\x5c\x88\x45\x23\x3b\x89\xe3\xd8\x6b\xf2\x40\xa0\xeb\xf2\x17\xd3\xba\x93\xd3\x54\x16\x24\xea\x17\x9e\xfe\x02\xb6\x3c\xb2\x98\x1a\xab\xf7\x22\x13\x6a\x0b\x1f\x48\xca\xc2\x52\x7f\x6a\x13\xcb\xe1\xcb\x33\x6a\xb8\x46\x85\xbc\x93\xe2\x18\x15\x04\x85\x85\x4c\x7e\x33\x3f\x54\x8c\x15\x7a\x75\xa0\x18\xf2\x1c\x49\x15\xb3\x72\xa6\xa4\x1f\x6e\x66\x19\xb3\x41\x2a\x2b\xa9\x51\xdf\x24\xbc\x5e\xb3\x3f\x64\xdb\xc7\x74\x5d\xcc\xfe\x90\x15\xcf\xeb\xed\xe3\x83\xd2\xf4\x2b\x30\x42\x86\xe6\x04\xcd\xb3\x4c\x2f\xef\x56\x0b\x0d\x9f\x10\x29\x40\x7e\x1b\x32\x23\xd9\x13\x95\x9e\xc2\x4f\x4f\xce\x39\xd3\x90\xb7\xf2\x53\xf8\xf1\x17\x6a\x36\x07\xc0\xf4\xbc\x07\xac\x44\x07\x8b\x1e\x98\x9b\x9b\x9e\x09\x49\x7e\x76\xbb\x03\x3b\x35\x2d\xbb\xc9\x55\xee\xf2\xae\xd7\xda\x41\x8d\x8d\xb5\x21\x76\x9f\x42\x63\xfe\x5d\xf2\x77\x7a\x95\xe7\xc6\x00\x92\xac\x48\x0e\x6b\x91\xfd\x67\x30\x2c\x82\x8d\x33\x2c\x47\xcd\x4b\x93\x94\xe7\x17\xbd\xd0\x6e\x2f\xef\xfb\x73\xfe\x3e\x37\xfe\xf6\xd1\x61\x75\xf1\x5b\x1e\x39\x02\x26\xd1\x99\xd2\xf3\x1d\x3b\x36\x75\x81\xbf\x9c\x26\x86\xbd\x5e\x44\xa4\x49\x93\x0c\x83\x39\x51\x7f\xa4\xaa\x4b\xd6\x0b\x54\x71\xe0\x5d\xaf\xb9\xc2\x19\x60\xea\xa1\x55\x3b\xf6\x82\xd3\xf4\x2f\xd7\x41\x1d\xcb\x71\xb1\xdc\x88\xd9\xd5\xf4\xe5\xa9\x3c\xf2\x09\x72\xb3\x16\xbe\x71\xd9\xc3\xb4\xa9\x89\xc9\x1b\x98\xd5\x05\xcc\x0b\xac\xad\x7e\x77\x88\x5b\x66\xae\x4d\xab\xbd\xd6\xb5\x4d\x8b\x65\xec\x60\x2f\x6e\x76\xa0\xb3\x5c\xf1\x6c\x72\xac\x6d\x1b\x4b\x9b\xaf\x8b\xc7\x62\x0d\x5d\x4a\x7b\xdc\x83\x66\x13\x3b\x0e\x3b\xc2\xc1\xd4\xb0\x97\x87\x35\xcb\xe1\x51\x81\xed\x20\x90\x66\x91\x4d\x50\x26\x69\xc1\xd7\x1a\x34\x11\x9d\x4b\xc3\x7e\xd9\x7f\xf7\x87\xc7\x74\xf8\x71\xf6\x7f\xd8\xbd\x7c\x9b\x98\xf5\x2e\xea\xee\x0f\x8f\xcf\x07\x78\x15\xce\xb9\x31\xe5\x0c\x06\x77\xc1\xf8\xc3\x21\x3f\x65\xc5\x11\x46\xc5\xdb\xb4\xa4\x25\x6b\x93\x13\x16\xad\xfd\xd5\x7a\xfb\xe9\x53\x43\xc4\x7d\x19\x60\xf7\x87\xc3\x91\xb1\x63\x06\x0f\xe5\x6d\x81\xa5\xcd\xec\xf4\xa9\x93\x24\xfb\x53\x43\xc4\xc9\x93\xfa\xa9\x11\x6c\x3f\x7e\x0e\x06\x9c\x34\xdd\xf0\x79\x7a\xc9\x5f\xca\x5a\xe8\x0a\x05\x9e\x0f\x3f\x66\x49\x62\xfc\x3e\xaf\xaf\xe7\x03\x6b\xbb\x9b\xe1\x68\x18\xcd\x47\x3e\xf0\xb9\x75\xc8\x76\x75\xf3\xd6\xe6\x97\xbd\xd0\x36\x4b\x92\xde\xd0\xe5\x33\x92\x19\x7b\xef\xc9\xc2\x4b\xcb\xbe\x95\xcd\xb5\xbb\x61\x33\x42\x66\xa2\xb2\x4c\x7c\x69\xf7\xa6\x7b\x54\x7a\xc3\x4f\x42\x58\x1a\x9e\x3a\x28\xe7\x84\xa7\x26\x01\x10\x55\x1f\xed\x77\xa0\xb2\x6a\xe9\xd3\x43\x79\x39\xdd\x27\x95\x32\x5e\x7c\x62\x05\x60\xb4\x5c\xe4\x69\x88\x3a\xda\xb8\xb4\xcd\x4b\x2b\x03\x14\xf8\xd6\x5e\x99\x04\xdc\x02\x38\xe4\xc5\x0b\x9b\x2d\xfa\xfc\x85\xdb\xf9\x83\xa1\xfa\x60\x6c\xe3\xd9\x19\xfa\xc4\x74\x36\xb8\x31\x09\x9c\xe8\x26\x23\x69\xee\x32\xe5\x4b\x9e\xb0\x76\x51\xc5\x68\xf8\xeb\x42\xae\xbd\x63\x53\x55\xf9\xa5\x63\xbb\x8e\x5d\xf2\x36\xef\xd9\x7e\x4c\xec\x28\x79\x70\x3b\xbc\x7c\x67\xc5\x8d\xff\x39\xaf\xf2\xef\xcd\xb5\xdf\xf1\x4f\x36\x48\xd2\x17\xc2\x61\xaa\xb3\x4b\xb2\xaa\x2a\x2f\x5d\xd9\xb9\xf9\x26\x05\xe6\x5b\xd9\xbf\xf2\x94\x7d\xb6\xe1\x6e\x99\x91\x83\x95\x66\x6e\x5b\xcd\x32\x6e\x67\xeb\x42\x87\xf2\xaf\xe2\x03\xc6\x45\x6d\x16\x75\x2d\xa4\x2f\x2a\xe9\x8b\x19\xf2\xf1\xf5\x06\x5c\x8d\x06\xde\xb0\xd8\xb0\x7a\x68\x00\xbe\x17\xe9\x5b\x91\x32\x99\x9b\x3b\x15\x3b\xf6\x6c\xd8\xd6\x21\xd9\xf0\x87\x9f\x69\x64\xb4\x43\xd0\xc6\xe1\x50\x7d\x5b\x5e\xfc\xe8\x75\xff\x2a\xf6\x99\xbf\xb0\x6f\xac\x46\xa5\x92\xee\x9b\x2f\xe2\x40\x1e\x59\xaa\xa9\xcc\xf9\x8c\x2d\xee\x34\xb3\xf4\xe8\x1a\x3a\x6e\xc4\xe1\x1e\xb4\xd7\x96\xb1\xf9\xbf\x5c\xf3\xb6\x67\x6d\x37\x52\x71\xcb\xa4\xd1\xf8\xb8\xf9\xd9\xa2\xf0\xd6\xcc\xfb\xd7\xb2\x2d\x6c\x6c\xfd\x5d\x62\x6e\xb7\x8b\xed\xd6\x42\x7e\xcd\xab\x13\x44\x1b\xbe\x48\x84\x4d\x6a\x41\x37\x35\x13\x24\x21\x8a\xfe\x2c\xf1\x56\xab\xc5\x6a\x85\xa0\xca\x9a\xb8\xc8\xb2\x40\x9b\xc5\x76\x0d\xdb\x6b\x7d\xcc\xf9\x17\xab\x8a\x63\xc1\xcd\x9a\xa2\x7b\x62\x26\xbb\x0b\x1e\xe4\x55\xe7\x6d\xdb\xbc\x41\x36\xe2\xdb\xcd\xdc\x4e\x0c\x1b\x88\x44\xfe\xb2\x18\x67\x13\x20\xf2\xab\x31\x2a\xc0\xe7\x57\x8c\xbc\x09\x0d\x3e\xeb\x01\x25\x36\xe9\x2e\x37\xae\x53\x21\x2e\xff\xa4\x9a\x73\xf8\xdd\xd0\xc1\xa6\x0a\x96\x14\x32\x88\x9d\x49\xcc\xa7\xc5\x6a\xf8\xbf\x9f\x0d\x64\xf5\xc9\x92\xc0\xe2\xae\xf6\xbd\xc3\x80\xdb\x6e\x1f\x4d\x02\xfa\x1b\xa4\xb0\x82\x14\x56\xe3\x50\x30\x25\xb7\x07\xc6\x1a\x62\xad\xcd\xf1\x67\x09\xae\xbf\x41\x0a\x1b\x48\x61\x23\x29\xac\x33\x57\x72\xfd\x0d\x52\xd8\x42\x0a\xdb\x71\xee\x18\xb8\xce\x4c\x7a\x84\x58\x8f\x0a\x0b\x69\xf2\x0d\xde\xe6\x4f\x90\xc2\x93\x39\xc9\x2d\xc9\xb7\x78\x9b\x3f\x43\x0a\xcf\xa3\x82\x31\x70\x1d\x75\x93\xa5\xd6\x60\x49\xd5\x68\x41\x5a\xfd\x09\x6f\xf5\xcc\x1e\x70\x6a\xc4\x3d\x23\xed\xfe\xec\xb6\x7b\x92\x8f\xf8\x63\xfa\x75\xb9\xd9\xb0\x0d\xc1\x6b\x5d\xb0\x76\x30\x54\xc0\x16\x7f\x9d\xa6\x26\x3d\x63\xc3\x64\x92\x36\xf7\x51\xd0\x5a\x41\x4f\x63\x2d\x1f\x82\x66\xc0\x53\xf9\x02\x63\xdf\x7c\x83\x1e\xdb\xd9\x1b\x88\xc3\x3a\x45\xac\x42\xfa\x51\x05\x00\x6e\xe8\x11\xfe\xf7\xab\x3e\xd1\xe2\x67\x25\x76\x33\xd8\xc7\x43\xc2\xba\x80\x56\x4a\x50\xc4\x62\x5c\x45\xa1\x9a\x16\x12\xc0\x52\xd3\x1d\xea\xa3\x62\x76\x33\x46\x27\xc9\x6f\x96\x7f\x0c\x59\x79\x8d\x5c\xdf\xf8\x16\xc1\x2f\x01\xb0\x58\x48\x39\x62\xcd\x04\x83\x89\x3e\xcc\x74\x08\x4b\xab\x1d\x49\x0f\x4e\x51\xd9\xed\xf2\x53\x8f\x4b\x09\x00\x6e\xda\xb5\xf8\x77\xba\x5d\x2e\xef\xfb\xd6\xb0\xe8\xf9\x39\xc2\xa3\x30\x59\x54\xe2\x6e\x76\x46\x3c\x8f\xa0\xe5\x69\xd1\x16\x79\x77\x0c\x8a\x67\x00\x8d\x22\xfe\xdf\xff\xd7\xff\xf9\x77\x1e\xba\x05\x8b\x21\x6c\x40\x99\x94\xff\x0f\x87\xb2\x3b\xd6\x46\xc5\xa2\x36\xd8\xb2\x5c\x1a\x8f\xc2\x29\xd2\xb3\x56\x39\x91\xc5\x19\xfc\xa5\x29\x65\x5c\xc2\xfb\xbc\x2b\xff\x3a\x0c\x47\x3d\x95\xde\x31\x1a\xce\x26\x4d\xfa\x51\xb3\xd9\xf3\xb3\x8a\x73\xa1\xf1\x92\xbe\x00\x07\x38\xf4\xa8\x09\xa1\xaa\x66\x72\xbb\xda\x19\x35\xab\xcb\xbb\x4c\xc4\x0f\x13\xf7\xcf\x33\x23\xca\x42\x4c\x49\x53\xeb\x29\xc7\x0f\x10\x48\xcc\xb8\xeb\x61\x68\x75\x7e\x7e\x69\x27\xfa\xc6\x7d\x24\x38\x2d\xe4\xe0\x06\x6e\x19\x85\xfc\xe9\x60\xbc\x8d\x67\x1d\xca\xa2\xcb\x80\x6d\x65\x88\x37\xd8\xa8\xfc\x88\x9e\xb6\x1e\xc7\x73\x69\xa0\x6c\x35\x35\x91\xd8\xdd\xdd\xcb\x0d\xcd\xc8\x9b\x6d\xc2\xf2\xe0\xdb\x41\x8e\xfb\x66\x6c\xf3\x39\x94\x62\x7b\xd9\x4e\x0e\xff\x0e\x1e\x87\x9a\xcf\xaa\xe0\xf1\x47\x70\x95\x00\x0a\x75\xa8\xa5\xe9\x96\x30\x6b\x6f\x7e\x1f\x57\x03\xed\xed\x11\x32\x61\x2b\x26\xb6\xc2\x76\xc9\xb5\x82\x36\x72\x66\x1c\x8c\xb6\xea\xdc\x45\x55\x74\xb4\xe3\xf5\x1a\x61\xfb\xdd\x7c\xc7\xca\x1f\xa1\x76\x42\xd0\xe5\xf1\x30\x71\x38\xcc\xdd\x2c\x0b\x98\x04\xbc\xaa\xc4\x26\xc4\xf0\xbc\x2c\x60\x0c\xa3\x11\xc9\x2b\x87\x73\x22\xfc\xd2\xf2\xb5\x1b\xa8\x15\xc0\x29\xe8\x08\x33\xc6\xa6\xdd\x9c\x93\x51\xf5\x6a\x4b\x77\x3d\xd4\xf9\xb7\x51\x2d\x70\x5f\x89\x38\x71\xca\x86\xf1\x24\x8e\x0e\x37\xe3\x42\x92\xee\xff\x3a\x2f\xeb\x82\xbd\x0f\x5b\x0d\x9b\xce\xaf\x7f\x34\x47\xbe\x9c\x6f\xa6\x7f\xc9\x72\x03\xf1\xcd\x8b\x6d\xb1\x8c\xc7\x2d\x8b\x27\xe5\x03\x31\x5b\xaa\x6e\xe6\x22\xc8\x45\x3d\xe1\x31\x3b\x36\x05\xbb\xc1\x6f\x7a\xb4\x5a\x6d\x1c\x75\x88\x82\xe0\x61\x07\x26\xc8\x7b\xe3\x2e\x3f\xc4\x4f\x2f\x3d\xf3\x5e\xbc\x63\x73\xbe\x54\xcc\x3a\xb6\x90\x27\x5f\x5e\x44\xf7\x28\x06\x79\xea\xcb\x65\x87\x9f\xb9\xb8\xef\x4d\x3a\x98\x62\x34\x3b\x21\x1e\xd6\xa4\xb3\x0e\xfa\xf8\x9b\x5c\x6a\x8f\xa7\x7e\xdf\x18\xbf\x6f\xed\x07\x46\xf8\x40\xc8\x67\x39\x3c\x44\x0c\x6d\x0a\x3e\xf8\xc8\x10\xc0\xc7\x6b\xdb\xb2\xba\xff\xa7\xe1\x0f\x4b\xa0\xfd\xa8\xa4\x8c\xb3\x3e\x9e\xe9\x5f\x38\x49\xf9\xf3\x49\x73\xe3\x39\x0c\xe1\x4e\x75\x47\xaa\x58\x36\xd0\x95\xc4\x6b\x50\x7c\x2c\xf2\xe3\xb1\x69\x0b\xee\xec\xd5\xbf\xca\x07\x84\xd0\x22\xb1\xeb\x88\x5a\x43\xc8\x50\x44\x0f\x57\x53\xc1\x78\x24\x00\x7a\x68\x0c\x0e\x71\x96\x25\xa3\xc8\x5e\xd0\x7c\x42\x98\x11\xbb\xb4\x0c\x86\x9e\x0b\xec\x6b\x02\x8b\xa7\x7f\xe5\x25\x04\xe5\x1d\x01\xde\x8f\xc1\x56\xb6\x8a\xbd\xef\x32\x0f\x05\xf2\xd8\x28\x80\x53\xd6\x30\xca\x41\x19\x26\x24\x92\xfd\xb7\x0a\xe1\xba\x99\xde\xf5\x28\x6c\xf1\xe0\x97\x88\xff\x3d\xe4\x5d\xd9\xed\x52\xd4\x01\xc7\xe7\x90\xad\xf9\x0d\xfb\xcc\x08\xaa\xb4\x97\x4b\x22\xc1\xb0\x75\xbc\xea\x2e\xb1\xa6\xad\x66\xe5\xcd\x7f\x7a\xa0\xd7\x64\xea\xc8\x4e\xbf\xad\xe0\xe0\x75\xd7\x43\x5f\x21\xe6\xbd\x19\x26\xb1\x7a\x80\xe1\xf5\x8a\x88\x7d\xa4\x0c\x4f\x8d\x3d\x38\x68\x0d\x9d\xc8\x0c\x17\x47\x55\x12\xb5\x2e\xd4\x39\x0d\x11\x91\xc5\xd3\xa0\x3b\x14\x89\xea\x8f\xad\x4d\xd5\xdd\x1e\xea\x78\x16\x43\x91\x5c\x13\xe0\xa0\x75\x1f\x93\xcc\x82\x8a\x1b\x59\xac\x3d\x15\x57\xe6\x38\x5e\x71\x7d\x4d\xc8\x21\x4a\x75\xbd\x99\xa5\x91\xaa\xbe\x15\x00\x60\x9c\xf4\x3b\xa9\x26\x4d\x14\xbc\xe3\x4d\x86\xa0\xfe\x63\xc2\x59\x4f\xf5\x79\xbc\x01\xb1\x0b\x53\x59\x45\x6d\x82\x44\xd5\xc7\x6e\xa0\xea\xed\x5a\x43\x30\x30\xc1\x8b\x35\x71\xd8\x83\x5c\x90\xbe\x06\x90\x71\x12\x44\x1b\xa8\x64\x7e\x08\x59\xaa\x19\x1e\x67\xd9\xd3\x76\x96\x2d\x9f\x7d\xe3\xbf\xc6\x06\x00\x62\x51\x02\x94\x89\x4d\x30\xe6\x61\xf3\xd4\x5f\x45\x71\x50\x13\x5f\xe6\x86\xb1\x69\x52\xc3\x7f\x74\x6c\x50\x75\x17\x49\x8f\x26\xd5\x5d\xa7\x6b\x8a\xaf\xfb\x98\x35\xe9\xeb\xea\xae\x68\xde\x5f\x77\x37\x0a\x06\x06\xba\x78\xb1\x26\xb6\x00\x48\x6d\xe2\x9b\x00\x32\xee\x06\x6f\x04\x9d\x9b\x02\x21\x4b\xb4\xc3\x7a\x3b\xcb\x1e\xb7\xb3\xcd\x23\xdd\x0e\x93\xde\xb8\xb7\xb1\x26\xb6\x03\x48\x26\xe0\x5b\x08\x64\xc0\x10\x61\x03\xa8\xdb\xe0\x08\x59\xd2\x0a\x48\x67\xd9\x7a\x39\x5b\x79\x57\x82\xf8\x07\x9a\x2d\xa4\x89\xcd\x60\x5e\xe1\xf5\xb4\x82\x0a\x74\xc2\x5b\x41\x5f\xc7\x74\xa9\x52\x8d\x90\xa6\xb3\xed\x7a\xb6\x59\xd2\x6d\x10\x6b\xad\x89\x4d\x97\x36\x1b\xb3\xf1\x78\x76\x04\xd1\x71\xa3\x92\xd3\x76\xf9\xb8\x79\x86\xda\xbd\x78\x2e\x18\xb7\xe6\xcc\x4d\x9d\x1b\x7d\xc1\xe9\x9a\x20\xe6\x3e\xc3\x09\xe5\x06\x90\x09\xfc\x53\xbe\xfb\xe8\x05\xe1\xbb\x08\x4f\x6c\x01\xb2\x95\x71\x77\x19\x60\x17\xc2\xed\xf2\xa2\x6c\xa5\xf0\x6d\xf3\x06\x2e\xd8\x1d\xf2\x8e\x89\x73\xb3\x01\x6e\xb0\xd4\x77\xd2\x5c\x0f\xd5\x24\x31\x5e\xc7\x8b\xa8\x55\x82\x3c\xa6\xc7\xbd\x4a\xe2\x02\x5c\xb8\x55\xee\xdd\x56\x06\x29\x7b\xf6\x5c\x51\xb8\x7a\x1e\x39\x7b\x6d\xdb\xdf\x31\x81\xdc\xaf\x56\xa9\x71\x63\x81\x3b\xd5\xe4\x5d\xd7\x10\x41\x94\x8c\x11\xb9\x35\x5e\xb8\xb1\xdb\x35\x25\x5b\x35\x54\x11\xc0\x03\x8c\x61\x4b\x99\x90\x63\xda\x71\x9b\xbb\x17\x32\x82\x12\x2c\x88\xcb\x19\x30\x4a\x67\x22\x99\xdf\x16\xec\x7c\x60\xed\xfc\x5b\xc9\xde\x4c\x9f\xc7\x6f\xd0\x4f\x32\x95\x6a\x8c\xfb\xe4\x73\xfd\x81\xec\x36\xd4\x93\x0f\x56\x08\xea\x66\xf3\x94\xe6\xd6\xb6\x33\x48\x7d\x8c\x91\xbb\x3f\x26\x2e\xa8\x70\xdc\xd3\x94\x4f\x79\x71\xbc\xfc\xda\xe6\xcd\xf0\x84\x40\x8d\x8a\xa9\xcf\x30\x39\x7b\x26\x0e\x1c\x8c\x0a\x21\x0b\x8d\xf6\x30\xfc\x86\xaa\x43\x74\x32\xf9\xdc\x23\x51\xb4\x4d\x3d\x43\x8e\x01\x12\xdb\x1c\x02\xf8\x05\x0f\x37\xcd\x80\x4d\x98\x7b\x15\x82\x55\xf6\x04\xda\xdf\x41\x1e\xa9\x35\xd9\x6c\x28\x01\xa4\xe2\x88\x27\x05\xbb\x2b\x80\x70\xe0\x8b\x51\xb8\xd3\xcd\xf3\x43\x9f\xe3\x24\x8a\x3c\xd6\xef\xca\xf7\x10\x45\x00\xeb\x7a\xaf\x4b\x85\x24\x3f\xe8\xa9\x60\xed\xd1\xfb\x11\x77\x91\x46\x6a\x8e\xb7\x1b\x86\x8c\xd4\xda\xf6\xa4\xc0\x4b\x1d\x08\x5d\xe9\x4a\x08\x57\x99\xbe\xc9\xe1\x1f\xf2\x04\x03\xac\xe2\xea\x09\x85\x48\x12\x58\xf5\x5d\x3f\x0a\x76\x21\x05\x1d\x56\x75\xb8\xdf\x3d\x97\x4d\xfc\x8d\x80\x51\x47\x5a\x40\x9f\xd7\xc6\xe0\x23\xd5\x47\x5c\x09\xd8\x6d\x19\x84\x41\x59\x9f\x9a\x1f\x57\x7d\x8c\xfa\x94\xea\x63\xf8\x5f\x5a\x7d\xe9\x4f\x08\xcf\x02\xfa\x7a\x90\xbf\x05\x08\x06\xd8\x2c\x50\x69\x41\x23\x49\x60\xb3\xc0\x75\xa6\x60\xb7\x9c\xb0\x75\x55\xf8\x13\xc2\xea\x9f\xbe\xd7\xe4\x6f\x07\x82\x01\xb6\x00\xa8\x44\x7c\x91\x24\xb0\x25\x00\x75\xa6\x38\xd7\xb3\x50\x6d\x5b\xbf\xb0\x36\xd8\x0c\x9e\x0b\x59\xfe\x66\xc0\xe9\x23\xad\xa0\xf3\x60\xc5\x51\x40\x1a\x01\xf3\xa5\x20\xb7\xca\x3e\x16\xc7\xaa\x9c\xbf\x95\x75\x01\x8f\xa0\xd2\xc4\xbc\xa8\xaa\xee\x43\x6d\x78\xd0\x84\x8e\xf3\x11\xbb\xe8\x91\x40\xc2\x8f\xbc\xd5\xad\x1d\x7e\x9a\x67\x14\x8e\x5b\x5e\xcb\x16\x19\x61\x78\x10\x41\x95\x77\x7d\x79\xbc\x81\x54\x35\xec\x7c\xe9\xbf\xcf\xd5\x1d\x7f\xeb\x16\x10\x6d\xa0\x98\xa6\x37\x20\x91\xc0\x3f\x79\x17\xf3\x38\xac\xf1\x58\x7d\x69\xa6\x3c\xe0\x71\x7a\x58\x72\x22\x2f\x55\xb0\x29\x4d\x93\xa5\x8a\x14\x35\x49\xec\xad\x50\xc0\x20\xc1\xa4\xeb\xdb\xa6\x7e\xb1\x43\x08\x79\xec\x05\x3f\x50\xcd\xcb\x5a\xdf\x78\xe0\x1b\x09\xa3\x43\x40\xe6\x85\xe5\xe6\xdb\x2b\xdc\x65\x10\x69\x5e\x80\x07\x4b\x1e\x4a\x59\xfc\x12\xf9\x41\x75\x91\x11\x23\x2e\x6e\x05\xf8\xe1\x93\x45\x77\x3d\xf0\x08\x8c\x59\x10\x92\x83\xdd\xb0\xbe\xc0\x11\xbb\x3e\x3f\xfe\x3e\xef\xdb\xfc\xc8\xb0\xa0\x05\x11\xba\x8c\x0c\x18\x79\xa3\xda\x6c\x3d\x05\x25\xbe\xb8\x91\xcb\x32\x65\x4e\xc1\x4e\x65\xcd\x63\x9a\xba\x64\x21\xd2\x6c\x58\x11\x42\xd7\xcb\x85\xb5\xc7\xbc\x63\x56\xb6\x1d\x2b\x76\x05\xa4\xed\x5a\xea\xcb\xe4\x7c\x7c\xca\x10\x6d\x37\x70\x0d\x13\xe2\x92\x97\xed\x0d\x52\xe3\x79\x6f\x08\xd0\x64\xd1\xb3\xf6\xec\x04\xd6\x00\x02\x62\xf3\x48\x51\xb0\x7d\xab\xb2\x46\x3e\x96\xaf\x79\x37\x67\xe7\xcb\x6b\xde\x95\xf6\x45\x4e\xa7\x8e\x7f\x69\x0e\xf3\xa2\x3c\x9d\xec\x94\x4a\xea\xfb\xc0\x3e\x2f\x0a\x56\xcc\xc0\xa7\x82\x55\xac\x67\x56\xd4\x5a\x76\x7c\x85\x88\xac\x28\x1d\xa0\xa5\x09\x94\x2c\x86\xff\x6a\xed\x6b\xf4\x70\x59\x17\xc3\xbc\xb1\xb2\x83\x04\x91\xb5\xb8\x80\xca\x3c\x0a\x4f\x4a\x0b\x10\xd7\x31\x88\xaa\x31\xa6\xb1\x4c\x16\xe7\xbc\xfd\x5d\x26\xcb\x2c\x8c\x0e\x56\x26\x76\x2c\xb2\x94\xdb\x5a\x92\x63\xb1\x95\xf0\xd6\x62\x46\xa0\xf3\x88\x61\x27\x56\x91\x02\x6e\x2a\x63\xd8\x58\x85\xc7\xd7\x61\x01\x36\x13\x49\x58\x61\xc5\x24\x59\x71\x41\x41\x4d\x77\xfe\x97\x1f\x96\x7b\x6b\x00\xfc\xf0\x25\x80\x73\x64\x55\x65\x21\x0d\x9f\x22\xb0\x7e\x25\xc9\x99\x03\x44\x4c\x96\x8e\xdb\x1c\xed\x39\xe7\x29\x80\xea\xe6\x9c\x17\xf6\x47\x7e\xd7\x2d\x12\x30\xc9\x27\x80\xc2\x28\x3c\x73\x65\x76\x2e\x60\xc4\xd2\x44\xbe\x81\xd3\x02\x91\xa2\xe8\x5e\x6a\xdc\xc3\xda\xb2\xda\xfe\xce\x97\xf6\x9b\xce\xb3\xb8\xd9\xff\x8d\x58\xca\x68\x7c\x35\x48\x3e\xd7\x54\x5e\x4e\xf6\xc7\xe6\xf0\x17\x76\xec\xed\x4b\x13\xff\xa5\x49\x2e\x6d\x73\x61\x6d\x5f\xb2\xee\xef\xfe\x46\xa2\xe4\x6d\x9b\x7f\xb7\x25\xf9\xd3\x9f\x3f\xc1\xbe\xeb\xdb\x72\x34\xcb\xa4\x47\xc2\x8c\x49\xbb\xb4\x6c\xff\xd6\xb4\x85\x38\xf0\x3a\xb4\x2c\xff\x7d\x3e\xfc\x7d\x3f\x4b\x91\x80\x41\x07\xa4\x16\x39\x1b\x76\x1d\xf7\x52\x3b\x34\x4d\xc5\xf2\x7a\xd4\x6d\x69\xfa\xf4\xf8\x19\xe1\xaa\x4a\xd1\xda\x1c\xd7\x8c\x6d\xee\xa7\x75\xad\xb9\xbd\x30\xea\xfb\x75\xba\x4e\x0f\xcb\xfb\x09\x9e\xae\xb5\x38\x7a\x35\xb7\x6b\xf7\x12\x2b\x72\x2c\x5a\x70\xb0\x7e\x7e\x91\xfa\x69\xb6\xf9\xf9\xe1\x13\xb5\x6f\x2b\xe7\x8e\xc4\x78\xf7\xd0\xf2\xc7\x58\xa1\xbd\x77\x0f\x86\x36\x3f\xfe\xce\xf4\x56\x6d\x9d\x0f\x3f\xf7\x93\xfb\x9d\x7d\x37\xd7\x4c\xeb\x46\x13\xbc\x21\xb0\x58\x7e\x4e\xf7\x35\x75\xd7\xb7\xd7\x63\xdf\xb4\xf3\x3a\x3f\xbb\xd1\xce\xf7\x12\x16\x31\xa7\xed\x0d\xa4\xa6\x80\x36\x39\xff\xd3\xbe\xf5\xa8\x0e\xbb\xb5\xa6\xdf\x06\xea\xbf\xfa\x54\xfd\xa5\x98\x96\x96\x37\x53\x7f\xee\xf9\x3e\xa4\xd4\x0b\xe5\x78\x0d\xeb\xd7\x78\xfd\xf7\x5b\xfe\x9b\xfd\x95\x67\x07\x61\x6f\x22\x77\xa7\xaa\x6d\x6a\x72\x93\x1f\x93\x45\xb6\xe9\x12\x96\x77\x6c\x5e\xd6\xb2\xf9\xfa\xef\x15\xdb\x95\x7d\x5e\x95\xc7\x68\x19\x84\x29\x10\x2b\xc9\x62\x1b\x4d\xd8\x59\xb8\x2e\xac\x76\x98\xc8\x86\xe6\x4e\xda\x40\x2f\xc0\xab\x21\x63\x7b\xcf\xe3\xdb\x3b\x4a\x24\xb5\x04\x7a\x3a\xff\x73\x0c\x03\x4d\x7d\x97\x4d\x81\x31\x8a\x31\x5c\x64\x75\xaa\x86\x5f\xef\x9b\x77\x97\xb2\x1e\x1d\x1f\xeb\x74\x4c\x8d\xb7\x16\x69\x0a\x44\x9e\xcb\x34\xbd\xbc\x27\xc2\xa9\x64\x61\x26\xf6\x87\x79\xf7\x2f\xd7\x5c\xe7\xda\x5b\xad\xb4\x27\x65\xf8\x95\x0c\x23\x3d\x55\x4d\xde\xef\x06\x23\x6e\x9f\xd7\xe5\x59\xa8\x6b\x9c\xf2\x7f\x68\xcb\xe2\x9f\x8f\x79\xc5\xfe\x1d\xab\xf2\xef\x49\xb6\x58\x75\x49\x59\xf3\x8d\x31\x53\xd3\x63\xde\x5c\xfb\x68\x51\xb3\x9b\x66\x39\xec\x90\xf2\xef\xbb\xc5\xb2\x8b\xc6\x5e\xba\xd8\xab\x78\xec\x95\x8b\xbd\x8e\xc7\x5e\xbb\xd8\x59\x3c\xf6\xe6\x53\xf5\xde\x7e\xaa\xde\x8f\x0e\x76\x1a\x8f\xfc\xf4\xa9\x6a\x3f\xa3\xd5\xfe\x47\x95\xe3\xfc\x77\xf6\xfd\xd4\xe6\x67\xd6\x25\x31\xc3\xef\x96\xfe\x3c\xcb\xd2\xf4\xe7\xd9\x63\xfa\xb3\xa1\xb0\xba\x01\x60\xf5\xef\x7e\xc9\x66\xd9\x2c\x7b\xf8\x58\x6d\xb0\xc2\x74\x96\x0e\x85\x1f\xff\xf8\xb7\x67\xb9\x38\xb3\xbe\x2d\x8f\xf3\x61\x2e\x5e\x6c\x8d\xc7\x9d\x9a\x62\xfa\xf2\x54\x5e\x66\x14\x05\x4c\x1b\x3c\xd2\x48\xe4\x5f\x76\x34\x91\x2f\x1e\xce\xf5\xea\x02\xb7\xea\xb9\xac\xc7\x34\x55\x22\xb3\xab\xcb\xef\x57\xc5\xd7\xdc\x06\xce\x33\x0a\x7c\xe2\xed\x27\x3c\x5e\x85\x20\xed\x5e\x6a\xc2\xa2\xdc\x82\xc1\x2e\x18\x6d\xe3\x7a\x8d\xf7\x81\x05\x37\x8b\xaf\x87\x96\x72\xb2\x9a\xc6\x3c\x85\x20\x6f\xbe\x78\x42\x38\xc8\x18\x8a\x00\x51\x4b\x0a\x75\xba\x41\xe1\xc8\xe8\x3f\x4f\x24\x05\x1e\xca\x10\xa0\x68\xb7\x85\x8c\x4a\xa0\x70\x44\x7c\x16\x15\xd3\x80\x84\x15\xf8\x49\x59\xdc\x79\xec\x01\x05\xaf\x2f\x64\x78\x62\x0b\xc8\x83\xfd\x20\x59\x5b\x12\xe9\x9d\xa4\xdb\xce\x79\x5b\x1e\xbb\x53\x8d\x1c\x32\xfb\x69\x5a\x62\x8c\x69\xbb\x71\x14\xe4\x51\xe6\x4f\x8b\x31\xd0\x9c\x28\x06\xf1\x82\x29\x38\xf0\x26\x4f\x9b\x83\x64\xed\xae\x91\xa7\xd2\xe4\x14\x47\x1f\xee\xb3\x4e\x9d\xa9\x23\xdf\x20\x59\x7b\xbe\x48\x3f\x34\x3d\xc8\x91\x37\xab\xe0\xd1\x2f\x79\xf2\x1a\xa2\x6a\x89\xa2\x7c\xda\x14\x12\x4c\x0a\x81\x3d\xc1\x81\x45\x6b\xfb\xba\x9d\x53\xb4\xa4\x18\xf3\xab\xbb\x38\x0a\x14\x24\x4b\x47\x32\x1e\x3b\x11\xeb\x38\xb1\x6f\x79\x75\x05\x27\xb0\xfa\xa5\x0b\x33\x6f\x79\x53\xb0\x61\xd9\xee\xaf\x4a\x85\xa2\x5b\x5c\x69\xa9\x8b\x1c\x33\x62\xed\x55\xc9\x67\xcc\x83\xbe\xc5\x8a\x7f\xb4\xb6\xec\xe7\xb2\x28\x2a\x10\x49\x6d\xa4\xd3\xb5\xd8\x2f\x5a\x96\x17\xd8\x1d\x7b\x0c\xb6\x68\xde\x6a\x24\x92\x00\x03\xe5\xa7\x63\x79\xc5\xf3\xbc\x80\x8b\x0d\xec\xc2\xf2\x9e\x1f\x63\x58\x49\xda\xe7\xeb\x4d\xc1\x5e\x66\xf2\x84\x56\xfd\x9b\xac\x2e\xef\xb3\x3f\x3c\x1f\x87\x1f\xf0\xfb\xf6\xf2\xfe\x80\x33\x66\x55\xf9\x52\x1e\x2a\x86\x84\x7e\xf0\x0c\xa3\x2a\xd9\x25\x38\x1a\xf5\xc5\xff\x8b\x87\x7b\x00\x6e\x22\xfe\x90\xb9\xf8\xad\x14\x10\xc6\xd9\xb5\x91\xf0\x41\x9f\x63\x67\x68\xb2\x11\x97\x38\x3f\x7e\x77\xe4\xda\x65\xd8\xf5\x04\xfb\xe4\x9b\xbb\x6c\xe7\x07\xd6\xbf\x31\x56\x9b\xb1\xe1\x9c\xfb\xc7\xa2\x2f\xcf\xdc\xab\x93\xe8\xdf\xe6\x75\xd3\x33\x95\x9f\x7d\xa6\x3f\xeb\x8c\xed\x74\xf2\x75\x95\x59\x84\xaa\x83\xfc\x55\xb4\xe2\x4d\x5d\xe7\x8e\x80\xe5\x8b\x10\x3b\xf5\xb7\xd1\x00\x15\xe9\x34\xcc\xcc\x77\x3c\x35\x3f\x6c\x7f\x9d\x7b\x67\xcc\xc5\x01\x12\x6f\x44\xb2\x76\xaf\x5d\xc8\xbc\xe4\x5d\x79\xbe\x54\x8c\x3f\x58\x71\x1b\xfe\x23\xbd\x3f\x45\xd9\x1d\x93\xb2\xee\xca\x82\xc1\xb3\x10\x99\x8e\xd4\x40\x4b\xaa\xd2\xc9\xd2\xc0\x41\xc4\x48\xe6\xce\x08\xe7\xd0\xd8\x28\x14\xe3\x5e\x4c\x5d\xed\x3e\x7f\x5e\x6f\x1f\x11\x28\x3e\x69\x2d\x9d\xec\x00\x81\xe9\x6a\x85\x66\x98\xc0\xda\xfc\x35\x6d\x55\x0b\x40\x98\xa8\x96\x19\x69\xc1\x80\x40\x1a\x65\xe4\x59\x30\xdc\xb6\x33\x2d\x31\xab\xdc\xca\x3f\xa7\xd4\x96\x05\x25\xd2\x73\x3b\xec\xeb\xdf\x6d\x63\xc2\x02\x51\x36\x84\xb5\xca\xdb\x8d\x21\x17\x77\x6b\xf9\x75\x6a\xc2\x57\x5d\xab\x13\xd4\x14\x33\xc7\x90\x48\x37\x61\xa7\xaa\xd2\xc3\x37\xe3\x79\x63\xec\xa9\xe9\x26\xa6\xb2\x72\x50\x8d\xaf\x2d\x20\xb9\x5b\x14\xed\xe7\xe7\x91\xf4\x6f\x55\xe9\x26\xcc\xc2\xa5\xb0\x34\x88\x15\x76\x30\x2e\x81\x83\x48\x2b\x76\xde\x8f\x5b\x61\xfe\x5b\x95\xf7\xec\x7f\xfc\x32\xdf\xa4\x3f\x3f\x58\xc1\x23\x48\x2e\x1b\x42\x69\x51\xef\xb4\x04\xd5\x1c\xd2\x72\x46\xf6\x37\xbd\x3c\x38\xb7\x69\xf8\x27\x9e\xa6\x27\xfd\x19\xab\xd0\x2f\xf3\xe5\xe6\xe7\x99\xa8\x54\xdc\x25\x34\x9e\x1f\xc6\x15\x56\x9c\x38\xda\x17\xec\x88\xb6\x10\xc0\xbf\x79\x2f\xe7\x0d\x6d\xd2\x34\x55\x5f\x5e\xd0\x84\x68\xa2\x68\xcc\x1e\xa7\xfe\xd6\xcd\xc5\x1d\xfe\x73\xf6\x8d\xd5\x7d\x07\x1f\xda\x4b\xa9\x47\x38\x36\xe6\x32\xb8\x49\x6d\x2e\x7a\x61\xc9\xfb\xbe\xfd\x25\x6f\xcb\x5c\x44\x4b\x3c\x20\xf6\x4b\xf8\xe9\x3a\xb1\x22\xd9\xeb\x83\x1d\xee\x60\x8c\x2a\x7b\x21\xa6\xd2\xe3\xc2\x47\xee\x96\x1b\x2c\x41\x3c\x6e\x86\x29\x3f\xcc\xe6\xf2\x9e\x64\x86\x2b\x57\xcf\x4f\x91\x82\xd1\x1d\x45\xff\x5d\x4e\x0b\xe3\x00\x42\x60\x24\x8b\xac\x83\xfe\x55\xbb\xa3\xe0\x02\xed\xa4\xa9\xd3\xb6\x88\x79\x41\x6a\xb7\x1d\x87\xa8\xd5\xdc\x2a\xf3\xb9\x2c\x46\xde\xc3\xe4\x3d\x8d\x43\x08\x5d\x04\xbc\x42\xdb\x61\xfa\x8c\xb5\xea\x9b\x0b\x5d\x25\x7e\x46\xa2\xc6\x8a\x1a\x6c\x99\x6e\xbb\x25\x4f\x20\x0b\x61\x65\x23\x8c\xc0\xfc\xf6\x93\x80\x7c\x6b\xe6\x5d\xcf\x2e\x73\xf1\x22\xa5\x65\x7c\xbb\x9a\xd7\xc1\x48\x16\xc7\xa6\x3e\x95\xad\x74\x5b\xf2\x95\xda\xfb\xfa\xcc\x3c\x5b\x2c\xe1\x21\xdb\x1a\x49\xdc\x05\x55\x1f\x96\x0a\x06\x7f\xf9\xcc\xea\x69\x18\xbb\x4a\xbe\x95\xe6\xdd\x73\xf0\xe1\x68\x66\xb4\x09\xbe\xb9\x36\x18\xa2\x37\xec\x98\x6c\x05\xfa\x54\xab\x8a\x2c\xe6\x1d\x37\x9d\x9d\x47\x9f\x7f\x2d\x63\xd0\xfa\xbc\x7d\x61\xc6\xf1\x5d\xfc\x93\x71\x99\x7e\x1c\xaf\x28\x36\x8f\xf1\x78\xcb\x3b\x9f\xa8\x5b\xa9\x37\xf7\xd2\x22\x3b\x44\xd5\x4d\xe0\xad\xad\x07\xf3\x62\xf1\x36\x12\x4f\x05\x33\xc4\xe2\x6d\xad\xc7\xf1\x70\xbc\x45\x77\xa9\xca\x9e\x5f\xf2\x74\xf7\x2c\x9e\xbb\xd4\xfa\x95\xd4\x10\x55\x3e\x6e\xc7\x14\xd2\xea\x28\x8b\x1b\xe4\x61\xe4\x45\xc5\x5e\x58\x5d\x38\xa6\xd6\x48\x10\x5e\xf0\x0d\x55\x01\xde\xfc\xc6\x9e\x5f\xc5\x63\x91\x27\xc8\x3a\xec\x11\xa8\x94\xa1\xc8\xc3\xc4\xe6\x2a\x61\xc1\xd9\xca\x95\xb6\x49\x3c\x8f\x75\xf2\x4f\xc8\x02\x2c\x4f\x17\x37\xa4\xa2\xc0\xab\x26\x7d\x2f\xb3\x89\x48\xc2\xc7\x62\x69\x6d\x27\x7d\xf5\x14\x9a\x0b\x2c\xd3\x2c\x78\x59\x19\xe6\x9b\x9d\x4a\x5b\x84\xc9\x41\xfd\x0e\xae\x53\xdf\x45\xd0\xf2\x72\xa9\xe8\x64\x4e\x0b\xb3\xec\x78\x41\x22\xfe\x99\x3b\x16\xa0\xb5\x6f\x30\x8f\xc1\x89\x9b\x88\x56\xae\x89\x2d\x66\xe7\xca\xd8\x46\xe3\xf4\x68\x33\x9a\x3f\xf2\x46\x72\xaa\x2c\x01\xdb\x80\xde\xa4\x3f\xcf\xe6\xc3\xfa\x03\xec\x9f\xc5\xb2\x4b\x06\x6b\x81\x0f\xe6\xe6\xda\xcf\x86\x0f\xc3\x62\xab\xbf\xec\x31\x1b\x15\x98\x9f\x58\x53\x68\x8b\x17\x2f\xb4\xac\x2a\xb0\x6a\xfa\x8c\x2b\xcc\xfe\x45\xcc\x64\x44\x64\x4a\x4c\x29\x89\x61\xb5\x3d\x3a\x0d\x0e\xac\xb6\xc7\xa0\xd5\x86\x43\xe0\xf6\xe8\xe3\xe5\xfd\x41\x99\x5e\xf3\x27\xad\x7a\xf1\xd6\xbc\xe1\xb6\xa5\x71\xf1\xfa\x93\x86\x25\x2a\xe2\xd6\x14\x71\x4b\x89\x28\x9f\x42\xb4\x83\x31\x30\xd0\xa4\xa9\xec\x65\x83\x04\x34\x75\xf6\xb8\x74\xf0\x9d\x04\x5c\x35\xe4\x8e\xc1\xef\xb6\x33\xb4\xb1\x7e\xda\xc9\xc7\x3a\xe9\x2e\x79\x3d\x5b\xf0\x19\x3a\xef\xde\xf2\xfe\xf8\x4a\xc4\xd0\x78\x68\x98\x3e\x71\x23\xdb\x34\x35\xed\xc7\xcc\xc4\x41\x9a\xb6\x36\x14\xc4\x96\xcb\x99\xfa\xdf\x62\xfb\xe0\x23\xb3\x80\xe9\x1a\xb1\xac\x7b\xd2\x91\x14\xa4\x41\x9c\x75\xd2\x78\xbf\x56\x25\xf5\x80\xab\xcc\x1a\x29\x92\x5c\x5c\x9a\x37\xd6\xca\x0c\xf8\xf3\xbe\x2d\x5f\x5e\x06\xad\x42\x97\xcd\x75\xaa\x64\x1a\x46\xbc\xe6\x4d\xb0\xcf\xf3\x9c\x7e\x91\xc0\x28\x74\xee\xfc\x18\x65\xc2\x4b\x09\x8a\x74\x5b\xc8\xa4\xbf\x43\x83\x7d\x67\xed\x3c\xd5\x2a\xf2\x5f\xae\xec\xca\x0a\xfd\x27\x8f\x44\x30\x01\xa5\xd5\xa8\xee\x5b\xe1\xe4\x32\x12\x5f\x5a\xe3\xd7\xb6\xfa\xe5\x0f\x45\x99\xbf\x34\x75\x5e\xc9\x67\x8a\xe6\xab\x07\xfe\x08\xf7\xdc\xd9\x19\x24\x0b\x95\x6b\x18\x3e\x3e\xad\xfa\x55\x25\x06\x96\x06\xb4\xf4\x98\xca\xd2\x53\x5e\x56\xfa\xf5\x6c\x60\xec\x26\x8b\xaa\xe9\x7a\xf3\xad\x6b\x30\xc5\xf0\x67\xbe\xad\xdb\x46\xe2\xed\x70\xe2\xa0\xc6\xbd\xbc\x65\x32\x58\x88\x7f\xe6\x29\x7a\xa0\x81\x41\x66\x56\xa6\x0b\xb9\xa1\x41\x20\x97\xc8\x3d\x61\x1c\x72\x05\x53\x49\xa8\x4d\x0b\x02\xb9\x46\x6e\x5f\xe3\x90\x1b\x00\xa9\x37\x26\x08\xe4\x16\x3d\x76\x02\x90\x62\x40\x62\x59\xc6\x55\x82\x2e\x37\xc1\x26\x76\x33\x10\x10\x95\xe3\x75\x66\x09\x25\x07\xeb\x0f\x3c\xd8\x02\xfc\xb0\x0c\xda\x7a\x6c\x9b\x80\x9e\xd4\xd7\x16\xa4\x1c\xed\xc1\x56\xe5\x23\xdf\x4a\x22\xa1\x6f\xc1\x09\x73\x13\xbe\x5f\x4f\xa6\x7d\x51\x1b\xa0\xee\xdb\xcb\xfc\xc2\xc3\x22\x6b\xe7\x6d\x2a\xc2\x93\x32\x17\x8e\x08\xa1\x22\x0f\x79\x57\x1e\xe7\x45\xdb\x5c\xf8\xc9\x06\x62\xec\x62\x70\x3a\x57\x2f\xe5\xf2\xe5\x01\x56\x86\x87\x3b\x45\x42\x24\xb9\x9b\xd6\x47\x7d\x2e\xce\xab\xd4\x0d\x2d\x3f\xa8\x38\x5f\xd2\x69\xe5\x51\xe0\xa1\x81\xaa\xfc\xbb\x7d\xc2\x68\x67\x8a\x4b\x67\xc3\xcf\x62\xf3\xb0\x27\xee\xcd\x8e\x15\x93\x36\xbe\x7a\xf6\x1b\x33\x3d\xbd\x62\xbf\x35\xed\xf9\xb5\xa9\xd8\xbc\x69\xcb\x97\xd2\xf6\xa0\xf9\xd6\x41\xfb\x21\x10\xf7\x80\x01\x2a\xc2\x35\x38\xaf\x30\x23\xad\xa0\x33\xf6\x71\xa3\x9d\xb8\xf3\xf7\x80\x1b\x77\xd8\x8c\x18\x88\xec\xbc\xbf\x76\x5a\x50\xb1\x59\x50\xe1\x87\x4e\x81\x10\x40\x3f\x2d\xe4\x59\xb0\xa1\x63\xfb\xa7\x9f\xf6\xe0\x46\xdb\xfe\x58\xb1\xbc\xdd\x1d\x9a\xfe\xd5\x47\x65\x92\x69\x00\x1e\xd8\x24\x7a\x50\xd3\x3d\xb0\xaa\x79\xf3\x50\xfd\x13\xf7\xc2\xb3\xf7\x4b\x5e\x17\xac\xf8\x87\xbe\xbd\xb2\x3f\xcf\x02\x34\xcb\x7a\x7e\xa9\xf2\x23\x9b\x48\xf6\x13\xb9\xaf\xfc\xf2\xe4\x87\xe6\xdb\xbd\xc2\x4c\x4a\x23\x86\xb0\xe0\x0d\xf1\xda\x54\xc5\x78\xe6\xf7\xfc\xfc\x6c\x9d\x9a\xbb\x43\x16\x39\x51\xc0\x47\x31\xca\x54\x1e\x39\x96\xc7\xa6\x46\x74\x1c\xba\x75\x75\xf6\xab\xd6\xb1\xa1\xb4\xed\xb9\x66\x94\x2d\x20\xf6\x40\xdc\x4e\x84\x2f\xc7\x0c\xbb\xc8\xf5\xe5\x3d\x49\xad\x18\x9e\x3c\xcf\xcd\x4d\x1b\xd8\xc0\x09\xd5\xb7\x11\xd9\x0d\xe8\xce\xc4\xba\x2a\x09\x35\xc1\xb8\x39\x6c\x9b\x3e\xef\xd9\x2f\xd9\x53\x5a\xb0\x97\x07\xb4\xed\xf8\x84\x9c\x1f\x7a\xac\xe5\x2c\xa5\x25\x6f\x9f\x1b\x42\xa3\x73\xf7\x7c\x1d\xf6\x0e\x15\x9b\x97\xf5\xe5\xfa\xff\xd0\x76\x6d\xbb\x6d\xc3\x30\xf4\x57\x06\x0c\x7d\x28\xd0\x14\xb9\x38\x5d\x9b\xa1\x5f\x32\xf4\xc1\xb5\x95\xcc\x98\x5d\x19\x8a\xb3\x25\x03\xf6\xef\x83\xa9\x8b\x29\x89\xb2\x64\x37\x41\x81\xa2\x6e\x62\xf2\x58\xa6\xa4\x43\x8a\x12\xd5\x5a\xfe\x3e\x6f\xaa\xfa\x62\x6f\x7c\xb7\xb6\xc2\xe3\x7a\xbf\xe4\x0b\xc3\xe3\x9e\xbe\x49\x0f\x57\x79\xdb\xb2\x5c\xe4\x1f\x85\x8a\x6c\xaa\x8a\x28\x3b\xab\x42\xc3\x90\xdb\x3f\x1e\x4b\x44\x3b\x66\xd7\x93\x9e\x74\x57\x56\xc7\x7e\x8c\x2b\xa9\x92\x5f\x6c\x74\x7a\x70\x25\xed\x70\x37\x1a\xd6\x72\x86\x0e\x35\x49\x98\x6e\x26\xb8\x5c\x5c\x57\x74\xc3\xff\x5e\x5b\xe2\xf1\x33\x40\x8d\x38\xde\xc2\x09\x05\x64\x21\xa1\xf8\x7d\xfe\x69\x13\x07\x91\x5f\x88\x49\x5a\xc1\xd9\x6c\x36\x54\x69\xe7\xac\xff\x19\x8c\xb0\x1f\x25\xe2\xd6\xbd\x7a\xcc\xb6\xd8\x5c\x15\xee\x35\x94\x0b\xea\x7f\x6f\x02\x66\x69\x9e\x41\xb0\x86\xff\x66\xd0\xa9\xdd\x1d\x74\x69\xb7\x41\xad\x16\xb9\xa4\x78\x8f\xb6\x39\xd3\x83\x2f\xcb\x45\x31\x14\xb8\xcd\x02\xe0\xe4\xd7\xd4\x98\xe0\x07\x4c\xb1\xbb\xae\x67\x1e\xc4\xe7\xfc\x01\x83\x1a\x0f\x86\x86\x0e\x8d\x51\x18\x85\x15\x5b\xf0\xb1\x90\xb4\xc2\x12\x66\x78\x78\x38\x96\x30\x1a\x82\xf0\xa8\x1c\xc1\x01\x9d\xf2\xe1\xae\xd3\x10\xe7\x65\x1a\x64\x84\x90\x03\x67\x48\x8e\xb3\xf8\x65\xbe\x66\xd0\x97\x39\x30\x81\xbe\x91\xac\x30\x51\x80\xe6\x6a\xee\xd9\xb8\x49\x81\xa4\xcf\x92\xa3\xa9\x18\xf1\x4a\x34\x21\x4e\x0f\x71\xee\xc2\x9e\x57\x1f\x7f\x99\xce\xf4\xc7\x14\xfd\x10\xbc\x66\xaf\xbd\xb6\x77\x7e\x7e\x33\x0e\xec\xe2\x22\x69\x92\x16\x69\xfe\x7f\x2c\x04\xaf\xeb\x1e\x40\xc7\x4f\xc5\x4f\x48\x4d\xd1\xe6\xbe\x86\x35\xb5\x11\x6d\x9e\xc7\x64\xfa\xf6\x73\xa0\x6f\x43\x4a\xb2\x24\x4c\x7a\x26\x56\xdc\x16\x11\x51\x25\xf5\x83\x77\x8b\xbc\xae\xf9\x1f\x56\x4e\x93\x45\x92\x2f\x89\x98\x34\x4b\xf9\x51\x0c\x15\xb5\x70\x93\x88\x14\x2b\xd0\x15\xcb\x35\xa5\xf7\x4b\xfc\x97\x71\x21\xaa\xe0\x55\x50\xc6\xf6\xf9\xe5\xdb\xfe\xfd\xbb\x1f\x16\xf0\x1b\xd0\xda\xc4\x5d\xb2\x7d\x7e\xaa\x3b\xff\xd0\x95\x98\xa3\xe2\x34\xdb\x64\x72\x85\x8e\xf1\x5a\x3d\xc1\x24\x1a\x75\x5d\xc8\x57\xa9\x5b\x17\x62\x3a\x56\x6e\xec\xa8\x45\x92\x16\x13\xf9\x44\x36\x9c\x9d\x4e\x18\x9a\x58\xe7\x28\x51\x5d\xcc\x52\x90\x2d\x27\x2b\xa0\xc4\xcc\xc5\x49\x3c\x72\xa8\x59\xb5\x75\x94\x95\x78\x15\x5d\xfd\x86\x5e\x30\x84\x3b\x9f\x12\xef\x23\xc1\xc4\xac\x20\x49\x08\x69\x2a\x92\x03\xa4\x3e\x14\x29\xd7\x61\xa9\xf3\x01\x86\x7c\x35\x60\x9d\x00\x74\x3e\x48\xec\x8a\xca\x55\x60\x53\x05\x52\xa5\x5a\xcf\x97\x3d\x78\xab\x2a\x29\x3d\x49\xb4\x9e\x62\xc7\x65\x5f\xa9\xb7\x2a\x2f\x39\xd4\x0d\x6e\x87\xc5\xe9\x8d\xc2\x6c\xa0\xbf\x09\x0e\x52\xdb\x6d\x9f\x9a\x6a\xe7\xbe\x3b\x7d\x05\xee\x73\x38\x55\x25\xfb\xf2\xd8\xf0\xe2\x97\x09\x78\x5b\x01\x79\x45\x3d\xe4\x46\x86\xe0\x3d\xe6\xaa\xbd\x3c\xc4\xbe\x54\x35\xf9\xc1\x3a\x34\x13\xbb\x2c\xfa\xd4\x02\xd6\x44\x95\x49\x39\x28\xb0\xed\x2e\xa3\x74\x1c\x52\x3f\x64\xed\x0c\x1c\x52\x5a\x5a\x57\xd9\xcb\xdd\x83\x4a\x67\xb2\xfe\xde\xae\xee\xac\xef\xb9\xd7\x90\x6b\xf2\x40\x28\x55\x39\xb7\x37\xd5\x9b\xf4\x2a\xd2\x56\x9b\x0c\x62\x8d\x60\x40\xd2\x9e\x6d\x24\xce\xf5\x2a\x6b\xcf\xf7\xff\xfe\x07\x00\x00\xff\xff\x72\xbe\x77\x00\xe6\x0a\x03\x00") func distAssetsNomadUiAd7b09549502674646af03f41d1d62f1CssBytes() ([]byte, error) { @@ -125,6 +105,26 @@ func distAssetsNomadUiAd7b09549502674646af03f41d1d62f1Css() (*asset, error) { return a, nil } +var _distAssetsNomadUiD4e693a82d9bb50c3b64289ff72827eeJs = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xec\xfd\x7d\x77\xdb\xb6\xb2\x28\x8c\xff\xef\x4f\x21\xe3\x9e\xa3\x4b\x1e\x43\xb4\x9c\x97\x7d\xce\x4f\xd9\xdc\xbe\x69\x9c\xec\x9d\x9e\x36\xf5\x8d\xdd\x7d\x7e\xcf\xe3\xab\xd5\x0b\x89\x90\x84\x9a\x02\x54\x00\xb2\xa3\xda\xfa\xee\xcf\xc2\x0b\x49\xf0\x9d\x72\x9c\xc4\xea\xe9\x6a\x57\x2c\x92\x18\x00\x33\x18\x0c\x66\x06\x83\x01\x58\x0b\xdc\x13\x92\x93\xa9\x04\x07\x11\x9e\x11\x8a\x3d\x40\xd9\x12\x45\x83\x35\x39\x46\x11\x5a\x49\xcc\xc5\x31\x9a\x63\x2a\x01\xbc\x02\xf8\xd3\x8a\x71\x29\x00\xac\x2a\xb4\x5a\xc5\x64\x8a\x24\x61\x14\x8c\xe1\x6c\x4d\xa7\xea\xa7\x87\xa1\xf4\xef\x7e\x9a\xfc\x8a\xa7\x32\x30\x2d\x9c\x73\xb6\xc2\x5c\x6e\x3c\x0c\xc1\x2f\xbf\x60\xf1\x23\x8b\xd6\x31\x06\xf0\xee\x06\xc5\x6b\x3c\x3a\x1c\x6e\x7d\x88\x55\x59\xb4\x8e\x65\x28\x93\x5f\x01\xfe\x24\x31\x8d\xbc\xbb\x15\x92\x8b\x77\x8c\x5f\x6e\x56\x78\x94\x36\xe3\xdf\x71\x2c\xd7\x9c\x02\xdd\xd7\xe3\x25\x5e\x4e\x30\x17\x60\x0b\xd7\x3c\x7e\xc7\xf8\x3b\x42\xa3\x8f\x78\xca\x78\xe4\x82\xdc\x20\xde\xc3\xe1\x6b\xce\xd1\x26\x58\x71\x26\x99\xdc\xac\x70\x20\x62\x32\xc5\xc1\x14\xc5\xb1\x87\xf8\x7c\xbd\xc4\x54\x0a\xdf\xbc\xf5\x4e\xfc\x03\xd3\x4e\x4f\x2e\x88\x08\xb2\xca\x5f\xc7\x71\xa0\x28\xb0\xf1\xd4\x07\x07\x7d\xff\x8e\xcc\x3c\xd3\x04\x11\xfa\xaf\x87\x7d\xff\x6e\xc6\xb8\xa7\x9a\x97\xe1\x10\xd2\xd0\xbe\x0f\x62\x4c\xe7\x72\xe1\xbf\x92\x7f\x4d\x7e\xbf\x92\x47\x47\x3e\xbd\x92\xe3\x10\x5f\xc9\x71\xd2\x38\xdd\xda\x1f\xa6\xe2\x19\x67\x4b\x0f\xfb\x5b\x55\xf3\x76\xeb\x6f\x7d\xd8\x30\x96\x71\xcc\xec\x28\xb5\x0c\xe8\x2d\x92\xd3\x05\x9a\xc4\xf8\x8b\x0e\x67\x4b\x6f\x1d\xa6\xca\x75\x57\x8f\xef\x20\x42\x12\x65\x85\x39\x16\xd2\xc5\x64\x2d\x49\x2c\x8e\xa7\x2c\xc2\x62\x30\x63\x7c\x80\x39\x67\xbc\x5c\x80\xe3\x25\xbb\xc1\x03\xae\xd9\xa3\x80\x2b\xa4\x10\x3d\x08\x5f\x8a\x96\x58\xac\xd0\x14\x87\x37\x8c\x44\xbd\xe1\x81\x1a\x6c\x11\xba\x1f\xc0\xcd\x09\x38\x68\x62\xf4\xb4\xe8\x48\x40\xc9\xae\x31\x1d\xbd\x55\x58\x07\x84\xea\xee\x08\xcc\x6f\x14\x4f\xfa\x70\x81\x51\x84\xb9\xb0\x9f\xa7\x6c\xb9\x5a\x4b\x1c\x79\x40\x03\x05\x02\x4f\x39\x96\x00\x96\x18\x5f\xb3\xf0\x1c\xcb\x42\x41\xff\x80\xcc\x3c\xec\x1b\x0e\xbb\x03\xff\xff\xc1\x07\x4d\xaf\x4b\x55\x06\x8c\xf0\x76\xeb\xc3\x99\xe1\xf8\xf2\xf4\x33\xd3\xe2\x17\xb1\x5e\x61\xee\xce\x07\x67\x22\x4d\x15\x5b\x79\x85\x09\xe2\x0d\x21\x4d\xf0\xf7\x3d\xec\x07\x84\x4e\xe3\x75\x84\x85\x07\x5e\x0e\x4f\x80\x6f\x7b\x73\x35\x3e\x90\x0b\xce\x6e\x7b\x78\xeb\x6f\x75\x2f\xfe\x81\xc4\x8f\x88\x6e\x46\x85\x41\x13\x3b\x74\x48\x2e\x30\xcd\xfa\x43\x0d\x75\x78\x28\x02\x25\x0d\x20\x0b\x65\x60\x58\x23\x20\xf4\x06\x73\x81\xdf\x31\xee\x89\xe0\x1a\x6f\x52\x59\xc0\xfa\x7d\x1c\xac\x30\xbe\x7e\x1d\xc7\x1e\xf7\x83\x19\x89\x25\xe6\x39\x1c\x6d\x49\xac\xe9\xcd\x34\x17\x1c\x81\x80\x44\xc0\x0f\xc3\x50\x06\x24\xda\xfa\xc1\x8c\xf1\xb7\xc8\xa5\x8d\xf4\xef\xbc\x21\x44\x0e\x61\xa0\x54\xf3\x85\x2a\xec\xeb\x05\x9b\x9e\xa3\x0a\x09\x6a\x99\x0f\xa2\xf0\x6a\x0c\x45\x68\xf8\x43\xf5\x40\xd3\x00\x2c\x98\x90\xc0\x87\x3c\x4c\x84\xd9\x39\xc7\x33\xf2\xc9\xcb\x84\x5c\xbf\xef\xd1\x50\x06\x53\xb4\xc4\x31\xf9\x1d\x7b\xbe\xdf\xef\xa3\x60\xb5\x16\x0b\x8f\xfa\x10\xa7\x0f\x98\xaa\x69\xf6\xf3\xc7\xf7\x6f\xd8\x72\xc5\x28\xa6\x52\xc9\x22\xc8\x55\x81\x35\x15\x0b\x32\x93\x1e\xf7\x21\x0a\x51\xf0\x2b\x23\xd4\x03\xc7\xc0\x87\x87\xa2\xdf\x47\xfd\x3e\x38\x06\x87\x61\x88\x82\xe9\x02\xf1\xd7\xd2\x1b\xfa\xfd\xbe\x87\x42\x70\x0c\x8e\x90\x0f\x51\x9b\x3c\xfb\x95\x4d\x06\x62\xbd\x5c\x22\xbe\xf9\x7a\x02\xed\xc0\x50\xb7\xcc\xfe\xf9\x6a\xab\x24\x7f\xc2\x08\x6a\x92\x5d\x6c\x96\x13\x16\x07\x44\x62\x8e\x24\xe3\x3d\x42\x7b\xa6\x27\x4e\xc1\xaa\x51\xbd\x1a\x43\x14\x1e\x0e\xa1\x08\x0f\x4f\x20\x4f\x24\x8c\xe4\x9b\x74\x59\x61\x30\x0e\xf1\x55\xa1\xfe\xb1\xe7\xbf\x3a\xf4\x50\xe8\xb1\x30\x0e\x28\xfe\x24\x3d\xdf\x0f\x22\x46\xb1\xa2\x38\x35\x03\xc9\x02\x8d\xa5\x0f\x0f\xe5\xfd\x3d\xb5\x8b\xd0\x61\x18\x4a\xff\x95\x6a\xd2\x7f\xb5\x35\xf3\x17\xfb\x77\x42\x75\x81\x87\x78\x3b\x23\x14\xc5\xf1\xe6\x4e\x75\xe0\x10\xf5\xfb\x71\x60\xfa\x9e\xfd\xf2\xfc\xb4\x10\x99\x79\xc2\x37\x93\x98\x6f\xb7\xe9\x7a\xa6\xd1\xb3\x93\x9b\xe2\xdb\x9e\x5a\xdd\xdf\x2a\x79\xed\x81\xf7\xf4\x06\xc5\x24\xea\x21\x29\xf1\x72\x25\x7b\x92\xf5\x22\x2c\x24\x5f\x4f\xe5\x9a\xe3\x1e\x65\x74\xa0\x31\x9c\xc4\xb8\x47\xa8\x90\x88\x4e\x31\xf0\xb7\x5b\xcf\x6f\x94\xae\x8d\xf3\x47\x49\x7d\x23\xb1\xbf\xbf\xf8\xe9\x43\xb0\x42\x5c\x60\x0f\xab\xa9\x42\x3d\x01\x9f\xf9\x90\x85\xfc\x6a\x38\x86\x71\xc8\xaf\x4e\xc6\x90\x84\x8e\x98\xf1\x18\x04\xbf\xb2\x09\x80\xc8\x3f\x02\xc7\x09\x6f\x26\x53\x2a\xee\xf7\x81\xed\x8a\x62\xfb\xb8\xdf\xf7\xc8\x51\x08\x4e\x9d\x75\xe1\x28\xf6\x21\xe9\xc0\xf7\x7f\xf2\xfb\x9f\xfc\xde\x9d\xdf\xc5\x46\x48\xbc\xac\x53\x21\x26\x6b\x12\x47\xff\x7b\x8d\xf9\xa6\xac\x20\x67\x7a\x82\xa9\x23\x40\x53\x49\x6e\xf0\x87\x84\x63\xf5\x32\x96\xf0\x37\xce\xf3\x37\x3e\x75\xd4\x18\xbc\x1d\xdd\x6d\xb7\x55\xda\x43\xb7\x86\x40\x5e\xfb\xde\x61\x55\x97\x99\x3e\x50\xb9\xcc\xca\x20\x6d\x24\xc4\xa7\x66\x95\x06\x0a\xad\x51\x8a\xcc\xd6\x87\x32\xd1\x3a\x8c\xc4\xb8\x30\x53\xbb\xa8\x7b\xa0\xbc\xee\x81\x7e\x45\x9f\x74\xef\x02\x4d\xe3\x9f\x3f\xfe\x60\xcb\x81\xac\x26\xe0\x4a\x0a\x08\xfe\xfe\xf6\x12\xc0\x3b\xa5\xdc\xda\xe1\x42\x42\x90\x39\x75\x6a\xd1\x23\xe5\xf9\xf7\xf7\x77\x5b\x88\xfc\x7c\xb7\x0a\x82\x4c\xe9\x42\x46\xa3\x71\x44\x19\x52\x12\x8c\x7a\x1c\x3e\xf3\x95\xfc\x8a\x43\x96\x1f\x36\xe6\x0e\x1b\x53\xc3\x56\x41\xf9\xa4\x7e\x18\xb7\xa9\x23\x9f\x29\x4e\x15\xfc\xce\xf2\x13\x7e\x5a\xf0\xff\xc4\x9b\x4a\xb5\x28\xe5\x13\x3b\xe1\xff\xf6\xac\xdf\x37\x52\x45\x69\x22\xc9\xc7\xab\x67\xe3\x53\xf7\x61\xa4\x88\x1d\xb6\xb2\x1e\x14\x21\x0d\xd4\xe0\xf5\xfb\xe6\x6f\xa6\xf3\x27\x48\x88\x53\x74\x94\xef\xb2\x18\xa1\x2d\xe4\x38\xd6\xa6\x8e\x58\x90\xd5\x3b\x14\xc7\x13\x34\xbd\xfe\x81\xd0\x6b\x31\xba\xb3\xcc\x31\xca\xd8\x24\x9d\x47\xd6\x9c\x13\x23\x57\xdf\x34\xb6\xa5\xee\x19\x0d\xf3\xdc\x67\x16\x27\x87\xc7\x21\x2e\xf1\x62\x66\x25\x0a\x70\x50\xe2\x66\x9a\x63\xd1\x12\x57\x6e\x8b\xb3\x0f\x3b\xb3\x4f\x48\xc6\xb1\x96\xbd\xe7\x68\x13\x33\x14\x79\xc0\x35\x49\xef\x9c\x96\x47\x4a\xcb\x57\xac\x8d\xe5\x74\xf1\x11\xdd\x9e\xa9\xe5\x8a\xa8\x4f\x35\xa8\xee\x80\x63\x19\x29\xd9\x86\xd4\x16\xce\x18\x9f\xe2\x73\xcc\x09\x8b\xc8\x74\x54\x30\x61\x6c\x63\x2b\xfb\x19\xf8\x49\xcf\xca\x7d\x2d\xb1\xdf\x49\x25\xfb\x9d\xb8\xec\x77\x32\x1e\x01\x00\x51\x88\x03\xb1\x8a\x89\xf4\xc0\x29\xd0\x9c\xe6\x21\x35\x7f\x78\x28\xd4\xfc\x61\xa1\x30\xd3\x19\x80\x23\x7e\x24\x1d\xfb\xc4\x8b\xd5\x24\x01\x47\xcc\x87\xf1\xd6\x2b\x38\x2f\x0c\x51\x3c\x97\x5c\x9a\x80\x3e\x04\xc7\x09\x3e\xc7\x1a\xf9\x1a\xc2\x9d\xff\x74\x71\xa9\x96\x20\x28\x24\x5b\xd5\x0d\x4e\x87\xf6\x2a\x2b\x3f\x7b\xfb\xc3\xdb\xcb\xb7\xa0\xd5\xb3\x91\x4e\xa7\x5d\x3c\x55\xad\xee\x82\xa2\x3f\xe0\x91\x9d\x59\xb5\x62\xfb\x2b\x59\xd4\x77\x6a\xdd\x1b\x69\x2b\xab\x8d\xbc\x2c\x6a\xa5\xec\xd7\x71\x19\xdd\x3d\x54\xf0\x19\x14\x1e\x41\xf2\x3d\xae\x80\x6b\x21\xfc\x8a\xc5\x64\xda\x6a\xdc\x7e\x35\xf7\x6b\xa6\x17\xc8\x6c\x61\x53\x84\x9b\xc6\xa0\x05\x13\xed\x66\x7a\x32\x88\xe8\x81\xaa\xd3\x87\x9b\xb0\xd4\x0b\xef\x05\x8e\x67\xd5\x1a\x6c\x85\x10\xcb\xb1\xa1\xe2\x32\x4d\x89\x63\x81\xe3\x59\x89\x97\x52\x25\xc5\xf2\xa9\xee\x66\x26\x1a\x69\x9e\xb5\x2c\x49\xef\xf4\x5f\x31\xba\x92\xe3\xad\x0f\xa9\x76\x46\x59\x29\x9b\x14\xa1\x01\x65\x7c\x89\xb4\x1b\x27\x79\x27\x7d\xa3\xa0\x90\xa8\x03\x1f\x66\x93\x3b\x3f\x82\xab\xe5\xe8\x37\xb5\x46\x0e\x84\xe4\x84\xce\x3b\x88\xdc\x2a\xe7\xad\x96\xb6\xe2\x51\xdc\xaf\xd6\xd7\xfa\xa7\xb5\xba\x37\xd6\x2a\x2d\x4d\x4e\xcd\x6c\x3f\x10\x21\xeb\x26\x68\xe3\xec\xfd\xb4\x28\x7b\xc3\x4b\xec\x70\x17\xab\xea\xef\xb6\x50\x72\x34\xbd\x2e\xd8\x09\x7a\xca\xaa\x02\x57\x78\x7c\xea\x3e\x98\x81\x90\xfe\xc8\x7d\x19\xaa\x79\x07\xa7\x0a\xb7\x38\xb7\x1a\xa9\x11\x7f\xe5\x96\xec\xf7\x73\x95\xd9\x4d\x1e\x5f\xbf\x34\x1b\x11\xaa\x7d\xa7\xc8\xd5\x70\xec\x2b\xcb\x40\x7d\x6a\xe8\x63\xbf\xef\xc9\x00\x4d\x18\x97\x9e\x9f\x83\xb7\xb5\x5a\xce\x95\xbe\xbf\xdd\x6e\x7d\xa8\xc4\xd2\x4f\xab\xc2\xea\x99\x33\xc3\x1b\x2d\x1c\xab\xd1\x19\x0b\xab\xa6\x8c\x12\x60\x13\x3c\x63\x1c\x5f\x60\x1a\xa5\xee\x01\xe7\x5d\x49\x33\x36\xc6\xd5\x01\x55\x86\x93\xa9\x34\xf1\x5f\x3b\x4d\xa7\x3e\x02\x35\xc8\x4a\x7a\xaa\xd1\xf3\x24\xc4\x4a\xda\xa3\xf8\x16\x6d\x84\x3b\xd6\x28\x57\xd8\x92\x58\x95\x56\x0a\x3d\xae\xb1\x12\x13\x09\x7e\x04\x7a\xe0\x08\x57\x78\x2c\x52\xd9\x64\x44\x4d\x49\xa1\x7f\x51\xa9\xd0\xbf\x70\x15\xfa\x17\xda\x9e\xe4\x61\xb3\x85\x0f\x85\x32\x8e\xcb\x9b\x8d\x9e\x0c\x96\x2c\xc2\xb1\x52\xdf\xd2\xb5\x21\xf3\xef\x23\xed\x19\x00\x56\xba\xda\x91\x0e\xf4\xa4\x02\x4a\x9e\xa8\x39\x13\xe1\x4f\x8e\xc7\x25\x9d\x70\xc0\x57\x2f\xde\xab\xcf\xef\x18\xf7\x98\x6f\x69\xae\x57\x32\x96\x33\x92\x78\xbd\xe3\x81\x42\x0e\x99\x21\x4f\xfc\x19\xe4\x21\x05\x15\x8e\x66\x58\xab\x06\xf2\xda\x9b\x6b\x19\xad\x43\xe1\x11\x65\x19\x45\xe1\x5a\x59\x46\xd3\x70\x7d\x75\x92\xee\x9f\x4e\x0b\x54\x4f\xc5\x8f\xf1\x4c\x4c\x8d\x63\xa5\x3c\x18\xb1\x0f\x33\x1a\xb3\x16\x1a\x4f\x3b\xd3\x38\xca\xd1\x38\xca\xd1\x78\xba\xad\x51\xf0\x0f\xbd\x4c\xa0\xb2\x59\x0f\x05\xaf\xd5\xec\xd7\x52\xd9\xf7\x9d\x5d\x32\x8e\x95\xa6\xf0\xd1\x71\x2d\xe4\xc6\x29\x61\x61\x3d\x7d\x79\x77\xcf\x48\xbf\xef\x3e\x41\x16\xe2\x20\xe7\xbe\x60\xdc\xa3\x7a\x27\x11\x4c\x70\xcc\xe8\x5c\x5c\x32\xed\x58\x0a\xae\x09\x8d\xfa\x7d\xb0\x30\x1b\x77\xd9\x3b\x3f\x5b\x5e\xcc\xd2\xc2\x82\x6b\xbc\x39\x02\xbd\xe5\x5a\xc8\xde\x04\xf7\x50\x2f\xad\xa9\xc7\x78\xcf\x56\x00\x35\x11\x30\x8a\x7a\x44\xf6\x6e\x91\xe8\x81\x23\x5b\xdf\x81\x61\x3e\x7c\x65\x9e\xc7\xa6\x42\x3f\x88\x09\xbd\xf6\x7c\x48\xc2\xbb\xad\xea\x1f\xef\xf7\x3d\xd2\x79\xa8\x62\xdf\x87\xb1\x63\x4b\x9d\x26\x76\xfe\x3a\x2c\x72\x51\xec\xf0\xe3\xd5\xc9\xd8\x3f\xb0\x7a\xcc\x35\xde\x08\x6f\x5d\xb1\xdd\x87\xfd\xbb\x08\xc7\x58\xe2\x1e\xb9\xc2\xe3\xad\xbf\x2d\x29\x92\x71\x8e\x35\x48\x95\xa3\xc5\xd8\x3f\x22\xa7\x3b\x42\x1a\x3a\xa3\x10\x26\x14\x3f\x05\xa9\x46\xa8\xa4\xca\x77\x49\x89\x8f\x58\xac\x18\x15\x18\x8c\xf2\x05\xec\x5e\x6b\xfa\x19\xa2\x50\x2f\xba\x44\x97\xe0\x5a\x5a\xe8\x4d\x53\xbd\xa5\x68\x66\xaa\xfb\x32\x0e\xd1\x15\x1d\x7b\x12\x72\x88\xfd\x03\x69\x56\xd2\x58\x89\x90\x82\x27\xa5\x96\xaf\x6d\x8c\x47\x15\x2e\x77\xdb\x51\x7e\x77\x78\x81\x68\x14\xe3\xa4\xb3\xb5\xa2\x5b\x5e\x81\x4f\x03\xa3\xb0\x6a\x1e\x00\xe3\xfb\x7b\x79\x95\xee\x7a\xbf\x37\xef\x52\xc7\x9d\x5d\xbf\x4b\x3c\x22\x1c\x1e\x41\x4a\x54\xc3\x64\xad\x6a\x5a\x48\x13\x9d\xa1\x76\x17\x57\x51\xa3\xdf\xa7\xeb\x38\x3e\x0c\x53\x05\xb3\xda\x9b\x22\x35\x51\x8b\xab\xa3\xa9\xdf\x53\x6c\xd3\x03\x47\xd4\xdf\xba\x4d\xe6\x97\x34\xd3\x5a\x4d\x23\x6a\xc9\xc1\xbe\x1e\xf1\x84\xcb\x8d\xba\x4f\x66\x9b\xf2\xaa\xe5\x1f\x20\xbd\x73\x4c\x8f\xc0\xa9\xde\xc6\xed\xde\xaf\x8f\x8d\xe2\x2a\x25\x89\x63\x25\x15\xc5\x8e\xac\x10\x3b\xb4\x42\xec\xd0\x6a\xb1\x43\x1f\x2a\x76\xa8\x23\x76\x50\x88\xaf\xa8\x15\x3b\xd4\x15\x3b\x6d\x23\x84\xb4\x7e\x56\x69\x87\xad\x56\x35\xa6\x33\xc7\x82\xc5\x37\x98\xa7\x96\x95\xa2\xe0\x40\xbb\x4a\xcd\xcc\xcc\x95\x9e\x32\x3a\x23\xf3\x63\x4c\x6f\x08\x67\x54\xf1\xe1\x63\x1a\x5d\xd6\xda\x49\x62\x0d\x5e\x67\x76\x5f\xaa\xda\x2f\x35\xb0\x09\x35\x18\xa5\xc1\x0d\x81\xfb\x1a\xae\x58\xf4\x63\x75\xb1\xc2\x17\xf8\xd1\x22\x3f\x4a\x19\x73\xeb\xc3\xbc\xf3\x4b\xc0\xea\x56\x5c\xf7\x80\xa8\x22\xf9\x34\x09\x66\x70\xc3\xa6\x06\x9c\xdd\xd6\x0c\xc4\x02\xc7\x2b\x65\xcb\xc6\xe8\xf7\xcd\x60\x1a\x93\xe9\x75\x3a\x24\x53\x46\xa7\x6b\xce\x31\x9d\x6e\x2a\x5c\x8a\xc9\x73\x0f\xe5\x94\xf0\x44\xcf\xd6\xec\xe2\x38\x91\x32\x3f\x69\x60\x56\x77\xaf\xb8\x10\xf8\x77\xd6\x7b\xa0\x7d\xe7\x17\x12\x49\xc5\x6a\x2b\xcc\x67\x8c\x2f\x3d\x99\xa8\x31\x7c\x4d\x03\x31\x5d\x60\x45\x93\x9f\xe8\x14\x7b\x00\xcd\x24\xe6\x1f\x31\x8d\x14\x3b\x61\x28\x94\x9a\x9c\xf6\x4e\x54\xec\xd4\xe5\xba\x95\xb9\xc1\x19\x27\x73\x65\x53\x7e\xcf\x26\xef\xa3\xcc\x17\xee\xec\xf0\x99\xa5\x29\xe7\xa9\x70\x9d\xf6\xc5\x0a\x0e\xe4\xa9\x87\x95\x98\xb5\xbc\x48\xb0\xf0\xee\x7e\x65\x93\x91\x84\xb9\xa2\x23\x25\x2c\xb7\x3e\x94\xd6\xcb\x27\xce\x11\x57\xf3\x40\xa9\x64\x19\xb9\xac\xf9\x96\xeb\x49\xa6\x4a\x36\xf7\xa4\xec\xaf\xd1\xfd\xb2\x40\x52\x7b\x52\x3e\xc3\x51\x65\x46\x26\x8d\xa3\xe9\xe6\xae\x92\x68\xae\x1d\xb9\x40\x72\x00\xa7\x31\x12\x42\xef\x67\x8e\xae\x40\x91\x71\x01\x11\x03\x42\x95\x45\xae\xf7\x56\xc1\x18\x66\x25\x34\xed\xe0\x94\x51\x89\x3f\x49\xf3\x30\x41\xd3\x6b\x36\x9b\x5d\xe0\xdf\xd6\x98\x4e\x71\xab\x51\x7d\xf5\x72\x38\x84\xff\x31\x1c\xc2\x93\xe7\xc3\x21\x7c\x76\x32\x1c\xc2\xe7\x2f\x86\x43\xf8\xf2\xe5\x70\x38\xde\x2a\xb3\x1d\x49\x61\xaa\xd6\x3f\xb5\xcc\x1d\x1d\x9e\x40\x4c\xd1\x24\xc6\xe7\x2c\x8e\x09\x9d\xb7\x36\x73\x68\x0a\x48\x2c\x24\xa1\xf3\xad\x0f\x19\x7d\xa3\xe6\x9b\x6b\xcc\x6e\xe1\x34\xff\x0a\xeb\x70\x2a\x19\xa8\xe9\xa9\x4b\xfb\xde\x55\xc6\x06\xb6\x06\xe0\x43\xac\x2c\xee\x88\x28\x66\xc0\xe4\x06\xbf\x96\x92\xe7\xac\xe4\x6a\xe6\x3f\xed\x34\xa5\x8c\x02\xe0\x8f\xbc\xac\x92\xdc\x14\x35\xab\x81\x5a\x6d\xed\xa2\x29\x0c\x8b\xaa\xaf\x50\x91\xcd\x4f\x36\xc4\x34\xc4\x48\x4b\x3a\x89\xc4\xb5\xef\x71\x3c\xc7\xd4\xf8\x92\x3e\xae\xa9\x24\x4b\x1c\x2c\x11\xbf\x4e\x89\xd7\xc3\x89\x6f\x11\x41\x01\x79\x22\x43\x2a\xc0\x6e\x39\x5a\x79\x25\x37\xc6\x2b\x5f\xdc\x12\xed\x5d\x0a\x56\x1c\xdf\x84\x58\x7b\xa9\xfc\xbb\x29\x12\xb8\x37\x1c\x21\x67\x72\x17\xb8\x06\x24\xe1\xb3\x3e\x14\x21\x0a\x56\x6c\xe5\xf9\x07\x1a\xec\xd9\x28\xf5\x0b\xe8\x3a\x9f\x41\x53\x6b\xf8\x12\xca\x20\x43\x33\x29\xfe\x72\xc4\x43\x35\xd9\xa8\x2c\x13\x87\x97\x08\xf6\xd6\xc4\x7b\x1e\x9e\xf8\x49\xad\x27\xcf\x0f\x26\x1c\xa3\x6b\x53\xdb\xc9\x70\x64\x9b\x3d\x19\x42\x1c\xc8\x61\x88\xad\xa9\xf5\xac\xb6\xae\xa1\xed\xc9\xc9\xf3\xac\xe7\xa6\xea\x97\x66\xd5\x51\x04\x64\x6b\xe9\x7b\x28\x30\x61\x6f\xfe\xfd\xbd\x48\x80\x5e\x8e\xc8\xcc\x19\xf9\x1c\xcf\x2b\x21\x69\xeb\x7a\x66\x7a\xb9\x35\x40\x7f\x19\xa9\xbf\x00\xd3\x08\x64\x6d\x0a\xa9\x88\xb8\xdd\x42\xe3\x2d\x82\x57\x57\xcf\xe0\xc9\x70\x3c\xf6\xb7\xbe\x1f\x44\x5c\x7f\xac\x54\x23\xaa\xd7\x34\x85\xe3\x5a\x0c\x26\x88\xd7\x2c\x6d\x0e\x58\x44\x94\xe6\x37\x59\x6b\x40\x05\xf1\x45\xbd\xf4\x31\xda\xb0\xb5\x34\xc2\xad\xa9\x13\x8e\x18\x7b\xc3\xa8\x44\x84\x62\x6e\xe4\x8c\x13\x47\x91\x85\xc6\x56\x94\x0e\xee\x7e\x5b\xe3\x35\x36\x3b\x4b\x02\xaa\xb2\xca\x18\xb3\x8f\x33\x44\xe2\xf4\x1b\x5f\x53\x4a\xe8\xdc\x3e\x09\xa9\x96\x98\xe4\x71\x9b\x8b\xb4\x55\x86\x7a\x95\xbc\x48\x5b\x75\x63\x5b\xeb\xd7\x56\xa7\xb8\xfa\xe4\xac\x81\xc0\xed\x34\x80\x20\xdf\x6d\x00\x81\xdb\x71\x00\x41\xae\xeb\x00\x82\x7c\xe7\x01\x04\x31\x13\xd2\x3e\x24\x7a\xc6\xd5\x5d\x8c\x26\x38\x1e\x81\xff\xad\xdb\x02\xd0\x8c\x1d\x0e\xf2\x04\x4b\x96\x9d\x91\xed\x13\xd8\xc2\x04\xf0\xc2\xb6\x92\x81\xe6\xdb\x75\x81\x45\x5a\x36\x46\x1b\xcc\xc5\xe8\x59\x56\xcf\x47\xd3\xfb\xac\x9a\xfc\x48\x38\xb5\xd8\x0f\x4e\x1f\xde\x58\xca\x64\xc0\x85\x21\x76\xa0\x93\x2f\x0e\xf8\x3b\x4d\xc7\x0c\x38\xc7\x10\x0e\xa8\x79\xef\x00\xfe\xc0\x84\xcc\xc0\x32\xf2\xba\x40\xea\x2d\xd8\x8e\xb7\x1d\x26\xad\x34\x7c\x8f\xc5\x40\xe0\x69\x31\x30\x7e\x9c\xb3\xa5\xbf\x80\x16\x92\x2a\x1a\x35\x7b\x7d\x4e\x4f\x27\x48\x90\xe9\x40\xc9\xa2\x88\xdd\x56\x86\xef\xe7\x4b\x34\xc0\x7e\xb6\x84\xa9\x05\x48\x42\x89\xe0\x1d\xa6\xeb\xa5\xd9\xa7\x18\x1d\x0e\xe1\x1c\xcb\xaa\xe8\xf6\xd4\xc6\xd8\x11\xfb\x63\xad\x54\x51\x39\xc0\x31\x5e\x96\x0e\xd3\xec\x46\x8d\x52\x5d\x7f\x18\xea\x3c\x06\x55\xfe\x00\xd4\x90\x9c\xcc\xe7\x98\x7f\x16\x35\x92\x3a\xf6\x90\x1a\xd3\x05\x89\x23\x8e\xff\x10\x4a\x89\x32\x50\xeb\x95\x90\x5f\xd9\x24\xb8\x5b\x61\x1a\x11\x3a\x7f\x63\xb1\x4e\x74\x8b\xf4\x39\xc2\x28\x4a\x1e\x9a\x74\x0b\x1d\x40\x55\xaf\x4b\xe8\xcf\x45\xdd\xa1\xd0\x76\xa6\x1e\x38\x6f\xdc\xf6\xcb\x1a\xc1\xb9\xa9\x21\x5b\xdf\x8a\xe8\x34\x69\x05\x75\xab\x79\x15\x70\x79\x3d\x3f\xc3\xc8\x59\x8e\xdd\x6e\x56\xaf\xe4\x5d\x56\xd7\x69\x4c\x94\x64\xa5\x2c\xc2\xbb\xfa\x79\x0a\x71\x64\xab\x94\xcc\x26\x70\xc2\x2d\xb1\x24\x9f\x08\x15\xc7\xb7\x44\x2e\x06\x69\xe3\x83\x1b\x22\xc8\x84\xc4\x44\x6e\x06\x11\x96\x76\x6d\x7f\xa4\xe3\x68\x2d\xcb\x7a\xea\x1f\x83\x0f\x75\x33\x94\x08\x57\xf6\x33\xa8\x6f\x66\x32\x7c\x4d\x63\xbd\xc6\x9b\xa6\x43\xc1\xfc\x03\xe9\x3a\x85\xea\x7c\x68\x76\x4b\x2f\x73\x9f\xc1\x93\xe1\x50\xef\x1f\x67\x43\xf6\x0f\xbd\xdb\xc0\x47\xf9\xe9\x19\xb1\xa9\xf6\xf4\x07\x0b\x12\x45\x98\xfa\x85\xbd\x83\xbc\xbd\x7f\x80\x63\x81\x4b\xfe\x35\xdb\x51\x5c\xda\x78\x70\x3a\x84\x4d\x87\xb6\xf0\x96\xc4\xf1\x19\x16\x92\xb3\x4d\xb5\xc3\xa2\xa2\xd9\x2e\xbb\x14\x1a\xcc\xf8\x1a\xf4\x4f\xd7\x3d\xef\xbb\x76\x8a\x00\xed\x73\xac\x2c\x25\x8b\xe1\x44\xd1\xf3\x81\xc0\x71\xa2\xdd\x56\xcc\x1b\x1a\xb1\xdb\x01\xc7\x82\xfc\x6e\xe2\x91\x1a\x26\x9f\x90\x9b\x18\x3b\xa1\x49\xa6\x7a\xc9\x11\x15\xe4\xd1\x66\x58\x31\xe2\xc8\x0d\x22\xc0\x47\x72\x7b\xd0\x3a\x03\x69\x36\x03\xf3\xf3\x6a\x81\xb8\x54\x52\xb8\xbc\xbe\xa5\xe5\xbe\x23\x5a\xe4\xaa\xe2\x44\x7c\x40\x9c\xb3\xdb\x11\x11\x03\xaa\x7f\xa9\x82\xaa\x0e\x67\x19\xd2\xbf\xcc\xb4\x3c\x43\x72\xbd\x34\x2f\x52\xd0\xc3\x13\x28\x19\x8b\x25\x59\x5d\x28\xda\x8d\xf2\x47\x10\x81\xfd\x76\xce\x2c\xfd\x7c\xb8\x44\xe2\xda\x3a\x5e\xe1\x2f\x95\x0b\x9d\x7a\x59\x71\x00\x35\x29\xb6\xda\x38\x4e\x11\x5d\xd6\x87\x87\x43\x1f\xca\x10\x07\x4b\xb4\xfa\x6e\xe3\x01\x4d\x6b\x1d\xc0\x11\xad\xa7\xd8\x13\x70\x98\x9d\x38\x51\x65\x9c\x03\x9c\xc9\xde\x1e\x0f\x69\xa0\x97\x0a\xc8\x42\x6a\x02\xa7\x0e\x92\xc8\x1f\xbd\x82\x70\xbb\x78\x30\x67\xbd\xa0\x41\xfa\x3b\x31\x3f\x55\x2d\xea\x07\xd4\xfb\x83\x23\x04\x57\x98\x4f\x31\x95\x23\x76\x2c\x21\x9b\xcd\x04\x96\x23\x7b\x6a\x5c\x91\xca\x6f\xe8\xf2\x71\xa2\xfe\x90\xe8\x3d\x15\x98\xcb\xb7\x46\x85\xaf\x11\x58\xd4\xdd\x6d\xd3\x13\xc2\xd0\xe9\x5f\x3c\x20\x6e\xe6\xc0\xbf\x1a\x8e\x7d\x88\x42\xcd\x1c\x03\x35\x0a\x03\x70\x64\xe3\x13\xd6\x24\xd2\x7b\x61\x0b\x22\xec\x9e\x53\xc1\x75\x6e\x99\x22\x19\x3c\xb4\xb5\x82\xc0\xd4\xdd\x9b\xc6\x64\x75\x8e\xa4\x92\x15\xca\xe2\xd4\xe1\xb2\x10\xf9\x90\x06\x8c\x7a\x60\xc9\xd6\xaa\x3f\xe8\x06\xe7\x46\x35\xf5\x80\xe6\x85\xa8\x30\x8e\xf8\xd7\x66\x21\xb0\xfe\x38\xfd\xd2\x61\x42\xeb\xdd\x84\xd4\x62\xaa\x64\x13\x98\x2b\x51\xa5\xc6\x43\xbb\x6c\x32\xf8\xec\x25\xa1\xce\x6b\x4d\x5b\x1b\x4a\x45\x23\xcc\xdf\x28\x1c\x3d\xb3\x3e\xfc\xbc\x8a\x90\xac\xf1\xe5\x16\x4a\xaf\x75\x51\xfd\x68\x39\x99\x4d\xd4\x1a\x88\xb9\x07\x34\x7f\x07\xff\x0b\xa3\xe9\x22\x30\x02\x00\x1a\x1e\x4b\xd9\x26\xaf\xa3\x55\xd4\xef\x43\xe7\xb9\x7e\xe4\xed\x84\x70\xd5\xb5\x44\x18\xfc\x62\xe6\x53\x3a\xdb\x81\xe2\x02\xaa\x0f\xd0\x4a\x7d\xfa\x44\x17\x80\x6a\x02\x24\x45\x92\x20\xa2\x84\x75\x82\x5b\x12\xc9\x85\xe7\xc3\x38\x14\x8d\xe7\x95\x35\x8e\x7f\x53\x5a\x04\x09\x51\xc2\x85\x20\x98\x20\xbd\x79\x59\x18\x2b\xd5\xac\x17\xc3\xca\x8a\x34\x99\xb6\x3e\x5c\x87\xb1\x8d\x2d\x39\x20\x01\xfe\x44\xa4\x97\x86\x65\x19\x39\x1a\x85\x24\xc0\x4a\x73\xf0\x7c\xb5\x1e\x29\xe9\xa8\x2b\x4f\x19\x4f\x7f\x74\xa8\x2c\x6b\x38\x2f\x1f\x46\xab\xe6\xa7\xb0\x94\x6a\x42\x58\xf7\x53\x1f\xca\xb6\x3d\x3e\xa0\xdd\x79\x70\xe8\x43\x54\x51\x7a\x58\xc7\xb1\x95\x13\x41\x26\xeb\x09\x0a\xd4\xea\xef\x69\xb5\xfd\xbb\xef\xd8\x27\x4f\x1f\xf4\x08\x3e\x1d\x09\x33\x7c\xc7\xcf\x0e\xca\x9b\x0e\xa5\x3d\xbc\xb2\x31\x56\x9e\x92\x4a\x9d\x49\xfa\x52\x14\xf0\xf0\x2e\xc6\x33\xa9\x83\xbd\xfc\xad\xff\xca\x23\x21\x09\x96\x98\xcf\xb1\x17\xf9\x89\x74\xd0\xd8\xe5\x87\xc4\x86\x11\x64\xf2\xf4\xfe\xde\x0c\xc2\x00\x1c\x09\x13\x6f\xf3\xd3\xcc\x93\xbe\x3e\xd3\x32\x2f\x12\x41\x61\x8a\xfa\x7d\x54\x1c\x0e\xc8\x9c\xd7\x87\xe9\xeb\xc4\x2c\xa1\x90\xf7\xfb\x29\xdd\x59\xbf\x9f\x91\x7b\xac\xd7\x23\x34\x55\xfc\x66\xce\xa0\xf7\x40\x2a\x2f\x84\xc3\x22\x90\x18\xfa\x4f\xc3\x0a\xfe\x60\xff\xa6\x4c\x1c\x2d\xff\x07\x1e\xb6\x61\x43\x61\xb8\x1e\x9c\xdc\xdf\x0f\xc3\x30\xb4\xaf\x4e\x4f\x46\xcf\xfc\x23\xb0\xfa\x04\xb6\x70\x59\x57\x8f\x59\x3b\x8e\x3c\x17\x6e\x38\x3a\x49\xe0\x56\x21\x71\xe7\x57\x20\x11\x9f\x63\x99\xcc\xb2\x72\x9d\x3a\x66\xe8\x60\x55\x9a\x3b\x1c\x4f\x25\x28\x0c\x14\x48\x2b\x33\xaf\x35\x3b\x01\x38\x4d\x9e\x17\x98\xcc\x17\x4a\xd4\x9c\x0c\x87\xff\x9a\x96\xfa\x04\xe0\xd2\xb7\x63\xbf\xd2\x91\x97\x56\x89\xf2\xfc\x20\x5a\x73\xad\x01\x7a\xcf\x86\xc3\xba\x5a\x35\xbc\xa6\xed\xac\x80\x9b\xd2\x68\x4a\x88\x39\x4a\x14\xc5\xb7\xbd\x34\x49\x8a\x5e\x8d\xef\xef\x4f\x74\xa2\x85\xd8\xcb\x85\xf2\xdd\x99\x45\x5a\x6e\x21\xf6\xfd\xad\x7f\x30\x6b\x26\x47\x65\x0f\xed\xef\x0d\xa8\x98\x3a\xfc\x14\xbc\x1c\xfe\x2b\x18\x0d\xb7\x19\x45\xc9\x6a\xb0\x52\x4b\x25\x04\x6b\x1e\x7b\xff\x03\x1c\x65\xca\x8c\x59\x5d\x81\x7f\x04\x7c\x50\xa4\x6d\x65\xe5\x7f\x59\x7d\x02\x23\x43\xf5\xb4\x05\x4d\x67\xa5\xe8\xd7\xc0\xe8\xef\x31\x92\x4a\xfd\xe8\x0d\x9e\xfb\x40\x7b\x67\xed\x38\xcd\xea\xa6\xa8\x43\x5e\x30\x41\xbc\xa7\xc9\x3a\x00\x47\x72\xfb\xd0\x91\x55\x73\xaf\x5a\x61\x31\xbb\x5d\xd6\x5d\xe9\xfb\xd9\x32\xa2\xe8\x53\x22\x8c\x26\x82\x33\x0a\x9a\xe2\xca\x0a\xd1\x7a\xff\x47\xa5\xf6\xe3\x0a\x7b\x2b\x13\x85\x8c\x4e\xb1\x31\x62\x8a\xcb\x6f\xdd\x21\x07\xc7\x3c\x31\x8e\xb6\x5b\xc6\x97\x0b\x56\x3c\xeb\x90\xff\xd6\x00\xb5\x87\x6e\xb7\x19\xc7\x58\x1b\x4b\xc7\x62\x3e\x98\xb0\x4f\x38\xfa\x26\x1b\x0c\x37\x88\x13\x44\x65\x7b\xf8\xfe\xd5\xdd\x35\xde\x8c\xc0\x07\x1d\xa1\x08\xa0\x24\x32\xc6\xd9\xa3\x88\xd7\x73\x35\x0d\xa0\x29\xf5\x9e\xce\x58\x5a\xc6\x3c\x98\x12\xda\x4b\x31\x63\x69\xc1\xff\x42\xdc\xb8\xa4\x6c\xd9\xf4\x39\x2d\x7e\x6b\xdf\x24\x10\x67\x88\x6a\x67\xad\x05\x48\x1e\xd3\xf2\x91\x79\xd1\xc9\xfd\x94\x1b\x83\x29\x8b\x19\x17\x5f\x95\xf8\xba\x4f\x97\x0b\xbc\xec\x10\xe8\xa1\x0f\x82\x8d\xc0\x39\x27\xe6\xd4\xfa\x04\x09\x3c\x02\xff\xe3\xd9\xcb\x09\xfa\x8f\x13\x45\x9d\xdc\xf7\xde\x19\xe2\xd7\x69\xa1\x93\xe8\xff\xf7\xe2\x2f\xff\x9e\x15\xba\xc4\x9f\x64\xfa\x71\x88\xd4\x7f\xd9\xc7\x1f\x08\x75\x20\x5f\xfe\xe5\xf9\x6c\x96\x7d\xfc\x3b\x47\x59\xdb\x93\xc9\xf4\x45\xe4\xb4\xfd\xd3\x6c\x36\xb8\x5d\x10\x89\xd3\x12\xb3\x97\xea\x3f\x3d\x18\x70\xc5\x59\xb4\x9e\xca\x37\x9a\xcc\x9d\xf1\x7d\xc3\xa8\x58\xc7\xbd\x73\xb7\x53\xb3\xd9\x70\xf8\x1f\x0e\x3a\x4e\x99\x3c\xde\xd3\xbf\x3c\x43\xff\xee\x12\x07\x4d\xaf\x31\xef\x7d\xa7\x0c\xc5\x8c\x36\x08\xbb\x18\x3a\x65\xca\x44\x8c\x22\x97\x88\x9c\x23\xb5\x4c\xf4\xce\xd7\x7c\x15\x67\x35\xbe\x9c\xbe\xc0\xf8\x65\x7d\xc1\x7c\xb5\x2f\x86\x2f\x86\x93\x67\x59\xe9\x7f\xa2\x39\x47\x54\x16\x3a\x59\x18\x06\xb7\x50\xa1\x97\xc3\x17\xd8\xad\x4e\x87\xd5\xf6\xfe\xce\x31\xa6\xb5\x3c\xe3\x94\x69\xe6\x9b\x62\x41\x35\xf1\x92\xa2\x7f\xf9\xf7\xe1\x8b\xc8\x8c\x34\x5e\x32\xa5\x02\xee\x38\xd2\x17\xeb\xe9\x14\xab\x25\x33\xe9\xe5\xf3\xe8\xe4\x2f\xc3\xac\xf1\x54\x34\x24\x5c\x80\xfe\x03\x3f\x7b\x9e\x7d\x4f\x24\x41\x32\xf6\xff\xf1\x62\xf8\xfc\x45\xf6\xd9\x48\xa1\x02\x3d\x77\x16\x12\x45\xbf\xd0\xe0\xd7\xf5\x72\xc2\xbe\xaa\xd0\x70\xbb\xf0\x1d\xe2\x67\x15\x0e\xa0\x0a\x1a\x5b\x27\x3e\xa3\xe9\x7e\xfc\xc9\x30\xf3\xed\xcb\x5b\x96\xbc\x7e\xe6\xbe\x5e\x70\x9c\x96\x77\xde\xcf\xd8\x9a\x27\xaf\x9f\xbf\xfc\x7c\x2a\x7e\xdd\x2d\x75\xb2\xc4\xfc\x92\x4c\xaf\xc5\x68\x68\x62\x49\x2e\xd5\x9b\x9a\xc3\xa5\x99\xb9\xa2\xe1\x00\xd4\x91\xe7\x12\xf3\x1b\x14\xe7\xdd\x2e\x84\x4e\xb9\xd6\xb8\xd2\x6e\x82\xac\x29\xa5\x4f\xbd\x1c\x0e\x7d\x7f\xab\xed\x6a\x42\x89\x04\x7e\x9d\xff\x78\x1a\x63\xc4\xd3\x46\x9c\xb4\x71\xba\x07\xbe\x76\xb0\x7c\x1b\x1e\x78\x3e\xd4\x13\xbc\xa2\xf9\xff\x22\x72\xf1\x46\xdb\xdc\x5d\x66\x7c\x65\x7c\xcb\xc9\xb0\x71\xf7\xaa\x18\x4f\xf2\x6c\xb8\x53\x04\xc9\xf3\x61\x55\xd4\x48\x0d\x36\x1f\x99\x44\xb2\x22\x30\xd2\x1d\xd1\xb2\x71\x50\x45\xe1\x1f\x91\x5c\x04\x9c\xad\x69\xe4\xbd\x1c\xfe\x9b\x79\x42\x34\x62\x4b\x4f\x8d\x63\x05\xed\x3b\x02\xb8\xa3\xd2\x08\xd2\x65\x72\xce\xd7\x52\x62\x3e\x58\x62\xba\xfe\xaa\x53\xb1\x39\x47\x92\x60\x5c\xe2\x28\x4d\x14\x54\xce\xb7\x68\xb3\x16\xa5\xe7\xc5\x85\x75\x14\xaa\x17\x15\xc3\xe3\x95\xf2\x1d\x65\x90\xc0\x0f\x24\x33\x16\xaf\x7f\x7f\x7f\x35\xf6\x03\xd5\xba\x57\x75\xde\xd8\x7a\x4f\x74\x23\xe6\x84\x86\xf3\x6c\x1d\x23\xa9\xd9\x10\x86\x21\x3d\x1d\x9c\x8c\xdc\x17\xe8\xf4\x64\x44\xff\x8a\xd4\x6b\xfa\x37\xf5\x30\xd4\x03\xc4\x68\x8a\xea\x9b\x85\x5a\xcb\x72\xfb\x75\xad\x63\xf8\x2b\x9b\x0c\x22\xbc\x8a\xd9\xa6\x18\xf0\xf2\xc5\x87\x31\xb7\x83\x52\xec\x07\xc8\xdb\x36\x63\x98\x7d\x4c\x36\x42\x7e\x5a\x61\x3a\x3a\x3c\xd9\x11\xc5\xe3\xec\xe7\x60\x89\x25\x27\xd3\xaf\xab\xbc\xef\x10\x9a\x95\xef\xb8\x18\x08\xc9\x31\x5a\xe6\x6d\xdd\x25\x7b\x9c\xe0\xa2\x1d\x3a\xce\xe2\xc2\xae\xb2\x92\x6e\x31\xa1\x38\x37\x4a\x1d\xe4\xb9\x8e\x34\xd7\xb3\xf5\xac\x1e\x0c\x38\x55\xda\x89\x7a\x83\xb9\x20\x8c\x5e\xac\x27\x4b\xa2\x57\xe1\x2a\x8f\x8b\xb3\x55\x95\x55\x00\xcc\x04\xd5\xfb\x3e\xa5\x4a\xfc\x80\x63\x9d\x3a\x54\x7b\xff\x11\xa5\x4a\x9a\x37\xf7\xad\xd4\xfb\x7c\x0f\x1b\xb3\xb9\x96\x60\x41\xeb\x5e\x99\xb0\x87\x21\x87\x4a\x1c\xf8\x22\x10\x0b\x76\x7b\x86\x24\x0e\x0f\x87\xd9\xb6\x34\x0f\x71\xc0\xf4\xf0\xbf\x96\x1e\x1a\x9c\xf8\xa6\x39\xdb\xa5\x40\x38\x08\xeb\x2d\x37\xd3\x19\xe7\xed\x01\xeb\xf7\x79\xbf\xaf\xf7\xf5\xd3\x0d\x45\xee\x9b\x58\xd0\x9f\x66\x1e\x88\xd0\x06\xf8\x41\x44\x66\x3a\x7f\x8d\x53\x88\x15\x0b\x41\xf5\x47\x00\xff\x6f\xc3\x7e\xdf\xcb\xf5\x37\x39\x36\x79\xe7\xce\x6b\xb8\xc4\x12\x8d\xc4\xd6\xac\x3d\x5b\xbf\x9c\xec\xba\x38\x3b\xc8\x6c\x36\x98\x11\x1c\x47\x62\x80\x68\x34\x30\x78\x3f\xed\x09\x4d\x66\xb3\x6f\x2c\x66\x55\x0f\xea\x36\xa6\xdf\x46\x44\xe2\x68\x44\xc4\x00\xeb\x5f\x7a\xff\xea\x75\x14\x99\x77\x48\xfd\xd0\xaf\xce\xf4\x11\x58\xfd\xd2\x9c\x86\x8d\xd4\xec\x27\xb3\x99\x91\xce\x37\x98\x4f\x98\xd0\x2e\xaf\xb4\xce\xfc\xe4\x09\xf0\x6f\x6b\x14\x7b\x40\xc1\x04\x97\x9b\x15\x06\x10\x98\x82\xc0\x87\x49\x93\xed\x20\xba\x9c\x86\x48\x7a\xd4\x0e\x63\x4b\x76\x08\x82\x50\xe4\x5a\xa1\x39\x3e\x46\x13\x21\x39\x9a\xd6\xa5\x57\xb7\x49\xa9\x8c\x22\x7b\x6c\xf2\xac\xac\x10\x47\xcb\x62\xaa\x94\x6f\xa0\x0f\xa5\xc1\x6d\x4a\xe0\x24\x0d\x66\x6f\xce\xb0\x98\x9a\x60\xb0\x24\xea\xa7\x49\x9f\x80\x73\x26\xd9\x25\x12\xd7\x7f\xe7\x6c\xbd\x2a\x7f\xfa\x9e\x4d\xf2\x2f\x75\xc2\x98\x1f\xb1\x10\x68\x6e\xc3\x8a\x26\x1c\xa3\x68\xca\xd7\xcb\x49\x59\x9e\xea\x50\x3b\xa5\x12\x41\x12\x6d\x1b\xa5\xa7\x9b\x88\x2c\x55\xa0\xbf\x67\x13\x01\x20\xe2\x73\xcb\xea\x02\x8c\x53\xdd\xb7\xa0\x7f\x65\x65\x02\x73\x8a\x0c\x6a\x51\xf6\xdb\xea\xbb\x35\x89\x23\xcc\x7d\x7d\x6c\xed\x43\x96\x14\x33\x03\x37\xd9\x34\x4d\x45\xf7\xf7\x4e\xe6\xc9\xb1\xb6\x0b\x90\xee\xb2\x18\x19\x7b\xec\xad\x8b\x7f\x71\xc7\x59\x1b\x88\x2e\x85\xec\xf6\x7a\x72\x2c\xda\x1c\xbb\x72\xe5\x43\x1d\x18\xae\x3d\x90\x5a\xc5\xcd\x13\x13\xea\xd6\x16\xad\x59\xe6\xfe\xaf\x9e\x62\xbe\xaa\x37\x7a\x62\x61\x89\x39\xf9\x1d\x47\x03\x1d\x87\xba\x03\x2e\x49\xa6\x3c\x0b\xf8\x85\xef\x40\xd0\xf9\x9f\x8a\x22\x09\xc5\x04\x09\xc3\xec\x11\x9e\xb2\x08\x47\x36\x51\x14\xf0\xa1\x05\xf9\xfe\xe2\xa7\x0f\xa5\xd9\x61\xbf\x55\xcc\x0b\x27\x7b\x11\x76\x93\x77\x66\xf3\x25\x81\xf5\xfd\x2c\xf9\x50\x92\xb9\x00\x77\xb0\xf5\xaa\xa9\xbf\xcf\x3c\xe4\xc4\x30\xd7\xa0\x61\x03\xd9\x94\x94\x7c\xec\x6c\x79\x35\xa2\x5c\x66\xf1\x65\xa9\xd8\xce\xad\xdf\x45\xab\xa8\x9b\x4c\x37\x67\x9a\xe5\x79\x2a\x83\x2b\x45\xb5\x22\xcc\x05\xf9\x5d\x7b\x54\x64\x22\xe2\xab\x65\x74\xf6\x39\xb8\x1a\x37\x6b\xdf\xf9\xe2\x40\x9b\xc9\x5b\x1f\x26\xa4\xaf\xac\x3e\xf9\xd8\xa9\xf2\x74\x10\x93\xaa\x63\x22\xe4\x25\xbb\x60\x69\x5c\x50\x71\xe2\x65\x10\xd6\xfc\x78\x53\xdd\x99\xa4\xbc\xaa\xf0\x42\x17\xdc\x45\x65\x30\x2c\x66\x6f\xb3\xf8\x26\xfa\x68\xc5\xe2\xcb\xe8\x19\x11\x4b\x22\xc4\xee\x5e\x02\x17\x29\xd5\x21\x1b\x49\xfa\x35\x51\xeb\x3e\x27\x70\xf4\x36\xeb\x63\x25\x8f\x39\x38\x58\xa3\x6d\xc9\x22\x32\xdb\x98\x54\x22\x8d\x6e\xa0\x02\x38\x70\x5c\x3f\xca\xb2\x74\xeb\xc9\xd9\x94\xbb\x92\x79\x15\xa3\xa9\x76\x0d\x0f\x66\x88\xc4\x6b\x8e\xbf\x11\xb5\x77\xb4\x70\x1c\x0c\xec\x71\x80\x6f\xe5\x61\x7a\x04\x0c\x2a\x2e\xad\xf8\xf2\xfe\xcd\xa6\xe0\xfe\x4c\x9d\xb7\xb9\xa6\xeb\x95\x8b\xa4\xef\x7e\xe3\x7c\xd9\x95\x22\x4a\x98\x0f\xe6\x46\x9a\xff\xc1\xd7\xcd\x06\x63\xe7\x8b\x2f\x90\xad\xab\x98\x0b\x63\x65\xde\x65\x5d\xa7\x1e\x63\x25\xd3\x91\x13\xdf\x6a\x25\xcb\x66\xb2\x8e\xdf\xd0\x3f\x2b\x6d\x24\x35\x36\xa9\x05\x26\x24\x5b\x15\xd4\x9c\xe2\x1e\x9d\x73\xea\xca\x1c\xd6\x2f\xa6\x71\x4b\xcf\x97\x38\xcd\x01\xdf\xbb\xb3\x81\x24\x6f\xd8\x3a\x8e\x7a\x1f\x98\xec\x5d\x48\xb6\xea\x7d\xaf\x6c\xc9\x08\x8b\x29\x27\x3a\xd3\xdc\x08\xfc\x3f\x6c\xcd\x7b\xaf\xdf\xfc\xd0\xd3\xc9\x5c\x7b\x11\xc3\xa2\x47\x99\xec\x99\x9d\xf8\x15\xe6\x6a\x35\x26\x8c\xf6\x24\xeb\xa9\x1e\xf4\xb4\x4d\x0a\x4c\xca\xe1\x1d\xc6\x28\x6f\xd6\x3c\x31\xbd\xfc\x6e\x07\xa3\x5f\x3f\xaf\x90\x52\x58\x77\xf1\x05\xe4\xce\x0d\x65\x55\xec\xe6\x24\x90\xcd\x4e\x02\x59\x72\x27\x48\x4e\x96\x4b\xb3\xdb\x54\xe9\x55\x18\x77\xda\x48\x2b\x8d\xe2\x93\x1b\xbf\xc6\x25\xa9\xac\x66\xa6\x33\x50\xa7\xa3\xff\x01\xad\xe9\x74\xd1\x71\x16\xe6\xb2\xf7\x57\x4f\xc7\x0a\xff\x47\x79\x3a\xbe\x53\xf5\xf4\x4c\xd3\x9f\x33\x25\xb5\x63\xdc\x9d\x94\xf0\x33\xfc\x3a\x3b\x4c\x68\x4b\xde\xa7\xc6\x09\xdd\xfb\xaf\x9d\x92\xfb\xd8\xfd\x9d\x4e\x94\x7e\x0d\xf7\xee\xc3\xce\x7a\xa6\xa8\x94\xcf\x78\xa6\xab\xe9\x63\x1f\xf1\xec\xc4\xde\xe9\xe6\x58\x9d\x2a\x91\xa6\x42\x92\x59\xd8\xbc\x87\x83\x77\x7a\x9f\xc7\xd8\x5a\xf6\xb4\x16\x87\x43\xff\xc8\xc3\x81\xa1\x7a\xfe\x1b\x85\x43\x27\x29\x9a\xcd\xa2\x9a\x04\xaa\x9f\xe2\x23\xe9\x51\x7f\x84\x77\xce\x01\x66\x13\x07\x5e\xd9\x9d\x87\x6c\x37\x21\xdd\xbe\x18\xb7\x9f\x23\x2c\x6f\xca\xa4\x44\x29\xa9\xaa\xf6\x4b\x61\xd7\xdb\xdd\x61\x99\x6a\x3f\xfd\x1b\xb6\xa6\x45\x5d\x31\xdb\xf6\x33\xdb\x4e\x0d\x8b\x68\xae\xa0\x39\xee\x91\xa9\x93\x8a\xb0\xe9\xe6\xe4\xa9\x1a\x96\x23\xe4\xd2\xf9\xc8\x43\xc9\x79\x3a\x05\x94\x9a\xc4\xe9\xa1\xba\xc2\xb8\x8c\x86\xae\xa3\x5c\xb2\xf9\x3c\xc6\x67\x64\x36\x2b\x49\x52\xf3\x29\x0b\x8d\x32\xf8\x03\x2d\x49\x1b\x8f\x73\x06\x53\x46\xa7\x48\x7a\xd2\xdf\x42\x5e\x5d\x06\x65\x09\x62\xa5\xde\x1a\xf2\x4f\xf1\xd1\x89\xb9\x3a\xb3\x23\x0f\xef\xc5\x9e\x7c\xd2\xd7\x6e\x1b\xf2\x0e\x5f\xa5\x5b\xe0\xff\xac\xa9\x21\x61\x9a\x92\x91\x53\xc3\x5c\xee\xfe\xbb\xa8\xdc\x78\xff\x32\x3b\xe0\x90\x85\x85\xdd\xec\xf2\xae\x77\x69\xeb\x3a\x2e\xc0\x54\xec\x94\x17\x61\x0e\x98\xd9\x15\x8f\x3b\xec\x7b\xa7\xd3\xba\xb8\xe9\xdd\xcc\x7b\x82\xd1\xc1\x0d\xc1\xb7\xc5\xc4\x23\x74\xb5\x1c\xe9\x8f\x33\xc6\x97\x48\xc7\x65\xfd\x5a\xde\x7c\x74\xc4\xa1\x9d\x60\xff\xe2\xf9\x01\x5e\xae\xe4\x26\x3b\x7b\xe3\xe4\xbc\x4b\xea\xd2\x43\x44\x23\xcc\x3d\xdf\x7f\xa8\xc4\xcc\xd6\x62\xfb\x77\x67\x31\xe9\xe0\x3e\x86\xea\xc9\xc8\x44\xfc\x69\x85\x68\x74\x86\x57\x72\x31\x3a\x39\x1e\xc2\xb4\xd7\x65\x4b\x43\x98\x8b\x2d\x32\x80\x2a\xd3\x9c\xe2\xdb\x1e\xf2\x2a\x4f\x3d\xeb\x0a\xec\xa9\xe7\xec\xc4\x8c\x53\x9d\x0f\xef\xa4\x0e\xcc\x37\xa3\x07\x92\x73\xc4\xed\x49\x0a\x4d\xd5\xfd\x7e\xf7\xfc\x84\xb4\xc3\x7a\xab\x0c\xfe\x01\x9a\x4e\x19\x8f\xbe\xf6\x11\x91\x7c\x7e\xcb\xb4\x0b\x63\xa8\xcf\x63\x90\x08\x40\xc1\xd6\xbc\x4b\xb2\x4a\x1d\x6d\x89\xa7\x8c\x2b\x59\x74\x51\x09\x04\x4c\x5d\x6d\x72\x48\x28\x71\xf6\x06\x4d\x17\xb8\x60\x30\x5e\xe3\x8d\x49\xc0\x4d\x24\x5e\x06\xe0\x48\x42\x94\x0b\xd5\x59\xeb\x5b\xb5\xf2\x42\x29\x15\x49\x58\x27\x25\xfd\x6e\xe3\x51\x27\xef\x3c\x82\xd2\x4f\xc4\xd9\x9d\xaa\x75\x84\xd2\xd5\xfb\x50\xf4\xfb\x87\x87\x22\x30\xcf\x6a\x29\x73\xbd\x42\xa2\xd0\x53\xa8\x2f\xd8\x35\x49\x39\xcd\xab\x4e\x24\xdb\x91\x37\x8e\xd3\x5f\x83\x09\x8b\xbe\xae\xc3\xd3\x71\xf4\x74\x0f\xeb\xab\xed\xfe\x42\x67\x9c\xf9\xe6\x9c\x6e\xfa\x51\x17\x67\xa3\xb1\x1c\x11\x31\x88\xed\x69\x3a\x22\xde\x6a\x39\xa2\x4f\x8a\x8d\xb4\xca\x9e\xea\xeb\x93\xb5\x94\x8c\xfe\x60\x63\x78\xb5\x4a\xe4\x50\x0a\xe6\x40\x0f\x87\x50\x73\x5b\xaa\xdf\x33\x51\x08\xe1\x60\x54\x03\xee\xb4\x01\xa4\x89\xbd\x42\x73\x42\x4b\xb7\xbc\x7f\x79\x77\xf8\x0e\x62\x42\x90\xdf\xf1\xe8\xd9\x4b\xbd\x97\x39\x3a\x81\x62\xc5\x31\x8a\x46\xcf\x4c\xc0\xbe\x78\x5d\xd6\x8f\x15\x00\x80\x60\xa5\x8d\xf4\xa6\x4d\x1f\x5d\xc2\x1f\x9c\xf8\xff\xe6\xc8\x05\x05\xec\x1f\x9d\x28\x34\x68\x54\x59\x7d\x26\x96\x5a\x9a\xea\xe9\x00\xec\x25\x29\xb7\x59\x6a\x10\x16\x25\x93\x3d\xa9\x0f\x7c\x35\x8c\x31\x12\x66\xa7\xb7\xbd\x2f\x35\x9d\x98\x62\xe2\x9e\x1f\x28\xb4\x71\x5c\xec\x8e\x6a\x54\xf5\xd4\xdc\x81\xd9\xd4\xaa\x41\x1d\x98\x51\x69\x10\xd4\x6e\x36\x85\xa4\x70\x02\x9c\xa0\x07\x4c\xe2\x11\xf3\x59\x5f\x63\xa3\x0a\x68\xbb\x25\x29\xa2\x14\xc5\x13\xad\x28\xe6\xf2\x6d\x89\xd0\x90\x1a\x7d\xf2\x4e\x20\x1d\x48\x1f\xf2\x30\x25\x3e\x82\xf4\x48\xfa\x47\x27\x89\x44\x36\xc1\xdd\x7c\x20\xec\x31\x66\xed\xc7\xc9\xaf\x03\x8e\x4d\x71\xa7\xfa\xf0\x61\xad\x48\x30\x12\x47\xf6\x38\x67\x9c\xdd\x8f\xd4\x4c\x96\xe2\x98\x94\x56\x2f\x3b\xfa\x61\x25\x5b\xe2\x83\xd2\xd6\x42\xba\x6e\x99\xb4\x27\x12\xca\x23\xdc\x45\xcb\x2c\xcc\xf6\xf4\x19\x7f\xab\x9d\xec\x6e\x3d\x96\xc5\x6b\xcf\xbe\x5e\x0f\x6d\xd3\x79\x13\xcc\x6e\x7e\x7d\x79\x35\xa7\x7e\xe0\x97\x85\x14\xd1\x96\x4d\xf5\xa5\x1f\xda\xd2\xed\xca\x0d\x1a\x19\xbd\xa5\x37\x98\x7c\x23\xe5\x40\x69\xeb\x69\x5e\x55\x67\x31\x35\x1b\x53\xe3\x34\xca\x85\xb3\x95\xd2\x24\x56\xf6\x6f\x6e\x4c\x88\xb0\x39\xab\xec\xd8\x54\x2f\xce\x26\xe1\x86\x0e\x78\xb5\x39\x2a\x40\x61\x7b\x30\xc2\x62\x3a\x42\x62\x0a\xc6\x30\x2d\x5e\x1c\x2b\xa7\x3f\x6a\x92\xeb\x3f\x4d\x83\xe6\x96\xf7\xc3\xd0\x99\xf8\x1a\x56\x0d\x93\x58\xb0\x75\x1c\x5d\xe4\xfb\x52\x15\x94\x9e\x7d\x36\x01\xbc\x16\x8d\x52\xf3\x4e\x66\xc2\xb4\x94\x7f\x7f\x7f\x98\x0f\x53\x77\x6a\xdb\x91\x61\xf4\xbf\xdf\x50\xa1\x94\xba\xe9\xd6\x58\xf2\x52\x8f\xbf\xba\x0e\xe9\x70\x39\x4e\xed\xc6\x86\x1e\xaf\xd8\x2d\xe6\x96\x97\x07\xcb\x75\x2c\xc9\xaa\x3a\x0d\x82\x5b\xb0\xbd\x82\x3d\xcc\x88\x50\x89\x48\x53\x76\xd6\x9d\x28\xb2\xcf\x29\x5a\x5d\x84\x1e\x4a\x88\x7d\xc7\xfb\xd8\x5c\x64\x38\x60\xab\x52\xb8\xda\x2e\x64\x28\x56\xb3\xef\x54\xf9\x5c\x72\xfc\x51\xe8\xa0\x43\xec\x16\x2c\x8e\x1e\x2e\x2a\x72\x75\xec\x3d\x3d\x5c\x19\xa8\x83\xbc\x1e\x4e\x96\x72\x55\xfb\x4e\x1d\x81\x11\x9f\x2e\x06\xcb\x64\x53\xff\x81\x94\x29\x54\xb3\xef\x54\xf9\xcc\xa5\x76\x9f\x57\x58\x8e\x13\x27\xfd\x00\xdf\x60\x2a\x8b\xb1\x03\xdf\x36\x54\xd4\x71\xab\x66\xb9\x7f\x93\x14\xb0\xce\x7d\x52\xf5\xb7\xae\xbc\x8f\x5a\xec\xcc\x8a\x4b\xb9\xdc\x6b\xf4\xab\x2e\x49\xd1\xb7\x73\x6d\x7d\x28\xc9\xd2\x46\x0b\xc5\x84\x5e\x5f\xb2\xd7\x59\x87\x0e\x87\xd0\x06\x6b\xb5\x2b\xc2\x76\x32\x4d\xd8\xa7\x4e\x01\x05\x6e\x84\x8e\x01\xbd\xc4\x7c\xe9\xf6\xf4\x17\xe7\xf5\x03\x76\xbb\xba\x0c\x5a\xda\x80\xcd\xc6\xeb\xbc\x28\xc4\x6d\x72\x8c\x22\x91\xeb\xa9\xa2\xc6\x84\xad\xe9\x14\x8f\x4e\x5e\x0e\xf3\xd6\xad\x4b\x0b\xa0\x8f\xc5\x02\x08\x16\x48\x9f\xdb\x34\xab\x75\x16\x1a\x89\xe5\x45\xd6\x6a\xf5\x11\x33\x97\x12\x10\xdb\xcc\x86\xc9\xdd\xe6\xd9\x3e\x55\xd2\x1f\x9b\xcb\x0d\xba\x27\xaf\xcd\x17\xe0\x77\x09\x7d\x32\xc9\x5b\x07\x68\x5e\x31\x91\xbe\x79\x10\xce\x2f\x9c\xad\xb3\x2d\xc5\xc2\x54\x03\x03\xf5\x55\x9b\xc7\x30\x57\xae\x18\x7f\x6b\x6b\x09\xcc\x1f\xd0\x14\xbe\x53\xa6\x46\x39\x8e\xa7\xa3\xf7\x62\x0c\x75\x2d\x49\x04\x49\x8d\xbb\x42\x97\x01\x10\xd8\x2e\x5a\x6f\xc4\xcf\x1f\x7f\x68\xf4\x49\x66\x98\xe8\x0c\x17\xfa\x8a\x32\xec\xd9\xde\x8b\xc0\xfc\xcd\x09\x82\xb9\xc9\x2e\x98\xa4\xbc\x00\x47\x38\xa9\x89\xe9\xd6\xfc\x34\x49\xf3\xe0\xc4\x4f\x3e\x3a\xbd\x71\x2f\x90\xbe\x1a\x8e\xc3\x30\x94\x5b\xbf\x18\xb4\xe4\x76\xf4\x55\x29\x7c\xa9\x2c\xd2\x70\x1e\x1b\x27\xb5\xe2\x25\x2b\x63\x83\xf3\xa8\x6c\xa1\x16\xfe\x5d\xe2\x9f\xb2\xe0\xf9\x27\xc7\xe1\xf5\xac\x58\xec\x74\x99\x11\xd3\x58\xf4\x6f\x14\x56\xa6\x7b\x18\xb3\x79\x95\x0e\xe2\xde\xe9\x59\x7b\x64\x5b\xc3\x3e\x20\x85\xbd\xbd\x47\xae\x22\x3d\x3d\x14\x5f\xf8\x0a\x08\x1d\xbc\x5a\xb7\xf4\x37\x1c\x7e\x80\x20\xa5\x56\xf9\x56\x49\xf5\xc9\xfc\x5a\x0b\x7c\xa1\xd9\x7d\x74\x78\x02\x29\x7b\xc3\x28\x35\x15\xa8\x67\x73\x8f\xc4\xa5\x41\x7e\x74\x82\x9f\x43\x33\x35\x92\x37\x2f\xf1\xf3\xdd\xaf\x66\x74\xef\x4e\x90\x3a\xe3\xa8\x7d\x23\x74\x46\x58\xb3\xef\x79\x61\xe2\xad\x4c\xb6\xf0\xda\xec\xec\x1a\x6c\x46\xe2\xf8\xf5\x0d\x22\xb1\x1a\xba\x7f\xe8\xac\xa5\xde\x67\xe4\x27\xad\xa8\x4e\xdf\xab\x5f\x7a\x5b\x2d\x85\x82\x7f\xf1\x40\x30\x8d\xc9\xc0\xb4\x0f\xfc\x03\x1c\x98\x54\xaa\x9e\x79\x13\x10\x4a\x31\x37\x55\x0c\x92\xb4\xc3\x9e\x1f\x48\xb6\x1a\x3c\x7b\xe9\x6f\xe1\x92\x45\xfa\xde\xb5\x48\x31\x1c\x8c\xd9\xfc\x67\x1e\x37\xe8\x6e\x01\x51\xab\xbf\xf3\x4c\x59\x84\x83\x85\x94\xab\xd7\x51\xc4\x01\x04\xe9\x08\x37\x0a\xf8\xda\x0a\x94\xc8\x07\xc7\x37\x27\xf6\x36\x96\xe3\x99\x9e\x45\xe2\xd8\x4d\xac\x9b\xef\x8d\x5f\xde\xa1\xca\xfa\xe0\x9f\xca\x11\x38\x3e\x06\x47\xf8\x48\xc9\xf3\x98\xcd\xcf\x75\x02\x85\x72\x2e\x2d\xc5\x1a\x10\x28\x6a\x54\x28\xa7\x77\x9a\x83\x8b\x8c\x04\xe5\x66\x85\x9d\xb7\x1a\x58\xc9\x15\xd5\xce\x1c\x73\x73\x69\x86\xf9\xed\x7b\xc0\xd0\x56\xdf\xb2\x67\x7b\x51\x43\xa2\x5c\x0c\x49\x0e\x97\x4c\x45\x76\x27\x06\x70\x6f\xb4\xcd\x4d\xa2\x8c\x38\x59\xd0\x5b\xba\x3a\x19\x12\x7c\xbc\xf8\xe7\x79\xc0\xd1\x14\x7b\x57\xc9\xe9\x03\x25\x02\x80\x1f\xa0\xb5\x5c\x30\x7d\x20\xfb\x23\xfe\x6d\x8d\x85\xf4\xa8\xbe\x5d\x59\x64\xd1\x6b\xd2\x1f\x57\x5c\x43\x9f\x1e\x00\xcf\xe5\x04\xb7\xd7\xb3\x97\xb1\xb2\xa1\xf7\xae\x34\xd0\x59\xc9\x47\xfa\xce\x5f\x35\x49\x67\x88\xc4\x4c\xe1\xcb\x12\xa0\x64\xb1\xb4\x81\x92\xd9\x75\x28\xbe\x0f\xe5\x56\x8f\xc1\x02\xa3\x68\xa4\x17\x83\xce\x57\xa4\xba\x37\x15\x3f\xf6\x15\xa9\xf9\x1b\x43\x9f\x39\xba\x8b\x61\x90\x60\xce\x24\xfb\x07\x46\x91\x8b\x4c\x72\x51\x6a\xa7\xf0\x2d\x57\x52\x95\xe4\x42\x20\xa6\x9c\xc5\xf1\x25\x5b\x79\x43\x7f\x6b\x2b\x7e\xde\xe1\x76\x51\x7f\xab\x48\x8a\x48\xbc\x6f\xb4\xbc\x44\x24\x7e\x0c\x5a\xda\x79\x59\x25\x69\x33\x9a\xe2\xab\xe1\xd8\x3e\x26\x42\x7c\x57\x1a\x1b\x56\x7e\x7a\x54\x2e\x12\xd7\xde\xc6\x20\xf5\xcd\x57\x95\x4b\xdc\x17\xa6\xeb\x36\xbd\xd2\xf7\x79\x69\xe4\x81\x0d\x9e\x35\x0b\x3a\xa1\x73\x2f\x1d\x86\x2a\x3c\x66\x33\x8b\x88\x2d\xf5\xa2\xeb\x60\xb5\x5e\xb6\xe4\x74\x47\x43\xe7\x6c\xe4\x1f\xd5\x9a\x5b\xb2\x8e\xab\xe0\x9c\x1b\x0a\xcc\xd2\x84\x73\x71\x3a\x25\xe9\xb7\x85\xae\x42\xd3\xd4\xb5\x80\x88\x94\x48\xb9\xa5\xa5\xd0\x83\x51\x73\x73\x45\xd1\x5c\x7d\x6a\xc9\x51\x0a\x0e\x87\x5d\xac\x76\x79\xcb\x06\x42\xe2\xd5\xc0\x04\xa9\x7d\xbb\xc0\xbb\x62\x47\xc6\x90\x44\x31\xbe\xc4\x9f\xa4\x8e\x02\xd0\x57\x69\xa5\x4f\x8c\xce\x08\x5f\x16\x1e\xb5\xa2\x92\x9c\xe9\x02\x00\xea\x0b\x7d\xd5\x87\x62\xfc\xdc\x1b\x5d\x59\xfe\xad\x8e\xce\x1c\x01\xd5\x26\x80\x44\xbc\x8f\xe2\xa2\x89\x9d\xa4\xa2\xd2\x25\x95\x15\xa5\x8a\xfa\x90\x08\x7b\x3b\xdf\x1b\xa7\x17\x2d\xa0\x2b\xce\x96\x2b\x09\xfc\x1c\xaf\x5e\x32\xdd\x68\xe5\xb0\xe6\xdb\xdc\x42\x53\xc1\x3b\xc6\x73\x8d\x36\x82\x26\x6d\xd6\xf3\x04\x95\x6a\xf6\x2b\xcb\xd5\xb9\x6a\xec\xd8\xf5\x07\x3e\x81\xe4\x59\x49\x27\x3b\x1d\x4d\xd5\x71\x32\xe6\x28\x67\x39\x5e\xa7\xd3\x81\xd2\x9c\xca\xa9\xab\x0a\x6a\x4f\x97\x56\x94\x5d\xc5\x88\x68\x8f\x69\x4b\x7a\xaa\xba\x76\x1a\x72\x55\xd5\x75\x31\xb5\xe5\xab\x0f\xb5\x06\x99\x37\xa0\xb2\xcb\xb9\xf0\xc4\xea\x1a\x77\x43\xe5\x81\x68\x88\x05\xe3\x52\x53\xce\x22\xe0\xf0\x64\x50\xed\xa3\xd6\x80\xc0\x6f\x3c\xb3\xdb\xc6\xe3\xc7\xc4\xe4\x0f\xe9\x94\x18\x61\x17\x9f\x0f\xa4\x5f\x84\xfd\x9d\xcc\x09\xf9\x7b\xcc\x4d\xb1\xbc\x7f\x21\x43\xdf\xab\x23\xa7\x0f\xf5\x04\xb6\xb6\xdb\x5d\x2e\xcf\x82\x8e\x25\x02\xc5\x4c\x0b\x20\xc2\x62\x0a\xb6\xf9\x94\x0c\xe6\x08\x76\xb1\xe8\xe1\x49\x43\xf6\xb8\xc4\xc7\x5a\x85\x46\xe0\x80\x81\x0e\xb9\x15\x2c\x0b\x29\xc9\x97\x65\x57\xb8\xd0\x8f\x1d\x32\x2b\x64\x52\x39\x49\x20\x31\xca\x8b\x31\x73\xb4\xcd\x71\x31\x7e\x64\x6b\x89\xeb\x68\x1a\x18\x8b\x57\xfa\x26\xeb\x44\xc1\xb5\xa6\x58\x23\x3d\x89\x90\xb8\x3b\x69\x8b\xbb\x33\xf1\xa9\x24\xfd\x03\x4a\x63\x52\xaa\xcf\xf8\x33\xc4\xfb\xb1\xe9\xe7\x17\x5c\xff\x4b\xb2\xfb\x91\x58\xb6\x69\x09\x68\x63\x27\x13\xc2\x9b\x89\xaa\xe6\x0d\xb3\x76\xe6\x4c\x0e\x2e\x5e\xd5\xc8\xb5\xfc\xea\xd1\xcc\x31\x05\xd0\x1c\xce\x55\x62\xaf\x21\xb8\xaf\xd3\xe0\x97\x85\xdf\x97\x67\x01\x3d\x25\x1e\x3c\xf8\x81\xf5\x0f\xb5\x8b\x95\x7c\x3b\x05\x81\x42\xb1\xbc\x65\xfc\xba\x51\x9a\x70\x6c\xa2\x72\x45\x60\x4b\x8b\x60\x46\xb8\x90\x86\x28\xc0\x87\x9a\x62\x25\xfe\xb3\x85\x15\xb8\xd2\xcb\xa3\x73\x55\xca\x30\x5d\xf2\x29\xda\x50\xb4\x24\xd3\xec\x4b\xd3\x39\x86\xca\xfa\x92\xf3\xba\x35\xe1\xc2\xfa\x2a\x0c\x1c\xe8\x03\x28\xba\x9b\x23\x1c\xfc\x53\xdf\xaa\x48\xc4\x99\x69\x7c\x74\x78\xb2\xdd\xa6\xcc\x5b\xd1\x9e\xdb\xc9\xc7\x68\x6e\xb8\xdd\xfa\xd9\x69\x52\x33\x2b\x3e\x97\x7d\x63\x36\xff\xb2\x29\xb6\x9e\x24\xf7\x76\xa0\xd9\x6a\x15\x93\x2e\x3a\x3c\x8b\xb0\x18\xcc\x18\x1f\x98\xb4\x77\x5f\x43\x7d\xd7\xb6\xdb\xbc\x31\x35\x89\x3d\x26\xaa\x7e\x5e\xc8\xf2\xa9\x50\x9b\xa2\xaf\x49\x6c\x9b\x22\x7e\x20\xd9\x85\xbe\xa2\x58\xe7\x91\xd0\x2f\xdf\x28\x94\x3b\x57\x99\x3f\x51\x5c\xaa\x5f\xd5\x4a\xc4\x8b\xe1\xf3\xea\x0a\x75\x5b\xad\xb1\xff\x59\x51\xe0\x67\x27\xdc\xc1\x8b\xe1\x73\x90\xd4\xff\xe2\x8b\xd4\xff\xc2\xd6\xff\x72\x38\xfc\x02\xf5\xbf\x1c\x0e\xed\x45\x90\x9c\xdd\x9a\xa4\x4f\xa6\x91\xec\xd6\xd7\x32\xd5\x2b\xf3\xcc\x18\x8e\x09\x88\x38\xc3\x37\xc0\x3f\xcd\xbc\x61\x14\x7f\x92\x5e\xce\x06\x76\xfc\xe0\x76\x88\xb6\xbe\x6d\x56\x62\x21\x09\x9d\xdf\xdf\xd7\xc3\x4f\x19\x15\x2c\xc6\xc1\x2d\xe2\xd4\x03\x3f\x7f\xf8\xf8\xf6\xcd\x4f\xff\x7c\xfb\xf1\xf5\x77\x3f\xbc\xed\xbd\xfd\xf8\xf1\xa7\x8f\xa3\x74\x2b\x39\x63\x80\x2e\x32\xcc\xec\x1c\x7c\x65\x51\x45\xc4\x3b\xc6\x27\xfa\x86\xf4\x86\xe3\x99\xa5\x4e\xda\xbf\xbb\x5b\x44\xc9\x27\x1d\x83\x52\x91\x47\xee\x8b\x1b\x44\xce\x65\xdf\x39\x9b\xc6\xcd\xa6\x6a\xcf\x6e\x39\x01\x3c\x36\x08\x07\xc0\x1d\x4c\x1f\xb7\xc6\x93\x2c\x0f\xeb\x7f\x14\xea\xc8\x25\xa8\x2c\x9a\x46\x43\xdb\x09\x55\xbc\x43\xaa\x07\x90\xd8\xc7\xd0\xac\x9d\x9d\x52\xce\x15\xd5\x48\xc7\x96\xd2\x6d\x77\xb1\x8d\x8c\x2d\x95\x05\x7b\x35\x1a\x54\xba\x56\x07\xec\xed\x4d\xe5\x35\x0c\xa6\x5f\x3a\x08\x23\x49\xe6\x29\x5b\xaf\x85\x70\x81\x9c\xbc\x14\xb2\x7c\x15\x84\xbd\xa9\x81\x13\xf5\xaa\xa6\xf1\xc8\x7c\x6d\xbe\x4a\xa6\xd4\xba\x85\x02\x65\x45\x26\x6f\x43\x3a\xb1\x71\x25\x67\x74\x67\x3b\xb2\x39\x4b\x78\x79\xe2\x3e\xd0\x93\xf1\x94\xe6\xad\x45\xa5\x8b\x86\x95\xc8\x54\x1f\xd2\x8a\x25\x3d\x3f\x03\xa8\x59\x9d\x4c\x58\x55\x73\x51\x53\xa4\xe8\x16\xf9\x63\x88\x10\x92\x4a\x0f\x08\x22\x24\xd1\xd4\x5c\xf9\xdd\x49\x94\x24\x24\x7c\x98\xf8\xf8\xd0\x30\x44\x05\xc1\xe1\x2e\x5b\x35\xe9\xa0\x8b\x4c\x12\x38\x30\x45\x6f\xce\x87\xca\x0d\xa1\x8a\x39\x68\x6b\x0d\x92\xe5\xaf\xdb\xdc\x4b\xef\xbb\xab\x8a\x64\xca\x2e\xc3\xab\x06\xf9\xa2\x19\x00\x75\x17\xde\x25\x6d\xd5\xe8\xdb\xed\x08\x6a\xff\x78\xa7\xcc\x5f\x4e\xa6\xa6\x82\xa2\x87\x21\x3e\x02\x3a\xbc\xa5\xa0\xea\x99\xfb\xf8\xdd\xd4\x1d\xb6\xa0\x7f\x7f\x9f\xbd\xf2\xa1\xc8\x0a\xc8\x72\x01\xe9\x1f\x88\x30\x0c\xd1\xfd\xfd\xa1\x67\x12\xeb\x1f\x86\xa2\xdf\x4f\xbd\xce\x87\x61\x28\xee\xef\x93\x2f\x28\xff\x05\xf9\xf7\xf7\x5e\xba\x79\x22\x21\x72\x23\x65\x8b\x0a\x22\xb5\x6e\x38\x8e\x67\x1c\x8b\x85\xe6\x1c\x25\xfc\x15\x1d\xbf\x84\x0a\xd7\x7c\x51\x48\x4e\x42\xe5\x5c\xf2\xd9\xb5\x17\x60\x0b\xf3\x7a\x20\xcc\x17\x4c\x23\xed\xc5\x86\x4e\xd3\xf7\x17\xa6\x8d\x91\x49\xf2\x98\xbe\x06\x30\xb9\x51\xcd\x04\x12\x66\x1f\xfc\x3c\xbc\xee\xd4\x28\xbb\x80\xad\x58\x1c\xe6\xab\x75\xa6\xac\x4b\xd9\x72\xa8\xff\xe1\xb0\xcb\x9c\x54\x2c\xfb\x47\x58\x0c\x5b\xaf\x89\xe9\xb4\x4e\xea\x09\xdc\x45\xac\xe6\x2b\x2c\xc8\xd4\x6f\xb3\x1a\x9e\x0c\xbf\xce\x72\xa8\x56\xc0\xd9\xfa\xf7\xdf\x37\x17\x3b\x55\x50\x05\xfb\x96\x2a\xae\x89\x54\x6f\x66\x24\x96\x98\xe3\xe8\x7b\x56\xbb\x53\xe9\xf8\xa2\x8d\x22\x6a\x93\xe0\xd6\x4e\x34\x58\x71\x1b\xa2\x4d\xf4\xd1\x98\x89\xa2\x0e\x28\x9f\x55\xa9\xba\x51\x2b\x6f\x53\x59\x51\x8e\x0a\xb4\x1e\x69\x8d\x1e\x9a\x4a\x4f\xe7\xde\x90\x98\x7b\xe5\xd8\xb8\x43\x7c\x7f\x4f\x8b\x77\xf3\xa8\x06\x4c\x5c\x78\x09\x10\x67\x80\x49\x02\x0d\x9d\x69\x58\xb1\xb8\x8e\xe6\x4e\x53\x76\x34\xaa\x2f\xee\x58\x3c\x58\x8b\xa9\x18\xc8\x5a\x25\xe6\x62\xc1\x6e\x09\x9d\x67\xd7\xc5\x9d\x61\x89\x48\x2c\x94\x08\xce\x29\x28\xb9\x7c\xd7\x0d\xfa\x89\x93\xa4\xd8\x12\x22\xd9\x6a\xf6\xb7\xd0\x8a\xcd\x8a\x80\x80\x8a\xe5\xaa\xab\x08\xd5\x8d\xed\x67\x04\x40\x75\x1e\xea\xcf\x88\x03\xe8\x1a\x03\xf0\xd0\xfd\xff\xf6\x7b\xaa\xba\x0f\xda\xb1\x2e\x45\x1a\xbc\xbf\x69\xb8\xbc\x5c\x0c\xd2\x96\x07\x1c\x0b\x2c\xf5\xa9\x98\xaf\x30\x88\xf9\x1b\x00\xba\x2e\x64\x36\x60\xe1\x57\x36\x69\x34\xe2\x4c\xa9\x76\x2f\x7b\xae\xe5\xb2\x93\xbd\x2a\x05\x45\x25\xb9\xb3\x2b\x21\xff\x5b\xd2\x5b\x9f\x71\xab\xbb\x74\x33\x3f\x32\xb9\xbb\x3d\x3f\x7f\x84\x3a\x4e\x88\x0e\xca\xe0\x13\x19\x9b\x56\x9d\x6f\xc7\x91\x6b\xd5\xdb\x1e\xaa\xa3\x3d\x56\xf4\x47\xc3\x00\x77\x60\xbb\x52\xe0\x46\xe1\xe6\x8f\x0e\xeb\x69\x2e\x3e\x0a\xbb\x17\x14\x60\xbf\xe2\x8e\xc4\x6e\x2b\x74\xc1\x03\xdd\xe5\x66\xc2\x6d\xd3\xfd\x11\x15\x3c\x1d\x33\x64\xd2\x05\x7d\xcd\x3d\x85\xdd\x19\xf0\x6b\x4d\x71\x77\x14\x3f\xdf\xe8\xdb\x41\x3e\x3c\x44\x2d\x7a\xc4\xf3\x66\x5d\x2c\x49\xf4\x39\xb2\xff\x8f\x68\xf9\x55\xec\xa5\xa0\xda\x0d\x8e\x8a\x6d\x94\xd6\x3d\xd1\x8a\x8d\x97\xae\xd7\x04\x7d\x93\xdd\x9a\x96\xeb\x5e\xda\x23\xa9\xb4\xc2\x5d\xa5\x6d\xe7\x2f\x4e\x7a\x9c\x20\xaa\x4e\xa1\xad\x34\x8d\x5d\x15\x8f\x1a\x86\x3b\xfe\xb6\x9b\x3d\xa9\xc0\x4b\x53\xb4\xef\x83\x5a\xf3\x25\x54\xce\x9a\x34\xf9\x79\x7d\x33\x4b\x64\xff\xa5\x57\x22\x7b\xe6\xfc\xdb\x5d\xb1\xd6\x40\xfe\x6f\xb4\x43\xf6\xe8\xbb\x61\x44\xfc\x80\x91\x3e\xed\x54\x5e\x01\x0a\x6e\xee\x76\x39\x9b\xa0\x61\x45\x66\x13\xe2\x5d\xae\x61\x2b\x71\xc2\xb7\x08\xae\xb4\x4d\x77\x99\x6b\x09\xbf\x76\x71\x0d\x97\xaa\xcd\x7b\x87\xbb\x93\x24\x49\xc8\xf0\x55\x63\x8e\xb5\x37\xf3\x12\x4d\x46\x40\xa2\xb9\x00\xe9\xdd\x7b\xf3\xba\x95\xde\x14\x6b\x70\xa7\x3a\xc5\xfc\xfb\xfb\xbb\x6d\xe2\x11\xb5\xdd\xbf\xc6\x1b\xe1\xe1\x42\xb8\xa4\xcc\x87\x4b\x4a\x68\xb0\xc0\x57\x72\xbc\xdd\x36\xc5\x13\x08\x2c\x55\xe7\xab\x53\xbe\xa4\xc8\x75\x5d\x3f\xac\xfc\x17\xc7\xfa\x2c\xf2\xd7\x8e\x9e\x6c\x4a\x81\xd0\x98\x1a\x49\xe0\x29\xc7\xa5\xa9\x6c\xb3\xed\xe8\x6a\x03\x53\x04\xf8\x50\x3f\xbe\x17\xff\x44\x31\x89\x94\x28\xb0\xcf\xef\xe9\x4d\xee\x8d\xc9\x7f\x64\x62\x0d\xf5\xba\x78\xa1\x3b\x50\x79\xb0\x2f\xc9\x9b\xb4\xa6\xca\xec\x7a\x1d\xc7\xb9\x73\x87\xfa\x82\xb1\x4b\x55\x67\x96\x08\xbb\xba\x9e\xe4\x00\xb8\xc8\xe5\xcc\xbe\xb3\xd8\x99\x2d\xca\x6d\x76\x34\xd1\x2d\xb3\x3b\x56\x49\x45\x19\x72\xaa\xd7\x37\x98\x93\xd9\x46\xf7\xb6\x3a\xf1\x81\xb3\x23\x90\xcb\xeb\x6d\xc8\x0b\x01\x9a\x4e\xb1\x10\x3a\xbc\xd2\xbc\x83\xd4\x8e\xf8\x1c\xcb\x9f\x6e\x29\xe6\x7a\x3f\xd5\x0f\x62\xc6\xae\xd7\x2b\x0f\xa0\x08\xad\x24\xe6\x23\x8b\xfc\x41\xc6\xbd\xb9\x81\x83\xd2\x87\x54\x67\xa6\xba\xc0\xf1\xcc\x2b\x9e\x7e\x97\xe9\x96\xb1\x4d\x7f\x1b\xe9\x03\xad\x2e\x72\xf6\xe2\x12\x5c\x9f\xeb\xca\x74\x01\x52\x7d\x14\xb6\x89\xbe\xc3\x16\xfa\xa2\xad\xbf\x75\x25\x04\xae\x42\xc8\x8c\xa7\x9a\x19\x3b\x8e\xe5\xb0\x62\x2c\xeb\xdd\x03\xc9\x51\x24\x44\xa3\xaa\x28\x04\xc9\xd7\x72\x31\x48\x0a\xb9\x85\x9f\x62\x02\xb7\xfa\x3a\x35\x7a\x1d\xeb\x43\x34\x6a\x23\x96\xbe\x3b\xa7\x3a\xff\xcc\x72\xc5\x84\xcd\x2a\x5c\x20\x9a\x01\xda\x33\xba\x59\x4c\xbb\x92\x4e\x17\x6f\xa3\x1e\xe7\x68\xb3\x2b\xf1\x34\xcc\x9e\xd1\xce\xe0\xd9\x95\x74\xaa\x74\x0b\xe5\xa6\x68\x89\x63\x7d\x71\x40\x05\xf1\x62\x32\x10\x3a\x5e\xbd\x44\xbc\x14\x6c\xbf\xe8\x97\x61\xdb\xb1\xd2\x04\xa0\x95\x8a\x74\x8a\xe3\x01\x8a\xe3\x96\x0c\x52\xc7\x09\x25\x9b\xae\xd6\xc2\xc9\xd2\x82\xaf\x86\xe9\xb5\x79\xb4\xdf\x07\x49\x19\x10\x86\x72\xb3\xc2\x6c\xd6\xa3\x81\x69\xfa\x75\x1c\x27\x91\xe4\x48\x08\xcc\xa5\x07\x2e\x17\xb8\xa7\x0f\x08\xf5\x10\x9f\xaf\x97\x98\xca\xde\x4a\x7d\x8b\x7a\x92\xf5\xe4\x02\xf7\xfe\x6f\xd6\xeb\xff\xdb\x33\xdd\xea\x99\x04\xf1\xbd\x09\xee\xa1\xde\x25\x12\xd7\x3d\xc6\x7b\xa9\x1f\xbb\xe7\x29\xf3\x9d\xad\x65\xef\xb7\x35\x93\x58\xf8\xaf\x7a\x1b\xb6\x4e\x6a\x05\x47\x14\x1e\x9e\xd8\x8d\x46\x89\xc4\xf5\x3f\x74\x95\x6f\x62\x26\xd6\x1c\xfb\x1e\x70\x89\x04\xd2\x6e\x03\x78\x45\xf5\xb9\xc1\x07\x28\x78\xa6\x12\xd3\x4e\x48\xed\x72\x0b\x14\x6e\xff\x33\x6b\xec\x7f\xf6\x24\x5e\xae\x62\x24\x71\x82\xe4\x2d\x12\x3d\x42\x6f\xd8\x35\x8e\x40\xe9\x12\x31\x53\x5b\x60\x8a\x7a\xb4\x65\xd8\x57\x44\xa2\x07\x4d\x9f\x14\x70\xdf\x26\x50\x86\x71\xe7\x29\x94\x80\xb4\x4d\xa2\xc5\x9a\x5e\xef\x28\xc4\x0d\xcc\x9e\xd1\xd0\xe0\xd9\x95\x7c\xaa\x74\x1b\xe5\x62\x24\x04\x99\x55\xaf\x80\x0d\x5c\x98\x80\xed\x19\xfd\x52\x6c\xbb\x92\xd0\x02\xb4\x51\xd1\x44\x0b\xed\xca\x81\x16\x6a\xcf\x68\x98\xe0\xda\x95\x84\xa6\x7c\x07\x0a\xae\x65\xb5\x30\x6c\xa6\xa0\x82\xda\x3f\x0a\x6a\x5c\x77\xa0\xe0\x5a\xb6\xca\x40\x46\x25\x22\xd5\x89\xf5\x1b\x49\x68\xc1\xf6\x8d\x86\x09\xb6\x9d\x89\x68\x00\xda\xa8\x28\xc4\x40\x4f\xfa\xdd\xee\x88\xd6\x97\x3c\x9f\xf8\x57\xc3\x71\xc0\xb1\xce\xca\xef\x1d\xff\x9f\xe3\xe3\x39\x04\x03\xe0\x07\x11\x12\x0b\xcc\xc9\xef\xd8\x7b\x98\xae\x22\xc4\x1b\xd5\xa5\x50\x1e\x18\xe5\xae\x8c\x5f\x7e\xe8\xc8\xcc\xd3\x97\x87\x05\x44\x98\x4b\xc4\xb0\xef\x27\x99\xaa\x0e\xc8\xcc\xbb\xd8\x2c\x27\x2c\x0e\x88\x34\x09\xc0\x7a\x24\xf1\xf7\x39\x05\xf3\x35\x9a\x76\xaf\xc6\x10\x85\x87\x43\x28\xc2\xc3\x13\xc8\x43\xe3\x14\x38\x90\x7c\xa3\x53\x85\xa9\x32\x0c\xc6\x21\xbe\x2a\xd4\x3f\xf6\xfc\x57\x87\x1e\x0a\x3d\x16\xc6\x26\x10\xdd\xf7\x83\x88\x51\xec\xf7\xfb\x1e\x0d\x56\x6b\xb1\xf0\x58\x92\xdc\xf9\x50\xde\xdf\x53\x1b\xd3\x79\x18\x86\xd2\x7f\xa5\x9a\xf4\x5f\x6d\xcd\x6d\xfc\xd8\xbf\x13\xaa\x0b\x3c\xc4\xdb\x19\xa1\x28\x8e\x37\x77\xaa\x03\x87\xa8\xdf\x8f\x03\xd3\xf7\xec\x97\xe7\xa7\x85\xc8\xcc\x13\xbe\x39\x56\xc9\xb7\xdb\x64\xd4\xb6\x1a\xbd\x03\xf3\x9e\xe2\xdb\xde\xe5\x66\x85\xf5\x11\x4f\x0f\x58\x1f\x46\x0f\x49\xa5\x05\x4a\xa5\xfb\x46\x58\x48\xbe\x9e\xca\x35\xc7\x3d\xca\xe8\x40\x63\x38\x89\x71\x8f\x50\x21\x91\x4e\x37\xbd\xdd\x7a\x7e\x8b\x66\x28\x1b\x39\x30\x65\x96\x1d\x97\xe4\x0c\x6e\xbf\x66\xb2\x83\x6f\xd7\x5a\x13\x88\x96\xb9\x1c\xe1\xe9\x8e\xc2\x50\x41\xec\x19\xf5\x14\x8e\x9d\xeb\x9b\xb6\x51\x4c\xdf\x14\xb6\x1b\xc9\x14\xc8\x9e\xd1\x4c\x63\xd9\xb5\x42\xce\x56\x2d\x54\x2b\x5f\x38\x31\x20\xa2\xe3\x15\x26\x5d\xea\xd8\x2f\xea\x6a\x4c\xce\x15\x22\x17\x1a\x8f\xf7\xe2\xef\x86\x12\x1d\xdb\xa8\x81\x7f\xd0\x18\x98\x5f\xb8\xd2\x39\xba\xc3\x30\xa4\xd5\xec\xfb\x48\x5c\xa4\xf4\x78\xf0\x60\x24\x55\xec\x3e\x1e\x92\xaf\x71\xb2\x78\x91\xd9\x60\xc5\xb1\x28\x9d\xce\xdf\x6d\x68\x6a\x6a\xdc\xef\x51\xba\xe4\x6b\x6c\x52\x7d\xbc\x9f\x9d\x27\x34\x7a\xe0\x70\x55\xd4\xd5\x36\x6e\xbf\x75\xdf\x78\xd1\x99\x21\xf7\x8d\xda\xba\xcf\x9d\xe9\xa9\x4a\xb7\x50\xcc\x9c\xc7\x29\x5c\x4d\xda\x61\xe1\xcc\xe0\xf6\x8b\x82\xa6\xdf\xdf\x75\xf7\xa1\x24\x00\x9d\xe8\xf8\x20\x22\xee\x25\x05\x77\xa4\xdf\xb6\xfa\x18\x47\x46\x08\x1a\x3d\x84\x07\x0d\xd4\xbe\xd1\x8f\x46\x3b\xf1\x9f\x2a\xde\xc6\x7d\xb1\x32\xf3\xe8\xae\xf4\xb3\x50\x7b\x46\xbf\x04\xd7\xae\x04\x34\xe5\xdb\x28\xc8\xf8\x12\xc9\xc1\x64\x23\x71\x67\xe7\x89\xc9\x4b\x9e\xfa\x4e\x0e\xe4\xfd\xbd\x27\xc3\xa1\x7f\x90\xf8\x13\x44\x38\x7c\x25\xff\x16\x9e\x0c\x9f\xbd\xe8\xf7\xc5\x5f\x91\x75\x0c\x0c\x4e\x5e\xf9\xf2\x58\xbf\x86\xe2\xe8\xe8\xc0\xbd\x42\x7e\x16\x33\xa6\x6c\xec\x23\xd0\x03\x47\xe8\x4a\x8c\x1f\xe2\x72\x31\xc8\x7c\xa7\x70\xf9\xd3\xeb\xb2\x27\x5e\x17\x88\xc2\x2b\xf0\x9d\x61\x3f\xf0\x9f\xe4\x3b\x00\xc1\x8f\xe4\x3b\x30\xfe\x2c\x6f\x8c\xe5\xea\x68\xcd\xdb\x73\xd0\x15\xcb\x7e\xae\x54\xf8\x93\xef\xf6\x82\xef\x5a\xf8\xcb\x21\x6d\x9a\x2c\x37\x95\x78\x90\x87\x28\x58\x53\x22\x93\x8b\x19\xf2\x69\xfa\x04\xe4\x35\x21\xa9\x05\xfe\x5c\x61\x3e\xc5\x54\x16\xae\x06\x6d\x17\xbd\xc9\xfe\x7e\x72\x8a\xfe\x6f\x27\xfd\x7e\x92\x5e\x24\xfb\x78\x75\x32\x3e\x75\x1f\x46\x77\x5b\x88\x14\x12\x57\xc3\xb1\x4e\x69\xa2\xb7\x28\xcc\x5d\x48\x29\xa7\x40\x16\xca\x40\x32\x89\xe2\x44\x3c\xb3\x30\xad\x9a\x9d\x52\x8f\xf9\xa3\xf4\x59\x9c\xa2\x23\xea\x09\x7f\x84\xe0\xf0\xaf\x1e\x0f\xd9\x29\x3a\x66\xa3\xa1\xdf\xef\xf3\xbf\x06\xc3\x93\x53\xf0\xd7\xde\xc9\xbf\x82\x91\x16\xf0\x9c\xad\x69\xe4\x9d\x0c\x87\xff\xc6\xfd\x23\xf0\xaf\x60\x9b\x8f\x7f\xb0\x8d\x11\xf1\x01\x7d\xf0\xb0\x7f\x3a\x1c\x1d\xe1\x87\x2f\x01\xe7\x29\x61\x43\x59\x8a\x0b\xdd\x45\x90\x98\x4b\xcc\x76\xd6\xd0\x52\xb0\xfd\x52\x31\x74\xb7\x77\xd0\xd1\x6c\xf9\x16\x15\x63\x5e\xe9\x2d\xa8\x36\x4e\xe7\xfb\xe6\x07\x98\x77\xaf\x6e\xde\x66\xc5\xcf\xab\x77\x52\xeb\x28\xb5\x6f\x5b\x06\xf3\x1d\x36\x4f\xe7\xad\x1b\xa7\x0b\x24\x06\x6a\x9d\xda\x71\x66\xa6\x60\xfb\x45\xbb\x05\x12\x1f\x34\xb2\x1d\xeb\xb4\xe5\x3b\xd0\x70\xc5\xf1\x0d\x61\xeb\x5d\x37\xa0\x73\xa0\x7b\x47\xcb\xf3\x14\xe9\xee\xf4\x4c\x60\xda\x68\x2a\x97\xf1\x40\xa0\xd9\xae\x1b\x81\x19\xdc\x9e\x51\x53\x2e\xe3\x0b\x8d\x6e\x57\x52\x5a\x80\x36\x3a\xae\x97\x88\xee\xbe\x9f\x9a\x82\xed\x19\x15\x53\x6c\xbb\x52\xd1\x02\xb4\x50\x91\xd0\x5d\x37\x53\x15\xc4\x7e\xd1\x4e\xe3\xd8\xb1\x3e\x42\xdb\x36\x53\x09\x8d\x09\xc5\x03\x71\x53\x79\x37\x6c\xf6\xb5\x12\x20\xab\x4e\xdc\xcc\xcb\x87\xee\x1f\x68\x4c\xa2\x3f\x8d\xc9\x27\x6e\x4c\x42\x91\xd0\x46\xe4\x8c\x8c\x7e\xbf\xc2\xe4\x38\x6d\xb1\x37\x85\xa1\x3e\x0f\x51\xea\x61\x73\xac\x4c\xc3\x6e\x17\x37\x73\xdf\xcb\x12\x2c\x70\x28\xb2\x44\xe3\xe6\x8e\xda\x09\xe2\x22\x58\xa2\x6b\xfc\x9d\x32\xbc\xfe\x51\x65\xd5\xb6\xd5\x8a\x21\x52\x0b\xdf\xe2\xfe\xfe\xce\x5e\xcd\x97\x18\x52\xa2\x79\x06\x49\xcc\x05\xde\x39\xb0\x32\x83\xdb\x37\xf9\x93\xe2\xdb\x59\x0a\x59\x88\x56\x59\x74\xc3\xae\x77\x8d\xae\xb4\x40\xfb\x46\x43\x83\x69\x67\x02\xaa\xe2\x6d\xd4\x13\x03\x7d\x41\x65\x15\xfd\x96\x6c\x89\xa9\x2c\x17\x7d\x8a\x54\x6b\xc3\xb1\xee\x28\x54\xb5\xdd\x98\x42\x3c\x45\x54\x1b\x18\xc4\x2c\x6c\xdd\x39\xc4\x94\x6f\x27\xdf\x04\xcf\x18\xaf\x9c\x63\x65\x1e\xb1\x65\x9f\x22\xe5\x5a\xb1\x94\xb7\xb8\x7a\xa3\xac\x0a\x4d\x53\x78\x0f\xf1\xb4\x81\x02\x3b\x4c\x86\x7d\x0c\x87\x20\xe2\xed\x4e\x01\x11\xb6\x7c\x3b\xf9\x98\x6e\x71\x47\x67\x74\x41\x4b\x39\xcc\x6b\xa2\xd2\xef\xf7\xe9\x3a\x8e\x95\x6a\xd7\xef\x03\xdb\x42\x18\x86\x36\x55\x76\x18\x86\xf2\x14\xac\xa9\xe9\x56\x04\x46\xd4\x93\xfe\x83\x02\xae\x89\x30\x40\xe9\xd6\x5f\xc5\xf1\x39\xa3\xa8\xf6\xfb\x40\xe8\x1f\xc5\x0f\xa9\x06\x7b\xea\x62\x9d\xd0\xd1\x94\xc4\xdb\x51\xc5\x47\x5c\x79\x5a\x2f\x69\x0e\x07\x53\x46\x8d\x26\xc9\x78\x18\x86\xe9\xfb\xc3\xe4\x77\xb0\xe2\x4c\x32\x05\x76\x9a\xf4\x6d\x94\x36\x08\xff\xb4\x00\x9e\xba\x05\xf0\x59\xdb\x95\x44\x0c\x04\x5a\xe2\x01\xe3\xbb\x68\x2c\x79\x90\xa7\x28\xc1\x3a\xe2\xbc\xcb\x12\x5c\x80\xd9\x53\xac\xbb\xe3\xba\x77\x18\xfe\xca\xc8\xae\xf1\x38\x1a\xe4\x29\xe2\x59\x5f\xa7\xc1\xb2\x63\x85\xaa\x70\x0b\xd5\x9c\x5b\x7c\x77\x0e\xc2\x79\xe6\x43\x14\xca\xab\xe1\x18\x8a\x50\x5e\x9d\x8c\x0f\x8c\x00\xfa\x17\x4f\x04\x12\xf1\x39\x96\x7e\x40\x84\x07\x10\xf0\xef\xef\x91\x27\x1e\xb4\xb6\xa6\xb7\xc3\xfe\x19\x57\xf3\xdf\x61\x41\x8a\xd9\x2d\xe6\x53\x24\x76\xf5\xbe\x67\x70\xfb\x35\x9d\x1d\x7c\x3b\xd6\x9a\x42\xb4\x4d\xec\x1d\x36\xbf\xe3\x7d\xf3\x7c\xed\x50\x5d\xeb\xba\x11\xef\xb2\xf9\x1d\xef\xdd\xe6\x77\xbc\xc3\xe6\x77\x6c\x37\xbf\xeb\xe3\x86\x97\xe8\x01\x41\x29\x16\x68\xbf\xe8\xb6\x44\xbb\x04\xa4\xe8\xd2\x2d\x8c\xb6\x44\xbb\x1e\x96\x53\x10\x7b\x47\xb5\x5d\x68\xd6\x46\x31\xad\x99\x0e\x50\x54\x79\x22\xab\xa0\xb7\x3a\x85\x9f\x22\xcd\x3a\xe0\x39\x45\x31\xa6\x11\xea\x62\x85\x15\x21\xf6\x14\xe3\x88\xcc\x66\xdd\xb1\xd5\xa5\xf7\x15\xd3\xca\x88\xe0\x46\x6c\x1f\x2b\x2e\xf8\x1b\x61\x6c\x02\x22\xbb\xe3\x6b\xcb\xef\x2b\xb6\x9c\x2d\x07\x94\xdd\xee\x80\x6f\x02\xb1\xc7\x18\xef\x86\xed\xbe\x62\x2a\xd6\x13\xc9\x6b\xf2\xf5\x54\x63\x9b\x42\xec\x29\xc6\x92\x0d\x22\x54\xad\x17\x57\x23\x9c\x00\xec\x2f\xbe\x3b\xcd\x5d\x5b\x7e\x6f\xb1\xdd\x05\xd3\x7d\xc5\x72\x4d\xc9\xa7\x0e\x78\xea\x62\x4f\x11\xc5\xfa\x3a\x0d\x66\x1d\x2b\x54\x85\x3b\x11\xac\x33\x4f\x3c\x49\x6a\x35\xe1\xf7\x80\x68\xed\x3d\x8c\xd4\xa6\xbb\x84\x69\xd3\xf6\x18\x6d\xca\xe4\x60\x97\xe3\xfd\xa6\xfc\xfe\xed\x69\x53\x26\xdf\xfe\xd6\x9d\x70\xaa\x74\x3b\xe5\x76\x22\xdb\xfe\x11\x6c\x17\x72\xb5\x12\xab\xcb\xba\xbb\x8f\xab\xad\x89\x38\x18\x54\xdb\x40\x0d\xb2\x27\x83\x7b\x8a\x18\xd7\xd7\x69\xfa\xfd\xba\x7b\xa5\x09\x40\x1b\x1d\x57\x0a\xb0\x3a\xba\xa6\x89\x8c\x09\xd8\x9e\x51\x31\xc5\xb6\x2b\x15\x2d\x40\x1b\x15\x2b\xdd\x4a\xd5\x32\x89\x3d\x4d\x87\x52\x03\xd1\xba\xa7\xc7\x60\xbc\x85\x50\x2b\xcc\x67\x8c\x57\x9a\xb6\x3b\xa7\xd7\x86\x34\x17\xec\x5c\x95\xab\x3a\x6d\x2e\xfb\xa5\xc0\x1e\xb2\x57\x6a\x2b\x48\xb2\x54\xb7\x9c\x3f\x6d\x4e\x38\xbd\x22\x2b\x3c\x30\xf7\x7c\xec\x38\xef\x5c\xc8\xa7\xc8\x45\x6d\x58\x3f\x00\xdd\x27\x89\x67\x7d\x9d\x06\xcb\x8e\x15\xaa\xc2\x6d\x54\x8b\xd7\x1c\x15\x73\x93\xef\x18\x42\x90\x1c\xfa\x3e\x09\x43\x1d\x4b\x70\x8a\x46\x28\x48\x2b\x7e\x58\x22\xd4\x14\xfc\xcf\xd8\x81\xff\x0e\xb1\x03\x0f\x3c\x50\xba\xa7\x87\x49\x57\xbb\x9e\x24\x5d\x75\x3b\x46\xfa\xdb\x1a\xaf\x77\x95\x81\x06\x66\xbf\xe8\x67\xf1\xec\x58\xa3\x2e\xdd\x42\x39\x8e\xe8\x7c\x57\xca\x19\x98\xfd\xa2\x9c\xc5\xb3\x63\x8d\xba\x74\x1b\xe5\x70\xb4\x9e\xee\x4c\x3a\x03\xb4\x67\xb4\xb3\x98\x76\x25\x9e\x2e\xde\x12\x93\xc1\xb1\xb6\x17\x77\x0e\xcb\xc8\xe0\xf6\x8d\x86\xea\xc3\x0e\xc1\x19\x09\x40\x2b\x17\xae\xf0\xce\xc6\xba\x05\xda\x37\x0a\x1a\x4c\x3b\xd3\x4f\x15\x6f\xa5\xde\x0d\xe6\x35\x71\x7b\x4d\xe4\x33\x50\xfb\x46\x3f\x8b\x6b\x67\x02\xea\xf2\x2d\x14\x14\x8b\xf5\x6c\x16\xef\x4a\xc1\x04\x6a\xbf\x28\x98\xe2\xda\xb1\x4e\x5b\xbe\x8d\x82\x84\xce\xd7\x31\xaa\xcb\x86\x4f\xe8\x2c\xc6\x53\xc9\xf8\x71\x4c\x26\x95\x40\x8f\x78\x39\x71\x46\x87\xa6\x0e\xc7\x64\xe7\x75\xcf\xc0\xec\xd9\x70\x1b\x3c\xbb\x0e\xb6\x2a\xdd\x36\xd4\x8c\x3f\x60\xc9\x4b\xa0\xf6\x8c\x7a\xfa\x86\xdc\xee\xe4\xd3\xc5\x5b\xe8\x27\xd1\xce\xe7\xbb\x35\xc8\x7e\x51\xce\x60\xd9\xb1\x42\x55\xb8\x95\x6a\xa2\xe1\x9c\xc4\x67\x48\x8b\xe6\xcc\x0c\x89\xc7\xc4\x7d\x63\xbb\x5d\x74\x57\x9c\xe2\x91\x79\x35\xe3\x6c\xe9\x61\x7f\xeb\x61\x1f\x52\x73\x4a\x03\x85\x76\x6e\x79\x27\x7e\x7a\xd9\x5f\xf0\xcb\x74\xcd\xf9\x26\x40\xab\x55\xbc\xf1\x68\x0e\xa1\x2a\x77\x48\xea\xb1\x90\xe1\x10\xd2\xd0\xbe\xb7\x7e\x07\xff\x95\xfc\x6b\xf2\xfb\x95\x3c\x3a\xf2\xe9\x95\x1c\x87\xf8\x4a\x66\x97\x0b\x6e\x73\x1d\x4f\x7b\x89\xfc\x96\xcc\x85\x92\xc8\x18\xef\x9e\x96\x27\x05\xdb\x33\xc6\x4d\xb1\xed\xca\xbc\x16\xa0\x8d\x81\xd9\x7c\x1e\x3f\xd0\xb1\x9b\x87\x7d\x8a\xf4\x6c\xc7\xfc\x41\x28\x3f\x49\x5c\x1b\x78\xc7\x62\xda\x95\x73\x74\xf1\x36\xea\xf1\x35\x9d\xd6\x44\x84\x35\xcd\xbe\x04\x6c\xcf\x28\x98\x62\xdb\x95\x86\x16\xa0\x85\x8a\x6b\x1a\x61\x2e\xa6\x35\x67\x4e\x1b\xe8\xe8\x00\xee\x17\x25\x5d\x8c\x3b\x07\x2c\x25\x20\xad\xd4\xdc\x5d\x86\x19\x98\x7d\xa3\xa1\xc6\xb3\x7b\xbc\x17\x6b\x3b\xf4\xf9\x67\x68\x5c\xd7\xd0\xb8\xf5\x6a\xf5\xa0\xf3\x88\x19\xdc\x9e\xd1\x2f\xc3\xb7\x2b\x11\x13\x88\x16\x4a\x56\x46\xf9\x34\x50\xf0\x69\xc6\xfb\xd4\xd7\x79\xdb\xb9\xb6\xdb\x36\x4a\x99\xab\xaf\x77\x94\x6c\x09\xd4\x9e\x51\x2d\xc1\xb5\x2b\xed\x4c\xf9\x16\x0a\x7e\x1a\x90\x69\xf5\xd2\xf0\xb9\x69\x14\xd3\x7d\x6c\xe4\xe6\x67\xc7\x26\x35\xfb\x15\x32\x17\x00\x43\x60\x9a\xd7\x7f\x06\x44\x0c\xc0\x91\x18\x27\x17\xdb\x7a\xbe\x3e\x96\xef\x81\x1e\xf0\x5b\xd3\xeb\x09\x78\xa7\x6b\x1c\xf1\xed\x83\x76\xc0\x3f\xbd\x9f\x32\x1a\xa2\x16\x43\x13\x35\x13\x73\x97\xc8\xa1\x4f\x7b\x17\x3a\xf4\x69\x87\xd8\xa1\x4f\xb5\xc1\x43\x84\x12\x49\x74\xac\x01\x17\xc7\x68\xb5\x1a\x60\x7a\xd3\x29\x1a\xc2\xb0\x10\xce\x25\xcf\xbf\xbf\xcf\x9e\x86\xe3\x03\x1c\x10\xaa\x63\x0c\xf4\x2d\xb6\x9c\xc5\x31\xe6\x40\x5f\x69\x3b\x23\x8a\x67\x05\xe6\x37\x64\x8a\x47\xf6\x85\xce\x48\x94\x02\x2c\x57\x8c\xea\xe0\xee\xfa\xf2\x0f\x4a\x79\x94\xe2\x9b\xcb\x73\x7f\x47\xd1\x12\x8f\x80\x22\x40\xd2\x5c\x56\x72\xa4\x07\xa2\x9d\x74\x92\x5d\xe7\x13\x86\x7d\x01\xe2\xd9\x36\x52\x5a\x98\xe7\x3a\xd2\xd5\x94\xfe\x32\x84\xb3\x8d\xed\x46\x37\x7b\x5d\x31\xe6\x83\x08\x4f\xd6\xf3\x01\x8a\xd0\xaa\x26\x9f\x0f\xc7\x82\xc5\x37\x98\x1f\x27\x3f\x92\xeb\xd9\xa7\xb5\xb5\x3c\xa2\x5b\xdc\x22\x5a\xdb\x5f\x07\x6d\x67\x06\x76\x18\x66\x8e\xe7\x44\x48\xcc\xbd\xba\xba\x47\x4b\x44\x28\x70\xae\xcb\x80\x79\xde\xa8\x07\x01\xaa\xcf\x62\x85\xa6\x18\x40\x35\x44\x31\x99\xea\x93\x99\xe6\xb3\xbf\x6d\x1f\x9e\x08\x49\x54\x35\x26\x8f\xe6\x3f\xb4\x64\xcd\xb7\x63\x52\x15\x8d\x80\x90\xda\xfe\xaa\x26\x6d\x87\xde\x67\xba\xda\x92\xf0\xc6\x3b\x43\x3e\x1f\x83\x72\x5b\x9f\xdb\xed\x2c\x66\xb3\x25\xa4\xf3\x4b\xe1\xe2\x76\xe0\x33\x91\x51\xe3\x5b\x85\x85\x7a\x7f\x2c\xb0\x5c\x6b\xb9\x6b\x58\x39\xf7\xf1\x0b\x4c\x61\xb7\x47\xae\xb0\x72\x57\xdd\x16\x9c\x34\x16\x03\x67\x46\x0d\xe6\x31\x9b\x14\x23\xbd\x53\x60\xb3\xa4\x1c\x63\x7a\x43\x38\xa3\x95\x47\x91\x9c\xe0\xdb\x0e\x52\x83\xcc\xbc\xc3\x93\xc3\x30\xdb\xab\x0b\x4c\xab\xaf\xb3\x1e\xfd\x5d\x77\xc8\xc6\xf1\x29\x00\x27\x63\xe0\x61\x92\x6d\xef\x96\xd0\x88\xdd\xfa\x34\x34\x3f\x0e\x70\x2c\x70\xaf\xa6\xac\xc1\xd0\xa7\xa1\xf9\xa1\xcb\xde\xe5\xcb\xa6\x59\xfc\x04\x8e\x67\x36\xac\xf0\x80\x86\xea\x69\xab\xd3\x72\xeb\x3b\x74\x5a\xba\x7c\x80\x42\x60\x4c\x2b\xa7\xbe\x53\x61\x53\x35\x9b\x5b\x3e\x8d\xba\x4a\x66\x1b\x2f\xab\x6e\xa9\xc7\xfe\x9c\xe3\x19\xf9\xe4\x43\x7a\x85\xc6\xf7\xf7\x9e\xfa\x13\x62\xa8\xa4\x2c\x5b\x61\xea\xdd\xdd\x92\x38\x3e\xc3\x42\x72\xb6\x71\x19\x59\x2e\x88\x08\x7e\x11\x6b\xa5\x5c\x9a\x0d\x05\xf5\x06\xa6\x44\x57\x1c\x11\x63\x89\x7b\xaa\xc2\xed\xd6\xf7\xb7\x9f\xb9\x86\xd2\x0a\xbe\xac\xe7\x2a\x87\x4d\x69\x3b\x7b\xce\x38\x9a\x9b\xd3\xbc\x98\xdb\x97\x35\x8c\x99\x15\xc8\xa0\x1a\xe3\xc2\xfd\x3b\x77\xc1\xca\xc0\x47\x83\x14\xdc\x59\xa8\x1e\x9f\x46\x95\xa8\x15\xa8\x53\x0e\x38\xca\x51\xc7\x2c\x9d\x17\xb2\xe0\xcc\x7c\x6c\x19\x9a\x6b\xe6\xb1\x16\xb4\x25\x8b\x70\x9c\x92\xba\x32\x60\x54\xaf\xa4\x85\x72\xc7\x92\x23\x2a\x66\x8c\x2f\x9d\x61\xde\x15\x20\x49\x9b\xdc\x11\xac\xbd\x74\xc9\x4a\x55\x76\xe9\xe7\x13\x3e\xa9\xff\x32\xe9\x4b\x46\xfe\x1a\xc9\xef\x0e\xbc\xcb\xde\x29\x36\xa3\x2a\xe6\x86\xcd\x45\x13\x72\xd1\x36\x00\x5b\x0e\x65\xb3\xa6\x9d\x0f\xc4\x97\xe6\x5e\xdb\x80\x4e\x94\xd9\x4e\xb7\x4e\xbc\x9b\xf1\xc6\x97\xec\xb8\xdb\xca\x67\xcd\x3a\x13\xdd\x3d\xd8\x55\x97\xc9\xca\x0f\x74\xb3\x03\x6b\x7a\x3d\x15\x3d\x66\x49\x3e\x11\x2a\x8e\x05\x46\x7c\xba\x40\x93\xe2\xc6\x22\x5d\x2d\x47\xb3\xb5\xc0\xc1\xaf\xcd\xe7\x83\xbe\xe6\x16\xfb\x67\x47\x27\xfc\xa8\x70\x0e\xa6\x1c\x23\x89\xbd\x3b\x83\xfa\x25\xe6\xcb\x11\x00\x30\x26\x42\x5e\xb2\x0b\xfd\xce\xaa\x18\xca\x80\x5e\x4b\x1c\x79\x25\x4f\xca\xd5\x78\xeb\x43\x03\xaf\xfa\x21\x46\x74\x1d\xc7\x10\x7f\x42\x53\xf9\x23\x92\xd3\xc5\x85\xf3\x29\x5f\x57\xc0\x31\x8a\x84\x5a\x31\xd3\x12\xc0\x87\x1c\xcf\xf1\xa7\x5d\x81\x66\xeb\xdf\x7f\xdf\xec\x0a\x94\xf5\xf1\x2d\x55\xa3\x1e\x8d\x0e\x87\x6e\x4d\xe9\xdb\x13\xd3\xa9\x5c\x29\x81\x8b\x94\x01\x2e\xd9\x82\xab\x31\x80\xa0\xd8\x2d\xfd\xb6\xec\x8b\xa2\xf8\x36\xf3\x6f\x69\x25\x2b\x98\x63\x99\xaf\x10\xf8\xf0\x4e\x2c\xd8\x3a\x8e\x2e\x18\x97\xaa\x0f\x72\xc1\xb1\x58\xb0\x38\x1a\x05\x2f\x60\xcc\xac\x15\x3b\x84\x11\x31\xd3\x74\x74\x32\x1c\x42\xed\x7f\x50\x33\xe0\x70\x08\x97\x0a\xd5\xd7\x71\x7c\xa9\xde\x09\xf3\xe6\xd3\x39\x92\x12\x73\xfa\x83\x66\xc1\xd1\xf3\x67\x70\x49\xa8\xa6\xc9\x9b\x05\xe2\xf6\xed\x09\xbc\xc6\x1b\x31\xca\x3a\x56\xc4\x0b\xf8\xf7\xf7\x57\x63\x38\xc7\xf2\x1d\x1d\xe5\x27\x88\x45\xd1\xd0\x4a\x01\xab\xb7\xc6\xef\xa6\xd0\x33\x95\xe0\xa8\x44\xcc\x8c\x23\x01\xac\xa0\x6c\x69\xec\xf2\xd4\xce\x5e\xba\x23\x97\x83\x2b\x0e\x4b\xf5\x60\x81\x22\x3b\x16\x87\xd0\x98\x25\x19\x69\x9c\x7e\xfb\x81\xe4\x64\xe9\xf9\xda\x32\xc1\xf7\xf7\x87\xe9\xac\x4f\x7c\x90\x35\x23\x7d\x60\xc4\xc5\x55\x2a\x04\xb2\x82\x65\xbc\xfd\x7e\x5f\xea\xc3\x43\x89\x8e\x0e\xa9\x57\x74\x74\x93\x99\x57\x6a\xdb\x5e\x2d\x9e\x95\xcd\x06\x8b\x06\x82\x2d\x71\xf6\x85\x56\x0c\xa3\xaa\x37\x0c\x43\xac\x46\x52\x1f\x1f\xaa\xe3\xda\xaa\xbe\xe7\x58\xc7\xf7\xdd\x42\x15\x83\x58\x85\xa1\x0b\x20\x30\xf0\x03\x43\x77\x25\x70\xdd\xda\x72\xa3\xbf\x2b\xa5\xf4\x89\x2a\x73\x73\x92\x9a\xa1\x1f\xf1\xfc\xed\xa7\x95\x92\xb1\x24\x75\xf6\x57\x90\x11\xd7\x92\x31\x23\x30\x0a\x24\x16\xd2\xcb\x4f\x0a\x1d\x32\x95\x9d\xef\xda\xa6\xe2\xb5\x23\x79\x8b\x9c\x6a\x29\x1b\xac\x29\xf9\xcd\x33\x95\x37\xac\x7d\x8c\xcb\xe2\xca\xf7\xc8\xf1\x70\x85\x15\x87\x71\x99\xd4\x62\x96\x0c\xf5\xe6\x0c\x8b\x29\xa6\x11\xa1\x73\x25\x9e\x2c\xaa\x4a\xde\x75\x5a\x85\xb4\x40\x61\x5c\x56\x88\x93\xac\x2a\x33\xad\xdd\xe6\xed\x63\xd6\x76\xe3\x04\xcf\x6a\x02\xbe\xb3\x0d\x64\xe2\x34\x1d\xbe\xcc\xb5\xe0\xfb\xe5\xa9\x5c\x68\xd3\x3f\xc5\x49\x68\xb9\xe7\x8f\x70\xcb\x78\x19\xdf\xc4\x80\x63\x41\x7e\xff\xaa\xe3\x66\x1a\xfe\xa8\xda\xc5\xe6\x8a\x28\x9e\xd3\x1c\xa1\x76\x5c\xfd\x97\x53\xaa\xec\xfa\x55\x34\xb0\xe9\xa5\xf9\x9a\x06\x42\x2d\x00\xeb\x18\xff\x44\xa7\xd8\x03\x5a\xbd\xfe\x88\x69\xa4\xac\x58\xed\x70\x70\xe0\x71\x20\x14\xe9\x7e\xa9\xe8\x05\x80\xd8\xd0\xb5\xea\x9b\x1f\x4c\x08\x8d\x94\x74\x80\x49\x5a\x6b\xeb\xe6\x09\x18\x55\x53\x47\xe8\xf0\x3c\x5b\x43\x65\xf5\x7a\x7e\xea\xd2\x11\x89\xde\x53\x81\xb9\x7c\x6b\x6e\x3d\xd6\x4a\xcb\x92\xdd\xe0\x3a\xac\x4b\x4d\xce\x66\x59\x9b\x19\x43\xd4\x35\xab\x1b\x75\x7c\x34\x69\xb3\x2d\x1c\x22\x17\x83\x74\xdf\x63\x70\x43\x04\x99\x90\x98\xc8\xcd\x20\xc2\x12\x97\x42\x06\xbf\x28\xd3\x64\x8d\xd7\xb3\xcc\x19\x9b\x6a\xb7\xd2\x3f\xd3\xb2\x65\x12\x2a\xa9\x49\xe8\xfc\xfe\xde\xcc\x33\xc3\x0b\xa5\xca\x5d\x9a\x96\x3f\x5a\x56\x50\x45\x7c\x1f\x46\xb6\xd5\x00\x45\xd1\xdb\x1b\x4c\xe5\x0f\xca\x16\xa5\xca\x1a\xcd\x40\xa7\x0b\x73\x48\xce\x19\xaa\x8a\x7a\x93\x91\x52\x66\x47\xca\x12\x3b\x61\x95\x76\xc6\xc0\x7e\x6e\x7f\x4a\x8c\xd3\x85\x63\x66\x8c\x4f\x48\x14\x61\x3a\x10\xb2\x10\x22\xf8\x65\xd7\x03\xc5\x03\x6f\xd2\x5d\xbd\x9c\xff\x21\xc3\x93\x88\x77\x49\xff\xd4\x72\xee\xb0\x81\xfb\x05\x9a\x23\xd9\xaa\xc9\xf2\xb7\xc3\x61\xa2\x21\x34\xb9\x36\xb7\x90\x63\x81\x65\x4d\x87\x2a\xeb\x3d\xe9\x52\x6d\xfb\x00\x18\x87\x10\xe6\x9c\xf1\xc1\x42\x8d\xa5\x5e\x90\x2a\x3d\x95\x6b\x49\x62\x9d\x73\x88\xcc\x36\x06\xe2\x31\x2d\xea\xaa\x51\xd2\x9d\xab\xda\x4d\x6f\x43\x3c\x30\x7a\x4d\xfe\x86\x7b\x33\x07\x3b\xd0\x24\xdd\xb2\x1b\xe8\x51\x91\x05\x92\x7c\x59\xc6\xdc\x08\x89\x97\x56\xa1\x30\x0e\xcc\xc0\xfa\x2f\x3c\x1f\xfe\xca\x26\xc2\x61\x92\x5c\xa9\x6c\x8f\xda\x03\xaa\x1c\xf0\xa1\x09\xb7\x16\xa3\xbb\x39\x93\xec\x7b\x36\x11\x65\x3e\xd7\x9c\x65\x1a\x0d\x54\xf1\x1b\xfc\x21\xdb\xb0\xcc\x66\x42\xbe\xe1\xe0\x57\x36\xc9\x8a\x25\x0c\x2e\xda\x0a\x26\x0b\x1e\x89\x52\x18\xed\x2b\x22\xaa\x47\x97\xec\x23\x5b\x4b\x9c\xf4\x7d\xdb\x61\x9c\xb8\x02\xf8\x73\xa9\xf9\x6a\x4b\x8d\xe6\x0f\x25\xa5\x9f\xce\x72\x13\xe1\xac\x53\xed\x0c\x73\xab\xa4\x02\xe6\xa2\x46\xc0\x75\xe4\xad\x2f\x2b\xf4\x52\x81\x05\xef\x92\xee\x76\x33\x47\xa6\x88\x4e\x71\xfc\x3a\x8e\xff\x2b\x01\x2b\x6e\xae\x19\x7d\x35\xa1\x81\x1f\xcc\x18\x7f\x8b\xa6\x0b\x2f\xbf\xd6\xa4\xf5\x68\x2b\x0e\x0a\x89\xb8\xac\xaa\xd2\x72\x77\xd5\x9a\x95\x17\xd4\xb9\x1a\x6a\xb6\xf6\x3a\xac\x90\x8d\x53\x2d\x65\xae\x85\x5e\x1f\x4f\x75\x7d\x25\x8a\x78\xfe\xa8\xdc\x23\x33\xe3\x32\xe9\x09\x0b\xcf\x86\x6c\x7a\x29\x52\x6c\x97\x09\x55\xa5\xea\x5c\xa6\xf2\xab\x44\xed\x8a\xd6\x6b\x85\x9a\xaa\x5c\x1c\xa3\x79\x4d\x2a\x4d\xed\xd6\x36\x3d\xc8\xbd\x42\x52\x16\xd7\xe0\x87\xdc\xd7\x5c\x75\xf2\x34\xc0\x9f\x24\xa6\x51\xdb\x82\xa4\xdd\xe0\xde\xd0\xd9\x62\xf1\x92\x9d\x63\x1f\xa2\x28\xe2\x58\x88\xda\xef\x02\xf3\xd9\xb9\x32\xb7\xeb\x0a\xf0\xd5\xb4\xf1\xbb\x44\xf3\x62\xed\x77\xf6\xd7\x3f\x35\x76\x25\x8e\x34\x7b\x0d\x4a\xd7\x5c\xd7\xf7\x4b\xd1\x76\x8a\xa9\xc4\xbc\xbe\x67\x78\xae\xc6\xbc\xa1\xe3\xaf\xa3\x88\x97\xfc\x02\x96\x22\x00\x02\x35\xc0\x0d\x86\xbf\x1d\x35\x82\x85\x0b\x64\xe9\xa1\x30\x0f\x71\x60\xdf\x43\x1a\xe2\xc0\x7e\x49\xcd\xfe\x7e\x9f\xf6\xfb\xf2\x08\x8c\xc0\x11\xdd\xfa\x90\x88\x1f\x30\x8a\x70\xb9\x43\x76\xe5\x8f\xf5\xd7\xc0\x76\xbb\xca\x69\xec\x38\x12\x2a\x41\xfc\x30\x74\xbc\x16\xe9\xdb\x5a\xbf\x82\xe5\xf8\x38\xf1\x24\xef\xcc\xf6\xb9\x37\x1c\xc7\xba\x16\xb1\x20\xab\x96\x7d\x58\x05\x4c\x26\x6b\x89\x93\xbd\x96\x98\x45\x48\x2c\xb2\xeb\x8d\x75\x67\x8a\x5a\xef\x2a\x1d\x8f\x63\xb1\x60\x5c\x0e\xd6\x6b\x12\x95\x8b\xe9\x98\x08\xec\xe2\xa5\xed\x9a\xaa\x7d\x56\x28\x20\x87\x0c\xc6\x0f\xbc\x5e\x9d\x84\x77\x2b\xeb\xba\x3a\x81\x7c\x4d\xa9\xfa\xf5\x0c\xaa\x91\x8d\xb1\xc4\xa3\xe7\x70\x86\x48\x8c\xa3\xd1\x0b\x18\x33\x21\x47\x2f\xb7\x07\x4d\xb3\x5c\x3b\xee\xeb\x26\xb9\xc6\xf8\x7d\xa4\xb8\x9d\x39\xdc\xae\xd4\x38\xa5\x91\xaa\xf7\x28\x98\xe0\x98\xd1\xb9\xb8\x64\xbe\x56\xe1\x80\x0f\x29\x8b\x70\xf9\x9b\x7a\x0b\x5a\x04\x87\x44\xe2\xfa\xef\x9c\xad\x57\x1f\x9a\x4a\x71\x2c\xd8\x9a\x4f\xb1\x9e\xc8\x22\x48\x86\xd8\xd7\xce\x0e\xf3\x05\xf8\x70\xc9\x22\x32\xdb\xbc\xa7\x11\xfe\x54\xac\x89\xae\x15\xbe\x69\x99\x4b\x52\x6e\x2c\x32\xea\xce\xaf\x6c\xf2\x4f\xcc\x45\xc5\x94\x4f\xeb\x60\x9c\xcc\x09\x45\xf1\xf7\x6c\x62\x48\x55\xd9\xe7\x69\x4c\x30\x95\x17\x2d\xf2\x07\x0b\xc2\x71\xd4\x52\xca\x08\x31\x83\x58\x71\x5a\xbb\xcd\x54\xcd\x66\x72\x95\xcd\xd5\x5c\x59\x7f\x7c\x7f\x7f\x32\x54\x6b\x42\x92\xf2\xe9\x75\xca\xca\xe5\xb1\x74\xa7\xef\x1d\xa1\xda\x9b\x38\xd2\xc9\x84\x33\x28\xb0\xf5\x61\xfe\x4d\xd7\x7a\xca\x3d\x50\x75\xcd\x58\x1c\xb3\xdb\x9f\x57\x6f\xd5\x84\xa8\xa9\x0f\xa7\xdf\x52\x3a\xbd\xd1\xa1\xf0\x3b\xd2\x29\x9d\x62\x80\x88\xc1\x2a\xf1\xd6\x26\xb3\x4d\xbf\xe4\x64\x89\xf8\x06\x64\x13\x4f\xbd\x4d\x1e\x40\x32\x09\xd5\x4b\x63\x31\x9b\xd9\xa8\x9e\x63\x32\x5f\x48\xb0\x6d\x1a\x09\x55\x2c\x42\xfc\x5a\xe1\x9d\xce\x89\x12\x12\xb9\xd9\x02\xa0\x9a\x7d\x41\xfa\xae\x75\x07\x29\x5f\x3a\xdb\x6a\xc0\xfd\x3e\x0e\x66\x84\x46\xdf\x6d\x3c\x1d\xc4\xea\x6a\xe4\xf9\x26\x7d\x25\xe2\xd7\x74\x81\x51\x2c\x17\x9b\x33\x4e\x6e\x2a\x94\xd6\x0c\x26\x88\x4c\x09\xe3\x1a\x57\xf2\x20\x28\x00\x6b\x93\xb1\xad\xe3\xa5\xfa\xf4\xb2\x98\x7d\xaf\xad\x38\x87\xa3\x3c\xf5\x86\x90\x67\xf3\x4b\x69\xf4\x23\xad\x4f\xcf\xb0\x9c\x2e\xd4\x60\x88\x1a\x97\x72\x69\x65\xb4\xa1\xdd\x01\x5a\xcb\x05\xe3\xe4\x77\x1c\x7d\xc4\xbf\xad\xb1\x90\x1e\x38\xbe\x39\x39\x36\xc3\xeb\xac\x0d\xc7\xe0\xc8\xf1\x35\x45\xc0\x3f\x02\xc7\x66\xb9\xf0\x03\xb9\xc0\xb4\x6a\x97\x07\x07\xbf\x0a\xd5\x91\x6d\xb1\x88\xcc\xed\xef\xc6\xe9\xfe\xee\x9d\xae\x71\x24\x61\xd6\xae\x75\xf7\xeb\x99\x51\x94\x9e\x7a\xdf\xdf\x37\xd4\xb5\x3e\x39\x2d\x69\xad\xd3\x5c\x5b\x6d\x35\x20\x59\xa9\x01\xbe\x31\x8e\xea\x05\x12\x1f\x8b\xb0\x45\xbe\x28\x56\x6e\xf7\xc3\x00\x2c\x0a\x92\x46\xad\xa4\xae\x16\xff\x6f\xc3\xfb\x7b\x87\x29\xf2\x55\x2a\xc6\x5d\x20\x71\x21\xd9\x6a\xa5\x46\xcb\xd6\xa1\x66\x77\xb1\x9b\xc5\xce\x14\x64\x07\x28\xcb\xa5\x8a\x0e\x1f\xd6\xf5\x44\xdb\x1b\x9a\x66\xfd\xbe\x53\xa8\x5c\xa9\x5b\x10\x18\xe9\x02\x72\xaa\x57\x5e\x88\xb4\xe8\x5f\x11\x5e\xc5\x6c\x53\x97\xc1\xff\x2b\xe8\x5f\x0f\xd2\xb2\xdc\x62\xeb\xe5\x00\xcd\xe7\x1c\xcf\xab\xee\x3b\xca\xf4\xac\xc7\x36\x8a\x32\x8d\x88\xef\xa0\x11\xdd\x18\x1d\xe2\x83\xd6\x19\x6a\x35\x09\x8e\x7f\x5b\x13\x8e\xc5\x39\x67\x4b\xa6\xe7\x6b\xad\x28\xbd\x58\x2f\x97\x88\x13\x2c\x82\xff\x85\xd1\x74\x11\xac\x34\x08\x8e\x2a\x58\x0f\xd8\x65\x2b\xcf\x2d\xc2\xf2\x49\xbf\x5f\x21\x58\xd3\xda\x95\x3c\x62\x26\x94\xc8\x2f\xec\x32\xbb\x92\xc9\x4e\xc4\x42\xef\x35\x4b\xdb\x8f\x69\xff\x0c\x5b\xb6\xd8\x61\xe6\xf3\x19\x16\x53\x4e\x56\xb2\xc9\xde\x2a\x77\xb9\x41\xaa\xcd\x55\xc1\x41\xc6\xfa\x03\xa1\x81\x36\xca\x62\x4d\x27\xa4\x30\x63\xb8\x40\xe2\x47\x44\x37\x39\x1d\x45\x64\x23\x59\x1a\x99\xdc\x08\xdb\xb5\xd8\xbe\x13\xc9\xd4\xb5\x63\x65\xc7\xbb\x3c\x52\x5e\x7e\x71\x4e\xc0\x4d\xd4\x8b\x9f\xad\xc9\x16\xde\x71\x09\xe6\x1a\xd7\xab\xb2\x7d\x75\xb1\x9e\x2c\x89\xd4\x0a\x6e\x21\x54\x09\xc5\x04\x89\x14\x34\x10\x69\x41\xe0\xc3\x55\x8c\xa6\x38\x7a\x83\x68\x4a\x51\x57\xfd\xaf\x60\x13\x08\xf2\x20\x99\x2e\xbb\x53\x25\x05\x98\xac\x96\x4b\x26\x51\xbc\x4b\x15\x1a\x20\xc5\x44\x8b\xdb\x5d\xf0\x30\x00\x6a\x1d\x33\x4a\xc4\x0e\x15\xe4\x20\x80\xa3\x1e\xed\x50\x47\x01\xa6\x45\x97\x15\xb5\x5a\xac\xab\xb0\x26\x52\x00\x8a\xf5\x74\x8a\x85\x98\xad\xe3\xbc\x22\xbb\x42\x6b\x61\x35\x56\xa3\xa1\x56\xe8\xb0\xc6\xb5\x95\xbc\x4c\x9f\x72\xca\xac\xa8\x54\x63\x9b\x57\x23\x8e\x88\x32\x98\x39\x92\x78\x5e\x79\xe2\xa6\x7a\xf9\x29\xad\x31\x35\x71\xf4\x9f\xe9\x1b\xa3\xa5\x65\x20\xc2\x28\x8a\x09\xd5\x56\xa3\xac\x12\xe5\x33\xc6\xa7\xf8\xac\xa6\x94\xb5\x2d\xc9\x9c\x32\x8e\x2f\xb4\x57\x45\xef\xd1\x14\x8a\x4d\x18\x8b\x31\x52\x96\x8c\xde\x00\x9c\x96\xc2\x4d\x82\x58\x6a\x47\xb8\x6e\x04\xc0\xa1\x56\x69\x3e\xb0\xb4\xd9\x42\x69\x7d\xcf\x4a\x1e\xa0\x71\x54\x1c\x63\xea\xe9\xea\x08\xd5\xeb\xfe\x57\x5c\xf5\x57\x9c\x30\x4e\xe4\xa6\x76\x55\x97\x9b\x55\x83\xc3\x83\x93\xf9\x1c\x73\x1c\x7d\x57\xaa\xa0\xb0\x1a\x3e\xc2\x62\x69\xe6\xf3\xe5\xdf\x33\x49\x54\x5e\x28\xb5\xfc\x33\x97\xef\x21\x12\xaf\x75\x0a\x96\x66\xcf\xea\xd5\x78\x6b\x94\xe9\xf3\x04\xf4\x9d\x81\x2c\x45\xc7\x2a\x86\xf6\x40\xbe\x17\xa9\xba\x0e\x89\xf8\x2e\x66\xd3\xeb\x32\x97\x5b\xbe\x4d\xc4\x1c\x98\x98\x62\x9d\x5d\x2f\x0d\x7a\x59\x17\x1f\xd1\x2d\x22\xf2\x67\x2a\x49\x5c\xed\x22\x6a\x9c\x42\xbf\xb2\x49\xaa\x64\x3c\xb5\x39\xd4\x49\x81\x7e\xe4\x89\xd4\x30\x14\x0f\xd0\xe4\x32\xf5\x4d\x67\xda\x76\x96\x79\xde\xb6\xc2\xba\x00\x66\x0e\x71\x49\xe8\x7c\x87\x1a\xf2\x20\x4a\x7b\x37\x0b\xec\x0e\x55\xe4\x20\x80\x9f\xba\x92\x76\xa8\x22\x0f\x92\xce\xf1\x1d\x6a\x70\x01\x80\xaf\xbd\x54\x3b\x40\x67\xc5\x13\x25\x5a\xfc\x40\x44\x31\x8e\x32\x98\xb2\x38\xd6\x67\xa6\x73\x74\x2f\x11\xb1\x48\x92\x12\x7e\x85\xee\x16\xda\x97\x4a\xe9\xb3\x9d\x2f\x74\x40\xac\x97\x56\x93\xd7\xfd\x53\x72\xdb\x78\xf5\xde\x2c\x48\x1c\x71\x5c\xef\xde\xb5\x3d\x6a\x2d\xa7\x96\xd5\xd6\x42\x53\x5b\xa0\x91\x46\x85\x9e\x65\x54\x71\xde\xb8\xad\x25\x98\xa7\xad\x57\xe1\xee\xb6\xdc\x41\x68\x59\xb3\xe0\x31\x85\xd6\x23\x9f\x38\xdb\x49\xb8\x08\x1d\x74\x5c\x1c\x96\x4c\xc1\xca\xac\x9f\x9a\x7d\x00\xda\x6c\xb9\x47\x64\x36\x2b\x7c\x6c\xa5\xf1\xb7\x58\x10\xaa\x84\xbc\x73\xb8\x88\x3f\xed\xc3\x45\x7a\xff\x8b\x85\x57\x49\x4a\x0d\xa5\x0b\x20\x39\x5d\x28\x41\xa2\xb5\x68\x30\x6e\xdc\xeb\x6a\xd9\xbb\x6d\xdc\x99\x5a\xc5\x88\xd0\x06\x25\xa3\x51\xcb\x6b\xd5\x11\x51\x1c\xbf\x96\x3f\xd1\x69\x13\x8b\x3e\x96\x16\x68\xc2\x4d\xba\xec\x8b\x35\x97\x59\x61\x4e\x58\x44\xa6\xf5\x5d\x5e\x21\x8e\x96\x58\x62\xed\x11\x6f\x28\x66\x2b\x3a\xc3\x12\x91\xb8\x88\x62\xa1\x9a\xba\x42\x0b\x24\xea\xe4\x1f\xe3\xfa\xc2\x2c\xdd\x86\xb2\xf0\xdd\xea\x4c\x2f\x31\x95\xd5\x92\xc3\xd9\x94\x4a\x04\x28\xd8\x66\x62\xbc\xe8\x2a\x2a\x80\x98\x9a\xf5\x1e\x0e\x27\xcb\x25\x8e\xf4\xae\x66\xc9\xbf\x6c\x36\x6f\x6c\xe1\x46\x5f\xb7\x29\x93\x79\x82\x4f\x1d\xaf\xb2\xde\x8f\x09\x38\xd6\x0a\xbc\x77\x1c\x1c\x9d\xfe\x9f\xe3\x63\x08\x80\x3f\x2a\x16\x52\x62\x89\x88\x55\x8c\x36\x97\x8a\x69\x4b\x3e\xc6\xcd\x0a\x9b\x8b\xc5\xaa\x29\xd6\xdc\xc3\x04\xca\x3f\xcd\x7e\x8f\x72\x18\xb8\xc4\x3f\x2d\xbc\x70\x4a\xea\x6e\xa8\xbe\x4a\xbc\x5c\xc5\x48\xe2\x87\x75\x36\xa1\x59\xbe\x84\x7e\x53\x8b\x55\x69\xc3\x49\x77\xa5\xbc\xed\xf3\x78\xc8\x16\x3b\xe9\x54\x38\xd0\xcc\x56\x55\xb8\xb1\xf6\x04\x8c\x05\x84\x4e\xe3\x75\x84\x85\x87\x5d\x7e\x31\x38\x8d\x52\x51\xba\x75\xa3\x5f\xca\xd3\x2b\xdb\x28\x6c\xd3\xca\x3b\xda\x8b\x56\x77\xaf\x9c\x76\x8e\x62\x4f\xc4\xb9\xd2\x10\x51\x5c\x63\x14\x3a\xdb\x9d\xc9\xee\xd1\xd0\xe9\xed\x1b\xb6\xa6\x25\x45\x4b\xc9\x83\x0a\xb8\x2a\xe7\x7a\x6a\x9c\x56\x58\x27\xd5\xfe\x54\xdb\xf5\xa0\xca\x97\x9e\x37\x53\x9a\xe1\x9b\x0d\x94\x66\xd8\x16\xd3\xa4\x19\xb8\xc5\x28\x69\x06\x6e\x36\x47\x9a\x61\xeb\x0d\x91\x66\xb8\xae\x26\x40\x71\x80\xb2\x92\x15\xd6\x40\x33\x6c\x51\x43\x2f\x5b\x09\x9d\x68\xec\xc0\xe7\xac\x87\x66\xe0\x5d\x54\xff\x2a\x9c\x1d\xd8\x9b\x96\xd0\x96\x64\x07\xa2\x62\x9d\x1b\x64\xbb\x13\xdd\x37\x4f\xb2\xad\x97\x52\x41\xe7\x13\xf0\x61\xe6\x7a\x2c\x15\x74\x3e\x59\x9d\x4d\xc7\x98\x57\xc4\x1b\x65\x71\xea\x30\x6a\x0b\x4d\x48\xf6\xd1\x92\x88\x82\xc6\x45\xce\x8d\x9a\x08\x96\x68\xf5\xdd\xc6\x03\x69\x28\x82\xbd\x7e\xc9\xab\x3c\x9e\x8c\xdd\x73\xa1\x18\x72\x4f\xfa\x3e\xc4\x5b\x78\x35\xf6\xd3\xf3\x93\xed\x01\x15\x0e\x51\x6d\xb7\x8b\x20\x35\x07\xc0\x33\x14\x72\xe3\x92\xe0\x50\xac\xe5\x31\x90\x59\xa0\xc4\xad\xe7\xc4\xed\x14\x11\x72\xc6\xd4\x22\x94\x3a\x03\x9b\xd1\xc8\x31\x43\xf7\xad\xca\xac\x76\x63\xa5\x75\x71\x5e\x22\x1a\x79\x40\xe9\x21\x22\x29\xe2\x6e\xf8\x83\x2a\x3c\x95\x14\xd3\x00\x3b\xa1\xee\xe8\xde\xca\xae\x73\xbe\x13\x71\xde\xe1\xe0\x68\x8e\x26\x56\x69\x39\xc4\xf7\xf7\x29\xee\xe7\xe9\x49\x50\xba\x8e\xe3\x11\x4e\xce\x94\x02\xb7\x65\xdf\x9e\x42\x45\x42\x1a\x33\x4d\xeb\x62\x35\xf8\x7f\x75\xac\xec\x49\xf7\x32\x4a\xc9\xb1\x73\x85\x99\x3d\xde\x8e\xed\xd1\x69\x85\x61\xd5\x40\x3b\x9a\xdd\xa9\xec\x4a\x8b\x91\x39\xfa\xa5\x15\x99\x95\xb6\xe1\xcf\x1c\xd9\x56\xa3\xab\x18\x5d\x35\xd1\xb8\xd2\x45\x23\x83\x2c\xd1\xd1\x91\x8a\x96\x8e\xb5\x9b\x7d\xce\xac\xc8\xc9\xd2\x74\xdb\x38\xf5\x9f\x27\x3b\x81\x7e\x12\xeb\xf4\x11\xdd\x9e\x29\x1b\xbc\x14\xce\x9e\x0f\xe6\x67\x1c\x07\x36\x4d\xe0\x3b\xc6\xad\x6b\x25\x28\xd7\x60\x0e\xa2\x6c\xcd\x1e\xd8\x79\x62\x25\xee\x5a\xad\x0b\x9c\xd4\x28\x24\x5b\xed\x5a\x91\x82\xc9\xe0\x1f\xb2\x8b\xda\x3d\x16\x50\x2d\xcd\x35\x21\x7e\xd5\xbb\xa2\x70\x85\x36\x31\x43\xf5\x6e\x85\x08\x4f\x59\x84\xa3\x73\x5b\xac\xd8\x69\x0b\x5e\xc5\x0e\xe6\x90\x6f\x80\x24\x9b\x78\xae\xed\x60\x00\xfc\xfb\x7b\xd0\x1a\x24\xe4\x64\xb0\x7c\x5a\x47\x13\x68\xd9\x8e\xd6\xa9\x57\x7e\xa2\xf1\xc6\x6e\xcb\x2d\x90\x58\x34\xc5\xd9\xb6\xb9\x49\x9a\x09\x83\xe5\x2d\xe3\xd7\x8f\xb1\x51\xfd\x70\xcf\xdd\xa3\x6f\x69\xeb\x2c\xb5\x85\x3d\xe8\xcc\x6b\x44\x22\x5e\xfb\x91\xac\x6a\x3f\x2d\x27\x44\x96\x76\xb6\x9d\x88\x27\x25\x0d\x71\x74\xae\x68\x68\x54\x38\x64\x2c\x4a\x1f\x46\x1b\x8a\x96\x64\x5a\xf1\xa9\x79\x6c\x58\x84\x07\xee\x1e\xd8\x63\x8c\x91\x4e\xcd\x14\x97\xae\x6c\x7c\xd8\x30\x1c\x98\xfc\xdf\x69\xd2\xb1\x60\x4d\x55\xdd\x12\xd3\x83\xa6\x01\xca\x70\x2a\x90\xd3\x87\xd9\xa7\x8b\xe4\xc2\xe4\xb2\xac\x70\x69\xd2\xb0\xd0\x3a\xc5\xf4\x3a\x9b\xde\x23\x65\xd1\xbc\xc6\x1b\xe1\x61\x93\x88\xc2\x2b\x2b\x88\x32\xbb\xbd\xbe\x27\xaf\xe8\x38\xc4\x57\x74\x0c\xe5\x16\xde\x6d\xd3\x75\x56\x78\x12\xde\xb1\x1b\xcc\x6f\x39\x91\x86\x26\x5b\xad\xf7\x5e\x53\x76\x4b\xd3\x6c\x1d\x15\xfa\x9b\x93\x17\xa6\xa2\xc3\x19\xf2\xca\x84\xa8\x3d\xf0\xeb\xf0\x89\xd1\xda\x3b\xa7\xf2\xab\x9c\xb5\x1d\x38\xe9\xcb\xcd\xe3\x0a\xd9\x98\x1e\xbe\x48\xda\xff\xe9\x96\x62\x9e\x67\x93\x7c\x01\x7b\x38\xc3\x9d\x35\x39\x9e\x5a\x54\x64\x46\x49\xdc\x96\x59\xb1\xa0\x72\x20\xba\xb1\x5a\x35\x6c\xca\x30\x6e\x02\x1b\x6b\x69\x05\x6e\x08\x35\x4d\x83\xd1\x1b\x7d\xf8\xe6\x24\x67\xbd\x2b\xba\xe0\xb9\x3a\x3c\xd9\xa6\x01\x60\xbb\x83\x74\x71\xc5\xaf\x57\x11\x92\xb8\x61\xdb\xc9\x54\x55\xad\xb0\xd8\x9e\x35\xab\x82\x49\x21\xff\x34\x55\xfb\x46\x49\xf4\x70\xdb\xea\xaf\x58\xc2\xc4\x73\xff\x37\x99\x1f\x4b\x2c\x04\x9a\xd7\xf3\x8f\x58\x4f\xec\xa1\xc8\x06\x0e\xab\xdc\x9d\x90\xf5\x43\x6c\xd8\xb9\xc6\x71\x63\xeb\xb3\x6e\x89\x36\xad\x84\x45\xbb\x6b\x6a\xdf\x30\x9a\x9b\xac\x06\x2b\x54\x3c\xa8\xff\x05\x63\xb7\x9b\x65\x43\xfb\xd1\x4f\x22\xce\x38\x22\x5a\xeb\xaf\xdf\xa5\x4b\xcf\x11\xbc\x8d\xc9\x3c\x39\x1b\xff\xc5\x23\xbb\x9a\x02\xd4\xba\xec\xe5\x2d\xa4\x5c\xe9\x73\xab\xb5\xdb\x9b\xb1\x48\xd2\x12\xd6\xe2\x9e\x5f\x5e\x44\xf3\xf2\xb2\xc4\x12\x75\x28\xd6\xed\xa8\x5f\xa2\x46\x36\x16\xd2\x41\xa6\x17\x36\xc6\xb4\x54\xb2\x10\x82\xaa\x46\xdb\x8c\x60\x5c\x17\x47\x59\x39\xd4\x6a\xd2\x58\x30\xe7\x1c\x74\x49\x74\x5b\x72\x57\xc5\x80\xe7\xc2\x83\x1d\x41\x9e\x80\xf8\x7e\x72\xfe\x57\x99\x8f\x55\x2b\xf3\x67\xd6\xae\xea\xdc\xd6\xef\xbc\x34\xd6\xaf\xfd\x2e\xee\x31\x83\xac\xe2\x6d\x67\x3f\xb1\x7b\xa2\x50\x89\xb4\x6d\xe6\xbf\xad\xdc\x7b\x72\x35\x39\x1f\xe2\x86\x83\x4a\xce\x92\x96\x69\x03\x75\x5e\xd6\xe4\xb0\x9a\x75\x0c\xdb\xd2\x2d\x9e\x97\xd4\x71\x9a\xf9\x9c\x52\xc8\x4e\xbe\xdd\x42\xaf\x6c\xeb\x9d\xd6\xfa\x02\x68\xae\x13\x69\x05\x87\x27\x15\xdd\xd0\xa7\xe3\x4a\x5d\x29\x39\x95\xed\xf1\x05\xad\xf8\x35\x75\xa4\xc2\x8f\x6c\x3d\xcc\xe9\x06\xb4\xb9\x93\x8a\x48\x6c\xcf\xba\xd6\x79\x63\x40\x36\x0d\x9b\xdb\x74\xca\xb9\xdb\x9c\x89\xdb\x65\x04\x08\x4d\x27\x66\x8b\xe2\x53\x11\x02\xfb\xe4\x03\xd2\x93\xb5\xad\xda\x76\x67\x28\xc6\x62\x8a\xa3\xd4\xb7\x5d\x67\x8f\xab\x09\x22\xac\x5f\xd7\x88\xd3\x86\x62\x9f\x16\x68\x2d\x5a\x8b\xbd\xbe\x41\x24\x4e\xa2\xaf\x72\x56\xab\x3e\x33\xff\x4e\xb3\x68\xa9\x12\xd5\x69\xaa\xa4\x31\xa1\xb2\xbe\x88\xaa\xa0\xae\x1b\x3e\x8c\xc8\x12\x53\x41\x18\xad\x2f\xf2\xdb\x9a\x49\x54\xff\x59\x5f\x28\x59\x32\xb7\x9b\x99\x87\xc5\xa4\xfa\xd2\x90\x6f\xee\x30\xfb\x0c\x6f\x18\xe4\xeb\x18\xd7\x2a\x2a\x8a\x20\xe5\xc4\xff\x96\x20\xa5\xc3\xa1\x5f\xd1\x98\xf8\x8c\x33\x04\x8f\x3c\x00\xa8\x70\x08\xbe\x64\x7b\x94\xcf\xbc\x37\x04\x9b\x25\x85\x3f\xb0\x08\x37\xc5\xa4\x35\x58\x1d\x38\x46\xf5\x7a\x69\xb9\x33\x17\x99\x82\x29\x1c\x88\xaa\x5e\x17\xfa\xd7\x02\xe9\x14\x69\x31\x6f\x32\x5d\xee\x8f\xe4\x76\x9d\xae\xd6\xb5\xf2\x73\x89\x97\xcc\x84\xc8\x54\x7e\x8e\x88\xb8\xae\xfd\x48\xd8\xaa\x41\xcc\x1b\xff\x75\xc1\x0d\x94\x6a\x49\x89\x77\xbb\x4b\x20\x4f\xe3\x90\xe9\xa8\xa0\x3f\x9e\x0b\x41\x9f\x8e\xaf\x99\xc7\x8d\x71\xa0\x82\xcc\x29\x2a\x9d\x23\x49\x87\x05\x7f\x22\xf2\x8d\x75\x4f\x54\x1f\x25\xaa\x9f\xd0\xea\xd3\x07\x44\x59\x49\x48\x3b\xdc\xd4\xe8\xdd\x68\x1f\xc8\xda\xe3\xb3\x7f\xa4\xb1\xcd\xd0\xab\x19\xe0\xe6\xc4\x57\x6b\xc9\x3e\xe2\x1b\x5c\x4e\x5d\xe5\x84\xbb\xda\xa3\xd0\xf5\x25\xda\xce\x81\x07\x73\xad\xed\xe7\xcf\xca\xc2\x61\xee\xdc\xee\xe6\x75\xde\xd8\xea\x9e\x29\xcb\xc4\xe7\x15\x8e\x00\x57\xbb\xa7\x6a\xda\xcb\xc2\xe6\x2a\x0e\x01\xd7\x1c\x9e\xc8\x1f\xf3\xad\x0e\x38\x2e\x9c\xe5\xad\xf6\x64\x14\x0f\xdb\x56\x96\xaa\x38\x94\xdb\x74\x22\xff\x9c\xb3\xb9\xb2\xb8\xcb\x87\xf4\x3a\x9c\x01\xab\x38\xb0\xf4\x47\x9a\x30\xe9\xa9\x8b\xdd\x66\x4a\xf1\xc4\x56\x25\xf9\xcb\xc7\xb2\x9a\x8e\xe8\xb4\x94\x2a\x9f\xae\xaa\x2c\x56\x3c\x40\x55\x59\x28\x7f\x4a\xaa\x2e\xa4\x7f\x6f\x0e\x43\x75\xe4\xdf\x27\xa3\xba\x77\x38\xba\xf8\xc0\x6d\x59\x1e\x56\x45\x8d\xdd\xdf\x5f\x8d\x9b\xd3\xa8\x3d\x70\x16\x4c\x75\x7c\x72\xed\x72\x8f\x44\x9d\x8e\xa6\x3e\xb5\xc4\x35\xe6\x43\x1a\xdb\x23\x1a\x4b\xc1\x8c\xc0\x09\xe3\x73\x5d\x77\xc5\xc6\x7e\x65\x93\xa0\x1c\x92\x98\x06\x49\x56\xb5\xcc\x0b\xa9\x2e\x72\xe1\x88\xae\xdf\xaa\x90\xe2\xaa\x6a\xcb\x2f\x71\xfe\xbe\x39\xff\xb9\x68\x64\x18\xb4\x20\x70\x8a\x38\xde\xe2\x1f\x53\xf5\xba\x09\xc6\x94\x72\xc0\xce\xac\xda\xdd\x04\xa4\xca\x38\x20\x6f\x57\x0b\xbc\xc4\x1c\xc5\x09\x6c\xfd\xfa\xd6\x10\x82\x68\x48\x55\x13\x82\x17\x14\x8e\x55\x77\x48\xfe\xd5\xad\xa6\x8e\x89\xc1\xb2\xf1\x30\x52\xed\x27\x7e\xd1\x14\xb2\x9e\xc5\x24\xdf\xb9\x52\xb0\x20\xf1\xb7\x2d\x09\x29\x2b\x63\xe5\x8f\xca\x05\x8a\x01\xf1\xce\xf9\x83\x2a\x12\x57\x1c\x04\xa8\x8e\xa7\x2d\xb2\x71\x55\xd0\xbf\xdf\x4e\xb2\x76\xf1\x5b\xca\x91\xbf\xf7\x6a\x43\xa3\x58\x4c\x0d\xac\xba\xaf\x5c\xe2\xe8\x75\x49\x70\x5a\x53\x68\x46\x28\x11\x8b\xa6\x02\x26\xaf\x49\xad\xfe\x4d\xc4\x6b\x9d\x10\xbd\xb8\x6e\x52\xa6\x06\x28\xab\x3e\x17\xfa\x5e\x67\x0f\x22\x71\xdd\x10\xc0\x9d\xb1\x4c\x60\x64\x76\xcb\xbc\xad\x87\xdc\x79\x9e\x36\x6e\x3c\xab\x2a\xd3\x5d\x67\x5b\xb4\xc6\x55\xef\x16\x85\x6e\x07\x75\x1e\xbe\xa8\x29\x20\xdd\xab\x44\xcc\x85\x2b\xe5\x3e\xaa\xc8\x47\x98\xf6\xd3\xae\x06\xd9\x86\x21\xaa\xdb\x0b\xcc\x36\x89\xaa\x97\xd6\x74\x93\x48\x73\x62\x7d\xc0\x68\xd5\xa6\xc4\x0e\xf1\xa2\x09\x2b\xb5\xe5\x8e\x2c\x06\x92\xe2\x9d\xb2\xeb\x68\x5d\x61\xcf\xb7\x30\x2c\xb3\xd6\x7d\x2e\x2f\xe9\x8d\xe1\x86\x56\x55\x68\x2c\x73\xd6\xe4\x5d\xab\x5d\xd8\xab\x4a\x37\x0f\x8e\xb9\xb8\x7f\x8f\x8e\xd9\x0b\x3c\xe5\xb8\x3e\x35\x77\xa3\x60\x37\x77\x2a\xd7\x4b\x5e\x73\x36\xb9\x21\x20\xaa\xf9\x98\x35\x8b\xc9\x94\xe0\xd2\xe6\xb2\xdd\x93\xb1\x05\x36\x66\xb7\xb3\x18\xa2\x83\x74\x56\x2c\x56\x27\x10\x49\xad\x7b\x5a\xc9\x95\xb8\x26\x8a\x30\xfd\xf6\x88\x57\x07\x64\x77\x8c\x56\x75\x86\xad\x65\xed\x8d\xd3\x1d\xae\x42\x7f\x90\xd1\x44\xed\x75\x06\xfa\x1e\x0f\x9e\x32\x4a\xba\x32\x66\x3c\x94\xbc\xba\xdc\xac\x30\xe4\x8c\xc9\x9f\x3f\xfe\xe0\x7c\xb6\x6f\xb6\xfe\x01\x55\xa6\x88\x57\xcc\xac\xcf\x9d\x8b\x42\x60\xfd\x47\x00\xef\x56\x48\x2e\x46\xe0\x78\xf4\x2b\x9b\xfc\xa2\xd7\x8c\x6d\x5d\xf9\xdc\xc9\xd5\x04\xcc\x80\xd8\xdb\x09\x6c\xc1\x28\x3d\xe0\x00\xf2\x1f\x9c\x93\x70\xf9\xf2\xce\x29\x0c\xcd\x3a\xee\x57\x93\xad\xb3\x1e\x0d\xf3\xdd\xed\x12\x8b\xf0\x2f\xc4\x44\xed\xe5\x6a\xd2\x92\x88\xd7\xd7\x64\xbe\x3b\x35\xe9\xdb\x06\x2a\xab\xca\x45\x61\xd4\x54\x97\x4b\xd9\x9c\x56\x99\xbe\xd4\xf5\x36\xd1\xba\x44\xe5\xba\xc2\x31\x9b\x67\x79\x4c\xf3\x08\xe9\x9b\x79\xea\xbb\xa8\x65\xaa\x51\xf3\x41\x84\x6f\x70\xcc\x56\x9a\xd9\xc3\xdc\xa5\xfd\xd9\x2c\xb0\x39\x30\x2d\xf4\x8c\x63\x2c\xe4\x46\x07\xf0\xb8\xef\x29\x93\x83\x19\x5b\xd3\x28\xc3\xe0\xdf\x0c\x09\x9d\x55\xad\x76\x4e\xba\xa9\xe1\xeb\xd3\xdf\xd7\xfb\x3c\x6e\x6d\xa2\x8b\x96\xeb\x4d\x76\xb8\xb4\xe9\xb3\x97\x06\x67\xd2\x27\x73\x3e\x95\xa8\xf0\xae\xe6\xfa\x10\x2d\x65\xec\xbd\x56\xb6\xdb\xae\x3e\x67\xd0\xf4\x83\x15\xe6\x33\xc6\x97\x9e\xf4\xfd\x2d\x7c\xf8\x6d\x50\xf5\xc9\x94\x13\x9b\xad\x94\x71\x39\x2b\xa3\xc6\x36\xbb\x4f\x0a\xe5\xe3\xa6\x54\xbf\x74\x67\xcd\xaa\xaf\x7f\x7e\xc4\x53\xc6\xa3\x7c\x5a\x73\x1f\xd6\x5c\xe6\x92\xb9\x01\x2d\xce\x35\xab\x4b\x13\xf3\x94\x54\xbb\x47\xbe\xf2\x28\x37\xb6\x77\xfa\x84\x55\xdd\x55\x01\x85\x31\x4a\x4f\x0d\x60\x1d\x2f\x04\xa9\xb1\x61\x74\x29\x7d\x38\xcb\x75\x18\xb9\xe4\x3a\x20\x33\x8f\xfa\xc9\x75\xa8\x8e\xca\xeb\x1e\x65\xb3\x56\x80\x2e\x8c\x92\x23\x7f\xc8\x9e\xab\xa0\xf8\xd6\x06\x8c\xbf\x55\x5c\xef\x81\x4b\x24\xae\x7b\xe0\x48\x1e\x81\x1e\x65\xb2\xa7\xe7\x70\x6f\xc6\x78\x2f\x6b\xb7\x07\x8e\xa8\x73\x45\xd5\x81\x08\xa6\x2c\xc2\x21\x78\x31\x7c\x01\x8a\xd7\xc2\x98\xee\xaf\x56\x31\x49\xfa\x6c\xb8\xd9\xa6\xc8\x14\xb5\x97\xbd\xb4\x0f\xe5\xb1\x96\x79\x5f\x6b\x3c\x4b\xd3\xca\x31\x36\x9b\x66\xd5\x41\x7e\x12\x15\x2c\xb7\xe6\x09\xd5\x4c\x19\x87\xa8\xb5\xf6\x8a\x39\xe0\x27\x8e\x35\xb9\xcb\x17\xa5\x3f\x32\x8d\x8c\xca\x54\xc7\xf4\xf5\x77\xf7\xa9\xae\x48\x65\x87\xbb\xac\x41\xd7\x71\xec\xde\x23\x14\x91\xa8\xe1\x1a\x21\x93\xd4\x5b\xb7\x1f\x10\x71\x89\x85\x54\xc6\xb0\x3d\xd6\x27\xa6\xaa\xc9\x4b\xe6\x0d\xe1\x50\x49\xa2\x96\x1b\x89\xba\x32\xaf\xed\xa1\x7e\xca\xdf\x44\xd8\x4b\x6e\xe5\x67\xb3\x9e\x0c\x5e\x4f\x18\x97\x7a\x7a\xd9\x1c\xeb\x9d\x5b\xc0\x6d\xd3\x23\x55\x8c\x5a\x6f\xea\x2a\x5d\x21\x59\xb3\xf8\xa5\xe5\x1e\xd7\x82\xad\x60\x17\xe9\x2e\x7f\x0d\xc2\xb2\xf9\x6a\xa5\x09\x9e\x31\x8e\x7f\x6c\x5a\xf4\xca\xf7\xf1\x80\x86\x75\xd2\xf6\xf4\xe2\x9f\xe7\xca\x28\x5a\x98\x33\x10\xee\x3d\xeb\xba\xb3\x56\xbe\xbe\x8e\xe3\xf4\xae\x16\xad\x29\x36\x16\x34\x37\x57\xe5\x16\x4a\x5a\x5a\x28\xbb\x8c\xf7\x71\xa2\xf0\x76\xbd\x81\xf2\xf3\x95\xa5\x2f\xaf\x0e\xa1\x8e\xfc\xf0\x45\xae\xbb\x84\xfa\x86\xe3\x1f\x4b\xeb\xb2\xeb\x25\x4c\x8e\xcf\x9b\x48\x6f\x7b\x37\x74\xcc\x50\xe4\xb5\xea\x4e\xb9\x2d\x9b\xad\x3f\xca\xea\xcb\x7f\xa9\xbb\x47\xae\xa4\x08\xfe\x68\x7c\x1d\x8d\xba\x20\x74\x01\x5e\xbb\xd6\x4a\x01\xec\x75\x2e\xbf\x45\x4e\x9b\x4c\xb5\x36\x5a\xd0\xda\x2c\xd3\x17\xe1\x73\x45\x33\x4f\x4b\x29\xb9\x49\x47\x3d\x0f\x56\x74\xb0\xd3\x04\x21\x26\x77\xc2\x63\x9a\x0b\x5f\x5a\x1e\x76\x30\x07\x76\x31\x06\xaa\x74\xee\xd7\x71\x5c\x18\xba\xcf\x55\xb5\x33\xfb\xef\x6b\x29\x62\x5a\xbd\x79\x97\x34\xbb\xe3\xb2\x50\x4a\x94\x91\xab\xcc\xd9\x15\x08\x30\x15\x6b\x8e\xff\x11\xff\x2a\x4a\xb3\xbb\x6a\xa9\x40\x71\xec\x5d\xb9\x50\x3f\x20\x3a\x5f\xa3\x39\xf6\x80\xbe\x2f\x18\x4f\x90\xbe\x7a\xa7\xa6\x88\x5c\xc6\xa6\xc0\xd8\x6f\xd3\xfb\x4a\x9c\xfd\x45\xa9\xcd\x71\x44\x38\x9e\xca\x92\x96\xe4\x5e\x49\x9b\xdd\x46\xdb\xd4\x71\xe3\x88\xda\x73\x45\xa5\x51\x17\x69\x5c\xb6\x76\x54\x54\xd2\x74\x12\xa2\x49\x59\x69\x50\x36\x8c\xb9\xde\xa0\x68\x40\xb1\xa1\xd3\x4b\x56\x73\x9b\xb6\x31\x48\x4b\xdd\x2a\x5c\x7e\x1c\x28\x0b\xf0\xc0\x60\xcc\xd7\x34\xa0\xf8\x93\xcc\x39\x22\xfb\x7d\x60\xdb\x05\x87\x61\x28\x4f\x71\x7a\xff\xb1\x7b\x81\xb2\x3f\xaa\x7c\x9f\x82\x9a\x7b\x98\x1a\x2e\x23\xcf\xe5\x36\x29\xa0\xe5\xe1\x4e\x17\xa7\xa6\x86\x06\xc7\x33\x8e\xc5\x42\xb3\x40\x89\xed\xed\xc7\xfa\x4b\x4a\x1d\x66\xff\xa3\x2f\x42\x9a\x29\xff\xcb\x74\xfb\x21\xeb\x90\xc9\x36\xdc\x75\x19\x6a\x1f\x20\x9b\xbd\x69\xd8\x65\x68\x4a\x29\x85\xbf\xea\xfd\xed\x3b\xb8\x8a\x9a\xaf\x9c\xc4\x9c\xa0\x98\xfc\x8e\x2b\x26\xc3\x5d\xe2\xcd\x1f\x25\xb7\x0a\x99\xa4\xbc\x4a\x4c\x97\x1c\x50\xd0\xf1\x22\xfd\xb6\xc6\x7c\x73\x8e\x38\x5a\x8a\x4c\x0a\xb9\xb7\x83\x35\x88\x02\x28\x42\x1c\x24\x0d\x43\x1e\x7e\x7f\xf1\xd3\x87\xc0\x6c\x39\x91\xd9\xc6\xbb\x12\x10\xdd\xdf\xa7\xd3\x7a\x5c\x91\x26\xd4\x95\x63\x46\xd9\xb4\xbb\x14\x1c\xde\x19\x6d\x5b\x93\xb4\x56\xe1\x2e\xaf\xc9\x65\x35\x3b\xb9\x61\x3d\x97\x26\x6b\xdc\xd5\xb7\xd9\xf5\xae\xfc\x02\xbb\x1d\x3b\x5b\x22\x4f\xc1\x69\x95\x79\x17\x55\x0f\x03\x3d\x19\x33\xf5\xa7\x22\x51\x55\xed\x55\x7a\x3a\x9e\x0f\xc3\x0c\xbf\x91\xdc\xb6\x69\x31\x0e\x55\xb2\x8d\x9f\x7d\x95\x94\x0f\x25\x73\x0d\xaf\x16\xb2\x3b\xe6\x6e\xad\x6a\x65\xd4\xce\x16\xe4\x99\x4b\xf8\x82\xf8\x3e\xcb\xe5\x44\xab\x33\x29\xff\x99\x74\xa9\x08\x9e\x7e\xa8\x32\x26\xcf\xf2\x69\x2d\x65\xa5\xb1\x98\x27\x41\xae\xd2\x7a\x20\x67\x6b\xb1\xdb\xa2\x92\x23\x41\xb1\xeb\xdd\xd8\xf7\x8f\xb9\xc4\xe7\x1d\xb2\xd9\x86\x99\xe5\xf4\x26\xaf\x43\x1a\x2b\x58\x28\x74\x91\x64\x29\xce\xca\xe6\xc2\x0e\x81\x9f\x4f\x64\x5a\x00\x7f\x9b\xcb\x5d\xe9\x34\xe7\x66\x49\x4d\x6b\x2c\x25\x19\xcc\x5f\xdd\xd7\xc8\xe3\x30\x26\x42\x26\x55\x39\x89\xd2\x2b\xaa\x78\x1d\xc7\xae\xa2\xb3\x6d\xda\xe5\x72\x94\x9d\xd7\x71\xdc\xa4\x0b\x5d\x64\xc9\x9e\x2b\x2a\x71\xd2\x3d\x17\x09\x53\x3f\x33\xf2\x69\x60\x3f\x6b\x1a\xee\xe2\xb3\x49\x7e\x26\x63\x0f\xcb\x63\x09\x2b\x06\xa3\xdb\xcc\xab\x8b\xb4\xdf\xa3\xe9\xd7\xbc\x0d\x98\xd3\x8d\xaa\x96\x91\x2e\xde\x47\x1b\xd7\x53\xcc\x61\x5b\x03\x59\x74\x5b\xe6\x72\xf7\x16\xf7\x13\xd3\xdb\x71\x6b\x45\x88\x09\x77\x91\xce\xf6\xf1\x41\x59\xa4\x28\xe5\xa1\x30\xaf\xbe\xd7\xd8\x25\xf3\x8a\xee\x20\x53\x68\x49\xa6\xb8\xb1\xf8\x9d\xdc\x9e\x34\x9b\xc7\xdf\x9b\x73\x0a\x0d\x53\x79\xb7\xb9\x5a\xf0\x93\x56\xcf\xb9\x87\xf8\x49\x15\xc1\xaa\xe7\x5a\x77\xcf\x69\x3a\xb1\xd2\x65\xf4\x0f\x32\xad\x76\xd0\x7a\x0b\x9a\xd6\xa3\xe8\x59\x15\x5e\xda\x46\xfd\xe8\x0b\xe8\x39\x1d\x95\x1a\x27\x66\xe7\xdb\xda\x27\xa5\xa0\x84\x73\x34\xc7\x59\x38\x82\x16\x23\x0f\x0e\x39\xa8\x4d\x75\x68\xa9\x90\x46\x88\xed\xb9\xa7\xf2\xcf\x2d\xd5\x9c\x7d\x5e\x4e\xb9\x91\x1f\xef\xe3\x24\xf2\xaf\x75\xd8\x4d\xc8\xb7\xe6\xa6\x81\xf6\xed\x13\x3a\xff\xc2\x2e\xa2\xcc\xe5\x50\xc5\xb8\xa9\x17\x88\x8b\x63\x43\x8f\x6a\x24\x72\xe5\xdc\xe8\x91\xee\x21\x23\x8a\x65\x93\xe7\x1e\x7a\xda\x17\x60\x35\xa7\x18\x91\x92\x8b\xd1\x9d\x93\xc8\x0e\x44\x53\x90\xe6\x20\x03\x26\x65\x97\xc0\x7c\x76\xce\xb8\x1c\x01\xf5\x2f\xd8\x42\xca\xf8\xb2\xe8\x70\x53\xc3\x4d\x66\xde\xa1\x4c\x5d\x68\xf8\xb6\x47\x83\xd7\x86\x90\x46\x82\x5d\xdd\xd9\xec\x75\x5a\x62\x6d\xc7\xfe\x81\x5c\x70\x76\xdb\x43\x81\x4d\x34\x10\x82\x8f\xf8\xb7\x35\x16\x12\x47\xbd\xd7\x6a\x0c\x7b\xb7\x48\x38\x11\x58\x84\xf6\x04\x96\x3d\x36\xeb\xa1\x24\x45\x90\x29\x27\x00\x44\x09\xbd\x64\xf0\xfe\x2c\x94\xc1\x07\xb4\xc4\x50\x06\x67\x29\x6e\xa1\x0c\x2e\xd1\x5c\xf4\xfb\xe6\x6f\x10\x4d\xa1\x0c\x3e\xea\xfb\xbd\x8a\x9f\xcc\xad\x5f\xea\xf3\x4a\x27\x13\x2e\x7e\x57\x4c\xe5\x7a\xd3\x35\xfa\x0e\x5d\x3e\x62\xb1\x62\x54\xe4\xe9\xa3\xb9\xc6\xb2\x84\x08\x53\xa7\xbb\x65\x02\xc8\x2d\x87\x88\xbf\x3d\x3f\x15\x83\xe7\xa3\xa1\x0f\x59\xf8\xfc\x15\xfb\xab\x78\xc5\x8e\x8e\x7c\x7e\xc5\x06\xcf\xc7\x19\xd8\x15\x1b\x1f\x34\x6f\xf9\x5f\xe9\x36\x83\x1f\x35\x5b\x8b\xfb\xfb\xab\xf1\x58\xad\x0f\x53\x24\x3d\xe4\x71\xdf\x77\x3b\x7c\x41\xe8\x3c\xae\xeb\xb6\xbe\xef\xcd\x76\x9c\x97\x3b\xce\x6c\xc7\xf9\xdf\x5e\x9c\xf2\xc1\x0b\xd5\xf1\x38\x7c\xf1\x2a\xfe\x2b\x7f\x15\x1f\x1d\xf9\xec\x2a\x1e\xbc\x70\x3b\x1e\x77\xec\x78\xa2\x69\x9b\x63\x9c\xc2\x87\xc2\xe9\x3f\xf3\x6b\x3d\x8e\xb9\x09\xde\x16\x34\x5b\x27\x0d\xbe\x44\xf0\x7d\xe6\xea\x6e\x5c\x78\xec\xa4\xcc\x1d\x63\x1d\xe9\x88\x44\x7b\x36\xd6\xc4\x36\x9a\x57\x17\x26\xce\xb1\x7e\x4e\xa6\x93\x22\x2b\x9d\x4b\xcb\xec\xa4\x47\x86\x6e\x8d\xfe\xfd\xfd\xdd\xd6\xcf\x87\xd4\xe3\xc4\x98\xa9\x01\x0a\xc0\x11\xf6\x21\x0a\xef\x74\x97\xf1\x36\x19\x67\xb7\x3d\xaa\xf3\xf4\xbf\x45\xd3\x45\x95\xa9\x86\xae\xf0\x38\xa4\x57\x78\xbc\xf5\x21\x0a\x3e\x26\xc7\xaf\x42\xd3\xfd\xf4\xd9\x4c\x44\xe7\xc5\x15\x1e\x43\xb4\xf5\xa1\x0c\xbe\x67\x13\xab\xe8\x85\x74\x1d\xc7\x87\xa1\xfb\xea\xd4\x7d\x18\xe5\xb0\xf8\x9e\x4d\x02\xfb\x01\xa8\x7a\xce\x63\x44\xa8\xbe\x24\xd8\xd4\xf0\xfe\x0c\x1a\x99\xa2\xdd\xfc\xa1\xf3\xfb\xfe\xbe\x54\x51\xb6\x7b\xe7\x77\xdc\x32\x70\xf6\x03\xa0\x6d\xaf\xb4\x6d\x50\xd1\x8f\xb1\xea\xea\x4f\xee\x95\xc6\x4e\x6f\x7f\xd4\x59\x3c\x2f\x93\x2c\x2f\xa1\xfb\xe6\x5f\x4f\xf0\x5f\x72\x45\xc2\x1f\x91\x5c\x04\xb3\x98\x31\xee\xb9\xef\x8f\x4f\xf0\x5f\x7c\x2d\x28\x93\x9c\x5c\x6f\xf5\x41\xb8\xd0\x73\xdf\x5d\x72\x34\xbd\xc6\xdc\xf0\x8c\x29\xa0\x68\x58\x4e\xf5\xa4\x24\x73\xf9\xf5\x69\xd5\xcb\x91\x1a\x3f\x85\x2c\xfe\x24\x0b\x35\xe4\x5f\x9d\x16\x5f\x24\x90\xef\x58\x1c\xb3\xdb\x9f\x57\x99\xab\x45\x43\x9b\xd7\x6b\xfd\xfa\xfd\xd9\x69\xf1\x85\x85\x2e\x4a\xf7\x0e\xc2\xa6\x43\x2c\xaa\x5b\xfe\x57\xa1\xd5\x8e\x82\xba\xcc\xf1\x92\xdd\xe0\x01\xd7\x16\xf4\x97\x4e\xf2\x66\x8f\x15\xfe\x27\xde\x8c\xc0\xfb\x33\x00\xaf\xf1\xe6\x1d\xe3\xaf\x93\x43\xbd\x95\x41\x60\xc1\x14\x2d\xb1\x42\xc1\x53\xea\xe6\x8a\x48\x64\x1e\xb6\x16\xda\xb5\xd3\x2a\x5d\x21\x38\x10\x84\xce\xd7\x31\xe2\x49\x25\x95\xf5\x1d\xa9\x1e\x59\x11\x02\xac\x07\x47\x9f\xc7\x38\xa5\xc1\x2a\x5e\x73\x5b\x6c\x44\xb7\x70\xb5\x16\x8b\xe4\xbe\x8b\x4a\xe7\x8b\xde\xe6\x0e\xb5\xa2\x33\xba\x1a\x43\x7b\xbf\x5d\x34\xba\x1a\x6f\x0f\x5c\xe9\x24\x2b\xa4\x93\x30\xb5\xf0\x90\x1a\xbb\x59\x4d\xbe\x77\x9c\x2d\x6d\x83\xff\x89\x37\x9e\x50\x6b\xb5\x32\x77\x93\xc1\x55\xd6\x17\x57\xeb\x20\xce\x6c\x6d\x9e\x84\x08\x2c\xd1\x35\x36\x4b\xa6\xbc\x12\xe3\x6a\x79\x68\xf4\x46\x16\xa4\x62\xdd\x8b\x21\x56\x8b\xa0\xd2\x55\x14\x1a\x50\xe9\x33\x09\x1e\x3a\xa8\x5d\xbf\xd6\xf7\x2b\x79\xd4\x87\xdc\xd4\x41\x5e\x79\x24\x44\x69\x41\xdf\xbd\x7f\x89\xe4\x8c\xda\xaf\xa7\xc2\x2a\xe5\x63\x6b\x4f\xc1\xe8\xee\x22\x57\x15\x79\x67\x8c\x9a\x4a\x5d\xc4\x1d\xcf\x4e\xf1\xe6\xc6\x28\x5e\xc7\xf1\x85\x32\x99\x54\x15\xd9\x18\x2a\x13\x09\x49\xe4\x43\xba\x85\x69\x91\xbc\xea\x83\x4c\x83\x65\x6d\xed\x6f\xcf\xfb\x7d\x73\x9d\xcf\x61\xe8\xa8\x36\xcf\xc7\xa7\xee\x43\xe5\xb6\x3c\xe4\x61\xe2\xa6\x58\x6d\x3c\x94\x64\xae\xa8\xdf\xc5\xb5\x39\xec\xcd\x69\xc2\x03\x1c\xac\x30\xbe\x56\x56\x9f\xdc\x11\x34\x29\x2d\x2a\x38\x2e\xd5\xda\xb9\x56\xbb\x3a\xd5\x18\x86\x79\x3d\xc0\x76\x10\x9d\xf2\xc0\xc8\x30\x33\xb1\x3c\xe4\x17\x0e\x4e\x62\xe3\x36\x85\x35\xb3\xa9\x5a\xe8\x44\x48\x2c\xb0\x15\x18\x39\xf1\xd1\x41\x30\x67\x0e\xfc\xa7\xa4\x05\x5a\x3d\xcf\xfa\xb1\x3e\x98\xdb\xa2\x41\xa6\x9f\x74\x55\xea\xf2\xd9\x23\x9a\x95\xbb\xc4\x8d\xbd\x93\x72\x67\x6f\xbb\x53\xca\x5d\x7e\xcf\x16\x09\x41\xe6\xd4\x4b\xd4\x3d\x48\xf5\xb1\xbb\x3d\x52\x9d\x4a\x16\x1c\xfe\x24\x39\x9a\x4a\x77\x09\xab\x71\xe7\x57\xde\x1f\x85\x33\xe9\xe2\x67\xb9\x13\x92\x1b\x05\x91\x81\xb2\x6d\xbc\x8f\x74\x7d\xd5\x14\x75\xfd\xf5\x77\x31\xa1\xd7\x3a\xe0\x27\xd6\x19\x76\xc1\x31\x38\xa2\x47\xc0\xe1\xea\xdc\xf9\x20\x70\x84\xb6\xdb\x6d\x09\xb7\x4e\xf3\x24\x9f\xd0\xfc\x09\xcd\x95\xe6\x89\x00\x86\xc3\xe1\xc9\x40\xff\x7f\x39\x1c\x8e\xf4\xff\xff\xaf\x39\xba\xf9\x8e\xf1\x29\x3e\xc3\x28\x8a\x09\xc5\xfd\xbe\x57\x78\xa3\x6d\x84\x0a\x46\x68\xa7\x15\x76\x6e\xf2\x7b\x3a\x74\x6a\xb6\x2c\x5b\xc5\xc9\xbb\x5c\x1a\x9f\x9c\x28\x29\x7e\xac\x96\x20\x8d\xe2\x21\x37\xd7\xf3\xb5\x69\xe1\xa2\xab\xdc\x33\x09\x52\x67\x7c\xed\xce\x50\x59\x06\x9e\xa7\xc3\x4e\xed\xbd\x76\xf7\xf7\x9e\x50\xc7\xeb\x38\xbd\x86\xb5\xba\x8d\x77\x2e\x66\x2f\x65\x14\x05\x0d\x77\x5b\x89\xd3\x1d\xdb\xce\xcb\xb0\x85\x48\xa7\xc9\xe7\x3a\x59\x8e\x80\xcd\x6b\x95\x79\x5b\x0a\x89\x19\x6c\xc3\x59\xdc\x47\xaa\xd4\xf7\xfb\xdd\x9b\x92\xaa\xa9\xb4\x8e\xb4\xb1\x07\x4c\x0f\xe7\xfe\xe0\xa7\xc4\x68\x56\x89\xa3\x56\x7b\xab\x50\xdd\x94\x3d\xf3\x0f\x63\xbd\xd6\xf9\x57\x75\xee\xc1\xc4\xc6\x4c\xb6\x29\x0b\x6c\xe1\xc8\xe9\xbc\x74\xdd\x42\x0c\xef\xce\xc8\x6c\x36\xa2\x81\xfa\x23\xfa\x7d\xfb\xe3\x4a\x8e\xe1\xfb\xb3\x11\x0e\xde\x9f\x1d\x81\x01\x38\xc2\x49\xdd\x50\x73\xee\xa8\xc8\xf2\xaa\x20\xc4\x75\xfc\x7e\xb1\x9e\x2c\x89\xd4\x79\x56\x1c\x57\x11\x0e\xb2\xf7\xc6\x55\x94\x3d\x9b\xdc\xc2\x6e\x89\x7f\x3d\xc1\x7f\xd1\xdb\x50\x65\x07\xb0\x26\x05\xb7\xc4\xe8\xc6\x0f\x3b\x6f\xf0\xd0\xd5\x72\xa4\xe3\x7a\x07\x36\xff\x4b\xf3\xb6\x0e\xcc\xf6\x32\xd2\x71\xcf\xc8\x95\xa9\x6e\xe8\x14\x1f\x81\x53\x70\x84\x46\x78\xe7\xed\x19\x7b\x00\xbd\xbc\x5b\x58\xda\x59\x29\x19\xe7\x89\x69\xa4\x8c\xff\x8b\xcd\x72\xc2\xe2\x80\x48\xcc\x91\x64\xbc\x47\x12\x79\xe0\x14\xac\x52\x63\xaf\xc6\x10\x85\x87\x43\x28\xc2\xc3\x13\xc8\x43\x63\xd2\x1e\x48\xbe\x49\x2d\x7f\x06\xe3\x10\x5f\x15\xea\x1f\x7b\xfe\xab\x43\x0f\x85\x1e\x0b\x63\x73\xda\xc1\xf7\x83\x88\x51\xec\xf7\xfb\x1e\x35\x46\x3d\x0b\x34\x96\x3e\x3c\x94\xf7\xf7\xd4\xda\xcd\x87\x61\x28\xfd\x57\xaa\x49\xff\xd5\xd6\xec\x55\x62\xff\x4e\xa8\x2e\xf0\x10\x6f\x67\x6a\x25\x8d\x37\x77\xaa\x03\x87\xa8\xdf\x8f\x03\xd3\xf7\xec\x97\xe7\xa7\x85\xc8\xcc\x13\xbe\xd9\x40\xe2\xdb\x6d\xea\x72\x30\x5a\xb5\x79\x4f\xf1\x6d\xef\x72\xb3\xc2\x76\x03\xfd\x3d\xbd\x41\x31\x89\x7a\x48\x4a\xbc\x5c\xc9\x9e\x64\xbd\x08\x8b\xe4\xf2\xb8\x1e\x65\x74\xa0\x31\x9c\xc4\xd9\xd9\x65\xe0\x6f\xb7\x9e\xdf\x98\xc8\xd3\xca\x80\x15\xe2\x68\x89\xa5\x36\x52\xa3\x11\x38\x77\x1f\xbf\x67\x93\x2e\xe6\x5c\x3a\xf5\xd2\x1d\x2c\xfd\x94\x68\x44\x7a\xcd\xaa\x5f\xb0\xf2\xab\xd5\xfb\xb3\xe2\x7a\x75\x8e\x38\xa6\x52\x7b\x3c\x93\x9f\x15\xb5\x24\x9f\x1a\xea\x1a\x39\x15\x58\x57\xab\x5d\xa0\xb2\xf5\x30\xb9\x87\xd7\x3d\x04\x6e\x58\x52\x6b\xe1\xc9\xe7\x33\x73\x5b\x59\x98\xbd\x71\x60\x15\x9b\x98\x7e\xe7\x28\x59\x57\xa5\x5b\xcc\xa9\xb7\x00\x5d\x51\xa1\x6d\xe7\x7b\x36\xb1\x68\xd8\x18\x47\x63\xdf\x39\xce\xc5\x7c\x3c\x13\xbc\xcb\x3d\x8e\xae\xdc\x2a\x2a\x97\xb9\x1d\xec\x4b\x97\xf8\x85\xe3\x43\xee\xa7\xd3\xdc\x93\xbd\x62\x5a\xcd\x25\xc7\xcf\xc5\x6a\xac\x55\xee\x07\x93\x35\x89\xa3\x9f\x3f\xfe\xe0\x71\x68\xc6\x0d\x82\xec\xc8\x01\xf0\x03\xb1\x8a\x89\xf4\xc0\x29\xf0\x61\x1c\x0a\x8f\xc1\x13\xff\x6a\x38\xae\xb4\x59\x5b\x7d\x72\xb0\xd1\xaa\x45\x5e\x7c\x04\x8e\xf3\x77\x3a\x65\x37\xf5\xd3\xad\xbf\xdd\xc2\x24\xe4\xa7\x06\x38\x0b\xd9\x72\x21\x61\xa4\xd6\x42\x7b\x63\x68\x2e\x50\xb6\xba\x96\x5c\x28\x7e\xa9\x0b\x6e\x70\x6e\x35\xbc\x1b\x65\x5a\x82\xaf\x3d\x10\xe0\x2e\x5a\x35\x77\x28\x7f\x5b\x45\xc7\xdd\x29\xf8\x60\x52\x5d\xb5\xe2\x51\x75\xe5\xf1\x93\x50\xd7\xf4\xcd\xc4\xe0\xcd\xfb\xb3\x8f\x00\x92\xd5\x08\xbc\x3f\x07\xf6\xd6\x61\xf0\xe3\x77\x44\x0a\xd0\x65\x94\x9a\x2e\x0d\x7e\x9a\xd6\x4f\xa5\xd6\x75\xf7\x3a\xbb\x83\x4f\x76\xe3\xcf\x9a\x5b\x3e\x9f\xc4\xd0\xea\xfb\x2e\x80\x52\x36\x85\x44\xcb\x55\xd7\x91\x7c\x4a\x98\x34\x27\x90\xb1\x78\x3a\x37\x4b\x02\xfd\x0b\x64\x37\x32\x82\x7f\x5c\x5e\x9e\xeb\xd8\x9d\x0e\x3a\x87\xbd\x70\xad\xde\x5a\x3d\xcb\xd2\xaa\x76\x76\xf9\x14\x9c\x3d\xc9\x6d\x70\x3a\x3e\x20\x31\x5c\xfd\xcf\x5b\x21\x9d\x15\xce\xae\x47\x8d\xeb\x4b\xf5\x12\x48\x9d\x25\x90\xc2\x0a\xf7\x6c\x71\x45\x2c\xac\x51\xdb\x6d\xdd\x31\x4b\x97\x73\xaa\x2e\xf8\x7a\xda\x12\xc2\x0d\xa1\xda\xdd\x56\x6f\xbe\xbf\xeb\x89\x63\xee\xc6\x4b\x38\x01\x0e\x59\xcc\x44\x39\x5a\x22\x5f\x2c\x89\x98\xa8\x88\x7e\x88\x6c\xf4\x83\x7e\x65\x14\xf1\xec\x29\x89\x5a\x38\xcf\xdd\xd4\x65\x21\xf4\x43\x02\x60\x1e\x1e\x1c\xa7\x50\x73\x2b\xd6\x93\x10\xdf\xd3\xd5\x7a\x04\xde\x9c\xff\x0c\x92\x9b\xac\x80\xc9\xcf\xfb\xe3\x77\xc0\x5c\x5e\x05\xce\x88\xb8\x56\x4f\xfa\xb6\x2a\xf0\xfe\xa7\xf3\x8b\x2e\x32\xbe\xee\x5a\xa9\x27\x81\x74\x72\xcd\x92\xc2\x6d\x15\xa3\xcd\x8f\xe6\xb9\xd3\x06\xa0\xc3\xad\x8d\x3c\xea\x70\xe6\xee\x1c\xb3\xc3\x5d\x4e\x4f\x7c\x76\x9f\x57\x5f\x3f\x14\xe6\xbe\x10\xac\xc3\x25\x61\x84\x63\x2c\xf1\xff\xc7\xde\xdf\x2f\xb7\x8d\x23\xfd\xe2\xf8\xff\x73\x15\x18\x3e\xf5\x9b\xb5\x6b\x28\x59\xf2\x5b\x1c\xef\x66\xf7\xe7\xd8\xc9\x38\xd9\xd8\xf1\xc4\x4e\x66\x32\xd9\xd4\x53\x10\x09\x49\x88\x29\x42\x03\x82\xb2\x9d\x6c\xaa\xce\x3d\x9c\x3b\x3c\x57\xf2\x2d\x02\x20\x09\x92\x00\x09\xea\xcd\xc9\xae\xe7\x9c\x7d\x62\x49\x24\xd0\x68\x34\x1a\x8d\x46\xf7\xa7\x41\xf9\xb7\xc5\x38\xf8\x5d\xb1\xeb\x8a\x03\xcc\xeb\x1c\xbc\xa8\x5b\x00\xb2\x56\x63\x1a\x58\xf1\x27\x71\xa5\xf3\x46\x07\x7f\xfd\xa4\xf4\x68\xf7\x12\x7f\x46\x67\x4f\xe7\x66\xb0\xa6\xe6\xc1\xb7\xcc\xe0\xba\x7b\xcb\xac\x62\x80\xb8\xb4\xcc\x3e\xce\x7f\x63\x59\xc5\x74\xff\x36\x79\x93\x3a\x40\xb2\xe0\x4e\xe5\xe6\x61\x23\x17\x24\xb1\x2f\x3c\xe1\x01\xce\x7c\x83\x50\x84\xec\xf8\xe2\xed\x93\xb0\x7b\x7c\xf1\x56\xf9\x8e\xcb\x5b\xd8\x15\xdb\x47\x4b\x81\x9c\x8f\xdf\x55\x98\xf6\x6f\xe7\x08\x7f\x24\xa1\xcb\x5f\x9c\x38\xe9\x89\x42\x82\xb4\x3b\x97\xfc\xdf\x17\x27\x36\xdb\xcf\x05\xb7\x6c\x5f\x9c\x70\x05\x2a\xa1\xd4\xdd\xf4\x6b\xee\x98\x2a\x2a\x86\xf4\x99\x36\x0c\x4d\xce\x3d\xd1\x16\xfc\x04\x6f\x75\x51\x95\xc9\xf7\xa5\xa7\x16\x66\xa2\xf1\x85\xec\x96\xf8\x0b\x0a\xe3\x89\xf0\x14\x1f\xfe\xd8\x73\x47\x88\xe9\x72\x84\xd2\x19\x68\x1a\x9b\x38\xf0\xad\x0f\x81\xbd\x92\x66\x73\x29\x28\xc9\x24\x25\x0e\xaf\x43\x72\x13\xa6\x4d\xe9\x22\xb2\x94\xf3\x5d\x96\x6e\x85\x36\xbf\xba\x38\x3a\x41\x33\x43\xf9\x7b\x75\x0c\x45\x98\x6d\x5e\x3b\x9e\x12\xdf\xea\xc5\x29\x25\x7e\xcc\xe9\xe1\xef\x5d\xa1\x6a\xbd\x34\xed\x7b\x0c\x99\x0b\x97\x65\x73\x21\xa4\x4a\x0b\xe8\x96\x8a\x5c\xf6\xa3\xf9\xad\x95\xae\x63\xf9\xf9\x2a\xd1\x53\x87\x4e\x44\x44\x24\x9c\xdf\x09\xf0\x68\xcc\xcc\x7e\x39\x41\xe9\x84\x54\x83\x0c\x04\xf5\xe2\x97\xea\x93\x2d\x44\x71\x9e\xf8\xe4\x1f\xc4\x15\x5b\x26\x4f\xb5\x57\x2d\xf2\xf3\xf3\x44\x2f\xb1\x43\xa8\xe4\xbb\x3a\x82\xdc\x2e\x89\xd9\x34\x96\x0f\x34\x4e\xb6\x88\x09\xa9\x4d\xf1\xe5\x05\xc3\x11\x4f\xf5\x9d\xe0\x08\x75\x08\x1f\x9e\xfa\x5c\x96\x2b\x66\x56\xe4\x4b\xc9\x71\x2c\x2f\xd2\x7a\x4c\xa4\xba\xc4\x47\x91\xab\x58\xae\x4e\xa3\x4d\x15\x4e\x83\xd6\x44\x22\x3c\xdf\xd1\xf2\xdb\xdb\x6c\x7a\x44\x0d\x8e\x64\x87\xe1\x4c\x3a\x84\x5d\x18\xb3\x31\xe1\x62\x29\x33\xba\x36\x78\xd8\x5a\x0e\xa5\xf4\xb3\xb3\x25\x92\xc1\xb6\xd2\xcc\xc9\x9a\xfc\xfd\x4f\x51\x42\x96\x19\xef\xe8\x0b\x9d\x7a\xdc\xf3\x85\xbe\x56\x1e\x62\x4a\x3b\x22\x15\x35\x65\xfe\xf1\x18\x86\x23\xb4\xe1\x08\x02\xba\xb2\x0d\x67\xd3\x65\xb2\x82\x40\x8e\x3e\x57\xc3\xab\x66\x0c\x3a\x25\x06\xf0\xeb\xa6\x1b\x8d\x49\x1c\xf8\x97\x63\x72\x73\x6e\x6c\x3e\x7f\xa5\xb1\xba\x93\x8a\x90\xd7\x65\x44\xdc\x0e\x2b\xc9\xdc\xe2\xde\x95\xa3\x98\x90\x09\xd2\xf0\x4e\xbd\x5a\x42\x39\xa0\x39\x67\x40\x29\x58\xaa\x89\xcc\x2f\xa5\x7d\x50\xd0\x2a\xe1\xa7\x93\xb3\x16\x8f\xb1\x86\xa3\x64\x22\x26\xd0\x3f\x2a\xb6\x5e\x88\xc2\x32\x8d\x30\x4d\x0a\xc3\xbe\xe3\xe6\xe1\xa8\xec\xdf\xff\x16\xf7\x4f\x3c\xc5\xb9\x44\xb5\x84\xa8\x76\x2d\x5a\xcc\xa1\xf6\x04\xd2\x5e\x35\xbf\x51\xe6\x14\xc9\x3b\xf5\xb4\x8e\xcc\x93\x27\xec\x6e\xca\x61\xae\xff\xb1\x61\x3b\xdc\x27\xcc\x86\x22\xb6\xb9\x79\xd8\xa2\x49\xb5\x60\x97\xcb\x36\x7f\xd0\xbd\x29\x82\xb3\x5f\x30\x34\x91\x2a\xb1\xd4\x8a\x44\xb0\xd4\x25\x0b\x67\x8a\x93\xa1\x5b\xd6\x99\x20\x18\xc5\x54\x5f\xc5\xa6\xf0\x80\xe9\xbd\xef\xce\x50\xab\x33\xe9\xc5\x76\xc1\x11\xc3\x56\x6f\xa0\x49\x5b\xbd\xb4\x1e\xcb\xeb\x4f\x0e\x2f\xc5\x7f\x47\x51\x84\x49\x58\x10\xa0\xab\x64\x40\xc2\xe0\xd7\x09\x7c\x7a\xf0\x8a\x83\xe0\xc9\x13\xf6\x0f\x7d\x43\x15\x79\x52\x1a\x75\x36\x0f\xed\x7a\x4f\x56\xc3\xd7\xaf\xbc\x1a\x76\x71\xdf\xa8\x00\xc3\x84\xd5\x64\x8c\xbe\x36\x19\xa3\xaf\x26\x63\xf4\x3f\x1e\x7e\xf1\x28\xf2\x51\xc8\x30\x0c\xa2\x43\x47\x66\xc4\x38\x3c\x94\xee\xab\x1b\xa9\x20\x9f\x92\xf4\x54\xbb\x44\x3f\xfd\xb4\x01\x3f\x38\xbf\x77\xce\xf9\x5c\x73\xaa\x9d\x8f\x4f\xa2\x4d\xb7\x88\x83\x87\xdc\xc2\x25\x48\xe8\x7e\x19\xf3\x9d\x25\x3a\x84\x5f\xeb\xe2\xaf\x85\x6c\x71\x8c\x8a\x4e\x80\x23\xb6\x3c\xe0\x89\x1f\x44\xee\xce\x17\xb5\x10\xad\x5e\xa0\x02\x4d\xd1\x61\x8a\xa0\xff\x3a\x0c\xee\x8c\x98\xbf\xe2\x50\xe7\xfe\xd8\x4b\x46\x86\x43\x5c\xc4\xc7\x7d\xf2\xe5\xeb\xd7\x64\xc1\xbd\x08\x7d\x74\xfb\x9c\xe8\xa1\x4a\x3f\xa0\x8f\xff\xfe\x77\x9f\xcb\x9e\xe6\xb9\xc4\x6e\x62\x3c\x25\xd4\xc4\xbd\xd9\x8a\x8a\x5f\x7c\xf1\x02\xe2\x5d\x1f\xfe\xe5\x6f\xd1\x6c\x04\x6e\x27\x41\x18\x3d\x71\xc6\x8c\x4d\x0f\xb7\xb6\x6e\x6e\x6e\xba\x37\x3b\x5d\x42\x47\x5b\xdb\xbd\x5e\x2f\xa1\xc1\x01\x37\xd8\x67\xe3\x27\xce\x81\x03\xc6\x28\x31\xc3\xf9\x9f\x33\x8c\x6e\x9e\x92\xdb\x27\x4e\x0f\xf4\xc0\x01\x38\x70\xfe\xfe\xb7\x29\x64\x63\xe0\x3f\x71\xce\x76\x41\xef\xb8\xdf\x3d\x00\xc9\x4f\xe2\xdf\xdd\x28\xf9\x77\x57\xfc\xbf\x0e\xff\xbb\xc3\xff\xed\x24\xff\xee\x7e\x9e\xf4\x40\xdf\xeb\x77\xf7\xf7\x41\x0f\xec\x80\x7e\x77\x67\x17\xec\x80\x9d\xcb\xbd\xe4\x9b\x47\x60\x17\x3c\x02\x7d\xc0\x3f\xf4\x79\x53\x3b\xbb\x9d\x1d\xb0\xd3\xd9\xf9\x3c\xe9\x74\xf7\x40\x7f\xb6\xdd\xdd\xde\x0e\xba\xfd\xfd\x6e\x7f\xa7\xbb\xd7\xdd\xeb\xee\xec\x76\x77\x0e\xba\x8f\xb6\x3b\xfc\x7f\x3b\x07\x9d\xe4\x0d\xf9\xbf\x77\xdb\xdd\xde\xf6\xb8\xd3\xff\xec\x6c\xfd\xfd\x6f\xc9\x00\xff\xfe\x17\x77\x8c\x13\xc3\xe6\x6e\x85\x2c\xe9\x81\xde\x6c\x77\xbc\xfb\xae\x77\xda\xfb\x3c\xd9\x03\xdb\xb3\x9d\xd3\xed\x59\x7f\xbc\xfb\x6e\xfb\x74\xef\xf3\x64\x9b\x7f\xb1\xcb\xbf\xd8\x3d\x7d\xa4\x92\xe6\x4c\x90\x8f\x61\x67\x0a\xe3\x08\x39\x2b\x24\xb0\x0f\xfa\xb3\xfd\xf1\xf6\xbb\xfe\x69\xff\xf3\x64\x17\xf4\xe4\x87\x3d\x1d\x2d\x01\xbc\x5b\x39\x29\xc1\x7e\x67\xa7\xb3\xdf\xd9\x51\xfb\xbf\x81\x94\x5f\x0a\xaf\xae\xeb\x9d\x6e\xef\x31\xe8\x79\x9d\x6e\x6f\x1f\xf4\x3a\xdd\x7e\xb7\xb7\xdb\x49\x84\xaa\xf7\xf8\x55\xb7\xb7\x0d\xf6\xbb\x8f\x93\xdf\xb6\xbb\xbd\xbd\x4e\xb7\xb7\xd3\xed\xef\x88\x7f\x1e\xcf\xba\x07\x7d\xaf\x07\xba\xbd\xbd\x6e\x6f\xb7\xdb\x7b\x2c\xfe\xff\x78\x3f\xf9\xba\xdb\xdb\x03\xc9\x4f\x8f\x3b\xe2\xb7\x4e\xb7\xf7\x78\xd6\xe1\x2f\x74\x44\x43\xfd\x4e\xb7\xbf\x9b\xb4\xd4\xe9\xf6\x1f\xbf\xda\xed\xf6\xfa\xdd\xde\xe3\xa3\x6e\x7f\x77\x3b\xf9\x1f\x5f\x46\x3d\xb0\xd3\x3d\x38\x00\xbd\x71\xf2\xe2\xe7\xb3\x1d\xb0\x33\xee\xcf\xb6\x4f\x77\xde\xed\x24\x6b\x27\xf9\xd0\x3f\xdd\x79\xb7\xaf\x70\xeb\xab\x4e\xa7\x30\x34\x99\xf2\x3a\xc7\xc5\x68\xa4\x95\x81\x01\x9d\x5e\x9d\xbd\x7a\x0a\x69\xd4\x4d\x3b\xde\xf8\x82\xfd\x43\xe7\xf7\x3f\xce\xff\x38\x79\x34\xbe\x76\xdc\x81\x50\x45\x5f\x9c\x88\x47\x61\x46\xce\xe1\x87\x8f\xae\xa8\x70\x24\xc2\x94\x0e\x3f\x7c\xd8\x77\x1d\x1f\xcf\x9c\x8f\xee\x87\xc7\xae\xc3\xcf\xac\x8e\xeb\x4c\xe1\x08\x75\x02\x78\x47\xe2\xe4\xa0\xfe\xe1\xd1\x47\xf7\x43\xcf\x75\xfe\xf5\xaf\x10\x80\xe4\x73\xdf\xfd\xd0\x3f\x70\x1d\x12\xb3\x00\xf1\x93\x3c\x0c\x22\x94\x3d\x93\x3c\x71\xa0\x7c\xfa\xe8\x3a\x63\x18\x3d\x9b\xc1\xc0\x39\xe4\x4f\x7e\xfd\x8b\x3b\x41\x0c\x1e\x7e\x99\xf0\x41\x0a\x98\x82\x7a\x2e\x76\xc7\x03\x63\x6c\x8d\xf6\x05\x03\x80\xc3\x7a\x66\xe0\x6a\x30\xbc\x19\xdf\xfe\xd1\xb3\x9b\x81\x26\x6e\x2e\x83\x7f\xca\xdf\x8b\xb0\x72\xe5\xe8\xf9\x06\x86\x1e\x0d\x77\xc3\xb3\x8b\x5f\xb6\xb5\x0c\x75\x98\xe3\x3a\x94\xdc\x24\x36\x75\x1a\x38\xe6\x24\xd4\xe5\xff\x0c\x12\x8b\xc4\xa3\xf1\x64\xe0\xb8\x8e\x18\x43\x65\x1a\x76\x5d\x47\x54\x0c\xed\x08\xe3\x4b\x9c\xfe\xdc\x0f\x1f\xe4\xaa\xf8\xe8\x7e\x10\xeb\x42\xfe\xfc\xf1\xa3\xfb\xa5\xda\x04\x82\xde\xd8\x71\x3f\x7c\xd8\xee\xb9\x1f\x94\x6e\x23\xe7\xe3\xc7\x8f\xa2\xc1\xf2\x4b\x3d\xd7\x01\x40\xac\xab\x7d\xd7\x09\x30\x5f\x60\xbd\x6c\x2d\x7e\xd8\xde\x4f\x9a\xdb\x73\x1d\x3c\x74\xe4\x5f\xe8\xcf\xf4\x2f\x1c\x7a\xc9\x9f\xfd\xc7\xee\x23\xf7\x43\xda\xc5\x47\xb7\xda\xbd\xeb\x08\x93\xd7\xc9\x1f\x72\x70\xd4\x11\x27\x5e\x47\x7e\x95\xfc\xa6\x2c\xf6\x84\x92\xdd\x84\xa4\xf0\xba\xc3\x48\xce\x0f\x1e\xaf\xcc\x19\x92\x74\xbc\xef\x7e\x70\x20\x1d\xf1\x11\x56\x59\x22\x47\x97\x8e\x30\x91\x75\xf1\x4a\x00\x07\x28\x48\x98\xa8\x11\xf7\x2c\x20\x9a\xaf\x97\xaf\xe9\xa0\x14\x4e\x1d\xd4\xbc\xb0\xef\x3e\x4a\xdf\x31\xb7\x95\xcc\x76\xcc\x18\xa2\x9d\x09\x0a\x63\xe3\x5c\x0f\x88\x7f\xa7\x9b\x69\x4e\x8a\x9c\xb2\x08\x79\xd2\x73\xa7\xaa\x50\xe5\x5b\x55\x7d\x66\x6f\x8d\xfb\xa5\x17\x18\x66\xdc\xff\x5b\x7a\x1c\x80\x23\xa5\x72\x9c\x60\x21\x9f\xdd\xb4\x5c\x2f\x3f\xb3\x57\xf8\x98\xb3\x3c\xa1\x70\x0a\x43\x9d\x58\x39\x83\x78\x32\x45\xb4\x13\xa0\x21\x03\x0c\x8e\x80\x53\x6a\x5b\x38\xda\x8e\x05\x4f\x72\xf1\x28\x93\x20\xaa\xc6\x88\x92\xdd\x2a\x29\x07\xf5\xe4\xa8\x83\x87\x23\x80\xa3\xce\x98\xe3\x69\x24\x7f\x45\x13\x18\x04\x20\x24\xc2\x1f\xc0\xab\x65\x0c\x09\x9d\x38\x06\x0a\xb0\x6f\xee\xb7\x28\x2f\xc5\x59\xa8\x6e\x7d\x03\x72\x8b\xfc\x8e\x9c\xbd\x8c\x12\xdd\xbc\xd8\x35\xc1\x45\x08\xe0\x30\xc0\x21\xea\xe4\x18\xdf\x91\xae\xc5\x3a\x0e\xc9\xf5\x92\xbd\xa4\x48\x85\x0c\x59\x77\x34\x1c\xaf\x6b\x71\x0a\x31\x05\x9f\xc8\xa0\x93\x2c\xf0\xb4\x65\xc3\xf4\xa0\x9c\xf5\x3d\x9e\x2c\xa9\xef\x4c\x74\xa7\xea\x8c\x0f\x39\x50\x64\x69\xca\x92\xaf\x12\x81\x4a\xd4\x98\xc8\xad\x91\x7a\x25\x5b\x8b\x85\x6a\x16\x1f\x53\xa5\xaa\xbe\xef\x2a\x2e\x52\x29\x04\x1f\x8d\x8a\xb6\x2c\x33\x79\x03\xb9\xec\xd4\x2a\x9f\x12\x57\x5b\xf3\x9a\x87\xbf\xb6\x66\xf6\xb1\xa8\x55\x66\xcd\x6f\x59\xc2\xa9\x9b\xd5\x38\x2b\x6a\x0b\xe2\x23\xf3\x5e\x54\xd1\x2d\x3c\xc0\xd5\x89\xc6\x84\xb2\x17\xfe\x72\xd8\x54\xfd\x6e\x81\x05\xba\xc0\xba\x4c\xb6\x71\xfd\x22\xe4\xb1\x2b\x35\xf4\xb6\x5c\xfa\x51\x67\x18\x07\x41\x67\x10\x20\x54\xea\x30\x9b\xbc\x88\x75\x18\x1c\x04\x28\x97\x7d\x11\xc1\x90\xf0\x9e\x50\x96\x5a\x52\xf2\xe3\x09\x8a\xbc\xb4\xd4\x7f\xbe\x61\x89\x99\x4b\x7e\x47\xbe\x84\xe2\xfa\x98\x5a\x02\x85\x46\x0a\xdf\x2a\x6d\x7d\x14\x26\x41\xc4\x28\x9e\x22\xdf\x60\xdf\x78\x64\x32\x25\xa1\x10\xac\x64\x2b\xef\xbb\x1f\x1c\xc1\xc9\x06\xfb\xa6\xb4\x46\x12\x4b\xa4\xc0\x39\x1c\x75\x42\x48\x13\x33\x4e\xb2\x48\x27\xed\x99\xbc\xeb\xc8\x48\x86\xd3\x19\xdc\x71\x4a\x12\x2b\x85\x92\x29\xdf\xc8\xd3\x15\xae\x21\xec\x5c\xfe\x64\x27\xcd\x73\xf6\x2f\x62\x8b\xf4\x04\x5c\xa6\xbf\xb5\xa3\x20\x63\xa0\x94\xa5\x57\x30\x62\x80\xa3\x67\x99\xf4\xc4\x5c\x94\xf3\xb0\xc7\xa8\x1b\xc0\x88\x49\xcb\x9e\x61\x23\x2f\xaf\xf0\x3c\xbc\x2c\x8f\xe4\x48\x20\x48\xa2\xa8\xc9\xca\x2b\x98\x72\xba\x41\x49\xd3\xad\x9d\x54\xd2\xd4\x4c\x22\xa1\x17\x60\xef\xda\x11\xfb\x93\xa8\x9d\x23\x1b\xef\x25\x96\xb6\xcb\xc1\xbd\x8f\xe5\x33\xfd\xc7\xee\xb6\xa2\x36\x95\xb3\x67\xc2\xd1\xc2\xaf\xb9\xfd\x2d\xc9\x2f\xae\x01\x1c\x32\x44\x33\xab\x5c\xa3\x9c\x8a\xf4\xfa\x4d\xab\xa8\xa0\x68\xf2\x13\x44\x48\x52\x56\xa9\x74\xfb\x3c\xda\x5e\xda\x71\x6e\xb2\xae\x03\x36\xce\x99\x68\xc9\xcb\xa6\xbd\x90\x11\x12\x30\x3c\x05\xdc\xb2\x13\x08\x9b\x29\xd7\x21\xc5\xb0\x23\x2c\x1d\x79\xf0\xd1\x52\xc8\xa5\x01\xe0\x08\xc4\xa1\x4a\xa3\x91\x5b\x39\x45\x7d\x31\x9f\xb7\x1d\xec\x09\xc7\x80\xf4\x7a\x71\x05\xaa\x18\xff\x38\xea\x64\xbf\x18\x6c\xeb\x72\xd3\x76\xc2\x5a\xe1\x95\x79\xc1\x96\x66\xd9\x7c\x2e\xfb\x60\x28\x70\xdd\x95\x81\x7b\x2d\xa5\xb3\xcc\x08\x19\xfd\x65\x3c\x06\x19\xf8\x5c\xea\x55\x7f\x4c\x59\x1d\xab\xaa\x14\x64\x7a\xd8\x74\x3c\xb1\x63\xbb\x58\x44\xa5\xb6\x85\xa6\xe4\x66\x7a\xaa\x2b\x1d\xd7\x91\xe1\xd9\xd6\x5a\xa8\x8e\x7f\x4d\x3d\xd8\x30\xb6\xcd\xc2\x45\xaa\x0d\x7a\x4e\x40\xd6\x53\x93\xa4\x2f\x63\xe6\x92\x35\x2a\xc2\x72\x3a\x43\x11\x90\x63\xcb\xf2\x74\x83\x72\xce\xce\xb6\x4e\x4e\xb6\xde\xbf\x07\xa7\xa7\x87\x93\xc9\x21\x17\x67\x21\x58\x73\x4e\xbf\x81\x4f\x71\xa0\x95\x92\x1b\xcc\xc6\x1a\xa2\x95\x0c\x8a\xd4\x59\x95\xfc\x39\xc4\x34\x1b\x83\x51\x58\x14\xef\x52\xff\xb1\xbb\xe3\x7e\x48\x5a\xe3\x91\xa8\x17\xc2\x15\xd7\x4a\xca\x40\xd9\xe7\x54\xaf\x3c\x95\xc7\x23\x46\x89\xd0\x98\xf9\x3a\xdb\x73\x3f\x38\xaf\x34\x1e\x9d\xc3\xba\x99\xaf\xb4\x0c\xd3\x7d\x60\x4c\xd1\x30\xf5\x51\xc8\x2b\x08\xa1\xc7\x92\x51\xe3\x29\x9f\xe0\x43\x27\xeb\xf9\x1d\x0c\x62\x94\x3a\x28\x1e\x27\x5b\x33\x1d\xa1\x44\x1a\xfe\x77\x10\xc0\xfc\xb8\xd5\x2f\x35\x51\xa6\xb3\x5f\x69\xb0\x51\x56\xf4\x02\x5e\x5d\x16\x7b\x05\x73\xa5\x34\x8d\xfe\x5d\x08\x27\xd8\xbb\xff\x59\xdc\xbd\xb7\x59\xdc\x5d\xf6\x2c\xee\xae\x62\x16\x77\x4d\x7e\xc5\x9d\x9a\x5d\xab\x59\xfb\x99\xed\xf5\x3a\x62\xb6\x4d\xc4\xf4\x35\xc4\x58\x1c\xba\x8b\x36\xa2\xea\x05\x18\xc3\xa8\x0c\xe2\x6b\x21\xa6\xf3\x1f\xe0\x5b\x1d\xe1\x73\xb7\xa1\x49\xfc\x73\xda\xc5\x11\x29\xb2\xf5\xe3\xd8\x1c\xef\x4d\x9d\x2a\xc6\x66\x39\xa9\xb1\x93\xec\x51\x01\x0e\x95\xd3\xbe\x6a\x92\x15\xb9\x2f\x96\x83\xde\xfe\x6c\xf6\xae\x34\x9a\x57\xb6\x8f\x2f\xf9\x0e\x4a\xdc\x23\x2d\x74\x13\x55\x4e\x4a\x59\xcf\x45\xd4\xab\x3f\xae\x0f\x8e\xc7\x7b\xfb\xdf\xe4\xcd\x1e\xe7\xc9\xc2\x4c\xbd\xaf\x3b\xbe\x37\x27\xb3\xf0\xcf\xde\xbb\x8b\xa6\x3b\xbe\xfc\xaf\xff\x82\x5b\xbd\xfd\xfb\xba\xd5\xdb\x6b\x7f\xab\xb7\xb7\xd2\x5b\xbd\x3d\x77\x7f\x7d\xb7\x7a\xfd\x6d\xf5\x98\x5c\x5d\x22\x51\x3c\x08\xe1\xcc\xe1\x8e\xa0\x42\x64\xc4\x1a\xae\x03\x9d\x7b\xb8\x03\x44\x8d\x57\x80\x0d\x87\xeb\x05\x5c\xfc\xdf\xf0\x1d\xdc\x15\x8c\xae\x17\xb9\x7d\xab\x33\x1e\xac\xee\x86\x2e\x19\xa4\xbc\xe4\x4d\xed\xfd\x90\xe9\x40\x5d\x9e\xc0\xa4\xa9\xa4\x25\xab\xd3\x73\x9d\x29\x62\x36\x25\x87\x59\x3a\xaa\xe5\x41\x67\x3e\x06\xb6\x60\x61\x9a\x20\x5b\xc3\xc3\x16\x5c\x2c\x8c\xaf\x3d\x1b\xe7\xf4\x24\xae\x58\xca\x4e\xa4\xd3\xb5\x5e\xc2\x54\x36\x08\xe3\x4c\xf1\xd6\xce\x6b\xc0\x6a\x75\x47\x55\xbc\xd2\x98\xfa\xd2\x6e\x78\xef\x87\x13\x13\xeb\xb3\x5b\x8e\x65\x1e\x45\x16\xbb\x69\xfc\x58\xe4\xa5\x76\xdb\xd7\xdc\xb4\xec\xb4\xbd\xff\xab\xbd\x01\xec\xab\x52\x27\xbc\x22\xff\xb0\xf1\x1d\x6a\x9a\xda\x56\x9a\x12\xd7\x7c\x96\xcd\x14\x2f\xa2\xec\xd7\xa3\x81\x39\xad\xae\xa1\x4a\x17\x51\x8d\xce\xc7\x8a\xd3\x34\x73\x4e\xef\xaa\xc1\x31\x91\xe4\x25\x27\xff\x3d\x77\x3e\x9e\x13\x6b\x7f\xa8\xd1\xb9\xbe\x5b\x63\x81\xb4\x68\xac\xee\x52\xa5\xd9\x9d\xc4\x65\x36\x8f\xfb\xab\xba\x95\x52\x0a\x79\x28\x60\xa3\x77\xa9\xf9\xfa\x48\xd7\x9f\xd9\x07\x55\xea\xbd\xe5\x4d\x52\x9b\x5f\x97\xec\xbc\x5a\xd8\xb9\x70\xff\x71\x1c\x6f\x90\x87\x42\x56\x76\xfa\x98\x06\xb6\xa6\x78\x0e\x25\x5e\x83\xfb\x86\x66\x88\x46\xa8\x62\x47\xa0\xa2\x97\xed\xbe\x23\x33\x76\x54\xa3\x17\xd7\x29\x53\x4b\xe5\x7e\x75\x37\xb5\x6d\x24\xdd\x0e\x50\xe4\x51\x3c\x4d\x85\xe5\x9e\x42\x03\xac\xee\xe3\x5b\x5c\x62\xad\xe2\xba\xaa\x7a\x77\xc8\x38\xb7\x57\x72\xf1\xb9\xcc\x2b\xce\xef\xfe\x32\xb3\xa9\xbd\xa5\xba\xec\xe7\x73\xde\x32\x1a\x2f\xc3\xcb\xb8\x24\x07\xee\x56\x40\x56\x94\x86\x57\xeb\x6a\x44\x67\x5e\x78\xf4\x7c\x27\xd0\xbb\x1a\xff\x0b\xdc\x8a\xdb\xf7\xe5\x56\xec\xb7\x77\x2b\xf6\x57\xea\x56\xec\xbb\xc6\x45\xf9\xdd\xbb\x15\xe5\x1e\xc4\x01\xce\x02\x32\xd2\x5e\x37\xc9\xb3\x7a\x25\xba\xba\x14\x24\xa4\xf3\x36\xea\x2e\xa6\xee\x53\x25\x25\xba\x64\x71\x8d\x94\xcd\xc1\x9a\x75\xd2\xcd\x0c\xee\x9d\xf9\x7d\xb2\x40\xd6\x1e\x83\x83\x88\x7b\x4b\xc5\x10\x34\x89\x7b\x9a\x78\x95\x8a\x3a\x79\xd4\x26\xba\xac\x9b\x5e\x16\x59\x0a\x8f\x8c\x2f\x13\x9a\xe4\x58\x8d\x32\x4b\x95\x8b\x76\xf9\xbc\x9e\x21\x3a\xc3\xe8\xa6\x6e\xc1\x57\xf7\xca\x39\x87\x24\xf7\xa4\xd5\x8e\xe8\x15\xe1\x4a\xd0\x6a\x34\xe5\x45\xb5\xfc\xf4\x4a\xc3\x2a\xb0\x5c\x4d\xfa\xea\xb5\xeb\x59\x36\xfd\xd9\xd5\xa3\x5e\x14\x46\x96\x17\xb2\xdb\xae\x13\xcd\x46\x9d\x29\x4c\xb4\x39\x4f\xce\xfd\x58\xde\xc1\xe2\x30\x40\x7c\x2f\x15\xb3\xcc\xeb\xf8\x37\x6c\xc8\x8e\x45\x4e\xac\xad\x05\x6b\x3c\x8a\x72\x42\x3a\x1e\x09\x19\xc4\x21\xd2\x9c\x46\x1a\xde\x54\x6c\x5e\x53\x60\x70\x8f\x0b\xee\x5e\xaf\x67\x65\xce\x3b\x75\x37\x57\x5c\x0f\x4d\xa1\x57\x38\x22\x5f\x22\x3a\x43\x14\x3c\x13\x2c\xad\x71\x77\x4e\xcb\xdb\x5c\x3c\x28\xdf\x87\x1d\x81\x48\xb4\xc6\x47\x07\xa6\x94\x1f\x99\x91\x0f\x7c\xc8\x20\x18\x52\x32\x01\x03\x84\xc3\x11\x88\x50\xc8\x0b\xb6\xb0\x31\x02\x22\x27\xa6\x6b\xb1\x4b\x69\xac\xb5\x02\x93\x76\x7b\xbb\x2b\x62\xd2\x39\x61\xe0\x39\x89\x43\x7f\x51\x0e\xfd\x36\x86\x0c\xdc\x91\xf8\x5f\x7f\xa1\x08\x04\x84\x5c\x27\xdc\x18\x12\x0a\x3c\x12\x07\x7e\xf8\xaf\xbf\x30\x30\x40\x60\x98\x74\xd5\x05\x2f\x18\x40\x98\x8d\x11\x05\x3e\x41\x11\xff\x11\xdd\xe2\x88\x01\x42\x93\x36\x00\xe4\x65\x6e\x18\xc8\x61\x56\x12\x9e\x46\x08\x01\xbc\x24\x7e\xee\xac\x90\x9f\x47\x19\xd5\x55\x5d\x5a\xa4\x44\x02\xf5\xa4\x50\x2e\xad\x2e\xa9\x2c\xe6\xe4\x3d\x89\x29\x28\x9b\xca\x1f\x9c\x08\x31\x86\xc3\x51\xd4\xe5\xdd\xa7\x67\x7f\x5d\xa7\x47\xc7\xaf\x80\xa0\xb1\xc1\xf6\x4d\xa6\x91\xcf\xd8\x94\x92\x19\xf6\x11\x97\x7f\x8a\xfe\x8c\x31\x45\x3e\x98\x22\x3a\xc1\x91\x28\x17\x06\x8e\x13\x9d\xe2\x71\x59\xa1\x00\xfa\x13\x1c\x62\x5e\xca\x93\x50\x80\x87\x1c\x9f\x0c\xe0\x08\xc0\x50\x2c\xb5\x79\x66\x7b\x4e\x6e\x5d\x48\xd2\x61\xb8\x1e\x9e\xdd\x60\x36\x16\x3c\x8a\x30\x43\x2a\x93\x12\x61\x4f\x0c\x10\x81\xd6\x66\xe1\x37\x68\xc7\x94\xf6\x52\xbd\x14\x1d\x7a\x49\x26\x88\x8d\x13\xb5\x70\x93\x28\xc9\x1b\x4a\xc2\x51\x57\xef\x1f\xb5\x1a\xa2\xde\x81\xb2\xab\x39\x8d\x26\x4b\x2d\x05\x2f\x2d\x80\x6d\x26\x4d\xa8\xf8\x9e\xd6\x99\x27\xe9\xa8\x29\xd2\xee\x7e\x11\x83\xde\x75\x87\x51\x99\x4a\x2a\xb3\x2f\x3d\x9e\x0d\x99\xbb\xcd\x0e\xe4\xe3\x97\xdc\xdb\xa7\xba\xcb\x5a\xdd\xc9\xb6\x77\xd4\xcc\x7f\x20\xca\x8d\x2f\x3b\x6b\x4d\xa6\x87\xde\x03\x86\xc3\x79\x4c\xd9\xc1\x0b\xf4\xdd\xc3\x92\xa4\x09\xb6\x6d\xd8\xbd\x95\x65\xe3\xae\x99\xeb\x97\x97\x2f\x07\x57\xaf\xa6\xa7\x7a\x57\x17\x2c\xc4\xd3\x4d\x95\x4f\xab\xf0\x78\xa9\xf6\xad\x2e\x5a\xbd\xaa\xe3\x53\x56\xa7\x5e\x38\x93\x12\x38\x96\x42\x6d\x71\x23\xa5\x5b\x9b\x19\x3d\xc5\x0b\x0b\x53\x1a\x9e\x99\x4e\x7d\xce\x35\xae\xb9\x83\xa9\xc4\x51\xb5\x4f\xb5\x6e\x75\x1d\xf2\xbd\x80\x5e\x38\x0d\x51\x6b\x3c\x97\x5e\xc0\x53\x08\xf8\xe2\x4a\xdc\x1a\xbf\xf8\x49\xf6\xf1\x0c\x97\x22\xf3\x58\xea\xae\xff\xa4\xb3\x8c\xd0\xca\x5d\x5c\x7a\xb5\x6d\x9a\xa8\xba\x90\x1e\xe7\x01\xf1\x62\x69\xd1\x76\x62\x91\xdf\x77\xbc\x1d\x17\x25\x73\x24\x54\x9d\xcc\x4a\x71\x4d\xe6\x57\x60\x41\xe8\xe1\x56\x9a\xc2\x2c\xeb\x31\x56\x1a\x02\x89\x56\xc5\x19\x6d\xb8\x4c\xb1\x9d\xf2\x58\xd2\xaa\x63\xed\xe2\xc3\xd6\x10\xed\x26\xaa\xa3\x35\x9d\x14\x95\xe8\x9a\xec\x8d\x76\x57\xca\x1a\x5a\x54\x11\xc1\x51\x07\x87\x43\xa2\x90\x96\x18\x86\x8b\x9e\xbe\x00\xe0\xbc\xb6\xba\xef\xbc\x17\xfe\x3f\x0b\xf0\x08\x0f\x70\x80\xd9\x9d\xfd\x14\x88\x97\x02\xfb\x7b\x68\x9d\x40\xca\x34\x1d\x1c\x8e\x0a\x34\x2c\xe3\x36\xda\x7a\xc6\x95\x7c\x74\xed\xfa\x6f\x22\xb1\xcd\x75\xf6\xfd\x2c\x2f\xc8\x60\x9e\xf4\x6f\xab\x2b\x7c\xe5\xad\x6f\x4c\x5b\x88\x1a\x87\x96\x92\x9a\x01\x16\xa4\xef\xb5\x88\x59\x2d\x72\xc7\x12\xc5\xa0\x22\x57\xb5\x31\x68\x3a\xd6\xd7\x91\xac\x36\x05\xc8\x50\x3f\x75\x88\x21\x8f\x21\xbf\xe9\x75\x65\x60\xd3\x20\xa6\xbc\x7a\x4c\x32\x36\x19\x44\x6c\xdf\xaa\xc6\x1e\xcb\x81\x22\xe6\x5c\xbf\x47\x41\x00\xea\x5b\x68\x1b\x3d\x57\xfd\xa6\x56\x70\xfc\x64\x8f\xb9\x64\x14\x32\x34\xb2\x89\x5d\x6a\x69\xed\x69\x36\x9b\x79\x83\x90\x2d\xed\xbe\x36\x96\x1f\xdf\x60\x41\x3e\x7a\x2b\xf3\x6b\xf9\xa9\x02\x27\x08\xfa\x3c\x6f\xd3\x72\xb1\x17\xe7\x2c\xd9\xa6\x9e\x13\xca\xdd\x78\x6d\xc3\x81\x35\xb4\x0d\xa0\x3f\xe2\xae\x41\x1f\x86\xa3\xc2\x75\x90\xe8\x04\x88\xda\xae\x8b\x7a\xe6\x4d\x63\x19\xc3\xe8\x9c\xe4\x0c\xb1\x1e\xd0\x39\x01\xbe\x7c\x6b\xee\xc0\x2e\x45\x53\x88\xc0\xba\x8e\x1f\xd3\xf4\xfe\xb1\x9e\x6c\xbf\x4c\x71\xbd\x36\xb4\x75\x71\x56\xfc\xdb\xf3\x88\xc7\x30\x99\xb7\xd6\x2c\x9d\x57\xea\xdb\xa4\xc8\x48\x81\xd2\x8a\xbf\x71\x6a\xea\x13\x65\x9a\x06\x3f\x4f\xee\x4c\xf2\xdf\x86\x86\x02\x4a\x26\x9d\x90\xdc\xcc\x31\x01\x1f\x3e\x38\x1c\x90\x69\x06\x03\x71\xa2\xeb\xf5\x4a\x1b\xe8\x66\xcb\x10\x40\x03\x50\xc0\xca\x75\xd7\x8b\x51\x48\x28\x02\x97\xbc\x6e\x11\x78\x49\x06\x51\x4d\x62\x85\x53\x4e\x28\xa8\x57\x6b\xbc\x69\xd1\x72\xd2\x70\x7d\x96\x81\x4e\x6b\xdb\x9d\x61\x5b\xb1\xf6\xfe\xa3\xcf\x8b\x0d\x54\x50\x3b\x23\x1b\xdd\x7e\x33\xc6\x0c\x99\xce\x02\x05\x90\x71\x8d\x51\x75\x60\xe4\xac\x9c\xdb\x08\x41\xea\x8d\x3b\x03\x72\xab\xc4\xa9\xf3\xef\xae\x12\xe1\x49\xec\x30\xe8\xa1\x31\x09\xb8\xbb\x37\xf7\x8c\x86\xd3\x98\x1d\x17\xc2\xd8\x27\x71\xbe\xc2\x95\x16\x94\xf0\xc1\x4b\xfe\x2d\x50\xe3\x6e\xba\xdd\x14\xf2\x2c\x59\x6f\x60\x1a\x07\x41\x87\xf2\x4a\x64\xfc\x6b\x8f\x4c\xa6\x50\xe2\xe1\x98\x5c\x6b\x6b\x88\xe3\x9f\xc2\x11\x0e\xe5\xe6\x52\x05\x67\xe4\x36\x2a\xf7\x9a\x3a\x25\x08\x46\x65\xa6\x73\xe7\x61\xf2\xe0\x65\xf2\x4e\xf6\x8d\x17\x53\x8a\x42\x76\x21\x63\xa8\xb5\x61\xa2\x4b\xc2\x87\x94\x19\x29\xbc\x50\x48\x7b\x64\xc8\x1b\xcc\xc6\x9d\x21\x21\xcc\x32\xfd\x60\x6f\xa9\x89\x61\x36\xd0\x90\x99\x63\x5e\x47\x8a\x11\x9c\x31\xf7\xb7\x6b\xe8\x7b\x71\xd2\x0e\xd1\xb0\x35\x09\x8a\x07\x3c\x59\xd7\x78\x78\xf7\x42\x04\xd4\x39\x67\xfc\x13\x10\x1f\xf5\xd4\xf1\x47\xb0\x48\x08\x59\x21\x8d\x4b\xc7\xd0\x9c\x6f\xa2\xb8\x9f\xa4\x8e\x1d\x39\xfe\xf4\x8a\x49\xf9\x44\x06\xdd\x1a\x86\xbc\x14\xc0\xc6\xab\x27\xe2\x1d\xa2\x91\x8c\x48\xd4\x90\xa1\xfc\xda\x96\x94\x72\xee\xcd\xf1\xc5\xdb\x26\xa3\xaf\xfc\x8a\xa8\xad\x6b\xbf\x65\x1b\x46\x3f\x47\xf6\xa4\xdc\xdc\xf2\x9d\xa6\xc3\x6f\x37\xb5\xb1\xcf\x1e\x09\x19\xba\x4d\x36\x1c\x12\x0a\x2c\x4f\x05\xd4\x3e\x8d\xef\x4c\x61\x90\x8d\x48\xa0\x23\xc2\xc8\x91\x5a\x6e\xa2\xd4\x80\x12\x30\xdf\xe4\x49\x34\x62\x5c\xec\xd5\x1b\x8e\xda\x60\xe0\x00\x49\x85\xdd\x60\x3d\xca\x60\xe1\xe2\x45\x7b\xba\xe9\x35\x1f\x20\xb4\xf7\xf4\xf2\xf5\x4e\x18\x4f\x06\xd2\x3f\x56\x9f\xcd\x9a\xa7\x4c\x72\x24\x82\xe8\xa8\x9c\x2e\xf9\xff\xfe\xcf\xff\x2d\x3e\x87\x42\xbf\xfa\x54\xd9\x0b\x55\xdd\x8c\x0d\xfe\xa7\x86\x7c\x4a\xab\xf5\x9a\x50\x35\xa5\x68\x56\x85\xd1\x54\x38\x92\x3c\x80\x89\x50\x54\x3a\x81\xfe\x9b\xf6\xdc\x39\x87\xf6\xd8\xe5\x89\xaa\xb7\xac\x96\x1a\xf9\x80\x96\x92\xbf\xcf\x45\x49\x16\x63\xae\x17\x08\x61\x7e\x34\x41\x3c\x9b\xfc\x3b\x56\x09\xae\xee\x87\x36\xb8\x67\xb5\x92\xbc\xfa\x63\x82\xbc\xd5\xfc\x66\x93\x54\xf3\x45\x94\x21\xbf\xcd\x91\x8c\xba\xbd\xc4\x64\x54\x35\xb3\x7f\xee\x64\x54\xb5\x91\xcb\x78\x20\xeb\xf9\xb6\xca\x48\x3d\xb3\x4d\x22\xac\xd9\xe3\xb6\xef\x3d\x1b\x75\x67\x2d\xd9\xa8\x6a\x2f\x51\xce\xee\xa5\xa5\xa4\xee\xb4\x49\x49\x35\xbd\x98\xc1\x95\xb4\x43\xe0\xb4\x38\xc7\x47\xc8\x23\xa1\x0f\xe9\x5d\x25\xbc\xa2\xca\x9e\x2a\x68\xca\x9c\xc8\xd2\xa0\xb0\xb3\xea\x39\xf4\x1f\x9a\x68\xbb\x63\x32\xa3\xb6\xbf\xcb\x3d\x42\x5c\x72\x01\x71\xc0\x59\xd6\x1e\x61\xde\x15\xa0\xe7\x11\xea\xeb\x3d\x1e\xd7\xe8\xae\xbc\x2f\x64\x57\xa0\x1f\x5d\xe3\x39\xb1\x09\x9f\xe0\xc3\x07\x67\x10\x33\x46\x42\x01\x3f\xcb\xaf\xf4\x6f\xa7\x30\xf4\xf9\x06\x95\xd8\x2c\xbe\x0c\xfb\xc9\x72\x42\x31\x2f\xc0\x9e\x5d\x04\x36\x66\x94\x56\xd9\x53\x09\xd0\xf1\x48\x10\x4f\xc2\x48\x73\x87\x05\xa4\xf9\x9f\x27\x07\x19\xa9\xe0\xdb\xcb\x10\xfa\x7c\xdf\xd5\x65\xca\x6a\x17\x4e\x75\xc6\x04\x31\xa0\x04\x9c\x60\x06\x54\x49\xf5\xcf\xa3\x42\xe6\xac\xa4\xcf\x16\x9e\xc5\xe2\x98\x57\x47\xe9\x76\xbd\x96\x36\x4c\x5b\x4b\xe0\x80\xd2\x58\xf5\x4c\xd1\x3c\xac\x9b\x6e\x42\x3b\x11\xaf\x9f\x0b\x2a\x82\x25\xae\x7b\x2b\xc0\x77\xf5\x18\xc2\x8e\x06\x8a\xa7\xd2\x26\x77\xb4\x39\xa7\xf2\x6f\xd7\x79\x9b\x57\x31\xb0\xb8\xe1\xa8\x4e\x53\xab\x5d\x61\x81\x19\x6e\x25\x86\x2d\x2e\xa2\xea\xdf\xae\x5c\xc2\xa6\x82\x53\x3f\x17\xfa\x55\x61\x9a\x98\xc2\xfa\x9d\x13\x21\xa9\x11\xf2\x48\x33\x38\x1c\x75\xa6\x71\x10\x20\x5f\x7a\xbe\xe7\xe6\x92\x0d\x8f\x5b\x70\x99\x17\x94\x79\x3b\xf5\xa1\x05\xa7\xeb\x78\xad\xb9\x82\x2b\x32\x3e\xe6\x7d\xc8\xda\x31\x8d\x17\x6e\x4d\x13\xbe\x0c\xe4\x24\xf3\x2f\x6b\x42\x9a\x29\x27\xee\x94\x12\x37\x2b\xba\x5d\x28\x8f\x02\x3e\x4e\x13\xc7\xe6\xb7\x65\xda\xb5\x50\x0b\x82\xa7\xb4\x24\xa5\xc5\x83\x53\xcc\xd2\xc0\x1f\xfd\x0e\xa6\x0b\xee\x39\x62\x8c\xe2\x41\xcc\x0a\x70\x7a\xfa\x09\x34\xee\x47\x30\x6b\xa3\xf0\xe1\x92\xd1\xd8\x63\x31\x6d\xb9\x51\x2d\xe9\xa8\xae\x17\xf2\xd4\xc1\x99\x11\x59\x3e\xc6\x17\xc6\x52\xb8\xff\xd1\x0e\xf8\x72\x2c\xb1\xc9\xaa\x4d\x36\xd7\xbe\xb1\x58\x21\xcb\xe5\x97\xa5\x8a\xd4\x64\x41\x4f\xa6\xec\x4e\x9f\x05\x5d\x6d\x25\x6b\x67\xbc\x53\xd7\x0c\x97\xef\x34\x26\x22\x3f\xf5\x48\x7b\x3d\x97\x4b\x9b\xcd\xca\x56\x77\xd9\x9d\x9e\x6c\x35\xd7\x92\x8a\x07\xd8\x4f\xe2\x4a\x0e\x48\x1a\x0d\xb0\xe0\xe9\xc8\x66\x59\x2e\xb2\x18\x8b\x37\xf9\x16\xca\xa7\xc5\xea\x5c\x60\xe8\x66\x16\x9f\x21\x06\x8d\xa1\x18\xa6\x10\xa7\x09\x62\x70\x11\x7d\xba\x74\x3d\xba\xb4\x29\xab\x1f\x59\x2b\x55\xba\x98\x0a\x5d\x82\xea\x5c\x54\x65\x2e\xa2\x2a\x13\xb1\xb2\x52\x94\x06\xe3\xa8\xd8\x47\x69\x94\x57\x63\x1c\x49\xcc\x07\x90\xfc\xc5\x13\x8e\x93\x29\x12\x99\xde\x21\x01\xc9\x34\x82\x7c\xae\xb4\xc9\xcf\x66\x05\xdd\x46\x31\x97\x5b\x68\xa1\xa0\x17\x4a\x53\x95\xff\xb6\xcb\x56\xbd\xa7\x12\x10\xe4\x0f\x7f\x67\x34\xba\xbb\xd1\x27\xab\xae\x3f\x3d\x75\xd1\x74\xd0\x95\xa5\xad\x7e\x7b\x49\x9e\xd5\x3d\x80\x47\x3b\x0f\xb0\xef\x73\xdc\x05\x9b\x78\xf5\xfe\x36\x1f\x14\xc3\x30\x88\xb6\x86\xe9\xcb\x99\xfe\x29\x62\xf5\xb4\x8e\x64\x0e\x89\x8f\x5a\xe6\x5b\xd4\xf8\x43\x42\x26\x8b\xad\x36\x2b\xd4\x47\x73\x46\xdc\xb5\x0e\xae\x4b\xc5\xae\xdb\x75\xea\x0f\xcd\xad\x84\x69\xa1\x28\xb8\x73\xce\xf4\x6f\x26\xfe\xad\xbf\xbe\xf8\xb7\x65\xde\x78\x2e\x50\x18\x79\xbb\x26\x84\x08\x2f\x2b\xec\xcd\xbe\xef\xcc\x5d\x95\xd1\x10\x75\xb6\x7b\xbd\xe9\x6d\x62\xbe\x31\x1a\x87\x1e\x94\x13\xbd\x96\xb2\xcd\x75\xdc\xc9\x53\x6d\x97\x14\x6b\x36\xcf\x0c\xa9\xb9\xa5\x3a\x3a\x64\x92\xc7\xaa\x59\x61\xca\x3a\xd4\x50\x54\x7a\x62\x29\xd5\xa0\xeb\xad\xc2\x96\x83\x29\xa6\x12\xea\x78\x5a\x78\x60\xb1\x01\xfc\x0f\xe0\xa1\x47\x8b\x95\x11\x98\x2b\x48\x20\x75\xa9\xf1\x3d\xa1\xc3\xd3\xcd\x0b\x71\x70\xb2\xb4\x7f\x29\xee\x6d\x47\x8d\x7b\xab\x0d\x78\x3b\x17\x31\x71\xa5\x77\x5a\x84\xba\xb5\xba\xa3\x5d\x28\xd0\xcd\x59\x24\xcc\xcd\xd8\x6f\xbb\x20\x37\xa7\xe0\xb9\xb5\x09\x71\xeb\xb7\x0b\x71\x3b\x2f\x9b\x37\x0d\x69\x9e\xad\xd6\x53\xff\x3e\x02\xdb\x6a\x68\x59\x6b\x58\x9b\xb3\x78\x50\xdb\x7c\xc7\xc7\xfe\x9c\x27\xff\x9a\x63\xbb\x53\x83\xc7\x55\x31\x90\xdd\x5e\xab\xba\xef\x8b\xb8\x01\xb2\x93\xd0\x32\x8f\xff\x95\x45\x78\xc5\x21\x20\xe3\x88\x21\x0a\xa4\xe1\x19\xdc\x81\x31\x8c\x40\x48\x52\x3f\x01\xe7\x42\xb7\xfd\x3d\x50\xfd\xe1\x43\x63\xb7\xaf\x92\x9d\x67\x90\x79\xe3\x65\x7b\x53\xce\x53\x1e\x45\x60\xc2\xaf\xcc\xd9\x18\x01\x86\xe8\x24\x3b\x2e\x56\x4a\x0a\x1f\xb8\x85\x91\x37\xa4\x26\x81\x9a\x85\xd9\x2e\xe1\xba\x65\xe6\xe6\x3c\xbe\x98\x36\x20\x6d\x05\xb7\x4a\x3b\x4f\x4c\x40\xa0\x38\xc8\xac\xdb\x17\xf3\xeb\x6f\xa3\xfd\xd7\x93\x3b\x3d\x70\xd8\x83\xfb\xe5\xde\xdd\x2f\x89\xda\x12\x50\x51\xc2\x56\xcd\x7d\xde\x05\x37\x8a\x94\x9f\x4e\x34\xc5\x61\xc8\x61\x14\x3e\xae\x49\xd8\x65\xcf\x96\xe2\x9e\x6e\xf2\x2a\x14\xb5\x30\x58\xd7\x2d\xf8\x17\xb7\x2f\x7e\xbe\x7b\x73\xf0\xc9\x1a\xa7\x50\xc4\xa6\xd6\x9d\xd8\x4d\x2e\xb2\x42\x2e\xca\xfc\xd0\x20\x8e\x39\xaa\x83\x90\x80\xe1\x29\x50\xe4\x44\x3e\x01\x29\x86\x9d\x40\x06\xdb\xe5\xe9\x11\xc0\x47\xd3\xc4\xe8\x04\x24\xcc\x31\x33\x80\x9f\x83\x9c\xe8\xae\xee\x5a\xc0\x91\xd4\xc3\x90\xb4\x5a\x65\x26\x3e\x26\xa6\xdf\x91\x0a\xd7\xbe\x3e\xe6\xdd\xc0\x08\xe4\xd5\xbe\xb5\x97\x50\x5a\x7e\x8d\x71\xc4\x64\xb6\x54\x89\x5f\x32\x8e\x70\x41\x6e\x15\xaf\xea\xcc\xe1\xd4\x8d\x00\xf9\x29\x0a\x0b\x2c\xf2\xb7\x4c\xf5\x94\xe2\x09\xa4\x66\xfd\x06\x0a\xe7\x97\xc2\xec\x55\xf0\x0f\x17\x1c\x5f\x2d\x18\x41\xa1\x67\x91\x7e\x79\x55\x08\x81\xb7\x89\x7f\xd7\x76\x59\x95\x4a\x63\x00\x66\xe1\xfd\xa2\x16\x21\x21\xea\x94\x8c\xbb\x6c\x37\x6a\x13\xd8\x58\x25\x47\x28\x69\x23\x32\xa2\x79\x7e\x4a\x2f\x36\x60\xac\xd6\x82\xff\x32\x79\x46\x73\x3e\x91\x81\x0d\xce\xaf\x1d\xa3\x8b\x79\x91\x3a\x1f\x78\xa5\x1d\x1b\x2c\xcf\xe2\x64\x72\xd8\xe0\x26\x48\xcf\xea\x2b\xad\xe0\x3d\xe7\x3e\x6f\x98\x19\x2d\xe8\x9e\x83\xd3\x86\xf9\x54\xc0\x32\xcb\x73\xc0\x05\xf8\x22\xf7\x9f\xd7\x3c\xf5\x06\xa5\x46\x6e\xee\x3f\x6a\x38\x21\x75\xbb\xdd\xd6\x57\xe5\x55\x1d\xf7\x89\x0c\xa2\x2e\xa7\xc2\x40\x5d\xea\x03\xfb\x33\x46\xf4\xae\x23\x2b\x19\x65\x16\xdd\x27\x32\x48\x8c\x20\x0e\xcd\x9d\xdf\x7b\x68\x86\x18\x66\x4f\xa5\x58\xb0\xed\x64\x27\x6f\xc5\x46\x6e\x34\x51\x1f\xfa\xc0\xd3\x34\x46\x3d\x9d\xe1\x2d\xf3\xaa\x67\x30\xba\xfe\x85\x92\x78\xda\xa0\xc9\x6c\x8f\x58\xcb\x5a\xcc\x2d\xcf\x8b\x3a\x35\x6b\x34\xa3\x0d\x32\x0f\x43\x3f\xfd\x33\x24\xca\xc5\x1c\x83\x85\x7a\x8d\xe2\xdb\x21\x62\xde\xf8\x92\xff\xc4\x25\x3d\x0e\xc3\x16\x72\xde\x42\xca\x0b\x24\xaa\x74\xc1\xaa\x25\x64\xe8\xb5\xbd\x4f\x23\x19\xd7\x33\x8b\xf2\x28\x4b\x30\xb2\x8e\xb3\x92\x15\x1e\x09\x02\xe4\x31\x20\x19\x7e\xff\x16\x69\xfd\x90\xab\xde\x39\x99\x5c\xe2\x8d\x21\x65\x40\x0e\x3f\xdd\xc5\xd5\x31\xcb\x5a\x6e\xb9\x70\xb9\x8e\x37\x8d\xdf\x46\x32\xc0\x08\x6c\x65\x3b\x7b\xfa\x33\x45\xbc\x24\x8a\xcf\xd3\xf5\x93\x47\xce\x4e\x3f\x3b\xda\xe4\x93\xd4\xfd\x43\xc9\x28\xbd\x5f\x51\x1d\x9b\xf2\xeb\x14\x14\xae\x90\xb4\x96\x90\xc9\x0f\x55\x5a\x0a\xa7\x88\x26\x93\x28\x28\x48\x4b\xed\x4e\xe0\xad\xe3\x3a\x86\x2c\x96\x82\x27\x5b\xd7\x8a\x65\x88\x5b\x55\xc1\x2c\x50\xb2\xa0\xd9\x3a\x7b\x50\x1b\x0f\x6a\xe3\x5b\x56\x1b\x39\x36\xde\xe0\x8e\x07\x32\x96\x16\xea\x84\xe3\x73\x48\x6d\x92\x05\x92\xd4\x28\x95\x14\xd0\x83\xeb\x15\xfc\x74\x51\xbd\x22\x50\x0b\xdb\x6b\x96\x8c\x8c\x45\x95\x4b\x3e\x9e\x7b\xd6\x2f\xf3\x07\xf8\x99\x7c\x66\xed\x5d\x6e\x79\xb0\x6a\xea\x73\x5c\xbb\xdb\xed\xf9\xde\xbb\xa3\xcf\x8f\x5e\x53\x7d\xec\xdf\x35\xba\x73\x52\xe9\xd0\x39\x9f\xb3\x4a\xaa\x7b\xae\xd3\x49\x3e\x74\x70\x0e\x06\xa9\xc4\xf3\x36\xa9\xd0\x82\x42\x4c\x4e\xe0\x7c\xb4\x9a\xaa\xa9\x56\x8a\x4b\x9f\xa5\x5f\x73\xe0\x8f\xe2\xc1\x18\xc9\xb3\x90\xf8\x8d\x04\x5c\xfb\xb9\xce\xb6\x59\xc2\x8b\xfa\x75\x4a\xd1\x10\xdf\x9a\x75\xab\xdd\x79\x40\xde\xde\xa4\x8d\xa9\x8b\x44\x06\xc9\x9a\x4f\x20\xd9\xfd\xf5\xdc\x8b\xcb\x14\xa8\x9d\x49\x67\x7a\x06\x93\xf4\x15\x42\xe8\x3f\x16\x4b\xe0\x16\x78\x22\x83\x22\x48\xe8\x29\x6e\xa0\xfc\x57\xa7\xeb\xe4\xb4\x67\x7b\xb2\xee\x0b\x21\x0b\x0b\x25\xd0\xdb\x0b\xc9\x7f\xea\xb4\x97\x86\x99\x6c\x00\x02\x0e\x4d\x6e\x00\x2a\x9f\x95\xdc\xb7\xed\x42\x17\x75\x92\x64\xa5\xa4\x8b\x25\x80\x17\xd7\xc5\x15\x71\x5d\x44\x1f\xcb\x68\xb8\x75\x6b\xe3\xd1\xce\x94\xee\x6f\x9d\xfd\x66\x7f\x09\x92\x26\xea\x97\x23\x73\x40\x8e\x15\xc3\x53\x34\xf0\xad\xf8\x43\xc2\x3b\x0a\x5b\x80\x5e\xa3\xb0\xea\x2f\x4f\x85\x43\x9f\x94\x62\xb5\x7c\x34\xc1\x94\x24\x44\x1d\x36\xc6\xb4\x50\x23\x10\xea\x61\x64\x1c\x4d\x48\xd7\x3b\xb9\x09\x35\xda\x07\x7a\x87\x87\x3e\x46\xc1\x52\xdd\x95\xb5\x5c\x75\x77\xb3\xa8\xc9\xbc\x02\xf3\xa3\x24\xaf\xad\x05\xbe\x12\xa5\xb6\x6e\x79\xff\x63\xda\x0f\x0e\x1e\xbd\x1f\xac\xe1\xd2\x4f\x7a\x82\xef\xf1\xba\x4f\x42\x4e\x8d\x61\xf4\x4d\xdf\xf1\xd5\x5c\xb1\xd8\x78\xec\x25\x9f\xb1\xdf\xf6\x8a\xaa\x5f\x6c\x60\x4e\x97\xbd\xd1\xc6\xd3\x86\x3b\xeb\x76\x3f\x95\x08\xa5\xe4\x7a\xc1\x5b\x5a\xfc\xb9\xcd\xed\x54\x3a\xba\x9a\x82\x42\x56\xd7\x00\x2a\xab\xed\x2b\xe1\x98\x65\x78\x95\x15\x70\x1a\x2a\xdf\x2c\x32\x72\xeb\x02\x34\x8e\x66\x0e\x96\x5f\x77\xc6\x9a\xbf\x86\x7a\x33\xb6\x94\x35\x3a\xff\xed\x25\x51\x57\x0e\xca\xfe\x6d\x7d\x81\x98\xf9\x67\xb4\x08\xae\xad\x5e\x65\x2d\xcd\xf9\x66\x16\x88\x26\x64\x6f\x6b\x8e\x2f\x63\x73\x2f\xed\xcd\xad\xf7\x76\x1f\x47\xc2\x3a\xe0\x69\xa8\x90\xae\x7f\x73\x7f\x79\x1e\xc7\xe3\x9e\x87\xf5\xae\x05\x1f\xb2\x78\xc2\x1d\x6c\x02\x78\xf9\x27\xd9\x66\xd5\xcf\xb0\xcf\x8b\xc7\x1b\xac\x54\x1f\x0d\x35\x9b\xa7\xfc\xd1\x0b\xf0\xf4\x02\x16\xcc\xc8\xb2\x8d\x49\x91\xc7\x4a\x4b\x75\x02\xa3\x6b\xf9\x55\x42\x58\x4f\xfe\x7d\xa7\xfc\x7d\x83\x7d\x36\x76\x5c\xa7\xdf\xeb\xfd\xff\xe4\x57\x63\x24\x31\xd4\x95\xef\x68\xf2\xfe\xf6\xf4\x36\xfd\x78\x97\x7f\xac\x86\x2c\x5b\x5a\xb2\x23\xa7\x0c\x76\x97\x5b\x0f\x66\x73\x53\x5d\x6e\xdb\xee\x4e\x73\x59\xfd\xbe\xbb\x23\xcf\xf3\x63\x18\x8d\x73\x53\x38\x59\xf0\x8e\x48\x4f\x98\xa1\x13\x3e\x87\x99\x49\xfc\xbf\xfc\xc7\xfc\xd6\x59\x7d\x46\xde\xbe\xb6\xd6\xa9\x4e\x03\x74\xd8\x18\x52\xd6\x49\x0d\x30\xa7\x52\x3c\x01\x47\x47\x32\x7e\xf1\x63\x4a\x34\x97\xb9\x2c\xaa\x31\x47\x0a\x4b\xda\x8e\xd8\x1d\x37\x04\x92\xc3\xb8\x6c\xf4\x92\x7f\x95\xf9\x20\xb4\x72\x46\x02\xad\x7a\xcb\xbc\x63\x2a\x73\xac\xd3\x1f\x45\x30\x66\x79\xc4\xea\x00\xb3\x88\x83\x14\x62\x24\x45\xe9\xae\xf2\xdf\xcd\x7e\xcc\x9c\xce\x1a\x16\xd4\x64\x71\x18\x83\x5e\xb8\x75\x5b\xe2\x7c\x99\x30\xe9\x40\xcc\x23\xdb\xb9\x45\xc6\xa3\x9e\x2d\xc0\xda\x9a\x28\xa8\x84\xdd\x94\xc1\xa6\xf8\xd3\x69\xf2\x9a\xfe\xcb\x82\x7b\xca\x11\x6d\x75\x1c\x57\xef\x7e\x6c\x42\x25\x73\x0a\xc9\x24\xb2\xaa\x52\xdb\x52\x1c\x75\xc6\x44\xea\x90\x2d\x01\x13\x65\x6c\x9e\x3f\x05\x55\x71\xca\xb8\x1f\x96\x53\x56\x7b\xde\x0d\xb0\xbc\x81\xb5\xde\x01\x87\x14\x21\xbe\xa0\xb7\xa2\x51\xa7\x08\x86\xb2\xf6\xbd\xf0\xfd\xe9\xbb\x8b\x67\xcf\x7e\xff\x55\xbf\x17\xca\x5b\x32\x11\x7c\x31\x4b\x0e\x8d\xc9\x79\x6a\x5d\x5f\xeb\x1c\xfb\x19\xef\x3a\xea\xfb\xd9\x26\x20\x86\xfc\x4f\x01\x4a\xe9\x9c\x13\x3a\x81\x81\x2d\xfe\xa4\x90\x54\x41\x87\x3c\x22\x5e\xdb\x34\x94\x93\x14\xcb\xbc\xf4\x12\xd6\x46\xc8\xdf\x96\xff\x88\x03\x72\x5e\xe5\x41\x34\x0d\x9e\x26\x6f\x80\xcb\x74\xe4\x35\xc8\x95\xce\x02\x58\x5d\x76\xef\xd6\xa2\x74\xe9\xe8\x35\xae\xe3\x96\xfd\xce\x05\x4a\x32\x21\xde\x75\xa7\x21\x01\xbf\xe9\x75\x3c\x51\x32\xa3\x5a\x42\xa4\xc9\xfe\xa7\x77\xab\x7c\xdf\xcc\x56\x9d\x8b\x72\xbe\x80\xa8\x3a\xe8\xba\x9a\xb5\xf1\x82\x9f\xc8\x17\x5a\x19\xe9\xa1\x5e\x5d\x17\x49\xb3\x4b\x5f\x15\x4b\x29\x6b\xf8\xb0\x3a\x1e\x56\x87\xf5\xea\xf8\x2d\x73\x7e\x2e\xb2\x40\x0a\xce\xd5\x7c\x8d\xc8\xc6\x57\xb2\x4c\x4a\x8e\xa0\x87\x95\xf2\xb0\x52\x56\xbb\x52\x4e\x64\xdd\xd2\x85\x16\x4a\x5e\xfc\x54\x5d\x27\xa2\xe9\x95\x2c\x93\x4a\xb5\xd5\x87\x55\xf2\xb0\x4a\xec\x57\x49\xe5\x98\xdb\x2f\x07\xee\x4b\x97\xcd\xf2\xce\x3d\x05\xe7\x8f\x5c\x8b\x51\x6d\x71\x8c\xf2\x2a\x7e\x6c\x5c\xc4\x7c\x8d\x27\xed\xf2\xcf\x06\xf8\xa6\xc6\xb5\xcc\xa1\xaf\x3b\x63\x18\xfa\xfa\x33\x53\x29\x66\x27\xed\x53\xfe\xfe\xd1\xd5\x9e\xa9\xc0\x6f\x98\x8d\xc1\x9b\xa4\x69\x70\x0a\x43\x1f\x9c\xc8\x02\x02\x99\xeb\xc4\x1e\x5b\xa1\xe2\xe9\x29\xaa\x05\x19\x33\xc4\x83\x0c\x83\x78\xa4\xde\xd3\x59\xaf\xb3\x36\xb0\xc9\x56\xe3\xac\xf7\x5d\xa9\x51\x99\x79\xdd\xcd\x62\xce\x5c\xa8\xc2\xc5\xb4\x45\xe5\xd6\x2f\xa9\xa5\xe8\xaa\x85\xb5\xd5\x12\xf4\xd5\xe2\x1a\x6b\x39\x3a\x6f\x99\x58\x95\x2d\x35\x57\xcf\xf4\xcb\xe3\xef\x40\xa5\x3d\xaa\x55\x69\x07\x8b\x6a\xb4\x00\x0d\x59\x87\x57\xff\xb1\xd5\x68\x07\x05\x85\xa6\xb5\x03\xc4\x4a\xbf\x4a\x1e\x02\x27\xc8\x23\x34\x45\x2e\x5a\x8d\x3e\x3b\xb8\x47\x75\x56\x1e\xa4\xb5\x32\xd3\x57\x4e\xee\xb9\xce\xa3\x76\xab\xe5\x41\x51\xfd\xc7\x28\xaa\x03\xd3\x0f\x8f\xbe\x03\x3d\xb5\x57\xab\xa7\xf6\x17\xd5\x53\x19\xa8\xa5\xad\x9a\xda\x2f\xaa\x29\xcd\xd2\x7d\x2e\x80\xd8\x56\xa3\x93\xf6\xef\x51\x27\xbd\x82\x74\x84\xc0\x29\xc7\xaf\x59\xb6\x06\x01\x0a\xba\xe8\x83\x2e\x59\x9e\x2e\xb1\x9e\x04\x2b\xd6\x97\xaa\x4e\xbd\x4a\x36\x79\x18\xe0\x51\x88\x7c\x7d\xa1\x3b\x4d\x1b\x50\x92\x31\xa6\x68\xe8\xb8\xce\xff\x34\x1a\xe3\x3d\xd7\xb9\x22\xa3\x51\x80\x00\xa1\x80\xb0\x31\xa2\x00\x66\x37\x3e\xf7\xa7\x55\x2d\x0b\x15\x7f\x9b\x5a\x75\xa7\x56\xab\xee\x2e\x45\xab\x06\x89\xba\xc8\xe0\xae\x1a\xd4\xea\x6e\xa3\x5a\x55\xb5\xcf\xca\xd4\xeb\xee\xba\xd4\xab\x65\x23\x95\x68\xea\xa2\x2e\x69\xa3\xa4\x35\xcb\xd8\x68\x36\x02\x91\x89\x95\x98\xa0\x83\x78\x32\x45\x94\xdb\xf3\x0a\x25\x29\xfc\x49\x5b\x25\xb5\xac\x81\x9b\x07\xc2\xe0\x28\xa1\x9e\xc4\x2c\xc0\xc5\x8c\x8a\x23\x90\xfc\xc6\xc6\x90\x81\x11\x41\x1c\xe0\x09\x02\x51\x97\x14\x24\xcf\x82\x01\xf2\x60\x1c\x21\x80\xd9\xbf\xfe\x12\x01\x0a\xb9\xaa\x09\x24\xa0\xdf\x5a\x95\xf1\x83\x4d\xfd\xad\xdb\xd4\xbb\xa6\x1f\x76\xbe\x03\xed\x6f\xbe\x93\x48\xc1\x96\x17\xd7\xfe\x3e\xa4\xd7\x99\x1c\xd7\xaa\xfe\xed\x46\xd5\x7f\x02\xe9\x35\x78\x2a\xda\x5a\x8d\xde\xdf\xbe\x47\xb3\x3a\x1b\xdd\xd2\x6d\x6a\x99\x59\xf6\xa0\x49\xbe\x65\x4d\xb2\xdd\x58\x88\x6c\x19\x21\x7c\xe6\x08\xbc\x05\x83\xf9\x28\x82\xbe\x47\xe3\xc9\x20\x5a\x7f\x28\xdf\xab\xab\x57\xec\xe5\xe0\xf9\x7b\x6b\x84\x56\x9d\xea\xca\x07\xd0\x89\x18\x0c\x7d\x28\xf2\x22\xd5\xdb\xd4\x4b\xf9\x3d\x78\xaa\x8c\xb6\x01\xba\xb4\x2a\x8d\x21\x9c\x0d\x20\x2d\x14\x43\xaf\x2e\xad\x86\xb7\x3b\x98\xe5\x05\xc6\xab\x41\xeb\x5a\x8c\xf7\x7c\x84\x49\xdf\xdc\x2a\xd7\x2d\x69\x47\x8d\x75\x36\x5e\xed\xea\x4e\x6f\xd9\x21\x6d\x8a\x3d\xdd\x9a\x31\x7d\xb7\x50\x6f\x97\xf1\xa0\xc3\xe6\xee\xd1\x0e\x58\xd7\x8e\x12\x11\xd6\x0e\x5a\x0c\xbf\xfc\x8d\xad\x4a\x29\x19\x12\x30\x0c\x09\x53\x4b\xd2\x98\xc3\xd9\x15\xc1\x05\x90\x22\x40\xc2\xe0\x0e\xa0\x19\xa2\x20\x8e\x90\x0f\x70\xc8\xa1\xac\xf3\x22\xfd\x21\x9c\x01\x32\xe4\x5f\xca\x3c\x41\x20\x0e\x72\xc6\xdc\x9e\x7a\x9b\x47\xbf\xdc\x70\x38\x92\x46\x81\xba\xd8\xf8\xb7\x0a\xc5\x0f\x2b\x6d\x81\x95\x76\xff\xa2\x36\xc2\x33\x94\x9c\xb4\x02\xc2\x12\x91\x42\x93\xe9\x18\x46\x38\x02\x30\xf4\x01\x19\x32\x14\x02\x9f\xc4\x83\x00\x01\x18\x01\x08\xa6\x70\x84\x00\x17\x86\x2e\xb8\xc4\xa1\x87\x12\x19\xbc\xe3\x0d\xc1\x20\x22\x40\x60\x6c\x73\x10\x23\xe4\xe6\xbf\xe1\x49\xb2\xef\xc0\x90\x81\x21\xa1\x60\x8c\x82\x29\x0e\x47\x00\x26\xd2\x4d\xc1\x35\x42\xd3\xe4\x51\x4c\xc1\x00\x41\x8a\xc3\x51\x54\x2f\xc6\xcb\xdf\x70\x73\x9e\x2c\xb8\xdd\xc6\x8c\xf1\x9c\xb8\x75\x6f\xb5\xbb\xb7\x88\x9d\x8c\xa1\xa1\x30\xdd\x32\x43\xd8\xf3\x4d\xd8\x2e\x88\xdd\x1c\x5f\xd5\xd0\x92\x4e\x3b\x09\xf6\x5a\x18\x02\x72\x1e\xe6\x0b\xa9\x4a\x38\x68\xb5\xf6\xb3\x37\x78\x77\xca\x2b\x4f\xb3\x2f\x8c\xc1\x50\xfa\x36\x74\x37\x83\xbf\xa5\x9f\xe7\x68\x2b\x28\x79\x6a\x5f\xa5\x9f\xe7\x68\xab\x74\x56\x39\x91\x1f\xe7\x68\x69\x10\xc0\x02\x87\x9f\xa6\x9f\xe7\x1a\x61\x78\x5d\x18\x60\xa8\x6d\xa9\xc6\xe4\x58\x9e\x04\x00\x35\x6f\x3f\x7b\xfb\x22\xff\x66\x8e\xf1\x95\xa2\xc3\x5f\xc8\x8f\x73\xb4\x14\xc5\x9e\x27\x31\xcf\x32\x23\x2d\xfb\x66\x1e\x39\xad\x04\xe4\xfe\x96\x7f\x33\x97\x7c\x95\x22\x17\x4f\xb2\x2f\xd6\x13\x0b\x6a\x56\x55\xd2\x5d\xa9\x55\x28\xf5\xaa\x2a\x7f\xb3\xa8\xaa\x5e\x8b\xef\xef\x47\x53\x19\x3c\xb0\xaf\x95\xaf\xe6\x98\xbf\xd4\x12\xd5\x37\xbe\xf8\x2a\x30\x34\xbc\xf8\x8a\x30\x34\xbc\x94\xd5\x61\x68\x7b\x19\x2b\x45\x6d\x9a\xf3\x28\x35\xb2\xbe\xc9\x25\x34\x26\x41\x40\x6e\xda\x2f\xa0\xf4\xbd\xe2\xf2\x39\xe5\xdf\x2e\x69\xf5\x3c\xce\xd2\x99\x9d\x01\xf4\xae\x47\x94\xc4\xa1\x7f\xf8\x3f\xdb\x7b\x4f\x8f\x0e\xfa\x7f\x05\x53\xe8\xfb\x38\x1c\x1d\xee\xf4\xf2\x84\xf4\xf9\x97\x06\x0e\x67\x88\x32\x31\x63\x2b\x5b\x26\x0d\x9d\x2c\x67\xc9\x34\x74\xb2\xb4\xe5\xd3\xd0\xcf\xb2\x96\x52\x43\x37\xdf\xce\x4a\x8a\xf0\xe7\x76\x09\x3c\xa9\xd5\x2c\xdf\x2b\xae\x24\xb1\x84\xc0\x25\xfe\xac\xdf\xde\x56\xbb\x0b\x65\xd8\xaa\xa9\xd0\xa4\x9f\x5b\x4e\xa5\xd2\xc4\x79\x16\x28\x34\x87\x38\x4c\x90\x8f\xe3\x89\xd2\xda\x59\xf6\xc5\x3c\xb6\x69\xc9\xc5\xf0\x2a\xfd\xbc\xf2\xa8\xfd\xd5\x1d\x95\x85\x30\x2d\x76\x4c\xe6\x38\x04\xf7\x70\x4a\x9e\xfe\x11\x9e\xbe\x7d\xbf\x7d\xbe\x88\x43\x5a\xd2\xde\x08\x0b\x22\x42\xd4\xf3\x06\xa6\x30\x40\x8c\x29\x05\xa2\x79\x43\x17\xe9\xb7\x29\xb2\x96\xe3\xa3\xc8\xa3\x78\x9a\x06\xd0\xa4\xb0\x3b\x13\xe8\x5f\x8d\xd1\x24\x4d\x27\x98\x40\x1f\x88\xcf\xae\x73\xe4\x79\x28\x64\xdc\x61\x13\xa2\x98\x51\x18\x44\x5d\x0d\xb6\x59\xe6\x5f\x5a\x2e\x69\x53\x4a\xfc\xd8\x63\xc7\x92\x2d\x1f\x93\x2d\x8c\x7f\x03\xe4\x57\xae\x23\xfe\x00\x43\x4a\x26\x32\x40\xe8\x14\x46\x63\x7c\x4c\xe8\x14\xc8\xd7\xa3\x2e\x78\xcd\x9d\x4d\x03\x42\x29\xb9\x41\x3e\x77\x14\xc1\x80\x21\x1a\x42\xee\xbf\x85\x7c\x94\xc2\x2f\xc5\xe9\x03\x91\x97\x30\x60\x9d\x63\x45\x13\x92\xd0\xa2\x8c\xf5\x99\xf8\xa6\x32\xd6\xd4\x6d\xeb\x91\xf0\x93\x14\x6c\x1e\x42\x07\x60\x08\x78\x2b\x24\x84\x01\xa0\x28\x9a\x92\x30\x42\xba\x21\xac\xd1\xfd\x25\x44\x7a\xb1\x25\x5d\xc6\xa0\xe8\x7c\x8a\x27\x03\x72\x0f\xb8\xa0\x9f\xf7\x9f\xbf\x7b\x7e\xf5\xd4\xe0\x08\x1b\x43\xca\x04\x18\x97\x0a\xf5\x62\xb7\xf2\xf9\x88\x2a\x03\x35\x69\x82\xdd\x64\xab\x2c\x03\x4b\x95\xb0\x81\x32\xc0\x3f\x21\x5e\xea\xf3\x4f\x21\x3d\x91\x18\x41\x4e\x34\x0d\x30\xeb\xcc\x30\xd2\x9a\xcf\x45\x40\x35\x52\x2e\x02\x1b\xa0\x11\x0a\xf5\xa0\x62\x69\xa4\x82\x34\x37\x96\x04\xbb\x23\xaf\xeb\x0b\xa8\x31\x4e\x0d\xec\xcd\x76\x01\x8f\x47\xd2\xd2\x80\xc8\xa3\x5e\x0a\xa5\xc8\xf0\xf5\x3d\x2c\x02\xac\xe3\x2c\x02\xab\x53\xe1\x85\xfe\xcb\x1a\x58\x9d\x9d\x96\xb0\x3a\x4e\x1b\x34\x9c\x6d\x3b\x34\x9c\xba\x56\x25\x6c\x4f\x5d\x10\x43\xde\xd7\x9c\x18\x3f\x4d\x06\xd2\xb6\xbb\xd3\x80\xc6\xa3\x41\xf0\xb1\x32\xcc\xe7\xba\x64\x69\x6b\x2b\x1f\x01\x6e\xeb\xf3\x6d\x42\xde\xeb\x9d\x28\xca\x00\x3c\x85\x14\x64\x9a\x97\x6f\x8d\x37\x63\x24\x2e\x05\x55\xa5\x01\xc4\xb5\x1a\xff\x3e\xd9\x2d\x29\x0c\x94\xd7\xd2\x0b\x43\x38\x42\x5d\xf0\x82\x07\xd1\x41\xc0\x4d\x54\x0a\x44\x29\x06\x11\x7d\x47\xd1\x9f\x31\xa6\x88\xd7\x1c\xe6\x59\x75\x22\x9c\x17\x30\x02\x22\x84\x44\xa7\x90\x25\xaf\x0e\x50\x20\x36\x64\x2e\x41\xb2\x28\x71\x79\x02\xcd\xbc\xa8\x87\x87\xb1\x7b\xaf\x31\x92\x46\xb1\x02\x3e\x45\x24\xe4\x6a\x54\x2d\xff\x9a\x7c\xd9\xa4\x82\x6d\x80\x62\x5b\x19\xf1\xcb\xdd\xbf\xf5\x7b\xef\x72\xf7\xf3\xf5\xef\xe4\x11\x39\x3d\x7b\x7b\xf3\xfb\xc9\xb2\xaf\xb4\x16\x8f\xc2\x9b\xe3\xe6\xaa\x32\x45\xca\x15\x56\xfd\x76\xdb\xca\x7d\x25\xa0\x15\x0f\xf7\x7a\xd3\xdb\xbf\x02\x0e\xbd\x78\xc8\xd1\x7c\xff\x6a\x3e\x9e\xcb\xb5\xd1\x60\xab\xcc\xb5\x40\xd6\x71\x9d\x3d\xaf\x67\xe2\x4a\xa7\x3a\x45\xed\x9a\x29\x25\x89\x9c\x73\x13\x3d\xb8\x03\xd1\x98\xdc\x08\x85\x87\x79\x44\xb2\x88\x7f\x18\x40\x9a\x28\x51\x80\x43\x2f\x88\x7d\x94\xa8\xd2\x14\x5b\x91\xc4\x99\xae\x1d\x90\x5b\x17\xc0\x28\x8a\x27\x48\x68\xe5\x08\x7f\x46\xe9\x8f\x1e\x09\x19\xc4\x21\xa2\x00\x05\x7c\x54\x2e\xd7\xa5\x38\x02\x3e\x8a\x44\xd2\x06\x23\x60\x80\x00\x67\x8a\x2f\xce\x0f\xc7\x97\x97\xdd\x39\x2f\xb5\x96\x86\xc6\x65\x13\xbc\xb8\x3a\xb5\x5b\x37\xf0\x75\xba\xe1\xf8\x74\x70\x06\xb5\xb9\x17\xaa\x28\x02\x1e\x8d\x9b\x35\xf3\xdd\x2b\x83\xdf\x30\x1b\x1f\x67\x4c\xf9\xfe\xf4\xc2\x8b\x21\x80\x80\x1f\x0f\x13\x3d\x30\xc3\x62\x69\xcb\x96\x3c\x51\x9e\x34\x7d\x4d\xb1\xe0\xb3\xe1\x70\xed\x91\xec\x80\x2e\xc0\x0c\xdc\xe0\x20\x48\x56\x30\x8c\xf2\x05\x2d\x96\x3e\x15\x67\x7f\x1f\x87\x23\x43\xeb\x29\xde\x6e\xda\x70\xae\x24\x82\x80\xdc\x24\xef\x25\x76\xa0\x17\x47\x8c\x4c\x84\x47\x04\x7f\xe6\xbc\xf9\xef\xd0\x0f\x76\x82\xf6\x6d\xa8\x8a\x61\x80\x6e\x15\x6c\xf2\x79\x4d\x06\xee\xbf\xef\xf4\x57\xa2\x25\xfa\x8a\x96\xd8\xff\x0e\x4d\x86\x46\xb6\x6d\xaf\x84\x6d\x42\xa1\x4a\xbe\xed\x7c\x7f\x6c\x5b\xb9\x46\x3d\x29\xdb\x58\xaa\x35\xe4\xe3\x09\x0a\x23\x4c\xc2\xa8\x62\x13\x99\x94\xd8\xea\x17\x6b\x80\x67\x08\xc4\x53\x1f\xb2\x56\xb7\x6c\x15\xb9\xcb\x9b\x58\xf1\xa6\xbe\xfa\xe5\xfa\x86\xcb\x48\x38\xfa\x8f\x90\xbf\x10\x4f\x92\x93\xaf\x30\xa7\xb9\x5d\xef\x8d\x61\x38\x4a\xdd\x17\xff\xe9\xfb\xa6\xc5\x5c\xae\x66\xd3\x5c\xdf\x1d\xe5\x72\xf1\xb0\x87\x24\x64\xe9\xdd\xf9\xfa\x2b\x43\x9c\xbd\x7f\xf9\x76\x70\xf5\x7a\x91\x1b\x4b\x75\x00\x16\x45\xf5\xad\x17\x97\x7c\x7e\xdc\x2f\x3d\x9e\xc5\x16\xa8\xb7\xde\x02\x31\xa7\x2a\x57\xb2\x91\xa9\xf2\xfc\x25\x99\xa0\xc4\x8c\x8e\x50\x62\x2e\x0f\x45\xa4\x4f\xb2\x39\x70\x5f\x65\x1a\x7d\x7e\x4e\x18\x08\x91\x87\xa2\x08\x52\x1c\xdc\x81\x09\x4a\xc3\xcb\xa9\x28\x50\xd9\xad\xf7\xcf\xcd\x3f\xde\x6d\xdd\x78\x93\x75\xbb\xeb\x94\xe3\x06\xfe\x83\x46\xbd\x63\x1a\xf5\x9e\x53\x0a\xdf\xf8\xe6\x06\xbd\x46\x57\xac\xb2\xd6\x96\xa1\x75\x18\xf4\xae\xef\x21\x4e\xe2\xf2\x6a\x18\xce\xde\xed\xef\xac\x20\x9b\x40\x54\x89\x4e\xe6\x87\xd1\x18\x2d\x9c\x43\xd0\x81\xd3\x69\x80\x3a\xd1\x5d\xc4\xd3\x81\x6c\x8d\x35\xce\xdd\xe2\xab\xc5\xa8\xa8\xc6\x76\x0b\x26\x49\x25\xca\x80\xdd\x4d\xd1\x10\x7a\x4a\x98\x41\xd2\xe3\x73\x38\xc1\x81\x9e\xee\x56\xb7\xff\x4b\x31\x73\x9f\x06\x38\xbc\x3e\x83\xde\x25\x27\xe1\x39\xe1\x4f\xb4\x61\xdf\x80\x17\xb8\x9b\x40\xcf\xc0\x42\xbb\x0e\x16\xe4\xa3\xb6\x93\xf5\x33\xf3\x12\x8d\x08\x02\x6f\x5f\xb4\x64\x61\x94\xbc\xd6\x89\x71\x99\x75\x75\xcd\x2d\xc8\x30\xa5\xe9\xf5\xb3\xe9\x0d\x19\x10\xd6\x02\x9b\x9f\x33\x89\xca\x97\x8a\x2c\x32\x37\xb5\x20\x83\xb2\x86\xd7\xcf\x9e\xd7\xb7\x77\x23\x14\x82\x4b\xa8\x8f\x68\xae\xe1\x11\xe1\x6f\x76\x22\xfe\x66\x29\xd1\xa0\xbe\xd1\x05\xb9\x25\x5a\xef\xc8\xd6\xd7\xcf\xb2\xb7\x83\x38\x64\x71\x4b\x6e\xc5\xf2\xa5\x22\xa3\xcc\x4d\x2d\xc8\xa3\xac\xe1\xf5\xb3\xe7\x18\x86\x0c\x52\x14\xb4\xa8\x14\xc3\x39\xe4\xe5\xef\x15\x99\x54\xdb\xe0\x82\x7c\x52\xdb\x5e\x3f\xab\x4e\x51\x30\x43\x0c\x7b\x10\x9c\x23\x11\x0d\xd3\x82\x5f\xe3\xf4\xe5\x4e\x88\xe2\x4a\xca\x74\x73\xd3\x0b\x72\xae\xd2\xc1\xfa\xd9\x97\xa8\x9e\x4e\x84\x28\x1e\xb6\xdd\x03\x95\x17\x8b\x6c\xab\x6f\x72\x41\x96\x15\x1a\x5f\x3f\xbb\x26\x24\x24\xd1\x34\x21\xb0\x1d\xb7\x94\xf7\x8a\xcc\xaa\x6d\x70\x41\x5e\xa9\x6d\x2f\xce\xaa\xf5\xf9\x81\x94\x33\x54\xeb\xc3\x98\x48\x64\x4f\xe1\xf1\xd6\x7e\x02\xdb\x79\x7b\xe6\x5f\x1c\x53\xa8\x3f\x81\xd5\x56\x00\xad\xe2\x1e\xe4\x78\x0b\xd5\xe4\xd4\x7a\x9f\x80\xc4\x5a\x18\x50\x58\x0e\x21\x05\xb5\x21\x81\x0a\x46\x03\xcf\x83\x20\x23\x6d\x85\x23\xd9\x00\x9e\xa4\xa5\x3a\x23\xea\x39\xae\xb3\x15\xe3\x2d\x8e\x4d\x14\x6d\x89\x49\x4a\xde\xef\xca\xca\xa6\x8f\x5d\x07\x06\xcc\x91\x41\xf0\x8e\x11\x01\x62\x2e\x1f\x88\xa4\xdb\x14\x30\x5b\x8e\x2d\xe5\x3e\x56\x8f\x84\x43\x3c\x72\x5c\x07\x85\x33\x4c\x49\x38\x41\xe2\xa4\xe3\xf8\x68\x86\x02\x32\x15\x9f\xd5\xf0\xcd\xfa\xf5\x59\x2c\x1d\x9e\x09\xb4\x53\x2a\x11\x5e\x80\xc1\xd0\x2e\x79\x5e\x8f\x73\x14\x63\x1f\xd9\x20\x82\xd4\x3e\x01\x8c\xb8\x17\x63\xc6\xa6\xd1\xe1\x96\x98\xa8\x29\x25\x7c\x39\x60\xb2\xe5\x13\x2f\x32\x0b\x85\xc2\xdd\x13\xe2\xc5\x09\xd5\x50\x0f\x19\x5a\xe5\x48\x84\x18\xe3\x18\x11\x8c\x5c\xa3\xd4\xde\x6d\xc3\x97\xa3\xe3\x57\xe0\x4a\xbe\xdb\xc4\x97\xaa\x2b\xa9\xfc\x69\x5e\x84\x93\x26\x19\x4c\xd7\xce\x28\x66\x2c\xcf\x8a\xd6\x48\xf1\x9c\x38\x27\xf2\xed\x58\x1b\xb9\xeb\x88\xc2\xb6\xfd\x56\xf1\x8e\x15\x97\xdb\xc2\xda\xbc\xa0\x84\x73\x15\xfe\x83\xa5\x0a\xe7\x9c\xeb\x4c\x50\x18\xdf\x03\xf6\xd5\x78\x9b\x1e\x9f\x3f\xfe\x59\xaf\xc0\x43\x38\x41\x62\x47\x6d\x28\xe7\x5c\x15\x8f\x29\x1c\x71\xcf\x5a\x3c\x11\x29\x66\x45\xe0\xcf\x7a\xd1\x2a\xca\x52\x45\x16\x60\x84\x45\x04\x8a\x8a\xd1\x96\x70\xcf\xac\xba\xa7\x9a\xc7\x3b\x35\x01\xe1\xbf\x11\x7a\x1d\x10\xe8\xdb\x5c\xb5\xc5\xe5\x54\x06\xd1\x38\x8e\x58\x9d\x72\xe6\x45\x4e\x84\x43\xca\x75\xa2\x31\x89\x03\xff\x72\x4c\x6e\xce\x53\x8e\xd7\x40\x31\x2a\x29\x0e\xa5\x24\x87\xb6\xf0\x7c\x09\xa1\x25\x3d\x97\x13\x3a\x25\x37\x88\x76\x22\x14\x20\x8f\xe5\x36\x17\xe1\xb9\x46\xc9\xdb\xe2\x17\xe4\xf3\x3f\x21\xf5\xc6\xcf\x31\x0a\xf2\x4f\xcf\x42\x38\x08\xf8\xaf\x24\x14\x37\x97\x02\x56\x95\x07\x22\x55\x72\x4a\x22\x42\x19\xf2\x0b\xa3\x77\x4b\x4c\x12\x99\x14\xd9\x23\x7c\xe9\x86\xbc\x31\xbe\xd5\x8d\x98\x63\x6c\x4c\xad\xfd\xde\xcf\x32\x2b\xf8\x6b\x30\xad\x1f\x9b\x58\xc2\x3d\xf7\x43\x9a\xe4\xf0\x67\x9c\x1c\x51\xe4\x36\x6a\x7a\x68\x12\xb3\xea\x64\x56\xe9\x2c\x26\x45\xd4\xf4\x9b\xb4\x43\xc2\xec\xd5\x63\xc1\xb6\x4a\x56\x45\x9a\x19\x92\xcc\xa8\x9b\x2f\xd2\x4e\x74\x83\x99\x37\x36\xd6\x02\x33\xd4\x72\x0e\xd3\xe4\x97\x7c\x81\x5b\x19\x01\xea\x7f\x27\xe2\x55\x90\x91\xde\xb2\x76\x7f\xf1\x3f\xa7\x50\x04\x39\xa5\xcf\xa2\x68\xbf\xd1\x66\x77\xcb\x1d\xe9\xd6\x73\x9b\xdb\xe3\x42\x83\x95\x35\x58\xb4\x04\x3e\x91\x81\xdc\xfe\x85\x68\x1c\x67\x46\x80\x92\x1f\xa4\x35\x01\x5e\x92\x41\xed\xe6\xdf\x02\x3d\xa6\xad\x06\x3c\x0e\xe2\x88\x29\xd8\xcf\x4b\x50\x80\x96\xec\xf2\x02\xcc\x59\x30\x17\xc7\x8e\xd3\x97\xed\x99\xd6\x48\x50\x84\xe8\x0c\xd1\x39\x09\xba\x4c\x5f\x5e\x64\x16\xdb\x99\x34\x06\x6d\x5f\xda\x91\xcb\xe0\xf8\x79\x2e\x6a\xdf\xdd\x5e\xad\xb9\x94\x1b\x3c\xad\xcf\xbb\x9f\xc8\xa0\xe3\xa3\x69\x40\xee\x12\x26\x77\x7c\x59\x8b\x6c\xed\x76\xd3\xde\xde\x2b\xec\xdf\x30\xda\xf6\xe0\x9b\x58\xab\x52\x09\x8f\x61\x34\xce\xf7\xd5\x09\x62\x14\x7b\x02\x7a\x3c\xba\xfe\x85\x92\x78\x9a\x7c\x80\x41\x40\x3c\x28\xb6\xdc\x1c\xf6\x38\xf7\xdf\x38\x45\x86\x6c\x29\xbc\x49\x5b\xfc\x28\xd0\xd1\xd2\xef\xf3\x3d\x57\xfd\x4e\xa4\xea\x35\xb5\x9e\x90\xd6\x19\x09\xda\x96\xd8\xac\x42\x74\x79\xbc\x56\x3d\xc8\x6e\x96\x29\xa3\x7a\x39\x5b\x50\x5c\xd7\x2f\xa6\xe3\xbb\x77\x27\xe4\xe8\x97\x97\x7a\x31\xf5\x2d\x6d\xf9\x2a\x32\x75\x86\xd9\x06\xc4\x45\x79\x87\x53\x8e\xb3\x79\xd3\x98\xf9\x6a\xd1\x8f\xbe\x5b\x99\x48\x6e\x04\x53\xf6\xc2\x37\x25\x78\x3a\x0d\xd9\xad\x4a\x85\x01\x8e\xd0\xef\x68\xfb\xe0\x05\x07\xa4\xf6\xce\xd3\x53\xf5\xf4\xc8\xe2\x04\x3a\x72\xaa\xb6\x7c\xe1\xd5\x34\x35\xf1\x82\x12\x91\x44\xdf\x68\xcc\x9b\x7d\x54\xea\xb8\xf2\xf2\x0a\x39\xec\x4c\x0e\x3c\x24\x99\xfe\x26\xcd\x8b\x54\x7a\x6f\x65\xd4\x98\x69\xd1\x56\x55\x69\xf4\xb2\x4d\x21\xe6\x3e\x86\x21\xf4\x91\x16\xd3\xdc\xfc\x2a\x43\x54\x3d\x9c\xbc\x43\x34\x32\x54\x6c\x31\xb7\x31\x86\x3c\x81\x9a\xc3\x85\x2a\x6d\xfd\x8f\x63\x9a\xf8\x99\xec\xc5\x75\xc2\x38\x59\x5c\x75\x29\xc7\x1a\xe1\xee\xb9\xce\xbf\x55\x0f\xf6\x84\x70\x15\x32\xa4\x64\xd2\xe1\xa5\x20\x75\x12\x93\xf7\x19\xc5\x83\x09\x66\x57\x78\xa2\x18\xfe\x86\xee\xf5\x86\xc2\xbe\x0a\x36\x63\x46\x5b\x4c\xfe\x48\x34\x15\xf4\x18\x28\xce\xeb\x8e\xf9\xc0\xc3\x78\x05\x1d\x87\xdb\x3d\xaf\xa7\x28\x14\x99\xdf\x3d\x35\xf3\x3b\xe7\x82\x9f\x15\x0a\x55\xa9\x6c\xb2\x5d\x8a\xcb\x4a\x76\x53\xbf\x7c\x8c\x26\x4f\x53\x39\x0c\xd9\x9f\xc9\xa8\xc8\xa1\x45\x1b\xf7\xa0\xc6\xbb\x0c\x79\x98\xc9\x36\x65\x73\x78\x72\xfe\xb0\x62\x09\x58\x3d\x5f\xd8\x3c\x9b\x0f\x4c\xe5\xd3\x91\xad\x9a\x58\xfe\xfe\xba\xe0\xbe\x6a\x32\x20\xd6\xbe\xdd\xce\xfe\xf8\xe7\xfb\x3b\x38\x39\xd2\x6f\xb7\x7c\x67\xe0\xaa\xba\xf5\xa6\x6b\xed\x3a\xb3\x29\x22\x71\x94\xb3\x68\x81\x4c\xf8\x2c\x0c\x7c\x98\x28\x8f\x41\x80\xca\xba\xdd\x49\x0f\x52\x11\xeb\x30\x38\x08\x94\x8b\xbb\x88\xc4\xd4\xd3\x78\x81\x0a\x2a\xb1\x24\xcd\xe5\xcf\x96\x01\x79\x82\x05\xf6\x68\x21\x6c\xec\x54\x80\xdd\x43\x48\x95\x42\x42\xc6\xf3\xa3\x78\x35\xc5\xae\x3b\xd1\xbb\x18\x74\xcf\x9e\x11\x1f\x0f\x71\x03\xa0\x65\xe1\x8d\x52\x36\x5f\xc3\xd3\x75\x65\x96\x74\xcf\xd7\x6c\xb3\x06\x72\x64\x4a\xa0\xdd\xd3\xc7\x17\x6f\x5b\xf0\x06\x4d\x48\x19\x67\xb0\x21\x6d\x43\x27\x06\x42\xf7\x5b\x8a\x81\xdc\xb8\x73\x81\xe3\x75\xa4\x32\xe9\xcd\xbf\x77\x38\x18\x0a\x43\xb7\x62\x63\x90\xd8\x21\x13\xe2\x0b\xec\x90\x64\x63\xb1\xba\x8b\x6e\x2e\xde\x61\x50\xd1\xcb\x3f\x9c\x5b\x69\xd6\x25\xea\xeb\xec\xdc\xbb\x6e\x5d\xfd\xe6\x3d\xdd\x7e\xb7\x1f\xfe\x6e\x97\xb2\xa0\xd5\x87\xc2\x99\x12\x01\xfd\xa1\xdb\x4a\x5f\x4b\x7f\x4c\x48\x6e\x28\x9c\x1a\x8d\x6a\x9d\xeb\x3e\xe9\x47\x9c\xc5\x6b\x4c\x6a\x53\xf1\x22\xf1\xba\x09\x8b\xa8\xaa\x8b\xa7\x01\xf4\x90\x7f\x0c\x43\x48\xb1\xea\x9c\x2f\x3c\xe4\xa3\x08\xd3\xc2\x53\x2a\x86\x51\x7e\xa7\xdf\x80\x84\x64\xd3\x70\x11\x1e\x29\x3d\x58\xd4\xc1\x23\x39\x86\xfc\x80\xb2\x0b\x34\xef\xa4\x46\x43\x95\x9d\xa9\x65\xc0\x22\x1b\x06\x2a\x3a\x01\x6c\x01\xe3\x61\x44\x33\xf6\xba\xb3\x48\xdd\x01\x61\xb9\x32\x55\x79\x51\xf7\x8a\x3d\xdf\x2f\x38\x83\x56\xc2\x75\x6e\xef\xb4\xe4\xdc\x8a\x47\x7b\x22\x66\x75\xc9\xc3\x95\xb2\x72\x45\x18\x0c\xbe\x1d\x41\xb1\x56\x3e\xca\x0d\x5e\x61\x58\x63\x04\x03\x36\xbe\xcb\xa7\xb1\xa7\xd3\x2b\x4b\xd7\x04\xa7\xa2\xdb\x25\xcf\x51\x65\x30\xff\x21\x93\x14\x87\xf5\xd3\x24\x51\xf3\x97\x3e\x4b\x6f\xd3\x7e\x97\x3c\x4f\x9a\xf1\xcc\x3b\x53\x2d\x4e\x58\xc2\x1c\x68\xb2\x03\x2a\x93\x15\x12\x86\x87\x58\x18\x67\xad\x1c\x9f\x1a\x5f\x82\xe9\xdd\x13\x15\x69\x74\x1e\x9c\xb1\x75\xda\xaa\xd2\x0c\x5b\xd4\x4e\x55\xef\x3b\xd6\x6e\xa0\xfe\x33\x78\xbf\x7d\xf5\xfb\xe0\x8f\x6f\xdb\x99\x70\x05\xa3\x6b\x20\x9c\x54\xdf\xb2\x33\x21\x73\xa5\x5d\xc6\x93\x49\x66\x49\x39\x85\x0b\xad\x15\xfb\x14\xe6\x3a\xba\x9f\x23\xe4\x2b\x9e\xfc\x7f\xd8\xbf\x79\x14\x33\x02\xde\xa0\x19\xa2\xac\xc5\x5b\x56\xe6\x6f\xb1\x1f\xa9\x1f\x6d\x9f\x97\xdb\x2a\x68\xfb\x5e\xa6\xe8\xb5\x6f\x3a\x55\xcf\x71\x78\x41\xc9\x88\xa2\xa8\x65\x24\x55\xa1\xd3\xb4\x09\x70\x82\xa0\x9f\x66\x84\xae\x04\xe5\xa3\x95\x83\x22\x21\x53\x13\x1f\x57\x7c\xc0\x77\x2a\x08\xaa\xc2\x33\xe1\x56\x42\x6a\x6a\x80\x54\x59\x5d\x88\x71\xa9\xd9\xf6\xd7\x5e\xc5\xee\xfa\x1a\x4c\xda\xb4\xed\x29\x6f\x13\xf9\x12\x58\xdc\x71\x9d\xf7\x19\x10\x99\x55\xb0\x7f\x23\x05\xe7\x5b\x47\xa6\xb8\x22\xb7\x2a\x29\x56\x2c\xab\x1b\x10\x8c\x19\x11\xcb\x93\x77\xf9\x9e\x87\xa9\x9d\x93\xca\x90\xda\x74\x44\xa8\x8e\x73\x95\xa3\x67\x4f\xc3\xb6\xfc\x0c\x5a\x7a\xbd\xc5\x01\xd4\x52\xfa\x4c\xa7\x32\x0b\x2a\x1a\x8f\x36\x96\x24\x58\xdb\x76\x96\xed\x59\x59\x8b\x4b\xd0\x51\xc6\x65\x59\x5d\x4c\x86\x8c\x87\x82\xa3\xa9\x74\x43\xc9\xc1\x75\xcd\xeb\x3a\xa5\xf5\x29\x47\x07\x73\xce\xce\xb6\x4e\x4e\xb6\xde\xbf\x07\xa7\xa7\x87\x93\xc9\x61\x54\x5d\x8d\x3a\x66\x2e\x10\x62\x57\x0b\xac\xbc\x0c\x0f\xea\xaa\x0c\x53\xc5\xca\x58\xd0\x22\x8d\x3a\x11\xa3\x08\x4e\xd6\x6f\x8d\xfe\xf6\xe8\x57\xfc\xcf\x19\x1c\xe9\xad\x51\x8a\x3c\x42\x35\xe1\x24\xe5\x3a\xf3\x12\x47\x09\xf9\x27\xf9\x90\xca\x39\x67\xca\xb5\x20\x36\x41\xd7\x66\x1a\x55\xde\xa9\x42\x11\x3f\x72\x73\x02\x19\xb2\x8d\xb5\xa8\x94\xf0\x65\x78\x82\x78\x30\x4b\x48\x18\xaa\xdf\xf5\xfa\xad\xee\xef\x2d\xef\x1b\x74\xcb\xd0\xb6\xa3\x64\x39\x9e\x9d\x81\x13\x17\xbc\x7f\xff\xfe\xfd\x92\xf6\xc5\xb7\xe1\x75\x48\x6e\x42\x90\x30\xa6\x71\x6b\x6c\xb9\xac\x1b\x27\x81\x70\x41\xd6\x1f\x85\x53\x64\xa9\x52\x74\x95\xe1\xbe\xbe\xca\x46\x3d\xa6\x54\xd3\x08\x96\x9a\x01\xa8\x5f\xd7\xf3\xa9\x07\x3c\x1c\x76\x86\x18\x05\x7e\xd4\x81\xa1\x2f\x39\x77\x1f\x57\x2a\xcf\x7e\x0e\x7f\xf6\x9e\xbe\xd2\xeb\x08\x39\xa1\xae\xc3\x49\xb5\x3c\xb8\xf2\xb1\xa5\x87\x44\x71\xf0\xab\x2b\x11\xc1\x95\x8c\x60\x85\xad\x1a\x30\xf9\x54\xaa\x3d\x77\x28\xb9\x49\x1d\x62\x79\x0d\x84\xc2\x73\xdc\x3b\x95\x9c\x63\xe5\x63\x01\xb9\x41\xd4\x83\x11\x52\x76\xd5\xab\xbb\xa9\x26\xa6\xdf\xe4\x91\xd1\x6f\xe3\x1a\xe2\x3c\x14\x18\x42\xb9\x9d\x86\xc8\xb9\x09\xa4\xd7\x88\x56\x47\xb6\xf8\x30\x1c\x43\x3e\xa2\x55\x93\xae\x03\x7d\xd5\x4f\x68\x65\x1e\xfd\x6c\xab\xe6\x16\x20\xcb\x47\x01\x62\x6d\x09\xeb\xac\x81\x30\xe4\xe3\xd6\x74\xfd\xbc\xd5\x29\x19\xbb\xf6\x47\xda\xc6\xa3\x92\xf9\x74\x9f\x9b\xd0\xe7\xd5\xf4\x8e\x43\x23\x98\xdf\x3a\xc5\xa9\xf5\xea\x03\x85\xef\x65\xce\x93\xba\x1e\x9c\xd2\xc8\x45\xa1\x9c\xc2\x36\xe4\x58\x6c\xa3\xf7\x29\xca\x2b\x67\xca\xeb\xc0\xbf\x6f\xa6\xb4\x5d\x46\xf7\xc3\x13\xf0\xe4\xef\x60\x65\x22\xb5\xc8\xe8\x16\x14\x79\xb3\x1a\x6a\xab\x81\xac\xcf\x8c\x95\x33\x60\xd5\xa6\x48\x6d\xaa\x36\x81\xa8\x95\x92\x53\x0b\x18\x0e\xfd\x16\x86\xc3\xf2\xf7\x7b\xdb\xde\x5b\x28\xe8\x6a\x93\xad\x15\xf4\xb2\xf7\x7a\x1d\x49\xad\x15\xe4\xb2\xf7\x79\x1d\x51\x6d\x15\x94\xba\xc7\x2f\x6d\x7f\xaf\xae\x5a\xa7\x10\x8c\xac\xd9\xd7\xc1\x97\xe6\xe8\x8a\xea\xaa\x30\x1b\xb5\xea\x31\xd0\x74\x06\xca\xb0\x62\xc4\xa1\xc0\xcd\x57\x72\xce\xdf\xe7\xe9\x81\x21\x23\xfe\x75\xbe\xdc\xad\x80\xa4\x93\x6f\xbe\xde\xd3\x21\x52\x3f\xf2\xb9\x4f\x92\xf7\x50\xee\xf4\x6c\x27\x98\x4e\xde\x6d\xeb\x8f\x8d\x22\x80\x41\x5c\xd5\x39\xae\xa3\x22\x71\xcb\x82\x7b\xae\xc3\x31\xcc\x11\x5f\x26\x89\x42\x8b\xc3\x5a\x94\x02\xad\x5e\x56\x53\x79\x38\x17\xd2\x55\x37\xff\x79\x4f\xd3\x98\x36\x91\xbb\xa2\xc2\x97\xac\xc0\x9b\xe9\x98\x4f\x8b\x9b\xdb\x6d\xa9\xca\x97\xaa\xc8\xeb\xa8\x6a\xa9\xcd\x97\xaa\xcb\xeb\xe8\x6a\xa7\xd0\x73\x75\xbe\x24\x65\x5e\xd6\x65\x96\x26\xdf\x80\x04\xea\x2d\xc4\x4b\x32\x38\x54\x2c\x52\x75\xbc\x2f\x4e\x9a\xad\x52\xbd\x11\x96\xb3\x55\xdc\x6d\xf1\x56\x67\x88\x0e\x48\x94\x2f\xce\x25\x71\x7c\xbe\x1c\x23\x9b\x0d\x6b\x29\x9b\x95\x3a\x1c\x65\xc7\x52\xbf\xae\xdf\xb6\x5a\x79\x68\x0d\x76\x70\xca\x4e\x35\x33\x69\x41\x8b\xb8\xe0\x54\x5f\x58\xe9\xd6\x5a\xab\x0f\x26\xf3\x83\xc9\xfc\xcd\x99\xcc\xed\x35\x6d\x1e\x73\x75\x58\x74\x01\x18\xec\x6e\xad\xb6\x2d\x5f\x67\xbd\xe5\x36\x94\xcd\x45\xf4\x46\x59\x31\xec\xb9\x4e\x27\xf9\xd0\xc1\x61\x4d\x83\x35\xed\xb6\x70\x56\x67\xfa\x53\xd8\x7c\x1d\x6e\xed\x65\x0b\x33\x8a\x3a\xe9\xd3\x09\x19\x7b\x85\xc4\xd4\xc2\xed\xfd\x3e\x4f\x6a\x55\x0f\x27\x39\x1b\xf7\x0a\xbf\x35\xbb\x26\xf6\xdc\xfd\x82\xee\xdc\x6c\xa3\x5e\x2b\x3b\xdc\x82\xb2\xed\x96\xf7\xc8\x16\x98\x7e\xff\x41\x27\xb2\xd6\xdb\x5b\xca\x5c\x18\x5d\xdb\x2c\x82\x36\x1b\xdb\xf6\x92\x36\x36\xf3\xb5\x8b\xfd\x25\xd2\x7f\xf0\xed\xcf\x37\x7a\xf7\xf3\x6d\xde\xfc\x14\xef\x7d\x96\x78\xeb\xa3\xf3\xe6\x26\x8b\xea\x50\xe3\xad\xd6\x6e\x55\x86\x20\xc3\xa3\xec\xe0\x6f\x1b\x2c\x55\xde\xa7\x5a\x36\xa4\x47\xd1\x33\xad\x23\xed\xfe\xb3\x63\xde\x7f\x76\x6a\xf7\x98\xbc\xcb\x5d\xd7\x89\xc3\x00\x89\x26\x0b\xd8\x6d\xbb\x39\x2c\x83\x8f\xbc\x72\x88\x8d\x04\xe9\xcb\x70\xef\x6c\x4f\x3a\xae\x0d\xd8\xa8\x59\x6c\x76\xdc\xdd\x56\x5b\xe1\x82\x47\xbc\x92\x72\xad\x3b\xd6\x59\xc7\x00\x2f\x63\x0f\xdb\xae\xec\x61\xdb\x0d\x7b\x98\x55\x1c\x5c\x8b\x1b\x0d\x2b\x44\x87\x95\x38\x23\xe7\xf2\x3c\x4e\xe1\x08\x6d\x0d\x20\xe3\x2b\x75\xcd\xfe\xc7\x9b\x3f\xfe\xb8\x7a\x37\x89\xde\xe9\xfd\x8f\x39\x4a\x6d\xe6\x70\xd4\x85\xb9\x95\x80\xb8\x53\x01\xc9\x01\x7f\x39\xfc\x9a\xfc\x59\x1f\xd4\x56\x38\x68\xe7\xdd\x5a\x47\xb2\x88\x58\xaa\x3a\xef\x66\x61\x21\xe1\xd0\xcb\x97\xd0\xc7\x8f\x45\xf3\x51\xed\xbe\xaa\x45\x5c\x15\xf6\xae\xc1\xf6\x50\xb1\xf4\x52\xae\x70\x21\x2c\x18\x7c\x90\x8e\x22\x3d\x90\x4a\x7e\xb2\x91\xb6\x67\xba\x72\x6c\xd4\x54\xe3\x02\x70\x8d\x81\xa3\x05\x1d\x95\x89\xe8\x14\x52\x16\x6d\xf1\x60\xfd\x6c\x34\x9f\xc8\x80\xa3\x9c\x56\x70\x3b\xd3\xb9\x14\x30\x00\x75\xf8\x9e\x06\xfc\x98\x92\x3a\x52\x28\x40\x94\x12\x45\xcc\xf8\xc7\x33\x14\x09\x10\x7e\x87\x84\x27\x38\x9a\x60\x35\x1b\xa6\xf0\xc4\x47\x33\x08\xa9\xe3\x05\x08\xd2\x67\x85\xa7\xf3\x19\x2e\xea\xac\x1c\x32\x50\x4b\xa3\x40\xfd\x2f\xb1\x69\x0c\x43\x3f\x40\xbc\x7d\x0d\x83\x0c\x34\x15\x5f\x6a\xa2\xa6\x39\xdd\x08\x24\x94\x26\xfc\xae\x24\xea\xb7\x4a\x58\xd2\x9d\x83\x9c\x2a\x20\x54\xf2\x91\x51\xc2\xcb\x1a\x66\x47\xf8\xbb\x29\x3a\x54\xa4\xb3\x90\x7d\x27\x38\xc5\xe4\xa6\xa6\x9e\x51\xff\x5d\x97\xaa\xdc\xd4\xe7\x05\xc5\x84\x62\x76\xd7\xd0\xef\x54\x3e\x56\xee\xbb\x21\x16\x07\x86\xbe\xa3\xce\xa7\x02\x4c\xab\x01\xf3\xad\x45\x3c\x6e\x1f\x73\xf1\xa8\xc0\x1f\xdd\xe0\xb3\x6e\x1a\x46\xaf\x42\x5e\x9b\xd3\x64\x2c\x76\x6b\x9d\x53\xfd\xc0\x76\xe9\x44\x3c\x4b\xad\xa4\x63\x4a\xcb\xa5\xf5\x7a\xe4\x79\x17\x22\xc4\x18\xe2\x20\xa6\x28\x5a\x6e\xfb\x85\x6c\xc9\xe2\xaa\x8f\x08\x65\xe9\x8e\x2d\x3f\x9e\xa0\xc8\x43\xbc\xb0\xbc\xe3\x3a\x23\xc2\x48\xe6\x53\x36\x28\xce\x42\x1b\x85\x6f\x95\xa6\xb2\xef\x4b\x2d\xb6\x1f\x0d\x4a\x0c\x89\xd4\x8e\x6e\xc5\xa6\xd5\x23\x67\xe5\xd6\xd2\xfc\xc6\x56\x46\x20\xfe\x8c\xfc\x8e\x37\xc6\x81\x7f\x0f\x39\xae\xfb\x9f\xde\x0f\x7e\xf5\x8f\x1f\x4c\xaf\x07\xd3\xeb\xc1\xf4\x5a\xb1\xe9\x25\xbf\x6c\x30\xc1\x14\x03\x84\xe2\xc9\x44\xe0\xe8\x3f\x58\x67\xdf\x97\x75\x56\x67\x24\x69\x2e\x5b\x2a\xb4\x40\x8a\x42\x76\xa8\xb5\xf8\x4a\xc0\xf6\x5d\x4e\x56\x81\x42\xfe\xb2\xa3\x14\x52\xa0\x77\x1d\xa9\x76\x54\x89\x54\x2a\x24\x14\xed\x46\xd9\x80\xd6\x16\xfb\x68\x9f\xcb\xdd\xd7\x51\x55\x35\xea\x16\x70\xbf\x3c\x58\xc0\x0f\x16\xf0\x83\x05\xbc\x98\xb2\x9f\x5b\xc5\x97\xe0\x48\x2e\xe0\x5d\x40\xa0\x06\x51\xab\xc5\x8e\x01\x38\x4e\x11\x2d\x55\x97\x77\x2a\x69\xdb\x53\xd1\xd7\xcb\xcb\xd7\xe7\x6d\x73\x3c\x3f\x45\x24\xec\xcc\x30\xba\x51\x2d\xd5\xe4\xcb\x9c\xa9\xa5\xd6\xed\x54\x55\xb3\xa2\x98\xd2\x72\xcd\x24\x2f\xc0\x9d\x1b\x1c\xfa\xe4\x26\x19\x38\x0a\x60\xc4\x72\x5c\xb3\x7d\xd7\xf1\x24\xaa\x67\x7a\x69\x71\xe0\xa6\xb4\x39\x45\x8d\x50\xaf\x15\x6c\x15\xc2\x9a\x8e\x4d\x9a\x73\xcf\x92\x0e\x51\xeb\x3f\x3e\x9d\xa2\xe0\x8c\xbd\xf3\xc3\x87\xe3\xd3\xc3\xf1\xe9\xe1\xf8\xd4\xee\xf8\xe4\x68\xf9\xb3\x62\x9f\x75\xfb\xf2\x0f\x0c\xea\xab\x3c\x5c\x14\x34\x4f\xcb\xd0\x97\xef\xe7\x24\x26\xa1\xa8\x1b\x4c\xd6\x14\x14\xe1\x9b\x3d\x8f\x3d\x9c\x15\xbe\xbd\xb3\x42\x5d\x8b\xdc\x2c\xa0\x28\x6c\x6b\xc5\x7b\x31\x4d\x8e\x99\x17\x42\x99\x25\x16\xf8\xcb\x2a\x29\x73\x59\xf3\x6a\xcb\x05\x13\xff\xe5\xfd\x7a\xa1\x0b\x16\xd0\x42\x86\x54\xb6\x3b\xad\xdb\x8a\xfa\xf4\xeb\xde\x89\x37\xf3\x51\xdb\x5a\x5e\xbb\x69\xa5\x52\x59\xbb\xb5\x68\x39\x19\xf6\x55\x61\x4d\xc9\x81\xce\xb7\xad\x6e\x73\x71\xe5\xcc\xdb\x8a\xe2\x41\x08\x67\x8e\x08\x05\x2a\xe7\x6f\xe4\x27\x2c\x45\x3d\xd7\x9e\xbb\x4a\xc5\x74\xe7\x31\xd0\x19\x8d\x17\x15\x28\x29\x09\x8b\x4a\x53\xbe\x88\xd7\x2d\x51\x4f\x3f\xfd\x72\x44\x0f\xa8\x01\x08\x85\x67\xb3\xcd\x0f\xdf\xa9\x05\xe2\x7c\x49\x06\xe0\x15\x8c\x43\x6f\x8c\xa2\x86\x92\x80\xd5\xca\x59\xd5\x83\x70\x11\xf6\x37\xaf\xa9\x7a\x9c\xb1\x54\xa9\xa8\xea\x94\x71\x3b\x6b\x82\x41\x39\x80\xe7\x14\x8e\x70\x28\x73\xf8\xc2\x32\x8a\x67\x84\x3f\x23\x59\xad\xd0\xf9\x68\xe8\x3d\x53\x80\xc9\x53\x97\xc9\x0b\x06\x3d\xa9\x3f\xae\xd4\xa2\x88\x36\xaa\xf8\x0c\x65\x34\x35\xee\x79\xa1\xcb\xb6\x5a\xdd\xb9\xc1\x6c\xdc\x19\x12\xc2\x0c\x67\xaa\x32\x48\xe4\x76\x5b\xe0\x51\x43\x1b\x09\x29\x9d\xc1\x5d\x8a\xba\x35\xa5\x84\xbb\x9b\xb2\xed\x5b\xd3\x6a\x7a\x03\x60\x17\x16\x38\x47\xdf\x79\xa9\x35\x6d\x7d\xf8\xf4\xc7\x95\xf5\x9f\x3a\xf3\x35\xbd\x67\xa1\x85\xab\xea\x5b\x35\x20\x35\xfd\x5f\x28\x3f\xdb\xd3\x50\xc6\x31\xfd\x25\xab\xd9\xd8\x00\xb6\x5a\x2c\x7c\xb3\xa3\x34\x71\x29\x8d\xac\x45\x2a\xb1\x6c\xab\x40\xa7\x0a\xe4\x1b\x07\x1a\x34\xa0\xbd\x19\xfc\x68\x64\x50\x2c\xca\x92\x1e\x65\x8f\x03\xec\x5d\xa7\xcb\x73\x47\xad\xc6\x62\x3a\xa9\x95\x4d\x29\xb7\xfc\xa6\xf1\x14\xa9\x09\x7f\x35\x9d\xc9\xcb\x91\x99\x35\xe7\x27\x81\xa4\x21\x34\x83\xf1\xdc\x54\xad\xa6\xaf\x28\xd5\xba\xbb\x1e\x6d\x5d\x58\xf9\x62\x47\xd4\xbb\xd3\x1c\xf6\x0a\xfc\x97\x7a\x2f\x62\xc9\x2e\x7b\xc4\x4a\x27\x9f\xff\xf7\x7f\xfe\x6f\xf1\x39\x14\xfa\xd5\xa7\x00\x19\x16\x8e\x13\x35\xdb\x8b\x2e\xd7\xa3\x0e\x5a\xc8\x00\xb0\x3b\xa5\x68\x96\xca\x5d\xc1\xb7\x95\x0e\x3e\x79\x00\x13\xa3\x1a\x02\x7f\xab\x89\x92\x6f\x41\x47\xc8\xab\x05\xd5\xd0\x21\x1f\xd0\xd2\xf0\xf7\x96\x34\xe8\xaa\x33\x2b\x5d\xa9\x35\x9a\xdb\xa2\xda\xeb\xa3\x89\xad\xb0\xd6\x14\x62\xd0\x64\xca\xee\x3a\x93\xcc\x5f\x63\x92\xf7\x4a\x1d\x80\xc2\x8b\xdc\x24\x4a\xe1\x99\xb3\x9a\x54\x05\xa3\xa8\xc6\x13\x50\x2e\x0e\x50\x6c\xba\xe4\xc0\x38\x27\x80\xa2\x09\xc4\xbc\xfc\x66\x80\x67\xc9\x3f\x9f\xc8\x00\x04\xb2\x9f\x6e\x7b\xbe\x71\x17\xf9\x2a\xb0\xf1\x35\xb6\xf0\xa2\x36\xb5\xf4\xde\xad\xdb\xa0\x3e\xa2\x97\xff\xfc\xf4\xf9\x4c\x1f\xa2\xad\x3b\x98\x29\x96\x6b\xc9\x7f\x38\x57\x92\x77\xa1\xc0\x42\x5e\xcd\xc2\xde\x29\x26\x4b\x45\xd5\x48\xb8\x7d\x31\x88\xba\x65\xc1\xfd\x97\x09\x85\xbb\x4e\xa9\xba\x45\xc9\xd1\x2a\x1c\x9d\xb5\x29\x28\xea\xf2\xa8\x69\xc9\xd7\x17\x86\x58\xa8\xc6\x4e\x5e\xa6\xdc\x43\x21\x43\x14\xf1\x8a\xc3\x13\x1c\xe2\x49\x3c\xa9\xe5\x48\x43\xe9\xd3\x7c\xe2\x92\x63\x10\x09\x3d\x6e\x2e\x34\xd8\x06\x8a\x53\x3a\xbb\x47\x90\x2a\x57\xd2\xf1\xfa\x1a\x6a\x0b\x90\x34\x29\x83\xfb\xbb\x03\x4b\xd7\xf2\xc2\x0a\x41\xbd\x24\x5e\x3b\xe0\xe8\xe3\xa3\x4f\xf8\xd5\xbe\x01\x94\x78\xd9\x67\xec\x67\xf9\x50\x57\x78\xc4\x7e\xa6\x32\xb4\xf1\x94\xed\x3a\x40\x9d\x81\xda\x0c\xcc\xc6\x3e\x0c\xaa\xb1\xfe\xc4\xfc\xd1\xdc\xb4\xe9\xfc\xbd\xf4\x9a\x1a\x6d\x8a\x6d\xe6\x07\x2a\xdb\x37\xae\x28\x1e\x8d\xb8\x0e\x7a\xda\xe2\xad\xb6\x45\x37\x2f\xd2\xd8\x14\xf0\x3c\x8d\x4d\x59\xe4\xa8\xb5\xf6\x9a\x12\x0d\xe5\xdb\x5b\xb4\xa4\xbb\x52\x99\xb3\x29\x96\x4e\xdd\xd3\x65\xb4\x56\x57\x11\xbe\xa6\xa1\xda\x6c\x68\x63\x17\x0e\x57\x69\x6d\xe1\x5c\x79\x19\x0b\xd0\x01\x2f\x42\x90\xc2\xf5\xb7\x4e\x3f\x2e\xd7\x4a\x80\x51\x26\x9b\xb9\x68\x5a\xd3\x73\x45\x63\x13\x78\x78\xf3\xcb\xcf\x13\x3e\x57\xb2\x62\xe7\x40\xa2\xad\x3b\x30\x2e\x56\x57\xc0\x7e\x58\xf7\x73\x08\x2a\x28\xe4\xe5\x9c\x81\xae\xc6\x38\x02\x38\x02\x13\x12\x31\x10\xe0\x6b\x14\xdc\x01\x3f\x46\x80\x11\x30\x82\x74\x00\x47\x08\x78\x24\x08\xc4\x6e\xf7\x8d\x1e\x88\x94\x5d\x73\x51\x13\x48\x17\x55\xb8\x6e\x4b\x68\x2f\x62\xa7\x77\x4f\x8f\x0c\x77\x58\x4c\x09\x2c\xac\x3d\x2b\xa5\xf1\x0e\xad\x57\xbc\x51\xb6\x8b\xf1\x04\xf3\x1c\x9d\x6c\xaa\x90\x01\x50\xdd\x3e\x0d\x06\xf7\x02\x91\x0b\x8e\x06\x10\x4b\x46\x83\xdb\xe2\x61\xe5\x8b\x4e\x3a\x32\x2b\xc2\x93\x1b\x58\xac\x10\x0e\x2a\xf6\x74\xbb\x9b\xde\x72\xd1\x93\x6f\xea\xd8\x51\x5d\x2e\x8b\x2e\x40\x1a\x87\x21\x0e\x47\x85\x5a\x10\xeb\x5e\x80\xbf\x7f\xbe\x3a\x3a\x26\xde\x54\xbf\x00\xf5\xa5\x51\x2a\x0b\x4f\x0e\xe4\xa4\x50\xa9\x62\x29\xab\x0e\x87\x43\xb2\xf4\x35\x67\xf9\x3a\x2d\x04\x2e\x29\x9b\xef\x11\x8f\xc3\x03\xf9\x70\xcd\x38\x50\x6a\xe3\xd0\x1f\x71\x17\xc7\xcd\x18\x33\xfe\x47\x14\x0f\x58\x80\xc0\x20\x9e\x4c\x11\xed\x04\x68\xc8\xca\x2e\x0b\x13\x7b\x1b\xcc\xd6\xea\xf9\xc9\xdc\xd0\xdc\x15\x60\xea\xc6\x3a\x4d\x0e\x7c\x14\x8f\xc6\x0c\x88\x56\x3b\x0c\x4f\x0a\x85\x4b\x95\xba\x31\x94\x4c\x3a\x21\xb9\x59\x94\xd6\x39\x23\x78\x5a\x7a\x78\x2c\x45\xc4\xcc\x1a\x19\x18\x97\x08\x76\xf2\x2f\x89\x59\x62\xfb\xa8\x72\xfa\x46\x8c\xbc\x7a\x50\xb7\x9d\xd2\x79\xeb\xd9\xd5\x13\xad\x88\x29\x97\x62\x48\xb9\x2f\x39\x24\x1d\x86\x6e\x59\x87\x51\x18\x46\x43\x42\x55\x37\x57\x4e\x55\x62\x76\x49\x52\xc1\x20\x66\x20\x25\x11\x4c\x73\x1a\x97\x30\x71\x0b\x6d\x9a\x40\xb9\xda\xd6\x6c\x9f\xc5\xca\x37\x1d\x1f\x31\x88\x83\xc8\x58\xbd\xa7\x49\x3d\xda\xdc\x18\xe6\x85\xa2\x44\x71\xfe\xea\x0e\x5a\xa9\xcc\x16\x5d\x8e\xc9\x4d\xa1\xb3\x13\x49\x68\xbb\x0c\xa4\x3d\xfd\xd1\xbc\x64\x30\x7c\x28\xd6\x82\x73\x3f\x30\x1a\x23\x13\xd0\x59\x75\x60\x30\x08\x88\x97\x39\x5d\xda\x04\x82\xb5\x34\x1b\xac\xe5\xa0\xe1\xfa\x12\x1a\xf5\x5c\xf2\xc3\x8e\xc1\x17\xbb\xe7\x3a\x8c\x8c\x46\xc9\x0e\x5d\x3b\x43\x6e\xf6\x52\x1e\x78\x5b\x0f\x58\x67\x3b\xf3\xae\x73\x8a\x7d\xe4\xb8\x4e\xf2\x8c\xae\xca\x16\xc8\xa5\x17\x24\x73\x0c\x44\x36\x10\x80\xa1\x0f\x94\x59\xfa\x3e\x1c\xc4\x55\xbb\x6a\x51\x4b\x2d\x8b\xd4\x5c\xb7\x79\x16\xfe\xf3\xf4\x68\xf6\xcb\xed\x53\xbd\x79\xe6\x8d\x21\xe5\x05\xf4\x21\x8b\x27\xe6\x64\x89\x39\x4d\xa5\xe2\x92\xa9\xf3\xce\x66\xc7\x2f\x25\xd2\xa9\x49\xd9\xa4\x8f\x02\xe1\x70\xb4\x36\x9c\xca\x26\x52\x36\x35\x0e\x23\x0c\x06\x6a\xac\x95\xa5\x3d\x60\x24\xf1\x28\x13\xfc\x25\x13\x59\x5f\x6d\xd3\x16\xf0\xba\xce\x93\xdf\xfe\x74\x58\xd0\xf6\x25\xdd\xa2\x9b\x5f\xd7\x49\xef\x66\x3b\xc2\xf9\xd7\x19\x40\xea\xb8\x8a\x4e\x57\xbf\xcf\x9c\x81\x1f\x54\xad\x7f\x4c\x42\x06\x71\xc8\xeb\xeb\x8b\x3e\x4a\xb5\xb0\x53\xbe\xe5\x01\x69\xf9\x17\x4e\x34\x0d\x30\xe3\x49\x69\x35\xf1\x37\x92\x2d\xa4\x1c\x4d\x10\xa0\x11\x0a\xf5\xae\xce\x12\xb2\xa6\x0f\x19\x6c\xe3\x8d\x36\x24\x05\x49\xef\x24\xff\x2e\x0b\x4c\x2b\xdd\xa6\x94\xbd\xab\x72\x3d\xe7\x68\xa2\x22\x03\xe8\xa4\xb8\xdc\x6b\x72\x84\x1a\x7b\xe0\x1a\xc9\x51\x6b\xeb\x26\x8d\x70\x2f\x5a\x6d\x9e\x91\xc6\x5c\xac\x5c\x1e\x79\x24\x20\xb4\x13\xdd\x40\xe6\x8d\x8b\x64\xe8\x78\xa1\xff\xb2\x88\xed\x29\xda\xea\x38\x6e\x05\xa4\xb0\x44\x6a\x8d\x7f\x5b\xb3\x76\x25\x13\xca\xee\xf3\x8c\x37\x16\x5e\x73\x4d\xab\x35\x90\xb3\x45\x4b\x68\xbb\x9a\x69\xa5\xef\x67\x0e\x37\xb0\xbb\xd3\x60\x1b\xd5\x3a\x61\x56\xec\xcb\x94\x8b\x79\xd1\xcd\xb9\x90\xbd\xbc\xee\x0d\x1a\xe1\xd7\x4f\x7f\x46\xfd\xf7\x4b\xbf\xca\xad\xdf\x8d\x5b\xfa\x3c\x72\xe4\xed\x48\x63\x9c\xb5\x4e\x36\x2e\xdc\xe7\x1a\x82\xa5\xe7\x8b\x53\x2e\xdd\xca\x16\xf0\xfa\xdb\x45\x2a\xaf\xe8\x0a\xd7\xd0\xc6\x7d\x45\x27\xd7\xf5\x2d\x0b\xca\x68\x3b\x3f\x4e\x7f\x5b\x49\xef\xca\x3e\xee\xfc\x19\xa3\x18\xf9\xaf\xe9\x25\x83\x94\xe1\x70\x24\x6d\x9f\x34\x4e\x57\x4b\x5d\xc5\xf0\x5a\x29\x9f\x28\x8a\x10\x9d\x21\xff\xf8\xe2\xad\x81\x9e\x37\xf2\x09\x20\x1f\x59\x39\x29\x67\x68\x42\xa8\x29\xb4\x3a\xa3\x26\x7f\x6a\xe5\x04\x3d\x9b\x8e\xd1\x04\x51\x18\x9c\xe0\xe8\xba\x89\xae\xf4\x99\x26\x1c\xf3\xd5\x06\x06\xc8\x23\x72\xbe\x3b\x14\x03\xaf\xf3\x5b\x8a\x4a\xf8\xf5\x76\xbb\xf0\x6b\x15\xac\xc2\x2d\xbf\xdf\x22\x08\x7b\x29\xb5\xe0\x57\xb2\x51\x2f\x5a\x08\xbe\x9a\xa8\xbc\x76\xac\xdc\xb3\xad\x77\x93\xf0\x66\xd6\x36\x57\x6e\xdf\x75\xc6\xfd\xb2\x33\x54\x84\x20\x56\xb7\x67\x29\x71\x0a\x1c\x74\x16\xad\x58\x4e\x3e\xd5\x78\xad\xcb\x59\x70\x26\xb3\x5a\xf5\xc3\x32\x38\x02\x45\x14\x23\x71\xe6\x3a\x16\xea\xb7\x00\xde\x5d\x79\xc8\x64\xda\x3a\xe5\x84\x3a\xa7\x1c\x02\x12\x12\x56\x42\x37\xd0\xb5\xed\xf8\xc2\x16\x09\xad\xc1\xac\xd5\x65\x7b\x43\x3a\x11\x43\xd3\x8e\x0c\x8c\xcc\xd6\x2d\xf6\x03\x74\x85\x6e\x13\xcb\xca\x83\xa1\x87\x82\xf4\x03\x09\x87\x98\x4e\x8a\x9f\xf8\x1e\xa2\x66\xe9\x1f\x8b\xef\xb9\x6e\xbb\x64\x7c\xab\x3a\xe6\xad\x38\xae\xf3\x1e\x45\x2e\x90\x5f\x1e\x51\x04\xee\x48\x0c\xa2\x58\xfe\x71\x03\x43\x06\x18\x01\x11\x23\x53\xc0\xc6\x38\x02\x9f\xc8\xe0\x1f\xe6\x08\x4c\x27\x79\x50\x24\xd1\x5a\x2b\x80\xb5\x19\xde\x5c\x2c\x17\x58\xc9\x88\x62\xe2\x63\xef\xbe\xd0\x17\x1f\x5d\x1d\x04\x37\xf1\xf1\x3f\x1f\xe0\x43\x1e\xe0\x43\x1e\xe0\x43\x1e\xd0\x17\xbf\x11\xcc\x8f\x07\xf4\xc5\x07\xf4\xc5\x07\xf4\xc5\xef\x10\x51\xe5\x01\x7d\xd1\xf9\x16\xd0\x17\xd7\x75\x47\x5c\xb0\x5e\x17\xb7\x82\xef\x01\x7d\x1c\x0d\x6f\x5f\xce\x7e\x3b\x78\xb0\x7f\x1f\xec\xdf\x07\xfb\x77\x65\xf0\x79\x6b\xb5\x7c\x97\x87\xb0\x97\xe9\x25\x53\x0c\x54\x43\xaa\x69\x1a\xd8\x87\xa3\x4e\x34\x81\x41\x20\xa2\x15\xd3\x04\x0d\xab\xf4\x53\x67\x48\xa8\x87\x44\x0a\xbb\xa3\xcf\x3c\x7d\x9e\x3c\x01\xb2\x47\x1e\x60\x00\x1f\x60\x00\xbf\x63\xa3\x75\x0e\x1a\x8f\xa9\x46\x2e\xaa\xe8\xc5\xea\x5c\xc9\x85\x9d\x85\x0b\x3a\x97\x53\xe4\x95\x69\x6e\x13\x95\xf7\x80\x4f\xf8\xed\xe2\x13\xca\xc9\x9e\xdf\x3e\x8d\x10\x9d\x61\xef\x1e\xee\x5a\x8e\xa8\xf7\xfa\xe0\xcf\xe9\x43\x71\x9c\x07\xf3\xf4\xc1\x3c\x7d\xa8\x4b\xf8\xe0\x7b\x7d\x30\xb1\x1e\xfc\x82\x73\xb4\xaf\x4b\x0f\x7d\xf0\x3b\x7e\xb7\x7e\x47\x69\x8f\x2d\x60\xd0\xc9\xc5\xbe\x6e\x7b\x6e\x7c\xf2\xc7\xe9\xe3\xde\x74\xef\xc1\x9e\x7b\xb0\xe7\x1e\xec\xb9\x07\x7b\xee\xc1\x9e\x7b\xb0\xe7\x1e\xec\xb9\x07\x7b\xeb\x5b\xb7\xb7\xf8\x5a\x9a\xcb\xdc\xe2\x81\xe2\xeb\x36\xb3\x3e\x5f\x8d\xbc\xdd\xe1\x2b\x7d\x51\x34\x5d\x60\x72\x8e\xd4\x66\x15\x60\x13\x40\x1c\xbe\xf0\xab\x10\xce\x38\xea\x4c\x29\x4e\xb3\x2a\x35\xe6\x45\x35\x74\xb9\xd1\xc2\xa8\xa4\xa5\x96\x51\xe5\x9a\xc3\x9c\x57\x10\xda\x5c\xd5\xd0\x65\xe0\x3c\xa5\x21\x1f\x47\xd3\x00\xde\x5d\x95\x76\x19\xeb\xf7\xeb\xd1\x00\x0d\x6c\x71\x0c\xa9\xd5\x59\xb2\x42\x9a\xb7\x63\x17\x47\x5d\xd3\xc0\x02\xc5\x19\x3b\x1d\x3b\xf4\xb3\xfa\x89\xaf\x1a\x10\xe2\x92\xb1\x23\x92\xda\x97\x97\x71\x5e\xd8\x85\x47\xac\xcc\xd9\x72\xd2\x78\xaf\xd5\x1e\x9b\x42\x65\xe8\x52\xa1\x8b\x2a\x1e\x47\xe7\x90\x4a\xbc\x98\x82\xf6\xd6\x43\x66\xb4\xcb\x54\xcf\xb8\x8a\x26\x65\xa6\x46\x9d\x21\xf4\x0b\x89\x7a\xe7\x04\xe4\x03\x6e\x4c\x3d\x6f\x43\x86\xc2\x11\x7d\x1a\x78\xc6\x13\x7d\x0e\xf8\x12\x78\x94\x1a\x18\xd5\xb5\xbe\x8a\x98\x7a\x4a\x6e\xe6\xda\x60\x32\x20\xa3\x75\x6f\x32\xaf\x0e\x46\xfe\xfe\xaf\x9f\xfb\xd6\x9b\x8c\x4d\xbe\x29\xc0\x51\x27\xe0\x60\x4f\x72\x09\x73\xb2\x71\x86\xdd\xa8\xae\x7e\x79\x23\x0e\xfe\x47\xd5\x51\x39\xae\x93\xa8\xe4\xa0\x4b\x84\x76\xcc\xd0\x0b\x4a\x42\xcc\x14\x62\x0a\x34\x32\x5f\x3c\xbc\xe8\xa2\x29\x50\x01\xb9\xe8\x52\xa4\xaf\x9a\x42\x28\xea\x00\x20\x24\x27\x4a\x34\x18\x6e\x76\x15\x44\x2b\xd9\xa3\xf9\x36\x57\x67\x31\x1b\xe0\xb7\x96\xc5\x05\x8e\xb2\xc5\xca\x85\x1a\xeb\xdb\x90\x80\x5f\x3e\x64\x26\xc0\x2f\x42\x27\x30\xd7\xc3\x06\x50\x2f\xd7\x39\x3b\xdb\x3a\x39\xd9\x7a\xff\x1e\x9c\x9e\x1e\x4e\x26\x87\xdc\x5c\x09\x0d\x40\x5f\xf5\x61\xb6\xc5\x6e\x7c\x3c\x1c\xda\xfa\x8c\x1a\x62\x65\xb2\xb9\x4e\xd6\x37\xf4\x18\xb0\x01\x04\x92\x60\x40\x27\x82\x8c\x1c\x75\xe0\x20\xd9\x47\x60\x38\x42\x72\x8f\xae\x9c\x2e\x33\xe8\xc5\x98\xc2\x80\x97\x9b\xfa\xe0\x48\x1f\x49\x7a\x9b\xad\xbe\xdf\x16\x17\xad\x75\x04\x52\x71\xb0\xea\xee\x92\x50\x61\x81\x03\xdd\x30\x65\x38\x7a\x3d\x6d\xc4\x92\x69\xe1\x8f\xd0\xd7\xc9\x2e\x6d\x5c\x1c\xe6\x2b\x99\x9a\x6c\xaf\x12\x9f\x12\x01\x1a\x90\x48\x71\x5b\x55\x24\x2a\x5f\xd3\xe2\x41\x63\x70\xc4\x3a\x71\x91\x24\x95\x8b\x6c\x53\x51\x27\x62\x14\xc1\x7b\x70\x3d\xff\xfc\xf8\xea\xf8\xe0\xf4\xdd\x1f\x7a\xd7\x33\x45\x1e\xa1\x7a\x88\xca\x82\xaf\x18\x86\x21\x49\x1e\xf0\xe5\xe6\x13\x95\xeb\x38\xa5\x3c\xd2\x57\x72\x52\x01\xa6\x25\x1c\x1b\x14\x2e\x9a\x9b\x13\xae\xe4\xda\xb8\x9f\x0b\x79\xa4\x13\xc4\xb7\xcb\x90\x30\x23\x7c\xb2\x49\x75\x4a\x5a\x6a\x94\xe7\xd9\x19\x38\x71\xc1\xfb\xf7\xef\xdf\xeb\x00\xbf\xac\x21\x8d\x2b\x99\xc7\xb5\x43\x21\x5c\x10\x1a\x17\x58\x46\x76\xba\xc6\xf2\x71\xa8\xcb\xac\x34\xc8\x25\xad\xb0\xfe\x8a\x96\x58\xba\x4c\x5a\x2f\x35\x8e\x97\x01\xbd\x44\x98\xef\xc5\x28\x1c\x1e\x3d\x3a\x83\xf1\xe5\x44\xbf\xca\xb0\xf0\x48\xd6\xd6\x13\x2d\x2c\x37\x3f\x59\x96\xc9\x72\xbb\x94\x95\x16\x1a\xf5\x77\xbf\xef\x6e\xcb\x03\xda\x18\x46\xe3\x5c\x2c\x38\x34\x87\x2b\xf2\xfe\x5d\x41\xc9\x47\xf9\xa0\x8a\x0f\xe0\x14\x39\xb8\x95\xfd\x95\xc1\xa1\x64\x9b\x89\xeb\x90\x30\xfb\xe3\x38\x28\x49\x5a\xb6\xe3\xd4\xa4\xfd\x27\xab\x31\x56\xd7\x60\x69\x9b\x92\xa7\x95\xec\xba\x68\xfe\x76\xa4\x60\xe7\xf7\x47\xf6\xe3\x4e\xdd\xef\x79\xab\xba\x7e\x14\x64\x29\xc1\x5b\x99\x2a\xb5\x9e\xa5\x53\x24\x7e\xc1\x55\x53\x1e\xfb\xda\x17\xd1\xf6\xf1\x20\xfe\x7d\xef\xe8\xd9\x1c\xd5\x78\x97\x66\xf2\x54\xe7\x5f\xa3\x85\x17\x2f\x95\xbb\x9c\x09\x2f\xcd\x58\x3e\xff\x3f\x2c\x38\xff\x42\x69\xac\x7b\xfe\x27\x5b\xc1\xf3\xdb\xe3\xf7\xde\x1c\x08\x13\x75\x13\x99\x0c\xa6\xe3\x91\x90\x49\x5c\xd9\x0a\xe6\x44\x19\xa8\xa1\xe2\x81\xcb\x8f\x30\x1a\x28\x09\x8b\x83\x0c\xc8\x89\x11\x07\x97\x14\xcb\x2d\x0e\x03\xc4\xdb\x4a\x45\xf7\xd9\xed\x14\x86\x7e\x7a\x8c\x75\x78\xde\xc0\x0c\x47\x58\x9c\xa4\x73\x35\x66\x59\xc2\xaa\x8c\x6f\x9a\xab\x66\x71\x4f\x2c\xb5\x77\xfe\x45\x49\x7d\xca\xf7\xa4\x62\xd3\x66\x21\xa8\x77\x1c\xc9\xf9\x4b\x30\xe4\x95\x44\x6e\xab\x82\xed\x2e\xdb\x87\x54\x2b\xc3\xf3\x69\x44\xb5\x48\xf1\xba\xd7\xc0\xf1\xa3\x37\x9f\x4e\xb7\xb0\xa1\x7e\xf4\x4f\x38\x4c\x2c\x25\xd4\x64\x4c\x14\xca\x3e\x49\xd4\xb0\xa6\x5a\x4f\xcd\xa6\xc4\x10\xd3\x88\x71\xbf\x3c\x9a\x39\xae\x28\x67\xe9\x3a\x01\x14\x5f\xc2\x11\x7a\x85\xc3\xeb\xa8\x12\x6b\xce\xfd\xc3\xc9\xdf\x91\xf0\xd1\x88\xd2\xa1\x6e\x5a\x1d\xd4\x75\xd2\x5a\x94\x86\xcd\x39\x9f\x8e\x6c\x7a\x44\x15\x09\x11\xf1\x92\x18\xbc\xd9\x0a\x49\x2d\x64\x3d\xbc\xca\x54\x46\x26\xf4\x35\x98\x87\x4b\xe8\x9b\xb7\xe1\x23\xaf\xdc\x5f\xc1\x90\xb9\x3f\xca\x64\x34\xce\x9c\x94\x89\x4f\xc9\x64\x5f\x14\xde\x5d\x3a\xa5\xa5\x6e\x96\x46\x5b\xfa\x82\x10\xd2\xc2\x57\xda\x36\xd2\xdb\x5f\xa5\xd6\xad\x8c\x73\xc9\xaa\xda\xca\x77\x44\x15\xf0\x06\xbb\xcf\xe4\x1d\xd2\xec\x40\xfa\x2b\x84\xe5\x68\xca\x7c\x32\x16\xd5\x8d\xea\x64\xae\x5d\x4d\xc6\xf4\xf4\x68\xe7\x78\x6c\x28\xff\x97\xe9\x46\xd7\xf9\xff\xa7\xb7\xb4\xb5\x4a\x32\x13\xc0\xda\x42\x78\xe9\xf5\x70\x0d\xbc\x42\x21\x17\xa6\xbc\xd8\xca\xf7\xc6\x79\x60\x5c\x6d\xee\x62\xa3\x74\xd4\x47\x97\xad\x40\x74\x94\xa9\x9f\x4f\x8a\x24\xb2\xe5\xda\xa1\xc0\x4f\x3f\x1f\x0d\xde\xfe\xf3\xb4\xad\x81\x99\xcc\x80\xc5\xe1\x3a\x43\x00\x34\x6e\x65\x7c\xdc\x5b\xa2\xcc\xf7\x58\x81\xf6\x32\xa9\x4e\xf5\xf9\xfc\x3c\x4a\xc9\x8d\x12\x76\xa7\xf1\x15\x98\x75\xb1\x68\x50\x25\x34\x13\x59\x81\x3a\x59\x07\x26\x6a\x05\x19\xaa\xd1\x83\xcb\x11\x3f\x4e\xfa\x02\xe2\x96\x8d\x7a\xed\x62\x17\xbc\xfc\x73\xdf\x7f\x34\xba\x9a\xe3\x5c\x6b\xa5\x74\x2c\xf1\x60\x05\x22\x65\x36\x75\x22\x3c\x4e\x37\x81\xcd\xf6\xa1\xa5\x3e\x5a\xe2\xc4\xa7\xb3\xb7\x88\x00\x28\xeb\x68\xed\x32\x70\x42\xf1\x41\x44\x9e\x3d\x32\xb8\xe1\xc9\x4d\x2b\xff\xa0\xd0\x00\x05\x0f\xbc\xf8\x81\x7f\xa8\x0f\xf6\x15\xd6\x7d\x5e\x53\x6c\x9d\xae\xaa\xf2\x3c\x2c\x3e\x9b\xf7\xe4\xa9\xf8\xfd\xe4\x9f\x9f\x91\xc9\xdd\x5b\xeb\xa9\xa8\x56\x5a\x6d\xf4\x41\xac\x84\xfd\x73\x1d\x8f\x35\x25\xeb\xd6\x1e\x7e\xf1\xf3\xcd\xe4\x8f\xde\xf9\x40\xcf\xfa\x3c\xec\x54\x04\xda\xb9\x4e\xe4\x91\x84\x4c\xe7\xcf\x98\xf0\x3b\x27\x1f\x4f\x50\x98\x5d\x3a\xe6\x7f\x0b\xa8\x67\xb5\x0e\xb9\xfc\x4c\xc2\x88\x51\x88\xe5\x07\xfd\x43\x3e\x64\x50\x94\x2b\x77\x5c\x07\xce\x20\x0e\x64\xec\x43\xad\xd5\xa9\xe2\xe7\x4e\xed\xab\x2e\xee\xba\xce\x0d\x66\xe3\x45\x9b\x29\x5e\xad\x99\xcb\xc9\xef\xd5\xdd\xab\x95\xfb\xd7\x83\x7c\x69\x03\xaa\x8d\x81\x1f\xa5\x90\x87\x3c\x89\xa4\xcf\x11\xb9\x61\x90\xec\x57\x7e\x65\x80\xc5\xcb\xfe\x38\xe4\xac\x30\x84\x5d\x68\x03\x31\xe2\x72\x81\x8b\x08\x4f\xa6\x01\xea\xa4\xee\x09\x9b\x82\xbe\x09\x89\x21\xf1\x51\x24\x6b\xaf\x22\xbf\x7d\x40\x5c\x76\x3b\x98\x87\x03\xf0\x26\xc1\x0d\xa2\x08\xa0\x00\x8f\x92\xb3\x0a\x18\x12\xaa\x14\x00\xb7\xbf\x85\x54\xf7\x92\x3d\xd7\xe9\x24\x1f\x3a\x38\x2c\x0f\xe0\x28\x97\xe2\x86\x98\x79\x03\x27\xf6\xb8\x0f\xd2\x7e\xe8\x0d\x83\x87\x14\x81\x6c\x65\x01\x1c\x82\x7c\xcd\x65\xee\xc7\xc7\x6e\x7f\x97\xf7\xda\x26\x9c\xbe\xb2\xeb\xed\xba\xfd\xbd\x36\xec\xe2\xe2\xf2\x1c\x07\x0c\x51\xe4\xcf\x91\x61\x50\x18\x2f\x8f\xcd\x55\x07\xb4\x5d\x18\x50\xf2\xf6\x50\x76\xa5\x3e\xb5\x53\x79\xca\x14\xed\x92\x70\xd3\x51\x5e\x6a\x13\xe1\xd2\xdf\x76\xfb\x3b\xad\x58\x93\x29\xcf\xa5\xf1\x27\x6b\xd1\x80\xf6\x91\xf4\xdc\xd3\x09\x81\x96\x6f\xfd\x79\xf8\xd6\x6f\xcd\xb7\x9e\xdb\xef\x17\xf8\x56\x88\x86\x10\x0a\xe3\x76\x0c\xe3\x88\xa1\x56\xa5\xf0\x0b\xac\x79\x83\x84\xaf\x37\x02\x28\x6d\x0b\x90\x50\x1d\xad\xae\xaf\xb6\x83\x37\xd3\xdb\x36\x8b\xc5\x72\x65\x69\x3a\x5a\xce\xd2\x3a\xa8\xcc\xbd\x81\x6f\x8f\xe7\x10\x92\xc7\x6d\x65\xe4\xc0\x7d\xdc\x86\x35\x99\xe9\xb2\x34\xf6\x9c\xa4\x2d\x2a\x23\xdf\xb7\x65\xd1\xa3\x39\x58\xf4\xa8\x2d\x8b\xf6\xdd\x47\x6d\x58\xc4\x2d\xbe\xa5\xb1\xe7\xd7\xa4\x35\x10\xe0\x09\x66\x60\x8c\x99\x32\xf6\x3d\xeb\x2d\x67\xd7\x6d\xb5\xb1\x70\xd3\x75\x9e\x9c\xb5\x02\xe1\x97\x49\x2b\x0a\xb9\xd5\x0d\xe5\x89\xf2\xeb\x8e\xf5\x60\x16\x2a\x8c\x64\x55\xd9\x62\xe1\x43\x4f\xe5\xb8\xd2\xfa\xc0\x43\x51\xe4\x8d\x51\xd2\x5f\x07\xcd\x92\x86\xee\x25\xaf\xe9\xf5\x2f\x7f\xc0\x78\x78\xf0\xd8\x3a\xe4\xbc\x4d\xa0\x5c\x35\x68\x34\xcd\x82\xb6\x3a\x38\x14\xd3\x20\xe5\x25\x70\x50\xba\xfe\x6d\x19\x1f\x57\x1b\xec\xcc\x74\xf1\x79\xe6\x00\xe7\x9a\x6b\xfd\xb6\x31\x78\x76\x71\xb2\x5a\xee\x96\x2e\xfa\x03\x1c\x5e\x5f\x91\xbc\x46\x8f\xc5\x9e\x6f\xd7\xb9\xb1\x60\x37\x00\x57\x63\x1c\x29\xf5\x18\x0d\x75\x48\x2d\xd3\x4e\xad\xc3\x85\x1b\xb3\x19\x6a\x5b\xf4\x48\x10\x4f\xf4\xef\x34\xbe\xc5\x43\x31\xf8\xf9\x00\xf1\xf4\x8a\x09\x0e\xf1\x24\x9e\xe8\xdb\x6a\x97\x4c\x97\xa7\xde\x98\x73\xea\xca\xed\x17\xcf\xcc\x85\x16\xbc\x00\xa3\x90\x5d\x56\xd2\xee\x74\x24\x36\x15\xb0\xb3\x64\x4e\x03\x17\xe6\x2e\xda\x5d\x7f\xce\x9f\x42\x5c\xf1\x7e\xd9\xbd\x59\xca\xaa\x50\x57\x4e\x7d\x00\xbc\xfd\x4a\x2b\x66\x80\x2a\x15\x7b\xbb\xea\x64\x69\xa6\x0f\xdb\x99\xec\x95\x61\xea\x92\x59\x8a\x92\x55\x5f\xa0\xbe\xc5\x45\xa0\x05\x59\x2b\x23\x2a\x57\x1c\xf5\x12\xbb\x26\xd1\x39\xe6\x8b\xcd\x4c\x82\x29\xf1\x5f\x0b\xc4\x2f\x56\x6e\xd4\x15\xff\x6a\xa5\x43\xd8\xbb\xab\x13\x12\xb5\xfd\x79\x91\x37\xed\x26\xc6\x54\xbb\xd3\x4e\x25\x35\x3b\xe2\xaa\x4b\x79\xd9\x4e\x70\x9d\x35\xb7\xb8\x49\x98\x5a\x0d\xeb\xb7\x0b\x7f\x9b\x45\xbf\xc2\x7f\x9e\x18\x82\xc5\x38\x75\xda\x3b\x88\x4a\x29\xdf\x6c\x08\x0d\x96\x61\x51\xf2\xd0\x2d\x6b\x61\xc2\x28\x86\x9d\xde\xaa\x4e\xaf\x33\x85\xf1\xe8\x16\x3b\x13\x56\x9f\xfb\xc1\x39\x47\xb7\x4c\x31\x63\xf4\x6b\xae\x4c\x99\xc5\x43\x89\xb9\xe9\xe3\xe1\x9d\x4c\xff\x68\x57\x6c\xaa\x86\x4b\x63\x18\x5d\x32\x32\x9d\x22\xff\x4d\x3a\x6a\x79\xd3\xba\xf2\x8c\x97\xdb\x0e\xf6\x44\x0c\xa3\x04\xa4\x76\xaa\xb8\x05\x0a\x54\x35\x43\xb7\x22\xe5\x4d\x3d\x1b\x9e\x27\x6b\x01\x8c\x61\xc4\xcb\x76\x4d\x91\x0f\x20\x4b\x84\x90\x25\x2f\x31\x02\xf2\xa9\x14\x25\xbd\xf2\xb1\x77\x5b\xe7\xc7\x18\xc1\x5e\x0a\x0c\x1d\x72\xb4\xee\xb7\xd3\x67\xb9\xef\xdb\x75\x6e\x20\x66\x6f\x43\x86\x83\x4a\xc4\x98\xad\xd8\xda\x97\x57\x5b\xde\xb4\x78\xc9\xaa\xd5\x4c\x0a\x0e\x87\xa4\x61\x46\x6e\x70\x10\xa4\x53\x51\x9c\x87\xba\xdc\x27\x4a\x26\x9d\x90\x9f\x60\xe7\x61\xac\x48\x86\x48\x2c\xea\x44\x0b\x73\x23\xb9\xd7\xd3\xa5\x0f\xcd\x95\x14\x65\xa5\x1b\x0a\x04\x57\x6c\xbb\x5c\x4d\x54\x86\x97\x52\xa9\xd3\x04\x0d\x0b\xbf\x5a\xd6\x5c\xd0\x29\x23\x71\x75\xac\xcc\x07\xf1\x6c\xc6\x25\xc8\xd2\x87\x33\x07\x1f\x5e\xf8\xea\xb0\xa5\xe7\x68\x4a\xd1\x0c\x93\x38\x3a\x52\x1f\x53\x52\x55\x98\xbd\x92\x5b\x61\x2d\x6b\xe3\x4e\xda\x7a\x4f\x8e\x10\xa4\xde\xb8\x33\x20\xb7\xeb\xdf\x84\xf7\xbc\xe3\xe9\xf0\xcf\x4f\xfa\xa0\x32\xbb\x5c\x05\x8f\x84\x8c\x92\x4a\xa5\x73\xa9\x6c\x70\x38\x8d\x99\xf6\x4c\xca\x7f\x49\x4e\xa5\xfd\x03\xf9\x58\x7e\x0c\xe5\x1d\x70\x80\xaf\xc4\x04\xbe\xcd\x1a\xe0\x3e\xb1\x31\x09\x38\x86\x20\x7f\x51\xfd\x26\x8b\x47\x4b\x1e\x15\xd5\xdb\xc5\x43\xff\x2b\x58\x7c\x25\x8c\x69\xe5\x21\x12\x0a\xfa\x6a\xca\x38\x22\x76\x59\x7d\x59\xc9\x22\x58\xad\xd1\x97\xcb\xc6\x1c\x62\x45\x67\x88\x76\xe0\xe8\xde\x3c\x7f\x5b\x83\x68\xfb\xcf\xdf\xdf\xed\x2f\x8c\x68\x24\x86\x12\x75\xc5\xbf\x99\xd5\x34\x12\xb5\xb9\xf0\xdc\xa0\x46\x69\x0b\x4b\x80\x35\x2a\x37\xd9\x84\x43\x54\x79\xb9\x98\xed\x92\x8d\x2d\x7a\x95\x41\x62\x3a\x57\x34\x91\x68\xe7\x79\xd2\x60\x0d\x16\x42\x23\x6d\xd0\xf7\x29\x8a\xda\x10\x57\x18\x19\xa2\xc3\x0b\x42\xd9\x9c\xaf\x2b\xd1\x26\xe6\x33\xdf\x12\xd6\x4d\x51\xf8\x5b\xaf\x9e\x72\xd9\xe8\x75\xaf\x9d\x81\x3f\xb8\x7b\x74\xf5\xcb\xee\x1c\x6b\xc7\x74\xde\x4f\x71\xc1\xba\xf9\xd8\x1c\x4d\x14\x4c\x01\x54\x8e\xa9\x10\x71\x6d\x96\x98\x06\x89\xaa\x39\xd4\xa6\xce\xd4\xb2\x10\x31\xb5\x03\xaf\x8c\x73\xb5\x6c\x64\xaa\xe5\xe2\x1c\xa9\xa4\xa7\xe0\x86\x1a\xdc\xa3\xd6\x58\x66\x6a\xbb\xa5\x3a\xf7\xaa\x59\x7e\x76\xfa\x79\x81\x06\xf3\x3a\xf4\x85\x36\xf1\xd3\x05\xda\xac\x14\x9c\x6f\x68\x7a\x19\x4a\xa3\xb8\xe6\xe7\x53\x19\x01\x19\xad\x5f\x59\xf4\x5e\xfd\x7c\x43\x1f\xc5\x43\x3b\x65\x51\x3c\xef\x87\xe4\x98\x84\x61\x7a\xfb\x33\x5f\xde\x71\x48\x18\x1e\x62\x21\xe7\xc9\xd1\x0f\xa5\xf0\xb5\x5a\xdc\x21\x73\xb4\xde\xae\xea\xea\xe4\xa8\x1d\x60\x88\x98\x37\x06\x01\x19\x45\x7a\x1f\xdc\xbe\xeb\x4c\x95\xb7\xae\xc6\x88\x3f\xcc\x03\xcc\xf8\x99\x3e\x99\x15\x1e\x7f\x85\x43\xe8\x79\x28\xe2\xb9\x32\x5d\x70\x3c\x46\xde\x35\x60\x63\x04\x3c\x12\xfa\xfc\x76\x07\x90\x21\xff\x22\x24\x3e\xe2\x7f\xe4\x8b\x17\xe0\x08\x90\xb0\xdb\xe4\xf4\x33\x6b\xaf\x39\x2f\xbf\x8c\xde\x5c\xa0\x83\x28\x32\xe5\xf7\x3a\xae\x1e\xe4\x3a\x99\xfe\x09\x77\xd1\x72\x19\xf1\x09\xb7\xd4\xc3\x0c\xc1\x3a\x39\xc9\x17\x12\x77\x0d\x78\x46\x11\x62\x67\xc2\x91\x9b\x36\x92\xd3\x9a\x35\xdb\x54\x8b\x6c\x51\xe2\x11\xa5\x05\xe2\x7d\x18\x8e\x10\x6d\x4d\x3e\x6f\xa6\x40\xbe\x68\x78\x5e\x24\x2e\x1d\x44\x52\xbb\x72\x6c\x63\xcc\x0c\x95\xd7\xa6\x88\x0e\x09\x9d\x64\xec\x10\x12\x64\x48\x75\x3e\x95\xe2\x35\x57\x49\x38\x7b\x1a\x18\xc4\x81\x91\x86\x2b\xfe\xe3\xd2\x69\x30\x63\x6c\x5d\x0a\xdc\xa2\x9a\xe4\x6f\x93\x7b\xab\x6c\x90\x07\x64\x34\x92\x7b\xb7\x68\x54\xa2\xe9\x3a\x13\xe4\x63\xd8\x99\xc2\x98\x27\x36\xcb\x4f\x01\xbc\xcb\x24\xaf\x62\x35\xe9\x1c\x63\x73\xdd\x2a\xb4\x06\xbe\xe2\x98\x70\x89\x44\x0e\x02\x54\x05\x86\x4b\xd5\x29\x45\xe5\x13\x7e\x80\x3b\x37\x38\xf4\xf3\x7b\x53\xc3\xdd\x4e\xc6\x24\x12\xb3\x69\x5c\x31\xbf\x56\x7b\x54\x4e\xb7\xdf\xf6\xfb\xf6\x0d\xe9\x44\x0c\x4d\x3b\x52\x02\xd7\xbe\x7d\x3f\xfa\x74\x11\xfc\xe1\x33\xfd\x4d\x48\x23\x60\xc8\x0b\xbf\x2e\xf7\x53\xdd\xb8\x0b\x2b\x4c\x7a\x57\x1a\x56\x9d\xd0\xa2\xc9\x5f\x24\x66\x89\x11\xcc\xa3\x11\xf0\x24\x61\x0f\x0c\xd9\x42\x45\x22\xa7\x94\x4c\xa6\xec\x39\xa1\xc7\x24\x1c\x62\x3a\x49\xaf\xc4\x6b\xd6\xaa\x93\x47\xe9\x60\x3f\x40\x57\xc2\x35\x34\x07\xc4\x9a\x39\x0c\x5c\x30\xf5\x42\xe4\x94\x15\x29\xb3\xe1\xb1\x66\x0f\xf0\x94\x46\x3a\xa9\x37\x4b\x05\xfd\x53\x7e\xcf\x6b\x0a\x98\x30\x0e\xe7\x9d\x47\xb1\xfa\xd5\x59\x9c\x77\xe2\xd2\x64\xbe\x18\x65\xd7\x1d\xfa\x5d\xf5\x8a\x08\xd9\x6c\x84\x42\x92\x78\x1e\x30\xf4\x94\xd0\xad\xd2\x3f\x8d\x02\xe1\xf1\xd7\xad\x44\xc2\x76\xcf\xc9\xa5\xff\x9b\xe3\x95\x90\x99\xf9\x99\x25\xde\x9f\x7f\x01\x19\x82\x35\x96\xa3\xc9\x8b\x0a\xd9\x4e\xa1\x0f\x29\x42\x11\xbb\xbb\x8f\xcc\xec\x71\xef\xe6\x0c\xef\x42\xfd\xf1\xcb\x49\x23\xeb\x5c\xcd\x5f\xf5\x1e\x76\xec\x73\x9b\xf4\x2e\x40\xa3\x18\xfb\xfa\xfb\xed\x6c\xd8\x1d\xf1\x4c\xe6\x79\x48\xab\x17\x47\xf1\x40\xfc\xc9\xef\x9f\xf9\xf5\xdb\xdb\x17\x8e\xeb\x5c\x26\x2f\x45\x00\x86\x3e\xb8\x80\x8c\x21\xca\x61\x11\x75\x8a\x31\xef\x22\x1b\x40\xda\x89\x70\xe3\xb8\x1f\x92\x73\x97\x70\xe8\x68\xde\x57\x13\xb9\x65\x94\x6e\x42\x55\xa4\x9c\x39\xd5\xa6\x9e\x93\x90\x81\x4b\x06\xbd\x6b\x2d\x41\x55\x00\xee\x44\x9e\x33\x1a\xb7\xa2\x51\x67\x48\x42\xd6\x89\x64\x0b\x2d\x5c\x4c\x05\xc6\xb6\xa4\x3a\x59\x49\xe0\x12\x7f\x96\x66\xe1\xdc\x54\xcb\x16\xd6\x44\xf5\x31\x09\x08\x9d\x97\xcd\x9e\x7c\xb9\x4d\x79\x87\xc2\xf7\x3b\x86\x41\xd8\x08\xdc\x71\xa6\x2e\x2c\xa5\x6e\xbb\x9e\x13\x4f\x13\xa3\x19\xe4\xbf\xce\xc3\x90\x72\x24\xed\x92\xe6\xb0\x89\xf2\x42\x25\xac\xb9\xe8\x56\x5b\x58\x17\xd5\x5c\xb5\xcf\x4d\x71\xfa\xf6\x9a\xa8\x3d\xc1\xc3\x21\x78\x87\xd1\x8d\xb6\x38\x59\x6d\x50\x48\xdb\x9e\x28\x99\xfa\xe4\x46\x27\x82\xcb\xec\x86\xdf\xec\x03\x09\xeb\xbb\xda\xae\x7e\x89\x93\xdd\x05\x84\x70\x86\x47\xd0\xb0\xba\x96\xd9\xdf\xa9\xa9\x86\xdc\x32\x3b\x79\xc1\xcd\x40\x50\x08\x0d\x5f\x69\x87\x2f\x2f\x5f\x9f\xaf\x47\x02\x5f\x91\x11\xb8\x5c\x87\x60\x9c\x21\x46\xb1\xb7\xe2\x4e\x2e\xe0\x08\x01\x06\xb5\xba\x71\xf9\xfd\x08\x43\x6b\xa5\x1d\x89\x68\x04\x30\x20\xb7\x2b\xee\xe8\x2a\x05\x72\x5c\x75\x1f\x2e\xe0\xa7\x99\x51\x4c\xdb\xaa\x87\x4a\x56\xd7\x22\x06\xc5\x18\x52\x6b\x63\xa2\xdf\xb4\x5d\x44\x8c\xe2\x41\xcc\xaf\x0e\x9e\x42\x6d\x41\x4b\x8b\x5d\xce\x57\x9a\xe1\xd7\x8a\x4b\xdb\xee\x1a\xe8\x7f\x19\x4f\x06\x04\xac\x68\x14\x9d\x4f\x49\xeb\x6b\x1b\xcb\x05\x25\x23\x8a\xa2\xc8\x30\x02\xeb\xc4\xfa\xe6\xe4\xbf\x83\x62\xd0\xdd\xdc\x27\xe1\x8c\x7b\x76\x07\x5f\x51\x73\x75\xfd\xe1\xdb\xcf\xcf\xaf\x76\xe0\xc5\x4b\x2b\xa7\xe5\xdc\xbc\xe0\x83\xb3\xe3\xc3\x27\x32\x88\xd6\xcf\x86\xa3\x5f\xef\x3e\xfd\x72\x16\x1c\x2c\x10\x40\xc7\x2b\xdf\x06\xf0\x4e\xde\x93\x19\xa0\x69\x49\xcc\x02\x54\x75\xd6\x2c\xcd\x93\xce\xa3\x43\xac\x19\x7d\x5f\x52\x87\x2f\x9f\xbd\xbc\x7b\x39\xf5\xf5\xae\x96\xa9\xe3\x3a\xcc\x71\x1d\x11\x5a\xb1\xfc\x22\xc4\xb5\x35\x10\xd4\x92\xbf\x1a\xc7\x9b\x26\x16\x27\xad\x96\x6c\x72\x2a\xbf\x24\xc2\x6c\x69\xaa\xe3\x6b\x7f\x0d\x9d\xf0\x80\x9b\xe3\x9d\x09\x0a\xe3\x32\x07\x0c\x45\x7a\x05\x57\x24\xf2\x98\xc9\x85\x49\xd1\x90\xa2\x68\x9c\xdf\xb7\xd6\x7b\xc9\xf3\x6c\x53\x15\xb2\xa6\x26\x07\xb5\xe0\x9d\x7f\x4e\xe8\x00\xfb\x7e\x23\x50\x7a\xb6\x2d\x6d\x73\x8e\x30\x0c\x83\x68\x6b\x98\xbe\xdc\x99\xa4\x05\x81\x3f\xb4\xc4\x3e\x2d\xd2\x93\x42\x73\xf0\xe9\xb2\x84\x2a\x2e\xa4\x49\xe9\x63\x6a\x35\x80\xdf\xfa\xf7\x94\x68\x24\x35\x94\x38\x9d\x5b\x25\xf6\xb5\x1c\x2e\xfb\x41\xad\x42\x20\x80\xf5\x94\x58\xd7\xbc\x9a\xb5\xb4\x39\xb9\xd0\x76\xbb\x8e\x3e\x22\x49\x9f\x3f\xd5\x20\x8d\x15\xc8\xea\x8c\xea\x14\xf9\x39\xe2\xd0\x0b\x12\x86\x54\x05\x74\x94\x0c\x2f\x60\xe1\x5e\x26\x0f\x67\xdf\x14\xf0\x4c\x75\x22\x99\x12\x20\x11\x3d\xab\x7d\x37\x94\x65\x2d\x80\xa1\xf6\x73\x34\xdd\x96\x15\x59\x39\x22\x56\x67\x48\x08\x6b\xe1\xcb\x2a\x5c\xf6\x37\x65\xe5\xd5\x79\x3d\x52\x38\x4d\x61\x37\x09\x9c\x45\xf7\x43\x16\xa1\xa7\x69\xf9\x5c\xfe\xd4\x5c\x5f\x7c\x81\xfe\xf3\x00\x5a\x0d\x05\x79\xba\xf1\x4a\x69\x48\x4b\x4c\x6b\x28\x48\xeb\x82\xae\xb4\x7f\xb5\x86\xa8\x86\x86\x0b\xe5\xe7\x76\x74\xec\xbb\x4e\xa2\xa2\x32\xed\xf2\x8b\xa8\x4a\xdc\x94\xda\x2a\xde\x29\xee\x79\x3b\x8e\x5a\x2f\x4e\x46\x2e\xb6\xd0\x00\x3a\x7e\x08\xb4\xd8\x62\x8d\xa6\x09\xf1\x51\x60\xa8\xd0\xa4\x91\x76\xa5\xd8\x50\x21\xf7\x24\x2d\x46\x7f\xcc\xef\xed\x3e\xe6\x5e\x72\xde\xbe\x53\x57\x65\x7d\x44\x18\x79\xc9\xcb\xea\x96\x5e\x31\x96\x5c\xaf\x0e\x7d\xc7\xee\xe8\xda\xb8\x41\x08\x18\x44\xa1\x32\x6a\xf7\x88\x10\x6a\xcc\xcd\x54\xdb\x36\x65\xc1\x6b\x6d\x55\xf9\x72\x47\x94\x6a\x34\xc0\x1b\x14\x8f\x84\xf2\x90\xa6\x80\x91\x2b\x7c\xfa\x7f\xff\xe7\xff\x16\x9f\xcb\x21\xca\xd5\x98\x4f\x32\x2c\x04\x13\x2b\x3b\x80\xb2\xe5\x6a\x8c\xe3\x52\x41\x81\xea\xfe\xd6\x22\xbf\x1c\xa9\xb9\xd8\x1b\x8a\x98\xa9\xb8\xf9\x06\xca\x6c\x6c\x85\xe2\x88\xc7\xdc\x4a\x01\x83\x3b\x20\xa8\x06\x0c\xd1\xc9\xa6\xfd\xe2\x6a\x95\xb8\x6e\x38\x58\xf3\x6a\x09\x95\xd0\x6f\x45\x0a\xd2\x64\x2d\xd3\xb2\xfc\x1b\x58\x8a\x96\xe4\xc8\x5d\x69\xdc\x94\x89\x16\xf9\x80\x96\x8e\xbf\xcf\x41\x87\x0e\x56\x51\xe9\x4e\x85\x56\x9c\x37\xbd\x5c\x9f\xb2\x36\x8f\xc9\x88\x26\x53\x76\x97\x99\xb4\x36\x88\x8f\xb5\x02\xd9\x0a\xfb\xd0\x1c\xda\x5b\xa0\x8a\x9f\xac\x4a\x99\xda\xe7\x04\x08\x33\xae\x61\xeb\x99\xd6\x36\xac\x2f\x77\x94\xff\x77\x35\x46\xc0\x0b\xe2\x88\xf1\x68\x0e\x20\x0d\xc3\xe0\x0e\xf0\x66\xba\xb5\x78\x01\x73\x9c\x08\xe6\xd0\x32\x8b\x30\xf0\x0c\x32\x6f\x5c\xae\xb7\xb9\x28\x0f\xcf\x09\xb7\xf7\xc1\x24\x69\x9c\x87\x43\x27\xea\xa7\x16\x38\xa9\x90\x65\x67\xaa\x62\x9b\xd3\xd4\x22\xaa\xa4\xb2\x29\xb6\x2e\x5a\x9d\x36\x61\xab\x3e\x55\x3f\x0a\xa3\x71\x2b\x37\x4a\x5b\xaf\xd5\x96\x28\xd6\xbf\x66\x57\xca\x8b\x57\xe1\xf0\x31\x7b\xf3\xc2\xce\x73\xd5\xe4\x85\x5a\xc8\xef\x94\xfc\x9f\x76\xec\xda\xca\x6f\xde\xee\xa1\xd4\xdb\xf6\x20\xda\xdd\x7a\x16\xea\x9d\x50\xf9\x6d\x3a\xcf\x1c\x12\x2e\x9e\xe5\xfb\xa2\xca\xa8\xea\x85\x4b\xfc\x36\x40\x00\xe5\xc0\x7b\x7d\xb8\x7d\x01\xcb\x78\x5b\x05\x3f\xac\x76\xaf\xb1\x6b\x0a\xde\xb1\x3c\x22\x5f\x17\x89\xad\x3a\xca\x52\xae\xc8\xa2\x01\xca\x49\x1b\xd2\x51\xa4\x3f\xd4\xe7\x86\x64\x0a\x05\xd7\x98\xd7\x69\x9f\xfa\xdf\x77\xb7\x9b\x2f\x02\x56\xe7\x65\x93\x47\x90\xc8\xc6\xcd\xd6\xdf\xe6\xc7\x1f\xb1\x5c\xa2\x78\x90\x9c\x04\x54\x4f\xd7\x3c\xce\xb8\x5a\x0b\xa4\x06\x48\xae\xc1\x76\x69\x53\xaa\x19\x94\x0e\x78\x11\x09\x3b\x33\x71\x2f\x9e\x1f\xf2\x22\x41\x40\x9e\x25\x12\x38\x89\x91\x9e\xa9\x0c\x7d\xe1\x58\xbd\xd1\x56\xfe\x66\x2d\x3b\x48\x51\xc5\xb5\xd6\x8d\xd3\x80\xdc\x09\x89\x58\xbb\x72\xbc\xbb\x7a\x73\x76\xf6\xe7\xdb\x37\x0f\xca\xf1\x41\x39\xfe\x77\x2a\x47\xb5\x90\x7c\xbe\x12\xb3\x1a\xea\xe9\x80\xd5\x55\xaa\xd4\x43\x52\xbe\x5c\x5a\xfd\xf8\x39\xd5\x4f\x46\x4a\x4b\xfd\x73\x4f\x77\x83\xbf\xff\x89\x5f\x1f\x4f\x7f\xb5\x04\x9a\xed\x57\xab\x4c\xc9\x2f\x42\x8f\x03\xb6\xf2\x09\x4c\xe4\x6e\x2b\xcd\x92\x4f\x37\x92\xb4\x5b\xe9\x03\x56\x13\xbd\x84\x7b\xb1\xf1\xde\xa0\x50\x62\xb2\x2a\xf1\x8a\xaf\x91\xff\x75\x95\x67\xe1\x17\x37\xb5\xd6\x57\x0d\xba\x8b\x11\xfb\x15\xd5\xec\x1b\xb5\x7a\x50\x1d\x4e\x9d\xe7\x74\xb1\x03\xc5\x3c\xa7\xb0\xad\x80\x40\x31\x47\xeb\x16\xde\x77\x97\x3b\x83\x3f\xfe\xec\xa3\x87\x6d\xf3\x61\xdb\x6c\xbf\x6d\x16\xb7\xc8\xd5\x6f\x7c\x60\x0c\x45\x1e\x6b\x06\x52\x9c\xb9\x82\xd4\xab\x76\xb9\x9a\x3a\xd1\x14\x87\x1c\xf9\x82\x77\xb4\x96\xdd\x4b\x76\xdd\x72\xf9\x67\x0c\x59\x77\x6d\xc7\xa3\xa3\x57\x9f\xb6\x66\xf1\x02\x51\x44\x0c\x0e\x22\x9e\xa9\x26\x86\xa0\xcf\xed\x8d\x2b\x30\x5d\xa5\x85\x5b\xc5\x5e\xca\x50\x63\xd2\x5d\x9d\x2f\x4d\x01\x12\xc3\xb7\x3c\xb1\x04\x8f\xd5\x0c\xe7\x74\x55\x6a\xe5\xf0\xf5\x0c\xd1\xe4\xc0\x66\x07\xf6\xd2\x86\xc2\x82\x4f\x68\x51\x32\x4f\xd4\xd3\xe2\x92\x09\x9d\x21\x1a\xf1\x98\xf1\xc5\xc9\x7c\x97\x36\x65\x0d\x9d\x53\x74\x55\x4b\x83\x25\x9e\x72\x71\x3f\x29\x9a\x9f\x16\xa1\x35\x76\xf3\xa2\x9e\x47\x17\x9f\x18\x95\x46\xab\x41\x5b\x00\x38\xae\x20\x37\xbd\xa4\x55\x5a\xaa\xa2\x02\x48\xd3\x9a\xd5\xd1\xc5\xdb\x97\x83\x93\x9f\xdf\xf7\x9b\xa3\xec\x5c\x47\x80\x22\x71\x5c\xaf\x78\x92\x59\x27\xee\x7f\x83\xc9\x72\xb0\x7c\x93\xc5\xce\x58\x79\x54\x6b\xac\x68\x62\xb2\xc5\x2b\x25\xdb\xa5\xc5\x1d\x72\x93\x09\xf3\xc8\x3d\xf8\x5e\x4e\xfe\x73\x6c\x9e\xb5\xdb\xa7\xbd\x1a\xac\xc2\xae\xa5\x07\xca\x02\xe4\x5a\x1e\x55\xb2\xb6\xcd\xd5\x06\xdb\x66\x2e\x27\xf1\xb8\x5f\x66\x74\x9a\x8a\x5c\x57\x93\x31\x65\x8b\xb9\x1e\xa3\x53\x0e\xb7\xb7\x77\x2f\x67\xd9\xfc\x0b\x7b\xa8\xad\xaa\x83\xd4\x01\x43\xa4\x85\x66\x72\x78\x9c\xe8\x1a\xf0\x83\x31\x38\x41\x0c\xe2\x20\xd2\x8e\xb3\xbe\x51\xb5\xd6\x80\x55\x4d\x81\xff\x01\x49\xbf\x6a\x57\xda\xc9\x60\xfc\x21\x5d\xac\x8d\xb1\x7e\xc7\x32\xa8\x7b\x23\xf1\xe0\x00\x47\xad\xab\x27\xb1\x0d\xc0\xdd\x2a\x49\x4d\xf1\xf0\xec\xa8\xb5\x44\xcf\x5b\x25\xc1\x02\x63\xcf\x8e\xdc\x76\xc0\x7c\x76\x97\x2a\xeb\xba\x59\x32\xd7\x17\x72\x2a\x11\xd5\x85\x42\x2d\x40\x04\x9c\xd6\x30\x3f\xab\x02\x9b\xe1\x54\xe9\x8b\x5e\x98\x97\x50\x33\xd3\x5a\xe9\x27\x47\x67\x57\xcc\x85\x56\x99\x47\x39\x17\x04\x42\x81\xa9\x74\xa2\x69\x80\x59\x27\xdd\x78\x6c\xea\xa4\x56\xaa\x38\x04\x68\x84\x42\x3d\x86\x69\x6a\xe0\xf5\x1f\xbb\xbb\xee\x07\x8e\x20\xdb\x22\x7a\xaf\xde\xca\x13\x25\xf0\xc4\x77\x59\x5c\xb3\x09\x74\x4e\x3e\x2c\xad\x59\x81\x48\x9e\x50\x24\xb6\xe4\x93\x82\x05\x5c\x67\xf4\x35\xf6\x20\xc0\xab\x95\x28\x2c\xde\x08\x8f\xd7\xa9\xf5\x75\x55\x46\x6d\xac\x08\xc5\xc1\x1b\x3a\xd1\x0d\x8f\xee\x29\x10\xa3\xe3\x88\xfe\xcb\xa2\xbb\x5c\xb4\xd5\x71\xf2\xda\x8b\x25\x68\x9a\x8f\x35\xb1\x72\x4d\xba\x4d\x32\x44\x2d\x94\x5a\xe0\x93\x79\x2f\x6a\xbf\x0d\x6b\x5e\x56\x2d\xe9\x3d\xb3\x25\xad\x7b\xa9\xae\x50\x4f\x9d\x49\xbd\xe7\xee\x1b\x42\x39\x9b\xde\xdc\xd5\xbc\xf7\xed\x6b\xe0\x5c\xd9\x46\xfa\x9b\xfe\x56\xb9\x2d\x2a\x76\x6f\x8e\x2c\xdf\x36\xe1\x45\xad\xa3\xd5\xed\x3a\x12\x14\x93\x67\xfe\x2b\xc0\x8e\xfc\x6b\x8f\x4c\xa6\xd0\x33\xe1\xfa\x2d\xac\xcd\xeb\x90\xfb\x9c\x79\x52\x69\x2a\x6a\x5d\x84\x2d\x2b\xb3\x60\x9f\x59\xe3\x16\xf6\xb7\xff\xe6\x3c\x9b\xda\x4c\x89\x30\xc3\x7c\xae\xd3\x82\xce\x1c\xa9\x32\x79\x55\x33\x0d\x7d\x2f\x4e\xda\x45\x3e\xb7\x26\x41\x39\xd5\xc9\x6a\x24\x2f\xa4\x0f\xe8\x8c\x7f\x02\x2f\xd2\xfd\x52\x43\x1d\x7f\x04\x8b\x62\xce\x2b\xa4\x71\xe9\x19\x4d\x0b\xe4\x34\xd5\xb1\x63\x9e\xc4\xa6\xb9\x48\xf9\x44\x06\xd2\x75\x5c\xef\x58\x5e\xc7\xbc\x10\x1f\x75\xeb\x65\x38\xad\x7b\xd7\x9e\x96\x72\xa6\x53\xf1\x18\x69\xf5\x4a\xe5\x38\xb7\x60\x52\x93\xbd\x22\xa9\x62\xcc\x9b\xeb\x09\xf1\x94\xd1\x5b\xd6\x90\xdc\x24\xfc\xfd\xb5\x8e\xb4\x42\x79\xb2\xb5\x65\x3a\x2d\x94\xeb\xb4\x60\xb6\xd3\xd2\xf2\x9d\xd6\x90\xf1\x74\xd4\x70\x92\x6c\x36\x35\xad\xd6\xeb\xbd\xe4\xfe\x7c\x3b\xd9\x3f\x4b\xc9\xff\x31\x33\xbe\x49\x97\xe8\x72\x80\x4c\x55\xfa\x5a\xa6\x9c\xd7\x4a\x7b\x93\x17\xc1\x72\xd1\xd4\xa4\x22\xe9\xd6\xcb\xca\xd2\x5e\xc0\xfc\xa9\x2f\x0a\x7f\x57\x96\x01\x53\xbf\x34\x2d\xf6\x9b\xff\x8e\x69\x2e\x1c\x49\x56\x3c\xd5\x63\x38\x43\x60\x80\x50\x08\xf8\x61\xd2\xaf\x54\x7c\x58\xd6\xdc\x35\x24\x39\x35\x1d\xd7\xe7\x0b\x03\x9d\xef\xf6\x3a\xbf\xb6\x6a\x79\x83\xad\x44\x39\xac\xf9\xfe\x3a\xf8\x75\xf6\xb6\x77\x3c\xf8\xfc\x10\x4c\xf7\x10\x4c\xf7\xed\xde\x44\xaf\x29\x06\x3d\x5d\x86\x95\x00\xf4\x7c\x7d\x26\x7f\x0e\x48\xa4\x00\xac\xcc\x94\xb0\xa2\x72\x11\xaa\xb5\x47\xa2\xa7\xc4\xb4\xd0\x3f\xf7\x16\xc7\xfb\xf8\x25\x7a\xfa\x5b\xf0\xf2\xb5\x75\x2d\x87\x07\x4c\xaa\x25\x45\xb6\x7e\xdf\x31\xab\xad\xe2\x55\xef\x4d\xba\xff\xdc\x39\xdf\xdf\x7e\xb6\xa3\x87\x5f\x5b\x10\xed\x4e\x0a\xe4\x82\xeb\x61\xb5\x72\xf6\x8d\x48\x9a\x39\x40\xb1\x8d\xdc\xb5\x12\xb9\x5a\xf8\xb4\x35\x4b\xe1\xf5\x2c\xea\xef\xbf\x9b\x7e\x5a\x40\x0a\x6b\xcf\x2e\x0b\x9c\x56\x18\x38\x8a\xd9\x98\x50\xfc\x19\x55\xaa\x6d\xcd\x73\x3e\xd1\xc6\xec\x32\x72\x8d\x64\x15\x09\x8a\x98\xc5\xb1\xff\x3d\x89\xa9\x46\xe1\x47\x88\x31\x1c\x8e\xa2\x2e\x6f\x30\xaa\xd1\xfa\x47\xc7\xaf\x80\xe8\xb5\x21\x56\xd0\x27\x28\x02\x21\x61\x60\x4a\xc9\x0c\xcb\x3a\x7a\x14\xfd\x19\x63\x8a\x7c\x30\x45\x74\x82\x23\xb1\x97\x03\x1e\x62\xe0\x31\x70\x97\x10\x07\xfd\x09\x0e\x71\xc4\x28\x64\x84\x02\x3c\x14\xb5\xfb\x70\x04\x60\x08\x78\x35\xc1\x6e\xeb\x43\xf0\x85\xa4\x00\x86\xeb\x19\xfa\x0d\x66\x63\x31\xd4\x08\x33\xa4\x8e\x15\x30\x02\x66\x18\xdd\xf0\x41\x99\x06\xb2\xe2\x60\x64\xf3\xfa\xcd\xd7\xff\x0f\x36\xeb\xbf\xaa\xb5\xd6\xbc\xfa\x3f\x8d\xfa\xbf\xf4\x76\x0f\xb6\x16\x58\xfd\xe5\x31\xd8\xd6\x81\x2d\xbd\xd7\x89\xfe\x8c\x21\x45\x40\xff\x75\x5f\xe7\x1b\x5c\x4e\xd3\xdb\xab\x6b\x7a\x67\x75\x4d\xef\xae\xae\xe9\xbd\xd5\x35\xbd\xbf\xba\xa6\x1f\xad\xae\xe9\x83\xd5\x35\xfd\xb8\xda\xf4\xf2\xb5\x54\xa9\x6b\x3b\x1b\x45\x96\x89\xbf\x87\x02\x7e\xb7\x5b\xcf\x1e\x6d\xdf\xc1\x39\x50\x89\xef\xc3\x46\xd6\x7a\x99\xec\x4e\x8d\xba\x73\x63\x5a\x9d\xbf\xe9\xe8\x78\x29\xa7\x67\x29\x7e\x9e\xfb\xb0\xeb\x9b\xec\xb2\x76\xc0\xc4\xb9\x13\x68\xc9\xd0\xc4\x0b\x61\xea\x1e\x8d\xd2\xc4\xaa\x07\x54\x5d\xbb\x4b\xfa\xef\x34\x0a\xe5\xbe\x03\x50\x70\xf4\xaa\x4e\x3f\xe5\x3f\xae\x98\x0e\xe8\xfb\x14\x45\x26\x76\x1c\xe5\xbf\xae\x7a\x56\x10\x1d\x5e\x10\x6a\xba\xc2\x9e\xca\x9f\x56\x4c\x85\x0f\x19\x14\x4e\x0b\x53\xf6\x65\xe1\x81\xa6\x82\x1d\x6b\x0c\x92\x11\xbb\x50\x07\x26\xfa\xab\x14\x26\x33\x92\x50\xea\x95\x68\x96\x87\x30\x96\x7b\x0b\x63\x11\xdb\xcc\x43\x04\xcb\x7f\x70\x04\x4b\x75\x75\x38\x16\xe5\x4c\xea\x2e\xc6\xed\x8d\xc2\x65\xf8\x47\x53\xbb\xb6\xcd\xd9\xe3\xfe\x5c\xf3\x6f\x5f\x44\xb3\x77\xd3\x50\x9f\xb3\x5d\x39\x76\xdc\xcb\xad\xc9\x22\xb3\xd0\xce\x5b\x9d\xbe\x24\xfe\x5d\xff\x64\x3c\x27\xbf\xdd\x5e\x86\xdb\x4f\xf5\x07\x42\x06\x47\x96\x07\x41\x8f\x04\xf1\xa4\x9a\x58\x6a\xd4\xf3\xe2\x79\x80\xa3\xce\x18\x06\x43\xfd\xa5\x9f\xf6\xc5\x9a\x28\x9e\xa6\x77\xb2\x73\xa6\x6e\x43\xb9\x82\xa3\xc8\x26\x07\x42\x9c\x15\x34\x1b\x26\x90\xfb\x3a\x83\xa3\xfa\xfc\x5a\x66\x4e\x2d\xc9\x9f\x31\x50\xa9\x3e\xa2\xb6\x71\x2e\x8b\x88\xd5\x17\x45\x50\xdf\x78\x97\xe6\x29\xcd\x0b\x08\x5e\x6e\xdc\x78\x1f\x50\x88\x2d\x11\x9b\xea\x15\x1c\xd9\xc0\x76\x58\xb3\x44\x33\xc4\x7c\xb3\x2f\x27\x67\x37\x45\x54\x6b\x9a\xb0\xcc\xde\x9a\x7f\xaf\x69\x9b\x87\xba\x32\xef\x7b\x51\x1f\xd9\xea\x30\x71\x45\x71\x0f\x31\x0c\xbb\xdb\x97\x8f\x8e\x2e\x2c\x81\xf4\xfe\x53\x6f\x79\xdb\x1b\x2a\x4d\xc6\x47\x4b\x91\x91\x37\x54\xad\x84\x65\x4b\xde\x67\xad\xbf\x1c\xe0\xdd\xe5\xab\x5f\xf6\x1e\x9f\x1a\x5c\xa0\x24\xc0\xde\x9d\x76\xd3\x6b\x15\xdc\xe4\x58\xc2\x4a\x1c\x79\x1e\x8a\x22\x7e\xc5\x48\x49\x00\xae\xd2\x4b\x3e\x3b\x77\xb8\x61\xd7\xb5\xda\x77\xd9\x0d\xe9\xb0\x31\xa6\xbe\x76\xb7\x72\xf4\x57\xc0\xd5\xdd\xf7\x58\x14\x2b\x88\x00\x1b\x43\x06\xe2\x08\x81\xd2\x90\x5e\xe1\x88\x45\xe9\xcd\xaa\xb8\xa0\xe4\xf7\x8c\x53\x44\x87\x84\x4e\x80\x87\x28\x83\x38\x04\x1c\xb6\xa1\x0b\x9e\xde\xc9\x1b\x59\x1c\x8e\x00\x14\xcf\xeb\x23\x99\xb9\xa3\xd6\xa3\x88\x81\x17\x27\x0a\xc7\x5c\x90\x6c\x38\x60\x18\xb3\x98\x8a\x1b\x5d\x14\x31\x70\x83\x83\x00\x0c\x10\x80\x31\x1b\xa3\x90\x61\x0f\x32\xe4\xbb\x60\x4a\x58\xf2\x09\x06\xc1\x1d\xff\x89\x50\x5e\xd6\x1e\x50\x04\x7d\x00\xc5\x40\x18\x01\xd0\xf7\x39\x70\x06\x0c\x00\x0e\x13\xaa\xf9\xa9\xa4\x25\xb1\x82\x2f\x84\x96\xc9\x65\x63\x04\xb8\xd8\x61\x14\x01\x18\xfa\x80\xc6\x01\x8a\xc0\x90\x50\x11\xca\xcd\x1b\x4d\xe9\x4f\x0e\x42\x95\x68\xdf\x66\x0b\x28\x24\x0c\x0f\xb1\x84\x08\xe0\xb9\xa1\x43\x52\x6b\xa4\xb4\x90\x35\xab\xf7\x1a\xcd\x99\x4a\x0c\x03\x5f\x29\x09\xad\xbb\xca\xbb\x7c\x7d\x80\x4b\x46\xa8\x94\xc2\xe6\x32\x12\xd9\x9b\xc9\x54\x31\xe4\x31\x90\x49\x4d\xe4\xa6\xf2\x08\x29\x02\x11\x23\x14\xf9\xc0\xe3\x19\x5c\x9d\x08\xfb\x08\xe0\x6c\x36\xa1\xa4\x6e\x4c\xd1\xd0\x71\x9d\x31\x63\xd3\xe8\x70\x6b\xcb\x47\x33\x14\x24\xaa\xa9\x3b\x21\x9f\x71\x10\xc0\x2e\xa1\xa3\x2d\x14\x76\xde\x5e\x6e\xf9\xc4\x8b\xb6\x7e\x43\x83\xad\xa3\x8b\x17\x5b\xbf\xe1\xd0\x27\x37\x5b\x11\xe2\x17\xed\xca\x00\x24\x79\xf2\x07\x4e\x44\x71\x68\x5d\x11\x14\x91\xdd\xee\xf3\x58\x83\x98\x91\x44\x06\x3d\x2e\xb8\x5e\x80\x60\x42\xf9\x90\x92\x49\xda\x00\x88\xa7\x24\x04\x5e\x40\xa2\x44\x34\x79\xe4\xc2\x80\x92\x9b\x08\x51\x70\xc3\x49\xe1\xcd\x02\x0f\x86\x00\x06\x11\x01\x13\x18\xc6\x79\x63\xe2\x05\xd9\x5d\x18\x31\x04\xcd\x01\xe6\x75\xdf\x37\xa8\xa0\xf4\xa0\x96\xfc\x3d\xc1\x21\x9e\xc4\x93\x46\x39\x11\x05\xf5\x4b\x4d\x8a\x2f\x55\xc1\xde\xd1\x47\xbd\xf2\xd1\x71\x21\x92\x3b\x0a\x46\xe2\x0a\x21\xd3\x66\xc9\xe8\xaf\x44\x14\xc5\xa2\xb6\x71\x65\x91\x3a\xe5\xf2\x36\x21\x61\xc5\x58\x99\x17\xd1\x3b\x18\x60\xdf\x29\x41\x12\xcc\x55\x67\x67\x88\x51\xd0\x74\xce\xc8\x10\x05\x6a\x50\x06\x74\x4a\xd6\x76\xa6\xf9\x16\xd0\x38\xa7\x3c\xf3\xbd\xf4\xae\xfa\x1d\xaf\x6e\xe7\x3a\x3c\x6b\x50\x7c\x53\xcc\xa0\xff\x5d\xfe\xd7\xd1\xfc\x9f\xf4\x3f\x47\xc6\xa7\x0b\x53\xde\x35\xc4\x27\xa5\x86\x51\xf2\x24\x09\x05\x0d\xc6\x18\x6a\x4d\x8a\x7e\x21\xcc\x49\x38\xd0\x32\x40\x08\x87\x41\x3a\x42\xac\x9b\x1e\x26\xb2\xce\xda\x95\x65\x32\xee\xcd\x63\x14\x4c\x0b\xd3\x16\x32\x11\xea\x83\x66\x88\xde\x65\x3b\x21\x23\xc0\x4f\x2c\xc1\x09\x0e\x51\xb6\xe7\x65\x0e\xdb\x26\xc9\xae\xee\x14\x65\x32\x4a\x15\x41\x9b\x97\xec\x94\xe2\xb4\x16\x9f\x61\xd5\xce\x10\xc5\xc3\xbb\xab\x34\xb6\x29\x1f\x21\x2b\x2e\x55\x6b\x24\x45\x73\xb0\x5a\x79\x01\xce\xb5\xf2\xca\xbb\x6d\x14\xf3\xad\x7f\xce\xad\xb3\xc6\x03\x3e\xf7\xa6\x3b\xd7\xb6\x7b\xa4\xda\x4e\x3f\x9a\x77\x5f\xed\xfe\xfb\x5e\xd9\x51\x22\x30\x4b\x98\xcc\x8d\x1d\x98\x45\x21\x66\x16\xcf\x90\x04\x01\xb9\x49\xf6\xad\xd4\x2c\xaa\xc9\x6e\x5a\x44\x4d\x2f\x20\x25\x2f\xc2\xd9\xf2\xe5\xc4\x87\xe1\xc8\xe4\x9f\xfa\x7e\xc4\xe4\x39\xc4\x01\xf2\x13\x3d\xa3\x0a\x4c\x4b\x71\xb9\xca\x2c\x5f\xa1\x54\x13\x8b\x44\x24\xbd\xc9\x78\x4d\x3f\x8f\xe0\x14\x69\x8f\x30\x04\xe8\x16\x47\xc9\xe1\x52\xbc\xf9\xad\x09\xcd\x1b\xe4\x11\xda\x4a\x62\x5a\x70\xfd\xb0\x70\x75\xa5\xf6\x57\x45\x27\x34\xfa\xf0\x96\x50\xde\x59\x39\xe7\xbc\x38\x39\x4c\x1f\xf0\x88\x5f\x41\x1a\x2b\xd2\x08\xe5\x4b\x4d\x58\x63\xc6\x5e\x85\x95\xd2\xaa\xcf\x7c\xd7\xaf\xef\xd1\x2c\x15\xd6\x73\x74\x21\x15\x59\x59\x94\xcc\xe5\x0e\x8b\xa4\xa6\xf5\x7d\x9d\x09\x0c\xe1\x88\xcb\x8c\xd3\xa2\xec\xa1\x71\x7e\x1b\xd1\x92\xda\xbc\x2f\xf0\x7f\xc6\x30\x37\xec\x3b\xa9\xc9\x66\x52\x2f\xc9\x32\xcf\x87\x24\x57\xfc\x18\x46\x00\x06\x81\x1a\x98\xbc\xa4\xcb\x3e\x7d\x18\x52\xc1\x41\x5d\xe4\xfb\x34\x9b\xb7\xa5\x66\xac\x5b\x68\xdc\xf9\xf1\xa9\xd4\x86\xcc\x5e\xf0\x79\x2e\xaf\x97\x90\xa3\x6d\x6b\x36\x6a\x16\x88\x1c\x88\x8f\x22\x8f\xe2\x69\x5a\x1d\xcb\x32\xfe\x42\xc7\x92\x62\x4b\x36\x6e\xd3\x16\xdd\x94\x8b\xf0\x9e\x27\x66\xb7\xd2\x5f\x63\xde\xb5\xab\x6b\xbd\x6e\x86\x72\xd6\x52\xa4\x58\xdf\x25\x3d\x28\xc7\xce\x7d\x4c\x36\xca\xb6\xbe\xd7\xa6\x71\xf4\x6b\x4a\x65\xb6\xc4\x72\xae\xbf\xf2\x58\x8e\x0b\x5b\x3a\xa5\x2d\x3d\xd9\xb3\x51\x67\x0a\x19\x43\xf4\x3e\xdc\xd8\x9f\x7e\xbe\x3d\xda\xbd\xf8\xcd\x3e\xb9\x20\x9a\x8d\x4a\x4b\x4e\x19\x80\xfc\x65\x8c\x24\x4e\x5c\x4f\x7e\x71\x83\x7d\x36\x56\x3e\xdf\x4e\x02\x9e\x86\x3b\x66\x6c\x7a\xb8\xb5\x75\x73\x73\xd3\xbd\xd9\xe1\x3e\xaf\xed\x5e\xaf\x97\xb0\xc4\xfc\x23\x7f\x77\x4b\x36\x24\x33\x65\x1d\xd7\xe9\x77\xfb\x25\x85\x91\xaa\x1a\x34\x2c\xd9\xb4\x72\xd6\x53\xe0\xd7\x44\xd4\x0b\xe4\xe3\x44\x65\xfb\x18\x8e\x48\x08\x83\x4e\xc4\x28\x9e\xa2\x4e\xba\x3f\xcb\x47\xdf\x86\x98\x87\xf3\xc4\x11\xa2\x97\x53\xe8\xa1\xd7\xe1\xdb\x08\x95\x86\xdb\xef\x95\x19\x22\xbe\xd1\x78\xf8\xf1\x44\xba\xeb\x12\xee\x04\x38\xbc\x3e\x94\x2e\x42\x1f\x32\x78\xc8\x7f\x4d\xd8\xf2\xf3\xed\x24\xf8\xeb\x00\x46\x68\x7f\xd7\xbd\x38\x3d\xdf\xfe\xe3\xee\xe9\xee\xe0\xb7\xdb\xd8\xfb\xdc\x0b\xe1\xe9\x9b\x9e\x77\x42\x66\xaf\x76\xfc\x1d\xff\x6e\x6f\xe7\xec\x6e\x6f\xe6\x4d\xbc\xd9\xd9\xa7\xa3\x9b\xb3\xe3\xc7\x9f\xfd\x89\x17\xbe\x38\xf5\xa7\x7f\x9c\xbe\x21\x17\x97\xde\xed\xd9\xb1\x37\x82\xbf\xbc\x9b\xfe\xb1\x3d\xee\xc9\xcf\x3f\x1f\xe3\xa3\xd1\xc5\xe9\xcb\xe0\xfd\xce\xaf\x23\x7f\x3b\xb8\xf6\x7f\x19\x3d\x7e\xf9\xf9\xd9\xcd\xcb\xbb\xa7\xe4\x8f\xdf\x82\x10\x9e\xfe\x9a\x7e\x9e\xc0\xdf\x6e\xa3\x8b\x4b\x7f\x07\xfe\x12\xf4\xfe\xb8\xf4\x66\x17\x23\x32\x7a\x71\x72\x7b\xf3\xfe\xf7\x37\xe4\xc5\x2f\xbf\x3e\x7e\xd9\xeb\xb1\xb3\xcb\x9b\xdb\x17\xbf\xdc\xdc\xbd\x3a\xee\xdd\x25\x6d\xbf\x38\xce\xff\x77\x75\x75\x14\x9d\x5d\x1d\x8d\x06\x27\xcf\x6e\x5e\x1d\xf7\x6e\xcf\x8e\x48\xe1\xf7\x17\xcf\x7a\x7b\xaf\x4e\x9e\x65\xef\xbf\xbc\x7b\xfa\xd9\x3f\x7d\x39\x83\xdb\x6f\x1f\xbf\xdc\x7e\x19\xbd\xff\xed\x9c\x2a\xdf\xb1\x9c\xde\xb3\xf0\xd5\xe7\xdd\x7f\x5e\x88\x31\xff\xac\x15\xa5\xfe\xe3\xc7\x8f\xb7\x38\xa3\x53\xa6\x2b\xe2\x79\xa7\x11\xdd\xba\xb9\x3c\x28\x0a\x5d\xd1\xcd\x51\xa7\x6e\x16\xd1\x35\x8a\xda\xa8\x55\x34\x14\x86\xd1\x90\xd0\x49\xb4\x05\x29\x85\x77\xaa\x8a\x49\xf6\x96\x01\xa2\x9d\x44\xc6\x3a\x3c\x48\xb0\x33\xa4\x70\xc4\x97\x7b\xf5\x45\x55\x21\xb9\x6c\x21\x95\xc4\xd2\xbf\x1a\x28\x4e\xa9\xe9\xcc\x4d\x7a\xa9\x85\x7b\x1c\xc3\x22\xd4\xaf\x8d\xee\x98\xe1\x20\xda\xe2\x9a\x1d\x45\x5b\x70\x10\x31\x0a\x3d\xd6\x09\xc8\x68\x54\x0c\x2b\x72\x9d\x70\x3a\x39\xfc\x33\x46\xf4\x8e\x6b\x48\x7e\x45\xb5\x18\x8d\x3f\x94\xb7\xac\x33\x7c\x8b\xc3\xae\x47\x11\xdf\xad\x62\x1a\x1c\x3a\x8e\x2b\x80\x37\x0e\xc5\x13\x1e\x99\x4c\x63\x86\xfc\x8d\xac\xe7\xcd\x2f\x14\xb1\x98\x86\x5f\xbe\x7e\xdd\x74\x03\x32\x7a\x8e\x98\x37\x3e\x54\x7e\xfe\xea\xa2\xd0\x7f\x3d\x1c\x46\x88\x1d\x72\x9b\x8f\xf0\xbf\x2f\xb4\xcd\x3a\xd9\xb3\x8e\xab\xb4\x31\x83\x14\xa0\x27\x3c\xb9\x71\x84\x98\xfa\xd4\xe6\x0f\xa2\x7b\x80\xfe\xf1\x85\x50\x3c\xc2\xe1\xa1\x88\x26\x75\x64\x3f\x87\xe8\xeb\x61\xf6\x0b\x0a\xfd\xec\xfb\x3d\xb4\x9b\x90\x9c\x5f\x11\xea\x29\xd2\x0f\x74\x18\x07\xc1\x5b\x1a\x54\xc8\x8f\x69\xe0\xb8\x29\x56\x89\xeb\xa8\x43\x4d\x0e\xcb\xa5\xbe\x74\x63\x4c\xa7\xa4\x2b\x26\x19\x0f\xef\x36\x44\x27\x30\x8a\xf0\x28\xdc\xf8\xf2\xd5\xcd\xf9\x20\x3b\xda\x54\xbe\x2a\x74\xa9\xfe\x50\xe9\x7c\x73\x33\x63\x5e\xfe\x54\x32\x80\xcd\x9f\x9d\x7f\x38\x3f\xa3\x44\xbd\x59\x88\x6c\x11\xf0\x7b\x95\x16\x95\x6c\x00\xdd\x32\x14\xfa\x1b\x5f\xf2\x9e\x85\x5c\xf1\xee\xc5\x9f\x45\xe4\xfb\xd2\x2c\x75\x61\x80\x61\xb4\xa1\x20\x9c\xf1\xc2\x19\xbc\x2c\x42\xb7\x84\x99\xbf\xe9\x2a\x90\xff\xf3\xb4\x73\x7c\xf1\xd6\xd9\x74\x27\xbc\xb5\xb7\x11\xf2\xcb\x6d\x50\x04\xfd\xd7\x61\x70\xb7\xc1\x0d\xbf\xa8\xfb\x06\x89\x2c\x96\xb7\x3c\x71\x56\x50\x71\x29\x7e\xb9\xbc\x74\x36\x5d\x6f\x1a\x6b\x9a\xd1\xbf\x7d\x3c\x8d\xc5\xab\x57\x84\xc1\xe0\x0a\x7b\xd7\x45\x89\x93\x93\x7f\x06\xd9\xb8\x3b\x0c\x08\xa1\x1b\xb9\x1c\xd8\xb6\xb7\xf9\xef\x7f\xf7\x12\x29\x99\x22\xea\xa1\x90\x69\x19\xbe\x51\xae\x44\xe0\x3a\x39\x43\x6a\xd7\xb9\xf2\xd8\xe6\x56\xbf\xb7\xbd\xcb\xff\x8f\xcb\x94\x47\xca\x13\x96\x89\xf4\x4f\x3f\xa1\x7f\xa0\x2d\x76\xd8\xcb\xa9\xab\xce\xe1\x46\xa1\xa4\x83\xeb\x48\xf6\xd6\x12\x95\x3e\xb3\xa9\xa5\x83\x4f\xb8\x8e\x08\x9b\xc5\x14\x90\x51\x83\xce\x4f\x37\x32\x8f\x84\x22\x4d\xca\xbb\xe3\x0e\x69\x6d\x73\x02\x8f\x27\xdb\x4c\x4c\x8f\x4d\x49\x10\xa4\x0f\x15\xf7\x14\x37\x74\xa1\x1b\xcd\xb5\x74\x87\xc9\x3e\xf0\x1c\xe2\x20\xa6\xe8\xc9\x8c\x60\x1f\xf4\x5c\xd4\x15\xbd\x3c\x29\xf6\x91\x49\x62\x69\x6e\x92\x1f\xab\xe2\x4a\xb2\x0d\x2a\xdb\x6d\xc2\xae\x07\x83\x80\x4b\xef\x66\xba\x5f\x65\x33\xc3\x36\xdd\x64\x27\xcb\x3e\x23\x3e\x13\x5f\x7f\x48\xa6\x95\x3e\x29\x11\xaa\xea\x2b\xd9\x5f\x95\x02\x41\xe6\x2b\x3e\x94\xee\x0d\xa4\xe1\x86\xf3\xea\xf5\x2f\xe0\xf9\xb3\xab\xe3\xd3\x43\x70\x4c\xe2\xc0\x0f\xff\xc2\x80\x47\xc2\x10\x79\xfc\xe2\xce\xf9\x19\x6d\x7e\xfd\xea\x12\xad\x22\x13\xdf\x3d\x9b\xa1\x90\x21\xdf\x5d\xde\xb6\x8b\xa3\x4b\x3e\xff\x38\x1c\x19\x34\x57\x40\x46\xe2\x11\x44\xbb\x89\x10\x74\x71\xf4\x26\x0e\xc3\x44\xce\x78\xa3\x17\x04\x87\x0c\x51\xa1\x53\x95\x87\xc5\x17\x63\x04\xfd\x84\x52\x06\x31\xa7\x98\xc4\x6c\x1a\xb3\xca\x02\xcb\xdb\xe1\x77\x9d\x90\xbb\x45\x21\x0e\x34\xaa\x48\xfc\xfc\xe4\x89\xb2\xac\x94\xb7\x37\xff\x91\x7f\xcd\x1f\xdc\xcc\x27\x55\xb4\x98\xac\x30\x1c\x62\x76\xa8\x5d\xbd\x3f\xf0\xa7\xff\x37\x8a\xa7\x88\x6e\x6c\xf2\xf9\xcf\x17\x70\x1e\x56\x50\xd9\xc4\x53\xee\x3a\x9b\x3f\xb0\xee\x0d\xc5\x4c\x11\x13\x26\x3a\x08\x9f\x20\x95\x8c\x9f\xd9\x0f\x61\x57\xe4\x9d\xfc\x7d\x0f\xed\xfe\xf4\xd3\x46\xf8\x24\xec\x46\x71\x62\xdd\x6d\xa4\xbf\x74\xf6\xd0\xee\x66\xb2\x52\xa2\xec\x45\x37\x4c\x3e\x33\x8a\x13\xc9\xda\x70\x18\xf6\xae\x1d\x97\x6d\x7e\x75\x61\x66\x15\xe0\xe8\x52\x54\xd2\x43\xbe\x60\x47\x24\xb9\x94\xce\x8d\xa3\x3c\x2c\x17\x0a\xdb\x94\x9c\xaa\x3e\x1b\x69\x9e\xfd\xea\xfa\x28\x62\x94\xdc\xa9\x6c\x14\xef\x33\x32\xdd\x90\x36\x45\xca\xc7\xaf\xee\x88\x30\x72\x9a\xc8\xc2\x46\xcf\x15\x5b\xe0\xe6\x06\x45\x23\x14\x22\x8e\xb5\xf1\x26\x0e\x19\x9e\xa0\xee\x04\xd2\xeb\x4c\x7e\x01\x92\x53\xc3\x15\x8c\x4b\x52\x85\xa9\x79\xef\x86\xc2\xe9\x86\xba\x2e\x87\x84\x6e\xfc\xf5\xaf\x9b\xd1\x0d\x66\xde\x78\x03\x75\xa7\x14\xcd\x9e\xa0\x6e\x88\x6e\xd9\xe6\x17\x0f\x46\x08\xf4\x0e\x65\x73\x61\x51\x92\xe4\x34\xba\xb0\xd9\xcc\xd2\xd8\x58\x5f\xa6\x01\xc4\xe1\xe1\x8f\x3d\x57\x6f\x68\xf6\xbe\x6e\x6e\xba\xd1\x13\x9d\x2d\x05\x5d\x95\x7f\x82\xd6\x27\xfb\x6e\xb8\x11\x6d\x76\xd9\x18\x85\x1b\x1a\xbd\x83\xba\x0c\xdd\xb2\x84\xc1\x74\x23\xda\xdc\xfc\x81\x8f\x6c\xff\x70\x83\x3c\x49\x44\x26\x64\x9b\x3f\xfd\x44\x8a\x42\x46\x9e\x90\x54\xc8\x7a\x6e\x22\x5d\x2e\xf9\xf9\xc9\x5f\xfe\x15\xfe\x2b\xec\x64\xff\x81\xab\x37\x6f\xcf\x8f\x8f\xae\x9e\x9d\x1c\x02\x0e\xe2\x0c\x84\xe8\x29\x08\x22\x08\x0c\x08\x63\x64\x02\xc8\x90\x7f\x0a\xc8\x08\xe4\x0d\xfc\x45\xce\x7f\x94\x2d\x43\x97\xa8\x5f\x55\x97\xbb\x24\xbd\xdf\x3b\x4c\xfe\xe5\x36\xf8\x61\x36\x46\xc1\x92\xaf\x5f\x5d\xc4\xdb\xd8\x4c\x78\x28\x2a\x38\xe3\xe0\xbf\x4f\xa0\xca\xe7\x93\x75\x08\x54\x2a\x4f\xca\x1c\x0a\x65\x64\x9e\x56\xa1\xe5\x44\x03\x8f\x6d\x67\x95\x2f\x96\x7c\x47\xaa\x6e\xab\xb5\x9d\xb9\x05\xbe\x67\x0a\x6c\xb3\xcb\x9b\x4d\x06\x95\xf4\x59\xd1\x58\xda\x17\x04\x6d\xea\xf1\x97\x34\x9b\x66\xaa\x91\xa4\x71\x2c\x58\xd9\x63\x95\xe3\x7d\x9d\x1d\x58\xb5\xc4\x96\x7e\x84\x0a\xd3\x5f\xdd\x2f\x9c\xdb\x33\x18\x1c\xf6\xd1\x8e\x98\x2a\xd3\x0c\x09\x19\x26\x41\xe0\x6c\x76\x03\x1c\x5e\x23\x7f\x63\xb3\x2b\x83\x82\x75\xf3\x60\x7a\xd7\x83\xa1\x87\x82\xa3\x20\x48\x5e\x4a\xbe\x4b\x96\x3b\x6b\xbf\xdc\x23\x97\xba\xc4\x0d\x5c\xec\xc6\xae\xbf\xec\x65\x1f\x6a\x0d\x84\x94\x59\x05\xe3\xc0\x8d\x9e\x84\xdd\xf4\x17\x97\x3e\x09\xbb\xe9\x6f\x52\xff\xa5\xcb\x83\x28\x2b\x5a\xfa\x11\x9c\x6c\x0d\xef\xb9\x74\x83\xd4\xac\xe1\xaf\xee\x46\xcf\x85\x05\xa3\x75\x73\x83\xa4\xab\x79\xef\x10\x0f\x37\x82\x74\x83\xf8\x22\xdb\x3c\xf8\x61\x40\x11\xbc\xfe\x9a\x2d\x4f\x38\xa0\xf1\x94\x9f\x59\xb8\xd5\x25\x5f\x3e\xc8\xd7\x2f\x7f\xad\xdf\x73\x03\xa9\x32\x32\x0d\x2e\x9e\xd8\xc0\xf9\x1e\xb4\x11\x3f\xc1\x5d\x8a\x78\x60\xdf\xc6\xd6\xbf\xbe\xfe\xeb\xcb\xd6\xc8\x75\xbe\xfe\x2b\xfc\x92\xac\xb5\x69\x80\xd9\x86\xf3\xaf\xd0\xd9\x74\x37\xfc\x27\x71\x77\x52\x9a\x03\xd9\xe3\xcb\xcb\xd7\xe7\xdd\x29\xa4\x11\xe2\xe6\x79\x77\x88\x03\x86\xa8\xee\xc9\xc4\xf2\xfc\xf1\x09\xea\x9e\x40\x06\x7f\xfa\x29\xfd\x24\x9c\x41\x5f\x37\x37\xe5\x86\xf8\xd3\x4f\x1b\x7e\x77\x48\xe8\x33\xe8\x8d\xf5\xaa\x30\x79\xff\x89\x8c\xa8\x85\x8c\x0c\x36\xc4\x57\x89\x05\x99\xeb\x21\xc5\x19\xe5\x7f\xf0\x53\xbb\xad\xff\x51\xf6\xa7\x2a\x25\x6e\x17\x3a\x9b\x1b\x7e\x32\xc4\xa7\x77\x1b\x3c\x8d\xdd\xd9\xec\x7e\x22\x38\xdc\x70\x9c\xcd\xcd\xcd\x6c\x8a\xfb\xbb\xae\x90\x74\x3c\x41\x24\x66\x9b\x1b\x51\xca\xdf\xdd\xc3\xf4\x11\x31\x63\xf2\xeb\x7d\x4b\x15\x6b\x73\xc2\x9c\x52\x32\xc1\x11\xea\x10\xae\x08\x56\xee\xac\xb9\xa0\xe4\xf6\xae\x78\xd0\xb9\x10\x14\xf0\x5f\xb8\xc3\xd1\x82\x6a\x71\x04\x4e\x2d\xf2\x65\xd1\x2c\x8f\x00\x5a\xe7\x12\x8e\x7e\x4d\xfa\x94\x3e\xc1\x1f\x7b\x2e\x7f\x4d\xb8\x97\xf8\xd6\xf1\xe7\xf4\x69\x8c\x03\xbf\x70\x98\xcd\x95\x5d\x76\x46\x95\xaf\xa1\xe4\xc4\xa9\xb8\x84\x9b\x87\x5c\x3a\xbb\xcf\xb9\xe3\xf0\xbc\x5a\x1f\x79\xc4\xaf\xdb\x6e\x16\xdc\x97\xe6\xf1\x10\xc8\xe3\x77\x75\x9f\x28\xba\xb4\xf1\x70\xe3\x88\x52\x78\xd7\xc5\x11\xff\x77\x03\x6d\x6e\xa6\x4b\xe0\x07\x3c\xdc\xb8\xe4\x57\xa7\x5d\xcc\x90\xc4\xf5\x0b\x81\xa0\x44\x79\xb0\xd8\xa2\x38\xae\x7d\xf8\xe8\xc2\x27\x3f\xf6\xdc\xe8\xc9\x8f\x7d\x97\x4a\xff\xc4\x0f\x8c\xde\xf1\x5d\x21\x79\x86\xb8\xc1\x13\xf4\xa1\xd4\xfe\xc7\x8d\xcd\xbf\xfe\xb8\x01\x9f\x6c\x90\x27\x01\x5f\xa9\x1b\x9b\x9b\x5d\x9f\x84\x28\x51\x84\x61\x77\x1a\x47\xe3\x0d\x22\x02\x85\x37\xdd\x1f\xd9\xbf\xff\x9d\x1e\xf6\x7e\x7c\xf2\x84\x6d\xfe\x35\xe9\x72\xf3\xaf\x5f\x3d\xc8\x37\x9c\xcd\x2f\x51\x42\x02\x7d\x82\xbe\x0e\x71\x08\x83\xe0\xee\x4b\x42\xc0\x8f\xf0\xa7\x9f\x82\xae\xa0\x3d\xff\x6b\x63\x33\x7b\xe8\xff\xa3\xee\xfa\x9a\xdc\xb6\x8d\xf8\xfb\x7d\x0a\x09\xd3\xea\x80\x08\xe2\x89\x3a\xf7\x6e\x86\x2e\x46\xf5\xa4\xf1\xf4\x21\x4e\x3a\xb6\xa7\x79\x60\xf9\x00\x8b\xab\x13\xc7\x24\xa8\x12\x60\x7c\xaa\xa4\x8f\xd5\x2f\xd0\x4f\xd6\xc1\x1f\xfe\x93\x28\x45\x39\xfb\xdc\xe4\x4d\x02\xb9\x00\x76\xb1\x58\xfc\x76\xb1\x00\x93\x25\x96\x44\xad\x8a\xfc\xd3\xa0\xd8\x57\x46\x5d\xec\x0d\x7b\x57\xb6\x5c\xc0\xa7\xc1\xfb\xcd\x1a\xbe\x2b\x8a\xbc\xc0\xc8\x25\x3d\x0e\xb8\x52\x90\xad\x5d\x2a\xb1\x54\x45\xb9\x30\x67\x6d\x44\x2e\x26\x86\xc3\x0f\x29\x98\x63\x03\x7a\x65\x46\x64\xbf\xc7\xc7\x5b\x04\xdd\x69\xc2\x1b\x00\x51\x98\x93\x74\x36\x32\xf0\xeb\x63\xea\x36\x75\x54\x6b\xc6\x9e\x5c\x0e\x3f\xce\xa0\x8e\xc3\xa0\x9d\xed\x5e\x6b\xbb\x60\x34\x02\x07\x41\x70\xdb\x8e\x7f\x51\x70\xa2\x28\x6f\xa0\x89\x8d\x41\x3c\x8f\x5b\xa2\x7a\x21\x05\xef\x77\x56\x72\xad\xf3\x29\x43\x88\x26\x4c\x2b\x4a\x83\x02\xdd\xea\x73\x4f\x39\x56\xe7\xfc\x88\x0f\x79\xbc\xd1\xd5\xbe\x35\x42\xd5\x22\xc2\x53\x2a\x0f\x40\x89\xaa\x40\xc9\xbd\x06\x25\xe5\x21\x28\xf1\xa7\x97\xa1\x12\x7f\xda\x8a\x5d\xb8\x51\xa4\x65\xf5\xd0\xd7\x75\xe7\x4d\xa5\x77\x87\x95\x56\x2b\x6e\x69\x22\xed\xb8\x87\x2b\xbb\x08\x80\x9d\xb5\x54\x30\x30\x13\x5a\x1b\x97\x9c\x09\x3a\xf1\x87\x8c\xe1\x74\xcc\x12\xcf\x9a\x51\xac\xe8\xd6\xda\x66\x63\xc7\x88\xbd\x94\xec\xc7\x25\x46\x7b\x44\x6c\x6d\x9c\xa5\x9e\xc9\x6d\xc5\x37\xd8\xfb\xe6\x9f\x7b\x82\xbd\x6f\xc8\x1f\x6e\x34\x42\x2c\x30\xa7\xb7\x84\x96\x4c\x86\x7e\x44\x17\x4c\x86\xb3\xe8\x2a\x65\x0b\x63\x0e\x33\x56\x5e\x82\xa4\x3e\x1f\x44\x59\xac\xb3\x27\x57\x59\x83\x97\xb2\x27\xe3\xa5\xf8\x08\x2c\x65\x61\xd6\x03\x96\xe2\x2e\x52\xca\x4e\x22\x25\xed\x9b\x1d\x02\xa2\xa7\x22\x22\xaf\x80\x7c\x0d\xc2\x7c\x9e\x51\xaf\xea\x75\xf4\x2c\x18\x0e\x1d\x3b\x5a\x8b\xb5\xe9\xb3\x3e\xe2\x68\x34\x3c\x32\x23\x37\x8b\x5c\x58\x73\x99\x17\x37\x89\xa7\x40\x2a\xec\x88\xff\xf6\xfe\xcd\xf7\xdf\xa5\x26\x61\x87\x50\xc5\x50\x68\x81\xd5\xe0\x1d\x5f\xf2\x22\x79\x0b\x59\xae\xe0\x87\x56\xba\x78\x84\x18\x63\xb8\x6a\x5a\x9a\xb7\x76\x3b\xbb\xfe\x0c\x19\xeb\x94\x8f\x46\x9d\xbf\x66\x79\x69\xd7\x45\x3c\x95\xbf\x33\xd1\x06\xdc\xd8\xb5\xdd\x4e\xed\xf1\x45\x50\xb0\x8b\x0d\x9e\x01\x08\xba\xde\xbf\x87\x47\xf5\x57\xdb\xcc\x6e\x77\xe8\xa0\xdb\xf6\xd9\xa1\xdd\xb3\x93\x12\x21\x2a\xd8\xed\x4b\xf1\x67\xf0\x3e\x6c\x14\x7c\x6f\x54\xea\xa5\x18\x8f\x89\x1a\x33\xcb\xb9\xb7\x2c\xf2\xec\xdb\x15\x2f\xbe\xd5\x73\x13\x42\x11\x35\x9b\x2f\xfb\xfd\x19\x21\xe4\x31\xc8\xc9\x32\x2f\x26\xe6\xf2\xdf\x67\xe1\xff\xd8\xca\x84\xe0\xe9\x86\xa3\x7a\xb4\x3c\xd3\xba\xd4\x8b\x91\xfd\xd5\x3b\x0b\x95\x45\x16\x5a\xc5\xb9\x2a\xa5\x71\x52\x3c\xf7\x3d\x50\x4c\xbc\x52\x24\xff\xc2\xa7\xcc\x02\xb2\x3b\xb9\xa7\x25\x61\xac\x76\x17\x60\xba\xa2\xe6\xcd\x45\x2e\x96\xc9\xc3\x0d\x88\x9f\x93\x22\x17\x3d\x09\x12\x54\x3c\x11\x02\x72\x86\xd6\x45\x1e\x97\x36\xbd\x76\xc8\x58\xbd\x1a\x79\xad\xd6\x46\xa3\xba\x38\xac\xe0\x6f\x9a\x4c\xb2\xc4\x9e\xb9\x1c\x8d\x86\x7e\x9b\xb4\xef\x1d\x0f\x84\x9e\xe4\x31\x95\x0e\xc9\xe8\x59\x9c\x88\x87\xdd\x8e\xcf\xeb\xe0\x5d\xe0\x54\xd6\x08\x60\xb7\xab\xcb\x5b\x30\x48\x9e\x91\xa4\x39\x60\x3c\x89\xcb\xa2\xfa\xb8\x5d\x4b\xa6\x59\xfe\xa5\xf3\x4a\x8e\xcc\x14\x2f\x1e\x4a\x93\xd1\x52\x85\x85\xa7\xa3\x51\x6d\x59\xea\x87\xe1\x34\x9a\xb7\xff\x04\x53\xca\x8f\x49\xfd\x5e\x52\xbf\x4d\xea\x47\x01\x12\x12\x51\xc9\xb6\xfb\x2b\xfd\x8b\x31\xc6\xe7\x58\x7a\x82\x8b\x5c\xc2\x22\x17\xb1\x64\xf0\x47\x13\x50\xf2\xb2\x64\x51\xd4\x85\xad\x1d\x67\xfd\xfc\xee\xc6\x87\x5b\x42\xa1\x53\x7e\xe3\xc3\x1d\x21\x01\xca\x32\x5b\xf1\x68\x84\x0f\x6a\xb1\x55\x1f\x51\xdd\x92\xca\xb9\xe0\xa6\x57\x43\x43\x6c\xea\xd1\x3f\x77\x3b\x5c\x30\x94\x49\x64\xdf\xca\x5b\x91\xdb\x6a\xe0\x30\xd0\x82\x5c\x09\xb7\x80\xea\x25\x2a\x11\x6f\xec\xf0\x91\x6a\xd1\x32\x69\xd9\xa4\x77\xb6\xca\x10\x22\x96\x87\x10\x69\x33\x6c\x1a\x49\x99\xf0\x0a\x88\xcb\x05\xe0\x23\xf7\x46\x86\xca\xd3\x95\x45\x95\x6b\x52\x17\x50\xce\x8c\x56\x8f\x46\xca\x5b\xa7\x65\xc1\xd3\xe4\xdf\x5a\x85\xe7\xca\x93\xe5\x72\x99\x3c\xd6\xa5\x80\x49\x50\x15\x5e\x81\x35\x16\x62\x8c\x0f\xc8\xd0\x00\x05\x08\x91\x31\x27\xfb\x26\x9a\x14\x46\x44\x43\x9d\xd4\x8d\x7b\xe5\x33\xa5\x6e\x39\x1e\x38\x31\x25\x4c\x8b\x43\xc4\x9a\x75\xdb\x0e\xa2\x5c\xe3\x98\xa4\xdb\x06\xef\xf4\x89\x3b\x3b\x87\xa6\x68\x8c\x93\xfe\xde\x94\x76\x27\x56\xb0\x70\x2b\x4c\xea\xdd\x06\x78\xa1\xb5\xca\xb4\x62\xff\x22\x5a\x0d\x80\xf6\xc4\xdb\xd5\xe8\x39\x41\x1d\x61\x96\x0b\xb5\x6a\x51\x9a\xff\x97\x91\xc6\x7c\xd3\x22\x8c\xf9\xe6\x32\xb2\x55\x5e\xb6\xbb\x7a\xb6\x31\xbf\xe9\x67\x22\x4a\x05\xed\x8e\x5e\x46\xe7\xf4\xbe\xa1\x93\x97\xb6\x97\xa6\xc9\x11\x71\x76\x31\x75\x33\xe5\x1a\xea\xff\xfe\xa7\x43\xee\x9f\x24\x6f\xd9\x82\x86\x5a\xfc\x02\x71\x74\xda\xc6\x26\xeb\xc9\x9a\x17\xcf\x94\x66\xd4\xe3\x16\xcc\xa1\x82\xde\x01\x22\x41\x58\xaf\xdc\x53\xc6\x98\x72\x93\x66\xbe\x75\x57\x7c\x06\x40\x75\x8f\x02\x6b\x39\xf7\xc1\xac\xf7\x25\x15\x4e\x23\xfb\x9e\x0a\xfd\x68\x1f\x80\xdd\xc3\x90\x3f\x25\x6a\x85\x51\x88\x48\xeb\x55\x4f\xa6\xc9\x02\x8c\xef\x59\x01\xea\x0a\x29\x07\x88\x54\xb5\x34\x0f\xa3\x7d\x70\xa2\x33\x67\x10\x80\x39\xce\xb8\xf9\x4a\x40\xe8\x30\x28\x63\x3c\x42\x77\xe0\x3c\x85\xe2\x75\x5e\x60\xc4\xd7\xeb\xd4\x61\x5c\xed\xfa\x18\xef\xc2\x76\x4e\x91\x0b\x18\xa9\x2f\x39\x3e\xc8\xa5\x39\x8f\x00\x9f\x63\x65\xee\xe1\x57\x18\xab\x3f\x34\x43\xea\xde\x27\x58\x68\x37\x72\x91\x96\x31\x48\x8c\x5e\x4c\x6f\x11\x71\x01\x1e\x71\xe5\xf2\x03\xda\x37\x3f\xd3\xe1\xf4\xac\x18\xd6\xf5\x56\xc5\x8d\xf9\xe8\xf1\xa4\x2c\x93\xf8\x6b\x0d\xec\x51\x0e\xcf\x99\x38\x0e\xd4\x7e\xed\x04\x91\x70\x1a\x9d\xc5\xa9\x6d\xae\xd4\x26\x85\x3a\x23\xea\xff\xcf\x57\x37\x95\x04\x03\xa1\x82\x21\xd4\x4a\x02\xc3\x82\xb9\xde\x7c\x84\x8d\xc4\x8a\xf4\xc0\x01\x51\x05\x0f\x54\x28\x5a\x0e\x82\x5b\xcc\x51\x80\xc6\x18\xd9\xab\x55\x11\x63\x6a\xb3\x86\x7c\x39\xe0\x73\xee\xa9\xfc\x75\xf2\x08\x31\x9e\x91\x31\x5a\x3f\xa2\x80\x13\x42\xed\xc2\xee\x0c\xc5\x4b\x44\x08\x15\xde\x4a\x65\xe9\x3b\xbe\x04\xe3\x1c\x5e\x26\xe6\x32\x9b\xf0\x87\x87\x02\x1e\x8e\xf0\xec\x33\x48\x5a\xcf\xb9\x13\xb2\x1e\x23\xef\x2f\xc0\x17\x2b\x0f\x8d\xfb\x32\xc2\xda\xfa\x64\xe1\x59\xaf\x80\x9b\xfa\x61\xac\xf6\x74\x7a\xb1\x1c\x3e\xf1\x23\x0f\xe9\x82\x10\xfc\x27\x9e\x7c\x09\x2f\x89\x82\x67\xda\xb7\x47\x1b\x7b\x34\xf3\xd7\x04\x26\x15\x96\x56\xcb\x8a\xa7\x22\xfe\x19\xdc\x5e\x1c\xc3\x54\x87\x31\x4c\x65\x63\x98\xaa\x1b\xc3\x44\x6e\x2f\x8a\x31\x86\x6d\x0f\x18\x63\x72\x8e\x4a\x61\x85\x14\xa3\x80\x63\x49\x88\xf6\x00\x9c\xef\xa6\x07\x5b\x9a\x73\x43\x55\x90\xd1\x04\x02\x3b\x8e\x9d\x76\x9b\x6d\xec\xe8\xbe\x1b\x14\x74\xbd\x98\x51\x55\x6d\xb9\x5a\xba\xb7\xef\xfe\xf1\x77\x8f\xa7\x29\x0e\xdb\x69\xb0\x79\x61\x70\x7e\x22\x62\x3b\x02\x18\xa8\xa4\xdb\x02\xd2\x9c\xc7\x1a\x37\xf1\x98\xaf\x15\x14\x3f\x9a\xe3\x81\x32\xd8\x9a\xc1\x72\x81\x6c\x93\xbf\x52\x1b\xf9\x82\x44\xf5\x36\x6d\xd5\xb5\x59\x3b\xac\x75\x1f\x74\x7b\x78\xaf\x07\x76\xca\x94\x67\x37\x0c\x66\xa4\xea\xb1\xef\x9b\x27\x75\x0c\xb4\x26\xab\x42\xa8\xa6\x52\x44\xfd\xfb\x4a\x3a\xb3\x83\xaa\xfd\x19\x3d\x66\xd2\xb1\xa2\x97\x60\xa8\x42\xe0\xaf\x3b\x8c\xeb\x1e\x2c\x13\x91\xc8\x15\xf6\x67\x55\xdd\x0d\x37\x9d\x18\xdd\xfd\x71\x8c\x4e\x35\x31\x3a\x9b\x6e\x42\xc3\x70\x46\xef\xa9\x3f\xa3\xfe\x9f\xa2\x88\xec\x09\xf1\xe2\xc2\xbc\xd1\xa8\x7d\x6a\xbf\x9c\xbb\x4a\xd6\x9f\xad\xfc\xdc\x2a\xbf\xfc\x0d\x29\xff\x69\xad\xbd\xeb\xd5\x5a\xbf\xd2\x81\x17\x17\x68\x6d\x6b\x40\xb9\xd7\x8a\x61\x7a\xe6\x04\xcc\x0f\x3c\x03\x6d\x27\xb5\x26\xb7\xc5\x8c\x39\x05\x0d\x31\x0e\xd4\x57\xd6\xea\xfb\xa2\x1e\xf0\xce\x88\xdf\x1d\xe8\xd8\x5d\x57\x7d\xfd\x46\x7d\xa7\x6d\xf5\x9d\x9e\x56\xdf\x3b\x72\xac\xe2\x56\x0a\xfe\x79\xf5\x3d\xc9\xad\x55\xea\xb7\xbd\x3c\xb7\x95\xdb\x6f\x22\xd0\xae\xd3\xd3\x5f\x0a\x40\xf7\x29\xb7\x4f\xef\xa8\xef\x53\xff\x45\xbf\x72\xbf\x4a\xd3\xcf\xd6\xe9\x0a\x35\x3c\x31\xf8\xf3\x7b\x53\x69\x6d\x88\x5f\xa5\x29\x86\xa7\xd9\x60\xfe\x3b\x52\xe2\x8e\x0d\x36\x3c\x7f\x3d\x0d\xad\x62\xb3\xd5\xd8\x37\x90\xd3\xee\x88\x8f\x46\xee\xd4\xf2\xe1\x83\x7a\xab\x7c\xde\x97\x16\x61\xdf\x84\x7d\xd0\xb7\xc7\x34\x1a\x9d\x69\x0e\xda\x33\x9a\x31\x56\x97\x0f\xab\xdf\xde\xba\xc8\x55\xae\xc9\xe6\x55\xdf\x82\xba\xc1\xd3\x38\xaf\x80\x2c\xff\x19\x26\x85\xbb\x39\xe2\xd9\x21\x6e\x95\x7f\x70\xa5\x3c\x0d\x69\x3b\x46\xe8\xf8\x4d\xce\x94\xf7\x31\x11\xf1\x95\x4b\x2e\xd8\x7e\x84\x4d\x00\x54\x17\x05\xdc\x6c\xf2\x38\x0f\x61\x6b\x8e\x2d\x6f\x93\x38\x50\x56\xa1\x12\x73\x40\x65\xb3\x86\x40\xf5\x1b\x43\x5a\xb4\x9a\x96\xc1\x89\x08\x65\x35\x38\xa1\x71\x5d\x22\x66\xdb\x41\x2b\x2e\xdf\x70\xb1\x31\xb9\xfa\xa6\x83\xf3\x30\xb2\xb9\x31\xda\xf7\xd8\x5a\x64\x0d\x5e\x29\xac\xa1\x35\xf8\x41\x9d\x83\xdb\x2e\x19\xea\x6b\x79\x73\x02\x3e\x0d\x5a\xc6\xc6\xe5\x24\xb5\x4c\x9d\x86\xea\x12\xd4\x7b\xdb\xad\x76\xc6\x82\xc0\xc8\x95\x9a\x0f\x4f\x8c\x61\x8c\x32\x39\x80\xc7\x05\x40\x0c\x31\xd2\xd6\xdd\x7a\x16\xc7\x1f\x3b\xac\x58\x55\x29\x98\xef\x23\xf5\x78\x14\x69\xe2\xfc\xda\xc9\x0a\xd2\x35\x14\xf2\x90\xe8\xb3\xc3\x14\x27\x09\x9c\xb8\x10\xdd\x82\x28\x33\x9b\x0e\xa2\xad\xeb\x03\xf4\x26\x63\xd4\xa7\x5a\xcf\xed\x35\x1a\x27\xe8\xb7\x32\xa6\xa7\x46\x54\x61\xf4\x13\x4f\x14\xc4\xd5\x68\xb6\x06\xf1\x98\xb1\x9e\xbd\x30\x1a\x46\x6d\xb7\x54\x15\x1b\xb7\x23\x73\x9e\x4a\xb1\x38\x5f\x98\xa5\xd8\x33\x09\x6e\xef\x20\x05\x3d\x47\xf1\x75\x06\x8a\x87\x82\x67\xc0\xd0\xf5\x18\xc6\xd7\x28\xba\x26\x7a\x5a\xbf\x52\xaa\x48\x3e\x94\x0a\x70\x7d\xef\x0a\xa1\x82\x6d\xab\xed\xab\x56\x0a\x40\x29\x40\x2e\xf8\xda\x9e\xe8\xa8\x96\xf8\x7e\x81\x8b\xd3\x02\x17\x2e\x59\x49\x91\x6d\x93\x59\x64\xb3\x8a\xae\xcd\x41\x27\x73\x91\x97\xb9\x75\xd7\x72\x68\x2f\x33\xd5\xfd\x1f\x28\xfe\x60\xef\x31\xd4\x8c\x0c\x1c\x23\xde\xb5\x91\x6a\x61\x8f\x19\xbd\x07\xa9\xe4\x6e\xe7\x2e\x19\x6e\x09\x99\xaf\xd7\x88\x1c\x9e\x4d\xd9\xee\xc9\xd5\xff\x02\x00\x00\xff\xff\xf7\xde\x5d\x50\x5e\x9b\x05\x00") + +func distAssetsNomadUiD4e693a82d9bb50c3b64289ff72827eeJsBytes() ([]byte, error) { + return bindataRead( + _distAssetsNomadUiD4e693a82d9bb50c3b64289ff72827eeJs, + "dist/assets/nomad-ui-d4e693a82d9bb50c3b64289ff72827ee.js", + ) +} + +func distAssetsNomadUiD4e693a82d9bb50c3b64289ff72827eeJs() (*asset, error) { + bytes, err := distAssetsNomadUiD4e693a82d9bb50c3b64289ff72827eeJsBytes() + if err != nil { + return nil, err + } + + info := bindataFileInfo{name: "dist/assets/nomad-ui-d4e693a82d9bb50c3b64289ff72827ee.js", size: 367454, mode: os.FileMode(420), modTime: time.Unix(1480000000, 0)} + a := &asset{bytes: bytes, info: info} + return a, nil +} + var _distAssetsVendorBa9b921906f8503d3378ceb83aece15bJs = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xcc\xfd\x7d\x7b\xd3\xba\xb2\x30\x0e\xff\xdf\x4f\x91\xe8\x81\x1c\x09\x2b\x6e\x52\xde\xd6\x32\x08\xdf\x6c\xda\x02\x6b\x53\x60\xd1\xb2\x58\x90\x7a\x77\xbb\xb1\x9a\x7a\x91\xd8\xdd\xb2\x42\x29\x75\xce\x67\x7f\x2e\x8d\x24\x5b\x76\x9c\x02\x7b\x9f\xfb\xfc\x6e\xb8\xae\xc6\x7a\x1b\xbd\x8f\x66\x46\x33\xa3\xb3\x65\x36\x95\x69\x9e\xf5\xa6\x82\xc7\x92\xef\xf2\x0b\xc1\xa7\xb1\xe4\xc9\x41\x9e\x2c\xe7\x1c\x73\x72\x9d\xf0\xb3\x34\xe3\x98\xd3\x09\xe2\x5f\x2f\x72\x21\x0b\x44\x11\x5f\x9c\x72\x31\x14\xbc\xc8\xe7\x5f\xb8\xd8\xb6\x1f\x36\x05\x45\xd4\x42\xc6\x92\x0a\x9a\x91\xeb\xcc\x4f\xf8\x59\xbc\x9c\x4b\x3f\xb1\x95\x60\xf4\xbe\x88\x67\xbc\x97\x9f\xf5\xfe\x89\x3c\xee\xa1\x7f\xf6\x16\x50\x6d\x2f\x2d\x7a\x55\xae\x84\xf6\x2e\xe6\x3c\x2e\x78\x6f\x79\x91\xc4\x92\xf7\x64\xde\xfb\x67\xb3\xfe\x7f\xfa\x88\xf6\xc7\xf4\x3a\x4d\x82\x56\xcb\xfc\x39\x9f\xc5\xd3\xab\x61\x71\x9e\x2e\x0a\x44\x97\x99\x4c\xe7\x01\xba\xeb\x8f\xfc\x11\x5a\x11\x2a\x6d\xa3\x98\xb0\x5f\x2b\xb2\xba\x4c\xb3\x24\xbf\xf4\xf7\x14\xa4\xbd\xd7\x7f\xb0\xeb\xfd\xbd\xa7\x47\xef\xdf\xed\x1d\x06\xd7\x16\x7c\xbe\x94\x69\x36\x83\x5f\x2e\x86\x05\x17\x5f\xd2\x29\x47\x41\x7f\xb4\xa2\x7b\x7f\x1e\xed\xbd\xde\x3d\x79\xfb\xee\xcd\xd1\x9b\xa3\x8f\x6f\x55\xa9\xdd\x58\xf2\xa0\x3f\x5e\xad\xb6\xbe\xc4\xa2\x37\xcf\xe3\x84\x0b\xaa\xc7\x95\x0a\xfe\xaf\x65\x2a\xb8\x1e\x6f\x1b\xb2\xbf\x7f\x15\x54\x2c\xb3\x2c\xcd\x66\x47\xbc\x90\x05\xeb\x8f\x1f\xe1\x6a\x60\x39\xb9\x46\xcb\x82\xf7\x0a\x29\xd2\xa9\x44\x5b\xd5\x5c\x4a\x4c\xae\x55\x45\x9c\xbd\x39\xfd\x8b\x4f\xa5\xaf\x27\x17\x67\xcb\xf9\x9c\x6c\x09\x2e\x97\x22\xeb\x71\xff\xe4\x84\x7d\xc9\xd3\xa4\x37\xa2\x09\x9f\x73\xc9\x21\x8a\xf2\x55\x05\x47\x60\x4e\xcd\xec\xc9\xf3\xb4\xf0\x97\xcb\x34\x61\x53\xcf\xa3\x10\x4a\x13\xc6\xf5\x57\xc2\x2f\x0a\xd6\x97\xfe\x9c\x67\x33\x79\x3e\x18\x08\xf3\x15\x26\x81\xd4\x39\xf4\xb4\xb2\x6b\xb3\x80\x82\xeb\xd5\x4a\x27\x4c\xe3\xf9\xfc\x34\x9e\x7e\x66\x42\x87\xcf\xe3\x62\x4f\xe7\x79\x5a\xec\xf2\x0b\xd6\x1f\x9b\xca\x8a\xa7\xf3\x34\x2e\x58\xa6\x83\x82\xa7\x67\x29\x4f\x58\xc6\x2f\x7b\x4f\x85\x88\xaf\xb0\xad\x9d\xe8\x0c\x85\x8c\x25\x67\x28\xe3\x97\xa8\xee\x4f\x86\xc9\x75\x1d\x4a\xd5\x00\x56\x3d\xa9\xe3\x73\xdd\x6b\x72\x7d\x96\x0b\xac\x86\x31\x63\xf3\x09\x8f\xca\x72\x3e\xe1\x1e\xda\x4e\xb3\x84\x7f\x45\xd1\xa3\x6c\x30\xc8\x6c\xb3\x1e\x11\x95\x27\xf3\xd3\x24\xb2\xc3\x9b\x95\x65\x3d\x51\x54\xaa\x9a\x44\x7e\xd9\x53\x0d\xde\x13\x22\x17\x18\x3d\xcb\x97\xf3\xa4\x97\xe5\xb2\x77\x96\x66\x89\x5d\xf9\x76\x23\xa4\x0b\x35\x0a\x3c\xe9\x9d\x89\x7c\xa1\x62\xa5\x87\xfe\x89\xc8\x0a\x80\x51\x31\x18\xa0\x0b\x9e\x25\x69\x36\x43\x7d\xc6\x32\xdd\xdf\xc1\x00\x9d\xa5\x59\x3c\x4f\xbf\xf1\xa4\x11\x8d\x33\x5f\xd5\xb1\xcb\x2f\x0a\x2c\x08\x15\xfe\xc5\xb2\x38\xc7\x19\x21\x34\xab\xfb\x1d\xeb\x76\xa6\x67\x18\xf9\xaa\x34\xf7\xa7\xe7\xb1\x78\x2a\xf1\x88\x10\xbb\x66\xb6\xec\x98\x08\xc6\xfd\xe2\x62\x9e\x4a\x8c\xb6\x11\xa1\x19\x93\x4e\xd0\x2f\xe6\xe9\x94\xe3\x11\x1d\x8e\x09\x4d\xd9\x88\xe6\xcc\x2e\x89\x47\xe9\xe3\xfc\x51\xea\x79\x7a\x81\xc6\x4c\x4c\xd2\x68\x0b\xaa\xf4\x11\x63\x2c\x86\xfa\x47\x4c\xb5\xdd\xcc\xe7\xfa\xb8\xc5\x99\x1a\xb4\x78\x3a\xe5\x45\xd1\xbb\x88\x05\xcf\xa4\x1d\xbd\xfc\xac\x27\xf2\x5c\x22\xb2\x95\xf9\x17\xf9\x05\x26\x2b\x3e\x2f\xb8\xe9\x13\xc0\x9f\xe6\x99\x4c\xb3\x25\x57\x19\xd4\x20\xc4\x64\xb5\xb2\x53\xe6\xff\x95\xa7\x19\xf4\xa0\x1e\x95\x42\xad\x12\x9d\xa1\x8f\xfb\x6a\x21\x0c\x06\xfd\xc6\x4a\x20\x2b\xd5\x95\x25\xbb\xd6\xfb\x3a\x68\x6c\xef\xa0\x6b\x97\x07\x9d\x7b\x3e\x58\xdb\xfb\x41\xf5\xb5\xda\xaa\x3e\x99\xf9\x62\x0d\x20\xcc\xc5\x0a\x76\x92\x24\x9b\x44\x54\x30\xb5\xa0\x11\x36\xd9\x09\x52\xeb\x47\xcd\x97\x1e\xdf\xe1\xf8\x51\xf6\x84\x8d\x1e\x65\xc3\x21\x91\x93\x2c\xf2\xcd\x16\xc5\x15\xa2\x10\x66\xf7\xda\x94\x15\xd5\x3d\x64\xd7\x59\xfe\x2c\xcf\xce\xe6\xe9\x54\x06\x35\xb6\xd7\x33\x2b\x68\x06\x6b\x45\xf4\xd2\xac\x27\x89\x54\x1b\xfb\xcd\x65\xf6\x56\xe4\x17\x5c\xc8\x2b\x2c\xc8\x60\xb0\xec\x8a\xc4\x19\x93\x13\x11\x51\x3e\xc9\x22\xc6\xf5\x97\x88\xd8\x72\x22\x22\xb2\xa2\x8b\xf8\x33\xdf\xd5\x78\x5a\xa3\x09\x85\x71\x35\x52\x65\x12\x13\x3a\x65\x58\xfd\x8c\x08\x4d\xd8\x04\x99\x2e\xab\x43\xa9\x3a\xb8\x74\x5f\x50\xb4\x25\xfc\x0b\x91\xcb\x5c\x5e\x5d\x70\x7f\x0d\x6c\x3d\x9c\x16\x93\x3a\x68\xcc\x0e\xc4\x96\xc2\xa7\x8c\x31\x5e\x96\x28\x07\x44\x8b\xfa\x4c\xc1\xcb\xcf\x7a\xb0\x17\x0d\x0c\x27\xb6\x2c\x35\xc6\x85\xed\x65\x0e\x9c\xb2\xec\x1b\x34\x9d\x16\x7b\x5f\x25\xcf\x8a\xf4\x14\x4e\xde\xb2\xc4\x55\x26\xc6\xc9\x8a\xba\x4d\x36\x6d\x70\x1b\xaa\x56\x79\xbd\xff\x19\x63\x35\x26\x2c\x4b\xa4\x50\xe6\x95\xc2\x17\x8d\x04\xbb\xb3\xbb\xba\xa7\xa7\xd9\xbf\x14\xf1\x85\x5e\x64\xc5\x60\x80\x9b\x58\x7b\x3d\x0b\x36\x18\xb5\x89\xde\x09\xa9\xf1\xf6\x15\x26\x5b\xce\x98\xda\x2c\x7e\x7c\x71\x31\xbf\x82\xe2\x0d\x1c\x5f\xad\x43\x37\xd2\x2c\x5e\x36\x6a\x60\xfb\xba\xf3\x9d\x87\xc9\x60\xa0\x07\x5f\x4f\x19\xee\xe8\x32\xe3\xc4\x2c\xee\xf5\x25\x31\x18\xe8\x02\xed\x78\x4c\x68\x07\xa4\xe6\x64\x2d\xb3\x82\x73\x77\xaa\xda\x67\xd4\xc6\x53\xb2\x09\x07\x86\xaf\x3d\xe5\x66\x48\x14\xca\x76\xe6\xb5\x51\x45\x35\xf7\x5b\x52\x5c\x5d\x37\x4e\x50\x08\x9c\x98\x79\xa1\xed\x42\x0a\xee\x0a\x86\x75\x7e\x75\xbd\x61\x09\xd9\x45\x61\x8a\x71\x85\xa5\x79\x82\x48\xbb\xf1\x27\x6b\xad\xb7\x78\xca\xac\x04\x3b\xb7\xfa\xf4\x20\x54\xb2\xd1\x23\xf9\x98\xdb\x93\x43\xda\x53\x43\x30\x3e\x91\xd1\x96\xfa\xc3\x84\x1d\xf0\xb0\xfa\x0a\xda\x08\x0b\x13\x8b\xe1\x79\xb3\x45\xf6\x4c\x6c\x20\x4f\x35\xa4\x6a\x4a\xd8\xe6\xe1\xb4\x27\xef\x56\x8d\x68\x2b\x3a\x88\x0a\x36\x7a\x24\x1e\x5b\xf4\xfa\x48\xd8\x56\x1b\xbc\x96\x36\xfa\xaa\x50\x5b\x35\xdd\x86\x18\xd3\x8d\x37\xa1\xd5\x56\x85\xbb\xd4\xa1\x18\xe2\x6e\x2a\x69\x44\xd3\x6a\x0d\x77\xac\x46\x12\x54\xb8\x10\xa0\xb4\x33\xc7\x9f\xf9\x3b\x9d\x8e\x49\x60\x51\x64\x67\x4e\xdd\xb6\xd4\x2e\xd5\x1c\xc7\x38\xb3\xe4\x20\xb1\x1f\x94\xaf\x4d\xbe\x53\xc5\x06\xdc\xaa\x50\x06\x73\x8f\x11\x7b\xfc\x98\x86\xc5\x58\x52\x4e\xc8\xaa\x42\x07\x15\x6a\x94\x54\x9a\xf6\xbc\x04\x92\x54\x0d\x4f\x17\xa4\xa2\x82\x41\xe5\x8a\x62\x7d\x32\x33\x97\x4a\x53\x94\xae\x6a\x52\x0e\x14\xdf\x56\x3e\x18\xc0\x52\xe8\x33\x96\x5b\x3c\x8a\x63\x31\x5b\x2e\x78\x26\x0b\x33\xc3\x8f\x77\x06\x03\x77\xfd\xac\xd1\x2b\x71\xd6\x5b\x66\xc5\xf2\xc2\xd0\x73\x86\x52\xb9\x8c\x15\x8b\xa3\x5a\x90\xd0\x1e\xff\x7a\xc1\xa7\x2a\xf1\x9f\x86\xd9\x4a\x13\xda\x83\xd5\x64\xb2\x93\x7f\xf6\xd2\xac\x90\x3c\x4e\x7a\xb3\x5c\x06\x15\x95\x58\x35\x46\x31\x45\xba\x2c\x10\x89\xed\x46\x12\x0a\x54\xb2\xa2\x57\x35\xb5\xac\x0e\x97\x4c\x8d\x1c\x9b\x44\x84\xaa\xde\xb2\x0c\xaa\x88\xb3\xa9\x3a\xa9\xd2\x50\xf5\x40\xe0\x0c\xe6\x85\x66\xb4\x3f\x22\x81\x8e\xe2\x3a\x3c\x26\x64\x45\xd6\x8f\x21\xa0\x21\xd5\x18\xa6\x7a\x0c\xd3\x33\xdc\x4f\xcb\xd2\x6e\xa9\xb4\x79\xec\xa4\xcc\xc2\x9c\x44\x34\xa3\xc0\xa0\xd0\xb4\x8d\x95\x25\x4d\x3b\x50\x3c\x34\x3a\xa5\xe9\xca\x90\x5a\x7e\x0c\x1c\x42\xb3\x25\xa6\x9e\x1d\x45\xfb\xb5\xc6\x24\x34\x63\x2d\xa9\x6a\x83\xe2\x06\x74\x0f\xd5\xd7\xaa\x26\xc2\x7c\x9e\x49\x91\xf2\x8a\xee\xfa\xab\xf0\x4f\x78\xfc\xf9\xa4\xe0\x3c\x63\x73\x27\x9f\x5a\x75\x85\x13\x6e\x21\x7d\x4e\xae\x35\x21\x06\xf1\x44\x31\xac\x44\xe7\xc1\x8d\xea\xa6\x73\x1e\x0b\x77\x8f\xfc\x60\x4b\x80\xfe\x91\x0a\x96\xe9\x17\x3a\xcb\x73\x44\x1d\x40\x2b\xe2\x26\x6d\x9f\xc6\x02\xa9\x61\xdf\x9c\x23\x2e\x92\x33\x44\x27\x16\x21\xb8\x64\x94\x45\x27\x4e\x71\xc3\x35\x09\x35\x10\x75\x0d\x64\x30\x10\x4e\x68\xad\x0d\xdf\xa0\x0d\xee\x0c\xea\x86\x93\x66\xc6\x7f\x2d\xbf\xa1\x9b\x72\xb9\x91\xd4\x94\xf8\x8a\xba\x3a\x6c\xb2\xf8\x1a\x24\xf2\x75\x1b\x90\x6f\x7a\x0b\x11\x42\xfd\xfa\xdb\x2a\xe7\x4d\xe3\xb3\x88\xd3\xcc\x40\x84\x42\xdd\x79\xab\x63\x08\xf2\x55\x43\xa8\x32\x58\xdc\xd6\x48\x69\x45\x43\x25\x55\x9c\x59\x31\xf5\x80\xb6\x57\x0e\x26\xd4\x12\xa3\xac\x22\x3b\x35\xe4\xc1\x60\x2d\x45\xcf\xec\x60\xd0\xdc\x70\x83\x01\x6e\xed\xc0\xeb\x36\x8f\xd2\xe0\x6e\x56\x64\x45\xe0\x60\x22\xf4\x47\x84\x13\x6a\xa1\xa4\x34\xb7\x2c\xa0\xa2\xac\xea\x93\xc2\x45\x42\x59\x28\x83\x8c\x16\x2d\x29\x46\x5c\x67\x26\x74\x09\x08\x24\xc1\x79\x59\x4e\xa2\x8a\x54\x2c\xfc\x93\x34\xfb\x92\x7f\xee\xc6\xee\x29\xbb\xb4\x19\xab\xe4\x9c\x6a\xd6\x33\x65\x8c\x7d\x5d\xe7\x39\x9f\xf3\x8c\x8b\x58\xe6\xa2\x97\x16\xbd\x78\x2e\x78\x9c\x5c\xf5\x8c\x64\x06\x91\x2d\x53\xf0\x8d\xa6\x1e\xa0\xb4\x42\x76\xb9\x01\x14\xdb\xea\xce\x31\x59\x29\x9a\xe1\xd1\x23\xdd\x92\x82\x65\x7e\xc2\xe7\x7c\x16\x4b\xae\x80\x14\x96\xa2\x53\xb9\x01\x42\x59\x3a\xe0\x06\x83\xc2\x4f\xa5\x6e\xc8\x24\x8f\x18\x63\x67\x5a\xae\xa6\x21\x30\x85\x3e\xb7\x34\x33\x5a\x67\xf4\x35\x34\x05\x7e\xa9\x6b\x9d\x33\x81\x97\xb4\xce\x41\x63\xe8\x41\x5d\xd1\xdc\x87\xc1\xbd\xce\x99\x89\xa3\x31\x9b\xfb\xb1\x98\x6d\x59\xee\x79\xb5\x6a\xb5\xb3\xe2\xab\x57\xb6\x86\x46\x53\x7f\xa4\xb6\x56\x47\xe8\x0d\xb5\xe7\x8a\x6a\xfe\x2a\x55\xca\x19\x74\x78\x6a\x72\xa8\xd3\x66\xea\x27\x79\xe6\x9c\x30\x7b\x74\xba\x95\x4d\x14\xc9\x55\x2c\xe7\xf2\x75\xbc\xe0\x11\x9b\xfa\x5f\xe2\xf9\x92\xd3\xcc\x57\x70\x58\x01\x3f\xaf\xf2\x29\x6d\x35\x62\xa5\xa9\xc1\xaf\x52\x77\x32\xf3\x0b\x9e\x49\x96\xf9\x27\xf0\x1b\x6f\xf1\x79\xc1\x7b\xad\x39\xb7\xcb\xe8\xd2\xcc\x7e\xca\xde\xd0\x78\x2b\xf3\x93\xb4\xb8\x88\xe5\xf4\x7c\xef\xeb\x94\x5f\xc0\xa2\x8b\x15\xbf\xeb\xf6\x45\x8b\x2b\xdc\x71\x1d\x0c\x32\x3f\x3e\x15\xcb\x0b\x59\x0d\x37\x0c\x20\xfb\xba\x65\x07\x5a\xaf\x6c\x18\xd3\x2c\x17\x8b\x78\xee\x0e\x6a\xaa\x56\x58\x9e\xf1\xf0\x4d\xb0\x67\x46\xea\x1a\xba\x1e\xc0\x80\x51\x95\x16\xe8\x2c\x2b\x05\x02\x62\xfb\x8c\x3d\xb5\xe3\x37\xdd\xaa\x87\x04\xc8\x21\x33\x16\x83\x01\xae\x1b\xdc\x9a\xcb\xc1\x00\xab\x4e\xaf\x4d\xa0\xa2\x0a\x31\xa7\x29\x5d\x12\x5a\xac\x89\x19\xc9\xb5\x62\x4e\x74\xb5\xd7\x0a\x4c\x60\xfb\x43\x63\x31\x0b\x38\x70\x8a\x58\x65\x5c\xad\xa6\x6a\x20\x6b\xc9\x8c\xc9\x6e\x6b\x53\xb9\x57\xab\xcd\x72\x3f\x37\x94\x37\x42\xb1\x82\x39\x31\x13\x62\xe1\xd9\x81\x8f\xfc\xb3\x5c\xec\xc5\xd3\x73\xec\x12\x97\xc0\x86\xb8\x68\xcf\x65\x57\x0d\x1a\x02\xb2\x73\xb5\x6a\x8b\x95\x20\x4b\x2c\x66\xae\xf4\x71\x09\x02\x9c\x1a\x59\x66\x0a\x55\x2a\xe4\xa4\xf7\xb5\xc0\x7c\x92\x45\x94\xd3\xd4\xdd\x45\x7d\xc6\x96\x66\xc2\xf5\xaa\x58\xc2\xe4\xaa\x5d\x01\x93\x6d\xf1\xcf\xd4\xc5\xae\x45\xf8\x56\xe4\x8b\xb4\x50\x6c\x25\x08\xcb\xf1\x14\x26\xc9\x97\xe7\x3c\x6b\x48\x99\xa5\xd9\x03\x94\x43\x53\x56\xb4\x95\x68\xc6\xc9\xa4\x92\x60\x0d\x6e\x07\x4c\xd3\x32\xc6\x69\x8e\xe7\x64\xa5\x0a\xc6\x78\xa9\x57\xc9\xda\x31\x75\x21\xf2\x29\x2f\x8a\xc1\xc0\x7c\xf8\x49\xae\x8e\x45\xc5\x79\xb2\x66\x94\x7f\x9a\x66\x09\x96\x44\x8b\x18\xb2\x2d\x77\x16\xdc\xc3\x40\x38\x83\x9c\xe2\x6a\xd2\x14\xca\x37\xad\xaf\x5b\x9b\xd1\x54\x75\x93\x53\x41\xd5\xe7\xaa\x62\x27\x33\x96\x85\x99\xee\x5a\x4a\x53\x12\xa4\x98\x38\xab\x6e\x8e\xcd\x74\x48\xa6\x56\xf6\xab\x7c\x1a\xf0\xc9\x28\x5a\x6d\x8d\x7b\x69\xd6\x03\xb6\xd9\x87\x75\xfc\x2a\x9f\x32\x3e\x19\x47\x84\xee\xd4\x29\x86\xe9\xd6\x69\x3b\x11\x95\x7e\x7c\x26\xb9\xd0\xe1\xbb\x91\xe1\xb5\xa4\xb8\xda\xd3\x44\xa1\x96\x66\x4a\x67\x89\x4d\xeb\xfa\xb9\x3f\xcd\x17\x17\x73\xae\xe2\xcb\xf2\x7a\xb5\x25\x61\xb5\xb0\x6a\x83\x99\x0b\x00\x09\xcb\xc6\xcd\xcd\x64\x0d\x30\xa9\xd6\x6c\x5d\x2d\x9b\xd8\xbe\x21\x10\xbc\xae\x22\xca\xab\x6d\x32\xa7\x9a\x28\x30\x1c\x6f\xc1\x25\xee\x8f\x9c\x16\x5e\x18\x7e\xbb\x6e\xe7\x64\x06\x1c\x83\xac\xc4\x52\x7a\xd3\x73\xbd\xd8\x2b\x81\x5a\x4d\xd9\x00\xe2\xae\xc5\xd3\xc0\x6d\x14\xaf\xe3\xd7\xd8\x8a\x0d\x88\x95\x19\x0c\xc7\x34\x63\x8d\x2b\x12\x38\x89\x3d\x4f\xd4\x22\x06\x92\x9e\xe1\x85\xa9\x92\x0a\x52\xb7\xc2\xac\x55\xc5\xc0\x4b\x40\x96\x70\x31\xb1\xd5\x4a\x3f\xab\x12\x47\x54\x56\x8c\xaa\x39\x63\x32\x2b\x67\xbe\x56\xc1\xe0\xdc\x59\x29\xe7\xd5\x02\x34\xb8\xf9\x4c\xe3\xe5\xfe\x68\x05\xc7\xe9\x19\x5d\x58\x1a\xa8\xe6\xa8\x9b\xb2\x53\x7a\xc5\x3a\x86\xe7\xf0\x6a\x71\x9a\xcf\x43\xfd\x13\x5c\xaf\xe8\x8c\x5d\x55\x07\x71\x59\xa2\xff\xf3\x7f\x6c\x00\xd1\x53\x76\xe5\xcb\xfc\x50\x8a\x34\x9b\x1d\xc5\x33\x48\x75\xc2\x88\x7e\x61\x1b\xc8\x47\x7a\xc2\xd4\x5e\x9f\x59\x1a\xe9\xdd\x32\x93\xe9\x02\x26\xe3\x84\x7c\x59\x27\x26\x4f\x08\x9c\x9b\xd7\xb8\xbb\x1c\xfb\x12\x36\x0b\x04\xd7\x2b\x02\x22\x46\x26\x61\x57\x5f\x32\x54\x2c\x8b\x0b\x9e\x25\x3c\x39\x94\xb1\x90\x88\xee\x39\x51\x1f\x53\x3e\x4f\x10\xfd\xca\x10\xff\xca\xa7\x70\x4f\x87\xe8\x1b\x86\xcc\xa2\x56\xac\xe3\x53\x76\xbd\xa2\x87\x2c\xaf\x87\x93\x65\xf5\xf7\x56\xea\xc4\x1f\xfa\xd3\x3c\x2b\xa4\x58\x4e\x65\x2e\x58\x4e\xf3\x46\x38\xa5\xf9\xe4\x34\x62\x29\x1c\xee\xf3\xf8\x4a\x51\x17\xac\xa6\x16\xf7\xed\x8c\xd0\x13\x3f\x2d\xd6\xa2\x1b\xc7\x86\xde\x01\x5d\x6b\x7c\x30\xe0\x6e\xa5\x66\x5d\xf5\xfb\x12\xf0\x1f\x63\x8a\xbd\x5e\xaf\x92\x31\x86\xa5\xdb\xae\xb2\x94\x7e\x16\x2f\x40\xfe\x71\xe2\x2f\x62\xf1\xb9\xeb\xd8\x32\xeb\xac\xe0\xf2\xad\x1d\x83\x37\x67\x61\x67\x2c\xe6\x34\x27\x01\xe6\xfe\xc9\x09\x8c\xd7\xc9\x09\xcb\xe9\x29\xa0\xb0\xb2\xc4\x5c\x0d\x4c\x47\xbb\x08\xa1\xdc\x19\xdf\x26\x6d\x7f\x48\x28\x57\xad\x8b\x61\xba\x3b\x9a\xa7\x10\x74\x01\x0c\xba\x3a\x2d\x1c\x46\xe0\xc4\x8f\x8b\xab\x6c\xda\xc0\xf1\x80\xae\x8d\x40\x47\x15\x5c\xe2\x1a\x8b\x57\xbc\x42\xe7\xcc\x60\x41\xc2\x3c\xc8\x61\xe7\xe2\x8e\xd3\xab\xba\x43\x05\xda\x8a\xeb\xfd\x5f\xe5\x5f\x41\xf3\x0e\x09\x3d\x9c\xcc\xa2\x26\x2b\x5f\x91\x06\x2b\x7a\xd8\x1c\x20\x44\x0f\xab\xfd\xb7\x5e\x06\x4d\xf4\xde\xeb\x55\xf9\x23\xa4\x06\xea\x33\xbf\x2a\x3a\x96\xd1\x24\xaa\x6f\xea\x60\x42\x88\xd4\x07\x84\xa8\xc5\xe9\xbe\xe0\x5f\xb8\x28\x38\xae\xb9\xb6\x9e\xb0\x68\xb1\x92\x5f\x56\xc2\x4b\x7d\x9f\xa6\x36\x75\xa6\x21\x56\xd7\x43\x1a\xf9\x65\x54\x54\x98\x51\xac\xaa\x44\x8b\x0f\xc5\x4a\x35\x17\xb2\x16\xec\x82\x26\xce\x12\xb8\x76\x16\x77\x90\x50\x38\x28\x82\x96\x48\x16\x8e\x90\x0b\xc1\xbf\x58\x91\x3f\xe0\x54\x2b\xfe\x57\xc4\xb8\x3e\xe9\xe1\xf3\xcc\x5c\x4b\x5b\x3c\xad\x65\xb3\x2e\x6f\xd1\x3e\x3c\xed\x89\x35\x25\xb4\xcf\x49\x25\xd6\x85\xcb\x2b\x75\x84\x21\x20\x7a\x65\x7d\x23\x3a\x18\x98\x73\x42\xdf\x57\x90\xc1\xc0\x9c\x3b\x9e\x34\xf2\xeb\x31\x21\x46\x32\x0e\x04\x22\x59\xd1\x42\xe6\x17\x41\xfb\x12\xc0\x8c\x8f\x7b\x23\x52\xb7\x6b\x32\x8a\x9c\xb3\xb8\xc9\x36\x71\x4d\xf0\x69\x1e\x83\x03\xf7\xd3\xb8\x28\xf9\x12\xcf\x57\x74\x8d\xe7\x68\x8c\xab\x73\x1a\x02\x73\x6c\xca\xe7\x86\x38\x30\x64\x5d\xae\x49\x54\x2a\xf4\x98\x4b\xda\xef\x67\x2b\x3b\x25\xc0\x6a\x99\x36\x38\x97\xc3\x30\x2a\x59\xbb\x3b\xad\x2b\xc7\xe1\xb0\x62\xc8\xdb\xfd\xce\x22\x9a\xb3\xb4\xdd\x77\xa0\x30\x40\x88\xa8\x69\x8e\xea\x7c\xc6\x88\x67\x89\xe1\xc3\x4d\xda\x63\x56\x2d\x19\x2b\x68\x30\x33\x96\x52\x64\xc9\x2e\x44\x68\xe1\x44\xd7\x34\x97\x86\x15\x0f\x06\x45\x73\xf5\x3d\x4e\x2b\x92\xad\xae\xbc\x8e\xa3\xfd\x11\x14\x74\xf3\xd7\x40\xdd\x12\x4e\xec\xca\x32\x91\xf1\x4f\xd7\x55\xdd\x6e\xf7\x8b\x75\x99\x85\x14\x57\x3d\x90\x9a\x2e\x78\x26\x7b\x97\xa9\x3c\xcf\x97\xb2\x07\xc5\x7b\xb9\xe8\x99\x16\xa0\x7f\xa3\xc1\xab\xd5\x8a\x6a\xa6\x34\x68\x4a\x5b\x9b\x0b\xa0\x73\xe6\x85\x9e\x79\x51\xe1\x95\xd6\xcc\x0b\x20\x00\xb3\xf5\x59\xac\x76\x5c\xd6\x9c\x28\x73\x2f\x07\x8d\xcf\xdc\x66\x9a\xa5\x95\x6d\x9d\x0a\x1e\x7f\x5e\xad\xd2\xc1\x00\x23\xf8\x46\xe6\xd2\xd6\xca\x13\x20\x4c\x06\x03\x67\xed\x0c\x06\xf2\x31\x73\x7b\x0d\x3c\xad\x56\xa0\xd1\x07\x4a\x1a\xba\xeb\x33\xb8\xae\xe8\x3d\xb3\x7d\xb8\xd9\x38\x92\xa6\x61\x8d\xb1\x5c\x90\x81\xbe\xff\x34\x64\x09\xce\x09\x7d\xba\xa2\x36\xd8\x1a\xd9\xef\x6d\x7d\xa7\x63\x90\xd8\xee\x1d\x44\x3a\xed\x80\x52\x81\x23\x69\x30\x39\x70\x85\x3c\x74\x16\x07\xd9\xea\x3d\x16\x38\x42\x06\x6e\xb8\x7d\x69\xaf\x00\x35\x82\x50\x0c\x62\x9a\xa5\xc5\x79\xd0\xad\x94\xb0\x71\x6d\x48\xbd\x36\xac\x0a\xc1\xda\xda\x90\xb0\x36\x84\xcb\x1b\xa9\x89\x73\xd1\x5e\x35\x9a\xc2\x99\x1c\x2a\x2a\xe6\x89\xd0\x29\x16\x6a\xa0\x57\x14\x76\xc2\xff\xad\x26\xea\x85\x04\xcd\x33\x0b\x5d\x6c\xc4\xe4\x99\xc3\xba\xa7\x2c\xd3\xa2\x2e\x2c\x2a\x36\x33\x5d\xad\xd6\x36\x77\x3a\x57\xc7\xd9\xdc\x6c\xe7\x58\x4a\xbe\xb8\x90\x08\x84\xff\xfa\x9c\x03\x2a\x38\x58\x13\xce\x3b\x43\x55\x9d\x88\xd7\x96\x09\x08\x14\x43\x46\x6b\x39\x59\x20\xa9\x91\x8b\x05\x62\xa5\xc6\x6c\xb5\xc2\x6b\x3c\xc0\x6c\x9e\x9f\xc6\xf3\x50\xff\x04\x6b\xc9\x5a\x97\x2e\xd4\x3f\xeb\xc9\x05\x9f\x9f\x85\xea\x4f\xa0\x59\x45\xb4\xcc\xcc\xad\x58\x9d\x67\x3f\x2e\xe4\xdf\xf2\x5c\xba\xf7\x6c\x6a\x4f\xdc\x20\xe7\xae\xa1\xf4\x9b\xbc\x4a\xd8\xbe\x5a\xc2\x24\xe8\xa0\xb9\x75\xe9\xc1\xc0\x5e\x2e\x2c\x92\xea\xb6\x88\x04\xdc\x5f\xe4\x0b\x20\x39\x30\x59\x69\x02\xc0\x39\xd5\xbb\xa5\xde\xbc\xa6\xfe\x9e\x73\xa3\xea\x00\x94\x48\x75\x2b\xe5\xf0\xc5\xd2\x25\x31\x5d\x91\x0d\x5c\xde\x95\x65\x45\x0c\x42\x38\x52\x6b\x68\x8d\x3d\xb4\xa4\xa4\x65\xa0\x1b\xe2\xb6\x9a\x9c\x5e\xce\xe7\x7d\xc6\x07\x83\x0a\xa4\x06\xf4\xb3\x30\x5d\xa2\xb8\x56\xb2\x68\xe9\xda\x19\x64\x93\x2d\x41\x43\x94\x39\x4a\x31\x55\xed\xaf\x21\xed\x67\x6b\xcf\x37\x8d\xd7\xae\x56\x7d\xb1\xd0\x55\xf0\x67\x61\xc7\xf5\x8d\xa6\xa0\x99\x25\xac\xf5\x25\x7f\x25\x37\xf0\x3c\x41\x8c\x3e\x99\xc4\x20\x25\x10\x35\x83\x91\x35\xa4\x7e\xce\xa5\xe4\x77\x58\x7a\x2b\x87\x70\x65\x3a\xcb\xd6\x39\xab\xb5\xab\x0a\x90\x8a\x0e\x06\x50\x35\xa8\x19\xd4\x37\x21\x58\x52\x64\x7b\x87\x20\x4f\xcd\x65\xc8\xea\x93\x50\xc8\x08\xe4\xf9\x9b\x33\x93\xcf\x84\x98\xb4\x5f\xc4\x55\x0e\x9d\xd7\xca\xa1\xa6\xae\x2b\x6e\xa3\x14\x6d\xe2\x2f\xe5\x14\xb7\xc5\x51\xce\xb2\x53\xc7\xc7\xc9\xc5\x19\xd4\x74\x72\x71\xc6\xae\x15\x06\xbb\x0a\xfa\x63\xba\xcc\x96\x05\x4f\x8e\xf2\xcf\x3c\x2b\x82\x49\x64\xc2\x2f\xb3\x8b\xa5\x54\xc1\xfc\x0b\x17\x67\xf3\xfc\x32\x18\xee\x50\x45\x8f\x17\xaf\xf8\x99\x7c\xf3\x85\x8b\x60\x04\x17\xc8\x3a\x63\x7f\x4c\xd3\xec\x4b\x3c\x4f\x93\x83\x3c\x93\xe7\x01\x6c\x36\x13\xb3\xaf\x4e\x30\xc8\xb2\x2c\xb8\x78\xa9\x23\x63\xc9\x13\x28\x55\xe4\xea\xe7\x22\x16\x05\x4f\xd4\x8a\x79\x1b\x0b\x09\xed\x58\x70\x91\x26\x29\x5f\x68\x58\xe2\x6c\xba\xf3\xcb\xce\x8e\xca\x7b\xc9\xf9\xe7\x24\xbe\x3a\x48\x8b\x05\x9c\x29\xfd\xf1\x4a\x31\xb9\x27\x17\x67\x2d\xe1\x99\xa2\x6c\x6c\xd7\xd3\xe2\x0f\x55\xad\xe5\xd8\xa6\x80\x7a\xd9\x2d\x2b\xe6\xf6\x5b\x0d\xa0\x5d\xcc\xb0\xde\xbd\x2b\x42\x33\x56\x89\xbd\x4e\x12\x7f\xc6\xe5\x51\xba\xe0\x58\x71\x20\xd2\xb7\xe3\xf5\x78\x34\x18\xf4\xa5\x0f\xc3\x0c\x5f\xee\xf8\xb8\x11\x1f\x74\x77\x20\xaa\x1a\x50\x37\x83\x1e\x3f\x88\x69\x0d\xe0\x60\x80\xfb\xd2\xb7\x03\x55\x96\xf5\xf7\x60\x20\x80\xd2\xe4\xfe\x89\x46\x8e\xa0\xea\x97\x0d\x06\xa3\x8a\xb1\xaa\x26\xd2\x46\xba\x0b\xa1\x52\x2e\xae\xd0\x8b\xf4\x4f\xd3\xd9\x8b\x7c\x29\x08\xd5\x03\x51\x69\xd1\xed\x8b\xfc\x1b\xcf\x06\x83\x56\x04\xe6\x95\x44\x2f\xdb\xaa\x67\x80\x65\xab\x5a\x25\xda\xc4\xb5\x64\x94\x7a\x8a\xe6\xf8\x75\xfc\xba\xde\xd6\x7a\xf0\xc3\x25\x9e\x62\x49\x28\x27\x81\xfa\x6d\x0f\x88\x16\x05\x3a\x92\x3e\x07\x9b\xa4\x34\x07\x5a\x17\x4b\x55\xef\xd3\x03\x38\x54\x74\x9b\xb5\xee\x5f\x3b\x96\x75\x64\xa4\xba\xb8\x2d\x00\x59\x4c\xe4\x99\x89\x54\x3b\xf8\xe4\xcc\x44\xce\x4d\xe4\x9c\x41\x40\x47\xea\x19\x31\x29\x3a\xc0\xea\x68\x9d\x47\x7e\x5b\x98\x0c\xf2\xdb\x82\x99\x08\x53\x7b\xf1\xfe\xe8\x59\xd5\xe4\xf7\x47\xcf\x58\x15\xa9\x33\xe4\x67\x67\x05\xb7\xf0\x75\x80\xd5\xd1\x3a\xcf\x85\x6d\xee\xc5\x19\x53\x23\x69\xdb\x9b\x4f\xe3\x39\xb7\x8d\x86\x00\xab\xa3\xe9\xef\x16\x07\x3f\x19\x91\x1a\x31\x57\xb1\xa0\x7e\x95\xb2\xdf\x01\x27\xe7\x4c\x4e\xd2\x88\x66\x38\x07\x70\x93\x34\x62\x79\xad\x0e\x5f\x4f\xd2\x19\x96\xe4\xfa\xdc\x72\xf6\x9a\x02\x3e\xd1\xba\xe6\xbb\x56\x8d\xbe\xaf\x1a\x91\x84\xb2\xb1\xdd\x02\xb5\x3e\xac\xbe\x3a\xac\x23\x4c\xac\xa2\xa1\x0b\x40\x65\x23\xb4\x3f\x66\x8c\x7d\xe2\x83\x01\xfe\x04\x12\x12\xee\x6b\xfb\x86\x37\x30\x2a\xe6\x3e\x5d\x25\x8d\x1d\x2c\xba\xd8\x74\xd4\x9d\x95\x65\x75\x98\x9b\x8f\xb5\xc5\x52\x83\xb9\x72\xc1\x3c\x1e\x85\x07\xb1\x3c\xf7\xa7\x3c\x9d\x83\xda\xe9\x28\x80\xf0\xd9\x3c\xcf\x45\xe3\x30\x9c\xd5\x9b\xc1\xe3\x54\xb0\x91\x1d\xbd\x51\x9f\x29\x9e\x29\x2d\xf6\xd3\x2c\x95\x8a\x4a\x1a\x0c\xb0\x60\x57\x30\x8f\xa2\x06\x70\x6a\x09\x51\xa0\x89\x69\xca\xa0\xa2\x45\x9a\x55\xf2\x7a\x5a\x2b\xf2\xe7\x3a\x35\x3e\x2d\xaa\xd4\x61\x9d\x1a\xb3\x11\x1c\xc5\x19\x1b\x3d\xca\x1e\xa7\x8f\x32\xcf\x23\x58\x0c\x06\x7c\x92\x45\xaa\x35\x93\x2c\x2a\xcb\xbe\x18\x0c\x66\x70\x65\x46\xfa\x8c\xcd\xb0\x8a\x55\x58\x31\xf6\x3c\xdb\xf4\xd8\xcb\xeb\xf6\x7d\x51\x53\x0f\x13\xc3\xfd\x62\x79\x71\x21\x78\x51\x58\x9b\x98\x34\xcf\x3e\xc4\x22\x4b\xb3\xd9\x06\x0a\x73\x9a\x67\x45\x3e\xe7\x83\x81\xf9\xf0\x2f\x63\x91\x35\x43\x18\x39\xd0\x7a\x97\x1a\x5c\xd0\x43\x9e\x7b\xc8\x9f\xe0\x7a\x88\x58\xbf\x1a\xe3\x25\x6e\x2a\x7e\xda\x59\x4e\x6a\x88\x2f\xe2\x2c\x99\x2b\xfc\xd9\x15\xab\xe9\x4d\xb5\xdd\x6a\x02\x22\xa5\x39\x9b\x44\x6a\x2c\x1f\xc5\x8f\xdb\x0a\x52\x8f\x62\xcf\x33\xb7\xd9\x08\xad\x6b\x95\x54\xd9\x27\x71\x44\xae\x53\x8f\xa1\xe3\x6c\x82\xbc\xd8\x43\x51\xaf\x56\x8d\x2c\x14\x89\x52\x67\x1d\x45\x24\xf5\x58\xe1\x21\xd5\x69\x37\x7a\x52\x44\x1e\xa2\x3d\xb4\x95\xb2\xb4\xb6\x1f\xd8\xb1\xd2\x11\xe6\xd6\xb6\x95\x6b\x5a\x2b\x25\xab\x2f\x58\x7a\xe8\x38\x7b\x6a\x53\x15\x58\xad\xea\x56\x93\x55\x00\x4d\x1f\xab\x39\x31\x3a\xfe\x88\xa8\x62\xc8\xc3\x15\x4f\x45\xfc\x42\xc6\xd3\xcf\x70\x96\x8e\x6b\xf9\xa5\xa3\x95\xec\x90\xea\x54\x38\xf3\x75\xa9\xe7\xeb\xa7\xe7\x43\x95\xa2\x7f\xf2\x89\x8c\xca\x12\x7f\xc1\x36\xc0\x1a\x77\x64\x7b\x9b\x36\xbc\x15\x55\x3b\xf4\xad\x8d\xfa\x59\x1a\xf7\x6b\x7d\x2a\xa9\x3d\xb9\xc4\xd7\x2b\xca\x89\xde\x5d\x35\x85\x99\xc1\x9e\xd6\x9b\x69\x30\x10\x7a\x2f\x85\x38\x9d\x64\x11\xbb\x5e\xd1\x25\x7c\x81\xde\x3e\xb1\x01\xbd\xdd\x02\x83\x30\x27\x59\x14\x42\x6e\xf5\x15\x98\x2b\x47\x15\xe1\x54\xc5\x89\xa2\x91\x55\x55\x7d\x5b\x67\x55\xa5\xae\x0a\x5a\x07\xa5\x2a\xdc\x9d\xd6\x5d\x79\xa3\x86\xab\x42\x84\x46\x3a\x2c\x1b\xbd\x7d\xea\x9c\xc1\x4c\x0d\xcb\xab\xfc\x92\x8b\x67\x71\xc1\x31\xd9\xe2\x8a\x7a\x66\xea\xaf\x87\x0a\x04\x5f\x32\x72\x39\x99\x43\x87\x93\x29\x34\x55\x5d\x73\x32\x21\x97\x60\x29\xa4\x7e\x9a\x80\x23\xab\xcf\x5b\x01\x7a\x5b\xe1\x52\x45\x31\xb3\xeb\x55\x6d\x2f\xa1\x07\x01\x28\x7a\xc9\x0e\xb1\x00\x49\x72\x06\x0d\x71\x69\x7b\x87\xb1\xf8\x6c\x6c\x8c\x54\xf5\xee\x95\xed\x33\xec\xb2\xfd\xf5\x8d\x76\x8b\x84\xcc\x42\x7c\x60\xce\x3b\x9a\x91\xae\x93\x48\x2d\x55\x38\x91\x82\x77\xf6\x60\x74\x2e\x30\xdf\x35\xf8\x1a\x5e\x9f\x7e\xa1\xa2\x47\x27\x68\xc6\x25\xf2\x2a\xea\x20\x44\xef\x8f\x9e\xa1\x40\xed\x41\x19\xe9\x53\xb3\x06\x75\x60\x4f\x08\x07\x8a\xda\x3f\x0a\x4c\x71\x03\x18\x77\x43\xfe\xd5\x38\x65\x18\x42\x5e\x7d\x90\x10\x9a\x32\x39\xb4\xd6\x45\x66\x28\x31\x7f\xc2\x46\xa1\x08\x91\xa7\xe0\x05\x68\x88\x88\x2e\x72\x91\x5f\xe2\xf1\x88\xea\x53\x2a\xfe\x8a\x47\x34\x25\xa4\xda\x49\x98\xf8\xc5\xf2\xb4\x90\x02\x8f\x89\xe7\xcc\xc6\x51\xcd\x1a\x59\x19\xe4\xda\x5a\xc9\x40\xa0\xd8\x7d\x37\x34\xc9\x22\x4c\x14\x0b\x31\x18\xe0\x1c\xa6\x34\x25\x54\xea\x80\x9c\x8c\xa2\xae\x3b\xa5\xbf\x70\xda\x8d\xab\xa8\x9c\x8c\xd5\x4e\xdc\x89\x14\x48\xa1\xa1\x88\x4d\xd7\x52\xbe\x26\xac\x76\x63\x19\x63\xe2\xe7\x22\x49\xb3\x78\xbe\x11\x34\x27\xae\x4e\xcb\x6e\xe3\x66\x0c\x58\x21\xbc\x7d\x3c\x99\x1c\x17\xc7\x87\xd1\xb6\x5a\x0b\x82\x5f\xcc\xe3\x29\xc7\xdb\xff\x38\x9e\x94\xc7\xd1\xad\xed\x19\x45\x88\x04\x4e\xc2\xf1\xb1\x8e\xab\xa1\xbe\xde\xb8\xb6\xb0\x64\x2f\xb1\xa4\xbc\xd1\x66\x42\x53\xd8\xb2\xf0\xd7\xb5\xc1\x73\x37\x9b\x6d\x9d\x90\x1a\xf5\x48\x36\xa2\xa2\x32\x39\x7b\x24\x1f\x0b\xb0\x36\xc8\xe5\x44\xed\xba\x28\x84\xbd\x67\x43\x01\x84\x76\x61\x43\x92\x35\x45\x42\xab\xfd\x4c\x73\x86\xf4\x29\x98\xb2\xd1\xa3\xf4\xb1\x00\xab\xb7\xdc\x63\x7b\x38\x9b\xa4\x11\x09\xd5\x5f\xab\xd2\xc4\x49\xa0\x82\x95\x04\x79\xb5\x52\x2c\x05\x74\x01\xd4\x92\x9b\x5d\xb4\x6c\x18\xd0\x92\xce\x48\xbd\x34\xc2\x81\x2e\x41\x8f\xf4\xe7\x79\x36\x53\x25\x34\xf3\x06\x74\x9e\x56\xd6\xcb\xd8\x7d\x8d\x7f\xa5\x3f\x8f\x0b\xf9\x32\x4b\xf8\x57\x45\x53\x3d\x61\xa3\xc1\x20\x93\xbe\xe4\x85\xca\xfe\x88\x70\x56\x4f\x54\x06\x87\x57\xb3\x08\xcd\x86\x6c\xdc\x41\x4f\xef\xdb\xed\xb8\x07\x6b\x79\x0f\x4b\x12\x36\x6e\x0e\x6a\x74\xc4\x07\x03\x11\x8a\x40\x3a\xb8\xe5\x55\x63\xfe\x0b\xbc\xa7\x86\x2b\x04\x50\x35\xeb\x42\x6b\x96\x00\x74\xb8\xdf\xf1\xd9\xde\xd7\x8b\xae\x2b\xdb\x6f\xb8\xee\x04\x3a\x3e\x46\x6a\xb1\xb9\xcb\x0f\x1f\x4f\x48\xa9\x7e\x22\x52\x1e\x4f\xf0\xe4\x1f\xc7\xd1\xf1\x24\xba\x43\x8e\x23\x15\xeb\x93\xed\x59\x4b\xe3\x59\x5f\x32\xdb\x61\x2e\x4b\x51\x96\x59\x59\xa6\x2b\x42\x56\x6a\xee\xea\x8e\x7c\x6b\x6c\x8f\xaa\xca\xc9\xf0\x78\xfb\xf8\xf8\x1f\xb7\xee\x78\xa1\x8f\x49\x39\x39\x8e\xae\x57\x91\xda\x04\xc7\xc7\xb7\x06\xee\x46\x78\xd1\x94\x44\x49\x98\xb4\xf5\x33\x68\x30\xc0\x9c\x4d\x78\x44\x68\xaa\xc9\xf0\xac\xa5\xf7\x24\xd4\xf2\x55\x94\xbc\x42\x07\x4d\x39\x96\xe2\x96\xbe\xca\x89\x3a\x65\x22\xe6\x20\xb4\xbf\xe9\xaa\x55\x0b\xd6\xef\xd7\x33\xff\xe4\x92\xa9\x3f\x65\x79\xbd\xa2\x52\xcd\xa7\x7f\x72\x69\x55\xa5\x2a\x18\xff\xb2\xab\xc0\x50\x03\x83\x41\x81\xbf\xaa\xb9\x1c\x0c\xbe\xea\xc9\xa4\xc2\x3f\x89\xa9\xa0\xee\x61\xfd\xbe\x31\xfb\x15\x07\xa5\xfe\xf8\xef\x8f\x9e\xa9\x54\x6f\x4c\x47\x84\x28\x2e\xec\xfd\xd1\xb3\xf6\x9e\xf8\xc3\x19\x34\xd0\x0e\x72\x10\x48\x43\x6d\x68\x6d\x20\x25\x49\xcf\x14\xa2\x4a\xbc\x5b\xdb\x7a\x0f\x48\x42\xa4\xe2\x21\x48\xa5\xf6\x29\x59\x6b\x67\x2e\xf2\x4c\x9e\x17\x6f\x63\x51\x28\x1e\x88\xf6\xd5\x14\xd4\xd5\x58\xa2\xd2\xe5\x7a\x12\x68\x30\x7d\x8f\xb9\x7f\xa5\xd5\xb7\x25\x68\x48\xdc\x78\xde\x21\x90\xd9\xa0\x48\x93\x90\xce\x56\xfb\xe0\x98\xbb\x98\x71\x0e\xf1\x1f\x15\x2b\xdb\x75\xb0\xf7\x47\xad\x93\xdd\x00\x77\x06\xf1\x23\x76\xb0\x0a\x6f\xcc\x48\x65\x46\x6a\xd7\xd0\xaa\xc6\xb2\x93\x88\xa6\xea\x4f\x6e\xa5\xa6\xda\xa0\x6b\xbc\x03\xc8\x55\xb0\x39\x9e\xec\xf0\xbb\x54\x46\x84\x5a\xe1\xa9\xb6\x31\x52\x63\x78\x78\x9e\x0b\x89\x85\xda\x9e\x84\xa6\x6b\xc9\x36\x25\xff\x89\x14\x17\xa4\xc6\x78\x7e\xa1\x62\x14\x4d\x50\x7d\xe5\xd5\x57\xa3\xb5\x80\xf3\xbf\x69\x9c\x4f\x53\x1d\x48\xe1\x00\xa8\x3b\xb6\x73\x4f\x9f\x1a\x3a\x35\x87\x54\xcd\xfb\xeb\xfa\xdf\xf1\x19\xff\xca\x1c\xf4\x84\xfe\x81\x91\x97\x1b\x8e\xa4\x54\xf3\x4a\x10\x45\x29\xb2\x32\x07\xa7\xd9\xba\xec\x1a\xb4\x66\x46\x40\x85\xdd\xb5\xa4\x3f\x54\xcb\x4d\x10\xb2\x0e\x08\xf5\x12\xf9\xbb\x83\xdc\x9e\x63\x4e\xc2\xbb\x0f\x1e\x04\x77\x1f\xdc\xaf\x73\x3c\x77\xd1\xdf\xed\x7b\x4c\x9d\x2e\xfc\xf6\x78\x34\xea\xb3\x51\x59\xf2\xdb\xf7\x46\x23\xc6\x1c\xfa\xf8\x56\x2d\x6b\x58\xdb\xf6\xdd\x17\x28\xb5\x2c\xe7\xf1\x78\xa4\xa0\xc3\x09\x56\xcb\x24\x0c\x8a\xd8\x5f\xce\xe7\x1f\x61\xab\x81\x78\xb4\x68\x46\xaa\x89\xaf\x1b\xf1\x7b\x93\x92\x7c\xe8\xc9\xa1\xd5\xbf\x1a\x62\xfc\xd0\xbb\x85\x39\x1d\xd1\xac\xc6\x3e\x57\x98\x0c\x25\xb9\xfd\x90\x78\xd9\x70\x5c\xc3\xf9\xe4\x9e\x15\x70\x7f\x4c\x63\x5a\xb0\xb1\xf7\xf0\x0e\x96\xc3\x31\xf1\xf0\x43\x4f\x0c\x33\x72\xfb\xa1\xa7\xaa\x54\xd9\x2a\x09\xfe\x63\x36\x0a\x71\xce\xf8\x70\x4c\x63\xf6\x77\x9c\x13\xaf\x20\x41\xf1\x44\x8d\x38\xc4\x7b\x2a\xbe\x18\xfe\x1d\x28\x05\x15\xa1\x82\x84\x5e\x2b\x74\x12\xe4\x34\x89\xaf\xde\x9c\xa9\xae\x05\xb1\x73\xaa\xfe\xd9\x12\xc4\xd0\x9c\xfd\xee\xa0\x20\x85\x56\x62\xe6\x48\x81\x00\x53\x19\x40\x98\x0c\xf3\xe1\x98\x6c\x3f\x24\x5e\x75\xdc\xc7\x8f\xc7\x21\x4e\x99\x85\x00\xca\x96\xb1\xf7\x1b\x4e\x01\x16\x09\xe2\x27\xbf\x35\xc1\x87\x38\x63\xf1\xb0\x15\x49\x6b\x08\xde\x98\x04\x0e\x40\x05\x8e\xd0\xeb\x4b\xce\x3f\x07\x19\x85\xae\xa5\x4e\x77\x7e\x6b\xce\x93\x9d\x36\x9a\xaa\x4f\x6f\x0c\x01\x4b\xeb\xab\x81\x1a\x66\x5e\x4a\xb6\x1f\xd6\x00\x38\xff\xb7\x70\x9c\x56\xce\x56\x48\xae\x50\x7f\x96\xea\xcf\xb4\x89\xee\x1e\x36\xb1\xdd\x38\x22\x6a\x24\xb1\x36\xc2\x57\x1b\xd0\xdc\x1e\x14\x07\x69\xa6\x91\x93\xb5\x11\xb5\x09\x0e\xde\xa2\x79\x33\xc9\xc4\xc6\xd6\xa1\x03\x2d\xac\x64\x84\x2e\xf5\x57\x4e\xe8\xb4\x4a\x9d\x56\xa9\x53\x9b\x0a\x2d\x8d\x2b\xa4\x57\x54\x5f\xcb\xea\x6b\xda\x42\x89\xba\x47\x85\x46\x73\x05\x60\xc4\xa5\x0e\x2c\x21\x30\xd5\x81\xa9\x83\x00\x6d\x7b\xbb\x51\xcb\x74\x33\x72\x6a\x8c\x81\x8b\x04\x1b\x10\x5b\x99\x0f\xd2\xec\x47\xb3\xde\x84\xf1\x96\x3f\xd8\xac\x9b\x60\x14\xdf\x87\x71\x90\x66\x37\x41\x88\x6f\xc4\xbb\x92\xb7\xf8\xb7\xf3\x7c\x29\x0a\x4c\x6e\x8f\x77\xca\x72\xbc\xe3\xdc\xfa\x9a\x35\x7d\x04\x18\x6b\x44\x7f\x84\xfd\xb3\x77\x37\xd8\x85\x6c\x4c\xd5\xd3\x6c\x29\x39\x04\x1b\x54\x5e\xd6\xde\x3a\x27\x16\x08\x10\x45\xce\x8d\x30\x77\xcf\x83\xb0\x25\x2e\xa9\x49\xf4\x13\x44\x15\x3b\x1e\xb8\x0e\x5a\xb8\x73\x34\x2c\xe7\x73\xa0\xeb\x6e\x49\x70\xcd\xb1\xf9\xe6\xdf\x1a\xb9\xb5\x8d\xdd\x08\x98\xc4\xb3\x8f\xd2\x3f\x89\x4f\x4f\x45\x6d\x7c\xe7\x6f\xeb\xc1\xd8\x46\x1e\x27\x34\x56\x04\x5d\x6d\x77\x62\x05\x84\x50\xad\x73\x5b\xcc\x5d\x7a\xb3\x66\x6a\xb0\x60\x8a\x35\x0c\x97\xaa\xe9\x41\xa1\x73\x29\xe2\xfc\xa3\x64\x82\x50\x5b\xb9\x73\x53\xcc\x2b\xbd\x1f\x4d\xc7\xb1\x4a\x64\xf5\x5c\x82\xc6\x96\xaf\x0a\x30\x6e\xee\xbe\xa0\x1d\xe4\x12\x23\xdd\xfb\x57\xd0\xf2\x37\x5f\xb8\x10\x69\xc2\x11\x05\xa5\x04\xad\xb5\x60\x48\x40\x9d\x03\xeb\x2e\xbe\x8e\x17\x9c\xf6\xa6\x79\x76\x96\xce\x48\x4f\xe6\xbd\xe9\x79\x9c\xcd\x78\x2f\xce\x7a\xfc\x6b\x5a\xc8\x34\x9b\xf5\x74\x4e\xdf\x42\x71\xeb\xe9\x84\x52\x9c\x83\x7f\x9b\x3c\x9b\x5f\xf5\x4e\x79\x6f\x59\xf0\xa4\x77\x96\x0b\xed\x68\x4a\x01\x8c\x81\x9c\xd7\x45\x7b\x87\x9c\xf7\xce\xa5\xbc\x08\xb6\xb7\x75\x05\x7f\x81\x2e\xcf\xf6\x6c\x99\x26\xbc\xd8\xfe\xff\x6d\x1b\x59\x79\xb1\xad\x2b\x1e\x9a\xb9\x01\x90\x8b\x5c\xf0\x5e\x9a\x9d\xe5\x3e\x82\x3b\x54\x35\x16\xfe\x89\x6e\x48\x45\xab\xdb\x5b\x1b\xed\x30\x46\x37\xdc\xb9\x91\xbd\x25\x27\xcd\xb4\xc8\xd2\xed\xbf\xaf\xa5\x94\x25\x5e\x8f\x04\x43\xea\xf5\x68\x8d\x67\xaf\xb3\x78\xc1\x03\x4e\x75\x9b\x02\xb9\xd2\x77\x96\x5b\xa2\xa3\x5e\xdb\xf2\xc6\x12\x03\xb4\xf0\x06\x7f\xc5\x02\xf8\x83\xdf\xf5\x6a\x87\x9f\x75\xab\x24\x4e\xae\xd5\xfa\x01\x6d\x6f\xb0\xe6\x80\x19\x59\xc1\x22\xe6\x84\xea\x35\x6b\xa0\x1b\x31\x2c\xc4\x41\x9b\x1c\x65\x83\x6a\x9f\x01\xeb\x04\x7a\xe8\x86\xcb\x76\x3e\xf5\xca\x05\xae\xb3\x15\x07\xba\xb4\xa6\x9a\x8f\xb0\x68\xfb\xea\x14\x81\x41\x17\x0c\x76\x71\xa5\x44\xbc\x05\x3c\xeb\xaa\x2d\x4d\x71\x95\xb2\xec\x79\xcb\x46\x8f\x72\xc7\x64\xe3\x5a\x1f\xb5\x38\x65\x0a\xa5\x4c\xf2\x88\x58\x4f\x44\x43\x44\x88\xbd\x55\x12\x0c\x0b\x93\xc1\x1b\x47\x84\x84\xc2\xc9\x05\x02\xea\x47\xf2\xc9\xe8\x91\x5e\x10\xaa\x6d\xf5\x25\x84\xb4\x77\x06\x0a\x5e\x7d\x81\xac\x3a\x51\xbb\xba\x7a\xa2\x18\xda\x53\x9c\x52\xa1\x18\xaa\x27\x4c\x11\x75\xa0\x92\xb7\x25\x87\xc3\x55\xee\x79\x2b\x87\x2b\x5b\x35\xe4\xd1\x73\xee\x08\xa7\xd4\x18\x56\xe6\xa2\x62\x30\x18\xee\x30\x06\xba\x01\xd5\x35\x3e\x08\x85\xc5\xe4\xa9\x8c\x1e\x8f\xca\x12\x3e\x9e\x8c\xc7\xe1\x53\x19\x88\xc9\xa1\x8c\x1e\x8f\x55\xe4\xa1\x8c\x9e\xbc\xc7\x62\xf2\x46\x46\x14\xb2\x90\xf0\x50\x65\x78\x6b\x4b\xbd\x95\xd1\x93\x9d\x7b\x65\xb9\x73\x8f\x31\x06\xc1\xc1\x00\x8f\xfa\xea\xfb\xb3\x8c\xca\x52\x7f\x3e\xab\x3f\xdf\x29\x18\x6f\x15\x8c\xcf\x16\xc6\x67\x19\x3d\xb9\xff\x6b\xf8\x59\x45\x3e\xb3\x91\xcf\x74\xe4\x33\x15\xf9\xce\x46\xbe\x93\xd1\x93\x5f\x7f\xfd\x35\x7c\x27\x83\xe1\x98\x42\x77\x4e\x6c\x7f\x76\x2d\x59\xa9\x3a\xf6\xf8\x8d\x2c\x4b\xf9\xe4\x50\x1a\xd9\xb7\x24\xad\xdc\x1f\x38\xff\x5c\x0c\x06\xc3\x31\x83\x0b\x47\x2c\xd9\x41\x67\x1e\xd0\x5f\x70\x72\xfd\x65\x73\xd9\x4c\x4c\x36\x18\xe7\x29\x6f\x48\x08\x35\x5d\x47\x0b\xb8\x44\xa5\x4b\xf6\x49\xfa\xfc\x2b\x9f\xe2\x82\x94\xe5\x9f\xd5\xb7\xb1\xa9\x55\x0b\x10\x60\xa7\x45\x0e\xf7\xfd\x20\x4d\xe4\xa2\x2d\x4e\x54\x7b\x48\x4c\x64\x34\x19\x47\x1a\xc2\x72\xa2\x96\xe2\x75\xca\x74\xf4\x28\x82\xbb\xa7\x3e\x33\xe1\x9d\xc8\xa8\xae\x56\x48\x2a\x25\x8e\x8e\x15\x76\x54\x18\xfa\x63\xdd\x98\xc9\xdd\xc8\x6e\x08\xd5\x06\xd9\xd5\x06\xd9\x6a\xc3\x5d\xd5\x86\x9c\xe1\xe5\x64\x27\x2a\x4b\xd4\x43\xc4\x93\xa6\x3d\xed\xfa\xf3\x1b\xea\x57\xb9\xfa\x99\xbd\x7c\xbe\x29\xa7\x6e\xe9\xbd\x08\x36\x5b\xff\x37\x69\x1b\x72\x2f\x22\x37\x95\x8a\x19\xfa\x84\x56\xa0\xcf\x90\x7a\x38\x2f\x4b\x84\x88\x87\x63\xf8\xa5\x67\x6a\xfe\xf4\x5d\x61\xa3\x98\xa3\x80\xd3\x3d\xc3\x74\x49\xe7\xec\x1a\xf5\x9e\x1f\x1c\xa1\x00\xf5\xbc\xd1\x68\x34\x42\x14\xf5\xf6\x76\x21\x3c\x1c\xdd\x33\xe1\x43\x13\xbe\xaf\xc3\xcf\x76\x5b\x61\x9b\xfe\x40\x87\x0f\x76\x5b\x61\x9b\xfe\x50\x87\xdf\xee\xb6\xc2\x36\xfd\x97\xd1\x08\x81\x29\xae\x84\xc5\xe7\xc8\x26\xf1\xe4\x1f\xc7\x24\xba\x73\x4c\xca\xc9\x71\x76\x2c\x41\x48\xd8\x73\xa5\x97\xf8\xb8\x38\x2e\x3c\xb2\x16\xff\x8f\xe3\xa2\x3c\x2e\x8c\xb4\x9d\x0a\x96\x09\x3d\xe4\x92\x18\x7c\x27\x26\xe3\x28\x44\x49\x92\x20\x0f\xdf\x07\x84\x30\x8e\xac\x97\x0c\x44\x7b\xaa\x61\x88\x04\x08\xd1\x94\xa1\xdd\xde\xc1\xc1\x41\x0f\x79\x58\x4c\x76\x6c\xa6\x27\xe3\x51\x88\x3e\x7e\xfc\xf8\x51\x65\x55\x7f\x15\xa3\x82\x5e\xbc\x08\x16\x0b\xc8\x78\x2f\x0a\x51\x50\x14\x20\xbc\xa2\x0a\xb8\x9e\x88\x84\x4d\xd0\xe1\x32\x43\x20\x72\x42\x14\x1d\x2d\x15\xa9\xf2\x81\x27\xea\xfb\x7c\x89\x28\xda\x17\x29\xa2\xe8\x30\x96\x28\x9a\x54\x52\x00\x55\x31\x70\xdc\xc0\x6e\x6b\x85\x5b\xd5\x60\x73\x17\x33\xa2\x77\x49\x9f\xb1\xa4\xb2\x60\x56\x5b\xb3\xa5\xa2\xa5\xb6\x69\xd7\x1a\x2e\x2e\x53\xb8\x17\x98\xdc\xb7\x5d\x23\xd7\xd3\xb8\xe0\xbd\x9d\x60\xc4\x18\x5b\x86\x05\xb3\x6b\x24\xc0\x4b\x86\x3e\xfe\xf9\xe1\x8f\xf7\x47\x87\xef\x7e\x7f\xfb\xe6\xf5\xa7\xa7\x7f\x7b\xb6\xbb\xb7\xff\xfc\xc5\xcb\xbf\xbf\x3a\x40\x3e\x78\x87\x7b\x73\x06\xb0\x54\xeb\x64\xfe\xfe\xe2\xc2\xd2\xb7\x64\x38\xde\xa1\x05\xc3\xcb\xc7\xa3\x10\xf5\x86\xb0\xf2\xd4\x6a\x46\xc8\x5b\xba\x13\x37\x0c\xb7\x29\x1a\x21\x62\x6f\x53\x7c\xff\xd6\x36\x99\x8c\x22\x0f\x8d\x46\x88\xe8\xed\xb9\x05\x0d\xbc\x17\x14\x6c\x3e\x51\x95\x99\x5d\xbb\x65\xdc\xe3\x40\xbc\x5e\xdf\xd1\x4a\xa5\xb3\x82\x82\xa6\x90\x3e\x01\xc1\x52\xa5\xba\x14\xa7\x31\x43\xbd\x4f\x9f\x10\x85\x6d\x96\x79\xa9\x97\x7b\xb1\xde\x5c\x1a\x7d\x1a\xad\x37\xd6\x1f\xdd\xb8\xd9\x2e\x78\x4b\xe3\xd8\x6a\x4b\x71\x7b\x19\x1c\xca\xc0\x21\x77\xcf\xb9\xe3\x38\xae\x62\xaa\x35\xc9\xe0\x9f\x24\x1a\xa7\xa5\xac\x7d\xcb\x22\x6a\xd1\x10\xf7\xb3\xfc\x12\x13\xc7\xbc\xe9\x64\x59\xf0\xf7\x47\xcf\xc2\x89\x58\x13\xfc\x50\x1b\x05\xa2\x4e\x27\xac\xc5\xc7\x51\xa0\xcb\xb4\x0b\x34\x72\x9b\xac\x70\x53\x23\xfd\x93\x4b\x8d\xf9\x18\x53\xa4\xbc\x3a\x7f\x1b\xe1\xa7\x2a\xdc\x79\x17\x55\xe3\xa1\xad\x8a\x48\xd5\x5b\xff\x92\xf8\xcf\x9f\x5b\xad\x1e\xe9\x7f\xa8\x3f\xf7\x48\xce\xc6\x34\x66\xf7\xa8\x60\x17\x1c\x4b\xff\xf9\x73\x35\x61\x31\x1c\xf7\x7f\xe2\x19\xc7\x84\x8e\xe9\x3d\x02\xb2\x13\x42\x33\x9d\xe9\x03\x1d\x13\x8a\x71\xaa\x43\x7b\x74\x4c\x88\x22\x16\xd2\x27\x0f\xd5\x61\xbb\x64\xfd\x91\xb1\xcb\xcc\x5d\x42\x4e\x6d\x1c\x3f\xc9\x2f\x69\xdc\x11\x7b\x65\x9c\x10\x98\x3a\x73\x1a\x93\x2d\xd3\xa4\xd9\xac\x6e\xd2\xbc\xd9\x90\x4b\x3a\x87\xfd\x68\xf5\xf6\xa4\x9f\x84\xaa\x5d\xd2\x4f\x88\xa2\x17\xd2\x27\x0f\xaa\x16\xd9\xe5\xe2\xf3\x10\x72\x70\x2f\xa7\x58\xfa\x5c\xe5\x93\x3e\x77\x72\x92\x20\x65\xf9\x2a\x53\x5d\xca\x9e\xfc\x86\x05\xb4\x26\xec\xa0\x1e\x58\x7f\x64\xa0\x2e\x3b\x92\x93\xf8\x4a\x65\xc0\x05\xfb\x84\xab\xe9\x21\x55\x5f\x58\x01\x7d\x01\x01\xbd\x25\x5c\x58\x51\xcb\xc6\x08\xac\x87\x5a\x43\xcc\x21\x6e\x72\xdd\x7b\x33\x26\xa9\xfa\x4b\x54\x5f\xea\x4c\x4f\xfe\x0e\xaa\x69\x5a\xb9\xb1\x8e\x56\x5d\x04\xdd\xc2\x75\x9a\x49\x75\x9c\x66\xec\x16\xce\xe9\x88\x36\xca\x50\xbb\xee\x58\xd6\x5a\xeb\x76\x81\x56\x09\x7a\x25\xdb\xcb\xa0\xbb\x8d\x85\x2b\x22\x50\x6e\x36\xdf\x0c\xfe\xa4\x13\xa1\x05\x5c\x8f\xc4\xe3\x87\x70\x67\xd4\x48\x6e\x94\x0e\x15\xfd\x2a\xc2\x71\x30\x0a\x4c\xcc\x16\x90\x9c\x10\x00\xaa\x73\x64\x43\x9f\x1b\xa1\x67\x8d\xd0\x3b\xa0\x4f\xa5\x7f\x92\xf1\xaf\x0a\xed\x03\x99\x65\x40\xb0\x11\xf4\x29\x61\xb8\xde\xf3\xb7\x82\xf5\x4b\xba\xda\x8d\x42\xe1\xa0\x8d\x46\xea\xcd\x02\xe4\xa2\x89\x13\xc8\x60\x00\xca\x25\xae\xe8\xb8\x58\x91\x86\x6c\xda\x59\x0a\xf2\xdb\x62\x30\x00\x7d\x41\x2d\x71\x3e\x30\x12\x14\xab\x42\xe8\x44\x91\xa1\x55\xaf\xac\x7b\xac\xbb\xaf\x3b\xbc\x73\xcf\x55\xbe\x38\x03\xdc\x09\x22\x81\x93\x33\x70\x2c\xf9\xf2\xf0\xcd\xc9\x2f\x0f\x46\x63\xe2\x46\xbe\xdb\x7f\x76\xa2\x50\x37\xb9\x56\x70\x40\x50\xa9\xd6\x14\xa8\x03\x5b\x03\x44\x97\xf2\x45\xc8\x93\x9a\xf8\xb5\xfa\x60\x74\x6e\x54\xee\x52\xf6\x12\xe0\x3a\xb7\xae\xf5\x85\x7a\x59\x82\xd3\x51\xb5\x94\x52\xf7\x5e\x31\x87\x75\x43\x71\xc6\x70\x61\x72\xbf\xc2\xb9\xe2\x66\xc1\x75\xcf\x64\x04\x2a\x3e\x38\x66\x45\x7d\x90\x17\xd5\x29\x9a\x91\x8a\x97\x7b\x32\x1a\x0c\xb4\xaa\x6d\xad\x17\x6e\x7d\xb9\xd2\x42\x15\x87\x53\xcd\x2d\xeb\x55\xde\x64\xe9\xdc\xab\x5d\xcb\xd2\x5c\x4e\xf2\x28\xc4\x59\xe8\x0e\xc5\x38\x70\xa0\x1b\xe5\x63\x2b\x4a\xfd\x17\xce\x69\xa6\xda\x1c\xc8\x5a\x8f\x59\x51\xbd\x1b\x8b\x6c\x41\x4a\x43\xbd\x99\x2d\x87\x73\x5a\x7c\xb7\x37\x05\xa9\x96\xf8\x63\x36\xde\x19\x0c\xfa\x23\xe0\x05\x25\xb1\x8a\xcf\xb0\x9e\x20\x83\x82\x82\xdd\x24\xe3\xd9\x99\xe8\x49\x6e\xe9\x92\xc3\x9e\xb2\xfc\xad\xc9\x62\xc5\x74\xcc\x11\xd9\xd5\x5b\xac\x6d\x47\xa4\x9d\x6b\x34\xb4\xf9\x45\x28\x03\xab\x02\x67\x01\xa8\x96\x84\xcd\x20\x5c\x59\x56\x19\xd3\xe2\xed\x41\x88\x71\x66\x3e\xb5\xaa\x93\x7c\xac\x7a\x8b\xa5\xc7\xc6\x3b\x84\x66\x65\x39\xde\xe9\x33\x26\xcb\x52\x71\x35\x84\x4a\x12\xc8\x55\xad\x1a\x5c\x35\x92\x3a\x2d\x27\x14\x28\x0a\x3a\x07\xa9\x1d\x50\x2a\x09\xaf\x6e\x6e\xa7\xbc\xe1\x28\x63\xc1\x71\x61\x1d\xa7\x14\x6a\xc9\x5f\xa9\x9f\x33\xc7\x99\x94\xd1\x3b\xae\xbe\xca\x72\xa9\x16\x18\xe8\x4f\x6b\x1f\xb0\x73\xeb\xd9\x95\x31\x76\x35\x18\x20\x70\x86\x13\x5e\xe0\x6b\xc7\x22\x61\xb4\x22\xc1\xfa\x3d\xf3\x7c\x30\x50\xa0\x52\x36\xaf\xe1\xfb\x17\x82\xc3\x9c\xe1\x39\x21\x74\x81\xe7\x04\xdc\xf1\x9d\xe1\x39\xc4\x04\x38\x57\x51\xa0\x54\x3c\x0f\x24\xbe\x22\xe1\x46\xda\x62\xcb\xf8\x53\x56\x04\x9d\x5d\xf7\x2e\x61\xdc\x50\xe9\x77\xc9\xe2\xb6\xbe\xb2\xa3\xcb\xe2\xc0\xd2\x5a\x2d\x4c\x31\xbd\xe7\x5a\x6d\x90\x56\xda\xc7\x1a\x17\x6b\xc4\xa5\xbf\xeb\x58\x58\xdb\x67\xd0\xaa\x49\x1a\x51\xc0\x61\x34\xd1\x0a\x0b\xb9\xc7\xd6\x37\x0d\xcd\x3d\x36\x1e\xdd\x59\xdf\x67\x06\x37\x41\x42\x31\xcd\x05\x67\x39\x35\xec\x6a\x56\x96\xf9\xe3\x4c\xeb\x40\xe4\x8a\x1d\x26\x64\x6b\x89\x39\x15\x65\x29\xc9\x0a\x17\x24\xb8\x0a\xcf\xd4\xe4\xd7\xa7\x45\x61\x1d\xed\xa8\x29\xd9\xca\xf0\xd2\x0c\xf3\x1a\x9d\x19\xe4\xeb\x69\x4b\x6b\x28\xa3\xd2\xd7\x26\x7a\x19\xae\x93\xaf\xc2\x72\x62\xfe\x49\x4a\xb6\x8c\xa4\x57\x80\x5a\x79\x0d\xd6\x03\x8e\x29\xc0\x53\xad\x53\x30\xd6\x87\xa2\x21\xbb\x07\x03\x5c\x39\x6f\xb1\x71\x34\xf9\xe1\x9c\xdc\x78\x5e\xd8\x17\xf9\x02\x96\xe9\xbe\x71\xc7\xab\x98\x43\xa2\x07\x49\xaa\x9e\xaa\x35\x1a\xb3\x18\x2f\x6b\xbc\xd1\xa1\x5d\x03\x8b\xf6\x65\x26\x31\xa7\xe3\x11\x59\xc1\x36\x2c\x08\x09\x84\x02\xd1\x32\xe9\xef\x73\xa0\xec\xb5\x1c\xff\x2d\x70\x62\x64\x8b\xeb\x5a\x26\x52\x93\x59\x52\x5f\xdd\x53\xa9\x28\x2c\x45\xf1\x25\xb1\x04\x0f\x9f\xf9\x12\x12\xe1\xc0\xa4\xd2\x2f\xf8\x34\xcf\x12\x88\x99\xcf\x53\x1d\x8a\xba\x1a\xc8\x07\x83\xae\x36\x72\xb2\x82\xae\xa6\x1d\x93\x4a\x82\xcd\x83\x54\xc0\x08\xd1\x04\x04\x43\x58\x17\x04\x1f\x96\x85\xab\xf9\x03\x86\x51\x2d\x0a\xa4\xb2\x17\xee\x8f\xfa\x8c\xa5\x83\x01\x08\x7e\xd2\xb2\xc4\x39\x4b\x69\x5a\xe1\x6f\xac\xe8\x8a\x0e\xde\x41\xdf\x30\xba\x9e\x18\xfa\xe3\x0a\xe2\x0a\xd4\xbb\x24\x94\xd4\x9b\xdf\xec\x7c\x10\xd3\x5a\xd0\xc5\xba\x81\x49\x5f\x9d\xb9\x76\xb3\x16\xd6\x9a\x23\x56\x91\x73\x96\x42\x09\xc6\xd5\xcf\x19\xcb\xd4\x8f\xb1\x15\xc9\xe9\xba\x0b\x8a\x0a\x61\x2d\x40\xd0\xeb\x32\x66\x2e\x49\x13\x27\x09\x1e\x53\x94\x20\x97\xd8\xa9\x9a\x28\xd5\xf0\x3a\xf6\x07\xfc\x46\xa3\x33\xd7\x50\xe2\x94\x6b\x6d\x27\x73\xbf\xad\xd0\xa0\xda\x0e\xa2\xb2\x23\x92\x58\x18\x9a\x43\x30\xf8\xa2\x7d\xd1\x42\x90\x8a\xa9\x31\x36\x06\x2a\x07\x4d\xd9\xf8\x51\xfa\x58\xd4\x56\x7f\x29\x11\x93\x34\x72\x15\x55\xfb\x2a\x62\xc2\x23\x9c\x69\x0f\xab\x2a\xd8\xa5\xb0\xfb\xc5\xb9\xc3\x7a\xab\x4d\xbf\xf4\x92\x2f\xcb\x11\x78\x67\xff\xd7\x32\x16\x92\x43\x50\xf1\x3d\xb0\x0d\x54\x20\x67\x12\x98\x27\xf5\x1d\x33\xb3\x2f\x46\x54\x9d\xe9\x6a\x53\xa8\xef\x25\xb3\x3b\x43\x85\xe6\xcc\x6e\x0f\x15\x9a\xb2\xc6\x1e\x29\xcb\x91\x75\x91\x65\xb8\xf8\x4e\xd1\xbb\x5e\x66\xe9\x19\x06\x89\x6a\x2c\x2a\xd2\x4a\x91\x7b\x06\xdf\x4f\x14\x89\x6e\x8c\xd0\x26\xb2\x12\xe5\xf5\xc7\x8e\x5b\x88\xfe\x98\x6a\x73\x8d\xd8\x19\xc4\x0c\x04\xa3\x93\x58\x4c\xb2\x48\xcb\x04\x45\x5d\x16\x36\xeb\xfe\x3c\x8f\x65\x9d\x05\x2c\x39\xaa\x10\x4c\x60\x7f\x64\xad\xa5\xd5\xe2\xaf\x8c\x76\x9c\x9e\x16\xcc\x9b\x7a\x63\x7e\xf7\xce\xdc\x7b\xc0\xef\xdd\x59\xc2\x77\x71\xe7\xc1\xe8\xce\x83\x91\x35\xf1\x89\xaf\x0a\xe6\xc5\xde\xc3\x3b\x79\x43\x35\x86\x79\xa9\x77\xf7\x4e\xe6\x8d\x77\xee\x88\x2a\xab\x8c\xd9\xb5\x79\xc3\xc2\x92\x07\x4b\x6e\x6f\x47\x4f\x4e\x97\xa7\xa7\xf3\x86\x22\xda\x09\xdf\xa4\xc8\xff\xc5\x11\x43\x5f\xf2\x96\x61\xce\x70\x7c\x07\xb4\x30\x44\xbe\xcc\x12\x3c\x1c\xdf\xe1\x24\x70\x22\xdc\x7b\x84\xbd\xcd\x37\xbc\x8e\x73\x91\xa5\x9c\x1a\xed\x2f\xb5\xe6\x90\x87\x6a\x9e\x67\x04\xd8\x61\xc8\x55\xfc\x10\x11\x2a\xbc\xbf\xf0\x7f\xff\x37\xe6\xdb\x0f\x46\x84\xee\x10\x4f\x42\x98\xdf\x7e\x30\xa2\x3b\x8d\x4b\xdf\xaf\xee\xad\x27\xc3\x12\x44\xb2\x86\xc6\xd7\xae\xbb\x0c\x95\x24\x88\x43\x32\x6a\x0f\x6d\x0c\x63\x31\x11\x95\x81\x7d\x04\xcc\x80\x57\x97\x2f\x84\xe2\x0f\xd0\x10\xa9\x3e\xa9\x2d\xf8\x60\x74\x27\x9b\x8c\x23\x6f\x86\xb3\xc9\x4e\xbd\xb7\x14\x9a\x4b\xc3\x51\x80\x3c\x30\xa9\x9f\x8c\xa2\x30\x0d\x86\xae\x65\x00\xc7\xae\xc2\x4b\xfd\xba\x81\xd1\xae\xc3\x60\xa2\x3f\xcf\x33\x35\x8b\x29\xc3\x0b\x58\xdc\x39\x28\xab\xd6\xe7\x7a\x30\x53\x47\xab\x73\xce\x0f\xb3\x3a\x40\x33\xc3\xde\x81\x39\x18\x04\xaa\x34\x2f\x5d\x53\xbf\x03\x8c\x45\x33\x0b\x13\x56\x91\xbb\x64\x9e\xba\x8b\x61\x7c\xff\xce\xd0\x9d\x78\xc7\xf0\xec\x5b\x9e\x59\x90\x64\x7b\x7c\xdf\x81\x70\x58\x6b\x07\xf4\xfb\x4d\xbb\x34\x63\x1c\xa1\x3b\x6f\x38\x6d\x88\xd0\x46\x79\x8e\x9d\x02\x6f\xe8\x9d\x82\x68\x8e\xd3\xa5\xbe\x79\xb7\x3e\x94\x54\x4b\xc3\x98\x5d\x2f\x8a\x80\x37\xb7\x1d\x4d\x02\x2d\x2b\x29\xe8\x01\xa4\xc1\x96\x5a\x05\x29\xa8\x2f\xe9\x4d\x14\xc6\x60\xdb\x10\xc4\x7e\x63\xc3\x72\x12\xe0\x25\x5b\x1a\x12\x89\x13\x12\x62\x58\x99\x8c\xb1\xe5\x64\x1c\x85\xc3\x71\x30\xa6\x31\xbb\xbe\x0a\x46\x34\x09\x66\x78\x39\x39\x94\x11\xb9\x23\xe8\x39\x04\xde\xea\xc0\x02\x02\x9f\x75\xa0\x80\xc0\x33\x93\xa2\x42\x97\x1c\x2b\x4c\xb0\x84\x0b\x2e\x72\x47\xac\xa0\xd2\xf9\x0f\x54\xfa\x99\xc3\x95\x09\x15\x84\x1e\xe8\xc0\x5d\x08\x5c\xea\xc0\x3d\x08\x24\x3a\x70\x1f\x02\xe7\x3a\xf0\x00\x02\x0b\x1d\x78\x08\x81\x42\x07\x7e\x51\x81\x95\x66\x8f\x18\x8b\xd5\x88\xae\xd6\x7d\x26\xc4\x83\x01\x46\x67\x22\x5f\xa0\x34\xeb\xc5\x65\x89\x64\x0e\x5f\xda\x9b\x68\xd3\x47\x42\x53\x11\xa1\x31\xfd\x4d\x4d\xfa\x37\xda\x49\x25\x55\x79\xfe\xc6\xcf\x72\xa1\xd6\x64\x28\xd8\x33\x3d\xfd\x01\x86\x4f\xc8\x22\x9a\xd3\x34\x6c\x86\x55\xb2\x46\x9b\x43\xfb\x45\x14\xcb\x77\xed\x66\x0a\x46\x54\x27\x05\xa3\xd5\x0a\xcf\x38\x8e\x7d\xd5\x21\x42\xe1\x53\xe6\x84\x50\x58\x1a\xb1\xbf\x28\x58\xde\x84\x1f\xfb\x07\x2a\xca\x40\xce\x80\xd0\xf8\xc2\x15\xf3\x0f\xcb\x70\x30\x28\x30\xa7\xc8\x20\x65\x30\x65\xcf\x2a\x14\xcd\x6b\xcb\x51\xd7\x7a\xa6\x81\xbf\x2c\x89\x68\x4e\x9d\x5a\x15\x85\x22\x8a\x7c\x54\x51\x32\x58\x1f\x76\x82\x84\xa3\x40\x90\x3b\xae\xd5\x4d\x03\xde\xc6\x8e\xbb\x0f\xac\xc0\x80\x99\x63\x1e\x93\x21\xb7\x5f\xea\xd0\xc1\xd2\x6a\xd5\x59\x6d\x38\x35\x4d\x06\x55\x01\x01\x65\x21\x50\x74\x80\x88\x9f\x16\x4f\xcf\x24\x17\xc0\x4c\x0d\xab\x49\x68\x4f\x9b\x27\x87\xde\x0d\x50\x5c\xab\xcd\x77\x4d\xa5\x9e\x6a\x85\xd5\x16\x2e\x34\x6f\x0a\x03\x14\xeb\x65\xfc\x61\x01\x21\x74\x89\x25\x45\x5a\xb1\x03\x13\x1f\x1e\x33\xc2\x17\x5c\xa4\x79\x42\x7b\xda\x1f\x04\x69\xbe\xf9\xe5\xf7\xde\x9a\x37\xbf\x2a\xc5\x95\xaa\xa0\x2e\x40\x7b\x1a\x00\xf1\x7f\x42\x79\x24\x4e\x92\x61\x9a\x7d\xe1\x42\xf2\x64\x78\x11\x8b\x78\xd1\xa1\x41\x92\x33\x41\x05\xcb\x68\xc6\x72\x38\x23\xdb\x8c\x9c\x08\x3d\x11\x08\x9a\xb2\xb7\x1c\x86\x80\x1e\x70\xad\x39\x9d\xaa\xdd\x01\xce\xdd\x1c\x7b\x26\x8e\x9b\x8a\x9f\x4c\xb4\x10\x64\xcc\x2e\x39\x16\x1a\x47\x12\x5a\x98\x90\x59\xdf\x5b\xd2\xdd\xb3\xc6\x05\x11\xf0\x09\x29\xcd\x6b\x79\x22\x1c\x38\xb2\x79\xe0\xe4\x77\x32\x42\xe3\xc1\xe0\x40\x8d\xbd\x62\x65\x10\x7d\x57\x7d\x12\x2f\x56\xc9\xc5\x60\xf0\x07\x96\x3a\xde\xa8\x7d\x7b\x85\x4a\x48\x07\x83\xb6\xb2\x38\x8d\xcb\xb2\xc1\xd6\xfc\x55\xd3\xb0\x5b\x6b\xbe\x3f\x42\x97\x34\xd2\xfa\x20\x41\x7d\xbd\x01\xaa\x25\xd6\x3f\x5a\x6d\xd7\x6d\x34\xd1\x1d\x4b\xaa\xb6\x7a\x9b\xc9\xea\x18\x1d\x55\x54\xcf\x88\x4e\x38\xb5\x9c\x4e\x44\x47\x0d\xc7\x19\xaf\xf9\x9a\x06\x6e\x73\xc5\xf2\xf0\x4f\x3d\x89\x2a\x03\x6c\xb3\x00\xe7\xec\x37\xa3\x8c\x4b\xe5\x93\x1c\xf4\x08\x72\xd2\x69\xfe\xa1\x67\xd6\xd5\xf2\xa5\x31\xbb\x85\x73\xcd\xc5\x8e\x68\xee\xdc\x10\x34\xdc\xb4\xc1\x7e\x8e\xd7\x35\x93\x69\xad\xb7\x5e\x25\x1b\x01\xbe\x49\x4b\xb4\x2f\xf4\xa6\x08\x1f\x16\x9f\xe3\x98\xae\x6e\x8f\x6b\x27\x64\x86\x4c\xaa\x33\x8f\xcd\xe0\xfc\xc3\x68\xe4\x23\xaf\x61\xaf\xb2\xdf\xa0\x45\x1d\x83\x1c\xde\x36\x6f\x03\xc2\x37\x67\x73\x4c\x7c\x4d\xd7\xc8\xda\x34\x73\x22\x22\x9c\x37\x4c\x3a\xbe\x55\x77\x83\xe9\x19\x4e\x01\x63\x63\xc9\x38\xad\x19\x53\x0e\xde\xb9\x90\x95\x9d\x5b\xa2\xb1\xaa\x18\x2d\xf4\x52\xd5\x14\x64\x6d\x5f\xa0\x79\x8b\xf1\x0e\xd8\x82\xe7\x93\x2c\x62\xaf\x34\xe7\xed\x14\xa9\x4c\xac\x6a\xbb\x1a\xa7\x3f\xe8\x34\xcf\xe7\x3c\x76\xbd\x6f\x86\x38\xb5\xe6\xec\x92\xca\x9a\x33\x65\x9a\xcc\x0d\xa0\xed\x2a\x0d\x7c\x0d\xde\x98\xd7\x78\x0e\x83\xe1\x8a\x19\x0f\xf3\xfa\x7a\x2d\x18\xd5\xd7\x7f\xc2\xe9\xb0\xa4\x58\x78\x31\xb9\xfd\x90\x66\x14\x25\xf1\x95\x01\x52\x80\xaa\x31\x74\xba\x60\xa3\x47\xc5\xe3\x87\x8f\x0a\xcf\x23\xcb\x49\x01\x7d\x96\x14\x17\xad\x52\xd6\x88\xdc\x31\xea\x59\x9b\xc7\xb7\x9a\x44\x76\x5e\x08\x74\x11\x95\xc7\xb2\x3b\x69\x0b\x77\x19\xd2\xce\x24\x01\x95\x57\xd1\x78\x36\xbf\x3e\x53\x78\x17\x53\xf4\xaf\x36\xbb\xd3\xf0\x3b\x10\xb8\x5e\x09\x1c\x93\x20\xb7\xd0\xbd\x5f\x46\xa3\x3b\x7c\x7b\x7c\xef\xc1\xe8\x57\x47\x9d\xfb\x8f\x06\xe9\x0c\x89\x77\xf8\xb6\xca\xec\xd8\xca\xb8\x79\x36\xa8\xc3\xc6\xe0\x6b\xd4\xb1\x84\xf9\x81\x32\x35\x59\x55\xf3\x8a\x13\x1e\x81\x99\xab\x63\x30\xc1\xb5\x15\x7f\x8b\x2c\x27\x1b\x95\x71\x1b\x46\x7f\xda\x5d\xa4\x9a\x3d\xf6\x4a\xe0\x75\x66\x97\x6c\x8f\xf9\x5d\x9a\xd5\x89\xfa\x70\x49\x9d\xdc\xf6\x7c\x61\x57\x18\x73\x76\x85\x85\x62\xf3\x08\xf0\x7a\xe2\x36\x7b\x30\xa2\x5c\xfd\x35\x4b\xf6\x0a\xa7\xdb\xe3\x1d\xb5\x6a\xd3\xdb\x0c\x54\x17\x32\xba\x64\x92\xce\x19\xa7\x53\x26\xa8\x79\x47\x2a\x2e\x0e\x75\xfd\xf5\xeb\x71\x49\x88\x93\xc7\xa3\x10\x0d\x8d\xe5\xd2\x5b\xe4\xe1\x3c\xcc\x3d\xf4\x51\x47\xe0\x38\x8c\x3d\x74\x60\x02\x45\x58\x78\x68\xd7\x04\x96\x65\x39\x2f\xcb\x69\x88\x8e\x6c\x44\xb8\xf4\xd0\x0b\x13\x98\x87\xf3\xba\xdc\x34\x9c\x7a\xe8\x10\x02\x01\x7a\x3b\xda\x45\xa0\xa2\xff\x9c\xd3\x5b\x9c\xad\xb9\x03\xc8\x17\x3c\xec\x8a\xdc\xe0\x0b\x4e\x8b\xc6\x8c\x3f\x0e\x51\x3d\x9c\xf7\xe4\xc9\x93\x91\x91\x66\x08\x40\x38\xd6\x33\xaa\x04\x7f\xbd\xb5\x6f\xd0\x49\x16\xe9\x3b\x23\x2b\xa0\xb0\x62\xba\xf1\x8a\xfe\xae\x48\x52\x4d\xb3\x18\xb7\x4f\xe0\x53\x3b\xd2\x7e\x3f\xe8\x9f\x9c\x5d\xaf\xb6\x6e\x74\x45\xa1\xb2\x75\x79\x17\xa8\x1f\x83\xf8\xad\x72\xb2\xfb\x99\x5f\x15\xa1\xf3\x1d\x74\xdc\x1a\x54\xc6\x0b\xb5\x21\xba\xc2\x68\xc2\xfa\x17\xaf\x88\xd6\x15\xe5\x12\xb8\x37\xf8\x2b\x24\xdb\xc6\xc7\x93\xc9\x3f\x8e\x27\xd1\x9d\xe3\x88\x94\xf8\xf8\x98\x84\x78\xf2\xe2\x3c\x5a\x2c\x70\x51\x90\xb0\x3c\xc8\xcb\x83\x83\x50\xfd\x2f\x77\xf3\x72\x77\x17\xfe\x84\xea\x7f\x99\x24\x49\x98\x84\x65\x92\x87\xe5\xe5\x24\x2f\x2f\xa3\xb0\xfc\x30\xc9\xcb\x0f\x51\x58\xfe\x9e\x87\xe5\x47\xf8\x57\xd6\x7f\xcb\x8f\x1f\xcb\xd9\x0c\xcf\x66\xb3\x90\x84\xe5\xf3\xe7\xf8\xf9\xf3\xe7\xea\x8b\x97\x7b\x65\x5c\x3e\x2d\xcf\xcf\xc3\xf2\xc5\x8b\xb0\xfc\xfc\x39\x2c\x17\x8b\xb0\x2c\x8a\xb0\x3c\xbc\x1e\xd3\x5f\x57\xe5\xd7\xf2\xcf\xf2\xdb\xb7\xb0\xfc\xf4\x29\x2c\xc1\x9a\x33\xeb\x6e\xf9\xab\xa3\xc3\xf2\xd5\x51\xf9\xea\x55\xa8\xfe\x97\xf3\xeb\x31\xbd\xb7\x52\xf9\x53\xe8\x6f\x0e\x7f\x63\xc9\xb6\x8f\x93\x6d\x5a\xc0\xaf\xfa\x5a\xc2\xd7\xf5\xdd\xd5\x36\x9d\xeb\xcf\x7b\xab\x6d\x3a\x95\x6c\x7b\xe2\x0d\xa3\xf0\x38\xb9\x7e\xb0\xda\xa6\x89\xc9\x1f\x6e\xd3\x0b\xf3\x69\x82\xe7\x4e\xd0\x44\x9d\x69\x38\x63\xaa\x80\x2e\x6c\x40\x81\xbd\x72\xc0\x8e\xa9\x02\x3c\x83\x64\x6f\x9b\x9e\xd6\x49\xde\x36\xfd\x22\xd9\xf6\xa7\x52\x85\x15\xcc\x20\x84\xb6\xce\x52\x7a\xd2\x88\xc7\x61\xa0\x93\x48\xa8\x12\x2f\x15\x88\xd1\xf0\xd7\xe8\xce\xe4\xbf\xe2\xe1\xb7\xe3\xe5\x68\xf4\x74\x34\x3c\x5e\x8e\xee\xef\xef\x1f\x2f\x47\x0f\x47\x2a\xb0\xfb\x50\x05\xf6\x7f\x85\xc0\xfe\xee\x33\x15\xd8\xdd\x87\xc0\xfe\xde\x7e\xe4\x95\x93\xe3\xe5\xe8\x01\xa4\x8e\x1e\xec\xef\x1f\x6f\x47\x1e\x3e\x2e\xee\x84\xcd\xe8\xc8\x23\xd7\x63\xba\xb3\xda\x4e\xe9\x1e\x0c\xec\x57\xf8\xfb\x46\xb2\x11\x7d\x2a\xd9\x98\x1e\x4a\xb6\x43\xdf\x4a\x76\x97\x7e\x96\xec\x1e\x7d\x26\xd9\x7d\xfa\x4e\xb2\x07\xf4\x40\xb2\x87\xf4\x2f\xc9\x7e\xa1\x47\x72\x6d\xa7\x1b\x29\xe5\xda\x66\x37\xf1\xeb\xcb\xdf\x31\xdb\xd1\x08\xd8\xca\x28\xc1\x18\xd4\xfa\xf2\x75\x7d\x4e\x5a\x63\xb0\xf1\x6a\xeb\x08\xa3\x03\x44\x27\xe8\xe0\x00\xd1\x9d\x48\xd1\xd3\x68\x93\x95\x45\xc5\xdc\xad\x08\x55\xc5\x54\x91\x86\xc8\x8e\xdf\x64\x95\xe1\x18\x33\x6a\x22\x8f\x54\x60\x7e\x1e\x8e\x03\xe2\x29\x36\x54\x92\x66\x00\x3f\x57\xc1\x5f\x08\xdd\x87\xce\x25\x52\x7f\xc1\x27\x2d\x6c\xe8\x00\xd1\xa6\xd4\xa1\x12\xf5\xb7\x2d\x18\xb5\xd5\xf1\xbe\x6d\xeb\x8d\xa5\x9c\x02\x2f\xf0\x44\x55\xaf\x2a\x8e\x5a\x85\x24\xe8\xb8\xcc\x30\x27\xc3\xb1\xcd\x79\xa0\xf3\xae\xe5\x76\x69\x1d\x51\xf1\x26\xae\xcd\x2e\x10\x8b\x95\xe3\x2b\x73\x21\x97\x86\xba\x92\x34\x98\x62\x41\x1a\x6e\xd3\x18\x5f\xe9\xb3\x78\x57\xb2\xed\xdd\x49\xbe\x1b\x85\x06\x97\x1c\x47\x0a\x9b\x94\xc7\x05\xf1\x54\x4b\xc2\x6d\xfa\x5a\x32\xf4\x5b\x9c\x2d\x63\x71\x75\xb2\xcf\x4f\x05\x7c\x1c\xc4\x62\x7a\x7e\xf2\xf4\x42\xa4\xf3\x93\x83\xf8\xea\xe4\xb7\x65\xc6\x4f\x7e\x5b\xce\xaf\x4e\x9e\x2e\x67\xcb\x42\x9e\x1c\xf2\x0b\x09\x6f\x4e\x9f\xbc\x99\xca\x5c\xfd\xbe\xce\xbf\xe8\x88\x5d\x3e\xd5\x8f\x6d\x5b\x55\xf6\x13\x44\xe8\x4b\x5d\x8b\xaa\x41\x01\x57\xa0\x2d\x60\x05\x57\x81\x55\x30\x15\x34\x05\x49\x01\x69\x94\xdf\x97\xec\x52\xd2\x57\xea\xaf\x5a\xd1\x1f\xd1\x0d\xb2\x64\x2d\x8c\xa8\x05\xc8\xec\xd7\x5f\x7f\xfd\x35\x44\xc8\xe3\x01\xf2\x90\xc7\x61\x59\x8e\xe8\x04\x7d\xfc\x08\x5b\x62\xa3\xd5\x91\x06\x74\x7b\x3c\x1a\x39\x45\x54\xa1\x7b\xaa\x10\x52\xc9\xc8\x4d\xf8\x88\xe8\xfd\x0d\x29\x1f\x11\x7d\x40\xfb\x23\x37\xf5\x29\xd6\x5f\x14\x5d\xe9\x65\xad\x43\x63\x58\x88\x1f\x11\x3d\xd5\xeb\x58\x15\xad\x57\xb5\x06\xb5\x90\x74\x5e\x87\x3f\x22\x7a\x25\xe9\xd4\x89\xa8\x63\xd4\xc2\x33\x31\x36\x29\xa2\x6f\x20\xc1\xc0\xaa\x6f\x7f\xb5\x15\xfe\x1b\x19\xb1\x1d\xb8\xa1\x35\x9a\xb6\x5c\xeb\x69\x1c\x5d\xe6\xbb\xe9\x2c\x95\xc0\x09\x4a\x12\xcc\xb0\xd4\x7b\x00\x6d\x82\xd2\x5d\xd0\x94\x69\xef\x32\x09\x45\xd6\x2e\x41\x3b\x60\x74\xf9\xdf\x57\x1b\xcd\xc3\xea\xef\x93\x07\xbf\x84\xe3\x5f\x47\xa3\x60\x87\xdf\x25\xfa\x0d\xde\x6f\x92\x3d\xc3\xc8\x72\xb1\x08\xbc\x61\x1f\x61\x74\xa9\xb0\xe2\xe5\xa5\xc6\x8a\x97\x39\xa2\x48\x71\x3d\x30\x6d\xe8\x83\x4a\xfb\xf0\x41\xa7\x7d\x50\x69\x69\x91\x7f\xd0\xc9\x4f\xb1\xce\x48\xd1\xa5\x0e\xd9\x24\x8a\x3e\xe8\x89\xd4\xc9\xf7\xe1\xbb\x4a\xbc\x0f\xd3\x73\x59\x61\xab\xcb\x4b\x77\x5e\x3f\x54\xf1\x1f\x3e\x54\xf1\x7f\xc3\x13\x55\x00\xb2\xaa\x1c\x2a\xad\x0b\x75\xc8\x49\x56\x2b\x27\x8d\x89\x75\xa3\xa0\x3a\x99\xa8\x8d\x82\x12\xd5\x03\x60\xb8\x54\xe7\x92\xe4\x27\xd0\xb1\x6b\x06\xda\x40\xeb\xc9\xbf\x05\xa6\xe3\x7c\x48\xfe\x3d\x48\x4d\x20\x5c\x43\x40\x26\x55\x77\x74\xcf\x44\x9a\x39\xd0\xf1\x4f\x31\x8c\x84\xbe\xdb\x35\x73\xa9\x23\x78\x63\x3a\x75\xdc\x9e\x9e\x51\x08\x8c\xc7\xd5\xec\xba\x61\x37\xff\x58\xef\xde\xa4\x9a\x4d\x5e\x7d\xed\x55\x5f\xaa\xbb\x1b\x8e\x98\xb6\xa9\x68\x75\x30\x25\x3f\x50\xa8\xe3\x3c\x4b\x7e\xa4\x9c\x53\x44\xad\x38\x55\x42\xd7\xa7\x8b\xff\xc8\x61\x65\x41\xdd\x7c\x5c\xf9\x49\xeb\xb0\xb2\x9a\xad\xdc\x56\x0d\xb3\xa0\x46\x7d\xc3\x32\xaf\x96\xb6\x6a\xc0\x0b\xc9\xd0\xe1\x32\x4b\xe2\xab\x93\x83\x1c\x7e\x8e\x96\xbc\x50\xbf\x1f\x78\x92\xe9\xaf\xa3\xf3\xa5\x80\x8f\x7d\x91\xaa\x9f\xc3\x58\x2e\x85\x9a\x2a\xf7\x70\xf9\x9b\x06\xa4\xa0\x28\x10\xaa\xb8\x2a\xa8\xca\xa8\x02\x8d\xbc\xff\x82\xbc\x27\x07\xf9\xc9\xd1\xf2\xe4\x03\x3f\x39\x3a\x3f\xd9\x17\x27\x87\x71\x23\xd3\x7b\x38\xad\xfe\x80\xbf\x1f\xec\x99\xf5\x42\xe1\x94\x17\x2f\xcc\x91\x83\xce\xf3\xa5\x3e\x23\xd0\xb9\x4a\x38\x3f\x37\x09\x92\x43\xe4\x67\x15\xf9\xf9\xf3\xcd\x07\x94\xb1\x7d\x2d\xcb\x9d\x7b\x7a\x1b\x9c\x2f\x16\x6b\x27\xa3\xf1\x0a\x86\x3c\xc9\x1d\x7f\x49\xc4\xfb\x0b\xb7\x4c\x66\x77\x48\x05\xa4\x28\xfe\x13\x30\x36\xae\xb0\x5c\x77\x05\xfa\xc5\x8d\xed\x73\xba\xb4\xb9\x75\x2f\xbe\xd3\xba\xef\x00\xd9\xd0\x36\xc1\x31\x8a\xe1\x68\x80\xcf\xa7\xf0\x0e\xaa\xc2\x06\x30\x4d\x14\x9d\x6b\x3c\xa0\x43\xe3\xbb\xb0\xb9\x62\x44\x33\x0e\x5f\x4f\xab\xaf\x17\xd5\x2e\x3f\xaf\xbe\x3e\x57\x5f\x2f\x5e\xb8\x38\xff\xfc\xdc\x0d\x7d\xfe\xdc\x48\x53\x03\x75\x51\x7d\xab\x1e\x9f\x1b\x18\x4e\xca\x8b\x3a\x45\x1d\xf4\x2f\x10\x55\x55\x44\xf4\xad\x89\x50\x67\xd2\xe7\xcf\x1d\xaf\xa1\xea\x3b\x6e\xb5\x97\xb6\xa4\xd1\xdd\x85\x77\x95\x47\x41\x66\xa8\xd5\x18\x51\xf4\xb4\xf3\x1d\xd5\x93\xb4\x78\xbb\x70\xf6\x3e\x68\x48\xc2\xfd\x5b\xa5\xe7\x08\x1b\x5a\x41\x51\x44\xfb\xf9\x79\x07\x18\x5d\xeb\x4c\x1b\x70\x88\x5a\x3f\xb4\x3f\xd2\xf4\x01\xf4\xbf\xbb\xd5\x95\xd3\xcd\x9d\xad\x0a\x4a\x7d\xfc\x65\x84\x50\x39\xf9\xdc\x8c\x56\x91\x9b\xaa\x51\x03\xf8\x9d\x8a\xee\x81\x03\x88\x9f\xaf\x95\xee\x40\xf4\xb3\x66\x74\xba\xa9\x31\x2f\xfe\xa7\xfb\x5c\x81\xfd\xff\xa2\x8f\x06\x49\x7f\x94\xf4\xef\x40\x7f\xa9\xae\x16\x7a\x87\x3d\x97\xec\x5a\x2d\x9d\x2c\x89\x45\x70\x5d\xc4\x0b\xbe\x1b\x5f\x05\x68\x72\x94\x27\xf1\x55\x2f\x96\x51\xef\xd5\x11\xa2\x46\xe9\x0a\xe2\x17\xb9\x80\x17\x4b\x9d\x24\x75\x76\x04\x70\x42\xf5\x26\x36\x7e\x1e\x17\xa6\xc8\x47\x5e\x48\x2e\x5c\x70\x2a\x4d\x97\x99\xbc\x8a\x0b\x19\xf5\x9a\x45\x55\x2b\xf6\xe6\x05\x0f\xd0\x2b\xb4\xa2\x4d\xaf\x64\xc1\xf5\xab\xa3\xc3\x00\x9d\x07\x8b\x45\x50\x14\xbd\xa7\x88\xbe\x3a\xd2\x41\xf8\x0e\xd0\xc1\xc1\xf6\xee\xee\xb6\xa6\xa7\x5f\x41\xf8\xe0\xa0\xb7\x4b\x7b\x36\xa6\x15\xd5\xab\x8a\x42\x92\x6a\x08\xed\x75\x65\x58\x51\x47\xbc\x1a\x20\xe3\xc0\xb9\x97\xc0\xad\x99\xf1\x82\x17\xa0\xdb\x8a\xdc\x88\xaf\xde\x9c\x01\xef\xf7\x46\x47\xc3\x49\x1c\x68\xa1\xcc\xce\x6a\x9b\x0a\x3e\x8f\x65\xfa\x85\x1f\xa5\x0b\x1e\x5c\x9f\x2d\xe5\x52\xf0\x00\xa5\x59\xef\x76\x81\xe8\x45\x5c\xc8\x00\xdd\x2e\x7a\xf1\x2c\x47\xb4\x08\x50\xdc\x3b\xe3\x97\x3d\x83\x23\x11\x2d\x0a\x55\x4b\x1d\x5e\xa8\x1c\x1a\xab\x22\xba\x58\x40\xa2\x41\xb2\x88\x9e\x07\x28\xce\x7a\x1a\x53\x9e\x9f\x43\xda\xb9\x9e\xfb\x44\x15\x03\x3a\x29\x49\x20\x5e\x91\x0c\x88\x1e\x00\x34\xcd\xd3\x1f\x1c\x68\x60\xc0\xfc\x22\x7a\xa5\x92\x34\x5f\x74\x75\x05\x29\x2a\x50\xa0\x95\xbd\xae\x7e\x2d\xa9\xc3\xcc\x07\x2f\x25\x78\x3d\x0f\xae\xe1\xee\x82\x26\xf9\x55\xf0\x60\x65\x1d\xa1\x17\xc1\x0b\x49\x1d\x0a\x2b\xf8\x57\x1d\xd4\xc5\xff\x26\x69\xc3\x2f\x44\xb0\x3d\x89\x2f\xa2\x63\x3f\x5c\x84\xc7\x7e\xb8\x9d\xae\xe8\x2d\x90\x00\xfd\x0e\x7f\x3f\x49\xb6\xfd\x8f\xe3\xe2\x0e\xc6\x61\xa0\x85\x55\xd7\x0f\x56\x25\xc8\xd6\xc8\x10\x87\xc1\x71\x72\x9c\x0c\xd5\x9f\xf2\x83\xf9\xd4\x1f\xa5\x96\xa1\xc1\x0f\x21\x38\x0c\xf0\x51\xd9\x23\xd8\xca\xba\x5a\xbf\x13\x9f\x46\xc7\x89\x47\x42\xf8\x8f\x27\xc7\xde\xf1\x9a\x5c\xac\x3c\x2e\xee\x7c\x52\xe9\xb7\xb6\xe9\x9f\x37\xb4\xca\x34\xaa\x6e\xd3\x8f\x35\xa9\xf9\xf3\xb3\x0d\xfa\x6d\xa3\x34\x8f\x72\xc1\x26\x96\x41\x1e\x1e\x1c\x0c\x77\x77\x11\xdd\xae\x1a\x3d\xac\x06\x70\x3b\x32\x7c\x74\x95\x09\xfa\xd3\xca\xf0\xfc\xf9\xf3\xe7\xc3\xc9\x87\xe8\xc3\x87\xe1\x5e\x95\xc5\x0e\x7d\x2b\x47\x33\x7d\x9b\xf6\xc7\x55\x15\xbb\x8d\x0a\xae\xef\xae\xdc\xda\x1b\x55\xbb\xc5\x3e\x7e\x3c\x38\x70\x9b\x3f\x1e\xd5\xe5\x4c\xca\x71\x72\xfd\xcb\xaa\x6a\x07\x34\xa3\x6a\xe7\x87\xba\xa6\x2a\xd1\x4d\x53\x5b\xb8\xae\xac\x6a\xe2\xc3\xd5\x76\x14\x51\x09\xc3\x08\x76\xad\x41\x51\xf8\x87\x87\x87\x87\x90\x7c\x9c\x04\xd5\x9f\x63\xff\x38\xf1\x00\xbe\xcd\x47\x3b\xf3\xd1\x76\xb6\xb5\x1c\x75\xaa\x9b\x64\x62\xd5\x59\xe3\x36\xa0\xfa\xef\x54\xaf\xf2\xd0\x8e\x3c\xb4\x99\xa5\x95\x5a\xa5\x38\xf1\x26\xce\xc4\xa8\xa1\x10\x42\xad\xfe\xed\x50\x21\xcc\x63\x8c\x8f\x87\xa1\x5a\xaa\xdb\x29\xcd\x54\x82\xda\x13\x07\x79\x56\x1e\x2d\x79\xf9\x81\x27\xe5\xd1\xf9\xb2\xdc\x17\x69\x79\x18\xcb\xf2\x70\x99\x11\x1a\x1e\x17\x24\xc4\xc7\x89\x5a\xa1\x05\x0e\x83\xdf\xe2\xac\xdc\xe7\xa7\xe5\x41\x2c\xca\xa7\x17\xa2\x3c\x88\xaf\xca\xdf\x96\x59\xf9\xdb\x72\x5e\x3e\x5d\xce\xca\x43\x7e\x51\xbe\x99\xca\xf2\x75\xfe\xa5\xdc\xe5\x53\x02\x85\xf4\xea\x86\x16\x16\x7a\x0f\xe9\x28\x7c\x6c\x92\x30\x64\x7b\x7f\x54\x3e\x3f\x38\x2a\x27\x7b\xcf\x0e\xde\x46\x93\xc3\xdd\xe8\xa8\x9c\x3c\x1d\xbe\xfc\xfb\xf0\x53\x3c\x4c\x3f\x0f\xbf\x45\x66\xcf\xa8\x8d\x4b\x6e\x6d\x6f\x6d\x54\xf7\x66\x27\x58\x3f\x91\xd1\xbb\x10\xf9\x97\x34\xe1\x49\x2f\x2d\x7a\x59\x0e\x77\x25\x71\x4f\xf0\x69\x3e\xcb\xd2\x6f\x3c\xe9\xbd\xdb\x7f\xb6\xf3\xcb\xce\x4e\x2f\x17\xbd\x97\x87\x6f\x7a\x67\x70\xba\x59\xdf\x29\xbd\xea\xbd\x3b\x30\xdf\x8a\xe7\xf3\xa2\xa7\xc0\xf7\x64\xde\xfb\xab\xd0\x5a\xe7\x84\xf6\x2e\xcf\xd3\xe9\xb9\xad\x40\xf0\x79\x1a\x9f\xce\x79\x2f\x9e\x8a\xbc\x28\x7a\xf1\x7c\xde\x3b\x15\xf9\x65\xc1\x45\xd1\x8b\xb3\xa4\xf7\x85\x8b\x22\xcd\xb3\xc2\xef\xbd\xce\x33\x5b\xff\xb6\xaa\x5c\x1d\x62\xa6\x05\x45\x2f\x16\xbc\x97\xa4\xc5\x34\x5f\x8a\x78\xc6\x13\x28\x7a\x99\x2a\x60\xbc\x27\xf8\x22\xff\xa2\xfa\x94\xf5\xe2\xac\xb7\xbc\x98\xe6\x8b\x34\x9b\xf5\x16\xf1\x5f\xb9\x50\x0d\xe0\x71\xc1\x2b\xbd\x1c\xc1\xcf\xb8\x50\x2d\xfe\x31\xc5\x9b\xbf\x8a\xa1\x6a\xc7\x9a\xb6\x4d\x43\x14\xc1\x5b\x96\x16\x27\x29\x78\x3f\x34\x36\x7d\xa8\x67\xfd\x1f\x6a\x79\x95\xb5\x72\x73\x3d\xd9\xae\x68\x6d\xe8\xd6\x88\x07\x12\x29\x15\x6a\x06\x2b\x6d\xa2\x45\x9a\x35\x95\x8e\xa8\xa3\x6d\xe4\x2f\xe2\xaf\xa0\xa5\xcb\xe3\xc4\xff\xc1\x4e\x2e\xd2\x6c\xb8\x88\xbf\x6e\xa3\x75\x79\xe9\x6c\xc3\xa3\x3f\x5b\x9d\x37\xc7\x83\x41\xc3\x87\x32\x5c\x46\xc0\x6d\x72\xc0\x83\x0b\x70\x0d\x9c\xb7\xba\xa2\x1a\xbb\xb9\x2b\xaa\xa3\xff\x6f\x74\xe5\xc9\x7a\x57\x62\xc1\x26\x56\x40\x6b\xb4\xde\x11\xad\x6e\x22\x8c\x04\x50\x0b\x89\x0c\x8f\x68\x09\x22\xa4\xe9\x24\x88\xa9\xee\xbe\x51\xb4\xb5\xc7\x31\xfa\x84\x28\x0a\x10\xa1\xf0\xfd\x09\xdc\xbc\x2a\x46\xee\x13\xa2\x27\x9a\xa5\xfb\x64\x3e\x15\xf7\xa4\xd2\x3f\x7d\xea\x66\xc2\x8c\x31\x44\x7f\xa4\xf8\x2e\xf9\x6d\xc1\xbe\x72\x7c\x02\xef\x79\x1b\x55\x0c\xc1\xb6\xcd\xd9\xac\x4f\xf5\xed\x59\xba\xd5\xd4\x9d\x5a\x5f\x89\x4b\x40\x92\xc7\x43\x12\x2a\x12\xe0\x38\xb9\x43\x26\x7e\x2f\x02\x8c\xe8\x91\xe3\x00\x7e\x14\x82\x33\x5f\x0a\xa9\xdf\x31\xa7\xfc\x1c\x8a\x0e\x49\xf8\x56\x15\x1d\x86\x93\xd1\xf0\x57\xea\x47\x77\xc8\x47\x0d\xcc\x89\x39\x58\x8b\xf9\xb0\x16\xb3\x0b\x31\x47\xad\xd8\x17\x3f\x00\xeb\x50\x37\x68\xeb\x2d\xf7\xcf\x32\xf6\xc5\x79\xd4\x95\xbe\xe5\x56\xf0\xd4\xe1\x66\xfa\xad\x36\x28\xd3\x03\x31\x15\xec\x1d\xc7\x63\x8a\xe2\x24\x41\x84\x26\x10\x1c\x8e\x29\x2a\x96\xa7\x52\xc4\x53\x89\xc8\x16\xf7\x8d\x2b\x03\x63\xa4\xe6\x10\x28\x47\xf6\xf0\x04\x97\x05\x8d\x6c\xef\xe5\xb4\x33\xe7\xe4\x53\x84\xa0\xea\x8b\xe6\x16\x9a\xc7\xd9\x0c\xaf\x69\x21\xbe\xd4\xdb\x86\x36\xf5\x10\x5d\x39\xa9\xc2\x81\x33\x2e\x7b\xf2\x9c\xf7\x14\x8c\x65\x3c\xe3\xc6\x09\xd6\x52\xc0\x8d\xbc\xdf\x7b\xbf\x5e\x18\xbb\x7e\xb6\x6c\xb9\xa2\x85\x10\x37\x68\xd5\xb9\xd5\x07\x4e\x8c\x15\x46\x8f\xe8\x04\xcd\x66\x37\x4b\xb4\xd4\xbe\xfa\xb8\x7e\xed\xf2\xfc\xf9\xcd\xc5\x8c\x0c\xb6\x51\x72\x97\x63\x34\x9b\xa9\x0a\x91\x85\x8a\xea\xd8\x8e\x68\x45\x78\xd5\x92\xfe\x56\xc2\x7a\x8a\x91\x1d\xeb\x3b\x05\xd5\x31\x57\x7a\x6c\x62\x9f\x3f\xaf\x6f\x04\x3e\xda\xeb\x9d\xcf\xad\x5c\x5a\x66\xfc\xbc\xba\xf1\x99\x55\x5f\xaa\xd6\x5a\x26\xa4\xda\x5c\x87\x74\x9b\xea\x9b\x20\xdd\xa7\x3a\x6c\x1a\x5d\xdf\x0c\x99\x5e\x9b\x88\xbf\xe1\x89\x1d\x1d\x3b\x1c\xa6\x97\xba\xe0\x77\xef\x19\x76\xaa\x7b\x06\x03\x4b\x77\x37\x6a\x5c\x05\x19\x2f\xd4\x93\xf4\x86\xdb\xa0\x23\x8c\x7e\x87\x5b\x8a\xdf\x73\x07\xd5\xc2\x60\xd6\x78\xf7\x77\x3d\x8e\x55\xc4\x43\xe8\xd2\xef\x88\xc6\xfa\x2e\xeb\xf7\xf5\xfb\xa4\xa7\x32\x62\x77\xef\x60\x7d\x07\x6b\x2a\xda\x45\x74\x82\x14\xf1\xbc\x13\x51\xb4\xab\x6f\x45\x24\xb7\xb7\x02\x80\xbc\x77\xad\xc4\x5f\x85\x7e\x85\x6a\x76\x2b\x01\xde\xee\xae\x3b\x05\xbb\xf9\x06\xd9\x3a\x0f\xad\xd3\x83\x35\x96\xbc\x2c\xa5\x7f\x92\xbb\x3c\xfa\xc6\xac\xaf\x78\x96\xf2\x4c\x1a\x51\xda\xae\x6a\xdb\x2e\x8a\xe8\xa1\xee\xf1\x7a\xe5\x12\xdc\x27\xcc\xb0\x75\x23\x9f\x48\x30\x5f\x37\x07\xc2\xb9\x60\xcf\xb0\x51\xb8\x35\x37\x60\xc0\x46\xa8\xf1\x50\xbf\x77\xd5\x88\xec\x9a\x31\x31\x4a\xa1\xd5\x75\x89\x09\x42\x8e\xea\x46\xc4\x46\xde\x33\x43\xb3\x8b\xe8\x99\x1d\x26\x15\x58\x9a\x63\x0c\x02\x3a\xae\xf3\x28\xab\x3d\x56\x98\xf5\x74\x84\xd1\x42\x35\x4c\xd1\xfa\x5a\x58\x6e\x8e\x56\xad\x0c\x60\x8f\xd9\x85\xd1\x06\x30\xe1\xb1\x6e\xc7\xa2\x9a\xac\xc5\xa2\x9a\x2c\xd5\x8c\x85\x2a\xb2\x40\x11\xfd\x2c\xf5\x88\x9c\xc1\x88\x1c\x58\xb9\x45\x7f\x0c\x83\x52\xa8\x9a\x15\xf7\xa1\x6b\x36\xa7\x37\xd4\x5c\x9d\xeb\x85\xae\xd9\x86\xc7\xfa\x6e\xaf\xa8\x6a\x2e\x8a\x46\xcd\x85\x2a\x52\xa0\x88\x3e\x33\x35\x2f\xa0\xe6\x43\x2b\x4e\x31\x35\x1f\x6e\x90\x6a\xff\xf7\x7f\x5b\x31\x76\x45\x4d\x60\xb2\x3d\x1e\x8d\x48\x85\x1f\x15\x2f\xd5\x8d\x1f\x37\x15\x76\xcb\x1e\xc2\xec\x8f\x9a\xf4\x8a\x93\x7c\x68\x6e\xbc\xd7\x91\xef\x78\x74\x67\x1d\xba\x0b\x59\x95\xbd\xbf\xa9\xec\xf7\x0b\x1f\x22\xfa\x60\x43\x69\x7e\xf7\xfb\xa5\x0f\x11\x7d\xb8\xa9\xf8\xbd\x1f\x28\x7e\x88\xe8\x2f\x9b\xca\xdf\xff\x91\xf2\x87\x88\xfe\xba\x09\xc0\x83\x6e\x00\xb0\xc2\xeb\x69\xa0\x68\x51\xd8\x75\xee\xc4\x8e\x1f\xc0\x42\x3b\x54\x5b\x0e\x70\xa0\x0a\xe8\x50\x61\x43\x3a\xb8\x34\x6b\xee\x4a\x80\x1a\xd1\x95\x60\x7a\x4a\x1f\x5d\x59\xf3\xb6\xc7\xec\xd7\x47\x57\xc2\x63\xe8\x10\x91\x7d\x7c\x25\xe8\xcc\xbc\x3f\x01\x79\x37\x64\x7c\xa1\x32\xbe\xe4\x1a\xf6\xcc\xec\xa4\x5a\xd3\xb3\x5a\xd4\xdf\xcc\x1d\xec\xb7\x3c\xe3\x4f\x4f\x4f\xcd\x95\xd7\x37\x37\xfa\x75\xbc\xe0\x46\x81\xf8\x54\xb0\xb3\x9a\x60\xdb\x3a\x15\x7e\x9c\x24\x6c\x2a\xe8\xa9\xf0\xad\xc4\x98\x35\x75\x0d\xcc\x7b\xcd\x65\x39\xd3\x16\x72\x6f\x38\xce\xb4\xbe\xbe\x5f\xc8\x58\xc8\x37\x67\xd8\x5c\x7d\xe7\x8c\x57\x40\xcc\x73\x13\xda\x3e\x82\x94\x25\xb2\xf2\x5f\x44\x63\x26\x06\x03\xbc\x87\xc5\x24\x8f\x48\xa8\xfe\x3a\x6a\x93\x19\x09\x20\xbe\xc1\x55\x68\x2e\x16\xc7\x65\xb9\x7e\x5d\x6d\x2b\xc4\xda\x78\x93\xce\x38\x38\x0d\x59\x41\x8f\xe6\x79\xc6\x3b\x48\x51\x6d\xa3\xac\x6d\x0e\x54\xbe\x24\x3d\x3b\xeb\xf6\x75\xa1\x8d\xb7\x37\xb1\x38\x38\x53\xa3\xc1\xf5\x68\x10\xd7\xb0\x2a\x65\x0f\xf8\xbd\x3b\x38\x73\xed\x2e\x87\x6d\x43\x4c\x62\x54\x55\x18\x63\xf0\xe0\x0f\xf8\x44\x31\x1c\x10\x03\xcf\x17\xd5\x79\xac\x82\x21\x8e\xbb\xac\xbc\x14\x09\xc0\xba\xcd\x85\x3c\xdc\x61\x5a\x64\xe6\xc9\x31\x00\x4a\x0d\xdb\x55\xd4\xfa\xe2\x72\x98\x3f\x1e\x85\x58\xb4\x73\x2a\x12\xdd\xe6\xa5\x19\xc3\x72\x98\x93\x6d\x9c\x0f\x05\x01\x53\xb1\x56\x6e\xaf\x33\xb7\x18\xe6\x84\xd0\x21\x4e\xc1\x46\x68\xb4\xb2\x13\x4f\x9b\xbd\x8d\xb7\xd9\xdd\xa0\x1a\x20\x39\x18\xe0\x78\x9b\x8d\x77\xb4\xb3\x73\x55\x64\x98\xd1\x98\xd9\x33\x02\x8a\xe4\xdb\x63\x7e\x37\xb0\x07\x96\x89\x7a\xc0\xef\x05\x9a\x83\x34\x11\x77\x1f\xf0\xfb\x01\x2c\x59\x3d\xaa\xf9\x30\x25\xdb\xbf\x3c\xb8\xa7\x62\x81\xed\x74\xa2\x1f\x8c\xee\xfd\xc2\xef\x07\x39\xa1\x22\x8c\x83\x2b\x1c\x13\xfd\x6e\x91\x5a\x35\x3c\x4b\xde\x9c\x75\x29\xcb\x54\x74\x3b\xe6\xec\x10\x73\x3d\xab\x0e\x72\xa9\x28\xfa\xc0\x90\x41\x2a\x02\x8c\x70\xcd\x46\xd2\x17\xa8\x66\x73\x71\x62\x8d\xe5\xad\xaa\x0b\x94\xd7\x4d\x0d\x38\xbc\x45\x04\x2c\x93\xca\xa2\x70\x99\x5e\xd3\x7a\xcf\x34\x5c\xa7\x69\x57\x2a\x66\x11\xbf\x97\x53\x78\xa7\xa9\xcd\x3c\x05\xad\x28\x8d\x37\x04\x7b\x6d\x5f\x93\xd8\xda\xa8\x39\x72\x91\x17\xd2\x6c\x55\x61\x1a\x21\xf2\x05\xeb\xd6\x8e\x68\x6f\xa5\x05\x58\x84\x70\xf7\x05\xc5\x19\xd7\xde\x35\xad\x8e\x7c\xf8\x96\xe3\x6b\x99\x03\xeb\x43\x15\xe8\x80\xaf\x2a\xbe\xca\xe5\x87\x08\xf1\xcf\x97\x8b\x38\x4b\xbf\x71\xdc\x97\x0d\x5e\xa9\xf3\x29\x1d\xdb\xd4\xd7\xf9\x65\xd7\x7c\x6a\x1c\x24\xf2\x85\x76\x77\xc6\x75\x01\xd9\xb6\xb9\xfc\x4f\x7b\x06\x3d\xd2\x83\x9c\xff\x4f\xf6\x4c\xe6\x37\xf5\x4b\xe6\x8d\x5e\xcd\x5c\xb1\x85\x63\xa4\x01\x0b\x99\xee\x69\x65\x58\x1e\x69\x23\x87\x09\x8f\x0c\x27\x0a\x65\x4d\xd5\x4f\x65\x07\xca\x9d\x6a\x74\x5b\xf9\x61\xd5\x05\xb4\xc5\x62\x17\x56\x63\x6a\xd4\x42\x1e\xc0\x48\x59\xcd\xf9\xb6\xd5\x44\x59\xf6\x85\x33\x8a\x83\x01\x6e\xef\x33\xc0\xab\xe0\x82\xbb\x91\x12\x48\x62\xcc\x34\x2a\xbb\xb9\x27\xc2\xb1\xf6\x76\xbe\xb5\x46\xb0\x45\x6b\x76\x53\x36\x6c\xc1\x4d\x5f\xb4\xf9\xec\xff\x13\x9d\x79\xec\x76\xa6\xd1\x01\x40\x5a\x8d\xe6\xbb\x79\xeb\xae\xc8\x4b\xce\x33\xb6\xce\xa2\x1a\x1b\x58\x84\xa1\x41\x19\xcb\xca\x12\x61\x82\x14\x23\x14\x9a\xfe\x68\x2b\x54\x4e\x05\x09\x6c\x17\x8d\x65\xb1\x8a\x83\x8e\x11\x6d\xac\x3f\xae\xca\x58\xd3\x63\xb7\x90\xb1\x66\x55\x65\x4c\xb3\x0e\xe3\x45\xe7\xf8\xd2\xec\x47\x47\x38\xfb\x81\x11\x96\x2d\x74\xbd\x36\xba\xf0\x76\x7f\x3d\xbe\x58\xb8\x41\xfa\xdd\xf5\xf2\x58\xd1\x3f\xe2\x31\xfb\xce\xbc\x34\x7a\xfd\x46\x74\xed\x94\x26\xc6\x51\xf9\x20\xde\x90\x49\xf5\x4c\xc8\x26\xa8\xce\x85\xfa\x3d\x58\xd5\x14\x56\xc0\xfe\xd8\x20\xe8\x4b\x1c\xca\x6a\x1e\x67\x33\x76\x01\xe4\xa5\x31\xf6\xfc\x8b\xd7\x01\x85\xb2\xd8\x11\x44\x2c\xe2\xaf\x2c\x87\x7c\x8b\x34\x63\x29\x7c\x5d\xc4\xa2\x48\xb3\xd9\xfe\x3c\x9e\x15\x1d\xf5\xc0\x8b\x90\x06\xaf\xe8\xda\x1a\x32\x57\xeb\x47\x7f\xcd\x8e\x9e\x93\xda\x33\xc9\xba\xff\x1a\x63\x07\x53\x3d\xb3\xce\x89\xf1\xcb\x76\xbd\xcc\x52\x19\x08\x7a\x21\xd2\x5c\xa4\xf2\x2a\x90\x72\x22\xa2\x95\xe3\xe0\x06\x9e\xcb\xe8\x96\x57\xf8\xb6\xd4\x50\x56\x9f\x2b\xf0\x73\xc3\xc1\x0f\x0c\xb1\x26\x45\xd6\xf6\x20\xf3\x3c\x02\x28\x56\x4c\xb2\xc8\x57\x55\x47\x98\x3b\x81\xfa\x31\xaa\x35\xd4\xec\xda\x92\xc1\x03\x5b\x8d\x23\x5b\x0f\x94\x5e\x96\x8d\xee\x1b\x1f\xb8\x86\x64\x01\xf7\xb7\x9a\xfa\x0a\x1c\xdb\x85\x11\x01\xb7\xb3\x15\xa5\x16\x40\x48\x93\xac\x41\x6d\x9f\x3a\x36\xd9\x34\x8d\x02\x9f\x96\x78\xd1\x21\x45\xe7\xd8\x2f\xc9\x4d\x51\xad\x55\x66\xab\x00\x92\x2d\x68\xe8\x97\xd9\x24\x43\xe0\x05\x0d\x45\x33\x9b\x58\x61\xc5\x16\xf3\xa7\x72\x18\x67\x31\x15\x99\x67\xdf\x0a\x35\x5a\x0a\x78\x44\x9a\x54\x96\x49\xae\x35\x50\xf1\xb8\x49\xa6\xda\x1c\x7a\x74\xee\xde\x71\x0c\x19\x5d\x8b\x8f\xed\xbb\xd6\x48\x17\x46\xdf\x10\x6c\x2c\x11\xfa\x7c\x06\x43\x95\xf5\x15\x3e\x71\x94\xe4\x5d\xc3\x60\xd7\x12\xd8\x7c\xab\xc1\x6a\xbe\xd1\x61\x43\x96\xf3\xa5\xeb\xcc\x70\x64\xc8\x03\xe3\x04\x6a\xad\x7e\x78\x4a\xa8\x08\xdc\x56\x18\xad\x90\x46\x63\x54\x3b\x02\xb7\x45\x30\x8f\xee\x94\x12\x6a\x66\x30\x68\xa9\x0b\x5a\xef\x08\x2d\x8d\xc1\x86\xe7\x84\xf5\x79\x24\x2b\xd3\x70\x45\xe4\x6c\x60\xef\x80\xfe\x69\xa2\x6d\x4b\x0d\xbd\x3c\x7c\xa3\xdf\xf1\x74\x8b\x6e\x36\xc9\xac\x0c\xea\x78\x13\x63\x2f\x15\x01\x5d\xdb\xcc\xea\x01\x7a\x3c\x2a\x4b\xfb\xfd\x04\xcc\x22\x5e\x63\x4e\x1b\x1a\x18\x93\xa3\xc8\xd5\x24\x98\x7c\x8a\x10\x09\xf6\xf4\x1b\x57\xee\xab\xbd\x55\x33\xcd\xf1\xa3\xbb\x8b\x89\x9b\x84\x49\x50\xc1\xdf\x0c\xdd\x10\x67\xc5\x45\x6b\x96\x37\xf6\xd9\xdc\x8e\x58\x82\x0e\x6f\xdf\xe9\x19\xc5\xcf\x93\xd4\x43\xbd\x3b\xdb\x04\x99\x11\x31\x39\x11\x95\x0c\xa1\x2d\x03\xec\x95\xf6\x68\x53\x96\x98\xb3\xca\xc1\x8c\xc3\xf7\x86\x16\xfe\x52\x4e\x51\x60\x03\x20\xbd\xfe\x94\x67\x1c\x80\x7d\x42\x96\xf1\x40\x13\xe4\x71\xef\xbf\x30\x8a\xfe\x4b\x21\xc9\xc7\xae\x0d\x8a\xd9\x7d\x66\xec\x8d\x1d\x0a\x28\x85\x05\x95\xa1\x46\xca\xa4\xf7\x5f\x13\x44\xa2\xff\xea\x92\x29\x08\x2f\xf3\x50\xe7\xd0\x21\x2f\xb5\x2b\xe6\xb7\xc3\x37\xaf\x37\x3d\x9c\xda\x32\xfb\x6d\x4e\x0e\xbc\xfa\xa0\x61\xac\x2f\x39\x17\x8a\x5d\x54\x86\xcc\x47\x3c\x43\xc4\x36\x11\x25\x49\x02\xce\xd7\x77\x77\xb5\xf2\x9a\x6d\x65\x6f\xf2\xfc\xe0\x28\xfa\xf4\xc9\xcc\xf0\x32\x4b\xbf\x76\xc0\x6f\xa3\xa4\x6a\x3f\x28\x66\x59\x97\x34\x51\x9b\x1a\xe7\xba\x97\x18\x82\x5c\x43\x3a\x2e\x83\xca\x72\x64\xa4\x2d\xf0\xc2\x4b\x9e\xc1\xa9\xbe\x8e\x4c\x52\xf0\x86\x69\x56\x11\xd5\x7d\x33\xc1\x33\xaa\xfb\x6d\x82\xc6\xc1\x27\xb8\x28\xb2\x05\xd4\x37\xd5\x0a\xef\x26\x4a\x07\x34\x2a\x50\x0b\x80\x7d\x93\x9a\x2e\x79\xc5\xe3\x8b\xa6\x1d\x8b\xf3\x44\x9d\xb3\x5e\x74\xab\xed\xcd\x51\x17\xd7\xf3\x9a\x37\x7d\x2a\xd8\xa3\xc2\x62\x53\x7b\x6c\x98\x60\x83\x0f\xab\x3d\x68\x6f\x4e\xbb\xb2\xa4\x54\x75\x59\xf5\xa3\xad\x30\x45\x6c\xcd\xce\x01\xa5\x5d\x80\x03\x5c\x73\x4e\xb1\xfa\xb3\xe8\x82\x6f\x1d\x61\xd4\x66\xf7\x8d\xb3\xcb\x1b\xab\xe3\x2b\x68\x1c\x73\x98\x0f\xc7\xc4\x73\x73\xdd\x36\x4b\x09\x82\xec\x03\x48\xd5\xe2\xab\xe2\x65\xa6\xed\xe5\xd6\xa7\xe2\x3d\xde\x74\xba\xd5\xf3\xc2\xcc\x6f\xd1\x41\xa7\xad\x8f\x2a\xcc\x0c\x50\x83\x6d\x17\x1f\x66\xc9\xc4\x49\x82\x1f\xaa\xb6\x4b\x02\xd6\x29\xee\xe0\xb3\xfa\xb3\xab\x36\xe3\x24\x04\xbc\xab\xab\x7a\x7e\xa6\x06\xe8\xc1\xcb\xac\xbd\x24\x9d\x23\x65\x7d\x71\x58\xf8\xbf\x35\x46\x89\xc3\x7a\xe2\x6b\x2b\xa7\x03\x7a\x67\xf9\x6a\x65\xa8\x83\x9a\x9d\x0b\x33\x4b\xcc\x4c\x56\xa3\xdf\x37\x1f\x88\x7d\x2b\xc1\x7a\x1d\xbf\xde\x72\x26\xc4\x38\x55\xb3\x68\xc3\x79\x1e\x31\x70\xe2\x20\x62\xab\x05\x0e\x77\x73\x24\xd6\x0d\x4f\xdf\x79\x6d\x3d\x30\xfe\x06\x49\x88\xb4\x53\xa0\x8a\xb8\xc7\x9c\xc9\xb6\xb1\x0c\x21\xe6\xf9\x81\xa0\x65\xfd\x66\x24\xb7\xad\x77\xa4\xab\x89\xe4\x43\x09\x93\x48\x02\x59\xcd\x63\xe2\xd2\x69\xff\xce\x28\x61\x43\x28\x5d\x61\xe2\x3d\x1c\xde\x80\x36\xc8\xed\x87\x37\x2c\x32\xdb\x36\x77\x15\xfc\x07\x6d\xab\x7c\x90\x54\x0b\xfe\xa6\xa9\x70\x9c\xa4\xac\x0f\xf6\xed\x87\x65\xf9\xb0\x9e\x20\x18\x77\xde\x3d\xd4\x8d\xf3\x18\x1e\x47\xac\xc6\xe6\xf6\x43\xd5\xdb\xe1\x43\x4b\xb1\xd7\x79\x48\x59\x3e\x34\x6b\xd8\xde\x6a\xae\x6f\x57\xc7\x63\x1e\xee\xe4\xc7\xb5\xa0\x75\xd8\x9d\xa6\xed\x47\x8d\x4c\xd8\x79\xec\xf2\x7b\xf3\xa0\x88\x5d\x66\x7e\x0b\xf6\x77\x69\xb8\xd9\xa5\xe4\xac\xfa\x2a\xd8\x99\xd0\xac\xaa\xa2\x65\x59\xf5\x55\xb0\x85\xe1\x7e\x2b\x42\x97\x9d\xb6\x5c\x77\xcd\x20\x47\x45\x48\xb1\xa6\x22\x40\xfd\x00\x79\xeb\x74\xde\xfa\xde\x42\x90\x1d\x0b\xc1\xf0\xce\xeb\xaf\x23\xd7\x4f\xa7\x31\x2c\x8d\x52\x94\x24\x0d\xa6\x53\x3b\xde\xae\xde\xde\x97\xe4\xf1\xf8\x81\x76\x97\x8e\xe5\x1d\xf6\x60\x54\x09\x68\x1c\x94\x31\x18\x08\xf0\x73\xf5\x94\x1b\x86\x9e\xba\xbd\x60\x92\x3a\x79\x59\x7f\x64\x7c\x04\xa5\x86\x00\xb4\xb7\x18\x88\xd0\xbc\xaf\x2f\x0b\xfa\xc2\x88\x2e\x4e\xb4\xb2\xcd\xcb\xec\xad\xc8\x67\x82\x17\x45\x68\xfd\x76\xbd\xe5\x58\x0e\x73\x5d\x6c\x4c\xfb\x63\x8b\xa3\xda\x05\xca\x12\x77\x27\xa8\x86\xdc\xf4\xb6\x72\x47\x09\x70\x13\x6c\x78\xc1\x06\x8d\xa5\x11\x67\x1e\xd8\x01\x58\x99\xb9\xde\x28\xb8\xad\x09\xea\x91\x15\xde\xc2\xee\xda\x58\xc0\x0e\x34\xee\x28\xde\x1c\xde\x31\xb5\x7c\x6d\x75\xb7\x60\x9b\x05\xa3\xe5\xf0\xb2\x15\xd5\xde\x62\x2c\xcc\x2a\x02\xa8\xf2\xdb\x82\xb4\xea\xac\x12\x68\x7f\x4c\xed\x0b\x24\xbd\xce\x15\xa7\x1b\x66\xcf\xcb\xaf\x1c\x7f\xa9\x16\x83\x35\x7d\x34\xfa\x51\x35\x78\x6e\xa6\xd2\xed\x64\xed\x2b\xb6\x96\x83\x9c\xc7\xc5\xd3\x79\x3a\xcb\x78\xf2\x22\x5f\x8a\xf6\xb6\xe2\x9b\x9d\x68\x62\xce\x78\xa8\xa5\xf8\x0e\x63\x13\x8c\x68\x7b\x70\xc9\x90\x93\xdb\x0f\x46\x8c\x8d\x2c\xae\xde\x3d\x3c\xda\x44\x68\x3b\xc5\x9e\x34\x50\x93\x15\xbe\xb8\x39\xcc\xf2\xfe\x4e\x99\xfb\x8d\x32\xa6\x09\xaf\x9a\xeb\x64\x73\x37\xdd\x1d\x6a\xca\xbe\x5f\x47\x3f\x3f\xe4\x6b\xb4\x2e\xce\x0e\xb9\xf9\x3e\x7a\x66\xbe\xed\xe5\xf5\x46\x0e\xa4\xf9\x12\xfa\xca\x96\x79\xdd\x10\x08\x77\x97\x79\x96\x6b\x6d\x20\xc9\x93\xde\xfb\x2c\xfd\xc2\x45\x11\xcf\x7b\x47\xe9\x82\x57\xa0\xd4\xfe\x2d\xd8\x89\xbe\x8d\x2b\x7a\xf1\x74\xca\x8b\x22\x17\x6d\xa5\xc0\xf7\x05\xd7\x5a\xd5\x56\xa9\x16\xd1\x73\x41\x2a\xaa\xb7\xd0\x7a\x85\xea\xeb\x46\x10\x90\xc5\xc2\x40\xf4\x03\xb1\x1c\x0c\x00\x80\x8f\x1b\xcb\xab\x1c\x75\xf1\x6f\x92\xd8\xd1\x68\xe8\x35\xaa\x88\xcd\xba\xc1\xd8\x59\x16\x3f\xab\x23\xac\x20\x6f\x6f\x50\xcc\xaa\x88\xb9\x75\xb2\xcd\x78\x19\x36\xa8\xc6\xd9\xab\xd4\xfa\xff\x0b\xd6\x6e\xc8\x57\xa4\xda\x33\x87\xe7\xe9\x99\xe4\x89\xea\xa3\x1b\x6e\x0f\xd0\x4f\x3c\x28\x5a\xc8\x61\xa1\x81\xb4\xd4\xd3\x15\x67\x9a\xe6\x59\x43\x07\x1a\x5e\xb9\xc3\x76\x61\xd5\xf5\x37\x3d\x77\x35\x92\x8c\x88\xe4\x1a\x5e\x75\x3b\xb7\x6a\x02\x14\x73\xa6\x5d\xa3\xfb\x27\xb1\xa5\x57\xaa\xb7\xfe\xe7\x98\xab\x68\xb8\xc7\x50\x1f\x5b\xeb\x60\x59\x7b\x93\x9d\x42\x56\x2a\xad\x20\x11\x13\xf2\xc4\x3c\xd3\xd5\x51\xba\x72\x17\xdf\x91\x68\x34\xd9\xbe\x08\xf6\xc6\x51\x12\xf9\xd2\xa5\x1a\xd2\x30\x72\x34\x67\x9d\xc9\x34\xe1\x51\x75\xf4\x9a\x28\xdf\x6a\x7f\xd8\xba\xf7\x70\x46\xc2\xcc\xf0\xb5\xf0\x32\xc8\x8a\x7e\x51\x07\x98\x6b\x16\xb8\x89\xeb\x3b\x69\x66\x9b\xf0\x88\x8a\x0d\x29\xcd\xe7\xd7\xa2\xaa\xeb\x65\xd9\x17\xa1\x0c\xf0\x06\x78\x4c\xd4\x8f\xb1\x1d\x1c\x1c\x1c\x94\x07\x07\xe5\xee\x6e\x99\x24\x49\xb2\x3d\xeb\x7c\x5f\xc0\x3c\x8f\x00\x7a\x90\x1b\x80\x12\xe8\xa2\x73\x3f\xbb\x19\x73\xd5\x79\xa0\x8c\x51\x67\xdc\x7c\xb2\x9b\x0c\xb5\xcf\xda\xdb\x09\x02\xa2\xe0\x8b\xa8\xde\x14\x61\xfb\x1c\x82\xd5\x25\xbd\x89\x70\x0d\x17\x3b\x2e\xfc\xb4\x27\x02\x5d\x8d\x9b\x75\x22\xa2\x7a\x32\x53\x12\xa6\x55\x91\xc0\x79\xbc\xf0\x76\xb2\x9d\x56\x0d\x89\x0b\xb9\x0f\x76\x91\x9d\x77\xa4\x1d\x55\xf0\x27\xa3\x10\x69\x53\x4a\x14\x20\x55\x1e\x39\x95\x0a\x12\x82\xa3\x14\x67\xae\x6e\x17\xdb\x29\x5c\x50\x7d\x69\x5f\x06\x55\x8e\xce\xe0\x76\xc7\xde\xec\x30\xd5\x0d\xba\x07\xce\xbe\xe1\xb2\x25\x62\x9a\xb8\x9f\xa0\x13\xe4\xa9\x90\xd9\x80\x5a\xb1\x9b\xf1\xda\x65\xfc\x66\x7d\x52\xf7\x29\x6f\x7c\x53\x7e\xbf\xc8\x97\x62\xca\xed\x66\xc9\xd7\x93\x88\x87\x4a\xe4\x55\x46\xa6\x36\x16\xfa\x67\xce\x1c\x67\x28\x85\xab\x1f\xdb\xf4\xf7\x17\xba\xa1\x49\xa5\x0b\x14\x05\x8d\xf8\x46\x19\x3f\x2d\xf4\xd2\x2d\xcb\x5d\x49\x7c\xc9\x0b\xa9\x86\x1c\xe9\xc5\x83\x02\x54\xc8\x38\x4b\x62\x45\x6d\xa0\xa8\x01\xf2\x86\xaa\x1b\xf5\xf9\x35\x04\xa7\x47\x60\x29\xfa\x63\xdd\x82\xac\xcd\x0a\x20\x6a\x53\x07\x75\xe2\xae\xfc\xb7\x3b\xb3\xa9\xc2\xf5\x5a\xba\xfb\x06\x73\xbb\x59\xd3\x6c\xcb\x78\x1b\xb3\x90\x20\xfb\xde\xd7\x78\x5a\xf9\x42\xbd\x41\x49\x8d\xe9\xb7\xd4\x15\xca\x75\x5e\x54\xaf\x99\x3f\x17\x26\xdc\x80\xae\xc5\xb2\x49\xe4\xe0\xae\x83\xae\x84\x42\xf5\xad\x95\x52\xb9\x5f\xf5\xbc\x8c\xe4\x6c\x8e\x27\x3b\xfc\x2e\xcd\x22\xb2\xa1\xcc\x24\x8b\x58\x2d\xef\x33\x1e\x6b\x72\x8a\x10\xe9\xea\x40\x77\x8b\x5a\x30\x36\x17\xaf\xfc\x16\x86\xe0\x1f\x0c\x54\xbb\x86\xe3\x3e\x63\x38\x65\x47\xb2\x16\xac\xae\x37\x93\xc6\x84\x84\xa9\x16\x1c\x75\x97\x68\xb5\xc9\x2d\xf0\x6f\x56\xf6\xd3\xf5\xfc\x4c\x81\x9f\xee\xf6\x9a\x47\x61\xad\xb5\xba\xb6\x6e\x2a\xfe\xf8\x3f\x5e\x4b\x84\x36\x7c\xf9\x82\xa7\x60\x77\x41\x89\x8a\x25\x59\x5f\x0f\x8e\x57\xe9\xb5\xa5\xe2\x60\x64\xf4\x0f\xe4\xb9\x2b\x27\x85\x95\x53\x1d\x9c\x3e\x98\x8c\x79\xe8\x16\xa2\x28\x45\x37\x2d\xe1\xcd\x30\xf5\x8a\xbe\x19\x30\xa1\x95\x7c\x62\xd1\x80\x0b\x2f\x01\x75\x36\xd2\x43\xe5\xc6\x7a\x68\x17\x28\xb7\x89\x79\xbb\x25\xb6\x15\x83\x81\x76\x99\xa7\x75\x2c\x37\x8d\xa0\xc6\x98\x7c\xed\x1d\x74\xd4\x2e\xda\x31\x52\x9d\x65\xfb\xc2\x96\x58\xdc\x9c\x79\xe5\xa0\x4f\x70\xa4\xb4\x99\x0a\x6a\x23\xcd\x10\x1b\x27\x56\xe8\xc4\x29\x8f\x48\x59\x7e\xac\x57\x36\xa1\xbc\x89\xcf\xe1\x5a\x09\x72\x36\xb0\x3a\xc4\x90\x60\x23\x48\xbc\x96\x99\xbd\x92\xcd\x79\x71\x40\x0f\x06\x3f\x53\x6b\xfb\x74\xfc\x5f\x19\x07\x55\xd1\xa6\x66\xd5\xad\x58\x1f\x91\x3a\x6d\x6d\x58\x9c\xc6\xef\xb7\xc7\xa6\x55\xdd\xda\x00\xfd\x60\x73\x60\xa8\xe0\xee\xa8\x63\x78\xfe\xb4\x62\xe8\xd6\xe5\x5c\x7d\x1f\x07\x45\x01\xc6\x59\x2a\xc0\xd7\x49\x5b\xc6\xdc\x1a\x6b\x5b\xb2\x55\xe6\x43\xa3\x05\xdd\x65\x2e\xab\xb6\xb6\x2e\x5f\x3a\x29\x1e\x9b\xcf\x52\x1f\x36\x3c\xe1\x5a\x2c\x6e\x29\x9d\x2a\xbe\x19\xac\xa8\xb9\xef\xd3\x3e\x16\xdc\x77\x2a\x6e\xd5\xd7\x26\x78\x1c\x3f\x20\x9d\x0a\xa5\x2d\x68\x07\x69\xb6\xa9\x27\x07\x69\xd6\x80\xd8\x26\x10\x37\xc2\xb4\xb4\x60\x27\x54\x48\x6c\xc0\xfd\x61\xe2\xac\x51\xe0\x7f\x8c\x3c\x6b\x40\x75\x08\xb4\x66\xf3\x9a\xa7\xe7\x87\xee\xb4\x45\x9a\xad\xa5\xe8\x83\xf5\x61\x93\x48\x1b\x47\x04\x46\x27\x23\x1b\x4a\x56\x74\x96\xeb\xa6\xf0\x7b\xb4\xda\x7a\xd3\xd6\xc0\xfc\x18\xd1\x77\x79\x23\x8c\x1f\x22\xfa\xc0\xc3\xde\x0d\x84\x58\xa3\x8a\x06\x05\xf7\x9d\x82\xeb\x9d\xfc\x3e\x5d\xd6\x1e\xdd\x76\x7d\x3f\xdd\xd2\x9f\x6c\xda\xbf\xd7\xaa\x7f\x6b\x14\xfe\xd3\x3e\xdc\xd4\xa8\x9f\x2a\xf1\x7f\x6d\x30\xbf\x4b\x21\x37\xea\xa8\x4e\xc2\x0d\xdb\xb9\x6b\xcb\x7e\x7f\xa3\x9f\x2d\xe7\xf3\x76\x12\xa9\xb6\xfa\x1a\x09\xed\x6c\xf7\x9a\x92\x5e\x83\xe1\xd2\xd2\x5d\x89\x9d\x94\x6f\xb5\x29\x3b\xc8\x5e\x3f\xdc\x40\x51\xff\x14\xe4\x8d\x54\x75\x17\xf8\x2e\x3c\x76\x13\x70\x85\xd6\xbe\x07\x7a\x13\x56\x6a\x52\xec\xcd\x81\x70\x68\xf6\x8e\x7e\x74\xa4\x56\x0d\xd9\x84\x02\x7f\x90\xa6\xaf\xb0\x89\x25\xb3\xbb\x66\x72\x23\x55\xdf\x2e\xdc\x39\x5b\x37\x94\x6e\x14\xee\x98\x8b\xef\xb0\x04\xed\x4e\x6f\x60\x0a\x1a\xfe\x55\x37\x93\xc3\xeb\xc7\xb5\x43\x10\x37\x60\x28\x82\x95\xf3\x2e\x9a\xb8\x9a\xbc\x35\x0a\xb4\x01\xc0\xa5\x86\xd7\x20\xe3\x8e\x02\xec\xbd\x6c\xcf\x74\x27\x11\xfc\xa3\xf5\xaf\x13\x4a\xff\x9b\x83\xd3\x4d\xa3\xaf\x37\xa7\x6b\x98\x3a\xd9\x86\x8e\x9e\xfc\xb1\x3e\x60\x1b\x59\x87\x9f\x6f\x58\x9b\x74\xfd\x5f\x1c\xbd\x83\x34\xdb\xdc\x44\xdb\x94\xae\x91\xb3\x69\x1d\xe3\x56\xf5\xe0\xc3\xda\xa8\x35\xab\x5b\x1f\xb3\x1f\x6b\x8e\xbe\xd2\x28\xde\x1e\x74\x8c\x11\xba\x00\x93\x1a\xee\x59\x2a\xad\xa2\xcf\xe0\x89\xef\xa7\x12\x8f\x0c\x67\x6b\xbd\x9a\xae\xf9\x2e\x30\x74\xfd\x93\xf1\x38\x14\x21\xba\x58\xa0\x00\xbd\x3d\x40\x81\x08\x51\xac\xbe\x9f\x1e\xa0\x15\x8d\xb5\xba\x2c\xbd\xfe\x8e\x8b\x46\x2c\xcf\xcb\x42\x96\x59\x52\x8a\x84\x6c\x57\xde\x1d\xd7\xef\x98\xf8\xed\xf1\xa8\xd2\xeb\xf6\xe0\xf9\xe0\x19\x56\x91\xa3\xed\xf1\x88\x84\x48\x9e\xa3\x00\x9e\xd8\x0e\x51\x21\x51\xb0\xa3\x3f\xb3\x04\x05\x77\xf5\xa7\x48\x50\xa0\x72\x91\x15\x38\xac\x02\x1b\x98\xea\x6a\x16\x82\xdd\xd7\xc2\x3a\x19\x88\x59\xe7\x8a\x39\xe6\x16\x08\x28\xd6\x36\x01\xa9\xa8\xef\x02\xd3\x99\x2a\x80\x4b\x63\x54\x7e\x22\x98\xd5\xd1\xa1\x97\x82\x7d\xe0\x58\x9b\xc2\xef\xe9\x6f\xf5\xf9\xd5\x44\x23\x42\xdf\xe8\xcf\x73\x44\xe8\x53\xfd\x99\x20\x42\x0f\xf5\xe7\x25\x22\xf4\xad\xfe\x84\x27\x24\xf4\xe7\x15\x22\xf4\x99\x60\x1f\x79\xc3\xce\x4a\xc1\x7d\xa7\x63\xeb\x88\x03\x9b\x4d\xfb\x8a\x20\xf4\x2f\x1d\xa1\x1d\x5b\x12\x7a\xa4\x83\xe0\xcf\x92\xd0\x5d\x93\xdb\x9a\x16\xbf\xd6\x61\xed\xba\x92\xd0\x97\xc2\x51\x00\xa3\xfb\x82\x5d\x17\x45\x70\xef\x1e\x2d\x82\x7b\xf7\xe9\x42\xfd\x39\x0f\x76\x76\x68\x12\xec\x3c\xa0\x07\xc1\x78\xbc\xa2\xaf\x9c\xa1\xf8\x26\x1a\x4e\x8d\xec\x4a\xf8\x76\x93\xc9\x93\xde\x1d\x26\x7d\x45\xbf\x09\x05\x69\x83\xb2\x27\x3c\x0c\xd5\xbc\x83\x6d\x68\x79\x9d\x74\x3e\xec\xe4\xbe\x55\x7c\xd2\x7c\xdd\xc9\x95\x84\x38\xa5\xf5\xed\x0b\xe5\x7e\x1b\x7a\x33\x46\xe5\x68\x24\x3a\xf1\x56\x65\xcd\x14\x82\x80\x8a\xd7\x0a\x6e\x10\x0b\x9f\x90\xb7\xaa\x9f\xfb\x75\xdd\x46\xad\x41\x45\xc2\xa7\xd5\x1c\xfa\xa6\x1d\x0f\x74\xea\x10\xfc\x8d\xd7\x04\xf5\x98\x40\xde\xca\x62\xe6\xbb\x05\x86\xa6\x44\xfc\xa3\xda\xac\x95\x6a\x26\x15\xd4\xde\x64\xbb\xe3\xa3\x28\x93\xda\x26\xdf\xb1\xe8\xb6\x96\xe9\xf5\xa3\x30\xac\x9e\x15\x2f\xd3\xda\x83\xd5\xc5\xb4\x79\x1b\xed\x3d\xbc\xd0\x5f\xc3\xe3\xa1\x08\xc4\xf6\x78\x67\xcb\x58\x5f\x35\x60\x38\x5a\x8c\x7f\xf0\xe6\xb4\x12\xca\x8d\x89\x96\x36\xb1\xb2\x4d\xd8\x7e\xe8\x65\xc6\x68\x7d\xab\x36\xb4\xb2\xa9\xb6\x55\xae\x81\x95\x49\xdb\xb9\x77\x47\x25\xdf\x7d\x60\x53\xad\x8d\x95\x75\xa7\x71\xef\xde\x08\x72\x3c\xe0\xf7\x9a\x76\x56\x26\xc3\x2f\x0f\xee\x8d\x74\x8e\x31\xbf\x6b\x41\x38\x46\xaa\xeb\xd6\x08\xd0\x94\x3b\x92\x78\xd9\x96\xb1\x38\x0f\xe4\xb9\xc8\x2f\xc1\x7e\x67\x4f\x88\x5c\x60\xf4\x3e\xfb\x9c\xe5\x97\x59\x6f\x99\xa5\xb2\x87\x3c\x4e\x56\x66\x76\x5d\x5f\x18\xec\x52\xe8\x48\xe3\xf0\x85\xed\x09\x9b\x49\xaf\xdf\xaf\x26\x0c\x2e\x92\xd9\x1b\x13\xda\x55\x7b\xe9\xa9\x09\x68\xc5\xef\x43\x5b\x50\x2f\xe6\xb7\x26\xf8\x11\x56\xf1\x67\x08\x7d\xc7\x56\xa2\xfd\x0a\x5c\xe3\x25\x3d\xd3\xe3\x7a\x86\xdd\x39\xbd\x3d\xde\xb9\xb3\x73\xff\xd7\x1d\xfe\xc0\xbb\x3b\xbe\x7f\xf7\x01\x7f\x70\x67\xd6\x98\xf4\xed\xf1\x8e\x71\x3e\xf0\x4d\xd8\x57\xf5\xd6\x70\x8c\x7d\xf8\xb1\x52\x03\x6d\xbd\x39\x5a\x57\x4e\x8b\xc6\xd2\xa4\xcb\x0e\xf4\x94\x3f\x61\xa3\xc1\x20\x86\xbf\xc5\x13\x36\x2a\xcb\xfc\x31\xc4\xc0\xdf\xe2\xb1\x8a\xc1\xb9\xc7\x74\xc7\xfe\xc5\xd5\x3a\x2d\x88\x17\x13\x1a\xb3\x11\x2d\xd8\x88\xd0\x65\x13\xff\xe4\xb7\xc7\xfc\x2e\xe5\xec\x0a\x83\xb3\x06\x95\x5e\xbd\xfb\x7c\xfb\xc1\x88\x4a\x76\x65\x5e\x1e\x5f\x56\xe8\x47\xaa\x04\xc1\xae\xb0\x34\x09\x1a\xff\x88\xdb\x3b\xf7\x68\xec\xc1\x1b\x76\x3b\xf7\x08\x4d\xd9\x15\x7e\xcf\x71\x4c\x08\x2d\x3c\x96\xd2\x78\xc8\x74\x8b\x52\x30\xaf\xbc\xc2\x30\x82\xb4\x80\x97\xec\x96\x5a\xe3\x3d\x56\xd5\xe8\xc9\x2e\xe8\xd2\xa0\xab\xac\x46\x52\x37\x9b\xc3\x77\xcc\xf8\x84\x7b\xa8\x40\x11\xae\x67\xaa\xd1\xfd\x67\xb0\x86\x6c\xe8\x9d\xd0\x19\x74\x37\x0f\x20\xa4\xfb\xf6\x17\x7c\x43\x13\x8f\xe0\xb3\x65\x06\x51\xb5\xa4\x56\x9a\x2e\x30\xd9\x7e\xa8\x91\x9f\xe9\xd1\x2e\x94\xd4\x7d\x7a\xad\x81\x1b\xdf\x01\x3f\x88\x1b\x21\xf6\x3b\xaf\x11\x76\x58\x62\xd0\x4d\x7a\x42\x6f\x41\x61\x32\x3e\x2d\xc0\x91\xcc\x4b\x81\x33\x3f\x2e\x80\xd2\x20\x34\xaf\xc3\xa0\x61\x1a\xd7\xe1\x73\x15\x2e\xea\x70\xa2\xc2\xcb\x3a\x7c\xa0\xc2\xf3\x3a\x7c\xa5\xc2\x53\x96\x3e\x66\xfb\xc2\x2f\x8a\xc1\x00\x3c\x44\xa5\x51\x59\xa6\x8f\x55\x0c\x44\x98\x98\xfc\x31\x1b\xab\xf0\x02\x41\x60\x5f\xf8\x0b\x08\x2e\x10\xcd\xa3\xb2\x8c\x4d\xf2\x39\x82\xc0\xbe\xf0\xcf\x21\x78\x8e\x68\x1c\x95\x65\x61\x92\x13\x04\x81\x7d\xe1\x27\x10\x4c\x10\x2d\xa2\xb2\x5c\x9a\xe4\x03\x04\x81\x7d\xe1\x1f\x40\xf0\x00\xd1\x65\x54\x96\x73\x93\x7c\xa5\x92\x27\xe8\xea\x0a\xd1\x79\xa5\xdf\x32\x9d\xec\x44\x4c\xd2\xe9\xe4\x6e\xc4\x3c\xfe\x64\x44\xa7\x93\x7b\x11\x13\x9d\xcf\xd0\x9a\x22\x69\x43\x97\x07\xcb\xb2\x1c\xd3\x7e\x5f\x50\x4e\x33\xb2\x72\x9d\x77\x4e\x89\x71\xba\xd2\xe7\x8e\x43\x0f\xae\x1f\x30\x75\xf4\x74\x30\x20\x28\x2a\x08\xa1\xb2\xed\xdd\xe3\x5b\xd3\x94\xf2\xef\x5c\xc7\xb4\x82\x60\x39\xa7\x03\xb5\xfd\xf7\xb7\xb6\xfd\xb7\x86\x55\xd8\xc2\x27\x18\x39\xc1\x75\xe7\x8c\xce\x13\xd1\x0d\x73\x3b\x4b\xe3\xf6\x70\x96\xcb\x74\xca\xc1\x37\xe3\x34\xbe\x48\x65\x3c\x2f\x08\xa2\x7f\xe7\x04\xea\x36\x36\xe9\x47\x18\xfd\x69\xbc\x24\x2d\xb3\xf4\xab\x76\x9c\xf4\xd5\xc4\x18\x34\xaf\xbd\x87\x7e\xad\x1c\x06\xfe\x69\x1c\x50\x87\xc7\x89\x07\xee\x39\xe1\x7d\x3e\x12\x6e\x83\xcb\xb8\x3f\xd7\x5f\x01\x10\x0d\xdf\xb6\x63\x7e\xf7\x8e\xfb\xc8\x38\x1d\x8f\xec\x2b\x02\x5f\xbf\x57\x76\xa6\xe8\x0e\x60\x28\x8c\xcf\x5f\x86\x76\xfc\xf1\x2f\xfe\xb8\xe9\x3b\xf2\x39\x67\x7c\x85\x67\xc0\x34\x9c\x65\xec\x54\x68\x3a\xae\x03\x75\x9c\x72\x8c\xac\x5d\x3f\xa2\x93\x48\xab\xb0\x69\x16\xb5\x72\xef\x4a\x55\x03\x15\x88\xb8\xcb\xb6\x50\x83\x00\x37\x03\xdf\x85\x90\xb9\x4e\x48\x2a\x08\x60\xf6\x9a\xe5\x97\xa1\xfd\xc0\x24\xf0\x6c\x9f\x55\xb1\xa5\x9c\xb2\xb9\xfa\x6d\x58\x37\x3a\x2f\x53\xe9\x51\xe5\xba\x95\x6b\x3a\x51\x35\x95\x68\xde\x1f\xae\xb8\x86\x15\xbc\x79\x0f\x7a\x78\xb9\x62\xb0\xf4\xf2\x8c\x39\xad\x9d\x98\x5e\x50\xee\x27\xc6\x9b\x27\x7b\x0b\x29\xc5\x01\x70\x56\x6c\x41\x79\xe7\xd5\x9d\xcb\xb7\x56\x2f\x0c\xdb\x27\x8d\x4c\xad\x9d\x3a\xf3\x55\x77\xba\xbd\xec\xd6\x85\x30\xc0\x70\x36\xd0\x52\x37\x6c\xd7\x36\xf4\x84\x57\x23\xb1\xa6\x4b\xb5\x69\x38\x20\xa3\x6e\x5d\xf7\xc5\xdd\x77\x3a\x76\x90\x66\xba\x74\xc2\xcf\xd2\x8c\xeb\x1b\x19\x56\xf0\xca\x3c\xc2\xc4\xac\x79\x67\xa8\xac\x4d\xac\x23\x8f\xe7\xd2\x28\xf5\xdf\x92\x13\x1e\x81\x8f\x2d\xf8\xb2\x3a\x78\x84\x62\x01\x9b\xe2\x0d\x96\xec\x2b\x3c\x3a\x4d\x60\x74\x78\x26\x4d\x25\x90\x9f\xde\xd2\x8a\x9c\x34\x06\xff\xa8\xa0\x0e\xdb\x02\x5c\x87\x1a\xe5\x43\x5d\x72\x3d\x21\x68\x94\x4f\xf8\x9c\x4b\xde\x83\x50\x85\x43\x21\x54\xcf\x4f\xd7\x89\xfd\x1b\xc7\xb7\x64\x63\xa4\xd7\x67\xe9\xc6\xb1\x76\xe6\x2a\x53\xf8\x78\x9e\x7e\xe3\xef\xb3\x54\x16\xec\x90\xf2\xc6\x11\xf0\x4e\xf1\x0e\x0d\xab\xe3\x4e\xe7\xb2\x2f\x45\x80\x6c\x0e\xc7\xb8\x6b\x30\xc0\x2f\x05\xe3\x60\x38\xd1\x02\x7c\x74\x2e\x78\x71\x9e\xcf\x37\x70\x70\x1a\x76\x9f\xb1\x7d\xa1\x87\xba\xaa\x4c\x86\x10\x15\x60\xf8\x61\x92\xa2\xc2\x7a\xbf\x82\xb3\x9a\xc9\xe1\x98\xa8\x1a\xa1\xca\xa6\x33\xb9\x4e\xad\x51\x0e\xce\xdb\xb0\xa4\x5a\x36\x00\xb6\x24\xf6\xf6\xef\xf1\xf0\x41\x58\xfb\x9d\x0b\xc4\xe3\xe1\x38\x44\xf6\x99\x12\x15\x1e\xe9\xe0\x2e\xf0\x48\x8f\xc7\x3a\xb3\x09\xed\x84\xc8\x3c\x90\xa2\x42\x0f\x75\x48\x17\xac\x61\xc2\x6e\xb6\x92\x02\xc0\xb5\x2b\xd2\x52\x8c\x47\xea\x98\xd2\xb6\xca\x68\x6b\xcd\x17\xc9\x22\x4f\x96\x73\x3e\x18\x6c\x48\xf0\xf9\xd7\x8b\x5c\xc8\x22\x6c\x06\x55\xaf\xf3\x29\x60\x86\x50\x9d\x22\xfd\x11\x09\xda\x14\x5d\x9d\x85\xac\x71\x55\x7f\xfd\xbe\xe4\xe2\xaa\x27\xf8\xbf\x96\xa9\xe0\x45\x2f\xee\x5d\xa6\x59\x92\x5f\xf6\x2e\x53\x79\xde\x8b\x7b\xb6\xa4\xe3\x0f\x4e\xed\xa1\x00\xfe\x62\xb4\xcc\xf4\x2e\x4f\x6a\xed\x7e\x5d\x3e\xd4\x3f\xc6\x41\xd7\xe6\x61\xb0\x49\x3d\xe1\x4e\x25\x86\xf7\xd2\x6f\x11\xe3\x86\x7f\x6f\xce\xc1\x52\x01\x15\x53\x91\x5e\x40\x5b\x7c\xc9\xbf\x4a\xc6\xa9\xf4\xcf\x79\x9c\x28\x44\xc9\xb3\xe4\xd9\x79\x3a\x4f\xb0\xb0\x38\xe0\x75\x9e\xa8\xb5\xba\xc8\xbf\x70\x9b\x52\xbf\xbe\xed\x48\xf9\xfa\x7d\x35\xec\xda\xdb\x0a\x4a\x81\xfa\xb1\xcf\xf3\x50\xc1\x0a\xee\xab\x9e\xd5\xce\x84\xea\x0d\xd2\x67\x4c\x0c\x06\xfd\x42\xe1\xdc\x0f\xd0\x5f\xfd\x96\x3d\x8a\x85\xd0\x3e\xe5\x44\x59\x8e\x8c\xff\xbe\x96\x79\x6a\x4f\x0e\x06\xf2\xc9\x68\x30\x90\xc3\xb1\x56\x41\xae\xdb\x96\xb6\x3c\xc6\x64\x79\x02\xf6\x2d\xaa\x5d\xf6\xbb\x29\x46\x85\x47\x24\x1b\x31\x35\xb4\xbc\x85\x46\xa0\xb9\xfb\xb5\x33\xb8\xb0\xe0\xfe\x4c\xf0\x0b\xcc\xdd\x89\xca\x1c\x53\x1e\x7d\x8c\x73\x9a\x51\x4e\x54\x9f\x57\x24\x90\xd0\x90\xa3\xab\x0b\xde\x59\xdc\x61\x8f\x18\x93\xa6\xcc\x9a\x21\x88\xfc\x4e\x59\x2b\x24\xa7\x9c\x3c\x81\x2b\x59\x05\x65\xc6\xf5\x1d\x90\x6e\xf8\x59\x3a\xd7\xae\xa1\xc0\xc9\x14\x96\xac\x11\x47\xe8\xcf\x56\x30\x18\x8c\x15\x12\xaa\x7a\xb7\x22\xce\x48\xc6\x7a\x5e\xce\x72\x81\x1f\x61\xce\xf8\x44\x46\x64\x30\x50\xe5\xea\x02\x8f\xc8\x23\x0b\xbd\x2e\x58\xb8\x95\xd6\xd1\x4b\x15\xad\xb7\xa4\x13\x3b\x6f\x69\xdc\x6f\x49\x71\x75\xcd\x07\x83\xe6\xbc\xa5\x0c\xf0\xcd\x22\x2d\x38\x09\x53\x33\x43\xc4\x4f\x14\x59\x20\x89\x7f\x16\xa7\x73\x2c\x48\xd0\x59\x4e\x9e\xf3\xac\x2e\x04\x8b\x23\x90\x86\xd8\xd0\xf8\x99\xaa\x03\x4f\xdb\x31\x64\x84\xac\xa6\xe0\xe4\x58\xf5\x61\x2d\x97\xfb\x36\xfe\x14\x93\xeb\x5b\x66\xc7\xed\x7d\x51\x87\x65\x5a\x48\x9e\x71\x81\xd1\xee\x9b\x83\x67\x79\x26\xe1\x00\x8d\x13\x9e\x20\x3a\x25\x94\x77\xe7\x9d\xe7\xb1\x4e\x2f\x54\x86\x38\xb9\x72\x57\x73\x82\xd5\x90\xa5\x85\x42\x80\x71\x96\xe4\x6a\xc2\xcd\xa7\x97\xf8\xcb\x34\xf1\xbc\x3a\xf3\x45\x83\xe9\xdc\x4a\xcf\xea\xe3\x67\x6d\xa6\xe1\xf5\x76\x86\x92\x58\xc6\x43\xe4\xc9\xea\x42\xf5\x1d\xa7\x68\x78\x6b\xd0\xbe\xb8\xa0\x6d\xf3\x44\xf0\x79\x39\xe3\xf2\xa9\x94\x22\x3d\x5d\x4a\xed\x7c\xf4\x5a\x4d\x5e\x97\x2f\x07\x24\xc5\x52\xbb\x7b\x2c\x4b\x74\x16\xab\x23\xa4\xaf\x4f\x3f\xa4\x68\x0b\x2d\x11\xd4\x26\xd3\x8c\x31\x8f\x7b\x08\x85\x1e\x0f\x9e\x71\x7b\x03\x1a\x2a\x86\x4a\xd3\x82\x98\x93\x40\xa1\x63\xe1\xcc\xd4\xea\x33\xf7\x8d\x4d\x15\x15\x86\xe8\x11\x4c\x77\xbf\x7e\xc1\xbd\x1a\xa9\xf3\xd6\xa2\xa3\x39\x1b\xd3\x98\xed\x8c\x68\xc1\xb2\xb0\xc3\xb1\x8e\x3f\x5d\x0a\x4c\x56\xc1\x7a\x52\xc1\xfd\x69\x51\x68\x92\x52\xd1\x26\x4b\xa6\x98\xfc\x39\xb8\x3a\x9b\xdc\x8d\xca\x12\xeb\x1c\xaf\x01\x21\x4e\x64\x14\x22\x14\xa0\x0b\xc5\x75\x4d\x59\x3b\xad\x2c\x55\x4a\x9f\xb1\xf9\x60\xe0\x2d\xc9\x60\xf0\x97\x9a\x6e\x3e\xc5\x75\x2d\x04\x54\xa7\xa6\x83\x81\x62\x90\x55\x4e\x72\x3d\x67\xf3\xb2\x54\x41\x2a\x14\x0a\x9e\x44\x74\xca\xbc\x65\x59\x8e\xb7\x92\xfc\x7a\xba\xcd\x72\x96\x97\x25\xf2\xef\x23\xb5\xc4\x0a\x79\x35\xd7\x94\xd5\xd4\x9b\x93\xd5\xe5\x79\x3a\xe7\x38\xef\x33\x86\x73\xd5\xf2\xed\xa5\xd9\xe3\xf9\x60\x30\x1c\xc6\x95\xe5\xa8\x18\x0c\xf0\x94\x79\xd3\xb2\x54\x90\x47\x34\x65\x62\x32\x8e\xc2\xa9\x87\xd5\xaf\x37\x26\x77\xc4\x64\x27\x0a\x3c\xf5\x97\x66\x8a\xc8\x04\x77\x5d\x6c\x4e\x33\x6d\x5f\xce\xa6\x34\xf3\x79\x96\xb0\x94\x10\x9a\xd6\x53\x71\xe6\xbe\xc5\xcf\xfd\xfc\x32\xe3\x62\xd7\x1c\xc3\x34\x63\xf5\x11\x40\x53\xf6\xf2\xff\xcf\xdb\xbf\x6e\xb9\x6d\x23\x0d\xa3\xf0\xff\xbe\x0a\x8b\xe3\x87\x01\x5a\x25\xb5\xe4\x24\xf3\xbe\x61\x37\xac\xe5\xd8\x71\xec\x19\x3b\xf1\xc4\xce\x24\x33\x14\xed\xc5\x96\x20\x89\x31\x45\x2a\x24\xd4\x07\x8b\x9c\x3b\xfb\xd6\x77\x49\xfb\x16\xf6\x42\xe1\x40\x90\xa2\x9c\x3c\xcf\x7e\xf7\xfe\x61\x37\x45\xe2\x8c\x42\xa1\xce\xc5\xc3\xcc\xca\x09\x12\x0c\xea\x59\x8c\xaf\xf3\xe5\x7d\xfb\x46\xec\xdc\xa3\x99\xec\x90\xe9\x15\x94\xf4\x52\x52\xee\x52\x15\x6e\xf4\xd4\xd5\x29\x28\x78\x59\x9e\x21\xc4\x26\xe8\x9e\xed\x5d\xa7\xf9\xe2\xa3\x47\x01\xc7\xc0\x12\x48\x9c\x53\xba\x6d\x30\x65\x13\x99\x36\x8c\x20\x67\x13\xb4\x7f\xd3\xa1\xcd\xf2\xab\xf8\x32\x1f\x0e\x29\xc9\x18\x0f\xf3\x88\xaa\xbd\x40\xe1\x43\xa6\x9e\xc7\x7a\x6c\x20\x66\xc4\x0e\x00\xfd\xc3\xc3\x3c\x62\x6f\xf0\xc4\x91\xcc\x99\x42\x55\x21\xbb\x24\x3f\x57\x15\xe9\xb4\xc2\x3c\x8f\x52\xf0\x30\xe4\x60\xfb\x8b\xef\x3f\x93\x07\xd6\x34\xbc\xc2\xc3\x1b\xa8\x1e\x07\x4e\x8f\xea\x0d\xbc\x51\x87\xcb\xe9\x18\x0a\x4a\x95\xc9\x4f\xce\x26\x76\x62\xda\x37\x3d\xcc\x25\xe9\x2b\xa7\xd8\x19\x4f\xe2\x06\x38\x76\xee\x80\x7b\x87\x1a\xb2\xa7\x95\x59\x62\x1a\xa7\xad\x77\xb3\xfc\xf6\xfe\x5d\xbc\x96\xf0\x30\xeb\x7f\x8d\x51\x0c\xcf\x3d\x1a\x38\xd5\x7f\x97\x54\xdf\x5b\x9e\xf2\x85\xc8\x8b\x27\x69\x3a\x3b\x7e\x65\xab\x85\x11\x34\x44\x7b\x55\x09\xdf\x57\xf4\x89\xbc\x7e\xb7\xbc\x58\x73\x82\x6e\x77\x34\x70\xd0\xc9\xba\xb3\xff\x6c\x02\x4d\x02\xc4\xcb\xe2\x2a\xbb\x2c\x86\x43\xaa\x57\x11\x3d\xaf\xbc\x75\x9a\x5f\xc7\xe9\x77\x37\x71\xea\xc1\x40\x54\x95\xde\x5b\xd1\xfd\xe8\x5e\xc8\xd7\xae\xe8\xcb\x74\x96\x43\x0c\x25\xec\x21\x85\x05\x2c\x99\xd0\xb0\x6f\x4e\xd0\xf3\x22\x5e\x2b\xb7\x57\xd8\x49\x88\xdc\xb0\x09\xac\x9a\xa1\x6d\xae\x56\x97\x9b\xe1\x50\x5e\x06\x24\x67\x3c\xdc\x44\x54\x91\x70\x39\x6d\x05\x10\xb4\x64\x61\x4e\xa9\x5d\x87\x1d\xe4\x0d\x59\x14\xe6\x51\x90\x37\xde\xec\xdf\x6a\xc4\x9d\x53\x35\xd2\x98\xc5\x55\xd5\x26\x5c\x45\x97\xdc\x5d\x26\x37\x4a\xde\x49\x5e\x69\xac\x97\xd3\xaa\x0a\x3d\x0f\x3c\x2f\xa2\xe1\x34\xea\x5c\x49\x7b\xf6\x82\x87\x65\x54\x55\x2f\xf8\xf8\x83\x56\xa4\x40\x3c\x4e\xb2\x8c\x17\x2f\xde\xbd\x7e\xc5\xf6\x12\x33\x95\x7c\xbc\x11\xdb\xf4\x4d\xc1\x35\xa1\x94\xd3\xe1\x5e\x22\xa9\x05\xdb\x87\x93\xe8\x72\x31\x1a\x5d\xd2\x98\xc5\x63\xc9\x10\xe1\xc8\xce\x9c\x19\xc6\xe3\x85\x7c\x25\x11\x44\x49\x81\xc4\x6c\xa9\x6c\x9d\xb1\x20\x45\xb2\x5c\x5f\xf4\xcc\xf3\xd4\xb5\xb3\x53\x51\x13\xcd\xf4\xde\xf1\x3b\xc4\x2f\x72\x29\xf0\xc0\x2c\x3b\xb5\xe4\x9e\x5c\xe6\x6c\x17\x6e\x86\xc3\xe8\x12\xef\x65\x45\xc5\x64\xca\xa9\x35\x87\x4c\x92\x6b\x34\xf1\xfd\x44\x35\xed\xac\x73\x8a\x78\x2d\xcf\x44\x9c\x64\x25\xc9\x3b\xe8\x33\xa7\x10\xb3\x7b\xd2\x5e\xf7\x5c\x5e\xe6\x9a\xb3\x80\xd4\xf7\xd7\x24\xa6\x50\xa0\xdd\xed\x02\x47\x12\x87\x0b\x1c\xc9\x27\xb3\x87\xb8\xf5\x55\xe5\x79\xd4\xf7\x0b\x3b\x04\x7d\x4e\x97\x0d\x7c\xde\x34\x0e\xf1\x93\xe6\xed\x87\xe6\xed\xb4\x79\x7b\x4b\x34\xb1\xa0\xc5\x07\xe3\x78\x21\x79\x6c\x0d\x0c\xce\xc5\xde\x54\xf9\x8e\x38\x4a\x1e\x85\x2d\x62\x50\x6a\xca\x2e\x13\x29\xf9\xae\x2e\xf9\x5d\xa0\x48\x25\xab\xaa\x02\x0c\x6e\x51\x1b\x52\x4a\x86\x44\x50\xd9\x7c\x89\xcd\x8b\xb0\x8c\x20\x77\x10\x95\x8d\xfc\x91\xf9\xbe\x7a\x48\x66\x24\x61\x05\x64\xcc\x36\x15\xe8\x0f\x92\xa4\xe9\x86\x72\x28\x64\xe9\x0c\x32\x5b\x56\xff\x74\x46\x42\x61\x20\x09\xb4\x84\x26\xec\x83\xdd\xdd\x41\x62\x14\x12\x56\x1b\x2f\x0b\xe5\xbe\x4f\x62\x96\x00\x49\xfa\xe4\x1b\x68\x67\x92\xaf\xe4\xbd\x0a\xb1\x93\x50\xd9\x91\xa9\xd5\x74\xbc\xde\x27\x4b\x16\xe3\x9f\xaa\x22\xea\x41\xc2\xd2\x1a\x69\x4a\x2a\xa9\x55\x1e\x2f\x36\xc4\x21\x78\x24\xe9\x29\x49\x57\x0c\x3a\x82\x2d\x0a\x48\x20\x93\xf4\x96\x83\xa4\xee\x5a\xdc\x9c\xc4\x9d\x9e\x88\xaf\x53\x2e\x81\x27\x21\x53\x49\x5a\x38\xdc\x94\x08\x84\x73\xa0\xc0\x13\x85\x27\x31\x2d\xf1\x1e\x0b\x79\xaf\x7b\xc0\x69\x38\x89\xaa\x8a\x07\xce\x75\xf1\x63\xcb\xff\x18\x25\x10\x5a\xa6\xd5\xa5\x49\x3d\xf9\xd1\xa3\x74\xe8\x5d\x78\x43\x55\x14\x9c\x86\x9e\x34\x5c\xf1\x43\x8d\x72\x54\xa1\x86\xfd\x9f\xe9\x0e\x44\x38\x8d\x02\x43\x24\x1c\x75\xe0\x36\xfa\xb6\x13\xa2\x1e\x2c\x86\x96\xa0\x8a\xf6\x33\x0d\x15\x7e\x48\x56\xe4\x0d\x1f\x6f\xe2\x12\x35\x48\xc8\x4f\xe7\xf2\xa2\x57\x71\x10\x70\x0f\x99\xbe\x38\xf0\x3c\xa7\x2c\x57\xbb\x50\x52\x7a\xd0\x92\xb8\x78\xbc\x89\xb3\x65\xca\x21\xd6\x9f\xd8\xa1\x46\xc8\x4e\x24\x64\xa7\x78\xb4\xd5\x9d\x94\x86\x49\xd4\xbd\x96\xda\xdb\x0a\x09\xc8\x42\x61\x11\x51\x49\x53\xb7\x06\x56\xb2\x8f\xee\xc0\xf6\x8a\x19\x11\x3c\x5b\x92\x43\x0d\x25\x85\x8f\x66\xa0\x7b\xea\x32\x4a\x6f\x5a\xde\xce\x27\x78\xfa\x33\x0f\xe3\xe4\x69\x82\xe7\xb9\x21\xfc\xd5\x76\xcc\xc4\x78\xb1\xe1\x8b\x8f\x7c\xc9\xb8\x79\x0a\x74\x05\x45\xaf\x78\x12\xa9\xc6\x05\x8f\xf1\xb7\x24\x0d\x4d\x34\xf7\x7f\xc6\xe9\x9e\x33\xde\xfa\xe9\xc0\xeb\x47\xc4\x2a\x78\xa5\x0a\xf6\xab\x3e\x2f\x61\x04\x3a\xfe\x7b\xfb\x7a\x9d\xc0\xce\x5e\x9e\xb0\x61\xbb\xd1\x14\x56\x4c\x84\x93\x08\xb6\xac\xcd\x78\xae\x90\x4c\xdf\x56\xd5\xee\xf1\xd4\xf7\x8f\x30\xc2\xca\xf7\x07\xb1\x9e\xca\xd3\x34\xcf\xb8\xef\x7f\xaf\xa7\xbc\xb2\x5a\xc8\xee\x11\xd4\x9c\x5d\xce\xf8\x98\xff\x4e\x0a\x7a\xb6\xf5\x7d\x22\x7b\x67\x2b\xc7\x1c\xbb\x80\x1c\x6f\x3c\x42\x29\x85\x8f\x24\xd7\xb3\xab\x71\x40\x3b\x84\xaf\x6b\x22\x80\x87\x93\xa8\x73\x5d\x0c\xa6\xc0\x21\x91\x10\x97\xbb\x87\x12\x51\x8e\x73\x0f\xea\xf9\x63\x4b\x31\x85\xb8\xaa\x12\x7d\xcb\xef\x19\x29\xe5\x3a\x6c\xe3\x1d\x91\x17\x57\x73\xcf\xfc\x48\xa9\x81\xbb\xe5\xd5\xee\x52\xa2\x98\x94\xe5\xb0\x1c\x30\x26\x1b\x52\xd7\x18\xc6\x6f\x49\x61\x80\x21\x6b\x60\x8f\xb7\xa0\xba\x88\x4b\xb8\x27\x69\xd3\x1c\xa5\xa0\x43\x28\xf0\x70\x19\x41\x0a\x4b\x9c\xdc\x5e\x5f\x62\x65\x68\xc6\x38\x9a\x76\xe7\xa8\x47\x57\xc2\x13\x2a\xf7\xf3\x72\x79\xb5\xd7\xa3\x29\x65\x53\xe6\xce\x4b\xdd\x3b\x6f\xd0\x9c\xc7\xb4\x4d\x9c\xe1\x10\xed\xf5\xbb\x80\x54\x1e\x93\x74\x5c\x16\x0b\x49\x2e\x7e\xe0\x37\x71\xfa\x73\x91\x62\x29\xf3\x43\x7d\xa6\x41\x21\xfb\x68\x08\x01\xcb\x80\xff\x83\xa3\x41\xf3\x82\x5a\xd6\xcb\xc1\x2d\x4f\x0d\x87\x6f\xa8\x3f\xc9\x68\x88\xb6\x64\x88\x06\x5c\x32\x1e\x97\x0a\x23\x92\x4c\x51\xdd\x48\x9f\x17\x55\x25\xf1\x6f\x66\xf1\x4f\x55\xe1\xba\xf3\x18\x63\x57\x92\x7b\xe4\x95\x32\x87\x2b\x92\xcc\x49\x7b\x92\x59\x97\x45\xa3\x92\x84\xb8\x97\xcc\x81\xdd\x9e\x56\x13\x2d\xc6\x2a\xa3\x7d\xf4\xff\x4f\x3d\x6e\x43\x50\x32\xcd\xac\xea\x0a\x04\x99\xdb\xbf\x61\x04\x11\x79\xc9\xca\x83\x4e\x62\x86\xa6\x0a\x6f\x8a\x7c\xc7\x0b\x71\x8f\x87\x9b\x08\x5a\x55\x92\x9b\xa6\x6a\x7a\x66\xe4\x5d\xe6\x92\x53\x79\xf3\x31\x97\x27\x96\xd7\x70\xcc\xc7\xbb\xe4\x8e\xa7\xaf\xe3\x62\x9d\x64\x3f\x25\xeb\x8d\x20\xd4\xf7\x7f\xd5\x90\x11\x53\xdf\xff\xb7\x15\xca\x21\x4d\x51\x8e\x6f\x93\xa5\xd8\x48\x26\x73\xbc\x4d\xb2\x5f\xf0\x47\x2e\x7f\xc4\x77\xea\x47\xf3\xde\x79\x6b\xea\xb1\x18\xe4\x34\x6e\x75\x49\xf5\x2e\x73\xeb\x24\xe0\xd4\xca\x29\x05\xcb\xdb\xc4\xb3\x78\xe8\x79\x41\xdc\xac\xe5\x6b\xf7\xfe\x3d\xac\xb9\x08\x3a\xc1\x5c\xb8\x35\x73\x50\x16\x14\x6b\x2e\x98\xa0\xfd\x84\xc2\x99\xbe\x61\x4c\xc1\xda\xc1\xea\xbf\x35\x97\xa7\xe2\xad\xe5\x26\x94\x21\x77\x63\x8d\x90\xee\xb7\xae\xfd\x05\x97\x37\x54\x2e\x1a\x32\xc7\x00\xb6\x60\x88\xa0\x5a\x51\x4c\x86\x4d\xb0\x11\x28\x58\x22\xec\x4d\x26\x49\x78\xc9\xc2\x70\x96\x48\x06\x6a\x28\x68\xbb\xd5\x9a\xc8\xbd\xe6\x14\x44\x33\xfc\x77\x6d\x0b\x0d\x23\x68\x69\xac\x02\x32\x15\x17\x74\x1b\xdf\x91\x09\x64\xe1\xa3\x68\x44\x8a\xaa\x9a\x50\x3a\x24\x19\x0a\x76\x50\x88\x13\x38\x4d\x3e\x73\xf9\x33\x7d\x79\xb0\x89\xe6\x92\x0b\x4c\x1b\x30\xf3\xae\xf3\x62\xc9\x0b\x2f\xf0\x16\xea\xe0\x7b\x74\xf6\x55\xe0\xe1\xa6\x2b\x7f\xa3\x69\x20\x19\xea\xaf\x2e\xf3\x21\x7b\x44\xbd\x2d\x42\xa1\x11\x03\xc4\x43\x66\x25\x41\xc5\xf0\x9d\x64\xb1\x25\xba\x44\x3b\x9f\x19\xb1\x4d\x9a\xd2\xa3\xa6\xb4\xb7\x8b\x97\x4b\x79\x05\xb5\x6b\x99\xf6\x07\x3d\x35\xf4\x48\x55\x85\xa1\x87\xd0\xe7\xe9\x8a\x34\x68\x8d\xa5\xb7\xf5\xe6\xed\xe0\x78\xf4\x9f\x6f\xdd\xec\x81\x03\xd7\x3f\x74\x70\x04\x43\x4c\x00\x39\x53\xc8\x03\xaf\x2d\xdd\xe8\xe8\x3a\xbf\xd3\x4c\xab\xed\xec\xee\x6d\xf2\x49\x0e\x45\x5e\x72\x89\x6d\xff\x57\xcb\xa6\xce\xf2\x80\x64\x2c\x96\xa3\xe4\x63\x5b\xfc\x27\x9d\x85\x98\xd0\xaa\xca\x51\x7e\x8a\xa8\x42\xe2\x16\xf0\xe2\xbd\xc8\x3d\x4d\x8e\x4b\xe6\xd9\x53\x21\xfb\xbc\xa1\x38\x86\x5c\x61\x21\x37\xa2\x40\x72\xe6\xd8\x42\x48\x26\x77\x42\x87\x1a\x78\x24\x4a\xea\x03\x12\x04\xaa\x21\x82\x5c\xb3\x26\x2f\x7b\x6c\x61\x32\x7e\xfb\xe0\xa5\x13\x4f\x3b\xc9\x12\xe1\x14\x6b\x2a\x3f\x97\x24\x3d\x06\x0c\x94\x17\xfc\xc3\xf1\x26\x59\x2e\x79\xe6\xfb\x12\x61\xff\xbe\xe7\xa5\x78\x92\x25\x2a\x1e\xd4\xf3\x42\x89\x5b\x7a\xdf\x93\xe7\x34\x40\xb2\xef\x5d\xb2\xe5\xf9\x5e\x90\xe7\xf2\x8e\x5d\xdd\x8d\x93\x4c\xf0\xe2\x26\x4e\xa9\xfe\x2d\x92\xc5\x47\xe2\x8a\x33\x5e\x11\x37\x8a\x50\xd3\x80\x83\xaf\x62\xa1\xf9\xa3\x9a\x42\x8c\xb8\x04\x0d\x25\x9a\x36\x3e\xb5\x93\x61\x4c\x20\x61\x87\x0d\x97\x38\x3b\xe0\x8a\x06\x16\xfa\x48\x65\x57\x5f\x5d\x66\x43\xf6\x68\x24\x68\x12\x1a\xb0\x1f\x92\x82\xbd\xe3\x61\x16\xd1\x88\x25\x61\x03\xc5\x45\xc4\x2c\xc7\x25\x97\x28\x19\xe7\xbb\x78\x91\x88\x7b\x96\x68\xfc\xcc\x5b\x42\xcc\x17\x7d\xf7\x32\xf9\x76\x8c\xc9\x44\x78\x51\xa2\x68\x37\x8c\xa8\xbc\x8c\x16\xb1\x70\xbf\x78\xe7\x5e\x44\xb5\xa4\x30\xe9\x4a\x0a\x51\x48\x9f\xd8\x44\x61\x05\xc8\x5b\xab\x71\x06\xb2\xfd\x7f\x7b\x74\x81\x62\x7b\xdf\x8e\x77\x46\xec\x61\x28\x22\x40\x02\xed\x19\x5f\xf1\xa2\xe0\x4b\x42\xc7\x71\x7a\x1b\xdf\x97\xee\xa2\x6b\x9c\xbf\x1f\xf3\x94\x6f\x6b\x49\xe7\xb7\x6f\x10\xc3\x94\x0e\xa6\x0e\xb6\x8e\x45\x55\xbd\x42\x0b\x38\x07\x6b\xa6\x4a\xf4\x2b\x37\x76\x98\x5a\x83\x92\x91\xa0\x90\xb1\xe9\x88\x14\x17\xcd\x4b\x79\x06\xf4\xa8\x53\xb5\x38\x65\x77\x31\xcc\x7b\xb9\x1c\xc5\x3e\x23\x99\x3d\xc6\xe5\x38\xcb\x45\xb2\xba\xff\x25\x11\x1b\xc2\x21\x4c\x25\x57\x1a\x51\xc8\xae\xa6\xbe\x1f\xcf\x8a\x80\xc4\x55\x75\x5c\x68\x0a\x93\x88\x42\x39\x2e\x78\x99\xa7\x37\xdc\x7e\x88\x24\x33\x4e\x6b\x48\x59\x69\x94\x4e\xe4\x20\x17\x23\xe0\xb0\x93\x17\x59\xd0\x62\x7c\x04\x85\x7c\x27\xdc\x97\x83\x09\x1c\xca\x1d\x5f\x24\x71\xfa\x5d\x5c\x26\xd9\x3a\x38\xd4\xc0\xd5\x93\x2c\x85\x4f\x56\x66\x55\x43\x41\x21\x2f\x92\x35\xba\x6e\x28\x4a\x26\xe1\x65\x20\xec\xcb\x1f\x77\x72\x89\xca\xa0\x00\xbb\x9e\x81\x59\x70\xb3\x80\x41\x61\xd7\x12\xd4\x3a\x05\x61\x04\x5a\x06\x25\x7f\x37\x74\x80\x73\xed\x95\x7c\x8c\x1f\x09\x87\x74\x2c\x67\x81\x88\x42\x3d\x8e\x5b\x53\x40\x10\xd6\x1f\xd4\x04\xec\xf2\xdb\x0d\x43\xd1\x50\x46\x21\xab\xa1\x14\xf9\xce\xe9\xd1\x70\x7f\x92\x09\x15\xb3\xce\x0e\x07\x18\xa9\x35\x71\x8d\x2f\x15\xfb\xca\x06\x13\xcb\xa6\xda\xdd\x2f\xd4\xee\x4f\x1d\x1e\x9d\xfc\xf9\xbd\x05\x11\x51\x1a\xc8\xf7\xbf\xf1\x85\x68\xbd\x56\xc6\xaf\x35\x85\x05\x4b\xc7\xb8\xcf\x38\x8a\x1e\xe3\x0b\xc3\xd6\xbb\x21\xb5\xf0\xa8\xca\x1b\x27\xde\xf2\x14\xb1\x7e\x41\x25\x71\x1e\x66\x11\xe4\x2a\xdc\x16\xca\xf3\xc6\x49\xa9\xe5\x7a\x28\x7e\x67\x79\x38\x35\x05\x58\x1e\xca\x41\x17\x03\x14\x34\x11\x54\x34\xe4\xa0\x8f\xa3\x2c\x80\x12\x48\x75\xab\xbd\xc8\xf3\x8f\xa5\x44\x5c\xbe\xef\x29\x85\xa0\x97\x64\x0f\x62\x7a\xc8\x59\xac\x35\x84\x24\xa7\x4d\xe5\x2c\x6a\x06\x9b\x53\x35\xe6\xaa\x22\xba\xdb\x22\x02\x49\x38\xb1\x44\xab\xce\x04\xea\x38\x6a\xc9\xd1\xf4\x80\x02\x6d\xe3\x27\x17\xcb\x58\x54\x95\x02\x07\x53\xdb\x62\xac\x36\x8b\x9c\x8d\x25\x90\xa0\x60\x81\x8f\x3f\xfc\xbe\xe7\x7b\x8e\xb3\x22\x29\x62\x1e\xd3\x35\x7e\xa0\x58\x56\xce\x7d\x57\xe4\x77\xf7\xba\x2e\x20\xbb\x72\xd6\xb4\x2e\x59\xbb\x05\xbc\x00\x75\xe9\x38\x7d\x99\x69\xc8\xe3\x43\x7d\xdf\xfd\x69\xf4\xc2\x29\x05\xdc\x76\x0c\x57\x6b\x2a\x98\xdf\x5a\xd5\xac\xdf\xca\x67\x33\xbc\x45\xbe\xdd\xc9\x35\xd6\x4a\x68\xfd\x56\x3e\x5b\xdc\xaa\xdf\xa9\x5f\xcd\x75\xb8\xe5\x05\x69\x70\xc6\x1e\x0c\x8a\x89\xb3\x64\x1b\xa4\x80\xf3\x0e\xdc\x45\xa8\x29\x85\xb4\x41\xfa\xbf\x37\x62\x30\x9b\x99\xf7\x3b\x49\xe8\xca\x8b\xe6\xb7\x3c\xc9\x88\xf7\xc0\xa5\x16\x7e\x6e\x89\xcd\x5c\x39\x99\xbc\xf4\xdb\x72\xb3\x45\x1a\x97\xa5\x47\x25\x03\xdc\x34\xf0\xcf\xae\xaa\x3e\x59\x91\x36\x4c\x0b\x54\x0f\xa0\xd4\x42\xb8\xe9\x9a\x25\x79\x52\x55\x37\xc2\x6a\x73\xe5\x69\x4a\x68\xf0\x4f\xc2\x87\x5e\xe8\x0d\x8f\x25\xb8\x89\x92\xb4\x0e\x58\x32\x13\x01\x7a\x0c\x47\x1e\x24\xd8\x79\xdd\x88\xbf\x8b\xaa\x32\x35\x07\x8d\x92\x42\x50\xaa\x4e\xab\x2a\x67\x25\x61\x82\x9a\xfe\x12\x6c\x4e\x84\x49\xa4\x5a\xb4\x53\xfc\xc5\x59\xa3\x36\xbe\x3c\x36\xe7\x50\x56\xc3\x20\x98\x77\xae\x73\x76\xc8\x5b\x7f\x02\x79\xd7\x38\xa5\xbd\x37\x72\xd5\xda\xc0\x59\x50\x14\x5c\x5c\x66\x2c\x0f\x13\x14\xbd\x7b\x43\x95\x27\x6c\x12\xcd\x48\xc6\x32\x4b\x3c\xa2\x8e\x0a\x14\x66\x50\x1e\xd8\x72\xaf\xf7\x19\x86\xf3\x24\x98\x8b\xb2\xf3\x0d\x51\x72\xe1\x4a\xe3\xfe\xd5\xec\xa2\x63\x82\x53\xaa\x3d\xdd\x5b\x07\x88\xb0\x8c\xd8\x60\x02\x66\x3b\x95\xa6\x25\x6c\xa5\x59\xd6\x75\x52\x56\xea\x40\xdc\xc6\x64\xa8\xbb\x54\x69\x55\xc5\x55\x95\x87\x69\x34\x8b\x67\x03\xb2\x67\xa9\x51\xcf\x05\x44\x8c\x97\xb1\x88\xdf\xdd\xef\x78\x69\x27\x92\x52\x48\xe4\x7f\x03\x8c\x2a\xb9\xaf\x95\xd4\xeb\x50\x43\xcc\x38\x63\xec\x27\x61\x75\xc0\x6e\x75\x89\x3c\xab\x6a\x90\x23\x49\xe5\xfb\x09\x91\xfb\xd2\xcc\xfb\xef\xdd\xd4\xa1\x25\x1f\xc7\xbf\xc5\x77\x6f\xb9\x10\x49\xb6\x2e\xc7\xab\x34\x16\xfa\xa6\xad\x2a\x2d\x41\x2d\x14\xdc\x58\x7e\x5b\x62\x49\xdf\x27\x24\x09\x8b\x68\xc6\x83\xac\xaa\x48\xc6\x0e\x35\xa5\x18\x41\x51\xa2\x68\xcb\x3e\xa2\xd8\xa4\x21\x08\x38\x64\x14\x38\x4e\xe5\x7b\x16\x46\xf0\xd0\xb1\x65\x83\x7f\x30\x95\x8a\x48\xcb\x32\x14\xe9\xfe\xe3\x0a\xfe\xcd\xbe\x57\x7b\x0f\xbf\xb2\xef\x35\xf1\x08\x7f\x63\xdf\xe3\xb6\x02\xe7\xec\xfb\x71\x92\x2d\xf9\xdd\x8f\x2b\x10\x5c\x2e\x50\xc1\x99\xe0\xd6\x1a\x1d\x32\xfc\xb9\x89\xcb\x1f\x6f\x33\x23\x23\x81\x84\xb3\xcc\x29\x93\x73\x96\x68\xcb\x20\x35\x08\x0a\x31\xb6\x55\x9e\xc8\x94\x26\x39\x0c\x89\xc3\x32\xcb\x5b\xd0\x1a\xf6\x9c\x5d\xbc\x0f\xe7\xe5\x7c\xff\xfc\xbb\xe7\xcf\xe7\x77\x4f\x26\xd1\xb0\xea\xfc\x7e\x78\xb1\x86\x54\x96\x1b\x6d\xcb\xd1\x05\x2c\x38\xbb\x18\x91\x30\x1e\x7d\x8a\xe8\xc5\x1a\x96\xa7\x12\xb3\xb5\x59\xa9\xfa\x0c\xfb\xd6\x57\x81\x36\x40\x3c\xfc\x86\xfa\xdc\xc0\xfb\x72\xfc\x68\x3c\xf5\x60\x91\x67\xa5\x28\xf6\x0b\x91\x17\x41\xc9\xc1\x90\x19\xa0\x03\xc5\xf6\x98\x71\xfc\xdb\xf1\x50\xae\xa1\x25\x36\x39\x4e\x18\xe2\x16\x0e\xf8\xd5\xc4\x38\xc0\x28\x87\x10\xec\x4c\x45\xdd\x41\x9b\x58\xb9\x57\x6f\x45\xbc\xf8\xd8\xe3\x72\x6b\x25\x9c\x58\xd5\x19\x36\x26\xa6\x6c\x32\xac\xed\x0a\x7e\xa3\xb3\x55\x29\xcd\x8b\xa4\x27\x17\x9b\xbe\x41\x5a\x04\x8c\x9e\x81\xb4\x86\x6d\xbc\xeb\x2b\x87\x3d\xda\xb1\x11\x7d\x7b\xb6\x2d\x18\x5b\xce\xc8\x36\x68\xad\xdc\x70\x4a\x6b\x40\xc8\xec\x59\xcb\x4e\xcb\xff\xee\x97\x2d\xd1\x1a\x50\xc8\x7c\xaa\x01\xfe\x3b\xba\x49\xa7\xf1\x67\x8b\xa0\xdb\x23\xff\xbd\x67\x69\x9d\xcd\x80\x82\x0d\xf9\x90\xe0\x4e\x05\x93\x76\xfa\x85\x66\x9c\x05\x7a\x7b\x15\x57\x62\x86\x21\xa4\xc2\x22\x8a\x82\x30\x92\xcd\x67\xcb\x93\xb3\xb4\xfb\xa2\x83\xda\xb5\xb6\x50\xed\x7d\xf0\x37\x28\xf3\x42\x04\xdf\x63\x9e\x3c\x28\x77\xb8\x6c\xdf\x8f\xd5\x43\x0d\x16\x4d\x30\x75\xaa\xf4\x8f\xd3\x0e\x6e\x10\x33\xbb\x8c\xa8\x1d\x93\x87\x95\x4d\x61\xdf\xbc\x36\x13\x4f\x99\xe6\xd2\xbc\xeb\x3c\x4f\x79\xec\x98\x39\xc7\x28\x77\x8f\x5b\x8d\x95\xba\xb1\xe1\x90\xc2\xd1\x95\x1c\xa3\x38\xd5\xb9\xb7\x62\x25\x40\x3d\xd4\x14\x4a\xc6\xd8\x1e\xd5\x92\xb8\xcb\xe5\x68\x44\x2f\xcb\xab\xfd\x65\xa9\x89\x44\x25\x8b\xe6\xad\xae\xd4\xad\x27\x14\xf9\x5c\xb0\x38\x14\x11\xc4\x03\x4c\xae\xa9\x6d\x0d\x49\xea\xfb\x99\xa2\x0f\x93\xf2\x4d\x1a\x27\x99\x5a\x6b\x92\xc9\x9e\x13\xd6\x26\x3e\x32\x4a\xe9\x8c\xa0\x66\x76\x30\x85\x9c\x15\xbe\xdf\x2e\x50\xd0\x59\x21\x77\x34\xc0\x6f\x47\x8d\xe2\x67\x79\xc9\x84\x22\x72\x54\x5b\x29\xe4\x92\xce\x6c\xec\x49\xe4\x88\xb0\x4c\xe6\x0a\xaa\xc0\xe1\x09\xb5\x85\x5e\xa0\xed\x8d\x25\x7d\xa3\x10\x93\xf6\x6c\x95\x1f\xb7\x84\x36\x31\x57\x2e\xe6\xcf\x2e\xd6\x28\xf7\x4f\xca\x9f\x78\xbc\xbc\x0f\xe4\x8d\x51\x14\x79\xd1\x02\xec\xae\x3d\xb3\x3c\xdd\x59\xee\x32\x5a\xf4\x50\x43\xb3\x43\x3d\xc7\xde\xb5\x77\x77\x8c\x7d\x65\x2d\x65\xd3\x7b\x0a\xef\x0d\x98\x24\x13\x51\x06\xa6\x8c\x9d\x65\x95\x1f\xf6\x5b\x5e\x24\x8b\x7e\xc4\xd6\xb6\x23\x26\x8d\x49\x30\x1a\x08\x5b\x8d\x18\x93\x04\xf9\x40\xe7\x4d\x19\xb9\x4e\x42\x14\x87\xe5\x6c\xd1\x71\x3f\x50\x34\x39\x4f\x79\x55\x79\xa1\x02\xda\x07\xaa\x7c\x84\x92\x47\x6e\xcc\x45\x25\x44\x0d\x88\x60\xff\xd0\x8e\xcc\x47\xa6\xff\xe8\x60\x61\xd0\x9c\xe7\x1c\x65\x8f\xfa\xbe\x70\xcf\x36\xf5\x7d\x73\x69\x16\x94\x31\x96\xab\x25\xfc\x6e\xbb\x13\xf7\xa7\xc6\x7a\xe6\x82\xbb\x91\xa0\x58\x7b\x09\x90\x43\xf8\xdc\xa5\xc3\x87\x9e\x17\x1c\xe7\xf4\xec\x9b\xc7\x03\x3e\x13\x3c\x6c\x26\x1e\x35\x64\x72\x60\x4a\xd4\xd0\x28\xb2\xda\xdd\x22\x38\x58\x36\xb6\x6f\x48\xdc\x02\x6e\xca\xc1\xdb\x96\x23\x27\x7c\xd0\x82\xc3\x12\x7d\x92\xda\xd7\x53\x43\x7a\x25\x0c\xd9\x7d\xd9\x9e\xd6\x4c\x5b\x73\xa4\xe4\xaa\xf0\xfd\x81\x32\x11\xd0\xea\xbd\x24\x82\x04\xe4\x1f\x7a\x99\x0c\x87\xf4\xb2\x4d\xd1\x23\xdb\x3d\x50\x3a\xf5\xa3\x0a\xf4\xba\xe0\xf1\xc7\x46\xdd\x04\xa2\x48\xb6\x9f\x5b\x61\xcf\x0b\x74\xd0\x0e\x33\x99\x3d\x57\x46\x9d\xdb\xf8\x23\xef\x50\x0e\xae\x4a\x1b\xc9\xfa\xee\x59\x21\x99\xa6\xa7\x30\x11\x93\xbd\xe8\x8b\x23\x53\xda\x07\x7c\x16\xf2\x28\xe0\x34\xf8\x9b\x11\xf3\x71\x4a\xa1\xa8\x41\x9b\x00\x05\x27\x3c\x64\xd4\xb8\xc5\x6c\x34\x0d\x1c\xdb\x6e\x28\xe4\x80\x65\x5f\x9d\xc1\x36\xe6\x69\x43\xa3\x3a\xd1\x22\x53\xbb\x01\xd9\x55\x81\xc1\xb3\x38\xf2\x21\x28\xbc\x68\x12\x3d\xaa\x32\x2c\x01\x09\x3b\x05\xdf\x1d\x0d\xcb\x0a\x3f\x25\x7d\xab\x38\x21\xab\x2c\x8f\xd9\xa0\xb8\x4c\xae\x72\xdc\xc5\x81\xd0\x1b\x45\x07\x8c\xc5\xbe\x9f\x29\x36\x05\x77\xcd\xae\x63\x97\x70\x69\x04\x9c\xea\x0a\x9c\x40\xc9\x14\x37\x65\x41\xc9\x99\x49\x7c\x95\x5c\xc6\xd6\x24\x91\xe4\x4c\x76\x19\x47\x10\xab\x4c\xcc\x65\xdb\x92\x0a\x4d\xd4\x14\x40\xfd\x61\x05\xa3\x3a\x68\x4c\x05\x90\x62\xdc\x27\xcb\x60\x0a\x28\x9d\xe8\x05\xfb\x0c\x90\x5f\x3e\x4e\xf3\x82\x6c\xa4\xbc\xf0\x40\x30\x0e\x9c\x15\x5d\xd9\x85\x23\xf1\x65\xff\xee\xfa\x18\x3e\xa2\x90\xf4\xf8\x5a\x19\x67\x3a\x4d\x96\x40\x66\x24\xcf\xdd\x06\x30\xdb\x72\xa2\xcc\x7f\xb8\xfb\x07\x2f\x7b\x65\x0d\x04\x89\xbc\x66\x6e\x03\xe3\xa9\x08\xe5\x7e\xb7\x93\x14\x4d\xcc\x6b\x0a\x3d\xe8\xe7\xed\xfd\xf6\x3a\x4f\xd5\xc5\xbd\xca\x42\xf5\x73\x9c\x08\x5e\xc4\x22\x2f\x22\xf6\xfd\xd1\x2b\x6a\x19\x4d\xef\x5b\x45\xa8\x3c\x50\x46\xd1\x0f\x14\x97\xf2\xe0\xb9\xb5\xd9\x91\x27\x02\x9d\x24\x75\x34\x30\x8d\xeb\xd5\x95\xa8\xbb\xf6\x90\xb8\x12\x28\x00\xe9\xf8\xe3\x08\x1e\xda\x5b\xc2\x1b\x8a\xa1\x17\x79\xd1\x91\x37\x89\x62\xe7\x77\x6d\x77\x71\xcb\x49\x8a\x23\xeb\x71\xc7\x48\x64\x87\xf1\xbf\x3a\xaa\xe6\x15\x13\xb3\xc6\xea\x27\xf8\x06\x03\x86\x69\x5b\xed\xe3\x84\x21\x55\x25\xef\x32\x89\x06\x57\xbe\xff\x8d\xfa\x83\x86\x53\x2b\x03\x08\x05\x86\x0d\x93\x84\x08\x91\x0d\xb7\x3a\xab\x2a\x11\x7c\x92\x07\xeb\xb5\xef\xff\x44\x04\x05\xf4\x2e\x7a\x0d\xef\x28\x4a\xef\xa7\xba\x5d\xb2\x67\x5b\x63\xf3\x44\x29\xc5\x68\x79\xfb\x70\x1a\x61\xa1\x6f\x98\xec\x0c\xd5\xc5\x92\xa4\x73\x0c\x6d\xbf\xbd\x7f\xb9\x24\x49\x93\xf6\x0a\x47\x12\x8f\x93\x25\x1a\xaf\x99\x97\xea\xb0\xc4\x12\x89\x19\x51\xcd\x0e\xa9\xc3\x5d\x4f\x53\xbe\xff\x9c\x08\x88\xa9\xef\xff\x51\x3b\x72\x40\xfb\xf0\x51\x64\xbe\xff\x43\x43\x79\x01\xa2\xdf\x16\x18\xf1\xa8\x1c\x21\x4e\xee\x4b\x49\x53\x7e\x68\x97\x7c\x9a\xc6\x65\xa9\xbc\x8d\xc4\x89\x2f\x7f\xd8\x9b\x2d\x89\x01\x17\x8a\x3a\x59\x91\x0f\xe3\xdf\xcb\xd8\xf7\x07\xff\x0c\xf9\xd0\x7b\xe0\x45\x92\xf2\x78\x56\x55\x83\x67\x36\xa2\x9b\xda\x0c\xdc\xd4\x1d\x13\xb0\x60\xbc\x49\x05\xd5\x88\xb4\x4e\x59\x4b\x29\x64\x4b\x4a\xb5\x37\x8e\xe0\x2e\xc1\xb4\xed\x25\x2b\xed\x1d\x76\xc3\xe1\x03\xa7\x81\x18\x97\xdd\x82\x50\xb2\x57\x14\x72\x46\x52\xf6\x23\xe6\x65\x31\x0a\x97\xd1\xe8\x92\xa6\x68\xff\xfd\x17\x6f\x58\xca\x09\x0c\x37\x24\x45\xe3\xed\x05\x4b\xb5\x6c\x11\x3c\x0a\x3b\x76\x6f\x3d\x34\x7c\x7f\x49\x5c\x83\x7a\x5a\x55\x42\x2e\xc5\x82\x3a\x76\x9e\xcd\x1a\xee\x8e\x4d\xb0\x17\xb8\x7a\x8d\xe9\xe7\x2a\xc9\xe2\x34\xbd\x3f\x48\xe6\xe2\x95\xdc\x9f\x23\xeb\x3b\x39\xdb\xba\x36\x86\x32\x6f\x49\x43\x98\xe4\x1c\xbc\x87\x53\x8f\xea\x83\x5a\x3b\x9e\x77\xce\x49\x96\xd7\x71\xe6\x48\x1a\x94\xb4\x4c\x4e\x98\x3e\xbe\x1d\x2f\xe2\xc5\x86\xbf\xd2\xc6\x4e\x56\x92\x2e\xc6\x4a\x48\x45\x23\xe0\x21\x96\x8d\x58\x56\xdb\x1c\xea\xc7\xd6\x2d\x2d\xca\x29\x7c\x85\x62\x35\xde\x72\x7f\xb3\xd9\xfb\xba\x26\xd1\xab\x84\xa7\xcb\x92\x0b\x8f\x9e\x35\x8b\x38\x18\x70\x22\x5c\x2f\x25\x6b\x5c\xab\xd7\x4b\xb4\x0c\x78\x3e\xe7\xe4\x20\x30\x2d\x5b\xdd\xf1\x9e\x73\x49\x05\x6e\x30\x69\xe5\x51\xc8\x58\x93\xa6\x5d\xc2\xc8\xed\x38\x16\xa2\x78\x81\xc6\x87\x98\xa2\x3d\x62\xe2\xc8\x7f\x4c\xd3\x48\xbe\xcf\x65\xfd\xae\x1f\x92\xfa\x2d\x9c\xdf\x26\x05\xc8\xcb\x6c\xc9\xef\x46\xc2\xfd\x85\x97\x7d\x3b\xea\xa2\x92\x9c\x16\xac\x18\x67\xfc\x4e\xbc\x4d\xae\xd3\x24\x5b\xa3\x35\x48\x81\xac\x85\x2a\x3c\xb2\xb9\x7f\xf8\x6c\x1a\x8c\xa6\xfd\xbe\x6a\xae\xba\x4a\x73\x4b\xd6\x26\xf1\xd4\x41\x94\xeb\x8b\x22\x28\xc6\x78\xdd\xf1\x75\xeb\x69\xf6\x0f\x6c\x20\x0d\xab\xd4\x98\x42\x56\x95\x77\xbd\x17\x42\xf1\x6b\xc5\xa9\xee\xd2\xcf\xcf\x62\x95\x17\x5b\x2f\xc9\x1e\xc8\xbb\xc2\x05\x0d\x4d\x39\x2f\x93\x32\xbe\x4e\xf9\x72\xe6\xa5\xf1\x35\x4f\x55\x49\xe7\xd9\xa9\xd3\x6a\xc0\x56\x94\xa3\x09\x44\xf7\x67\x52\x3e\x73\x5e\x54\x95\xfb\x66\xc0\xd8\x80\xfb\xfe\x77\x12\x92\xfb\x6a\x3b\xbd\xcb\x29\xbb\xdf\x5a\x1e\x78\x0e\x11\x4f\x8e\x27\xfe\x40\xb0\xa1\x00\xe7\x8b\x92\x7a\x6b\xe0\x4e\x24\x7d\x2a\xe9\x37\x03\xd4\x20\x94\xed\xa3\x21\x21\x25\x88\x17\x61\xc2\xf2\x30\x8e\x24\x06\x2f\xc2\x24\x62\x03\x92\xc9\x3f\x05\x72\x18\x75\xcb\xf4\x79\xe9\x1e\x74\xdf\xff\x03\xff\x15\xdf\xe7\xae\xeb\x9e\xc4\x77\x8e\x7b\x5a\x33\x4c\xc1\x26\xd0\xf0\x48\x90\x31\xcf\xbb\x14\x57\xc5\xa5\x90\xd4\xed\x10\x29\x47\x15\x9b\xe9\xec\xd8\x2e\x60\xd5\x49\x57\x35\x5e\x26\x92\x01\x13\x78\x58\x20\x67\x49\x55\x65\x10\xa3\xfd\x6c\xb3\xad\x68\xd3\x02\x25\xfb\x76\x38\x6c\x04\x90\x28\xaa\x9b\xb9\x82\x41\xe3\x84\x72\x29\x90\x4f\xc0\x33\xd7\x3e\xcb\x55\x15\x5b\x13\x2c\x5d\xe3\xcc\x22\xab\x96\x3a\x1a\xf6\x5a\x95\x00\x0b\x58\xc2\x8e\x85\x2f\xa0\x8c\x94\x49\xe7\x51\x1f\x3d\x9d\xf8\x3e\xd7\xad\x50\xcb\x4f\x5b\xba\xfe\xf3\xe3\x4b\x56\x64\xc9\x44\xf8\x2a\xaa\x2a\x22\xff\xa0\x34\x6b\xc1\x96\xa1\x18\xef\xb3\xe4\xf7\x3d\x7f\xf9\x4c\x7e\x6a\xfd\xc6\x32\x89\xef\x27\x9f\xc1\x0b\x54\xf5\x5a\x55\xe2\xcc\x50\x2e\x24\x65\x0b\x79\x87\xfa\x7e\x1a\x4e\x22\xc6\xd8\x0b\xf9\x34\x95\x4f\xa5\x59\xa7\x5d\xf8\x28\x62\x69\xf8\x08\x27\x2f\x4b\xb3\x1d\xe0\xbb\xe3\x09\xda\x95\x6c\xf9\xa1\x39\x1c\x80\x02\x98\xc7\xd3\xf6\xae\xb9\x07\xc0\xe1\xbc\xb5\x09\xdd\x40\xf2\x60\xba\x5c\x8f\x90\x22\xe0\xe1\x24\xea\xf8\x6d\xf5\x38\x24\x49\xfe\xaf\x64\x13\xd8\x37\x60\x9b\x32\x1d\xf0\xc2\x8a\x05\xd1\x66\xaa\x44\x31\x9f\xe4\xfa\x0b\x92\x63\x3b\xe8\x8d\xa0\x79\x2d\x48\xf1\xfa\x92\x3f\xca\x7e\xab\xb0\x35\xe1\x12\xae\x14\x05\x6e\xe7\x9e\xfb\xfe\x20\x0f\x5f\x45\x68\x98\xb5\x26\x39\xa5\x20\x89\xb1\x58\xbd\x8a\xd9\x9a\xc8\xd2\xd4\xc5\x0c\x99\x22\xe0\x15\x18\x22\x10\xc2\x46\x4e\x63\x25\xff\xdb\x32\x2b\x50\x5d\xb3\xac\xaa\x1c\x8e\xa2\xb3\xa0\x92\xe7\x2d\x1a\x71\x86\x62\x77\x25\xbf\x20\xf1\x45\xa3\x21\x7b\x90\xd5\xa8\xbb\x3c\xf7\x60\xef\xf8\x50\xed\xa3\x60\x0f\x61\x44\xe1\x9a\x49\x0e\x40\x12\xf8\xc5\x6c\x1d\xdc\x93\x35\x6c\x80\xe3\xf8\xe0\x86\x25\xb3\xb8\xaa\x48\x36\xe3\xc1\xb6\xaa\x72\x3a\x0b\xa3\xa0\x0c\xae\xd1\x84\xc2\xf7\x13\x72\x0d\x37\xaa\x64\xae\xcd\xa1\xef\xc9\x0d\xac\x28\xe4\x64\x01\x61\xa4\x3e\x2d\xd9\xc2\x9a\x63\xcb\x9d\x27\x3b\xb6\x08\x97\xb8\x17\x37\xe1\x2a\x5c\x46\x12\xcf\x5d\xeb\xa7\x9d\x72\x39\xcd\x90\x62\x8d\xab\x4a\x59\x6e\xc6\x6a\xda\x0b\xb9\x3e\x4b\x76\xd3\x6d\xee\x46\x35\xb7\x50\xbb\x77\x1d\x2e\x65\x3b\x67\xb1\x8a\xee\x72\x23\x2b\x2d\x20\xa5\x35\x3a\x44\x9d\xac\x4d\x16\x2c\x9e\xfd\x4a\x32\xd8\xd1\x60\x23\x5f\x3d\x1e\x4d\x7d\x9f\x64\xe1\x42\x8e\xaf\x94\x7f\x76\x94\xd6\xea\xac\xdf\xc8\x89\xca\xb3\x34\xbb\xd1\xa2\x75\xb2\x05\xd3\x32\x0d\x6e\x28\xc4\x33\xdd\x7f\x09\x37\x90\xd2\xc0\x10\xa3\x25\xdc\xb4\xf0\xf8\x75\x0b\xfd\x2a\xf8\x6e\x20\x39\x67\xb7\x36\x24\x48\xa8\x8c\x54\xef\x77\x3c\x92\x37\x47\x55\x39\x9f\x24\x61\x08\x25\xcb\x67\xd3\x40\x9e\x84\x15\xe9\x13\xa4\x49\x0c\x52\x43\x8c\x06\xef\x69\x7f\x99\x5f\x8d\xc3\xbe\x29\xb7\x60\x61\x17\x00\x15\xf0\x0d\x72\xb9\x38\x55\x55\x0c\x18\x7b\x23\x0f\x12\x11\xac\xa0\x0d\x7c\xed\x75\xf1\x20\xd5\x0f\x8d\x26\x84\x29\x37\xd2\x3a\xba\x2c\xaf\x12\x23\xb5\x2f\xda\x33\x2d\xf5\x4c\xa9\x1c\x00\xd9\x92\x05\x85\x82\x46\x0d\x7a\x93\xc5\x95\x19\x88\x53\xd8\x0d\xea\x83\x6f\x51\x17\xce\x4b\x4a\xc3\x57\x91\x5a\xe5\x8c\x0d\x87\xe5\x65\x76\x95\xf8\xfe\xa0\xd5\x61\xa6\xdb\x40\x91\x94\x89\x33\xb0\x26\xe5\xe3\xa9\xef\x63\xf7\xf8\xb4\x21\xc6\x2c\x78\x02\xe5\x68\x6a\x6d\xec\x0e\x78\x29\x06\xde\x03\x74\x2e\x0f\xcb\xd1\x23\xd5\xdc\xcc\x3b\xc7\xfc\xa7\x8e\xf8\xdd\x32\x0b\x05\x94\x57\x99\x4a\x2c\xa9\x9a\x2c\x95\x89\x89\x1c\xdb\x35\xe1\x8c\x37\x51\x02\xd4\xcb\x0d\x4a\xa9\x17\x56\xcd\xae\x07\x29\x47\x87\x2c\xc1\x0d\x7c\x80\x5b\xf8\x0e\xee\xe0\x47\x78\x02\x6f\xe1\x0d\x7c\x84\xa7\xf0\x13\xbc\x86\xdf\xe0\x1d\x3c\x83\x1f\xe0\x25\x3c\x87\x57\xcc\x2b\x93\x4f\x9f\x52\xee\x0d\xa7\xe7\x26\x06\x14\x7c\x72\x35\xc4\x2f\xd8\x04\xbe\x65\x13\xf8\x9d\x15\x84\xc2\xcf\xf8\xff\x3f\xf1\xff\x5f\xfa\xd5\xa6\x5c\x45\x22\x27\x4f\x99\x84\x99\x49\x0d\xff\x62\x87\xba\xab\x0a\xfe\xbb\x3c\x88\xdf\xb3\xbf\x8f\x77\xf9\x0e\x1e\xca\xbf\xfb\x72\x03\xff\x30\x0f\xff\x66\x7f\xb7\xea\xe7\x53\xb2\xc4\x5e\x57\xd7\x64\xa5\x2c\x8b\x1a\x0a\xdc\x3a\xf6\x4a\x38\xfe\x1b\xf3\xb4\x13\x4f\x55\x22\xff\xc7\x97\x55\x5c\xde\x67\x8b\x2a\xde\x8b\x7c\x95\x2f\xf6\x25\x3e\xed\xd2\xf8\xbe\x5a\xe4\x99\x28\xf2\xb4\xac\x96\x7c\xc5\x8b\xca\x90\x82\x95\xb2\x57\xad\x92\x72\x1b\xef\xaa\x34\xcf\x77\xd5\x76\x9f\x8a\x64\x97\xf2\x2a\xdf\xf1\xac\x2a\x78\xbc\xcc\xb3\xf4\xbe\xd2\xd1\x5e\x96\x55\xb9\xc8\x77\x7c\xe9\x01\xe7\xcc\x0b\xe7\xf3\xbb\x47\x93\xf9\x5c\xcc\xe7\xc5\x7c\x9e\xcd\xe7\xab\xc8\x03\xc1\x99\x47\x66\xc1\x7c\x3e\x9f\x8f\xab\x70\x3e\xbf\x1d\x45\x55\xf8\x7e\x3e\x19\xcd\xe7\x77\xf1\x24\xa2\x43\x0f\x0a\xce\xbc\xf9\x3c\xf4\x86\x9c\x0f\xbd\x73\xe2\x0d\x05\x1f\x7a\x94\xcc\x02\xf3\x26\x3c\x7f\xff\xb0\x1a\xfc\x27\x9a\x31\x6a\x5e\xcd\x82\x2f\x48\xd3\xec\x7b\xf9\xf7\x8b\x88\x9e\xd3\x2f\xaa\xb9\xd7\xfd\x30\xf7\xe4\x97\xb9\x57\x99\xa6\x69\x65\xda\x99\xcf\x23\x0f\x32\xce\xbc\xc0\xe9\x76\x3e\x27\x84\xfc\xf7\x9b\xa7\x55\xf7\x0b\xa1\xe1\x7c\x1e\x45\x95\x37\x2c\x64\xd3\xe7\xb4\x1a\x9f\xd3\xf9\x5c\x76\xaf\x2c\x06\x6c\xf4\x7d\x39\x98\xa1\x07\xde\xda\xa3\x90\xf3\x6e\x76\x01\xfc\x8a\xad\xbf\xd7\x2d\x47\xd4\x74\x45\xcf\xf5\x5c\x86\x0f\x75\xfd\xb8\xb7\xfe\x39\xe8\xbf\x1e\x85\xb2\xbf\x04\x09\x1f\x0f\xff\x23\x47\x2b\x7f\xd1\xa6\xf8\xbe\x5d\x9c\xd9\xe2\xef\xe7\xf3\xe8\x8b\xb9\x17\x9d\xcf\x5a\xeb\x89\xa3\x48\x5b\x95\x32\x4e\x61\x71\xd4\xab\x5c\xf0\x87\x1e\x85\x25\x67\x87\x97\xcf\x82\xd6\xd7\xbf\x98\x0d\xf1\x28\x3c\x7d\xf5\xe4\xed\xdb\xf6\xe7\xf9\x7c\xec\x14\x78\xf7\xe4\xfb\xf6\x67\xfd\xad\x0a\xcf\x23\xf9\xfd\xc9\xbb\x77\x3f\x05\x9d\xce\x0b\x4e\xe1\xcd\xdb\xef\x7e\x7e\xf6\x63\xf7\x8b\x1c\xec\xd3\x17\x2f\x5f\x75\x46\x14\x10\x04\x7d\xa4\xda\xab\x34\x2e\x45\x95\x89\x8d\xfc\x37\x92\x3f\xe8\x88\xa0\x3b\x57\x95\xaf\x46\xe8\x5f\xa7\x00\xc9\xac\x15\xbf\xe1\x59\x95\x2f\x97\x15\x21\xe1\x70\x14\x55\x94\xcc\xe7\xcb\x73\x9a\x55\x0e\x44\xeb\x2f\xe6\xc5\x7c\xbe\x1c\xd2\x8a\x36\x4b\x8b\x70\x83\x79\x29\xae\xf3\x3c\xed\x4c\x58\x9e\x96\xbf\x0d\x3d\x6a\x52\x57\x64\x9c\x2f\x4b\x74\x84\xba\x13\xdd\x09\x62\x7b\x6a\xb3\x83\x66\x64\xfc\xf7\x6a\x2d\xaa\x54\x4d\xab\x99\x65\x67\x22\x64\x16\x8c\xe6\xf3\x25\x9d\xe1\xf8\xdd\xb1\x91\x19\x0b\xdf\x8f\xa2\xea\xa1\x1e\x65\x0d\x3b\xce\x2e\xe4\xc8\x90\xf5\xd6\x68\xa9\x32\x4e\x85\x95\xe2\xc1\xe9\xc3\x8b\x04\x36\xb2\xe0\x66\xbe\x94\xcf\x2b\xb4\x7a\x79\x7f\x88\x86\xf3\xc3\xbc\x3c\x9f\x87\x19\xde\x5d\x0f\xe6\xb7\x17\xb0\xd5\x0d\xfe\x85\x84\x12\x91\x0c\x69\x45\xe6\xb7\x43\x5a\xcd\xc7\xe6\x05\x7d\x78\x01\xf7\x9c\x5d\x84\xc3\xff\x44\x17\xb0\x6e\x83\x1c\x9e\xc9\x70\x3e\x5f\xc6\xa3\x55\x74\x98\xc2\x5f\x6b\x35\xfe\x59\xa5\xa7\x47\xab\x31\x0e\x5e\x02\xf0\xf5\x89\xf4\x4d\xcc\x9b\xdc\x79\x43\x31\xfa\xeb\xd7\x5f\x7f\xf9\x57\x4b\x7b\x0e\xd0\x0b\x7a\x26\x82\xec\x6a\x32\x53\xf2\xf5\xf1\xaa\xc8\xb7\x4f\x37\x71\xf1\x34\x5f\x72\x92\x0d\xb1\x02\x0d\x7a\x3f\x3e\x7e\x3c\x9d\x54\x5f\x7f\xfd\xe8\x9b\xbf\xc2\x74\xf2\xe8\x4b\x3f\xab\xbe\xfe\xeb\x97\x8f\x30\xa4\x3d\x67\x17\x24\x94\xf8\xf2\x6e\xba\x9a\xdf\xfd\xaf\x55\x54\xbd\x1f\xcd\xe6\x4b\x5a\xbd\x1f\x3d\xd4\x98\x54\x7f\x19\xcd\xf7\xcf\x9f\x3f\x7f\x2e\x17\xe2\x62\x0d\x1f\x4e\xd9\xfe\xcc\xbc\xf9\x44\x05\x87\xf1\xfe\xaf\xff\xff\xff\xcf\x0b\x9a\xab\x7e\x34\xa5\x43\x6f\x3e\xf7\x86\x1c\x83\xea\xcb\xa1\x3d\x11\x84\x5b\xc7\x3f\x6a\x2d\x9c\xc8\xf4\xaf\x74\xe8\x3d\xf0\x02\x55\xbc\x86\xdb\x56\xfc\xc1\x9f\x08\xad\xe1\x3b\xde\x4b\x7c\x0d\x30\x4e\x9c\x15\x3f\xf8\x3e\xb1\xb2\x14\x5e\x55\x8d\x90\x82\xd3\x1a\x0e\xcb\xa4\x08\x5c\x36\x1a\x24\x93\x1d\x78\x29\x5f\xf3\x6c\xe9\xd5\x4a\x84\x67\x68\xce\xbf\x1b\x55\xce\xa7\x56\x84\x81\xf6\xaf\xbf\x87\x9f\x8e\xfd\x2e\xa3\x26\x5a\x93\x15\x01\xfe\x83\x1d\xb0\xd9\xe0\xef\xba\xd0\xac\xbd\x9c\x0f\x75\xaf\x1c\x8c\xe9\x12\x75\x83\xd9\x1c\xc9\xfc\x1a\xed\xe0\x25\x0f\x0b\xad\x0a\x44\xcb\xc4\x4b\xab\x07\x2c\x46\xd3\xba\xae\x3f\x30\x31\xd6\xea\x20\x76\xa8\xe1\x8e\x89\x71\x52\xfe\xfa\xfa\x55\x4f\x0a\x6b\x4c\x84\xde\xd5\x55\x60\x10\x27\xf5\x43\x4b\x48\x0c\xb7\x39\x10\xbe\xef\xbd\x78\xf7\xfa\x55\x5b\x0e\x5e\xc3\x4f\x0c\x65\xd9\xa6\x8d\xbe\x5c\xc7\x92\x26\x99\x1d\xf7\x15\x7c\x72\xce\x00\x7b\xed\xfb\xdf\x30\xd7\x1b\xd2\xf7\xb3\xee\x60\x66\xe4\x35\xcb\xe0\x37\xf6\xba\xfb\x01\xde\xb1\xc1\x1d\x79\x4d\xe1\x93\x6a\x89\x14\xb2\x8c\x76\x31\x4e\xf8\x2d\x86\x4a\x10\xf9\x4e\xbb\x3e\x61\xd4\xf7\x56\xe0\xa7\xd9\xf1\x2b\xe2\xed\x33\x15\x0d\xea\x96\xc3\x60\x4a\x83\x62\x1c\x0b\x11\x2f\x36\x58\x4a\x36\xe8\xfc\x24\x5e\x9e\x35\xc5\x29\x85\x0f\x28\x8c\x45\xc1\x78\xc9\x92\x5e\x6e\x63\xbc\x30\x9a\x0a\xe6\x25\x1e\x0c\x7a\xad\x7e\xe5\x67\x8f\xd6\xb2\xc1\x3e\xb1\xd5\xa9\xa6\xdd\x10\x13\x46\x8e\xfd\x34\xdf\x2a\x39\xb6\x47\xa9\xee\xed\x58\x47\x23\xaf\x6d\x0d\x53\xc7\x9d\x5a\xd5\x0a\x5b\x69\x45\xc3\xeb\x53\x5a\x1a\x55\xf5\xdb\xfb\x97\xcb\xfe\x21\xfe\xd6\x1a\x22\xa7\xe3\x64\xc9\x5e\xc1\xa0\xd3\x9e\x6c\xaa\xaa\xfa\xde\x92\x57\xdd\x61\xca\xbe\x66\xc4\x30\x3d\xe3\x97\xcf\xfa\x80\xde\x32\x19\x6b\x0e\xd7\x8d\x49\x5f\xef\x1a\x1e\xab\x72\x90\x3f\xac\x41\xf6\x91\x2d\xdb\x3d\xe8\x38\xa2\x8d\x69\x6a\x47\xb5\xe6\xfb\xef\x1a\x79\x73\x47\xeb\xc6\x9d\x4c\x71\x61\x11\x05\x61\x54\xd7\x34\xf8\x3f\x30\x15\xd5\x5f\x5b\xf2\x69\xa7\xa4\x84\xce\xc7\xef\xd4\x54\xed\x88\x24\xa0\x23\xef\xf6\x7f\x64\xf2\x26\x26\x7c\xcf\x12\x24\x2b\x92\x53\xcd\xba\xe6\x27\x46\x45\xdd\xd1\x18\x55\x60\x98\x47\xda\x41\x45\xf4\xc0\x09\x57\x89\xc8\x72\x96\x68\x9c\xf9\x3f\xeb\x41\xf3\x92\xb8\x35\x66\x0d\xde\x3d\xf9\x9e\xf5\x1f\xcb\x59\xef\xfd\xd9\xbb\x3e\x4e\xa5\x93\x6a\xd3\x00\x15\x98\x33\x71\xac\xa4\xe3\xc6\x12\xae\x7b\x7f\x18\x1f\x3c\x6b\xfb\x71\xb2\x71\xb4\x83\x38\x57\x29\x24\x0e\x5a\x7f\x63\x2c\xdf\xa7\x8c\xb1\xa2\x85\x91\x35\x6b\xdd\x48\xce\x8c\x90\xcf\x42\x06\x92\xdc\xdd\x75\x71\x14\xbb\x7f\x0e\x6c\xda\x75\xde\x59\x6f\xa4\x53\xba\x5e\x79\xe7\xff\x20\x67\xfb\x4c\xfe\xa7\x34\xbe\x0e\x96\xea\x2e\x1c\x5a\x9f\xb5\x11\xd3\x31\x46\xb2\xa1\x8b\xbc\xab\xf8\x41\xb2\x64\x5f\x78\xc3\x57\x43\xef\x8b\xc7\x57\x17\xf1\xe3\x2b\x45\x93\x36\xaf\x47\x92\x73\xfd\xe2\xc1\xb6\x8c\xd3\x34\xbf\x5d\xc4\x3b\xb1\x2f\x38\xfb\xe2\x8b\xc7\x57\xf9\x4e\xe9\xb6\x34\x6f\x8d\xef\x2e\xd4\xcb\xc7\x57\x17\xea\xf5\x63\x0f\x7a\xa2\x60\x79\x61\xbb\xb9\xf7\xec\x8b\x2f\x22\x8b\x9f\x7d\xff\x99\xda\x0e\x4f\x72\xb9\x11\x73\x18\x5c\xc9\x6c\xce\x91\xbf\xe9\x6d\xd5\x0c\xa5\x69\xab\xaa\x4c\x5b\x0e\x3b\x3d\x0b\xf0\x20\x54\x8a\x3d\x38\xd5\x58\xb2\xfc\x0f\x53\x2b\xd0\xd7\xdc\x7f\xd8\x89\x7a\x81\x96\x39\xf4\xd4\x69\x3e\xf5\xd6\x8c\xff\x82\xdd\x0d\xcf\x7b\xaa\x8e\xff\x32\x1e\x4a\x02\x1e\xaf\xcc\xf6\xfe\xf2\xce\x86\x6e\x0a\xbe\x62\x5f\x7c\xf1\xc0\x6a\xb3\xbe\x30\x4f\xed\x1d\xee\xfd\xae\xb6\xef\xc2\xd9\xbf\xb3\x13\x4a\x63\xa5\x3c\xa4\x67\x5d\x8d\x3f\x86\xaa\x01\x4f\xc9\x4d\x70\xa6\xad\x70\x5c\xb4\x53\x3c\x93\x74\x00\x78\xcf\x4e\xed\x82\xfc\xce\x96\x7d\xc0\x81\x35\x35\xe3\x66\xa5\x21\x1e\x85\x47\xbd\xc1\xd8\x88\x17\xf0\x0c\x67\xd9\xd3\x94\xfd\x04\x5e\x60\x16\xc3\xa3\x70\x74\x72\xec\x92\x0d\x26\xa7\xbb\x69\x1a\xf8\xb3\xfd\xf4\x35\x73\x0e\xc1\x9d\x47\xc1\xd4\x84\xf1\x79\x20\xf7\x9e\x4a\x14\xa0\x85\x9b\xa6\xbc\x45\x07\x2f\xd9\x6f\xe6\x5b\x55\xfd\x36\xbe\xe5\xd7\x1f\x13\xf1\xba\x5d\x58\x7e\xd8\xe6\x9f\x7a\xde\xe6\x7d\x25\xcb\xce\x4b\x8a\xf1\x95\x5c\xf0\xfb\x20\x57\x65\x91\x67\x19\x9e\x3c\x2c\xce\x5e\x1a\x6f\x37\x14\x96\x34\xbf\xc2\x72\x20\x4f\x3a\xce\xec\x07\x3d\xb3\x01\x93\x2c\x8c\x04\xeb\x67\xec\x99\x5d\x31\x87\x47\x7d\xa6\x2d\x41\x2a\x49\xde\xfd\xc0\x7e\xe8\x2b\xf3\x83\x5b\x46\xd8\x05\xf9\x0d\xfd\xe6\xe2\xc2\x06\xaa\x7b\x93\x97\x89\x1c\x38\x85\xe7\x4c\x54\x95\x5b\x4e\x85\xef\xa0\xb3\x3e\xd3\xcb\x6f\x5a\xc6\x04\x33\xde\x25\xd3\x03\x0e\x99\x32\xc8\x6a\x18\xb3\x33\x47\x42\x9a\x55\xd5\x80\x0c\xb2\xe3\xb8\x28\x03\x52\xd8\xae\x67\x85\x13\xfe\x84\x06\xfc\xd4\xd8\x7d\x7f\xfa\x57\xff\xe4\x57\xb4\x4f\xef\x5e\x9a\xc9\x8a\x08\x6a\xb4\x94\xce\x18\x91\x68\x10\x0e\x41\x30\x98\x34\xaa\x53\xf8\x85\x89\xd9\x51\x3b\xdc\x95\xb6\x3e\x95\x07\x61\x72\xa6\x16\x69\x70\x72\x4c\xa3\x81\x38\xf5\xc9\x92\x63\x55\x45\xa6\x92\xbd\xe9\xe3\xdd\x18\x63\xe4\xd8\xfc\x8c\xce\x4e\x2f\x82\xa0\xc1\x94\x56\xd5\xe0\x03\x3a\x43\x3c\xe3\x92\x9f\x91\x8c\xf5\xc9\x71\x10\xec\xa5\x98\xc9\xe9\xbd\xae\xaa\xce\x20\x18\x63\x9f\x7c\xff\x39\xf9\x04\x9c\xce\x46\xd3\x40\xa8\x52\xe2\x54\x29\x41\x67\xd3\xe0\xe3\xec\x57\xf2\x11\x38\x1d\xc9\x3f\x82\x06\x93\xe0\x2b\xbf\x90\xb5\xa7\x7d\xfb\x73\x72\x5d\xad\xf1\x6c\xb3\x6d\x48\xf5\x38\x3f\x4b\x16\xf2\x08\xf6\x2c\x14\xa8\xd0\x1d\x24\x55\x35\xc8\xa9\x03\x7f\xaf\xed\xa0\x67\xd3\x20\x91\x3f\xf2\xbe\x01\xa2\x72\x0f\xc3\x32\x1a\x15\xa8\xf2\x6f\xd4\xf6\xd3\x68\xff\xe2\x02\x4f\xe9\xf8\x04\xea\x42\xe2\xa8\xd0\xbe\x5b\xe8\xb2\x0c\xb3\x88\x31\xb6\x47\x75\x79\xd6\xa8\xff\xb3\x59\x4c\xe4\x37\x90\x5f\x68\xa0\x8b\x7d\x92\xc3\xdd\x9b\xe7\x69\x30\xa9\xe1\x35\x0d\x5e\xd7\x20\x0c\xae\xeb\x4f\xed\x2e\x08\x07\xd4\x07\xe1\x7f\x05\x75\x2a\x34\x88\xb3\x55\x11\x63\xbb\x1c\x43\x9f\xb1\x71\xe4\x14\xe4\xdc\x5c\xa3\x6d\xf6\xc5\xc3\xa9\x24\x5c\xe0\x08\x27\xfb\xfe\x3b\xb4\xcb\x2b\xac\x5d\xde\x0f\x55\x35\xf8\xc1\x64\x87\xa7\x1d\x4b\xbd\x82\x52\xb4\x5f\x53\xe2\x34\x8b\x30\x0b\xa5\x12\xad\xaa\x1e\x24\x2b\x81\xd4\xa0\x21\x6d\xb8\xd9\xbc\x68\x42\xbf\x59\x7a\xb6\x31\x78\xb3\x0b\x54\xc0\x6b\xb5\x3a\x21\x8f\xcc\x65\xf5\x78\x22\x17\xca\x20\xa2\x5e\x79\xd9\x1f\x2c\xd2\x73\xed\xab\x27\x50\x52\xd0\x69\xe1\xf3\x75\x35\x26\x69\x19\x7c\x75\x8c\x66\x23\x65\xde\xf5\x2f\xb5\x44\x6e\x49\xe8\x94\xa4\x33\x0c\x7f\x0f\x83\x77\x86\x97\x38\xeb\xf2\x2b\xd9\x2c\x0b\x5c\x81\x46\x55\x0d\xde\xcd\x3a\x0c\xb2\xa0\x01\xc9\x7a\x58\x4c\x22\xe4\x2e\x66\xca\x67\x7d\x95\xf0\xe5\x2c\x53\xfc\x95\xca\x5c\x0d\x62\xcc\xcb\x45\xdc\x31\xee\x35\x0b\xd8\x32\xff\x57\xa6\x93\x58\xa3\x28\xf2\x76\x5c\xeb\xa3\xdc\x02\x6f\xef\x33\x11\xdf\x3d\xc0\x92\xf0\x60\x9f\x15\x7c\x91\xaf\xb3\xe4\x13\x5f\x3e\xe0\x77\xbb\x82\x97\x65\x92\x67\x81\xca\xe5\x06\xc6\x9a\xe4\x6d\x37\xa3\xbf\x89\x84\xac\x12\xd7\x1b\x67\x89\xa7\x6c\xf0\x61\xbc\xe4\x82\x2f\xc4\xb3\xfd\x2e\x4d\x16\xb1\xe0\x25\x7c\x64\x1a\x8d\xbe\xc5\x08\x8b\x68\x3a\xa7\xa4\xa3\x98\xdb\x30\x2f\x04\xf9\x85\xc2\x53\x6b\x42\xc3\x35\x8f\x85\xf7\x4a\x98\xa8\x1c\x23\xda\xc6\x36\xd1\xd1\x49\x95\x61\x1f\x37\x1a\xf4\x42\x9e\xfa\xa9\xd5\x6b\x7e\x54\x7a\x62\x5e\xc3\x77\x8a\x77\x7a\xc7\xef\xfa\xc7\xef\x79\x16\x3d\x1a\x88\x57\x41\x1e\x0e\xda\x0c\x27\xa9\xaa\x6f\xd4\x9f\xa9\x0a\x7c\x79\xe8\xb3\x8e\xe7\x6e\x8c\xb4\x26\x2e\x9e\xf3\x12\x47\xcd\x19\x77\x22\xd6\x5d\xf2\x4b\xf9\xc2\x31\x08\xa4\xc5\x90\x7d\x67\xb3\xa1\x24\x2b\xf2\xa5\xea\xfa\x2b\xd7\xda\x58\x8d\x14\x43\x88\xb5\xac\x87\xb8\x66\xe3\xb1\x8d\x26\x3e\x54\x51\x03\xb9\x45\x51\xa4\x42\x2c\x25\x3b\x38\x06\xa3\xc1\xd7\x13\x1d\x7c\xe3\x4d\xc9\xf7\xcb\x3c\xc8\x00\x11\x51\xb0\xe4\xd0\x9c\x8c\xe0\x50\x83\x64\x61\x03\x74\xdd\x55\x8a\xef\xe0\xe0\x3d\xf6\x82\x63\x69\xb2\x72\x96\x1c\x4c\x6a\xf0\x1e\xf4\x7c\xaf\xc1\x1b\xda\xd7\x05\xbf\x49\xf2\x7d\xa9\x67\xdf\xaa\xfb\x9f\x53\x85\xea\x1a\x76\x05\x7f\x8e\x02\xa0\xe0\x80\x5a\xa8\x3e\x21\x55\x38\x8d\x98\xfc\xaf\x23\x0c\x02\x1e\x7e\x19\x31\xc2\x31\x32\x16\x0f\xbf\xc2\xff\xbf\x8e\x30\x82\x5e\xb7\xa8\x64\xd1\x10\x04\x1f\xa9\x38\xd1\x5f\x46\xcc\x93\xe7\x22\xfc\x32\x42\xd3\x5b\x68\xa4\xfc\x5f\xd1\x5a\xab\xb7\x3e\x3b\x96\x4e\xac\x7a\x93\x63\x52\x7e\x32\x2d\x7d\x49\x67\x7a\x74\xfa\x34\x13\x8e\xd1\x36\xe4\x58\xd9\x90\xc8\x3f\x33\x39\x62\xf9\xf8\xd7\xa8\xaa\xa6\x34\x78\x74\x4e\x3c\x7e\xc3\x33\xd5\x16\x86\xfc\xca\x55\x8a\x6f\xf9\x8b\xca\xba\x5f\xab\xba\xff\x2b\x1a\xf2\xf0\x7f\x1f\x15\x08\xe4\x1f\x49\xdb\xb4\x3a\xac\x8d\x2a\xaf\xef\xdc\x0c\x64\xef\xbe\x2f\xd7\xc6\x46\xd8\xe5\x63\x5c\x02\x6d\x68\x2d\x1b\x51\xa1\xf2\x71\x3e\x33\x8e\xe6\x61\xad\x15\x0f\x0a\xdf\x4f\xb9\xb9\xc0\x7c\x9f\x08\xf6\x23\x29\x30\xbb\x0c\xfe\x28\x8c\xd7\x38\xf1\xa8\x67\xcd\x1f\x47\x82\x8e\xcc\x33\xc5\x8d\x99\x44\x2a\x0a\x9b\x59\x43\x21\xa7\xfc\x28\x62\x85\xf3\xc6\xdd\xad\x2f\x29\xad\x25\x40\x2b\x10\x7a\xf7\xe4\xfb\xbe\x24\xc3\x1d\x68\xe8\xb5\x80\xd5\xd2\xa1\xe3\x48\xfc\x83\x96\xd8\xe9\xbf\x9d\x34\xa4\xae\xb5\x7e\xf6\x78\x5c\xbf\x6b\x4b\xfd\x76\xf4\x3a\x57\x23\x47\xde\x3b\xea\xe6\xa1\xa7\xd5\x70\xd5\x43\x8a\x32\xbc\xdf\xfb\x93\x6e\xe8\x90\x17\x3d\x88\x6d\xd1\x08\x9b\x9c\x1f\x55\x75\x42\x78\xfa\xd9\x18\x1d\xb4\xa6\x35\x74\x8e\x2c\xb8\xa6\xed\xf6\xb5\x89\x4c\xc7\x14\x11\x40\x12\xc7\xcd\x5c\xf9\x93\xe5\x33\xc9\xf9\x49\x9a\x3b\x18\x14\x2a\xcb\xa5\xe7\x81\xa7\x5e\xcd\x72\xc9\x34\x05\xa6\xc4\x2c\x1f\xe0\xcf\xf7\xfa\x67\xe6\xfb\x18\x3d\xdc\xc2\x57\x46\x03\xef\xbc\xf9\xe8\x7e\x78\x3c\x9a\x06\xde\x43\xf7\x9b\x02\xa3\x51\x66\x60\x50\x75\xf5\x1f\x5d\x84\x48\x1c\xd1\x64\xfe\x4f\xb8\xc4\x83\xa8\xd8\xa3\xdd\x56\x2b\x66\x42\xe0\xe5\x8a\xc7\xcb\x2d\x88\x9a\xc6\x87\x53\x6c\x7e\xe8\x8d\x3c\x04\xda\x2e\x92\xe9\x04\xf2\x63\x88\x53\x70\x53\x1a\x60\x87\x98\x61\x1a\x25\xf7\xfd\xe8\x2b\x0a\x25\xf3\xb4\x62\x1d\x2d\xc7\xdd\xd0\xcd\x7a\x81\x92\x59\x8f\xae\x71\xe0\x72\x12\x9f\xb5\x8f\x85\x0d\xac\x60\xcb\x72\x0c\x00\xe9\x39\xf7\x9c\xd7\x83\xfb\xef\xdb\x2c\xc9\x9a\x95\x12\x23\xf5\x9f\x11\xb8\x66\x83\xbd\xef\x0f\x4a\xb8\x61\x83\xa9\xbc\xb0\xef\xf1\x5e\xce\x35\x0d\xb1\xbd\x54\x0f\x3b\x26\x2e\x77\x6c\x17\x6e\x95\x74\xbb\x9c\xed\x4e\x1f\xba\x35\xe6\x0c\xdf\x75\x09\xdf\xc1\xf4\x6c\xc5\xb6\xcc\xcb\xb3\xf4\x5e\x67\xc2\x1a\xac\x7c\xbf\x35\x9b\xda\x1e\xfa\x64\x45\x56\x2c\x8c\x67\xf7\xce\x35\x1f\xdc\x37\x31\xdb\x23\x88\x7d\xff\x5a\x2b\x31\x19\xd9\x30\x92\x32\xb2\x60\x64\xc9\xc8\x8e\xdd\x53\x65\xdf\xbb\xd3\xf6\xbd\x34\xdc\x75\x8c\x7b\x77\x6d\xe3\x5e\x1a\x72\x15\x3e\xa5\x65\xa7\x8b\x86\xbb\x8f\x22\xd8\xb1\x8d\xef\xdf\x3b\x8a\xd9\x70\x13\x5d\xee\xd8\x70\xb8\xf1\xfd\x9d\xef\xcb\x55\xa9\x2a\x72\xc3\x36\x6c\x42\xab\x6a\x35\xde\xe5\x3b\x42\xad\xf9\xf1\xce\x11\x6e\x0f\x87\x37\xbe\xbf\x43\xfe\xf2\xb0\x08\x79\xc4\xc2\x17\xb0\x81\x9b\xe8\x0c\x3d\x57\x6b\x4b\xad\x5c\xfb\x3e\xb6\xe7\x4e\x4a\xfc\x1f\x9a\x94\x8a\x3b\x7e\xa3\x84\x10\xe4\x8f\xa6\x21\xef\x85\xcf\x6c\xf7\x00\xb7\x7b\xd0\xda\xee\xaa\x1a\x0c\x87\x37\x55\x85\xb3\x50\xc3\xdf\xfd\x0f\x86\x2e\xd7\xe6\x26\xa2\xb0\x1b\xc8\xe5\xa2\x36\xf1\x10\xb9\x19\xb1\x84\xaa\x63\x7e\xf3\x5f\x19\x63\x13\xdf\xbf\xb9\xc8\x1e\xb3\x49\x5d\xf7\xdc\xb4\x8e\x0f\x29\xbb\x1d\xef\x90\x36\x2b\x71\x65\x6e\xc7\x25\x17\xcf\x75\x18\xab\xce\xbc\x1c\xaa\xc1\xdb\x67\x5a\xdf\xcd\x97\x0f\x54\x7d\x45\xd4\x37\x91\x73\x5e\x45\xb3\x9c\x14\x34\xc8\x1b\x13\x6c\x92\xb0\x90\x03\x07\xcf\x83\x22\x02\xb7\xab\x8e\x49\x1e\xe9\xda\x91\xcf\x32\xd2\xaf\xa7\xcf\x20\x61\x39\x4e\xc8\x8d\x1c\x88\x4e\x0b\x3c\xcc\xd8\xaf\x84\x43\x12\xc6\x11\x8d\xd8\x80\xa8\x78\x5e\xf2\x57\x4d\xfb\xee\x4f\xd9\xce\x04\x83\x44\x07\xb9\xa4\x03\xd5\xb2\x04\x87\x2c\x17\x41\x46\x8e\x2f\xcb\x30\x52\x2c\x4a\xc2\x9e\xf4\xf8\x5c\xd9\xa5\x48\xe4\x52\xb4\xc7\xdf\x36\x98\xce\xe5\xd0\xad\x38\x00\x4d\x9f\xcb\xc6\x9a\xb0\x44\x6b\xe0\x9c\xc5\xda\x4c\x9c\x63\x4c\x22\x22\xe4\x9f\x9c\xb6\xa7\x02\x19\xe4\xcd\xa5\x8b\x94\x0b\x24\x44\xa8\x96\x73\xb9\x48\xf8\x12\x7f\x0e\x0a\x05\xcc\x75\x4d\x61\x13\x97\x9d\x19\x76\x6f\xcc\xb6\xe0\xa2\x70\xd8\xf1\x9a\x82\x61\xc7\xfb\xdb\xe0\x47\xd4\x0e\x1c\x3b\xa9\x10\xe1\xb2\x33\xe8\x26\x93\x65\xbc\x90\x9c\x55\x55\x49\x86\xa3\xb9\xde\x94\x19\x70\x4d\x21\x8d\xb3\x75\x7f\x97\x0b\xe3\x8f\x87\x64\xc1\x09\xb0\xc5\xea\x08\xb4\x70\x3c\xc4\xce\x8d\x70\xe4\xbd\x74\xb6\xcc\x0f\x68\x1c\xfc\x6e\x26\x30\xa5\x6c\xd0\xf5\x41\xbc\xdb\xa6\x81\xfc\xa0\xfa\x6f\x7f\x53\xef\x4d\x00\xe2\x82\x15\x1d\x70\x57\xae\x42\x98\xb2\xaa\x99\x36\xde\xd2\x3a\x55\x11\x69\x0b\x4a\x69\xd7\x81\xcc\x71\x31\xa9\x29\x88\xb8\x68\xc5\xf2\x71\xd2\x27\xa6\xf9\x22\x56\x52\xdb\xe6\x59\x1e\xc6\x4d\x4b\x11\x6d\x22\x6f\x61\x1f\xc9\xb2\x86\x22\xcf\x7b\x63\x03\x71\xc6\xd8\x6f\x35\xa0\xf1\xea\xa9\xef\xaf\xdb\x59\x2e\x7c\x9f\x0c\x5e\xcb\x2e\x9f\xa3\xc5\x6b\xd5\x3c\x23\xa2\x1d\x0c\x74\xf8\xfb\xaa\xe2\xe3\x4d\xc1\x57\x55\xf5\x1f\x3e\x16\xf1\x35\xfa\xc2\x61\x5c\x1a\xd4\x53\x04\x29\x19\x4c\x29\x18\xb5\x85\xfc\x39\xa1\x60\xa2\xe4\xf7\x51\xe0\x9f\xf5\x3e\x73\x7c\xde\xe4\x18\x6c\xbc\x7d\xc9\xdc\xec\xb4\x9f\xb7\xf9\x64\xd4\x7a\x35\x98\xa7\x7e\xea\xdc\x75\x3a\x73\x7f\xd9\x06\x70\x4a\xa0\xcd\xad\x9a\x56\xf9\x76\x27\xee\x5b\x4d\xfe\x29\x6e\x3f\x59\x91\x46\xec\x70\xf5\xd7\xbe\x68\x1b\x6a\x0c\x3d\xa3\x1d\xd8\x5b\x61\x8c\xbd\xa3\x9e\x77\xc3\xe3\x25\x2f\xfa\xe6\xb6\xb1\x89\x0a\xcc\xa2\xd2\x1a\x70\x05\xfb\x4a\xef\xfa\x4a\x2b\xdb\xc2\xff\x87\x1b\xe5\x78\x09\x1a\xa0\x71\x5e\x89\x1a\xd0\xb6\xf2\x38\x26\x49\xb7\xa9\x53\x7d\xea\x0c\x0b\x4d\xfb\x3a\x8f\x2c\x63\x44\x9c\xca\xba\x51\x55\xb6\x4e\x57\x02\x68\x62\x3f\x2d\xc8\x11\x8b\x17\x4e\x22\xc4\x70\xed\xaf\x8e\x94\x33\x14\xa3\xa9\x2c\xc2\x7f\xef\x14\x68\x64\xcc\x61\x71\x35\x99\x15\x43\x11\x14\x58\xf0\x86\x67\x47\x6d\x39\x16\xec\x97\xc5\x95\xb8\x2c\x86\xec\x11\xe5\x5d\x6b\x03\x5e\x53\xc8\x97\xcb\xcf\xd4\x9e\xfe\x41\xed\xb4\x3b\x8d\x76\xa4\x0c\x3b\xd0\xcb\xd1\x48\x12\x2d\x97\xa6\x95\xac\xd5\xca\xfa\xcf\xb6\x32\x1c\x66\x57\xa2\xbf\x91\xba\xa6\x16\xb4\x33\xb1\x61\x0e\xa0\xff\xae\x22\xf9\x3e\x48\xb2\x43\x11\x2f\x93\x3c\x18\x4c\x14\x02\xb9\xce\xef\xe4\xf3\x2a\x49\xb9\xfc\xbb\x8b\xcb\xf2\x36\x2f\x96\xf2\x39\xd9\xc6\x6b\xf9\xb2\xa6\x0d\x1d\x75\x13\xb1\x92\xdc\xd0\xa6\xb5\x72\x7f\xbd\x4d\x84\x2c\x5e\xf0\x92\x8b\xe3\xe2\x7b\x59\xdc\x9c\x0e\x27\xa2\x9b\x31\x45\x2a\x9b\x61\xb6\xc8\x26\xe4\xcc\x77\xf0\x23\x42\xd6\x47\xde\xc9\xed\x7f\x94\x4b\x40\x05\x67\x60\x3f\x1b\x26\x1f\xfd\xd2\xad\x09\xd4\x24\x58\x58\xc9\xa9\x4a\x09\xc4\x38\xec\x25\x81\x93\xca\xee\x8d\x54\xec\xb2\xbc\xa4\x87\xcc\xf7\x07\x24\x61\xb1\x49\xcc\x47\x31\x14\x15\x66\x47\x29\x75\x23\x49\x38\x31\x59\x56\x68\x55\x95\x14\xf6\xda\xa1\x8d\x85\x11\xa5\x90\xb1\xc1\x14\x48\xa2\x42\x4c\xa9\x26\x50\x12\x9b\x18\xc7\x72\xc8\x55\x79\xed\xc1\x92\xa9\xd0\x40\xd8\xaa\x4b\x6a\x3d\x40\x93\x83\xa6\x5b\xcb\x37\xab\x39\x60\x3c\x13\xb3\x8c\x54\x8e\x79\xc9\xc3\x38\x72\x86\x9d\x86\x71\xa4\x66\x23\x9f\x48\x82\x53\xf9\xc3\x71\xc4\xa0\x35\x2a\x41\x72\xaa\x7b\x0c\x4e\xa1\xc2\xef\xd8\xfc\x81\x33\x1b\xed\xb7\x9c\x59\x81\x18\x0d\x7e\x26\x1c\xf6\xd4\xae\x7e\x0d\x4f\x98\x52\x05\x26\x69\xdf\x86\x4a\xb2\x3d\x8c\x8c\x87\xe1\x3f\x9d\xed\x1c\x94\xea\x40\x14\x55\x45\x0a\x15\xcf\x00\x12\xc7\x17\x0f\x69\xc9\x92\x5d\x13\xe5\xb9\x8b\x44\xba\x71\x2d\x0c\x62\xf3\x74\x49\x4a\xf6\xcf\x76\x6a\x58\xd3\xb3\x6d\xeb\xb1\x1b\xd8\xe6\xf1\x04\x62\xe6\x78\x11\xc6\x7d\x7e\x84\x13\x58\x31\x6f\xe2\xc1\x56\xf2\xff\x61\x04\x6b\x39\xfc\x6b\xf6\x06\x6e\x50\x38\xe1\xfb\x8d\x79\x17\xf1\xce\x3d\x48\x29\x7c\x60\x2f\x86\x4c\x21\xd8\xeb\xd9\x34\x68\xc5\x0d\xab\xaa\xf1\x14\xbe\xb3\x5e\x73\xb8\xdb\xa9\xef\x93\x37\x2c\x56\xea\xcf\xb8\xaa\x52\x7a\xb9\x1a\x30\xf6\x9d\x09\xa3\x4a\x16\xec\x26\x5c\x45\xf4\x72\x35\x1c\x2a\x96\xde\xf7\x17\x6a\xc5\x96\x6c\x02\x71\x55\x2d\x8e\x74\xa6\xaf\xab\x8a\xfc\x84\x7e\x56\x6c\xf0\x8e\x5e\xee\x18\x0f\x97\xc6\xa0\x6d\x47\x16\xb2\xd2\x6b\x28\x29\x3d\x68\xf8\x5e\x50\xcd\xb8\xca\xc1\xbc\x60\x1f\x68\x9d\x28\x96\x6f\xb0\x93\x9d\xf9\xfe\x66\x34\x82\xcc\xf7\xb7\xa6\x38\x95\x7c\xfd\x66\xc8\x56\x90\xf8\xbe\x1c\xee\xc6\x8e\xe8\x72\xc7\x0a\xdd\xdb\x8e\x6c\x61\x8d\xfe\x9d\x8d\x1b\xe2\xe6\xf1\x44\x71\xac\x2b\xb9\xaf\xdb\x70\x15\x55\xd5\x1a\xff\x27\xf2\x0f\xfb\x5e\x69\xa1\xf6\x94\x9e\xad\xd9\x3d\x59\xd3\xda\x18\x5e\xef\x61\x8d\x7e\xa5\x83\xcc\xf7\xd7\x76\x13\x7d\x7f\x33\xb4\xfb\x3b\xf5\x7d\x57\x3f\x43\xf6\x56\xff\xa1\x27\x06\x6f\xd8\x35\x85\x6d\x6d\xf9\x9c\x59\x46\x62\x1a\xc4\x35\x89\x21\xa7\x94\x5a\x9d\x00\xe3\xa6\x66\x59\xc3\x5b\xab\x2c\x60\xc7\x1c\x51\x27\x90\x0c\xeb\xcf\x4b\xce\x61\xc1\xe4\xc0\x7f\x24\x9c\xa5\xb6\x97\xaa\x52\x36\x75\x26\xa2\x8c\x24\x88\x8d\x7f\xa7\x52\x9e\xe6\x6c\x21\xb9\x9f\x85\x23\xcc\xb5\xe1\x3e\x1e\x3f\xf2\x7d\xef\xe5\x33\x79\x4b\x93\x58\x85\xa0\xd6\x17\xfc\x37\x9d\xc8\x0c\xef\x24\xa0\x5a\xff\xbc\x1c\x05\xef\xe8\x10\xa8\x02\xc5\x08\x46\xac\xa9\x26\x89\x8d\xde\xd5\xc5\x5a\x9a\x07\x12\xd4\xc8\x21\x9c\x30\x32\x29\x4a\xa6\x5b\xa4\x3d\x34\x0e\x77\xb9\xc1\x49\x4a\x93\x67\x26\x57\x2b\x2b\xcc\xa5\x24\xff\x1a\x17\x12\x1b\x65\x78\x62\x59\x70\x79\xfe\xd1\xf5\x37\x0f\x93\x08\x5c\x37\xc3\x92\xc5\x7a\x16\xca\x50\x73\xcf\xd4\x24\x34\xcf\x99\xb1\xfd\x67\xe7\x62\xe2\x9f\xe4\xc6\x11\xb4\x37\x0e\x8a\x0e\xf7\x92\x1b\xb5\x5a\x02\x53\x0a\x03\xc2\x59\x66\x6d\x66\x36\x24\x6f\xa2\xea\x34\x61\x52\x32\x0a\x85\x11\x07\x69\xa6\x29\xad\xaa\x27\x84\xc3\x82\x52\x92\xa1\x16\x15\x0a\x4c\x21\xf9\xf9\x50\x2c\x18\x50\xcc\x55\x17\xb2\x57\x26\xb4\x87\x47\x8d\xb2\x50\x1b\xeb\xa0\xdd\xf1\x2b\x38\x56\x39\xb2\xc1\xe0\x29\xfc\x44\x28\xb4\xcd\x37\xfa\x0d\xae\xa7\x9f\xb1\x85\xf9\x4c\xa4\x93\x63\x3b\x3a\xcb\x46\xf4\x99\xd3\xfd\x45\xd9\xce\x79\xe0\xfd\x45\x11\xa7\x0d\x67\xd0\xa1\x4a\x65\x79\x79\x65\x56\x55\xae\x48\xd4\x0a\x99\x2a\x95\x2e\xa2\x52\x19\x58\xa0\x4b\x63\x49\xc8\x2e\x68\xbf\x85\xb6\x00\xcf\x0a\x79\xdb\xf4\xed\x6c\x1a\x3c\x52\x26\xf4\x8d\x0a\xbb\x6b\x9e\xd5\x3b\x2b\xa4\xc3\x2f\xd0\x36\xd3\x99\x47\xdb\x30\x0f\x4f\x80\x87\xd1\x22\xbd\x3f\x98\xb2\x2a\x6a\xe6\xac\x2b\xf6\x4e\xd1\xf7\xff\x98\x07\x68\x96\xc1\xcd\xa5\x76\x6a\xbb\x74\x54\xbd\xce\x88\x1a\xe3\x3a\x35\xa8\xbf\x1d\x0d\xc7\x26\xaf\xb6\xeb\xae\xd8\xc2\x50\x44\xb3\xce\x32\xff\x8f\xf4\xff\x14\x44\x4d\x38\xc5\x30\xc2\x49\xb6\x64\x3b\xae\x42\x77\xee\x0a\xb6\xe3\x8d\x36\xd7\xbc\x0c\xbd\xc0\xd3\xe1\x40\x77\x85\x25\x45\x4b\xee\x2a\xf0\xed\x2f\xd9\x42\xf3\x5e\x96\xc2\xc4\xfd\x3b\x6e\x74\xe5\x2a\xb4\xdb\xaf\xaf\x5f\x3d\xcb\x17\xf2\x35\x3e\x83\x93\xa5\x4a\xbe\x34\xcf\x38\x04\x34\x55\xb0\x76\x31\x3b\xf3\x06\x0d\x32\x36\xc7\x6e\x5f\x9d\x18\x7c\x56\x99\x54\x38\x29\xdc\xbf\xe9\xa4\x70\xd7\x92\x69\xde\x4e\x4b\x98\xf8\x3e\xe6\xda\x1e\x27\x25\x29\x4c\x30\x45\x13\xa9\xcf\xde\x88\x59\x0d\xab\xae\xf3\x56\xc3\x1c\x85\x51\x0f\x77\xde\x0d\x00\xc4\x07\xc8\xc1\x16\xa6\x69\x47\xc1\xbe\xe5\x76\xe5\x11\x05\xb7\xd0\x3c\xfa\xce\xbd\xbf\x52\x11\xa4\xc3\xf7\xf3\x8b\xf9\xe4\x71\x80\x5e\xbd\x62\x5e\xcc\xb3\xf9\x2a\x3a\xa7\x61\xfb\xf7\xfc\x62\xf6\x98\xcc\x82\xab\xf9\xc5\x7c\xfa\xb8\x42\x77\xbe\xb5\x6c\x64\x1c\xbe\x0f\xfe\x32\x0f\xe7\x63\x88\xce\x1f\x5e\x9c\xd9\x7c\x6a\x27\xbc\xea\x44\x38\x89\x1c\x29\x11\xe1\xcc\x0b\xb2\x5c\x10\xd4\x0b\x52\x8f\x82\x12\x49\x19\xd4\x3e\x6d\x79\x19\xcd\x34\xe0\x75\x0d\x93\x48\x06\x9c\xce\xc2\x2c\x0a\xc2\x28\xe8\x94\x21\xdc\xa6\xf6\x17\x7d\x5a\xc6\xe3\x2c\xfe\xe0\xc6\x12\x26\x07\x34\x32\xe8\x77\x94\x72\xe3\x24\x27\xf8\xcb\x8d\x53\xd8\x44\xa5\x73\xd3\x73\xb4\xe2\x46\x4b\x18\xd1\xe9\xe7\x1c\x66\x5e\xe5\xde\x99\x5c\x8a\xab\x0c\x43\xd5\xa8\xa8\xf7\xd6\x8e\x32\xc1\x80\x87\x9b\xa4\x74\x22\x9a\x50\x6b\xab\xd6\xee\x22\x8c\x28\xb8\x4d\xe9\xc5\x41\x01\xb7\x88\xc0\xf1\x0d\x78\x3c\x9d\xb5\x4e\x26\xc1\x3c\xcd\x46\x23\xdd\xa7\x9e\x6d\xf7\x94\xeb\xa8\xd9\x48\x46\x0d\xa6\x14\xe3\xeb\xf6\x4a\x72\x3e\x5b\x71\xa2\x22\xd7\xf6\x49\x97\x06\xba\xe4\xb1\x42\xd8\xf7\xb7\x4d\xb6\x7b\x9d\xe5\xde\x8c\xc3\x38\x1e\xe9\xc0\x84\xd7\x1c\x5d\x2d\xdf\x93\x59\x30\x2f\xcf\xc9\x55\x38\xbf\x9d\xff\x12\x0d\x1f\xd3\xf0\xfd\xe3\xe8\xbc\xfa\x8b\xe3\x60\x7a\x49\x9a\x50\xed\xfd\xd0\xac\xe2\x52\x0e\x5a\xfb\x6b\xa9\xc9\x6b\xde\x33\x52\x4d\xef\x65\xcc\xbb\x52\xb6\x0e\x93\xc8\xf7\xbd\xc7\xea\xb9\xf1\xc0\x8c\x50\xb2\xaa\x68\x4c\xf6\xe5\x2c\x54\xa6\x43\x28\x91\x8f\x82\x9b\x26\xf6\x60\x55\x0d\xb2\x50\x96\x36\x06\x3e\x03\x94\x82\xab\x90\xee\x33\x22\xaa\xaa\xa0\x7a\xc3\x69\x70\x14\x64\x5b\xd8\x6f\xc8\x1d\x98\x08\x86\x82\x89\x07\x49\x56\x8a\x38\x5b\xc8\x31\x97\x7c\x26\x0f\x6d\xa0\x12\x40\xda\x88\xeb\xf2\x17\x46\x1c\x96\xd7\x2f\x56\x06\x61\xb4\xa3\x2a\x3f\xed\x71\x6c\xc5\x87\xb8\xbf\x96\xf0\xcb\x94\x66\xf0\x28\x9a\xb4\x50\x21\x49\x33\x95\x40\xa0\x1d\xd1\x13\xc3\x8b\x67\x11\x9d\xe9\x07\xd4\xcf\xe8\xb9\xa1\x56\x3e\x03\x7c\xe3\x06\x2a\x37\xd4\x5f\xc2\x1e\x76\x5d\x99\xb2\xf0\x51\xa4\x2c\x3b\x64\x73\x93\x88\x25\xe0\x1c\x6a\x36\xd5\x99\x6d\x5a\xb6\x12\x38\x3b\x5b\x81\xb7\x2b\xa8\x83\x19\x74\xc3\x90\xce\x9a\xdb\x64\x5c\xf0\x78\x79\x3f\xd3\x7f\x11\x56\x49\xc9\xb1\x8a\x8d\x95\x4b\x54\xab\xb4\xa6\x8e\x5c\x07\xa1\x11\xae\xe5\x03\x79\xa8\xa0\xf9\x83\x06\x65\x45\xaf\x96\xd5\xae\xe0\x37\x64\x16\xfc\x9c\x89\x24\xad\xd0\x73\xe6\x02\x6e\x39\x3b\xa0\xc2\xb5\xe0\x19\x0a\xa7\x94\xb6\xa4\x94\xcf\xe8\x66\x3b\x98\x80\xac\x17\x0c\x26\x3a\x41\x80\x45\x7d\x9b\xb8\xec\x8d\x4f\x6d\x86\x07\x85\x45\xd5\xad\xc0\xf0\xfd\x28\x0d\x43\xb1\xb3\xc9\x25\xbf\x2a\x2e\xf9\x31\x5a\x53\xc1\xf9\x43\x1e\xb9\x68\xad\x86\x45\x9a\x97\xdc\x8d\x63\x7f\x94\xb5\xcc\xc5\xc2\x5a\xc4\x71\x8c\x82\xf5\x8d\x8c\xe7\xb5\x41\x16\x3a\x79\xc8\x55\x82\x71\x52\x1a\x0c\x1a\x66\xd1\x65\xe1\xfb\x85\xbc\x5e\x3b\xc6\xbf\x18\xdd\xa5\x91\x90\x4f\xa7\x92\x37\x9a\xc5\x4a\xe3\x42\x0a\xb4\xa2\xe8\x7a\x62\x9d\xba\xb6\x30\x5a\x31\x3d\xe4\x56\xf8\xd9\x92\xfb\x74\xf1\x64\xa3\x12\x6d\x23\xea\x9c\x06\x39\x4a\xce\x97\xfc\xae\x57\x87\x30\xeb\x09\x9b\x6c\xa2\x1e\xe3\xaa\x80\x06\x66\xda\x04\x43\x46\x94\x6c\x10\x89\x44\x53\x81\xc6\x20\x88\xb1\xf4\x43\x2b\xba\x9d\xda\xf8\xa2\x94\x9c\xa6\x84\xa7\x27\x69\x4a\x0c\xf6\x0d\x30\x04\xcf\x72\x19\xf4\xbb\xaa\x1f\xa5\x53\x70\x66\xd7\x4e\xf3\xb0\xe6\x82\x50\x28\x75\xc6\x51\x79\x57\xc4\xcb\xe5\xb7\xdd\x04\x11\x6e\xbb\xf1\x72\x49\x4c\x94\xea\x4e\xde\x81\xa0\xf3\xdb\xc0\x2d\xa7\xa8\xdf\x34\x61\x75\x0f\x3d\x0a\x0f\xa3\x65\x38\x76\x8d\x30\x76\xcb\xad\x4c\xdd\xca\x7a\x56\x9f\xd2\x7e\x5d\x88\x4a\x05\x69\x6d\x12\xa9\x2d\x8e\x87\xf9\x54\x1c\xeb\xa3\x7a\x68\x14\x9e\x75\x15\x16\x8e\xe9\x7b\xcb\x4a\x84\xd6\xea\xe8\x9f\x2a\xdb\xb5\x88\xd1\x6d\x3f\x49\xd3\xd3\x93\xe8\x69\xff\xb3\xe5\x4f\xf4\xf1\x27\xa6\xed\xf6\x84\xf3\x96\x4d\xfd\x99\xe5\xea\xda\xf9\xc8\xba\xa5\xfa\xd1\xbb\x3b\x2b\x4e\x88\xbb\xd7\x55\x75\xa8\xa9\x9b\xe7\x19\xc3\xbe\x1b\x1c\xdb\xdf\x80\xcb\x6a\xca\xd2\x06\x0b\xf7\x94\xc6\xcc\xef\xc9\xaa\x40\x6f\xf2\x99\x42\x91\x3c\xb3\x5e\xfb\x01\x51\xa9\xe1\xf9\x76\x97\xc6\x02\xb3\xc3\xa3\x5e\x6f\x61\xd4\xe0\x9c\x36\x57\x75\x18\x01\x77\x03\x23\xa0\x95\x61\xeb\x10\xaa\x40\xd3\x6e\x7e\x59\x27\x2e\x96\x9b\xda\x44\x34\xe4\xa2\x87\xab\xdc\x32\xde\xfa\x5a\x89\x7c\x0a\x0a\x59\x4f\xd2\xee\x0c\x13\xb6\x35\xc9\x96\x33\x4c\xa1\xea\x60\xee\xc7\x12\x8f\xde\x72\x34\x27\x69\x23\x80\x84\xc2\x07\x47\x3c\x93\x8c\x0b\x7e\xc3\x0b\x64\xaa\xa1\x83\x39\x12\x6a\xc8\xbc\xef\x38\xbb\x08\xdf\xb7\x38\x98\xe1\xc5\x5a\x5e\x6f\x4f\xe3\x34\xbd\x8e\x17\x1f\xcb\x96\xed\x35\x67\x3d\x38\xf2\xf8\xc0\x1f\x6a\x27\x63\x9a\x4a\xee\xd4\xce\x50\xd5\x91\x7e\x63\x66\x38\x79\x8f\x29\xc6\xb9\x9d\xfc\x50\xbb\x06\xd8\xdc\x24\x8e\x74\x7e\x34\x6d\xa7\x8e\x54\xb2\xba\x04\x7d\x78\xb2\x05\x3a\x66\xb1\xc1\xe4\x32\xb6\xe6\x1e\x6c\x34\xd5\xd7\x57\x6c\xc4\x7d\x97\xc3\x61\x79\x65\x85\x78\x14\x6d\x95\xf2\xb0\x34\x61\xc5\x8a\x70\x12\x41\xa1\x28\x30\x8e\x29\xe1\x7e\xcc\x9e\xc7\x69\xc9\x51\x1f\x93\x37\xe9\x5f\x06\x53\x7a\x26\xa1\x69\x9b\x17\xf7\xa8\x20\x18\x48\xaa\x88\x0d\xa6\x90\xa0\x95\x60\x31\x0b\xa3\x00\x43\xfd\xa7\xec\xd0\xc2\xf1\x6e\x50\x41\x0c\x54\x28\x5a\x6d\x8f\xa6\x10\x9b\x9b\xaf\x31\x96\x78\x20\x39\x8f\x83\x59\xde\x02\xda\x50\xd9\x49\x83\x27\x4f\x87\x02\x15\xdf\x4f\xc7\x9b\xb8\xc4\xf4\x26\xb9\xd1\xe0\x05\x99\xef\x37\x62\xc2\x86\x28\xb0\x29\x36\x32\xea\xfb\x82\x64\xb4\xa6\xb5\x13\xd7\x1d\xf4\x58\xf7\x06\xc4\x6a\x50\xc1\x7f\x7b\xa6\x66\x06\xda\x84\x95\x3f\xc1\xd0\x5f\x92\x02\xf3\xdc\x67\x3a\xdd\x1b\x5a\xd6\x48\x6a\xe1\x92\x5a\xd9\x66\x01\x53\x0a\xc5\x15\x2b\x7d\xbf\x1c\x8d\x6a\xd3\x79\x97\x0c\xb3\xf7\xba\xd3\x1e\x87\x1c\x49\x8f\xdc\x71\x79\xe9\x98\x00\xb4\xb6\x03\x15\x6a\xba\x7d\x2d\x58\xea\x29\x99\x30\x04\xc8\x9c\xa1\x57\x42\xab\x74\xcf\x3e\x0f\xf2\x1a\xd2\xdc\xbd\x8b\xbb\x0d\x15\x55\x25\xaa\x8a\xa8\xf6\x4c\xf7\xb2\x4a\x6f\x73\x83\x04\x75\xdd\x98\x81\x32\xe8\xf5\x87\x4a\x10\x20\x43\x0e\x46\x80\xaf\xd5\x61\x33\x63\x7d\x42\x83\x22\x6a\xa0\x0c\x44\x55\x39\x9b\x2a\xdb\xee\x19\x6b\x3a\x36\x9d\x76\xf3\x2e\x39\xf5\x7a\xc7\x9b\xd5\x16\x3f\xa4\xad\xac\x36\x26\x69\x6c\x8f\x35\x4d\x18\x7a\x2a\x01\xa7\x27\x2f\x26\x95\x32\xd1\x03\x17\x51\x11\x4f\x1d\x3e\x8c\xe8\xd5\xfb\xfa\x51\x04\xa1\xa7\xd3\x75\x7a\xe0\x2d\xf3\x8c\x77\x9b\x90\x68\xe3\xc1\x89\x76\xda\xdf\x26\x60\x9a\x5a\x7a\xaa\x5d\x8c\xa8\x0e\xde\x2a\x4e\xd2\xff\x79\xb3\x53\xd0\x2d\xc9\x66\x23\xc8\x98\xb7\xe3\x19\xa6\x0c\x86\x84\x1d\x4a\x11\x8b\xbe\xbd\xc8\x6a\x50\xb9\x1f\xfb\xc0\x58\x25\x96\x6c\xb6\x47\xa5\x91\x3c\xda\x2e\x74\x12\xeb\xbd\x67\xc7\x62\xc3\x33\x1d\x60\x51\x92\x0f\xc9\xae\x35\x06\xc5\xb0\xd8\xf6\x1c\xd4\x6f\x93\x00\xbb\xfb\x79\x0a\x67\xd9\x9b\xd4\xe5\x08\xc3\x2c\xfc\x2a\x42\xdc\xab\x9e\xce\xf2\x50\xb2\xc3\x11\x39\xea\x3f\x91\x77\x5e\x7f\x8a\x79\xae\x99\xe7\xa6\x59\x93\x74\x57\x22\x46\x93\x7f\x97\x36\xa9\x39\x85\x4e\xf6\xaa\x73\x72\x0a\x93\xe3\x55\x2f\x9d\xd0\xb9\x5d\x69\x20\xc2\x2c\x9c\x60\x6e\x71\xb1\xf1\x22\xd5\x71\x82\xb9\x56\x9a\xee\x6b\x5a\x53\xe0\x2a\x0c\x3a\x6d\x7a\xab\x41\xae\xaa\x6b\x83\xad\x62\xdc\x1a\xfc\x9e\x93\x6e\xde\xed\xce\x94\x53\x95\x08\x6b\xd1\xac\x3c\xf4\xa4\xf4\x5a\x9e\x29\xcd\xd9\x55\x4c\xb5\x97\x23\xcb\xf4\x32\xa5\xb0\x40\x6b\xb8\xa2\x19\x14\x6d\x7c\xce\x24\x49\xae\xfd\xce\xde\x6d\x94\x1d\xd8\x83\x92\xa7\xab\x11\xae\xc5\x1e\x15\x87\xf4\x6c\x89\x31\x97\xfe\x6c\xce\x20\xbc\x43\xe5\xb4\x3b\xf9\x47\x96\x74\x96\xcc\x96\xc6\xf3\x31\x27\x31\x14\x50\x42\x42\xf5\xe3\x5e\x52\x41\x01\x89\x87\x43\xf8\x7c\x21\xfb\xb6\x70\xb2\xf5\x62\x2a\xf9\x4c\xde\x66\x98\x8e\x4c\x49\x18\x60\xc1\x24\x0b\x0d\x24\xa9\xaa\xc2\x4d\xe1\x4b\xd5\xb2\xd4\x35\xec\x58\x32\x6b\xa1\x2f\x51\xdc\x1f\x96\xc4\x09\x8b\xef\x40\xf8\x98\xdf\x2d\x38\xda\xae\xbd\xc8\xf3\x8f\x08\x6f\xfd\x9f\x08\x87\xdd\xb8\x94\x64\xd8\xbb\x22\x5e\x48\x9e\x72\x38\x7d\x8c\x59\xe1\xe5\x10\xf7\x3d\x43\x2c\xdc\x4c\xc2\x7a\x70\x67\x62\xb6\x23\x34\x20\x6e\x37\x6b\x2e\x90\xbc\x53\x03\x20\x6e\x2f\xec\x54\x39\xa2\x9c\x6b\x9a\xcc\xe8\x18\xec\x56\x42\x4e\xcc\x26\x9f\x3d\xc8\x12\x3d\x84\x93\x28\xfc\x32\x42\xd6\x31\x27\x13\xe0\x9d\x5d\x4d\xe8\x2c\x09\x24\x7b\xec\xee\x05\xd2\x52\x9f\xab\x25\xe8\x4c\x04\x25\x16\x7c\xf4\xd9\x82\x19\x9d\x65\xc1\x9e\xd2\xf6\xa1\xd2\x8f\x9f\xc9\x31\x36\x6b\x2e\x1c\xcc\x10\x9b\xd4\x35\xe4\x3d\x24\x6b\x01\xc7\xb2\x94\x98\x89\xf0\x91\xa4\x3c\x45\xf8\x75\x74\x96\x84\x42\xe2\x22\x16\xcb\x31\x42\xe9\xfb\xf8\xe0\xa2\xa6\x8c\x49\xa2\x28\xfc\x72\xc4\xa3\xf0\x51\x64\x62\x48\x00\xae\xdc\xa3\x68\x2c\xaf\x74\x0a\xaa\x96\x90\x73\x95\x57\x26\x85\x3c\x14\xe1\x24\x8a\x7a\x92\xee\xa8\x2f\x2d\x7c\x23\xc9\x55\x2d\x36\x0b\xfa\xef\xe1\x76\x25\x16\xdb\x7b\xbb\xa6\x90\xd8\xb5\xcb\xa9\x12\x4c\xe2\xf9\xca\x21\xa7\x90\xd7\x70\xbb\xe1\x7d\x66\x83\x47\x49\x00\x0b\x26\x20\x63\x26\x07\x1e\x24\x47\x59\x84\x28\xe4\xed\xac\xf0\xae\x4d\x4b\xbf\x49\x34\x32\x5b\x0a\xa3\xca\xa7\x6e\x9f\x8f\xa7\xb3\xa3\x4e\x82\x02\x46\x23\x21\x29\x5b\x37\x29\xb7\xc4\xa1\x75\x2d\xf1\xa0\xb8\x62\x92\x7f\x42\xfc\xa1\x6f\x45\x49\x54\x9b\xd2\x90\xeb\xa3\x06\x03\x41\xc1\x5e\xbc\xe8\x6e\x84\x37\x2f\xa1\xdd\x04\x85\x09\x66\x6b\x95\xff\x23\x5e\x6b\xf4\xeb\xb9\xba\x34\xb5\xcb\x6b\x81\xf9\x4e\xb0\x34\xc8\x2e\x6d\x4f\x8d\x4d\xbf\x03\xc4\x9a\x39\xbb\x43\xa9\xe5\x77\x37\x71\x5a\xbd\xcc\x04\x2f\xb2\x38\xad\x7e\x8a\xb3\x35\xaf\x7e\x92\xcb\xc8\xb3\x05\xaf\x94\x4b\x70\x85\x11\x25\x7e\xfe\xe9\x25\x45\x8c\xad\xf4\x4b\xfd\xf8\x87\xb9\x4e\x3f\xf4\x80\xec\x70\x99\x2b\xd7\x5e\xfd\x38\xbe\x8d\x8b\xcc\xf7\x85\xef\xdf\x69\x86\x52\x8c\xb3\x78\xab\xb0\xb7\x5b\x86\xe8\xec\x83\xb6\xab\x07\xb6\xab\xe0\x81\x37\x14\xe3\x2d\x2f\xcb\x78\xcd\x41\x28\x5c\xa4\x04\x08\x5c\x49\x74\xbf\x33\x45\x99\x4b\x1c\xb4\x90\x91\x8b\x7b\xf1\x5e\x12\x35\xad\x71\x69\x7e\xe4\x6d\x68\xd2\x02\x59\x6c\xb8\x0f\xae\x7e\x54\xd7\x0e\xe1\x74\xac\xb0\xb7\x5b\xe6\x68\x44\x04\x43\x92\xa8\xc3\xe3\x50\xa7\x36\x71\xe2\x14\xb0\xfc\x2f\x71\x22\x02\xfd\xdc\x3a\x24\x44\xa9\x93\x67\xa3\x91\x69\x1a\x8b\x22\xe4\x60\x13\xb4\xaa\x48\xf3\x8b\x0d\x26\x30\x40\x77\x3c\xdf\x6f\x57\x79\x3c\xa9\xaa\x1f\x79\x0b\x98\x1f\x42\x58\xf2\xc8\x4a\xde\xb0\x28\xce\x8d\xe9\x39\x82\x67\xf2\x85\x4b\xc0\x7d\xa8\x4a\xbc\x95\xd0\x5b\x55\x5e\x9a\xc7\x4b\xcd\xdb\xb9\x5f\x7c\x7f\xf0\xb0\x1b\xd7\x64\xbc\xcc\xdf\x2e\x8a\x3c\x4d\x67\xad\x3d\x31\x7d\xd2\x80\x3c\xec\x09\x2f\xf8\xec\xc7\xd7\xda\xcd\xe0\x55\x1e\x2f\xf9\xd2\x83\x05\x86\x01\x3a\x2a\xa8\xc2\x0a\x2e\xa8\x02\xf5\x27\x5d\x35\xb3\x49\x43\xaa\x30\x4e\x6f\xa4\x7f\xc6\x30\xef\x52\x43\x7b\x58\x76\xb5\x90\xa4\x0e\x1b\x4c\x94\xa1\xe5\x83\x24\x7b\x50\xd0\x27\x28\x0b\x95\xa4\x41\x58\x46\x30\x98\x60\xe3\xd6\xfd\xa9\x95\x79\x33\xd1\x59\xa9\x5b\x77\x0d\xe6\x21\xc5\x18\xea\x28\xc8\x26\x36\xa9\x7b\x66\x72\xdc\xd0\x80\xa4\x98\xac\xfb\x84\x50\x2d\x75\x25\xc9\x05\xc6\xf3\xd1\x1a\x1c\x9b\xb0\x40\xa0\x03\x0a\x14\x10\xcf\xb2\x20\x33\xf9\x06\xcb\x08\x4a\x30\x9f\x9c\x24\x05\xc9\x8c\x07\xe9\xcc\x0c\x84\x06\xfb\x99\xf2\xdd\x85\x82\x06\x79\x0d\x6f\xfb\xc2\x0f\x74\xf4\xb8\xca\x43\xde\xfd\x3d\x18\x3a\x5a\xde\xb3\xe5\x78\x9f\x2c\xd9\x14\x96\x6e\x26\x64\xf4\x41\xef\x13\xf3\x86\x2a\x65\xae\x4a\x4d\xda\x71\x73\x3d\xc8\x01\xa1\x64\x8a\xb8\xd1\x74\xda\x55\x98\x08\xb4\x88\x79\xc9\x57\x49\xc6\x1b\x97\x25\x70\xcb\x81\x36\x17\x15\xb0\xc8\xb3\x55\xb2\xde\x17\xc8\x97\xa3\x7e\x97\x82\x90\x87\x56\xf4\xa6\xf5\xcb\x8c\x1a\x04\xa7\x60\xe2\xc4\x1d\xe5\xcb\xa3\x49\x58\xf2\xb1\xcd\x4f\x49\x04\x8d\x58\xd1\xa4\xf1\xd3\x0a\xb7\x4e\xa1\x8c\xb6\xb3\x19\x26\xdd\x1c\xcf\x47\x41\xf3\x18\x63\x62\xd6\x1a\x4e\xd0\x59\x0f\xc9\xf6\xb4\x5e\x1c\x8d\xab\x86\x78\xb1\xe0\x65\x79\x4a\x92\xdb\xf4\x54\x55\xa2\x47\xe0\x28\x4c\x12\x19\x74\x80\xb5\xba\x03\x39\xd8\x40\xa9\x12\x4a\xae\x93\xd1\x51\x68\x94\x73\xb3\x22\x10\xf4\x58\xdc\xd3\xd2\x39\x75\xc1\xa1\x75\xcc\x3a\x41\xf2\xe8\xa1\x60\x44\xb0\x6e\xaa\xff\x99\x40\xb1\xaa\x3b\x69\x39\x2c\xd6\x59\x05\x9a\x64\x0f\xb2\x59\x28\xa2\x40\xb4\xc5\x8c\xd4\xb5\x5f\x55\x97\xb0\x4e\xb2\x95\x85\x22\x2c\xa2\xa8\x26\xee\x02\xe1\x99\x77\x12\xac\x92\x8c\xfe\x01\xbc\x6a\xba\xab\xc9\xdc\xe5\x7e\x95\x4c\xc4\x26\x2e\x9f\xc5\x22\xfe\xf3\xa7\xa5\x59\x13\xdf\x1f\x1c\x0d\x48\x48\x42\x46\xd6\x7f\xa3\x42\x39\x2f\xe1\xa3\x79\x78\x6a\xd4\xf5\x07\xa5\xab\x3f\x9f\xd7\xd5\x3c\x34\xcf\x11\x7d\x78\x01\x3f\x71\x76\x11\x3e\x19\xfd\x3b\x52\x22\x5e\x47\x7d\x79\x34\x46\x3d\x9a\x8f\x98\xda\x5d\x7e\x25\x72\x45\xdf\xb8\x3f\x6b\x58\xb6\x6b\xb5\x00\xef\x23\x1f\x2b\xc8\xd4\xef\x0d\xb0\x3c\xeb\xd6\xa1\x87\x8f\x26\x69\x98\x0e\x1e\xf3\xe1\x73\xed\xbe\x39\x6a\xf7\xc3\xc9\x86\xdf\xb4\x1b\x56\x37\xa6\xa3\xb7\x3d\xea\xa7\x13\xd0\x53\x69\xef\x20\x66\xb9\xef\xe7\x8e\x9d\x5d\x03\xca\x2a\xc0\xa4\xa4\x2c\x1b\x11\x3d\xde\x20\x1f\xd1\x1e\x4b\x12\xd5\x28\x4f\x76\x94\x9c\x83\x37\xfa\x13\x78\x7a\x2d\x9f\x08\x51\x94\x1e\xd5\x19\xf7\x0a\x66\xc5\xd5\x08\xb0\x31\x52\x98\xb2\x27\x92\x31\xf9\x43\xd1\x62\x4d\x7c\x05\x39\x8b\x91\xa7\xd4\x0a\x6d\x8c\xa4\x85\x7b\x5f\x53\x0a\x3b\x95\xfb\x26\xcc\x22\x4a\xcf\xde\xe0\x8d\x7e\x34\x02\x18\x4c\xac\xd1\x55\xa2\x1f\x8e\x39\x7b\x85\x24\x90\x43\x72\xe8\xb3\x8f\xaa\x49\x93\x11\x9e\x06\x4f\x78\x37\xd1\xbb\x71\xee\x53\x96\xe1\xcd\xb9\x6b\xa3\x02\x52\xd8\xb5\x43\xad\xaf\xb5\xde\xed\x14\xda\x75\xbe\xab\xab\xfc\x8f\xc7\x86\x99\xe5\x6b\xe5\xb4\x29\xe0\x98\xa9\x50\x5f\xe4\x4a\xf4\x03\x6c\x27\x3d\xfc\x71\x57\x1a\xe2\xec\x4a\x18\x15\xa9\x86\xb9\xdf\xf7\x7c\xcf\xfb\x2f\x27\x39\xc5\xc6\x46\x86\x11\x51\x55\xde\xea\xce\xa3\x43\x0f\x2b\x79\x90\x31\x0d\x3b\x72\x16\x50\xf8\x3e\xc6\x95\x3b\xca\x40\x8e\xc5\x9c\x43\xd2\xb2\x98\x28\x28\x0d\xb2\x46\x9d\x90\x49\x34\x59\xc3\x92\x1f\x8f\x8b\x1e\x30\xad\xa7\x1c\x82\x8e\xcd\x54\x62\xb0\xc2\xbd\x3a\x4e\x4e\xaa\x3e\xf4\x82\xb0\x1e\x1d\xb2\xd8\x07\x2c\x27\xf9\x8d\x52\x15\x8e\x5d\x66\xb6\xe4\x63\xdd\xa1\x3a\x98\x67\x5e\x92\x59\x99\x2e\x63\x2c\xc1\x23\xd4\x34\x99\x8d\x46\x98\x0d\x8b\xc8\xb1\x30\x6d\xca\x67\x22\x8b\xb9\x75\x29\x68\x4c\x9c\xa3\xa6\x06\x12\x43\xa4\xa1\xd1\x3c\x0c\x32\xdf\xc7\xa3\x8c\x12\x7f\x64\x83\x89\x44\x20\xcd\x60\xfb\x93\x2f\xeb\x0d\xc0\x12\xde\x59\x83\x88\xd4\x56\x14\x0a\x31\xda\x05\x2f\xe0\xa0\x34\x0a\x9f\x11\xf3\x76\xe5\x04\x2e\xa6\x0a\x85\xdd\xf0\x22\x52\xf9\xdf\x8e\x30\x57\xdf\x6e\xa9\xc1\x3e\x32\xaa\xc7\x1e\xd3\x0e\xa2\xd2\xff\xca\x55\x84\x42\xae\x69\x17\xfc\xaf\x8a\x99\xdd\x63\x83\xfd\x6c\x34\x5e\x4b\xae\x04\xbd\xa0\xdf\x01\x11\x7b\xda\xce\x3a\xe0\xa0\x0f\x06\xe8\xbd\xe4\xca\x2c\xd8\xec\xa0\x24\x2e\xd0\x74\xc2\x81\x91\xe6\x28\xf5\xc0\xe9\xe7\xcf\x63\x7f\x2b\x8b\x94\xc7\xc5\x3f\x3e\xdb\x90\x86\x4e\x05\xfe\x10\x46\xbd\x92\x25\x97\xda\x99\x42\xd2\x11\x70\xa8\x0b\x04\xe2\x96\xe1\x4d\xe9\x9e\x83\xd1\x28\xab\xaa\xa4\xc5\xde\xe5\x10\x4a\xc2\x01\x09\x96\xcf\x6c\xa1\xda\x11\x74\x5f\x50\x43\x54\x5e\xf9\xa4\x30\x18\x22\x0f\xe3\x08\x78\x0b\x70\x55\x18\x68\x04\x4d\x79\x57\x0c\x87\xa0\x7f\x21\x30\x96\x0d\x5f\x51\x12\x57\x2e\x24\xac\x3c\xe2\x35\x26\x92\x18\x45\x33\x49\x65\x2c\xcf\xe7\xe3\x8a\xce\x97\x43\x32\x0b\x42\xfe\x5d\x84\x1f\xe6\xcb\x61\x45\x2f\x74\x3e\x4d\xf8\xad\x93\xe1\xc4\xe4\xf4\xa0\xac\xa2\xc4\x1b\xbe\xc6\xfc\x32\x61\x3c\xfa\xf4\x5f\xd1\xb9\x4d\xd4\xf1\x8e\xb3\xd0\x7b\x97\xef\x3c\xf0\x7e\x4a\xd6\x1b\xe1\x81\xf7\x6d\x2e\x44\xbe\xf5\xc0\x7b\xc5\x57\xc2\x8b\xe0\x59\x7f\x2a\x07\x2f\xcb\x33\xe4\x79\x09\x67\x2a\xec\x7f\x29\xee\x53\x4c\xad\x80\x59\x7e\x2a\x6d\xca\xde\x7a\x8b\x80\x66\x6d\xab\x3a\x01\xea\x40\xb2\x2b\xb6\x59\x59\x10\x0f\xb8\xa7\xeb\x7a\xb4\x86\x1f\x8e\x19\x57\x37\x83\xf8\x41\xed\x64\xae\x38\x86\x38\xcc\x23\x33\x80\x30\x8f\xa0\x79\x64\x22\x94\x14\x32\x2b\x6c\x16\x05\x44\xcc\xd4\xad\xed\x94\x96\x0d\x39\x7c\xc6\x4b\x2e\x3b\x6a\x63\x88\x72\x93\xdf\xf6\x28\x83\xb6\xea\x1c\xe0\xfd\xb6\x49\x96\x7d\xba\x24\x55\x84\xd6\x20\xf2\xf5\x3a\xed\x3b\x22\xde\xb5\x4a\xa0\xdd\x32\x94\x52\x74\x81\xec\x96\x68\x3b\x43\xd9\xbe\x79\xee\x1e\xcc\x67\xea\x40\xa2\x19\x2a\x3e\x98\x9a\xf6\xb7\xaa\x5d\x5b\xe8\x7b\xae\xe9\x5b\xe3\x34\x5a\xa1\x1b\x29\x1a\x58\xbf\xe2\xec\xa2\x6d\xa4\xdd\xb6\x68\xa0\x17\x09\x7c\x92\xd5\x1f\x56\xf3\x0b\x32\x0b\x7e\x8b\x6f\xe2\x8a\x2f\xb6\x31\x2d\x17\x45\xb2\x13\x17\x09\xbc\xe0\xec\xa0\x7c\xcf\x83\x70\x0a\x9e\x89\x93\x6c\xf2\x3d\xb1\x2f\xcc\xd3\x17\x8f\x3d\xf0\x9a\x08\xc9\x11\x88\x0d\x8f\x97\xaa\x12\x3a\xbd\xa8\xef\xfa\x31\x82\x45\x9e\x06\xe1\x23\xfb\xf1\x6a\x91\xa7\xeb\x22\xdf\xef\x54\x31\xfb\xcb\xa9\x21\x8a\x56\x05\x71\x9d\x2f\xef\x75\xa3\xf8\xe8\x16\x5d\x06\xe1\x97\xdd\xa2\x57\xa2\xd0\xc5\x8b\xc7\x3d\x75\x3e\x68\xcf\x8a\x20\x9c\x80\xe7\x81\xe7\x45\xf5\xd9\x0b\x3e\xce\x77\x02\x47\xc2\xd4\x73\x92\x67\xf0\x82\x8f\xb1\xb6\x7c\x25\x56\x79\x2e\xe4\x83\x19\x31\x3e\xc7\x4a\x80\xf7\x02\x25\x4f\xf1\x12\x6b\x6c\xf0\xe7\x12\xf7\xec\x5b\xb9\x31\x95\xff\x97\xd9\xfc\x76\x78\x79\x71\x79\xac\xb4\x7b\xa8\x9d\x74\xcc\x89\x7b\x5e\xc4\x6b\xf4\xd6\xa1\xad\xf0\xcb\x0f\xbb\xbe\x3c\xcb\xe4\x46\x45\xfb\x3d\xfa\xf2\x07\xa1\xa9\x11\x68\x3c\x0a\xdd\xcf\x26\x3a\x37\x78\x4d\x9c\xee\x6e\x19\x1d\xae\x5a\xf4\x04\xb6\x86\x58\x07\x31\x78\x9a\xe6\x19\x1a\x19\xc9\xbf\xe8\x2a\x32\x98\xd0\xce\x2f\x1b\x52\xc8\xc4\x3d\x80\xb6\x87\x8e\x49\x09\xf4\xf8\xee\xea\xc2\x3e\x7b\xb2\x8b\x2c\xc7\xf6\x9f\xaa\x6a\x0c\x43\x27\x9c\x68\xba\xed\x3f\x43\xd4\x19\xfa\x5d\xae\x78\x37\xcd\xc8\xcf\xf2\x64\x7c\xe4\xf7\x17\xf0\x4f\x7d\xc4\xb6\xf9\xbe\xe4\xd5\x2e\x4f\x32\xc1\x0b\xcc\x8e\xc6\xef\xc4\x96\x67\xfb\x6a\x59\xc4\xeb\x6a\x59\xe4\x3b\x5a\x2d\xd2\x64\xf1\xf1\x02\x7e\xc1\x3a\xe1\xfb\x71\x74\x8e\xa9\x91\xc6\x64\x3c\xa4\x15\x45\x09\x34\xbf\xe1\x99\x60\x87\x75\x9a\x5f\xc7\x69\x70\x38\x36\x6d\x6c\x05\xc0\x72\x32\xdc\xdb\x00\x54\x70\x6f\x49\x5e\xaa\x62\x45\x21\x8b\x34\xde\x60\x6c\x43\x4c\x7b\xc2\x48\xce\x0a\x6a\xde\x40\xc2\x72\xeb\x61\x83\x44\xe3\x29\xa3\xd2\xdf\x39\x24\x14\x8a\xf1\x7a\x9f\x2c\xab\x8a\xa8\x07\x89\xe4\xe5\xdf\xe1\x90\x02\xd9\xb3\x7b\x35\x85\x92\x56\x95\xf3\x0b\x93\xb3\x92\x98\xdd\xeb\x4e\x95\x6c\xd0\xfc\x6a\x89\xb3\xbb\x4c\x7d\xa9\x54\xd1\xd8\xce\x58\x14\xc9\x7a\xcd\x0b\x4c\x55\xac\x72\x2e\xcf\xec\x37\x79\xc5\xa0\x3b\x8a\xb9\x0f\x1c\x25\x87\x4e\x8e\x40\x21\x65\x44\xb3\x09\x1e\x6d\x09\x3e\x3c\xcf\x8a\x3e\x2e\x53\x49\x18\x6c\xd8\x96\x91\x92\xfd\xa2\x4d\xe2\x45\x98\x46\xda\x43\x72\x1a\xc1\x8a\x91\x32\x7c\xa4\x03\x29\x6a\x87\xbd\xb1\xf1\xd8\xa3\x20\x19\x5a\x5c\x18\x35\x32\xf4\x79\x8a\xd3\x70\x13\x55\xd5\xa1\x86\x0d\x23\xc9\x4c\x82\x5b\xca\xd7\xb1\x40\x1e\x37\x58\x8e\xaf\x93\x6c\xa9\x43\x33\x6d\xe0\x74\xe5\x05\x73\x38\x23\x74\xfd\xde\x40\x5e\x24\x6b\x6c\x65\xab\xe4\x0b\x19\xe8\xad\x0d\x0a\x90\x5b\x13\xa8\x9d\x02\xb3\xc9\x41\xd2\x4e\xee\xa5\xb6\xfc\x84\x43\x8f\x52\x67\x24\x14\xe4\x59\x2e\x77\xf1\x82\x07\x2b\xed\x91\x38\x96\xd7\x79\x4e\x81\xec\xd8\x3e\xdc\x44\x98\xdc\x52\x3d\xb2\x30\xa2\x76\x82\x4f\xf3\x7d\x26\xd8\x04\xd0\x65\x6e\xbf\xf3\xfd\xc1\x74\xc0\x98\xfe\x65\x65\xc2\xb0\x82\x98\x56\xd5\xb1\xe0\xdb\xf7\x7b\x84\xe1\x1b\x88\x29\x85\xa5\xfc\x20\xd7\x5a\xfe\x35\x2d\x2d\x28\x2c\x0c\x6c\x1b\x50\x6d\xbf\x60\xea\x0f\xa5\x90\xcc\x76\xc6\x42\x6a\xd7\x1e\xef\x70\x08\x13\x58\xd0\x60\x67\xdc\xa2\xc1\xee\x88\x3a\x9c\x72\x96\x0e\xcf\xfb\x3f\x39\xa4\x8d\x60\xc8\xf7\xdb\x67\xd6\xf7\xdd\xa3\xa4\xa4\x1c\x7f\x1e\x74\x93\x55\x1f\xe0\x82\x84\xe8\xf2\xcf\x40\xaf\xf1\xf7\x3e\x05\x83\xb8\xc7\x8c\x64\x9f\x07\x62\x8c\x6b\x06\x25\x2b\x31\xa2\x68\x27\x66\xe3\x7c\x3e\xa6\xde\xd0\x00\xd2\x7c\x3e\x26\xb3\x60\x7c\x3e\x97\x04\xb2\xe4\xde\x89\x7c\x7a\x48\x3d\x4c\xfd\xcd\x76\x66\x76\xb9\x9c\xdd\x82\xed\x24\x25\x38\x48\x7c\x7f\x3b\x60\x6c\x31\x36\xe0\x5f\x55\x18\x1c\x48\x6e\x2d\xbe\x57\x7b\x5f\xfa\xfe\xa0\x54\x40\xbc\x18\x5b\x18\xa6\x55\x95\xf9\x7e\x86\xe5\x4a\x1b\x84\x9a\x78\xe7\xe7\x92\x9f\xca\xaa\x6a\xd0\xbc\x97\x70\x6d\xc1\x24\x87\xa9\x84\xaf\xa6\x4e\x07\x6e\x46\x23\x58\x6a\xc6\xd4\xf7\xcd\x53\x03\x9a\xf4\x2c\xf6\xfd\xc1\xae\x91\x7b\x2d\xc7\x82\xc7\xc5\x32\xbf\xcd\xec\xb9\x30\x2f\x4c\xad\x15\x38\x68\xb3\x34\x6c\xaf\xca\x37\xc5\x61\xd3\x7c\x35\xac\x3c\x1e\xc6\x26\x5a\xee\x46\x12\xc3\x7b\x6a\x77\xd3\xb2\xcd\x9b\xa1\x04\x0e\x04\xd6\xc1\x04\xb9\xce\xb6\xe8\x74\xaf\xe0\xd2\x96\xf7\x54\x3f\x0f\x14\x58\x7a\xb4\x46\x93\xbd\xdd\x91\x11\x54\xcb\xf6\x54\x82\x7f\x03\x49\xab\xe4\x8e\x70\x0a\x7b\x64\x73\x94\x78\xa5\xcb\x51\x23\x92\xd6\xc7\x41\x79\x65\x99\xfe\xd0\x38\x3a\x2c\x95\x67\x38\x42\xd7\xe2\x18\x46\xed\x67\xcd\x48\xec\xc3\x49\xc4\x4a\x10\x6c\x7a\x29\xae\xba\x7d\xa1\xe7\xda\x3e\x14\x8e\xae\x5c\x47\x85\x2f\x1b\xd0\xc6\x68\x55\x8a\x33\x1d\x2c\xc6\xbb\x82\x3f\xd3\x93\xae\x2a\xdc\xb1\xd6\x3b\xc7\xc9\xc1\x1c\xdc\xb8\x19\xa4\xc6\x42\xa5\x5b\x0a\x52\xe5\x48\x47\x12\x16\x87\x62\x38\x8c\x28\x42\x6c\x52\xbe\x29\xf2\x5d\xbc\xc6\x10\x58\x6f\x45\xbe\xdb\x49\x16\xf9\x12\x6f\xf3\x72\xbc\xd8\x17\x05\xcf\x84\x1e\x5b\x32\xe6\x29\xdf\x42\x21\x5b\xc9\x59\x62\xbb\xc1\x2c\x71\xa6\xb9\x97\xdb\x2d\x5f\x26\xb1\xe0\xfd\xed\x96\xe3\xc2\x9e\x0e\xac\xd1\xfc\xd4\xce\xf4\xad\xd3\x43\x4a\xdd\xcb\x8f\xd7\xbf\xb1\x1c\xca\xb1\xbc\x79\x58\x8e\x7f\x1a\xad\x07\xc9\x18\x21\x47\x5b\x94\xdb\x23\x1b\x29\x7b\x77\xd5\x52\x55\xe5\x66\xe4\x54\x5f\xe2\x7a\x62\x7b\x8c\xbc\x35\x95\x8c\x6a\x29\x79\xff\x7d\x2a\x58\x46\x7d\x9f\x28\x1f\x0b\x9e\x89\x67\x8a\x76\x23\x14\x4a\x94\x63\x39\x73\x24\x8e\xfe\x6f\x31\xde\xe5\xa5\x30\x7b\x85\x99\xb0\x9d\xdf\xad\xbd\x03\xd3\x13\xaa\x24\xd4\x7a\x9e\x96\x7c\x23\x94\x87\x11\xec\x99\x68\xe3\x03\x48\x19\x1f\xab\x80\x67\x98\x3a\xdf\xf7\x53\x57\xb2\x4d\x3c\x24\x0a\xdd\x08\x4e\x7c\xac\x42\x44\x3d\x66\x53\xad\xeb\x4c\x25\xb5\xb3\x49\xca\xcb\x94\xa5\x2d\x5f\x01\x64\xfb\xb4\xa3\xb0\xdb\xac\x69\x75\xd0\xc4\x9d\x42\x6d\x79\x6a\x53\xb2\x68\xd0\xd4\x96\xe1\x87\x1a\x54\xc4\xa5\x3d\x26\x0a\xb6\xc2\xab\x38\x4c\xe4\x16\x8a\xb0\x88\x9a\xf0\x19\x26\x44\x7f\x1c\x26\x11\xcb\x5a\xb4\x82\x64\x4d\x95\x9b\x9b\x16\xb6\x93\x14\x4d\x87\x8d\x6f\xa8\xfa\xa6\x83\xe8\xa7\xf6\xd6\xa2\x10\x63\xe0\x73\x6b\x5d\x7d\x96\x5b\x04\x59\xea\x68\x37\x12\x0e\x82\xb4\xd9\x89\xbc\x6e\xe2\x7f\xa8\xb3\xb9\xbf\x12\x7f\x58\x4b\x68\xf9\xfe\x1e\x83\xf4\x20\x75\x2d\x21\xa5\xb3\xaf\xfd\x0a\xd5\x92\x8f\x11\xe7\x36\x7a\x5d\xe0\x70\xe0\xd9\x7e\xcb\x8d\x32\xb5\xab\x5c\x45\x75\xe6\x91\xad\x96\xc3\xd2\x19\x35\x88\x3c\x0f\x49\x16\xa7\xd8\x81\x95\x67\xf7\x7d\xab\x83\x3f\x5d\xfd\xe8\x4b\xc8\xa3\x8e\xa2\xf7\xe4\x64\xb5\x2c\xf2\x0f\xa6\x77\x5b\x24\xc2\x3c\x6b\xfd\x32\x4a\x1f\x6a\x58\x25\xfd\x0e\x63\xa1\x22\x34\x51\x7f\x37\xe3\x98\x56\xd6\xac\x2b\xea\xc7\x34\x8a\x08\x0e\x69\x1e\x2f\x83\x43\x96\x7f\xbb\xbf\xd6\x8a\x6a\x1d\xc5\xef\xa0\x79\x80\x9e\x75\x18\x30\x76\x4b\xa8\xf2\x21\x1b\x63\xe9\xd6\x5a\xac\x54\x10\x3f\x18\x4c\x6b\x68\xd1\x2d\x1e\x7e\x49\x32\xaf\x86\xeb\x74\x5f\x7c\xae\x0b\xe6\x76\x21\x0b\xb7\x7a\x90\x2f\x4e\x77\x90\xef\x85\x57\x03\x9e\xcc\x53\x5d\x78\x46\x54\x83\x32\x7b\xd9\xa4\xc2\x09\x4a\xe5\x2d\x6b\xfa\x7e\xa2\x6f\x45\xcd\xb6\xb7\x06\x80\x45\xf4\x08\xac\xd4\xa2\xdf\x0f\x48\x23\x25\xf0\x62\xbc\xc8\xaf\xf9\x2a\x2f\xb8\xca\x5d\x19\x1c\x5c\xac\xd8\xbe\xda\x9b\x38\xd8\x0a\x3b\x4a\x7c\xd5\x02\x32\x95\x4f\xd4\x7d\x33\x56\x9d\x22\x5f\x6d\xeb\xd1\xba\xae\xb5\x65\x93\xa5\x66\x8e\xcc\x40\x5a\x5f\x5d\x7e\xa0\xe7\x35\x11\xc6\x56\xea\xb8\x2d\x13\x0b\x67\x93\x94\x6d\xff\x63\x55\xd6\xae\x61\x1b\x1c\x41\xa0\x1d\xb4\xc2\xa0\xb3\x9e\x93\x66\x3c\x74\xd1\xc6\x43\x15\x53\x2f\x92\x52\xdf\x47\x6f\xd4\xed\xc4\x97\xcc\x86\xe7\xb0\xaf\x4c\x50\x71\x95\xcc\xb6\xf3\x51\x5f\x77\xdc\x5d\xbb\xd9\x4d\xf0\x41\x77\xa8\xae\x7d\xb3\x87\xbe\xff\xa5\xba\x3f\xf0\x97\x9b\x78\x49\xbf\x69\xee\x8c\xc0\xee\xbb\x82\x97\x16\x19\xc1\xdb\xbf\x55\x11\x8c\xc9\xc3\x97\xb6\x48\xeb\xb7\x16\x55\xaa\x05\x00\xa1\xf9\x48\x64\x4e\x95\x63\x97\x76\xa4\x12\xc9\x96\xbf\x15\xf1\x76\xc7\xd4\x82\x9a\x9f\x48\xcf\x66\xf9\x2d\xd1\x8e\xa2\x0e\x76\x60\xf2\xc8\x1f\xe3\x5c\x76\x70\xfc\xcc\x03\xf3\x1d\x8e\x57\x3c\xf8\x00\x7d\x24\x14\xbe\xfe\x0c\x29\x84\xdf\xdf\x26\xdb\x3d\xce\x32\x18\x4c\xa1\x4d\x61\x1c\x5b\xf1\x1f\xc3\xc5\xd9\x29\x20\xb8\x01\x79\xe7\xeb\xaf\xb6\x13\x8c\xbe\xd9\x21\x63\x6a\xe8\x50\x31\xff\x9d\x7e\x8f\x67\xf5\x99\x9e\x8f\xa8\x25\xd5\x75\xdf\x12\xfd\x77\xc6\xf0\x99\x25\xfe\x83\xc1\xf4\xd5\xd4\xf0\xd1\x33\xd8\xba\x71\xa6\x8d\x53\xf1\x77\x7e\x2f\xef\xa2\x6b\xbc\x34\xd0\x0f\x7d\x21\xcf\x7a\x6a\x2f\xb0\x4d\x9c\xad\xf9\xf2\x5d\xbe\xc7\x58\x79\xf2\x8d\x28\x52\x5d\x6b\xc9\x45\x9c\xa4\xf2\x09\xf7\xe2\xcd\x26\x2e\xb1\xd2\x96\x8b\x58\x17\xd9\xc5\x6b\xfe\xab\x79\xf8\x97\x7c\x40\x8d\xaa\xfe\x7a\x93\xf0\x5b\xdd\x4b\x61\xfe\x3e\x95\x87\x6e\x30\x81\x8f\xaa\xc8\x47\x7e\x6f\xde\xe8\x08\xa3\xf6\x49\x0d\x27\x4d\x78\x26\x7e\x6d\x1e\xb1\x93\x7c\xb5\x2a\xb9\x7a\xab\x1e\xf1\xad\x96\x36\xbe\x5c\x3a\x3f\xf0\xba\x91\xc3\x5a\x14\x9c\x67\xbf\x36\x8f\x58\x43\x1d\x7d\x67\xf6\x22\x37\x29\xd9\xf0\x87\x7d\x7f\xbb\x49\xfa\x78\x3a\x66\x68\xd3\xb3\x4e\x38\x21\x2c\xef\xfb\x3f\xdb\x48\xaa\x18\x74\x6b\xa6\xcd\xc7\x6d\x2e\xf0\x59\xf3\x18\xf0\xb1\x5d\x0b\x5b\xdf\xb5\xe4\xf9\x67\xa7\xad\xa9\x2f\x66\xd3\xe0\x91\x2f\x66\x5f\x06\x5f\xf9\x62\xf6\x28\x98\x04\xba\xa2\x06\x02\x44\x14\x9a\xa2\x73\x7c\xac\x51\x34\x2b\xcf\x5f\x11\x78\xf8\x9c\xdf\xf0\xc2\x03\x7c\x4c\x79\x7c\xc3\xcd\xeb\xbd\xf0\xcc\x32\xea\xe2\xfa\x97\xaa\xa0\x7f\xe8\x2a\xe6\x13\xde\xe9\x47\x6e\xaf\x6d\x7e\x87\x47\xec\xd0\xa2\x07\x04\x18\x41\x49\x20\x34\x71\x7a\xb4\xd8\x68\x0f\xd6\xc6\xb6\x98\xb8\xc7\x72\x5d\x76\x0f\xd0\x8c\x45\x91\x0b\x88\x4f\xdb\x71\x0f\x32\x0c\x20\xa9\x56\x91\x25\x96\xf3\x82\xa2\xe1\x13\xfb\x7d\x80\x40\xd7\xc1\x20\x65\xc7\xfa\xf4\x56\x70\x5c\xa3\xc6\xd3\x43\xfa\xce\xea\xb2\xf1\x75\x0d\x79\x76\x2c\x20\x3b\x51\x1a\xa6\xb2\xfc\x6a\x75\xca\x1a\x11\x4d\x3e\x8e\x51\xa6\x7c\x63\x97\xc6\xde\xe7\xee\x7a\xa1\x6f\x7f\x87\xab\xa7\xe3\x7c\xb5\x22\x59\xc3\xd9\xce\x32\xbb\x42\x43\x6f\xec\x0d\x9d\x4f\x41\xf3\x09\x32\xcb\x0d\x41\x66\x79\x56\x44\x51\x6d\xfb\xda\x26\x38\x0b\xfa\xd9\x3e\xc0\xac\xf4\x0a\x69\xae\x56\x92\x1d\x02\x1e\x26\xbd\x21\x45\x50\xb2\x20\x7c\xbf\xf1\x09\xb2\x3a\x6d\x81\xae\x89\x02\x84\xd5\x69\x23\xad\xa0\x44\xfb\x1f\x34\xa6\xec\x51\xeb\xb7\xa4\x3f\x7a\xc9\x0b\x65\xdc\xa3\x15\x86\xff\x42\xad\xe0\x6c\x10\x17\x3c\xae\xae\x8b\x6a\x91\xa7\x15\xdf\x5e\xf3\x65\xb5\x29\xaa\x64\xbb\xae\x90\xe6\xac\xd2\x24\xfb\x58\x49\xac\x58\xed\xe2\x22\xde\x52\x72\x5a\x91\x78\xae\xa2\xdf\xd0\xf9\xc5\xe3\x8b\x75\x02\x7f\x97\x1d\x28\x0d\x62\x75\x85\xba\xd9\xea\x4a\xb6\x76\x91\xc0\xf7\x9c\x5d\x68\xe5\xce\xbc\x3c\x27\xb3\x20\x7c\xcf\xa2\x8a\xcd\xcb\x73\xa3\xf3\x19\xd3\x8b\x04\x1e\x72\x76\xf1\x5e\x14\x7b\x3e\xbf\x20\xe3\x73\x7a\x01\xff\x90\x2f\xe6\xe5\xf9\xd5\x80\xcc\x82\x79\xf8\xf4\xd9\x93\x77\x4f\xe6\x61\x35\x1a\xd1\x4a\xbe\x88\xe6\x91\x7c\x7e\x3c\x2f\xcf\x1f\x76\x6c\xf8\xc4\x36\x7d\x53\xf0\xd3\x61\x88\x9a\x18\xec\xff\xe2\xe0\x5d\x3d\x9c\x3e\xbe\xba\x78\xf8\xe8\xb1\xa7\x42\x87\x1c\x41\x74\x27\xb8\x6d\x57\xa3\x05\x7b\xf6\x79\xbd\xb9\xf2\x3a\x3b\x52\x59\xa9\x2c\x98\x6e\x68\xae\x69\xfb\x85\x36\xc2\x54\xe1\xcb\x08\xa7\x4a\x68\x10\xb3\x7b\x52\x52\x1d\xc7\x84\xe4\xec\x5e\x7e\x31\x52\x2f\x13\x96\xe4\x0d\xc9\xc3\x2c\x82\x18\xc3\xda\x60\xd6\xcb\x64\x45\x0a\xaa\x24\x03\x79\x55\xc9\x4a\x10\xb3\x58\x3e\xd9\xc6\xf2\x6e\x2b\x6f\xdd\x56\x50\xea\xf8\x96\x70\x28\x0d\x54\xab\xa1\x80\xa7\xb6\xdd\x6b\x42\x5c\x4e\x7c\x7f\x4d\x62\x18\xec\x7d\xff\x9e\x70\xa7\x80\xe4\xcc\x17\x29\x8f\xb3\x23\x43\x32\xe3\xf3\xac\xa5\x8b\x47\xd2\x3f\xc8\xd9\xe4\xd2\xb5\x79\xe3\x61\x1e\xd1\xcb\x5c\xc5\x84\x79\xab\xed\xdc\x57\x44\xb0\x22\x7c\xd3\xd0\x9a\xea\x9d\x11\xb7\x37\x06\xcb\xe6\x4d\x12\x66\xd1\xac\x7b\x82\x24\x0a\x0b\x3a\xe2\x58\x39\x2a\x23\xe5\xa3\x67\xad\x3e\xf4\x61\xad\x8b\xf0\x23\x77\xac\x95\x49\xeb\xb7\x39\xd1\x3d\xf8\x76\x89\x61\x1d\xfb\xe0\xf4\xa9\x39\xcc\xfd\xea\x88\xa3\x72\xb4\x27\xee\xb8\x2e\x72\x64\x82\xc8\x8f\xcd\xa2\x51\xe5\x26\x1b\x50\x56\x07\xda\x58\x01\xa3\xb2\xd3\x23\xb4\x33\xd5\xa2\xab\x2e\xf8\x76\xde\x7d\xd3\x7d\x55\x55\x8a\xdf\x72\x92\x30\x30\xde\x98\x21\xf2\x23\x3b\x2c\x5a\x83\xd2\x2f\xf7\x98\x67\x7c\xec\x5c\x6d\xad\xe9\x69\xf1\x59\xa7\xf7\x69\xcf\xbb\x6f\xba\xaf\xe8\xe1\xce\x2c\x69\x27\xf5\x31\xca\x40\x76\x05\xff\xff\x7c\x40\x8a\x4c\xb3\xc3\x3a\x13\xe3\x24\x2b\x79\x21\xbe\x45\xf6\x5e\x22\xaa\x56\xb0\x10\x39\x4c\xc5\xf9\xff\x77\x47\x89\xfd\xba\x19\x04\x3a\x2f\x8e\xfa\x55\x41\xa7\x6a\x88\x57\xa2\x2d\xf6\xf8\x7f\xab\xb7\x56\x78\x43\xd9\xf3\x51\xd0\x02\x1b\x3a\x0a\xe5\xef\x3a\x24\xb3\x62\x6a\x42\x11\x51\x54\x0e\x74\xe3\x22\xa2\x65\xbd\xc1\x4d\x44\xe2\xad\xc1\x14\x3d\x42\x5d\x48\xf5\xbc\xf6\x95\xde\x73\x5f\x38\x29\x28\x34\x95\xec\xfb\x5c\xbb\xc5\x30\x26\x66\x92\x32\xc4\x59\x6c\xe3\xdd\x71\x38\xfe\x07\xa5\xbe\x5d\xda\x26\xba\xf2\x4a\xfb\xb3\xc7\x5a\x41\x8a\x36\x59\x44\xb5\x5e\xc1\x26\xed\xc8\x83\x6d\xa3\xed\xa3\x9c\x1e\x66\x86\x8d\x25\x46\xaf\x6f\x88\xe4\xf5\xfe\xee\x84\x59\x19\xbc\xe0\x21\x79\x65\x23\xcd\xa1\x02\x13\x3c\x0f\x15\xeb\x9d\x04\x3f\xf4\x80\x4e\x6b\xad\x9b\x9a\x48\xa8\x2e\xee\x55\xea\xab\xe2\x2a\x43\x89\x35\xaa\x06\xf4\x6c\x0a\xad\x54\x38\xbd\x67\x42\xed\x99\x33\x70\x26\x1b\x65\x13\x27\xeb\x6b\x2d\x34\x90\x19\xcc\xa6\x0e\x38\x0a\x29\x4f\xa3\x20\x4d\x30\xb4\xc3\x4a\x18\x66\x39\xb4\x06\x68\xa7\x61\xbd\xb1\xa0\x6d\x03\xf8\x99\x1b\xe0\x43\x9d\xed\xab\x49\xcf\xcc\x30\x76\x23\xa0\x1e\x54\x8f\x45\xdb\xdb\xe8\xb0\x8e\x35\xf0\x76\x04\x2a\x35\xad\x77\x79\xe0\xa9\x27\xcf\xa0\x2d\xf9\x4a\x3f\x7a\xe0\x1e\xaf\xc0\x53\x18\xc3\xbc\x7d\x82\x07\xda\xc3\x73\xed\x99\x15\x78\x92\xa6\x81\xe7\xac\x46\x1f\x93\xd4\x89\x0d\xe4\x5c\xef\x92\xf7\xc1\x48\xa9\xca\xf3\x2b\xb7\x99\x94\x46\x53\x88\xd9\xe4\x32\xbe\x62\xf9\x65\x3c\x1c\xd2\x02\x83\xab\xe7\x8e\x8d\xad\x3a\x15\x92\xde\x2a\x39\xc1\xe4\x4a\xa1\x88\x48\x41\xe1\x6f\x9a\xcb\xc9\xa0\x50\xb1\xbe\x5a\x47\xd4\x09\xf5\x93\x59\x72\xf8\xdf\x92\xb4\xdc\xc6\xc5\x3a\xc9\x2e\xe0\xd7\xae\x69\xa6\x31\xc7\x9c\x0d\x76\x77\x54\xd9\x64\x0e\x8d\x49\xe6\xdf\xda\x36\x2d\x7a\x4b\xdb\x24\x9f\xb5\x37\x4a\xf8\x6d\x2b\xbb\x4d\xbe\xe3\x19\x57\x11\xf3\x39\x55\xa3\x7d\x9a\x6f\x77\x7b\xc1\x97\x6f\x25\xc9\x4c\x04\xad\x5b\x86\x61\x36\x00\x82\x50\x52\xe4\x92\x1e\x4a\x6d\xb3\xb9\x28\x4b\xcc\x06\xeb\x5d\xe7\x77\xa3\x32\xf9\x94\x64\xeb\xe0\x3a\x2f\x96\xbc\x18\x5d\xe7\x77\x97\x3b\x1d\xfa\x39\x30\x91\xb7\x2f\xb5\xa1\x66\x70\x9d\xe6\x8b\x8f\x97\x6a\xf2\x41\xbc\x17\xf9\xa5\xaa\x16\x4c\x77\x77\x97\xbb\x78\xb9\x94\x2d\xc9\x67\x91\xef\x82\xe9\x7f\x5d\x62\xa4\xe6\xe0\xeb\xc9\x7f\x79\x50\xba\xa6\x59\x1e\xfc\xde\xb6\xfc\x8a\x75\x6c\x22\x15\x23\xb8\x3d\x31\x49\x33\x32\x6f\xfa\x5f\x9e\x32\xef\xc9\x77\x90\x33\xef\xd1\x4e\x49\xc3\xc7\x6a\x30\xaf\xf8\x4a\x40\xc6\xbc\xaf\xcc\x6b\xec\x19\xcc\x84\x55\x21\xb4\x83\x65\x1e\x0e\x27\x71\xca\x3a\x5f\xe5\xb8\x14\xad\x64\xc6\x05\xa5\x8a\x38\x51\xb7\xf4\x7a\xc7\xf6\x72\x68\x49\x07\xe5\x89\x0f\x67\x7a\x24\xa8\x9d\x54\x63\xba\x8e\x17\x1f\xd7\x45\xbe\xcf\x96\x4f\xd3\x64\xc7\x3c\x1d\x4e\x4b\xee\x80\x5c\xad\xb6\x3d\x5a\x7f\x15\xb4\x65\x43\x23\x6c\xe4\x0d\x70\xb9\xda\x0d\x31\xc6\xfa\xfb\x83\xf8\x18\x16\x70\x27\x27\x7a\xd3\xfe\xf7\xee\xee\x52\xc5\xdb\x0e\x26\xb8\x9d\x93\xcb\x94\xaf\x44\x30\xfa\xe6\x9b\x6f\xbe\x71\x76\x7b\xa2\xc1\x61\x84\x5b\xbe\x73\xa0\x27\xbe\xc6\xf8\x16\xdc\x83\xb8\xb5\xd7\xa5\xeb\xc7\x11\x73\x38\xec\x92\x3b\x9e\x9a\x78\xe3\x3d\x44\x80\x20\x18\x11\xfd\x3a\xbf\x7b\x8b\xb0\xfa\x13\x4f\x93\x13\x01\x84\xd0\xcb\xa1\x06\x6c\xf1\x75\xb3\xad\x27\x4a\x26\x98\xca\x17\xdb\x7a\x6d\xc1\xe8\x44\xd9\xbc\xae\x29\xb5\x06\x80\x5c\xb0\x8b\xf7\x24\xcb\x33\x5e\xa1\xae\x8b\xcc\x06\xa3\x45\xc8\xe3\x88\x8e\x87\xf4\x02\x84\xfc\x3c\x1a\x5d\x40\x21\xd8\xc1\x2e\x88\xd7\xac\xc8\x4d\x52\x26\xd7\x49\x9a\x88\xfb\xc0\xdb\x24\xcb\x25\xcf\x3c\x30\x87\xcc\xc3\x53\xe6\xd5\x90\x09\x76\x48\xb9\x10\xbc\x78\xbb\x8b\x17\x72\xb1\xbd\x89\x07\xab\x3c\x13\xbf\xa8\x8d\xf1\xbe\x9a\x4c\xbc\x1a\x12\xc1\x42\xef\x17\x7e\xfd\x31\x11\x1e\x78\xaf\xf3\x4f\x1e\x78\xdb\xd2\x8b\x20\xef\xb1\xeb\x44\x70\x54\x7b\xef\xf2\xbd\x8b\xb2\x54\x8e\x1b\x87\x5c\xf6\x25\xee\x83\xc3\xb1\xd7\x25\x32\x83\x1a\x6f\xfd\x24\x99\x33\x5d\xd6\x12\x36\x9e\xca\xff\xe9\x4d\xbd\xa0\x40\x55\xce\xa2\x2c\x7f\xd8\x6f\xaf\x79\x11\x1c\xe2\x2c\xd9\xa2\x7c\xf6\xa5\xe0\x05\x3e\xa0\x2a\x5c\x69\x10\xd3\xfd\xb6\xf9\xb9\x4a\xd2\xf4\x47\x3d\x0a\xf9\x33\xe5\x77\xdf\x17\xf9\xad\x79\x7e\xbb\x29\x92\xec\x23\xfe\x6a\x96\x62\x30\x81\x34\xc9\xf8\x0b\xfb\x2b\x6f\x1a\x50\x80\x8d\x0f\xbb\x4d\xac\x44\xaa\xb7\xc9\x32\xbf\xc5\xa7\x4f\x98\xd0\x0a\x9f\xf2\x7c\x8b\x3a\xc5\x45\x89\xd2\xf2\x32\x38\xac\xd2\x3c\x16\x81\xb7\x28\xcb\xe7\xf2\xc9\xab\x01\x57\xae\x47\x6c\xa5\x04\x50\x5f\x76\xb8\xf2\xff\xdd\xf9\xad\x6d\xcf\x5b\x49\x24\xba\x5e\x98\xb0\x67\x42\x1b\xd8\x09\x8a\x96\x02\x6a\xb7\x92\x15\xd9\xa3\x0b\xf0\x6f\x44\x5e\xe7\xb1\x36\xa4\xc7\x6d\x0b\x85\x8a\x63\x67\x7f\x97\x11\x34\xfe\xa8\x86\x28\x8b\x7d\xdf\x5b\x73\xe1\x25\xf8\xd8\x70\xc4\x09\x8b\xb5\x0f\xce\x60\x0a\x19\xa5\xb3\x24\x48\x43\x11\x9d\x35\x54\x1b\xc9\x0d\xe1\x86\x49\x8a\x13\xf6\x9b\x26\xd5\x30\x0d\x7f\x82\x31\x81\x49\xc1\x36\xb8\x1e\x89\xbc\x9c\xbd\x0c\xf7\xdd\xa3\xa0\x28\x59\x79\x89\x29\x71\x94\xf9\x22\xef\x68\x59\x6b\x88\x21\x87\x30\x69\x33\x51\x53\x50\x20\x13\x96\xd1\xcc\xf3\x02\x6f\x77\x27\xb9\xff\x63\x4c\x57\x55\x1e\xba\xb9\x54\x15\x0a\x87\x1b\x47\xbe\x06\xd3\x79\xb4\xaa\x88\x9c\x0a\xf3\x92\x6c\xc3\x8b\x44\x78\x14\xe4\x2a\x94\x9d\x55\x60\x28\x17\x88\xb5\x93\x6e\xa1\xe5\xa3\xfb\x59\x2a\xdf\x34\xfa\x6f\x28\x28\xae\x0c\x2b\x30\xb2\xcd\xe2\xc8\x5f\xb8\x93\x1f\xa4\xbb\xb5\x96\xb8\xb0\xfb\xeb\x6c\x28\xf9\xa3\x1d\xa5\xad\xed\x73\x77\x6d\x02\x05\xa5\xcd\x86\x2b\xbf\xaf\x9f\x70\x48\x19\xa5\xe0\x65\x79\xb1\x8d\x53\xed\x12\x26\x1e\x24\xd9\x03\x54\xc9\x26\x2c\x13\x92\xa7\x51\xc9\x09\x8a\xaa\x2a\x66\x24\x67\x18\x65\x19\xc1\x9d\x24\x54\x25\x7a\x2b\xaa\x2a\x29\x9f\x27\x59\x22\x38\xc9\xe9\x2c\xaf\xaa\x49\xa0\x22\xbe\x34\x44\x63\xe8\xa9\xeb\xc2\x03\x4f\x25\x68\x88\x8e\x89\x3b\x67\x72\xac\x8b\x5f\xcc\x29\xb2\xa9\x04\xb8\x5e\xa4\x1e\x7f\x11\x34\x09\x95\x84\x02\x6a\x43\x7e\xe2\x0b\x51\xda\xd8\xaf\x3a\xfb\xf2\xb7\x72\xff\x93\x6c\xdd\x14\x21\x54\x51\x05\xb3\x1f\xf4\xc2\x04\x3f\x48\xae\xb0\x70\xc2\xb4\x5b\x8c\x6f\x8a\xd4\xf4\xc8\x09\xde\xdd\x63\x96\xf9\xfe\xdf\xb8\x92\x87\x65\xbe\xff\x4c\xd5\x02\xaf\x21\xa6\xda\x0e\x2f\xf6\x0a\xf3\xe4\x49\xcb\x29\xe4\x16\x24\xe2\xe3\x63\x25\x21\x1f\x8f\xa7\x4a\x68\x2e\xcf\x01\xea\xd1\x95\xfb\x8a\x84\x42\x28\x9a\xc6\x05\xa5\xf0\x8e\x4c\xa0\x80\xd8\x4a\x8a\xcc\x7a\x3b\x54\x12\x7b\x4d\x62\xd4\x20\x74\xae\x3d\xe8\x41\xf5\x5a\x54\xe7\x00\x04\x62\xfd\xa6\xb1\x66\x27\x7a\x97\x5b\x12\x0c\x23\x5c\xe4\x43\x53\x27\x98\xd4\x3d\x0b\xfe\xf9\x46\x6a\x4a\x87\x72\xfe\x2e\x8f\xa2\xa9\x50\xcf\x03\x43\x8a\x78\x1e\x68\x22\xc6\xfb\x05\x21\xb0\x87\xbd\xb0\x10\xc8\x87\x12\x06\x95\x88\x2d\x70\xc3\xe5\x34\x69\x19\x26\x90\xb0\x43\x2d\x71\x59\x97\x7b\x2d\x66\x85\x31\x91\x7d\xe0\xd1\x20\x2c\xa2\xcb\xec\xea\x2b\x94\x7b\x26\x21\x1f\xbe\xe3\x61\x16\xc9\xf6\xf3\x30\x8b\xaa\x2a\x0f\xb3\xd1\x23\xfc\x3b\x71\xbc\x8d\x6a\xf8\xb7\xe5\x7f\x2d\xe6\x6b\xc6\x26\x11\x0f\x7b\x47\x8f\x24\x7e\x5d\x9c\xf3\x19\x76\xbe\x23\x7f\x96\x73\x89\xd9\x44\xde\x23\xdd\xf8\x00\x6a\xd6\x19\x53\xb0\x9c\xd8\x28\xdb\x97\xf1\x55\x82\x2c\x55\x1e\x8a\x30\x8e\x22\x07\xda\xc2\x38\x52\xb7\x85\x0d\xbc\x53\x77\x8d\xf4\xd1\x09\x12\x81\x55\x8f\x25\x70\x80\xb5\x46\xd5\xce\xb1\xdf\xb0\x61\x44\xdf\xdd\x72\x9e\xb1\x97\x40\x5e\x9e\x52\xf3\xbf\x04\x89\x90\x7a\x4c\xac\x21\xd7\xb2\x21\x9e\xf2\xad\x31\xc7\xd8\x15\xf9\x8e\x15\x46\x0d\x52\x26\xd9\x9a\x25\x88\x60\xd5\x8f\xb1\x31\x8c\x51\x25\x94\xe7\x4e\xc9\x84\xd1\x30\xc7\x85\x30\x52\xb5\x5b\x66\xac\x24\x8c\x02\x9a\x67\x4b\x96\xa9\xc7\x7d\x96\x08\x96\x77\x6f\xb2\xa2\xb9\xc9\x6a\x58\xec\x8b\x63\x31\x00\xce\x72\xa7\x91\xa3\x19\xaf\x85\x16\x93\x52\x7e\xd6\x18\xc0\xd2\xc0\xa9\x62\x47\xdf\x7c\xae\xa1\xd8\xf7\x84\x9c\x82\xe2\x0f\xba\x72\xa7\x3f\x5e\xee\x15\xa5\xa6\x23\x59\xe7\x25\xc3\x98\x11\x6a\xc9\x42\x67\x2d\x23\x23\x5e\xeb\xd6\x3c\xe7\x30\x81\x69\xff\x37\x2d\x25\x56\xcd\x1a\xf1\x5c\x7e\xcb\x88\x59\xd4\x51\xb3\xf8\xf4\x5c\x0c\x9b\x5f\xed\xf6\x4a\xc1\x77\x5a\x2e\xe3\xbe\x6a\x0c\x37\x95\xbd\xa8\x69\xdf\xc4\x92\xc7\x9c\xb1\x5c\xcc\x0a\xeb\xd5\x7e\x62\x4d\xed\x67\x15\xca\xa8\xa6\x98\xa2\xc1\x01\x4b\x07\x44\x35\xbc\xaa\x26\xd8\xc1\x9a\x5b\x75\x6e\xbb\x76\x4e\xcf\x07\x4a\x77\x23\x47\xe9\x08\x72\x8d\x9e\x5c\xbe\x0e\xb9\xda\x25\x95\x23\xce\x16\x56\x37\x81\xfe\x36\x6b\x17\x35\xf1\x3d\xe4\x79\x53\x0b\xa0\x3e\x80\x87\x1e\xac\x9e\x64\xdf\x91\xa5\x9e\x21\x4a\x2e\x3b\xe3\x93\x58\xe7\x0e\xd7\xd1\xb6\x7f\xfc\x8a\x70\x1a\x9c\x1c\x7b\x67\x94\x6a\x2c\x48\x57\x9b\xea\x91\x0a\xcd\xd1\xe0\xbd\xde\x89\x20\x01\x7d\x1b\x34\xb8\xa4\x35\x1b\xfc\x38\xc4\xb0\xbc\x68\x3e\x46\xc7\x25\x46\x5b\x7a\x97\xef\x5c\x48\xd7\x6f\xf1\x06\x3c\x74\xe7\xda\x19\xbe\x3c\x6c\xf8\xc2\x95\x2d\x93\xbe\x41\x59\x4b\x13\xc4\x27\x07\xc9\x81\xc4\xfd\x5a\xc3\x1a\xca\x5b\x79\x47\x1d\x7f\x1b\x7f\x3d\xc2\x94\x81\x8b\xbc\x24\xfc\x1c\x1f\xdf\xbc\xa4\x17\x8f\x1c\x5b\x3d\x0f\xeb\x7a\x2a\x53\xcc\x9d\x0b\x6e\x08\x89\xd0\x6c\x0c\x3b\xa8\xb0\x26\xb1\x80\x52\xc0\x5e\x28\x3f\x34\xe5\x80\x5a\x95\x9b\xfc\xb6\xda\x24\x4b\x4e\x1f\x5e\x40\x2a\xd8\x45\xe3\xd4\xac\x22\x9d\x3d\x31\x2c\x9a\xe3\x4e\xf4\x2d\x1c\x84\x44\xc5\xbc\x28\x83\x83\x77\xee\x05\x61\xaf\x6b\x3f\x62\x44\xe4\x34\x11\x71\x2b\x3b\x39\x13\x05\x9d\x14\x7a\xcb\xc0\xd0\x37\x82\x42\x21\x99\xfa\xa8\x06\xdd\x7a\x70\x74\x55\xb7\x13\x5a\x68\x87\xed\xd0\x3b\xf7\x22\x1a\x70\xe6\x04\xc2\x3e\x73\x25\x84\x13\xb4\x87\xe8\x28\x23\x0b\x26\x6f\x64\xf8\x76\x6c\xa6\x12\x16\x11\x6b\xfd\x42\xc7\x81\xd6\x1b\x1b\x18\x41\x28\xad\x8d\x4e\x72\xda\x9e\xff\x89\xec\xa5\xb0\x64\x9a\x08\x4e\x30\x6e\x93\x21\x8d\xe5\x2f\xd8\x29\xcb\xe4\x8d\xbc\x8f\x57\x86\xbb\x83\xfb\x16\x9f\xf8\x0c\x2f\xe2\x75\x13\xa7\xc2\x5b\xdd\xc9\xed\x93\x9c\xb6\xf2\xa9\xaf\x2a\x93\xd4\x37\x3e\x0e\x14\x81\xe1\x2e\xe8\x78\x9f\xe1\xdb\xa5\xef\x93\xd8\xfe\x60\x13\x28\x59\xec\x84\x6e\x00\xf7\x87\xeb\x56\xdf\xd4\xa9\xaa\x92\x48\x52\xa4\x79\x33\x1c\xc2\x6e\xac\x42\xe5\xba\x42\xc7\xbe\x77\x4d\xa5\xd1\x08\x9c\xd0\x17\x38\x48\xbd\x53\x55\x15\xb7\x83\x49\x50\x93\x62\xc8\x04\x89\x5a\x91\x04\xc3\x42\xc1\xde\x3a\x9f\x21\x95\xaa\xbd\x5b\xf0\x13\xaa\xa7\x3d\x05\xed\xc8\xec\x40\x22\x19\xbb\xfb\x99\x27\xa1\xde\x0b\x3c\xb5\x84\xca\xa8\x16\x9f\x07\x4c\x52\x01\x83\xb5\x63\x76\xb9\x0e\xb3\x88\x2e\xf2\x4c\x24\xd9\x9e\x9f\xdd\xb3\xc1\xa4\xde\x84\x59\xc4\xd6\xbe\xbf\x46\x72\xce\x21\x6a\x32\x4c\x8b\x49\xf6\xac\x2f\xc2\x10\xad\xaa\xe3\xd7\x1b\x4a\x0f\x4b\xa5\x34\x69\x29\x90\x8a\x71\x7e\xc3\x8b\x55\x9a\xdf\xb2\x70\x65\x9f\xa1\x79\xfc\xd5\x79\xfe\x57\x04\x7a\xef\x53\x1c\x96\x71\xc2\xa7\x18\xf5\xb4\x81\x99\x86\x5f\x82\xc6\xa9\x7f\xd1\xe7\x80\x8f\x35\x67\x0b\x96\x06\x64\x4b\x42\x8e\x89\x91\x1a\xd1\x43\xe3\xfa\x9f\x42\x6f\x75\xc0\x4a\x54\x32\xb1\x5e\x92\x49\x34\x28\xbb\x5a\x54\x95\xfe\x35\x52\x22\x2d\xf9\xce\x64\x39\x4d\xfb\x43\x02\xa0\xc0\x05\xf9\x9c\x3d\x3a\x58\x61\x70\x49\x57\xaa\x6d\xc6\xc2\xd2\x9a\xea\x55\x48\x7d\x9f\x2c\x98\xfd\x02\x29\xb3\x0d\x2f\x24\xdd\xb5\xa0\x14\x9a\x7a\xed\x21\x51\x0a\xcd\xd2\xfb\x3e\x69\x16\x99\x59\xc1\x5c\x1f\x50\x3b\xe5\x9a\xfa\xe1\x24\x72\x77\xcc\xfd\x32\x75\xbf\xfc\xcb\xfd\xf2\x28\xaa\x29\x85\x3d\x1b\x4c\x1b\x78\xdf\x50\x39\xfb\xf5\xcc\x0c\x21\xc9\x1e\xac\x7d\x9f\xdc\xb3\xf5\x58\xbd\xa1\xc1\xba\x15\x9c\xc6\xa0\x07\x38\x18\x29\xa2\x5c\x9e\xdc\xf7\x89\xa9\xc1\x06\xf7\x14\xee\x7d\xbf\xd9\xde\xe3\xc5\xbd\xaf\x2a\xb5\x91\xd0\x72\xf0\xb2\xa8\xc7\x19\x9f\x7b\x08\x40\x9e\x0f\xaa\x66\xf1\x82\xdc\xcf\xe4\x31\x09\x26\x90\xc1\x8e\x02\x16\x5f\x63\xae\xd7\x2c\x62\x7b\x4d\xbe\xa1\x2b\x23\x92\xcd\xe6\x8d\xfe\xcb\x26\x94\xd6\x75\xd4\xe0\xdb\x6e\x24\x9d\xd9\xb7\xe3\x06\x17\x5b\x14\xcd\x69\xd0\x7a\x6f\x32\xdf\x29\x56\xa2\xdc\x71\xbe\x3c\x91\x1f\x8e\xfb\x7e\x4f\x68\xa6\x4e\xde\x84\xe0\x60\x42\x41\x06\x45\x55\x0d\x0a\xdf\x17\xdd\xf8\xa5\x18\xd4\x13\x0c\x65\x1b\x70\x50\x34\x41\xa0\xca\xda\x18\x64\x8e\xc7\x87\xef\x0b\x37\x54\xee\xea\x6e\x9c\xaf\x56\xb3\xcc\x52\xc7\x6c\x12\x18\x49\x99\x35\xf2\x6a\xbe\xfa\x3e\x69\x7e\xc8\x35\xd6\x34\x80\x9c\x6a\xe9\xb6\xe2\xbe\x0f\x9b\xf7\x51\x70\xa2\x8c\x25\x7b\x8d\xe0\x2e\x53\x08\xdb\xf7\xd1\x59\x28\x6b\x6e\x1f\xf5\x84\x51\x70\x28\x64\xe3\x3c\x5d\xb2\x6c\x6c\x16\x0a\x9a\xc7\x4e\xc4\x22\x37\x1a\xa4\xac\x84\x09\x20\xf3\x74\xd9\x90\xeb\xb2\x35\xdd\x67\x37\xee\x8c\xfe\x40\x6b\xc8\x8e\xf2\xe6\xc5\x4b\xfe\x2e\x3f\x6d\x50\x28\x9c\x4c\x51\xcf\x38\x45\x84\x63\x05\xd8\x30\x31\x81\x33\x24\x54\x12\x3a\x56\xd2\x6a\x4e\xac\x38\x5c\xd4\xc0\xb5\xdd\xa2\xfe\x76\x4a\xf4\xc7\x8e\x90\x3e\xd7\xd1\x9c\x70\x85\x55\x38\xf2\x4e\x24\x27\xa5\xfc\xfa\xd6\x66\x3a\x73\xa1\x0f\x72\x7a\x49\x12\x8c\x8d\xd4\x78\x3f\xae\x92\x2c\x29\x37\x88\xb8\x05\x1a\x40\x93\xc1\x84\x5a\x78\x8a\xc7\xea\x3b\x8b\x41\x5e\x6f\x2a\x74\x1a\xae\x9c\x13\x75\x2c\xd6\xfc\x97\x5a\x5e\xfd\x1d\x62\x6d\xea\xdd\x6f\xc7\xc6\xfa\xac\x7f\x65\xf1\x33\x13\xba\x4f\x05\x8c\x12\xa4\xb0\xa3\xe9\x0d\xbf\xa3\x4c\x15\xdd\x10\x3c\x42\xbb\xba\x1a\x3b\x8e\xa3\xc8\x41\xfd\x26\x8c\x6a\x10\x03\x49\xf6\x35\x26\x13\xad\x78\x3d\x6a\xed\x45\xb2\xe5\x45\x09\x31\x73\x96\x11\xcd\xdb\x12\xaa\xfc\xcc\xe4\xff\x38\x78\xdf\xcf\xd0\x8d\x8d\x36\x91\x2a\xd1\x46\x33\x3e\x2e\x98\x5a\x5a\xa4\xa9\xa4\x72\xa7\xe4\xad\x6c\xe6\xb9\xac\x22\x49\xe0\x81\xb1\xc8\xb5\x63\xc5\x4f\x38\x5a\x39\xf7\xaa\x22\xf8\x42\x82\x98\xda\xd6\x42\x27\x3f\x69\x25\x24\xa6\x67\x03\xe1\xfb\x05\x22\xa1\x9e\xb8\x4c\x6a\xf3\xfb\x72\x1a\xea\x05\x26\x36\xde\xd1\xe7\x56\x15\x8a\xd6\x62\x41\xc6\x8a\xd0\x2c\xad\x17\x41\xe2\xfc\x54\x2b\x1d\x75\x96\x3a\x9b\x99\x6c\x28\x81\x8a\x21\x5b\x18\xb8\x54\x81\x61\x5b\x11\xae\xe4\x0e\x63\xee\x01\xb5\xb4\xea\xaf\xe3\x7c\x29\xaf\x2c\xd1\xac\xab\x50\xeb\x2a\xd4\xba\x6a\x9b\x27\xb9\x9c\x42\x2f\xa7\xb2\x4e\x21\xf8\xa2\x59\x4e\xd9\x8a\x5d\x4a\x81\x4b\xd9\xa4\xbf\x8c\xd1\xb8\x27\x0b\x85\xe4\xb3\x65\x3d\x35\xda\xd6\x0f\x07\x4d\x19\x98\x37\xb3\xaa\x69\x5b\x1e\xae\x09\x51\x50\xa4\x26\x28\x22\xb4\x2b\x15\xb7\xe1\xbe\x56\xb2\x93\x33\xf3\xe0\x5e\x57\x6e\xee\x02\xcd\x58\x57\x55\x5f\xec\xa0\x13\x36\xdb\x3a\x5b\xa1\xc6\x68\x9f\x88\xc0\xb5\x54\xed\xb6\xcc\x3e\xca\x34\x59\xf2\x67\xf9\x6d\x16\x7c\xd2\xf4\x31\x05\x7c\xf7\xf3\x4e\xbe\xc1\xf1\xeb\x37\xef\x54\x4c\xa3\x4f\xc4\xcc\x92\x82\x44\xc0\x2f\xb3\x46\x81\xa8\x5a\xa8\xf1\xfd\x8f\x7b\xe1\x7c\xc0\x86\xd4\x07\xdd\x4e\xf3\x4d\x37\xf7\x27\xd2\x46\xf1\x63\xf4\x6e\xe6\x28\x0c\xae\x56\xb3\x53\x00\x89\xa9\x8e\xf0\xa6\x13\xc9\xe2\xe3\x71\x86\x07\xc1\x26\xff\x37\x7b\xef\xde\xdd\xb6\x8d\x2d\x8a\xff\xaf\x4f\x21\xf3\xf4\xea\x02\x35\xac\xc8\x4e\xda\xce\x30\x41\x75\xd2\xc4\x69\x33\x4d\x9c\x34\x76\xfa\x18\x55\x37\x43\x4b\x90\x8d\x46\x02\x55\x10\x8a\xed\xb1\xf4\xfb\xec\xbf\x85\x8d\x07\x01\x3e\x64\x27\x6d\xe6\xcc\x9c\x76\x75\x35\x16\x49\xbc\xb1\xb1\xb1\xdf\xdb\xc8\xd3\x4d\x71\x80\x8b\x0c\x64\x28\xe0\x8b\x74\x5f\x3d\x90\xa1\x83\x38\x62\x54\x8e\xd4\x18\x23\xbc\x5e\xeb\x1f\xe6\xf8\x4a\x0f\x5b\x7b\x7b\x64\x5f\x73\x6b\x8e\xc1\x71\x4c\x7a\xbe\x44\x98\x64\xce\x4c\x7b\xe3\x87\xb4\x88\x72\xd8\xc2\x84\xcd\x40\x1c\x35\xe3\xd9\xfc\x4c\x1a\x5f\x20\x78\x04\x87\x83\x77\xd9\x9c\xee\xdf\x0d\x0b\x44\x97\xae\x5a\xaf\x51\x01\x48\xf2\x09\xc2\xbe\xa6\x1e\x4a\x5c\xcc\x58\x3a\x90\x90\x1c\xa0\xd7\xc5\x3c\xbf\x48\x3f\x1f\x0c\xc8\x2c\x2b\x54\x7a\x30\x18\x94\x72\x89\x7b\x83\x81\xbb\x85\xa7\x4c\xd3\xd6\xa5\x79\x4b\x10\x69\x54\x19\xfa\x62\x18\x51\x22\x6a\xbc\x5e\xab\x54\xa3\x18\x69\x31\x7c\x80\xf4\x9b\x33\x9a\x44\xe1\xb3\x25\x51\xb8\x23\x6a\x73\xb0\x4a\x42\x57\x8a\x5b\xbf\xd3\xb6\x70\x49\xd5\x68\x47\x4d\x81\x90\x8c\x4d\x7f\x72\x43\x20\x25\x23\x78\x4c\x30\xee\x58\x07\x89\xd2\x69\xd3\xc7\x34\x7a\x21\x68\x62\xbc\xaf\xc1\x2d\x56\xbf\xcf\x97\xca\x04\xd2\x61\x53\xaa\xac\xfb\x00\x9b\x12\xd4\x3e\x44\x9b\x56\x9f\x26\x2a\x71\xbe\x18\x36\x18\x93\x6e\x0f\x7e\x7d\xef\x0a\x50\xdf\xd7\xc6\xda\x2d\x4c\x14\x99\x2a\x9f\xa8\x39\x53\x4a\x7e\x03\x66\xc9\x95\xa0\x67\xfa\xc3\x76\x2d\x43\xc1\xa0\x76\xab\x10\xdf\x5a\x1c\x3f\x8c\x1b\xba\x31\xc8\x60\x59\xab\x35\xf0\x67\x6d\x6c\xb1\x92\xa3\xe4\xaa\xf5\xe5\x7e\x77\x07\x94\xcc\x7f\x31\x7f\x0e\xf4\x1f\x5c\x33\x5d\x8e\xd2\x92\x6b\x30\x5d\xca\x7c\xe9\x54\x16\x60\x76\x9b\xdb\xc4\x37\xde\x9c\x7e\xbd\x36\xe9\xe5\x60\x05\x8d\x24\xbd\x62\xa5\x68\x54\x00\x41\xf8\x1c\x8d\xaf\x9d\xd6\x77\x38\x51\x36\xfa\x10\x8e\xa2\x41\x1b\xec\x4e\xa5\xc9\x43\x11\xaf\x07\x84\x92\xe6\xa5\xee\x9a\x87\x1a\x7c\x41\xb9\xd7\x5d\x2b\x8c\x87\x22\x45\x2c\x8e\xba\xa5\x88\xdc\x4d\x12\xac\xa7\xc4\x4b\x3d\x32\x77\xec\xb8\x69\xc2\xc5\x44\xd5\x0d\x58\x09\x83\xe1\x0e\xb8\x98\x9a\x74\xb7\xe6\xab\x0d\xd7\x0c\xc4\xb0\x5b\x81\xd4\x04\x1e\xba\xae\xc6\x0c\x37\x6e\xb6\x11\x6c\xf6\x7a\x16\x64\x4d\x0c\x52\x93\x7f\xd0\x82\xb7\xbd\x10\x2d\xdc\x7a\x05\x48\x63\x14\x32\x1b\xbc\xd5\x96\xa5\x9a\x54\x02\xab\x93\x46\xd8\xab\xa5\x71\xd5\x94\x73\x29\x43\x34\x69\xd4\x2b\xc9\xd5\x8d\x39\x29\xe5\x23\xb1\xbb\x3b\xbe\x8f\xc3\xfd\x30\x03\x91\x00\x9d\x93\x9a\x4c\x39\x0c\xb5\x0c\xe4\xb7\x1a\x56\x77\x53\xe2\xb4\x32\x2b\x69\x64\xa2\xa5\xf3\x62\x03\x00\x99\x90\x90\x76\xdc\x77\x7e\xbe\xd8\xbd\x73\x86\x1b\x29\x8a\xa9\x72\x16\x04\x7e\xf3\x3a\xf0\x2e\x66\x84\xa3\x28\x8b\x15\x18\xf6\xbe\x64\x90\x42\x6d\x0a\x2a\x3f\xf8\x17\x04\x6b\xd6\xac\xc3\xb6\x32\xcc\x00\x60\xec\xf7\x1c\x13\xee\xec\x25\x97\x56\x08\x6d\xbc\x84\x0c\x8a\x5b\xbb\x70\x6c\x6b\xe3\x39\x08\xd1\x07\xcf\x6d\xc1\x6c\xad\xbf\xe8\x57\x15\xac\xb4\xac\x07\x65\xa8\x63\x25\xa3\x14\xd8\x8e\x95\x2a\xd1\x1d\xb6\x63\x25\x27\x60\xb4\x9e\xc8\xba\xfd\x27\xfc\x12\x12\x47\xb2\x71\x0d\x3b\xd5\xc6\xf8\x81\xd8\xa9\x0d\xeb\x00\xf2\x76\x63\x80\x4b\xd4\x38\xbc\x04\x2a\xbd\x71\x84\x52\x6e\x8f\x31\x8c\x49\xc1\x2d\xb1\x83\x2e\x0c\xa1\x5c\x97\xee\xf0\x67\xa7\xc6\x90\xaa\x59\xd3\x55\xc5\x22\x89\xca\x4e\xc1\x60\x27\x30\x8a\x1f\x82\xa1\xc1\x53\xa1\x34\x61\x3e\xc0\xe9\x52\x39\x67\x4f\xbd\x68\x47\xd9\x02\x22\x48\xd5\x5f\x82\x97\x9f\x64\xb3\xe1\x20\xdd\xdb\xd7\xe7\xdf\xae\x4f\x7a\x3d\xcb\x65\x9a\x9c\xab\xc5\xfc\x49\x2e\x13\x32\x99\x67\x45\x91\x26\xf0\x47\x57\x4c\xf4\xde\xc5\x97\xb0\xc1\xda\x81\xd6\xc8\x5d\xce\x2d\xb3\x6a\xc9\xc8\xab\x62\xb7\x84\xd0\x27\xc1\xb5\x08\x8b\x45\x1c\xc1\x75\x63\xdb\xaa\xd7\x43\xaa\x52\xf9\xb6\xbd\x54\xd9\x12\xbb\x53\x09\x49\x24\xcb\xa6\x2f\xc4\xfc\x2a\x21\xc9\x22\xbb\x7c\x06\xe7\x24\x21\xc9\x84\xcd\xe7\xd6\xe4\xd0\x3e\xbd\x34\x26\x16\xba\x4a\x7e\x71\xbc\xcc\x84\x7e\x9f\xcf\xed\xaf\x55\xc1\x9e\x67\xcb\x84\x24\x90\x43\xf6\x2b\xb0\xc1\x80\x02\x60\x88\x7a\x38\x35\xf1\x40\x42\xd6\x07\x2e\x7b\x0f\xc6\xe0\xd3\x13\xdd\x9e\xc0\xcd\xd5\x6c\x1f\xb2\xe9\xf4\x11\xec\xe1\xd6\xb8\x52\x64\x65\x8c\x1c\xaa\x02\x3a\xdc\x7e\xca\x81\xbf\xb0\xf1\x52\x5d\x27\x28\x4c\x4d\xad\xc8\x6b\x6b\x46\x8f\x37\xcd\xc9\x2e\x58\xaf\x67\xee\x0b\x45\x2b\x39\x5a\xef\xdb\x1c\xdf\x2b\xb8\x43\x40\x91\xf1\x5a\xb3\xf5\x82\x56\xf3\x76\x27\xdd\x64\xf7\x57\xc4\xf1\x6e\xd2\x4d\x5c\x94\xa8\xc1\xfd\x9c\xaa\x51\x06\x75\x45\x69\xe3\xd6\x4d\x76\x73\x28\x06\x06\xff\x62\x97\x9a\xa7\x0e\xd7\x87\xb5\xa0\xbf\x9a\x94\x0b\xb2\x1a\x9d\x53\x4f\x2c\x21\x05\xde\x44\x8e\x28\xd6\xe2\xf9\xa3\x2f\x6d\xd0\xcf\xf6\xd5\xdd\xa9\x79\x51\x44\x5c\x9e\x46\x21\x6e\x2e\x49\xf2\x3f\xb7\x1f\x26\x9b\x7b\xc3\xa6\x40\x9a\x55\x41\x85\xf7\x15\xf5\x9f\xc8\x87\xef\x92\xe1\x8c\xab\xbb\x14\xe8\x60\xed\xc4\x3b\x6d\xc1\x85\xa3\xbc\x25\x54\x0e\x6d\xd2\x94\x12\xe0\xad\xa4\x20\xda\x26\x9c\xd6\x54\xb1\x0d\xbb\x2c\x83\x5d\x0e\xc6\x19\xed\xb2\x74\xbb\x0c\x01\x40\xf0\xa6\x25\xa2\xb1\x01\x3a\x00\xb9\x78\x63\xa9\xf1\x41\x35\xd4\x9b\xeb\x0d\xee\xd4\x78\x7b\x15\xcd\x2d\xbd\xc6\xfb\xe7\x59\x61\x06\xa2\xf0\x90\x47\x13\xd3\xc4\x74\x39\x75\x65\x85\x7d\x65\x24\x9b\x5e\xcf\x2f\xa0\x31\x32\x45\x48\x51\x07\xa6\x10\x01\xcf\xe7\x42\x48\xde\xbc\xf1\x77\xca\x9b\x37\x89\x8f\x6f\x12\xee\xaa\x15\x6a\x36\x6e\xb4\xb2\x22\x5a\x36\x4c\x92\x34\x92\xf2\xc6\x0d\x63\x88\xcd\x68\x7c\xba\xec\xbc\x9a\x8f\x2b\x1d\x58\xa1\x96\x06\x3b\xa6\xc1\xce\xc1\xbc\x70\x30\x5f\x05\x75\x64\x60\x5d\x1f\x04\x03\xee\x1e\xaa\x95\x86\x66\x67\x93\xe9\x72\x19\xee\xec\x3b\xf2\x6e\xa6\xe8\x9d\x9f\xa5\x71\xa2\x0e\x50\xf5\xbb\x6c\xde\x86\x4a\x9c\x7b\x99\xde\xdd\xb6\x73\x2e\xaa\xf9\x4b\x1b\xe5\x94\x96\xb4\xe2\x9d\x9a\x1b\xa4\xc6\x89\x86\x7f\xe1\x54\x0c\x63\x28\xf4\x80\xfa\x2e\x9b\x23\x8c\x53\x86\x87\x9c\x26\x49\x5a\xda\x25\xdb\xf3\xc2\x87\x7c\x57\x7f\x88\xad\xe5\x38\x76\xb9\xc5\x17\xd9\x12\xf1\x26\xaf\x58\x97\xff\x3f\x49\x52\xb6\x9b\x24\x1b\x8c\x89\x21\xdc\xde\x65\xf3\xc0\xee\xca\x86\x24\xac\xbd\x77\x84\x4d\xd5\xef\xad\xa4\xe4\x54\x18\x15\xa3\x04\x44\x4e\x12\xe0\x84\xc0\xec\x19\x9a\x32\x8c\x11\x77\x78\x95\x3b\x93\xce\x78\x34\xbc\x69\x28\x7c\xdb\x38\xce\xea\xe3\x40\x92\x1a\xf3\xb3\x72\x14\x78\x28\xd3\x2a\x62\x46\x92\x72\x33\x2c\x3c\xf4\xee\x68\x68\xa6\x34\x22\xb7\x3c\xa7\xd4\x0b\x27\x2b\x84\xb5\x1b\x57\xea\xc2\x8b\xdf\x92\xce\xb4\x43\xe9\x44\xb9\x2b\xd5\x50\xa5\xbf\x22\xe7\xb1\xcc\xb0\xb1\xe3\xd1\x24\x53\x4b\xb3\x00\xb9\x1a\xd5\x58\x03\x33\x92\xd1\x2a\x29\x57\x50\x2b\x2a\xda\xb3\xba\x67\x1b\xfb\x69\x45\x0b\xe0\xeb\xd3\xd1\x98\xcc\x69\x31\xcc\x76\xcb\xac\xd9\x46\xa3\x4a\xb3\x07\x83\xe1\x3c\x2d\x86\x59\x3a\xb8\x2f\x1e\xcc\x8d\x1d\xe9\x0c\x21\x24\xc1\x82\x14\xfb\x9e\xd6\x6b\x41\x29\xcd\x70\xaf\xb7\x23\x7d\xd4\xbe\x5e\x0f\xed\xc8\x90\xf8\x73\x1f\xd6\xeb\x1d\x8e\xc2\x2f\x24\x71\xd1\xc9\x21\x4b\x0e\xb8\xbc\x17\x9a\x89\x35\x47\x81\x94\x91\xd1\x3a\x2b\x23\x75\x54\xfe\x0e\x5a\xd5\xb3\x81\x45\xae\x79\x60\x76\xe3\x56\x27\xa7\x51\xae\x14\xc8\x5b\xc2\xbd\x4d\x29\x64\x58\xd0\x1c\xc5\x28\x0b\xe6\x16\x66\x2b\x0f\xe0\xd0\xb6\x09\x90\x25\xb0\xc9\x3a\x8e\x41\x81\xb4\x33\xf0\xbb\x2a\x21\x98\x49\xb4\x1f\x74\x6f\x1f\x9c\x76\x62\xda\xd7\x4a\xca\x4a\xe1\x5c\x95\x26\x8d\x4e\xe2\xb8\xce\xd6\xc3\xaa\xd5\xcc\x67\xbd\x94\xc2\x06\xa5\x88\xe7\x82\x98\x5b\x60\xc0\xa5\x9b\x4d\x20\x11\x34\x0c\x47\xdc\xab\x9e\x6b\x53\xca\x39\x2b\x1d\x8a\xe5\x55\xc8\x41\xf8\x30\xc9\x45\x92\x3a\x79\x1f\xb6\xe8\x79\x61\x99\x6a\x1b\xcc\x0e\xfe\xac\x5d\xe0\x39\x08\x55\x67\x4c\xbf\xec\x31\x73\xe1\x0c\x48\x3d\x14\xdd\xb6\xf8\xc5\x74\x24\xd6\xeb\x4f\xc6\xe4\x9c\x0a\x87\x6b\x89\x91\xd1\xe0\xa1\x89\xc8\x9d\x2a\x32\x0b\x3f\xfa\x00\x2a\x50\xa2\x0c\x2a\x5a\x06\x1e\x4e\x47\xe6\x86\xa0\x05\x15\x54\x37\x4f\xee\x82\xfe\x39\x76\xae\x09\x9f\x77\x16\x96\x37\x3c\xdf\xad\xc7\x06\xd7\x30\x73\x5e\x92\x6a\x7d\x20\xd2\xf4\x3b\x8a\x66\xf4\x3c\xe8\x17\xfb\x74\x39\x33\x1b\xfb\x18\x93\x39\x0d\xaa\xa6\x86\xe8\xd6\xcb\xbd\x7b\x4e\x14\x55\x51\xf8\x42\x15\x87\x2f\x3c\x27\x35\xf3\x02\xcd\x1f\x82\x9f\x71\x71\x62\x06\x47\xf9\xf0\x20\xbd\x4b\x82\x65\xa0\x41\x30\x6d\xa2\x82\xa0\xab\x54\x85\x51\x69\x3e\x2c\x7a\xb2\x11\xd4\x28\x17\x32\xd5\x26\x49\x56\x36\x04\x9c\xbe\x39\x5c\x28\x39\x81\x89\x74\x29\x22\x21\x2d\x5c\x9c\x01\x89\x80\xac\xa1\x3d\x22\x34\x5f\xaf\x77\xa6\x6e\x07\x6c\x58\x5c\xff\x5c\x3a\xde\x5a\x54\xb4\xc3\x7b\xbd\x9d\x69\xdf\x05\x77\x74\x16\x13\x3f\x70\x31\xcd\x2f\x34\xa1\x0c\xd8\x66\x45\xe3\xf0\xd2\xeb\xf5\x39\x71\xdb\xbe\xda\x3d\x37\x21\xe4\xb3\x00\xe7\xe1\xfb\xd9\xfd\xca\x1b\x1b\xbd\x1b\x7c\x3b\xb3\x4e\x01\x19\xc1\x62\x2f\xdc\xf5\xfa\x13\xdc\xeb\xd9\x72\x45\xe8\x93\xbb\x5e\x3b\x07\x6c\x33\xb0\xf5\x9a\xe1\x8d\x09\x8d\x32\xb8\x8f\x32\xba\x1c\xe5\x36\xba\xae\x6a\x0d\xd6\x6b\x4e\x04\xcd\xbf\xdc\x1f\xae\x82\xf0\xd8\x7a\x2a\x68\xe2\xa3\x1c\x67\xd5\x10\xc7\xa6\xda\xd8\x47\x05\xcf\x5c\xe8\x65\xb0\x02\x98\xd8\x05\xcd\x88\xc4\xba\x99\x79\xaf\x97\x8d\xe6\xe3\xf2\x4b\xaf\x77\xcc\x90\xbe\x3a\x90\xdf\xfa\xa8\x8e\x11\x53\xfa\x00\x8e\xaa\x16\x7d\xae\x14\xd4\x98\xf1\x9f\xeb\x0d\x56\x0d\x11\xed\x10\x5e\xaf\xa7\xde\x8e\xc4\x47\xb0\xf6\xf6\xd4\xa6\xd3\x65\x7f\x09\xaa\x30\x89\xd7\xeb\x9d\x63\x06\xa9\x41\xe7\xd5\x04\xf3\x62\x74\x6e\x42\x15\x47\xa0\xd0\xeb\x21\x54\x50\x61\xa6\x87\xf4\x5f\x93\x38\x94\xd4\x8f\x3d\x3d\x27\xba\x0d\xd4\xf8\xcd\x82\x7e\xe1\x1a\x29\xc0\xff\xdf\x07\xf8\x2d\x6c\x10\xba\x16\x53\x88\x12\x6b\x86\x27\x9e\x48\x62\x04\xe1\x2c\x0e\x19\x38\xd8\xe0\x4e\x75\x08\x48\xd8\xfc\x69\x0d\x99\xa9\x6a\xf8\x37\x94\x77\xb6\xa9\x4f\xe2\xd6\xf5\x68\x7d\x84\x0d\xfb\xf2\x1b\x9b\x03\xa0\xcd\x88\xd7\xd2\xe5\xde\x65\xb0\xb1\x51\x09\x41\x65\x82\x8b\x35\xd1\x37\x49\x17\xae\x95\xae\xbd\x69\xba\xee\x92\xe9\x4a\x56\xf0\x7f\xb2\xae\x31\xc0\xee\x42\x30\xd2\xee\xf4\x74\x6e\x7e\x40\x90\xb5\x69\x7e\x21\xcc\xaf\xd5\xd2\xfc\xd5\x7c\x5a\xd7\xc7\x65\xeb\xba\x50\x6c\xdd\x32\x6c\x5b\xb7\x0c\xd5\xd6\x35\x01\xfc\xba\x36\xd7\x4c\xb1\x3a\x5d\x70\xd5\x7d\xcb\xae\xa0\xdd\xb7\xec\x6a\x29\x59\x51\xe8\x1f\xab\x65\x37\xc8\xc2\x91\x04\x3e\x3c\x8d\xda\xe6\x58\x58\x5e\x6a\x34\x6b\xa2\xe5\x81\xe1\x89\xe1\x96\xb4\x71\x20\xa4\x8b\x82\x69\xd7\xad\x69\x8f\xcf\xf5\xe4\xb6\xec\x70\x39\x5b\x4d\x42\x94\x13\x46\x90\x96\xc9\x4a\x2f\xed\x7a\xd3\x24\x17\x2e\x62\x2d\x17\x5d\x16\x7c\xb2\x6e\x2e\x93\x73\x74\x6d\xa2\xe5\xfa\xd0\xb6\x26\xb2\x6d\x18\x88\xb6\x09\x2e\x2a\x5a\x69\x8b\xeb\x2d\x68\x23\x45\x7c\xf4\xd0\x4a\x40\x77\xbc\xe9\xd4\xae\x06\x65\x68\xaa\xd5\xb2\xea\x02\x63\x63\x8c\x54\xd0\xb0\x61\x6b\x02\x53\x47\x41\x14\xee\xf0\xf5\x5a\xd4\xb3\x3f\x30\x03\x97\x24\x2a\x4c\x10\x5f\xaf\x07\x78\x77\x1f\xe2\x1b\x99\x10\xfa\xbf\xa1\xeb\xbd\xfd\x0e\x1f\xc6\x1d\x70\x9c\x22\xd1\x18\x7b\x36\x18\x90\x35\xa6\xd4\x4d\x80\x93\x02\xd0\x66\x57\x8a\xb2\xfe\x3c\x9f\xc0\xfd\x40\xce\x4a\x53\x03\x72\xaa\x99\xea\x21\x10\x66\x20\x13\xff\xf1\xf9\xb3\x7a\xe8\x08\x10\x94\xa9\xf5\xba\x66\x5f\xe5\x83\x3d\x6b\x50\x84\xb0\x28\x92\x02\x8e\x62\xfd\xc7\x2f\x9e\xbf\xd4\x0d\x4a\x6c\x1a\x7e\x22\xf3\xc5\x31\x54\x07\x8a\x8d\x5d\xaa\x3b\x97\x8b\x79\x82\xcb\x98\x27\xd2\x87\xa8\xf2\xc1\x28\x76\x20\xfa\x84\x55\x4c\x17\x5f\x5d\x9d\x64\x67\x9a\x4d\x44\x09\x34\x29\x99\x94\xb9\x0c\x2c\xbb\x35\x0c\xe8\x57\x28\x79\x2a\xde\x65\x73\x3e\xed\xfe\xf8\xfc\x19\xe4\x35\xc7\x44\x1a\x77\x85\x77\x7a\xbe\xa3\x9f\xc7\x9f\xdc\x21\x6f\x40\x9e\x30\xfc\x59\xdc\x39\x23\x17\x96\x78\x35\x27\xda\xea\x8a\xd6\x7c\x91\x9d\xb1\xb5\x64\x05\x53\xeb\x19\x9f\x33\x50\x1e\x1d\x6e\xd5\x32\xbd\x65\x57\x67\x4c\x60\xa3\x51\x82\xf0\x74\xb4\x59\x31\x08\xf1\x45\x5a\x0c\x74\xe2\x78\xdd\x0a\xe1\x54\x75\xc4\xc8\x59\x38\x8d\x29\x13\x93\x7c\xca\x5e\xbf\x7a\xfa\x28\x5f\x2c\x73\x61\x82\x57\xef\x26\x34\xd9\x6d\xf8\x12\x72\xba\x78\x53\xf7\xc9\x63\xe0\x58\xf9\xcb\xaf\x2b\x26\xaf\xdc\xfd\xf7\x72\x9e\x71\xe1\x4d\x0a\xb1\x3b\xd4\x2c\x64\x61\x4c\x1c\x68\x20\x12\x49\x29\x01\xd0\xdc\x80\x37\x66\x93\x26\xe0\xe0\xf7\x48\x12\x36\x92\x63\x00\x61\xcf\x1e\x5b\xea\xb1\x97\xe0\xaa\x7d\x65\xc1\x24\xcf\xe6\xfc\x9f\x4d\x61\x17\xdc\xaa\xba\x4c\xc7\xb6\xa4\x99\x8a\xb1\x38\x09\x5f\x35\x85\x58\x68\x88\x6a\x64\x6c\x35\x9c\x3e\xde\x48\xc4\x98\x85\xba\x92\xa3\x07\x8d\x7d\x49\x95\x5a\x21\xe6\x06\x3b\x5b\xcf\x5a\x83\x5e\xf6\x12\xb9\xbc\xe9\x15\x83\x85\xb6\xc2\x21\x5e\xa0\x24\x75\x9c\x74\x82\x7b\xbd\x43\xe7\xb3\x1d\x8a\x68\x34\x6d\x72\xa1\xca\x30\x46\xe6\xeb\xc4\x05\xe9\xdb\x79\xe2\x5d\x3c\xf1\x06\xc7\xf3\x8b\x80\x2b\x94\x48\xc5\x61\x54\x8d\x51\x40\x5a\x4b\x4e\x6a\xe5\x4f\xb2\x41\xfe\x74\xad\xe7\x92\x1a\x4e\xc1\x46\x60\x2f\xa3\x16\xbe\x51\x24\xf9\x59\xfe\x2c\x12\x7d\x7f\xa4\x0d\x45\x65\x73\x51\x13\x1e\xc7\xa1\xae\x4b\x45\xef\xfc\x9f\x83\xc1\x9d\x33\xf2\x42\xd1\x3b\xff\xd5\xff\xf4\x93\x3b\xe4\xa1\xa2\x77\xd0\x68\xd8\x1b\xe3\x37\x74\xf4\xff\x7a\xe3\x4f\xef\x90\x63\x38\x95\xfd\x4f\x87\x38\x1d\x75\x7f\x56\xe3\x4f\xd1\xe8\xff\xe9\x16\xc7\x9f\xe2\x4f\xee\x9c\x2d\xc8\x4b\x7b\x6a\xbf\x3e\x3c\x59\x7f\x73\xf8\xf0\x31\xfe\xe4\x0e\x79\xab\xdf\xfd\x7c\xe7\xe7\x3b\x77\xc8\x23\x48\x77\xfe\x0a\xfe\x7d\xae\x68\xf2\xe9\x9d\xa4\x3f\xc9\xc5\x24\x53\x28\xf9\x34\xc1\xe4\x97\x06\x73\x9d\x2c\xc1\x9d\x5f\x14\xe8\x03\xe9\x95\xf9\x1b\x59\x8f\x4c\x14\x7f\xc7\xd2\x01\x99\x67\x85\x7a\x9e\x4f\xf9\x8c\xb3\x69\x7a\xbd\x21\x4c\x65\x67\x90\x5a\xeb\x97\xec\xf2\x98\x29\xc5\xc5\x59\x91\x5e\xaf\xe4\x3c\x75\xad\x00\x55\x97\x7c\x7d\x78\x92\x10\x5e\x3c\xcb\x27\xd9\x3c\x35\xfa\xea\xd3\x7c\xa5\xd6\xd9\x72\xa9\xff\xdf\x2b\x54\x2e\x35\x7e\xea\xef\xee\x41\x9f\x05\xcf\x05\xa0\x29\x8d\xb1\xd6\x17\x7c\x0a\x01\xb2\x3f\xb9\x63\xe0\xe2\xca\xba\x11\x4e\xf2\x39\x26\x36\xbf\xd7\xce\x80\x2c\x65\xae\xef\x17\x88\x74\xb8\x33\x20\x59\x71\x25\x26\x36\xd4\xbe\x62\x42\x99\xf0\xf1\x9a\x8c\xe6\xe6\xf2\xb8\x73\xb9\x77\x71\x71\xb1\x37\xcb\xe5\x62\x6f\x25\xe7\x06\xdf\x4c\xef\x6b\xc2\x48\x16\x4c\xd1\xd7\x27\x4f\xf6\xfe\x92\x40\x8a\xf3\xa5\xb2\x7e\x5c\xcf\x95\x09\xf8\x67\xb0\xfe\x52\xe3\x96\xc4\xc4\x0a\x33\x6f\xf4\xcf\x84\x5c\xea\xe7\xa8\xa7\xc5\x9c\x74\xfd\x45\x41\x7e\x29\x20\xb0\x49\x50\x40\xbf\xb1\x25\x7e\xc9\xde\x65\x36\x7e\xe3\xc6\x8d\xbd\x48\xaf\x75\x9b\x77\x7e\x3e\xbd\x5c\xcc\x7f\x3e\xbd\x63\xba\xbc\xf3\xf3\xa9\xfe\x7b\xc7\xb4\x77\xe7\xe7\x53\xfd\xf7\xe7\xd3\x3b\x1b\x22\x59\xb1\xcc\x45\xc1\x9e\x70\x36\x9f\xda\xca\x89\x7b\xf9\xe3\xf3\x67\x89\x9d\x85\x7b\x75\xc2\x2e\x95\x1b\x96\x7b\xf7\xb7\xe3\x17\x47\x66\x04\xef\x98\x54\xd6\x93\x0d\x86\x98\xa4\xe6\xf6\x33\x77\x5f\x17\xe6\xac\x17\xda\x3c\xea\x56\x92\x54\xd7\x36\xb7\xa5\x7d\xad\x27\x9e\x06\x57\xf3\x86\xcc\xe6\x99\x7a\x61\x64\x5f\x06\x66\xdc\x5e\x5d\x2a\x4d\xf9\x7b\xa8\x5a\xb5\xd8\x2f\xa8\xe1\xb7\xe8\x5b\xc4\xc0\xaa\x2a\x80\x3f\x4c\x14\x4e\xbf\x45\x95\xb7\x10\xab\x51\xbf\x28\xe3\x94\xfe\x80\x1e\x29\x0c\xef\x4e\x64\x26\x8a\x65\x2e\x55\xfa\x03\x7a\x65\xdf\xa5\xb1\x59\x9e\x0f\x0c\xe5\x64\x3a\x85\xc1\x43\x73\xc8\x43\xf5\x86\x5c\x90\x43\x2a\x3b\x93\xf5\x1a\x4d\xe8\xce\x80\xac\x7a\xbd\x8a\x55\xdd\x0a\x13\xee\x78\xa7\x8c\x16\xeb\x75\x92\x90\xcb\xbe\x64\xd9\xf4\xea\x58\x65\x8a\x51\xf5\xe5\x60\x78\x4f\x9f\x31\xaa\xbe\xa4\x07\x83\x41\xaf\xa7\x1e\xdc\x1d\x0c\xd6\xeb\xbb\x83\x7b\x9a\xc9\x24\xa2\xd7\x43\x6f\x6a\x1e\x19\xde\xf3\x3e\x8c\x96\x6a\xa1\x86\xac\x28\x83\x34\x32\x1a\xf6\x8b\xfb\xc9\xa7\x09\xa5\x74\x35\x1a\x8c\xef\xe3\x95\x17\xd8\x78\x93\x2e\x13\xfd\x98\xf5\x17\x7c\x61\xa5\x04\x20\x9a\x7e\x65\xe1\xe1\x1b\x96\x4d\x99\x44\x89\x8d\xcc\xb7\x77\x02\x92\x2a\x90\x90\x0b\xec\xed\xbd\x21\x89\x4a\x01\x26\xdf\xfa\x5f\x73\x60\x05\xc6\xd7\x2b\xef\x77\xc2\x71\xe7\x54\xb2\xec\xed\x86\xcf\x20\xa5\x10\x17\x5d\x89\x73\x18\x17\xdc\xb7\x65\x80\x5f\x69\x64\x1c\x2b\x08\xab\x07\xd3\xb2\xa0\x38\xe2\xbb\x49\x37\xd9\xd5\x1f\xc6\xf8\x3a\xa7\xdc\xb6\x98\x81\x24\x83\xe3\x0d\x38\xb5\x65\xba\x07\x6f\x1c\x92\xef\x98\xb9\xf7\x7a\xe5\x50\x72\x4c\xe4\x28\x1f\x6f\xd0\x8c\x5c\x42\xd0\x8f\xea\xfa\x56\x42\x93\x90\x15\x99\x53\x48\x1d\x17\xac\xab\x4d\x84\x02\x2b\x31\x19\xed\x8f\x4d\xd0\x58\xa0\x17\x82\x21\xe3\xf9\x28\xab\xea\xeb\xa3\x29\x65\x63\x93\x6f\x95\x4e\xdc\xd6\xdc\xcf\x41\xeb\x04\x79\x1e\x82\xe3\x3c\xb2\xc1\x4e\x1b\xde\x8f\xa9\xc2\x10\x05\x56\x68\xf8\xd3\x23\x7c\x02\xb0\x6e\x52\xf7\x06\x2f\x80\x01\x71\x33\x00\x1f\xa4\x9c\x04\x3d\xeb\x6e\x0d\xb4\xe4\x7a\x67\x0c\x19\x64\xde\xe9\x55\xec\xf5\x56\x60\x76\x63\x72\x41\x64\x74\x3e\x5a\xc1\x7e\xe4\xe3\xf5\x7a\x3e\x4a\x3e\x85\x9f\xb8\x04\x8a\x39\x08\xe6\x0b\xca\x03\xde\x11\x8f\xf6\xc7\x36\x98\x4d\xd9\x80\xe6\xa4\xcb\x36\xe0\x09\xe3\x6b\x88\xa6\x92\x0d\x75\x31\x3e\x4e\x4d\xfa\x1d\x80\x30\x94\x53\xc8\x12\x3d\xf1\x1b\x5a\xe8\xf5\x0f\xe0\x0b\x0a\x67\xba\xfb\x0c\xb2\x25\x9c\xcb\xfc\xa2\xc0\x8a\x66\x5e\x79\xa9\x29\x7d\xf3\x1c\x90\xef\x86\x22\x28\xf4\xb9\x4c\x23\x02\x9d\xc0\x9f\x34\x1b\xb2\x34\x39\xca\xbb\x66\xfb\xf4\x6d\xd5\x9d\xc9\x7c\xa1\x41\x72\x37\xe9\xaa\x5c\x2f\xc0\x66\xb3\x89\xdb\x29\x56\xc0\xff\x24\x26\xb3\xa0\xda\x68\xa8\x7b\x43\x2e\xc9\x1c\x93\xf9\x10\xcd\xfa\x7c\xe6\xae\xd6\x5e\x0f\xa1\x0b\x7a\xd9\x74\xfa\x9e\x65\x85\xda\x73\xe5\x8c\x0b\x62\xc1\xfa\xe1\xbd\x3c\xca\xc7\xf4\x02\x93\xb6\x06\xf4\x95\xed\xeb\xe9\x07\x53\x1e\x93\x03\x83\x66\xd6\xeb\x44\x13\x15\x7a\xef\x67\x26\x5d\xc7\x21\x4d\x44\x6e\x51\x4a\x92\x5a\x6c\x64\xde\xaa\x85\x1b\x49\x8a\x0e\xe9\x9b\x3e\xcc\x94\x2c\xe9\x1b\x93\xbc\x6a\x4e\x77\xd0\x39\x7d\x63\x38\x19\x8c\x71\x8a\xce\xe9\x21\xd9\x51\xbd\xde\xe1\x7a\x8d\x0e\x69\x62\x17\x55\x81\x3d\x06\xf8\xb1\x61\x02\xb6\xd8\x6a\x55\x50\xe5\x7f\x42\xac\x35\x24\xd7\xeb\x43\xbc\x9b\x24\x64\x3e\x3c\x8b\xd2\x56\x2f\xc8\x68\x49\x0e\xc9\xe5\x18\xa7\xfa\x83\x26\xf5\xdd\xfb\x4b\x72\x48\xce\xc7\x65\xa3\x8f\xf2\x29\x43\xef\x30\x79\xe7\x50\xf1\xb4\xd7\xbb\xf2\xe2\x86\xf9\x30\x81\x3b\xc3\x6e\x54\x0a\x4f\x87\x66\x8c\xa3\x4b\x32\x23\xf3\xe1\x32\xd5\xcd\x9d\x82\xc7\x6d\xd0\xc9\x18\xeb\x96\x50\xd9\x14\x54\x7d\x64\x9d\xb9\x4c\xed\x31\x26\x7b\x7b\xfa\x5a\x02\x6a\xca\xb0\x78\x91\x94\xc8\x74\xae\x72\x50\x34\x6d\x9a\x44\xe0\x95\x60\xe5\x60\x07\x6e\x9d\xd7\x2b\xae\xd4\x26\x3d\x22\x2d\x6f\xc1\xd5\x12\x5d\x6f\x88\xc4\x64\x41\x67\x7d\x7b\xcd\xae\xd7\x33\x72\x55\x3e\xf6\x7a\x28\x0c\x47\xb0\xb0\x9c\x14\xa4\x49\x5e\x80\x49\x83\x51\x73\x9c\x55\x72\x8d\x9f\xd2\x2d\xc9\xe6\xc9\x3b\x3a\x0b\x16\x1f\x64\xdc\x6f\x34\x0e\xbd\xd0\xff\x1c\xd2\xc4\xa4\x95\x60\xd3\x84\x5c\xd2\xeb\xf2\x3e\x4c\x21\xe5\x53\x0c\xbd\x0d\xb1\x20\x34\xce\x35\x78\xc8\x44\x9b\x2e\xe8\xf5\xe6\xbe\xa2\xc7\xca\xb8\xcc\x67\xf8\x3e\x2e\x46\xaa\x1e\x0f\x95\xaa\xd1\xc1\xb8\xa3\x68\x31\xaa\x6a\x6a\x37\x11\x27\xa1\x0c\x27\xa1\x36\x7a\x34\x0f\xe7\xf3\x78\x40\x45\x03\x53\x36\xb1\x56\x9d\xa0\xfa\x7b\xc5\x7e\x5d\xb1\x42\xd5\x86\x1f\x90\x31\xa6\x9f\x09\xf8\x17\x5d\xd4\x46\xd3\xf0\x6a\xbd\x66\xe4\xcd\x88\x01\xae\x37\x46\x2e\xf9\x3b\x26\x25\x9f\xb2\xe7\xf6\xe6\x6e\x32\xd3\x2c\xbb\x99\xf9\x1b\x9e\x32\xd7\x42\xb9\x41\xcd\x6b\xcc\x30\x2c\xf4\xa5\x73\xea\x65\x23\x77\xa2\x42\x8f\x2f\x65\x98\xe4\x77\x23\x35\xa6\x23\xfd\x2f\x61\x23\x35\x1e\xc7\x01\x7c\xb3\x53\x4d\x68\x35\x58\xee\xad\xd7\x87\x3e\xd0\x4f\xaf\xc7\xfb\x50\x10\x29\x4c\x04\x1a\x38\xf3\x90\x0d\x70\xfd\x67\x3e\x3f\xfc\x25\x26\xb3\xfe\x4a\xce\x29\x42\x1a\x9a\xf5\xcf\xf5\xda\xf2\x1e\x1a\x57\x60\xcf\x97\xbd\x55\x24\xe0\x1b\x76\x93\x3b\x77\x12\x5d\x17\x84\xf2\xb2\xbf\x60\xea\x3c\x9f\xae\xd7\xd2\xe6\x78\x9b\xf9\x37\xa6\x08\x99\x95\xf7\x3d\x45\xe5\xc3\x7a\xad\x79\xaa\x78\x83\xaa\x19\x45\xad\xc3\xf5\xac\x3f\x91\x79\x51\x3c\xce\x17\x19\x17\xf8\x7a\xde\xcc\x85\xe9\xeb\x68\x6e\x18\x31\x98\x0d\xb1\x0f\xe6\x0f\x89\x1a\xa1\xbf\x54\x26\xb4\xab\x79\xb8\xbc\x50\x3b\x74\x5e\xf9\x30\x87\xf7\xe5\x0d\x17\xb7\xa3\xa9\x6d\x3e\xb3\xd3\xea\xf5\x66\xfd\x80\x95\x2a\xcd\x9f\xbc\xa8\xcc\x95\xb3\x15\xa8\x17\x64\x98\x67\xbd\xaa\x32\x9b\x42\xf8\xc6\x6c\x8e\x31\xf9\x09\x3d\x52\x64\x46\x24\xb9\xc4\x64\xe2\xc8\xb1\xcb\xfb\x41\x5a\x54\xdd\xa7\x61\xe4\x70\xaf\x37\x00\xd7\x76\x83\x25\x77\x77\xeb\x29\x8b\x1d\x9e\xcc\xa4\x2a\xb7\xd0\xfc\xe9\xab\xfc\xf5\x72\xe9\x36\x82\xcc\xc0\x94\xc9\x46\x92\xde\x79\x69\x45\x0e\xa6\x28\x26\xb9\x59\x61\x0f\x21\x2f\xc0\x9c\x22\xaa\x34\x6c\x59\x12\x08\x7d\x37\xeb\x07\x9c\xa5\xc9\x00\xeb\xd5\x9d\x37\xb2\x99\xe0\xad\x6f\xd7\xcf\xfc\xf1\xe3\xb8\x54\x24\xd9\x4d\xcc\x6d\x69\x46\x68\x08\xcc\xdc\xe7\xf8\xf3\x1b\x90\xef\x52\x74\x6a\xa7\x95\xe3\x61\xd2\x4b\xd2\x64\x98\xe0\x5d\xbb\x11\xd6\x0a\xdb\x3c\x59\x65\xd5\xac\x3f\xc9\x26\xe7\xe0\xe4\x47\x73\xdf\xe7\x43\x45\x92\x4f\xf6\x13\x4c\xce\x9b\x1b\x4c\xde\xd0\x64\xf7\x4c\xed\xee\xee\x9e\xbb\x13\x97\x9b\x9f\x11\xd5\x52\x27\x45\x7a\xbd\xcb\x7e\x15\x0f\xa2\xe4\xe9\xcc\xd3\x30\x7b\xc7\x5c\x4c\x58\x42\xea\x55\x8d\xa6\xc4\x50\x28\xad\xcd\x1c\xe5\x82\xed\x3d\xd7\x60\x9d\x04\xc5\x31\x26\x01\x34\x97\xfb\x69\xd5\x6a\x95\x9d\x93\xe1\x23\x6e\xee\x2a\xe2\x7a\x48\xd4\x00\x50\x17\xb5\x0a\x0f\x41\x6c\x90\x84\x88\x03\x98\x8f\x59\xdf\x0a\x14\x46\xf1\x97\xf1\xb0\xf5\xcb\xae\xa5\xbb\xe3\xd7\xc3\x84\x74\x93\xdd\xe7\x6a\x37\xb9\xdf\xfd\x95\x0e\xfa\x83\xfd\x24\x4d\x12\x9c\x96\xcd\x40\xd4\x17\x60\x2a\x96\x1a\x31\xcf\xfa\xe7\xe6\xd2\xc2\x0d\xe3\x5d\x12\xff\x79\xb4\x34\x29\x2c\x66\x7d\x13\x9d\xfa\x98\x09\x30\x97\x31\xd0\x53\xbe\x33\x66\x09\x0b\x72\x49\x66\x78\xbd\x9e\x78\x83\x8e\x4b\x8b\xb9\xa1\x91\x43\x9a\xc0\x53\x42\x4e\xfb\xd9\x74\x0a\x87\xc6\x10\x45\x7a\xd9\x4c\x2c\x85\xbe\xa5\x8c\xf5\x9b\x59\xc6\xe7\x68\x66\x29\x46\xc2\xe9\x4f\xe8\x95\xc3\x1d\x70\xcd\x47\x2c\xf3\x7e\x4c\xbe\x19\xbc\x00\x51\xb6\x2d\xbd\x55\x62\x9b\xce\xac\x0f\x02\x21\xbd\x01\xca\xb0\xe4\x5f\x0e\x20\x37\x74\xe4\x21\x17\x5c\xe7\x6e\x1a\x89\x2d\x9e\xe0\x0d\xf1\x75\xb1\xc1\xd4\x13\xba\xb3\x4f\x78\xbf\x60\x62\x8a\xde\x10\x11\xb0\x10\x70\x5d\x02\xbb\xd1\x65\x1d\x81\xf6\xf6\x21\x5a\x38\xdc\x94\xf0\xa4\xb9\x07\x2f\x76\x28\xe5\xb2\x97\x40\x67\xfc\xed\xf8\xc5\x51\x8b\x5f\x4c\xb7\x70\x81\x4a\x34\x77\x9a\x80\xb0\x05\x43\xa5\x63\x90\x19\x35\xd3\x18\xbe\x92\xb3\x5b\x28\x53\x84\xc4\xa6\x3e\x67\x4c\x25\x24\x59\xe6\x85\x6a\x88\x44\x59\x55\xed\x45\x3e\xb6\xb1\xac\xdf\x06\x3c\xe5\xeb\xb5\x20\x02\x42\x2e\x3a\x9a\xd5\x52\xa4\x28\x10\x2f\xae\xe4\x3c\x65\xc4\x1a\xbc\x38\x10\x4f\xb9\xe1\x93\x24\xb1\xd0\x91\x9a\xe0\x05\x55\x89\x7e\xaf\x07\x96\x68\xd0\xf0\x1b\xf6\x2e\x9b\xbf\x96\xf3\x26\x3b\x20\xd7\x6f\xd8\x9b\x91\x4b\xfa\x1e\xdd\x9a\x10\xc0\x90\x81\x0c\x71\xdf\x4b\x19\xf7\x89\x61\x21\x41\x35\x5d\x15\xf6\x5f\xc8\x6c\xf9\x70\xde\x60\xc2\x19\x12\x40\x80\x04\x6a\xb6\xe0\xc6\xbb\xbc\xb4\xb8\x1c\x0d\x34\x0e\x03\x43\x33\xa3\x92\x18\x0d\xc6\xb1\xae\x0d\xf7\xd9\xaf\x68\x80\x83\x28\xed\xae\x58\xec\xdf\x10\xa5\x73\x70\x4d\x13\x55\x55\x1b\xf8\x04\x0e\x26\x3d\x2e\x33\xb9\x2d\x2c\x69\x02\xee\x9b\xf7\xb1\x1e\x61\xed\xb5\xd7\x28\x6c\x7c\x60\x7f\x63\xee\x6b\x29\x4b\xbd\x28\x4f\x85\x68\xce\x0b\x74\x1b\x2b\xe9\xd0\x16\xde\x37\x16\x5b\xc2\xe3\xed\x76\xd1\xa5\xdd\xb3\xa4\xca\x0b\xc7\x50\xe9\x67\x3c\x94\x7d\xbb\x77\xa0\x09\x09\x12\x14\x60\x33\x81\x66\x93\xc9\x68\xe8\x9d\x76\x2b\x03\x59\x99\x81\xee\x47\xc5\xf6\xb5\x38\x35\x9d\xad\x44\xad\xbb\x28\xb4\x3e\x6c\x2d\x62\xb8\x2f\x72\x85\x92\xd3\x7c\x7a\x95\xd4\x33\xc5\x04\xae\x03\x3e\x6b\x80\xd3\xb1\xf0\xf9\x54\x43\x46\x81\x37\x3e\x30\x1f\x71\x1e\x73\xcb\x82\xad\xa6\x79\xe1\x62\xdf\x34\x44\x42\xa8\x96\x84\x88\xdc\x73\x66\xf2\xcd\x36\x7f\x6b\x6a\x66\x07\xb1\xbe\xc9\xbe\x07\x21\x47\xd7\x6b\xf7\x68\x22\x51\x6f\x89\x53\x6b\xfa\x09\x05\xbb\xfd\xcb\x73\x19\x3a\x33\x83\xe6\xb6\xcc\x41\xca\xfa\x3f\x3e\x7f\xf6\x8d\x52\x4b\x7b\xdd\x85\x79\x29\x80\x6f\x3e\x51\xf4\x7a\x00\x1e\xda\xfb\x07\x07\x77\xd3\x83\xc1\xbd\x0d\x79\xac\x68\x43\x2f\x08\x77\x32\xd6\x9f\xe4\xb2\xa0\x3b\x3b\x8f\x55\xaf\x97\x5c\x70\x75\xfe\x48\xb2\x29\x13\x8a\x67\xf3\x22\xe1\xa2\xfb\x58\x91\xcc\x54\xa5\x8f\x15\x94\x73\x03\xf6\xd8\x1e\xd5\x94\xd2\x44\x80\xd1\x9e\x69\x7c\xbd\xd6\x6d\xef\xa8\x88\x5d\x70\x92\xa4\x28\x09\x0e\xc4\xec\x84\xc0\x75\xa4\xa0\xca\x0e\x11\x12\xae\xe7\x4b\x26\x90\xb2\x69\x54\x81\x8d\x50\xe6\xfa\xd3\x4f\x05\x93\x46\xd3\xd9\x5f\x66\x45\x71\x91\xcb\xa9\xc6\x07\x97\xe7\xd2\x88\x11\x4b\xf1\x65\xf8\xb2\x18\x65\x63\x1a\xbc\x18\x65\xe3\x8e\xf2\x8c\x64\xaf\x57\xf4\xab\x4c\x68\xd3\x3b\x54\x56\xd1\x7d\x06\x33\x5c\xaf\xf9\x28\xf9\x71\xcf\xee\x12\x9b\xee\x41\xaa\x8b\xf1\x7a\x8d\x1a\xdf\xd3\x24\xde\x56\x1b\x67\x09\x86\xcd\x71\x51\xa7\x6f\x32\x02\x86\xb3\x1d\xd9\x74\x37\x84\x4c\x3c\x08\x59\x04\x2d\xfa\x39\x24\xf0\x85\x1f\x40\x8d\xc0\x2f\x20\x09\xe0\x17\x90\x21\x20\xef\x32\x86\x34\x60\x4c\x45\x2c\xb1\x63\x72\x3b\x39\x3a\x28\xb5\x72\x2e\xe3\xad\x50\x0d\x4f\x54\x58\x46\x7a\x98\xa3\x01\xb1\x25\x71\x9a\x23\xf7\x9e\x14\x81\x14\x4c\x7f\x38\x51\x23\xf7\x6a\xbc\x5e\x37\x16\x33\x3a\x17\x88\x83\x5c\x78\x29\xb1\x65\x53\xe0\x0b\x6e\xb0\x80\x08\x4a\xb2\x4b\x35\xbc\x3e\xe5\x22\x93\x57\x69\xf9\x7a\x93\x5e\x83\x72\x26\x2e\xb8\x21\x45\xbf\x51\x36\x82\xb0\x31\x11\x77\x2b\x29\x11\x26\x22\x58\x4f\x89\xdc\x6c\x4b\xd7\x4b\xbf\xc6\xc3\x72\xb5\x45\xda\xb8\xde\xc1\xa6\xdd\x83\x8c\x0d\x25\x61\x08\x21\xe3\x1b\x89\x3a\xd9\xeb\x09\x08\x94\x47\xa0\x7f\xb3\x5b\x86\x96\x2b\x0c\x19\xa7\x22\x76\x41\x01\xc9\x6d\x22\xcf\xc4\xd4\x9d\x74\xd4\xdd\xa6\x26\xd2\x80\x6e\x24\xf2\x01\xa5\x23\xb5\x13\x8a\x63\x68\x06\x47\x00\x9c\xb2\xdd\xed\xd4\x37\xb4\x08\xdd\xd9\xc7\x65\x23\x56\x8c\xe7\x35\x92\xa6\x8c\x55\x3d\x96\x7a\x43\xd2\x8d\x54\x8b\x2d\xef\xd9\x64\xd1\xf8\xfe\x72\xaf\xfc\x12\x69\x20\x6d\x6f\x77\x7e\x3e\x45\xc3\x54\xb7\xba\xd6\x05\xb1\x79\x0d\x6a\xc7\x48\x57\x08\x5a\x3f\xdb\x4c\xcb\xdd\x6f\xa8\xaa\xc3\x77\x99\xbe\x77\x09\x6b\x5e\x2f\x4f\x95\x45\x77\x70\x19\x87\xc0\xb1\xb3\xf6\x97\x5e\x31\x52\x5f\x57\x13\xf3\x41\xd3\x7b\xc1\x7a\x96\x28\xb9\xb1\x13\xd0\xbd\x44\x42\x1b\xeb\xd6\xd0\x69\x44\xc7\x40\x0d\x03\xb1\x91\xd8\xc4\x8c\x5f\x26\xd8\x98\x61\x5c\x5b\x9d\x72\xca\xec\xbe\x3e\x32\xcf\xa4\x90\x93\x94\x69\x04\xbd\xc1\xfd\x5c\xa0\x44\x1f\x94\xae\x95\x8a\xc7\xa8\xca\x27\xcb\x73\xe6\xc5\x84\xf5\x7a\x1c\x05\xa8\xc5\x48\xeb\xef\x0d\xee\xc1\x6d\x66\x93\xbd\x6e\x30\xf9\x04\x18\xbb\x28\x12\x87\xd2\x44\xe0\x36\xb8\xb5\x16\x0b\x47\x8a\x8e\xc6\xe4\xa9\xa2\x77\x10\xc5\x3f\x0f\xd1\x90\xf6\xd6\x9f\xe0\xf5\xcf\x43\x6b\x67\x15\x00\xa5\xe6\x44\x96\x69\x32\xb1\x62\x60\xa3\x4d\x5e\x3a\xa9\x70\x3d\x76\xf3\x91\x32\xa6\xac\x46\x0e\x6e\x0c\xc1\x77\x93\x37\x46\xca\x10\x11\xcc\x6c\x4c\x77\x06\x1a\x3a\x9a\x80\x43\xf7\x02\x2a\xe7\x65\xb0\x77\x0d\x39\x05\x4c\x12\xd0\x3e\x94\xec\xf5\xd0\x53\x67\x97\xa2\xd7\x1e\x0f\x93\x95\x9c\x27\x35\xaf\x9b\xae\xb2\x22\x04\x10\xf7\xa8\xdf\x2a\xee\x29\xfb\x04\x71\x4c\xaf\x97\xe8\xbf\xc6\x13\xb3\x58\xaf\x13\x33\x0b\xb0\x27\x0e\xf9\x7c\xc7\xc2\x72\x37\x7c\xb7\xa6\x55\xf3\xaa\xf8\x2b\x1e\x56\x5e\x20\x4d\xd9\x46\x6f\x48\x31\x54\xa3\x62\x4c\xf5\x3f\x5e\x12\xf4\xd4\x48\x82\x76\x39\x4e\x2b\x6b\x06\x6b\x15\x08\x9c\xdc\xda\x39\x19\x91\x2d\x09\xc6\x5b\x1c\xae\xf7\x52\xb9\x69\xcf\x97\x31\x0e\x18\xd3\xba\xd4\x3c\x0b\x4c\xde\xf8\x6e\xd2\xbd\xc8\x8a\xae\xc8\x55\x57\xc3\x93\x5e\x3e\x92\x8d\x06\xe3\x0d\x89\x97\x86\x1a\xfe\x97\xe4\x94\x8d\xf8\x18\x12\xc0\x46\xa1\x58\xa9\xb7\x39\xdd\x10\xd1\x10\x8f\xd2\x63\x91\x7c\x68\x1c\x4e\xca\x48\x07\x88\xe3\x14\xda\xcb\x89\x32\xba\xc6\xea\xea\xcb\xca\x62\x6a\x80\x5e\x15\xe7\x88\x63\xc8\x96\x11\x6f\x4e\x8e\x7b\xbd\x1c\x65\xc0\x7b\x65\x34\x77\xe6\x81\xd8\xf3\xe1\xc6\x2c\xd5\x08\x84\xbf\x39\x81\xd8\x05\x30\xf2\x5a\xc4\x25\xfa\x49\x9f\x2f\x96\x86\x01\x03\x80\x6b\xa8\x84\x34\x70\x6a\xe6\xa0\x8c\x04\x12\xe4\x91\x7a\xa0\x61\xf3\xcb\x07\x77\xcc\x9f\xf0\x21\x21\x07\x06\xa5\x7a\x36\xc1\x92\xdd\x1b\x63\x0a\x0e\x9a\x50\x68\xa4\x2a\x9c\x08\x7c\x4e\xcb\x88\x75\x16\x72\x47\xe3\x4e\xa3\x5b\xad\x55\x66\xed\xec\x1b\x5c\x63\x9c\x57\xdd\xc1\x5f\xaf\x51\xe3\x7a\x0c\x11\x12\x14\xa9\xdb\xae\x02\xae\xca\xd8\x4f\xb3\x82\xe9\xd7\x20\x54\xff\xc4\x1b\x92\x5a\x63\xa5\x3a\xa6\x14\x18\xa7\x8a\x7e\x82\x09\xa7\x57\x3e\xd1\x1e\xc9\xe9\x8e\xec\xf5\x46\x63\xc2\x87\x23\x55\xe9\x82\x8f\xf6\xc7\x78\x9c\x22\x4e\x4f\x21\x6a\xa8\x82\x94\x15\xbd\x5e\xee\x53\x6d\x14\x0c\xe5\xb8\x44\xe7\x05\xeb\x2f\x98\x3c\x63\x48\xb7\x17\xb2\x68\x5e\xc0\x00\xe4\x53\x6b\x7c\x0c\x92\x99\xd8\xc8\x05\x65\xa1\x57\xb5\xe7\x48\x0b\xe3\xb3\x23\xe8\xaf\x88\x59\x51\xb2\x66\xcf\x35\x37\x6f\x9e\x06\x44\x3f\xd7\x8c\x35\x63\x65\x63\xaa\x1a\x82\x7e\x9a\x7c\x28\xc9\xcb\x17\xc7\x27\xfa\x88\x06\xe9\x68\x9b\xc4\x2d\x7c\xbd\xae\x4a\x5c\x8c\xbd\x94\x55\x88\xe3\x4a\x6c\x55\x86\xaf\xf3\xf2\x08\x93\x0c\xb2\x17\x22\x31\x84\x1b\x76\xca\xdf\x7d\xe9\xe3\x4b\xa1\x10\x38\x21\x3d\xef\x8c\x0b\xbd\x79\xc0\x56\xbb\x93\x2f\x7b\xbd\x58\xa4\x95\xd5\x58\xe7\x28\x18\x5c\xbe\x5e\x07\x46\x16\x40\x57\x2b\xc2\xc6\x10\x67\xd9\xe9\xcd\xbc\xe4\xac\xd4\x49\x90\x52\x8f\x4b\x2a\x6a\xe0\x50\xa1\x1c\xa9\x9a\x49\x29\xbb\x6c\xc8\x00\x53\xb5\xaa\x8f\x85\x02\x70\xe1\x95\xb9\x08\x43\x1e\xdc\x86\x76\x9b\xb6\x08\xc4\xce\x24\x5b\xa2\x32\xf6\x60\xc8\x97\xfa\x94\x9a\xfa\x06\x60\x73\xb6\xd8\x38\x16\x1c\x26\x6d\xd8\x75\xb0\x4a\x7f\x01\x3f\xb7\x67\x70\x06\xbb\x99\x32\x5e\xb1\x4b\xee\x95\x60\x88\x8c\xac\x4f\xd4\x94\x5e\x6f\x3a\x89\xa6\xef\xf9\x44\xdf\x81\xf3\x32\x69\x4b\xdf\x15\xa7\x89\xcb\xad\x07\x49\xe3\x26\x76\x14\xc8\x06\x0a\xb5\x8d\x83\xfe\xdc\xa6\x88\x36\x6f\xe6\x90\x74\x85\xa0\x32\x95\x98\xee\x60\xbd\x4e\x66\xfc\x92\x4d\xe1\x01\x83\x32\x65\x15\x5e\xe9\x2b\x95\x83\xbb\xdb\x10\x65\x14\x09\x3a\xf1\xc3\x40\x18\x43\x42\x3d\x4e\x05\xe4\x59\xc1\x29\xca\xc2\xfc\x3f\x39\x5e\xaf\x07\x84\x87\xaf\x56\xfa\x55\xfd\x88\x81\xd1\x83\x32\x72\x20\x06\x4e\xd6\x41\x0c\xd3\x02\x63\x17\x4d\x16\x12\xf8\xf5\x7a\x68\xaa\xff\x9a\xa7\xbd\x42\xff\xbb\x9b\x95\x45\xf4\x50\xa0\x8c\xfe\x61\x9f\xf7\x0a\xf8\xa3\xaf\xe3\x64\x55\x68\xec\xac\xd9\xfa\xa1\xea\xc3\x83\xeb\x78\x8a\xd3\x09\xac\xd5\xd4\x86\xe6\x0f\x73\xd3\x57\x77\x17\x70\x7d\x9b\x07\x7a\x90\xd9\x58\xf9\x3c\x92\x0d\xe2\x3c\xbb\x73\x7d\x0f\x3e\x61\xf2\xd5\x4e\x14\x41\x23\x74\xb0\x29\x6d\xb9\xda\xe4\x43\x43\x24\x68\xde\x96\x15\x07\x22\x61\xc6\xb9\xc2\xa5\x26\xb6\xec\x83\x45\xe0\x90\xc9\x25\x70\x5e\x23\xd7\x2a\x5f\xa6\x02\x96\x9b\xf7\x97\xd9\x19\xfb\xc9\x8c\x79\x4f\xf6\x27\xd0\xfa\x49\xbe\x24\x90\xe6\x4f\xd8\xd5\x86\x52\x3f\x56\x4a\x3d\x83\x94\x3c\x29\xb4\x36\x30\xe5\x07\x9b\x0d\x59\x36\xa4\xf0\xe3\x33\x2f\xa9\x75\x61\x16\x89\xf7\x34\x22\x82\xc6\x6d\xb8\xd0\x15\x1e\x9a\x2d\xe4\xcb\xf0\xa0\x0d\x15\x95\x6d\xeb\x92\xda\x4c\xbd\x76\x57\x5e\x1a\x21\xa3\x5e\xae\xe0\x2d\xc2\x84\x23\xa6\xfb\x37\x48\x1b\xaf\xd7\x60\x2d\xe8\xbe\x62\x37\x2e\xb3\x52\xee\xf4\x41\x05\x93\x60\xe8\x24\x5f\x9a\x0c\x43\x26\x4e\x7a\xb0\x60\x0d\x85\xf5\x6a\x95\xa5\x37\xd8\xec\x82\x01\x7d\x61\x0e\x80\x9f\xa5\x49\x6a\x74\xa2\xf1\xad\x6f\xd9\xc2\xbf\xb0\xc7\xa0\x52\x16\xd2\x30\x19\x7f\xac\x0d\x09\x67\x7d\x4b\x23\xfb\x58\x5a\x1e\xad\xdb\x7d\x06\x1a\x73\x87\xc7\x9a\x90\x9e\x91\xa4\x87\x95\x3c\x9d\xb6\x5e\xff\xca\x36\x95\xf8\xa2\x3e\x07\x47\x9a\x04\x70\x95\x10\x9f\xb2\xc3\xbc\xb7\x50\xd9\xe2\x8e\x14\x15\xd1\x48\xbd\x53\x8f\x0d\x2a\xb6\xa5\x45\x2a\xbd\x98\x7d\x2c\x1b\xeb\x5a\xc8\xf0\x30\xa7\x2c\xfd\x6b\x35\x3a\x7f\x4e\x59\x78\x8e\xc2\x54\x6b\xfe\x1c\x0f\xf3\x91\x1a\xa7\x6c\x24\xc6\x9d\x7c\x98\xfb\x2c\x24\x48\x0e\xf3\xf0\x10\xa5\x9c\xc8\x21\x4f\xf3\xf0\xf8\x61\xa8\x46\xf9\x06\x82\xb2\xd6\x33\x08\x57\xa2\xca\xea\xcb\x18\x2e\x82\x1b\x32\xac\x41\xa6\xaf\x28\xb9\x26\x89\xdd\xd9\x42\x47\x3f\x93\xd1\x51\x61\xf2\xa3\x75\x59\x00\x1f\x03\xcd\x49\x94\x97\xc5\x48\x8d\x21\x0d\x57\x2a\x37\x38\xdc\x57\x9b\x75\xd1\x27\x80\x03\x68\x4f\x6d\x06\x8c\x86\x40\xae\xa6\x96\x4f\xdb\x05\x04\x7d\xb2\xcb\x9c\x80\x26\x55\x24\x49\xd2\x24\x5f\x29\x78\xbd\xa9\x44\x03\x35\xbb\x2d\x82\xdd\x2e\xa5\xc7\xb4\xba\x78\x9a\x36\x0f\x82\xe5\x7a\x8a\x9e\xeb\x6b\x57\xae\xd7\x08\x2c\x32\xf9\x7a\xbd\x63\x98\x27\x7b\xaa\x92\xd4\x1e\xde\x92\xf6\xac\x01\x92\xc6\xeb\x1e\x90\x42\x2d\x90\x05\x26\x85\x87\x60\x8b\x5c\x5e\xc4\x66\x46\x78\xa8\x46\x7e\xce\xe3\xb4\xc4\xda\x55\xf4\x3d\x4a\x0c\xba\x85\x62\x7f\x8d\xd2\x6c\x0f\x51\xde\x80\xee\x21\x79\xcc\x22\xbb\x44\x0a\x58\x26\x60\x55\xf3\xf9\x5c\xd7\x27\x79\xf4\xe4\x0a\x98\x93\xeb\x0a\xc4\x4f\x65\xe7\x18\xa7\x25\xc0\x0f\x2d\x1e\xd0\xd3\x2f\x70\x99\x96\x07\x96\x83\x14\x78\x43\x14\xc9\x86\x3c\x75\x06\xe2\x10\x82\xb5\xea\xf9\x78\xca\x43\x71\x53\xac\x16\x76\x94\x20\xb3\xce\xb1\x44\x82\x36\xa9\x56\xa5\x52\x61\x36\xf3\x35\xf0\x86\x38\x1f\xf1\x1b\xe2\xc1\x1b\x82\xd3\xc6\x75\x5f\x89\x96\x5a\xbe\xce\x3e\xa5\x35\x08\x1b\x06\xdd\x27\x9f\x7e\x9a\x58\xf5\x9d\x7e\xa1\x08\x58\x55\x7d\x9a\x10\xe9\x0e\xf1\x79\x3e\x9f\xbe\x62\xd9\xf4\x2a\xa2\x63\x99\x89\x0e\x99\x4d\xaf\x7e\xc8\xb8\xda\xdd\x4d\xdd\x23\x44\x75\x37\xc4\x16\x78\xfe\xd0\xc8\x0f\xc8\x33\xb2\x7f\x3b\x7e\x71\x44\x03\x3f\x85\xa2\x8c\x8e\x47\x39\x49\x5c\x57\x25\xb7\x33\x65\x33\x2e\x58\xaf\x67\xfe\xf6\xb3\xc5\xd4\xfd\x46\x89\x31\x95\x4c\xc8\x68\xdc\x90\xa7\xaf\x60\x96\xaa\x79\xa2\x28\xeb\xff\xf2\x9d\x2e\x4a\x9e\xe9\xdf\x9f\x04\x67\x40\xe4\x8f\x72\x31\x9b\xf3\x89\xa2\x4d\x94\x78\xff\x13\xb8\x4e\x80\x2e\xfe\x84\x3e\x53\x10\xfc\xdd\xb5\x56\x7e\xb2\xcf\x4f\x94\x5e\xb9\x0d\x51\x10\xe4\xc3\xbe\xd4\x15\x0b\x88\x89\xbc\xc1\xb5\xf8\xbe\x66\xa7\x8d\xfa\xb7\x31\x25\xb6\xc5\x7f\x06\x65\x30\x52\x40\x28\x92\x4e\xb1\x5e\x23\xf8\xb9\x4b\x93\x3b\x26\x38\xe1\xd8\x4c\x76\x45\x73\x5d\xc0\x67\xbe\xdf\xa1\x74\xe5\x10\xe7\xaa\x63\xbe\x52\x4d\xe8\xae\xd7\x31\x84\x1a\xc1\xba\x82\x50\x0d\x87\xc6\x09\xf2\x51\xbe\x9a\x4f\x41\x20\xa4\x19\xbb\xee\x22\x9f\xae\xe6\xcc\xc6\x69\x92\xec\xd7\x15\x97\x6c\xda\x3d\xbd\x32\x0e\x92\xe9\x6d\x2a\xe2\x0d\x4c\xc7\xa7\x41\x9a\xd3\xa2\x3f\x65\xcb\x42\x73\x24\x7d\x27\xc5\x24\x53\xc8\x54\x6e\xfc\xc7\xe6\xde\xfe\x6a\x49\x07\xf7\x97\x0f\xdc\xf3\xfd\xe5\xee\x2e\x4e\xd8\xe5\x32\x97\xaa\x00\x6e\x62\xb4\x1c\x0f\xa7\xa3\xe5\x98\xae\xd2\xc4\x8e\x2e\x7e\xaf\x52\xf8\x23\x90\x7e\x45\x32\x8f\x2e\x27\x21\xfb\x39\xc5\x64\xb5\xe1\x33\x94\xe8\x23\xa6\xa1\x6c\x5a\x82\xe2\x05\x60\xcb\x5e\x2f\xf8\xe6\xb1\xb4\xb5\x54\xeb\xf5\x92\x91\xe1\xd7\xdd\x9b\xb1\x1e\xc4\xf5\xa6\xaf\x72\xe3\xbf\x63\xe8\x7f\xfb\x11\x43\x96\x74\x38\x85\x87\x8b\x53\x16\xfe\x84\x48\x0a\x41\x66\x5c\x10\xdd\xc4\xaf\xfa\x6f\xde\xcc\xf3\x6c\xca\x5c\x70\x29\x93\x02\xf2\x7a\xd3\x61\x2d\x29\x44\xae\x37\x1d\x39\x44\x02\x96\x9c\x2a\x22\xfc\x92\x53\x09\xae\xc1\xf0\x7e\x34\x0e\x3f\x28\x4c\xb8\xa6\x57\xc4\x86\xa0\xe6\x50\x2f\x16\x97\x69\x96\xdf\x12\x1e\x54\x11\x50\xe8\x34\x6a\xa1\x39\xc4\x23\x85\xbf\xbb\x1e\x76\x37\x44\xf5\xdf\xb0\xec\xed\x9b\x82\x31\x41\x39\x29\xa7\x46\xaf\xcd\x52\xa7\x8c\xd8\x4d\x4d\x15\x91\xec\x8c\x17\x4a\x5e\xa5\xdc\x5a\xf7\xb0\x60\x31\xfa\xa6\x02\x51\xe1\x3b\x5b\x77\x83\x11\x26\x0c\x25\xff\x7d\x36\xe7\x8b\x05\x93\x77\x34\xee\x49\xc8\xc8\x03\x12\x29\x3f\xc9\x95\xd0\x2c\x7a\x8d\x74\x49\x56\x05\xeb\x16\x4a\xf2\x89\x4a\x3a\xfe\x9c\x4a\x1f\x72\xa7\xc4\x61\x3b\x81\xc4\xc6\x46\x27\x55\x56\x81\xa5\x01\x5c\xdf\x8e\xf6\xc0\x1c\xaf\x96\x4c\x76\xd9\x25\xb8\xff\xeb\xe6\x16\xab\x42\x75\x19\x57\xe7\x4c\x76\x4f\x19\xd8\x11\x77\x73\xd9\xcd\xbc\xd6\x94\xc0\xf1\x4a\x76\xbd\x23\x75\x87\x05\x69\xfe\x8c\xa1\x8e\x95\x91\x21\x1b\x23\xc3\xe5\xfd\x8b\x52\x53\x5e\x5b\xaf\x4b\xc2\xc4\x6a\xc1\x24\x24\x2b\xdf\xd9\x27\x17\xd2\x44\xc2\xb4\xee\x61\x33\x7e\xb6\xb2\xdf\x06\xfa\x7a\xd0\x3c\xaf\xed\xc3\x64\x1d\x36\x4d\xbf\x98\x0d\x1b\xdf\x9a\x88\xd0\x8d\x7e\xcc\xc0\x6d\xda\x4a\x67\x4c\xbd\xb8\x10\x2e\x87\xb1\xbe\x12\x20\xdc\x1d\x78\x02\xd3\xc1\x7d\xf9\xc0\xa7\x54\x90\xbb\xbb\x58\xd0\x7c\x24\xc7\x04\xf1\xe6\xea\x8f\x99\x11\xf2\xe6\x12\x41\x6a\xe1\x5e\x8f\xf7\xc3\x99\x04\xf9\x94\x35\x49\xdb\xeb\xd9\x56\x0c\xf4\xf8\x44\xca\x36\xf7\x80\x89\x26\xbb\x61\xfd\xa3\x7c\xca\x1e\xbf\x78\x7e\x22\x19\x7b\xe4\x96\x91\xe7\xc2\x0a\xec\x3a\xf5\xd4\x23\xa1\x0f\x5b\x5d\xf7\xed\xa3\x4e\x23\xd6\xe5\xa2\x50\x99\x98\x98\xed\x6c\x86\x93\x47\x99\x70\xf2\xf9\x6e\xd6\x85\x88\x7b\xdd\xac\x08\xc0\x22\xc1\x1b\x9b\x7e\xa6\x1a\x27\x42\x77\xc2\x82\x56\x5f\xb1\x19\x93\x4c\x4c\x5c\xd3\xba\x56\xf7\x3c\x2b\xc4\xff\x55\xdd\x53\xc6\x44\x97\x0b\xae\x78\x36\xe7\x05\x9b\x76\xf7\xba\x85\x86\x50\x84\xa3\x12\x4e\x4d\xe0\x22\xed\xa9\xf5\xda\x09\x2b\x43\xd0\x6f\x3a\x10\x43\x96\x2a\x3b\xd2\xaa\x51\x91\xa3\xf2\x91\x20\x0c\x13\x11\x64\x10\x84\x68\x0c\xaf\x0b\x36\x67\x45\x61\x09\xc9\x50\x52\xbf\x89\x0a\x1b\x13\xac\x6f\x4e\x9e\x3f\x33\x66\x58\xb5\x6c\x0c\x06\x65\xca\xa1\x84\xf0\x31\x3c\x5f\x15\xc7\xfc\x74\xae\xc9\x7c\x63\x14\x0b\xa2\x68\x2b\x0a\x29\x09\x5f\x73\xa4\x5e\x65\x17\xba\xe5\x63\xe6\x78\xb8\x0e\x8b\x6d\xbe\x72\x7d\xcb\x99\x4b\x9b\x0f\x79\x5f\xb0\x4b\x55\xb6\x0e\xe6\x5c\xa6\xf9\xe2\xa6\x01\x74\x02\xb3\x1a\xd5\x7f\x94\x8b\x89\x64\x8a\x81\x40\x41\x33\xb8\x19\x90\xb1\xe1\xbc\x23\xb9\x78\xab\xf8\xb2\x32\x1f\x27\x46\x67\x95\xc6\xc2\x20\x90\xb5\x3b\xa5\x1e\xb6\x1d\x92\x1d\x21\xd5\x6f\x38\x20\x7a\x85\xda\xce\x8e\xd8\xc4\x48\x59\x3a\xd0\x6c\xc1\xcc\x2b\xc5\xe7\xef\x8d\x96\xff\xdd\x80\x3f\xa2\xf0\xfe\xbc\x39\xfe\xb7\xdf\x1c\x7e\xbb\xf9\xc7\xc0\xf9\xbe\xf5\xbc\xb4\x95\x9c\xba\xc8\x8d\x53\xa3\x22\x6d\x40\x05\x36\x04\x1f\x24\xcc\x5c\x56\x4b\x11\x15\x97\xe3\x53\x80\x08\x5d\x96\xf5\xf9\x94\x06\x20\x9c\x41\xbc\x9d\x0b\x0e\x86\x3a\x8e\x60\xbf\x9e\x64\x05\xeb\x0e\x52\x77\xe5\x75\xe0\x79\xdf\x3d\xb3\xd1\x60\x6c\x5e\x1d\xb8\x57\x6f\x1c\xd8\x81\x4c\x92\x8d\xf6\xc7\xb8\xe3\x12\xb8\xd8\x22\x17\xbe\x08\xde\x94\xfd\x17\x1f\x75\x4d\x57\x7f\x1e\xd0\x3f\xc0\x01\x65\x7d\x5e\x38\x3f\x18\xca\xfa\xfe\x86\x78\x04\xf6\x4d\x10\xc2\x84\xb2\x3e\x3c\x4d\xfd\x47\xca\xfa\xaf\x97\xd3\x0c\xd6\xf3\x24\x3b\xf3\x05\xcc\xef\x49\xbe\x38\xe5\x82\x95\xbf\x8e\xe7\x7c\x12\x3c\x9e\x64\x67\x67\xd0\xd9\x63\x2e\xd5\x55\xd0\xc6\xeb\x57\xaf\x0e\x8f\x4e\xde\x9c\x3c\xfc\x9a\xb2\xfe\xf7\x2f\x9e\x3d\x3c\x79\xfa\xec\xd0\x3e\x3e\x7a\x71\x74\x7c\xf2\xd0\x7f\x3d\xc9\xce\x7e\x90\xd9\x72\xc9\x24\x0c\xfa\x1d\xd7\x30\x66\x9a\x71\x15\x29\xeb\x3f\x3d\x7a\x7a\xf2\xf4\xe1\xb3\xa0\xba\x7e\xa9\x98\xcc\x54\x2e\x8f\xaf\xc4\xe4\x5c\xe6\x82\xff\xd3\x36\x62\x27\xe7\xbe\xfb\xa2\x3c\x17\x0f\xa5\xe2\xb3\x6c\xa2\x0a\xca\xfa\xfe\x9a\x7e\x22\xf3\xc5\xcb\x4c\xc2\xcb\x67\xbc\x50\x4f\x15\x5b\x50\xbd\x9e\x70\xcb\xeb\x4e\xf5\xdf\x72\xd1\x02\x5a\x79\x4e\xf7\xc9\x84\x36\x09\x3e\x98\x0f\x11\x44\x98\x27\x0a\x83\x83\xe0\x51\x52\x2b\x8d\x63\x71\x9b\x86\x82\x0d\x81\xbc\x42\x13\x8d\xb7\x4c\xc7\x53\xcd\xe7\x2e\xf5\x3f\xe7\x2d\xdd\x1b\x13\x0b\x37\x02\xe2\x63\xf1\xb8\x4c\xfb\x20\x17\xa5\xb2\x65\x68\x2b\x56\xb7\xb7\x41\x03\x32\x0d\xe2\x29\x63\x54\xb6\x83\x37\xe4\x96\x73\x43\x03\xb2\x6c\x69\x04\xc2\x6d\xc0\x44\xab\x28\xdf\x2f\xcc\xe0\x06\x4c\xaf\xcf\x8c\x72\xf1\xb2\x41\x0c\x73\x8e\x06\x86\xbf\x6f\x6f\xf4\x28\x3b\xba\xa1\xd9\xa3\xec\x28\x68\x78\x61\x1b\xde\xbf\xa9\xe1\xb3\x1b\x9a\x55\x94\xd2\x33\x17\xa2\xcc\x36\x7a\x60\x1a\x25\x67\x74\x4e\x4e\x9b\x39\x31\xe5\xa3\xa9\xd5\xc3\xe3\x05\x61\xa2\xfd\xc7\xd1\x60\x3c\x0c\x1f\xd2\xb3\x0e\x77\xfc\x0a\xf4\x9d\x53\x59\xe3\x65\xca\x20\x94\x79\x5f\xda\x73\x49\x05\xc9\xbd\xa7\x33\xd8\x0f\x10\x87\xc9\xeb\x26\x47\x1f\x3c\xb6\x80\x63\xb0\x1e\x08\x7c\x4a\x80\x7f\x80\xe0\x4e\x44\xdd\x0c\xa9\x5d\x1b\x5d\xdf\x0c\x3b\xae\x32\xd5\xc8\x2a\x32\xfe\x0f\xcb\xd2\xdd\xdd\xb3\x0d\x51\x1b\x34\xc1\x9d\x1c\x9d\x9a\xf5\x79\xd7\xbe\x0f\xf1\x42\x8a\x72\x21\x1b\xf3\x03\x06\xd1\xbf\x0c\x87\x64\x62\x18\x83\x2c\xdd\xbc\x32\x19\xc5\xcc\x8b\xda\x52\x6f\x99\x77\xa0\x58\x0c\x5a\xee\xf8\x17\xdf\x47\x39\x9e\x76\x28\x3d\x73\x21\xb4\xc2\x81\x9c\x91\xb8\x82\xcd\x36\x9f\x2f\x96\x9a\x43\xb2\xee\x39\xe5\xe7\x78\x61\xb9\xa8\x1f\x7b\xbb\xba\xd5\xc9\xda\x15\x8e\x22\xa7\x44\x0b\x2b\x48\x5e\x5d\xdb\x6c\x2b\x90\x66\x86\x2b\xa5\x82\x64\xfd\x82\x4d\x72\x31\xa5\x39\xc9\x6e\x04\xd6\x30\xd6\x64\x23\xc0\x11\x59\x05\x39\xbb\x1a\x0d\x40\x57\x2a\x85\x4c\x02\x5c\x59\x28\x87\xc4\x5d\x9a\x02\x3d\x30\xf7\x0e\xc3\x2a\xbc\xd3\x70\xf6\xc6\x4c\xf1\xa2\x75\x39\xaa\x8b\x71\xd3\x89\x55\xd9\x59\x71\xab\xd3\xca\xb6\x4f\xff\x16\x93\x8f\x6d\x0d\xa0\x67\x22\xe8\x9e\xc9\xb1\xcd\xe8\xe0\x3e\x2b\xb3\x39\xb2\xdd\x5d\xac\xa8\x1c\xb1\xb1\x5f\x18\x41\xcb\x65\x23\xa2\x3c\x20\xe5\xe2\x5c\x98\x29\x1f\xfe\x9e\x8b\xa3\xd7\x06\xa0\x12\xc8\x1f\x36\xa5\xf3\x7f\xc9\x5a\x35\x02\x4a\x30\x0c\xe2\x96\x30\x84\x91\xa0\xc9\xd5\xb2\x76\xab\x32\x9b\xe8\x56\xd7\x72\x47\x5a\x4f\x90\x91\x6a\xe3\xee\x74\x97\xe7\x34\x82\xc1\x43\x1b\x6f\x8e\xbc\xb8\x99\x9e\x29\xdb\x7e\xe5\xaf\x06\xd0\x07\xc6\xd8\x03\x8e\xfa\x6d\xe8\x8b\x30\x5c\x60\x76\xe6\x6c\x48\xc2\xf6\x1d\x78\xd5\x70\x19\xe8\xb3\x02\xf6\xae\xd4\x48\xb4\x61\xb1\x86\xc1\x7b\x46\x12\x13\x19\x53\x32\x37\x20\xb5\x68\xfa\x86\x78\x21\x0f\x7f\x47\xa4\x06\xa0\x0a\x6b\x92\x95\xf4\x2a\x20\xb9\x85\x21\x9a\x9b\x90\xdc\xcd\xc7\x95\xda\x3b\xcf\x36\xd8\xf1\xa4\x99\xb3\x5b\x59\x32\x89\x11\x8b\x31\xd5\x0b\x4c\x8e\xdb\x68\xcd\x46\xd8\x08\xee\xb2\x6d\xf0\xe2\x64\x55\xff\x64\x53\x0a\xbe\xb2\x16\x82\x95\x81\x85\x68\xa4\x54\x35\xc1\xd3\x92\xb1\xb7\x6d\x44\x40\xd0\xfa\x30\x1e\x59\x5a\xf9\x8e\x2a\x44\xac\x64\x4d\x5b\x0f\xa1\x60\x2b\x0d\xe3\xe6\x0e\x6d\x26\xd0\xea\x6a\xb7\x80\x37\xd3\xd3\x85\x88\xd0\x21\x38\xbb\xa6\x5f\x76\xea\x4b\x28\xdd\xfe\x74\x82\xd8\xba\x7e\x7a\x90\x26\xc2\x15\xf0\xee\x00\x94\x8a\xe1\xcb\x14\x55\xf6\x88\x6b\x46\xb2\x02\xf7\x6e\x16\x37\x01\x4f\x38\x1d\xd3\x5a\xad\xdb\xa6\x03\x17\x20\xb9\x06\x30\x18\x10\x65\x4f\xd3\x4b\x9a\x64\xd3\xd3\xbb\xa7\x5f\xfc\x85\xed\xdd\x9d\x1e\x1c\xec\xdd\x63\xf7\x4e\xf7\xfe\xf2\xc5\x17\xd9\xde\xe7\x77\xf7\xbf\x98\x1c\x4c\x3e\x9b\xec\xdf\xfb\x2c\x21\x6f\xdb\x61\x13\x7d\x4c\x7d\x05\x8e\x01\xdf\xb0\x55\xaa\x04\xe3\xd9\x7b\x70\x58\xdd\xb2\x09\x3b\xfd\x47\x6d\xc8\xc4\x18\xe8\x44\xc8\xa4\x1a\x4f\xf7\xdf\x50\x6a\x5c\x57\x99\x58\x20\xf6\x63\x7b\x92\x4b\x24\x70\x89\x03\x79\x5f\x32\x95\x71\x61\x90\x03\xef\x83\x86\x15\x7e\xbd\x65\x57\x54\xe8\x7f\x09\xef\x73\x65\x04\x44\x54\x12\xde\x5f\xb0\x45\x0e\xe1\x79\x16\x79\xa5\x59\xc2\x7d\x92\x95\x3a\xb2\x6c\xb8\x5c\x2d\xa4\xbb\xfe\x2d\x7e\x74\x9d\xd9\x1a\xdf\x47\xe3\x0f\xb2\x01\x95\x30\x11\x57\x78\x1e\x0e\xcc\x94\xd7\x63\x05\xf6\x37\x1c\x50\x71\x9e\xaf\xe6\xd3\x57\x60\xf2\x5f\x87\x95\x9d\x68\x70\x71\x4d\x08\xd9\xdc\xc0\xe3\x94\x0b\x69\xe9\x51\x58\x4b\xc0\xee\x0a\x44\x1f\x90\xb5\x81\xbc\x6a\x39\x4a\xd2\x43\x9c\x9b\xd9\x22\x5b\x52\x7d\x6d\xf4\xa7\x7c\xa2\xb0\xbf\x5b\xb9\xa6\xc4\x41\xe3\xf3\x8c\x8b\xb7\x6c\xaa\x9b\x2e\x4f\x84\x2c\x11\x7b\xb9\x6f\x4d\xa7\x84\x17\x87\x8b\x65\xcc\xac\xd9\x9b\xaa\xac\xac\x72\x7b\xdd\xfb\x45\x36\xaf\xf5\xb5\xe5\x1a\xa8\x62\x76\x5b\xa2\x05\xb3\xb9\x66\x4d\x60\xf2\x86\x76\x23\xb4\xe6\x07\x61\xdc\xeb\xe2\x8e\xda\x8c\x08\xdc\xda\x8d\xd8\x38\xae\xd0\x92\x8f\xa6\xb5\xfc\x45\x56\x1c\xb3\x8a\xdb\xbd\x11\x9f\x07\x55\xa2\x74\x99\x7a\xcf\xe3\x36\x8c\x37\xc4\x96\x26\x3c\xed\xa5\x77\x51\xc4\xab\x4d\x38\x55\x23\xa6\x4f\xe1\x18\x76\xfc\x11\xa8\x3d\x7d\xb6\x20\xe7\x6a\xc1\xf5\xd1\xab\x5c\x30\xa5\xba\xb1\x31\x0e\xb8\xef\x5d\x04\xbd\xf3\x4a\xef\xb9\x66\x26\xc2\xde\x79\xd0\x7b\x1e\x1d\x5d\x51\xd5\x70\x2a\x4c\xf2\x78\x4c\xf1\x41\xab\x8e\x45\x0f\xa0\xc3\xa2\x36\xa5\x73\xc8\x61\x98\xc8\xb8\x7d\x30\x4b\xaf\xd0\x13\x95\xf6\x1d\x1d\xc9\x0b\x15\xb4\x13\x64\xc1\x35\xfb\x07\xd3\x8b\x9b\x12\xec\x12\x8e\x6a\x2b\xac\x40\x9b\xae\x14\xa8\x45\x23\xb0\x64\xa1\x6b\x50\x43\x4d\x5d\x00\x59\x61\x1c\x79\xde\x7e\xb1\x56\xb0\x41\x74\x16\x3a\x66\xe9\xe0\xe2\x41\x0a\x1b\xfa\x25\xf3\xf2\xd7\xc6\x03\xaf\x47\xdc\x72\x2a\x7d\x4d\xa2\x68\xeb\xf1\x87\x53\x1b\x61\x00\xdd\x62\x70\x62\x87\xcc\xc7\x1b\xc1\x69\x49\xb3\xdf\x8f\x1d\xac\x47\xac\xff\xd0\x1c\x8a\xc1\x98\x26\xe6\x67\x42\xf4\xeb\x97\x72\x25\x18\xdd\x1f\xd3\x04\x7e\x99\x97\x8f\x73\xc1\xe8\xc1\x98\x26\xfa\x47\xb2\xc1\xe8\x72\xbd\x46\x97\xf4\x7a\x83\xcd\xbd\xfc\x4b\xfb\x02\x5a\xf0\x72\x69\x1d\x04\x55\xe5\x44\x3b\x95\xd5\xb5\xa9\x82\x24\xa9\xac\xa4\xa8\x2e\x7e\x39\x7f\xf3\x65\xb2\x92\x92\x09\x45\x85\xdb\xd7\x86\x95\x2f\xae\x44\x2c\xc7\xf6\xc6\xea\x97\x76\x2d\xee\xdf\xc7\x4e\x45\x66\x75\x63\xee\x4b\x6a\xb7\x48\xaf\xb5\x79\x83\x6c\x34\xd5\x8e\x2d\x07\x8b\x15\x16\x83\x17\xd5\x52\x7a\xf9\xd2\xd0\x29\xc4\x17\xd7\x5f\x10\xde\x54\xf0\xd6\xf4\x9d\x26\xdf\x4e\xf2\x6f\x59\x6c\xe3\xe9\xc6\x6e\x31\x98\x9d\xbe\xc3\x62\x25\x20\x09\xaa\xee\x8b\x5e\x0f\x68\x88\x1d\x4a\xd9\x7d\x2c\xec\x95\x38\x20\x9a\xba\xf6\xe7\x47\x58\xe8\xf5\x0b\xd9\xeb\x45\x5f\xeb\x87\xf3\x61\x05\xa7\x36\x5e\x30\xe4\xe6\x01\x32\x07\xc0\x7c\x66\x13\x19\x50\x11\x71\x1b\x85\xca\xa4\x5f\x4d\x43\x04\xc2\x7c\x22\x9c\xaf\x29\x25\x4a\xf9\xd0\xaf\xe7\x2b\xc0\x61\x48\xe0\x54\xea\x3b\x0a\x71\x5c\x7e\x7b\x0e\xe9\x33\xac\x6d\xad\x7e\xf1\x14\xd0\x9a\xa6\x9e\xdc\x86\xd7\xe7\x6b\x1a\x6c\xbb\x43\xca\x19\xc9\x68\xc6\xf7\x91\xa4\x12\x5b\xaa\xc8\x67\x9e\x74\xab\x1c\x20\x30\x19\x1d\x01\x8b\x82\x11\x60\x46\x47\x40\x12\x43\xf0\x35\xec\xc5\xf3\x2a\xd6\xbd\x25\x6c\x94\x1d\x02\x2b\xa5\xfb\xca\x8d\x3f\x8c\xe9\x19\x77\xf2\x60\xe8\xd2\xdd\xc5\xf6\xe3\x10\x49\xb8\x4f\xcc\x45\x23\xec\x6f\xd3\x8a\x1d\x71\x6e\xc8\x3e\x35\x84\x1d\x02\x74\x84\xed\xba\x87\xb0\x8d\xaa\xbc\x59\xb9\x29\xb7\x5e\xf0\x12\xbf\x84\xb3\xe6\x54\x55\x2f\x2d\x81\x3b\xee\x22\x43\xdc\x12\xd7\x66\xb4\x86\xae\x26\x62\x28\xca\xd1\xc6\xe3\x2a\x61\xb1\xed\x72\xf1\x5b\x1b\x0d\xd2\xa2\x25\x62\xf1\x44\x7d\xb2\xb5\x36\x5b\xee\x85\x70\xaa\x31\xa4\x05\xe7\x47\x96\x21\xe7\x34\x5a\x71\x72\xfb\x4e\xd3\x38\x59\x78\xca\x89\x88\x28\x72\x84\x87\xa8\x4c\x37\xa3\x59\x09\x73\x73\x23\x58\x1f\x8c\x53\x61\xc8\xf0\x6d\x13\x83\x9b\xa3\x4a\xa6\x5b\x20\x9f\x1a\x9c\x67\x14\x62\x35\x1d\xe4\x5b\x52\x2a\x28\x1b\x2d\x23\x34\xa1\x4d\xe9\x4c\xf7\xe9\x75\x9a\x8f\x48\xa3\xd6\xb3\x51\xfb\x4d\x59\xa0\xdd\x56\xb1\x76\xdb\xe4\x88\x54\x23\x39\x0e\xe5\xb5\x8d\x6a\xd6\x57\xa4\x49\x23\xfb\x9c\xb4\xa8\x6f\x7f\x21\x81\x8a\x77\x40\x4a\xcd\xef\x9c\x04\x0a\xe1\xa3\xec\x88\xc4\xda\xe2\x09\x89\x54\xc9\xe7\xa4\xa2\x68\x9e\x91\x8a\x22\x7a\x41\x62\x3d\xf5\x15\xa9\xa8\xb1\x4f\x49\x55\xcf\x5d\x3b\x6b\x36\xc9\xee\x68\x6c\x73\x00\x0f\x40\x8a\x63\x57\x4a\x3d\x90\xf7\xd5\xee\x2e\x70\xe1\x48\x50\x36\x52\x63\xbd\x27\x98\x52\xba\x70\x10\xb8\xe8\x88\x1d\x4a\x67\xbd\x1e\x37\x4a\x42\xe1\xaf\xe6\xcc\x1e\xfa\x48\xf1\xde\x78\xc7\x11\x09\x16\xcf\x94\xd9\x53\x74\xdf\x9a\x73\x88\xfb\xa6\x6b\x65\xe4\x87\x95\x7e\x95\xe9\x57\xba\xdc\xa3\xfe\xaa\x71\x37\x9a\x1f\x87\x0c\xc7\xf1\xdb\xd7\xe0\x3d\xe7\x5f\x9a\x23\xbc\x23\x15\x5b\x85\x43\x52\x37\x67\x78\x41\x8c\xa1\x43\xa3\xb6\x15\x8c\xf2\x3d\x5d\x5e\x31\x90\x38\x26\x91\x01\x45\xd3\x91\xda\xa1\xf4\xe5\xa6\x6a\xea\x67\x8d\xac\xb7\x18\xfa\x91\x46\xc3\xc0\xf2\xe5\x05\x97\x0c\x22\x7f\x64\x55\x37\x33\x63\xe7\xd9\x6c\x18\xc8\xff\x34\xea\xf9\x03\x18\xf5\x84\x76\x71\x1f\xd1\x42\x2c\xfb\xa8\xad\x17\xff\xb6\xd2\xc8\x3f\x4d\xe4\xfe\x98\xa7\x69\xfe\xe7\x76\xff\x91\xb6\x7b\xf2\x51\xd1\xdb\xf4\xa3\xb6\xbe\xfc\xf7\x47\x9e\xe7\x7f\x9e\xa6\x3f\xd2\x69\x9a\xfd\xfb\x43\xe4\xe2\x4f\x88\xfc\x23\x41\xe4\xd5\x47\xc5\xc0\x67\x11\xaf\x1b\x70\xba\xf7\xd5\x83\x92\xd3\xdd\xdd\xc5\x10\xf9\x10\x49\xc3\xea\x3b\xcb\x19\x0f\x6c\x32\xb0\x7e\x95\xbd\x9e\x30\x1c\xaf\xf4\x02\x14\x13\xc0\xc2\x06\x3a\x80\xf4\x41\x2e\x43\x6c\x37\x1c\xcd\xe9\x47\x9d\xeb\xbb\x7f\xff\xb3\xfd\xe6\xcf\xb3\xfd\x47\x3a\xdb\x17\x1f\x15\xde\x0f\x4d\xeb\x4e\x98\x06\x62\x4f\x1b\x2f\xdf\xb9\x94\x62\x10\xfe\x83\x31\x2f\xc8\xc6\x30\xc9\xa9\xf1\x6f\xb5\x8f\x19\xe5\xf7\x33\x23\x6c\x93\x34\x0b\x5d\x65\xab\x2a\xe7\x8c\x28\x5d\x9c\x52\x1f\x92\x4c\x76\xb2\x52\x11\x0a\xea\x48\x3f\xb4\xcb\xaa\x94\xaf\x3e\x30\x51\x19\x18\x8f\x07\x96\x53\x71\x3f\x37\x03\x53\x34\x8f\x06\xe6\xf4\xd6\x26\x5c\x65\xae\xcb\x06\x01\x96\x54\x27\x2f\xed\xec\xe2\x51\xbd\xf8\xf7\x47\x10\x0f\xff\x44\x10\x7f\x24\x04\x71\xfc\x51\x11\xc4\xcb\x52\x00\x5c\x8b\x63\xca\x3c\x2c\xb1\x5e\x8f\x8d\x7e\x51\xe3\xb2\xde\xdb\x7f\xff\x73\xf2\xe8\xcf\x73\xf2\x47\x3a\x27\xaf\x3e\xea\x39\x79\x7e\xdb\x73\xd2\x10\x21\x8b\xf5\x55\xfe\xcd\xc9\xf3\x67\x65\x6b\xbf\xdc\xba\x35\x9b\x17\x23\x68\xcb\xc5\x6d\x2b\x5b\x3b\x09\x5a\xab\x06\x6b\x0f\x8a\x3d\x76\x81\x35\xf8\x0c\x9d\x20\xe1\x2d\xaf\x1f\x3b\x1d\xb9\xfd\xde\xe1\x33\xf4\x3c\xf8\xfe\xb4\xe1\xfb\x2f\xc1\xf7\x27\xd5\xef\xb0\xda\x60\x34\xb9\x12\x92\x65\x93\x73\xbd\xb9\x18\x05\xab\x79\xd4\x32\x94\xa3\xdf\xbf\xab\xa7\xff\xfe\x88\xea\xc9\x9f\x88\xea\x8f\x84\xa8\x9e\x7d\x54\x44\xf5\xcf\x5a\x76\x5b\xca\xd6\xeb\x72\xbc\xeb\x75\x03\x90\x31\x1f\xfd\xac\x6c\xe8\x9b\xa0\x21\xdd\xe8\x30\x49\x52\x53\x06\xb1\xa0\xbf\xaf\x1a\x8a\x69\x84\x34\x64\xe9\x73\xf8\x63\x91\x1f\xc2\xe9\x2f\xe6\x75\x43\x23\xbf\x6e\x6f\x64\xbd\x6e\xaf\xfa\xda\xac\xa6\x86\xcb\x7c\xce\xfa\x5c\xcc\x72\x94\xbc\x2e\x58\xf7\x1f\x36\x7f\xf3\x3f\x48\x37\x13\xd3\xee\x3f\xce\x98\x42\x0f\x96\x99\x3a\xff\x12\xff\xa3\xab\xf2\xee\x94\x9d\xae\xce\xc0\x1a\xa6\xab\xd8\x62\x39\xcf\x14\xeb\x27\x98\x28\x83\x0b\xc2\x25\xfd\xfe\xa3\x6e\xd8\x0f\x1f\xb5\xf5\x9f\xfe\xc4\x2d\x7f\x24\xdc\xf2\xed\x47\x05\xa6\xaf\x3f\x6a\xeb\x9f\xc4\xb1\x10\xd9\x68\x7f\xac\x39\xfe\xd1\xc1\x18\x52\x99\xdc\x1d\x77\xbe\x43\x9c\x48\x4c\xf2\xa1\xec\x4f\xaf\x44\xb6\xe0\x93\x87\x4a\xc9\xa3\x63\x24\x48\xae\x77\x32\x7a\x8d\x04\x51\x41\xeb\xdf\x99\xb1\x47\x41\x4f\x35\x52\xb9\x92\xe0\x44\xc8\xe7\xc6\xa2\x3d\xd5\x10\xc9\x17\x5c\x71\x30\x56\x2f\xeb\xff\x3d\x00\x8f\x8e\xa1\x26\x9c\x60\x33\x80\x04\x16\x42\xc2\x77\x88\x69\x48\x50\xb8\x4c\x38\x62\x93\x05\xf8\x56\x7f\xfc\xad\xd1\x04\xf4\x82\xbf\x93\x44\xd5\xeb\xef\x37\xd6\xdf\x0f\xeb\xef\x9b\xfa\x17\xb2\x1c\x60\x36\x9d\xa2\x84\xcf\x92\x9a\x9d\x0e\xe1\x96\x88\x5a\xaf\xf7\x35\x6d\xea\xa2\x08\x95\xfb\xee\x70\xc6\x4f\x47\x27\x0f\x7f\xec\x1e\xbe\x7a\xf5\xe2\x55\xda\xfd\x2f\x3e\x73\xa1\x48\xf5\xbe\x17\x5c\x9c\xcd\x59\xd7\x0d\x21\xc1\x1d\x6e\xac\x2a\x9f\x65\xa7\x6c\x5e\x20\x4c\x8c\xa5\xd4\x13\x99\x2d\x40\xe2\xd3\x37\x23\x3b\xc9\x51\x72\x78\xf4\x38\xc1\xe4\x3b\x13\x7c\x88\xeb\x6f\x10\x5c\x3a\x61\xe2\x1d\x97\xb9\x30\xed\x11\xde\x67\x42\x31\x89\xf6\xf5\xcf\x5f\x56\x8b\xe5\x6b\x31\x67\x45\x81\x92\xc3\x67\xc7\x87\xf0\x9d\x8b\x77\xf9\x5b\x76\x0c\xc1\xc8\x91\xc4\x44\x0c\x91\x29\x89\x92\xc3\x1f\x9f\x9e\x40\x99\xb9\x1e\x4e\x5b\x1d\x11\x96\x70\x35\xd8\x25\x57\xc1\x80\x11\xc6\x29\xaa\xb7\x53\x2f\x15\x34\x05\xf3\xe3\xfd\x65\xbe\x2c\xa7\x5f\xa8\x7c\xe9\xd6\x06\x02\x3b\xc1\x06\xad\x60\x4e\xbf\xdf\x26\x99\xf6\xfe\x87\x37\xea\xe9\xec\x7f\xd7\x26\x5d\x70\x75\xfe\xfb\x6d\x91\x6e\xed\xe3\x6d\xd0\x74\xb5\x44\x37\x6d\xd4\xc1\x2d\x4f\x14\xd9\xff\x8f\xdc\x2e\xcd\x3d\xb6\x6c\xd7\x7b\x2e\xac\x66\xfa\xde\xb2\x2b\x48\x28\x30\x1a\x8c\x35\xce\xfe\x0e\xa9\xd1\xfe\xd8\x2c\x77\xca\x83\x2b\xc6\xc4\xc2\x09\xb7\x22\x58\xec\xe5\x4a\x39\x23\x62\xd4\xba\xf8\x6d\x63\x79\x7a\x72\xf8\x2a\x71\x7b\xfb\x0d\xeb\xcf\x96\x64\xdf\xb7\xff\x8c\xeb\x7d\xfe\xea\xc5\xe3\x9f\xc2\xad\xf1\x55\x9c\x7f\x4d\xf2\xd5\xab\xc3\x87\xdf\x86\x45\x7c\x95\xca\x9e\x1f\xd8\x55\x36\x03\xaf\x6d\x49\xd0\x80\x6f\x51\x17\x82\x71\x54\x36\xe8\x3f\x10\x76\xf6\xb8\xd8\x63\x46\x6d\xd1\x0c\x42\x10\xb5\x83\x64\x9d\x0f\x39\xf9\x41\xe3\x37\x20\x80\x19\xfa\x00\x50\xd5\x20\xea\x43\x02\xf2\x19\xca\x01\x68\x49\x46\x35\xc4\x12\x3d\x52\x47\xde\xae\xd7\x49\xa0\x63\x49\xf4\x97\xd1\x60\xfc\x5e\xe3\x9f\xe6\xcc\x64\xb0\x53\xd9\x5b\xd6\xcd\xba\xff\x48\x76\x75\x1b\xbb\xc9\x3f\xba\xf9\xd2\x10\x84\x9d\xef\x20\x23\x9c\xa6\x6e\x21\x74\xf4\x77\x70\x46\x08\xd7\x1f\xda\x10\x56\x01\x69\xcf\x02\x5c\x75\x77\xeb\x71\x79\xc5\x16\x79\x19\x53\xb5\xe9\xba\x81\x5d\xaf\x17\xbb\x11\x7c\x3e\x0c\x7a\x34\x6e\xdf\xb3\xa4\xeb\xde\xbb\x4c\xb6\xdc\xec\x26\x3d\x84\x1a\xba\x2d\xfa\x3b\x20\x15\xb3\x1e\x7a\x5a\x8f\x4d\x0b\xc7\x93\x7c\x69\xba\x3b\xe5\x62\x1a\xbd\xcc\x5b\xe7\x1a\xd7\xd5\x38\xaa\x52\x6c\x83\xc9\xf5\xe9\x3c\x9f\xbc\x2d\x52\x46\xb8\x98\x73\xc1\x8a\x54\x05\x31\x1e\xff\x66\x08\xe4\x69\x4c\x4f\x97\xdf\x19\xab\x33\x58\x40\xdc\x67\x94\x8d\xee\x8d\xdb\xd8\x29\x9b\x3f\x30\x07\x5f\x0c\x3e\x43\xf6\x79\x74\x29\xfb\x4f\xe6\xab\xe2\xdc\x6e\xcf\x18\x93\x0c\x72\x34\x0b\x9a\x41\xca\x5f\x66\xd2\xa3\x71\x3a\xb8\xcf\x1f\x38\xbb\x83\xfb\xbc\x6c\x51\x8c\xf8\x18\x77\x82\xe6\x1e\xcd\xf3\x82\xf9\xe6\xca\x81\x2b\x56\xa6\xf5\xb7\xd1\x77\x4c\xa5\xb9\xd4\x97\x6e\x50\x9f\x33\xa1\x8e\xf9\x14\x16\xcd\xa4\xd1\xf8\x5a\xf5\x5f\x2c\x99\x78\x94\x2f\x96\xb9\x08\xd2\x6b\xb0\xb1\xdb\xb4\x6d\x55\x1f\xf3\xe9\xa3\x30\xfc\x6f\x5c\xe9\x27\xce\xe6\x53\xcd\xf8\xf4\x0f\x9f\xbf\x3c\xf9\xe9\xcd\xc3\x57\xaf\x1e\xfe\xe4\x8b\xd8\xf8\x5c\x9c\x88\x60\x2a\xd6\x6d\xd7\x8a\x5a\xf6\x0c\x1a\x72\x39\x45\xc2\xcd\x12\x51\x41\x54\x0a\x92\x24\x43\x2f\x25\x61\x9a\x6f\x95\x0c\x3d\x92\xd1\x16\x73\x16\xfb\x23\x78\x31\x36\x92\x0c\xbd\xd5\xd5\xa0\xd6\x2b\x59\xb1\xfd\xae\x54\x33\x8f\xeb\x35\xaf\x82\x50\xc6\x4a\xaf\x01\x9b\xc6\xd4\x78\xe2\x06\xce\x83\x81\xac\xcb\x3b\x12\x8a\xaa\x48\x5b\x78\xa1\x54\x27\xa7\x6a\x08\x81\x58\x34\x5f\xdf\x57\xf9\xeb\xe5\x92\xc9\x47\x59\xc1\x90\xf1\x9f\xb5\x51\x6c\xbe\x41\x41\xe8\x26\x13\x3e\x1a\xb2\xfc\x59\xe9\xc6\x24\x9f\x3f\xc9\xe5\xeb\x57\xcf\x50\x86\x89\x64\xe8\x58\x12\x8e\xf1\x30\x59\x89\x22\x9b\xb1\x34\xd9\xcd\x52\x6e\x6a\x45\xef\xb2\xc0\x88\x3c\x3e\x1e\x36\x06\x23\xe1\x2e\x18\xa3\x53\x5d\x77\xb9\xe8\xb2\x21\xe2\x54\x11\x41\x93\xa5\xcc\x97\x09\x4e\x11\xb8\xd8\xe6\xcf\xf2\x0b\x37\x76\x6c\x8a\xb9\x22\x84\x9b\x0c\x02\x34\xc9\x94\x92\xfa\x51\x61\x62\x3e\xed\xc0\xa2\x25\x90\x79\x45\x3f\xf0\xb8\xa1\x5e\x6f\xa7\x41\x40\x42\x9f\xcb\x51\x65\xb5\xbc\x17\xbe\xec\xf5\xe4\xa8\x32\x9c\xf1\x7a\xbd\xb3\xbf\x41\xcc\x2d\x34\xe1\x26\x53\x96\x19\x0e\x26\xd7\x22\x97\x8b\x0c\x62\xa3\xa4\xdc\xe4\x45\x14\x01\x6e\x59\xb1\x8f\x2a\x79\x98\xb3\x7f\x7f\x25\xc1\x84\xfd\x29\xc9\xfb\x23\x49\xf2\xa6\xac\x81\x7e\xa4\xaa\x7f\x0a\xa6\x36\xbb\x62\x57\xf5\xb3\x99\x62\x12\xbc\x59\x5d\x16\xdb\x0c\xb0\x55\x41\x25\x4c\x29\xa7\x83\xfb\xf9\x03\xdd\xe1\x52\x9d\xdf\xcf\x77\x77\x71\x41\x8b\x20\x95\xea\x68\x30\xb6\x29\x69\x1e\x32\x54\x10\x7d\x28\xc9\x9c\xae\x34\x69\x31\xa1\xab\xd1\xfe\x38\x8c\x54\x79\xa8\x10\x23\x73\x32\x09\x4d\xb7\x59\xe9\x95\xcb\xaa\x29\x65\x61\x73\x6d\x12\x79\x15\x25\xda\x55\xa7\xf9\xf4\xea\xcb\x07\x77\xcc\xdf\xa4\xcc\x1f\xbf\x99\x71\x91\xcd\xe7\x57\x1a\xc6\x07\x90\x64\xb9\x96\x72\xd7\x22\xf0\x9d\x7d\x6b\xbd\xb3\x33\x08\xcc\xb4\x3f\x2e\x92\x98\xfd\x07\x20\x89\xc5\x9f\x48\xe2\x0f\x85\x24\xae\x02\x82\x28\x3e\x64\xc5\xbb\xb3\x2f\x93\x5d\xb9\x9b\x3c\xb8\x03\x3f\x6d\xe8\x84\x87\x0c\xa9\x30\xbd\x05\x23\x02\x93\x9c\x72\xc3\xf1\xf1\xa6\x33\x9f\x93\x2c\x34\x16\x0e\xc9\x94\xea\xa9\x3f\x3a\x46\x8a\x24\xc5\xbb\x33\x7b\xee\x9d\xa3\xfd\xc3\xe9\x2f\xd9\x84\x09\x48\xf6\x81\x12\x83\xc1\x20\xe2\x48\xf2\x60\xc2\xe5\x64\xce\xbe\x7c\x70\xc7\xfe\x48\x70\x03\x3e\xb0\x43\xd2\xe4\xaa\xac\xe3\x84\xf5\x3a\x39\x57\x6a\x99\xde\xb9\x73\x71\x71\xd1\xbf\xb8\xdb\xcf\xe5\xd9\x9d\x83\xc1\x60\xa0\x67\x9e\x40\x9d\x72\xc6\x7d\xa1\xf7\x73\x99\x4d\xd8\xeb\x57\x4f\x03\x0a\xe3\xf4\xe3\x22\x8f\x77\xff\x01\xc8\xe3\xcd\x9f\xc8\xe3\x0f\x85\x3c\x2e\xb6\x5d\xdf\x53\xfe\xae\xcc\x57\x19\xa1\x16\x38\x4b\x09\x51\x37\x9e\x6d\x13\x0c\x38\xc1\xe4\xa0\xf9\x2e\x0f\xac\x94\xff\x03\x4e\xc7\xe5\x9f\xa7\xe3\x0f\x75\x3a\x5e\x7c\xdc\x0b\xe1\x21\x73\xda\x6e\x67\x02\xef\x8d\xdd\xcd\xcd\xcc\x4d\xbc\x3d\x6b\xe3\xce\x69\x4e\xf2\x8a\x8d\x7b\x25\xb4\x0d\x27\xde\xd7\x66\x24\x08\x0f\x6c\x75\x8f\xab\x62\x13\xaa\x48\x4e\x19\xc9\xa8\x24\x05\xcd\x86\x59\x2d\xbf\x15\x0f\x12\x6c\xad\x9c\x04\x22\x12\xb2\x24\x49\x24\x60\x31\xc4\x02\x37\x49\x53\x4d\xd2\x00\x5b\x36\x1b\x22\x7e\x13\xaa\x10\x98\xac\x68\xd0\x27\x4e\xb3\x70\xc1\x75\x79\x8b\x98\x86\x28\xdb\xd2\xd8\x29\x3b\xe3\xc2\x36\x57\x9b\x14\xc8\xff\x2b\x11\xf2\x32\x4c\xf2\x5b\xb6\x97\x57\xdb\x03\xa9\x6f\xe8\x63\x80\x6d\xc2\x8c\x62\x58\x44\xf9\xc4\x78\xb0\xad\x9d\xea\x82\xcd\xc9\x2a\xb4\xc6\xfe\x0f\x40\x84\x6f\xff\x44\x84\x7f\x28\x44\xf8\xe8\xe3\x22\xc2\x57\x15\x86\xc2\x0a\x08\x35\xb6\x61\x11\xb1\x4e\x29\x3d\xf1\xa1\xad\x7e\x61\x48\x96\x39\x29\xac\xec\x54\xe3\x4c\x48\xba\xa2\xb1\x66\xbf\x94\x28\x5a\x90\x37\xb2\x46\x88\x13\x07\xd5\x73\x9c\x3e\x37\x7f\x03\x33\xef\x58\x14\x6d\x25\xd3\x90\x73\xf7\x5b\x89\x6a\x3b\x6b\xc5\xe3\xc9\xd3\xa3\x97\xaf\x4f\x12\x6b\x5e\x79\x72\xf8\xe3\xc9\xc3\x57\x87\x0f\xe1\x19\xf7\x7a\x09\xc0\x1d\x68\x83\xcd\xe2\x0e\xbf\x96\x8d\xed\x24\x2f\x5e\x9e\x3c\x7d\x71\x04\xf5\x7a\xbd\xa4\x60\x73\x36\x51\x90\xdf\xd6\xd7\xfc\x44\x82\xc5\xce\x4f\x32\x92\xd6\xff\xd2\x3e\xea\xef\x60\xd4\xfa\xd7\x0f\x71\x9d\x13\x76\x83\xa1\x68\x60\x38\xfe\x71\x21\xe0\xe8\x3f\x00\xe9\x3d\xfd\x13\xe9\xfd\xa1\x90\xde\x93\x8f\x0b\xf2\xcf\x3e\x6e\xf3\xff\xfc\x28\xcd\xb3\x4a\x76\x53\xca\xfa\x96\x2a\x3b\x56\xd9\xe4\x2d\x6d\x48\xe9\xca\xfa\xbc\xf8\xe1\x9c\x2b\x83\xc4\x29\x6b\x4a\x3c\x4a\x59\xff\xe9\xe3\x17\xcf\x1f\x9d\x67\xe2\x8c\x15\xa6\x4c\xf9\xc0\x0b\xaf\x3b\x7d\xac\x77\x8e\xdb\x2a\xcd\x6f\x5f\x66\x52\x63\x84\xe8\xdd\x61\x69\xcc\x44\x59\x1f\x14\xdc\xd0\xee\x71\x36\x63\xc6\x9e\x1c\x72\xaa\x89\x29\x93\xaf\x58\xb1\x9a\x2b\x97\x33\x8e\x8b\xb3\xef\x9f\x9b\x64\x70\x4b\x3e\x67\x87\xfe\xf4\x96\xef\x9e\x71\x48\x9f\xf6\x14\xd4\xe1\xcf\xb3\x89\xcc\xf5\x98\xbf\x9a\xe7\x93\xb7\xfe\xe9\x8c\x29\xab\x5c\xff\x3e\x93\xd4\x86\x2e\x7f\xcc\x4e\x57\x67\x67\x4c\x3e\x72\x69\xbc\x21\x57\x6b\xc3\x5b\x7f\x8b\x9d\xb0\x4b\x9f\x7d\x00\x4c\xd7\x5d\xae\xba\x57\x90\x6b\x9b\x99\xa6\xb3\xe9\xe3\x17\xcf\x1f\x2a\x25\xa1\x14\x64\x66\x74\xa0\xfe\x3c\x13\xd9\x19\x93\x45\xf9\xc5\xa7\x86\xad\x7f\x0a\xde\xc0\xdd\xf6\xe6\xfb\x87\xcf\x5e\x1f\xbe\x79\xf9\xea\xc5\xcb\xc3\x57\x27\x3f\xbd\x79\xfe\xf0\xe8\xe1\xd7\x87\xaf\xf4\x92\xc7\xcd\x53\xd6\xaf\x36\xab\xdb\x68\x78\xf7\xc8\x2c\xa1\x33\x50\x38\xb1\x36\xf8\xc1\x17\x63\x7b\x10\x7c\x70\xab\x9e\x5d\xe5\x2b\xbd\xee\x2f\x96\x93\x7c\xca\xbe\x5a\xf1\xf9\x94\xc9\xc7\xc7\xcf\x4c\x26\xbb\x29\xec\x7c\x36\x0f\x93\x00\xbe\x74\x06\x57\x51\x66\xc0\xa3\xc7\x87\x4f\x9e\x1e\x1d\x3e\x7e\xf3\xea\xf0\xc9\xe1\xab\xc3\xa3\x47\x87\x94\xf5\x8f\x5e\x3f\x7b\x16\xbd\x70\xde\x01\x4f\x32\x8d\x51\xaf\x34\x10\x81\xb9\x49\x98\x26\xef\x1b\x56\x8f\xb0\xbc\x9c\x40\x74\xe5\xe5\xc4\x04\x51\x96\x19\x84\x55\x96\x99\x79\x9c\x2d\x21\xa2\xf2\x6c\x69\x1e\x8b\x25\xbd\x3b\xa6\x49\xe1\x1e\x07\xf4\x9e\x7e\x1c\xd8\xc7\x7d\xfa\x99\x7e\xdc\x37\x8f\x6a\x40\x3f\x1f\xd3\x44\xd9\xaf\x6a\x9f\x7e\xa1\x1f\xf7\x93\x0d\x46\xdf\xb0\xf5\x1a\x05\x50\xf1\x0d\x2b\xe3\x34\x7f\xc5\xa8\x60\x17\x61\x1e\xb7\xd2\x3a\x03\xe1\xeb\x3c\x0e\xc7\xcc\xf4\xd5\x91\x29\x66\x56\xd9\x44\xc1\x9f\xf1\xf9\xfc\x68\x35\x9f\x17\x18\x7d\x71\x80\xfb\x85\x86\xc1\xe6\x78\xcb\xd9\x74\x5a\x89\x52\xd8\xd0\xe8\x88\x8d\xa9\x8a\xa3\x86\xba\x02\xb5\x6c\xc6\x2e\x79\x4b\xa5\x05\x39\xc6\xc6\x4a\x00\xe2\x88\x62\xf2\x2b\x6b\xcf\x65\x96\x47\xd9\x24\xe4\x7f\x4e\x36\x89\xed\xb9\xd6\x4c\xa8\x66\x23\x2f\x30\xb9\xaa\xed\x6f\xb7\x2f\xdc\xe6\x82\xd8\xdc\x62\xeb\x61\x9b\xcb\x54\x25\x5f\xaf\xf8\xd4\x24\x00\x69\xdc\x65\x95\xff\xed\xf8\xc5\x51\x3d\x1a\xee\xf5\xd9\x8a\x4f\x4d\xa4\xdf\x37\xfa\xa7\x51\xe9\x9b\xe8\xaf\x57\x4b\xb6\x71\xbb\xf5\xba\x75\xb7\xca\xb4\x65\x99\xdb\x35\x52\x34\x64\xd7\x28\x13\x92\xaf\x6e\x4e\x6b\x55\x92\x04\xc3\x9f\x58\xea\xa8\xde\xe1\xb7\x9a\xee\x81\x5f\x5f\x6b\xea\x08\x7e\x7d\xc2\xd2\xba\xf3\x25\x90\xd4\x3f\x68\xca\x19\x48\xea\xef\x4d\xe4\x79\xd5\x96\xdf\xc0\xf7\xfb\x13\x83\x14\x14\xb2\x12\xe4\x16\x93\xef\xb7\x40\x6b\x56\x81\xd6\xe2\xb6\xd0\x60\x88\xa8\x12\xd3\xc5\xc0\xd0\x90\x18\x24\x1a\xb4\x77\x72\xb0\x4c\x89\x69\x0d\x98\x90\xa1\x13\x00\xf9\x0c\x54\x71\x4f\xb8\xd7\x6b\xf9\x42\xed\xc2\x95\xe9\x5f\x9c\x42\x17\x13\x89\xd3\x4a\x86\x88\x28\xe1\x3c\xac\xdc\x6b\x86\xc9\x0f\x1f\x01\x56\x4c\xcb\x3f\xf9\xf1\x19\x00\xc1\xe4\x5b\xff\xc6\x18\xe8\x7e\xed\x9f\x77\x06\x98\x7c\x52\x3e\xed\x63\xf2\x1d\x6b\x0f\x7f\x9f\xdd\x90\x3b\x07\x2c\x8f\xde\x3b\x7f\x8e\xca\xbf\xca\xf3\x79\xb8\x98\x65\x1e\xab\xf8\x74\xea\x72\x8d\x09\x3a\x6c\xc6\x55\xf2\xf7\xd6\x45\x15\xff\x9a\xb4\x42\xff\xc1\xa9\x7d\xc2\x1c\x3e\x4b\x08\x34\x2d\x08\x87\x6d\x45\x03\x22\xe3\xe0\xca\x38\x4a\xce\x33\xbf\x7d\x26\x33\x48\x3c\x08\x91\x7d\xa5\xcc\xae\x82\x9c\x83\xb0\xfb\xd0\x6d\x98\x7c\xd0\xf2\xa1\xc8\xc6\x0a\x87\xef\x41\x36\x42\x1c\x38\x05\x69\x26\x4f\xea\x1b\xb8\x0e\x1f\x5b\x5d\x44\x63\x47\x50\xa4\xea\xa8\xe7\xcb\xc1\x50\xda\xd8\x4e\x89\xcb\x42\x61\xd0\x5f\x1c\xce\x18\x77\xbe\x32\x26\xb0\xfb\xa4\xc9\xc6\x4c\xf5\xf3\xe5\x3e\x04\x81\x29\x34\x83\x01\xe1\x5f\x80\xb7\xcd\x84\x2a\x34\x9e\x78\xe2\x2a\x49\x08\x06\x03\xf6\xe7\x10\xaf\x06\x31\x92\xe3\x4e\xde\x9f\xcc\x59\x26\x11\x26\xb6\x05\x63\x3b\x99\xe1\x0d\x26\xb6\xe3\x83\x1b\x3a\x6e\xeb\xae\x13\xb5\x28\x20\x37\xa2\x6f\xf4\xb3\x1b\x1a\x95\x41\xce\xa6\xe3\xab\xc5\x69\x3e\xaf\xb7\x18\x34\x77\xef\x36\x8b\x63\xe6\xae\x1b\x31\x16\xbc\x60\xfb\xeb\x1a\x27\x61\x73\x5f\x0c\xde\x67\xce\x76\xa3\xa5\x09\xbe\xe3\x1a\x3f\x63\xca\xb2\x5a\xcf\xb3\x25\xc2\x23\x31\xee\xf8\xab\x95\x5b\xbb\x48\x5d\x99\xcd\x67\xa6\x34\x12\xb8\xb2\x0b\x3c\x18\xd2\xfe\x5f\xb7\x0e\x49\xff\x3d\xe8\x30\x63\xba\x9d\xe7\xca\x18\x29\x4b\xb2\xb3\x13\xce\xeb\xf3\xdf\x30\xad\x78\x05\x83\x41\xba\xb1\x07\xcb\xb7\xb5\x1b\x39\xac\x74\x04\xbc\x20\x92\xd6\x96\xb4\x75\x8f\xff\xd2\xde\x6a\x5c\x29\xda\x03\xd7\x78\xd0\xd0\xf6\x95\xdc\xd9\x69\xac\x5f\x19\x97\xa6\x82\x3e\x61\xe1\xfe\xdc\x04\x32\x0d\x6d\x12\x4e\x21\xf5\x48\x01\x30\x78\x02\x09\xa6\x96\x99\xcc\x16\x4c\x31\xe9\x50\x56\x65\xb5\xeb\x1d\x37\x22\x86\x32\x48\x9d\x1d\xc3\x7d\xf9\xe5\xe0\xbe\xdc\xdb\xc3\xc2\x2f\x52\xb9\xa3\xd5\xd9\xb1\x8b\xee\xdf\x19\x12\x7d\xc9\xde\x31\x09\xa6\xb2\xd8\x66\xa8\xfe\xb1\xed\x22\x0f\xbb\x6e\x4b\x1a\x80\x04\x85\x7c\x01\xfd\x52\xd0\x46\x45\xf0\xb0\x5e\xef\xec\x13\x11\x89\xa8\xe8\xce\x80\x58\xe1\x30\x17\x5d\xd1\xeb\x21\xd1\x77\x82\x39\xaa\xe9\x8c\x56\x91\x15\xe4\xad\x28\x83\xc9\x97\xb4\x9b\x51\xf2\x95\x86\xb8\x0c\x85\x92\x41\x89\x89\x80\x77\x44\x68\xda\x47\xdf\xff\x7f\x6b\x9b\x33\xbe\x9e\xc4\xb4\x0b\xac\x61\x90\xd5\x72\x99\x17\x96\xd1\x86\xeb\x89\x59\xaa\x46\x64\x0b\x36\x85\x37\xb2\x31\x95\x25\x6b\x4e\x78\x66\x93\xbd\x30\xb5\x5a\x1a\x7f\x0f\x3d\x7f\xfd\xae\x92\x81\x43\x17\x68\xe2\x2b\xcd\xe8\x58\xc7\xa9\x11\x66\x32\x5f\x9c\xe4\x4b\x34\xc0\x90\xe9\xc6\x6c\x94\x89\x74\x66\xbf\x88\xdd\x7d\x9b\xf5\xa6\x9c\x89\x1d\x00\x23\x7c\x57\xec\x1e\x10\x6e\x0b\xc0\x9c\xfc\x37\x41\x64\x2d\xf5\x55\xd6\x9e\xd5\x2c\x68\x3d\x53\xb5\x4c\x55\xdb\xf2\xa1\x99\x6e\x21\x1d\x4b\xa5\xd6\x24\x5b\xaa\x95\x6c\xa0\x0f\xaf\x55\x76\x96\x3a\xea\x92\x98\x59\xa7\x01\x41\x4e\xca\xd1\xa4\xd5\xd1\xd9\x46\x11\x26\xd0\x71\x1a\x8c\xc1\x7f\xaa\x64\x28\x82\xfb\xb5\x25\x6f\x89\xb9\xb3\x55\xc8\x0e\x68\x1c\x9e\x2f\x91\xda\x3d\xc0\x1b\xf2\xa3\x3e\x57\xa3\xeb\xb7\xec\x2a\x4d\x54\x76\x96\x90\x33\xa6\xd2\xda\x84\x9a\x28\xa9\x51\x65\xe4\x01\xe0\x8d\xf5\x08\x4d\x9b\x96\x6f\x69\x6e\xb6\xb6\x35\xa6\xf4\x6e\x30\x67\x6b\xa4\xb2\x19\x63\x43\x29\xc7\x8c\xdd\xb6\x93\x62\x6a\xd2\x41\xf3\xb9\x01\x07\x2d\xf7\xf1\x0d\xe4\xbf\xf5\xdf\xde\x78\xd2\xa0\x68\xcd\x2d\x5c\x3f\x02\x44\xc6\x87\x20\xec\x47\x45\x43\x92\xb7\xeb\x75\x1b\x68\x07\x49\x78\xa0\x07\x12\x31\x7c\xde\x91\xfc\xc1\x60\xbd\x66\x5f\x52\xa9\xf9\xec\x72\x6c\xfe\xf0\xa9\x3d\xb6\xb7\x7f\x5b\xa0\x06\x06\x40\x29\x9f\xfa\xb9\x92\x32\xb7\xb8\x05\x30\x05\x70\xa9\x27\xef\x87\xb9\x5e\xa3\xe0\x75\x23\xdd\x5e\xed\x4c\x83\x83\x83\xb1\xf2\x75\x73\x8f\x65\xd6\xf0\x60\x8d\xc1\x09\x50\x62\x43\xc9\x87\x67\xb3\x5e\xb4\x24\xfc\x21\x79\x94\x09\xc9\x0a\xb1\x58\xe5\x48\x8d\x6d\x7e\x20\x85\xca\x08\x03\xb2\x84\x57\xd5\x06\xaf\x41\x8c\x85\x5a\xd0\x80\x83\xc6\xa0\x01\x07\x61\xd0\x80\x83\x71\xea\xf0\x69\x67\x52\x4d\xe0\x76\xe6\x00\x2e\x98\x83\x8c\x40\x50\x34\x0a\x0b\xdb\x91\x60\xd9\x50\x2d\x37\xe4\x56\x1e\xb9\xac\xd7\x5f\x64\xcb\x20\x69\xe9\x8b\xd9\x0d\x28\xd8\xc5\xa3\xac\x34\xe3\xd3\x34\x86\x80\x1e\x48\x47\xd8\xf0\xb5\xb3\xa2\x43\x02\xa7\x48\xd1\x65\x26\x0b\xf6\x54\x28\xc4\xc8\xfe\x00\x63\x7d\x24\xd4\x97\x54\xe8\x23\xa1\xb7\xaf\x61\x32\x2f\x66\xcd\xb9\x8e\x2c\xf7\x66\x79\x76\xf9\x81\x98\xe8\x86\x63\x6f\xdf\x82\xce\x3d\x2e\x96\xcd\x41\x59\x47\x23\x4f\xb3\x5b\xe1\x26\xeb\xbe\x50\xc7\x4e\xef\x85\x90\x08\x1f\xa2\x68\x70\xdb\x47\x86\x53\x74\xe3\x54\xaa\x39\xed\x9a\x13\x99\x82\x87\x9c\xbf\x13\x0a\xef\x2a\x77\xd3\x2d\x1e\x20\x49\xa8\x18\x23\x49\x60\x69\xca\xa6\x3a\xae\x2f\xc8\x5d\xdd\x8c\x2f\xe5\x5e\x75\xc0\xdb\xb1\xa5\xa8\x62\x4b\x33\x8c\x3a\xe2\x8c\x76\x6f\xce\x27\x4c\x2f\x4f\x33\x10\x1a\x61\xff\xfe\x6f\xba\xba\x6b\x03\x70\x98\x14\xc6\xb7\x15\x6d\x43\x89\x26\xc4\x6d\x76\xb9\xb2\xc1\xe5\xa1\xf7\xb3\x7a\x6f\xcc\xed\x4e\x7c\x15\x77\x8b\x10\x77\xdb\x85\xad\xee\x6f\x15\x8c\x47\x63\x62\x99\x06\xa3\xdc\x1e\x49\x8b\xbe\x81\xbc\x8b\x13\x8d\x79\x14\x2e\xb6\xa0\x70\x4d\xe7\xb7\xa3\x5f\xb3\x26\xb2\x86\x8b\x45\x7c\xfa\xdc\x80\xcd\x70\x17\xd9\xb2\x95\xea\xf8\xd7\x9c\x8f\x18\xdb\x6e\x3b\x23\x72\x24\x6e\xba\x0d\xcc\x3e\xca\xb0\x1b\x51\xeb\x86\x47\xd9\x9d\x03\xf1\x9a\x0c\xa5\x6a\x7c\x24\x47\x6c\x3c\xa6\x22\x10\xa5\x79\xd9\x5f\x7c\x1e\x16\xd9\xb2\x05\xa2\x4c\x22\x31\xbf\xd4\x00\x4a\xbc\x0e\x4a\xf5\xa5\x08\x2a\xc5\xb9\xa8\x05\x1d\xdc\x17\x65\xcc\x21\x01\x23\x65\x23\x31\x1e\x53\xbd\x3e\xe5\x08\x3d\x44\x71\x93\xb6\xfa\x6f\xcc\x49\xde\x0e\x42\xd6\x3e\x38\xec\x9a\x57\x06\x8b\x45\xeb\x11\x1e\x88\xcc\xf6\x5b\x6a\xe4\xcb\x5a\xd9\xbb\x7f\x6d\x6f\x3d\xf6\x38\x0f\xc4\x5d\x6d\x23\xaa\x3a\xa9\x07\x62\x82\x2d\x62\xbc\x98\xfb\x97\x61\xad\xbb\xb7\x17\xba\x44\x32\x9d\x17\xea\x9c\xc9\x58\xec\xb2\x7f\x2b\x21\x1d\xe1\x54\xf6\xfe\x3f\x74\xf7\xc1\x83\xbb\x03\xdc\xb1\xc9\x66\x91\xec\x99\x17\x5f\x7e\xf9\xe5\xdd\x81\xcd\x3c\x3b\x48\xad\x28\xa3\xa4\x29\x38\x8e\xb2\xc9\xee\xd7\x4b\x54\xc5\x95\xf3\x3c\x53\xba\x5a\x54\xef\xe0\xc6\x7a\x56\x36\x56\xad\x78\x37\xb5\x03\xe6\xd5\x31\x7e\xc2\x9a\x47\xf6\x35\x6b\xee\xf9\x5b\x56\x69\xd8\xbe\xff\x89\xe1\xcd\x26\x58\xd3\xed\x72\x54\x90\x0a\x1a\x8e\x9e\xa9\xc9\x39\xd8\x46\x20\x89\xf7\x84\xdf\xbb\xe9\x6a\x19\x8b\x19\xb7\x88\x08\xcb\x08\x58\xa5\xe8\x28\x02\x96\x2d\x72\xbf\x20\xbc\x57\x9e\x4d\xe3\x6a\xdb\x04\x7b\xbe\x1a\x4c\x20\xaa\x77\x77\x4b\xbd\xba\x34\xd3\x70\x08\x20\xc7\xab\x85\x7c\x88\x24\xc9\x5f\xb4\x1f\x47\x1b\xa4\x22\x28\xfc\x97\xd6\x73\x58\x2f\xbb\x45\xec\x58\x4e\xd3\x84\xe6\x08\xa7\xf9\x59\xcb\x59\x37\x71\x35\x82\xf6\x63\x9c\xe3\x7c\x56\xcc\xa1\xd2\xfd\x18\xd9\xad\x0d\xe6\x20\x87\x3e\x06\x85\x5d\x0a\xa4\x3b\x7f\x87\x6d\x4e\xd7\xb2\xd9\xf7\x12\xff\x3b\xc9\xa6\x6b\xdb\x86\xc6\x30\x4d\x77\xac\x5e\x48\xf4\xcf\x33\x31\x9d\x87\x42\xcc\x7b\x5b\xf0\x4c\xbd\x17\x87\x5c\x6a\x82\x69\x61\x23\x72\x20\x46\x42\xa0\xbe\xb7\x05\xf3\x94\x4b\x7f\x96\xab\x3c\x5a\xf9\x7b\x4d\x87\x0b\xee\x27\x18\x56\x1e\x77\x7e\x1f\x68\x39\x9b\x8e\x15\xa3\x1c\x0f\x73\x77\x0d\xf6\x7a\xb6\x75\x8e\x53\x84\x84\x91\xfc\x55\x92\x4f\xa2\x1c\xe3\xfe\x92\xb1\xb7\x51\x71\xc2\x6c\x76\xe1\x1f\xb8\x32\x72\xd9\x15\xc8\xda\xc3\x51\x36\x9d\xd8\x0f\x19\xe5\x7a\xfd\x5e\xa3\x0c\x8a\xdf\x62\x94\x07\x07\xcd\x50\xec\x82\xc2\x04\x25\xb7\x5f\x39\x3e\x3a\x8f\x74\x22\xe9\xbc\x91\x31\x36\xa3\x8f\x6d\x09\xd0\xce\x0e\x0b\xd4\xc0\xcd\x1c\x35\xdb\x90\x28\x9d\x6e\x60\x34\xac\xfa\x2a\x6f\x32\x9e\xd2\xb4\x9c\x23\x16\x3e\xbb\xad\x9e\xce\xa9\xe2\xf2\x6d\x2a\x34\x8b\xf5\x73\xc4\x89\x39\x43\x6e\xd2\x2b\xb5\x45\xd1\x3f\x8d\xd4\xc6\x82\x2e\xb7\xa8\x65\x8d\x35\x38\x4d\xb2\xa2\x60\x52\x25\x04\x12\xc5\x52\x09\x5c\x91\xe8\x4f\x20\x2f\xaa\x24\x5e\x22\x71\x5e\xd7\xca\x36\x58\x23\xc5\xe9\xb5\x75\x1b\x0e\xee\x5c\x72\x55\x8c\x54\x5f\xea\x9a\x7c\x6a\x92\xf4\x6b\xa0\x37\x91\xaa\x2b\xd6\x22\x75\xf3\x99\x80\xe3\x01\x91\xbd\xed\xc7\x18\xd1\xc8\xa0\x53\x1f\x22\x04\x3c\x6d\x05\xd5\x0d\xf5\x4d\xf4\x6f\x3e\xbb\x42\xd2\x42\x72\xe0\x4e\x2b\xa8\xd3\x7a\xf9\x6f\x56\x68\x9c\xc9\xb3\x22\x1d\x8d\xc9\x94\xa9\x8c\xcf\x8b\xf4\x9a\x5d\x2e\xc1\xf4\x3c\x15\x1b\x62\x2c\x79\x8c\x01\x8f\xe6\x9f\xd4\x06\xfd\xca\x30\x99\xb7\x6f\x92\x66\x4d\xa6\x15\xed\xfe\xb6\x6d\xe2\x2e\xf3\x3f\xa8\xcf\x61\xc7\x7e\x59\x2d\x96\x7b\x7c\xb6\x27\x72\xb5\xb7\xb0\xcb\x9a\x58\xe5\xba\x24\xc6\x55\xc8\xa5\x47\xa6\xde\xfc\xa1\x54\xb0\x7f\xc0\x56\x6a\xa0\x68\x4c\x26\x1e\xf6\xd5\xd9\x61\xfd\x6c\x7e\x91\x5d\x15\xaf\xfc\x06\xf7\x7a\xaa\xef\x37\x5b\x94\x18\x4e\x56\x36\x7b\xca\xa7\x00\x21\x57\xb5\x84\xd8\xd1\x6c\xdc\x60\x4a\xa1\xcf\x76\x88\x89\xf6\xb0\x02\x05\xc1\x6c\xfa\x5c\x14\x7a\x53\x11\xc6\x63\x72\xa3\x75\x96\xdd\xe4\x49\xeb\x26\xff\xf6\x2d\x9e\xf2\xa9\xd9\xda\x2b\xbf\xb1\x51\x4a\xeb\xf7\xdc\xcc\x4a\x6e\x71\xb7\xd6\x08\xfb\xc9\x4c\xdb\xb8\xe9\x72\x2e\x21\x27\x5d\x19\x8d\x5f\x1d\x9a\x40\x84\xaf\xc4\x72\xd2\xfa\x77\xa8\x15\xf3\xd6\x77\x86\xa5\xf3\x86\x79\xed\x76\x75\x51\x43\x8d\x2a\xb3\x86\xc9\xc6\xbc\xaf\xdd\xdb\x36\x59\x28\xb4\xbd\x9b\x74\x47\xc9\x6e\xb9\xe9\xbb\xc9\x38\xa9\x9a\x0b\xbd\x37\x6c\xbd\x17\x50\x41\xa2\x77\x77\x13\x6e\x23\x5b\x58\xdf\xc6\x8b\x2b\x10\xee\x67\xcb\x25\x13\xd3\x13\x76\xa9\x5a\x18\x95\x88\x11\x3b\xd8\xc2\x34\x34\xb5\xfb\x28\x5f\x80\xc3\xf3\x6d\x9a\xde\xc6\x02\x44\x4d\xe7\x4b\x26\x9c\x27\xf5\x6d\x1a\x7e\x2f\x62\x7f\x9b\xe9\x42\xcb\x18\x44\x44\x31\x1e\xfc\xb5\x9d\x98\xb6\xf7\xb6\x8c\x9f\xbd\xc8\xa3\xb5\x07\xd0\x88\x96\xdc\xcb\xe7\xf5\x1e\x40\xf8\x11\xf7\x52\x21\xdf\x48\xe6\x82\x5e\x15\xf6\x47\x85\xa0\xe3\x78\x98\x51\xee\x06\x93\xa2\x8c\x22\xd5\x4c\xc9\x71\x4f\xc9\x35\x92\x6f\x0a\x63\x30\x74\x8d\x89\xc5\x82\xe6\x65\xdb\x05\xbd\x99\x4a\x6c\x25\x0d\x49\xb4\x4e\xf5\x88\x83\x19\x29\xc2\xd5\x6a\xe1\xca\xc2\x26\x6a\xc1\x08\x2d\xa9\xb4\x6c\x57\x05\x5c\x55\x54\x01\xbc\x50\x01\x62\xb2\x13\xa7\x3b\x83\x46\x7d\x0c\x9c\x8d\xb6\x9b\x52\x37\xe5\x2e\x47\xdb\x8e\xf3\xf6\x55\xbd\x1e\x0a\x4a\xd1\xd1\x18\xf0\x36\x08\x51\x70\xdc\xb3\xe8\xf5\xe2\x2d\xa8\x0a\x0d\x55\x5e\x9a\x8f\x36\x53\x48\x30\x10\x15\x0f\xc4\xcd\x66\xa8\x02\x7d\xcc\x19\x62\xd8\x98\xec\x9e\x2b\xc4\x70\xfa\xad\x33\x7f\x3c\xdf\x76\xc1\x5d\x55\x2d\x14\xb7\x5e\x70\x76\xbe\x37\x58\x00\xda\x7d\x28\x2f\xb7\xc5\xad\x4c\x01\x6d\xe1\x33\xe4\xe7\x8d\x5b\x4c\xea\xc8\xac\x55\x68\x5c\x83\x09\x26\xde\x39\x81\x71\x0e\xd6\xf4\xa1\xb2\x04\xac\x36\x9f\x39\xa8\x69\x31\xf1\x37\x3c\xb0\xf7\xee\xa8\xa9\xa5\x13\x68\xc5\x18\x0f\x1b\x6d\xe5\x74\xfa\x48\xbf\x0a\xc4\x4f\x12\xe3\xd4\x0d\x07\xa4\x19\x00\x7c\x2f\x96\x4c\x66\xba\x29\x0d\xff\x05\x2b\x9d\x55\x6c\xd3\x15\x25\x75\x6d\x28\x47\xc7\x95\xc1\x40\x8c\x9c\xf7\xea\x46\x12\x51\x37\xf4\x98\x3a\xf1\x4a\xdb\xa4\x83\xe0\x84\x9d\xf6\xe9\x4b\x9c\x22\x2b\xd7\xd5\xe3\xc9\x5c\x63\x4f\x72\x09\xcd\x40\x58\x1e\x0d\xb0\xa7\x4a\x33\xfc\x30\x65\xe2\x9a\x28\x07\x99\x57\x4d\x7e\x1b\xc6\xd7\xb0\x12\x65\x28\xcb\xb6\x11\x48\xdd\xa7\x46\xc9\x7e\x0c\xb9\x5d\x8f\x4e\x7d\x14\x59\x65\x10\xb3\xf9\xaa\x38\xa7\x8d\x96\x5b\xe0\x0f\xa8\x74\x8f\x24\xa3\x21\xe4\x11\xab\xc2\xf1\x60\xe7\x0d\xad\xb2\x5e\x4f\x3e\xc8\xe2\x98\xa0\x01\xde\xcd\x40\x79\x52\xf4\x7a\x48\xd0\xbc\x3a\x0d\xbb\x01\x64\x67\x1f\x13\xc4\xcb\xc9\x08\xff\xa5\x08\xf1\x0c\xc2\xd8\x0c\x5e\x2f\xac\xa6\xeb\x83\x7e\x38\xc6\xb7\x3c\x2a\xd5\x0d\x81\x1d\x6f\xe5\x20\xfd\x7c\xd5\x7a\x8d\xaa\x2f\x61\xc4\x4b\xa5\xf1\x83\xc1\xc9\x35\x2c\x19\x6e\x44\xa3\x1a\xdb\x6e\x07\x72\x3b\x8d\x3b\xb2\xd7\x43\xae\x27\x3b\x19\x5c\xf6\xed\xa6\x17\xa0\x6e\x89\x9d\xea\x79\xf1\x41\xc8\xc5\x6f\xca\x51\x45\x21\xeb\x3f\xfc\xcf\x22\x9e\xe2\x3c\x5f\xcd\xa7\x0f\x43\x90\x56\x7a\xfb\x6b\x80\xae\x88\xde\x8f\x33\x65\x7b\xf9\x0d\x48\xa8\xa1\x4b\xd9\xd8\xa5\x2c\xbb\x34\xe7\xef\xe3\x21\xa4\x6d\x6b\xf1\x7b\x20\x2b\x45\x7e\x2b\xba\x22\x59\x67\xdb\xea\xa1\x0f\xc1\x67\x0d\x03\x95\x24\xab\x0e\xf4\x06\x94\xe6\x90\x99\xc6\x6b\x05\xad\xc0\x36\x59\xb5\xa1\xb6\x42\xa3\xb6\xa2\x62\x46\x5a\x8c\xe4\xd8\x9e\xd9\xac\x86\x85\x04\xee\xac\x60\x37\xb2\xad\xa8\x2e\xda\x0e\xf7\x65\xd5\x8c\xea\xea\x9d\xd4\xb6\xa9\xbe\xde\x4d\x4e\x25\x0d\x67\x7d\xbd\x06\x95\x6d\xc3\x97\x56\x5d\xf1\xff\x10\xc2\x0c\xf8\xae\xfa\x60\x1d\xb5\x5b\xee\x69\x47\xae\xd7\xa8\xb1\xac\xa6\x01\x6b\xc5\x01\x9b\x4a\x4f\x08\x5b\xd1\xa7\xf3\x5a\x74\x4c\xf1\xdd\xbb\x8d\x9c\x59\xc9\x08\x10\x49\x93\x30\xea\xb5\xf1\x81\xfc\x2f\x27\x20\x48\x3a\xaa\x6f\x44\x77\x01\x59\x23\xdd\x3e\xbb\x6f\xa5\xf3\xb5\x61\x23\x81\xfa\x9c\x05\xad\x46\x1a\xdc\x7b\x37\x32\x27\x93\x20\x6e\x76\x54\xb5\xd1\x6a\xdc\x6a\xee\xf6\xad\x10\xff\x00\xc8\x81\x7c\x79\x97\x64\x2d\x8c\xae\xc0\xa4\x68\xf9\xc4\x71\x27\x1f\x22\xd9\xf2\x35\xaf\xf0\x61\x85\xfe\x52\x41\xcf\xfa\xa8\x93\x02\xe3\xf4\x86\x92\x55\x96\xed\x26\x17\x8f\x5b\xa9\x74\x48\x4e\x81\x59\x80\xa9\x07\x9b\x5c\xd0\xac\x3f\x09\x36\x09\xa2\x19\x99\xe3\x59\xee\x2b\x99\x53\xe6\xd2\x1d\xb9\x88\xef\x13\x2a\xdc\xdd\x56\x10\x13\x5b\xa8\xc3\x03\x27\x18\x8d\x17\x0b\xcd\x2e\xac\xe6\xec\xa9\x1e\xe0\x7c\x6e\x65\xd6\x12\x4d\x88\x30\x7c\xce\x94\x0a\xf0\x59\x67\x2e\x86\x04\x9a\xe0\xce\xb4\xd7\x63\x7d\xc1\x2e\xe0\x6d\x7e\x95\x9d\xce\x19\x9a\x36\x30\xc0\x57\x0a\xe5\x44\x90\x89\x97\xe5\x5f\x6d\x13\x13\x6b\xbc\x1e\x33\x59\xf9\x56\x26\x2b\xb7\xf2\xdf\xbc\xbf\xb0\x6e\xe4\x42\xff\xb6\x53\xa0\x9c\xe4\x56\x42\x67\x46\xe5\x24\xc7\x32\x21\x39\xc8\x58\xc1\xad\x9f\x4d\x03\x81\x71\xbe\x85\x0d\xbb\x49\x60\x6c\xc7\xe0\x84\xc6\xae\x33\x52\x8a\x70\x9d\xe5\x46\xd0\x77\x47\x94\xb2\x62\x88\x81\x1d\xef\x8a\x29\xe5\x37\x45\xfa\xfb\x29\x1c\xbe\x08\xf4\x3c\xb7\x92\x0d\xdf\x56\xdc\x7b\xb6\xd5\xde\x28\xd8\x2d\x4f\xe3\x19\xa0\x0d\xad\x8e\x9c\xd1\x91\x31\xc7\x11\x81\x39\x12\x84\x80\xe0\x4d\xf4\x5c\xf5\x72\x0d\xf0\xcc\x2d\x18\xb5\x70\x24\x65\x77\xc1\x28\x2a\x63\xc0\xc4\x52\xe9\x9a\xa0\x3d\xbd\x61\xca\x24\xbf\x69\xd2\x59\x35\xb4\x81\x0c\x16\x43\x54\x2c\xb0\x28\xaf\x2e\x48\x4e\x4a\x9d\x4e\x40\x04\x6b\x40\xe7\x6d\xce\xa1\xcb\x4c\x4d\xce\xdb\xc0\xd2\xad\x84\x08\x94\x45\x91\x3a\xaa\xae\xae\x12\x9e\xf2\xac\xcc\xc5\x1e\xef\x98\xf7\xae\xee\xe9\x0d\x94\x52\x20\xff\x23\x79\xc5\xb6\xc9\x93\x4d\x66\xcc\x9d\xc0\x70\x30\x94\xcc\x41\x7a\x77\x77\x64\x9b\x07\x5a\x61\xdd\x33\xa2\x1a\x77\x1d\x62\xe0\x87\x0b\xde\x2c\xe1\x33\x2a\x4c\x23\xe4\xbb\x65\x7f\xd5\x8d\xc5\x40\xb7\xbf\x53\x16\x85\xdd\x24\x69\x0f\xa4\x5a\x1e\x94\x69\xdc\x62\x68\xca\x16\xed\x2e\xe1\x4d\x67\xa7\x22\xae\x4f\x1e\x24\xbb\x2c\xc8\x73\x10\x04\xe7\xdf\x4d\xba\x77\xbe\x4c\xf0\x46\x53\x26\xb9\x9f\xb8\x0f\xfe\x39\xbc\xb6\x23\x4a\x39\xd1\x68\x08\x2c\x6d\xd2\x1c\xbc\x44\x52\x49\xfc\xf8\x9c\x92\x30\xf1\x8b\x95\x6c\xd2\xdb\xd6\xf5\xee\x83\x6a\xa8\xf7\xa9\xa9\xad\x0a\xad\xb4\xdd\x76\xc3\x59\x07\x19\xda\xa2\xa6\x87\x2e\x85\xe8\x37\x90\x1d\xad\xf2\xf5\xc2\x87\x75\x09\xc9\x89\x8c\xe4\xa4\x20\x3b\x3b\xa1\xbc\xfd\xee\x76\xad\x79\x69\xc7\xd4\x32\xc2\xfc\x3d\x87\x81\x34\x3f\x62\x7c\x23\xe1\x4e\x7d\xb7\x4d\x9d\x7e\x55\x51\xa7\x6f\xbb\x7e\x9d\x3a\x1d\xd0\x4f\x99\xef\x28\xd6\xaa\xe7\x0e\x4f\x87\x9a\xf5\xdb\xde\xae\x56\x00\x61\x5b\x30\x78\xce\x1a\xd8\xbc\x87\xe2\xdc\x5e\x72\xa5\x16\xdd\x4e\xe0\xda\xe9\xb7\x2b\xdd\x98\xc6\x10\x36\x1a\x2c\x66\xaf\x47\x7f\x2d\x7a\xeb\x87\xf7\xf2\x30\x75\x44\x5f\x6c\x49\x78\x3d\xf5\xa1\x89\x52\x41\x2c\x05\x91\x0a\x4f\x4b\x4c\x5c\x58\x23\xe3\x35\x1d\x9a\x4a\x7d\xb1\xc5\x04\x4a\x38\x13\x28\x63\xcf\x1a\x60\x4f\x81\x87\xe6\x68\xa5\x8d\xa8\xce\x44\xff\x1e\x72\x7b\xe6\x53\x4f\x5a\x38\x5b\xaa\x70\xc0\xb9\x1f\x70\xde\x3a\x60\xc2\x35\xa5\x58\x57\x8b\xf0\xc8\x41\xfa\x26\x85\x17\xcc\xaa\xc3\x95\x73\x08\x24\x3b\x3b\xd2\x73\x4d\x3c\x54\x35\x7d\xd6\x68\x79\xe6\x98\x72\x52\x90\x15\x99\x93\x09\x99\x92\xa5\x6d\xfe\xdc\x2f\xda\x2c\x36\x1d\x5c\x62\xb2\xa0\xb3\x7e\x39\x5f\x72\x45\x67\x7e\x9e\x67\xf4\xdc\xae\xf0\x29\xbd\xea\x2f\x25\x5b\x66\x92\x3d\x94\x67\x05\x5a\x90\x33\x48\x4c\x74\x6a\x42\xb9\x9e\x79\x7a\x5b\xd2\xd3\xd0\x49\x4d\xd0\x53\xe3\x59\x46\x78\x69\x78\x6d\x52\x34\x70\x48\xce\x70\x6e\x85\x6d\xa3\x7c\x6c\x0c\x91\xcf\x9d\xa7\x34\x29\x28\xca\x5c\x18\xb4\xb7\xec\xaa\x40\x02\x63\xd7\xc4\x4a\x33\x9c\x73\x3a\xb8\x3f\x7f\x50\xdc\x9f\xef\xee\xe2\x09\x15\xa3\x6c\x34\x1f\x8f\xc9\x94\x26\xff\x9d\xec\xea\xdf\xc4\xb6\x35\xc1\x64\x65\x7e\x4d\x71\xc7\xbe\x5b\x61\x72\x66\x17\xfa\x9c\xec\xec\xe3\x8d\x7d\x7f\x16\x3a\x57\xdf\x96\x97\xb3\x1a\xbc\x40\x95\x17\xb3\x3c\xab\x3a\xd7\x32\xa7\xc0\xc2\x05\x5b\xc1\x35\x54\xca\x70\x2b\x32\x2a\x4b\x7a\x5b\x33\x3a\x59\x69\xbc\xca\xc4\x3b\xc0\xba\x2b\x12\x38\x9d\x93\x9d\x1d\xb4\xdf\x13\x18\x77\xe6\x7d\x0f\xa3\x74\x52\xe7\x58\xde\x28\x64\x68\xf5\xdc\x5c\xac\x13\x92\x91\x55\x08\xac\x9f\xdf\x64\xf4\x14\x99\x9f\x02\xe5\xe0\x46\xaa\x2f\x53\xdf\x39\xc9\x28\xaf\x30\x56\x39\xee\x64\x0d\x8c\x55\x18\xa0\xe0\xf3\xcf\xa2\x63\xcf\xfa\x10\x93\x16\x0e\xef\xd7\x32\x87\x24\x68\x35\x65\xa3\x09\x4f\x65\xcc\x15\xc3\xa6\x0e\x2a\x4d\x55\xbc\xa2\x17\x0a\x79\x3b\x2c\x5f\x67\xbb\xbb\xfb\xfb\x4c\x3e\xa9\x66\xb3\xaa\x09\x2f\x78\x7f\x5a\x29\x82\xf2\x78\x76\x0d\x02\x8c\x0c\x37\x15\x09\xb8\x85\x2c\x9a\xcf\x4d\xb6\x98\xd1\x7c\x2a\x9e\xe3\x6e\x6a\x1e\xca\x82\x09\x46\x9d\xdc\x64\x0c\xbe\x7d\xd1\x22\xb0\x0f\xba\xa8\x86\x26\x98\x43\x18\xb4\x27\x1a\x8e\x48\x46\xea\x5b\x77\x13\x92\xbd\xfd\xd6\x55\x75\xd1\x16\xb4\xcc\x86\x99\xd0\x79\x26\x26\x9b\x09\xa9\x6c\x58\x5a\xbf\x97\x28\x27\x4d\x66\x94\x17\x0a\x08\x95\x78\x7b\x3e\x6f\x96\x36\x4d\xf2\xc5\x82\xab\x10\xea\x2d\x6d\xf3\xa6\x5d\x7f\xeb\x6e\x00\x7c\x7d\x1a\xd1\x38\x2b\xfa\xae\x89\xc6\x59\x19\x86\x8d\x93\x55\x80\x2f\x72\xb2\xf2\xa2\x86\x8c\xac\x22\xcc\x45\x0b\xb2\x8a\xc5\x0d\xbe\x5e\x62\x23\x41\x67\x1a\x52\x4e\xb2\x33\x7d\xd0\x5d\xe0\x21\x20\x96\xe6\xc3\x50\x3f\x8c\xd1\x48\x90\xf9\x18\xa7\x82\xac\x1c\xc5\xf4\xe6\x76\x36\x4f\x01\xd5\x53\x6e\x58\xb3\x7c\x22\x1c\x7b\xc7\x89\x7b\x11\x23\x55\x33\xb5\x0f\xb0\x02\xd2\x2b\xf7\x1e\x56\x65\x17\xdb\x37\xad\xba\x61\x59\xf3\x86\xb9\x88\x4f\x81\x2c\x28\x0b\xb6\x8e\x93\xac\x7f\x6a\xe2\x54\xe6\x24\x0b\x6c\xce\xec\x66\x99\xd3\x93\xe8\x4f\x75\x63\xaf\xec\xbd\xb6\x61\xab\x58\xa8\xdc\x16\xcb\xb2\x99\x41\x75\xc0\x46\xcd\x48\x74\xec\xd9\x91\x44\x04\x67\xc7\x7c\x32\x86\x35\x6e\xe1\x0e\x6f\xf0\x07\xbb\x88\x05\x15\x9a\x44\x11\xea\x28\x9f\x32\x27\xab\x80\x40\xe4\xde\x21\x37\x2b\x54\xb3\xc1\x99\xa9\x68\x71\x70\x9b\x51\x59\xd9\x7a\x85\xff\xd7\x7d\x40\xa7\x2d\x15\xa1\x40\x5c\x47\x0f\x65\x5b\x15\xfd\xdd\x0a\x6c\x2e\xb7\xba\x35\xdf\xb8\x02\x42\xff\x96\xff\xfa\x49\x8b\x5a\x95\x9b\xe6\x6c\x6b\xe8\x39\xbf\xd8\xa2\x75\x3d\x8e\x67\x0c\xf3\x6b\x0c\xbc\x71\xdb\x21\xea\x0e\x1f\xfe\x1e\x1d\xbe\xc7\x04\x8f\x6f\xdf\x9f\x3d\xd3\x8d\x3d\xde\x6a\x0b\x4d\x03\x71\x59\x54\x95\x61\xdd\xb4\x56\xb6\x11\x5f\xae\xda\xc0\x4d\x73\xb7\xf5\x5d\xb1\x6a\x75\x83\xa3\xea\xac\xb1\x9d\xbc\x5b\xb6\x97\x6d\xcb\x66\xa5\xb5\x95\xa5\x0b\x75\x0a\x81\xa8\xd1\x33\xc2\xa1\x12\x9e\x85\x91\x7d\x21\xfe\x42\xff\xd8\x04\xf4\x38\xe7\x51\x7a\x83\x96\x12\x90\x2a\xb6\xe5\x1b\x13\xef\x1c\x0e\x9a\xe6\x0b\x2a\x9b\x85\xbc\xa6\x40\x55\xed\x61\x4a\x3f\x7e\xf1\x1c\x55\xa4\xb1\xa2\x36\x32\x27\x6b\xb5\x21\x6d\x83\x36\xf4\x88\x66\x0a\x39\x25\x75\x8d\x66\xae\x2f\x81\xd5\xd7\x05\xaf\x71\xf3\x4a\x04\x05\x83\x4f\x41\xec\xcc\x59\x2e\x9f\x1a\x2b\x60\x43\x38\x05\x81\x17\xa3\xe0\x3d\x10\x53\xc7\xbe\xd3\xc0\x21\x59\xb1\x0a\x3d\xb3\xa3\x7c\x1e\xbe\x70\x15\xac\x89\x08\x63\xd4\xad\x8a\x73\x98\xe1\x89\xcc\x26\x6f\xad\x4a\xaa\x12\x7d\xb5\x46\x60\xb7\x41\x70\x08\x4c\x4d\x6d\x04\xcb\xdd\xd2\x42\x09\x77\x71\x7d\x00\x9d\xd6\x83\xe3\xe1\xaa\x3f\x59\x49\x3d\xd7\xb8\xf2\x32\x5f\x36\x9c\xff\xba\x74\xf5\x38\x8c\x4e\x53\xdd\x44\xb0\x9a\x31\xc2\x36\xef\x1d\x63\xd8\xd7\x08\xe4\x98\x1b\x42\x1d\xf4\x94\xff\x24\x2b\xe3\x8b\x61\xad\x3e\x48\xbd\x95\x6f\x55\x0c\x6a\x9d\xe8\x0a\xaa\xee\x22\xc3\x84\xd5\x3b\x01\xfa\x41\xb3\x93\x5b\xfa\x79\xf5\x3b\xf4\x13\x16\x69\x20\x89\x6a\x11\x46\xf6\x1b\x23\x8c\xec\x8f\x7b\xbd\xf0\xc9\x51\x4f\xf5\xed\xf6\xc2\x48\x13\xe8\x50\xf6\x7a\x48\x56\x19\x68\x8d\xf0\xd6\x6b\x78\x6d\x42\x95\x23\xe6\x8c\xb7\x82\x06\x9d\x32\xbe\x6d\x52\x60\x4e\x50\x9f\x91\x5e\xb8\xe7\xf1\xc2\x69\x0c\xfb\x9b\x06\xac\x30\x09\x47\xab\xda\x46\xab\xb1\x4e\x0d\xde\x6b\x1b\x5c\x3b\x2f\x08\xf7\x21\x95\x1e\xff\x27\x0b\x5d\x0e\xc2\xd6\x35\x74\xc7\x2d\x07\xe6\xdd\x8d\x66\x12\x81\xc4\xbe\x19\xcd\xa6\x9e\xe4\x9d\xe6\x8b\x4a\x7e\x31\x46\xda\x01\x2f\xbe\xa6\x6a\x77\x94\x24\xa2\x41\xe1\x74\xab\x43\xef\xce\x7b\xd8\x43\xc7\x8f\x30\xca\x0d\xc4\x48\xfd\x54\x7f\xc0\x35\xba\x0c\xac\x2a\x94\xd1\x40\x91\x68\x5f\x42\x23\xfa\xaa\xad\x69\xcd\x70\xfc\xb7\x9c\xaf\x61\xf8\x60\xa2\x11\xd6\x46\xc8\xca\x60\xc3\x1a\xca\x1f\x29\xc4\x70\xa7\x19\x19\x48\xb2\x33\xa8\x0e\xb7\x62\xa4\x5e\xf3\xcd\x29\x25\x07\x2e\x82\xdc\xb2\x85\xfe\x5a\x36\xed\x68\x10\x44\xdc\x21\xe0\xb6\x8b\x9a\xd5\x6f\x67\x5a\xdf\xcf\xe8\x60\xc5\x03\x88\xcf\x67\x03\x21\x66\xb7\xaf\x86\x78\x6a\xcd\xd8\x5c\x09\xdb\x5a\xf0\x38\xaa\x62\xa8\xe4\x1d\x5f\xda\x58\xcd\x69\xbe\x00\xef\x67\x73\xb6\x74\x49\x20\x26\x59\x94\xb8\x2f\x00\xea\xe8\x2c\xc8\x36\xf8\x0e\x46\x06\xcd\x49\x5c\xbd\xc4\x22\xd7\x99\xdb\x0d\xce\xfb\xd9\x7c\xec\xb1\xd5\x6d\x77\x1a\x21\xa8\x2a\x25\x4c\xea\xf5\x12\xdc\x60\xd1\x89\x82\xea\x91\x1c\xb2\xb1\x01\xc2\x6a\x06\xe4\x4d\x56\x48\xcd\xd1\xdc\x6e\x33\xc6\xa3\xe3\xc6\x51\x1e\x1d\xbf\xcf\x38\x75\x23\xa4\xc9\xaa\xbe\x41\xb9\xf8\x1e\x43\xad\x56\x35\x23\xad\x69\x2b\xb7\x0d\xb4\xde\xc4\x6d\xc7\xb9\xc5\xfc\xff\x36\x63\x75\xeb\xda\xa0\xe2\x7d\x9f\xf1\x96\x2b\x4b\x6a\xf1\x9b\x02\xab\xb9\x1a\xa6\x74\x60\x1e\x9b\xd6\x35\x62\x4d\xcd\x07\xbe\xbd\x3d\xfb\x6c\xf8\x83\x58\x1e\x54\x5e\x57\x46\x24\xe4\x1f\xa7\x25\x6a\x2b\x22\xa7\xc6\x02\xee\xbe\x46\xd7\x21\x5b\xa7\x1e\x88\xc7\xa1\x85\xa0\xcd\x0e\x9f\x99\xe4\x45\x36\x16\x7c\x10\xdc\x3a\x8c\xbe\xa3\x46\x6c\xec\xea\xd5\x6e\x8a\xdb\x4b\x6d\x3e\x44\x4c\x65\xed\x62\xe0\xf7\x87\x73\xfb\xfa\xbb\x6d\x49\xff\x6c\x65\xfb\x9b\x49\x2e\x0b\x13\x0e\xe5\x95\x77\x1b\xec\xc2\xee\xee\x7b\xc0\x95\xad\xb3\xb7\x57\xbb\xa6\xe2\xe1\x33\x7c\x3d\x70\x66\xbb\xb6\x4e\xaf\x87\xca\xa5\x58\xaf\x51\x08\x3f\xec\xa2\xfb\x42\x95\x34\xb6\x81\x22\x76\xd1\x7d\x08\x2f\x6f\x73\x25\xbe\x47\x6f\x2c\xec\xa5\xe1\xc2\xdd\x7a\x6f\x47\x10\x5d\x7b\xb3\x5e\x8f\xc6\x75\xc8\x77\x24\x45\x15\x7e\x0c\x41\x5d\xef\xc3\x8e\xb9\x72\x4d\xa2\x24\x71\xc7\xf5\x51\xab\xfc\xdb\x83\xcd\xb1\xcf\x63\xf0\x62\x7b\xd6\x07\x77\x04\x1f\xd6\x05\xd5\x0d\x27\xb1\xe1\xa0\x06\x32\x75\x72\x69\x13\x7d\x10\xb5\x41\x6f\x15\x26\xaf\xfe\x35\x03\x85\x8c\x48\xed\x21\x18\xab\x18\x43\xf6\x7a\x32\xc4\x18\x26\x2c\xa6\x8f\xd7\xa5\x76\x77\x31\x38\xdb\x5b\x40\x40\x72\xa4\xc6\xce\xbc\xc5\xce\xb0\x53\x3b\xe8\x1f\x8e\x04\x35\x3b\x62\xd7\xeb\xf9\x56\xd9\xf4\x56\x4c\x0c\x92\x3d\xe0\x38\xe5\x0d\x9f\x6f\x89\x74\xe3\x6a\xfd\x59\x2e\x0f\xb3\xc9\x39\x60\x90\x46\x15\x5b\x89\x5f\x3f\x2a\x86\x0d\x98\xb2\x72\x70\xe7\x2c\x9b\x96\xb2\x16\xd6\xeb\xb1\xf7\xc3\xb5\x8d\x8d\xaa\x8c\xcf\x2b\x8d\xbe\x17\xde\x35\x19\x87\xfa\x26\x76\x08\x46\x3b\xfb\xc4\xa5\xb5\x08\x8a\x77\xa7\x5c\xb2\x89\x9a\x5f\x75\xb9\x28\xf8\x94\x75\xb3\x2e\xdc\xdd\xdd\x39\x2f\x54\x72\xcb\x2b\xbf\xad\x9f\xb0\xfc\x7b\x75\x54\xc3\xe7\x5b\xfa\x00\xea\xbc\x9b\x99\xa8\x91\xf9\x94\xbd\x6f\x47\x55\x64\x5e\x0d\x4d\xd0\x86\x91\xab\xe5\xea\xf8\x14\x4a\x68\x7c\xf9\x8b\xa2\xc9\xa3\x17\xcf\x5f\xbe\x38\x3a\x3c\x3a\xe9\x42\xce\xae\xa7\x27\x4f\x5f\x1c\x75\x47\x7c\x4a\xd9\x67\x7f\x9d\x7c\xf1\xd9\x3d\xb6\xf7\xf9\x3e\x3b\xdd\xbb\x77\xf7\xaf\x07\x7b\x7f\x99\xdc\xcb\xf6\x0e\x26\x83\x6c\xf2\xc5\xc1\xe9\x6c\x32\xbd\x37\x4e\xc8\x49\xb9\xe2\x86\x2e\x7a\xd5\xa2\x56\x20\x8f\xb7\x07\x36\x79\x55\x71\x0a\x7e\xdb\x98\x67\x26\x88\x7b\x61\xb9\xb2\xd0\xe7\xf7\x91\xc3\x81\x86\x03\x0a\x29\xd5\x40\xa8\xcb\xaa\x7c\x9d\xc0\x1d\x16\x33\x4d\xd2\x73\x4c\x9c\xc8\x88\x5d\x0a\x13\x0d\x2b\xd0\xb7\x5f\xaa\xb0\x38\x26\xbc\xa2\xf7\xad\xe9\x1c\x48\x25\x13\xd0\xce\xce\x89\x71\x05\x73\x51\x52\xec\xb8\x74\xcf\xf9\x94\x99\xe4\x74\xca\xc8\x05\xd4\x06\x9d\x28\x4c\x8e\x6e\xbe\x40\xfc\x7a\x92\xb7\xb7\xbb\x40\x6e\x5a\xbc\x68\xe2\xf5\x9c\x84\xc1\x22\x44\x2b\x46\x44\xd5\x9c\xbe\x7d\x41\x88\x20\xbc\x65\x51\x0c\x1c\x41\xcc\xf9\xaa\x28\x9e\xd3\x4b\xaf\x72\x70\x8a\x9c\xfa\xf0\x84\x71\x54\x0b\x57\xf1\xe9\xef\x0b\x91\x1a\x0b\x1a\xeb\xd2\xef\xad\x8d\xfe\x7b\x02\xa6\xe8\xab\x1c\xd2\x64\x57\xa0\xec\x3d\x16\xfb\xbd\xe0\xcf\x58\xf3\xf9\x05\x7f\x6e\x16\x1c\x92\x3f\xb8\x81\x60\x17\x87\xb4\x32\x39\x70\x95\x43\x91\xe6\x1d\xd7\x36\x26\xa7\x97\x48\xdc\xb8\x31\x9c\xe4\xde\xad\xb1\xba\x84\x32\xde\xb0\x27\xff\x73\x60\xdf\x8a\x20\x44\x05\x41\x10\xb3\x67\xf1\x72\x07\xdb\x79\x69\xc4\x81\x9b\xb0\x89\x0f\x3c\x21\xbf\xfc\x0e\x27\x44\x23\x1a\x7f\x42\x00\x7f\x05\x0b\xee\x83\xca\x6c\x0b\xf0\xd8\x62\x9f\xeb\xed\x39\x34\x85\x6f\x8e\xd0\xb3\xf6\xa0\x1a\xcf\xdc\xad\x71\xbb\x38\x3d\x2d\xe1\x55\x2c\x3c\xfa\xdc\x9e\x08\x72\x57\x5b\x8b\xc9\xdc\xe7\xdb\xaf\x98\xf2\x2a\x3c\x14\x65\x80\x92\xbc\xd9\x77\x41\xf8\xe8\x24\xd6\x76\xa6\xe2\x59\x06\x1d\x9b\x25\xb5\xae\x47\xcd\xca\xd7\x4c\x2f\xf1\x0a\xfa\x38\x56\xc8\x9f\x9d\x4e\x16\x08\x2c\x57\x98\xe4\x15\x6b\x5f\x55\xea\x6c\xe1\x99\x11\x45\x72\xb2\x22\x85\xf7\x20\xff\xe7\xcd\x67\xe3\x99\x3f\x1b\x4f\x6f\x77\x36\x9e\xdc\x9c\xf9\xcf\x62\xa8\x9a\xad\x53\x4b\x82\xb4\xee\x4b\x53\x76\x83\xbe\x63\x98\x7c\x73\x93\x13\xdb\xb3\x8a\x13\xdb\xd3\xad\x4e\x6c\x2e\xf0\x5c\xee\x80\x5c\x90\xbc\xbf\x5a\xc2\xb1\x06\x1f\x36\x6f\x4e\x9f\xd7\x66\x78\x1b\x68\x8b\x5d\x92\x6f\xe3\x00\x94\xe1\x32\x6e\x8b\x3f\x9f\x76\x2f\xf5\xb0\xc0\x3d\x61\x9a\x2f\x48\xf0\xce\x59\x90\x71\x92\xe1\xf5\xda\xc2\xe3\x0d\xf6\x38\x55\x7f\xb1\x40\x3c\x2f\x37\x48\xd5\x10\xc2\x25\xa8\xc2\xa2\xa1\xdc\x1a\x82\xc1\xb4\x90\xf8\x61\x0a\x07\xc2\xbf\xc9\x93\x20\x0a\xc1\x57\x75\x2b\xb8\x2e\x3d\x5c\x5a\xa3\xf1\xb5\xf8\x18\x90\xaf\xb6\x1c\x8b\x67\x95\x44\x90\x37\x9c\x8a\x32\x1b\x9b\x31\x7a\xcb\x97\x8a\x2f\xf8\x3f\xd9\x74\x6f\x92\xad\x14\xcf\x57\xc5\x9e\x91\x4c\x24\x65\x52\xc8\x06\xf8\xf2\xd8\xa9\xe1\x78\x00\x00\x2d\xb2\x25\x46\x8c\xfc\x5a\x59\xd0\xfa\xfd\x04\x90\x60\x3b\x7a\xec\xc3\xb7\xd4\x2f\x12\x8d\x31\x1a\x7d\xff\x83\x33\xfc\xab\x3b\x73\xb0\x72\xcf\x14\x26\xbf\xfe\x4b\x57\xce\x8c\x74\xfb\xca\xdd\x7a\x05\x36\xe8\x1b\x85\xc9\xeb\x7f\xc5\x04\x94\x5c\x19\xd1\xdf\xef\xb9\xf5\x5f\xbd\xd7\xd6\x1f\xfd\xc6\xad\xff\xbe\xb6\xf5\xdf\xff\x4b\x57\xee\xb7\x6f\xfd\x51\x75\xeb\x7f\x50\xf4\x35\xf9\xe9\x06\x2b\x2e\x1b\xf9\x82\x14\x64\x05\x6e\x21\x31\x89\xf3\xfb\x26\xe5\xac\xa4\xfc\x02\x3b\x67\x67\x2e\x9a\x4f\xb2\x79\x11\x07\xa0\xb7\xee\x2b\x4e\xf4\x96\xef\xee\xe2\x82\x8a\x11\xca\x28\x1f\xe5\x63\xbc\xb7\x3f\x26\x2b\x63\xb1\x65\x53\x11\x66\x38\x6c\x6c\x54\x8c\xe9\xaa\x89\x92\xda\x92\x2f\x00\xc6\xe4\xf3\x69\x40\x33\xc6\x65\x68\x39\xe7\x0a\x25\xfd\xc4\xba\xd9\x97\x8f\x39\xe5\xa3\xc1\x18\xdc\x2f\x5c\x0a\x0b\x4d\x08\xe9\x4e\x0e\xdf\x65\x73\xe7\x86\xb2\x72\x74\x97\x19\x0f\x64\x18\x4d\x28\xa5\xf9\x70\x65\x0a\x1b\xc7\x92\x54\x8e\xf2\xf1\x70\x45\xf5\x9f\x74\xa0\xbf\xfb\x48\x16\xc9\x7f\x27\xb8\xd7\x2b\xcc\x77\xfd\x27\x45\xab\x60\xd0\x81\x73\x4a\x46\x05\x26\x59\x5f\xb2\xe9\x6a\xc2\x9a\x69\x70\x28\x0e\x7a\xe9\x55\x25\x4a\xc4\x17\x1f\xe4\x4f\xe8\x83\x10\xd4\x7c\x21\x4d\xf4\x70\xe1\x82\xa3\xfc\xa4\xca\x24\x83\x60\x8e\xdd\xf9\x41\xbf\x29\xd3\x39\x3a\x47\xdc\x06\xaa\x29\xb3\xd9\xca\x7c\xec\xd2\xd0\xb6\x7f\x4b\xd8\xc1\x86\x18\xde\xae\x09\x9f\x7e\xbd\x9f\x15\x36\xe7\x24\xf2\xd1\x05\xbe\xdd\xa2\xf8\xfa\x57\x24\xaf\x8d\x32\x6f\x94\xc9\x56\xf4\x30\x67\xd9\x44\xb5\x98\xa9\xb6\xe4\x2d\xda\x89\xeb\xf6\x79\x71\xb8\x58\xaa\x2b\x54\xd9\xfe\xcf\xee\xdd\xd2\x11\x50\x05\x61\x16\x35\x99\xc4\x95\xc9\x44\xf8\x24\x97\x48\x10\x1f\x47\xd1\xed\x7b\xc0\x4a\x3c\xd5\x25\xad\x83\x92\x72\x49\x53\x5d\x30\x28\x5d\xf6\x5b\x85\xb2\x72\xa4\x91\x6b\xdf\xf6\x54\x0c\x10\x02\xfe\x19\x2f\x54\x1c\x06\xfe\x6e\x7b\x18\x78\x28\x1c\x96\x6d\x0c\xbd\x11\x78\xa2\x79\x56\x0b\x28\x2e\xa0\x31\x11\xee\x70\x13\x27\x04\xd6\x40\x13\xad\xfd\x05\x5b\xe4\x6e\x11\x8c\xd9\xbd\x62\xf2\xa9\x62\x0b\xc4\x21\xbb\xa2\x84\xa0\x20\x10\xc8\xd7\x7b\xd2\x7e\xad\xea\x59\xfe\x5f\x2c\x99\x78\xe4\x6c\xfc\x9d\x70\x77\x30\xa6\x49\xd3\x07\x93\xaf\xbf\xea\x08\x45\xf7\xc7\x75\xef\x28\x5f\x34\xf4\xaf\xa1\x07\xa6\x64\xf8\xce\x14\x74\x81\xb5\x0f\x2f\x97\x92\x15\x10\x48\xf8\xee\x98\x26\xf5\xd7\xc9\x06\xa3\xaf\xd5\x7a\x8d\xbe\x56\xf4\x7a\x83\xcd\xc4\x3e\xa9\x4a\x47\xbf\x8f\xe1\xdb\xc4\xb4\xa7\x6a\x43\xbe\x8b\x4b\xea\xcb\xad\xa5\xac\xbd\x42\xca\xf4\x9f\x54\x6e\xc8\xdf\xdb\x0e\xec\xff\xe2\x14\x9b\x3f\x6e\x41\x52\x3f\x34\xc4\x4c\x6b\x42\x19\x17\x32\x5b\x5a\x10\xa8\xe9\x1b\x4d\x52\x71\x48\xeb\xa2\x7c\x94\x37\x52\xd3\x57\xca\x7c\x51\x6b\xc1\xdb\xc3\x94\x6d\x30\x19\xb4\x51\xb3\x5e\xb1\xa9\x0f\xda\xd4\x40\x26\x19\xb9\x2d\xa4\x11\xd7\xdf\xd5\x6d\x32\x45\x85\x95\x55\x76\xe6\x93\x34\x65\x4a\xc9\x7a\x7e\xa6\x7a\x1d\x28\x57\x26\xb9\xf9\xdb\x56\x35\x5c\xd3\x92\x3b\xa9\x1e\x2c\x8f\x2c\x71\x3a\x48\x0d\x64\x19\x02\xc2\x98\x8e\xcb\x46\x1d\x5c\xc3\xd2\xbc\x8b\x73\x00\xea\x25\xf5\x31\xc5\x75\x57\x84\xd3\x6b\x77\xbd\x3d\x67\x2a\x4b\x45\x7f\xc1\x54\x46\xcc\xa1\x29\x52\x97\x3d\xb7\x20\xfe\xee\x4b\x77\xf6\x37\x2e\x8c\x86\xca\xce\xc0\x18\xde\xe6\xb8\xc0\x8e\xe3\xb7\xef\x6d\x7e\x0a\x4d\xec\xb4\x4a\xf9\x0a\xe9\xa4\x7c\x84\x83\x17\xb3\xcd\xea\xf8\x2c\x3b\x65\x73\xe0\xa2\x87\xa8\xb0\xf9\x49\xbe\x61\xfd\x62\x1f\x93\xef\x50\x4e\x0a\x4c\x0a\x48\xaf\xa2\xff\x42\xd2\x13\xfb\xb1\xe8\x2b\x56\x28\x94\x14\x60\xe2\x9c\xe8\x17\xbf\xac\x16\xcb\xd7\x62\xce\x8a\x02\x25\x5f\xbd\x78\xfc\x13\xbc\x8c\x5a\x34\x1a\x76\x8f\x2b\x23\x2e\x1e\xec\x2a\x85\x9d\xa2\x17\x0c\xe0\x34\xeb\xf5\xd0\xcd\xf5\x6c\x05\xcd\x5d\xc4\x1e\xa1\x24\x5f\xaf\x33\xe3\xb0\x5d\xd4\xbd\x4e\xf5\xb8\x06\x98\xb0\x32\x8a\x57\xd1\x3f\x5d\xcd\x66\x4c\xba\x1c\x8c\xa1\xb2\xf9\x6f\x88\x8d\xd4\x98\x14\xb8\x53\x54\xc3\x68\xd9\xd0\xdb\xc1\xc4\x4d\x0e\x0f\xbb\x35\xa2\x9f\x15\xd6\x22\xb2\x69\xa5\x6f\x58\xcc\xc3\xa3\xc7\xf0\x2e\x36\x12\x82\xa5\xa9\xbe\x24\x7e\x20\xae\x52\xd5\x71\xd3\x4e\x39\xd7\x75\xe3\x0d\x2d\x54\xbe\x74\xe0\x60\x1d\x28\x2d\x90\x38\x9e\xa9\x28\xad\x8b\x8d\x58\xf9\x3b\x85\x56\xe4\x5a\x83\x72\xca\xc9\x79\x56\x68\x32\x3b\x15\x7d\xfb\xab\x0e\xde\x1a\x65\x4f\x32\x85\x46\x73\x39\x36\xfa\x67\x48\xb8\x2a\xb7\x7b\xbb\xb5\x1f\x64\xef\x73\x77\x14\x04\x24\xb2\xa7\x5b\xfc\xb6\xd3\xec\x4f\x72\x27\x36\xf0\xd1\x6d\xf7\xb3\xc2\xae\x66\x7d\x14\xa4\x06\x4a\xb8\x96\xa3\xe6\x16\xf8\xb2\x24\x58\x2d\xb1\xfa\xd5\xeb\xaf\xd3\x6e\x48\xb1\xfe\x43\x65\x67\xff\xe8\xe6\xa2\x9b\x89\xee\x6b\xa1\xef\x8d\x25\x9b\x7e\xb5\xe2\xf3\x29\x93\x09\x0e\xd2\x83\xb6\xad\x6e\x6d\x61\x79\x61\x47\x18\x85\x8f\x36\x20\x1c\xe7\xb5\x55\x7c\x72\x62\x02\xcc\x84\xf6\x13\xa6\x72\xf8\xa1\x85\xe5\x73\xdd\x04\xe3\xe2\x33\x14\x8f\x01\x87\xcb\x1e\x37\x5d\x4b\x39\x67\x87\xd8\xd8\x9c\xf9\x16\xb5\x16\x4d\xa0\x62\x60\x58\x69\xc9\x5f\xbd\x6e\x19\x76\x06\x4d\x8b\x50\x69\x65\x5a\x9d\x5f\xd9\x8c\x9b\xba\x6b\xa7\xb2\x68\x23\xd1\x7f\xb1\x2c\xfa\x8f\xe6\x9c\x09\x75\xcc\xa7\xac\xa4\xe7\xc8\xd7\xaa\x81\xf8\x23\x90\x2b\x15\x92\x85\xde\x7a\x9f\x0d\x58\xd2\xd1\xb8\x31\xb3\x67\x75\x05\x3c\xe9\x60\xaa\x19\xde\xc0\x8e\xb3\xb4\x2f\x05\xe3\x47\xbd\xe5\x63\x7c\xd3\x5a\x6c\x6b\x30\xb0\xab\x24\x8c\xbc\xff\x6a\xa8\x71\x39\x08\x48\xac\xd8\x8a\x5a\x1a\x56\x05\x8e\x8e\x43\x2d\x80\x65\xf4\xbf\xb7\x5e\x24\xcb\x00\x8d\x06\x10\x16\x72\xb4\x3f\xd6\xac\xd9\xe8\x60\xac\x6f\xf1\xd1\xdd\xb1\xbb\xb4\x6d\x3f\x9d\x2c\xbe\xd4\x6c\xbc\x29\xc4\x30\xc9\xec\xe5\xe1\xbf\x99\x44\xe9\x2e\x4c\xd9\xcd\xeb\x5b\xe6\xfd\x95\x7a\x34\x9c\x4a\x3d\x9a\x9c\x4a\x3d\x9a\x8c\x4a\x3d\x9a\x22\x1e\x8d\xe6\x9a\xd9\x7a\x3d\xa0\x94\xba\x3b\x0f\xd7\x70\x90\xdd\x9d\x6e\x71\x25\x54\x76\xd9\xbd\xe0\xea\x3c\x5f\x29\x8d\x80\x9c\x80\x2d\x71\x37\x47\xd8\x38\xd0\x3a\xfd\x90\xfe\xe9\x54\xa9\x8f\x22\x4c\x4d\x46\x8a\x32\x41\x52\x79\xf9\x19\x1c\x0a\x91\x58\x98\x9e\x15\xd3\x73\xd2\x94\x7d\xd1\x3f\x67\xf3\x25\x8b\xe4\x65\xa5\x28\xce\xc4\xd3\x5d\x69\xc6\xb2\xa4\x64\x6a\xd7\xad\xc9\x58\x76\x50\xbb\x79\x9f\x1d\x1f\x26\x6e\x74\x76\xf6\xb5\x1d\x2b\x6f\xfb\xca\x86\x59\xed\x4c\x78\x29\xbb\xf6\x4c\xde\x33\x3f\xd1\xa6\x8b\xbb\x4c\xbf\x56\xb9\x9b\x2d\x68\xf3\x1b\x6e\xcd\x7f\xa5\x58\x44\x6f\xb0\x67\x04\x55\xa6\x8c\x1e\x32\xb0\x70\xcb\x16\x4c\x31\x7d\x0f\x37\x9e\xa6\x49\x26\x1a\x18\x0d\x03\x78\xa8\xd2\x28\xb9\x2e\x9b\x4b\x2b\xcd\x13\xa0\x44\xfc\x88\x3c\x81\x91\xb7\x2d\xd5\xff\x62\x66\x34\x6b\xbf\x0e\xbe\xad\x24\x8c\x00\xb8\x8a\xe5\xbd\x96\xbd\x90\x67\x4c\x15\x2d\x17\x85\xc9\x63\xd3\x80\xd6\x4d\x7b\x23\x36\xa6\x15\x3b\x41\x9b\x19\xa8\x8a\xa9\xc2\xbe\x6c\x2c\xaa\x4c\xa5\x8c\x9c\xc0\xab\x54\x11\xf3\x2d\x95\x75\x83\xc5\xc6\xe8\x88\x44\x86\x21\x08\x6d\xc3\x0e\xfb\x9a\xc1\x75\x4a\x73\xd2\x3c\xa4\xf0\x05\x45\x92\xe6\x23\x35\xc6\xfd\x4c\x33\x6d\xd9\x48\xda\x06\xc6\x7b\x82\xb0\xfe\x39\xcb\x96\xfd\x82\xa9\xd3\xab\x6c\x3a\x95\x48\xec\xee\x83\x96\x02\x80\xac\x90\xcd\x3a\x0a\x09\xbb\x62\x2d\x6a\x3e\x30\x0f\x3b\xec\xf5\x99\xcc\x16\x9d\x6f\x9d\x9d\x8f\x8b\xa2\x5a\x3b\xe4\x2c\x38\xd5\x5e\xd0\x67\x8f\xb6\xae\xdb\x3d\xcf\x0a\xf1\x7f\x55\xf7\x94\x31\xd1\x75\x79\x8a\x0a\x36\xed\xee\x75\x8b\x95\x46\xa3\x38\x2a\xa1\xd1\x00\x9b\x26\x4e\x6f\xb2\xa3\xd6\xeb\x24\x07\xf0\x4d\x76\xa8\xde\x06\x8d\x49\x7a\xbd\xc4\x23\x87\xf2\xed\x90\xa5\x6a\x53\xb7\x51\x02\xb5\x75\xa4\x26\xf7\xb1\x3c\xc0\x36\x51\xa2\x3c\x88\xd7\xfa\x13\x92\xe0\x75\x59\x27\xd9\xf5\x55\xd0\x6c\xb8\x64\xe2\xc1\xd0\x81\xbe\xd5\x98\x61\xfe\x38\x1d\xdc\xe7\x25\x3b\xc7\x77\x77\xf1\x77\x88\x8d\xb8\x31\x03\xc7\x9d\xc2\x5f\x7b\x1b\x83\x54\x56\xc5\xf9\xd3\xc5\x82\x4d\x39\x04\xd9\xf5\xd7\x5a\x98\x7e\x1c\x6c\x94\xc1\x32\x79\x65\x2e\xda\xdc\x5c\xb4\x19\x1d\xdc\xcf\x4a\xc0\xca\xa0\xaf\x7c\x94\xb9\xbe\x1a\x3a\x58\x05\x1e\xea\x70\xc5\x09\xbc\x69\x9a\x73\x93\x05\x43\xfd\x95\xdb\x20\xea\xb6\x82\xf5\x7a\xd6\x2b\x95\x85\x5b\x55\x7e\x77\xed\x6f\x10\xc3\x43\xff\x64\x0c\x1a\x52\x16\x0f\xe5\x6c\x95\xc9\x29\x9b\x3e\xac\xa6\x8e\xf1\x08\x20\xbe\xda\xfd\xbc\xdc\x6d\x06\x2f\xaa\x17\xfc\x77\xd6\x53\xd4\x7e\x36\x17\xb5\x39\xc0\xfa\xae\x6e\x98\xf6\x3f\x95\x8f\x0c\xa6\x2f\x77\x4b\xb4\xd9\x6b\x1c\x9e\x1a\x6e\x72\x3f\x98\xf6\xcb\xdc\x8a\x9b\x9a\xee\xf3\xfa\x3f\xae\x5f\x73\x9d\x07\x33\x43\x21\x72\x2d\xbb\x37\x1e\xb4\x4e\xd3\x68\x96\x10\xd9\x80\xfc\x4e\xf5\xec\xde\xde\xb6\x69\x58\x3f\x33\xb1\x92\x64\xb0\x1b\x11\x52\x0d\x32\x52\x5f\x46\xf3\x6b\x70\xa1\x6a\xc1\x57\xf7\x1a\xf1\xd5\xbd\x10\x5f\xdd\x0b\xbd\x4e\x4b\x39\xc7\x20\xd8\x5a\xfd\xbc\x24\xfb\x5e\x47\x68\xc5\x10\x83\x60\x83\x8c\xb8\x44\xd4\xde\x70\x5c\xb2\xfe\x8e\x1e\xd4\x43\xde\x71\xad\x85\x21\xfb\xc2\x46\x4d\x3c\x35\x37\xe3\x13\x99\x89\x22\xb3\xd7\x63\x0d\x2c\x9c\xaa\xd0\xf4\xe4\xfc\x1a\x2d\x2c\x40\xa3\xc4\x9e\x27\xe1\x7e\x70\xbf\x47\x67\xbc\x50\x4c\xfa\xf2\x41\x18\xb8\x70\x38\x67\x4c\xf9\x22\xa0\x6f\x6b\xfb\x18\xcb\x6d\x02\xe8\x74\xe2\x04\xc8\x76\x24\x11\x18\xbe\x6b\x52\x0a\x61\xdc\x02\x0f\x65\xe6\x6e\xff\xdc\x38\x61\x13\x84\x6b\xcb\x52\x05\x3b\x16\xc3\x95\x23\xf2\x9b\xf0\x14\x1b\xea\x91\x72\x4b\xd1\x81\xfc\x93\x85\x84\x1d\x0b\x28\x39\x93\xc1\x77\x43\xe4\x06\x6d\x55\x99\x7f\x5b\x17\x0d\xc9\x80\x24\x15\x0e\x24\xe0\xf2\x74\x71\x42\x0c\x0d\xd0\x12\xb3\xc4\x6b\x4c\x29\x2f\x7f\x5b\x85\x07\xcb\x96\x94\xc3\x1f\x52\x22\x3a\xea\xbf\xf5\x17\xd9\x7c\x9e\x4f\x50\xa3\xcd\xe0\x6a\xf9\x2e\x93\x4d\xa9\xf5\x81\xee\x9a\xf1\xf9\xfc\x68\x35\x9f\x17\xf5\xec\x58\x92\x15\x4c\xbe\x6b\x70\x3f\x32\xde\x4a\x64\xa0\xff\x6b\x70\xab\xfe\xfd\x7c\xc8\x07\x44\x7e\x28\xe1\x32\x20\xa2\x5e\xf5\x6e\x63\xd5\xbb\x61\xd5\xbb\xe3\x74\xd0\x29\x17\x36\xf2\xf5\x2e\xdf\xa8\xda\x1b\x59\x7b\x53\x75\xc7\x6c\x72\x3f\xa8\x46\xc3\x40\x07\x07\x61\x3b\x33\x2e\x78\x71\xfe\xdc\x6c\x6e\xb9\xf1\x38\x00\x82\xfa\xf2\x57\xa8\x93\x70\xcf\x3e\xfb\x0b\xd9\x01\x46\x7b\xb8\x9f\x56\x77\x2e\xb8\x3b\x6b\x4e\x3e\x01\xdc\x96\x1a\xda\xac\xe6\x23\xeb\x91\xfe\xf6\x06\x20\xdf\x9f\x09\xbc\x1b\x1e\x92\x06\x48\xaa\x5e\x92\x6d\xd3\xfa\xdc\xc6\x47\x00\x03\x84\x9a\x3f\xe0\x96\x5b\xb7\x1e\x40\x00\xda\xfb\xa2\xda\x42\x89\xd9\xdb\x86\xf0\xd7\x9a\x3a\xac\x82\xbd\x5b\xe4\x24\x68\xc7\x04\xb8\xd0\x1b\xb2\x36\x0f\x12\x1e\x1e\x3c\xd8\x2f\xe9\x35\xf4\xf9\x80\x88\x5a\x0f\x5b\x30\x7e\xcb\x30\x3f\xdf\xaf\x35\xd2\x7a\x3b\x35\xaf\xcd\xe7\x9f\xd5\xf5\x75\x2d\x38\xbb\xa5\x81\xcf\xb7\x6d\x74\x73\x4c\x9f\xa0\xf6\x01\xae\x09\x61\xa3\xdb\xac\x6d\xe2\x77\x6b\x13\xaf\x5f\x75\x6d\x75\xef\xd5\xea\x56\xf5\x39\x6d\x35\xbf\x68\xaa\x19\xa9\xdb\x5b\x2a\xfe\xa5\x69\xb8\x56\x41\x77\x52\xbb\xea\xa2\xaa\x7f\xad\xa3\xf1\x7c\xfe\x8e\x3d\xcf\xae\x4e\xd9\xb3\x7c\x92\xcd\x5b\xfa\xfc\xc2\x0b\x98\x21\x2c\x78\xed\x18\x4d\xd9\xe9\xea\x2c\x3e\x84\x9e\xf0\x36\x0d\xec\x57\x2e\x32\x7f\x20\xab\xef\x33\xb0\x07\xaa\x25\x9a\x9a\xba\x43\x2a\x54\xfb\x9a\x1e\x6c\x3f\xec\x31\x2d\x5b\x5b\xa2\xb8\x0b\xc0\x63\x5f\x55\x35\xd0\x31\x91\x7c\x9b\x26\x5e\xd7\x9a\xa8\x86\xd4\x08\xc6\x7f\xaf\xba\x1a\x6d\x0b\x9e\x2f\x99\x78\x29\xf9\x82\x2b\xfe\xee\x06\x40\x3b\xf8\xe2\x7d\x1a\x6d\xd4\x59\xb6\xb5\xfc\x97\xf7\x69\x39\xd6\xa2\x36\x03\xe8\x41\x15\x40\xdb\xa2\xeb\x94\x55\xee\xde\x7d\x9f\xd0\x06\xa6\xca\xbd\xfa\xfd\x66\x35\x06\x2d\x98\xb8\x6d\x9a\x84\xbb\xf8\x43\xb5\x8f\x0a\xa7\x03\x27\xee\xa9\x7d\x94\x01\xbf\x8d\xee\x6a\xfc\x9d\x1b\x99\x4d\x1d\xe2\xf5\xa8\x1a\x62\x74\xdc\x3c\xae\x96\x51\x85\x1d\x1f\x80\x4c\x2a\xb8\x58\x5a\x47\xd0\xac\x55\x68\xe9\x3d\xec\x62\x5f\x73\x41\xe5\x35\x56\xbf\x1f\xb6\xc4\x70\xd9\xde\xf4\xc1\x67\x35\xfb\x10\x9f\x8b\xa7\x19\x5e\xef\x7e\x76\x03\x2d\xa0\x9c\xe9\x59\xcb\xdd\x5f\x85\x1b\x6f\x4f\x56\xef\xd0\x12\xc8\xe8\xb3\x83\x48\xa0\x69\x05\x77\x96\xb8\xc9\x0b\xf2\xd9\x41\x0d\x9b\x3b\xbb\xb3\x96\x41\x54\xe1\xdd\x1a\x95\x6d\x19\xc2\x67\x37\x0c\xe1\xb3\xda\x10\x0a\xa6\xbe\xcf\x24\x6f\x8e\x62\x00\xc3\xa8\xdf\x7b\x67\x37\xd6\xa9\xf7\xa3\x2f\x2e\x2b\x68\x6e\xbb\xed\xb6\x5f\x3c\x67\x4c\x55\x02\x90\x45\xb5\xeb\x57\xe5\xb9\xb5\x79\x68\xa9\x50\x27\xd5\x5c\x85\x97\x9a\x0d\x6c\xc3\x84\xfb\x83\x3a\x89\x07\x46\x05\x6d\xe5\xeb\xb4\x96\x2b\xd8\x86\x6b\x6d\xc8\x94\x95\x98\xd4\x57\x41\x73\xbe\x6d\x3d\xd5\xc9\x0c\x90\x7e\xb4\x15\xaf\xaf\xd8\x74\xb5\xac\xdb\x21\xd4\xd8\xa7\x41\x23\xfb\x34\x08\xd9\xa7\xc1\x38\x35\x22\x96\x0f\xe7\xf9\x6a\x21\x02\xd1\xfe\x67\x0d\x76\x62\xcb\xfc\xf7\x1b\xf2\x7e\x43\x9f\x9f\xd7\x16\x69\x4b\xb0\xb4\x08\x03\xd5\x08\xdc\x1b\xa3\x96\x41\xb5\x2a\xd3\x51\x55\x73\x44\xac\x94\x95\xc1\xb1\xd2\xcb\xe9\x65\x5e\x34\x8d\x37\xcf\x95\x89\x25\xde\x46\xb5\xed\xff\x55\x2f\x6e\x03\xe2\x06\xba\xfc\x9c\xcf\xa7\x95\xfa\x11\xc4\x36\x44\x68\xdb\x56\x7c\xbf\x46\x9b\x1a\x61\x6c\x3b\x62\x3b\xb8\xbb\x1d\xb1\x1d\xd4\x09\xfb\xaa\x38\xad\x65\xbd\xab\x64\x48\x45\x26\xd5\x5c\xeb\x5e\xd3\x2a\x79\x69\x7a\xdb\x81\xbb\xbb\xfd\x4e\x72\x34\x5e\xc3\x1d\x39\x20\x2e\x0c\x62\xa7\xb8\xe0\xc0\x32\x5b\xc1\x39\xbe\x9e\x64\x05\x4b\xc4\x6a\x71\xca\x64\x92\xb2\xff\xb3\x4f\xe9\xa0\xd7\x63\x5f\x0e\x86\x92\xb2\xd4\xf9\xc2\xce\xe6\x79\xa6\x80\x04\xa7\xfb\xb8\x73\x2a\x59\xf6\xb6\x03\x15\x0d\xb6\x4d\x52\x5b\xae\x24\x2b\x14\x3d\x08\xcb\x9d\xe6\xf9\x9c\x65\x42\x17\x1c\xac\x19\x51\xf4\x6e\xf8\xd5\xca\xfb\x53\x49\x0f\xaa\x9f\x56\xc2\x68\x19\xa7\xfa\xeb\xdd\xe0\xab\x0d\xe3\x98\xd6\xb4\xfc\x4f\x05\x78\x10\x76\xfd\x82\x74\x97\x59\x51\xb0\x69\x57\xe5\x5d\xbd\x90\x9e\x18\x4e\xf0\x26\x58\xdd\x7b\x44\x3d\x78\x70\x77\xb0\xae\xca\x23\x8c\x72\xbe\x6d\x4f\xb6\xe1\x5a\x2f\xf4\x6d\x63\x95\xc2\x50\x71\xb5\xda\xa7\x5c\x4c\x9b\x21\x29\xa6\x54\x2c\x65\x0d\x19\xaa\xea\xad\x00\xdd\xd1\x76\x31\xd7\xaf\x30\x4d\x50\xb4\x10\x13\x55\x90\x35\x87\xae\xe5\x84\x56\xf9\x6b\xaf\x3f\x69\x39\x0f\x35\x51\x89\x95\xfc\xb6\x14\xff\x4b\xb3\xb5\xaf\x5d\xae\x5a\x9c\xd1\xa0\x66\x15\x75\x44\xa2\xe8\xb6\x75\xda\x7e\xf0\x42\x4b\xc9\x26\x6d\xee\x87\x8b\x2d\xc1\x5d\xa8\xb4\x4b\x0f\x2d\x05\x38\x15\x65\x6a\x9e\xe7\x99\x3a\xef\x2f\xb8\xf0\xc6\xb1\x7e\xec\x4e\x7c\x9e\x9b\x00\x44\xee\x75\x89\x90\x11\xb6\x96\xa2\x39\x28\x90\x0d\x6b\x6a\x34\x1c\xb3\x25\x91\x7b\x5e\x4a\x58\x92\x6c\x48\xf8\x38\x45\x59\x95\xfa\x76\xb0\x1c\x10\xdf\xf7\x0e\x48\x06\xf6\x9a\x16\xd9\xd6\x44\xf8\x76\x8c\x55\xd6\xb7\x31\xa6\xad\xf3\x38\x9f\xa1\x04\x3a\x4d\x28\xa5\x0c\x2b\x9a\xab\x0e\x9b\x17\xac\xab\x3f\x58\xb3\x18\xfb\x25\x0b\xbe\x30\xf1\x8e\xcb\x5c\x80\xa1\x8f\xfd\x5c\x98\xcf\xd7\xfa\x73\x5d\x05\xfc\xff\xb3\xf7\xaf\xed\x6d\xe3\x58\xa2\x28\xfc\x5d\xbf\x42\xe6\xd3\xaf\x8a\x78\x05\x2b\x56\xaa\xa6\xf7\x8c\x1c\x94\x4f\x2a\x71\x52\x99\xc9\xa5\x3a\x97\xaa\xee\x51\x6b\xbb\x69\x11\xb2\xd9\xa1\x40\x35\x08\x3a\x71\x5b\x3a\xbf\xfd\x3c\x58\xb8\x10\x00\x41\x59\x49\x55\xf7\xcc\xb3\xf7\x7c\x48\x2c\xe2\x7e\x59\x58\x58\x58\x57\xda\xd5\x21\x6a\x18\xa7\xd9\xf2\x5a\x2e\x44\x82\x06\x82\xd0\x5d\xf4\x85\xd3\x6a\x3e\xb8\x6b\xf1\x2f\xd3\x8e\x4b\xc0\xbf\x36\xeb\x4d\xff\xbd\xf5\xdd\x77\xfb\xef\xad\xef\xba\xc4\xb5\x6c\xf0\x45\x84\x81\x65\x9b\xbc\x87\xc6\xff\xae\x4b\x7b\xb7\x82\xc8\x3d\xcd\xfe\xfe\x9e\x66\xbb\x94\x90\xba\x2c\x62\xa2\x96\xbe\x37\x5d\xf8\xe2\xaf\x02\xb2\x39\x5e\xdd\x5c\x5e\x81\xbf\x1f\x88\x81\x1c\xd5\xbe\x20\xf3\x85\xa3\x61\xe1\xe9\x50\x73\x02\x3a\xd4\xf2\x08\xf4\x3f\xd8\xe3\xc3\xc8\xb4\xf9\x5a\xb0\x08\x4a\xb3\xf8\x80\x69\xa8\xfa\xe1\x34\x00\x29\x1d\x50\xdb\x20\xaf\xe0\x92\xe9\x5c\x4f\x56\xd8\xd5\x73\xb2\x67\x27\xdd\xc7\xc8\x21\x7b\xd0\x96\xd8\x61\x08\x03\xae\x95\x87\x37\x55\x9f\xe1\x04\x08\x96\x64\x1f\x92\x26\x55\x80\xa4\xf4\x57\x40\x7f\x1b\x59\xe3\x0b\x4d\xb6\xee\x35\xbf\x70\x2a\xda\x7a\x0a\x50\xf7\x56\x73\x05\x0e\xc6\x8b\xbb\x51\x4c\x46\xb8\xe1\x04\x14\x3c\x71\xc9\x49\x32\xd2\x36\x20\xcb\x7e\xbd\x25\x85\x28\xbe\xf2\x71\x71\x32\x78\xee\xcb\x0a\xab\xd5\xaa\xa6\xc2\x0d\xe2\x1a\xd3\x81\x92\x03\xe8\xd3\x80\xca\xf2\xa8\xfa\x03\x54\xf1\x05\x54\xd0\x3a\x68\x44\xb5\x05\xd4\xe8\x8f\xa7\xf7\xd8\xdd\xd0\x96\x05\x45\xe7\xce\xc0\x17\x86\xf1\xa4\xda\x66\x0b\xc3\x01\x83\xd6\xe7\xc5\xe2\xd4\xf7\x04\x76\x54\xe1\x44\x39\x33\xa5\xf9\x30\x63\x43\x40\xf2\x72\x75\x80\xef\x38\x5c\x55\x7c\x98\x8c\x53\xeb\x9e\x51\x75\x72\xd6\xf0\x39\x9d\x9f\x2c\x16\xb3\xe7\x62\x4e\xe7\xd3\xc5\x02\x21\x5c\xe9\x58\x42\xa0\xf5\x94\x2b\x63\xa2\x25\xc7\x1b\xf3\x2b\x9d\xa2\x41\xce\xc1\x86\xaf\xe1\x93\xf7\xf4\xb3\x08\x0c\xf9\x04\x30\x66\x53\xd9\x1e\xda\xc9\x26\x4c\x59\xed\x41\xb1\x53\x7c\x69\x7c\x0a\x77\x6b\x38\x1c\xc8\x6e\xb5\x30\x5e\x79\x5b\xcf\x8d\xad\xde\xa9\xd7\x09\x91\xde\xd6\x33\x01\x9b\x7b\x6c\x1f\xb5\xe1\x8f\x12\x6e\x17\x84\x2a\xb5\x5b\xaa\xd4\x6e\xe9\xfc\xdb\x05\xe8\xd9\xf2\xc9\x75\x56\xdb\xd0\xcf\x05\x66\x9e\x6e\x2c\xea\xde\x99\x4f\x14\x50\xa8\xcf\x61\x32\x2e\xc6\xc9\xb0\xa8\x87\xac\x12\xc3\x6c\x68\x38\x71\xb3\xe1\x8f\x40\x69\xd7\xc3\x75\x76\x0b\x79\x97\x74\xd8\x48\xba\xbd\x90\xa7\x91\x0e\xb5\x4f\x0e\xb9\xd5\xeb\x89\xbc\x7b\x3d\x1d\x8a\x0a\x67\xa0\x4d\x2b\x2c\x6b\x2f\xe5\x93\xb2\xaa\x3e\x36\x9b\x3d\x43\xf5\x16\xc7\xd1\x06\x8f\x2d\x0f\xac\x06\x53\xab\x51\xa8\xd5\x10\x0e\x3f\x58\x12\x5f\x98\xf9\x2d\xba\xea\xe0\x7e\x93\xbf\x4b\x29\x3e\x9a\x62\xe1\x97\x7f\x6f\x64\x06\x3d\x15\x4e\xc2\x0a\x6f\x5a\x3e\x7c\x07\x0c\x62\x8c\x7f\x0b\x82\x1b\xd5\xc4\x73\x11\xb5\x0b\xed\xb4\xd5\x6f\xbf\x24\xf6\xd8\x2f\xc9\xa5\xf2\x3b\x0b\x8d\x47\x3b\x1d\xf5\x98\x38\x85\x8d\xb8\xc2\xaf\x58\x1b\x11\x93\x21\x6f\xdd\x94\x50\xe6\xbe\x6d\x06\x68\x97\x68\x39\x85\xa3\x31\x59\x67\x4b\x5e\xd5\x29\x9a\x14\xac\x2c\x18\xb5\x4a\x3c\x50\x7d\xbb\xe5\xc8\xa8\x1d\x5d\xf2\x49\x51\x3f\xa7\x42\x99\xb1\xc3\x57\x2b\x38\x93\x14\x02\x3b\x13\xbe\x1e\x9a\xf2\x53\x3f\x2b\xb6\xdb\x2a\x96\x35\x45\xb3\xf4\x0f\x3a\xca\x7a\x47\xd1\x0a\xed\xbc\xb9\xc1\xf3\xe7\x40\x08\x86\xd3\xfd\x9d\x3a\xdd\xff\x02\x4a\xf5\xf6\x80\xa4\x15\xc2\x8d\xfb\x9d\x21\x5c\x92\x7a\x34\xaa\xb5\x96\x0e\x5e\x92\x66\x34\x6a\xf4\xd7\x20\x58\x22\xa0\x17\xda\x15\x52\x3a\xad\x25\x5e\x02\x04\xc3\xe3\xe1\x7a\x8f\x6d\x43\x70\xd7\x29\x23\xa8\xa8\xc1\xa9\x7a\x7d\xc5\xee\x1b\xed\x5b\x88\xbb\x4f\x28\x5c\x93\xcc\xda\x2a\x36\x24\xb3\xa6\x5e\xa5\xb5\x4c\x5f\x92\x80\xe7\x95\x9a\xbb\x6e\x3c\x95\x7b\x34\x58\xc2\xd3\x1c\x74\x9e\x4a\xa5\x86\x80\xb0\x4a\x53\x1a\x5e\xb5\xf5\xb3\x50\x72\x34\x9e\x3a\x33\x50\xf3\xce\xc1\xb4\x68\xd0\x80\x61\xa0\x75\xc9\xf0\x3b\x7a\x93\x95\x09\xc2\xb9\x77\x89\xab\x1a\x1b\xa2\x3b\x02\xaa\x94\x91\x8d\xbd\x7c\x4f\xd9\xf7\xe4\xe4\x94\x1d\x1f\xa3\x82\xb4\x8d\x6d\xe6\x6c\x21\x01\x4f\xd7\xc2\xc7\xd3\x23\x42\x8a\xd1\x48\x8f\x5c\x79\xb8\x28\xc6\x53\x2c\xb7\x78\x34\x4a\xf3\xb9\xac\xb1\x20\x95\xde\x18\x53\xd1\xbf\x82\x0d\x93\xc8\x6a\x5d\x5e\xe3\x64\xfe\xc3\x87\xe7\x8b\xe1\x0b\xb6\xac\x38\xa7\x4b\x31\x04\xa5\xf1\x61\xb5\x1a\xb6\xf1\x64\xad\x6d\xc5\x70\x59\x35\x80\xbe\x1b\x96\x0f\xf3\x46\x12\xcb\x43\xb5\x7b\xc7\x5a\x7c\xa4\x63\xdd\x4d\x12\x84\xd5\x08\xae\xd5\x80\x56\xce\xdc\x92\x51\xc1\x6e\x28\xaf\x69\x82\xf0\xda\x0e\x14\x66\xb8\x32\x33\x54\xfb\xb0\x1a\x4f\xf1\x1a\xe1\x1c\x26\xd8\x56\x5b\x90\xb5\x6a\xf5\xd6\x6b\x55\xb3\x93\x12\x84\xaf\xfc\x56\x6f\xfd\x56\x6f\xc7\x53\x7c\xd5\xb6\x6a\xaa\x2d\x88\x4a\x54\x45\x5b\x77\x1d\x39\xc2\xd4\x7b\x89\x6b\x4d\x62\xae\xcd\xcf\xef\x8d\xb7\xae\x5d\x37\x3d\x2f\x8b\xf5\x9a\xf2\xa7\xf4\xb2\xb9\x9a\x25\x8f\xa2\xeb\xf6\xbd\x0d\x3d\xee\x91\x24\x3a\xaa\x5f\xef\x09\x51\xb1\x87\x15\x72\x58\x2a\xe4\x90\x2b\xe4\xb0\x01\xe4\x00\x6a\xc2\x70\xb8\xaf\xb3\xda\x51\x12\x31\xc1\x3f\xd3\x12\x47\x4c\x64\x10\x62\x84\xb7\xc8\x63\x03\x81\x3b\x95\xfe\x9c\x2a\x2d\x51\x81\xab\x8d\xac\x42\xe9\x6a\x37\x59\x87\x77\x83\x79\xdc\x0e\xa9\x92\x39\xa1\x1a\x6c\xa1\x34\x5f\x73\xcc\x46\x23\x66\x94\x0d\x2d\x03\x60\x33\x1a\x6d\x1c\x1e\x4b\xaf\x19\x91\x47\xce\x58\xa3\xc6\x55\xc1\xf2\xa1\x55\x05\x1f\x26\xe3\x52\x1d\x57\x1e\xbf\x88\x4b\xa4\xf5\xac\x97\xae\x9e\x75\xde\x1a\xa5\x2f\xe7\xd9\x02\x73\xa4\x56\xdf\x27\xe9\xf0\x06\xd8\x39\x35\xd9\xb8\xfa\x87\x0d\x39\x39\x6d\x1e\x99\x61\x9f\x36\x7e\x73\xf5\xbc\x81\xe6\x78\x48\x56\x6a\x6c\xbc\xda\x63\x8e\xd3\xc1\xc7\x55\x23\x28\x7f\xa7\x5f\xae\xc6\xe0\xec\x26\x2b\x5f\xb0\x55\x15\x77\xfc\xdc\x45\xd3\xf1\x10\xd8\x44\xe0\x25\x29\x3d\xae\x97\x41\xd7\x39\x69\xdd\xbd\x6c\x48\x1e\xba\xc5\xb9\xee\xe0\x6d\xb3\xb2\xf2\xfa\x1c\x5c\xc3\xc1\x7c\x92\x95\x25\xe5\xfa\x68\x02\xa0\x39\x09\x08\xe1\xeb\xe0\xf8\x6e\x4c\x12\xa0\xfb\xbc\x75\x2e\x63\x10\x93\x37\x75\xbc\x26\x9d\xe5\xc1\xb7\x26\x1e\xb6\xd6\xf6\xce\x1d\x1d\x9c\x57\x99\xbc\x3d\x1c\xcb\x9d\x95\x6b\xb9\x53\x90\xf5\x3c\x65\x64\x35\xe7\xca\x43\x51\xa5\x26\xad\xf1\x37\x43\xf8\x76\x5e\x2c\x48\x25\x21\x44\x01\x44\x04\xa0\x6a\x92\x8d\xa7\xd8\xbe\x2f\xd3\x86\x6c\xe6\x12\xb2\x16\x68\x34\x52\x33\x4b\x6b\xdc\x98\xe5\x71\x86\x75\xdb\x83\xb8\x4a\x07\x71\xf9\xa8\x46\x57\x76\x11\x4d\xeb\x22\xd8\x7b\x49\x18\xef\x01\xc4\x3f\xcb\x70\x21\xeb\xdd\x1e\xb0\x40\x0d\x9f\x79\x83\x61\x11\x05\x7c\x49\x7d\xeb\x62\xad\x61\xc2\xb4\x9b\x14\x60\x1d\xd6\x1a\x2d\xc8\xf7\x03\x8b\x58\xe3\x09\xfb\x82\x85\x17\x92\xf2\x58\x63\xee\xb7\x49\x26\xd2\x13\xc3\xf3\x69\x9d\x8e\x15\x9e\xa7\x18\xe0\x4b\x2a\x51\x89\x6b\xd4\xa0\x72\x8e\xc0\xe2\xdc\xf8\x0c\xa2\xb8\xee\x3e\xa1\xbe\x79\x52\x35\x65\x3e\xb4\x78\x26\x1b\x6e\x54\xf1\x21\x44\x6a\x1f\x26\xdf\x8c\xe9\xf8\x9b\xe4\x9b\xd6\xd1\xad\x7e\xfb\xb8\xad\xee\xc0\x9c\xe4\x2b\x9a\x7e\x67\xf8\x6f\x7e\x17\x26\xf0\x3f\xd3\xe6\x0e\x2c\xb4\x4b\x64\xad\x41\x03\x8b\x59\x33\xb0\x88\x3a\x1a\xb4\x13\xe1\xe7\x43\x7a\x57\x71\x7c\xc5\xd3\x06\x57\x08\xb6\xb1\x65\x2d\x33\x57\x75\x9c\x05\x46\x0c\xcc\xd8\x24\xb0\xd6\x20\x81\xf9\xd6\x08\x41\x7d\xcf\x0e\x41\x9d\xfc\xf5\xe1\xc4\x2b\x58\x20\xf1\x27\x92\xf8\x39\x94\x84\x75\xbd\x05\x05\x4d\xb4\x8e\x83\xe0\x75\x22\x50\xdb\xa0\x73\x3e\xe0\xc0\x6b\xe1\xab\x8b\xe1\xb4\xd5\x95\xe8\x13\x2b\x64\xa4\x3a\x33\x86\x3f\xb3\x13\x5c\xb7\xa2\x05\x86\x33\x34\x08\x31\x42\xd8\x7e\xf6\xfd\x89\xb1\x34\xb2\xb8\xda\xc1\x6e\x35\xa0\xb5\xc6\xa5\x42\xab\x39\x5f\xe0\x02\x9c\xbe\xfc\x90\xd5\x34\x65\xc7\x5c\xde\xc8\xda\xdc\xea\x37\x25\x92\x6e\x0b\x5a\xe6\xca\x1e\x8c\x1f\x03\x2d\x4a\x92\x71\xb8\xbc\xe3\x24\x46\x45\xfd\x49\x56\xdd\xf7\xa4\xfa\x4f\x78\xeb\x62\x21\x9f\x41\x46\xd1\x04\x94\xb9\x7b\x40\x59\x44\x40\x79\xcd\x53\x06\x8e\x40\x5d\x19\x89\x07\x88\xa3\x91\x72\x95\x15\x72\x19\xb4\x4a\x65\xef\x00\x07\xc2\xaa\x5d\xa6\x8a\xb9\x63\x2f\x55\x1e\xf2\xa3\x8c\xa9\xfa\x3b\x43\x58\x04\xad\x6e\xb8\xf7\xea\xd5\xc7\xe1\xd6\xb2\xd1\xae\x1c\x36\x1a\xbe\xe4\x84\x4d\x5a\xf3\xf6\x7a\x70\x6b\x7b\xfa\xc0\x3e\xb2\xea\x13\x8b\x91\xa5\x6a\xcc\x96\xe4\x54\x6c\xa1\x94\x45\xc9\xbf\xb3\xdb\x76\x3c\xf3\x86\x4f\x54\x61\xcc\x7c\xda\x52\x19\xd5\x63\x8e\x66\xba\x0d\x8b\x6e\xcf\x78\x57\xb3\x35\x65\x68\x96\x72\x57\x4b\x29\x3d\x91\xd4\xa4\xa3\x82\x24\x77\x6a\x87\xf0\xad\x43\x67\xb3\x65\x16\xae\x95\x39\xc3\x30\x9f\xf6\x18\x30\xf7\x92\xff\x43\xca\xe4\x11\x10\x8a\x9f\x05\xde\x45\x4c\xbe\xec\xe1\xca\x72\x3d\x22\xde\x02\x3a\x8c\x3f\xfb\xad\x19\x2f\xed\xf8\xf4\xba\xfc\x6a\xb6\x9f\xde\x8c\x2f\x65\xfa\xcd\x42\xae\x9f\xba\x64\xf7\x70\xf1\xf4\x2d\x6c\x78\x78\xbd\xfd\x7a\xb3\x7c\x4e\xf7\x6d\x01\x4c\xed\xa1\x16\xed\x78\xdb\xcb\x10\x56\x5b\x53\xb8\x5b\x23\xbc\x1d\x2f\xe6\x3c\x58\xd3\x16\x62\xe2\x9d\xea\xa5\xd4\xfd\x05\x70\x97\x72\xe5\xed\xb1\x70\xbd\x3d\x8a\x08\x30\x72\x84\x66\x22\x04\x46\x26\x5f\xfd\xed\x68\x59\x64\xb4\x2c\x18\xed\x07\xa3\x48\x11\x0c\xd6\x46\xb9\xb3\xfa\x12\xa9\x22\x17\x03\x00\xd2\xca\x6d\x1d\xa0\x33\x5a\x6f\x96\xb5\xd8\xad\xa3\x14\xe2\x7a\x6b\xaa\xec\x48\xfd\xa8\xe3\x0c\xbf\x95\xab\x28\x3a\xba\xe9\x17\xc2\x04\x97\xf3\x7f\x17\xb9\x49\x96\xe7\xaf\x8a\xba\x0e\xe5\xa1\x50\x6f\xad\x33\xe8\xfd\xa2\x16\xeb\xb3\x01\x60\x50\xbe\x09\xbd\x71\x0c\x6c\x2c\xd4\xe6\x2c\x0d\xe4\x2b\x6e\x57\x98\x8e\x13\x45\x11\x56\x0d\xcb\xf1\x30\x63\x92\x40\x1c\x2e\x33\xb1\xbc\x3e\xce\xca\x52\x47\x5a\x51\xb7\x33\x1f\x7e\xca\xea\xa1\xb1\x22\xa1\x79\x82\xb0\x5a\x51\xa7\x41\xe4\x0d\x0e\x07\x5d\xd7\xb1\xfe\xc4\x35\xed\xed\x30\x2f\x72\xf6\x8d\xd0\x9f\xc3\x42\x24\x08\xcd\x4c\x8f\x4a\x7e\xd4\x2c\x50\xda\x76\xa8\x85\x3d\x17\xea\x6e\xba\xe1\xf8\xd3\xff\xa5\x00\x12\x3e\xba\x15\x82\x92\xd8\x1d\x9c\xab\x4e\x8a\x5a\x39\x59\xcd\x90\xa6\x2b\xe7\x09\xfd\xbc\xe1\x09\xce\x16\x70\xb0\x6a\xe3\xfc\xdf\x38\xa1\xc5\xa5\xa3\x93\x91\xcd\x4f\x16\x12\xb6\xcc\x75\x23\x5f\x9f\x73\x70\xad\x9b\xc9\xbb\xa4\x24\x99\xbc\x4b\x0c\xbb\x45\x96\x3e\x82\xd2\x9a\x16\xe8\x76\x69\xeb\x97\xca\x1d\x93\x1c\xc2\xd2\x05\xe9\x7a\x61\x5e\x23\x16\xb2\x97\x5a\xd3\x44\x2f\xca\x99\x51\x61\x33\xa0\x7d\x34\x25\x84\xa4\x8c\xf0\x14\x18\x0e\x58\x20\x74\xd6\x76\x39\x63\x68\x66\x5f\xcb\xcb\xb3\xb4\x70\x85\x92\xcb\x85\xae\x5d\x91\x22\x5e\xbb\x42\xb3\xf6\x4b\x93\x91\x7f\x4c\x2f\x38\x78\x1b\xfb\xa4\xbd\x1e\x9c\xef\x65\xb5\xfc\x33\xfd\x9e\x38\xbe\x4e\x62\x6e\x30\x3d\x4b\xe5\xbc\xe3\x48\xcb\x64\xb8\x5e\xb7\xf6\xb8\x28\xeb\xd7\x90\xb2\xcf\x1c\xaf\x27\xfb\xce\xdc\x6e\xd3\xb4\xc7\xf0\x4d\x33\x15\x6b\x0e\xb2\x11\xcd\x1e\x97\x57\x23\x75\xaf\xc6\x7f\x4f\xe9\x9c\x2d\x70\xd1\xc6\x96\xd9\x75\xdc\xb2\x84\xb3\xd7\x06\xbe\x08\xb9\x3e\xe3\x24\xb1\x04\x6c\x89\xf8\x88\x61\x2c\xbf\x13\xf2\xca\x0e\x63\x3f\xfb\xcf\x80\xa8\x9a\x58\x6c\x4d\xad\xb7\xef\xed\x36\x15\x5e\x09\xed\x99\x0f\x02\x7a\x6b\x57\x76\xe6\xb9\xd4\x99\x0b\x52\xc1\x67\x25\x0a\xfc\x6c\x74\x16\xde\xfc\xb7\x01\x42\xa5\x83\xe2\xb8\xad\x8a\x32\x10\xeb\x65\xc6\xce\x99\xe0\xb7\x3f\x55\x45\xbf\x1d\x08\xb4\x65\xb6\xc9\x6c\x2d\xb3\xef\xdd\x1a\x78\x37\x5a\xe6\x33\xf0\xfd\xf4\x70\xed\x08\x90\xb6\x6e\xff\xac\x4b\xc0\x22\x74\xdd\x22\x47\xd3\x55\xed\x74\x34\xc1\x60\x20\xce\x20\x7a\x3b\x73\xbd\x01\xb9\x4f\x96\x58\x8f\x11\xb7\xa8\xe6\x24\x18\x9f\x21\xce\x2a\x68\xf7\x87\x66\x15\x4a\x52\xdb\x55\x58\x92\xda\x4a\xbe\x72\x32\x5f\xe0\x8d\x41\xe7\xd7\xe4\x68\x3a\x68\x1d\x8e\x34\xae\xc3\x91\x62\x95\x56\xa4\x99\x17\x0b\xcc\x26\xf6\x79\x58\x43\xdc\x17\xc3\x60\xaf\x10\xca\x48\x25\x71\xb6\xd9\xcd\x3e\xa1\x41\x86\x69\xf0\x92\xb3\x18\x7c\x33\x1a\x65\x60\x67\x94\x6e\x48\x86\x05\x4d\x33\x89\x68\x71\x8e\x30\xa5\x69\x85\x73\x84\x66\xb9\xba\x46\x2b\x34\x4b\x2d\xb6\xde\x9c\xe9\xd4\xf9\x67\x5f\x30\x9e\x2d\xd0\x2c\x6c\xaa\x6d\xcb\xaa\x07\xba\xfd\x07\x13\x74\x5a\x93\x53\xbc\x06\xf7\x77\x34\xdd\xa8\xa9\xaa\x16\xed\xbd\x76\x2d\x17\x2a\x68\xc0\xd5\xd7\xd0\x2d\x4c\x6d\xc7\x41\x59\xab\xae\x50\x99\x33\xa6\x19\x75\xcf\x40\x72\x66\xd4\x1b\x86\xc9\x37\x63\xd9\xfd\xf8\x9b\x64\x58\x29\x0d\x09\x51\x6d\x8e\x4b\x7a\x43\x4b\xab\x2b\x51\xad\x64\x31\x3e\xfe\x26\x99\x0c\x4d\xbb\xf5\x70\xa9\x0e\xe9\x25\xed\xad\xf8\x0d\x1a\xd8\x25\x36\xa7\xd1\x59\xdd\x18\x9b\xa0\x2b\x98\x5f\x28\x27\x9b\xe7\x3c\xcd\x2d\xb8\x9b\x13\xb5\xb4\xa7\xac\xb4\x6e\xae\x1e\xf7\x13\x65\xff\x4c\x7c\xc4\x8d\xd3\x21\x49\xde\xb9\x36\x45\xed\x37\x6d\x59\x1a\x36\x0d\xb4\x0c\xdb\x4f\xd0\xd6\x6b\x3f\x95\x38\xbc\x2d\xac\x7b\x6f\x53\x40\x3f\xaf\x8f\xa0\xbc\xa2\xc2\xba\x42\xea\x55\xb6\x6b\xc7\x3d\xa7\xc7\xd3\x45\xa8\xad\x1d\xab\xee\x60\xce\xb6\xb6\x3e\xf2\x83\x78\xdb\xad\x2f\x83\xf1\x34\xe2\xc8\x72\xaf\x46\xa7\x5e\xc6\xc8\xf0\xae\xa8\x78\xb6\x57\x9b\x53\xad\x6e\xa4\xe6\x7e\x25\x50\x55\x2d\x1e\x18\x37\xa2\x7e\xea\x86\x6f\x50\x63\x8d\x2d\x86\xc9\xda\xb7\x12\x8e\x7b\xf3\xbe\xb1\x39\x40\x14\x5f\x11\x20\xc5\x7b\xab\x2b\x00\x8b\xd7\x7c\xbd\x57\xb7\xd5\x68\xde\xd9\x90\x0a\x14\x39\xea\xae\x85\xaf\xee\x5a\xf8\xea\xae\x76\x93\x1d\x3d\xd7\x80\xd4\xc9\x3a\xc3\x76\x96\x55\x8d\x3a\xb6\xaa\x3a\x67\xdf\xa2\x76\x6f\x5c\xb7\x01\x75\xc4\x22\x0b\xd2\x55\x72\x0d\x29\x86\xe8\x80\x74\xce\xbe\x01\x19\x9e\x5c\x3f\xfc\x99\x73\x1e\x83\xdc\x58\x65\x67\x64\xb6\x6e\x6c\x70\x6d\xe6\xbe\xf1\xbd\xd9\xab\x1c\xac\x50\x4e\x64\x64\x5d\x9d\x62\x67\x58\xaa\x56\x6c\x4c\x3a\xc7\x1f\x90\x44\xec\xef\x38\x99\x27\x7f\xcd\x6e\xb2\x7a\xc9\x8b\x8d\x98\x25\x38\xb9\xb9\x34\xbf\x17\xf8\x27\x99\xfd\x38\xc1\xca\xf9\x34\x4e\x5e\xbe\x78\xfd\x1f\x09\x4e\x5e\xbc\x7a\x2e\xff\x7f\xf6\xf6\xf1\xab\x73\x99\xf9\xf8\x9d\xfc\xf3\xec\xcd\xdb\x57\xc9\x02\x7f\x94\x75\xce\x5f\xfd\x70\xfe\x34\x59\xe0\x27\xf2\xe3\x9a\xd3\x55\x82\x93\x9a\x2f\x13\x9c\x5c\x66\xcb\x8f\x57\x5c\xde\x97\x09\x4e\x94\x1f\x89\x64\x81\xdf\xca\x72\xb2\xc0\x02\xbf\xe2\xe4\xee\x87\x0f\xef\xdf\xbf\x79\x3d\xbb\x93\x73\x9e\x1d\x9d\xe0\x55\xc5\xd7\xb3\xa3\x93\x1d\x7e\xf1\xfa\xa7\x0f\xef\x3b\xe9\x38\x6b\x44\xa5\x15\x5d\xe4\x67\x59\xd4\x02\x8a\xbf\x3b\x7f\x79\xfe\xe4\xfd\xec\xce\xd6\x7f\xf3\xd3\xfb\x17\xb2\x61\x9b\xf0\xfe\xfc\x8f\xef\x1f\xbf\x3d\x7f\xec\x24\xbd\x7c\xfc\xc3\xf9\x4b\xe7\xfb\xd9\x8b\xf3\x97\x4f\xdf\x9d\xbb\xcd\xbc\x3c\x7f\x7e\xfe\xfa\xa9\xdb\xee\x0f\xff\xee\x75\xb4\xc3\x7f\xe5\xe4\x6e\x59\x95\x72\xaa\x9b\xd9\x5d\x4e\x37\xe2\x7a\xf6\x10\x5f\x42\xfc\xc1\x59\xf2\x08\x3c\x36\x7e\xff\xc8\x94\xf8\x3e\xc1\xd9\x4a\x50\x3e\x4b\x1e\x3d\xb0\x69\x8f\x1e\xa8\x52\xc9\x0e\xc3\x0f\xd3\xcc\x34\x6c\xc6\xa9\xdc\xd6\xb8\xac\xf2\xdb\xfe\x8e\x21\xdb\xab\x08\x09\x6e\x03\xab\xaa\x12\x7b\x1a\x90\xd9\x5e\x03\x90\xe0\x36\x70\x4d\xb3\x7c\x4f\x03\x32\xdb\x6b\x00\x12\xdc\x06\xb8\xa9\xfd\x6d\xcf\xf8\x1f\x09\xee\xb5\xc0\xbf\xef\x4e\x64\x87\xdf\x73\x92\x5c\x0b\xb1\x99\x3d\x78\xf0\xe9\xd3\xa7\xc9\xa7\x6f\x27\x15\xbf\x7a\xf0\xf0\xe4\xe4\xe4\x41\x7d\x73\x95\xe0\xa7\x9c\xc8\x8d\xa3\xc5\x15\x53\x0a\x01\xb3\x29\xce\x69\xbd\x9c\x4d\xb1\x28\x44\x49\x67\xd3\x1d\x7e\xcd\x03\x65\x01\xf0\xd1\x76\x3a\x4f\x2e\x25\x4c\x17\x57\xf2\x7f\x89\x95\xfe\xd6\x54\x82\xca\x8f\x2a\xbf\x95\x7f\x78\x82\x93\x25\xc8\x5a\xe5\x8f\x2a\x97\x79\xb9\x04\xfd\xbc\xb8\x91\xff\x97\xf2\x3f\x91\xe0\x84\xae\xe1\xbf\x4b\x2a\x33\xaf\xa7\xf2\xbf\x87\xf2\xbf\x6f\xe5\x7f\xdf\xc9\xff\xfe\x45\xfe\xf7\x7b\xf9\x1f\xcd\xa0\x90\x6c\xb2\x90\xff\xd6\xb2\xfb\xb2\x80\xff\x40\x4b\x35\xc1\xc9\x3a\x2b\x98\xfc\x43\x45\x96\xe0\x84\x55\x30\x92\x4a\x76\xb7\x91\xff\xb8\x1c\x08\x6f\x2e\xe5\x20\x6b\xf9\x6f\x9d\x95\x32\xb3\xde\x64\xb2\x5a\x2d\x78\x05\xcd\xc8\x1b\xf5\xa3\x2c\x5b\x37\x97\xf0\xbf\xac\x0d\x4b\x2b\xff\xca\x81\x37\xf2\x9f\xac\x7a\x93\xf1\x64\x61\xa2\x84\xc7\xfc\xea\xbd\xe6\x73\xba\x20\x53\xcd\x09\x7e\xc1\xf1\x33\x4e\x1e\xcc\xff\x2c\x8e\xff\xcc\x87\x7f\xfe\xfc\xf8\xe4\xcf\xcd\xf4\xf7\xff\x2a\xff\xff\xd7\x93\xf3\x3f\x37\x72\x7f\x8e\xe1\xcf\x63\xf9\xff\xc3\x7f\x85\xff\xff\x0d\xfe\x7f\x26\xff\xff\x97\x67\x7f\x6e\xbe\x3d\x39\x39\xf9\x73\xf3\xec\xfc\xd9\xb3\xc5\x03\xfc\x92\x13\xc7\x28\xd1\x4a\xf3\xf3\x6a\x09\x5a\x6e\x67\x72\xcb\x66\xe6\x0b\xff\x7d\x8f\x9c\xf8\x0d\xf5\x09\x4f\x53\xc9\xf2\x62\xa8\x68\x36\x1f\x6a\x5a\xd2\xba\x6e\xf5\x75\x62\x6f\xe3\x6e\xc1\x8e\xf9\x5b\xe3\x67\x7b\x1d\x6a\x68\x33\x7d\x00\xd4\x44\xdd\x10\x75\xdd\x87\xb4\x62\x24\xfd\x80\x64\x0e\x3f\x50\x00\xf3\x4d\xb1\xea\x36\xd9\x92\x7e\x78\xfb\x82\x10\xf2\x9e\x6f\xb7\x89\x3c\x12\x84\x10\x8a\x19\x79\xca\xe7\x10\x92\x48\x12\x2d\xf2\xa5\xc6\x89\x9b\x7b\x34\x45\x98\x8f\x46\x47\x0c\xa8\x7e\xd8\xdc\x88\xac\x29\x88\x11\x9e\x8c\xe9\x38\xb1\x71\xc1\xd9\xf0\xdd\xcf\xcf\x87\xcb\x8a\x09\xfa\x59\x24\xbe\x79\x4e\x7c\x09\x5e\xbf\x4b\xdf\x73\x27\x78\xea\xbe\xd5\x0a\xc9\x4a\x37\xac\x6d\xe7\xa9\x1e\x44\xbd\x15\x1d\x73\xb0\x30\x9a\x6f\xa7\x05\x3d\xa2\x77\x34\x8d\x6c\x2b\x36\x61\xdb\xba\x5b\x67\x82\x73\xf7\x52\x03\xc1\xf4\x6c\x30\xef\x5e\x87\x54\x1d\x7f\x1c\x7b\x5a\x7b\x62\x2c\x20\xf4\x5b\xcf\x0f\x4f\xa4\xa8\x0b\x37\xc5\x1e\x14\x27\xda\xaa\x39\x2e\x02\xe1\x73\x7a\x58\xbc\xd5\xcf\xb4\x1b\xf9\x2e\xd8\x68\x12\x97\x86\xed\x85\x0d\xe5\x46\x40\xf8\x27\xf0\xb1\x10\xbc\xb8\x6c\x44\xb8\x65\x98\xa1\x3b\x76\xe6\x17\x79\xfd\x0e\x82\x03\x73\x34\xf3\xd3\x53\x1b\x74\xef\xef\x1c\x0d\xe8\xe4\x3d\xa7\x14\x82\xea\xf2\x46\x91\x8a\x42\x07\x09\x14\x83\xd0\xcf\x8a\x41\x0b\xa3\xd1\x27\xb9\x67\x67\x3d\xab\xc9\xd1\xdd\x25\xf5\x22\x0e\x32\x72\x43\xf7\x06\xe2\x66\x06\xc8\xcc\x9e\xb3\x60\x53\x93\x04\x61\xeb\x18\xfb\x22\xb2\xe4\xfd\x40\xad\xd7\xa7\x58\xc1\x4d\x47\x08\x61\x28\xaa\x20\xe3\xd7\xf7\x9c\xf1\xca\x06\x74\x40\xf1\xa3\x29\xae\x08\x3f\xe3\x93\x0d\xa7\x37\x45\xd5\xd4\x3a\x66\xeb\x4c\x40\x20\x6c\xb0\x7a\x1d\x54\xa3\x51\xe5\x72\x0e\x24\xa0\x43\xf4\xed\xa3\x13\x1b\xb4\xda\x1c\x4f\xe7\x84\x19\xdb\x1e\x8e\xda\x80\xc5\x5f\x32\x42\xc3\x79\x1e\x8d\xc4\x84\xd3\x75\x75\x43\x61\x38\xb1\x3e\x10\xce\x00\x06\x04\x9a\x89\x5d\xfa\x92\x63\x8e\x70\xb8\xdd\xca\x53\xb2\x81\x56\x90\xe0\x6c\xe4\xbe\xb7\x49\x5a\xfd\x23\x8a\xdb\x07\x11\xd7\xbb\xb1\x23\xd7\xb4\x47\xae\x3c\xf0\xc8\x2d\xbf\x70\xff\xc1\x0d\x66\xbb\xff\xc5\x76\x9b\x48\xd4\x5f\x7c\x31\x1c\xc8\x86\xac\x7a\x93\xbe\x4e\x26\xa2\x7a\x59\x7d\xa2\xfc\x49\x56\x53\x08\x3b\xf4\x57\x3e\xaf\xba\x22\xa3\xec\xec\x8b\x7a\x99\xe5\x72\x8e\x19\xd6\x06\x3f\x6a\xab\xe2\x1b\x25\x31\x76\x64\xab\xae\x28\xa8\xbb\xf8\x9b\xc5\x7e\xe5\x66\x5d\xb7\x9b\xb5\x3a\x70\xb3\xd6\x5f\xb8\x59\x05\xae\x5a\xf7\xf6\x6a\xc3\x2a\xbd\x61\xd5\xe1\x6b\x28\x5b\x99\xf9\x64\xc1\x11\x21\xfc\x0b\x1b\xb8\x05\x77\xf1\xda\x1b\x96\xb3\x05\xf8\x3d\x47\x98\x4e\x9e\xbe\x79\xd5\xc1\x9e\x7c\x87\xd2\x17\x7c\xbb\x4d\x5f\xf0\x36\xa4\xdc\x8f\x3d\x7e\xcf\x01\x57\xbe\x09\x71\xe5\xf9\x7d\xb8\xd2\x12\x71\x1c\xb3\x76\x8a\x4a\x6a\xc6\xf6\xdd\x4b\x7b\xae\x10\x49\x37\xc4\xae\x89\x9e\xda\x1d\x1f\x60\x12\xc5\x76\x2e\x20\x95\xee\xb7\xa2\x10\x53\x7c\x18\xb2\x89\x20\x3f\x0d\xaf\xc1\x20\x3f\xe2\x8c\x2c\x52\x26\x32\x9b\x30\x94\x7e\x9f\xf0\x2f\x76\x34\x2c\xde\x60\x55\x4e\xdf\xdf\x6e\x28\x21\x44\xb6\x34\x79\xfa\xe6\xc9\x87\x57\xe7\xaf\xdf\x5f\x3c\x7b\xfb\xf8\x39\xfc\x78\xfd\xe6\xe9\xb9\x04\x9c\xb3\x94\x11\x31\x59\x15\x5c\xdf\x11\x20\x25\xb2\x37\x86\xf1\x59\xec\x5c\x0c\x6a\x14\x8a\xbb\x2d\x52\xaa\x1c\xc2\xcf\xd2\xbd\x05\x3f\x0b\x58\xc5\xe8\x4c\xe5\x1d\xb4\x6f\xa6\x5a\xf2\xe7\x13\x66\x81\xa1\x79\xd0\x2f\x93\x78\x80\xc5\x3a\xfb\x12\xd2\xb4\x5b\xfb\xf1\x4a\xd0\x2e\x8e\xeb\x99\xb9\x1b\x38\xdd\xd2\x35\xf8\x07\x4e\x7e\xe4\x83\x1f\x7a\x28\x98\x97\x1c\x48\x98\x97\xfc\x1f\x4a\xc3\xf0\xff\xa1\x61\xfe\x89\x34\xcc\x09\xfe\x41\xed\xfb\xff\x10\x31\xff\xfd\x89\x98\x1f\xb4\x9a\xca\xdf\x38\xfe\xc0\xc9\x0f\xff\x43\xd0\xfc\xd7\x12\x34\x3f\x28\x8a\xe6\x67\x4e\x5e\xf0\x18\x55\x83\x7f\xd9\xc3\x62\x7a\x42\xbb\x86\xb4\x71\x23\x84\x7b\x5e\xb0\xda\x8c\x07\x64\x46\x60\x76\xec\x19\x81\x57\x11\x3e\x00\x68\x4a\xd1\xed\xd6\x02\x28\xdd\x6e\xf5\x12\x53\xc5\x24\xd3\x4e\xc4\x93\x64\x16\x0b\xe9\xa1\xca\x58\xd3\x93\x9d\xbc\xef\xde\xd3\xb4\x42\xdb\x6d\x11\x52\x43\x76\x6e\xb8\xc2\xa1\x83\x15\x15\x0d\x7f\xef\xeb\x5c\x8d\x8a\x3b\x63\xe5\xdb\x2d\x8c\x9f\x9f\xc9\xa7\xfb\x15\x15\x4f\xdf\xbc\x4a\x51\x94\x76\x71\xe2\x34\x42\x20\xe6\x9e\xb2\xee\x28\x75\xc0\x0c\x6f\x12\x96\x73\xb3\x4b\x11\xfe\x53\x2f\x4d\x6a\xa1\xf5\x49\x7b\x38\x7e\x3a\xf0\x70\x7c\xfc\x52\xaa\xf3\xbd\x24\x32\xb6\xdb\x54\xcc\xed\xd0\x17\x24\x24\x0b\xf6\xd1\x8c\x01\x01\x23\x1b\x18\xf0\xfb\x16\x54\xee\xc9\xfe\x85\x0c\xc9\xd6\xfb\xb7\xd8\x9f\x01\x86\x89\x69\x3d\xc1\xb0\x79\x08\x04\xa8\x4e\xe0\x2f\x1c\xe1\xff\xf8\x2f\xde\x0a\x4b\xbe\xc7\x0b\x06\x97\x74\xa6\xc2\xa7\xb5\xe7\x81\x85\x04\x67\xef\x5a\x45\x3a\x0a\xca\x1e\xd6\xd7\x2e\xfd\x13\x47\xf8\x39\x68\xa5\xa5\xff\x1d\xa0\x58\xe8\x38\xf6\x3f\xa6\x21\xe8\xee\x87\x1b\x0b\xba\xe0\x6c\x0d\xda\xc0\x15\xb4\x32\x28\x8e\x08\xa9\x20\x2c\x9a\x6a\xba\xb2\xf0\x82\x52\x1d\x38\x0d\xe1\xdf\xfd\xf7\x59\x02\x1d\xe3\x85\x3b\x9e\x86\xf8\x68\x74\x34\x55\x7f\x53\x31\x91\xb4\xdb\x52\xd0\x9c\x1c\x9d\x7c\xdd\x1a\x0d\x98\xd3\xc6\x11\x37\x70\x80\xd2\xc4\x24\x27\x08\xff\xe1\x7f\xce\xd2\x97\x9e\x25\x89\x82\xfe\xf3\xff\xc2\xf0\x7f\x7f\xdc\x1b\x1d\x52\x92\xdb\x4f\x03\xd2\xa6\x2e\xab\x56\x8d\x79\xd9\x1a\x25\x1a\x35\x66\x6a\x8c\xba\x6d\x54\x1d\x6b\xec\x4c\x8a\x96\x22\xe2\x55\xe5\x88\x22\x1c\x0b\xa2\xaf\xf6\xe2\xa8\x54\x94\x95\xa6\x0d\x1b\x4f\x5d\x83\x48\xc2\x94\xa1\xf7\x9c\x2f\xc8\x9f\xa8\xab\x23\x4a\x8d\xaf\x82\x36\x54\xd7\xa4\x60\x85\x48\xef\x6a\x5a\xae\x66\x42\xa9\x87\xd6\xc5\xdf\xa9\x17\x5a\xa0\xd7\xe5\xe4\x81\x4e\xc6\x30\x73\x06\xcb\xcd\x60\x95\x62\x10\xe1\x2a\xc6\xe0\x5c\x74\x07\xcb\xc2\xc1\x86\x52\xad\x22\xa6\xb2\x2b\x8f\x5f\xb9\xf2\x75\xab\xe4\x2e\xce\x4f\x16\x7a\x23\xbb\x1a\x66\x5e\x70\x0e\x5f\x5e\x73\x45\x45\x1a\x7a\x29\xb5\xf6\xf2\xbd\x92\x2a\x59\x2b\xe2\x6c\x7c\xbf\xae\x51\x4f\x25\xeb\x38\xa0\x6f\x88\x16\x08\xfb\xa2\x72\x48\x68\xec\xa9\xdb\xc2\x6b\xd7\x51\x6c\xcc\xdc\xa4\xa6\x22\xed\x3a\xbc\x36\xce\x0c\xba\x56\x24\xb2\x7c\xd7\x39\x79\x6b\xab\xfb\x65\x7d\x84\xeb\x77\x40\x95\xc8\xea\x99\xb1\xb5\x87\x97\x76\xeb\xc5\x96\xce\x3a\x70\x6d\xf3\x22\x35\x1d\xdb\xe5\x6e\x55\x17\x87\x74\xf7\x2b\x5a\x35\xf0\x7e\xd8\x16\x09\x44\xa8\xd7\x45\x99\x47\x6a\xa9\xb3\xd4\x9e\x03\x6d\x18\x88\x3a\x38\x2d\xc0\x68\x21\x3e\xeb\x02\xa6\x37\xbb\x62\x95\xd2\xef\x89\xd3\x4d\xc7\xd1\xc9\xdb\x8c\x5d\x51\x37\x70\xbb\xd6\x18\xbe\xa2\x62\xf8\x3b\x25\x5c\x5f\xf1\x6a\x3d\x04\x13\xef\xd3\xa1\xaa\x6f\xac\xa9\xbd\x36\x23\x87\x9b\x2e\x3a\x11\x04\xba\x7c\xa1\x7f\xde\x00\xbd\x91\x41\xc8\x57\x79\xff\xfc\x7b\xbf\x2e\x72\xe7\xe2\x59\x5e\xd3\xbc\x29\x69\xfe\x82\xd5\x22\x2b\x4b\xed\x81\xc6\xd1\x1e\x0e\x0b\x18\x45\xec\x6e\x89\x0f\x40\x25\x98\x02\xfd\x2d\xf9\xe5\xda\x02\x8a\xdd\x92\x5b\x85\xfb\x4e\x4e\xa7\x49\x45\x97\xc4\x6a\xe8\x9c\x4e\x8d\xdc\x86\x87\xea\x53\x57\xb6\x4e\xdc\x62\xe7\xbf\x33\x44\x3f\x3a\x5a\x30\x4e\x63\x2e\xd7\x09\x7f\xa4\x56\x20\xd6\x41\x67\x46\x7e\x07\xc1\xb4\xe2\x1d\x98\x85\x0e\x76\x2c\x8a\xcf\x7a\xb6\xdf\x37\xf4\xeb\x85\x81\x1e\xdd\x64\x5d\xdc\xdf\xe7\xbd\xdd\xc7\x41\xa7\x67\x14\x01\xfc\xc4\x07\x91\x17\x39\x84\x02\xab\x22\x11\x37\x1c\x20\x88\x57\x56\x01\xbd\x42\xda\x44\x3f\xc8\x5d\x8f\x3f\x78\x89\x73\x12\x87\x0c\xbc\x21\x31\x98\x00\x9a\x84\x92\x93\x53\xfa\x28\x37\xa4\x2e\x1d\x8f\x91\x20\xf9\x9c\x2e\xf0\x66\x4e\x17\x2d\x08\xa6\xc2\x38\x35\x8b\x03\x07\x5e\x91\x18\x58\x38\x44\xda\xb5\x4b\x4e\x33\x72\x3d\xe7\x0b\xbc\x9a\xf3\x45\x0b\x85\xa9\xe6\xde\x6b\xf7\x3f\xce\xda\x38\xa6\x34\x6b\xd7\x94\x66\x3d\x2f\x16\xaa\x5c\x75\x9b\x1a\x77\x64\x7b\xc1\x09\x5f\xf5\xe4\x9b\x3d\x84\xae\x2a\x72\x72\x5a\x3d\xba\x35\x5d\x55\xe3\x31\xca\xc8\xed\xbc\x5a\xe0\x9a\x5c\xc9\x3f\xd9\xa4\x50\xf5\x4c\x4c\xe0\x4b\x72\x08\x18\xe1\x9b\xbd\xc5\x54\xe7\xca\x01\xd5\xa5\xeb\x80\xaa\x24\x97\xf3\x66\x81\x97\xe4\x46\xfe\x29\xf5\x2a\xa7\x4b\xc3\xe8\xa2\xac\x9f\x77\x19\xe2\x59\x08\x5f\x29\x3c\xe7\xb7\x27\x06\xfb\xfc\xa7\xe3\x51\x58\x82\xdf\xfd\xce\x80\xaf\x6c\x14\x6c\xa7\xc1\xd6\x39\x70\xb5\x99\x7e\x65\x1b\xe3\xa9\xdb\xca\xc3\xaf\x6d\xe5\xa1\xdb\xca\xb7\x5f\xdb\xca\xb7\xc8\xfa\x2b\xf6\x55\xae\xe8\x9c\x4e\x1e\x97\x65\xb5\x94\x40\x4f\x4e\x16\x24\xb1\x5f\x09\x96\x99\xcf\x38\xa5\x39\x99\x2e\x48\x02\xbf\x54\xe2\x4f\x0d\xbf\xa2\x39\x79\xb8\x20\x89\xfa\xa9\x93\xab\x02\xc2\x0c\x7c\x2b\xd3\xd5\xef\x64\x87\xd2\xbf\xf1\xed\x36\xfd\x9b\x23\x6a\x17\x0c\xf3\xbe\x0d\xef\xd9\x6f\x6b\x1e\xa3\x37\x5c\x67\x81\x9d\xa3\xf9\x52\x0f\xd3\xf8\x55\xd4\x89\x24\x6a\x9b\x76\x9d\x11\x8f\xc7\x8b\x08\x89\xa7\xd6\xb3\xf7\x0d\x00\x8d\x44\x88\x99\x4e\x35\x8b\xab\x75\x8d\x30\xae\xbc\x0a\xbb\xda\xd1\xd8\x14\xca\x39\x0f\xe0\xef\x76\xa8\x10\x2d\x75\xa0\xe2\xd4\x38\x6b\xe1\xd1\x59\x2a\x69\x4c\xbe\xc5\xc1\xa4\xdc\x48\xa0\x7d\xfa\xfd\xd0\xad\xc4\xa3\xdc\xf5\xa4\x3c\x70\xf3\xc6\xd3\x05\xe1\xc7\xc1\x2c\xea\x3d\x41\x49\x55\x1b\x9d\x05\xde\xbb\xbc\x66\x1c\x9d\x5a\x7a\xf3\x3b\x9b\xea\xac\x17\xc5\x27\xf8\x6f\xdc\xc0\xa5\x06\xbe\x03\x96\x2b\x32\xa5\x2a\xf2\xdc\x0c\x6d\xf3\x57\x9c\xf6\x8d\x67\x4e\xc7\x0f\x17\x24\xe2\x24\x3b\x5b\xee\xbb\x1c\xc9\x89\x09\xf8\x2f\xb4\xdb\x52\x67\x8a\xda\xab\x5d\xd3\x46\xee\x75\x6e\xc4\xfa\x54\xce\x04\x15\xab\x54\x90\x4c\x6d\x63\x06\x3b\x86\x53\x06\xbf\x1e\x2e\xd0\x11\x21\x72\x75\xe0\x04\x83\xb1\x22\x81\x04\x38\xe8\x48\x95\x21\x0f\x71\x35\x26\xbc\xb5\x51\x54\x45\x2c\x92\x30\x51\xe9\xc5\x69\xf1\x88\xd0\x31\x87\x5b\xad\x99\x17\xc7\xd5\x02\x4c\x44\x07\x19\x00\xfa\x71\xb5\x83\x16\x74\x75\xbd\x21\xa3\x51\x6a\xb2\x35\xfd\xad\x8f\xb7\xf3\xfb\xb8\xd2\x57\x04\xfb\x42\x8c\x21\x9f\x07\x5c\xb3\x78\x2e\xaa\xcd\xb2\xca\x29\xa4\x51\xd6\xfa\x90\x0f\x43\x49\x6a\xa6\x47\x0c\x81\xe8\x16\xfa\xa0\x54\xf7\x60\x26\x40\xbd\x7e\xf5\x0c\xaa\x3d\x97\x9c\x71\xc1\x93\x05\x42\x35\x30\x5a\x56\xb7\x65\x9b\x38\x08\x27\x7c\xa1\xdc\xed\x3a\x36\xf9\x17\xc2\x89\x9c\xda\x26\x9b\x08\xd2\x72\x9e\xcc\x48\xac\x82\x2e\x0d\xa3\x2c\xec\x95\xb0\xd8\xba\x88\xea\x49\xc5\x72\xed\x03\x6f\xaf\x71\x22\x58\xa7\x77\xf5\x88\x23\x92\xc4\x3e\xf4\x11\x8e\xb4\xd3\xd0\xd3\x37\xaf\xfa\xea\x86\xb3\xe9\xd4\x7d\x91\x53\x26\x0a\x11\x33\xb4\x03\xaf\x1f\x94\xd5\x0d\xa7\xcf\x9b\x22\x47\x29\x45\xe3\x24\x09\xd8\x08\xf4\xaa\xf0\xf6\xd7\xf7\x6d\xd2\xd9\x14\x9c\x64\xc3\x2b\xe5\xa7\x6c\xe8\x24\x83\x0f\x95\x4b\x7a\xd5\x30\x3c\xbc\x6c\xc4\xb0\x62\x74\x98\x95\x9c\x66\xf9\xed\x90\x7e\x2e\x6a\x51\x4f\x86\x7f\xaa\x1a\xf0\x8d\x7e\x9d\xdd\xd0\x61\x36\x64\xb4\x16\x34\x77\x1b\x31\x71\xf4\x7d\x20\xa0\x9f\x86\xff\xce\x3b\x94\x7d\xff\x03\xcd\xa9\xec\x90\xd1\x5d\x96\xcd\xde\x47\x58\xd0\x88\xa6\x93\xbb\x8d\x7c\xc1\x43\xcb\x6d\xb2\xa7\xda\x9e\x0e\xee\x7f\x49\xc5\xda\xf7\x6b\xc5\x17\xa1\xf7\x8d\x14\xac\x81\x2e\x77\xe8\x4b\x89\x84\x6d\x0c\x7a\x0e\xb8\x69\x21\x0c\xa1\x93\x19\x59\xc3\xb3\x2a\xd4\xe1\x70\x98\xf1\x6f\x63\xbb\xa2\xd1\x4a\x7c\x48\x1a\xe9\x98\x2b\x94\x6e\xb7\xa9\x87\x8c\x74\xb1\x4d\xb5\x69\xca\x4c\xd0\x1f\x9a\xa2\x14\x05\xab\x53\x84\x42\x72\x24\x2c\x12\x39\xc3\x7f\x94\xb3\xf2\xa8\x7b\x07\xdc\xf7\x11\xc5\xee\x3a\x59\x1a\x18\x67\x7d\xa8\xf8\xff\x60\x51\x4a\xdd\x37\x67\x47\xb1\x83\x4d\xb2\xf2\x53\x76\x5b\xbf\xa5\x10\x3b\x2d\x13\x14\x57\xc4\x0a\x0c\x8a\xd1\xa8\x18\x3c\x0b\xee\x9e\x15\xcf\xd6\x14\x42\xa3\x00\x8a\x11\x13\xf8\xed\x78\xf1\x08\xef\x58\x6e\x6e\xa1\x36\xcd\xd8\x3d\xad\x09\xb7\xf2\x7e\x7d\x39\x05\xc3\x21\x55\xec\x12\xa2\x9f\xe9\xb2\xab\xa7\xea\xb9\xce\x6c\x87\x39\xb0\x21\xb0\x04\xbf\x85\x92\xa7\x47\x6c\x52\xd4\xe7\xeb\x8d\xb8\x4d\xd1\x29\xd2\x52\x52\x1b\xf3\x4e\xd6\x54\x1a\x8c\xc6\xc9\x41\x8a\xd0\x19\x07\xbe\x6b\x03\xac\x85\xeb\xa2\xd6\xba\x1c\x6d\x37\xca\x77\x78\x70\xcd\x54\x22\x12\x9c\x50\x75\x20\xf3\x3a\x38\x41\xf0\xdb\x18\x8a\x72\x7b\x31\x01\xf4\x37\x4c\xef\x0b\xee\x44\xc2\x06\x7e\x69\xe7\x5d\xa1\xba\x55\x44\xef\xf9\xe7\x25\xdd\xa8\xcc\x70\x57\x63\xf3\x30\x33\x7f\xd3\x25\x8a\x68\xb0\x2c\x3b\x9c\xb1\xf6\xd4\x42\xb3\x7b\xcf\xab\xd3\x71\x18\x69\x07\x37\x2c\x2e\x37\xe6\x4a\xf5\x0e\x57\xe8\xce\x40\x27\x37\x9a\x8d\xaf\xbb\x0a\xa1\x08\x0d\x32\xe5\xbe\x87\x08\x9c\x41\x68\x21\xa2\xec\x29\x13\x9c\xc1\x46\x2b\x84\x9a\x81\xee\xa5\xf2\xd2\xaf\x9c\x5e\x31\x70\x91\xd8\x10\xa6\x9c\x9a\xe2\x92\x30\x13\xf2\x58\x31\xe0\x97\x84\x69\xa7\xac\x7a\x4e\x99\x62\xf2\x73\xca\x48\x85\x33\x38\x10\x35\xce\x54\x75\xd2\xe0\xcc\xab\x4e\x64\x9f\x50\x9d\x2c\x71\x36\xb9\xac\x1a\x96\xd7\xa4\xc0\x99\x81\xf9\x17\xf2\xb0\x52\xf0\x75\xde\x22\xcf\x8c\xb7\x01\x3b\xfa\xa8\x1f\xd5\x94\x5f\x56\x6e\x2a\xf7\x1e\x85\xbc\x0e\x4c\xc3\xa2\x8d\xd8\x72\x61\x03\x65\x76\x50\x7d\x53\x2c\xac\x6e\xe0\x26\x00\x27\x79\x48\x15\x06\xd1\x0b\x69\x04\x8b\x6e\xdd\x3c\xbc\x7b\x35\x8c\xeb\x2e\x2d\x87\x2d\xa8\x15\xb9\xb4\x8d\xa0\x89\xdd\xb8\x77\xb5\xd3\x58\xd0\x46\xd7\x09\xad\xba\x22\x5d\x4f\x71\xf6\x8a\x9c\x5c\x35\x45\x4e\x12\x2d\x7f\xb8\x90\x5f\xf8\x4e\xfe\x3f\x73\x12\xc0\xdc\x5c\xe1\x27\x89\xc9\x73\x2a\xb2\xa2\xac\x67\x14\x9b\x05\x98\x79\xcb\x31\x11\x95\x12\xd3\xa2\xc9\x3a\xdb\xc4\x2c\x61\xcd\x20\x53\xb4\x43\xbb\x1d\xe6\xbb\xf4\x6f\x14\xe1\xb2\xe7\x30\x69\x75\x48\x9c\xb5\x87\x49\xb3\x35\xeb\xd8\x61\xc2\xa6\xb4\x9d\x65\xad\x4f\x94\xe0\xb7\x09\x96\x6f\xd5\x2b\x22\xaf\xe1\xec\x8a\xf0\x09\xd0\x51\xf2\xd2\x7b\x9f\x5d\x19\xdb\x66\x3e\x79\xf2\xe6\xf5\xbb\xf7\x8f\x5f\xbf\xbf\x78\xff\xf8\x39\xc2\xb5\x03\xed\x4c\x42\x3b\xf3\xb7\xec\x05\x2b\x44\x91\x95\xc5\xdf\x95\xd6\x31\xa7\xdd\xe0\x93\xb2\xb7\x49\xc1\x18\xe5\x86\xd3\x08\x0e\xb9\x97\xd5\xfa\xb2\x60\xf4\x5d\x59\x2c\x29\xf2\x81\x4a\xa2\x4c\xf6\x35\xc0\xa8\x91\x9c\x5b\x37\x40\xa9\x71\xf2\xc9\xb0\x55\xb4\xcf\xd5\x16\xbe\x6c\x20\x76\xd3\x43\x65\x58\xae\x12\xc1\x68\x6e\x80\x87\x74\x6a\xe3\xa9\x24\xe3\xc2\x70\x03\x54\x0c\x93\x52\x93\x60\x9c\xde\x60\xe3\x2f\x8f\x7e\x16\x83\x62\xb2\x2c\x69\xc6\x53\x13\x88\xe4\x27\x70\x38\xda\xac\x55\x7c\x16\x06\xc1\xfc\x94\xfb\x32\xf5\x8e\xbe\x65\x29\x07\x4e\x7d\x8e\xf0\xb5\xbe\xe6\x5f\x16\xec\x23\xcd\x5f\x16\xb5\x18\x6c\xcc\x05\x9c\x3a\xce\x3d\xc1\xb5\xa7\x42\x66\x6b\x68\x51\x54\x9c\xa6\x0d\xc2\xfa\x3d\x5b\xb0\x2b\x75\x7d\x38\xf7\xd8\xb5\xcd\xa5\xbf\x14\x42\xc9\x6a\xfa\x4b\x17\x68\x67\xa2\x47\x4a\x3c\x5d\xb6\xd1\x8b\xc9\xd2\xdf\x91\xf8\x21\x15\xa4\xeb\x4d\xda\xb9\x25\xc0\x7d\x98\x3e\x7d\xae\xff\x35\x27\x99\xdc\xed\x50\xc4\x25\xb5\xd3\xc8\x0e\xb3\x5d\xda\x30\x84\x97\xbd\x8f\x7f\xcc\xdb\x93\x66\x03\x2b\xa8\x8b\x55\x73\xb9\xd7\x19\xff\x48\xb9\xa1\xa4\xe0\x08\xc8\x67\x25\x39\x9a\xda\x94\xa7\xb4\xa4\x82\xda\x94\x75\xb6\x21\x42\xfe\xef\x3c\xe5\x0b\x76\x45\x84\x05\xab\xb8\x03\x72\x68\xd6\x21\x38\xb4\x8e\x8d\xd6\x44\xd7\x2d\x1b\x20\x54\x83\x34\xe0\x67\xfa\x90\xd7\xa3\xbc\x3d\x4b\x1d\xde\x86\x14\x67\x69\x49\xaa\x79\xb1\x40\x91\x1b\x64\xe6\x4c\x70\xa0\xdc\x3a\x66\x93\x9b\xf5\xb3\x8a\xab\x39\xca\x61\x34\x08\xab\x58\x39\x78\x43\xf4\xc5\x3d\x58\x5a\x90\xdb\xb4\x20\x57\xa0\xbb\x6a\x4e\x17\x24\x27\x85\x89\x71\x9f\x32\x49\x0a\x17\xfd\x40\x14\x02\xb3\x2d\xac\x20\x30\xdf\x5b\x39\x6f\xf1\xc7\x0e\xe1\xc0\xf2\x25\xc7\x25\xea\xec\xd8\x49\x27\x78\x6e\xe6\xb3\x0d\x82\x07\x58\x75\xd3\xaf\x85\x6d\xf7\xa3\x0a\x76\x20\x23\xc5\x9c\x2e\x70\x4d\x8a\x39\x5b\x28\x6d\xeb\xc1\x79\x9a\x61\x76\xd6\xbb\xf6\x08\x57\x5a\x03\x36\xcd\xe4\x6f\x6f\x26\x19\x0e\x83\x81\xe7\x0a\xdc\x7a\x58\xc7\x72\x4c\x9c\x88\x39\x5d\x0c\xb8\x7b\x8b\x22\xfc\x19\x9c\xa1\xbb\x83\x35\xbd\x72\x84\x55\xa3\x43\x59\xaf\x03\xd7\xc1\xba\xe5\x15\xeb\xc6\x04\xd6\x2c\xb8\xe8\x15\x91\xfa\x1b\xb1\xdd\xfa\x1d\xd8\x30\x80\xbd\x97\xa2\x95\x54\x76\xae\xc5\x32\x7a\x2d\xea\xf2\x08\x0d\x4a\x7d\x1f\x96\x45\x2d\x8e\x35\x99\x59\xc2\x09\xf5\xbc\xc9\x96\x40\x18\xbd\x50\x60\x9b\x13\x3e\x79\xf1\xfa\xc5\xfb\x17\x8f\x5f\xe2\x72\x92\x71\x51\xac\xb2\xa5\xa8\x49\xa3\xcf\x48\xf9\x05\x17\xaa\xc1\x5d\x25\x5c\xc5\xee\x45\x88\xd2\x79\x23\x13\xf1\x72\x81\x70\xf9\xab\xae\x5d\x75\xb1\x1d\xa5\x07\x2b\x9c\xa1\xed\xd6\xfd\x54\x4c\x0d\x6f\x05\xd4\xfb\xcf\x4c\x5d\x8e\x53\x69\xd9\xa6\x08\x53\xad\xb3\xfd\x8f\xb8\xe7\x45\x10\x14\x29\x18\x87\xb9\x60\xdd\xa1\x0e\xec\xe8\xe0\x8d\x9a\x36\x68\xbb\x4d\xfd\x4b\xbd\x22\x69\x21\xef\x8d\x6a\x8d\x22\x16\x67\x85\x6b\x54\x97\xb2\x90\x4e\xc7\x15\x04\xa6\x30\xe7\x16\xe1\x4c\xf9\xd6\xd7\x2f\xbe\x4a\x19\x16\xf2\x89\x1a\x4f\xc5\xdf\xdd\xb2\xe5\x35\xaf\x58\xf1\x77\xca\xd3\x3b\x15\x81\x77\x96\x61\x3b\x87\x59\xbd\x43\x93\xfa\x96\x2d\x6d\xf4\x65\xbf\x3f\xcf\xa8\xab\x42\x28\xfa\xf6\x73\x49\xc0\x60\x51\x7d\xfc\xdd\x87\x25\x24\xe5\xc3\x5d\xda\x86\x45\x68\x9b\x42\xd2\x26\x2b\xd9\x1a\x40\x9f\x72\x2b\x98\xda\xfa\x7b\x1e\x37\x98\x22\x57\x37\xf1\x96\x59\x95\xd1\xdf\x88\x36\x30\x98\x8e\x19\x5f\x3d\x1f\xe9\x6d\x9d\xf2\x5e\x32\x1c\x9a\x50\x3e\xe3\x8a\xd5\x2d\xf0\x90\x67\xc3\x64\xcc\xe7\x74\xa1\x28\xff\x1d\x9a\xfc\xb5\x2a\x58\x9a\xe0\xa1\x84\x89\x2e\xf5\x51\x6c\xb7\x69\x11\x50\x1f\x05\x60\x92\xe4\x2e\x19\xb3\x71\xb2\x4b\xb0\xb0\x14\xc7\x66\x0f\xc5\x21\x2f\x91\x90\xe6\xb8\x59\x5b\xa9\xfa\xc6\x0a\x01\xa8\xa1\x62\x7f\x54\x2e\xb7\x8d\xd2\x6c\xb4\xb0\x7e\xb0\x13\x3e\xb9\xa6\x59\x1e\xf7\x51\x13\x67\x81\x98\x9a\x01\x63\xd0\x63\xba\xf4\xb0\x21\x75\x55\x6c\xa4\x46\x9b\x96\x23\x39\x1a\xa5\x5e\xeb\x02\x1a\xd4\xde\x4c\x3a\x5c\xc8\x3d\x64\x7b\x74\x29\x34\x0e\x0a\x93\xbb\x1c\x15\x7d\xb7\x5c\xdf\xb3\x1f\xff\x4c\xdf\x96\x94\xdd\x98\xfd\xb3\xb4\x21\x77\x4f\x53\x5c\xd8\xc3\x29\x87\x03\x18\x79\xee\x7e\xa5\xa6\xf1\x5d\xc8\xe0\x9b\x1d\x4d\x77\xa8\xcb\x85\x14\x2d\x17\x92\x8e\x46\x34\xf2\x7a\x32\xf3\x18\x80\x23\x68\xf9\x60\xe9\xb6\x2d\x76\xc8\xd2\x8d\xf6\xe9\x46\x7f\x2b\x66\x0a\xfd\xb5\xcc\x14\xfa\xeb\x98\x29\x5d\x71\x65\xaf\x24\xcd\x2c\xd6\x17\x9c\x00\x5e\x7d\x4a\x64\xdd\x61\x7d\xad\x02\x45\xd1\x1b\xca\x87\xd7\x20\x93\x4b\x42\xea\xf0\x30\x6e\x0c\xfe\x1c\x30\x56\xe0\x9c\xac\xfe\x2f\xe4\xcd\xaf\xef\xc1\x0d\x2f\x43\x5d\x53\x78\x57\xeb\x13\xbc\xda\x98\xb3\x5b\x6f\xdc\x73\x4b\xd7\x1b\x71\xdb\xa3\x5e\x2c\x8b\xa7\xf3\x05\x3e\xc1\xc7\x53\x00\x1d\xfd\x40\xef\x13\xdc\x42\x79\x6a\x15\x91\x4f\x30\xb5\xf1\x09\x42\x1d\x7f\xc5\x48\x8f\x69\x4b\x98\xa0\xdc\x75\xa0\xb9\x1e\x57\xce\x81\x39\xce\xc7\x5a\x57\x77\xd3\xd1\xcc\xc9\x9b\x4d\x17\x0f\x7d\x25\x1a\xd2\x7d\x28\x2a\xb4\x55\xb5\x51\x43\xa0\x8b\x10\x4b\x54\xbf\x5d\xcf\x53\x2c\x1c\x8e\xcd\xdc\x4c\xd6\xd7\x97\xde\x1c\x13\x1a\x2a\xa5\x6c\x28\xfd\xd8\x77\xbc\xfd\xb6\x42\x25\x15\x15\x62\xab\x57\x95\xc1\xa9\xbc\xda\x1c\x87\x8a\x37\xb2\xfa\xfb\x6a\x73\x48\xed\xba\x5b\x7b\x99\x6d\x44\xc3\x7b\x1f\x8e\xf5\x66\x3c\x1d\x74\x5a\xd3\x50\x27\x8e\xbb\x02\x4a\x60\x54\x75\xf0\x8c\xaa\xa5\x95\xbd\x4f\xc2\xa0\x61\x81\x3b\xdd\xc8\xf0\x4d\x87\x6a\x09\xb0\x1d\x9a\xc1\x50\xb7\x7b\x24\x69\x4a\x0c\x11\x9e\x57\x47\x10\xa6\x3d\x6b\x2b\x89\x59\x85\x3b\x24\x6f\x8f\x28\xad\xde\x93\x17\xe1\x4f\x74\x0b\x2d\xb3\xe5\x35\x7d\xce\xab\x66\x53\x77\x33\xe5\xdb\x14\x2c\x35\xfa\x7a\x37\x7c\x3c\xaa\x84\x64\xfa\xd9\xb0\x24\xc7\x9a\xe1\xc4\x33\xfb\xb3\x3e\x71\x14\x4e\xea\xa9\xf3\x21\xdc\x1c\xe1\xe6\x38\xeb\x03\xca\x3b\xad\x8c\x50\x7e\x1e\x2c\x41\x8c\xad\x6d\xbb\x70\x9a\xe1\x83\x7a\xd6\xdc\x32\x15\x23\x84\xcf\x8a\x8a\x65\x1f\x8a\x6a\xf1\xc5\xfc\x47\x3a\xa7\x8b\x10\x5b\x94\x55\x96\x77\xaa\xea\xa2\xc4\x6d\xa6\x2b\x67\x83\x6e\x7f\x06\xd3\xd2\x9e\xf3\xa6\xdb\xe9\xf6\x18\xd6\x32\xb2\x43\xdb\x71\x17\x05\x43\x7c\xb9\x9e\xc3\xd4\xe2\x44\x9e\xb9\x77\x90\x93\xb1\x32\xea\x54\xab\x8d\x39\xcd\xa1\x82\x9c\x09\x62\xd7\xed\x44\x57\x59\x6d\x1c\x80\x72\x7a\xb1\x71\x01\x4f\xc2\x3e\xfc\xec\xce\x6d\x14\x7f\x6e\x6c\x96\x8a\xf7\x22\x8b\xfc\x54\xd5\x9a\x47\xb0\x59\x8e\x3b\x3a\x19\x59\x59\xf6\x21\x2b\xa3\x6e\x0b\xca\xb6\x54\x2b\xb0\x99\x61\x6f\x96\xf6\x88\x88\x0e\xcb\x0f\x02\x96\x76\x47\xc5\xb3\x03\x47\xa5\x9a\xe8\x2c\xe2\x46\xb3\xf8\x79\x26\x8b\x17\xea\xc5\xdc\x96\x0a\x83\x42\x29\x6d\xb8\x94\xe3\x3f\x72\xb0\x76\x4c\x19\xce\x62\x01\x77\x8d\x85\x0c\x60\xb6\x56\xc8\xb3\x81\xe0\x11\xee\x1a\x64\x26\x4c\x23\x8e\xa2\xa4\x3e\x7e\x6b\x7d\xff\x15\xa1\x3a\xbd\x73\x8f\xec\xac\x73\x88\x41\x8d\xfc\x66\x66\xdf\x05\x75\x5b\xcc\x84\x0b\x06\x68\x99\x39\x80\xa3\x3b\x4b\x29\xda\x45\xd4\xb9\x9e\x58\x94\xd9\x59\x6b\x07\x9b\x3a\x47\xc0\xcc\x3a\x45\x13\xf9\x42\x4f\x43\x41\xbc\x52\xd0\x89\x37\xab\xa8\x08\xb9\x3c\xb9\xb0\xf1\x47\x49\xd0\xac\x15\x0e\xb9\xdd\x43\x6c\xf7\x8a\x14\x67\xac\x7d\xdf\x16\x68\xc6\xf4\x2b\x1c\x02\xed\xaa\xe1\xa8\x80\x5c\x21\x83\xcc\x6c\x49\x2d\x20\x21\x05\x69\x1e\x6e\x60\x2c\xa5\x48\xe5\x2d\x36\x60\x3e\x47\xb8\x01\xa6\x93\x56\xc8\x83\x06\x96\x22\x6d\x90\x93\x16\xc2\x2c\x78\x25\xee\x1c\x25\xde\x11\x26\xb5\xa1\x4e\xcd\xce\x98\x39\x6b\xe4\x5e\xa7\x08\x56\xdc\x72\x3e\x4d\x2c\xcd\x4a\x0d\xd8\x51\xef\x6c\xb5\x84\xcd\x51\x42\x70\x06\xb8\x3e\xac\x79\x91\x9f\x43\x60\xda\x2a\xa4\x61\x15\x63\xcf\x93\x84\x78\x1e\x2c\x94\x8c\x5f\x85\x0c\x4e\xb9\x09\x1e\x2c\xb1\x80\xc3\x9a\x37\x53\x78\x88\x0c\x87\xfe\x9e\x29\xb8\xfc\xaa\xfb\xe6\x21\x4f\x72\xe7\x2c\x45\x96\xfc\x85\xa0\xeb\x98\x0a\x89\xbd\xf1\x95\xdc\x18\xd4\x70\xb1\xbf\x2a\xd1\xf6\x64\x3f\x5f\xb1\x8d\x27\x7d\xdb\x08\x63\x90\x35\xe4\x32\x56\xde\x7d\x48\xa9\x1c\x5c\xcb\x79\xcd\x48\x6c\x45\xfa\x50\xa6\x04\x76\x38\x4d\x2c\xcd\xd4\xae\x63\xa3\x65\xec\x53\x3b\x6a\xeb\x6a\x14\xcc\xbe\x23\xf2\xd0\x19\x5d\xbc\x1d\x08\x2c\x7b\x28\x32\x0d\x21\x8e\xc4\xc8\x5f\xdc\xcf\x45\x97\x90\x75\xd7\xaa\xda\xd8\xa0\xb1\xbd\x3d\x48\x4c\x30\x88\x63\xa2\x1e\xb1\x48\x64\x14\xfe\x0e\x5b\xe6\x17\x84\x4a\x8e\x2e\x5f\x97\x6e\x69\x57\xa4\x67\xb5\xd4\xc8\x7a\x50\x85\x6d\xbf\x8f\x48\x0f\x06\x60\xf4\x84\xba\x43\xf0\xe2\x7a\xc4\x39\x20\xee\xfa\x45\x1b\x32\x7b\xd0\xd7\x90\x4b\x73\x86\x2a\xa7\x7b\x8c\x82\x1d\xb2\x34\xda\xad\xa7\x17\xd4\xd3\x46\x97\x84\x8d\x36\x05\xd1\x99\xe5\x86\x77\x1a\x8b\x12\xc8\xee\x8d\xa9\xa0\xb5\x73\x8f\x05\xf1\x9e\x7f\xc5\x63\x78\x34\x72\xbf\xec\x5b\x58\xf7\x1e\x06\xe6\x1f\x44\x07\x4c\xcf\x84\x19\xe7\x2c\xc4\x59\xb2\xc0\xd3\x9e\xa5\x74\x98\xc8\x3e\x1d\x61\x5a\x1b\xec\x5f\x6c\x63\x4e\x1a\x6a\xb3\x36\xf5\xf5\xdb\xaa\x12\xa1\x39\x79\xeb\x22\xfd\x8f\x5c\x79\x6c\x48\x5b\x11\x85\x18\x8d\x78\x68\x8a\xee\xed\x04\x8a\xbf\x66\xb8\x0a\xe9\xe6\xd3\xd8\xf7\xef\x73\xf7\xc8\x6e\xaa\x4d\xdf\x3a\xf5\x4d\xbf\xdb\x08\xa3\x9f\xb4\xac\x17\x98\x67\x9d\xb3\xef\xe0\x33\xbf\x68\xcc\x2a\x60\x9f\x8b\x07\x07\x40\x64\xb1\x70\x1c\x36\x4c\xd1\xb3\x8a\xdf\xe3\xf6\xc1\x6d\x49\x85\x22\xef\x50\x2e\x51\xe5\x52\x8f\xe2\x0e\x9e\x02\x58\x8c\x46\x42\x09\x8a\x80\x4f\xe9\x3a\xc6\x3f\x3d\x32\x7a\xa5\x92\x56\x4b\x11\x02\x59\xf6\x29\x3a\x35\xdc\x42\x25\xe4\xec\xca\x41\x7a\x20\x17\xa4\x60\xa4\x0f\xa5\x59\x3e\xb9\x83\xa4\xcc\xd5\xec\x6b\xb4\x02\x9d\xa5\x5d\xf6\x3b\x8e\xf0\x8e\x08\x61\x67\xe9\x0f\x81\x56\x27\x28\x09\xc9\x91\xc9\x4a\x77\x72\x02\xb3\xa3\x29\x86\x81\xcf\x20\xfa\xa3\x71\x82\xaa\x6e\x72\xa5\x4e\xe4\x94\x3d\x31\x65\xe9\xa7\xe1\x35\x2c\xa8\xa6\x62\xb9\x73\xcf\xa1\x1d\xc2\xc5\x41\xf2\x20\xff\x5d\xb6\x59\x0e\x8a\x55\xaa\xb8\x8d\xc8\x99\x8a\x75\x22\xa9\x99\x07\xde\xe9\xde\x2c\xc7\xe4\x3b\xcc\x35\xdf\xbc\x4b\xfa\xf4\x2b\xbc\x76\xd6\x86\x62\xaa\xd6\xa6\xeb\x67\x22\x7e\xc2\xba\x01\x30\x7d\x74\xa4\x7d\xaf\xb4\x1c\xd7\x53\xf1\x3d\x39\x39\x15\xc7\xc7\xc8\x46\x8b\xd4\x6c\x10\x27\x2e\x13\x9d\x43\xe0\x35\xf0\xb3\xc1\x71\xc8\x67\x40\x3b\xbc\x72\xf5\x72\x37\x7b\x95\x72\xf5\x2b\x7b\xb3\xc3\xb5\x5b\xc8\x67\x83\xac\x36\x84\x5a\x5b\xd5\xfa\x90\x06\xeb\xfd\x0d\xd6\xd0\xa0\x51\xfe\xbd\xda\x63\x3d\xf5\xf7\x88\x28\x33\xc6\xc6\x09\xcf\x91\x3b\xa4\x9b\xb5\x3e\x91\x9a\xc9\x77\xc9\xc8\x09\xbe\xd9\xcb\x97\xc7\x45\xb7\xeb\x22\xb7\x5a\x5b\x54\x64\x96\xe9\xc7\x6e\x8c\xe4\x94\xb6\xc1\x2b\x5b\xfe\x57\xa9\x22\x3a\x3a\x86\x5a\xca\x89\x87\x93\xa2\xa2\x57\x39\x9c\xb5\x65\xc6\x18\x55\x94\xf7\x1b\x88\x88\x6e\xae\x08\xf5\x6c\x27\x85\x0d\xf3\xa8\x70\x94\x8a\xb8\x47\x0a\xf3\x2b\x2e\xe0\xf3\xc5\x7b\x5d\xdf\x7d\x12\xdf\xc4\x85\xf2\x0c\x0b\xa5\x9a\x6b\xc8\xf8\xac\x6e\x03\x75\xca\x4b\xd5\x0b\x7d\x9a\x32\xf9\x30\xbd\x65\x86\x4f\x91\x32\x4c\xc1\x09\x69\xe5\x3d\x83\xae\x58\x9a\x85\xf6\x2c\x75\x2c\xfe\x67\x40\x94\xd9\x12\xc6\x2a\xc5\x59\x76\x77\xf9\x82\x78\xa2\x5a\x5e\x0c\x23\x05\x3b\xb1\x57\x54\x64\x29\x42\x28\xdc\xbb\x70\x48\xdd\x90\x9c\x3c\xa0\x59\xa1\x80\x19\x8d\xde\xef\xce\x48\x54\x33\x3d\xa3\xc0\x7c\xbb\xf5\x62\x83\x62\x6a\x06\xa6\xda\x0b\x07\xa5\x1d\xe2\xf4\x2d\x92\x86\x31\x33\x26\x03\x72\x5f\xbc\x3c\x47\x27\x76\x81\x74\x1b\xe1\x40\xf6\x52\xf3\x00\xd8\x66\x10\x3a\x08\x6c\x38\x04\x75\x25\xec\xdf\x1c\xa8\xda\x35\xb0\x75\xca\xfe\x66\x74\xaa\x86\xd0\x3b\x37\x70\xe9\xcc\x1e\x7a\x1b\xd2\xd2\x3d\x8e\xd8\x6e\xc7\x4c\x62\x49\x15\x87\xbc\x1f\xbb\xfc\x93\xf5\x01\xd4\x53\x45\x23\x2e\x96\xad\xe9\x5b\xba\x22\xcc\x65\x66\xdc\x64\xfc\xfd\xc1\x1a\x67\x50\x23\xa2\x6d\xc6\x40\xdb\xac\x58\x44\x79\xec\x37\x3e\xc7\xba\xe3\x68\xeb\xe7\x8c\xa7\xc8\xa8\x80\xed\xf7\x6c\x14\xad\xd9\xe3\xab\xeb\xe7\x2c\xa2\xce\xa0\xef\x50\x77\x39\x4c\xcf\xc8\x7b\xa4\xe8\x56\x3d\x5a\x42\x2d\x95\xaf\x97\x06\x5e\x9c\x11\x16\xb1\xb0\x37\x74\x4e\x27\x46\xe5\xe0\x64\x41\x12\xfd\x5b\xf9\x54\x68\xbd\x0a\x4e\x17\x24\xb1\x5f\x2a\xf3\xbd\xbc\xcf\x1e\x2e\x48\x22\x7f\xa8\xa4\x27\x72\x77\xde\x51\x68\x1c\x1c\x31\xb8\x09\xaa\xc8\x39\xd8\xb9\xb6\xb6\xba\xdf\xc9\x3e\xfd\x34\xb7\x20\xf9\x17\x9b\xaf\xdd\x3c\xf0\x6a\x49\x21\x88\xfa\x0b\x27\xa8\xc2\xef\x17\x24\x89\xe6\xe8\x71\x69\x87\xeb\xff\x4b\x0e\x49\xfd\x56\x19\x4f\x4d\xa0\x84\x7f\x5d\x90\xc4\x7c\xf8\x59\xe0\xbd\xff\xdf\x9c\xec\xf7\xe0\xda\xc3\x2d\xf2\x8c\x67\x57\xd0\xca\xf4\xc4\x29\x67\x52\x55\xd9\xd7\x95\x00\x54\x40\xa6\x72\x29\xcd\x57\x22\xcf\x02\x93\xf8\x87\xb5\x1e\x2a\x3e\x59\xa5\xae\x15\xa7\xf4\xef\x34\xbd\xbb\xa2\x62\xf8\x5a\x47\x12\x70\x60\x93\xed\x76\x68\x40\x27\xef\x8a\xf5\xa6\xa4\xe4\x13\x73\xa2\x19\x3f\xcb\x96\xa2\xe2\xdd\x08\x98\x92\x04\x2d\x72\xcc\x88\x8e\x2d\x5e\x10\x1d\x9a\xd2\x9a\xda\xe1\x8c\xf0\xed\x36\x59\x42\x74\xdd\xe3\x64\x7c\xc9\xc6\x63\x83\x72\x8a\x7c\x96\x61\x08\xa2\xcb\xb0\x3a\x7d\xb3\x2e\x97\xb2\x26\xfc\xcc\xd8\x1f\x17\x57\x0c\xa5\x77\x3b\xe5\x4e\x97\x19\x40\xad\xb6\xdb\xb4\x22\xa0\x92\xb6\xc9\x78\x4d\xd3\x02\x29\x2d\xc2\x1b\x96\x66\x58\x12\xb1\x15\xda\x01\x4f\xfc\xf5\x87\x97\x2f\x2f\xde\x9e\x3f\x3b\x7f\x7b\xfe\xfa\xc9\x39\xf9\x0f\x49\xde\x7e\x78\xfd\xf4\xfc\xd9\x8b\xd7\xe7\x4f\x9d\x8c\x3f\xc9\x8c\x9f\x78\xb1\x2e\x44\x71\x43\x5b\xe8\xfa\x20\xd3\xa3\x36\xe2\x7f\x90\x39\x8a\xa2\xfe\xa1\x29\xca\x9c\xf2\xa7\xef\x5e\x92\x9a\x63\x1b\x26\x3d\x12\xe8\xda\x65\x38\xfe\x51\xa4\xc2\x31\xae\xd1\x95\xe0\x4d\x6c\x3f\xe0\xc0\x3f\xf1\xc2\xb3\xbf\xd7\x1b\x44\x7e\x27\x9c\x3c\x4d\x97\xd8\xcc\x3f\xc8\xcc\x17\xf6\xc0\x69\x0f\x38\xe4\x17\x39\xbc\x78\xaa\x51\x0d\x31\x89\x7f\x92\x89\x10\x43\xf2\xe2\xe7\xc7\x2f\x3f\x9c\x5f\xfc\xf4\xf6\xcd\x4f\xe7\x6f\xdf\xff\xe9\xe2\xd5\xe3\xd7\x8f\x9f\x9f\xbf\x25\xcf\x65\x89\x9c\xae\xb2\xa6\x14\xd6\xbf\xd6\x5b\xda\x26\x86\x1d\xd5\xe4\xaf\x4e\x6e\xd0\x61\x4d\x5e\x51\xd0\xe4\xc8\xf2\xa7\x6f\x5e\xc9\xaa\xd1\x95\xa3\xdd\x40\x6c\x98\x91\x5a\xe9\xd7\x80\x8f\x5b\xd0\x52\xa9\x08\x9b\xb0\x8a\xaf\x81\x5f\x98\x5b\x03\x08\xe5\xb5\xb9\x75\x93\x5c\xa1\x59\x92\x09\xc1\xc1\xcf\x7d\x24\x93\xce\x2b\x90\x4e\xbe\xa5\x57\x45\x2d\x28\x27\x3f\xaa\x09\x5c\x36\x57\x20\x6d\x08\x75\xdf\x6d\x97\x12\xa5\x29\x21\xe6\x8f\x18\xfc\xa9\x3c\x95\x75\xae\x28\x7f\x92\x95\xe5\x65\x16\x38\x65\xfc\x45\xeb\x0e\xc2\x53\xb3\xbf\x24\x14\xfc\x20\x0b\x5e\x51\xa1\x77\xdc\xbb\x00\xbc\x75\x0a\xa4\x4b\x8c\xc8\x67\x6a\xad\xe1\x78\x92\x89\xf4\xc4\xa3\x55\x2f\x40\xc6\x06\x00\x07\xf4\xca\x2b\x65\x07\x7d\x03\x60\xc0\xca\x82\x51\x9d\xf2\xc9\x05\xf1\xa2\x16\xe4\x3f\xdb\x6f\x27\x60\xf0\x1f\xe4\x49\xd3\x6f\xfa\x9f\x5f\x91\x9a\xc1\x32\x4a\x5a\xfb\x2d\xad\x9b\x52\x90\x6b\x36\xa0\x93\xa2\x7e\x97\xad\xa8\x8e\xb8\xfc\x0a\xd3\x89\x7a\x5d\xfe\x51\xf6\x71\xce\x6e\x0a\x5e\x31\x40\x8c\x95\xac\xae\x49\x90\x36\xfe\x3a\x09\x2d\x51\xfe\x99\x54\x87\x84\x43\x43\x74\x18\xac\x49\xb8\x39\xb0\x41\xa4\x78\xf2\x5f\xaa\x31\x39\xff\xab\x58\x40\x54\x8d\x70\xdc\x6b\x7d\xd8\xf5\x43\xcf\x0e\xfc\x89\x6c\x94\x40\x48\xe4\x22\x16\xf8\x9e\xfc\xa4\x82\x13\x3d\xb9\xce\xd8\x15\xad\xc9\x07\x80\x12\x27\xe1\x47\xde\x13\xbd\xe8\x67\x0e\x6d\xfe\x72\x5d\x08\x1d\x54\x28\x42\xfa\x3c\xe3\x13\x41\x6b\x43\xf0\x74\x42\x1f\xbc\x93\x87\xf0\xdc\xd5\x96\xf8\x49\xe1\x42\xb6\xe4\x54\xd0\x1f\x94\x0e\xe8\xb9\xd8\x21\x4c\xd3\xe4\xff\xd1\x8e\x2a\x1e\x34\xa2\x28\x13\x3c\x4f\xe8\xe7\x4d\xc5\x45\x9d\x2c\xb0\xdb\x75\xd2\xd4\x74\x58\x0b\x5e\x2c\x45\x32\xb0\xbb\x25\xfe\x11\x9b\x63\x5b\xe7\x9e\x9d\x23\xa8\x51\x93\xf1\xf8\x66\xe7\x58\x6e\x74\x0a\x6c\xb7\xb2\x56\x5b\xa4\xf8\x87\x8e\xb0\x92\x88\xcd\x7e\x65\xbe\x1a\x5e\xd5\xe6\xd4\xff\x88\x51\x48\x4c\xd6\xe0\x32\x16\x91\x76\xfa\x6f\xff\xf6\x6f\x0f\x3e\x97\x05\xfb\x98\xe0\x65\xac\xc0\x1f\x5f\xbd\x94\x85\xfe\xf5\x81\xbd\x2e\x12\x9c\xf7\xc6\xb6\xfd\xbc\x2e\x59\xfd\x20\xc1\x1b\x72\x97\x40\xab\xb3\x6c\x29\x9a\x4c\xd0\x64\x56\x62\x93\xc2\x97\xbc\x2a\xdd\x14\x08\xd6\xdc\x7e\x06\xb9\xf5\x75\xf5\xc9\xf9\x84\xf0\xb8\xee\xb7\xa4\x02\xe1\x73\x5d\xce\x2e\xb3\x9a\x26\xb3\xa5\xfa\x28\x33\x76\x65\x3f\xd4\xd0\x67\x4b\x0c\x43\x9c\xe5\x90\xca\xea\x99\x9a\xfb\x2c\xdf\x75\xa9\xf1\xf7\x5c\x1e\x2b\x49\x49\xc2\x2f\x4d\x6a\xca\x5b\x05\xa8\x70\xf8\xa5\x12\x7f\xc9\x38\x03\x0a\x5c\xfe\xd0\x54\xb3\xdc\x1e\x20\xbd\xe1\x97\xa4\x2f\x9b\xed\x36\xa5\x93\x97\xd5\xd5\x4b\x7a\x43\x4b\xd2\xb4\x84\xe6\x75\xcf\x0b\x10\xdd\x09\x83\x7f\x62\x6f\xa5\xb2\xba\xea\x37\x1a\xfb\x94\xf1\x3d\x26\x65\x14\x86\xd7\x9b\x2d\x78\xd6\xb9\x94\x41\x2b\xd7\xd0\xa6\xeb\x3e\xdd\x37\xc3\x26\xe2\xc0\x8e\xac\x4a\x8a\x0b\xc2\x27\xa5\x9c\xf1\x40\x04\x3e\x23\xc8\x4a\xff\xa8\xb8\xec\xad\x55\xf0\xaa\x4a\xeb\x97\x1b\x6a\xba\x2e\xb9\x1d\xc9\xda\xc7\x62\xb3\xa1\x79\x0c\xf1\xd1\x47\x6d\xe5\xbd\x33\xb3\x4c\xe3\xae\xea\xfa\x61\x1e\xbd\xef\x76\x48\x31\x2a\x01\x46\x30\x6f\x35\xd4\xc5\x68\xa4\x1d\xa5\xe9\x81\xa6\x8d\x02\x29\x64\xd8\x1c\x7a\xaa\x72\x1f\x53\x0a\x81\x6d\xbd\x64\x18\x6a\x47\xea\x06\x44\xd3\x7f\xd9\x04\x00\xe8\x7f\xdd\x04\x7c\xc0\xfc\x27\x8f\x5f\x1e\xd0\xce\xf0\xe5\x88\x0e\x1f\x7f\x70\x74\x2c\xb7\xda\xf6\x01\x07\x1e\x69\xe3\x42\xd3\x16\xd4\xb2\x11\x6f\xf1\x6d\x34\x6c\xb4\x2e\x7c\x06\x12\x91\x99\xfe\x1a\xac\xe0\x99\xb3\x4e\xef\x74\xc2\xec\x16\x03\x60\xcf\x34\x3c\xe9\xe0\xd6\x57\xfd\xc5\x60\xd7\x76\x08\x5f\xba\x46\x4a\xf8\x86\x9c\xe0\x8b\x48\x88\x71\x0c\x2d\x68\xa7\xa5\xb3\x3b\x25\xa4\xd1\xe7\xbe\xd5\xa1\x9f\x1d\x4d\xb1\x51\x90\x87\xf0\xf3\x68\x50\xb5\xab\x44\x2e\xd4\x0b\xba\x17\xb1\x15\x3e\x2e\xc8\x8b\xa5\x20\x59\xdc\x58\x28\xcb\x63\x67\x3c\x51\x46\x54\x6e\x8c\x20\xdb\xd2\x9c\x2e\x88\xd1\x0d\x93\x9f\xb2\xda\x42\xbb\x63\xbb\xd7\x84\x35\xd2\xb0\xb1\x49\x75\xda\x9f\x69\x32\x62\x34\xea\x66\xaa\x9c\x50\x65\x5a\x05\x29\x8f\x09\x7c\x88\xad\xdb\x31\x23\xb3\x1e\xf7\x99\xb1\x6f\x10\xe3\x31\xa2\x29\x9f\xb3\xb9\xe8\x28\x99\xf6\xab\x35\xbb\xad\xda\xde\x0c\x30\x9e\x1f\xba\x4b\x4a\x01\xd8\x3a\x91\xd6\x06\x55\x20\xeb\x8b\x3a\x85\xbb\x5f\xc9\xfa\x10\x13\x00\x6b\x16\xd6\xd1\x38\x0d\x19\x79\x51\x95\xfc\x50\xe8\xe5\xa9\xda\xeb\x55\xf5\x38\x77\xa6\xbf\x13\x42\x88\x8e\xe0\xde\x56\x98\x8b\xe3\xe9\x02\xb7\x61\xac\x54\x3e\x3d\xd0\xfa\x01\xea\x74\x7a\xd7\xdb\xf0\xb9\x77\x1b\x6a\x7f\x1b\xb4\xdb\x86\x76\xcd\x57\xbc\x5a\x07\xef\x68\x8f\x45\xd2\x7a\xb8\x34\x60\x08\xea\x81\x91\x8b\x93\x5b\x75\x9c\xc9\xb2\xac\x18\x55\x02\xd8\x40\xb9\xe0\x9a\x66\x31\x87\xf5\x30\xb6\x0b\x99\x19\x40\x65\x56\xf4\x4a\x1f\x2e\x64\x66\xc0\xae\x97\xb3\xeb\x68\x1e\x40\xbb\xa4\xad\xa3\xa0\xee\xc0\x55\xd7\x31\xbd\x7a\x07\xd8\x05\x54\x05\x3a\x73\xdf\x02\x23\xba\x76\x4e\xb4\x6d\xeb\x3d\xbc\xa3\x0d\x52\x6f\xfc\xdd\xf1\x24\x6a\x5a\xde\x6e\x02\x8f\x9d\x19\xa3\x61\x98\x27\x76\xa6\x2c\xd0\x2c\x65\x44\x05\x83\xc4\xca\x8c\x91\x70\xac\xbe\x89\x00\x7b\xa2\x54\x69\x7f\x12\x0a\xdd\xd3\x1b\x12\x6a\x98\xb1\x3d\x91\xdf\x55\x6e\x70\xa4\x38\xbd\xe9\x2f\x2f\x73\xa3\x68\xae\x53\xc5\x68\x40\x08\x67\x17\x4e\xb5\x6e\x81\x38\x45\x14\xbc\x92\x6b\xdb\xcc\x50\x7c\xc3\x44\xe6\xf9\x83\xbb\xbf\xb9\x3b\xf0\x78\x4a\x88\x09\x4c\x78\x74\x32\xb0\x8d\xeb\x94\x40\x29\xbd\x27\x1a\xaa\xa1\x4e\xbe\x92\x38\x01\x8d\x83\x00\x08\xd5\x35\x65\xb5\xde\x66\x60\x15\x46\x6f\xce\xd4\x1f\xbd\x7d\x33\x07\xe8\xed\x5e\xaa\x12\x58\x4b\xb0\x05\x56\xdf\x32\x3f\x14\x8e\x42\xe3\x7d\xaa\x11\x00\x4c\x16\xb0\xcf\x52\x11\x80\x8c\x30\x3d\x80\x1c\xd7\x1f\x89\x03\x8d\x5d\xf7\x7d\x7b\x0f\xb9\x9a\xb6\xf6\xf3\xd0\x26\xa3\x59\xf7\x20\x6f\x38\xed\x8c\xbf\x83\x63\x54\x7b\x61\x94\x59\x9b\xed\x8d\xbb\x7f\xd4\x6a\x3c\xfd\xc0\x7d\x46\xdd\x5d\x81\x3f\xde\x82\x40\x8a\x5e\xaf\x33\xf5\x47\x6f\x0a\xfc\x99\xb9\x3d\xeb\xdd\xd3\xd8\xfe\x4d\xbf\x4e\x41\x07\xe1\xeb\x59\xb8\xab\xef\xb8\xa7\x15\x55\x54\x1d\x57\x00\xea\xff\xdc\x72\xc6\xef\x41\xfd\x22\x8a\xfa\xc5\x6f\x7a\xbc\x8d\xc6\xd1\xeb\x98\x7a\xcd\x3f\xe7\xa0\xff\x63\x2f\xaf\x7f\xfc\x55\xb2\x17\x81\xdb\x4b\x0e\x4e\x9c\x22\x4d\xbe\x14\xa9\x7b\x17\xa5\x69\xa3\x8b\xe8\x7b\x6f\x5b\x58\x70\x09\xe1\x8f\x95\x56\x4a\xda\xc6\x81\xc2\xef\xdc\xe2\xc0\xe4\x8a\x04\xfb\xfc\x85\x66\x1f\x5f\x65\x1b\x13\x3f\xf6\x68\x3a\x68\xad\x22\x74\x9e\x5e\xcb\x64\x5e\x01\x5d\x6b\x92\x17\x09\x21\x86\x80\x76\xf7\x44\xf1\xc5\x95\xe7\x06\x8a\xe4\xd8\x7e\x72\xdf\x5f\x47\xa6\xe7\x0f\x05\x13\xdf\x3e\x84\x1d\x3c\x73\x7e\xcf\xe0\x7f\xfc\x91\xbc\x3b\xf3\xe5\x81\xf3\x05\x9a\xcd\x17\x03\x2b\xef\x78\x6d\x23\xbc\x47\x16\x76\x33\xa7\xda\x0d\x8f\x5c\x48\xe5\x13\x98\x74\x79\xd7\xd4\xe1\xf3\x29\x1e\x9f\xd8\x6e\x13\x55\x5c\x62\x88\x55\x56\x94\x0d\xa7\x09\x1c\x9e\x97\x6f\x9e\x3f\x3f\x7f\x4b\xae\x30\xf0\x95\xae\x28\x27\x6b\xec\xb2\x98\x54\x47\xc5\x55\xe4\xc1\x6d\x9c\x8b\xeb\x17\xc6\xf4\x54\x3c\x0a\x2f\x39\x78\x6b\xe8\x40\xc6\xca\x15\x66\x7b\xb9\x89\x05\x1a\x8d\x12\xb5\xfc\xed\xd6\x71\x24\x5b\x63\xe4\x32\xe5\x08\xab\x48\x17\xcc\x8d\x74\x41\xe7\x15\x61\xf3\x62\xb1\x20\x6e\xd4\x62\x80\xf0\x55\x51\x96\xaf\x9b\xb2\xac\xa3\x2f\xa4\x36\x0e\x19\x75\xa3\x90\x51\x18\x22\x9f\x8b\x05\x71\xaf\x5a\xa0\x57\x5b\x57\xcd\x84\xb5\x96\x50\xc5\xdf\x55\x12\xc7\x54\x99\x36\x92\x73\x4c\x27\x4f\x8b\xa5\x78\x47\x05\xf9\x84\xa9\x7e\x8a\x62\xaa\x75\x6c\xde\xbd\x7c\xf1\xe4\x9c\x3c\x96\xcb\x6a\xed\x1a\xc8\x67\xf8\x0c\x6c\xf3\x95\x16\x5a\x80\xba\x5b\x47\x92\x4a\x35\xc6\xf8\x92\xd4\x2a\x6a\x20\xda\x82\xd3\x69\x2d\x6f\xc8\x1b\x4c\x27\x8f\x41\x32\xe0\x68\xf9\x90\x8f\x98\x4e\x7e\x7c\xfc\xee\xe2\xf5\xe3\xf7\x2f\x7e\x3e\xbf\xf8\xe5\xfc\xf1\x7f\xbc\x7a\xfc\x13\x79\x87\xe9\xa4\x61\x9f\x78\x10\xee\xaa\x0d\x3f\xed\x05\xdd\xed\xc0\x56\x72\xfe\x79\x03\x01\x19\x87\x30\x94\xa1\xa8\x86\x97\x74\xb8\xe1\xb4\xa6\x4c\xb4\xc1\x99\x61\x87\x28\x14\xed\x82\xec\x41\x1d\x09\xbf\xad\x86\x71\x9a\x2d\xaf\x7d\x05\x61\x8f\x29\xae\xc7\xe7\x14\x54\x20\xaf\x8d\x3c\xa2\xa8\xeb\xf8\xbb\x5d\x20\xab\xf8\x54\x70\x7a\xbc\xaa\xf8\x3a\x13\x5f\x21\xb2\xb0\x2d\x47\x50\x34\x40\xe3\xa4\xa8\x15\x54\x0a\x34\x1a\x89\xf9\xc9\x42\xce\x7d\x07\x0c\x77\x1e\x61\x28\x4b\x58\x38\xf1\x14\x35\x94\xd3\x73\xa5\xd5\x01\x3f\x7d\x3d\x89\x87\xa1\x9e\x84\x75\x59\xfd\xed\x82\x24\xe6\x43\x65\x29\xf5\xaa\xef\x16\x24\xf9\x41\xb9\x97\xd2\x0d\x29\x99\x13\xe8\x6f\xd8\x2f\x95\xf9\x66\x43\x99\x51\x39\xf9\xfd\x82\x24\xce\xb7\x0e\xfb\x51\x36\xf5\xb5\x29\xf1\xbf\x16\x24\x71\x13\x74\x07\x65\x55\x9b\x88\xde\xa0\xbc\xe1\x26\xa8\x22\x4a\xde\x0e\x92\xe8\x7f\x5b\x90\xa4\xfd\xd4\x1c\x75\x25\x5f\x85\x7c\xa5\xb7\xd1\x26\xa8\x12\x7f\x2a\x68\x99\x2b\x7d\x0d\xf8\xa9\x15\x50\xb4\xa6\xda\x14\x02\x90\xa8\x0f\xbf\x45\x7e\x45\xa6\xdf\x3a\x0d\xf2\x2b\x6f\x40\x32\xfb\xbb\x76\x40\x26\xf7\x3d\x6f\x6a\x51\xb0\x2b\x35\xa0\x7f\x01\xf6\x7f\x9b\xe2\x48\x01\x24\xba\x9d\xfe\xde\x48\x02\xae\xcc\x3e\x3c\x01\x85\x8d\x77\x05\x28\x5f\x6b\x25\xe5\x29\x28\xbc\x74\x33\x54\x8d\x0f\xec\x23\xab\x3e\x31\x32\x95\xeb\xa7\x3f\x54\xce\x73\x2a\xc8\x54\x2e\xda\x73\x6a\x00\x20\xbb\xbd\xa4\x2f\xab\x65\x56\x92\x87\x72\xb1\xda\x6f\xbd\x65\xc5\xe7\xf7\xd7\x45\xad\x28\xe2\x5f\xe8\x2b\xca\xaf\x28\x79\x08\x91\x5b\x22\x39\xaa\xce\x8f\x46\x37\xef\xa1\x5c\x4a\xf3\xe5\xe7\xfd\x94\xf1\x6c\x5d\x93\x87\xdf\x3a\x25\x54\x9a\x99\x83\xbe\x4d\xc9\xc3\xef\x60\x16\xe6\x72\x55\xad\xd0\x72\x43\x39\x79\x28\x57\x53\xfd\x36\xe0\xc9\x96\x99\x20\x0f\x7f\x0f\xc0\x29\x7f\x87\x6b\xe8\x48\xc2\x1f\xfa\x8b\xd8\xe6\x24\x3b\x94\x72\x10\xae\xbc\xd9\xd4\xc4\x09\x31\xc3\x82\x33\x38\x29\x6a\xb3\xd6\x22\xe5\x66\xdd\x11\x48\x52\xe5\x52\xcb\xc4\xe7\x54\x20\x2d\xae\x85\xb1\xc9\x34\xf5\x53\x25\xeb\xa9\xc8\x64\xf5\x53\x27\x9b\x35\x84\x0c\xfd\xe1\x67\xe9\x25\x74\x0b\xa8\x24\x55\xac\x5d\x41\x35\x36\xfd\xa5\x07\x63\xa7\xad\x06\x14\x59\x05\x55\xd0\x81\x0f\x59\xb0\xfd\x54\xd9\x56\x35\xa7\xd7\x9e\xbc\xc5\xe6\xe6\x76\xb7\xe4\x11\xdd\xed\x50\xca\x60\xa1\xdb\x6e\x6b\xe2\x68\x4c\x15\xa7\xf1\x08\xc7\x1e\x96\x56\x68\x92\x3b\x78\x61\xbb\xb5\x89\xce\xe1\x77\x52\xdd\x13\xe8\x89\x6c\x7b\x5b\xe5\x57\x91\x46\xf9\xd5\x4e\x2e\x02\xe0\x61\xb9\x3a\xf2\x87\x5a\x17\x8d\x87\x65\xa2\xfa\x69\x60\x40\xe1\x61\x05\x04\xf0\x5b\x2f\xb3\xc1\xc3\xb0\xc8\xfa\x43\x65\xb5\x60\xe0\xc0\x40\x8b\x87\x75\x53\xea\x4b\x65\xba\x78\x58\x66\x3b\xdf\xaa\x80\x87\x87\x65\x09\x37\xc1\x00\x88\x83\x87\x15\x88\xb4\x09\xaa\x88\x83\x87\x65\x81\xf6\x53\x65\xbb\x78\x58\xe6\x3b\xdf\xaa\x80\x42\xc3\x32\x0b\x7e\x69\x80\x32\xfa\xc2\x29\x37\x18\xd9\x6f\x8e\x5f\x79\xad\xf1\x2b\x6f\x30\x3a\xd7\x7e\xa9\x4c\x0f\x05\xc3\x46\x39\x09\xba\x79\x83\x81\xa1\x71\xfd\x71\xcf\x59\xb1\x68\x57\xef\xb9\x55\xaa\x64\xea\x5b\x13\xb7\xa4\x30\x33\xcb\xd6\x34\xb4\xf5\x34\xa7\x24\xa5\x68\xbb\x2d\x34\x07\x5a\x45\x6c\x55\xa5\x5f\x7b\x9e\x0d\x5c\x00\x9d\x2e\xe4\xf9\x29\xe0\xfc\xd8\xa1\xd4\xa4\x80\xe3\x03\x5d\x02\xeb\xc5\x3b\x5a\xd8\x2f\x8a\x35\x8a\x53\x54\xce\x65\xb6\xfc\x78\xd9\x70\x26\xb1\xe9\x57\xd3\x36\x5d\x71\x47\x54\xaf\x22\xf2\x4e\xa3\x71\xfd\x8a\x88\xa8\x86\x35\xeb\x4b\xca\xdd\x9a\x29\x45\xa3\x11\x05\x34\xd3\x58\x1d\x95\xf8\xc1\x9e\x54\x0c\x68\xc1\xed\xd6\xfe\x7c\x0f\xce\x0c\x47\xa3\x20\x61\x6e\xbf\x5f\x51\x71\x5d\xe5\x0b\x57\xff\xc2\x65\xb9\x42\x50\xa5\xe3\xe9\x40\x3d\x56\x4e\xb4\x88\x1a\x5e\x29\xec\x51\x71\xca\xc6\xe4\x3b\xf9\xee\xe1\x73\x06\x04\xdd\x68\xc4\xe7\x6c\x3c\x5d\x80\x2d\xd1\x5d\x45\xd8\xe0\x92\xd3\xec\xa3\xe1\xc0\x54\xae\x62\x87\x17\x73\x40\x77\xc1\xc9\xb7\xbe\x87\x2a\xd5\xbc\x98\x73\x68\x1e\xdd\x31\xc2\x8f\xbf\xf5\x1b\x65\xae\x4e\x88\x89\x08\xd5\x0d\xe5\x8c\x0d\xfb\xd8\xda\x6d\x59\xfd\xd1\x41\xb1\x4a\xa7\x12\xfd\x21\xe6\x29\xb1\xe3\x42\xbd\x95\x4c\x30\xa7\xc2\xcf\x65\x1e\x3b\x13\x8b\x94\xa1\xd1\x28\x65\xe0\x45\x16\x61\xfe\xfd\x43\xa4\x42\x0b\x3a\x91\xa1\x8f\x1f\x22\xac\xe2\x4d\xf1\xe3\x87\x10\x7c\x11\x1c\xf0\xb6\xed\xd0\xf1\x43\xf3\xd8\x9b\x17\x98\xe1\x6a\xa1\x74\x52\xc8\x83\x3f\xe7\xe3\x07\xb8\xec\x61\x85\xfd\x5a\xee\xeb\xdd\x2e\x16\xfc\xfa\x61\xb4\xee\x43\xb7\xee\x43\x59\x57\x47\x58\xf9\x5b\x43\x1b\xfa\x03\x2d\xd8\x15\x20\x5d\x9a\x5b\xf9\x97\x72\xa9\xf9\x07\x99\x5f\x47\xc4\xa8\xc6\x14\x88\xe5\xf4\xb3\x09\x4e\xa7\x5a\xb3\x2d\x80\x0a\x19\x35\x1e\x14\x05\x1c\x79\xcd\xe5\xbb\x2a\xab\xcb\xac\x7c\xa3\x13\xa3\xc1\xa8\x02\x69\x59\x10\xca\xc5\xe9\xcf\x84\x41\x53\x05\xf0\x1d\x24\x02\x6b\x12\x6b\xb7\xa0\x14\xaf\xe1\xc4\xcc\xc4\xae\x2b\x91\xfb\xc0\x8a\xbf\x35\xf7\x38\x20\xbe\x6a\x8a\xfc\x99\x39\x87\x8e\x2a\x7c\xa1\xd8\xb4\x6d\x33\xbf\x14\xe2\x5a\x3e\xc0\xd3\x02\x9b\x76\x66\x91\x22\x55\x23\xa0\xd4\x57\x0d\x7a\x55\x86\x72\xc4\xc0\xb2\x4e\xaf\x35\x68\xb7\x5e\x02\x3d\x0c\xee\x31\xb2\x95\xa0\x1c\xd7\xe6\xfc\x1c\xb6\xc9\x56\xa2\xd7\x85\x14\x0d\x71\xc6\x01\x65\x04\x94\x9c\xf4\x00\x40\x10\xb6\x40\x5a\x8d\x46\x95\x76\xd2\xde\x98\x43\x5e\xf6\xf5\x29\x4f\x7d\x69\xed\x58\x90\x8a\xc4\x99\x0a\xa2\x24\xb9\x3e\x58\x21\x64\x98\xe8\x37\xd5\x47\x58\xf6\x37\x0a\x7d\xce\x9c\x64\x23\x9e\x06\x38\x3e\xe5\x8f\xca\x0e\x1a\xb3\xb9\x63\xf2\x1d\x36\xbc\xa2\x9a\x94\x73\x3e\x9e\x2e\xd0\x68\xd4\xa4\xe5\x9c\x2f\x70\x8d\x65\xca\xc3\x05\x16\xf0\xe3\xdb\x85\x7b\x40\x8e\xee\x5f\xc4\xee\xf8\x27\xeb\xa6\x16\x40\x8b\xec\xcf\x4d\x0d\x2b\x71\x38\x1d\xb4\x47\x7f\x34\xca\x8c\x2f\x83\xde\x5e\xcd\xb9\x35\x87\xf8\x68\xaa\x5c\x4f\xba\x87\xab\xb5\x19\x52\x9c\x5d\xd9\x40\x7a\x14\x86\x9e\xbf\xce\xea\x5f\x2a\xde\x6b\xfe\xd4\x3b\x82\xef\x4f\xb4\x22\x49\xd0\x5b\xe8\x2e\x87\x2d\x69\xc4\x47\x11\x80\x3c\xd5\x40\x0c\x36\x06\xea\xc8\x18\x2f\x1a\x1a\xf4\xea\xd8\x21\x66\x08\x37\xa4\x3e\xeb\x9c\x82\x79\xbd\x98\xb5\x37\x8c\x5d\xcf\x06\x60\x4d\x83\xa7\x20\x27\x98\x93\xc6\xf2\x11\x1f\xf1\x53\x31\x26\x0f\x25\xb8\x34\x73\x21\x6f\xbd\x02\xdd\x35\x5a\x2c\x9a\x0a\xfc\x10\xe9\xdb\x4f\xb9\xd2\xae\x52\x79\x45\x67\xad\xd3\xea\xef\x8f\xa7\x67\x69\x66\xca\x97\xf8\x3b\x84\x8f\x4e\xd0\x2c\xcd\xfa\xa0\x06\xa7\x6d\x2b\xe8\xfb\xe3\x29\x04\x19\x2c\xe5\x1d\x0e\xcc\xb7\xa3\x93\x50\xab\xc7\x9b\x7b\xc8\x4a\xf3\xe5\x67\x3e\x94\x6d\x28\xfd\x28\x51\x95\x5c\x0c\x6b\x69\x2c\x8c\x13\x18\x1e\xab\xf2\xfc\xc3\x8b\xa7\x17\xff\x71\xfe\x27\x47\x9d\x7e\xce\xcd\xa2\xf6\x22\x60\x07\x2d\xee\xc7\xc5\x7a\x53\x33\xa2\x88\x9e\x02\x0d\x32\x58\xbf\x62\x9e\x8d\x1f\x2e\x08\xc7\xf2\xc7\xb7\x0b\xc2\xd0\xac\xf0\xaf\x86\x50\xf4\x61\x37\xbd\xd3\xa1\x8d\x07\xa0\xdc\xa1\xbb\x1d\x9b\xd0\xc3\x38\xb3\xc6\xca\xa7\xd5\xa3\xec\xb4\xd2\x00\x40\xe7\x15\xbc\xca\xcc\x5a\xd5\x84\xce\xab\xf1\x74\x81\x9b\x79\x2d\xc7\xc7\x00\xf3\xa5\xf2\xeb\xdb\x05\x29\xd0\x40\xdf\x5f\x1c\x37\x5a\x2a\xa2\x07\x70\xfc\x5d\xc4\xcd\x83\x7f\xcb\xf4\x8f\x9b\x74\xe1\x9a\x2e\x5a\xec\x50\x75\xe0\x3e\xad\x6c\x0b\xb3\x58\x5d\x32\xe7\xb8\x73\xe7\xb6\x43\x5d\x84\xe2\x66\x89\x5b\xbb\x0a\x01\xa6\x7f\x7e\x06\xe2\xb8\xf2\x16\xcc\x79\x66\xc2\xca\x2e\x22\xad\x38\x88\x3b\x3a\x5f\xc1\x6f\x0f\x68\x78\x99\x89\xe5\xb5\x84\x74\x59\xb7\x40\xc6\x3a\x71\xd9\xab\x94\xf2\xab\x1c\x5e\x4a\x0a\xc8\xa3\xdc\xd4\x6d\xfb\x37\x75\xcf\xde\xed\x70\xfb\x29\x1f\x54\x2f\x5c\x22\xca\xa6\xd6\x44\x59\xba\xe4\xcd\xd2\x95\x68\x3a\x46\xb7\xf2\x5c\x29\x87\x50\x29\xc7\x92\xde\xc6\x02\x04\x6a\x4e\x67\x51\x95\x33\x13\xf1\x2f\xb2\x9e\xb8\x52\x53\xd7\xa8\xe7\x6f\x16\x76\x74\x33\xd9\x76\xeb\x6b\x30\x05\x0c\xf7\x3f\x55\xcd\x30\x13\x82\xae\x37\x10\xaf\xb1\x1a\x9a\xbe\x86\x19\x1b\xea\xf0\x8f\x05\x1b\x66\x43\x68\x79\x98\x26\x63\x3a\x4e\xd0\x50\x5c\x67\x62\x98\x57\xb4\x66\xdf\x08\x15\x03\x32\x41\x3b\x50\x5a\xfc\xc7\xf4\xb7\xaa\xf8\x30\x1b\xaa\xdb\xa2\xbf\xf3\xe2\x2c\x73\x4e\x9d\x06\xf7\x0a\xcd\x32\x17\xfc\x43\xbf\x5a\x01\x79\xd6\xca\x78\x29\xb1\xd7\x87\xfe\xc1\x49\xb0\xe3\xf6\x46\xe9\x82\xc7\x23\x7e\xaa\x02\xdd\x06\x55\xe6\x91\xb2\x0b\x7c\x24\x9f\x46\x29\xf5\x36\x51\x2c\x90\xb9\xa7\x53\x84\x22\xd5\xc6\x63\x78\x35\xdd\xe9\x97\x15\x35\x97\xfd\xd4\x21\x30\xa2\x80\x6b\x4e\x53\xde\x23\xdb\xa6\xa9\x0a\x34\xa3\x7c\x0f\x9c\xc2\xe0\xb8\xf6\x09\xc2\x6d\xc0\x83\xb6\xc4\x0e\x6f\x7c\xed\xec\x6b\x52\x53\xf1\xbe\x58\xd3\xaa\x11\x78\x75\xdf\x7b\x4a\xa8\xd0\x43\x5f\xfd\xac\x52\x93\x7c\x7a\xfe\xc3\x87\xe7\x36\xd8\x8c\xd6\x9a\x7b\xa1\x4d\x16\xbc\x28\xb4\xc5\x9a\x72\x3d\xb8\x17\xb9\x9b\x93\x35\xa2\xe2\x8d\x1b\x9b\xd6\x3b\xdc\xde\xc3\x88\x7b\x9f\xc6\xfa\x0d\xf0\xaf\x51\xe8\x8d\xe5\x11\x3a\x3f\x69\x49\x4d\x35\xb8\x77\x9e\x1e\xa3\x1a\x5f\xdd\x7e\xe7\xf4\xb2\x6a\xd8\x92\x52\x27\x4d\x9e\x2b\x21\x4a\xaf\x1c\xbd\xa1\x4c\x18\xf3\xb2\x9a\xdc\x51\x96\x4b\xc4\x06\x5e\x03\x67\xf3\x85\x46\x33\x17\x15\xfb\x01\xc2\xc2\x7a\x43\xd4\x89\xdb\xed\xc6\x96\x3a\x67\x79\x58\xe6\x9c\xe5\xdb\xed\x66\xe0\x78\x5e\x30\x79\x17\x9b\x32\x13\xab\x8a\xaf\xb7\xdb\xbb\x1d\x2e\x62\x4f\x93\x41\x31\x69\x81\x82\x30\xe7\xc3\x45\x19\xb8\x15\x69\xb5\x05\x74\x14\x50\x1d\x21\xaa\x6d\xc2\xfd\xf4\xf1\x8e\x6e\xc2\x2d\x00\xd7\x55\xa1\x25\xa0\xf0\x27\x5a\x05\x02\x74\xb7\x9d\xbd\x56\xc5\xed\xef\xed\xd6\x1f\x85\x6c\xb1\xfa\x04\x66\x89\x9f\x9c\xf6\x6c\x73\x4f\x33\x41\x65\x9e\x3c\x24\x6a\x65\xcd\x4a\x91\x42\x27\x80\xa7\xf1\xb7\x0d\x3b\xff\xbc\x29\x38\xcd\xdf\xab\xed\x77\x35\x0e\x27\x17\x3c\xc8\x6e\x9b\x83\xda\x8f\x15\xe0\x9e\xb3\x3c\xa8\xe7\x43\xf4\x84\xb2\x3c\x45\xbb\xd8\x15\xd3\x09\x15\xec\x68\xab\x9a\xf7\xa9\x20\xb1\xa3\x65\x75\xdc\x03\x17\x3d\xde\x91\x3a\x4b\xb9\x55\x18\x52\xaf\x03\x3d\xe4\x14\xa1\x99\x91\xe8\x0b\xfd\x66\xf1\xce\x85\x51\x3d\x31\xc8\xb7\x73\xb0\xe9\xa7\xe1\x32\x0d\x0e\x6b\xab\xaa\x24\x78\x71\x75\x45\x79\x9a\xc0\x04\x13\xcc\xb1\x30\xbe\x19\xcc\x49\x90\x77\x71\x47\xa9\x94\xfa\x4b\xa9\x43\xa0\xf7\x2d\x00\x70\xb0\x5a\xd9\xb3\xe8\x0a\xb6\x29\xcb\xc1\x2a\x8a\xe6\xc3\x4f\x8a\x72\x1e\xaa\x11\x69\xd1\x90\x44\x5c\xd6\xd7\x91\x24\x91\x0a\x22\x34\x3e\x47\xbb\x55\xc1\xb2\xb2\xbc\xbd\x63\x10\xc2\xe5\xe8\x04\x4f\xc1\xb0\xd5\xdc\x17\x16\xa4\x94\xfa\x97\x8f\xcb\x8c\x76\x5b\x00\x27\xc8\x78\x43\xea\x47\x94\xfe\x36\xb4\xf4\x54\x6a\x9f\xe0\xde\x36\x29\x65\xe6\x58\x93\xbc\xb3\x19\x20\x59\x96\x24\xa6\x8b\x6d\x40\xd7\x0c\x85\x4e\x4f\xbd\x58\x2d\x5a\xc4\xdf\x72\x7f\xad\x30\x48\xf4\xd9\xa3\x29\x74\x38\x94\xaf\xef\xe1\x25\xf5\x2c\xd1\xdc\x27\x51\x80\x3d\x25\x05\x65\x9f\x93\xf0\x3c\xd8\x67\xee\x26\x41\x64\x08\x0d\x0c\x81\x5e\x19\x5e\xd2\x65\xd6\xd4\x74\x58\x28\x3a\x65\x28\x0b\x69\x42\x65\xc0\xad\x32\x95\x3f\xcf\xd5\x2a\x66\xf1\x6b\x78\x44\xf1\xf1\x1d\xb9\x5a\x0e\x6c\xff\x18\x57\xab\x2f\x18\xa4\x7a\xbf\x1d\x4d\xd5\x33\xb2\x8d\x6b\xc0\xdc\xb8\x06\x4c\x71\x8c\xc5\x68\x94\x16\x12\x2a\x99\x79\x11\x73\x3c\x45\x98\x1f\x1f\x23\x18\x63\x71\xc0\xb8\x96\x66\x9f\x2c\x6d\xe7\x0e\x27\x50\x92\x6c\x22\x88\xaa\xd6\xcf\x08\xe3\xac\xc0\x50\x08\x08\x0b\xb8\x72\x31\x27\x74\x3e\x5d\x60\x46\xe8\xfc\xa1\xaf\xfc\x26\x91\x6b\x1a\x7b\x71\xfe\xb5\x8a\xa1\xc4\x5f\xd3\x13\x84\xd2\x89\x75\x95\xd3\x95\x1f\xc1\xc4\x77\x07\xa7\x48\x64\xdd\x31\x90\x4b\x6d\xb7\xa1\x7f\xc7\xce\x53\x41\x51\x76\x5d\xb6\x35\xe6\x44\x6b\x8b\x7c\x3f\x3d\x13\xc7\xd3\xd9\x09\xc2\x8c\x4c\x4f\xd9\x23\x71\xca\x40\x8f\x89\x1d\x4f\x5d\xbe\x39\x5b\x0c\x1c\x5d\xad\x70\x21\xc0\x55\x6a\x21\x17\x20\x23\x85\x5c\x80\x86\x14\xf3\x87\x0b\xc3\x1b\x04\xf2\xec\xcc\x62\xc4\x99\x7f\x67\x68\x18\x07\x1d\x29\x83\x37\x52\x64\x67\x93\x52\x88\x7b\xd5\xe0\xa3\x29\x2e\xfb\xa2\xb4\x0b\x1d\x5a\x23\x72\x8a\x7e\x9b\x21\x00\x6a\xcc\xf1\x5c\x48\x7a\x1d\xf3\xd8\x16\xbe\x61\xcb\x3d\xde\x35\x55\x4b\xb2\xcc\x97\x6c\xa5\xdf\xe6\xff\x59\xdb\x79\xd2\xdd\xce\x96\x46\xec\x59\xc7\x32\x13\x94\x1f\xb2\x80\x50\x30\x7c\xd9\x75\x79\x04\xb8\x22\x46\x97\x0f\x67\xe4\xe4\x34\x7b\x44\x4f\x33\x90\x1a\x65\xee\x72\x65\x6a\xb9\xa8\x8e\xc0\x56\x99\xda\x0d\x39\xc1\xa5\x79\x21\x2e\xcd\x8f\xdc\xfc\xd8\x98\x1f\xd7\x8e\x20\x4c\xbe\x68\x6a\x74\x27\xaf\xf1\xfa\xac\x24\xd5\xa4\xbe\x2e\x56\x22\x45\xb3\x87\x90\x92\xe6\xa4\x02\x4c\x92\x6e\x48\x35\x9f\x2e\xd0\x59\xba\x6c\x0b\x61\xa7\x82\xd2\x57\x3f\x22\x24\x1f\x8d\x44\xba\x41\xa3\xd1\x46\x3e\x9f\xf3\xb0\xc2\x72\x6e\xbf\x16\x68\xc6\xd2\x0d\x82\x00\x98\xb6\x44\x43\xc0\xe3\xca\x0b\x26\xd2\x36\x71\x7a\x82\xd0\xcc\xeb\x2c\x65\x69\x35\xaf\xac\xcf\xbf\x05\x1a\x8d\x52\xaf\xaa\xa2\x02\x64\x45\x6c\xe7\x70\xfd\x45\x73\xb8\x46\xa3\xd1\xf5\x01\x73\x70\x1b\x80\x8d\x59\x19\xa1\x82\x26\x57\x11\x5e\x77\xc8\x23\x49\x87\x8f\x1b\x7c\x1b\x50\xac\xb7\x64\x75\xe6\xd2\xcd\xfc\xf6\xae\xd4\x00\xb6\xc4\x95\xc3\x8c\x5a\x81\x53\x76\xd7\x81\xa0\x57\x4e\x53\x33\xce\xc3\xe5\x16\xaf\x43\x82\xc6\x3c\xdd\x3a\xec\xf1\x02\xd7\xb8\xd1\xe7\xeb\x10\x40\xb2\xe6\xcf\xc0\xe2\x2c\xba\x70\x5d\x6b\xb8\x2e\xbe\x9f\x9e\x15\x0a\x21\x34\x64\x7a\xda\x3c\x2a\x4e\x9b\xf1\x18\xd5\xf3\xc6\x47\x08\xcd\x62\x00\x10\xa9\xeb\x4b\x30\xa4\x78\x45\x8c\x37\xf7\xa5\xa2\x0d\xaf\x09\xf0\xba\x97\x84\xe2\x9c\xd4\x76\x7f\x36\xb6\x9c\x48\x73\x74\x96\x93\xe5\x3c\x5f\xcc\x78\x9a\xa3\xed\x36\xad\x27\x0d\x53\x05\x73\x09\x18\x4b\xdd\x16\xc2\x0a\x12\x57\x64\x63\x9a\x6d\xbb\x93\x09\x84\x90\x8d\xde\xde\x35\xa9\xd2\x25\xce\x3b\xef\x5f\xa0\x31\xd6\xdf\x1f\x4f\x91\xaf\x0b\x6f\x0b\xcc\xd7\xe3\x87\x0b\x52\x77\x2a\xce\xd7\xe3\x6f\x17\x83\x55\x0b\xbd\x2b\x09\xb7\xd0\xd7\x6d\x08\x38\xce\x8e\x76\xe8\x81\x2c\xbd\xc5\xa5\x37\x22\x2c\x88\x97\x60\xc8\x22\x8a\xbf\x83\x67\x8c\x92\x6b\x0b\x89\x54\x0b\x22\x24\x91\x00\x1c\x96\xeb\xd1\xa8\x54\xc4\x88\x09\x09\xb8\xb2\x22\x07\x23\x70\x52\x14\x84\x5c\x87\x1a\x75\x66\xa4\x08\x4b\xc8\xc4\xb7\x08\xdf\x76\x2c\xb5\x81\x8d\xd0\x07\x77\x3a\x18\xf3\x21\x00\x87\xd7\xff\x68\xc8\xdb\x10\x8a\xd7\x16\x14\x34\x93\x66\x45\x8e\xa6\x68\x06\x50\xb9\x71\x20\xef\xda\x81\xbc\x0d\x3a\xdb\x90\x7c\xbe\x91\x90\xb7\xf1\x21\x6f\x23\x61\x34\xd7\x6d\x49\xc8\xbb\x46\x67\xe9\x9a\x5c\x9b\x66\xdb\xee\x56\x0a\xf2\xae\x91\x44\x21\x16\x3c\xd6\x0e\x78\x54\x69\x8e\x37\x1d\xf6\x0c\x1a\xdc\x2a\xd9\x8e\x11\x87\xb6\x59\xf3\xdb\xf1\xb7\x8b\x80\x01\xe0\xf1\x11\x52\x23\xa0\x77\x2a\x19\xb8\xb9\xc5\xdf\x21\x63\x54\xfd\x45\x80\x79\x85\x97\xde\xf8\xb0\x20\xcb\x58\x07\xf7\x00\xe6\x6a\x34\x5a\xfa\x80\xb9\xb6\x80\xb9\x1a\x8d\xc0\xab\xed\xad\x07\xa0\x72\x75\xea\xc8\x84\x54\x80\x62\x99\x89\xaf\x10\xbe\x8a\x49\x0d\xbb\xec\x0f\xfd\xf6\x1e\xa8\xdb\xfb\xdb\x53\xed\x4d\xc1\x05\x7c\xfd\x28\xa1\x63\xf2\x1d\xda\xb7\xc8\x1d\x1c\x40\x17\x5a\x7f\x3f\xc6\x55\x23\xdf\x9e\x8a\x47\x9d\x39\x58\x63\x84\x83\xfa\x72\x40\x40\x2c\xb4\x13\xc2\x28\x47\xcf\xd6\xb5\x0d\xa0\x1e\x7e\x60\xc0\x3f\xe9\x08\x76\xbb\x2b\xe8\x63\x46\xc8\xee\xc8\x73\x3b\x33\x6c\xb3\x3a\x0b\x2d\xb3\x62\x5c\x9e\x7b\xa5\xc0\xca\xa2\xc4\x33\xa4\x11\x56\x0b\x6b\x10\xaa\x67\x11\xb1\xdd\xb6\xfa\x60\xc6\x54\x51\xcf\xff\x85\xa0\x6b\x6b\x62\xe7\x20\x5f\x33\xe8\x48\x29\xe7\x24\xcc\x5c\x05\xb2\xa0\xe5\x97\x92\x6c\x84\x45\x4c\x29\x9a\x1d\xa5\xad\xe2\xa9\x1c\xd0\x11\x55\x7c\x26\xf8\xa5\x04\x12\x68\x34\xd2\x89\x7a\xce\x91\x40\x23\x2e\x25\xdc\xb5\x26\x0e\x29\x65\xbf\xf6\x85\xff\x10\xd5\xc2\xb9\x88\x31\x71\xc0\x78\x39\x6b\x9f\xb7\xaa\xce\xac\xb5\x88\x30\xac\x75\x30\xf1\x95\x94\xa7\x2b\x87\x0b\xba\xf7\x1e\xdc\x9e\xad\x70\x40\x71\x0d\x8c\xfe\x05\xb0\xb6\x52\x84\x19\x92\xb4\x94\x6b\xd1\x67\x7a\x70\xe5\x7b\x2d\x83\x0b\x2a\x2b\x26\x25\xe8\x83\xf5\xd5\x8e\x94\x0f\xc6\xec\x1d\x12\x77\xc1\x63\x70\x6b\x55\x62\xfc\x93\xfc\x9a\x7e\x36\xc7\x58\x17\x44\x11\x41\x41\xb8\x5a\xb1\x07\x8c\x61\x5c\xb5\xda\x39\xde\x29\x44\xb1\x03\xaa\x45\x56\x96\x93\x09\xec\xb6\xb2\x0c\x50\x04\xd5\x4c\x2c\xbf\xab\xd6\xc1\xfb\x09\x78\x88\xd3\x04\xfb\xc3\xae\x5a\xde\x29\x7f\xc4\x4e\x11\xfd\x9e\x88\x79\x41\xf8\x38\xad\x48\xca\x8e\x39\x7a\xf0\x10\x1d\x57\xff\xbf\x87\x8b\x33\x4e\x8a\xf1\xc3\x19\x23\x85\xb5\x97\xf9\x1e\x82\x59\x9e\xf1\xf1\xc3\x19\xdf\xa5\xc2\x43\x52\xbe\xcf\x51\x33\x13\xcb\x15\x3a\xc1\x30\x1f\x00\x3a\x73\x5f\x70\xda\x33\xb1\xe8\x86\xb6\x67\xb3\xab\x5d\xe2\x98\x8e\x45\xd6\xd8\x6a\x7c\xb8\x79\x4a\xf9\x83\xda\xf5\x3f\x26\x53\x1c\x1b\xba\xc0\x0f\xb5\x6a\xd5\x7d\xc3\x3e\x32\x8f\x8a\xd0\xd0\xd3\x41\x48\x51\x0e\x85\xd2\xd5\xb4\x3a\x18\x8a\x90\xd8\x77\xbf\x48\xc0\x68\x97\x56\xa9\xa0\x04\x5d\x6a\x7e\x6b\xfc\xf0\x9a\xd8\x37\xfb\x38\x9f\x47\x84\x14\xda\x86\xee\xe4\x94\x3d\x2a\xac\x5a\xea\x78\x8c\x8a\x39\x5b\x00\xcb\xb6\x8b\x2d\xfa\x25\x19\xbd\x02\xb8\x93\xa3\xe8\xc9\x30\x6b\x60\x10\x8a\x7e\x60\x69\x3e\x42\x20\x12\xc1\x2d\x3a\xe8\x1c\xca\x58\x8d\xa8\xd0\x17\x0b\x6f\x1c\x20\xe5\xb4\xca\xad\x27\x66\xd1\x62\xa2\x3d\xe3\x62\x3c\x78\x6f\x9e\xb2\x47\x12\xd8\xe7\x6c\xf1\x88\x54\xa7\x4c\x42\x21\x25\x02\x34\x78\xb1\xc7\x17\x4a\x0b\xc5\x61\xa2\x68\x60\x37\xf6\xc4\x7a\x50\x8f\x9f\xff\x70\xed\x63\x50\xd9\xdd\x80\x7e\x5a\xe3\x90\x4e\x3a\xb5\x7b\xd1\xab\xbf\xd1\xf7\xc0\x73\xac\x0a\xea\x17\xd9\x86\xa3\xba\x67\xe2\x9a\xe9\x12\x43\xbe\xae\xa8\xcb\xe0\x85\x36\xec\x4b\xb0\x9b\x98\x93\x57\x99\xb8\x9e\xac\xb3\xcf\xe9\x09\xa6\xc7\xc2\xd0\x74\xc1\x10\xfb\xe9\xf4\x3d\x42\x3f\x79\x98\x82\x69\xf5\x53\x0e\xfb\x44\x52\xa1\x93\x07\xb9\xf4\xc4\x3b\x48\xbf\x4a\x74\x64\x5c\x46\x0f\x56\x13\x25\xd4\x2e\x5b\xff\xaf\x64\xa5\xac\x01\xb4\xf9\xbc\x6f\x0c\x80\x13\x2a\x69\xbb\xe3\x46\x14\x65\xfb\x05\x3e\xc4\x3c\x43\x01\x85\xa6\xe2\xc6\x02\x9e\x90\x58\x69\x40\x4e\x38\x38\x72\xe5\xb7\x93\x2b\x2a\x94\x5a\x5b\x2a\x70\x52\x17\xec\xaa\xa4\xc2\x77\x7d\x58\x1c\x5c\x5d\xc9\xb7\x44\x91\x09\xea\xfb\x4e\x74\xa4\x33\x8a\x17\xf8\xf5\x4a\xdd\xc5\x2a\xad\x27\x75\xd5\xf0\xa5\xa6\x8e\x53\xee\x8e\x87\x7e\xde\x64\x2c\x07\x83\xa9\x97\x55\xf5\xb1\xd9\xa4\x02\xd7\xc8\xa8\x77\x0c\x84\xd5\xc4\x86\x89\xd4\x13\x3b\xe3\xd1\x28\xad\x08\x20\x84\xba\x2a\x6f\x28\x87\xf0\x7e\xff\x41\x6f\xa1\x7e\xab\xcb\x9b\x66\x84\xaa\xb8\x7d\xf3\x6a\x81\xd0\x59\x36\x8b\x5d\x15\x15\xe8\xce\xad\x94\xeb\xe8\x67\xca\x7a\xd6\x15\x8e\x65\x66\x3c\xc5\x2a\x8d\xd6\x27\x7c\xe2\x2c\xe6\xc0\x19\x32\x77\x87\x0c\x29\xd5\x68\xa4\x76\x78\x34\x52\x5b\xb5\xd3\x4d\x99\x4b\xba\x6f\x5e\x60\x6e\x63\xe6\x42\x32\xa3\x7b\x80\x0e\x1c\x15\xce\xdc\xc1\xb8\x63\xac\x46\xa3\x14\x7e\x64\xdb\xad\x1a\x5a\xef\xd8\xbe\xb8\xd7\xfe\xb5\x70\xd6\xe1\xc8\xef\xcc\x57\x97\xf8\xa2\xe9\xa8\x79\x54\xdb\xad\x9a\x8f\xe9\x02\x4c\x87\xe4\xbc\x22\xf3\x29\xb3\xba\x1e\x74\xc4\xd9\x4f\x54\xb8\xf5\x4a\x0c\xd5\x84\x87\x1a\x3a\x12\xdd\x44\x8d\xe2\x56\x28\x0e\x70\xcb\xab\x14\xae\x39\x91\x26\xb3\x04\xb5\x11\x0c\x86\x31\x31\x68\x81\x33\x72\xb7\xc3\xb5\x91\x49\xfa\x3a\xe5\xbc\x35\x3b\x39\x39\x2d\x5a\xdb\x96\x62\x3c\x46\xd9\x3c\xe5\x92\xba\x5d\x20\x89\x57\xc1\x37\xf5\x02\x74\x51\xf9\x64\xd5\x94\xe5\xeb\x6c\x4d\x11\xae\xb7\xdb\xb4\x26\x47\xcc\x4f\x46\xd6\xc1\x39\xfb\xab\x72\x56\x5f\xcf\x32\x6c\x8d\xc9\x66\xf5\x6e\x07\x15\xae\x28\x78\x7f\x7f\x61\x4b\xa5\x05\x9a\x2c\xc1\x4a\x33\x85\x5c\x27\x47\x20\x84\x3c\x07\xab\xbe\x6e\x34\x00\x70\xab\x40\x03\x1e\xd2\x98\xeb\x63\xa0\x70\xbd\x21\xa4\x9c\xb0\x79\x01\xae\xd7\x4c\x04\xfb\xd1\x88\xb7\xc1\xec\x77\x60\xd3\xaa\xf0\x30\x78\x7c\x29\x6e\x32\x51\xfc\x9d\x12\xe3\xfb\x9a\x5b\x56\xb8\xd2\xe7\x07\x07\xed\x2a\x3a\x04\x4a\x93\x27\x6f\x5e\xbf\x7f\xfc\xe2\xf5\xf9\xdb\x8b\x37\x3f\x9f\xbf\x7d\xfb\xe2\xe9\x79\x82\xee\x33\x8f\xf9\xd5\x7a\x5c\x06\x3e\xac\xc2\xd5\x27\x39\x78\xae\xfe\x2a\xbe\x83\x56\x33\x90\x4b\xa5\x46\x9c\x17\x30\x8a\x8c\xdf\xa2\x94\xab\x0c\x55\xd2\xf8\xf6\x54\xd0\xa9\x7d\x92\x3f\xe9\xab\x18\x29\xe6\x36\x33\x6f\x16\x56\x25\x10\x14\x20\x6a\x1d\x2d\x8c\xe6\xe4\x68\x1a\x77\x89\x2a\x91\x36\x89\xaa\x37\x55\x4a\x78\xe5\xcd\xb9\xf5\x34\x0e\xe4\x7d\x47\xc2\x08\xbd\xb9\xeb\xaf\xdc\x3b\xa0\xc8\x78\x4e\x42\xcf\x42\x75\xa0\x48\xee\x38\x8d\x73\x93\x6b\x88\x1e\xd7\xb7\xb8\x6a\x31\xe8\x61\x0b\xaa\xc8\x34\x35\xc2\x59\xec\xcd\x63\xf0\xb5\x58\x0c\xb4\xdb\xc2\x68\xcb\x73\xb1\xc0\x7c\x34\x4a\x6d\x99\xa5\x4d\x8d\x42\xbd\xee\x73\xcf\xd2\x86\xba\x17\x12\xb4\xec\x19\xed\x10\x59\xf6\xe9\x2b\x31\x10\x9d\x8b\xc9\x9b\x5f\x5e\x9f\xbf\xd5\x71\xb2\xa1\x6e\xe7\xb5\x1a\xde\x4f\x71\x10\xf0\x07\xd8\xb9\xd3\xba\xa1\xe5\xdb\x3b\x38\xea\x96\xe4\xeb\x0d\xd3\xb4\x96\x49\x74\xb1\x24\xbe\xe5\x3e\x91\x22\x82\xe2\x5d\x3a\x85\x82\x2e\x8f\xa6\x0b\x18\x11\x3b\xd7\x22\xa0\x33\x53\x86\xdb\x40\xab\x31\x00\x28\xfc\x37\x69\x65\x69\x81\x81\xa3\xfb\x1c\x2e\xa4\xc4\x9b\x6e\x2d\x2f\xc6\xf4\x52\x8b\x8e\x31\xc5\xcc\xe7\x5a\xc4\xfb\x27\x35\xae\xef\x53\x42\xb7\xd6\x0f\x0a\x3d\xb5\x88\xd7\x45\x64\x1a\xda\x8c\xeb\xc4\xac\xb6\x36\x76\xe6\xda\x31\xaa\xa5\x6d\xa0\x03\x48\x65\xc6\xb7\x7b\x4e\xdf\x6b\x17\x42\x3e\x36\xb2\x77\x8c\x4e\x8e\x3b\xc1\xd4\x35\xbb\xdc\x61\x8b\x0f\x3a\xdd\x98\x87\x9b\xd7\xb5\x3f\xc7\x76\xf1\xd7\xd9\x47\x5b\x28\x6d\x27\xe9\x4f\xd1\xa8\xe0\xb9\x2d\x06\xcc\x63\x20\x2b\xba\xef\x1d\xee\x5a\x84\x7e\x99\x92\x3f\x28\xa6\x06\x4b\x35\xb0\xb3\x2e\x40\x8b\x89\x93\x94\x92\x2c\xf5\x27\x17\xdb\x0e\x84\x9c\x56\x5c\x0b\x73\xa3\xfc\xeb\x6c\x07\xd7\xd2\x9b\x8a\x84\xf1\x4f\x0a\xac\x60\xf4\xa8\x5d\x28\x3d\xf3\xae\x06\xe1\xb3\xac\x28\x95\xca\xbc\x26\xb9\x32\x66\x3d\xb2\x0f\xab\xd5\xf0\x9b\x64\x1c\x19\xe7\x38\xf9\x66\x32\x7c\x55\xd5\x62\x58\x16\x1f\x69\x79\x0b\xb5\xd6\x8a\x10\x2a\x6f\x87\xda\xab\x83\xf6\xd4\x5e\x71\xd5\xe8\x4d\x56\x16\xf9\x70\x5d\x81\x5e\xbe\x7a\xbb\x4d\xac\xf7\x9d\x88\xe9\xb5\x33\xfa\x8b\x82\x15\x42\x47\x99\x39\xeb\x49\xd7\x37\x82\xa2\x35\xa8\x78\x23\xcf\x03\x4a\x2b\xe7\x94\x20\xdc\x59\x10\x15\x0f\x5b\x69\xad\x3f\xf8\xdf\xf3\xff\x3d\x5b\x8c\x67\xf0\xff\xef\x1e\xf8\xda\xe7\xbf\x9d\x55\x88\xa1\x48\x56\x26\x64\x07\xb5\x3f\x5d\x3a\xc4\x60\x33\xa0\x6d\xd5\x4f\x9d\xdd\xb7\x54\xa6\xd8\x68\xe4\xfb\x03\xb1\x2d\xdd\xe9\x5f\xb3\x36\x6d\xb7\x73\xaf\x7a\x7d\xdc\x32\x05\x60\x9d\x9b\x97\xfa\x05\x3c\x5a\xe8\x42\x78\xa4\x6a\xdf\x1d\x6f\xf8\x41\x87\x95\x2b\x5b\xd4\xaf\x88\x81\x5e\x03\xe4\x0b\x0b\x9f\xfb\xa8\x06\xec\x5d\x14\x07\x94\x5c\x65\x45\x79\x40\x31\xa3\xbd\xbf\xb7\x90\x5c\xa0\x37\x7b\x0b\xc6\x50\x6b\x8b\xef\x63\x0e\x1a\xc0\xe8\x47\x68\xe7\xf9\x01\x65\xa6\x83\xd0\x44\xb9\xc2\x5f\xcb\x59\xb0\x01\x55\xdd\x8b\xdc\xf5\x0d\xdd\xae\xd8\x9c\x2d\x22\x40\x35\x67\x36\xf8\xba\x59\x35\x99\x14\xa8\x49\x37\x2c\x32\x7c\xcf\x3c\xd1\x1b\xc0\x17\x00\x8b\x3b\x56\x7f\x60\x62\xe1\x65\x7a\x40\xd2\xc9\x6c\x67\x19\xe6\x98\x49\x89\x45\x87\x52\x96\xcd\xf5\x28\xe3\x86\x4f\x6f\x49\x1b\x49\xe2\xd3\x23\x8f\xe4\x43\x2e\xc6\xba\xe1\x2e\xeb\x86\xed\x0c\x1b\x9e\x76\x49\x3f\xa1\x08\x22\x1a\xcc\xae\x9f\x0e\x02\xc9\xaa\x3b\xdd\x62\x61\x0c\xc3\x7c\x5d\x27\xea\x60\x1f\x60\xff\x98\x4f\x4b\x36\x09\xec\xce\x08\xb5\xde\xa5\x33\x5b\xc3\xdf\x0e\xb7\xc8\x59\x30\x08\x72\x74\x32\xeb\xce\x82\x64\x38\xdb\xb9\x54\x7a\xf0\xee\x19\x84\x34\x09\x1b\x8d\x5c\xce\xb2\x41\xc3\xe0\x0a\xc2\xe8\xa3\x9b\x44\x64\x66\xa2\x25\x86\xdc\x51\x10\x44\x98\x75\xde\x54\x4b\x5e\x5c\xf6\xfa\x1e\x32\x3d\xb6\x8b\xe6\x7d\xea\x17\xde\x53\x68\x05\x00\xea\xec\x9e\xfc\x94\x5a\x7d\x37\x6f\xd4\x67\xde\x97\x1d\x97\x2c\x1e\xba\xdc\x34\x6b\xf5\xcc\x10\x8c\x5f\x39\x76\xdb\xd0\x59\x4f\xfa\x81\x63\xed\x0c\x68\xdf\xa0\xfb\xdd\xe8\xfa\x17\x03\xb8\xa7\x4c\x7b\x72\x02\xd4\xe2\xf4\x1b\x20\x57\x97\x1a\x8d\xbf\xc1\x0e\x59\x28\xb7\x95\xb3\xfe\x2c\x68\xf7\x90\x05\xeb\x56\x6a\x29\xf3\x88\x42\x47\xc4\x2d\xa7\x7e\xef\xff\x2c\x09\x35\x77\xf6\x9e\x6a\x05\x07\x71\xa5\x3e\xc8\x7a\x4e\xed\xde\x9a\x0c\x14\x63\xbb\x39\x0a\x06\x16\xdb\x50\x07\x43\xdc\xa9\xba\x33\xbe\x43\xbd\xc7\x38\x94\x0c\x6a\x84\xfb\xac\xe2\x10\x3b\xd1\x9f\x54\xe7\xe6\x85\x5d\xee\x04\xc6\x7c\xd3\xd7\x46\xe0\x52\xda\x6b\xa7\x83\x4d\x44\x2f\x36\x11\x7e\x4a\xb7\xcb\x94\xa2\x8e\x17\x62\x43\x54\x74\x47\xf3\x6b\x3c\xc5\xf4\xdd\x9e\xe6\xde\xe2\x7b\xd6\xe7\x90\xcb\xd8\x74\xe1\x5c\x84\x9d\x85\xe2\xbd\x0b\xc5\x7b\x17\x0a\x56\x88\xf7\x8c\xac\x5f\x39\xdf\x0e\x43\xc9\x9f\xb9\xb3\x50\x5c\xde\x31\x46\x30\x2e\x87\xa9\x94\x4f\x68\x94\x7b\x6c\x46\xe6\xc1\x00\x5b\xa0\xa0\xbd\x33\xf9\xdf\x21\x67\xb5\x15\x09\xc1\x41\xd5\x4f\x6b\x5f\xa3\xd7\x25\xa8\xbb\x7a\x3a\xfe\x30\x4f\xd3\x18\x15\xee\x62\xbb\x4e\x0e\x99\x2f\x10\x52\xfa\x20\x77\x86\x85\x3d\x13\xd8\x3c\xa6\xe1\x10\x06\x86\xf8\x7d\x83\x71\x4c\x37\x5b\x58\xe0\xc8\x06\xa7\xa7\xca\xb7\xc8\x9b\x15\x0c\xd7\xd3\x4b\xf1\x86\x05\xed\x31\xe4\x06\xe3\x75\x61\xcb\x4c\xb2\x7d\x3e\xcc\x8b\x76\x82\x5e\xea\x7d\x93\x63\xe1\xe4\xc0\x49\x62\x1f\x02\x50\xa6\x0c\x81\x8e\x0b\xce\xfa\xe8\xfd\x9a\x74\x22\x91\x78\xc4\x0d\x1a\xb4\xa6\x4f\xb5\x6b\xfa\x94\x32\x22\x4f\x20\xf2\xf7\x56\x29\x56\xa5\x99\x24\x94\x8f\x9c\x38\x8c\xf1\x23\x54\x04\x47\xc8\x9d\x18\x1c\xa2\x43\xae\x26\xb7\x12\x08\xfd\xfa\xb3\xa1\xcd\x2e\x07\x22\xeb\x58\xc4\x07\xf7\x4a\xec\xc6\xce\xdd\x48\x7e\xde\x39\x77\x5e\x96\x7d\xd8\xb9\xf0\xc1\xbe\xf5\x45\xde\x8f\x94\x8d\x34\xa5\x73\x36\x1d\xc9\x0a\x45\x5d\xd4\xdc\x91\xcc\xec\xbd\x32\x5e\xfc\x86\x03\x0b\x04\x42\xb1\xc1\x1d\xc6\x24\x0e\x08\xa9\xce\xbb\x22\xfe\x50\x89\x8d\xbc\x0f\x86\x3a\x4d\x9e\xa5\x91\xeb\xa7\xfb\xa2\xb4\x14\x44\x47\x72\x6f\x10\x74\xe7\xa9\x87\x0b\xc2\x24\x06\x2f\xb6\xdb\x54\xfd\x8c\x3d\xfe\x0c\xbb\xac\x98\xf3\x7b\x18\xbf\x74\xcf\x2c\xe0\x11\x65\x3d\x7f\xc9\xfb\x32\xd3\xb4\x0a\xc7\x0c\x1d\x44\xa8\xc5\xf8\xda\xc2\xc6\x88\xd8\x81\xf2\x79\x0f\x6a\x59\x91\x34\x49\xc6\xa0\x2b\xc2\x33\x96\x57\xeb\x14\x8d\x5b\x63\x70\xf9\x46\xd9\x94\xd9\x92\xa6\xc9\x24\xc1\x49\x82\x06\x8e\x44\x6e\x83\x5d\x51\x5d\x07\xc5\x29\x2b\x43\x46\xae\xf5\xea\x30\xb3\x28\x26\x36\xba\x7b\xe3\xf8\x46\x5c\xd6\x9c\x40\xae\x06\x0c\xbc\x60\x82\x72\x86\xd2\x6a\x9c\xcc\x92\x71\x36\x4e\x8e\x93\xf1\x4a\xc7\x27\x36\xfc\x8c\x52\x69\x74\xe4\xd9\xd5\xf1\x3a\xdb\x1c\xe8\xdc\x51\x9d\xad\x3e\xbe\x9c\x3a\x73\x37\x94\x8b\x62\x49\x15\x47\x3e\xea\x54\xce\x0f\xb6\x65\xf8\xeb\x71\xc7\xf4\x89\xa1\xa1\x86\x7f\xf9\x48\x6f\xff\x32\x2c\xea\x21\xa7\x7f\x6b\x0a\x4e\xf3\xc4\xbb\xa9\x6c\xbf\x72\x71\x64\x17\x5a\xc8\x51\x4d\x6e\xb2\x92\x48\xa8\x29\x56\x69\xc7\x11\x25\x47\x50\xf6\x3c\xbf\xa2\x69\x85\x55\x3d\x8e\x90\x72\x5c\x68\xd4\xc7\x94\xfd\x98\x75\xdf\x98\x8d\xc7\xb1\x5a\xf3\x6c\x81\x90\xda\xba\x58\x4f\xcc\xa9\xa3\x6a\x30\x84\x2b\xa7\x27\xd5\x0b\x8b\xf7\xa2\x6b\xc8\x3e\x3a\x98\x5d\x97\xa9\x23\x6b\x0a\x2b\x03\x6b\x11\xf5\xbe\x44\xc3\x60\x61\xfe\x4a\x4e\x3e\x65\xe5\xc7\xce\x75\x20\xaa\x4d\x5d\x71\xd1\xad\x27\x5b\xb3\xd1\xe7\x06\xad\xee\x90\x08\xb5\x59\x63\x60\xe3\xfb\x42\x53\x41\xc0\x24\x14\x68\x01\xc9\x26\x13\xd7\xee\x37\x57\x71\x89\x21\xe5\x90\x78\x6e\x3d\xc0\xb5\x2e\x20\x86\xfc\xf0\x23\xbd\xd5\xd0\xa4\x44\xf6\x27\x5b\x67\x50\x8e\x9c\x9e\x99\x70\x05\x1a\x97\x82\x3b\x97\x8f\xf4\xd6\xd5\x37\xe5\x9e\xe0\x49\xcf\x8b\x8d\x95\x0e\xaa\x24\x22\xee\x8a\xfc\xf3\x8c\xe1\x8f\xf4\x76\x46\xf1\x4d\x56\x9a\xb8\x77\x55\x23\x66\x47\x53\xbc\x2a\xb3\x2b\xf9\x57\xd5\x9c\x85\xce\xba\xf4\x6e\xc7\x5e\x5a\xcb\x6b\xba\xfc\x28\xbf\xe5\x90\xb4\x21\xbc\x9a\x8c\x3b\x13\x6d\xf3\x0d\x14\x8f\xe3\x21\x74\x52\xe4\x9f\x2d\x1f\xcb\x1b\xb6\x1c\x33\x64\x63\x3a\xa9\x1a\xd1\x91\x42\x4b\x28\x89\x49\x2e\x5b\x1b\x0c\x90\x53\x43\x54\xb4\x13\xa3\xc7\xeb\xeb\x3b\xd8\xb5\x04\x9f\x1f\x50\xe0\xa6\xa8\x0b\x91\x72\x40\xa3\x2d\x78\x39\x9b\xdf\xe1\xb9\xc2\xf4\x7b\x2e\xce\x62\x95\x52\xbd\x51\x11\x3f\x0e\xcb\xdb\x65\x49\x87\x39\x15\x10\xa6\x60\x36\x4c\xc6\x62\x9c\x0c\x1f\x1d\xcb\x1f\xc8\x98\x76\x52\xab\x5a\xd8\xae\x22\x75\xc9\x47\xad\x86\x3c\xa7\x73\xbe\x58\x7c\x55\x67\x30\x44\xbf\x67\x7f\xfd\xda\x85\x81\x10\xea\xf6\x68\xb4\x8a\x33\xba\x3b\x12\xeb\x06\x07\xeb\x28\x6b\x7a\xb8\x9e\x8d\x89\x19\xc9\x4e\x05\xe9\x57\x63\x66\xa1\x06\x63\xa0\x78\xe0\x9b\xf3\xb4\x27\x38\x38\xd5\xce\x48\x4d\x92\xda\xca\x36\x91\xca\x0c\xe2\x42\x08\x7d\x24\xc0\xdd\xab\x5a\xda\xc5\x44\x1e\x0f\x12\xea\x61\xc3\x9a\xc4\xb7\xde\x88\x07\x61\x40\x46\x1c\x0d\x33\xb7\x12\x66\x39\x04\x65\xf4\xa6\x5d\xd5\xc1\x59\x38\xb5\x4a\x39\xfa\xc0\x9f\x6c\x0b\x65\x4b\x86\xbe\x27\x27\x80\x52\x74\x14\x35\x78\x33\xc8\x71\xa1\x65\xc5\x44\xc1\x1a\x0a\xd7\x80\x1e\xea\x09\xae\xb4\x73\x39\x79\x00\x08\x61\x70\x3a\xc1\x15\xe1\x40\x77\xf8\xff\x1a\xd9\x98\xfc\x7a\xc1\x96\xd5\xba\x60\x57\x72\xd5\xe1\x72\x30\x06\xb8\x99\x2d\xdc\x75\x49\x67\x2a\xed\xf3\x48\x0a\x2b\xa0\x91\x19\xb5\xe6\xbe\xa7\xe2\x7b\x79\x2a\x8f\x8f\xd5\x0a\x4b\x42\x44\x2c\xd4\x32\x6f\xb7\xcc\x8c\x7c\xef\xbd\xe1\xad\xb6\xc1\x31\xa0\xf8\x64\x4e\x87\x46\x37\x22\xd5\xef\x23\x75\x46\x00\x75\xe2\x42\x5e\xd0\x46\x0c\xc8\x0e\xbb\x25\x0e\x70\x55\xab\x6a\xcc\x9d\x6a\xe3\xf1\x82\x9c\x6c\x0f\x0a\x29\xa6\xf0\xff\xfc\xf8\xd8\xa9\xbe\x50\x43\x54\x64\x93\xd2\x71\xcd\x36\x9b\xb2\x58\xc2\xab\xf2\x01\x3c\xb1\x63\x6a\xb1\x6e\xa1\xfa\xb6\x16\x74\xfd\xc0\x49\x3a\xb0\xd8\xb1\x11\x0a\xef\x2b\x6f\xa8\xe6\x7d\x65\x28\xbb\x2a\xd8\xde\x56\x54\x89\x83\x3a\xd4\x45\x37\x19\x87\x38\x13\xd1\x55\x31\x11\x71\x78\xfd\x20\xaf\xd6\xc7\x26\xfa\x7e\xdd\x51\x0d\x56\x8e\xef\x70\x16\x90\x9c\xe0\x3c\xe0\x1c\x3a\xfa\x29\x53\x31\x3a\xe5\x4b\x2c\x48\x51\x9f\x56\xa3\xda\x24\x80\x4a\x9c\x15\xe4\x3e\x6e\x07\xe6\x94\x74\x52\x0d\x6b\x41\xbf\x5e\x94\x1c\xfd\x27\xcd\xbf\x48\x29\x4e\x1e\xbb\x1b\x77\xe7\x06\xaa\x3d\xc1\x57\x54\xcc\x22\xe6\x79\x86\x0c\xda\xed\xd0\x41\xed\xbe\xb0\xeb\x7e\x50\xfb\xfc\xa0\xf6\xdf\x5a\xc8\x38\xa8\x51\x76\x50\xa3\xe7\x1a\x94\x0e\x6a\xb2\xf8\x82\x26\xbf\x70\x09\xaa\x83\x9a\x0e\x60\xe6\xc0\xb6\xb3\x10\xd6\xf6\xf6\x51\x7f\x65\x1f\x75\xa7\x8f\x7e\x2c\xd3\x7b\x9e\xf0\x3c\xd1\x2f\x23\x7b\x12\x75\x84\x22\xfb\x4d\xd9\x4d\xc1\x2b\xb6\xee\x3b\xad\x11\xf4\xd4\x3d\xa5\x91\x27\x61\xe1\x39\x0a\x1c\x58\xf0\x71\x02\x62\xf1\xf4\x8e\x65\x6b\x3a\x4b\xf2\x6a\xfd\xbe\x1d\x73\x5b\x60\x16\x50\x13\x8c\xe8\x01\x9a\x19\x1e\x2f\xab\xf5\xa6\x28\x29\x37\xc3\xbc\xac\x2a\x51\x0b\x2e\x1f\xaf\xd6\x1f\x3d\x9f\x38\x73\x9c\x5c\x67\xf5\xd3\x37\xaf\x46\xa3\xf4\x04\x83\xcc\x05\x29\x47\xf3\x05\x81\x04\x3d\x48\x99\x68\x7e\xe3\x8a\xe4\xd5\xb2\x51\xf1\x1b\x0a\x08\x73\x2d\xe8\x67\x31\xab\xf0\x75\x56\x9b\x61\xcf\xa0\x61\xf3\x85\x6b\x2a\x9c\x1c\xe7\x6b\x87\xf6\x6c\xe4\x5e\x14\x7f\x9f\x6d\xc5\x9a\x8a\xac\xb4\x5f\xbc\x61\xa2\x58\xd3\xbd\xbb\x7c\x53\xd0\x4f\x7b\xaf\xa4\x10\xeb\x1f\x88\x9d\x1d\x9d\xe7\xdf\x48\x2f\xe7\xaf\x7f\x68\x28\xbf\x25\x95\xfe\x61\x94\x60\x5f\x30\x41\x79\xb6\x14\xc5\x0d\x25\x45\x64\x93\xb1\x23\xd1\x2a\xea\x1f\x78\xf5\xa9\xa6\x5c\xbb\x1e\x37\x9f\xe4\xe8\xc8\xc9\x9c\x05\x99\xd1\x56\xfd\x32\x86\xd9\xad\xc7\xe8\x78\x55\xf3\xc6\x67\xdc\x55\x96\x95\xbe\x56\x12\x56\x31\x9a\x20\x77\x8c\xf5\x75\xd5\x94\xf9\x5b\xca\x72\x33\x4c\x37\x05\x46\xea\x26\xcc\x22\x45\xcc\x5b\xd9\x49\x3c\x78\x80\x48\xc2\xbf\x86\x74\x1d\xd3\x5c\x7f\x91\x36\x63\xe6\x67\xc4\xa2\x19\xda\x36\x6c\x1d\x65\xed\x36\xe1\x55\x25\x74\x64\x18\xa3\x69\xe8\x24\x11\xaf\x80\xb7\x30\x66\xd1\x4c\x2d\xbb\x88\x6d\x96\x57\x5e\x4d\xd5\x94\xd6\x13\x37\xc9\xc8\x07\x0b\x67\x0d\x4c\x85\x60\x61\x8e\x82\x62\x48\x07\x91\xc8\x2c\x4a\xa3\x9f\x05\x65\x79\x7a\xe7\x9c\x21\x35\xe7\x65\x53\x8b\x6a\x7d\x7e\x23\x01\x5a\xa5\x38\x53\x54\x09\x12\xdb\xcd\x3a\x86\x7b\x75\xb3\xe9\x73\x7d\xe4\xaa\xf0\x50\x9e\x26\xc7\x31\x7c\x31\x5b\x67\x05\x4b\xa0\x28\xbe\x73\xac\x45\x66\x47\xd3\x1d\xda\xe1\x0b\x89\x27\xdf\xdd\xb2\xe5\xac\x6b\x5c\xeb\x89\xea\x65\x39\xaa\x62\xde\xce\x52\xe5\x83\x11\xf4\xc6\x15\x94\x51\xd1\x6c\x0c\x33\x53\x69\x93\x3b\xd3\x3b\xdb\xbf\xc1\xb3\x4e\xb6\x62\x4c\xb5\x93\x71\x33\xb1\x0f\x04\x12\x59\x83\xbd\x05\x52\xab\x93\xf0\xaa\x11\x94\x27\x20\xf6\xe0\x72\x60\x28\x15\x38\x31\x55\x12\xa7\xba\xd1\x48\xf5\x3a\x6a\x2c\x89\xf5\xc2\xb9\x4c\xb5\x1e\x5e\x07\x4a\xda\xc9\xc3\xce\x3e\x2d\xea\x4d\x26\x96\xd7\x94\x5b\xeb\x4a\xb5\x6c\xe6\x38\xa2\x1d\xf6\x96\x6a\xd6\x61\x93\x2d\x2b\x56\x0b\xde\x2c\x45\xc5\x83\x55\x55\xed\x5d\x18\xad\xdb\x8b\x0b\x60\x71\xa8\xe9\xce\x60\xb2\xf2\x0a\x6c\x04\xcd\x51\xda\xe7\x46\x4b\x31\xb4\xf5\x1a\x29\xc8\x40\x3b\x34\xe1\x34\xcb\xdf\xb0\xf2\x36\x45\x38\x2f\xf2\x27\xc0\x96\x7f\x5b\x55\xe2\xe7\x82\x7e\x9a\xf9\xfa\x8a\x2a\x42\xef\xfb\xaa\x73\x68\xe5\xd4\x44\xc6\xc5\xdb\xaa\x11\x05\xbb\x72\x01\xb9\x6f\x8b\x26\x6e\x05\xbb\x62\x79\x91\xbf\x83\x89\x43\x29\xe0\x27\xd5\xed\xf7\xcc\x37\xf0\x3c\x8a\xd5\x31\x47\xa7\xd3\xd2\x69\xff\x48\xda\x72\xe0\x58\xe0\x3a\x63\x79\x49\x3f\xbc\x7d\xd9\x3d\x16\xbd\x10\xe7\x9d\x17\xaf\x41\x2c\x6f\x0c\xdd\x20\xf0\x40\x63\x20\x13\x92\x38\xda\x5c\xd3\xec\x19\x98\x6c\x5f\xe4\x6d\x71\xb5\x7b\x98\x05\xe3\x71\xc1\x19\x27\x2e\xda\x49\x10\x2e\x3a\x83\x0f\x0a\x74\xf5\x95\x19\x2e\xda\xc0\x99\x6a\x5a\x46\x6f\xd7\x43\xd2\x74\x27\x09\x58\x6f\xc5\x0c\xf0\xc5\x17\x6c\xd2\xf0\x32\x41\x3b\x0c\xdc\x99\xc8\x32\xcb\xb2\x83\xee\x5a\x7a\x5c\xfd\x0b\xab\x81\x79\x71\x61\x57\xca\x25\x71\xcc\x2a\x55\xfd\x78\x22\x8b\xbc\xf0\x0b\x6b\xed\xed\xdd\xc4\xc0\x50\x9e\xbc\x7d\xf7\xf3\x4f\x93\x9f\x78\xb5\x2e\xea\x20\x8c\xb5\x44\x1f\xad\x6d\x77\x02\xd1\x5c\x54\xd5\x44\xdb\x79\x63\x81\x76\x68\x26\x76\xb8\xee\x44\x78\x98\x50\xce\x2b\xe3\x74\x54\x7f\x0d\x8a\x55\x9a\xbc\xe7\x19\xab\x0b\x59\xf4\xf1\x65\xc5\x05\xcd\x13\xe0\xc8\x4a\x82\x79\x34\xaa\x26\x17\x6a\x26\xaf\x8a\x25\xaf\xca\xe2\x72\xa2\x70\x53\x5b\xc9\xca\xcf\xee\x2d\x39\x11\xd7\x94\xa5\x19\xae\x91\xb2\xfe\xdb\xd7\x73\xeb\x07\x30\xa5\x93\x35\xad\xeb\xec\x4a\x69\x80\x35\xce\x4a\x57\x0e\xe2\xb5\x40\xd4\xc8\xfd\x54\x07\x01\x57\xce\xb9\x68\x26\x0a\x7e\x52\x84\xda\x81\xec\x76\x68\xd0\x4c\x38\xad\x36\x94\x3d\x29\xb3\xba\x4e\xef\xfa\x11\xe8\xaf\x54\xc0\x19\x88\x89\xa8\xce\x5b\xd8\x91\xe4\x92\xbe\xe7\x04\x84\x47\x73\x6e\xda\x0e\x88\xe1\xa0\x72\x8a\xba\xb7\xad\xd7\x44\x4d\xf9\x4d\xb1\xa4\xb3\x63\x43\x1b\xc9\x26\xcc\xef\x48\x5d\x87\x1a\x50\x56\x42\x3b\x84\x6b\x4f\xf0\xe2\xf4\xde\x75\x61\xda\x51\x02\x70\xe9\x59\xe7\x80\x2b\xca\x96\xf8\x94\x6d\x78\xf1\x91\x2e\x71\x84\x5b\x9d\x28\x38\x5f\x74\xd7\xf3\x10\x6e\xda\x31\xe3\xc4\x5c\x66\x09\x96\x8f\xa9\x55\x71\xd5\xd8\xd7\xb0\xfb\x36\x9e\xc6\xdf\xc6\xe9\x09\x66\x93\xcb\xa6\x28\xf3\x67\xd9\x47\x6a\x40\xe2\x97\x42\x5c\x3f\xa5\x1b\x4e\x97\x5a\xa1\x43\x1f\xf8\x18\x17\x05\x56\xb1\x95\x45\x35\x87\xbf\xc7\x62\xcf\xb0\xcb\xec\x92\x96\x3d\x8f\xb2\xd8\xb3\x4b\x19\xc1\x1f\xf6\x6c\xf3\x9f\x68\x5c\xdd\x99\x5f\xc1\x1e\x74\x6c\xf4\x0f\x66\x03\x1a\x46\x41\xdf\xab\xcf\x38\x93\xc3\x39\xde\x44\xde\xff\x5a\x5e\x2e\xb2\xab\x2b\x9a\x9b\xe7\xef\xcb\x42\x82\x4e\xf9\xb2\xaa\x6a\x8a\xd2\x79\x72\x7c\xd9\x2c\x3f\x52\x71\x0c\x76\x7e\xea\x48\x2d\x70\x3c\x19\xbc\xb5\x4d\xf1\x9a\xe4\x1d\xb2\xdb\xa5\x2a\x93\xcb\x2a\xbf\x4d\x30\x0d\x6e\xd9\x1e\x6a\x3c\x6b\x44\x25\x69\x35\x09\x7a\x17\x2a\x58\x4e\xfd\xaa\xca\x01\x14\xbf\x92\x30\xff\x9d\x79\x6f\xfd\x8e\xd4\xf6\xc5\xb1\xda\x6e\xd3\x95\xf2\x9c\x1c\xe3\x45\x44\xcc\x47\x6a\xfb\x88\xa9\x26\x65\x71\xc9\x33\x5e\xd0\x96\xea\x7f\x52\x71\xfa\x12\x52\x6f\xd3\x44\x15\x4c\x24\xe9\x6b\x7b\x4c\xd1\xe4\xaf\x7f\x83\x5f\xad\x85\x45\x96\x17\x8c\xd6\xf5\x53\xba\xa2\x9c\x67\x65\x6d\x5d\xe0\x18\x6a\x55\x7f\x9b\x45\xd1\xb7\xad\xb3\x2c\xe4\xe8\xc8\x2b\x81\x3b\x25\x8c\xd7\x9c\x0d\xa7\x9b\x8c\xd3\x67\x15\x7f\xde\x66\x1a\x62\xcf\x54\xd7\x85\x3f\x65\x85\x78\x56\xf1\xa7\x6f\x5e\xbd\xa5\x59\x7e\x9b\xa2\x1d\x86\xe3\x6d\xce\x6b\x97\x44\xfa\x7a\x76\x82\xc5\x78\x97\x59\x4d\x35\xce\x72\x69\x27\x95\x54\x5a\x10\xd3\xca\x2a\x92\x7a\x8b\xcf\xa9\x03\x21\x9a\xec\x4c\x9d\x8f\xed\xb6\xd1\xbf\x90\x81\x59\xfb\x50\x90\x13\x35\x78\x8b\xe6\xae\x63\xb0\xbe\xbc\x1e\x8a\xd1\x5b\xb2\xd4\xe8\x90\x5e\xe4\x9d\xfa\x17\x17\xc6\x4e\xd1\x23\xa4\x08\xf5\xbf\x77\x38\xd8\x17\xb7\xdf\x23\x03\xea\xea\xef\xa4\xa8\xa1\xc8\x59\x15\xd2\x42\x4a\x29\x4a\x3f\x44\x93\xbc\x5a\x43\xb9\x44\x87\x32\xfa\x5d\xaa\x5e\x21\xb7\xa9\xaa\x78\x59\xb0\x3c\x0d\x8b\xa2\x1d\x36\x1f\x9d\xc5\x76\x0c\xa1\x8d\x3b\x38\xf3\xb2\x95\x4b\x08\x9e\x9a\xdf\x1a\xc0\xef\x1e\xe6\xee\x99\x18\x8f\x77\x38\xcb\x6f\xe4\x3a\x7d\x51\xbd\xe3\x63\x27\x20\x5f\x37\x5b\x9e\x62\x39\xc1\x4a\xee\x8d\xb0\x5a\xd4\x79\x91\xff\x40\x97\xd5\x1a\xfa\xba\x95\x70\x2f\x71\x91\xff\xd6\x69\x67\xa5\x89\x4f\xd4\x79\xa0\xeb\x0c\x88\x26\xd0\x59\x04\xeb\x7f\x6d\xd7\x57\x2f\xca\x0e\x70\xdf\x59\x0a\x3f\xf8\xee\x73\x64\x9a\x15\xa3\x64\x8a\x3a\x86\xe5\xb6\xa0\xe7\xf4\x00\x1e\x09\x82\x31\xc2\x9b\xdb\x79\x6b\xc3\xd3\x3d\x93\xc9\x2f\xab\x2c\xff\xb1\xaa\x3e\xd6\x28\x4d\xbc\xbb\x57\xb4\x66\x71\xe1\x1e\xd9\x89\x0a\x13\x8a\x48\x52\x5d\x92\x12\x49\x05\xc2\x62\xb7\xdb\x61\x90\x4f\xf7\x1c\x9e\xf8\x39\x19\x1c\x84\x39\xcd\x1c\x9d\xf0\x32\xde\xe2\x04\xe9\x0a\xd1\x2a\x70\x50\x5e\xe2\x25\x38\xf8\xef\x66\xc8\x45\x29\xc5\x89\x36\x75\x4f\xee\xc5\x17\xf8\x9e\xa3\x67\xb7\x58\x3e\xfd\x77\xd8\x87\xbc\xce\xaa\xc0\x36\xa5\x27\xb8\x80\xa8\xd5\x10\x02\x19\xa5\x68\xbb\x4d\xb3\x09\x84\xdd\xd8\x64\x4b\xd8\xd2\x25\xad\xeb\xc7\x65\x69\x36\xaf\xa6\xc2\x66\xbf\xa3\x19\x5f\x5e\x3f\x2d\x6a\x49\xcc\xe5\x28\x3d\x3a\x41\x1d\xf4\x9f\xda\xc8\x4b\x36\xc2\x85\x73\x97\x9c\xed\xd9\x9a\x59\x0c\xe7\x21\x17\xf0\x0d\x9b\x0c\x6e\x14\x4c\x03\xae\x03\x8a\xec\x54\x6b\xf5\xd0\xc2\x59\xcb\xc9\x69\x0f\x92\x82\xaf\x68\x7d\x00\x38\x2a\x9f\xc5\x12\xde\x82\x95\x75\xce\xdf\x0e\x7f\x2a\xca\x52\xe3\xae\x2f\x23\x32\xee\x5f\xe8\x69\x38\xf6\x2f\x86\xd6\x6c\x72\x51\x56\x59\x4e\x73\xef\x6a\x54\xe8\x6d\x34\x4a\xe3\xd9\x6a\x27\x51\x3f\x4d\x10\xdd\xc8\xbd\x99\x8e\x7f\x93\x0e\xc3\xc0\xb7\x2a\xf0\xb8\x30\x72\x42\xa9\x7e\x4e\x76\x24\x48\xbc\x73\x53\x5a\x01\x27\xd4\x13\xdd\x8a\xb6\x80\x56\xb3\x41\x3b\x34\x51\xd0\xe0\x33\xf2\x78\xf5\xa9\x3d\xbc\xcc\x3d\xbc\x74\x87\x40\xf2\x33\x88\xbf\x8e\xd6\xbf\xe9\xeb\x28\xfb\xaa\xd7\x91\x7a\x15\xad\xfd\x57\x37\x34\xd4\x7d\x75\xa3\xbb\xa3\xf4\xe0\x07\x37\xda\x6e\xbd\x80\x7b\x2e\xda\xdd\x03\xe8\x5d\x63\x25\x65\x38\x6d\x5e\xd2\x2e\x37\x13\x1b\xfa\xca\x92\x57\xc1\xc3\x5d\xbe\xa3\x8e\xcd\xc2\xea\x3a\x77\x8a\xb6\xeb\x61\x5c\x75\x2d\x81\x83\x97\x3c\xf4\x3f\xbb\xcc\xea\x62\x69\xfb\xf7\x4b\xc4\x79\x77\xb8\x9e\x04\x2c\x40\xe0\x30\x5b\x7b\x0b\x7f\x62\x09\x33\xc7\x3c\xc1\xee\x65\x68\x38\x5c\x6e\x7f\x86\xe9\x32\x93\x08\x56\x8e\xe9\x71\x23\xaa\x97\x56\x3e\x12\x2d\x7a\x9d\xd5\xd7\xb2\xe8\x8f\x59\x7d\x7d\x5f\xd1\xa2\x06\xc7\x4f\xb2\xb4\xfa\x79\x4f\x05\x10\x70\xe1\x66\xf2\xba\x62\x34\x5a\x34\x3d\xc1\xcb\x56\xff\x19\xa5\xd7\x08\x37\x93\x1f\xe0\xe9\x07\x3a\xe4\x71\xd6\x89\x66\xe1\xd9\x3d\x7f\xa7\xd2\x83\x55\x0c\x4b\x27\x17\xf6\x97\xcf\x07\x97\xe8\x3a\x3d\xc1\x1b\xc5\x6f\x74\x0e\x84\x01\x7b\xa4\x11\xba\xcb\x32\x58\xdf\xc3\x32\xe8\xe8\xcb\x7c\x19\xdb\x20\x64\x03\xc4\x59\x06\x5f\xf0\xa8\x37\xea\x38\xfd\x6f\xf9\xc8\x0b\xbe\xf9\xcd\x5f\xf0\x25\x61\x13\x8d\x01\xf5\x41\x65\x56\x19\xfe\x27\x5e\x7d\xbe\x7d\x55\x7c\x2e\x18\x66\xad\x4a\xba\x93\x7a\x27\x9f\x6c\x5f\x2b\x33\x53\xdc\x49\x15\x6b\x57\x21\x3f\xe4\x22\x22\xd9\xf4\x80\x6e\xb7\x86\x0c\x71\xb9\xe9\xb6\x00\xd1\xb1\x75\xcd\xc3\xd8\x11\xca\x00\xc3\x30\xb3\x73\x49\xef\x8c\x61\xc1\x8c\x7a\xe5\x76\xf6\x5d\xe6\xbe\xbc\x44\xeb\x52\x20\xbd\x03\xb7\x18\x40\xde\xec\x3a\xf7\x78\xf8\x40\xf0\xb9\xe6\x7d\xf4\xfd\x59\x27\x65\xd6\x7d\x55\x90\x7d\x5c\xee\xd6\x46\x94\xa7\xc2\x21\xb2\x28\x42\xde\x20\xcd\x0b\xa5\x4f\xc0\xd8\x2f\x5a\x54\x52\xb0\xb2\x32\xea\x2e\x4f\xe9\x86\xb2\x9c\xb2\x65\x41\xad\xbf\xd7\x8e\xb8\xd1\xee\xcc\x3d\x02\xbc\x2f\x93\xc9\xfd\x4a\x26\xc3\x97\x89\x28\x06\x5f\x25\xfe\x6b\x9d\x31\x74\x45\x89\x7e\xd7\x4a\x4b\x98\x7a\x8c\xe4\xbe\x88\x3a\x70\xd9\x3f\xb9\x2e\xca\xdc\x57\xb9\xfa\x2d\xb9\xed\xc6\x16\xd5\xca\xb7\xa0\xa7\x59\x32\x56\x86\x19\x47\x6e\xf8\xb5\x62\xd2\x17\x4a\x76\x5d\x35\x4c\x0c\xc5\x35\x1d\xaa\xfa\xc3\x6f\x20\xd0\xd9\x37\x78\x78\xd9\x88\x61\x21\x86\x85\x8a\x2a\x66\x56\x49\xc7\xe2\x1b\x16\xa2\x1e\x2a\x4c\x38\xb1\xe1\xf8\x42\x7a\xd0\xb2\xc5\x81\x9d\x16\x68\x61\x49\xb2\x4e\xc1\x14\xdb\xe1\x1e\x70\x8d\x3f\x31\x31\x48\x10\xeb\x50\x75\x4c\xe3\xa2\xd3\xb9\x4f\x4f\xb4\x72\x82\x96\xe7\x6b\x93\x34\x63\xd6\x63\x2e\x2f\x26\xab\x8a\x9f\x67\x2e\x49\xea\x44\x23\x6e\x6f\x51\x8e\x85\x79\xe6\xbc\x75\xec\x1f\x53\x2e\x4f\xb2\xb1\x25\xbf\x1f\x60\xf7\xca\x44\x78\x57\x8e\xa1\xd7\x7a\xee\x13\x37\x40\xab\x3a\xf7\x7f\x83\x70\x9c\x54\x4b\x38\x88\xd3\x28\x9f\x1d\x27\xe3\x94\xfb\x32\x88\xb3\x24\xaf\xd6\xc9\x2c\x91\x10\x2f\x12\x84\x23\x32\x96\xc5\x80\x87\x32\x7c\xad\xc5\xdc\x2f\x60\xfd\x82\x05\xd5\xcb\xc5\x23\xc2\x9f\x1d\x72\x7d\x76\xa5\x89\x9c\x9d\x24\x46\x7c\xc1\x40\x4c\x76\xe9\x55\x83\x65\x3b\xa8\x9e\x7c\x64\x94\x87\x89\xce\xc0\x46\x44\x3e\xc2\x5d\xba\xe9\xf0\x01\x76\x89\xd6\x03\x27\x16\x6c\x5f\xb4\x7f\xb3\xe1\xde\xde\xcb\x7d\x0e\xfa\x5d\x56\xeb\x4d\xc5\x54\x67\xfd\x75\xd0\xec\xf0\x4e\x0c\x18\x7d\x59\x37\xba\x16\x0a\x44\x4b\xe5\x61\x74\xa2\x51\x96\xee\xd3\xf1\xf3\xc9\xb6\x8e\x32\xf4\xf9\xeb\xe7\x2f\x5e\x9f\x5f\xfc\xf4\xf8\xed\xf9\xeb\xf7\x86\xa3\xd2\xd5\x88\x8e\xdc\xc4\x74\xce\xc1\x29\x4e\xa8\x4e\xed\x77\x47\x95\x0b\x82\x81\xf1\xe5\xe8\xf7\xe7\x7b\x12\xf5\xf2\x92\xfb\x54\x1d\x8d\xc8\xe9\x6b\xc9\x63\x97\x04\xb6\x56\x8b\x07\xc8\xd9\x7e\x95\xa2\x7c\x57\x0d\x3e\x14\xcc\x01\x71\x5b\x17\x15\x3b\xae\x9b\x8d\x9c\x57\x8f\x40\xef\x4b\x44\x6c\xf8\xba\x4f\xcd\x72\xe5\x59\x11\xdb\x96\x0c\x7f\x64\x60\x2f\x66\x45\x45\x49\x12\x00\xfc\xad\xcd\xe9\xc2\xe8\x32\xb9\x69\x9a\xcf\x03\xb9\x69\xca\xc9\xdd\x0e\xc9\x54\xdf\x7a\x57\x97\xb0\x5c\xb6\x16\xdd\x70\xcd\x5b\x9b\xd3\xc5\x5c\x80\xd2\x80\x84\x9d\x9d\x8a\xec\xf5\x5b\x3f\x28\x6e\x09\x73\x18\x92\xfb\xde\x14\x77\x5f\x29\xce\xf3\x38\x20\x20\x96\x71\xd5\xad\xdf\x66\x6c\x76\x34\xc5\xc6\x77\x7b\x9b\xd1\xed\x29\xa8\x66\xa4\x84\x5d\x36\x78\xb4\x38\x81\x98\x0f\xff\x68\xb1\x18\x74\xdd\x9d\x0c\xf0\x4f\x5b\x81\x59\x54\x3a\xd6\xcb\x29\xf2\x68\x7e\xf7\xc9\xd4\xa1\x7c\xfd\xa5\xd6\x44\xba\xb3\x0e\xfb\xd5\xe6\x5c\xb5\x72\x08\x00\xde\x7d\x0f\xdc\xd7\x40\xa7\x02\x34\x14\xec\x50\x9c\xbc\x33\xa2\x02\xaf\x6c\x9a\xb8\xbb\x98\xb4\x87\x1c\x4c\xe7\x1f\x42\xac\xfd\xb6\x84\x09\x89\xe6\xa6\xa5\x34\x24\xfe\x67\x7e\x36\x30\xf3\x7b\x5e\x3f\x91\xb7\x41\x77\x7c\xdd\x6a\xe1\x38\x23\x1d\x06\xed\xc4\xb8\xb2\x4a\x43\xad\x76\x34\xd4\x9c\xb5\xc6\x14\xe1\x22\xe2\xa0\x61\xbe\x18\xd8\x80\x36\xc3\x82\x0d\x29\x12\xc6\xd8\xcc\x82\xe8\x2e\x65\x08\x67\xf0\x5c\xb5\x46\x1e\xb8\x71\xc3\xd4\x29\x33\xcc\xc2\x35\xc3\x6c\xc0\x7b\x36\x5f\x2c\x70\x06\xa6\xcf\x0d\x20\x26\xdc\xe0\x66\x72\x49\x57\x15\xa7\xb8\x99\x80\xde\x16\x1a\x64\xc6\x98\x39\x05\x6d\x9b\xc1\xad\x4f\x4c\xb9\x3b\x3a\x8b\xb9\xb3\x8b\x2d\x69\x4f\x41\x67\x01\x03\x50\x89\x36\xa3\x4a\x45\x36\x0c\xf5\x9d\x3e\xfa\xab\x19\xb5\x4a\x15\xaa\x70\x38\x1b\xe6\x9e\x8c\x3c\xec\x53\xa0\x39\xd2\xd6\xb2\x08\x6d\xb7\x8d\x35\xa9\x30\xb3\xbf\xb3\x2c\xcd\x19\xdd\x01\xff\x6d\xd7\xee\xae\xa4\x44\x08\x3c\xbb\xe0\xa1\x62\x5e\x19\x1d\xce\x27\xa6\x11\x65\x29\x9f\x55\xec\x7b\xa1\xf2\x68\xb8\x3b\xeb\x2f\xdf\x68\x68\x85\x85\x15\x85\xd8\x2d\xd7\x0e\x49\x92\x1e\xbc\x2a\x4b\xca\xcd\xa3\x4d\xb1\xad\x54\x5a\x54\x0d\x2c\x42\x66\xcb\xbf\x6f\x2d\xc3\x3f\xfa\xfa\x09\x29\xed\x96\xfc\xfc\x8a\xda\x3d\x3c\xe9\xaf\x1a\x88\x21\xf9\x45\xb5\x79\x49\x6f\x68\xf9\x73\x41\x3f\x99\x5b\x3d\xc1\x89\xb1\xd1\x99\x1d\x57\x8d\x28\x69\x87\xa6\x96\x3d\xd8\xbc\x03\x18\xdd\x1e\x39\x6e\xd6\x59\xf6\x93\xf1\x2b\x68\xc1\xe3\xeb\xee\xa9\xf0\x25\x3d\xb5\xec\xe3\xcb\x96\x2f\x0d\x2f\xd7\xc2\x7d\xb9\xae\x51\xdf\xe2\x7c\x5d\xb5\x38\xaf\x3a\xae\x49\x68\x89\xcf\xe5\x44\x8b\x37\xf7\x73\xc4\x1d\x6a\xf5\x80\x6e\xcc\x71\x3f\x5e\x55\x9a\xa4\xbe\x2a\xd8\x95\x39\x84\xd6\x29\xcb\x7d\xf0\x6e\x09\x75\xd5\xc6\x71\x96\x67\x1b\x47\xca\xe1\x10\xdf\xfb\x3a\x0c\x1a\xcd\x33\x91\x85\x2d\xd9\x8e\x9e\xca\xaa\x8f\x55\xa6\x9b\x1e\x1b\x40\xf7\x64\xf7\x8f\x35\x6f\x99\xd3\x6e\x17\x61\x13\x1a\xd7\x1c\x2b\xde\x80\xae\xbb\x99\x3c\x31\x19\xca\xcb\x0c\xda\xa5\x02\x98\xd3\xd7\xda\x9e\x00\x1e\x18\xad\xe4\x01\x74\x17\xb0\x45\xb9\xc0\xfc\x7e\xeb\x7e\x79\xaf\xcd\xdb\x7b\x5e\x5b\xed\x2a\x7f\x99\x31\x99\xff\x92\x0a\x85\x13\x6e\x47\xd0\xca\x03\xf0\x2a\x9d\x09\x7a\x2c\x6e\x37\x87\xeb\x13\x76\x9e\xb5\x56\x26\x6d\x5f\xb4\x36\xa5\x08\xc4\x08\xce\x9d\x02\x6b\x64\x5d\x17\x69\xa3\x1b\xed\x64\x19\x3e\x20\xce\xab\xf2\x38\x26\x3f\x3b\x7e\x3b\x55\xb2\xeb\xb9\xd1\x6b\xe4\x8d\xb0\xfa\x84\x17\x65\x75\xa5\xf6\x51\xef\xc5\x40\xb9\x9d\xbf\x6f\x74\xf1\xa7\x88\x1d\xd7\xde\x20\x0b\xce\xd4\x22\x66\xfd\x9e\xab\x3c\xcc\x08\x9f\x9f\x2c\x70\x41\x78\xeb\x11\xc8\xa2\xe5\xe4\x88\x10\x76\x96\x0a\x52\x58\x0f\x45\x0f\xd2\x3f\x4f\xb6\x17\xdb\x63\x34\x79\x70\x85\x63\xdc\x82\xc9\xf2\x3a\xe3\x8f\x45\x3a\x45\x13\x51\x7d\xd8\x6c\x28\x7f\x92\xd5\x14\xec\xdf\x19\xb8\x15\x12\xa0\x0c\x6e\x96\xbb\xc7\x03\x97\x9d\xa8\xf6\x4d\x68\x90\xc8\x2b\x88\xb1\x29\x33\x30\x23\xdd\x30\xf3\x73\xbe\x00\x2f\xb0\xfa\x37\x68\x67\xa7\x8c\x30\xad\xf8\xe5\x6e\x4f\x0a\x91\x7b\x40\x16\xdf\x1a\x74\x62\x01\x5c\xdb\x76\xfb\x7b\x25\x13\xfe\x4e\xb8\x1e\xfb\x3a\x39\x24\x48\x57\x8e\x49\x2f\xe2\x9d\xa8\x4d\x62\xe0\xee\xd7\xd9\xa6\x4c\xc5\x4f\xaf\x21\x7a\x3a\x6e\x48\x8d\xcb\x8e\xdd\x42\x7b\x67\x21\xbc\x24\xcd\xa4\xcc\x6a\xf1\xc2\x38\xf0\x7b\x90\x20\x9c\x93\xe3\xe9\x11\x21\xcb\xb3\x66\x52\xeb\x80\x72\x4b\xe5\xbf\x6a\xe0\x6d\x79\x36\x1a\xa9\x82\x10\xd0\x3d\x15\xa4\x31\x43\x79\x90\x20\x34\x17\x6d\xc8\x77\xcc\x48\x31\x51\x07\x60\xb2\xcc\x36\x85\xc8\x8c\x2f\x30\xdd\xfe\xf1\x14\x29\x0d\xa6\x64\x92\x20\x84\x4b\x52\x38\x6f\xf1\xcb\x5b\x58\x0e\xa6\x5d\x7c\x6d\x48\x02\x28\x10\xa2\xde\x27\xaf\xe4\xcf\x59\xdb\xba\x24\xad\x8b\xd5\x6d\x9a\x29\x21\x40\xb3\xdd\x1e\x65\x8e\x20\x40\x92\x64\x5a\x14\xf0\x42\xbb\xac\xb7\x5e\x03\x87\x7f\x01\xd6\xff\x5f\xf0\x70\xdd\xd4\x62\x78\x09\x1e\xf2\xc5\x35\xb8\x4f\x5a\x0f\xff\x22\x31\xd0\x4c\x2e\xde\x5f\x86\xd6\x16\xe1\xce\x56\xa6\x18\xf2\x33\xeb\x84\xf0\x97\x42\x5c\x57\x0d\xb8\x74\x9b\xd5\x38\x2f\x38\xd8\x27\xe7\x18\xfe\x34\x60\xbc\x37\xb3\x98\xa0\x85\xd7\x99\xb9\xb5\x92\xf1\x66\xb7\x8b\xa0\x94\xc3\x4e\x82\x07\xf3\xed\xae\x11\x42\x04\x38\x65\x3c\xb3\x69\xc3\x4c\x0c\x93\xb1\x98\x44\xc6\xdd\x9e\xe6\x3f\xcb\x63\x2c\xb7\x75\x96\xc2\x29\xab\x2a\x31\x4e\x26\xc9\xb8\xbb\xee\x8a\x4f\x83\xc2\xaa\x09\xc2\xc9\xba\xca\x69\x09\x11\x71\x61\x08\xa3\x51\xca\xc7\x24\xd6\x82\xcc\x45\xca\x17\xac\x87\x3b\xa3\x78\xc4\xf5\x81\xdb\xd4\x54\x09\xf2\x5f\x67\xeb\xb0\x42\xa2\x48\xeb\xd6\xfe\x44\xfd\x21\x49\x32\xd3\xbf\xd4\x9f\x70\xe4\x17\x09\xb2\x68\xc8\x1a\x62\x77\x37\x81\x1e\xb8\x80\x03\x47\xb7\xe6\xaa\x35\xe6\x96\xf7\xf3\x76\xdb\x4d\xb5\xcb\x93\xd3\x65\xb6\xa6\xea\xd8\xa0\x76\x44\x1d\x03\x3b\x17\xfb\x04\xcb\x61\x65\x77\x1e\x7e\xa3\x6d\x63\xed\x9b\xe3\x37\x6b\x12\x0a\xff\x66\xad\xbd\x92\x10\x14\x59\xfc\x2e\x10\xa9\xbd\x74\x56\x5b\xa3\x40\x65\x37\x0a\x31\x72\x74\x9b\x3f\xd2\x72\xb3\x67\xc2\x7d\x43\x51\x77\xf7\x17\x0c\x25\x72\x56\x94\x17\xd8\x43\x06\x29\xb1\xdc\x81\x9d\xdd\xdb\xa4\xeb\xde\xb3\xd3\x26\x93\xe4\xd3\xde\x2b\xa3\x8e\xf5\x8a\x70\x03\xaf\xfb\xb7\xf4\xea\xfc\xf3\x26\xad\xc7\xc9\xef\x20\xea\x57\x8f\x9f\xc3\xa5\xe7\x42\x35\x53\x1e\x53\x55\xb8\xd8\xa5\x1b\x2e\xb6\x22\xcb\x39\x5b\xe0\x46\x39\x0e\xad\xe4\x45\x5c\x2a\x97\x3b\x82\x67\xac\x96\x47\xe4\x7d\x65\x69\xe8\x67\x4d\x59\x32\xc0\x80\xb8\x42\x9e\x33\xd5\x72\x87\xf7\x55\x88\xaa\x02\x46\x67\xc9\x88\x7b\x67\xfd\xff\x8d\xcf\xbe\xd6\xfc\x09\x48\x97\xf6\xd0\x66\xf5\x35\xe5\xf2\xcc\x32\x60\x00\xb5\xf4\x75\xdd\x47\x5f\x47\xc9\xde\x2e\x8d\x1d\x0b\x7f\xd9\xa1\x7a\x6d\x74\xcd\xce\xf4\x24\x39\xa7\xf0\xac\xf6\x06\xc9\xc0\x3d\xa4\x24\x1a\xd8\xfc\xe1\xc2\xc8\x67\xee\x94\x24\x79\x9e\x64\x75\x4d\x41\xf4\x50\xd4\x70\x60\x75\x50\x96\x04\x27\xe7\x72\x38\x4a\x7d\x2a\x59\x60\xfb\x58\x99\xcd\x13\xab\x85\x09\xd5\xec\x6b\x25\xac\x6a\x33\x92\x05\x86\x77\x7c\x58\x53\xa2\xb8\xb0\x92\x4c\x4b\x16\xd8\xbc\x43\xc3\x2a\xfa\xd5\x1a\xd6\xd2\xc9\xc9\x62\xe7\xae\xbe\x16\x0f\x1d\xe4\xa0\xd2\x0a\x4a\x44\x27\x66\xf6\x29\x6f\x43\x08\xf2\xf1\xd8\xba\x4d\x9e\xf3\xc5\x80\x4d\x5a\x75\x4b\xe2\x7e\x6c\xb7\x47\x53\xcc\x26\xae\x72\x26\x39\x3a\xc1\xc9\x4d\x56\x36\x34\x29\xd8\x90\x49\x3a\x75\xf2\x89\x17\x42\xe7\xf5\xbb\x87\x01\xc7\x5f\x58\x02\x9a\x1d\x25\x0f\x47\xa9\xeb\x5e\x41\x00\x1d\x53\x17\x28\x2d\xf9\x3e\x54\x27\x90\xbb\x27\xf0\x4e\x7b\x07\x95\xc7\xb0\x8a\x57\x37\xc4\x49\xc5\x53\x81\x0b\x34\xa8\x46\xa3\xca\x9b\x91\x13\x36\x9e\xce\x8b\xc5\x68\xd4\x37\x83\x02\x57\x6d\x94\x94\x9d\x7c\x9f\xcb\xd3\x23\x42\x5f\xf6\x8e\x7f\xad\x50\x94\x34\x1a\x09\x47\xff\xf5\xce\xe1\x13\xcf\xee\x60\x4d\x67\x34\xd0\x7c\x35\x4b\x3b\x3b\x3a\xc1\x81\x8e\xac\x84\x12\x31\x1a\xa5\xba\x8f\x9a\x8a\x9f\x4c\xd3\x6f\x56\x67\xd1\x54\xe5\xea\x95\xeb\xc0\x98\x98\xee\x11\x50\xf5\x38\xee\x9d\xf0\xec\x13\x11\x2a\x36\x9c\x9a\x15\x70\x8b\xdd\xd2\xe0\x24\xc7\x28\x51\x8d\x46\x22\x75\x16\x04\x73\x84\x19\xa4\x61\xa6\xe3\xa1\x6b\x2c\x50\x13\x3e\xa0\x93\x4d\x55\xd7\xc5\x65\x29\xaf\x7a\xb3\x32\x6f\xa1\xa5\xe8\x70\x8e\xc4\x76\x9b\x54\x30\xd1\xd6\x27\x87\x70\x8d\xcc\xda\xd4\x33\x3a\x03\x57\xc5\x80\x1e\xc9\x63\xce\xb3\x5b\xc7\xb8\x14\x52\xdd\x53\x27\xb7\xa6\x2a\xa3\xb8\xcd\x53\x46\xd9\x87\xe1\x1c\x38\x47\x77\x2d\xd4\x3b\x5e\x6f\x35\x19\xac\xb4\xe2\xe8\x67\x31\x29\xd6\xd0\xd7\x44\x77\x7f\xc6\x49\x6f\xde\x2c\xe6\x90\x44\xe7\x81\x33\x7b\xfd\xdb\x68\xa4\x98\x85\x6a\x9d\xbf\x9e\xf1\x39\x55\xfe\xe2\xc1\x0c\xbb\x6b\x99\xd7\x7a\xe1\x55\xf6\x4a\x1c\xe9\x90\x77\x77\x65\x75\x35\x63\x69\x52\x56\x57\x09\xda\x6e\x39\xfe\x94\x71\x26\x13\xe4\x5f\x95\x02\xe6\xdd\x32\x09\x7e\xa8\xb4\x82\xad\x2a\x99\x24\xff\xaa\x14\xb8\x27\x64\x92\xba\x30\xd0\x76\xeb\x65\x2b\xbc\x2e\xf3\x35\x86\x0f\x02\xc5\x5a\xcf\xa6\x60\x6a\x13\xba\xce\x85\x2a\x20\x36\x86\x30\x63\xe0\x04\xd2\xb1\x12\x72\xe2\x57\x7b\x1c\x0a\x30\xa9\xd9\xe1\x13\xb4\xdb\xed\x9c\x5b\xaa\x70\xc1\x03\x86\xfb\xc0\xc1\xea\x3d\x57\xe0\x03\x35\x7b\x1c\x42\xd5\x7d\x46\xb3\x0f\x94\xd9\x38\xdf\x8b\xed\xe9\x44\x3b\x70\xd5\x21\x01\x3e\x30\x51\x94\x8e\xee\x3b\x09\x0b\xbc\xc8\xf7\xe5\xfa\x79\x86\xc3\xf7\xa3\x1a\x48\xcb\x99\x32\xeb\x61\x13\xc2\x92\xae\x33\x2c\xbc\xaf\x13\xdb\xc2\xbe\x51\xf6\x14\xea\xcc\x55\x07\x31\xe8\xec\x91\xde\x80\x3e\xb5\x8b\xbd\x07\x38\x70\xdc\x4b\x1d\x9f\x8c\x3c\x65\xfa\xf2\x31\x2e\x25\x7a\x51\x97\xa6\x52\xe9\x64\x99\x95\x2a\x5e\x96\x72\x94\x7c\x94\x56\x36\xd8\x1d\xf8\x62\x36\xa7\xad\x50\xbe\xa3\x53\xa6\x5d\xdb\xef\x69\xb9\x92\x37\x9a\x72\xd2\x0c\x50\xaf\xfa\xa8\x9c\xf8\x8f\x95\xf6\x26\x9c\x19\x17\xa0\x3a\x0c\x8f\x0a\x5d\x91\xb9\x5f\xb8\x9a\xac\x8a\x12\x5e\xe9\x24\xb3\x3f\x71\x35\x29\x0b\x46\x5f\x37\x72\xd5\x48\xe6\x7c\xe0\xca\x38\x46\x20\x99\xf9\x85\x2b\xf5\x58\xcd\x94\xd8\xb1\x9a\x30\x53\x8f\x99\x3a\xcb\x2a\x97\xf9\xf2\x0f\xae\x76\xf6\x25\x20\xec\x7d\x8a\x52\x10\x9b\xf2\x5d\x1a\x5d\x7a\x91\x6a\x3f\x2d\x11\xcd\x4e\x2b\x5c\xeb\xbb\x82\x9d\xbb\x08\x61\xe1\x87\x3a\x33\x8b\x4b\x04\x16\xbb\x14\xd6\x13\xb9\x44\x31\xef\x42\xd7\x8a\x66\xa2\xe1\xca\xfd\xdc\xbe\x7b\x42\xa7\xb5\xe5\xef\x89\x0c\x1f\x23\x8e\xcd\xa5\xc1\xda\xf0\x2f\x47\x10\xd0\x44\x52\x69\xea\x6f\x1b\xe4\xe4\x8c\xcf\x8e\xfe\x3f\xea\xfe\xb6\xbd\x6d\x5b\xcb\x17\x87\xdf\xfb\x53\xd8\x3c\x73\x69\x13\x97\x61\xd6\x6e\x67\x66\x9f\x23\x17\xd5\x71\x12\xa7\xcd\xec\x24\xce\xd8\x4e\x3b\x7b\x74\xeb\xf6\xd0\x12\x64\x61\x87\x22\xb4\x41\x30\x89\x6b\xe9\xbb\xff\x2f\x2c\x3c\x92\x04\x65\xd9\x6d\x67\xf6\x79\x93\x58\x24\x88\xc7\x85\x85\x85\xf5\xf0\x5b\x07\x32\x3b\x7f\xff\x73\x76\xfe\xfe\xec\xc5\xdb\xf3\x9b\x8b\x0f\xd7\x6f\x2e\xde\x9f\xbd\xbd\x79\x7d\x7e\x76\xfd\xf1\xf2\xfc\x6a\xe3\xdc\x42\xdd\x93\xce\xf8\x1c\x1b\xda\x4d\xfe\xa4\xd9\x4f\x67\xef\x5f\xbd\x3d\xbf\xbc\x82\xb4\xb2\x8f\xb1\x06\x56\x7e\xe6\x9f\x1a\x09\x31\x37\xdd\x2e\xf4\x22\x8b\xea\xd7\x70\xe2\xe0\x3e\xb6\xdc\xb3\x58\x5b\x58\xb4\x7e\x26\x75\x24\xe0\x56\x46\xdd\x62\xe6\xfd\x6b\x1b\xfa\x38\x75\x26\xec\x46\x0d\xe0\xcd\xfc\xa3\xe2\x6d\xea\x5a\xb6\x5a\xd1\xd9\x6b\x5d\xd3\xeb\x22\xbf\xab\x34\xde\x27\xd8\x5f\x5e\x9b\x5a\x09\x78\xb1\xb5\x1f\xb9\x51\xab\x67\xc4\x38\x8a\x43\x21\x78\xa9\x0a\x0b\x4a\x21\x4f\x36\xfc\xba\xa2\x79\x11\x7e\x66\x9f\x13\x9a\xa9\x2e\x41\xda\x94\x39\x27\x34\xd3\xe7\xa8\x6e\xd4\x44\x48\x02\x9c\x98\xff\x1b\xb6\x0a\x3c\x33\x3d\x3f\x2f\x21\x42\x2f\x38\x46\x02\x56\x6d\x89\xc1\xbf\xfc\x25\x17\x65\xeb\x9c\xe9\x05\x99\x8c\x7c\xb3\x33\x16\x69\x8b\x1c\xb7\x82\x59\xf6\x77\x7c\x67\x68\xd2\xa7\x34\xd7\x9e\xba\xdf\x17\xaa\x54\x53\xf8\xef\x88\x54\xea\x56\x7f\x67\x90\x52\xf7\xc5\x63\x10\xa2\x4f\xad\xd8\x7f\xa2\xb1\x74\x5e\x9d\xbf\x3e\xfb\xf8\xf6\xda\xb1\x39\x5c\x3b\xfe\x06\x0c\xaf\x68\xa2\x75\x3a\xfa\x2e\xb0\xa1\x78\xf5\x07\xec\x80\x02\xdb\x2d\xa1\xff\xb2\x1b\xc5\x3d\x87\x2d\xe4\x7e\x99\xed\x05\xf0\x7f\x7e\xef\x35\x3e\x85\xad\xd9\x1d\x84\xf7\x45\x69\x7b\xb0\x1c\x9d\x58\xa7\xd5\xe6\x76\x2f\x70\x84\x2d\xa8\x87\x8f\xb2\x93\x3e\x39\xc9\x71\xbc\x1d\x19\xbd\xdf\xff\x91\x9d\x66\xfa\xdc\x29\x41\xd1\x83\x24\x07\x07\x74\x63\x3c\x6e\xb4\xf5\x3c\x8d\x30\xf4\x2e\xbb\x6f\xcb\xce\xdb\x79\xfd\x73\xe4\xe7\xa7\x88\xce\x8f\x8a\xc7\xad\xa3\xee\x49\x42\xf2\x4e\x12\xf0\x76\xe1\xb7\x71\x60\x3d\x59\x77\xe4\xef\xfb\x83\x01\x35\x26\x5e\x42\x8c\x28\x35\xa2\x36\x63\x58\xa8\xc8\x71\x77\xf2\x93\x03\x42\xa8\x7f\xc5\x82\x57\xa0\x62\xd9\xe8\x3c\x38\x32\x8d\x99\x4b\x42\x5d\x4c\x56\xf2\x19\xbd\xbe\x5f\x51\xdf\x60\xda\xb9\xc4\xea\xe0\xeb\xc1\x40\xff\x8f\xd0\x7a\x2d\xbb\x85\x2a\x5a\xcc\x07\x03\xf5\x6f\xfc\xfd\x17\x56\xce\xf8\x97\xc1\x40\xff\xaf\x2e\xa1\xeb\xb5\x12\xc1\xed\xce\x4a\x93\x40\xe5\x9e\xa0\x14\xe1\xbc\x7b\x9d\xe6\x19\x68\xf1\xce\xdf\xff\x3c\x18\xf8\xbf\xbd\x82\x22\x2c\x68\xca\xa8\xd7\x0f\x9b\xbd\xdc\x8a\x68\x67\x6f\xbd\x74\x06\xc1\xe7\x7d\xa2\x1b\x28\xda\xf2\xec\xfc\x3f\xae\xcf\xdf\xbf\xba\xf9\x70\x79\x71\x7d\x71\xfd\xd7\x0f\xe7\x57\x11\xc7\x77\x10\x0d\xe9\xe8\xc1\xd8\xa8\x0e\x4e\x30\xe8\x3e\xd4\x1f\x76\x78\xc3\x83\x93\xcd\x90\x0e\x06\x07\x00\x14\xea\x8a\x8a\x94\x1a\x45\x31\x32\xdf\xa8\x27\xf0\x17\xf2\xdf\xaa\x67\xf6\x07\xda\x0c\x5d\x3b\xc7\xb6\x9d\xe3\xa0\x9d\xe3\xcd\x26\x8d\x74\x5b\x8d\xe5\xed\xc5\x8f\x37\x57\xd7\x67\x2f\xff\x72\x7d\x79\xf6\xf2\xfc\xe6\xe2\xfd\xcd\xab\xf3\x0f\x97\xe7\x2f\xcf\xd4\xd0\x89\x48\x1f\x29\x61\xab\xf8\xf9\xfc\xf2\x2a\xfc\xc0\xfc\xb6\xaf\x5f\xbc\x79\xff\xea\xcd\xfb\x1f\xaf\x08\x4b\x9b\x0f\x54\x81\xcb\xb3\x37\x57\x9d\x96\x55\xc1\xd8\x0b\xeb\x01\x11\xd3\xc2\x34\xe9\x89\x10\xc2\xed\xdf\x0e\x00\xad\xf3\xc0\x5c\x50\x1c\x68\xec\x41\x9e\xcd\x34\xd0\x81\xc1\x28\x0b\xd0\xcf\x70\x4d\x0c\x85\x29\xfa\xc1\x05\x79\x30\xba\xa1\x61\x6d\xb5\x44\xeb\x35\xc7\x66\xd3\x0f\xeb\xcc\xfc\xa5\x1e\x1a\x2f\x9d\xda\x84\xf2\xac\xd7\x7c\x83\xa7\xa4\x1a\x3d\x68\x84\x26\x80\x83\xaa\x5e\x2e\x04\x5f\xd2\xe1\xc1\x81\xe9\xe4\x14\x7e\x0f\x06\xf6\xb7\x3a\xb0\x73\xcc\xaa\xd7\x4c\xd0\x39\xff\x1a\x55\x45\x81\x9f\x6e\x51\x5c\x0b\x76\x77\x47\x05\x66\xd5\x87\x45\x5e\x4a\xbe\x0c\x6a\xcd\x8b\xc2\x3c\xc4\x2e\x94\xda\xbc\xb3\xbf\xb1\x89\xc5\xb6\xcf\xcd\x4f\x5c\x57\x54\x9c\xdd\xd1\x52\xda\x17\x65\xfe\x99\xdd\xe5\x92\x8b\xcc\xbd\xc2\xfa\x95\x29\xb1\x19\xba\x21\x9e\x04\x43\x3c\x09\x86\x01\x3f\x5c\x37\x4f\x7c\xa7\xc0\x97\xc5\xf6\x04\x7e\xf8\xf6\x93\xb7\xf7\xe5\xd7\xfd\x54\xd2\xaf\x72\xc9\x67\x14\x25\xb6\x59\x70\x94\x81\x98\x95\x9f\x49\x8e\xa9\xd5\xe3\xc1\x31\x1d\xb0\x67\x32\x6d\xf0\xed\x76\x3c\xc5\x37\x3e\xc6\x11\x4e\xb6\x9b\xdc\x3a\x7a\x75\x8f\xc8\x38\xc2\xda\xce\x57\x4d\xd1\x76\xe6\x69\x7a\x63\x4d\xf3\xf2\x65\x2e\xf3\x82\xdf\x9d\x97\x52\x30\x5a\xbd\xb8\xef\xd8\xe8\x8c\x41\xdf\x99\xd2\xe9\x60\xd0\xf0\xc9\xa0\x1b\x3c\x7d\xac\x0e\x7d\x2b\x05\x1b\xdf\x19\x4a\x45\xe0\x69\xf1\xfe\xec\xdd\xf9\xd5\x87\xb3\x97\x8a\x63\x30\x57\x02\x61\x1e\x1a\xf7\x44\xc4\x30\x06\xf6\x3e\x8f\x7e\xd1\x89\x77\xb3\xad\x42\xa2\x1c\xf0\x00\xb0\xce\x34\x2e\x09\x96\x76\xd2\x06\xfc\xc0\xc0\xb8\x90\xe6\x48\x71\x72\xb0\xff\xa9\x3f\xd3\x92\xd0\x71\x3e\xc1\x09\x34\x9e\x10\xa2\x7b\xa9\xb5\xef\x1a\x7f\xdd\x24\x3d\x11\x5d\x23\x5c\xee\xec\xf1\x1c\x27\x09\x42\x10\x72\xcc\x5a\x28\xea\x5d\x02\x99\xe5\x32\xdf\x46\x15\xbb\x80\xa7\x3f\x8a\x73\xef\xa9\xa4\x1d\xd7\xfe\xdc\x70\x13\x41\x0b\x9a\x57\xc6\xb5\x04\x92\xd2\x97\xb0\x9a\x1b\x1c\x75\x6c\xb4\x69\xa2\x72\x29\x05\xbb\xad\x25\x7d\xcb\x96\x4c\x0e\xbf\xc3\xf9\x74\x4a\x57\x12\xe0\x57\xb4\xab\xcb\xc1\x31\x6e\xd6\x3d\x74\x75\xab\x4b\xc4\x6b\x56\xc8\x56\x70\x43\x80\xb6\xa8\x7b\xf0\x25\x97\xd3\x05\xd4\xa8\xa8\xb3\xea\xc5\x62\xb1\xd9\x75\xee\xa8\xf4\xa5\x53\x83\xc6\xaa\x2b\xdb\xa3\x29\xcb\x96\xf9\xaa\x4b\x6c\x84\x66\x9f\x14\x95\x60\x46\x44\xf6\x45\xe4\x2b\x57\x45\x5a\xe2\xa6\x83\xc0\xbe\xcd\xa1\x93\xf1\xdb\x8a\x0a\xe3\x69\xa0\x13\x60\x6a\x45\x9b\x44\x8a\x54\x90\x55\x06\x06\x83\xe3\x51\x72\xb7\x02\x17\x78\xb4\x89\xd6\x62\x64\x82\x2e\xf9\x67\xaa\xd7\x39\xcd\x51\x33\x6a\xa6\x55\x56\x75\xcc\x95\xc4\xf9\x06\xdf\xa8\x0e\x5d\x73\xb0\x0b\x75\x36\xb6\x4d\x0f\xd6\x49\x10\x47\x01\x23\x29\x15\x5a\x99\xaa\x4d\x78\xd4\x02\x18\x64\x73\x6d\x2a\x7d\x0d\x59\xcb\xc0\xcb\x22\x39\xa4\x08\x0d\x06\x42\x6f\x73\xb0\x25\xc1\xaa\x5d\xd2\x29\x17\xb3\xe6\x92\x61\x81\x59\xa0\x40\xe4\x30\x01\xe9\x98\x4e\xb4\x3d\x43\x67\x42\xc2\x01\x0d\xe2\xda\x78\xbb\x05\x43\x49\x29\xc2\x85\x5b\x6e\xd3\x4c\x5a\x63\x8a\xf0\xd4\xca\xe8\x33\x52\x74\xd6\xda\x4c\x9d\x9e\xa8\x34\xb7\x2b\xa8\x2b\x00\x5f\x00\x25\x7b\xa8\xf5\xb7\x8f\xd4\x92\xac\xc8\xc3\x8c\xcd\x5e\x2e\xf2\xf2\xae\x61\xff\x17\xb8\xc6\x85\x9e\x4a\x88\x95\x03\xd7\x84\x29\x11\xa7\xd3\xef\xc5\x61\x71\x3a\x3d\x3c\x44\x33\x3d\x0e\x2d\x76\x9e\x49\x94\x52\x3c\x55\x15\x36\x1a\x99\x01\xb8\x6a\xac\x47\x33\xe8\x91\x4c\xc7\xab\x09\xda\xab\x07\x03\x96\x0a\x5c\x23\x0d\xe3\xd4\xee\x4f\x13\xe9\x69\xb3\x17\x6c\xa4\x7c\x36\x03\x01\xf0\x42\x57\x2e\x50\xaa\x41\x98\xf0\x4a\xcd\x57\x50\x43\xf5\x38\x7d\x42\x85\x9a\x26\x3b\x75\xe6\xaa\xc2\x7c\x2b\x01\x4f\xd1\x06\x4b\x35\xe2\x47\xc8\x77\x8a\xf0\xf4\x37\xc0\x55\xc5\x6a\x7f\x6c\x68\x1b\xac\x53\x94\x75\xa7\xf4\xe0\x44\x31\xc2\xa2\x5e\xba\x50\x8d\xad\x1c\xab\xcd\x17\x5a\x2c\x2b\xb8\x8e\xa1\x07\x99\x6a\x27\x95\x26\xcf\xc9\x31\x45\x66\x43\xe8\x34\x61\x36\x43\x58\x7b\x13\x54\x9d\x4d\xa0\x3e\xc5\x75\x0f\xc5\x82\x1b\x28\x7a\x48\xcb\x1f\x8e\xd7\x6b\xfe\xc3\x31\x6c\xda\x10\xc0\xed\xa2\x9c\x76\x40\xdc\xd8\xef\x41\x70\x1a\x7a\x10\xd7\x08\xc7\x67\x2e\x4a\x51\x15\xe6\x8a\xdc\x37\xb8\x31\x3b\x91\x13\xa0\xec\x4c\x83\x7a\x65\x1d\x2f\xc1\x6f\x47\xe2\x29\xaf\x4b\x39\xf4\xfe\x4a\x25\x4e\xb4\x62\x27\x41\x76\x75\x87\x26\x64\x2c\x5c\x6a\x80\x8e\x06\xa2\x1c\xd2\x0d\xe0\x8e\xc7\x0e\xa3\x16\xe8\x82\xed\x4e\xda\x13\x19\xd0\xf1\xbb\x04\x00\x84\x1e\xa9\xce\xb0\xd9\x04\x8d\x54\x91\x2d\xef\x0d\x0a\x88\x62\xd8\xd0\xe1\xea\xa2\x74\x02\x9b\x3a\x0a\x85\xe3\xaa\x02\x35\x79\xa3\x33\xe3\x3f\xc0\x31\x38\xa4\x4d\x4a\x93\x48\xfb\xa2\x82\x22\xb2\x51\xcb\x1c\x4e\xf0\x48\x45\xfb\x4a\x4a\x91\x80\x84\xa8\x8f\x56\xc7\x3c\xe0\xc3\x0d\xee\xe9\xe6\x36\x1c\x0b\xf8\xb6\xec\x11\x42\x45\x70\xce\x3b\x2d\x73\x67\xcf\x1b\x82\x61\x2e\xe2\x8f\x2b\x61\x52\x22\xd9\x16\x26\x39\x1a\x0c\xfc\x10\xc6\x7c\xa2\xd3\xf5\x94\x5d\x51\x91\xab\x43\x1b\xd8\x37\x03\x29\x51\x00\x91\x74\xce\xbe\x98\x68\xe3\xce\x80\x88\xc3\xde\x83\x23\x3a\x3f\x1c\x4d\x99\x3f\xe7\x45\x4d\xdb\x3b\xff\x65\xf0\x0a\x9c\x23\xb3\x0a\x10\xfa\xfe\x42\xef\xbf\xa8\x8e\xb4\x8a\xdb\xc7\xba\xa8\x5e\xc5\x68\xbd\xaf\x83\x57\xba\xf0\x94\x17\x5c\x74\x5b\xe7\x02\x5e\x07\x83\x0f\xbb\xd4\x9d\x87\x87\x4d\x50\xd4\x76\x67\xeb\x74\x45\xfb\xf4\x48\xc5\xd0\xb1\x98\xb2\x1e\x52\x2c\x37\x4e\xdb\x48\xa9\x86\x35\x4c\xc9\xfe\x7b\x5b\x64\xff\x5e\xe3\xd8\x63\xd7\x84\x27\x5f\x37\x1f\xb9\x45\xf6\x6a\xf4\x5f\xe5\x32\x77\xb1\x49\xbf\x63\xce\xb8\x68\x68\xd2\x33\xb2\xc6\x85\x77\x2b\x13\xb7\xf3\x8d\x8f\x69\x5a\xe6\x65\x7e\x47\x45\xf5\x4d\x7e\x5b\x49\x91\x4f\x77\x55\xa6\xee\x90\x29\x5a\x5b\x10\xc0\x36\x6f\xb4\x9b\xb1\xac\x8e\x1a\x88\xf9\x4c\xdc\x55\x11\x3d\xbb\xc9\xd9\x1d\x94\x77\xd9\x4d\x6c\xa6\x99\x96\x9e\xb9\x51\x52\x67\x6e\x78\x9b\xdf\xf3\x7a\x7b\x41\x5d\x65\x7f\x91\x3b\x2a\xaf\xf3\x98\x21\xa0\xdb\xc1\x7a\x35\xdb\x5a\xd5\x8c\xcd\x3e\x42\x91\x1d\xba\xf5\x31\x56\x57\x2b\xf9\xf2\x8e\xcb\x3b\xad\x45\x71\xbf\x0d\x9c\xe3\xff\xda\x8f\x05\x9d\x53\x41\x35\x24\x86\x7f\x18\x85\xe9\x78\x1c\x9c\xa3\x79\x35\x8f\x22\x66\x7c\x13\x02\xb2\x34\xdf\x68\x5f\xdc\x5b\x56\xce\x58\x79\xd7\xfd\x50\xbf\x86\x91\x1d\xf9\x21\x57\x32\x97\xd4\x40\x4c\xf4\x7c\x62\xd0\x6e\x8f\x72\xd1\x5b\xab\x9b\x85\x2d\xfd\x8d\x6c\x9e\xdd\xd0\x3f\xf0\xbc\xcf\x34\xb1\x0c\x03\x1a\x66\xf7\x65\xbe\x64\xd3\xab\x29\x5f\xd1\x14\x65\x6a\xf6\x32\x99\xdf\xa9\x93\xda\xab\x7a\x3e\x08\xb6\x64\x92\x29\x7e\x6b\x7a\x6c\x3d\x41\x12\x88\x36\x19\x29\x12\x1d\xca\xf5\x3a\x99\xb1\xcf\x09\xf2\x76\x8b\xfb\x46\x14\xc7\x1d\x95\x57\xb4\x98\xa7\x48\x0b\x58\xb9\x60\xf9\x25\x2f\x68\xf8\xc1\x5d\xe3\x03\x06\xde\x24\x4b\x00\xcc\x92\x39\x2b\x7c\x3c\xbd\xc9\x68\x76\x70\xbc\x09\x3e\xbe\x7d\xe2\xc7\x27\x1b\xb4\xa1\xd9\x4b\xb5\xb6\xce\x41\xf9\x95\xe2\x91\xcc\xd8\xa7\x3e\x70\x9d\xd7\x24\x2f\xce\xcc\x0d\xc5\x4d\x80\x37\x28\x59\x37\x6e\x5f\xf8\x43\x2e\xf2\x25\x95\x54\x54\x91\x9d\xa7\x88\xc2\xb5\xe6\xc2\xf2\x41\x43\x7a\x66\x7d\xed\xda\xce\xb0\xda\xcd\x23\xe8\xfb\x9b\xf6\xd8\xc8\x1d\x98\xc7\x44\xcf\xdb\x5b\xe0\xa5\x9f\x77\xc1\x53\x71\x61\xd8\x8e\x04\xab\x6f\x8e\x0c\x27\x00\x64\x95\xed\x05\x10\xbe\x21\xed\xb0\xe5\xcf\x08\x7f\xe9\x61\xe3\x16\x69\xc2\x56\x4a\x68\x8c\x81\x9b\xac\x8d\x0d\xc3\x0c\x85\x9b\x97\x66\x70\x69\xa3\x0e\xa4\x5d\x72\x2d\x69\xa7\x4b\xf5\x20\x97\x52\x54\xee\x51\x22\xc0\x08\x7a\xef\xdf\xa8\x1d\xad\x5e\x68\x95\x63\xc8\x4c\x12\x9b\x8d\xfe\x4b\xc6\x66\x24\xd1\x4c\x0e\xe6\xf3\xfc\x11\x12\x79\x64\xc8\xf9\x1d\xb1\x09\xb9\x6e\x59\x49\xaf\x61\x59\x90\x07\xdf\xf3\xec\x21\x3e\x2b\xe0\xeb\x1c\x33\x1c\xb7\xbe\xee\x53\xa6\x98\x1a\xf4\x0d\xba\x75\x12\xc5\xc0\x9f\x16\x99\x15\x1d\x3a\x6c\x40\xfb\xe6\xd9\x04\xcc\x5f\xfb\xbc\xfd\x02\xd1\x70\x17\x57\xbf\xa8\x86\x00\x6d\x73\x76\x7b\xec\xd0\x6f\xa6\x99\x86\x30\x18\xea\x83\x13\xe0\xca\xa4\x55\x61\xaa\x77\xe1\x6e\xae\x70\x4d\x3a\xda\xb6\x1c\x17\xa4\x5e\xaf\x73\x07\x9f\x83\xa7\xa4\x18\x0c\x00\x3a\x29\xa8\xc0\xbc\xc6\x33\x42\x33\x75\x1a\x80\xdb\xe2\x74\x30\x38\x98\xa1\xe0\x84\x37\x61\x8f\xea\xa2\xb8\x92\xb5\xa0\x29\xc2\x0b\xb2\x0a\xab\xf1\x2b\x8a\xe7\xf6\x0e\xaa\x6b\x04\x4f\x65\xfd\x67\xf8\x81\x0e\x62\xb1\xe9\xd2\x55\x7d\x8b\x6c\xca\xcb\x69\x2e\x53\x81\xf0\xdc\x7e\xa1\x2e\x88\x33\xad\xf3\x5c\xda\x7a\xd9\x3c\xad\x51\x5a\x02\x98\x53\x3e\x01\xcb\xc0\x79\xba\x40\x78\x49\x4a\xbc\x20\xe3\xc9\x1e\x64\x15\x67\xf3\xb4\x00\xe5\xfe\x92\x3c\x6c\x30\x23\xef\x72\xb9\xc8\x96\xac\x74\x6d\xe2\xdc\x35\xce\xc9\xf1\x29\xff\x9e\x9d\xf2\xc3\x43\xb4\x1c\xe7\x63\x3e\x99\x90\xc5\x98\x5b\x27\xbc\x07\xdf\xef\xe1\x02\xee\xac\xb3\x21\x00\xc2\x04\xd9\x88\xe6\x78\x89\x57\xba\xbb\x8a\xa6\xd1\x66\xd3\x58\xf1\x69\x4b\xc0\x0a\x0e\x47\xbd\xe8\x15\x29\xe1\x80\xc3\x35\x91\xad\x55\xc7\x53\x22\x4c\xcd\xe1\xfc\x03\xd0\x6f\x9b\x69\x2b\x92\x42\xe9\x14\x9d\xa6\xed\x90\x05\x5d\xc1\x22\xaf\xd2\x84\xcd\x12\x75\xef\x94\x19\xd5\x32\xe4\x9b\x19\x91\x19\x9b\xa1\x8d\x22\x55\xb5\x16\x99\x06\x71\xfb\x99\xd1\x2f\xa4\xc2\x8b\x71\x91\xfd\x74\x76\x75\xf3\xe2\xed\xc5\xcb\xbf\x4c\x08\xc7\x8b\xec\x46\x03\x55\x18\xbf\x01\x66\x37\x2b\xac\xd3\x9c\xd4\x76\xeb\xc1\xa2\x40\x4c\xe1\x8d\x3f\xf1\xae\x64\x2e\x24\xb2\xe0\x1f\x59\x20\xfd\xdc\xe1\x39\xda\xd3\xd3\x40\xe6\x90\x6e\xec\x80\x90\x2a\x40\x78\xa9\x06\x83\xca\xe4\xef\x03\x6c\xcf\x74\x8e\x30\x9c\xf2\x73\x2b\x17\x68\x08\xc0\x26\x3c\xe2\x3c\x93\xda\x44\x99\x26\x5f\x58\x61\x4e\xa9\x04\xe1\x79\x76\x23\x5d\x7a\xb0\x6b\x9e\x26\x8b\xbc\x32\x52\x75\x12\xc9\x94\xd8\xaa\xe6\x4d\xa9\x0e\x44\x57\x5e\x8f\xfd\x1e\xa8\xd1\x65\xf5\x49\x29\x9e\xe3\x29\x5e\x3a\xdd\x81\x08\x97\x41\xb3\x73\xb5\x12\xf7\x7a\x63\x5f\xd2\xb9\x5b\x69\xad\xe6\xd1\x25\x22\x9d\x49\x92\x83\xc6\xa8\xfb\xc6\x78\xdf\x24\xc3\x02\x8e\xa4\xd7\x5c\x90\xf6\x5d\xcf\x1a\x2c\xec\x41\xe5\x04\xac\xf5\xda\xc4\xa9\xbb\x57\xaf\xb9\x48\xa5\x5f\x37\x2c\x10\xd2\xda\xaf\x97\xfa\x28\x9c\xbd\x28\xf8\xf4\x53\xfa\x05\x97\xa8\xd9\x7a\x50\x41\x9c\xed\x11\x1b\x7f\x0a\xf9\x22\x74\x67\x21\xe7\x1f\x1d\x57\xd9\xc5\x2f\xef\xcf\x2f\x4d\xb4\x98\xbb\x48\x06\xb1\xaa\x69\x69\x5d\xa5\x79\xac\x1e\x35\x4f\xde\x44\xc8\x81\x2d\x31\x87\x0e\xea\x04\x87\xe4\x90\x23\x34\x12\x43\xf7\xea\xa6\x35\x08\x23\x28\x46\x11\x08\xfd\xa4\x8c\x8b\xec\xf2\xe2\xe2\xfa\xe6\xf2\xfc\xf5\xa4\xf9\x7d\xff\x05\xae\xb5\x12\x7e\x82\x99\xfa\x65\x08\x04\x02\xee\x03\xe3\xf2\x69\x7a\x8c\x21\x1f\x9d\xda\xac\x36\x95\x21\x00\x04\x18\x43\x51\x99\x39\x83\xda\x0b\x73\x91\xc0\x8a\xd9\x40\x85\xa0\xf4\x02\x28\x6b\xf7\xd3\x16\xda\xcb\x07\x03\xcb\x21\x47\x5d\xdb\xa1\xd5\x74\x19\xe9\x9e\x8c\x27\xc0\xb9\xac\x53\xdb\x29\x04\xe6\xd7\xa7\x88\x11\x39\xae\x27\x38\x27\x29\x27\xd3\xec\xac\xd5\x15\x1d\x35\x9e\x32\x84\xc6\x27\x13\x7c\x74\x42\x08\xa9\x32\x66\xb0\x00\xc0\xdc\x6a\x6d\x18\x08\x47\xbe\x66\xda\x03\x01\xac\x26\x1c\x97\x08\xe1\xfa\xe8\xe8\xb4\x55\x8d\x61\x77\xa0\x3f\xbe\x02\x49\xca\xd5\x03\x8e\x8e\xb3\x04\x0b\xcf\x09\x51\xbb\x17\x49\x25\xef\xd5\x3d\x60\x30\x98\x66\x6f\xaa\x9f\x19\xc8\x05\xb1\x0e\x94\x68\x93\x4a\x9c\xe3\x12\x0b\x34\x4c\x45\xac\x39\xa9\x9b\x2b\xc3\xe6\xb6\xd4\x2a\xa1\x2e\x84\xd9\x60\x00\xd5\xbd\xd2\x12\x62\xa3\x3e\x23\x13\x32\x7c\x70\x82\x30\xf0\x47\xbd\x04\xea\xaf\xa8\x6d\xa2\xa7\x5f\xa6\x1e\x30\x4d\x15\x83\x41\xe1\xaa\x29\xa2\xd5\x4c\xb3\x97\x2d\x82\x69\xf4\x9a\x62\x01\x40\x1a\x5b\x39\x2c\xef\xe2\xd8\x6e\xe3\xb0\x9d\x6d\x14\xd7\x6e\x98\xe3\x2e\xdc\x89\x2f\x2e\x3e\xbe\x7f\x75\x35\x21\x12\xd3\x6c\xce\xca\x1c\x82\xd8\xbb\xdb\xba\xa1\xe1\xe8\xdb\xd5\xaf\xde\x5c\x5e\xff\xf5\xe6\xfa\xec\xc7\xbe\x6d\x1d\x81\x82\x0b\x6a\xd8\x6b\x6c\xde\x6e\xca\xe6\xf6\x84\xb1\xf2\xd5\xc5\x3b\x00\x9a\x75\x53\x33\x63\xb3\xd6\xcc\xb4\xde\x5a\xe6\xdf\x1a\x61\x5b\x31\xd3\x40\x5a\xf1\xcc\xa6\x34\xa2\x17\x70\x1d\xf5\xc7\x25\xfd\xcc\x2a\x08\x1e\x69\x72\x9e\x3d\x3f\x99\xe2\x09\x87\xfc\x2d\x44\x08\xc2\x25\xc8\xde\x4e\x53\x86\x20\x53\xe5\x16\x89\x06\x92\x2d\x84\xbd\x21\xae\x0a\x25\x78\x60\x31\x2e\xb2\x37\x57\x37\xaf\xde\x5c\x7d\x38\xbb\x7e\xf9\xd3\x9b\xf7\x3f\xde\x9c\x5d\x5f\x5f\x5e\x4d\xc8\x81\x49\xa2\x6c\xee\x07\x4c\x47\x9a\x6e\x29\x7f\x82\x45\x63\x3a\xb5\x12\x4a\x6d\x96\x2a\x41\xad\x77\x97\x74\x4a\xd9\x67\xfb\x32\x42\xd2\xa9\x68\xd2\xb4\xae\xac\x59\x4f\x78\x60\x77\xa9\x3c\xae\x2c\x83\x4b\x66\x1f\x2d\x47\x34\x67\xcf\xa2\xc5\xee\x2c\xec\x4a\x6b\xe0\xb9\xec\xa2\x6d\x62\x9b\x6a\x03\xd1\x3f\xce\x0b\x27\xd0\xe8\x7d\x85\x83\xeb\x02\x24\xa9\xaf\x7b\x5b\x74\x20\x3d\x17\xb9\x00\x84\x49\x0b\xd6\x4f\x0d\xde\xc2\x02\xe7\xeb\xf5\x85\x3a\x4f\xf6\x9c\x6d\xdf\x29\x01\x98\x92\xfb\xd5\xc5\x8d\xe3\x6a\x7b\x6c\x53\x99\x45\x7a\xbd\xab\x3a\x1a\x60\xe1\x77\xd3\x57\xb6\x30\xac\xda\x00\xbe\xbf\x8b\x5e\x6f\x87\xb2\x06\xfd\x6e\x67\x48\xac\x77\x6a\x84\xc1\x72\x9a\xdb\x9d\xb9\x0c\xd1\x2f\xf1\xd8\xb0\xff\xde\x8b\x7a\xf4\xda\xe6\xac\xc3\xda\x31\x47\xf1\x49\x48\x74\x91\xf5\x25\x1d\x48\x4b\xb4\xc7\x4c\x26\x27\x23\xa0\x3e\x98\x64\x01\x6c\xe3\x1d\x80\xc0\xde\xea\x35\x34\x8d\x9b\x80\xb1\xc5\x62\xfe\x34\x79\x5e\x66\xba\x9d\xae\x9c\x1b\x26\xa3\x0b\xae\x27\x1d\x29\x3e\xcf\x2e\x60\x5d\x35\x03\x32\xef\x44\x47\xb4\x8f\x49\xc5\x96\xe1\xe8\x2e\xc0\x31\xd3\x1c\x22\xe6\x44\x36\x1c\x7f\x02\x1c\xca\x46\xff\x00\x98\xa6\xcc\xee\x68\x49\x45\x2e\x03\x98\x18\x03\xb0\x00\x09\xf2\x1b\x5f\x80\xf2\xc4\x57\x47\xb8\xbd\x92\x22\x5c\x11\xe1\xee\xab\xee\x88\x37\x1d\x33\x67\x8b\x68\x9c\x2d\x90\xa2\xcc\x2e\x01\xae\x10\x36\x30\xa2\x90\x6a\xcc\x0c\x25\xcd\x9f\xcc\x01\xcd\xbc\xec\x28\xd6\xa0\x87\x27\x9d\xe6\x0e\xbb\xb3\xec\xce\x3a\x23\xad\xf1\xee\xc5\x8f\xe3\xd2\xcd\x40\x7b\x7e\x5a\x67\x6f\x63\x7e\x34\x38\xd0\x26\xf5\x70\x65\x28\xb2\xd9\xfb\x78\xf7\x13\x37\x77\xc8\xb3\x2b\xd0\x18\x6c\xdf\xda\x9b\x54\xfc\x16\xa6\x6c\x01\x3e\x9f\xc1\x95\xb7\x99\x85\xfe\x50\xcb\x4b\x9f\xa5\xa5\x0a\xb7\xa8\x16\xd3\xac\xba\xcb\xf8\x08\x68\xfe\xa6\xb1\xf0\x32\x3d\xf4\x00\xda\xa3\x56\x24\x49\xa3\xdc\x81\xd8\xc7\x71\xcb\xc5\xb5\xc1\x58\xed\x2f\x13\x1c\x05\xc5\x23\x9a\x6a\xdd\x2f\x75\xa1\xa1\x36\x15\xac\x97\x42\x53\x14\xd3\x4d\xfb\xf7\xa4\xed\xfe\xd5\x10\x68\xcb\x2d\x02\xad\xa5\x04\x93\xfc\x34\xe8\x45\x4b\x5f\x6d\x6b\x0c\x9b\x4a\x75\xda\x1e\xdf\x1a\xb2\x50\xe9\xbe\xfd\xda\xe8\xab\xa7\xff\x08\xfa\xea\x1e\xed\xa5\x05\x67\x49\xcb\xc6\x32\x34\x7e\xe9\xe3\x4b\x3f\xa8\x12\x6d\x5d\xb3\xd4\xa4\x6e\x8f\x08\xb5\x99\xb1\xe2\xae\x45\xca\xd0\xae\x27\x5d\xff\xd9\x35\xc7\x5e\xe7\xf4\x84\xf3\x2a\xe8\x7d\xd8\x27\xde\xe2\xf8\x32\x73\x97\x1b\xcb\x6d\x77\xbe\xa3\x6e\x93\xde\x7b\x4e\x8e\x96\xc9\x5d\x6c\xd2\xdc\x71\x58\x3c\x03\x69\x79\x8a\x57\xff\xd0\x82\x53\x00\x1b\xa3\x17\xb9\x49\x29\x86\x0e\x7e\x87\x85\x5f\xb4\x16\x7e\x93\x4e\xe1\x14\x7a\x9c\xf3\xf4\x9f\x4b\x2e\x68\xe1\x69\xe7\x52\x62\x39\xc5\x0a\x0b\x14\x44\x28\xb8\xfb\x84\x70\x7f\x6a\x48\x65\x2b\xe4\xfc\x58\xb3\x19\xdc\x7b\xcb\xe7\x1c\x68\x26\x6d\xfd\x7f\xbf\x61\xd3\xda\x2a\xc1\xd8\xde\xb1\x60\xb2\x99\x01\x8e\x6e\xa6\xaf\x7b\x92\xa9\x73\x01\xa6\x4e\xc9\x57\x47\x85\x5a\x4b\x87\xba\xbd\xed\xd0\xe9\xbf\x2a\xea\x85\x7d\x3a\xc2\x87\x5f\xd8\x99\x91\x3b\xbc\x20\xef\xb9\x1b\x11\x98\xfb\x69\x2e\x63\x2b\xcc\xd1\x63\x18\x19\x5b\x56\x78\x4e\x7a\x4e\xe0\xff\xc6\x85\x37\xcb\x32\x87\x65\x31\x93\xb2\xa3\x3c\xa5\x19\xe8\xb3\xe4\xa9\x16\x8e\xf3\x3f\xe6\x9d\xb7\x93\x8a\x92\x66\xfa\x40\x68\xc8\x43\xef\x2f\xde\xdf\x5c\xbd\x79\xff\xe3\xdb\xf3\xeb\x8b\xf7\x37\x97\xe7\xef\x5f\x9d\x5f\xde\xbc\x3b\x7b\x7f\xf6\xe3\xf9\x25\xa1\xd9\x96\x57\x67\xa6\xab\xba\xd2\x77\xba\x57\xa1\xf4\x54\xf7\x16\xfa\x07\x38\x23\x9e\xc3\xd9\xab\xf8\x75\xf4\x59\xe7\xbc\x3f\xb7\xb7\x1e\xf3\xa8\x7d\xd8\x16\xff\x08\x93\xb7\x55\x24\xe3\x56\x37\x91\x3b\xdd\x84\x55\x00\x04\x57\xec\xe4\x90\xeb\x9b\x35\x8b\xdc\xac\x51\x6a\xbe\xc4\x3c\x38\xb5\x04\xe7\xf2\xc2\x1f\xd9\x80\x0d\xd8\x14\xfd\x5a\x25\x20\xce\x47\xac\x16\x79\x99\x72\x84\x00\x10\xcf\xdd\xf0\x37\xcf\x94\x7b\x6a\x75\x94\xf7\xee\x0a\x90\x2c\x80\xf8\xff\xf1\x45\xe7\x60\x9d\x64\x46\xcb\xcf\xa0\x9b\x08\x9c\x24\x72\x99\x1e\x23\x5c\x93\x34\x37\xab\xd8\xa3\x2c\xd9\xba\x92\x4e\x47\x92\xbb\x05\xf5\xf9\x4b\x74\xa8\x55\xe5\xbd\x6d\xfe\x98\xb5\xae\xb1\x69\x68\xb3\x9b\x16\xa3\xa9\xc3\x70\x9a\xa3\x3d\xd9\x50\x35\x88\x1e\x91\x71\x07\xdd\x8b\xaf\xdd\x93\xd4\x56\x3e\xac\xe5\xeb\x08\xff\xde\xae\x85\xd6\xe3\xc9\x9f\x21\x5e\xd8\xb3\x91\xb7\xc4\x0b\x8d\xbb\x45\x04\xce\x43\xc1\x22\x57\xe4\x43\x18\xce\xff\x40\xed\x87\x5a\xee\xdf\x41\xf7\xf1\x1b\xbc\x57\x7b\xfd\x7a\xe3\x07\x70\xf7\xf0\xe5\xfc\x31\x7d\x43\xfe\x8f\x7d\x83\x72\x46\x8d\xb6\x93\x90\xd7\x6f\xd6\x8f\xe9\x2e\x02\x63\x1c\x7f\xc4\x75\x13\x57\x01\xdd\x7d\xd6\xee\x40\xe0\x70\x53\x6d\x73\xb8\xa9\x7a\x9c\x51\xaa\xa7\x39\xdc\x54\xdb\x1d\x6e\x8c\x1a\xd6\xbb\xda\x54\xb8\xeb\x26\x55\xc7\x94\x91\x7d\x64\xf0\xfb\x5f\xfe\x8e\xf4\x9e\xc9\xf1\x03\x5c\x68\x86\xa2\x91\x39\xac\x2f\x69\xff\xbe\xd8\x6c\xa2\x77\x45\xe3\xd7\x5b\x6a\x03\x94\xfd\xf5\xbb\x6f\xf9\xe6\x26\xdf\xd5\x31\xfe\x71\x67\xf8\x76\xd9\x5d\x9c\xe3\x3b\x12\xfc\x93\xb0\xd7\xb4\xe5\x9f\x50\xef\xbf\x46\x68\xd4\xee\x4b\xa8\xf3\xd7\x51\x22\xf3\xe5\x8f\xea\x89\xb3\xf5\x37\x14\x92\x78\xda\x78\x05\x96\x6f\x97\x32\xd4\x3d\x87\x34\x16\xa6\xa6\x66\x11\xf5\x28\x41\x78\x15\x36\xd9\x2c\x61\x1f\x27\x08\x2f\xfa\xfa\xdb\xfc\x22\x56\x24\x41\x7b\xe1\xb8\x9b\x1f\xb8\xe7\x89\xbf\x48\x9a\xc9\x6a\x16\xd4\x0f\x13\x84\x97\xa4\xca\x5e\x72\x01\x80\xff\x16\x19\xa0\xca\xc0\xda\xa5\x1e\x55\x57\x3a\xbc\x08\x57\x80\x8d\x0d\x02\x81\x7f\xe4\x9c\x45\x5c\x31\x9e\x5d\x83\x0b\xe1\x19\x2c\xa5\x2f\xd9\xfe\xad\x2a\xd3\x59\x2f\xd3\x82\x3c\x04\x30\xde\x80\x63\xf2\x2c\x60\x82\xf1\x02\xac\xfc\xf0\xe7\x54\xfb\x8f\xca\xec\x15\x13\xf2\x3e\xbf\x2d\xe8\x75\x7e\xa7\x5f\xad\xf4\xab\xba\x7d\x1f\x70\x69\xd8\xc7\xf3\x09\x01\xdc\x0c\x13\xed\x03\x0c\x46\x5f\x4c\x06\x83\x03\x78\x58\x98\x5f\x69\xf0\x8b\x74\x8b\x03\xce\xbe\xe6\xce\xed\xe1\x8c\xa7\x93\x6c\xa6\xfa\x96\x36\xf2\x9e\x43\xf6\xce\x1b\x1d\x34\xf5\x9e\x97\xe7\x3e\x26\x2a\x64\x62\x50\x01\x35\x89\x4b\xa9\x43\x02\xe5\x46\x70\xda\x6c\x70\x31\x66\xd9\x87\xcb\x8b\x0f\xe7\x8a\x6c\x5f\xbd\x79\x75\xf3\xf2\xa7\xb3\xf7\x3f\x9e\x4f\x1a\xbc\x90\xcd\xd3\x03\x33\x71\x61\xca\x8f\xf1\x6c\x82\x05\x91\x83\x81\x04\xbc\xca\xc1\x40\x8c\xeb\xec\xe3\x87\x57\x67\xd7\xe7\x93\xc6\x8f\xd4\x48\xa6\x16\xce\x9f\x22\xa4\x9a\x56\x4f\xce\xa4\x8c\x4a\x68\x2e\xd4\x55\x5d\xe8\x8a\x4c\xd0\x7c\xf6\xea\xe2\x5d\xa7\xb4\xee\x8c\x4d\xce\xd8\x70\x81\x83\x75\x0a\xd3\x10\x04\x75\xa0\x54\x82\x47\xb8\x12\xab\x96\xe3\x1c\x22\x3e\x6f\xfe\x72\xfe\xd7\x09\xe9\x60\xc2\xe3\x65\x2b\x67\x62\x07\x48\x5e\x11\x62\xdb\x23\x7b\x38\x9e\x34\xb2\x59\x2d\xb7\xf2\xdb\xea\x9b\xe9\x82\x4e\x3f\xdd\xf2\x68\xa0\x5f\x5c\x7a\xea\x0f\x1a\xb2\xa7\x45\xf5\x0d\x5d\xae\x64\x4c\x36\xda\x82\x0f\x63\xb3\xa1\x5a\xe8\x0f\x4d\xb2\x43\x87\x42\x88\xbd\xdb\xe0\x70\x6c\x71\xdb\x6c\xe7\x27\xd8\x08\x05\xc3\x84\x95\xab\x5a\x1d\x7c\x6d\xd7\xc3\xe1\x38\x31\x89\xb4\xe0\x2b\x3a\x4b\x70\xc2\xca\x19\x95\x54\x2c\x59\xa9\x51\xde\x0c\x2a\xd2\x0c\xf2\xe1\xdd\x9a\x00\x48\x48\x01\x91\xe0\x24\xaf\x25\x9f\xf3\x69\x5d\x41\x7a\xb5\xbf\xd7\x4c\x40\xc1\x39\x17\x4b\xd5\xfe\xfd\x8a\x0e\x13\x3f\x9b\xb6\x2a\x00\xfe\x09\x9b\x51\x0f\xda\x8e\x54\x4f\xe3\x24\x16\xc5\xc2\xa6\xa8\xa0\x56\x30\xc9\x1a\x0d\x91\x83\x83\x76\xc9\xe6\x78\xd1\x06\x4f\x3b\x31\xf0\x3a\x0f\xb5\xff\xc4\x4d\x16\xf4\xeb\x9f\x52\xa4\x04\x45\x75\x9b\x37\xcf\x21\x57\xf7\x23\x34\x56\xb0\xf2\xd3\x91\xe4\xfd\xc9\x1c\x76\x3b\xb4\x9f\x1a\xc3\xe6\xc9\xd1\x76\x60\x47\x4b\xa5\x96\x73\x79\x1f\x49\x3a\x85\x8c\x27\xba\x3c\xc1\xd3\x5a\x08\x5a\xca\x5f\x16\xb4\xd4\xa0\x30\x16\x3e\x90\x95\x77\x67\x05\xcb\x2b\x94\x26\xa6\xcc\xd1\x97\x05\x2d\x13\xfc\xc0\x66\xc3\xa6\x16\x11\x86\xe8\x21\x1d\x67\x47\xcd\x0f\xd4\x7c\x14\xc3\xe4\xbb\xec\x38\x3b\x4e\x36\x08\x37\xeb\xd3\x48\x4a\x92\xc9\xc2\xe5\x6b\x2b\xcc\x33\x43\xcb\xf6\x97\x3a\xfd\xf4\xdf\x5a\xe0\xd5\x70\x2a\x89\xfe\x91\xe0\x82\xe7\x6a\xc7\x98\xa7\xe6\x97\xa7\x68\xf3\xdc\xef\x15\x83\x2c\xa4\x08\x3b\xb6\xeb\x16\x82\xce\xd5\x86\x52\x1d\x83\xad\x53\x34\xb7\x97\xc9\x3c\x39\xc1\x1d\x47\xe0\xe1\xd8\xf5\xc9\x77\xa3\xb1\x49\x9d\x4c\xcf\xca\xbb\x37\x65\xfb\xc9\x45\xad\xaa\x85\x64\x9d\x7a\x99\xa6\x05\x9b\x7e\x4a\x9e\x7e\x78\xef\xe9\xc8\xfd\x76\x6e\x18\x57\x73\x82\x74\xe6\x62\x4d\x57\x10\xdf\x6f\xd2\x4f\x7f\xe6\x9f\x28\xa4\xfa\xd5\x0b\x3c\x2c\x4d\xe6\xc5\xcc\xe4\xef\x48\x13\xa7\x41\x46\x9e\x67\xd8\x00\xa8\x55\x2d\xe9\x0c\xa5\x0f\xd1\x50\xe3\x83\x93\x0d\xae\xc2\x17\x61\x32\x05\xd3\x7e\xf5\xca\x54\x49\x24\x3e\x38\x90\x90\xcd\xad\x31\x84\xc6\xa2\x26\x90\x77\xff\x86\x55\x67\x30\xeb\xc3\xd6\x49\xdc\xfe\xd6\x2e\x89\x05\x17\x3f\x38\xd9\x33\xb9\xd9\x3a\x33\xd5\x20\x54\x40\x28\x4f\x6e\x39\x2f\x68\x1e\xcd\x08\xb0\xa7\x8d\xbb\x07\x07\xe5\x5e\x49\x74\x72\xba\x76\x85\x7f\xaf\xf3\x82\xcd\x19\x9d\x41\xfa\x15\xbd\x06\xc8\xe6\x60\xdb\x4f\x02\x6f\xfc\xc6\x67\x37\x7e\xb2\xbb\xa9\x7e\x40\xb7\x53\x41\x9e\x9f\xf6\x2b\x83\x56\x36\xfb\xf7\x9a\x8a\x7b\x7d\xd0\x26\x3a\x75\x8f\x24\xc7\xa7\xf2\xfb\xd2\x26\x0e\x91\x87\x87\x88\xcd\x53\x9e\xd9\x49\x7c\xcd\x05\x74\x31\x55\xd7\x84\x72\x2c\x27\x98\x62\xe6\x66\xcc\xc2\x65\xa8\xb5\xd4\xa4\xde\x5e\xfb\x24\xd8\xa2\x09\x4e\x6e\xec\x86\xe8\x92\xc3\x81\x07\xe9\xb0\xa5\x50\x77\xc1\xc3\xea\x14\xdf\xbe\xe9\x69\xd6\xce\x54\x66\x96\x0e\xc4\xea\x46\xb3\xf1\x3d\x11\xff\xce\x8a\x43\x07\x07\xd4\x24\xcb\x77\x54\xa6\x31\x89\xd4\x35\xfb\x05\x3d\x7b\xa4\x2f\x9a\x55\x3c\xb5\x2b\x09\xd2\x70\x1b\xc2\xc5\x65\x84\xf5\x00\x35\x36\xde\x36\x7b\x7e\x40\x88\x44\xad\x5d\x65\x7a\x2e\x55\xcf\x5b\x3c\xa8\x67\xfd\x12\x9c\x84\x43\x8c\xad\xdf\xb1\x45\x74\x0b\x86\xd0\xf8\x06\x0d\x06\x07\x9d\x31\xfa\x95\x36\x47\x49\xa3\x3f\x47\xac\x4c\xda\x7d\xbc\xa8\xe5\xf3\x3b\x99\x02\x06\xeb\xf6\x6e\xae\xd7\xfd\xdd\xec\xeb\x27\xaf\xc1\x74\x67\x38\x66\x9b\xf3\x1c\x80\x18\xcf\xaa\x2b\xb6\x5c\x15\xf4\xa5\xe2\xe2\x28\xa5\xc1\x2e\x72\xd2\x78\xa3\xd5\x95\x00\x0e\xfd\xca\x44\xe1\xa2\x08\x63\x32\x87\x8f\x4e\x9a\xa0\x86\xa6\x78\x64\x39\x18\x24\x37\x15\x2d\xe6\x90\xdd\x73\xbd\x86\xb0\xc9\xa0\xa6\x14\x21\x0c\xd8\xa7\xed\xda\x6e\xeb\xdb\xdb\x82\x42\x64\x15\xcd\x2a\xc9\x57\x1f\x04\x5f\xe5\x77\xb9\x9e\x43\xdc\x66\xca\x9e\x6f\xee\xc6\x5d\xd9\xbc\xd5\xb5\x26\xe3\xed\xb2\xbb\x18\x97\x7c\x1a\xe3\xfb\xbb\x67\x78\xfa\xe6\xa6\x8a\xd5\x11\xfe\x08\x22\x00\x24\x3e\x7b\x08\xbe\x19\x56\x58\xd8\xa6\x87\x7c\x13\x5e\x8a\xe6\x05\x44\xf6\x7a\xc5\x1f\x4a\x13\x66\x95\x70\xbc\xcc\x9c\xd0\x68\x6e\xb9\x37\xd6\xbe\x70\xed\x08\x27\x2d\x9c\xfa\x45\x2d\x08\x60\xf0\xb4\xcb\xb4\xe1\xa2\x9a\x9a\xf1\x1e\x7e\xb1\xd7\xc5\x4b\xa1\x99\x27\x58\x92\x67\x0d\x6d\xa2\xad\x77\xb3\xc1\xe1\xd8\x41\xc2\xea\x2e\x41\x67\xf3\x69\x1a\xf4\x4b\xd4\xc7\x44\x1f\xe7\x78\x2b\x73\x32\x61\x49\xa8\x8d\x35\x2d\x09\x1d\xcb\xa3\x93\xc9\x5e\x39\x18\x94\x19\xab\x82\x23\x6c\x30\x90\x47\x47\x76\x4d\xe0\x5e\xcd\x83\x70\xcb\x91\x62\x48\x72\xa8\xe8\x5c\xa2\xd1\x63\x7c\x3e\xa0\xb0\x61\x7c\x93\x05\x25\x36\x08\x47\x4e\xd4\xce\xc4\x04\x93\x19\x19\xfc\xc3\x06\x77\xb7\xfc\xdf\x1b\x07\x34\xa8\x0f\x2c\xf3\xa6\x7b\xd6\x33\x59\x13\xb2\x83\x4c\x62\xfb\xac\xdc\x2f\x51\xd9\x86\x4c\x62\xea\xf8\xa4\x63\x36\x21\xe5\x98\x4d\xbc\xcb\xee\x06\x61\x25\xd3\x76\xba\x6b\xb6\x51\x74\xdb\x85\xdd\x57\xd2\x4f\x9e\x44\xd8\x87\xb9\x4e\x24\xa8\x6f\x7d\xa3\xfb\xb9\x3b\x09\x76\x3f\xef\xc2\x56\x7a\xde\xff\xa4\x84\x76\x9b\xde\x69\xcb\xc1\xca\x76\xe2\x18\x5e\xa1\x6c\x37\xe8\xc7\xcb\xb7\xb0\x21\x19\x88\x9c\xa6\xd1\xee\xc1\xaf\x47\x72\x26\xe8\x5b\x9e\xcf\x40\xe4\x7f\x64\x6e\x77\x9f\xb7\x3d\x73\xae\x34\x47\xd6\x6e\x10\xad\xd7\x6a\x1b\x13\x42\x68\x90\x02\x85\x6e\x9f\xbc\x40\xba\x6a\xd5\xd7\x4b\x33\xed\x21\xe0\x98\x14\xed\xd6\x55\x51\x2e\x25\xc7\xa7\xd4\x0b\x9e\x54\x0b\x9e\xa6\xb3\xa9\x84\x54\x2e\x28\xe8\xb3\xf4\x87\x85\x3d\x36\x55\x07\x2d\xfe\x5b\x17\x4e\x13\xa0\x2d\x1d\x1f\x39\x3a\x31\x50\xb8\x80\x69\x97\xb2\x50\xfa\x65\x20\xf6\x42\x60\xa6\x50\xdc\xe6\xf0\x64\x72\x5a\x66\xde\x0e\x0c\x5a\x54\x8b\x3d\x26\xd0\x29\x12\x44\x34\x82\x0b\xf6\xf8\x58\x4e\x88\xb0\x2e\x41\x7c\x83\x03\x32\x1c\x26\xff\x4b\x5d\x3e\x1b\x11\x4f\x5d\x54\x35\x63\x92\x88\x08\x01\x96\x19\x80\x32\xd4\x25\xb1\x44\x7d\xc4\x6d\x6f\x44\xbf\xe8\xab\x8a\x8b\x00\x2f\x8d\xe0\x0a\x66\x60\x7f\x07\x2d\x8d\x46\x36\xe4\x9c\x26\x97\x36\x94\x54\xc7\xd8\xb5\xbe\xfa\xca\xac\x5a\xb0\x39\x48\x0f\xfe\x7d\x87\xf9\xcb\xf1\xf1\x04\x99\x1b\x90\x0c\x33\x49\xef\x51\xc2\x06\x03\xd6\x64\xe1\x23\x99\xad\xf8\x2a\x45\x26\xc7\x5f\x35\x7c\xd8\x6c\x82\xda\x1b\x1c\x14\xd0\xce\x0c\x28\xc3\xc9\xc8\x17\xb2\x34\x68\x8f\x59\x43\x10\xa9\x44\x06\x81\xaf\x51\x6a\x3c\x81\x7c\x9e\x95\xcb\x3e\xdc\x75\x98\x48\xde\xb2\xf2\x93\x57\x64\x6e\x70\xd5\xd4\x64\x76\x74\x96\x76\x91\x1a\x9a\xcb\xea\x11\xad\x92\xa4\x5f\xe5\x4d\x2e\x68\x1e\xd3\x2b\x3d\x5f\x57\xf4\xdb\x55\x97\x32\xbb\xa6\x5f\xa5\x35\x24\x3c\x44\xf4\x96\xaa\xeb\x47\xd0\xf5\x09\xee\xe8\x39\x9d\x52\x49\x95\xd2\xe3\x8b\xa9\x55\x04\x87\x01\x4e\x39\x1c\x39\x46\x47\x59\xd1\x82\x42\xaf\xcf\xcb\x59\xf8\x13\xec\xb0\x4a\xbc\x17\xf9\x2a\xc1\x49\x91\x1b\x4d\x8a\x48\x6c\xc2\xcd\x09\x56\x15\x1a\x34\x6e\x5e\x54\x26\x17\xff\x2e\x6b\x30\x67\xb4\x98\xed\x98\xa5\xaa\xa5\xe2\xfb\xfd\x97\x29\x62\x7d\xd7\xd2\x5e\x33\x57\x17\x78\x36\x84\x19\xf8\xda\x8b\x58\x36\x17\xd1\xac\x12\xdf\xa6\x8d\x86\x55\xd5\x93\xb1\x9b\x3e\x5a\xc3\x4b\x1b\xd5\xb2\x1a\x74\x41\xa5\xd5\x34\x57\xf9\x67\xea\x96\x68\xce\xc5\x52\x8b\xc5\xe6\x07\x2d\xa7\x46\x99\xad\x7e\x2d\x01\x11\xd6\xfc\x28\xb9\x8d\xa6\x31\x0f\xcc\x15\x07\x27\x0b\xca\xee\x16\x90\xc9\x56\x75\x49\xed\x67\x4f\x0a\x05\xab\xd4\x1b\x53\xe9\x32\xff\xaa\xfe\x65\xaa\xb9\x65\x5d\x48\xb6\x02\xd5\x9d\x21\xb2\x55\x2e\x25\x85\xcc\x58\x15\xfb\x15\xa8\x4e\xd2\x95\x23\x24\x75\x1b\x9c\xc9\x45\x32\xc1\x3a\xeb\x68\x92\x68\xdd\xf8\x4e\x3a\x2d\xa0\xf9\xa4\xa3\xd7\x72\x76\x70\xfd\xbe\x23\x9e\xeb\x5b\x22\x55\x72\x5c\x6e\xc5\xbd\x7c\xac\x13\xfc\x1e\xc8\x46\xac\xa9\xc6\xe9\x0f\x0b\x11\x8a\xa9\x49\xc7\x17\x4f\x98\x90\x9a\x35\x44\x7b\x52\xdc\x3f\x68\xc4\x75\x42\x7d\xb2\xc7\x4d\x58\x99\x79\x4d\x08\xdd\xa4\x42\xa3\xb6\x0b\x84\x4b\x25\xe5\xa8\xd9\xd2\x1b\xcc\xcc\xa0\xfe\xb1\x64\xf6\x8f\xfc\xeb\x96\x5d\x37\xe3\xcb\x3e\xeb\xb8\xd3\x93\xbb\x47\xa5\x5a\xdc\x67\xc3\x2a\x5e\xbc\xd3\xd8\xb8\xd5\xce\xa8\x8a\xfe\x93\xad\xc0\x8a\xaf\x2e\xde\x5d\x0b\xea\x1d\x18\x80\xa0\x77\x6f\xa2\xfd\xed\xd6\xb6\xde\xf3\x19\x7d\x7e\x7b\x22\xeb\xf9\xbe\xc7\xda\xd1\x93\x13\xe7\x99\x4e\xc5\xbf\x01\xc9\xaf\x83\x3b\xd8\x2a\x58\xdd\x97\x12\x76\x77\xcc\xd9\x01\x7a\x71\x04\xc9\x1c\x7b\x4a\x00\x2c\xda\x6d\x90\x2a\x69\x67\x7f\xe7\x05\x24\x9b\xaf\xbe\x39\x6a\x3a\xd8\x77\x5e\x2f\xe4\xb2\x38\xaa\xf2\x79\xb7\x09\x57\x04\xb6\xa3\xc9\x0f\xde\x57\xa6\x54\x2c\xb3\x60\xbf\xd2\x47\xda\x73\x6c\x35\xfe\xba\xff\x28\xf2\x25\xca\x69\xde\xff\x9a\xe6\xd3\xc5\x11\xeb\x6f\xe0\x2e\xe2\x6c\x66\xdf\x2d\xf2\x6a\xd1\xfb\x92\xcd\x8f\xea\xb2\xa0\x5b\x86\x56\xf0\xae\x5b\xba\x7d\xb7\xac\xfb\x9b\x05\xa1\xf1\x08\x44\xb2\xde\x32\x82\xe6\x33\x5e\x46\xe8\xcb\x16\xa8\xcb\x5b\x5e\x83\x10\xd2\x7c\xbf\xe4\x33\x75\x13\xeb\x9f\x79\xf0\x43\x9b\xf2\xe2\x68\xce\xc5\x51\x2d\xda\x69\x54\xfb\x81\x1d\xf1\x12\xdf\xe3\x3b\x7c\x8b\x3f\xe3\x1b\xfc\x05\x9f\xe3\xaf\xf8\x02\x9f\xe1\x2b\xfc\x01\x7f\xc2\x2f\xfb\x82\x11\x2f\xbd\xe9\xdf\x46\x1f\x26\x3e\x95\x7b\x72\x48\x37\x00\x5b\xfe\x2e\xee\xa2\x55\xda\x54\xad\xf5\xd3\x5d\xb4\x82\x20\xff\x5a\xfb\xc7\x92\x72\xcc\x0d\xd8\x10\xae\x9b\x3e\x69\xa4\x6e\x79\x53\x87\xc2\xd5\x70\x99\xb3\x32\x41\xcd\x2f\x70\x9d\xcd\x34\xd4\x3c\x9d\x39\x59\x1c\xd0\x72\xd2\x63\xfc\xd2\x79\xa5\xa5\x35\xc2\x75\xa6\xfd\x39\x40\x28\x7f\x99\x4f\x17\x94\x68\x0f\x37\xf8\x3b\xfd\x96\x7e\x87\x63\x7e\xb2\xe0\x3f\x2c\x08\xcd\x2a\x5e\x8b\x29\x85\x80\x5f\xed\xe7\xcb\xb4\x2b\x8f\xee\xab\x6b\x1c\xc0\x81\xf0\x83\x2e\x3d\x14\x1b\x84\x39\x61\x01\xfe\x47\x4d\x98\x71\x54\x51\xe7\x36\x5f\xaf\x6b\x14\x78\xc7\x57\xbd\x70\x0c\xa9\xc4\x1c\xd7\xd8\xdc\x00\xf5\x7f\x68\xf3\xe4\x2e\x8b\xc1\xa0\xce\x6e\x8c\x5e\xea\x2d\x9f\x02\xfa\xe3\xa7\x7a\xa5\xc4\xb8\x54\x5f\x01\xd6\x6b\xe9\x55\x98\xdc\x87\x12\x95\xe8\x30\x59\x27\x87\x6c\x03\x73\x69\x85\xd4\xee\x4c\x9e\xc4\x66\x12\xfa\x63\xa1\xa4\x7c\x8f\x62\x42\x8e\x11\x92\xec\xa3\x20\xc3\x85\x91\x58\x94\xcc\x31\x12\x56\xc8\x4d\x25\x79\xa0\xe5\xe7\x61\xbd\xc1\xd2\x51\x16\x29\xb1\xba\xd8\x89\xf8\x04\xb9\x7e\x88\x56\x3f\x9a\x03\x16\x7a\xc0\x32\x63\x33\x3d\x66\x13\xb9\x23\x22\x63\x3e\xc6\x11\x2f\x9b\x5e\xfa\x72\x08\xf8\xaa\x04\x4d\x65\xc3\x91\xc6\xb4\x62\x5c\x97\xd2\x12\x9c\x2c\x63\xc3\x50\x07\xe8\x96\xee\x4b\xdd\x7d\x0a\xdd\xdf\xc4\xfa\x47\xed\xc8\x6e\x6b\x56\xc8\x37\xe5\x3b\xcb\xb6\xc8\x83\xe6\x5b\x43\xd5\xbf\x4f\x0e\xec\xd9\x97\xfc\x49\x33\x40\xf2\xc0\xe6\xc3\xf3\x8c\x95\x05\x2b\xe9\x9b\x39\x36\x5f\xdd\xfb\x0b\x04\x9c\x1b\xc3\x5b\xf7\x40\x09\x22\x37\xee\x97\xe2\xfd\xc3\x2f\xee\x67\xc1\xef\x86\x5f\xdd\xaf\x65\x2d\x87\x17\xee\x57\x12\x30\xec\x2a\x19\x9e\xb9\x17\x96\x49\x0f\xaf\xdc\x23\xc3\x96\x87\x1f\x82\x27\xea\x10\x71\x5d\xfd\x08\x3f\x71\x62\x8e\xcd\xe1\xca\x37\x73\x64\xcf\xb2\xe1\xe7\xe0\x61\x70\x18\x0f\xe7\xc1\xf3\xf6\x01\x3c\x5c\x06\x2f\xfd\x21\x3f\x5c\x04\x8f\xef\xa8\x3c\x32\x60\xa4\x47\x9f\x73\x91\x0c\x41\x33\x63\xc0\xa7\x7e\xce\xc5\x06\xd7\x71\x97\xd3\x12\x53\x84\xcb\xae\xe7\x72\x83\xde\x14\xd7\x05\xaf\xae\xb2\x01\x88\xa9\x8f\x9b\xd7\x5c\x7c\xbc\x7c\xdb\x03\x18\x13\x7e\xd0\xc3\x21\xfa\x23\x89\xfa\x58\x0a\xc5\xb2\xd5\x97\x65\x3e\x15\xbc\x81\x8e\x6b\xe9\xb9\x5d\x26\xc8\xf7\xed\x09\xbc\xce\x56\x7c\x55\xab\xdd\xfb\x0e\x0a\xa1\x54\x66\xb7\x05\x9f\x7e\xaa\x60\xae\xd4\xea\x56\x80\x68\x1f\xb6\xb9\xc8\xab\xad\x0e\xc9\xa1\xb7\x41\xd9\x8c\x74\xd8\xee\xc8\x1c\x64\x33\x32\x2c\xb6\x24\x32\x5b\xf2\x59\x6d\x73\x7f\x6b\x44\xdc\x7e\x6f\xf1\x78\x13\x09\xbe\x54\x8b\x6d\x13\x88\xb4\x0e\x2e\x50\x2b\xea\x0c\x19\x14\x9b\x93\xa6\x0c\x12\x85\x0d\x93\xc3\x12\x43\x77\xd4\x01\xe4\x02\x27\x53\xc8\x2e\xd4\x1a\x9f\xe5\x85\x64\x8b\x87\x45\x83\xd7\xeb\xc6\xed\x67\x43\x6a\x1a\x92\x1b\x14\x9d\x3b\x17\x5b\xb6\xad\x81\x06\x63\x35\x7e\x89\x3a\x94\x1d\x75\x16\xf2\x43\x2e\x24\xcb\x8b\x68\x75\x70\x20\xfb\x32\x48\xbd\xd3\xeb\xd2\xaa\x47\x1f\xda\xf1\xaa\xf4\x7a\xda\xe9\x75\x73\x1a\x1c\xf6\xb1\xea\xd5\x69\xee\x63\x8d\xed\x99\x2e\xf6\xe4\x42\xf0\x2f\xb0\x33\x21\x89\x70\x4a\x0f\x93\x7d\x56\xed\x97\x5c\xee\xe7\xfb\x2b\x5d\x51\xd2\x1d\xa5\x66\xb0\x4f\xa0\x34\xab\xef\x4e\xbd\x60\x67\xf2\xc7\x69\x97\x89\x26\xe3\xd6\x6a\xf3\x54\xa8\xa6\x2e\x21\xb3\xaa\xd0\xf6\xdb\x44\x8b\xb6\x4a\x26\x74\x42\x4c\x83\xae\x36\x68\xbd\xde\xfa\x19\x8a\x4e\x75\x74\x3c\x6c\x1e\xf6\x36\x30\x39\xec\x37\xd5\x22\x6e\x71\xef\xbc\x44\x47\xb1\x50\xac\x65\x6f\xeb\xee\x33\xd9\xc5\x3a\x63\x57\x8b\xc5\x6c\x5b\xcc\xd8\x95\x9b\xe1\x5f\xc1\x3c\x94\x83\x41\x7c\x2a\xd6\xeb\x07\x3d\x1d\xf1\x0f\xd5\xfe\xf5\x98\xba\xdc\xa0\x0b\x5b\x03\xbf\xee\x8d\x8d\x1e\xcb\xc9\x2c\x0b\x9f\x3b\x87\x68\x40\xdb\x05\xf7\x00\x5f\x41\xf3\xd3\xad\x14\xa6\x7b\x93\xa0\x3d\xd5\x00\x68\xa6\x5f\xe4\x15\x9d\xb5\x1a\xd9\x74\xa7\xdd\x6f\xd1\xdc\x4a\x5a\x1c\x2b\x7a\x77\xc1\x1f\x68\xd3\xa1\x5a\x2b\x40\xc4\xd2\xa8\x36\xc8\xd0\x49\x1a\x63\x3a\x89\x91\x4b\xb4\x22\xef\x1a\x1d\xab\x46\xcd\xb1\xf7\x61\xd9\xbe\xef\xec\xfd\xac\xbd\xf1\x24\x7f\xc9\xcb\x99\x51\xdb\x47\xc0\xbc\xfd\x79\x39\xcb\x62\x25\xed\x4c\xb5\xcf\x5f\xab\x50\xe8\x22\xb3\x3a\xd2\x9e\x86\xa4\xdd\x66\x7b\x36\xd3\x93\x49\x09\xda\x9d\x1d\x38\x8c\x35\x3a\x4b\x33\xc8\x87\x3e\x5e\x4b\x70\x5b\x53\xd5\xc4\x5b\xd6\xf8\x74\xbf\xb1\xe1\x66\x25\x5b\xdb\x9d\xb1\x99\xc9\x21\xd6\x8a\x93\x37\xd7\xbd\xb4\x55\xfe\x96\xde\xb1\xb2\x83\x37\xc3\x4a\xf0\x91\xd0\x62\x29\x39\x38\x6e\x40\xc7\xc0\x27\x81\x8c\xd1\xac\x70\xca\x97\x4b\x26\x3b\x62\x0a\x16\x36\xbe\xa0\x73\xeb\xd4\xb6\xc2\x9e\x97\xea\x4a\xaa\xed\x88\x22\xf4\xa2\x13\x63\x39\xf1\x43\x02\xd5\x2b\xed\x74\x22\xec\x23\xa0\x9a\x14\xf7\xd1\xe1\x9d\xa8\x0d\xb9\x49\x45\x16\x64\xba\x0d\xd5\xff\xef\x62\x3a\x3d\xc3\x20\x1e\x0f\x49\xda\x16\x63\xb4\x83\x21\x29\x64\x6e\x84\x66\x97\xe7\x2f\x2f\xde\x7d\xf8\x78\x7d\x1e\xc4\xff\x60\x9a\x2d\xda\xc7\x44\x43\xb6\xcd\xd5\xc6\x32\x56\xc3\x76\x15\xe0\x8d\xec\x43\x7c\xc2\x77\x89\xba\x83\x8b\xec\xb5\xc8\x97\xf4\x0b\x17\x9f\xda\xe9\x37\x0d\x3f\xb5\x70\x72\xbf\x21\xf2\x85\xc5\xc2\x5d\x36\x58\x50\x63\x12\xe8\x44\x9f\x30\x17\x7d\xb2\xd9\xa0\x3d\xde\x8e\x85\x68\x30\x7a\xc8\x78\x61\xec\x3c\xad\xf9\xdc\x0e\x47\x61\x1a\x77\xf8\x4d\xcd\x6a\xd5\xb6\x68\x3c\xb7\xf3\x10\xbc\x88\x9c\x58\xe4\x20\x9a\x6f\xa7\x7d\x39\x69\xe6\x9b\x6b\x67\x97\xe1\xfd\x14\xe9\x75\xa8\x5d\x45\x73\x9b\x08\x77\x0e\x66\xeb\xd3\x8f\xf9\xec\x9a\xea\x1a\xe2\x0c\xb7\xb8\x24\xc2\x04\x89\x33\x62\xf7\x2d\xe6\x1e\xb9\x6d\x2f\xf0\x6a\xe4\x23\xf6\xc3\xc9\x48\x76\x53\x8d\x41\x15\x27\x0e\x87\x09\x81\xf9\x63\x08\xae\x75\xea\x9b\x6f\x7b\xbf\xf9\xb6\xfd\x0d\xdf\x44\xd2\xe3\x87\x47\xb5\x22\x3e\x91\x01\x1f\x2e\xf3\xa2\x75\xc8\xa7\x65\xeb\xf4\xde\x36\xf7\x81\x82\xba\x3b\xff\x3b\xab\xc3\x75\x01\x93\x3b\xe1\xc9\x8b\x21\x1b\x8b\xa1\x17\x62\xaf\x31\xd2\xab\x7c\x4e\xf5\xdc\xa5\xd2\x07\xab\x47\x27\x49\x34\x6f\xc9\x5b\x26\x49\xec\x3c\x49\xa1\x8a\xfe\x09\xb3\xd4\x9c\x88\xbe\x69\x10\x81\x2e\xcc\x45\xdc\x40\x5a\xff\xf6\x9c\xd8\x91\x8f\x12\x1f\x2b\x34\x4c\x42\x4b\x6d\x7c\x4a\xca\x1d\xa7\x44\xe0\x72\xe7\x29\xe9\x58\x24\xfe\x11\x76\xaf\x9d\x20\xeb\x3a\x9f\x81\x4f\x57\x39\x2e\xbd\xdf\x09\x9c\x10\x8d\x7d\xda\xdc\xdb\x91\x3d\xca\xd0\x90\xaf\xd7\xfa\xb5\x21\x42\x8e\x86\x49\xcf\x64\xff\x01\x9b\xd4\xda\x16\x76\x3c\xba\x77\xb7\xbe\x3d\x31\x38\xb8\x6f\x5d\x72\x9b\x3a\xd8\x79\xa3\xe2\xda\x1e\xf5\x45\x33\x93\x66\x44\xdb\x2b\xc6\xd5\x64\x94\xd6\x44\xe0\x82\xa8\xbf\xd1\xd0\x27\x61\x21\x69\xee\x8a\x21\x55\x48\xe2\x82\xc8\xcc\xa4\x40\x1d\x0c\xdc\x9f\x63\xa1\xbe\x0b\x2a\x27\xf9\x60\x90\xd6\x84\xaa\x4a\x1b\x69\x4d\xb5\xb7\x99\x3b\xd0\x2d\xb3\x97\x44\xbb\x82\x51\x84\x05\x39\x3e\x15\xdf\xd3\x53\x71\x78\x88\xe4\x58\x4c\x7c\xe1\xb1\x98\xec\x59\x87\x36\x81\x39\x79\x30\xd1\x47\xb5\x12\x10\xaa\xa1\xc4\x45\x7e\x4b\x8b\xa1\x5f\x9c\x69\xc1\xab\x5a\xd0\x23\xb3\x82\x8d\x34\xac\x8f\xb9\x0c\xeb\x25\xb2\x6b\xcf\xbb\xee\xeb\xfb\x25\x64\x87\xfd\x1b\x67\xa5\x91\x55\xe0\x01\x1e\xd7\xb8\x98\xd8\x24\x30\x2c\x95\x90\x1e\x7d\xb3\xa1\xd9\xd9\xcb\xeb\x37\x17\xef\x09\xcd\xde\xbc\xff\xf9\xe2\x2f\xe7\x5e\x1a\x8b\xb3\x51\x2d\x7f\x19\x2c\x00\x35\x8f\x21\x43\x72\xa4\x1b\xa6\xac\x99\x92\x62\x7c\x3c\xc1\x33\x52\x8c\x4f\x26\x78\x45\x6c\x7a\x9a\x6f\x21\xcf\xca\x2c\xbb\x59\x19\x93\xf6\x5f\xe8\x3d\x66\x3a\x7b\x87\xf5\x59\x1f\x31\xed\x44\x67\x7f\x0f\xa7\x08\xcf\xa3\x7a\x11\x43\x50\xce\xfb\xeb\x18\x72\x50\xc4\x82\x5f\x77\xc8\x8a\x64\xe7\x89\xa2\x8d\xf5\x53\x6b\xa6\x7e\xa5\x90\x59\xb4\xad\xd1\x57\x1c\xa8\x85\xb7\x28\x14\x39\x06\x5d\x92\xe3\xe3\x09\x31\x78\xbb\x12\xc1\x4f\xc8\x42\x20\x37\x08\x8b\xc1\x80\x8d\x22\x1d\x63\xa9\x3a\x0d\xd0\x66\x28\xd6\x6b\xb6\x5e\x47\xf5\xb7\x9b\xd4\xcc\x9c\xf6\x50\x81\x44\xf9\x30\x73\xe6\x37\x5e\x21\xbc\x6c\x0d\x62\x49\x22\x1b\x6f\xa6\x36\x5e\x9e\xce\xf0\x0c\xab\x3f\xf1\x1c\x7c\x9d\x65\xc6\x2a\x30\xf8\xa1\x74\xa1\x23\x6e\x82\x27\x33\x34\xca\xd3\xa9\x43\xac\x5d\xb8\xbf\x66\xee\xaf\x39\x6a\x67\x14\x2f\x31\x8b\xe5\xec\xb4\x5a\x07\x50\xae\x79\x0c\x5c\xfb\x57\x89\x0c\x51\xdb\x74\xf6\x4e\x04\xdf\x6c\xc2\x2e\xe0\x19\x9e\x23\xbc\x1c\xd7\x00\x51\xaf\x91\xa7\x3e\x6a\xbb\x80\x67\xb6\x4b\x73\x9d\xa8\x3c\xf1\x83\xba\xd6\x07\xfe\xc3\x43\x88\x06\x70\xfb\xa4\x59\x42\x3f\x4c\xa2\xfe\x12\x11\xfb\xfa\x6f\xf6\x9a\x88\x73\xea\x9d\x3d\x23\x76\xc6\x7b\xd8\x82\x6b\xeb\xb7\x5c\x64\x1b\xe2\x12\xf2\x95\x98\x24\x07\xf5\xce\x39\xb6\x8a\x66\xde\xac\x20\x85\x99\xe6\x15\x27\x90\x4b\xdd\xe7\xcd\x00\x5b\xd7\xb6\xfc\x7b\x28\x95\x96\x45\xe1\x1a\x19\xc4\xaa\x07\xd0\xd3\xda\x83\xe4\xc0\x92\x7c\x3d\x18\xd4\x6e\x8f\x5a\x1f\x5f\x97\xd1\xca\xbe\xc2\x85\xcb\x68\x55\x92\xe3\xd3\xf2\x7b\x71\x5a\x1e\x1e\xa2\x9c\xd4\xe3\x72\x82\xa7\xe3\x7c\x42\x8a\x71\x39\xd9\xb3\xc5\xc8\x31\x58\xd5\x67\x3a\xaf\x12\xf4\x65\xbd\x7e\xd8\xe0\x95\x7e\xe0\x47\xbb\x5e\x8f\x27\x78\x11\x38\x1e\xeb\xa6\xf3\xaf\xe9\xaa\xd3\x34\xda\x5b\x80\x18\x33\xb5\xf8\x37\x0b\x3c\x3e\xc6\xb6\x9c\xe3\xef\x2b\xa4\xb6\x61\xb7\x60\xd1\x2e\x58\x20\x8b\x50\x01\x74\x1d\xa4\xdc\x9a\xe1\x29\x96\x41\xca\xad\x2d\xd9\xba\xe6\x9b\x4d\x98\xbc\xdb\x00\xbd\xf5\x9a\xb2\x8d\x89\xba\x4d\x1a\x01\xcc\x1c\x16\x90\x9e\x51\x1f\x93\xae\x54\x24\x03\x63\x4c\xd2\x0a\x64\x7d\x97\x2a\x2b\xcc\xad\x26\x30\x64\x66\x30\x7b\x1f\x48\xb4\xb7\xa1\x1e\x87\x08\xc3\xbd\x9e\x87\x6d\x89\x10\xce\x23\x40\x64\x1e\xe0\x72\x46\xe7\x97\x74\x4e\x72\xcc\x21\x53\x60\xae\xfe\xc5\x5c\xa3\xd2\x08\xcc\xc1\xf0\x4b\x4a\xcc\x0d\x28\x15\xcf\x8a\xbc\xea\xe2\x2d\x99\xe7\x60\xb7\xb3\x4f\x9e\x66\x58\x6c\x4c\xa5\x5a\x53\xfb\xac\xa3\x2a\x03\xfd\x42\xc7\x5d\x1d\xb4\x07\xc0\x07\x3c\x2a\xc7\x25\x9d\x63\x93\xf0\x8a\x96\x9f\xad\x86\x5e\x8d\x08\xeb\xac\xf9\xad\xc1\x58\x1b\x98\x1d\x0a\xa4\x41\xb2\x5c\xbe\x08\x73\xd6\x0d\x06\xb5\x92\xef\xac\x0a\x98\x83\x42\x38\xfc\x94\xd4\xb8\x93\xc7\xaf\x46\x05\x29\x7b\x8c\x70\x69\x8d\x19\xf2\xfa\x77\x30\xce\xb3\x98\x21\x11\xa5\x35\x6a\xe4\xf3\x2b\x48\xbd\xd1\x0c\xa7\x4a\x0b\x4c\x7d\x6e\xf3\xee\xf8\xc8\x14\x4f\x41\x6d\x97\x6b\x47\x01\x7f\x3a\x3d\x72\xa4\x68\x87\xac\x47\x7c\x25\x7f\xcf\x1b\x96\xd7\xf6\x78\xc2\xb5\x17\x2b\x25\x50\xc9\xcc\x5d\xfe\xae\xe9\x57\x09\x99\xbe\x11\x88\xa1\x69\x92\xf4\xdc\xca\xff\x80\x5b\x91\xf3\x45\xeb\x1e\xb5\x31\x65\x65\x47\x51\xc9\xaa\xf3\x7c\xba\x78\x53\x46\xad\xe4\x83\x01\x1d\x8b\xc9\xa6\x87\xf1\x58\xaf\x8e\xa6\x17\xb6\xec\xec\x74\xcf\x27\xd5\x35\x42\x89\x27\xd6\x8e\xa5\x81\x29\xac\x6c\x71\x7e\xf6\xf2\xa7\x9b\x37\x8f\x08\x17\x77\xbb\x22\xe6\xef\x02\x2f\xb5\x0d\x4a\xee\xa9\xf7\xc0\x47\x16\x3c\xef\x9f\x1f\xdc\x7e\x74\x82\x0c\xb3\xce\xe3\x0c\x39\x4f\x7f\x03\x16\x20\x42\x7b\xb9\x71\x95\xf2\x7c\x9f\xe1\x3c\x5b\xe5\x72\xe1\x9f\x70\x9c\xc3\xd6\xfd\x90\xcb\x85\xc6\x25\xca\x33\x56\x96\x01\x95\x92\x32\x7b\xff\xf1\xed\xdb\x9b\xcb\xf3\xd7\xe7\x97\xe7\xef\x5f\x9e\x1b\xd9\xd2\x94\xbb\xce\xef\x88\xc8\xc0\x06\x62\x34\xc3\x76\x06\x44\xf6\xf2\xe2\xfd\xd5\xf5\xd9\xfb\xeb\x9b\xeb\xb3\x1f\x03\x48\xb8\x76\x9e\x58\x94\x8e\x99\x39\x0c\xd4\xbf\xd5\x04\xf5\x21\x12\xe6\xe0\x3e\x10\x63\xe9\x86\x48\x43\x8f\x23\x27\xc7\x4b\x34\x4a\x4b\xcf\x5f\x43\x7d\x89\xc1\xf8\x31\x43\x7d\x2d\xf8\xf2\x43\x2e\x54\x4b\x14\x97\x08\x0d\x8d\x7a\x1e\x2c\x57\xf9\x0e\x67\x83\x3d\x11\xec\x8c\xda\x83\xa0\x39\xa3\xf6\x48\xb0\xf3\x17\x1e\x06\xb0\x0e\xf0\xab\xb1\x4e\xed\xeb\x57\x6e\xc2\x9d\x5d\x88\x53\x3e\x18\x98\xd4\x97\xb9\xc9\xf3\x98\x8f\xd2\x50\xb5\x40\x5d\x8e\x57\x34\x32\x91\x7f\xb1\x71\xeb\xa0\xa1\x26\xd9\xe0\x3c\x98\x32\x34\x4c\xca\x5a\xed\x23\xd0\xda\xc1\x75\x31\xf6\x8d\xbe\xa4\x25\x87\xb9\xce\x6f\xa5\x46\x6a\x70\x3b\x53\x58\x6b\x84\x86\x29\xeb\x90\x56\xbb\x68\x8b\x84\x10\x8e\xcc\x26\x61\x08\xbb\x5c\xa2\x8d\x65\x1a\x73\x8b\x25\xd5\xd8\x5f\xfa\xa6\x63\xa3\xc6\x3a\x1d\xb7\xa7\x70\xff\x22\x00\x0a\x54\xbe\x49\xf9\x93\xce\x36\xed\x11\xec\x59\xda\xa4\xe1\xbb\xf6\x14\x1e\x23\xdb\x80\x85\x5b\x4f\x8e\xc0\xd9\xf8\x89\xfc\x34\x76\x51\x7b\x12\xf3\xec\x9e\x42\xc6\xa5\xae\xc7\x03\xc4\xb3\x47\x2f\x35\x3a\x66\xa2\x79\xa8\x51\x67\x62\x63\x4a\x40\x3a\x91\xb8\xf7\x7e\xfb\x8d\x35\x7f\xeb\x5a\x30\xac\x99\xf7\x3a\x0f\xff\x16\xa0\xd6\x10\x98\xf5\x56\xe4\xe5\x74\xb1\x33\x1b\xc5\x51\xfe\x09\xb9\x75\x70\x50\xd9\x04\xf8\x24\x2f\x67\x00\xf3\x2a\x45\x2d\x17\xf7\xc0\xfe\xe7\x79\x51\xdd\x2b\xb6\xff\x64\xa1\xd9\x8d\x96\x3d\xe2\x25\x10\x65\xc2\x39\x1a\xe5\x4e\xa5\x2f\x87\x7c\xa8\x25\xef\x1c\x2a\x7e\x8a\xe4\xad\x06\xe5\x2b\x02\x50\x79\x18\x9d\x8e\x77\x84\xe1\x35\x04\x53\x37\x25\x4d\xd6\x02\x89\x07\x10\xf6\xca\x31\x25\xad\xb2\x27\xed\xe8\x82\x4f\xb7\x59\x48\xac\x0d\xba\x65\x20\x78\x44\x3a\xf5\x7b\x1f\x56\x46\x57\x82\x62\x7a\x3d\x61\x95\xf7\x05\x9f\x5a\x95\xa8\x3a\xc0\x55\xa7\xb7\x77\xfb\xee\x59\xe6\xaf\x29\x2f\x2b\x5e\x3c\x3a\x80\xc7\x2c\x5e\x7b\x3e\xe8\xb2\xe0\x77\x61\xc7\xff\x07\x8c\x5d\x10\x4b\xf1\x18\xb4\xd9\x33\xf3\x2e\xb5\x0c\x1a\x3b\x30\x48\x37\x75\xbc\x2d\x9d\xe7\x93\x8d\x92\xe1\xdf\xd5\x92\x70\x4c\xb3\xba\x7c\x57\x47\x33\xda\xd3\x71\x35\x59\xaf\xe9\x76\x51\xbe\xc9\x10\xcd\x35\x9d\xcd\x53\x9e\x0a\xe4\x5d\xfc\xb4\x16\xa1\x29\xf4\x0b\x1f\xf6\x30\xae\x26\x44\xe0\x7a\xcc\x8c\x8a\x71\x42\xc4\xb8\xb4\xe7\x2d\xae\xc7\x39\x5c\x01\x6a\x2b\xe0\x02\x33\x70\x57\x80\x77\x1f\xaf\x3d\x64\x89\x7b\x7a\x75\xf1\xf1\xf2\xe5\xf9\xf6\x7b\x41\x23\xc0\xe5\xb1\x85\x6b\x27\x78\xf8\x0d\xf6\xa0\xad\x2b\xd5\x20\xef\x30\x5e\x61\xe6\x73\xe4\x05\x81\xdf\x0e\x47\xdd\xc4\x7d\x83\xda\x3c\x50\x51\x05\xfb\x60\xa7\x0b\x26\xeb\xdd\x09\xbc\x7d\xc1\xdc\xeb\x9d\x58\x1f\x15\xf4\x1b\x2c\xe3\xe1\xb6\xda\x99\xcf\x35\x6d\xb7\x26\x39\x94\x22\x0c\xa0\x72\x94\x96\xdd\x9b\x26\xe6\x2d\xc2\x64\x5e\xcf\x34\x96\x4e\xea\x73\xfa\xa1\x6d\x14\xe5\xa2\x9d\x1e\xa3\xa6\xe7\xea\x1b\x1e\x59\x41\xd1\x51\xe0\xf7\x5f\x21\x3d\x61\xc4\x46\x64\x50\xf9\x1e\x3b\x91\x7a\xc3\xb7\x7c\x84\xb6\x06\xa0\xee\x79\xdd\xaf\xa6\x0f\x21\x49\x77\x0b\x3c\xdf\x09\x22\x60\x07\x74\xca\x9d\xa3\xd0\x5b\x87\x72\x34\x06\x74\x9b\xbb\x47\xfb\xa5\xf6\x77\x8f\xd4\x68\x67\xeb\x46\x68\x8f\xe2\x48\x38\x27\x95\xf5\xea\xa8\xf7\x35\x04\x0d\xef\x16\x01\xfa\x9c\x0c\x7f\xf1\x10\xbc\x5d\xe3\x8c\x8d\x05\x69\xd7\x00\x60\x5d\x7c\x6b\xcc\xef\x25\xe7\xce\x6b\x7f\xe7\x40\x5f\x1b\xc2\xb3\xad\x62\xf9\xb4\x4a\xcb\x9d\x2a\x7d\xe9\xe8\x7c\xa7\x4a\xd9\x4e\x95\x5e\xd3\xaf\xf2\xb5\xde\x17\x3b\xd5\xca\x77\xae\xf5\x0c\xf6\xd1\x4e\x95\xe6\x3b\x55\xda\x44\x09\xd9\xad\xe6\x6a\xb7\x99\x7d\x62\xad\xf5\x4e\xb5\xfe\x64\xb6\xfd\x4e\x55\x16\x3b\x55\xb9\x78\x5a\x95\xba\xf8\xd6\x1a\xcf\x43\x26\xb4\x53\xb5\xd3\x9d\x7a\xea\xfd\xc9\x76\xac\x76\x16\xb8\xa0\x6d\xad\x99\x56\xd3\x7c\x45\xcf\xbf\xae\x04\xad\xaa\xdd\x23\xf4\x67\x59\xfb\xc3\xed\x33\x2d\x97\xc5\x15\x38\xed\xed\x58\xbb\xfd\x60\x6b\xad\xac\xfa\xe9\xfa\xdd\xdb\x27\xd5\xeb\x3f\xd9\x5a\xf3\xcd\x1d\x95\xcf\x98\xf3\xc6\x57\xdb\x79\xa5\x3b\x74\x76\xaa\x7a\x95\xd9\x0f\xb6\xd6\xfa\xa6\xa4\x42\x3e\xb9\xea\xc6\x57\x8f\xd4\xef\x1c\xe9\x9f\xd1\x4a\xe7\xdb\xed\x4b\x20\x68\x45\x5d\xb7\x76\x05\xc3\x58\x65\xad\xef\xb6\xb6\x11\x84\x99\xed\x58\xff\x22\x0c\x4d\xdb\x5a\x77\xf5\x8c\xba\xab\x1d\xeb\x5e\xe4\xd5\x93\xeb\x0e\xbe\xd9\x75\x4e\x76\x9d\xf4\xc6\xa4\x6c\x9f\xf1\xea\x39\xb5\x57\x4f\xa8\xbd\x5e\xe9\x1c\xec\x97\x4e\x28\xdb\xa9\x91\x79\x16\xf9\xf6\xf1\xb6\xce\x7c\xee\xf1\xe7\x35\x18\xa9\xe0\x31\x0c\x97\xa7\xa1\xc3\x2c\x77\x45\x87\xf9\x6d\x88\x2d\xcb\x2d\x88\x2d\x7f\x04\x22\xcd\xb2\x07\x91\xa6\x5f\xde\x35\x52\x3c\x15\x3a\x3c\x77\xc7\x76\xee\xb3\xe6\x67\xdb\x59\x16\xfd\xba\xa2\x82\xa9\xd3\x3f\x2f\x9e\xd8\x4c\xf7\xd3\xad\x4d\xd9\xe4\x8e\x4e\xd6\x32\xf9\x1d\x77\x6c\xef\x2e\x90\x3a\x62\xf7\xd0\x2e\x4e\xc8\xd3\x92\x07\xec\x02\x9a\xb3\x83\x72\x2d\x62\xba\x35\x79\x62\x74\xde\x6f\xf3\xcb\x04\x9b\x34\xb2\x79\x8d\x93\xbc\x50\x17\x41\x00\xfd\x4b\x70\xa2\xfa\x97\xe0\x64\x2a\x01\xd3\xa4\x22\xdf\xfc\xff\x01\x8e\x7e\xbd\xe4\x75\x45\xd7\x92\xd7\xd3\xc5\x37\xda\x99\x2e\xac\xf2\xc1\xae\x3e\x9d\xe9\xe7\xd5\x90\x99\x12\x66\xc2\xb3\x4e\x09\x6c\x9f\xe8\xdf\x5d\x64\x47\x42\x8d\x17\xf0\x1b\xa7\x5c\x7a\xb4\xd2\xb1\x9c\x10\x8a\xe5\x06\xd7\xe5\x53\xaa\x9f\xd1\x82\x4a\xba\x53\xf5\x9b\x0d\x2e\x48\x73\x7e\x7b\xa2\x77\xda\x99\x4e\xb5\xcf\x8c\x46\xeb\xb2\xb1\x3c\xb6\x07\x44\x86\xbf\x4d\x6a\xdc\xe0\xc9\x99\xb8\xab\x48\xa9\x9f\x80\xba\x0d\x1e\x30\x63\xba\x73\xba\x13\xc2\x8d\xdd\x70\xa9\xd8\x25\x93\x3a\x87\x10\xc9\x4d\x0a\x1e\xbe\x24\x06\xf4\xdf\x25\x05\x20\x16\x8f\xfd\xdc\x3e\x89\x27\x85\x0f\x4b\xf4\x44\x07\xf9\x8e\x99\xa4\xe6\x65\xe2\xd4\x38\xeb\xb5\x49\x6b\xd0\xcc\xfe\xee\x12\x1c\xc1\x70\x22\x36\x66\xef\x52\xd7\x9a\x0c\xeb\x4e\x17\xa0\x8c\xc6\x4b\x00\xe6\xa8\x1c\xd3\x09\x69\xbd\x1f\xd3\x49\xdb\xd6\x2c\x3b\xbd\x33\x13\x18\xb7\xcf\x34\x67\xd9\x5a\xc4\xdd\x2c\xb8\x5a\x5b\x0e\xd1\xb2\xe9\x10\x6d\x3b\x31\x0c\x0c\x34\xb4\x11\x96\x5b\xce\x8a\xde\x48\x5a\xeb\x8b\xe5\x09\x07\xd7\xad\x7e\xe0\x82\xd4\xba\x49\x87\xfc\x8d\xa7\xf6\x51\x07\x7d\x7c\x66\xdf\xe4\x45\xc1\xbf\xd0\xd9\x5f\xe8\x7d\x05\xe9\xb8\x2c\xa1\xe8\xd1\xfa\xf8\x8a\x88\xd6\x7d\xcf\x63\xbc\xca\x06\xb8\xeb\x03\x9b\xa7\x55\x26\x69\x25\x53\x0a\x10\x74\x01\xc0\x6f\x04\x3a\x7d\x4f\x92\x24\xd9\xb0\x79\x2a\x21\x69\xcc\xd7\x8b\x79\x9a\xe4\xe5\x7d\x82\x7e\x20\xc7\x1e\x56\x5d\x7b\x7b\x1e\x9f\x8a\xef\x73\xbb\xe6\x42\xe3\xcc\xd2\x71\x3e\x16\x93\xc3\xe4\x2f\xf4\x3e\x99\x0c\x06\x47\x80\x12\xed\xaa\x52\xef\x50\x04\x6f\x36\xa5\xde\xed\x19\xad\xd7\x1a\x71\xdd\x79\x26\xeb\xc8\xd8\x26\xd0\xba\xc6\x59\x2f\xc2\x22\x5d\x5c\x75\xed\x88\x50\x97\x81\x85\xcb\x51\x53\x73\x23\xa4\x08\x33\xf2\x00\xa1\x07\xd4\x26\x42\x59\x81\xa7\xa6\x46\xde\xdb\xf3\x4e\xdf\xce\x03\xb6\x1c\x73\x6b\x9e\x18\xc5\x5e\x8f\x52\xa6\x13\x63\x96\x78\x95\x55\xb4\x9c\x8d\x76\xc2\x37\x6f\x06\x2b\xb0\x30\x58\x41\x57\x63\xac\x5a\x2b\x3c\x2e\x27\xde\xe7\x1e\x6d\x0c\xbe\xf6\x6f\xa9\x5f\xd5\x68\x6b\xa7\x68\x83\x7e\x7b\x95\x65\xa3\xbe\xdf\x5e\x9d\x9f\x73\x6b\xdc\xb3\x26\xc9\x83\x93\xd6\x2e\x9e\xb5\x83\xa1\xd1\x43\x9d\xb5\x0f\x29\x1b\xc7\x4c\x37\xa9\xda\xa2\xf1\x73\xc5\x43\x39\x6e\x8b\xdb\x34\x91\x3b\x36\x6e\xa7\x22\xa1\x03\x6d\x4d\x0c\x7b\xc0\x53\x12\x1e\x1f\x78\x66\x0d\x09\x2b\xfb\xc7\xc2\x8a\x0b\x53\x07\xca\x3b\x18\xa4\x33\x32\x35\xbe\x04\xe9\x42\xff\x79\x82\x50\x40\x81\x2b\xb2\x18\xa6\x8b\x66\x5c\xc8\x8a\xb8\xb0\x02\xe7\xb2\x3c\x9e\xc0\xee\xcd\xc9\xb7\xa7\xf9\xf7\xb6\x85\xd3\xfc\xf0\x10\xcd\xb3\x55\x5d\x2d\x52\xa8\x3b\x37\xe5\x97\x3a\xec\xa2\x86\xbc\xf0\x0d\x5f\xe5\x22\xa5\x78\x89\x57\x78\x8e\x6b\xd0\xf3\xb2\xd6\xec\x33\x1d\x31\x1f\x4d\xa4\x3b\xe3\x4b\xc0\x91\x32\x27\x33\x60\x5b\x39\xc1\xa0\xce\x5a\x2b\x04\xf0\xc4\x95\x4e\xcc\x06\x48\xa9\xa9\xc0\xc9\x2c\x97\xf9\x51\x93\x50\x92\x64\xa7\x82\x47\xc9\x61\x89\xcb\x56\x6f\xb7\x64\xfd\x6d\xbb\xd5\xed\x49\x3f\xeb\xeb\x75\x4a\x43\x01\xc2\x1b\xd7\x30\x0d\x0e\x7c\xda\x3e\xed\xdb\x67\xde\x23\xb9\x81\x3b\x41\xc0\xd3\x98\x64\xdc\x01\xc8\x7b\x14\x79\xb7\xe4\x33\x7a\xa4\xb1\x3f\x9e\xe5\xd7\x9a\xaf\xd7\x69\xde\x0b\x8e\x9a\x27\x08\xe1\x3c\x5b\x08\x3a\x27\xd4\xba\x4e\x4d\x79\xb1\x71\x75\x31\x3f\xcf\xe0\x03\x6c\x02\xdb\xda\x0e\xc7\x14\x00\xba\x79\xb6\xca\x45\x45\x53\x8a\x5c\x4d\x08\xdb\x23\x6f\x94\x0c\x93\xa1\x8c\xda\x33\xad\x63\x89\x77\x7b\x8e\x01\xbf\x0e\x06\x69\x4e\x0c\xb4\x01\xc5\xc9\x9c\xf3\xdb\x5c\x0c\x6f\xf3\x5f\xd5\x20\xec\x4f\x08\x86\x43\x1d\x6c\xa8\x12\x1c\x9e\xf7\xd9\x3c\x4d\x34\x52\xa0\xef\xfa\xc7\xcb\xb7\x88\x93\x8f\x97\x6f\x71\xe7\x2b\xe6\xdd\xa4\x45\xf6\xe6\xea\xe6\xfd\xc5\xab\xf3\x0e\x30\x49\xf2\x92\xd7\xc5\x0c\x20\x38\xe6\xac\x9c\xed\x43\xf4\x86\xaa\x75\x5f\x4d\x06\x2b\xef\xf6\x97\x74\xba\xc8\x4b\x56\x2d\xf7\xe7\x5c\xc0\x9b\xab\xbc\x64\x92\xfd\x0a\x87\x60\x82\xf6\xb8\xf5\xc7\x83\xcc\x74\x28\x4d\x14\x69\xa0\x48\x7f\x36\xd6\x29\xc9\x86\x09\x99\x3f\x62\xb4\xe6\x2d\x53\xbf\x83\xdb\xd7\x6f\x83\x7e\x8e\xd8\xa7\x74\x4e\xf0\x5d\x4a\x46\x6d\x91\x11\x4b\x74\xc7\xfb\xf7\x31\xcb\x57\xdf\xf6\x99\x79\x92\xbf\x77\x62\x11\x45\x7b\xf7\x26\xf0\x24\x95\xf8\x04\xf9\x1d\xb2\x52\x67\x0f\x8d\x69\x28\x09\x6d\x6a\x47\x09\xcd\x82\x3f\x0d\x34\xda\xd5\x94\xaf\x82\xc8\x8f\x96\x02\x32\x3c\xed\xee\x7d\x00\x0e\x50\xc1\x82\x30\x08\x89\xbc\xcd\xa7\x9f\x6e\x6b\x51\x52\x81\xe7\xed\x7a\xb7\x5c\xc2\xcc\xd5\x0b\xf2\x33\x9b\x7b\x57\x98\xa8\xdd\x5c\xbd\x5a\xd9\xda\x3d\xd0\x7f\xe3\x98\x5d\xb0\x62\x16\x4b\xbe\xaf\x71\x00\x6d\x33\x9d\x46\xa2\x4d\x74\x59\x6f\x6f\xaa\xcf\xa0\xaa\xe6\x47\x15\xed\x73\x9d\x8c\x0c\xd3\x48\x16\xcb\x47\x6f\xac\x3e\x8d\xf6\x82\x55\x3a\x6b\x1c\x9b\x11\x0d\x4f\xa8\xf3\x88\xbe\x99\x21\x38\x0b\x4d\x1c\x48\x38\x89\x76\x8e\x05\xad\x14\xf3\xb3\x39\x0f\xc0\x03\x75\xa1\x38\xc8\x25\x9d\x17\x75\xb5\xb0\x49\x66\x3d\xdc\x8a\x7b\x72\x23\xe8\x92\x7f\x66\xe5\x1d\x31\x59\x83\xcc\x9d\x86\xaf\xe0\x1a\x4e\x1e\xf2\xe2\x4b\x7e\x5f\x5d\x52\x1b\x40\x36\x3c\x38\xd9\xec\x99\x56\x15\x41\x75\x6f\x6c\xc2\xbc\x49\xf5\xf8\xb0\xed\xd8\xde\x8c\x3f\x80\x13\x0b\xfd\x2a\x53\xb4\xf9\xb2\x60\x05\x4d\x0f\x64\x36\xe3\x25\xb5\x09\xda\xdc\x58\xcc\x91\xba\x17\x6b\xc6\x99\x2a\x6d\xaa\xda\xb4\x46\x9b\x4d\x8c\x88\x58\xf5\x3a\x7e\xb6\xfa\x29\x24\x84\x3e\x2a\x3f\x36\xfc\xb0\x75\x07\x2d\xba\x0d\x2d\x3f\xef\xb5\xa7\xf6\xd8\x2f\x56\xb8\x24\xd0\x9c\x4f\xd3\x1b\x59\x34\x33\x54\xfb\x68\x30\x48\x53\x4a\x0e\x44\x13\xbd\x06\x0d\x06\x42\x23\xf2\xa4\x4a\xf0\x71\x90\x38\x98\xaa\x17\x1a\x07\x27\x45\x56\xb6\xbd\x27\xe3\xc9\xa9\xf5\x4e\xfe\x29\xaf\x20\x43\x72\xe3\x62\xe4\x14\x7e\x36\xaa\xcf\x84\xf1\xde\x91\xe3\xbd\x45\xc6\xcb\x34\x81\xc6\xba\x39\x49\x02\x85\xc0\x7d\xa8\x02\xb8\x57\xf7\xfd\x1b\x8b\x64\xe4\x29\x27\x55\xe2\xba\xae\x91\x96\xb3\xdd\xeb\x53\x47\xa5\xae\x93\x55\x3f\xab\xba\x52\x04\xd7\xdb\xbb\x1f\x4e\x8e\xcd\xc9\x79\x47\x8e\x31\x14\xf1\xb3\x11\x1c\xa6\xac\x84\x10\x22\xba\xaf\xe7\x57\x1d\x9f\xac\x34\xbd\x02\xe6\x0c\x99\x48\xe8\xcc\x27\xa6\xb9\x3b\x3c\xc4\x0b\x1d\x90\xa3\x01\xda\xd1\xe6\x8e\xd8\x89\xb9\x0d\x79\x6e\xef\xfe\xb6\x6e\x71\xed\x38\xf9\x1f\xbe\x1d\x0c\xbc\x87\xbd\x8b\x8b\xff\x76\x32\x0a\x7f\x0c\x79\x36\xcf\x8b\x42\xb1\x61\xb5\x62\x56\x13\x8f\xcb\x6e\x7d\xdf\x45\xeb\xfb\x6e\x32\x18\x84\xbf\x34\x91\xde\x28\x9a\xa4\x76\xe7\x07\xde\x11\x96\xab\xdc\x7c\x0e\x5a\xb3\x8a\xb1\x1b\x35\xab\xac\xa4\xb3\xd7\x5c\xbc\xba\x78\x67\xb5\x63\x37\x31\x6e\xc2\xb9\x41\x70\x82\x9f\x45\x5e\xc9\x4b\xfa\x99\x55\x8c\x97\xe4\xe8\xc4\x65\x3c\xbb\xb4\x0b\x71\x09\xe5\x9b\xcc\x88\xce\x2e\x4d\x2d\xb1\x2d\x9d\xaf\x56\xb4\x9c\x69\xde\xae\xa6\x26\xea\x8b\xa8\x01\x82\xaf\xf9\xea\x2d\xfd\x4c\x0b\x5d\x38\x1a\x5e\x89\xe0\x12\x22\xb9\x77\x6f\x33\xa9\x3b\x6f\x74\x3b\x61\x59\x2c\xb0\xec\xdc\x20\x74\xb1\x6b\xde\xdb\x8d\xba\x2f\xc9\x3f\x68\x5d\xb6\x34\xd5\x6a\xa8\x53\xaa\x7d\x03\x75\x7e\x6e\x70\x4d\x6b\xe7\x0a\x47\x26\x5d\x8f\x56\x17\xe1\x72\xbd\x9e\xb6\xe3\x24\x4a\x84\x73\x28\xb3\x4c\x2d\x89\xd0\xf2\x73\x84\x58\x30\xc3\x02\x73\xdb\x7b\xbd\xa9\x54\x73\x69\xde\xea\xb3\xe5\xcf\x1d\xb4\xb1\x38\x77\x68\x7d\xab\x6f\x83\xf1\x2c\xdb\xad\xd3\x71\xaf\x4b\xbc\xa0\x9f\x6e\xdd\xf6\xca\x68\xa5\x46\x25\x1d\xa9\xa2\xdb\xd0\xa4\xdd\x49\x45\xaf\x2d\xdc\xb5\x9b\x46\x32\xb8\xc4\xec\x12\x93\x78\x12\xbc\xcd\x0b\x9a\x97\xf5\x4a\x4d\xd9\x6b\xc5\xf2\x40\x63\xc5\x15\x83\x6e\xe4\x0d\xa7\x70\xcd\x41\xd1\x3d\x38\x18\xd0\x4c\x0a\x76\x77\x47\x45\x9a\x78\x04\xb8\x73\x9b\xfa\x19\xab\xb3\xef\x95\x6b\x79\xbd\x6e\xc0\xc1\x35\xe4\xac\x46\x67\xa2\xd9\xd6\x83\x9d\x8e\x6c\x92\x34\x77\x00\xea\x2d\x6f\x95\xa3\xfa\x97\xe5\xde\xe5\xd1\xd1\x29\x4a\x25\x11\xe3\x72\x82\xf4\x61\x9c\x52\xa4\xae\x75\x01\xa3\x16\x56\x04\x2e\xf1\x09\x7a\x5c\x97\xd3\xea\xd0\x7a\x9d\x76\x98\x91\x39\x4d\x6f\xd4\xd0\xc4\x59\x51\x00\x3b\x49\xdb\x75\xdf\x51\xf9\x82\xd7\xe5\xac\x8a\x5d\xff\xc7\x79\xf6\xe2\xe2\xe3\xfb\x57\x57\x13\x17\xcb\x9d\x0b\x5a\xba\x04\xdd\x32\x6b\xfc\x4e\x11\x9e\x33\x51\xc9\xf7\x7c\x46\x87\x32\x73\x7f\xa7\x08\x43\x48\xad\x7e\x6c\xff\x4c\xd1\xa6\xb5\x06\xe1\x0d\xba\x57\x5c\x51\xbb\x11\xd4\x97\x9a\x03\xae\xa8\x46\x14\xad\x52\xd4\xba\x82\xb7\xc5\xdd\x60\x8b\xf6\xa1\x44\xea\x75\xdb\x93\x5a\x17\x44\x11\xd6\x0a\x5c\x0b\x21\x10\x7e\x75\x6f\xcb\x6c\xb4\x12\x0d\xb7\xd9\x40\x15\x08\x2b\x6d\x6a\x0b\x8b\x45\x24\x2c\x5c\xea\xcb\x54\x83\xb4\x8c\x44\x0a\xcc\xa8\x20\xdd\x83\x02\x4f\xdb\xba\x34\x25\x69\x2a\x42\xad\x9d\x9c\xb4\x22\x0e\xa7\x66\xaa\x8e\x1b\x2d\x66\x34\x2c\x17\xa9\x24\x00\xf6\xea\x25\xb9\x51\xa1\x87\x2a\xd1\x10\x62\xfd\x1a\x32\x35\xa6\x3f\x90\xd5\x60\x70\x50\x2a\x0a\xb4\xe2\x72\xd6\x96\x96\x49\x89\x3b\x5f\x6a\xf8\x00\x51\x97\x6f\x1a\x62\x5d\x2a\xb1\x41\x3a\x06\xab\xc1\x74\xbd\x2e\x91\x65\x6c\x8d\x73\x54\x64\x2f\x3f\x5e\x5e\x9e\xeb\xd8\x1d\x17\x3f\x56\x3b\xd1\xcf\x48\xd6\xd3\xf5\xda\xc9\x08\x2b\x6d\xbd\x39\xb5\x98\x06\xa7\x88\x93\x42\x67\x0a\xc3\x39\xa9\xdc\x8d\x94\x23\x5c\xd9\xed\x98\xe3\x13\xb4\x07\xc6\x84\xce\xc6\x1e\x0c\x66\x4e\x81\xda\xb3\xb8\x21\xdc\x62\xb0\xce\x9e\xa5\xb4\x85\x00\xbb\xb3\xbb\xc2\xc1\xb1\x49\xb7\x7d\x70\x02\xa8\x8f\x1d\x72\x53\xa2\x2f\x39\x38\x76\x80\x8f\xd4\xf1\x84\x1d\xa6\xed\xc0\x8f\x50\x6d\xaf\x86\xa4\x6d\x53\x13\xab\x17\x4e\xae\xee\x97\x61\x36\xad\x5d\xdd\xe4\x3f\xbd\xf7\x09\xb3\xf5\x02\xeb\x5a\xdb\x9e\x16\xc2\x5e\x76\xa8\xdf\x5d\xe0\x3b\x12\xd8\x23\x8b\xd5\x3d\x82\xc3\x2e\x2e\x1c\x14\xe9\x85\x92\x1f\x2c\x65\x86\xd9\xcc\x85\xfb\xb0\x5d\xb5\x91\xd3\xfb\xac\x97\x21\xf7\x8e\x13\xd8\x7a\xdd\x59\x2d\x2d\x24\x74\xd7\xb5\x4b\x83\xb1\xe1\xd8\x45\x33\xf7\x07\x93\x91\x6f\x1b\xd3\xd2\x9a\xd7\xa6\xae\x25\x1a\xb6\x27\xd2\x00\x9b\x76\x97\x88\xbd\x28\x2a\x26\x8a\x87\xce\x09\x4c\xd5\x09\xb9\x0b\x90\x3d\x80\x44\xd0\xac\x21\xa8\xd1\xa6\x40\xa3\x8d\x25\xa2\x65\x6c\x6e\x1f\x3b\x6a\xb6\x5a\xea\xc8\xb3\xe9\x94\x56\xa0\x77\xfc\xaf\xd0\xb6\xfe\x5f\x0e\x27\x58\x5b\x30\x21\x71\x2a\x2f\x8f\x98\xd7\x5b\xed\x07\x3a\xd7\x6a\x3f\xad\xea\xe9\x62\x3f\xaf\xf6\x5f\xe7\x95\x7c\xc1\xb9\x44\x59\xa2\x7a\xb4\x49\x6f\x95\xc8\x12\xd3\x77\xfd\xbf\x3f\xe7\xc7\x3b\xcc\x39\x0d\xc6\xe3\x44\x4e\x2f\x09\xda\x39\x8a\xe9\x64\xdb\x2e\xff\xfd\x9a\xd9\x29\x2f\x65\xce\xca\x20\xb0\x60\x5b\x88\xc2\x0e\xaa\xd7\xdd\x62\x33\x1e\x0d\xa8\xd8\x31\x30\x63\x4b\x8c\x47\x2c\xae\x61\xdb\xd8\x1e\x8d\xb0\xd8\x96\xe9\xc9\x97\xe9\x51\x38\x3f\x12\xf3\x02\x9a\xee\xbe\x6f\xc3\x38\xd0\xa7\x84\x59\x74\xdc\x92\xfa\x9c\xf9\x5a\x97\x15\x56\xfe\x4d\xa7\x84\x4c\x93\x8a\x8a\xcf\x6c\x4a\x87\xb6\x2f\x2d\xea\xc8\x5b\x62\x27\xe4\x93\x34\x5f\xcc\xf8\xf2\x48\x0a\x4a\x21\x9e\xd3\x39\xce\xc1\x2d\xc4\xd7\x1f\x4e\x7a\xf9\x39\xfc\x3c\xd6\xa0\xfa\xd8\x5e\xd7\x74\xd6\xe2\x95\x60\x9f\x73\xc9\x7e\xa5\x28\xbd\x43\xd8\xe5\x16\xe9\x6f\x45\x34\xc2\x3f\xba\x75\x34\x9a\x70\x1f\xc2\x68\x12\x3c\x8b\x71\xa3\xbe\x2f\xd4\xa6\x92\xfa\x9b\xe0\xbc\x40\xb8\x8c\x9a\x9c\x9e\x32\xeb\xda\x42\xd9\x3f\xeb\x53\xe3\x7b\xd9\xec\x59\xb4\x08\x7e\xd0\x2c\x2d\xea\xa0\x65\xad\x79\x0d\x5b\x6f\xe0\xa9\x99\x4a\x1d\x1f\xd6\xd7\x48\x77\xf5\x9f\xda\x5c\x1a\x9b\xac\x51\x11\x73\xab\x1c\x16\x7d\xce\x9d\x48\xf7\x53\xc9\x04\x11\xf7\xd9\x16\xed\xfb\xa1\xa8\x2d\x39\x3c\xb2\x5b\x72\x19\x92\x96\x2f\xe4\x12\x1a\xb8\x82\x8b\x1e\x1a\x6c\x56\x17\x44\x0b\x75\xeb\x68\x7d\x19\x5f\xb8\xc4\x4e\x57\x73\xf5\xcd\xb3\x6d\x55\x44\x96\xe5\xf1\xca\x7a\xb7\xdd\x2d\xc2\xab\xf8\xdc\x6c\xa7\xe2\x69\xcf\x3c\x85\xd1\x7f\xbb\x71\x04\x73\xcf\x7a\xcd\xc5\xf5\xfd\x8a\xa6\x3e\x60\x06\xfc\x0e\x4a\xc9\x8c\x85\xa2\xd9\x3b\x93\x68\x02\x62\xeb\xef\xe3\x03\xf0\x39\xde\x42\x34\x60\x5c\xef\x56\x5a\x1f\x5d\xd5\xa3\x85\xfd\x71\xc9\x1f\x2b\xeb\x4e\xcd\x3c\x5a\xb2\xbd\x34\x9f\x11\x76\x01\x61\x06\x66\xe2\x4e\x47\xfb\x4b\xf0\xba\xb1\x7c\xf0\x2d\x24\x58\x28\xde\x72\x5e\x51\x94\x8e\x03\x82\x84\xb3\x6a\x82\xbb\x8f\x10\xbe\x7d\x52\x4d\xc1\x91\x7d\x64\x7a\xd4\xac\x37\x5a\x00\xe1\xcf\xbb\xb4\x12\x4c\x66\x58\x77\xec\x71\x5c\x5a\x32\xd1\x8e\xbb\x06\xe6\xea\xf2\xdf\x84\xcb\x1c\x2f\x61\xf3\x54\xf5\xcb\x0d\xa6\xa0\x49\x00\x1c\x7f\xb9\xe4\x75\xff\x97\x3d\x22\x83\x79\x6b\x6f\x68\xf1\xb7\xdb\xc2\xd4\x6f\x4d\x0a\xe2\x47\x04\x8e\x3e\xdb\xf6\xb4\xad\x80\x6e\xc1\xbf\x7a\x8f\xc2\xa3\x04\xfd\x70\x74\x02\xf8\x3e\xc0\xec\xfb\xd0\xe4\x28\x2e\x75\xca\x36\x4b\x32\xef\xa8\xcc\x11\xc2\x07\x07\x6c\x30\x50\xa4\x5f\x64\x5f\x44\xbe\x6a\x62\x22\x3a\xf7\x1f\x94\xc2\xc9\xeb\x16\x22\xab\x64\x2e\xd9\x34\x65\x78\x2c\x31\xe4\xc5\x5a\xe4\xd5\xe2\x9a\x9f\x89\xbb\x4a\x97\x05\x8d\x78\x5d\x14\x13\x04\xd2\x7a\x68\xb5\x0f\x1d\xbf\xd9\x3c\x05\xc7\xc6\xe6\x88\xbc\x5f\xa3\x76\x38\xe1\xdd\xae\xe3\x6a\x87\x39\xa9\x08\xdf\x3e\x27\x7a\x06\xaa\x5d\x67\x80\x77\x67\xa0\xea\x9d\x01\xcc\xcc\xd8\x69\xc4\xef\xdf\x7b\x12\x34\x43\x0f\x1a\xc7\xe9\xca\xa9\x05\xd5\x7d\xbc\x91\x78\x2c\x62\x1b\xa9\x75\x0a\x90\x2c\x9f\xcd\xd2\xc4\xd2\x75\x6e\xac\xe8\xf0\x15\xc2\xe6\x6d\xb0\xa1\x4a\x03\xcb\x13\xc4\x18\x84\x25\xed\x0e\xb0\x86\xd4\xe6\x5b\xb3\xb5\x78\x06\x7f\x34\xdf\x99\x3d\xc9\x32\xf8\xa3\xf9\xce\xa7\x5d\x17\x99\x34\x71\xaf\x61\x89\x77\x0c\x6e\xc6\xe9\x54\xf1\xe7\x6e\x8f\x21\xe3\x5a\xbb\xc3\x34\xfc\x70\x86\x70\x4d\x8e\x4f\xeb\xef\x2d\x34\xe9\x69\x7d\x78\x88\xd2\x63\xbc\x1a\xd7\x13\x14\xa2\x85\x3e\xe8\xf4\x6d\x43\x8a\x4d\xfa\xb6\xa1\x34\xde\x3b\x2b\x12\x5d\xb8\xf1\xa4\x9f\x07\x36\x78\xda\x63\xf8\x0c\x8e\x45\x6c\x65\x2f\x8f\x82\x16\x34\xe6\xaf\x01\xd2\x10\x22\x1f\x6d\xdd\x07\x49\xd8\xed\xc8\x5e\x0b\x90\x82\xe4\xf6\x3d\xc2\xa2\x7b\x24\xc7\xe3\x52\xdf\x15\xc2\x3d\xc2\xda\x5c\x22\x0a\x96\xd0\x7f\x14\xec\x04\x3e\xb9\xf5\x04\xda\x31\x7d\x4c\xe8\x64\xa7\x97\x40\x03\x2d\x52\x8b\x21\xba\x35\x4f\x04\xd7\xb9\xf2\x2e\xe9\x7c\xc8\x30\x2d\x3f\x0f\x4b\xac\x26\x78\x28\x34\x3c\xbb\xc9\x46\x4e\x33\x33\xc2\x26\x59\xb7\x0d\x92\xdc\x3b\xb7\x8c\xa9\xc1\x26\x3e\xc6\x27\xc1\x4c\xea\xe9\xc4\xb5\x7f\x7f\x02\xb6\xb0\xb2\x31\xf7\x32\x9c\x7b\x8f\x71\xe5\x57\xce\xf4\x26\xad\x30\xc3\x35\x2c\x0e\xa6\xb1\x7d\xf7\x07\x76\x50\x60\xbe\x7b\xd7\x62\x4c\xac\xd3\x37\xbb\x19\xc6\x72\x5b\xcf\x2a\xff\x3e\xd6\x33\x11\x9b\x3a\x1e\xe9\x5f\x8e\x19\xae\xa0\x7f\x6d\x84\xb2\x76\x9e\x9c\x10\x8a\xe6\x92\xce\xb5\x43\x6f\xf9\x19\xec\xe8\x80\x4d\xcb\x0c\xa2\xb5\xd6\x55\xcb\xfc\x8e\x80\x4c\xe7\x23\x6a\x2e\xe9\xdc\xba\x1b\xd0\xf2\xb3\x75\x32\x30\x48\xbd\xd2\x02\xe1\x12\x16\xb3\xfe\x83\xda\xbe\x27\x48\x44\xf5\x42\x90\xb0\x19\x6b\x95\x34\xfd\x12\xad\x28\x94\x8e\xc7\x29\x1b\xf5\x25\xb2\x4c\x19\x2e\x03\x70\xf7\x08\xae\x2d\x43\x23\xa6\x37\x48\xbf\xab\x19\x7a\xd0\x8a\xe5\x2d\xbc\xc3\x9c\x44\x4f\xc3\x8d\x79\x8c\x3b\xef\x2c\x9b\xf6\x31\x99\xad\x58\x45\xa1\xf0\xc7\x9f\x23\xd8\x39\x0e\xd4\xe5\xc6\xdc\x48\x2c\x6c\xbb\xcc\xb6\xa1\xc1\xc9\xdd\xdc\x4a\xde\xc5\xae\x9b\x52\x03\x4f\xc9\xd1\x09\x64\x38\x84\x54\x17\x6c\x7c\x3c\xc1\x05\x61\xe3\x93\x09\x84\xed\x38\x19\x0d\xf2\xd6\x20\x1c\x3c\x31\x99\x02\x10\x96\xeb\x75\x2a\xc9\x78\x82\xf0\xf4\x87\xa3\x13\x1d\x76\x43\x8a\xf1\x74\x82\x21\x98\x2a\x63\x95\x0e\xaa\xaa\x82\xf8\x9b\x32\xce\x3f\x51\xaa\x7a\xeb\x77\x78\x0e\x00\x5a\x8d\x8c\x36\x15\x0a\x60\xf0\x1e\x3d\xdc\xd2\x20\xcb\x8d\x99\x09\xbb\xa7\x78\xda\xc8\x7a\x63\xdf\x6e\x21\x4c\x23\x3e\xed\x4a\x98\x11\xa7\xdb\xad\x77\x9b\xff\xd9\xe3\x0d\x0e\x35\x2f\x17\x3e\x9f\x19\xc3\xaf\x7f\x04\x36\xfc\x1b\xb8\xef\x4d\x1b\x0b\xdd\x3f\x7d\x45\xe7\xd6\x3b\xfc\x19\xcc\x59\x36\x98\xf3\x63\xcc\x58\x8e\x5a\xbd\x21\x24\x7c\xf4\x8a\xce\x87\x26\x25\x79\x37\xc7\x2a\x05\xb5\xdf\x30\x39\x94\x68\x94\xb6\xaa\x91\xad\xf1\x68\x38\xed\x77\x6a\xf1\xc3\x1c\xf2\xa8\x59\xcc\xe4\x15\x33\x0c\x7e\x3b\x0f\xb7\xf7\x99\x1d\xb3\x0d\x3d\xee\xd1\xfe\x84\x20\x8d\x70\x4b\xcc\x02\xaf\xed\x14\x35\x9c\xa4\x79\xeb\x42\xca\xc9\x31\x21\x4d\xa4\x7d\x7d\x17\x19\x69\x58\x44\xd0\xb1\x7a\x77\xb2\x64\x99\xb3\x32\x41\xc3\x2e\x34\x3f\xf8\x5d\xb2\x94\xe3\x52\x6d\xa9\xe0\x3e\x17\x09\x98\x72\xbc\xd3\x10\xfb\xd6\xdd\xe5\x03\x93\xbb\xdb\x86\xe3\x12\x8f\xc7\x93\xf6\x27\x7e\x23\xb1\x5e\x3f\x4d\xeb\xb2\xae\x7b\xfa\xde\x6c\x10\x6a\x91\x7a\x05\x2d\x43\x3f\x72\xf5\x4e\x58\x57\x6a\xe7\x88\xe7\x7d\x7a\x15\xb1\x68\x1f\x70\x08\x6c\xd1\x0b\xd1\xf6\x0f\xbf\x86\x4d\x19\x87\x65\x95\xf9\x1d\xf2\x5b\x17\xe4\x8d\x10\x90\x15\xd0\x46\x31\xc0\x8c\x4e\xa2\xc1\xc3\xdb\xb6\x60\x63\x88\x76\x33\xc6\x86\x68\xc5\x26\x3f\x44\x8b\x39\xed\xc6\x87\xb9\x4f\xdf\x83\x73\x62\x02\x6d\x75\x0b\x55\xa2\x33\x52\x73\x64\x1d\x79\xfc\xb4\x38\xb8\xd6\xbd\xc8\xac\x34\xc1\x54\x73\x0d\xa6\xda\xf6\x73\xf4\xae\x04\xeb\xb5\x18\x1d\xc8\xc1\x40\xac\xd7\x72\x30\x38\x10\x23\xd8\xa1\xd6\xfb\xdc\x89\x18\xe0\xc8\xd4\x7a\x36\x18\xb8\x62\x53\x5e\x4a\xc1\x8b\x82\x8a\xb0\xa0\x7f\x3a\xd2\xa1\xa0\x43\xba\x01\x7f\xf6\x0a\x19\x2f\x79\x48\x4c\xd2\xaa\xd6\x9d\x35\xd6\x03\x25\x20\x92\x7a\xa4\x19\x4d\xbf\x33\x2a\xc7\x9d\x0a\x35\xd7\x41\x8f\x72\x1c\xab\xf9\x78\x56\x7e\xb3\x6d\x71\x32\x3b\xe8\x14\x9f\x2a\x2d\xba\xbc\x58\xfa\xc0\xe2\x91\xfc\x1e\x38\x27\xdc\x51\x57\x45\x98\x61\xf3\x3a\xe1\x71\x1a\x66\x96\xce\x91\x93\xea\x1c\x8a\xa8\x4d\xb8\xa5\x83\xc1\xfd\x4a\x26\x68\x64\xdf\x00\xb5\x86\x6f\x5c\x68\x78\x0e\x9e\x6f\x3b\x33\x42\x00\x1c\x36\xde\xe0\x8d\x74\x18\xea\xc2\x57\x66\x57\x6f\xde\xff\xf8\xf6\xfc\xfa\xe2\xfd\xcd\xe5\xf9\xfb\x57\xe7\x97\x37\xef\xce\xde\x9f\xfd\x78\x7e\x69\x60\xe0\x9f\x5a\xdd\xfb\x8b\xf7\x37\xfd\x55\x6e\x68\xa8\xf7\x8a\xb8\x07\x37\xf9\x6d\x28\xcd\xa8\x0b\xec\xb6\x5b\xe5\x16\xf1\x3b\x26\xbc\x7b\x71\x86\x1b\x71\x66\x0b\xed\x1a\xcd\xf4\x8e\x20\xe6\xbe\x1f\x6d\x57\x55\x13\x13\x48\x1b\xe9\x45\xf4\xdf\x63\x3a\x3e\x9e\xf4\xa4\x32\x4b\xfe\x6f\x72\x48\x55\xf7\xc6\x27\x93\x49\xb4\x9f\xde\x4a\xb5\x93\x16\x67\x47\x55\xd8\x2f\x22\x5f\xad\xbc\x9d\xc3\xe6\x8a\xdd\x92\xae\xc7\x7a\x95\x6b\x2b\x49\xf3\x3b\xe4\x21\xb2\x4d\xfa\x19\x61\xac\x40\x4a\x10\xe8\x69\xab\x57\xb8\x04\xde\x65\x32\xb5\xbb\x5c\xb8\x33\x42\x33\x36\x0b\xc4\x45\x2d\x68\xee\x14\x22\xed\xfd\x6a\x45\x76\xf1\xcb\xfb\xf3\xcb\x49\x03\x4e\xdb\x34\xe5\xd0\xbe\x81\x31\x3c\xc0\xa6\x1f\xca\xcd\x16\xf6\x17\x01\xc4\xdc\x91\x8e\x42\x04\xa7\x46\x47\xa5\xf6\x1a\xbf\x8b\xbe\xf7\x87\x4f\xab\x4c\x9b\x18\xc1\x7e\x7d\xf1\xa5\xf4\x08\x39\x0e\x05\x59\x42\x22\x77\x1a\xc2\x5f\xc5\x53\xef\x75\x6a\x30\x56\xed\xc8\x57\xe1\xb1\x38\xa6\x13\x22\x36\x06\x32\xf8\x61\x2b\x45\x3f\x92\x6f\xad\xb3\x01\x1e\xc9\x07\xd3\x00\x19\x77\x39\xda\x1f\xd8\x6c\x98\x5c\x7e\xfd\xa9\x7a\xf1\x97\x2f\xf7\x09\x06\xbd\xdc\xf0\x4f\x0f\x89\x86\x68\xae\x92\xe1\x38\x19\x78\x53\x5e\xa2\x2e\xfe\xe0\xf6\xa4\xde\x8c\x4f\x4e\xf0\xc9\x64\x02\xf8\x62\xe7\x9f\xf3\x22\x19\xce\xf3\xa2\xa2\x9b\x3f\xe9\x7b\xdb\x83\x0e\x62\x56\x22\xcd\x30\x59\xe5\xd3\x4f\xf9\x1d\xad\xbe\x69\x76\xbe\x60\xb7\xb1\xf1\x66\x8b\xdb\x2a\xe9\xc1\x1a\xf2\xc5\xe9\x72\x25\xb7\xa2\x17\xff\x0e\x53\xf3\x2f\x7f\x5b\x7d\xcb\x2f\x0e\x79\x74\x6a\xda\x13\xf2\x3b\x4e\x05\x8c\x6d\xb7\x69\x70\xb6\xe8\x3f\x74\x22\x7e\xfe\xcf\xf2\xbb\xfa\xea\xc3\xdb\xa7\xd2\xc8\x3f\xe3\x84\xcd\x13\x3c\x1e\x7f\x7b\x8c\xc7\x89\xea\xeb\x35\x93\x05\x4d\x26\x13\x73\x23\x78\x68\x13\x15\x1e\x9f\xfc\x6f\x1c\x96\xc4\x30\x97\x8a\xd0\x56\x2e\x2b\x9e\x9a\xed\x4d\xf7\x5b\x43\x90\xad\x72\xbf\x27\x8d\x9a\xd9\xde\x6d\x69\x62\x77\xcd\xdf\x7d\x65\xbe\xf9\xb3\xf8\xfb\xf4\xdf\xff\xf7\xbf\xec\x44\xa2\x76\x7a\xfd\xdd\xd5\xce\xed\xef\x35\x41\xba\xe6\xdd\xe6\x47\x7b\xe0\xfd\xa1\xb3\x73\x36\x7b\x53\x7d\xfa\x66\xba\xdc\x79\x76\xbe\xfd\x17\x1c\xda\x08\xc7\xe3\x93\xff\x83\x8f\xf1\xd8\xd2\xeb\x1f\x30\x63\x6a\x16\xb6\xcd\x57\x5b\x8d\xfc\xdc\x24\x59\x5f\x98\xa0\x47\x73\x2e\x96\xb9\xdc\x29\xe8\xbf\x2f\xfd\x5a\xbf\xa2\x7a\x6b\x9e\xf4\xd0\x5f\xa1\xef\x0a\x52\x34\x62\xb7\xe9\xb8\xca\x2e\x2f\x2e\xae\x6f\x2e\xcf\x5f\x4f\xe0\x5a\x20\x03\xfb\xff\x34\x2c\x9b\xe4\x52\x8a\x2a\x51\xb7\xc4\xf1\xf1\x04\x82\x98\x00\xca\x2d\x6d\x06\xcb\xa0\x11\xb4\x30\x3e\x9e\x18\xd8\x9b\x68\x26\xa8\xb0\x59\x2c\x75\x06\xc7\xbc\xaa\xd4\x92\xbe\xd0\xab\x40\x68\xf6\xa6\xfa\x99\x81\x5f\xb3\x7f\xe4\x34\xbc\xf6\x91\x93\x17\xb7\x68\x83\x3b\x41\x5d\x4e\x46\xa6\x7b\x26\x96\x4b\xcf\x1b\x51\x72\x32\xae\x88\x92\x85\x71\x0d\xd9\xb8\x8c\xbe\x5b\xa7\x28\xb7\x22\xe6\xd1\xc9\x01\x21\xf5\x60\x90\x42\xcc\x4c\x3d\x51\x83\x3d\x20\xa4\xcc\x2e\x56\x55\xf6\x23\x95\x83\x81\x74\x3f\xdf\xe5\xf7\xb7\xf4\x2d\x9f\xe6\xc5\x7a\x9d\x72\x92\x32\x92\x0a\xf8\x08\x8d\x85\x4f\x2a\x8e\xc6\x2c\xc8\x30\xae\xda\x1f\xd7\x13\x32\xd6\x55\x68\xe8\x3b\x3c\x4e\x4c\xa6\xf4\x09\x1e\x0b\xcc\x27\x13\x84\x30\xc8\x6a\x9d\x49\x79\x00\xc8\x90\xae\xe3\xa1\xa2\x90\xd0\x7b\x63\x18\x8c\x88\x10\x52\x8e\xc6\x14\x53\x7c\x70\x3c\x19\xa6\x92\xd0\xac\xaa\x6f\x35\xa1\xa5\xc7\xb8\x44\xa0\x62\xf5\x8f\xca\xc3\x13\x84\xc7\xaa\xca\x83\x93\x09\xda\x60\x03\x7c\xd3\x49\xdd\x6b\x6e\xbb\x38\x27\x42\x4f\xae\x18\x9f\x4c\xf6\xc4\xf8\xdb\x09\x68\xf7\xd9\x2c\xd4\xeb\xef\xbb\x48\xde\x94\xb9\x30\x47\x94\x4a\x9c\x23\xe4\x92\x71\xb1\xf5\x3a\x65\x44\x5a\x27\xfc\x37\x33\x84\xe1\xb3\x32\xcb\x67\xb3\x2b\xb0\x9b\x78\x28\x1c\x8a\x55\x13\x98\x59\xb5\x45\xb0\xa6\x19\x78\x9e\xe0\x19\xa9\x47\x53\xd5\x44\x23\x21\x57\x01\x8d\xee\x25\x95\xbc\x2f\x28\x74\x11\xc0\x88\xd4\xdd\x62\x95\xce\xb0\x7a\x9d\x30\x4b\x9f\x09\x42\x08\x43\xf3\x06\x28\x22\x6c\xbf\xc2\x33\x88\x3b\xd0\x22\x29\x60\x1b\xd4\x0e\x4d\x19\xa5\xc9\x8c\x55\xab\x22\xbf\x1f\xee\x97\xbc\xa4\xa7\x00\x80\x16\xf5\xf9\x87\xf4\x48\xcf\x4f\x24\xea\xd5\xee\xa0\x65\x82\xa4\xa0\x6e\x00\x90\x1a\xb4\x37\x05\x12\xd3\xfa\xb6\x47\x72\x82\xee\x9e\xc9\x4d\xab\xb9\x5a\xc9\xf3\xd5\x96\xd2\x6f\x6d\xa7\x82\xcc\x46\x72\x94\x52\x22\x0f\x93\xfd\xd6\x64\x69\x67\x1e\x0f\x21\xad\xf3\xd2\x35\x27\x98\xa2\x21\x45\xc3\x19\xe4\x22\x12\x9d\x5c\x44\x7b\x11\x36\xf3\x10\xa5\xe5\x12\x50\xbd\xa2\x4b\x6c\xa8\x44\xbb\x4d\x2c\xf3\x15\x4a\xdb\xf4\x61\xae\x8d\xf9\xea\x4a\x95\xd4\x09\x2f\x75\x34\x4a\xe3\xd9\xb0\x7b\x11\x02\xc0\x37\x3a\x9a\x69\xd5\xbb\xda\xee\x1d\x4e\x19\xef\x6f\xb0\xf7\xcc\x91\x40\x84\x25\xf1\xa1\x86\xdf\x53\x1b\x72\x45\x6a\xc5\xed\x96\xa4\x56\x5b\x32\x51\xa4\x3e\x1b\xf5\x6d\x25\xcd\x7f\xf0\x0a\x0d\x35\x2b\x9b\xb5\x77\x13\x1a\xcd\x82\x6d\xa4\x8e\xff\x9c\x30\xd8\x5e\x5c\xef\xa9\x19\x72\xce\x60\xee\x0f\x42\xc8\x0a\xd4\x4b\x8b\x34\xc7\x6c\xc4\xc7\xdc\xf3\xc2\xe1\x4c\xab\x8a\xe6\x69\x8e\x57\x78\xd9\xbf\xcd\x6c\xdf\x2a\x35\xad\x76\xb7\x2d\xfa\xc2\x67\x44\x23\x2d\xca\x33\xb7\x12\x33\x5b\x49\x60\x06\x49\xed\x48\xa9\xb7\x0a\x11\x66\xdb\x44\x5e\xcf\xf2\x4a\xed\x9b\x5f\xe9\xcc\x67\x87\x64\x5b\xe3\x70\x7e\xe3\xbe\x82\x00\x33\xd8\x3e\x0b\x93\x7b\xcf\xe8\xef\x1b\x1d\x71\x0a\xdb\x66\xf7\x72\x9b\x0e\xcb\x3d\x57\x17\x79\x34\x94\x26\x70\x6d\xa4\x5f\xa7\x12\x19\xcb\x90\x88\xed\xb1\x46\x16\xfe\xe6\x32\x58\x63\x4d\x07\xd5\xe1\x24\x8a\xea\x70\x12\xa2\x44\x9c\x4c\x86\x7a\xfa\x9e\x8b\x31\x01\x5f\xff\x1e\xbc\x54\x28\xee\xa9\xd3\xc1\x29\xb6\xaa\xd3\xc1\x59\x96\xaa\x89\xa1\x87\x77\xee\xbc\xc6\xc1\x0a\xdb\xe5\xd6\x2d\x5a\x97\x8f\x46\x92\xb6\x90\x77\x8a\x9e\x55\xe9\x97\x83\x21\x1f\xbc\x77\x96\x38\x02\x01\xfe\xe8\xb6\x9e\x7e\x6a\xde\xb4\xb6\x28\x98\xdc\x1a\xcb\x14\x3d\x6c\x5a\x29\xe0\x63\x50\x40\x16\xb4\xd6\xfb\xbb\x5b\xc5\x9b\xeb\x87\x43\xae\xd5\xc9\xad\xf5\xa8\x59\x99\x17\xec\x57\x38\xcf\x0c\xb6\x40\x5e\x55\x97\x74\x1e\x18\xa5\x22\x8f\x54\x15\x41\x60\xac\xcc\xef\x1c\x22\x6a\x44\x9d\xd7\x87\x88\x43\x9a\xfd\xb3\xeb\x12\x8c\x61\x4f\x66\xac\x0a\xe2\x68\x06\x83\x34\xc0\x2d\xf8\xc2\x8a\x22\x02\x5c\xd0\x78\xff\xb2\xa0\xb9\xb8\x34\x61\xd1\x01\xde\x0d\x9d\x39\x61\xb7\x6a\x78\x9e\xba\x5e\xdb\xa9\x09\xbb\x9d\x1e\xb7\xa6\x0d\xd9\xa4\x9c\x7e\x22\x65\x07\x76\x4f\xf4\x93\x0a\x5c\x6e\x14\x81\x4c\x3f\x3d\x39\x0f\x67\x3f\xcc\x9a\xae\x1b\x3c\xdf\xd5\xe9\xf9\x3c\xb0\xb5\xed\x37\xad\xb8\x3f\x78\x27\x33\xf4\x73\xd2\x9a\x59\x14\xe6\xf8\x86\xa8\x1b\xf7\x2f\xc7\x3f\x37\xe1\x05\x0d\x3d\x54\x5f\x98\x9c\x2e\x52\x8b\x04\x88\x1e\xa6\x79\x45\xad\x8b\xc0\x10\x7e\x98\x8c\xb1\xc3\x66\x4d\x14\xed\x99\xf9\x1d\x86\x01\x95\x35\x9b\xbd\xe6\x02\x22\x29\x1f\xc9\x7e\x96\x1e\xe3\xdc\x65\xb6\x56\x1f\x8c\xf4\xf1\x4b\x1b\x4b\x6a\xfa\x67\x3b\xf6\x7f\x75\x9a\x2c\xe8\x98\x91\xe1\xf5\xdf\xda\x24\x69\x0c\x53\x7b\xa6\xec\x8c\x96\x92\xc9\x7b\xd7\xf5\xa2\xd5\xe5\x7d\xd7\x52\xd8\xab\xd2\xde\x05\xd4\x18\x36\xa9\x34\x36\xa4\xe5\x6e\x3d\xeb\xed\xc3\xd6\x2e\x3f\xb7\x67\x5a\xfa\xe8\xc3\x55\x85\xd9\x36\x7c\x48\xe4\xce\xc2\x60\x02\xd9\xa9\x05\x6a\x80\x87\x9f\xe8\xfd\x6b\x2e\x2c\xeb\xb3\x56\x39\x1b\xed\x5e\x51\xda\xce\x21\xae\x0d\xa6\x51\x2c\xb0\xf3\xe5\x4a\xde\x77\x95\xf9\x07\x27\x1d\x97\xbd\x77\x74\xc9\xfb\x20\x39\x9b\x25\x7f\x6e\x1a\xdc\x5b\x90\x1d\x30\x3e\xa3\xef\xf7\x9f\x95\xf4\x6b\x1f\xd0\xb5\x1d\x3a\x09\x06\x6f\x4f\x38\x3b\x78\x6b\x9e\x57\x83\x57\x77\x48\xf1\x43\xcb\xe8\xa5\xe5\x3a\x28\x63\x7b\x08\x01\x01\xee\x91\x1a\x9e\x7a\x92\x47\x51\x8b\xe8\x58\x3a\xf3\x8c\xf8\xe1\x78\x94\xaa\x07\x87\x87\x58\x1e\x26\xb7\xf4\xdb\x3f\xff\xf9\xcf\xff\xf2\xe7\xa3\xdb\xdb\x5b\x7a\xf4\xcf\xff\xfa\xed\xf1\xd1\xff\x99\x4f\x6f\x8f\xbe\x3d\xf9\x8e\xce\xff\xf9\xbb\xef\xa6\xd3\xfc\xdb\xe4\x50\xa0\x21\x7c\x43\x4e\xb0\x44\x9b\xb4\xc4\x12\x92\x8e\xa3\x86\xcd\xc7\x8e\xe6\xf0\x10\x3f\x7c\xa2\xf7\xc3\x1c\xc3\x09\x34\x64\x78\x49\x97\x7c\xc8\x37\x06\xc0\x6c\xd6\x2f\xc2\x3e\xfb\x36\x08\xee\x27\x81\x14\x63\x28\xcf\x93\xb2\xc0\x89\x7e\x96\xf4\xde\xfa\x3a\x92\xcb\x16\x62\x00\x0b\xaa\xc6\x08\x3d\xb3\x29\xa2\x81\x34\xb0\x89\xec\x9e\xf6\xde\x7a\x41\x54\xff\x0d\x23\x2d\x9b\x23\xfd\x44\xef\x95\xec\xf0\x84\x31\xf5\x6d\x05\x4b\xa0\x15\x90\xb7\x1e\xc3\x82\x94\xf4\x4b\x1a\xdf\xf4\x71\x30\xe5\xfe\x4d\x79\xbc\x7d\xcf\x74\x11\x53\xf3\xb2\xe4\x72\x5f\x8d\x7c\x5f\x23\x0c\xee\xf3\x72\x3f\x2f\xf7\xc1\xce\xb1\x0f\x87\xa9\xe4\x22\x31\xd6\xc4\x86\x50\xde\xc3\x9d\x84\xf7\x04\xb2\x6c\x28\x74\xe9\x01\x7a\xdd\x3d\x55\x7d\xe8\xd5\x13\xea\x18\xc0\x9b\x07\x97\x71\x7f\x1e\xdd\xed\xd8\x95\xc7\x72\x05\x41\xe7\xd6\x3b\xc7\xb0\x0b\xde\xec\x1e\xce\x03\xc7\xe7\x56\x2e\x74\xa0\x78\x99\xdf\xc1\xd9\x98\x23\xe3\x41\xce\xaa\x0f\x82\x7f\xbd\x57\x4f\x00\x1f\xd7\xef\x8b\x5c\x83\x08\x80\xa4\x86\x4c\xce\x7e\x9b\x02\x7e\x2f\x60\x41\x84\x90\x7c\xbd\xb6\xb0\xb8\x07\xa0\x3d\x0a\xb1\xd2\x49\x35\x5a\x0c\x53\x6a\x59\xb7\x22\xa3\x14\x90\x22\x69\x8f\x95\x7e\x3f\x57\x64\xa6\xa4\x43\x8b\x52\x38\xd2\xaa\x28\x70\xf1\x45\xc3\x45\x4b\xf8\x83\xf1\x3a\x59\xbf\x07\x04\x52\xa3\xc4\xb9\xb5\xfb\x20\xd8\x92\xe9\x68\x6f\xeb\x8f\x41\x33\xc5\x8c\xa2\xa0\xd1\x3f\x37\x5a\x68\x31\x52\x5b\x28\x95\xb1\x0a\xd4\xa3\x27\xf6\x2d\xec\x12\x8c\x2d\xda\xa7\x77\x61\xc5\xfd\x5d\x72\x15\x3c\x02\x51\xfa\xff\xc2\x36\xf0\x9b\x40\x3c\xb2\x09\x64\x3b\x07\x45\xff\x5e\xb0\x36\x77\x20\xf8\xf1\x44\x5d\x3c\x62\x54\x6d\x29\x7f\xb4\x18\x36\x9d\xbd\x21\x2f\x79\x83\x50\xa7\x69\x8e\x05\x1a\x2e\x86\x26\xfd\xc2\xb9\x92\x5d\xa1\x30\x64\x31\x6f\xec\x30\x7b\xf2\x98\x4f\x67\xf6\x53\xbf\x81\x9c\x8f\x6c\x9e\xcd\xb9\x50\xa2\xea\x28\xa5\x64\x3c\xc1\xee\x77\x1a\x0a\x6a\xd4\xc2\x58\x75\x37\xd0\x14\x7c\x07\x86\x0b\x34\x5c\xfc\xf6\x0d\xb4\x1b\x91\xee\xba\x71\x62\x35\x3c\x63\xe7\x3c\x6d\x57\xef\xb8\x83\xec\xf7\x3d\x6e\x29\xfa\x9a\xb4\x12\x7c\x4a\xab\xea\x48\x5d\xb6\x63\x77\xb8\x5d\x52\x12\x3d\x96\x74\xb6\x37\xef\xee\x8e\x37\xb5\xce\xe5\xd4\x74\xda\x5d\xae\x3b\x9e\x56\xd6\x90\x92\xe3\x1a\xd2\xf3\x94\xf9\x92\x56\x78\x1a\xb8\x83\xce\x62\x12\x39\x5e\xc5\x9e\x42\x14\xe8\x6c\x5c\x66\x67\x97\x3f\x5e\x4d\xc8\x0a\x4b\x72\x7c\x2a\xbf\x77\x30\x65\xf2\xf0\x10\x09\x52\x8c\xe5\x04\xe7\x1a\x4e\x5f\x89\xad\xdd\x8d\x90\xd6\x64\x3a\x16\x13\x34\x18\xd4\x63\x96\x9d\xbd\xbc\x7e\x73\xf1\x7e\x32\x52\x8f\x48\x3d\xcc\xc7\xdc\x66\x6f\x1e\x0c\x52\x78\x08\x34\x92\xe6\xb8\x46\x08\xaf\xd4\x83\x1c\xcf\xa0\xb0\xe5\x0d\xb3\x0c\xac\x7d\x64\x8a\x67\x41\xb6\x71\xe9\xf3\x8a\x5f\x9e\xbf\x86\x6c\xe3\x8f\x30\xcf\xb1\xc8\xde\x7d\xbc\x3e\x7b\xf1\xf6\xfc\xe6\xe5\xf9\xdb\xb7\x13\x0b\x4e\x38\xce\x27\x96\xa7\x6a\x97\x5d\x19\x63\x7b\x91\xf4\x04\xe6\x63\x3f\xa4\x94\x3e\x4a\x88\x21\xa4\xf9\x73\x2d\xbb\x6d\xfd\xc1\xb6\xec\x5a\x8f\xe4\x45\xd6\x9d\x92\xfc\xe8\x96\xf3\x62\x77\x0d\x02\xed\xe4\xb4\x26\xb4\x2f\x49\x39\x31\x56\x82\x17\x79\x45\x67\xdd\x77\x3a\xf9\x4d\xe4\x1b\x5e\xce\x8c\xd7\x67\xf8\x78\x0b\x2f\x09\xdf\x86\x0f\xdf\xd3\x4a\xd2\x99\x3d\x47\xc2\x37\x97\x9c\xcb\xd8\xf3\xbe\xb2\x8d\xfe\x35\x55\x98\xaa\x71\x20\x82\x30\xd1\x58\xed\x9f\x6a\x54\x51\x4b\xb1\xfa\x61\x82\x70\xf1\xa4\x74\x27\x3d\x58\xe9\x2b\x97\x50\x1c\x6e\x1c\x3e\x95\x4a\xb7\x97\x3d\xf7\x9a\x86\x3b\xe3\xb3\xd4\xcf\xa2\x85\xf0\x07\xfa\x4d\xf3\x50\x5f\xc5\xf4\x93\xe7\xab\x9e\x9b\xc0\x5d\xdb\x9c\xeb\x21\xc6\x86\x74\xe1\xe9\x1c\x4c\xaa\xeb\x94\xbb\x05\x0f\x06\x34\x00\xb6\x43\xeb\x75\xda\x29\xeb\x35\xac\xb5\xa4\x29\x8a\xa1\x2a\x53\x9f\x7b\x44\x6b\xba\x0b\xc5\x81\xdb\xb4\xf3\x98\xfd\xe1\xe9\x37\x68\x14\x86\xed\x2d\x58\x31\x13\x71\x55\x0c\x2e\x77\xbf\x6b\xf6\xa1\x93\xda\xfa\xc7\xd4\x29\x26\x7c\xaa\x2b\xc8\x12\xd2\x2e\x46\xb4\x39\x2d\x30\x1a\x50\x84\xb0\xb4\xa6\x80\x86\xd7\xb5\x3a\x9b\x62\xfb\xaf\xc7\x0a\xfd\x07\x22\xcf\x19\x4b\x72\x24\xc3\x50\xd0\xa8\x80\x08\xd4\xb2\x92\x4e\x39\xb9\x48\xfd\xe1\x2b\xad\xb9\x90\x02\x82\x74\xf9\xf8\x4e\xd6\xc5\xdd\x36\x2e\xcd\x4d\xbe\x8f\x53\x3d\x66\x50\xfc\x6d\xf6\xa4\x1b\x1d\x8f\xa2\x89\x5f\x60\xde\x48\x6c\x04\xc6\x25\x73\x75\x60\x1d\x51\x5d\xf5\xe0\x77\x32\x33\x85\xbd\x70\xbb\x3a\xe8\xc8\x5e\xa0\xd6\x01\xa9\x5d\x4f\x76\xd0\xc0\xb8\x9e\x34\x66\xca\x22\xf0\x1b\xe5\x4f\xb3\x81\x76\xf5\x56\x2b\xb4\x42\x90\x7c\xa3\xef\x2c\xf9\x23\xbc\x24\x70\x4e\xb4\xcf\x43\xb5\xe3\x75\xae\xbd\x72\xbe\x7b\x25\x76\x0f\x35\x5b\x50\x77\xc4\xaa\xbd\xa4\x3d\x8e\x17\x39\xae\x7e\x07\x87\x8b\xc6\x6a\xba\x9e\xf9\x15\x6d\x76\xce\xb1\xea\x70\x29\x02\x06\xbb\x27\x3b\x17\xc6\x2e\x15\x96\xc0\x19\xf5\xf4\xdb\x8c\x70\x9d\x08\x47\xc2\x07\x03\x7b\xcd\x23\x84\x88\x51\x69\x04\xde\xa1\xcf\x24\xa4\xca\x18\x87\x9f\x72\xbd\x0e\x45\x5e\xc2\x47\x9e\xf2\x54\x7b\x43\x63\x49\x0a\xe7\xa4\x4d\x80\x21\xd6\x73\x6b\x3e\xec\xf8\x4e\x03\x22\xed\x21\xca\x12\x88\x72\x19\x97\x7a\xfa\xe8\xf1\xf7\x70\x34\xd0\x86\xe4\x57\x4c\xc8\xfb\x16\x41\x22\xcc\xb2\x1b\x7d\x32\x97\x7d\x9e\x04\x1d\x82\xe9\x9c\xe4\x0d\x78\x5a\x78\xdb\xe4\x9d\x11\x49\x9c\x5a\x87\x1d\x5d\x5e\x1d\x43\x46\x10\x30\x64\x32\x53\xbd\x75\x87\xb6\x6e\xd2\x4c\x62\x81\xf6\xb6\x8b\x95\xbd\x32\xd3\x1f\x8c\x7a\xba\x49\x97\x08\xf7\x08\xc2\xd1\x3e\xf1\xe7\xaf\x2f\x2e\xc3\x15\xe6\x8e\x47\xec\xc4\x78\x8c\xa7\x49\x8f\xbf\x96\xab\x6c\x82\xfa\x68\x82\xab\xf1\xf2\xde\x50\x95\xbd\x9e\xf3\x16\x1c\x03\xed\x61\x6b\x94\x39\x46\x5b\x2a\xed\x69\x0c\xae\x4f\xd7\xe0\x9d\x90\xa0\x61\x99\x75\xd7\xd7\x0e\x2a\x3d\x0e\x40\xe3\x52\x89\x8c\x4d\x8f\xc3\xa5\x8e\x07\xf4\x27\xf9\x0b\xce\x8b\x3e\xd3\x82\xeb\x02\xb5\xe1\xce\x6e\x02\x76\x60\x59\x34\xec\xae\x19\x94\x39\xd5\xc2\x17\xc3\x5d\x6b\x56\xdd\x80\x6a\x82\xa1\x51\xa4\x06\xb4\x49\xcb\x28\x69\x29\x92\x8b\xdf\xc9\xa2\x34\xc7\x7e\x2f\xf7\x25\x45\x41\x96\x64\xf4\x65\x15\x9c\x95\x72\x9d\x02\xb8\x87\x70\x98\x22\x1c\x16\x4d\x03\xc9\x5d\x12\x48\x03\xd0\xaa\x04\x4b\xcb\xa7\xa2\x14\xc5\xd1\x28\xcd\x09\x0f\x33\x43\x56\x84\x9b\x94\x91\xb5\x0f\x97\xc5\x05\xa9\xdc\xdf\xed\x74\x73\xe9\x94\xac\xdc\x25\xa1\xc6\x45\xe0\x2b\x3a\x6d\x1e\x1d\xe6\x44\x9a\x1a\xc5\xe2\x74\x3b\x75\x4e\x0d\x39\xb2\xd4\x55\x8f\x39\xda\x60\xb6\xf3\xd1\xab\x27\xd5\x1e\xb8\x6a\x5e\xd5\x21\x1b\x8e\xb6\x24\x52\x8f\xd6\xb9\xee\xa4\xce\x5a\x81\x4b\x77\xb7\xd9\x60\xb6\xd1\x08\x5b\xfd\xf7\xfa\x3f\xd6\x6b\x34\xc6\x6d\xc6\x79\x76\x79\xfe\xf2\xe2\xdd\x87\x8f\xd7\xe7\x8a\x2b\x4d\xbc\xab\xa8\x4e\x84\x69\xe5\x20\x0d\x68\xf3\x88\x3c\x13\x4d\x2c\xea\x83\x65\x5b\x74\xb4\x2f\xb3\x92\x7e\x31\xee\x33\x8a\x57\x02\x46\x15\x84\xfe\x31\x2c\x5a\xa2\xff\x63\x5e\x55\xba\xab\x3b\xad\x53\x88\xa3\x83\x39\x29\xdb\x5a\x75\xd7\x18\xd8\x7c\xed\x7d\xa2\x5f\x53\xf3\xc7\x3a\x28\x3e\x6b\x87\xef\x72\x5b\xf0\x1f\x7a\x3a\x77\x96\xdd\xbb\xca\x99\x75\x23\x5a\xab\xff\xa9\xb3\xbd\x1f\xd1\xbc\x93\xbf\x92\x3a\x06\x42\x75\xd8\x7a\x4a\xb7\xb3\x0a\xda\xc5\x38\xef\xbb\x6b\x8a\xd4\x9f\x30\xcd\xfb\x79\xfc\x76\xde\xaf\xd7\x34\xf2\x74\x2f\x26\xcd\xd6\x90\x9e\x60\xe6\x7d\xff\xd8\x98\x4e\x36\x34\xbb\xca\xe7\x54\xfb\x13\xf9\xf8\x8a\x3b\x2a\x83\xc7\x5d\xd1\xb1\xdc\x60\x9a\xd1\x6a\x9a\xaf\xe8\xf9\xd7\x95\xa0\x55\xd5\xcc\xd1\x04\x91\x17\xf6\x0a\xe0\x6c\x47\xfa\x31\x85\x74\x3e\xfc\xa7\xeb\x77\x6f\x5d\x64\x86\xf9\x9d\xa2\x20\xc5\x37\x0d\x52\x7c\x5b\x97\x8f\x24\xd9\x6b\x86\x74\x1c\x26\xc9\x1e\x25\x49\x72\x48\x37\x9e\x79\x41\x1e\x70\x34\xa2\x99\xa0\xab\x22\x87\xec\x1e\x02\x0d\xc1\x9d\xc5\x7a\x8a\x47\xd7\x2b\xd2\xee\x48\x55\x3e\xec\x8e\x64\x30\x48\x75\xb3\x96\x0d\x69\xe3\x8d\x77\x4e\xef\x6b\x40\x51\xd9\x60\x10\xa3\xc1\xc8\xd1\x65\xe7\xc5\x07\x37\xc7\x57\x25\x54\xc6\x1b\x3b\xa6\xee\x31\xa1\x31\x2d\xa7\xe4\x7d\x0b\x9b\x24\x87\xc1\xd7\x4d\x9b\x91\xee\x4a\xdf\x3d\xc2\xd6\x69\xd3\x49\x60\x46\x1e\x92\x41\x32\x4c\x06\xf9\x72\x75\x9a\xe0\xe4\x7b\xf5\x77\x21\xd5\x9f\x3f\xa8\x3f\xef\xd4\x9f\x7f\x4a\xfe\x34\x4c\x06\x7f\xaf\x39\x3c\xff\x93\x7a\xfe\xbf\xbe\x7e\xfb\x67\xf5\xe3\xbf\xf4\x8f\x7f\x3d\x56\x3f\x88\xfe\xf1\xdd\xab\xd3\x64\x83\x39\xf9\x66\x3c\xf8\xfe\x87\xe4\x4f\xff\x45\x26\xdf\xe0\x3c\xfc\x75\xd7\xbf\x7f\xac\x0a\x3e\xb2\x81\xe2\xce\x83\x8f\x06\xb5\xc7\x82\xd6\x8d\x3f\xc7\x81\x22\x10\xf0\xc6\xa6\xeb\x75\x7a\x60\xc4\x20\x63\x02\xa5\x68\xbd\x86\xa8\x17\xc5\xb7\xac\xec\x69\xed\xa0\x08\x6d\x36\x68\xaf\x33\x86\x26\x8c\xfe\xb3\x5c\x24\x63\x29\x02\x62\x86\x8d\x1d\x6d\x67\x97\xcd\xa4\xa3\x9e\xe3\x07\xea\xf9\x9c\x6c\x29\xb7\x9d\x7e\xb9\xcf\x79\x67\x94\x46\xea\x74\xa3\xd9\x8d\xcc\xef\x9e\xa0\xb9\x87\xa4\x74\x81\xda\x7e\xd7\x6b\xb1\x6f\xbe\x3f\x47\xea\x1d\x95\x17\x62\xb5\xc8\xcb\x5e\xc3\x6c\xbc\xe1\x1e\x43\x57\xd8\x66\x45\xc3\x39\x73\x56\x2f\x5c\xfd\x01\x12\x04\x16\x41\xcb\xa1\x38\x01\x29\x3c\x95\x00\x61\x12\xfc\xef\x2a\x40\x6c\xb3\x1c\x40\x6c\xa6\x11\xa2\x4c\xb3\x55\xb6\xcc\x59\xe9\x7e\xdc\xdc\x00\x31\xde\x70\x98\xda\xea\xe6\xa6\xc9\xf1\x9d\xcf\x9f\xba\x9a\x9a\x6f\xc6\xd2\x22\x6d\x41\x98\xd9\x81\xec\x14\x16\x51\x7b\xac\xb5\xac\x8c\x1d\x12\x8e\xae\x70\x42\x24\x96\xd9\x97\xbc\xfa\x58\xe9\x0c\x6b\x0f\xa6\xa1\xa1\xc0\xba\xa0\x55\x42\xc1\x21\x0e\xb0\x2c\x8f\xf9\x95\x68\x35\x54\xe0\x5a\x62\xbd\x3c\x35\x59\xef\x42\xd5\x32\x92\x16\xb8\x93\x39\x71\xdb\xe4\xeb\x3e\x74\x64\xd8\xc1\x80\x8e\x6d\xaf\x26\x86\xd0\xfa\xcc\x66\x3a\x6d\x19\xb3\x39\x86\x22\x1e\xfc\x36\x4f\x84\x1d\x1f\x00\x5b\x58\x87\x7d\x07\x53\xc4\xba\xf9\x92\xbd\xc3\xfe\xcd\x16\x05\x98\x9f\x25\xfa\x55\xd2\x32\x70\x98\xf4\xa8\x10\xff\x30\xb6\x8c\x20\x6d\xf2\xc8\x4a\x8f\xc1\xc6\x03\x93\x65\x5e\x55\xec\xae\x44\xe9\xc3\x06\xf2\x60\xa2\x61\xa4\xa0\xd0\x57\x0b\xcd\x48\x04\xe5\x2b\x5a\xc2\xcd\xb0\xad\x75\xf7\xb5\x05\x8c\x27\xd2\x29\xbd\x25\x64\x63\xfd\xe0\xd2\x63\x17\x0f\xc0\x05\x3b\x40\x4f\x40\x75\xea\x3c\x90\x63\x6e\x90\x4d\x30\x7b\x3c\x45\xa8\xd5\xc7\x9a\x83\x41\x92\xb4\x43\x3c\xeb\x75\x23\x1f\x06\x72\xd9\x43\xba\x79\xf2\x47\x2e\x15\xff\xdf\x6b\x2a\xee\xaf\x68\x41\xd5\xe2\x41\xe4\x9f\xce\x34\xe7\x92\x79\x35\x13\x79\xf9\xc1\x25\xed\xb4\xaa\x36\xd3\xd7\x0e\x19\x3d\x3b\x69\xb2\xc3\xdc\xde\x3d\x2c\x5d\xbf\x74\x4c\xe4\x41\xf1\x3b\x25\x8e\x1a\x5e\x62\xb0\x5f\x8c\xf0\xcd\x4a\xc9\xed\xdf\xfa\x8b\xa1\x06\xa0\xc3\x25\x84\xc0\x1f\x49\xbe\x3a\x2a\xe8\x67\x75\xdc\x7b\x50\x27\xfb\x85\x43\x8b\x72\x0c\xca\xed\xa8\xa6\xa2\xb6\x2d\xdb\x45\xcf\xe5\x60\xe1\xf3\x58\x5a\xb5\x48\xac\x4c\x27\x9e\xa4\x08\x45\x32\x23\x6f\x74\xe5\x97\x98\x70\xd2\xf4\xb3\x68\x46\xd6\x6f\x95\x77\x04\xfd\x7b\xcd\x84\x97\x7c\xa6\xbc\xac\x78\xa1\x7e\xfb\x4c\xef\xcf\x0f\xa7\xb7\xa0\x5f\x0d\x43\x85\xbb\x19\x88\xf5\x3a\x2d\x89\xc0\x82\xe8\x33\x46\xeb\x62\x8e\xf7\xd8\x60\x90\xf2\x35\x79\x41\x11\x7e\x91\x52\x94\xe5\xb3\xd9\x35\x7f\xcb\x2a\x49\x4b\x2a\xaa\x54\xd7\xca\x63\xee\x3e\xfb\x34\x9b\xb1\xd9\xd9\x6c\x66\x4b\xab\xfb\x53\xf3\x89\xfe\xbc\x1d\xcb\xaf\x23\xad\x76\xef\x26\x23\x7d\x8d\x5f\x42\x0a\x3e\xdb\xda\x28\xf2\x2c\xbb\x65\xe5\x4c\xed\xc1\x90\x14\xf6\x60\xa4\x3a\x7f\xdf\x6b\xc1\x97\xed\xe1\xb2\x78\xf6\x01\xef\x76\x91\x52\x3c\x96\x93\x4e\xd9\x55\xa4\xec\x4e\xc3\xd4\x53\x5f\xd5\x95\xda\xfe\xdb\x7a\xb3\x48\xa5\xa5\x07\x87\xa7\x8b\x0b\x3c\xc3\x2b\x25\x60\xb8\xeb\x21\x57\x8b\x4a\x3a\x1a\xca\x20\xd4\x35\x1f\xd1\x6c\x45\xe9\xa7\x77\x54\xe6\xa9\x44\xc3\xdc\x6b\x2b\x01\x53\x6f\x99\xcb\xe9\x82\x95\x77\xbe\x33\x25\x32\x11\xee\xd0\x80\x0e\xbd\xb4\x4e\xfb\x3e\xfb\x02\x24\xfc\x74\xcf\x8f\xbe\x3b\xad\x7f\x20\xc7\xa7\xf5\x11\xf9\x0e\x15\x84\x8f\xeb\x09\x9e\xa9\xff\x0e\x4f\x26\x78\x05\x7f\x7c\x3b\xc1\xb3\xc1\x20\x5d\x0d\xfe\xae\x6e\x24\xab\xc1\x0b\x3a\x18\x4c\x61\x94\x05\x9e\x21\x5c\xac\xd7\x69\x41\x24\xc2\x1d\x86\x3b\x1b\xb1\x91\xd0\x87\xe1\x95\x14\xa9\x9a\x04\x86\x86\xc5\x78\x36\x49\xd1\x90\x8d\x66\xe6\x9c\x2c\xd4\xd3\x99\x3e\xb3\x0a\x84\x7c\x44\xaa\x9f\xd4\x79\xea\x31\x6c\x0d\x04\xc3\x18\x00\x18\xc2\x19\x72\x08\x77\xe0\x37\x1d\x9b\x20\x67\x02\x6c\x2c\x45\x6d\x65\xbe\x1c\xe6\xa6\x24\xc7\xa7\xe5\xf7\xb5\xcb\xcd\x7b\x48\xbe\x43\x8c\xd4\xe3\x72\x82\xb9\xfa\x4f\x4d\x4c\xae\x3d\x45\xc7\x0c\xf3\x89\x93\x86\x72\xdf\xdf\x65\x93\x03\xf2\x86\x40\xe2\x8b\xdd\x37\x70\x33\xb6\x29\x97\x7c\x6f\xe5\x48\x51\xe2\x50\xa2\xec\x8b\x60\xd6\xf8\x93\x2e\xd1\x90\x37\x0c\x3f\xbe\x91\xbb\x46\xcc\x4a\x26\x68\x3e\xb3\x5f\xa1\x3d\x37\x61\x62\x30\x70\x0c\xde\xa9\x0c\x82\xb2\x15\xdc\xcb\x5d\xf1\x72\x54\x8e\xe5\xc4\xce\xa6\x7b\xcc\x06\x03\xe6\xec\x79\xce\x05\x5e\x7b\x9f\x50\x6b\x7e\x49\x91\x4e\xc0\x0f\x2f\x5f\xb1\x99\xce\x9c\x95\x06\xb4\x2b\x6c\x58\x2e\x01\x14\x87\x50\x24\xb5\x8f\x7f\x51\xd7\xe4\x5f\x28\xc9\x9b\xe7\x03\x82\x53\xdc\xf3\x6a\xb4\xf7\x33\x55\xed\xfd\x42\x33\x5a\x56\xb5\xa0\x6f\x8c\x0e\x37\x45\x9b\x34\xd8\xb5\xb7\xbb\x29\xf9\xa2\x56\x02\xea\xab\xf9\x9c\x46\x12\xbc\x00\x62\x46\x73\x2f\x97\x0d\x02\x64\xeb\x35\x83\xf8\x4f\x26\x59\x5e\xb0\x5f\xe9\x2c\x95\xc8\xea\xe2\x9b\x73\xab\x2a\xf9\xc5\xd0\x75\x2a\xd0\x0f\xc7\x38\x27\x72\x2c\x26\x7b\xa6\x87\x79\x44\x41\x94\x0f\x06\xb9\xce\x72\x3d\x15\x6c\x25\xb9\x50\xbf\x21\x66\x14\x26\xbe\xf9\x0b\x36\x1a\x56\xdc\xa9\xad\xc2\x60\xf3\x54\x64\xac\xba\xe2\xb5\x98\x52\x9f\x32\x3b\x45\xeb\xf5\x01\x40\x0b\xbf\xa2\xab\x4a\x75\x5c\x4f\xa3\x25\x22\x89\x19\x39\x28\xe1\x10\x53\xbf\xc8\xc3\x06\xed\x7d\x49\x3f\x63\x7d\x1d\x10\x08\xab\x37\x54\x6a\x2e\xbb\x49\x35\xe4\x6d\x47\x7f\xa2\x2b\x13\x8e\x22\x5f\x2e\x72\x56\xc2\x44\xa8\x7d\x1d\xd0\x71\x39\x18\x94\x59\xc9\x25\x9b\xdf\xa7\x12\x1f\x9c\xe0\xcf\x68\x93\x1e\xc7\x2b\xed\x1d\x51\x73\x08\xf2\x30\x19\xde\xd2\x39\x57\x62\x81\x5d\x53\x0f\x0c\xfc\x6f\xf4\x87\x63\xc8\xd4\xf3\x9f\x3a\xab\x89\x86\x80\xc0\x9c\x7c\x30\xe9\x3a\x04\x42\x7b\x0b\xf8\x7b\x4c\xb1\x9c\x60\xee\x46\x89\x36\x9e\x72\x6e\x76\xa5\x1c\x1c\x92\x04\xdc\x59\x79\x3f\xf9\x18\xe2\x30\x9a\xd1\xa7\xd0\xc7\xcc\xee\xcb\xc6\x0f\x47\x1d\x11\x4a\xfc\xdd\x48\x46\x36\x48\x46\x5a\x92\xb9\x69\x92\x8c\xfc\xa3\x48\xe6\x18\xdf\xfc\x2e\x24\xa3\xb3\xd2\x79\x92\x01\x4a\x19\xa5\x8c\xfc\x47\x83\x50\x02\x32\x19\x06\x64\xe2\x89\x04\xcb\xf1\xbf\xd3\xc9\x60\x00\xff\x41\x7c\x22\x74\x83\x6d\xed\xc6\x9d\x36\x6e\x05\x04\xf6\xc5\x5e\xc0\x3d\x4a\xbb\x83\xd7\x10\x36\xf0\x57\x9f\xa2\x6c\x5c\x4d\xf6\xea\xf5\x3a\xd5\x7f\xaa\xf9\xc7\xea\xfc\x53\x4f\xc6\x25\xf8\x66\x73\x1b\x40\xf1\xa6\x84\x35\x2c\xfd\x4c\x69\xd1\x11\x02\xa2\x14\xf1\xe1\xa7\x52\xde\x8d\x11\xb2\xe8\x4c\x9d\x1b\xeb\x35\x10\x1d\xe6\x08\x6d\x50\xc0\xb0\xcf\x9f\xb7\xcc\x3e\xeb\x71\x23\x96\xfa\x6b\x8a\x1e\xfe\x8d\x1e\x1e\xfa\x27\x17\x29\x7a\x38\x3a\xfa\x37\xfa\x3d\x51\x84\xfd\x9f\x3a\xff\xbf\x48\x11\xfe\x0f\x9a\x41\x76\xf2\x34\xec\xcd\x99\x3e\x63\xbf\xa6\x08\x52\x6f\xdb\x0b\x38\x72\xb9\xb6\x2f\xd2\x70\xb3\x5f\x35\x3a\x8f\x19\x39\x3a\x31\xa2\x07\xf5\x62\x59\xa9\xc4\xb2\x52\x89\x65\x6c\x9e\x4a\x42\x08\x1d\x97\x93\xc1\x40\xe8\xbf\x0e\x4f\x26\xe8\x81\x91\x72\xef\x56\xd0\xfc\x93\x55\x6d\x30\xdf\xc6\x87\x3e\x70\x97\x32\x22\x18\x49\xe4\x0f\xa4\x03\x25\x11\xc1\x37\x05\x19\x4f\xa0\x5f\x8c\xd4\xbe\x5f\x4c\xf5\x8b\xa9\x7e\x29\x71\x88\x4d\x70\xae\xfe\x53\x52\x51\x05\x7f\x7c\x3b\xc1\x80\x12\x75\x95\xea\xcc\x31\x83\x41\x2a\xb4\xb8\xa4\xbd\xd5\x71\x11\xfe\x72\xd2\x53\x11\xcc\xcf\x27\x9b\x89\x3a\xa4\x0d\x12\x0a\x84\x2f\x43\x39\xde\x1f\xa4\xc0\x88\x95\x7c\x64\x6f\x4f\x2d\x3e\x25\x11\xce\x3d\xfb\xe4\x83\x01\xff\xe1\x18\x70\xbc\xa4\x3b\x41\xab\x08\x9d\x82\xbc\xdd\xa4\xd3\x2a\x93\x34\x17\x33\xfe\xc5\x64\xcf\xb0\xb8\x51\x4d\x8c\x65\xb1\x6f\x6d\xc6\x7c\xbe\xff\x69\x94\xd6\x44\x60\x88\xf8\xad\x71\xcb\xe2\x05\xf0\x3d\x42\x86\x6c\x44\x12\x73\x09\x32\x84\x9d\x4f\x17\xe0\x5d\x17\x60\x96\xc8\xec\xc6\xd8\x5c\xad\xdf\x23\xa3\x15\x40\xae\x45\x9e\x9b\xbe\xa1\x4d\x4a\xb3\xa9\xd7\x5d\x45\x2f\x8e\x42\xa7\x05\x55\x82\x1a\xfc\x01\xf4\x6d\xa5\x67\xd5\xd3\xf5\xda\xd8\xbc\x84\x1a\x55\xa9\x47\x55\xa2\x21\x0c\xd1\x68\x4c\x01\xd5\x9b\x7a\x60\x56\xa0\x79\x84\xf3\xc1\xe0\x3c\x3d\x86\x49\xeb\xbd\xb3\xbe\x6a\x7c\x6a\xae\xad\xaf\xba\xf5\xd5\xda\x6d\xcc\x13\xc6\x65\xc0\xa9\xb7\x49\x72\x7e\xef\xf9\x31\x69\xc9\x5a\xe0\x08\xd9\xac\xd7\xc7\x7b\x0c\x24\x6e\xea\x9f\x62\x7e\x78\x82\xb0\xbd\xcd\x99\x9a\xd5\x26\x1e\xcb\x09\x8a\x90\x11\x70\xa0\x26\x19\x95\x20\x7a\x41\x95\x8d\x1f\x86\xa8\xe2\xf3\xe3\x4a\x85\xf3\xd3\x79\x08\xf8\x02\x7e\x62\xde\x59\x01\x23\x36\x31\xd2\x4d\x8c\x74\xec\x62\x27\xe9\x55\xef\xa2\x03\xde\x3e\x8c\xe8\x2c\x45\x3e\x4d\x59\x4b\x56\xd8\x3b\x81\xeb\x6d\xca\x5b\x13\x2a\xf0\x31\xb2\xc7\x45\xca\xe0\xf4\x88\x4d\x23\x08\xc2\xcd\x69\x54\x97\x8e\xd9\xc7\xf2\x8b\x9e\xc7\xf0\x97\x39\x3c\x62\x13\x29\x83\x62\x7e\x26\x63\x4f\x53\x75\x38\xe7\x3f\x9c\x0c\x06\xdd\x2e\xe7\x47\x27\x8d\x73\xf6\x6f\x2d\x4b\x0e\x97\xa9\x4f\xb7\x40\x83\x33\xe3\xfa\x69\x94\x1a\xa1\x53\x46\xca\x18\x9d\x96\x1d\x3a\x65\x96\x4e\x19\x10\x99\xb9\x37\xc2\x49\x59\xa5\x7f\x03\x8d\x12\xe4\x03\x76\x7d\x7b\xf5\x34\x62\xd9\x95\x54\x9c\x83\x51\x47\x7c\x54\xfd\x3e\xd1\x2e\xbb\xed\x6d\x06\x54\xc1\x22\xbd\xd6\xda\x21\x58\x1b\xae\xd6\xa6\xfb\x21\x6f\xad\xcd\xfb\x10\xa2\x42\x1f\x83\x69\x29\xd1\xf8\x78\xe2\xcb\xbc\xd9\xed\x26\xe8\x3f\x78\xdd\xbc\xeb\x33\xe9\x5f\xbd\x6d\x0a\x29\x6a\xd9\xf6\x5a\xf3\xef\x24\x95\xd7\x66\x19\x94\x7c\x7b\x69\x84\x43\x5f\xd3\xaf\x4e\xd3\xa4\x96\xe4\x4d\xe7\x7e\xa8\xd6\xb6\x35\xf5\x6c\x2f\xdc\xa2\xfe\xef\x3e\x49\x69\x30\x48\x53\x4e\x5e\xa8\xaa\xfb\x8a\xb8\x29\x57\x82\xeb\x3b\x27\x97\xf9\x6e\xfe\x94\x5a\x8a\xf6\x5d\x2c\x21\xd3\x59\xd0\xb3\xee\xdd\x17\xd4\xc2\x40\x4f\x11\x33\x8c\xd1\x06\xa5\x6a\x61\xb4\x16\x21\xdc\xf9\x1a\xf6\x2e\xbb\xf9\xcc\x8b\x5c\xb2\x82\x2a\xb9\x59\xf1\x8d\xd1\xcf\xd0\x95\xa1\x07\x8a\x2c\x09\x6b\x9f\xa5\x68\x24\x74\xb0\x64\xe8\x1d\xee\x47\xf3\x22\x0d\xf4\x26\xa1\xa2\xc9\x6e\xc6\x06\x71\xdb\xdb\x41\x05\x7c\x90\x04\xa3\x11\x7b\x25\x11\x1b\xbd\x53\x20\x5f\xb8\x4c\xd5\xea\x5a\x21\x61\xa1\x7e\x32\x84\x03\xe1\xed\xef\x01\xa1\xde\xe9\xa4\x21\x21\xeb\xf8\xe8\x5f\x03\xc4\xe8\x6d\xb7\xc8\xcf\x7d\x48\x25\x86\x80\x45\x84\xb1\x82\x0e\x28\x9c\xde\x91\xd0\xf5\x62\x89\x86\x1f\x53\x89\x46\xbf\xe8\xbf\xfd\x98\x23\x61\xde\x74\xbd\x96\xfb\xac\xdc\xa7\x51\xb5\x2a\xcd\xea\xf2\x53\xc9\x3d\x5e\xfb\x48\x0c\x3b\xcf\x1a\xb2\xf9\x2f\xc1\x48\x70\x49\x28\x18\x98\x3c\x76\x20\x08\xa8\x82\x1c\x9f\x8a\xef\x2d\x34\xea\xa9\x38\x3c\xd4\x42\x55\xc4\xba\xee\xfa\x1e\x6c\xe6\xc1\xe0\x8b\x1c\xdb\x0e\x4e\x36\x69\xe9\xee\x51\x6c\x9e\xa6\x25\xf9\x39\x2d\x31\x53\x54\x85\xdc\x09\xae\x0f\x39\x53\x6c\xe3\x7c\x9b\x5c\xaf\xff\x9a\x1a\xb4\x58\xe8\xc8\x47\xc5\xa5\x3a\xb4\x6d\xf3\xfb\x98\x28\x88\x60\x50\x58\xfb\xba\xae\x52\x0b\x1e\xc1\xb3\xbf\x71\x56\xea\x77\x35\x51\x53\x52\xc1\x3e\x72\xba\xcb\xbf\xa6\x35\xce\xb1\x80\x87\x07\x0c\x79\xd8\x8f\x32\xd3\xc0\x1f\x7f\xb2\x93\xbb\x5f\x51\xb9\x3f\xcf\x59\x41\x67\xc3\x7d\xbd\x78\x6a\xb9\x56\xb9\x5c\xec\x27\x7f\x3a\xac\x0e\xff\x94\xec\x4f\x79\x5d\xcc\xf6\x4b\x2e\xf7\x6f\xe9\xfe\x9c\xd7\xe5\x6c\x9f\x8b\xfd\x2f\x79\xb5\xef\x60\xc5\xb2\x3f\xd9\x2b\x2a\xe6\x26\x51\x06\xae\xb4\xba\xa1\x49\x69\x3b\x09\xd4\xa3\x4a\xc9\x99\xe6\xca\xeb\xe9\xab\x8a\xd0\x97\x5c\xaf\x95\x58\xad\xfe\x8f\xd0\x97\x54\xf5\x7c\x6c\x91\x58\xa5\xd5\x67\xa9\x56\xcf\xe5\xcd\xdd\xac\x2e\xd8\x62\x42\x18\xd6\x2a\x98\x1c\xa1\x61\xac\x12\xc0\xd1\x09\xf7\xe8\x5f\x5a\x79\x76\xfe\x6a\x16\xb4\x91\x19\xf9\xc7\xa6\xf2\xd5\xa1\x60\x3e\x24\x68\x4f\x7c\x7f\x3c\x92\xa9\x77\x35\x3b\x97\x38\xc9\x00\x45\x61\xf8\x4f\x69\x92\x60\x0a\x56\x5d\x5f\xd7\x3f\xb5\xf3\x47\x4b\x5f\xdf\x26\x41\x98\x93\x63\x9c\xb7\x31\x33\x71\xad\x08\xcb\xa1\xf1\x8a\xc3\x13\xcc\x90\xa5\x34\x0c\x51\xae\xe1\x7b\x25\x29\xc0\x8e\xa2\x87\x8d\xe7\xc7\xea\x58\xaa\xdc\x35\xf0\x94\x7f\x5f\x9d\xa2\x34\x27\x45\x63\x48\xe8\xfb\xe3\x51\x99\xa6\xf4\xb0\x1e\xf3\xc3\xc3\xc9\x61\x81\xe2\x83\xb3\x05\x70\x81\xf3\xc6\x31\xf7\xef\x76\x4e\x81\xdb\x58\x09\x69\x68\x85\x7a\x5f\xf0\x3f\xd3\x46\x52\xbb\xf0\x74\x69\xef\x73\x90\xba\xbb\xe2\x86\xaf\xeb\x3f\x1a\x8d\xbe\xb2\x8d\xbe\xeb\x34\xfa\x6f\x91\x2b\xb5\x3a\x7b\x66\x14\xf4\x15\xa5\xfc\x0b\xbd\xaf\x9a\xca\x36\x8f\x2e\x89\xf4\x45\xfa\xf8\x94\x7d\x6f\x31\x2f\x4e\xd9\xe1\x21\xe2\x24\x57\x97\x68\x23\xb4\x81\x32\x85\x63\x81\x53\xdd\x67\xfb\x5b\xf5\x18\x29\x29\xee\xdf\xd5\xb5\xa3\x31\x67\x94\xfe\x0f\x77\xeb\xe8\x04\xe1\xff\xe8\x74\x4b\x86\x2e\x2c\xad\x7b\xbc\x71\xac\x89\x5d\x6e\xf6\x84\xc9\x5d\x77\x47\xa5\xa4\x82\x50\x13\x4e\xe1\x7e\xab\x13\xc9\x58\xa6\x2b\xfb\xa8\xa2\x2e\x0d\x9d\x57\x1e\x35\x92\xf2\x41\x22\x96\xc6\x13\x2b\x30\x90\x83\x13\xf3\xa4\x31\x5f\x44\xc2\x55\x20\x7c\x64\x8a\x29\x19\xe2\xa2\x2c\xee\x55\x09\x25\x80\x1c\x9b\x7c\x58\xfa\xa9\x9f\x00\x41\x7b\x69\xb4\x65\x49\x09\x44\x06\xad\xa3\x6a\x08\x29\xc3\x96\xc6\x59\xf1\xb2\x91\x3a\x8d\x02\x5b\x96\x12\x9e\x72\x27\x6f\x70\xdf\x89\xd2\xad\x42\xfb\x3c\xb0\x40\x50\xea\x34\x50\x2d\x1e\xf1\xb2\xb8\xdf\xb7\x81\x6c\xfb\x7f\x4a\x0e\xe5\x61\xf2\xa7\x7d\x5e\x9a\x33\x62\xb8\x9f\x1c\x8a\x8c\x95\xd5\x8a\x4e\x25\xc4\xa9\xb8\x46\x18\x6d\xb1\x42\xad\x9d\xd1\x76\xd3\xbf\x76\xb6\x11\x87\x10\x7a\xf7\x33\x87\xf4\x72\xe6\xb2\xa1\x26\xf3\x4a\x36\x6d\x96\xfb\x9c\x1a\x23\xf3\x07\x39\xd6\x7e\x5a\x1a\xda\xbb\xe3\x27\x82\x05\x19\x4f\xbc\x74\x06\xa9\xd3\x01\x28\xc3\x55\x09\x48\x19\x69\x49\xae\xa4\xba\xa3\x67\x82\xde\xd1\xaf\xd6\xeb\x57\x49\x3f\xa0\x99\x2a\x4d\xf0\x8e\xe3\x25\x1f\x74\xb2\x18\x2c\x36\x10\xb2\x03\x72\x6b\xbc\x8f\x9c\x88\xb4\xd4\x99\xde\xce\xdf\xff\x9c\x5d\x5d\x5f\x7e\x7c\x79\xfd\xf1\xf2\xfc\xd5\xcd\x87\xcb\x8b\xd7\x6f\xde\x9e\xfb\x14\xf7\x39\xe4\xb2\xa7\x87\x89\x9a\x59\x6e\x9a\xc4\xc6\xe1\x20\x93\x6c\x49\xd3\x0a\x59\xb5\x92\x5a\x39\x8d\x99\xe3\x1a\x0e\xb3\xb3\x9a\x3f\x66\xe4\x93\x4c\x35\xff\x2e\xc8\xf1\x69\xe1\x25\xa2\xe2\xf0\x10\x4d\x09\x1b\x17\x13\x5c\x8f\x8b\x09\x99\x66\xda\xa2\x91\x52\x3c\x53\xe7\x77\x5b\x36\x69\x3a\xde\x60\x61\xff\x28\x7d\x0b\x7a\x66\x59\x38\xb1\x11\xc0\x11\x41\x18\xcc\x74\x3e\x97\x14\xe4\x4b\xf8\x03\xf4\xdc\x1c\xd7\xea\x95\x9a\x88\x70\xd4\xe7\xe5\x2c\xad\xc2\x4b\x45\x45\x1f\xf1\xb4\xf6\x45\x6b\xda\xc4\xb0\x87\x4f\x81\xf5\x39\xbf\x3e\x40\x93\x37\x98\x98\x81\x4e\xa5\x62\xbf\x5a\x47\xc1\x03\xfd\xcb\xc2\x03\x3a\xc6\xd4\xba\x13\x2a\x89\xa2\x5d\x51\x2a\xc9\xcf\x80\xf3\xcd\x7e\xa5\x09\x42\xa3\x03\x39\x8c\xb4\xa5\x67\xac\x85\xf4\xc5\x46\x07\x34\x12\xdd\x1a\x6b\x44\xe8\x46\x9c\xdf\xef\x60\x70\x20\x02\x5c\xd0\x70\xba\x60\x42\xd6\xeb\xae\x2f\x94\xb9\x39\x7d\xf3\xff\xbb\xfa\xc6\xd2\x7f\xe0\x03\x42\xfd\x9d\xf6\x6f\x12\x4c\xaa\xda\x54\xff\x37\x19\x38\xb4\x05\x1e\x18\x41\xaa\xd5\x3e\xf4\x1a\x60\xf9\x70\x2f\x40\x20\x6f\xd1\x40\x52\x0c\xae\xcc\x2b\xda\x94\x98\x6e\x3e\xd1\xfb\x2a\x9b\xf2\xd5\x7d\xaa\xee\x5d\xaa\x25\x13\x23\x5a\x05\x11\x3e\x37\x06\xaf\x4f\xda\x77\xa4\xc4\x12\x56\x91\xe8\xc5\xc4\x41\x13\x8b\x70\x82\xa8\xb7\xd4\x04\xee\x06\xed\x12\xc6\xfc\x17\x18\xf8\x83\x43\xd7\x2a\xb0\x53\x8a\x17\x54\x27\x39\x2f\xd5\x41\xad\xc6\xd1\xd2\x4e\xde\x77\x3f\xfb\x0f\x5d\x6e\xda\xfc\xba\xf9\xd9\x5d\xbc\xb5\xf9\x23\xad\xdd\xd2\x88\xb7\xcb\x2c\x6c\xa8\xe1\xb9\xf2\x79\x6b\xe7\xe6\x7d\x9d\xbb\x09\x26\x2b\x76\xa2\x2b\x4a\x53\x97\xac\x8c\x55\xef\xa8\x5c\xf0\xd9\x60\x40\x0f\x08\x79\xc1\x79\x41\xf3\x52\xff\xd0\x44\xa3\xff\x7e\x0f\xd4\xae\xff\x06\x96\xa7\xff\x7c\x05\xe9\x28\xd5\x5f\x3a\x5a\x20\xb0\x6c\x05\x24\x53\xb6\x14\xf0\x32\x54\xc0\xff\x5d\x8e\xd2\xb2\x69\xec\x32\xc7\x32\xfb\xca\xca\x2a\x2d\xd1\xe8\x85\x1c\xa6\x54\xcb\x3c\xf6\x21\xcc\x6b\xb6\x72\x6a\x74\x75\x3f\x08\xec\x50\x6d\xe9\x8b\x88\x31\x9d\xac\xd7\x21\x06\x87\x3a\x3d\xc0\x32\xc1\x46\xbf\x4a\x6d\x1a\x62\x58\x3d\x44\x43\xf8\x37\xbc\x55\x7c\xa5\x7d\x76\xba\x0e\xa2\x07\x1f\xcb\x09\x98\xd9\x80\xc3\x7a\xef\x89\x34\x27\xf9\x7a\x0d\x4a\xe8\xe8\x15\x29\x1f\x95\x43\x9d\x15\x3b\x2d\x71\x1e\x10\xc0\x45\xd0\xb6\xf5\x66\x53\xbc\xb3\x61\xc4\xd0\x8f\x08\x21\xbf\xc8\xc1\x40\x75\xc1\x72\xd6\x17\x72\xaf\xb4\x62\x1a\x58\x6e\x1b\x17\xdd\xb6\x4b\x54\xdf\xa0\x98\x1e\x54\x0d\xa3\x43\x58\x5b\x21\xad\x4e\xb8\x22\x79\x8f\x6a\x3d\x72\xa1\x34\xe2\x91\x9d\x18\x9d\x89\xa5\x0e\xc7\x22\xa9\xa2\x87\x16\xc3\x42\xd8\x8d\x82\xd8\x59\xb2\x0f\x70\x6d\xff\x42\xea\xcf\xca\x8d\xd5\xfe\x3d\x72\x7f\x05\xdf\x56\xee\x5b\xfd\x17\x1a\xfa\x52\xfe\x21\x2e\xd1\xb0\xdc\x80\x5d\xa4\xc4\x39\xe6\x00\xc4\xc2\xc1\xaa\x82\xd5\xa8\x2d\x0c\x36\x2d\x2a\x6a\x86\x6b\x6e\x5e\x12\xfd\x40\x8e\xd7\xeb\x64\xca\xcb\x69\x2e\x69\x99\x37\xac\x3e\x89\xb6\xa2\x26\x4b\x2a\xee\x3a\xcf\x47\xdd\x55\x72\x2a\xda\xb1\x9c\x68\x2a\x6a\x01\x56\xf2\xe0\xe8\xe5\x23\x91\x2d\xf3\x4f\x54\x8b\x26\x25\x1a\xfe\x24\x53\x8e\x46\xa6\x64\x19\x94\x2c\x47\x7c\x68\x89\x5f\x5d\x14\xdc\x8f\xb0\x02\xae\x66\x61\x63\x7a\x92\xa3\xa1\x5a\xb0\x70\x98\x47\x27\xfd\x1d\xc6\x79\xd8\x65\x36\x4f\x0f\x72\x7f\xe6\x6b\x25\x8a\x30\x3e\xce\xe9\xc3\x06\x83\xe7\xbd\xf1\x86\x03\x5b\xa7\x3a\x9a\x4a\x54\xb6\xb3\x09\x16\x68\x30\x48\x6f\x68\xca\x49\x39\x2e\x26\x68\x94\xd6\xe4\xe0\x18\x57\x4a\x86\x82\xad\x5a\xc0\x56\x79\xd8\x20\x34\x84\x87\x5e\x96\xaa\x95\x7c\xa7\x2e\x24\x10\x4c\x09\x69\x8c\x10\xae\x82\xd1\xdd\x28\x6a\x83\x9d\xe2\x36\x7d\x8e\xb9\x5d\x75\x23\x70\xc1\xd2\x07\x7a\xa5\x33\xda\x0c\xad\xf1\x62\xb4\xe2\xc2\x33\x5a\x50\x49\xf7\x15\x0b\xc2\xe6\x6f\xc5\x88\x36\x9f\x7b\xf3\xfa\x3b\xc9\xd1\xfc\xb1\x0a\x85\xe7\x8a\x1c\x9f\x56\xdf\x5b\xb1\xe4\xb4\x3a\x3c\x44\x6c\x9e\xd6\x84\x8e\xab\x09\x4e\x0b\xf2\x45\x5d\x71\x6a\x84\x14\x3b\x97\xea\x55\x81\x1e\x18\x58\xa2\xde\x29\x6a\x03\x0e\x0a\x7a\xf9\xc6\x13\x8d\xbc\x74\x4e\xd3\x3e\x8a\xc5\x05\xac\x2b\x5e\x41\xa1\x0e\xe1\x9a\xd7\xd0\xc3\xa9\x5a\xb6\x02\x15\xed\x65\x9b\xaa\x89\xe5\x5a\x9c\x9f\x22\x7c\x41\x53\x86\xa7\xb8\x18\x4f\x27\xf8\x18\x26\x6f\x86\x57\x08\xed\x75\xbe\x4b\x6c\x30\x5a\xa2\x2a\x60\x3e\xde\xad\x70\x7f\x22\xbd\x05\xeb\x6c\x09\x07\xc4\x60\x90\x9e\xd1\xd4\xfe\x0a\x96\x46\x6d\xf8\x2f\x4c\x2e\x78\x2d\x15\x19\xdb\xbf\x1d\xf2\x64\x1e\x5e\xa1\xae\x1a\xc9\xea\xf5\x7c\xbb\xe3\xe3\x87\x3f\x0f\x06\xff\xfa\xaf\xa0\xe7\x9e\x2e\x72\xf1\x92\xcf\xe8\x99\x4c\xe5\xd1\x9f\xd1\x60\x70\x64\xce\x56\xab\x85\xd1\xa9\x5e\x12\x2c\x8f\xfe\x35\xa8\xfe\x03\x6d\xa0\xc9\x87\x5b\x08\x3d\xb8\x2e\x99\x3c\x31\x55\x00\x8a\xe9\x2e\xb0\x7b\x9a\xa7\xfb\xcc\xe3\x47\x7f\x46\xb8\x61\xde\x7e\x2b\x47\xa9\x22\x74\x2d\xab\xa1\x4c\x72\xc5\x10\x04\x5c\x5d\xde\x6a\x15\x3b\x44\x85\x97\xa5\xbe\x40\x6a\x93\xb1\x40\x1b\x75\xbc\x82\x77\x85\x6b\x1f\x78\x40\xd7\xe3\x11\x07\x92\xfe\xa7\xce\xb9\x2b\xb3\x25\x88\x17\xef\xf3\xa5\xcf\xdb\x8e\xdb\xa7\xa7\x18\x33\x38\x9d\xd9\x64\x04\x7b\x9a\x4d\xb0\x24\xea\x21\x1a\xa6\x39\xa1\xea\x0f\xa7\x17\xde\xc9\x65\x65\x94\x4a\x92\xbb\xf6\xd0\x30\x95\xde\x45\x0c\xaa\xc3\x0f\x33\x5a\x4d\x87\xd2\xe0\x76\xf3\xe0\x66\xf3\xb2\x3d\x08\x80\x29\x0f\x54\x32\x22\x54\xc9\x40\xfe\x52\x50\xca\x40\xb8\x4b\xb0\xbc\x97\xb4\x69\x68\x02\x16\x18\x91\xc5\xca\xc1\x20\x35\x6d\x96\x3e\x5a\xea\xb6\xa2\xe2\x33\xad\x5e\x80\x8c\x7b\x73\x83\x3f\x53\x84\x7b\x4b\xdd\xdc\xe0\xfb\xd8\xfb\x02\x7c\x49\xd4\xeb\x29\x8a\x7b\x14\xf8\xb6\x45\x7f\xdb\x77\xbe\xee\x6e\xa9\x9b\x1b\xbc\x8c\xbd\xf7\x6d\x17\xe1\x9e\x7a\x47\x6d\x3e\x26\xaf\x16\x7b\xd8\xe0\x4a\xfd\x53\x83\x31\x0e\x17\x64\x3c\x79\x8c\x09\xd2\x26\x0f\xc7\x67\xc0\xf4\x40\x3e\xa2\xb8\x40\x58\xaf\x54\x11\xae\x94\xba\x62\x06\x1e\x16\xea\x7a\x97\x4e\x49\xa1\x89\xab\x8a\xf2\xaa\x15\xc9\x15\x73\x9a\x91\x4a\xfd\xb7\x3a\x50\xf2\x15\x42\x0f\xaa\x03\xa7\xab\xc1\x60\x15\xee\xb4\x57\xf4\x14\xad\x48\xca\x09\x6c\x82\x95\xf6\xa3\xc9\x14\x95\xe1\x99\x4d\x08\xbe\xe7\x53\x26\x05\xce\xb4\xb3\xf5\x3a\x05\x62\x99\xe2\x19\xc2\x57\x14\xda\xae\xb5\xbc\xeb\x76\x1f\xbc\x7b\x09\x85\x56\x78\xa6\xf8\xfb\xc6\x7b\xca\x03\x27\xa9\x1b\x5b\xf1\x6f\xcd\x79\x0e\x04\x6c\x73\xf7\x56\xe3\x76\xee\xe7\xe6\x81\x3a\x45\x43\x23\xd9\xc1\xb1\x3b\x8a\x39\xa1\x96\x9b\xe6\x84\x8f\xac\xa7\xfa\xf0\xf8\xf4\xe8\x28\xff\x81\x1c\x9f\xaa\xf9\xfd\x1b\x4d\xf9\x38\x9f\x40\xbb\xbe\x0a\xdb\x4a\x60\x65\xef\x12\x01\x08\x07\xe5\x38\xbc\x07\x4c\x10\x74\xab\xf1\x08\x20\x48\x43\xb9\x5f\x6f\xcb\x10\x8a\xbb\xf1\x1a\x73\x72\x7c\xca\xbd\x42\x84\x1f\x1e\x22\x25\x93\xf0\x09\xa6\xe3\x5c\x55\xb7\x07\x07\x87\x74\x07\x87\xfd\x2b\x0a\x46\x6c\xa6\xdc\xf5\x7f\x13\x50\xf6\x2b\x1f\xec\xda\xd2\xac\xba\xb4\xd3\x86\x11\x86\xca\x91\xf7\x34\x44\x45\xc7\x65\xc4\x99\x15\xe8\xbd\x93\x26\x09\x4b\x7d\x11\x53\x3b\x46\x5b\xda\x28\x98\xd8\xe0\x1e\xef\x33\x25\x89\x90\xe7\x78\x83\xcc\x58\xfa\x2c\x5d\x8a\xe7\xfa\x74\x90\x8c\x48\x48\x10\x26\xb5\xa9\x0b\x7e\xdb\x94\xeb\x93\x56\xc0\xaa\xf5\xb1\x77\x39\x6c\x02\x5f\x7d\x37\xe5\x87\x87\x25\xfa\x31\x65\xe3\x72\x82\xab\x10\x72\xad\xc3\x47\x14\xc7\x0e\x4c\xfe\xa1\xaa\x5a\x75\xdb\x06\x24\x42\xf4\xaa\xd3\x36\x2b\x26\xf0\x4f\x41\xd0\x5f\xfa\x9a\x22\xfc\xa3\xcc\x78\x49\x7f\xc9\xef\x03\x5c\x8d\xc0\x37\x80\x36\x31\xc5\x94\x5c\x06\x37\x50\x2a\x2f\xbe\x40\xf4\x8d\x2a\xbf\x5e\x1b\xf8\xca\x52\xe6\xac\xa4\xc2\x03\x46\x9a\x4c\xfe\x12\x7a\x75\x98\x0c\x93\xc3\x54\xc3\x8b\xac\xd7\x14\xa1\x4d\x4e\x12\x9b\xed\x97\x95\xfb\xf9\x28\xb7\xa1\x53\xc3\x1c\x57\x8d\x77\xd5\xc8\x81\x0c\x0d\x95\x20\x18\xbe\xab\x47\xb5\x7b\x57\xc3\xfc\xbf\xa5\xf8\x57\x8a\x7f\xa2\x9d\xf8\x94\x7d\xa9\xfd\xf6\xbf\xca\x8c\x2d\x21\x0c\x2b\x3b\xd7\xb7\xf5\x9e\x17\xeb\xf5\xc3\x66\xef\x27\x75\xf7\x57\xd4\x58\xad\xf2\x29\x55\x54\xfa\xd3\x56\x24\x01\xf8\x32\xd1\xc8\x05\x2f\x28\x39\xc1\x7f\xa7\xe4\x5b\xfc\x91\x92\x87\x66\xe8\x53\x2c\x8f\x9d\x13\x1a\x34\x02\xa8\x2d\x6a\x51\xc7\xfc\x13\x32\x9e\x38\x9c\x50\xfb\xcc\x10\x97\xa9\x6c\x83\x6f\x6c\xb6\xa3\x48\x93\xda\xc0\xdc\xaa\xe0\xb5\x29\x3f\x7b\x6a\x4f\x1c\xf3\x73\xe0\x32\x3a\xe2\xf6\xd4\xbb\xfa\x0d\x06\xde\xd7\x20\xa5\x44\x06\x35\xa0\x48\xa5\xed\xa1\x69\x59\x1b\xf4\xd7\x07\x32\xda\xe5\x53\x24\xd5\x56\x84\x76\xf7\xfa\x06\x46\x0e\x20\x74\xb9\x1b\x98\x15\x59\x0c\x3b\x26\x7d\xf4\xaa\x1a\xfd\x70\xf2\x53\x98\xc0\x30\x8f\x67\x1e\x8e\x08\xb8\x2d\x77\x6a\xf6\xa3\x7f\x3e\xe5\x8a\xf5\xf3\x23\xf2\xcf\x8a\x57\x2b\xb6\x4a\xc0\x72\x9f\x1e\x88\xf5\x9a\x8d\xf9\xe1\xff\x47\xdc\xbb\xf7\xb9\x6d\x9b\xf9\xa3\xff\xeb\x55\xcc\x70\xfb\x51\x89\x0a\x96\x67\xd2\x9e\xfe\xf6\xc8\x41\x66\xa7\xb6\x93\x7a\xe3\x5b\x6d\x27\xf9\x75\x55\xad\x96\x23\x41\x23\xc4\x12\xa8\x80\xa0\xed\xc9\x88\xef\xfd\x7c\xf0\xe0\x4e\x82\x92\xec\xa6\x7b\xf2\x47\x3c\x22\x41\xdc\xf1\xe0\xb9\x7e\x9f\xcb\x99\x36\xa0\xa8\xbf\xbf\x52\x7f\x0b\x04\x4d\x14\x06\x7f\x0e\x85\x41\xfa\xdd\x95\xb5\x00\x74\xa9\x98\x33\xcd\x5c\xf5\x70\x54\xc6\x01\x14\x5a\x45\x98\x81\x6d\x75\x41\xf3\x12\xff\x09\x35\xaa\xf9\xe4\x5c\x83\xd7\xee\xa0\x20\x85\x99\xef\xa6\xc1\x1d\xaf\xdc\x28\xc9\xa3\x9d\x4b\x27\x5f\x10\x1d\x5e\x6c\x28\xb7\x9f\xd8\xb2\x3d\xb1\x92\x94\x9d\x89\xd5\x54\x5c\x7a\x7f\x09\xf2\x27\x4d\xcd\x61\x4a\x93\x9e\xf4\x18\x1c\xf2\x46\x97\x33\xd5\xf4\x54\x8c\xbe\x9a\x05\x14\x98\xc6\xd1\x52\xab\x9c\x4e\xf9\x4c\x6b\xaf\xb5\xaf\x32\x21\xa4\xb4\x3e\x15\x06\x66\x5f\xed\x0a\x55\xd1\x1f\x67\xa8\xd1\x2a\xab\xe9\x4c\xcf\x33\x5b\xe5\xe5\x81\x59\x2b\x49\x69\x67\xcd\x64\xd6\x88\x2d\x7f\x6e\x02\x23\xf7\x9c\xaa\x63\xf5\xd4\x5d\xaf\x3a\x5d\x27\x84\x54\x53\x3e\x4b\x5b\x46\xc9\x1f\x51\xa1\xd8\x17\x28\x33\xba\x9c\x0d\x87\x05\x38\x3f\x9b\x07\x5f\x81\x46\x0e\xbc\xa0\xf7\xe4\x17\x1a\xc4\x86\xe1\x76\xec\xe0\xa1\x2c\x9c\xfd\x43\x82\x7d\xe0\x42\x04\xb5\x97\x7d\x4f\x59\xa0\x70\x7a\x00\x34\xe4\x4e\xed\x1d\x0a\xb2\x8f\x9a\x6f\x29\xee\x9c\x79\xa5\xe3\xb9\x0e\x5b\xd8\x24\xfe\x21\x4e\x36\x45\xbd\x8d\x1a\x4e\x02\x58\x1d\x7d\x86\x0b\xef\x3b\x6e\xcf\xb0\x9a\x44\x7f\x62\x0b\x77\x62\x3b\xf2\x6c\x31\x2d\x15\xcf\x5c\xf8\x53\xf5\x47\xd4\x34\x18\xbc\x33\xe9\xf2\xe9\x07\xc5\x78\x84\x34\x39\x20\xa3\x06\xa6\x14\x73\x72\xdf\xf8\xe3\x21\xda\xc7\x83\x12\xd1\x39\x1e\xda\xb4\x45\xbd\x69\x8b\xfc\x09\xf1\xa9\x92\xaa\x80\x8d\x03\x37\xaf\xfe\xfd\xa9\x24\x05\xb3\x3f\xcd\xac\x86\x3c\x23\x57\xfd\xff\x31\x11\x2b\x7d\x7e\xd9\xe0\x9f\x2c\x06\x0a\xfe\x7b\x1f\xca\x89\x61\x53\x4c\x38\x42\x0a\xf9\xa1\x58\x2e\x5b\x4a\x32\x27\x22\x6b\x60\x42\xe0\x82\xc4\x5b\x2a\x6d\xf6\x0f\xfb\xa8\x82\x1c\x38\x9e\x7b\xc7\x15\x61\xd3\x62\xe6\x65\x09\x75\x7b\xa9\x27\xa4\x82\xa0\x1c\x6d\x9b\xac\x02\x1d\xa1\x0f\xaa\xd4\x4a\x5c\xbd\xd5\xee\x2b\x1d\xae\x4e\xf1\x7b\x7a\x07\xe9\xd8\x25\xa6\x6a\xed\xe0\x6f\x8e\xdd\x54\x4e\xa6\xb3\x06\x3d\xb8\xc4\x15\xf8\xc8\x23\x5c\x4e\xeb\xd9\xd8\xbd\x6d\xe5\x2d\xdc\xd4\xd5\xba\x37\xd3\x89\x1f\x52\x60\xbb\x0c\xed\xc2\xc1\x24\x62\x4a\x2e\x1e\x51\x4f\x0e\x47\x23\x8a\x72\x4e\x72\x41\x40\x3d\x3f\xd6\xbd\x47\xde\xf1\x8b\xf1\xdb\xfd\x3e\x72\x04\xdb\xef\xd7\x39\xc7\x62\xec\x46\x85\xa7\xea\xa7\x19\xee\x0c\x0b\x3f\x8a\x56\x20\x3c\xf4\x21\xce\xd8\x14\x2f\x92\x12\x57\xe3\x21\x91\xa9\xc5\xda\xf8\x9e\x92\x0b\xfc\x5d\x7a\xab\x48\x6f\x0a\x85\x0b\x43\x6d\x5b\x7d\x6a\xd9\x92\x88\xf1\x77\x3f\x3c\x7b\x32\xff\xfe\xe9\xdf\x47\xdf\xd3\xd1\x08\x27\x81\xb3\x1e\xa9\x43\x0c\x6c\x4e\x9c\xb6\x85\xa2\xc0\xbf\xec\xdd\xdd\x8e\x1a\x8f\x82\x77\x6b\x7a\xf6\x91\x16\xef\xcf\xb6\xc5\xee\x2c\x90\x7f\xcf\x76\xe5\xe6\x6e\xc5\x36\x9b\x33\xf0\x31\xa8\xea\x1d\x70\x88\x67\x05\x3f\x83\xec\x5e\x67\x56\x86\xc8\x42\xcb\x32\x0d\x2d\xcb\xcc\xf9\xd5\x4f\x2f\xd4\x0d\xc4\xa7\x97\x33\x9b\xda\x4e\x67\x4d\x6b\x1a\x67\x0d\xec\x07\x41\x61\xab\xfc\xc6\x39\xa6\x6a\x11\xa8\xc7\x35\x55\x7b\x8c\x79\x32\x21\x02\xef\xd1\x9f\x68\xf1\x3e\x47\x9a\xbb\xc8\x39\x11\x53\x3b\xad\x33\x44\x02\x3f\x0c\xc7\xc6\x37\x4d\x83\x65\x0c\xfd\xd0\x02\x2d\x57\x73\x7c\xd3\x3b\xaf\xcf\x38\x04\x2d\x9d\x81\x60\x7f\x56\x57\x74\x79\x56\x54\x7e\xa6\xdf\xd3\xbb\x0c\xf5\xe0\xbd\x17\xd2\x44\xae\x5b\xa7\x63\xdd\x77\xdf\x63\x23\xde\xc4\x1d\x5c\x17\x55\x7b\xda\xce\x6f\x7c\x9c\xde\xf9\xe5\xc0\x79\x63\x1e\x73\xbd\x0a\x67\x90\xb7\x67\x30\x78\x1d\x4c\x62\xdc\x17\xad\xc6\x4e\x00\xa3\x9c\x6b\xe6\x7b\x5d\x54\xb9\x54\x0c\xb0\xd1\x77\x47\x3d\xea\x1d\x36\x78\xe9\x45\xed\x1c\x90\x47\xa6\xc6\x4b\x52\x55\xf2\xa2\xd8\xcd\xb2\x06\x4b\x75\xfa\x7e\xa7\xee\x8e\xbf\x5e\xbf\x9d\xbf\xbc\x7e\xf7\xec\xc7\xa7\xf3\x9f\x9e\x5e\x7f\xff\xe2\xfa\xf5\x95\x29\x37\xf9\x8e\x0e\xe8\x58\xd4\xfc\x19\x7f\x27\x0a\x5e\xe9\x0c\x34\x1e\x29\xaf\xf3\x26\xde\x13\x96\xb2\x4f\xe5\x2c\x47\xf8\xfc\x52\xcb\x43\x7f\x53\x6d\xea\x5c\x15\x79\xf6\xfa\xcd\xab\xd7\x4f\xdf\xbc\xfb\xfb\xfc\xc9\xb3\x27\xf3\xc7\x7f\xbd\x7e\xf9\xdd\xd3\x0c\xe1\xff\xa2\xa0\x73\xfd\x3b\xc5\xff\xd7\xfd\xf5\x9f\x8a\x50\x50\xa7\x9a\x94\xf6\xaf\x47\x79\x9b\x80\xb6\xec\x61\xe6\x97\x9b\x27\x7c\xbf\x13\xe5\x6e\x72\xbf\x28\xf9\x8a\xdd\xd6\x90\x78\x75\x72\x7e\x61\x94\x9b\x97\x4d\x83\x06\x7d\xd1\x3f\x99\xfa\x32\xc3\x3d\x9f\x7e\x05\x49\x97\x54\x91\x06\x19\xb7\x57\x21\xc9\xf9\x25\xe6\x92\x3c\xfc\xef\x7c\xfa\xdf\xff\x18\xcf\x46\xe8\x21\x66\xf2\xc8\xc5\x08\xf1\x01\xa7\x26\xbb\x6c\xdf\x95\x0e\xe0\xc6\x57\x35\xa5\xc1\x05\x68\xbc\xd3\xdc\x1b\x32\x95\xb3\x89\x70\x79\xa3\x5a\x18\x30\x4a\x92\x48\x55\x6f\x33\x53\xfa\x06\x42\xba\xc3\x03\x16\x9d\x87\x2e\xcd\x5a\x47\x05\x4c\x13\xba\xe7\x96\x25\x12\xf8\x12\x99\x28\xc0\xb8\xfd\xe8\x14\xff\xa6\x8d\x77\xf5\x6d\xad\x81\xdb\x20\xcb\xeb\x4d\x8c\x06\x65\xb9\x33\xf0\xdf\xf5\x9d\xd0\xdc\xa4\x09\xc1\xa5\x58\xed\x09\x13\xaa\xd6\x53\x6f\x17\x2e\xe7\xe8\xc7\xba\x40\x12\x35\xd6\xcb\x53\x3d\x93\x52\x0e\x87\x3a\x74\xc2\x30\xbf\xb1\x5d\x1e\x26\x0c\x38\x71\xc5\x70\x6b\xa9\xa2\xf4\x52\xc5\x08\x95\x53\x3e\xf3\x01\xc6\x05\x6a\x85\x0d\xa4\xe5\x8c\xaf\x90\xc8\xc1\x05\x53\xcb\x17\xc8\xe6\xf9\x2c\xfb\xf6\xbf\x19\x90\x0c\xa0\xeb\xad\x1e\x6b\x0e\xa0\x61\x03\x27\xc7\xc1\xb3\x8f\x46\xde\x0c\x02\x8b\x3c\x8b\x60\x4e\x51\xe4\x31\xa9\xa9\x60\xf4\x6c\x51\xd6\x5c\x92\x8b\x08\xba\x5d\x58\x4c\xfc\x42\xae\x5d\x0d\xcc\xb8\x0d\x78\x4c\xf0\xf3\x67\x81\x9b\x7d\xd4\x00\xc7\xcf\xf3\xf0\x81\x1f\x03\xd6\xea\xb5\xd4\x41\x4e\x83\x97\x75\x6f\xc5\x10\x88\x3e\x9e\x07\xc0\xe5\x0c\x67\xcf\xe7\x0a\x09\x46\xf7\xd7\x3c\x98\x53\x14\xbd\x3b\x0a\x70\xd4\x69\xef\xd7\x83\xe3\xc4\xad\x75\x3a\xbf\x6c\xb3\x8e\xe5\xee\xae\x0b\xce\x85\x39\xd1\x70\x5b\x3e\xec\x0c\x3c\x4e\x83\x55\x69\x07\x65\x89\x68\x2b\xab\xc3\xc9\x10\x9b\x8a\xd9\x37\x17\xc3\x21\x87\xb0\x24\xe1\x6d\x00\x2d\xd0\xae\xe5\xf2\x40\xfe\x04\xb9\xae\xf6\xfb\x3c\xdc\x0f\x4a\x6c\x00\x6f\xca\x5c\x82\x9f\xcc\x05\x1a\x19\x6e\x82\xbc\x54\x12\x87\xda\x22\xda\xc4\x68\x6d\x5f\xa3\x4b\x93\x0c\x11\xf6\x64\xae\x35\x73\x07\xe9\x6c\xa2\x17\xd1\x88\x25\xba\x57\x8d\xab\xd1\xa9\x7f\x1f\x3c\x38\xb1\x03\x35\x0f\xba\xd0\x5a\x0a\xf5\x82\x24\xec\xa6\x24\x3c\x4f\x1e\x0b\x20\xf0\x8b\x88\x8b\xa4\x2e\xae\x09\x23\x7c\x2a\x67\xb8\x15\xe7\xcc\xc1\x35\x20\xc0\xf3\xb3\x84\x0f\x60\xd7\xd5\xc9\x1c\x8d\xb0\x00\x36\xf0\x65\x2e\x10\x56\x72\xa9\x1e\x99\xf4\x23\x53\x45\x61\x50\x10\x9b\xdb\x42\x9b\xe4\xad\x61\x85\x97\x88\xdb\x51\x66\x68\x25\x61\x8a\x6c\x82\xdb\xb4\x49\x9d\x78\x39\x1c\xe6\x6a\x56\x21\x62\x4a\x76\x67\x15\x97\xd1\x94\x42\x9a\x01\xd5\xed\x07\x0f\xec\x5f\x3a\xfa\x9e\x4d\x4b\x38\x16\xce\x29\xa2\xb4\xa7\x2b\x6f\x77\x39\x41\xe5\xd1\x7d\xea\xa8\xbb\x1c\x52\xf1\x59\x47\x2e\x59\x45\x69\x5c\xd2\x8e\x1d\xd2\x67\xb9\xb0\xc9\x04\x2c\x01\x13\xf8\x79\x2e\xda\x05\xd1\x24\x41\x45\x63\xda\x62\x9e\x0d\xd2\x33\xdc\x3e\xb4\x91\x38\x0b\x76\x33\x7d\x70\xa3\x88\x37\xad\x3e\xe1\xfe\x7a\x94\xa8\x91\x76\x3a\xf4\xd0\xe3\x5f\xe3\x5d\xb9\xab\x37\xea\xea\x5e\xad\xe8\x42\xd2\x65\xee\xc7\x71\xd9\x81\xb9\x6b\x17\xee\x5c\xaf\xee\xe3\x80\xba\xbe\xa7\x77\xa3\x6c\x0c\x00\xc8\x61\xcb\x57\x87\xbb\x41\xb1\x1c\x5d\x62\x81\x26\x52\xed\x2b\xcb\x72\xad\x99\x87\xfb\x77\x50\xa7\x85\x0c\x78\xe4\x9a\x6b\x46\x74\x99\x21\x5c\x49\x92\x59\x63\xd0\x96\xca\x62\x3e\xcf\x70\x2d\xc9\x74\x86\x37\xe9\x5b\x55\x06\x86\xa1\xf9\xa2\x58\xac\x69\x7c\x25\x2a\x19\xac\xf5\x24\xbe\x55\x6d\xf8\x01\xd8\xf9\xe2\x67\x37\xc6\xde\xda\x0a\x4b\xd0\xee\xab\xd1\xb3\x25\xdd\xb5\x9e\x2c\xc2\xb8\xcc\xc4\xab\xd6\x33\x59\xdc\x76\x1e\xb4\x8a\xac\x0a\x25\xa9\xdf\xb5\x1e\x6e\x54\x39\x9b\x43\x5e\x07\x29\x98\xeb\x0f\xf6\x40\x54\xda\xb0\x1c\xb2\x6d\x54\x89\xab\x4c\x59\x14\x2e\xdb\xb1\x1b\x6d\x6d\x62\x4a\xb4\x8f\x00\x6f\x7a\x13\x6f\xdb\xc8\x52\xda\x16\x2a\x3b\x97\xb3\xb3\xe6\x80\x9b\x6a\xd1\x89\x63\x97\x5d\x45\x52\x68\x40\x35\xb6\x83\x20\x6c\xb6\xca\x63\x46\xaf\x04\x46\xaf\x96\x06\xfd\x02\x3d\xaa\x1d\xa1\xbc\xd0\x4a\xc9\x92\xd4\xd6\x14\x1a\x8a\xcd\xa5\x5d\x54\xad\x9c\xe4\xea\x98\x0b\x14\x48\xce\x7c\x36\x1c\xda\x7a\xd5\x2f\x34\x28\x43\x5a\x17\xda\x58\x4a\x4b\x80\xc0\x64\x14\x8a\xef\x0c\xfc\xc8\x65\x12\x55\x66\x38\xfc\x35\x67\x58\x13\x61\x5c\x02\x0d\x31\xaa\x97\xd6\x54\xb5\x14\x1d\xdd\xba\x12\x10\x91\x17\xe7\x24\xff\x6a\x18\x6c\x38\xd4\xd1\x96\x1c\xaa\x25\xf8\x70\x4f\xbe\x3a\xd8\x7e\xb8\x4f\xa2\xe6\xff\xf4\x19\xcd\xc7\x95\x44\xad\xff\xa9\xdd\x7a\x34\x3b\x3d\x6d\xff\xfb\xe1\xb6\x7b\xab\x88\x5a\xfe\xf7\x76\xcb\x00\xb4\xd6\xd3\xe2\xe5\x9f\x0f\x37\xd9\xf9\x36\x6a\xea\xf2\xcf\xf1\x07\x73\xc0\xb2\x7e\x0c\xec\xca\xab\x8f\xfc\x45\xb1\xeb\x3b\x8c\xc0\xef\xe5\xe6\xaf\x14\x9f\x83\xba\x35\x3f\xd3\x38\xb9\xad\x13\x1e\x18\xc3\x5a\x66\xc5\x8e\x7a\x5f\x82\x3f\xb6\x0b\xbe\x95\xa1\x76\xbe\xd5\xdc\x8a\xf1\x65\xaa\x3d\x75\x03\xb8\x08\x06\x77\x2d\xfb\x36\x59\xbb\x4d\x01\xac\x50\xa8\xdd\xd2\x5a\x42\xdf\x0d\x3e\x60\x84\xa5\xbb\xe1\xe2\xed\xd2\xa2\xaa\xb9\x43\x3b\x93\x9e\x67\x70\x4d\x64\x8a\xd3\xe7\x91\xca\xc2\x32\x8b\x3d\x73\x8e\x19\xb8\xe1\xc5\x9d\xb0\x31\x7e\x87\x66\xc1\x10\xbd\x03\x96\x47\x20\x5d\xaa\x57\x9d\xa9\x68\xcd\x8e\xe6\x65\xdd\xec\xb0\xd0\xc4\xd7\xd1\x4c\xb6\xfa\xf5\xb9\xbb\xa1\xdb\x23\x50\xf2\x7b\x95\x46\xdb\x7a\x73\x7e\x19\x77\x21\x02\xbe\x4a\xeb\xec\xcc\x81\xb1\x05\xed\xda\x60\x9d\xfe\x30\xde\x74\xb6\x50\x67\xb9\xed\xb0\x2c\xe0\x25\xf0\xf8\x41\x58\x6f\xdb\xf0\xdb\xb1\xa8\x73\x52\xf4\x4d\x74\xe4\xf5\x6c\x59\x46\x02\x1e\xf6\xd5\x7e\x9f\xda\x26\xd3\xcd\x6c\x38\xcc\xc1\xc5\xf9\xfc\x02\xe7\x35\xa9\xf7\xfb\xe9\x0c\xe9\x4b\x67\x83\xd9\x74\x33\x43\x28\x34\x68\xc7\x78\x52\xda\x12\x78\xf1\xa8\xf4\xc0\x9a\xa5\xd6\x71\xd4\xd3\x72\x86\x6b\xb0\x06\xa2\xee\x49\x70\x71\x90\xbd\x49\xe8\x52\x27\x01\x38\xb5\xac\x55\x5d\x14\x56\xd9\x5b\x1d\x7c\x9a\xee\xc7\x4f\x8a\xd9\xfb\x9c\x6e\x28\xee\xb0\xaf\x17\x07\x2b\x53\x1f\xa6\xfb\xf0\xae\xb8\xad\x3e\xab\x0f\x8a\xd3\xeb\xeb\xc3\xc1\xca\xd4\x87\xbd\x7d\xe8\x15\xb6\x65\x71\x7b\x28\xf3\x2c\x70\xa2\x5a\x5c\x35\xfc\xa4\xce\x36\xdb\xd3\xbb\x43\x9d\xeb\xd9\x2b\x11\x63\xdc\xd7\xcb\x88\x7d\x3e\xd8\xdf\x98\xd1\x3e\xb1\xe7\x3d\x9d\x68\xef\xb4\xb0\xd4\x81\xd1\x1c\x19\x46\x5f\xff\x63\x95\x97\x11\xb1\xe2\x01\x4c\x82\x57\x6d\x7c\x1d\x8a\xb4\x23\x77\x58\x3e\x96\x30\xe4\xe1\xf1\x1f\xdc\xa6\xee\x9a\x55\x87\x15\x4a\xb7\xf7\x68\x04\xe5\xd3\xa2\xb2\x07\x4e\x9c\xf9\x20\x43\xea\xba\x93\xdd\x4b\x2d\x51\x63\x9b\x6a\x87\x5c\x40\x58\x25\xc8\x97\x9d\x2e\xea\x28\xb1\x93\x3b\xa8\x05\xc1\xde\xee\x75\x6a\x3b\xd2\x39\x53\x5d\xa7\x6b\xe6\x56\x49\x54\xd7\xbe\x2c\x9d\x30\x73\xec\xd6\xd4\x4d\xf9\xab\x83\x81\x0e\x3f\xb8\x3a\x38\xe1\x3d\x57\x07\x53\x57\x87\x73\xfa\x85\xd8\x37\xa6\x6e\x8b\x5e\x56\x2c\xf2\x47\x3e\x79\x6e\xad\x40\xdd\x3b\xbb\x89\x1a\x8f\xcc\xaf\xab\xb2\x6f\x86\x93\x55\x7e\xf1\x1c\xdb\xe6\xfe\x77\x66\x39\x8a\xb9\xe8\xf2\xfb\x2d\xfd\x44\x62\x85\x7e\xd4\xba\x8a\x53\xd7\x47\xab\x36\x7a\x57\xa7\x53\xdb\x91\xb5\x31\xd5\x75\x56\x46\xdb\x81\xbf\x15\xe5\x36\x51\xa3\x31\x12\x9f\xd4\xc9\xc6\x65\xaf\x84\x8c\x19\xb9\xc4\xd3\xfb\xf7\xf4\x6e\x92\x19\x5d\x49\x86\x2b\x2a\x27\x1d\x4b\x94\x53\xa5\xd0\x06\xdf\x86\x05\xda\xe3\xd1\xc5\x9a\x66\x86\xc0\x9c\xec\xf4\x78\x1a\x8f\xe7\x07\x8a\x36\xc1\xb0\xa6\x0b\x39\x23\x3f\xc0\x3f\xa0\x1f\x5c\x4a\x72\x6f\x49\xf6\xe4\xfc\x02\xb7\x8d\xaa\x94\xd7\x5b\x6a\x7e\x5d\x1a\x13\xab\xda\x28\x0d\xde\x49\x72\x0f\xf9\x20\x2a\x89\x97\xce\x77\x7c\xb2\x94\x0d\x5e\xbb\x4c\x1b\x5e\x31\xe0\x20\x00\x52\x96\xee\xfc\xb9\xb3\x17\xdf\x82\xe0\xa8\x3b\xfb\x6a\x85\x7f\xd5\xa6\x67\x63\x0a\x57\x35\xc7\xdb\xe4\x57\x10\x35\xb5\x42\x12\x07\xad\x25\xcf\x11\xa1\x4e\xf9\x12\x39\xc4\x5a\x18\xba\xae\xe0\xf1\xab\xc6\xf5\x92\x08\x79\x10\x2e\x49\x9e\x03\xea\x6b\x83\x26\x79\xa7\x3f\x74\x3c\x9f\x6b\x45\xe1\xcb\x92\x3f\x75\x93\x77\xd5\xf3\x3c\xdf\x49\x34\xe9\x33\x74\xab\x89\x95\x08\xd3\x69\x25\x61\xa7\xf7\x0c\xcf\x19\xf8\x2b\x39\x33\xce\x54\xab\x83\xc6\x3d\xcc\x6d\x86\x36\xf6\x2b\xb5\x6a\xb9\x2d\xab\x2a\xea\x94\x74\x6b\x26\xdd\xdf\x1b\xb6\x65\xce\x04\xa8\xea\xb2\xba\xb9\xf7\xf4\xce\x5a\xe9\x2a\x59\x0a\xaa\x48\x8a\x5a\xac\xad\x3c\x25\x3d\x56\x08\x0c\x61\xd9\x8b\xf7\xf4\xee\x8a\x4e\xec\x9f\x3a\x4e\xc0\xd7\x6f\x96\xa2\xc3\xa8\x08\xa3\x37\xd7\x43\x18\x8d\x5c\x62\x71\x0d\x05\xe5\xfa\x9d\x53\x84\xd0\x44\x80\x6f\x8d\xf9\x44\x8d\x13\x3e\xb0\x61\x57\xd1\xd3\x4e\xa6\x95\xa4\x8d\xff\xc8\x10\x06\xd1\x69\x55\x5d\x12\x1d\xfd\xf7\xbc\x5b\x77\xf8\x15\xac\xc0\x37\x6e\xc9\xac\x97\xb6\xfa\x7b\x34\x0a\x03\xdc\x82\xb9\xd2\xa7\xa2\x90\x66\x48\xe1\x43\xa9\x59\xce\x48\x01\x5f\x8b\x5b\xda\xa1\xdd\xfa\x23\xeb\xdd\xd6\xd9\x32\xe1\x26\xb1\xdb\xc7\xa8\xce\xb7\x47\xbc\x2b\x96\x85\x2c\x4e\xf5\xad\xe8\xc9\xab\xe6\xea\x01\x12\x7b\x78\xa1\xc2\xb2\x44\x9e\xe2\x38\xd7\xdb\x41\x3d\xbe\x3b\x49\x1e\xfe\xf7\xf4\xfa\xc1\x7f\xfd\x6e\x36\xfe\xc3\xf4\x1f\xe3\xd9\x43\x7c\x2b\x81\x52\xad\x64\x7e\x49\xff\x88\x13\x1d\xbe\x93\x0e\x21\x03\xe1\x9b\x63\xa5\x83\x58\xcc\x71\xa6\xbe\xf8\xd0\xfb\x85\x3e\x49\x0e\xbc\x6f\x60\x11\xfd\x60\x4b\xd0\x09\x75\xb1\x96\x52\xd5\x33\xff\xb2\x7a\xf4\x2e\x73\x95\xc9\xd1\xa5\xaa\xec\xa3\x24\xf7\x06\xd7\xe7\xfc\xc2\x55\xa6\xfe\xd6\x48\x21\x93\xf3\x8b\x06\x3f\x95\xe4\xe1\x3f\xc6\xff\x41\x8b\xc5\xfa\x77\x0f\x1f\xe5\x32\x98\x7d\xe8\xca\x7b\x14\xe2\x08\x13\xa9\x21\x53\x3e\x49\x12\x96\x1c\x7c\x92\x63\x87\xb5\xd4\x77\x17\x7a\x30\xa6\x0b\xe3\x8e\xf6\xc9\x43\x2a\xf5\x7e\xe5\x0a\x84\x5f\x59\x04\xa3\xfe\x24\x81\xc2\xc5\x10\x79\xd0\xa0\xc0\xef\xb0\x1d\xfd\x04\xfe\x87\xdf\xe5\x3e\xce\x49\xce\x70\x9b\x3a\xc4\xd0\x51\xc2\xf7\x66\xdb\x43\xf4\xc1\x7b\xbb\xd5\x90\x31\x80\xa9\x4f\xf6\xfb\xfb\xc6\x02\x5f\x41\x15\xd4\xb8\x3e\xa8\x3a\x1d\x1a\x7f\xcb\xde\xec\xe3\x51\xec\x74\x5a\xd3\x9e\x33\xac\x78\xcc\xd6\xb6\xeb\x5e\xe4\x03\x34\x1c\x86\x98\x54\xd6\x7b\xb8\x83\x4c\x35\x48\xba\x4a\xb2\xa9\x00\xb4\x8b\xa9\x70\xf6\x5a\xea\x2c\xd4\x60\xe7\x6d\x1a\x18\xc7\x6d\xca\x0d\x32\x1e\x00\x6a\x0b\x8e\x92\x0a\xed\xa1\xae\xca\x1b\xb3\xfd\x5f\xb4\xd9\x5e\xc4\x0a\xa3\x5c\x6b\x42\x35\x16\x00\xd3\xf8\x58\xf7\xb1\x09\xd5\xa9\x1b\x0d\x00\x63\xba\x11\xee\xa3\xf1\x01\xf1\xa0\x90\x93\xd2\x44\xa9\xf5\xa3\xce\xb7\x3d\x21\x21\x6c\x38\x02\x9f\xc7\xff\x69\x32\xad\x61\x9d\x53\x41\xcf\x49\x9b\x04\x06\xa0\x5a\xf1\x9e\xb7\x4b\x0b\x0e\xa3\x6f\xcc\x43\xed\x2f\xea\x90\x60\x1c\x2a\x45\x3c\xa9\xfa\xa7\xfd\xf5\x56\x5f\x2d\x60\x59\x35\x46\x9d\x9f\x98\x5c\xbf\xd5\x5b\x26\x7a\xb5\xd8\x94\x37\x37\xe0\x93\x6c\x31\xbd\x54\x97\x13\x5d\xe8\x50\xf1\x0e\x18\xe5\x61\xf0\xb1\xec\xf7\x23\x39\xfa\x7d\x16\x82\x8f\xfd\xbe\x05\x3e\xa6\x5a\xf6\xfd\xe9\x9b\x33\x0f\x44\x86\x05\x35\x37\xa8\x05\x24\x53\x6c\x42\x40\x9b\x0e\xd4\x12\xce\xa5\xdb\x18\x76\xf8\xf1\x7c\x1d\x54\xda\xbb\x63\x38\x68\xfd\x26\x34\x8c\xc1\xf0\x0c\x87\x45\x4e\x33\xa1\x18\xed\xaf\xb8\xde\x33\x1d\x26\x24\x46\x1c\x06\x98\xe8\xf6\xd1\xd0\xf8\x1e\x11\x18\x7e\x84\x4c\xa6\x01\xe5\x00\xa1\xac\xb4\x7e\xfe\x3d\xd3\x10\x84\x5a\x16\xc3\x61\x45\x08\xa9\xaf\xea\x49\xfe\xc1\x84\x1e\xe0\x62\xbf\x0f\xb6\x3a\x37\x06\x07\x1f\x28\xa0\x0e\x54\x8d\xe7\xb6\x78\xad\xa7\xd5\xa2\xeb\x77\x06\xd6\xa5\x72\x89\x1c\x10\x6d\xfa\x14\x3a\x22\x73\x8d\x30\x63\x69\x92\xd9\x0c\xc1\x29\x47\x10\xe0\x96\x3c\x8a\x34\xea\xba\x50\x5d\x17\x50\xb8\x4b\xcb\x02\xe4\x5d\xb6\xca\x45\x04\xd0\xa7\xbf\x49\xfa\x87\x06\x2d\x68\x87\xdf\x57\x10\x00\x70\x2d\xd3\xe9\x5b\xa5\x87\x28\x66\xfd\x89\x29\x0f\xa4\x7e\x17\x9d\x08\x62\x31\x2e\x36\xea\x1e\x23\x10\x62\x1f\xdf\x6c\x90\x52\xcd\x25\x9b\x70\x59\x2c\x73\x89\x29\x6a\x9b\x11\xeb\x5d\x72\x46\x00\x04\x5b\xb4\x71\xcb\x87\xc3\x88\x1c\xb6\x5c\xb3\xfb\xf6\x42\xa2\x9a\x78\x59\x5b\x4a\x0b\x0b\x91\xdf\xa9\xe8\x40\xe3\x1e\x0d\xbe\xbb\x1b\x0e\xb4\xd5\xb7\x21\x7e\xb4\xfe\x83\x7a\x92\xd5\xc5\xd5\x77\x48\x5d\x3a\xdd\xa9\x9c\x9d\x13\xf2\x4a\xc2\xad\x2a\x67\xe4\x95\xc4\xd1\x89\x02\x52\x76\x28\xc0\xa0\x8d\x52\xeb\xdb\xef\xf4\xfb\x18\xd3\xa5\xaa\xe6\x34\x11\x33\xa0\xa3\xa0\x0f\x7d\xc6\xdc\x67\x4d\xfe\x1e\x0d\xae\x23\x3b\x58\x08\xd0\x19\xbd\x81\x17\x21\x43\x09\x4f\xe0\x68\xbc\x05\xd7\x9d\xd7\x70\x40\xde\xcb\x6e\xe6\xda\xc0\xf7\xc7\x85\xa3\x7f\x64\x7c\x59\x7e\xbc\xd2\xff\x8c\x77\x54\xac\x4a\xb1\x2d\xf8\x82\x02\xcb\x75\xdf\x60\x49\xe8\x98\x97\x1f\xf7\x7b\x3a\xde\x96\xbf\xbe\xd4\x7f\x7d\xa4\x37\xef\x99\x34\x3f\xb6\x95\xf9\xa3\x7c\x59\x7e\x74\x7c\xe0\x95\x4c\x25\x32\xd4\x6f\x47\xea\xee\x7b\x52\x48\xda\xe8\x04\x97\xab\x4d\x71\x7b\x4b\x97\xcf\xe0\x98\x42\x06\x5c\x17\x14\xd0\x7d\xd5\xb3\x90\x22\x47\x9a\x40\x3c\x76\x5f\xbf\x91\xe4\xfe\x96\xca\xb3\x92\x53\xb8\x65\xfd\x35\x28\x9b\x06\xbf\x70\xe5\x7e\xd6\x92\x44\x9d\x4f\xb3\xea\x8e\x2f\x32\x9c\xe9\x00\x84\x2a\xc3\x99\xf1\x8c\xc9\x66\xf8\xde\x46\x08\x4d\x7c\xb0\x10\x56\xe5\x27\xf7\x1a\x0e\x6f\xf2\x09\x03\x98\xe3\xe4\x55\x83\x4d\xfc\xf8\xdf\x6a\x5a\xd3\x89\xaf\xae\xe4\x7f\xa1\xb7\x8c\x47\x4a\xb2\x05\x1d\x2f\x6a\x21\x28\x97\x6f\x6a\xfe\xbc\x2c\x77\x84\x36\xb8\xe4\x4f\xf9\x72\x12\x1f\x98\x6e\x41\x09\x05\xd5\xd8\xde\x15\xe2\x96\xca\xc9\x1b\x69\x1f\x68\x68\xb9\x49\x66\xc6\x9e\x35\x68\xb0\xa0\x00\x9a\x9d\xd8\x92\x3f\x4b\x78\x93\x04\x35\xc4\x0b\x0a\x0b\x99\x88\x2c\xc3\xe2\x9f\x06\x48\x48\xe3\x6c\x02\xfe\x69\x5f\xdd\xc2\xd7\x6d\x82\x6d\xc1\xa9\x5c\x4c\x79\x58\x37\x77\x75\x9b\x61\x9b\xc1\x2d\x28\x96\x36\xf6\x5b\x28\xd6\x1b\xc6\xe7\xf2\xe3\x91\x9f\x25\xee\xce\x33\x30\x4c\x0b\x3a\xfe\x45\x2d\x67\x45\x7e\x96\xfa\x2f\x08\xe1\x87\xef\xd5\xa2\x86\x13\xf4\xb3\xd4\xcf\x72\x3d\x7f\x34\x9e\xbe\x9f\xa5\x7a\x62\xde\xd9\x0c\xbb\xe9\x65\xb1\x6f\x7b\x97\x66\x5d\x54\x6f\x4d\x99\xe5\x3b\xb6\x4d\x1b\xd8\x7e\x96\xaa\x9c\x7e\x6d\x9a\x5d\xa8\x33\xbe\xe9\x7e\xf1\xb3\x8c\x5e\xd9\x4e\xde\xf1\x45\xbb\x94\x9e\x22\x9b\x3f\x70\x38\xec\x3e\x33\xf3\x05\x5f\xdb\x24\x51\x50\xdd\xa6\x90\x71\x2a\x60\xdf\x4f\x78\xd5\x3b\xda\xb2\x95\x55\xf7\x37\xdf\x88\x72\x5c\x73\x0d\xc7\xe1\x0e\x2d\xc2\xc1\x3a\xbc\x52\xc3\x72\xbd\x93\xf1\x12\xbe\x4a\xe7\xfc\xed\xfd\xbc\x35\x38\x4e\x3f\x75\x89\xf6\x6f\x3b\x38\x10\xf4\x2f\x61\x44\xad\x89\x96\xe1\xb6\x48\x49\xe8\x6e\x63\x40\xee\xec\x05\x1d\x2f\xe9\x4d\x59\xf7\x8e\xd8\xbe\xed\x1d\xad\x12\x82\xa4\xec\xdb\xf7\xf6\x6d\xef\xe7\xf3\x62\xb9\x04\xea\xda\xe2\x2a\x40\xcb\xe3\xb7\x9e\xd5\x3d\x51\x34\x1c\x06\x1b\x52\x47\x0a\x75\x8b\x49\x34\xba\xc4\x17\x98\x9a\xab\xe4\xdd\x11\xed\xdf\x5c\xd0\x5b\x56\x49\x71\xa7\xee\x5d\x63\x0c\x2e\x05\x7d\xce\x6e\x9e\xa9\x0a\xc9\x45\x4a\x0d\xa8\x24\xea\xe7\xec\x46\x14\xe2\xee\x2f\x10\x0d\xdb\xd5\x26\x3b\xc5\xaf\xad\x1f\xc4\x79\x83\x82\xe6\x35\x33\x5c\x87\x82\xae\x72\x31\x95\x33\x0d\xce\x42\x88\xd3\x11\xa8\x87\xed\xc0\x00\x55\x1b\x15\x07\x85\x32\xdb\xa4\x6d\xce\x69\x01\xa2\x3e\x03\x8a\x6e\x6e\x30\xd0\x3a\x03\x1f\x8d\x10\x6e\xd5\x66\xa6\x9c\xe3\x0b\xac\xad\x2d\x14\x7f\xa0\xa2\x62\x25\x9f\xc8\xa6\xed\xb5\x6e\x3b\xfa\x58\xd7\xa9\x9a\x4d\x29\x42\x6d\x31\x18\xc6\x79\x3b\xc0\x69\x49\xdf\x74\xc7\x1b\x3b\x0c\x24\x46\xe5\x54\xe8\x03\x09\xde\xfa\xad\x61\xf8\x8d\xd2\x33\x40\x81\x2f\x91\x55\xae\x3e\xd1\x7c\xc5\x3b\x89\x5f\x1e\x0b\xd2\x6b\x47\xaf\xb7\x33\xcd\x47\x29\x75\x34\xd7\x78\x5c\xf7\xbb\x13\xb4\xa2\x7c\x01\xa2\x7c\x42\x05\x6c\xad\x22\x95\x74\xdb\x57\x6b\xc5\x0f\x45\xb4\x78\x60\x59\xb9\xdf\x47\xb1\xf1\xc6\x3b\x3f\x68\xd4\xba\x01\xab\x26\x5c\x12\x63\xd0\x88\x71\xad\x11\xd3\xb9\x13\x7d\xcb\xa5\xd5\x44\x1a\x4c\xdd\xd6\x7a\xc6\x81\xaf\xbe\x2b\xaa\xe9\x56\x67\xca\x6e\x67\x8a\x44\x67\x00\x35\x16\x0c\xc5\xc6\x10\xaa\x7e\xe1\x9c\x93\x22\xa0\x1c\xe8\x9b\x07\x97\x01\xe4\x02\xc7\x97\xa1\x0d\xc1\xc6\xa8\x75\x37\x20\xab\x9e\x6e\x77\x32\xe9\x75\x6a\x8d\x2c\xaa\x86\x43\x41\x8a\x0e\x03\xde\x95\x8e\x43\x8e\x65\x0c\x2e\x16\x0c\xab\x3d\xfc\x0e\x31\x30\x06\xfb\x4e\x63\xe7\x61\x63\x01\x74\xb8\x9f\x3c\xb6\xca\xbf\x4a\xa8\x6b\x03\xa4\x08\x1e\xaa\x8a\x8d\x98\xed\x2f\xa4\xcb\x19\x68\x17\x90\xc7\xc4\x48\x84\x57\x52\x88\xae\x6c\x87\x15\xc9\x12\x6e\xbc\x3e\xa9\x4a\x75\xcf\xe8\xf5\x0f\x86\x86\x59\x81\x88\xd3\x8f\xb9\x8b\xdc\xf3\x09\x00\x07\x01\xd5\xf6\x27\x68\x69\x9c\x85\x82\x67\x08\x53\x7d\x7e\xe0\x85\xe9\x5c\xae\x9e\xc2\xd6\x70\xf3\x88\xa9\xa1\x08\xcf\x8e\x5d\x28\x80\xdb\xad\xce\xf8\x4b\x19\x07\x40\xf4\x9e\x5f\x73\x64\xbf\x94\x72\xb4\x8d\x52\xdd\x2d\x10\x1b\x26\xa0\x37\xd3\x70\xd7\xcd\x9a\x53\xcc\x8b\xdc\x07\xbb\x54\x2e\x90\x47\xd7\x86\xcb\x18\x64\xa3\x20\x0f\x00\x6f\xe1\xea\x62\x42\x3d\xf4\x57\xb1\x5c\xe6\x05\x2e\x11\x06\xa8\x23\x19\x0c\x9e\x1b\x44\xf3\xe3\x14\xe3\xf8\x71\x0a\x3a\xc9\xe3\x4e\xb2\xe4\x51\x3b\x97\xa6\x95\x9c\x62\x16\x44\xdd\x6b\x20\x4d\xd7\x45\x8d\xbd\xde\x25\x11\xed\xd3\x1e\xcd\x35\x20\xbd\xaf\x8b\x0a\x18\xae\x2f\x3c\xba\xda\xdf\xa6\x0b\xf9\x91\x3a\xc0\x57\x8a\xee\x85\xa7\x34\xb8\x51\x44\x60\xcf\x83\xe3\xcc\xb1\x36\xaf\x09\xa4\xb3\xf2\xa0\x49\xba\x74\x1e\x17\xc3\xc1\xd0\x2c\xca\x9f\xe8\x04\x0f\x26\x6f\x33\x83\x7c\x1f\x1a\x71\x4f\x3d\x1c\x07\x49\x81\xe9\xe9\xce\x28\xaf\x20\x80\xd0\xde\xe0\xdf\xfe\xeb\xd4\x8c\x46\x43\x00\x3e\x39\x44\x46\x3f\x0f\xa9\x14\xdb\xc7\x3b\x30\xb4\x5e\xc1\x09\xcf\x29\x9a\xa8\x3f\x9e\xc9\x03\x0a\x38\xdb\xfb\xc8\x6a\xa7\x91\x23\xae\x5a\xd4\xc1\xf7\x1e\x4b\x34\xb1\x1c\x51\xd8\x5d\xc7\x0c\x99\x8c\x55\xa8\xa3\x44\x3b\x3e\xe5\x29\x32\x9c\xdf\x87\xad\x4c\x3a\xed\x02\xdb\x28\x9b\xfc\x99\x44\xf8\xf9\x01\x47\x11\xe7\x87\x24\xca\xad\x0b\xc7\x92\xa5\x0b\x06\x37\x9a\xba\x38\xc4\x8c\x09\x0a\x55\xc4\x8f\x05\x2d\x96\x77\xef\xca\xb7\x4a\x1c\x8e\x23\xc3\x44\xb9\x7d\x75\xf3\x73\xf7\xe1\xeb\x42\xae\x5b\xb1\x66\xa5\x2f\x98\x92\x0f\x52\x57\x95\x0c\xe2\x5a\x55\x0d\x41\x03\x2d\xcb\xab\x1e\x8c\x4e\x79\x6b\x06\x76\x7e\xd1\x71\x93\x80\xa9\xe8\xf7\x2c\x53\x6f\x53\x04\x55\x96\xfd\x1f\xb9\x09\x8d\x3f\x39\xac\x06\xf5\x5d\x4c\xb6\xd6\x45\x20\xd1\xf7\x76\xf8\xed\x55\x36\xd5\x7f\xcc\xb2\x49\x96\xd9\xac\x24\x00\x99\x38\x36\xce\x7c\x5f\x67\xa3\x00\xc9\x54\x9d\xc3\x51\xf6\x4d\x9e\x8d\xfc\x68\x47\xd9\xd9\x83\x6f\xce\xec\x13\x59\x8e\x32\x94\x8d\x68\x9b\x6e\x00\x52\x73\x47\x98\x10\xc9\xf8\x37\x43\x67\xcd\x60\x7f\xc9\x83\x05\x03\xb9\x22\x31\x8f\x1f\x5c\xd6\xc2\xb0\x34\x06\x40\x50\x0b\x26\xa9\x01\x30\x75\x22\xd8\x9c\x93\x12\xb3\x54\x4d\xf3\x64\x4d\x28\xc8\x89\xc0\xe1\x73\xea\x6e\x62\xdd\xd4\xf7\x2e\x98\x5f\x96\x18\x92\xfc\x21\x84\xb7\x8a\xe5\x65\xf0\x1c\x67\xaa\xdc\x13\x6b\x6f\xcf\x50\x74\x82\xf6\x7b\x9d\x05\x24\xdc\xa3\x38\x93\x65\x58\x7e\x93\x53\x9c\x7d\x64\x9b\x8d\x89\xe1\xca\x4c\xa9\x25\xab\xcc\xfc\xba\x4a\xa3\x5d\x1e\x35\x84\xcf\x4b\x6b\xee\x35\x0f\xba\xa7\xf3\xbc\x7d\x32\x79\xfb\x50\xb2\xe8\x3c\x26\xf9\x07\xd7\xa9\xc4\xfe\xbd\xa3\x79\xd4\x40\xab\xfa\x93\xe6\xeb\xce\x9f\x68\x5f\x43\xcf\xcc\x25\x86\x78\x99\xe8\x73\xd4\x60\xf7\x0e\xb5\x8a\x28\x55\x41\x9e\xad\x3e\x2e\x33\xd4\x3e\x74\x27\x7f\x7d\x53\x2c\xde\xb7\x3f\x8f\x8a\xf4\xca\xdd\x8e\xba\x0e\x22\x27\xfd\x40\x95\x96\x1b\x4d\xbc\x9e\x89\x39\xfc\x40\x1d\xda\x4c\x11\xd6\xbd\xd0\x15\xc0\x78\x0c\x0a\x66\xbb\x68\x6a\xac\xf3\xb6\x5a\xd3\xe9\x9e\x4d\xba\xaa\xe7\xaf\xbe\x9b\xff\xe5\xd9\xcb\x27\xcf\x5e\x7e\xf7\xd6\x1d\x15\x58\x2b\x9d\x56\x32\x44\x3c\xb3\x3b\x32\x58\x21\x97\xc9\x32\xee\x8b\x83\x33\xb4\x3b\xa7\x26\xf1\xde\x19\xf4\xdc\x41\x76\x7c\xe5\x55\x4e\xc9\x8f\x79\x81\x6b\x84\xf9\x70\x58\x8d\x37\xe5\x6d\x9e\x9d\xe9\xd9\x72\x64\x33\x47\x38\x7b\xf0\x4d\x86\x29\x2e\xe2\x7d\x77\xf5\x7d\xee\xf7\x3e\xa6\x68\x72\x43\xc3\x07\xdd\xcd\x87\x83\x29\x6a\x7d\xdb\x20\x34\x71\x4b\x50\x02\x65\xfb\x31\x28\x71\xac\x7f\x5f\x3f\xc8\x20\xc3\x25\xbe\xa1\x6a\x38\xc9\x43\x13\xb7\xae\x4a\x09\xd5\xac\xc1\x7f\x09\x00\x9b\xe2\x90\x3c\xed\x28\x2e\xdb\xe0\xe2\x42\x11\x4e\x3a\x15\x33\x9d\x4e\xbb\x41\xf9\x73\x89\xef\x55\x8b\x93\x04\x21\xb5\x32\x53\x6e\xed\x51\x8a\xe3\x28\x0f\x96\xa4\x0e\x6e\xc7\xf8\xb0\xfe\x6a\xd4\xb4\xf1\x55\xb2\x28\x24\xfe\xab\x7d\x63\x80\xe4\xf0\x5f\x24\xb9\x6f\x06\x6f\x69\x9e\xf1\x52\xde\x94\x35\x5f\x66\x80\x4a\x9e\xad\xca\xd2\xdc\x65\x99\xae\xf4\x97\xfe\xf8\x7c\xe6\xb4\x3f\x2e\xd1\xbd\xf1\xe8\xd1\x39\x6c\xd4\xf1\x70\x29\x15\xd8\x2a\xaf\xbf\xb9\xd0\xd3\x56\x06\x59\xd5\x6a\x25\x86\x5d\x3c\x2a\xbe\xae\x1f\x15\xa3\x11\xaa\x08\x9d\x16\x33\x5c\x02\xd4\x61\x94\x32\xe6\xaa\x9a\x68\xb6\xd3\xcc\x50\x65\xb0\x41\x4c\x84\x7f\xa9\x93\x43\x84\x8f\xac\x7a\x4d\x3d\x2a\x3f\x72\x2a\x02\xbe\xb9\x85\x1d\xa0\x33\x44\x84\x0f\xa7\xde\xf6\x36\xd3\x66\x19\xf3\xf4\xe5\xf5\x8b\xa7\xc1\x53\x3e\x5e\xd2\x9b\xfa\xf6\x2d\x2d\x2c\x06\xb5\xd3\x81\x83\x46\xf9\x75\x21\x24\x2b\x36\x29\xd5\xab\xb1\x3c\xc9\x7e\xcb\x93\xfc\xe6\xf2\x4a\x3e\xb8\x9c\x5c\x20\xcc\xc9\xe5\x23\xfe\xb5\xb4\x16\xa8\x07\x97\x69\x1b\xd4\x0b\x9d\xd3\xcf\x80\xac\x75\x45\xf4\x1f\xa5\xcd\x02\xf9\x9b\x2a\xfc\xdd\xa6\x94\x1e\x03\xca\x82\xac\x77\x85\x81\x4e\x52\xe7\x69\x17\xc6\x52\x5c\xf1\x49\x2e\xe2\x78\x9a\xd6\x09\x0c\x41\xe0\xf7\x7b\xee\xb0\xc0\x20\x97\x4d\xcb\xb6\x5e\xee\x28\xef\xb2\x77\xe1\x0e\xf1\x75\x29\xa2\x17\x6d\xb5\xd6\x7b\xd4\x7e\x10\x6d\x26\x33\x68\x9d\x64\xca\x3f\xb0\x68\x3c\xf6\xf5\xcc\x3a\xd1\x05\x4f\x63\xa0\x4c\x6d\x73\xec\x38\x45\xaa\x0d\x10\x2e\xd9\x94\xcf\x50\x74\x4e\x9c\x97\xa5\x85\x47\x8b\xc6\x42\x51\xc4\xc7\xc7\xf3\x04\x3b\x36\xc5\xe7\xc1\xb6\x02\x10\xbf\x19\x06\x34\xa4\xce\x57\xa9\x7d\x9e\xfa\xb8\x8d\xfe\xb7\xa4\x32\x62\x7b\xe2\xd4\xf7\xce\x7b\x80\xef\xf7\x36\xb7\x51\x9c\xd1\x20\xa2\x11\xd6\x22\xf1\xb3\xe2\x24\x81\xc4\x5b\xb0\xd4\x08\x6e\x92\x77\xdd\x04\xd9\x70\x78\x7e\xce\xc2\x9c\x64\x2d\x46\xbe\xe3\xd1\xa2\x29\x46\xea\x4e\xc7\xcc\x6c\x1f\x3d\x66\xf4\x5b\xd9\x97\x99\x27\x54\x02\xb3\xb8\x3f\xa0\xce\xeb\xec\xef\xfb\x66\xf0\xce\x72\xca\x30\x15\xa6\xa6\x10\x16\x97\x6a\xd9\x16\x0d\x7e\x91\xe3\xb9\xde\x00\x2f\x28\xfe\x45\x8e\x57\x8c\xb3\x6a\x6d\xd7\xf5\xb5\xf6\x31\xfe\x41\x92\x5f\x82\x76\x07\x3f\x48\x2f\x3d\x99\x5a\xed\xef\x88\x34\xfe\x60\x9c\x46\x7f\x04\x64\xc1\x9f\xb4\x98\xf9\x7e\xf0\x93\x3c\x04\xff\x98\xbf\xa1\xbf\xd4\x4c\xd0\xe5\x99\xbd\x55\x51\xd6\xe0\x27\x1d\x6f\x68\xa8\xf9\xef\x92\x3c\x0b\xdf\xc4\xaa\x9a\xf7\xfe\x0d\xc2\xdf\xc7\x8e\xd2\xf8\x3b\x49\x42\xcf\x97\xc1\xdf\x65\x22\xe9\x00\x91\x14\xff\x5d\xfb\xce\x7e\x0f\xff\xa8\x5f\xce\x69\xe7\x7b\xff\xb7\x7a\xee\x1c\xa7\xbe\xf7\x7f\x43\x2f\x7f\xd7\xbd\xa3\xb5\xb6\x1f\xff\xed\x5f\xa9\x01\xaa\x16\x44\x7e\xb9\xff\x58\x5f\xb8\x8d\x51\x71\xa8\xea\x8f\x3a\x8e\xa1\x7b\xeb\x7e\x44\xad\x6e\x85\xfc\x95\xaa\x1e\x97\xdb\x5d\x2d\x63\x88\x8d\x7f\xf6\x56\x0a\x72\x6d\xe8\xa3\x48\x73\x83\xef\x12\xa4\xae\xb4\x10\x30\x90\xa5\xda\x0c\xca\x58\x81\x21\xf5\x20\xe0\xad\x41\x54\xfa\xb7\xa5\x20\x42\xf5\xf5\xb1\xe9\xab\x9d\x03\xb5\x27\xe8\xb8\xd8\xb0\xb4\x76\x15\xb8\x1c\x69\xb4\xaa\x90\x4d\xab\xeb\x76\x6d\xa8\x9a\x4c\xe5\x5b\xb7\xe4\x8c\x3a\xd4\xd7\x28\x07\x8a\xcf\x66\x3c\xe8\xb3\x6d\x4c\x19\xe1\x53\x31\x53\x3c\x28\x73\x74\x04\xd4\x0d\x4b\xba\x13\x74\x51\x48\xb7\x9e\x2d\x5b\x2d\xe6\x87\xd6\xbd\x03\x25\x1a\x47\xbd\xb5\xc3\xf3\xfe\xae\xb7\xa7\x00\xb6\x36\x1d\x9a\xf7\xa3\x29\xa2\xb8\x59\xd5\x3f\xd6\xe7\x87\x65\xf2\x15\xb7\x37\xc7\xd7\xe4\x8f\x61\x5e\x57\x9f\x37\x03\xf4\x0f\x02\x0b\x22\xb1\x07\xff\x4a\x66\x3b\x36\xbe\xb5\xdc\xde\x18\x72\xbf\xbf\x6f\x70\x49\x20\x4f\x72\xb7\xc7\xcc\xd3\xd3\xf2\xaa\xdb\x47\x5d\x87\xe5\x30\xc4\xdd\xbd\xba\x82\x4c\x03\xcd\xa2\x90\x8b\xb5\x0e\x89\xa0\x9f\x16\x74\xa7\x85\x4c\xcc\x88\xf0\x3e\xc7\xde\x4a\xcb\x9a\x5c\xe0\x12\x33\xcc\xd5\x9d\x6e\xeb\xc0\x74\x3c\xf7\xb3\xf4\x56\x16\x42\x92\x82\x46\x53\x57\xa8\x7a\xdf\xd0\xc8\x50\x82\xee\xdd\xc0\xc9\x85\xf6\xe1\x6b\xba\x1f\xbd\xad\x6f\xaa\x85\x60\x37\x7d\x28\xaa\xd4\x66\xb2\x1f\x67\x28\xd4\x46\x99\x80\x8e\xc4\x5e\xcc\xfe\xa0\x24\xb7\x5c\x6f\x48\x74\x65\x2c\xb0\xd9\xf4\xbf\xff\xf1\x8f\xf1\xec\x0f\x19\x9a\x98\x27\x0c\x01\x08\xc9\xcf\x25\xe3\x79\xf6\x8f\x7f\xa8\xfa\xcb\x11\xc9\xf2\x7f\xfc\x63\x3c\xfe\x03\xba\xca\x4c\x04\xc0\xfd\xae\x90\x92\x0a\x3e\xa1\x18\x72\x49\x83\x70\xf0\x86\xde\x3e\xfd\xb4\xcb\xb3\xff\xce\x46\xe5\x28\xfb\x9d\xfa\x54\x7b\xb1\xcb\xc6\x2e\xd5\x5b\xe3\x9b\x52\x20\xe3\xbf\x58\x24\x46\xff\x03\xaf\x12\xe3\x6f\xc3\x51\xf5\xa6\xb9\x86\x1c\xd7\x46\x3d\x20\x88\x44\x83\xb7\x32\xb4\xda\xfb\x49\xbf\xa5\xf2\x95\x76\x9b\x4b\xe8\x7d\x1e\x83\x2a\xb5\x4a\x14\xa1\xe8\xfe\xb1\x24\xd4\xbc\x7e\xc2\xaa\x9d\xda\x4e\xaf\x3e\x50\x21\xd8\x32\xee\xf1\x0b\x53\xee\xf6\x50\x39\xcf\xa9\x41\x93\x2f\x9e\xbe\xbb\x9e\x3f\x79\xfa\xf6\x31\x59\x4a\x6c\xfc\x40\xff\x82\xad\x95\x2b\x8e\xa6\x4c\xb3\xf4\xde\xff\x1b\x32\x4f\x3b\xcc\x40\x55\xbb\x41\x01\x51\x35\xcf\x6f\xa9\x04\x0d\xd9\x4f\xba\x87\xe4\x47\xfd\xef\x4f\x4c\xae\x9f\x98\x3b\x22\xed\x41\xf2\xa3\x8e\x10\x69\x0b\x0d\xfc\x4a\x4c\xb8\x99\x16\xf2\x77\x4c\xc7\x52\xdc\xbd\x55\x17\x36\xa6\x63\x13\x10\x4b\x7e\x47\xfd\x8f\xd7\x06\x1e\x9d\x7c\x07\x74\x7c\xe9\xf0\xcf\xc8\x06\x83\xcd\xcc\xe3\xa1\xf9\x11\xf7\xa4\x96\xf7\x81\x3c\x31\x93\x6a\x43\x78\x3a\x59\x46\x72\x91\x64\x43\x99\xbb\x98\x1a\x63\xf4\xd5\xa8\x6d\x6a\x03\x0c\xe8\xb8\xe4\xff\xaa\x8b\x32\x48\x06\xe5\x8d\xa1\x9d\x4c\x6f\x84\xe9\x8b\x51\xfb\xd0\xbb\xf9\x5a\xc0\xa4\x73\x9d\x18\x82\xac\xd5\xaf\x38\xeb\x06\x59\x76\x9f\x55\x64\x87\xe9\x38\x4a\x29\x71\x74\x67\xb5\x67\x4c\x5c\x89\xb8\x86\x1c\x4d\x00\xa5\x7f\xcc\xaa\x97\x25\xa7\xa4\x02\x92\x68\x3c\x24\x6a\xfd\xe3\x2f\x9b\x82\xbf\x27\x1b\xfd\xe3\x35\x98\xd9\x53\x11\x93\xe7\x90\xd1\xbb\xd1\x88\xe1\x64\xa1\x8a\xbf\x0a\xd2\x03\xfc\x5d\x3d\x00\xef\x4b\x7b\x37\x6a\x45\x52\x45\x3e\x61\x00\x26\xe5\xb7\xd4\x67\xcf\x24\xd7\x18\xfc\x33\xdb\x65\x5f\x61\x3a\x2e\xcd\x91\x34\xf8\x1d\x4f\x0d\x1e\xb7\x2a\xe6\x95\xa4\xf3\xe0\xe9\x4f\x6c\xb3\x31\x8f\x3f\x60\x3a\x4e\xc0\x91\x93\xbf\x51\x38\xb2\xe1\xd5\x4d\x1e\x63\x3a\x0e\x62\x0e\xde\xab\x33\xb8\x2e\x2a\x38\x92\xcb\x16\x73\xc3\x68\xec\xe0\x29\xc9\x39\xec\x48\x98\xec\xef\xe9\x1d\x79\x83\xe9\xb8\xe6\xee\xe7\x0b\x75\xb6\x55\xff\x5f\x96\x4b\x4a\x4a\x75\xbe\xb5\x04\xd1\x8b\xa5\xd2\x83\xdb\x12\x86\x8f\x00\xa8\x69\x84\x6a\x1d\x42\xf4\xb5\x81\x4f\x72\x34\x1c\xb6\x31\x5c\xf2\x9f\x91\xdf\xae\x61\x3b\xe4\x57\x3b\x18\x20\x41\xef\xfc\x68\xe0\xf7\x13\xd8\x1b\x3d\x38\x28\x66\x13\xfe\x17\xfc\xfa\xe6\xa2\x19\xb8\x6f\xc9\xff\xb5\xb5\x92\xbf\xb9\xbd\x2d\x1e\x03\x5a\xf3\x7f\xc1\x79\xbe\x11\x85\x50\x73\xfb\x44\xcd\xd0\x73\xf7\xf3\x9d\xfa\xa9\xe8\xd3\x33\xf3\x47\x48\x04\xbf\x55\xcf\x5e\x89\x25\x15\x74\xa9\x76\xde\x4b\xa9\x09\x65\x6a\xa9\xdc\xf4\xde\x37\x58\xf8\xd3\x8e\x39\xd1\x39\x77\x53\x06\xf9\xe1\x30\xce\x33\x11\x1a\xe7\xb5\xfd\xe7\x22\xac\x4b\x3d\x7d\xc4\x7d\x8e\x4c\xae\x69\xcb\x94\xcf\x66\x40\x99\x35\x14\xa2\x65\xb4\x0d\x3d\x4e\xf6\x35\x98\xcc\x43\x8c\xf0\x95\x9c\xe4\xd7\x6d\xc0\xfc\x2f\xe0\x87\x35\xf3\x01\x81\x68\x06\xa5\xa3\x41\x26\xb4\x9c\x7e\xda\x15\x3c\xdc\xfb\xdf\x61\xea\x42\xbe\xec\xa9\x27\x37\x34\xf1\xb4\x0d\x18\x17\x65\x7d\xdf\xa9\x67\xe3\x6d\xb1\xcb\xd7\xd4\x65\x7e\xd7\x97\x8d\xab\x75\xab\x6a\x75\x49\x46\xbe\xed\x84\xf1\x59\xdf\x75\x9b\x40\x3e\xd8\xd1\xae\x8e\x3b\xe8\x59\xb1\x5c\xea\x8c\x9e\xee\xf9\x2d\x3c\xd7\x85\x5b\xaf\x3e\xa8\x57\xa0\xed\x20\xbf\x48\x2b\xc7\x68\x77\xfe\x3e\x69\xe6\x89\x25\x88\x73\xb6\xdd\xd2\x25\x2b\xa4\xaf\xae\xad\x7d\x30\x6a\x8f\x8b\x47\xb4\xab\xc4\xa2\xa3\x11\xf2\xdb\xc9\x27\x6c\x7f\x69\xfd\x70\x41\x18\x08\x3d\x71\xe9\x78\x7e\x13\x77\xff\x5f\x72\x0d\x02\xb8\x5e\x98\x38\xd1\x45\xea\xb5\xd2\x22\xfa\x7c\x88\xb8\x0e\x93\xf3\x5e\x6a\x75\x4f\x22\x1f\x63\x39\x1c\xe6\xaa\xf2\x8b\x59\xf0\xc5\x25\x42\x18\x92\x2e\x6a\x1c\xfa\xda\x67\xc2\x61\xe8\xbb\xbc\x9e\x32\x48\xa8\xc8\x56\xc9\x0a\x51\x14\xdf\xa9\xee\x69\x93\xb7\xa4\x35\x55\x67\x4a\x64\xa0\xcb\x33\xa3\x3d\x3a\x2b\x5c\x18\x44\x76\x20\x59\xa3\x4d\x0d\x0b\x29\x1b\xb1\xc9\x0c\xfa\xbf\xad\xc7\xbe\x44\xe0\xd2\xe6\x4e\x07\x79\x49\x61\xef\x6b\xbd\x50\x82\x85\xfd\x09\xe8\xcd\x9b\xa7\x7f\xfb\xe1\xd9\x9b\xa7\x4f\xc8\x4f\x52\x33\x72\x3f\xf0\x9d\x28\x17\xb4\xaa\xe8\xb2\x8d\xcd\xe4\x45\x50\xf8\x14\xfc\x7e\x0e\x16\x07\x1d\x96\x96\xa1\x25\x5d\x48\x63\x2f\x21\x6f\x55\xcf\xec\x8f\xe7\x72\xd0\x8e\x66\x89\xa3\x88\x4c\x72\x66\xf5\x28\x48\xcd\xac\xf9\x96\xef\x36\xe5\x4d\xb1\x81\x6b\xe8\x17\x4c\xc7\xcf\xf8\xcf\x80\xc4\xec\xae\xf1\x67\x54\x93\xd4\xbf\x16\xd5\x8f\x8c\x7e\x8c\x37\xe6\x8f\x54\x73\xfc\xb2\xb8\xfd\xb6\x14\x3d\xd2\x7d\x5a\xc9\x4a\x9d\x92\xd5\xf9\x76\x97\xe3\xc7\xaf\x5e\xbe\x7d\x77\xfd\xf2\xdd\xfc\xdd\xf5\x77\x3a\x91\x41\x18\x87\x09\x09\xa2\x21\x7d\x01\xb7\xe0\xa7\xb9\x43\x7e\xb9\xcb\x29\x76\xd2\x34\x8f\xa0\xf4\x72\x64\xd2\xc6\xbb\x08\xd6\xfd\x5e\xc7\xd8\x6d\x0d\xb4\xb8\xee\x3f\xb9\x53\x3b\xaf\x10\xef\x35\xa5\xbf\xae\x9e\x30\x35\x9a\x5b\xd8\x04\xbb\x4d\xb1\xa0\x09\xf5\x80\xc3\x70\x22\xd3\x99\x0d\xc1\xe1\x08\xa4\x53\x5c\x10\x89\x2b\x22\xba\x29\xd9\x1f\xb9\x64\xa6\x28\xaf\x49\xf5\xcd\x9f\xe9\x9f\xae\xfe\x4c\xff\x34\xa9\x90\xc6\x42\xaf\xc9\x05\xc2\x1b\xe2\xd2\x0c\x5e\xe0\x3f\xd3\x3f\x41\x22\xe3\x02\xd7\xae\x99\x0d\xc2\xc5\x88\xfc\x99\xfe\x09\x57\x0f\x48\x8d\x95\x24\x6b\xde\xfc\xce\x18\x84\x72\x8a\x37\x5e\x0d\x05\x27\x6b\xc9\x96\x6f\x20\xd3\x95\x8f\x46\x2b\xaa\x8a\x0a\xf9\xb2\x94\xfa\x05\x5d\xfa\x57\x1d\x8c\xd9\x96\x8f\x55\x37\x75\xa8\xc7\xeb\x89\x52\x59\xb6\x58\x6b\xa4\x44\x35\xbf\x86\x7a\x83\x3b\x5e\xb1\xe7\x42\xf8\x9b\xde\xb5\xbd\x99\x67\xe6\x73\x5a\xbd\x28\x97\xf5\x86\x66\xf8\x5e\x83\x21\x9d\x5f\x34\xea\xda\xa5\x79\x06\xf4\xe6\x81\x28\x6b\xc9\xf8\xed\x43\xfa\x49\x3e\x5c\x94\x5c\x8a\x72\xb3\xa1\x22\xc3\xd3\x8c\x7e\x82\x74\x55\x19\x36\x25\x95\x24\xba\x71\xbf\x44\xcd\x25\xdb\x52\xff\xdb\xd4\x53\x4b\xb6\xa9\xb2\x19\xee\xee\x8b\xac\xae\xe8\x59\x25\x05\x5b\xc8\x6c\x20\xc6\x8f\x5d\x63\x70\xc6\x8d\x95\x28\xbf\x4f\x27\xc7\x9f\x4c\xb3\x5f\x6a\x2a\xee\x5e\x17\xa2\xd8\xaa\xfa\x83\x5f\x00\xf0\x84\xe7\xbf\xec\x9e\xd0\x0d\xbd\x2d\x24\x75\x0f\x34\x93\x1e\x05\xd8\x09\x1f\x36\x5d\xd5\x37\x95\x14\xf9\x05\x16\x2e\x53\x1f\x7a\x94\xab\x45\x0e\xea\x42\x39\xc7\xf9\x85\xf6\x82\x44\x70\xa2\x50\x83\xa5\x28\x78\xc5\x54\x8d\xef\xca\x37\x65\x2d\xe9\x24\x61\x89\x50\x97\x99\xff\xd2\x98\xdb\x21\x7e\x2f\x53\xc7\xaf\x1c\x77\x6a\xd9\xef\xe3\x87\x27\x98\x2e\x4c\x9e\x43\x48\x70\x28\xa6\x2c\x24\xe7\x5e\xe5\x58\x98\xbd\x5f\xaa\x91\xf0\xf1\x4e\xd0\x15\xfb\x04\x2d\xbe\x2c\xb6\xf4\x5a\xdc\x22\xab\xfe\x43\x0d\x36\x07\xfb\xcb\x87\x15\x56\xa0\x46\x64\x7e\x2b\x8e\xfa\xff\x8f\x01\x41\x7e\x25\xab\xf3\xee\x6c\xbb\xbe\xa3\x20\x6a\x3e\xdf\x94\xe5\x0e\x0e\x42\xb0\xfd\x67\x11\x02\x4d\xb4\xa5\x41\x4e\xf5\x01\x4b\x79\xa6\xea\xa3\xe2\x9d\x5b\xd0\x2a\x88\x38\x4d\x9e\x41\x88\x45\x48\x1d\x3d\x5b\x60\x53\x2e\x40\x43\xf6\xb0\xd8\xb1\xfe\x97\xbc\xe4\x74\x6e\x7f\xf5\x17\x5b\x17\xd5\xfa\x94\x62\xac\x92\xa5\xb8\x3b\xa1\x64\x51\xcb\xb2\xbf\x58\x75\x57\x49\xba\x7d\x78\x4b\x39\x15\x85\xa4\xf3\x90\xd8\xa4\x8b\xfa\x12\xf3\x55\xd9\x5b\x6a\x59\x6d\xfa\x5e\xe9\x05\x38\xf8\xb6\xef\x25\x90\x97\xf9\x4e\x53\x9b\x4e\x19\x2a\x3e\xb0\x05\xad\x1e\x9a\x07\x87\x0b\x1c\x18\x20\xe0\xf5\xb6\x5f\xc6\xdb\xef\x30\x99\xee\xd2\x59\x8d\x9a\x8c\x2b\x5c\xe3\x0d\x5e\xe0\x25\xde\xe1\x35\x5e\x75\xb6\xea\x5f\xea\xc5\x7b\x2a\xb5\x36\x90\x8e\xe1\xe8\x88\xb7\xba\xd7\xe6\x37\xe3\xb7\xfe\xc1\xdf\x3c\xb5\xb5\xc5\xdd\x67\xee\x8f\x27\x6f\x9f\x13\x70\x7a\x31\xbd\x53\x0c\x84\x12\x94\xf5\x82\xfb\x83\xf7\xad\x05\x0a\x4c\xbc\x23\x74\x7c\x5d\xcb\xf2\xb9\xd9\x45\x84\x8e\xff\xaa\xf7\x5f\xf8\xa4\xa8\xd6\xc1\xcf\x97\x25\xa7\xc1\x4f\xf7\xa7\xb9\xb2\x7b\x2f\xc7\xe7\x6e\xa7\xde\x87\xf6\x93\x8b\x3e\xf4\x42\x4b\x44\x14\x45\xe9\xad\x34\xec\xcc\x89\x15\x8b\x93\x2a\x0e\x07\x7d\x62\xc5\xfc\xb4\x8a\xe3\xf9\x3d\xb1\x6e\x76\x52\xdd\xe1\x52\x9e\x58\x71\x79\x52\xc5\xdd\x8d\x73\x62\xf5\xc5\x17\x56\xff\xad\xc5\xbe\x3c\xb1\x95\xde\x1a\x0e\xb6\x1b\x9d\x9d\x13\xdb\xaa\x4e\x1a\x91\x3b\xa1\x27\xd6\x5a\x7f\x46\xad\x27\x56\xb9\x39\xbd\xca\x13\x6b\x5c\x9c\x54\x63\x40\xbb\x4e\xac\x77\x79\x72\x4f\x3d\x91\x3c\xb1\xea\xdd\x67\xcc\xeb\xe7\xd5\xbc\x3e\xa9\xe6\x80\xee\x9f\x58\xef\x2a\xa8\x37\xc5\xb4\xc4\x3c\x49\x97\x77\x01\x2f\x14\xf7\x8b\xf2\x0f\x4c\x94\x1c\xb2\xde\xf6\x32\x12\x4a\x86\x38\x2e\x42\x78\xae\xee\x5e\xbb\x99\x4c\x12\x4a\xee\xe1\x90\x8e\xd9\x76\xb7\xa1\xce\xba\x68\x83\xae\xe3\xa7\x61\x32\x67\x61\xdc\x56\x0c\x93\x29\x22\x4d\x58\xeb\xb3\xc9\x7d\x83\x1d\xcf\x33\x11\xe3\x60\x7c\x63\xfb\x18\xcf\x6f\x41\x5b\xb0\xee\xce\x2e\xb0\xaf\xe6\xad\xe6\x59\xdd\x57\xa8\x69\x0e\x4f\x77\xcc\x6d\x75\x27\x5e\x4b\x62\x69\xe9\x2d\x5e\x94\xb6\x2c\xf7\xcf\x2c\x92\xe6\x3f\x5a\x4b\xe5\xdc\x69\xaa\x40\x80\x6d\xc9\x16\x36\xdf\x03\xc8\x63\x81\x6c\xa1\xe4\x41\x41\x25\x7d\x16\x4d\xbc\x49\x99\xcc\xbb\xb2\x04\x33\xb2\x04\xa8\x1c\x2e\x1e\x95\x5f\xf3\x47\xe5\x68\x84\x20\x9c\xd0\xcb\x12\xa5\x5d\x6d\x10\x65\xa4\xb8\x7b\xc6\x3f\x94\xef\x29\xca\x0b\x4c\x31\x43\x4d\xe3\xba\x5c\x87\x30\x46\xf9\x05\x2e\xc6\xc6\x6e\x8a\xb4\xf7\xa4\x7d\x64\x96\x50\x49\x30\xf6\x11\x50\x1e\x78\x56\x92\x5c\x04\xa1\xc6\xd6\x4d\xd3\x63\x8f\x19\xe5\xc1\xbf\x3d\xcc\x08\x21\xdc\x8b\xa6\x5f\xa1\xab\xbc\x24\x79\xe5\x9f\x5d\x22\x6b\xfc\xff\xb7\x0c\xa1\xb1\x46\xb1\x40\x38\x83\x2f\xc5\x78\xb1\x2e\xc4\xb5\x74\xe9\xe6\x1e\x5c\x22\x50\x7c\x96\xfe\x73\x84\xc5\x88\x94\x23\x86\xbd\xfd\x21\x17\x23\x92\xfd\x5b\x36\xaa\x8c\xe1\x5f\xd5\x8c\x26\x62\x44\xd8\x88\x63\xe1\xe7\x62\x13\x61\x7c\x61\x4e\xf4\xe4\xd8\xba\x5d\x96\x7c\x3b\x9c\x4c\x63\x90\xe5\xd9\x43\xf8\x6b\x7a\x01\x58\xdd\x24\x7b\x98\x8d\x38\x74\x43\x35\xaa\xfe\x6a\xc0\xa0\x62\x58\x11\x50\xbd\xd5\xda\xc6\xa2\x66\x15\x7e\x6f\x02\x29\x8e\x8d\x0d\x7d\xa3\x9f\x24\xe5\xcb\xfc\xde\x1d\xc0\x32\x7d\x00\x8d\x0c\xd3\x7a\x6d\x9e\xe2\x5b\x50\xf8\xb5\x5e\x6a\xa4\x24\x5c\x57\x54\x5c\xdf\x52\x2e\x5b\xaf\xdd\x73\xac\xd1\x32\x2c\xc5\x96\xf5\x6e\x72\x7e\x89\x45\x59\xca\x1f\xde\x3c\x9f\x64\x0f\x33\xac\xf5\x94\x1d\x51\xda\xa4\xce\xd2\x05\x71\x8f\x6a\x97\x50\x3f\x08\x46\x68\xd0\x6c\x49\xa8\x1b\x80\xe2\xc9\x97\xe5\x02\xb6\xf6\x8b\x72\x49\xf1\x42\xf1\xd6\x30\x2a\xbc\x24\xd4\x35\xb2\x23\x99\x92\x0d\x33\xbc\x26\xe7\x97\x78\xe5\xf6\xe9\xb7\xf5\x66\xa3\x77\x34\x07\x6d\x37\x3c\xb7\xe9\xca\xcd\xa2\x20\xc8\x36\xae\xb1\x2a\x49\x9d\x2f\x31\x47\x78\x15\x64\xc5\xcd\x4c\x67\xb2\x41\xf6\xf0\xdf\xd4\x56\x5c\xb5\x36\xb1\xd5\x03\xbc\x95\x85\xa4\xf9\xfd\xae\x90\xeb\x89\x6c\x5c\xa2\xce\x1d\x71\x35\xa0\x49\xbe\x86\x6c\x2b\xaa\x1b\xe6\x2b\xd3\x3d\x2c\x11\x02\x57\xf3\xb8\x8b\x05\xd8\x39\xf9\x2d\x45\x79\x85\x17\x6a\xc7\xab\xae\xe5\x82\x6c\xa0\xa3\x68\xbf\xd7\xc7\x63\x35\x1c\x66\x0f\xf5\x19\x13\x57\xaa\xc5\xa2\x5a\x67\x07\x5a\x13\xc8\xe9\x0a\xcf\xd7\xc3\xe1\xae\x09\xb6\x5a\x44\xac\xdd\x0e\xd3\x11\x96\x66\x5d\xfc\xe6\x81\xc7\x7e\xf1\xec\xf6\xa0\x38\x5c\x36\x13\xfa\x18\x2e\xa4\xd9\x9a\xf0\x42\xff\xdd\xa0\xc1\xf9\xa5\x89\xec\x02\x52\x59\x05\xa4\xb2\xbd\x15\x33\x7c\x0e\x4a\x7f\xbd\xec\x56\x17\x6c\xb5\x37\xaf\x3e\x72\x2a\xf4\xb7\xc8\x44\x9c\xe5\x99\x1b\x9f\x3a\x98\x8f\x7c\x0b\x0c\x67\xa6\xd7\x19\xa6\x08\x77\x9a\x4e\x53\x69\x30\xb7\x31\xce\x24\xac\xfa\xa4\xca\x33\xf7\x23\x43\x8a\xe1\x50\xb3\x50\xe5\x99\xfe\x2b\x43\xb8\x72\x8f\x2a\xfb\xc8\xac\x89\x79\xec\x7f\x65\x08\x97\xfc\x87\xdd\xb2\x90\xf6\x5d\xf0\x33\x43\x18\x10\xce\x6c\x6d\xee\x47\x86\x70\x10\x97\xd6\x3d\x95\x27\x5f\x3f\xc0\x5a\x78\xdf\x9a\x23\xcc\x51\x4b\xd9\xf2\xa5\xda\xd5\x88\xd9\xfa\x0c\x0e\x49\xb4\x29\x66\xcc\xc6\x4c\xf4\x49\x80\x95\x0a\xa7\x04\x76\x4a\xb0\xca\x7e\x00\x6d\x0d\xa0\x1f\x1b\xda\xef\x0d\xca\x9c\xe3\x64\x4c\x9c\x87\x6a\x43\xfb\x65\xfc\xb5\xe0\xcb\x8d\x53\xb8\x83\x53\x22\xf0\x47\x4e\x62\x1d\x5b\x96\xc9\xee\x91\x34\xf5\x34\x85\x72\xe4\x6f\x37\x2c\x89\x45\x13\xd0\xb7\x8e\xd4\xb7\x8e\x54\xb7\x0e\x86\x90\x31\x7d\xed\x98\x44\x36\x55\xab\x7e\x6a\x46\x7d\x9b\x18\x35\x1a\xab\x21\x10\x8a\x3b\xf3\x52\x54\xf2\x2d\xb5\x87\xa3\x09\xb7\xec\x89\x15\x9b\x2f\x72\xdd\xb3\xa3\x0d\x84\x1b\x3f\x6c\xc1\xc6\xa6\x6d\xcb\x0f\x14\x1c\x72\xac\xb3\x4f\xde\xbf\x08\x12\xf4\x96\x00\xe2\x07\x8d\xb5\x0d\xfd\x6e\xaa\x7f\x78\xf3\x3c\x07\x92\x10\x0f\xc2\x77\x0d\x69\x97\xb3\xfc\x50\xef\x75\xd4\x3e\x05\x50\x36\x75\x14\x61\xa7\x14\xcb\x65\xdc\xdb\xcc\x77\x33\xeb\xeb\x38\x6a\x82\x23\xde\x35\x90\xc0\x4c\x36\x7d\x87\xfd\xc0\x44\x35\x38\xf5\xbc\xfb\x71\xa7\x43\xc3\xa1\x19\x4e\xaa\xda\xd3\x46\x74\x8c\x8a\x74\x74\xb1\xff\x3b\x84\xc4\x31\x80\xcc\x87\x07\x7c\x32\xff\x3d\x80\xff\xfd\x49\xfd\xef\xce\xfe\xb4\xff\x65\x6e\x5f\x3f\x9c\x7e\xba\x9b\x3d\xbc\xed\xe2\xb7\x3b\x47\x15\x72\xf9\xe7\x3f\xbc\x28\xe4\x7a\x2c\x0a\xbe\x2c\xb7\x39\xda\x5f\xe0\x3c\xfb\x04\x81\x9e\x57\x72\xf2\xc7\xa1\xdc\xff\x3b\xf2\x51\x85\x97\x7f\x46\x8d\x46\x32\x2f\xc9\xf9\xe5\x67\x91\x3a\xc3\x66\x74\xa8\x9d\x09\x7e\xad\x77\x0e\x30\xad\xe5\x07\xa1\x3d\x15\x88\xbd\xa1\xc7\xa0\x24\x7e\x4b\x37\x74\x21\x4b\x91\x67\x37\x45\xa5\x6e\x35\x41\xb2\x6c\xa0\x9d\x4f\x81\x85\xbd\x96\x52\xb0\x9b\x5a\xd2\x3c\x5b\x0b\xba\xca\x50\xf7\x78\xab\x2f\xe1\x74\x88\xc4\xd1\xef\xa5\xb9\x27\x90\xdc\x5d\xb9\xab\xd4\x65\xdb\x26\xb8\xfe\x4a\x4e\x5d\x80\x51\x2b\x8e\x2b\x73\x8d\x98\x27\x8f\xda\x3d\x75\x13\x4b\x91\x22\xb4\x19\xb4\x9c\x31\x7e\xe6\x33\x40\xc4\x3c\xa5\x86\x2c\x00\x36\x38\xe4\x0d\xe1\x89\x3b\xda\x79\x44\x7e\xc0\x42\x15\x30\xd7\x7d\xd7\x43\xff\x5c\x61\x30\xbc\x16\x72\xcd\x8b\x2d\xd5\xf2\x5b\x54\xd2\x72\x39\x46\x90\x8b\xde\xd9\x75\x42\x03\x0e\xb0\xf0\x66\x6f\xff\xe3\xe1\xef\x1e\xe2\x0c\xbe\x60\xdd\xa7\x06\x66\x5d\xb8\x37\x2d\x5f\x69\x36\xca\xf2\x2b\xf2\x70\xff\x3b\x94\x21\x55\xbe\xaf\x1c\xef\x2b\xf7\xf0\x1f\xd0\xd6\xad\x92\x01\xbd\x69\x7b\x44\x72\x3a\xae\x68\x21\x16\xeb\xfd\x3e\xcb\xd0\x28\xbe\x31\x93\x37\x5f\x10\xbc\x7d\x4b\xf5\x06\xc9\xd1\xc0\x5c\xb6\x7e\x45\x28\xc2\xe0\x1a\xa8\x66\x51\x1d\xcf\xfd\x5e\x87\xe4\xd5\xd5\x5a\x7f\x73\xe0\x0e\xfc\xe7\x9a\x88\xf6\x89\x09\x67\xe8\xec\xe3\x10\x79\xa2\xb5\xe3\xae\x7a\x77\xf7\x18\x76\xab\x49\x56\x6e\x9e\x42\xcd\x0d\x76\xe3\xea\x0c\x44\x10\x2d\xc7\x50\x5c\xd7\x6c\x39\x61\x39\x6a\x3a\xf7\xa3\x6f\xc1\xcf\x8f\xd0\x62\x8f\x4b\x2d\x17\xb6\x67\x53\xd4\xcc\x77\x82\x7e\x60\x65\x5d\xfd\xf0\xe6\x79\x7c\x05\xbb\xb9\xfd\x2d\x3a\x15\xcd\xe8\x3f\xdb\xaf\x3e\xb6\xc4\x2f\xfa\xe0\x38\x87\xd2\xa6\x59\x21\x3f\x5a\xee\xf7\x79\x09\xa0\x0f\xae\x55\xc5\xe2\x45\x9d\x42\x68\x38\x34\x78\x44\x9a\x64\x34\xfd\x6c\x86\x6d\x2b\x4b\xb7\xdd\xcb\x62\x38\x6d\x50\x0f\xe9\xe8\x92\x15\x4f\x3a\x02\xdd\x08\xbd\xca\x45\x40\x18\x3c\x21\x49\x92\x17\x34\xd1\x52\xac\xd6\xa3\x18\x85\x8f\xd5\xa9\xa4\xca\x63\x3e\x12\x5f\xca\x03\x1d\x60\xc9\x4f\x63\x8f\x5a\x53\x79\x98\x39\x3a\xba\x0e\x47\x18\xa3\x96\xc9\xfb\x18\x57\x94\x56\x7f\x7e\x86\x3c\xc5\x8f\x31\x19\x5a\xcf\x02\xe7\x30\x4b\xa9\x80\x42\xe5\xcf\x97\xdd\x68\xaa\x6e\xb8\xcd\x7a\x77\xa1\xd3\x67\x27\xb7\x18\xed\xbb\x67\x44\xeb\x9e\xe9\x97\x91\xaa\x56\x6f\x8e\x8b\x26\x35\xbc\x7a\x5c\x6c\x36\x37\xc5\xe2\x3d\xa1\x0d\x5e\xc3\x0a\x9f\x5a\x3d\x4e\xd4\x02\xf7\xc0\x17\x1d\xd3\xe8\x28\x02\xc3\x96\x98\x28\x84\xd5\x19\x3a\xb2\xff\x40\x19\x1e\x6c\xbb\x03\x6e\x22\x41\x68\x69\xe0\x8b\x6f\x19\x92\x5e\xd1\x75\x04\x79\x47\xdd\xc7\x22\x4a\xbd\xa4\xaf\x79\xff\x36\x72\xf3\x57\x4c\x27\x56\x62\x9e\x4b\xd0\xf4\x6f\x59\x94\x2c\x49\x5c\x65\xd9\x44\x5a\x11\x5a\xa0\x26\x60\xf7\x83\x7a\x4a\xc1\x6e\x19\x77\xfc\xfa\x7e\xaf\x13\xe9\x8b\x52\x96\x8b\x72\x33\xca\x1e\x3e\xcc\x46\x74\xbc\x2e\x2b\x09\x9c\x15\x1d\xab\xa9\x30\xf2\xf6\x44\xbd\x52\xbf\x41\xe8\xa6\x56\x85\x4e\x8c\x27\x3d\x28\xca\x89\xf0\x2a\x5f\xc2\xf5\xdf\x56\x33\x99\xc4\xa3\xca\x29\x1a\xa9\x79\x18\x71\xe3\xbb\x09\x89\x0d\x55\x27\x09\x83\x70\x97\xb6\x76\x30\xe9\xd8\x9d\x95\x3c\x10\xcd\x18\x3f\xf3\x6e\x7a\x9a\xf1\xa0\xdf\xfc\x1f\xa8\xbd\xcd\xbc\xa6\x2a\xcb\x61\x42\x83\x5c\x58\xd7\x7c\x29\x54\x5d\x5f\x8d\x33\x34\x1c\xf6\xbd\xfd\xd3\xf8\x42\xf1\xd7\xed\xd7\x2f\xca\x1b\xb6\xa1\x67\x6f\x8b\x55\x21\x98\x2e\x70\x1e\x15\x78\xbc\x16\xe5\x96\xa6\xde\xfc\x04\xc4\xb6\x3a\x7b\xbd\x06\xcd\x1f\x1a\x0e\xcf\xcf\x73\x39\x1c\x66\x8e\x09\x81\xa1\x1a\x5f\x76\xa7\xf4\x6c\x0d\xca\xd3\x08\xb5\x13\x46\x12\x25\x4d\x52\x1d\x6f\x97\x84\x03\xd3\x67\x79\x0b\xb6\x4e\x8c\xc1\x95\x1c\x1b\x7b\xa8\xa3\xb9\x16\xbd\xdd\xfa\x7d\x4d\xe0\xa0\xdb\x40\x70\x94\x67\x73\xdd\xa1\x71\xbb\x60\x86\xb0\x79\xa4\x08\xc6\x91\xaf\xf4\x85\xee\xd4\xa2\x7d\xa5\x43\x01\xc3\x50\xf3\xbe\xa2\x9e\x4d\x30\x4f\xb4\xbf\x62\xe8\xf9\x37\xf9\x2c\xf7\xfa\x10\xbf\x40\x76\xf0\x0b\xb4\x42\x5f\x51\xb6\x8a\x6e\x6f\x36\x14\x78\xa4\x5c\xd1\x16\x14\xe7\x99\x32\xdd\x9b\x2f\xcb\x1f\xde\x3c\xf7\x6e\x6b\x79\x16\xf6\x2c\xc3\xf0\xa5\x73\xda\xe7\x5a\x4c\x12\x6a\x55\x44\xb1\xd0\x93\x7c\x2d\x6e\x2b\x63\xf7\x62\x63\x61\xa7\x1d\x17\x84\x8d\xb7\xe5\x92\x6e\x2a\x5c\x11\x36\x0e\x5c\x38\x1d\x36\x92\xef\x43\xd0\x01\xed\xd0\x74\x7e\xe1\x6e\xb4\x7a\x3c\x7f\x4f\xe9\xee\x89\xcb\xbe\x60\xea\x31\x99\x4f\xcf\x2f\x70\xed\x98\xe4\x9f\x98\x4c\x18\x5e\xf5\x90\xc3\x81\xa5\x45\xfe\xf1\x16\x22\x32\x9c\xde\x59\x5d\x87\xb5\xd8\x7c\x5b\x8a\xce\x0d\x6d\x0d\x8a\x34\x1a\x0a\x72\xae\x20\xce\x01\x39\x32\x27\x57\xd7\x0b\xc9\x3e\xd0\xdf\x72\xc1\xff\xc5\x4b\xa3\xff\x7d\xc1\x16\xa2\xdc\xb0\x1b\x40\xc8\xaa\xc7\x76\x1c\xcf\xb8\xa4\x5c\xc2\x8a\xe9\xfc\xbc\x2e\x12\xd3\xfc\x91\x87\x41\x43\x15\x72\xe1\x96\xc8\x42\xb4\xb8\x76\x76\x82\xee\x0a\x41\x03\xf7\x0d\xbf\x11\x8c\xfd\x61\x5d\x6c\x36\xe5\xc7\xa7\xbf\xd4\xc5\x06\xe5\x15\xae\xb5\x10\x17\xf6\x1e\x1c\x40\x43\xc6\xed\x28\x01\x03\x7f\xbe\x63\xd6\xf4\x36\x3d\xeb\x3a\x87\x1e\x55\xc8\xb7\xa9\x59\x44\x0a\xc0\x9f\x56\x8b\x77\xe6\xec\x3a\x2a\x62\xa6\x27\x28\xe2\xc9\xd9\xc1\x2f\xc2\x32\xfe\x93\x88\x7a\x1e\xf8\x2c\x41\x3c\xd5\x85\x71\xe4\xab\xd7\x9a\x49\x5d\x17\x55\xcb\x9f\x98\xb6\x3d\x20\x3c\x73\x06\x77\x08\xa8\xda\xe1\x1b\x0d\x91\x92\xa4\x8d\x26\x68\xc8\xe2\xaf\xf5\x56\x15\x53\x13\x7d\xc5\x38\x58\x97\xe1\xb0\xec\x1e\x72\x5c\x36\x98\x2b\x96\x72\xc3\x7e\x0d\x77\xe0\xa4\x7d\x51\xf5\xb7\x99\xd8\xbe\x36\x61\x92\xa5\x08\x31\xbb\x7a\xca\x50\xd4\x69\x2b\xdb\x47\x50\x7f\x54\x90\xfb\x26\x18\x94\x56\xc2\x17\x55\xc5\x6e\x39\xca\x0b\xcc\x0c\xef\x9c\x1a\x15\xb4\x5d\x20\x84\xcb\x36\xb1\x2a\xf1\x94\xba\xe8\x0a\x81\xa7\xf7\xa1\xdb\x7d\xd1\xcc\x00\x9f\xcd\x9e\xfd\x6f\x4b\xd1\x5e\x65\x1b\xd5\x65\xbb\xd8\x3f\x5d\xf1\x90\xc6\x82\x2e\xca\x5b\xce\x7e\xa5\x62\xac\x25\x04\x88\xcc\xcb\x05\xc2\x15\x29\xa6\x85\x8f\x10\xb3\xaf\x71\xdd\x83\x95\x10\x86\x23\x4a\xef\xf1\xc0\x47\x80\x0c\x07\xe9\x14\x3c\x89\x55\x4f\x4c\x85\x8a\x9f\x42\x10\xb1\xf6\xc8\xfa\x53\x36\xb9\x9a\x26\x0f\x1b\x6e\x68\x57\x0d\xa2\x43\x85\x30\x6b\x93\x41\x01\x99\xaa\xce\xcb\x3e\xf9\x35\xf6\x03\xee\x67\x9b\x62\xc2\xd2\x4b\x54\x64\x47\x2a\x4d\x69\xb8\xa1\xb5\x74\xae\xd8\x75\x51\x25\x8e\xe8\xf9\xb9\xff\x0e\x92\xd7\x56\x32\x72\x66\xea\x66\x97\xb0\x45\x07\x7c\xbf\xcf\x5b\xcf\x52\x2d\x9b\x3c\x74\xa2\xc1\xda\x0c\x7d\xb4\xee\x81\x4b\x87\xa7\x81\xb3\x7d\xb6\x6b\x13\xee\x14\x44\x35\x42\x5a\xf1\x38\x53\xa7\x9c\x5d\xa9\xff\x4d\xc4\x91\x75\x69\x39\xa0\x9f\x24\xdf\xf9\xe5\xe8\x89\x3d\xa3\xce\xd6\xee\xeb\x9f\x64\x23\xa9\xd1\x57\x7a\x3b\x03\x7e\xee\xc7\xee\x25\xad\xd8\x38\xc2\x4f\x87\x62\x62\xd4\xb3\x84\x11\x4d\x91\x01\x66\x38\x5b\x90\x30\x4c\x4a\x7d\xc8\xb4\x72\xae\x21\x00\xec\xc3\x51\x36\xce\x46\x72\x22\x23\xf9\xd1\xfb\x0b\xb5\x19\x9a\x6f\xbe\x0a\xd6\xc4\x33\x30\x5f\xcd\xae\xc2\x1f\x93\xfb\x06\xb3\xe0\xf5\x1f\x67\xb8\x24\xa6\xe3\xc0\xd2\x4a\x48\xcf\xb4\x2b\x16\x14\x0d\x32\x9d\xc5\xd7\xc7\xd4\x09\x10\xac\xd5\xf9\xd4\x9a\x64\x23\x48\x53\x1d\x3e\xaa\x1f\x02\xb6\x8b\x18\x57\x54\x30\x20\x8c\xd6\xaa\x74\x81\x8b\xa3\x60\xd3\x7a\xe0\x16\x62\x9a\xf2\xe2\x66\x43\x9f\x97\xc5\x92\xf1\xdb\xb7\x4a\x9c\x2e\x24\xad\x74\x18\x7d\xfa\x9d\x01\xad\x83\x38\xf5\xca\xa5\xe7\xa0\x9f\xd4\xa4\x33\xa9\xb3\xcb\x84\xf0\x76\x25\x60\xd5\x54\x24\x99\xb1\x1c\x48\x68\x37\x30\x0d\x97\xdd\xa9\xbf\x4c\x4e\xfd\x65\x38\xf5\x97\x30\xf5\x45\xb4\x32\xb8\x22\xd9\xc3\x79\xcd\xeb\x8a\x2e\xe7\xcb\x7a\xbb\xbd\x9b\x03\x38\xca\x5c\xcd\xa3\x26\xe1\xf3\x6c\x24\x47\xd9\xc3\x89\x4e\x47\x96\x04\xa0\x4f\x22\x05\x95\xc3\x61\x5e\x90\x12\x97\xe4\xbe\x41\x87\xa6\x73\x38\xcc\x99\xc1\x29\x1f\x65\xf3\x8d\x7e\x9b\xe1\xfb\x78\x2f\x4c\xca\xd6\xe6\x68\x10\x0e\x3e\xd3\xbd\x3b\xfa\x91\x56\xe0\x55\x0d\x42\xb8\xb8\xca\x59\x2e\x0c\x3e\x37\xb7\x79\x7d\xdb\x1f\xa0\x68\x99\x10\xce\x6c\xff\x54\xeb\x02\x67\xb6\x5d\x5b\x2f\x2e\x34\xa0\x90\xf0\xbd\xc3\x25\x38\xa0\xe8\x6b\x38\x47\x08\x4d\xfc\x1b\xd4\xce\x82\x5e\x45\x12\xbb\x89\x7d\x77\x20\xa0\x44\x04\x38\x41\x03\x9b\x65\xd8\x74\x6e\x4c\xf9\x2d\xe3\xf4\x19\x5f\x95\xa8\x54\x25\x75\x9e\xec\x74\x89\xf1\xaa\xde\x6c\xd4\x28\xcd\x12\x8e\x2e\x91\x76\xd5\xf4\x2c\x06\x78\x46\x6d\xbe\x35\xe5\x26\x65\x83\xfb\x5a\xc3\x8a\x3d\x29\xfc\x81\x33\x41\xef\x2c\x9e\xbc\x71\xb1\x5c\x02\x3b\xf1\x6d\x29\x9e\xc2\xc7\xfa\xf6\x05\xa0\x51\xb6\xca\x59\x10\x7f\x6d\x02\xaf\x9f\xd0\x15\xe3\x8c\xdf\x9e\x15\x67\xb0\x17\xcf\x5c\x13\xe2\xac\xe4\xe6\xd9\xef\x41\xc3\xf9\xfb\xb3\xb2\x96\x15\x5b\xd2\xb3\x82\x9f\xe9\xea\xcf\x58\x75\xc6\x4b\x79\x06\x32\x05\x5d\xaa\x29\xb3\x9a\x41\xad\x8e\x53\x7f\xe8\x10\xad\x73\x42\xaa\x69\xe5\x99\x10\x2b\xbb\xc4\x07\xd7\x59\x37\xcd\xf9\x36\x31\xeb\x20\x17\xb4\x13\x21\x99\xb4\xd3\x5d\xa3\xc9\x97\x1f\x5d\x11\x1d\xdd\xd3\x4f\xa2\x49\x88\x84\xa5\x3e\x89\xad\x1d\xee\x10\xb7\x85\x66\xce\x0d\x4b\x1b\x67\x13\xd0\x9b\xb7\x07\xd0\xdd\xcc\x46\x84\x67\x1f\x4d\x9c\xb5\xf5\x41\x03\x66\xc6\xcd\x91\xc9\x1e\x66\x0d\xc2\xdd\xd8\x5b\xcf\xe2\x51\x8f\x38\x41\xfe\x88\x24\x60\x00\xa3\xb1\x2c\xd5\x1f\xa3\xcb\x19\x56\xff\x7c\xd5\x49\x38\xb3\x05\x88\x10\x57\xaf\xe1\x38\xa2\x30\xaa\x7f\x62\x25\xd6\x24\xda\xd8\x6a\xb5\x37\x1f\x74\x80\xe4\x8b\x62\xa7\x0e\xff\x8a\x88\xc1\x6e\x5c\x54\xe0\xb9\xa8\xfe\xd0\x0a\x96\x2d\x31\x94\x66\x85\x77\x1d\x4a\x73\x47\x74\x86\x2d\x81\x2d\x08\xe7\xb3\xe5\xa4\x1c\x8d\x30\x0c\xe6\x75\xc9\xb8\x9c\x6c\xb1\x3d\xb8\x93\x6d\x83\x6f\xc9\x0e\x6e\xbc\xee\x3d\x79\x3b\x1c\xe6\xb7\x70\x3b\xae\x74\xcb\x37\xf6\xda\xf9\x70\x0a\xc5\x5f\x05\x14\x7f\x0d\x84\xfc\xfc\x12\xe7\x15\xe9\xa3\x00\xba\xc8\x45\x1f\x85\x20\x77\x8a\x1c\xd6\x86\xd8\x6e\x71\x4c\x67\x7c\xb9\xc9\x5d\x4c\x64\x50\x8b\xe0\xd6\x2d\x82\xfb\xa1\x41\x78\x3d\x5e\x6c\x8a\xaa\xd2\x64\xb7\x46\xf8\x86\xd4\x01\xb5\xc5\x85\x75\x55\x48\xf4\xaa\x42\x7a\x6e\xe6\x07\x09\x5f\xc4\x32\x35\xf8\xce\x00\x25\xf7\x5e\x66\x1b\xb2\x0a\xef\xb1\x05\x09\x2b\xf0\xcf\x97\x07\x1b\x5d\xa8\x86\xec\x15\xb2\xe9\xdc\x6b\xed\xcd\xd3\x1c\x25\xb5\x1b\xbc\x44\x58\x77\xcd\x4c\x61\xab\x63\xe6\xe9\x6f\xda\x2d\xec\x56\xe9\x84\xde\x1d\x2d\xb4\xc5\x73\x8b\x15\xac\xe8\xee\x2d\xde\xe2\x1b\x93\xf0\x25\x60\xd2\x0b\x5c\x8c\xb7\xc5\x2e\x41\x79\xd5\xee\x2b\xbc\xb0\xa7\xb1\x3d\x11\x96\x87\x98\xf4\x64\x74\xeb\x69\xd6\xc8\x13\x4d\x46\x81\xff\xfd\x78\xa5\x43\xca\x94\x60\x1c\xca\x12\x37\x45\xc5\x16\x19\xd2\x1b\x3d\x34\x02\x5a\xb1\xd0\x3a\x51\x75\xd5\xa2\x59\x6e\x47\xb0\x3c\x03\x46\xee\xcc\xd7\x8b\x32\x1d\x4b\xed\xd2\xf1\x75\xe5\x17\xe3\xc8\xdf\x17\xf0\x29\x71\x52\x38\x12\xe8\x5e\xc2\x3f\x83\xc3\x12\xd2\x61\xf9\x28\x8e\xd8\xfd\x17\xc8\xd2\x55\xa8\x07\x3a\xbf\xc0\x3a\x29\x11\x28\xec\x0e\x4a\x91\x26\xce\xf8\xb7\x0c\xd0\xf9\x82\x98\xea\x3e\x5c\x86\x63\xf1\x3a\x91\xc2\xbc\x13\x15\xa3\xc4\xf0\xdc\x6a\x55\xbe\xbe\x44\xc3\x21\xf5\xc9\xfa\xbc\x3e\xea\x92\x10\x22\x83\xf4\x53\x60\x42\x60\xfc\x8c\x5e\x41\x72\x40\xef\x73\x4d\x31\x47\x93\x87\x73\xb6\xfc\xdd\xc3\xb1\xa4\x95\xcc\x39\xb2\x19\x04\xc3\x42\x19\x5b\x66\x8a\x31\x76\x0f\x3d\x50\x04\x82\x8e\x61\xd6\x44\x51\x2b\xf6\x4c\xa7\x55\x44\x5f\x28\x99\x5e\x68\x2d\x84\xd1\x3d\x24\xd4\x4c\x1a\xf5\x6a\x95\x87\x6a\xa5\x10\xde\x45\x4e\xc5\x88\xcf\x9a\x1c\x40\x75\x92\xda\x75\xa3\xd0\x36\xdf\xaa\x5b\xa8\x02\x90\x23\x5b\x81\x92\x2c\xcd\x4b\x3f\xde\x05\x4c\xe3\x3d\x0f\xf5\xe0\xdf\x96\x82\xb4\x1f\xec\xf7\xf7\x3a\xff\xa9\x09\x19\x57\x14\xa5\xde\x6c\x9c\xa6\x57\xe3\xca\xc4\xdf\x4c\xab\x19\x72\xe1\xc5\x9d\x57\x50\x5b\xdd\x3a\xdb\x2e\xaa\x4e\x55\x1e\x9c\xa1\xab\xce\x13\x80\x9c\x8f\x1f\x91\xfb\x26\xbe\xfe\x3b\x25\xb0\x88\xf4\xfd\x98\x8e\xe7\x4b\xea\x18\xff\x50\xcb\x29\xe2\x79\xec\xd4\x84\x12\x8f\x9a\xdc\x2e\x0d\xe6\xea\x42\x4c\x0c\x5a\x75\x71\x11\x6f\xcf\xf9\x2f\xbb\x0c\x8d\x7f\xd9\x55\xb0\x29\x34\xa4\xc5\x22\x04\x97\x2a\x48\x5e\x92\xc5\x94\xcd\x10\x80\x0a\x9e\x31\x7e\x56\xe3\xcd\xb4\x84\x5f\x33\x52\x5c\xd5\xf6\xef\xc9\x32\x2f\xa3\x74\x58\x6e\xf1\x37\x7e\xc5\x97\x81\x59\x3c\xc6\x92\xa3\xe8\x2a\xbf\xc0\x6c\x7c\x8d\x72\x6a\x53\x26\xa2\x09\xf5\x9f\xee\x82\xa3\xe0\xe9\xaf\x1a\xb2\xe2\x57\xae\xc0\x89\xd5\x33\x94\x38\xe2\x6e\xd4\xa9\xbe\x12\x13\xa1\x15\x3f\x68\x22\x1b\x47\x3f\xdf\xda\x05\x80\x40\xae\x75\x51\x3d\x69\x3f\x4f\xe9\x19\xa9\x17\x0a\xa7\xeb\x99\xde\x9c\x6b\xcd\x61\x54\x77\xdb\x9b\x72\x83\xf2\xec\xc9\xd3\x6f\xaf\x7f\x78\xfe\x6e\xfe\xf6\xe9\x9b\x67\xd7\xcf\x9f\xfd\xd7\xd3\x0c\x0d\xea\xe9\x7a\x66\x33\x2b\xac\x3a\xe1\x61\x6c\x7c\x0d\x2d\x19\x67\x22\xcc\xc6\xe0\x7d\x44\x97\x38\x52\x67\xdf\x37\x78\x5e\xd1\xc0\x20\xd2\xf1\x5e\x71\xe6\x32\xab\xf0\x89\x8e\x0b\xd9\xe5\xa9\xc8\x1a\x70\x8a\x99\xff\xb2\xd3\x96\x12\x8b\xb7\x8d\xda\x78\x7a\x14\xf3\x36\x68\x03\xde\xea\xb4\x7e\x2e\x67\xd9\xad\xd1\x80\x3a\x2a\xaf\x9a\x0d\xa5\x25\x30\xe5\xdd\x24\x03\x7c\xf0\x07\x72\x93\xbe\x56\x6f\x11\x9e\x77\xc2\x5e\x42\xb0\x1d\x84\x3f\x46\x50\x7f\x73\x6f\xb5\x1b\x7c\xb8\xca\xc3\x98\x99\x0f\xad\x2f\x01\xc3\xf9\x8e\x24\xf0\x77\x00\x47\x06\x14\x4c\x71\xfa\x37\x25\x15\xdc\xed\xe0\xdf\x6a\x51\xea\x3f\x0a\x75\xdf\x36\x03\x0b\x2c\x55\xa9\xe3\x42\x11\x6d\xe7\x7c\xa9\x34\x58\x62\x9b\x62\x70\x4c\xa7\xd5\x0c\x03\xe9\xc2\xa5\x3a\xb0\x1c\x17\xea\x9f\xf3\x0b\xe4\xea\xac\x55\x9d\x02\x89\x76\x9d\x35\x1a\x0e\xcf\x8b\x69\x0d\x89\x6c\x3b\x55\x33\x2c\xa6\xb5\x92\x29\x6b\xa8\xba\x9e\x11\x16\x60\x4b\xe9\x38\x3a\x67\x70\xf1\xfc\x50\x48\x60\x72\x8a\xf0\x1c\xa1\xc9\xc7\xe1\x30\xff\xa0\x66\xd2\x9d\x76\x94\xdf\xe0\x5b\x25\xe6\xcd\xb5\xd8\xf1\x94\x4c\x67\xf8\x93\xea\xc3\x2b\x0b\xf4\xac\x1e\x5f\xab\x9e\xdf\xa1\xbb\x76\xcf\xaf\xd1\x70\x98\xd5\xfc\x3d\x2f\xfd\xc3\xec\x9c\x90\xeb\xe1\x30\xd3\x4e\xee\xe6\x57\xee\xc0\xb8\x82\x7d\x01\x68\xd1\x15\xc9\x39\xb9\x9b\x5e\xcf\xd0\x18\xd6\x62\xbf\xcf\xc0\x46\x9c\x21\xf8\x6a\x3a\xd3\x14\xb1\xa8\xcc\x1e\x4c\x50\xdd\xef\xa9\xea\x49\x44\x1f\x3f\xe0\x6b\x84\x63\x2a\x05\x21\x7b\x50\x06\x28\xd5\xc2\x51\x2a\x84\x97\x84\x8f\xd5\x86\xd8\xef\xe1\xad\xfa\xf3\xd5\x0a\xe5\x0b\x84\x77\xa4\xaf\xd1\x7c\x81\x41\x7e\x59\x93\xdb\x51\x36\xc9\x46\xd7\x78\x45\xee\x6b\xbe\xa4\x8b\x12\x58\xdb\x27\xe1\x86\x6b\x75\x2c\xda\x8c\x0b\xec\x6a\x8f\x3f\xda\x05\x2f\xec\x13\xd8\xb6\x4b\x5c\x8b\xcd\xf7\xf4\x6e\xb2\xc1\x8a\x7c\x4f\xae\xf5\x2e\x76\xe8\x71\x40\x58\xd6\x38\x3e\xc2\x93\x5b\x0c\xc7\x17\xbc\x8f\xf1\xae\x10\xb2\x9a\xd4\x21\x7f\x69\x8e\x42\xd5\xe0\x4f\xd3\xeb\x19\xf9\x34\xdd\xa8\xff\xad\x67\x64\x85\x9f\x6a\xe9\x66\x85\xf0\x2b\xfd\xd7\xb5\x0b\x59\xbc\xff\x65\x57\x4d\x9e\xe2\x6d\xb1\x9b\x7c\xc2\xbb\xa0\x03\xd5\xe4\x15\xd6\xf2\xe7\xe4\x9e\xf1\xa2\xe5\x80\x10\x88\x18\x9f\xa6\x74\x36\xd8\x8e\x3d\x92\x96\xd3\xf7\x1c\xfb\xc8\x1c\x82\xc4\xb7\x78\x3b\x9e\xeb\xaf\xff\xf6\xda\xbe\xd1\x39\x43\x41\xf1\x66\xf1\xb1\xab\x2f\xad\x1b\x9c\x03\x19\xbf\x0d\x6a\x47\x0d\xc4\xd2\xcf\xc1\xd6\x67\xc0\xc1\xc0\x86\xa5\x27\x23\x6e\xc8\x59\x96\x74\xf1\x38\x38\x3d\x78\x41\xa8\xf9\x63\x60\xad\x91\xfb\x7d\x5e\x90\x9c\x12\x09\x40\xb8\xfa\xe5\x7e\x6f\x73\xcd\x54\x1d\x1a\x3b\xff\x65\xa7\x78\x84\x0c\xe1\x3a\x48\xc9\x54\xb8\x20\xea\x20\x0d\x8d\xe7\x1d\x38\xaa\x15\x37\x4c\xc1\x70\x09\x17\x6f\x31\xe5\xb3\x80\xcf\xa8\x42\x3e\xc3\x9c\x57\x75\x98\x4b\x52\x01\xbf\x01\x5b\x69\x38\xcc\xcb\x31\x6c\x34\x52\xa3\xa6\xc1\xed\x15\x69\xcd\x89\xbf\x61\x44\x77\xf1\xe8\xb8\xbb\xc5\x61\x3d\xbb\x4b\xd1\x73\xa5\x8a\xd4\xaa\xd1\xb1\x3e\x49\xa8\xc1\x90\xbc\xe1\x10\x18\xdc\xce\xb2\x63\x07\xbc\x3f\x93\xd1\xae\xfa\xd8\x65\x23\x0a\xea\xf1\x73\x61\x78\x5b\xc3\x17\x73\x12\xf5\xb1\xc5\x9a\xeb\x79\xf0\x8e\x05\x98\x11\x7e\xc5\xc3\x38\x82\x43\x3c\x3d\x64\x43\x8e\xf8\x87\x8e\x42\xbd\xc1\x6c\xac\x47\x36\x2d\x67\x08\x57\x64\x91\x0b\xcc\x92\x69\x64\x2a\x34\x16\x74\x59\x2f\x68\x9e\xf2\x4a\x3c\xa3\x53\x39\x23\xd5\x54\xce\x30\x6d\x70\x01\x1e\xbd\x29\x4a\x9d\x4a\x78\x46\x93\x85\x3b\x06\xda\x50\x99\x6b\x87\x9d\xa2\xcc\x14\xa8\x47\x92\x41\x3f\xa9\xce\xe4\x97\xa6\xd6\xb9\xd1\x05\x7d\x5b\x8a\x64\xad\x81\xcb\x49\x1f\xaf\x33\xce\x46\x6e\xdf\xc1\x8d\x73\xb0\xa0\xa2\xa9\xc0\xe2\x34\x18\x14\x59\xfe\x86\x9f\x54\x98\x7e\x4a\xd8\xde\x97\x14\x76\x8d\xd6\x35\x1a\x17\x34\x76\x7b\x4b\x45\x9e\xf9\x57\x36\x03\xa2\x4d\xe3\x02\x28\xa3\x26\x2e\x31\xce\xed\xd1\xca\xba\xed\x6f\x95\x01\x0f\x31\x0c\x93\x94\x47\x5f\x00\x63\x4b\xff\x33\x17\x89\x15\x0d\x44\x71\x4f\x1a\xa3\x99\xcb\x84\x97\xbf\xc1\x4e\x05\x9b\xa4\xb5\x5e\xf6\x8e\xd0\x8f\xaf\xc1\x92\x6e\x77\x9b\xc2\x30\xda\x40\x91\x5b\x57\x22\x3c\x33\x68\x79\x93\x90\x4f\x77\x90\xec\xf1\x7e\xb1\x39\x3f\x92\x18\x22\x5a\x1e\xdb\x16\x3b\x5c\x91\x38\xfb\x92\xf5\x6d\x09\x9f\x72\x84\xfa\xe8\x29\x5b\xe5\x79\x49\x8a\xa9\x22\xa5\x80\xcd\x1d\x35\x34\x4e\xee\xc0\xbc\x44\x38\x13\x74\x25\x68\xb5\x7e\x61\xd9\xa7\x70\x53\x87\x8e\x59\x96\x2c\xea\xe2\x39\x1a\xdc\x08\x5a\xbc\x37\xd6\xde\xf3\x8b\x06\x43\x82\x92\x68\xf7\xf7\xcc\x06\x5b\xe5\x6d\xeb\x7d\x57\x66\xb1\xee\x79\xa0\xca\x08\xa6\xd0\x4a\x22\x56\x0e\xe1\x29\x45\xc4\x5d\x48\x1e\xf1\x2d\xb9\x1b\xcf\x63\xe1\x38\xdf\x22\x7c\x03\x8f\x77\x3a\x26\xa0\xc2\x1f\x42\x8c\x70\x0d\xe2\x20\x01\xe2\x43\x14\x5b\xb8\x8d\x51\x7e\x87\xb7\x16\x06\xf2\x56\xdd\x8f\xe1\xfc\xd7\xc0\x94\x96\x04\x5e\xc0\x75\x06\xad\xa3\x60\xeb\xe3\x0d\x29\xcd\x11\x3e\xd3\xb1\x87\xf6\x27\x76\xc9\x9c\x77\xf6\x8f\x1b\xff\x56\x15\xbe\xb9\xca\x43\x4e\xb5\xc6\x5a\x08\x57\xbc\x66\x1f\xa3\xe9\x2a\x2f\x81\x37\x45\x68\xb2\xb9\xf2\x20\xaf\x3b\x42\xa7\x9b\x99\xe6\x6e\x21\x55\x53\xa2\x8e\x5d\xa2\x8e\x7c\x47\xca\x71\x9a\xf7\xc4\x0b\xd2\x51\x09\x20\x5c\xf7\x9c\xf7\xde\xc3\xbe\x3b\x27\x51\x13\x50\x91\x92\x9f\x42\x05\xc7\x2b\xbe\xb9\x1b\x0e\xcf\x2f\xcf\x09\xf9\x30\x1c\xe6\x6b\x72\x60\x8b\xe7\xab\xa0\xd9\x35\xf6\xbe\x74\xe8\xea\x03\x39\xbf\x98\x00\x6a\xc5\x0a\xa4\x9c\xf3\x4b\x14\x22\x48\xd8\x69\xc6\x0b\x70\x41\x6b\xf5\x89\xec\x70\xdf\x54\x10\x42\x76\xc3\xe1\x39\x3f\xe8\x0d\xbc\xdf\x9b\x9c\x33\x06\x00\x77\x87\x3f\x30\xc8\xe2\xa5\x24\xcb\xf7\x8a\x53\xdf\xef\xed\x02\x34\x68\xf0\x61\x38\xe4\x09\x7f\x40\xbd\x13\x6d\x2a\xfb\xae\xb1\x20\x50\xff\xe8\x2d\x69\x88\xce\xc0\xfc\x0c\x36\x68\x1f\x65\xc6\x99\x59\x25\xbb\x46\x0d\xc2\xe1\xd9\x81\x8c\x97\x4d\xa3\x6e\x4f\x4b\x49\x27\x15\x0e\xfe\xec\x73\x20\x4f\x79\x27\x5b\xe7\xe4\x84\x07\x34\xd5\x50\x28\xbd\xa0\xaa\xde\x7d\x19\xb0\x3d\x24\x15\x06\x8b\xfe\xdd\xa1\xf6\x1f\xb5\x5b\xee\xfb\xf2\x4b\x7a\x61\xc8\x65\x9f\x9b\x77\x0f\x1f\x66\x89\x2c\xb0\x84\xbd\xfe\xe2\x87\x66\x2f\xf8\xe4\x4b\xba\x5d\x51\xbe\xec\x42\xec\x1a\x97\x49\x5c\xfc\xd3\xe9\x41\xad\xc7\x87\xee\x6e\x7c\xe9\xb4\x26\x63\xbf\x3f\x07\xdf\x4c\x56\xbd\xa3\x95\x62\xc4\x51\x8e\x50\xce\xe2\xe1\xaa\xfe\x9a\x71\x32\x2c\xbd\x2b\x46\x49\xa4\xc3\xa1\x32\x32\x92\xb9\xb9\x15\xe3\xda\xc2\xec\xd5\xbe\x2c\x3a\xaa\xac\xe5\xe9\x17\xca\x5a\x55\x88\x11\x7e\x8a\xda\x6b\xd9\x2e\xa5\x2e\xa0\x0d\x44\x0d\xd4\x64\x69\x8a\x77\x6d\x53\xf9\xc6\xb0\x29\xfe\x43\xf0\x59\x4c\xb1\x4c\x91\x0c\x9d\xa1\x96\x21\x49\x76\xc9\x03\x84\xd0\x04\xb9\x26\x72\x39\xca\xc6\xd3\x59\x86\xa9\x06\x99\x36\xb2\x0e\x6a\x50\x93\xd7\x98\x77\x7a\x42\x6a\x2d\x3b\xee\xd2\x1c\x0d\x5e\x13\x4b\xda\x07\xf1\x05\xb0\x1e\xc7\xc2\x34\x96\xda\x23\x38\x71\xdd\x86\x77\xb8\x4c\x5c\xf3\xc8\x65\xc4\xbe\xf1\xd8\x81\x58\x2d\xb9\x96\x4d\x70\x6b\x5e\x0e\x10\xc9\x9d\x62\xc1\x94\x04\x2f\xc7\x5a\xb9\x41\x4a\x23\x67\x41\xd7\x16\xc5\x66\x51\x6f\x20\xb2\x6f\xb1\xa6\x8a\x05\xcf\xa5\xa1\x9e\xb1\xa0\x24\xb5\xe8\x8a\x6d\x35\x08\x62\x16\x8c\x4c\x07\x0c\xeb\xb8\x47\xdb\x13\x22\x1a\xd5\x98\xe2\x4a\x11\x59\x25\x58\xe9\x5d\xa9\x87\xef\xef\xa6\xd0\xac\x54\xe3\xca\xda\x9c\x61\xe7\x06\x5b\xa8\x06\x1e\xd9\x84\xae\x86\x28\x61\xd6\x38\x5d\xad\xcb\x7a\x63\x50\xe6\xed\x31\x84\x1f\xef\x0c\x1b\xac\xaa\xd0\x6a\xe2\x94\x00\x6e\x32\x06\xc4\x7e\xb0\xd1\x72\xb0\xde\x19\x14\xc9\x19\x14\x66\x06\x85\x9d\xc1\x01\xd7\x3b\x23\x67\x9a\xdf\x6f\xb0\x4e\x62\x01\x0c\xab\xba\x66\x56\x8a\x58\x98\x1f\x82\xea\x9c\xe5\x93\x0a\xb8\x76\xfa\x49\x26\x98\x72\x2b\x21\x68\xe6\x16\x3e\xf5\x27\x94\x7e\x92\x0d\x06\xdd\x44\x92\x00\x94\xf6\xe8\x07\xe9\x3f\xcc\x1f\x75\xf2\x64\x6e\x8b\x5d\xe6\x95\xb9\x1b\xad\x20\x8e\x94\x04\x84\x90\xcd\x7e\x5f\x0f\x87\xf0\xb2\x56\x67\x5c\xa3\xf2\xe7\x9c\x6c\xb4\x4f\x52\xfe\xf0\xbf\xf3\xf1\x1f\x10\x58\x1f\x91\x86\xcd\xe3\xd3\xcb\x19\xae\x34\x13\x87\x0b\xd0\x18\xb3\x55\x7e\x5e\xea\x24\x88\xc8\xc9\x93\x6c\xbc\x28\x77\x77\x28\xd7\x7a\x04\x69\x5d\x7c\xc0\x9d\xe9\xeb\x4b\x6b\x21\x74\x48\xc2\xdd\x53\x36\x8d\xbf\x79\x70\x39\x73\xf3\x14\xde\x64\x2b\xc6\x97\x30\x95\x79\xa9\xf6\x6e\x28\x48\x4f\x92\x92\xbf\xf6\xb8\x82\x2f\xac\xc3\xaa\xe1\xcd\x63\xf2\xa9\x13\xf1\xb8\xea\x0f\x5c\x80\xed\xe9\xaf\x64\x29\x14\x97\x07\x7d\x4b\xc6\x38\x41\x89\x63\xe6\x8f\xa4\x9e\x66\xd0\xa2\xf1\xed\xb6\xcd\x5d\xc6\xad\x03\x89\x8b\x6b\xbd\x57\x9d\xf1\x83\x88\xb2\xc6\x85\x5e\x13\x7a\x0b\x66\x23\x9d\x40\xce\xe6\x8d\x83\x70\x7a\xf0\x9e\xd0\xa3\xd2\x1a\x44\xe4\x15\x21\x93\x1a\xb7\x68\x40\x6b\xf6\x69\x60\x40\x96\x46\x4c\xac\x8c\x71\x50\xab\xe4\x60\xbe\xa3\xcb\x2a\x99\xa5\x20\x69\xca\x61\x84\xa7\x34\x58\x3e\xf8\x83\xb5\x2e\xcb\xe1\x30\xa7\xa4\xfd\x10\x61\x9e\x36\x08\xd1\x20\x44\x25\x39\xc2\x43\xaa\x35\x0f\xab\x19\x18\x32\x74\xea\x51\x18\x78\x52\x49\xe7\x52\x6f\xe3\x34\x3a\x9d\xba\x6e\xfc\x35\x75\xf5\x39\x5a\x39\x50\x24\x0c\xb8\x09\x76\x2b\x6e\x36\xd4\xe5\xe3\x28\xaf\x76\x8a\xdc\xa1\x09\x35\x59\x2d\x59\x67\x56\x7d\xae\x6a\xfb\x0d\x38\x47\x16\xc3\x61\xe1\xb7\xe5\x7e\xcf\xb5\x23\xb0\x3a\xbe\xfa\xfc\x54\x6d\x6b\x8c\x40\xe8\xaa\x5d\x66\x2a\x66\x13\xa8\x29\xa4\x91\x8a\x0f\x0d\x6f\x86\x2e\x68\x00\xbc\xd6\x28\x20\xea\xaf\x70\xdb\xb4\x12\x9f\xe2\x92\x5c\x24\xbc\x3e\x07\xe5\x7e\x9f\x4e\x3f\x73\xc5\x08\x9d\x58\xae\x2f\x54\xd1\x74\xb8\x2d\x4e\xa8\xf1\x86\x2b\xfa\x3d\x90\xdb\x6b\x49\x51\x48\xc7\xcd\x1f\x4e\x28\x5f\x76\xa4\xf3\xb5\x55\x16\x30\x10\xa0\x99\x92\x19\x4a\xb5\xbb\xd5\xbf\x61\xa4\xfe\xc3\x5b\x0c\xa9\x50\x97\x84\x8d\xcb\x5a\x6e\xa8\xc4\xbb\x68\xbf\xe3\xb5\x8d\x6f\x54\x85\x96\xfb\x7d\xb6\x2d\x18\xcf\xb0\xb8\xca\x2b\x42\x83\x71\xd5\x84\xb6\x06\x5e\xa1\x49\x4d\xaa\x18\x5f\xc3\xb6\xb7\xdb\xef\xf3\x1d\x44\x40\xb4\x99\xd3\x22\x7d\xb4\x2a\x34\xe9\x7d\xb3\xdf\x77\xab\xa1\x21\x85\xb6\x5e\x9b\xce\x53\x77\x07\x77\xd4\x0e\xef\x48\x4f\xa5\x25\x42\x78\x3d\x1c\xee\x14\xed\xc9\x2d\xe1\x59\x23\x63\x27\xf7\x1f\xd9\x11\x4f\xb2\x51\x8d\xf0\x36\x06\xa5\x3d\x5b\x0c\x87\xf9\x96\x6c\x72\xaa\x2e\xc5\x05\x21\x64\xeb\x7b\x05\x0b\x63\xd1\x6c\xef\x4b\xb5\xce\x93\x42\x49\x85\xe5\x64\x81\xf5\x52\x4c\x96\x18\xfc\x54\xab\x80\xdc\x4d\x76\x4e\x03\x38\x59\xa9\x61\xce\x65\xb9\x7b\x4e\x3f\xd0\xcd\x8f\x8c\x7e\xb4\x7b\xbf\x69\x34\x9d\xd7\xc9\x77\x07\x6d\x8d\xa3\x4b\x25\x2b\x00\xc1\xae\xe4\xd6\x7f\xdd\x70\xb3\xd9\xbc\xa2\xf2\x15\xf4\xa1\xca\xd4\x65\xc9\x2a\xf3\xb5\x7e\xd8\x85\xa8\x71\xc9\x65\x1d\x41\x02\x20\xaf\xce\xc4\xd3\x2b\xa1\x0e\x8a\x20\xd4\x6e\x37\xee\x42\x63\xd4\x00\xae\xc2\x1f\x89\x8d\x33\x31\x33\xa6\x04\x38\xe1\x36\xa3\x66\xeb\xda\xbd\xcc\x85\xcf\xe2\x74\x88\xf0\x19\x22\xf2\xd7\x80\xa9\x08\x52\xe4\xb2\x30\x43\x2e\x9b\x4a\xe7\x8f\xd4\xd3\x60\x83\x3b\xcf\xfb\x44\x35\x62\x52\x9e\x43\x6b\xe5\x70\x28\x09\x21\x65\xb4\x43\x7c\xe6\x67\x6d\xce\xea\x2c\x64\x90\xc9\xd0\x52\x9f\xe0\xf5\x94\xcf\x90\x99\x67\x9d\xd6\x57\x13\x00\xa2\xaf\xd6\x44\x69\x62\x36\x22\x1b\xc3\xbf\x7a\x3b\xea\x8f\xec\x9e\x74\x74\x02\xb6\x26\x03\x16\x22\xdc\x9f\x36\xe8\xc6\x6e\x52\x0b\x9c\x76\xd2\x56\x43\x87\x21\x77\x3a\x7a\xfd\xe8\xc1\x21\x1d\xbb\x91\x1d\xba\x53\xf7\xcd\x45\x62\x26\xc8\x74\x76\x6a\x7f\x1b\x10\x8c\x98\xcf\x4b\xfe\x83\xba\x5a\xaa\x45\x29\xa8\xf6\x9d\xa9\x50\xbe\x42\x78\x65\xb2\x34\x3d\x56\xbc\x51\x7e\xcf\x74\x84\xae\x71\xef\x84\xd4\x52\xa1\x87\xe7\x31\x9f\xc8\xa4\x6b\x6c\xec\x14\xb9\x28\x79\x55\x6e\xda\x71\xd6\x5f\xe4\x24\x79\x30\xdd\x4b\x2a\x89\xcc\xc1\x64\x3b\xad\x70\xf0\xd4\xe8\xe6\x06\xd1\xc8\x06\xb9\x1e\xcf\xd5\xd2\xe7\x85\xb9\xeb\xf3\xc2\x5c\x47\x7e\x8c\x98\x19\x1f\x44\xea\x22\x53\x1e\x89\x6f\xc8\xc5\xa3\x07\x0f\x04\x52\xec\x2d\xa1\x53\x31\xf3\x09\x5c\x73\xc5\x47\x1a\x32\x60\xa3\xf9\x64\xae\x48\xad\xe1\x83\x7d\x43\xab\x03\x3c\x29\x24\x6d\x0a\xef\xd0\xb2\xed\x48\x38\xca\xe6\xd9\xc8\x79\x97\xdd\x29\x11\xdd\x6e\x44\xa6\xdf\xe1\x12\x5d\x95\x93\x2c\xf3\x2d\x6e\xff\xa9\x16\x71\x41\x5c\x13\x15\x69\x3b\xad\x95\x57\x62\x52\x82\xed\x3c\xea\x54\xd1\xf1\x6e\x63\x57\x62\xc2\x74\x41\x5c\xa1\xab\x2a\xea\xe1\x5d\x3b\xdb\xbc\xf4\x31\xeb\x00\x3e\x0f\x0e\x4a\x6f\xc0\x5b\x5a\x40\x95\xd1\x45\x2b\xe0\xc2\xef\x94\xb0\x9c\x67\x1c\xa1\xee\x5b\xbd\x35\x01\x44\x41\x94\x17\xb7\xca\x37\x90\x4d\xa9\xd1\x15\x18\x99\xd3\x07\x49\xb1\xb1\x09\x93\x7a\x5c\xf0\xdf\xcb\x33\x63\x96\x3b\xd3\x9a\xba\xb3\xdf\x67\xa3\x6a\x94\xfd\xfe\xec\x86\x2e\x0a\xb5\x09\xef\xca\x5a\x9c\x15\xbb\xdd\xd9\xba\xa8\x54\x71\x9d\x4d\x98\x2e\xcf\xbc\xc6\x98\xf1\xdb\x33\x45\x53\xcf\x98\xac\xce\x56\x4c\x54\x52\x87\x58\x8d\xcf\xde\x95\xbe\x7a\x6e\x5b\x28\xf9\xd9\x12\x74\x8b\x30\x52\x5d\xb4\x3a\x5b\xd6\x42\x47\x6c\xf9\x7a\xb1\x6a\xfc\x6c\x51\x70\xc8\x9c\x79\xf6\x3f\xa0\x77\xcc\xd1\xff\xa8\x1a\xe4\x9a\x9e\xfd\x8f\xe7\xee\xff\xe7\x4c\xb3\xb1\x67\xbb\xa2\xaa\x54\xe7\x4a\x5d\x02\x58\x9d\x87\x81\x0a\xe3\xa1\x57\x60\xfc\xcf\xd9\xba\x2c\xdf\x57\xe3\x4c\x07\x7a\xd6\xe4\xfc\xd2\xa5\x21\xec\x72\xa3\xfa\x56\x0b\x8f\x54\xa9\x8e\x54\xf9\xe0\x81\x3a\x52\x1b\x42\xa7\xe5\x0c\x2f\xc8\xc6\xc5\xa1\x2f\xc9\x62\x38\x5c\x58\x05\x68\xf0\xe7\xb4\x9a\x69\xef\x12\x75\xce\xac\xa4\xbc\xf0\xa7\x0d\xb2\x6a\xe7\x26\x62\x85\x10\x52\x41\x94\x8c\xde\xfa\x35\x5b\x7e\x5b\x0a\x94\xf3\xe9\xc5\x0c\xe1\x85\xe3\x01\xb6\x85\x78\x0f\xab\x7a\x5d\xe9\x8b\x7f\x99\x17\x08\xa1\x41\x4d\xce\x2f\x1a\xad\x39\x7c\x3b\xad\x40\x13\xbc\x43\xbb\x50\x03\x1b\xc4\xf5\x73\xe4\x55\xb9\xe7\xf5\x70\x78\x2e\x50\x62\xd7\xbc\x2c\xe5\x5a\xad\x94\x1e\xe7\x12\xe6\x39\xde\x3b\xe3\xb3\x67\x2b\x58\xba\x25\x5b\x9a\x62\x41\x29\x0c\xb4\xeb\x0c\x86\x07\x8b\x7b\x43\xcf\x60\xab\x2d\xcf\x6e\xee\xce\xf4\x14\xa8\xfa\xa5\xa8\xe9\xd9\x4a\x94\xdb\x60\xeb\x98\xb9\x3d\x63\xfc\xac\x08\x22\x12\x30\x54\x00\x1f\xf9\xce\xc8\xf2\xec\xa6\xbe\xb9\xd9\x50\xb5\xc0\xee\xd8\xdc\x44\x91\xe4\xc0\xb6\xd0\xae\xec\xa8\xa6\xc7\x84\xee\x83\x3b\x51\x41\xca\xd8\xe4\x59\x91\xd2\xa8\x50\xfa\xbc\x73\x72\x46\x0a\x60\x58\x58\xf5\xc6\x48\x7b\x57\xd5\x54\x33\x18\x33\x62\x1d\x3a\x26\xe1\x23\xa7\x56\xc8\x99\x55\xfa\x04\x5e\x84\x6e\x08\x1f\xbc\xe0\xdd\xed\x7a\x8a\xfb\x63\xab\x1c\x02\xb4\xad\x43\x91\x21\x53\xd7\xe6\xe3\xd7\x85\x5c\xe7\x42\x11\x2a\x31\x15\x01\xa0\x02\xb7\xf4\xf3\x56\x09\x0d\x01\x46\x75\x08\x01\xcd\x9d\x3a\x23\x44\xfa\xc0\x0c\xe1\xd4\x4b\x0f\x1e\x82\xcb\x74\x09\x40\xbf\x2d\x02\x4f\xa9\x98\xde\xa7\xc4\x9b\x90\x56\xa3\x81\x3a\x2d\x51\x5f\x18\x3f\xab\xc0\x85\x83\xb7\xd2\xe0\x80\x51\x34\xc6\x27\xf1\x3d\xaa\xba\x03\xea\x0e\xe2\xa4\xaa\x43\xc0\x94\x54\xfd\xd1\x9c\x84\x09\x47\xe6\xe1\xcd\xe7\x52\x1c\x59\xbc\x84\x7b\xe0\x38\x34\xc6\xff\x44\x68\xbf\x41\xf1\x9f\xd5\xa4\x23\x10\xb8\x57\x1a\x14\x86\x6a\xa5\x63\x83\x06\xb1\xc3\xc1\x7e\x2f\xb4\x74\x18\xc1\xc3\x60\x8e\xb0\x79\x1e\x02\xcd\xa8\xc7\xe0\xf6\xb2\x65\x15\x25\x74\xbc\x00\xb5\x69\x5b\x8c\xe2\x2d\xa2\x65\x9d\xab\xc6\x73\x56\x01\x31\xb1\xa4\x8a\x23\x43\x68\xe8\x40\x8c\xe7\x90\xfa\xd7\xbc\xd2\x34\x87\xa3\x26\x38\xc2\x1f\xdb\xf7\x2d\xed\xf8\x1b\x48\xaf\x03\x2e\x7b\x1c\x7a\x4b\x34\x1c\xf2\xbc\xc4\x42\xd1\x6d\x06\x06\x89\x72\x16\xb4\xf2\xd4\x79\x01\x52\x64\xeb\x02\xde\x8a\x4c\xe9\xcc\x65\xa9\xfd\xe6\xe2\x11\x94\xc9\x85\x3a\xbf\xfa\xf6\x45\x46\x35\x03\x07\x28\xc8\x8c\x71\x26\x06\x9c\x08\x23\x6f\x54\x71\x07\x39\x62\x5a\x8a\xe5\xd0\x0b\xdf\x8d\x4f\x21\xbd\x0a\xf4\x39\xf7\x46\xe9\x23\x8c\x20\x53\x4d\x12\x70\x1a\xf8\x63\x51\xfd\x50\xd1\xe5\xe4\xfc\xd2\x86\xe0\xe4\x8c\x08\x10\x80\xae\xd4\x00\xf5\x9f\x68\x22\x21\x3a\xc0\x6c\x4d\x2b\x12\x55\xd8\x76\x16\x97\x68\x62\xbe\x6a\x9b\x23\xac\xe0\x5b\xf9\xc4\xd5\x62\xb7\x2e\x78\x35\x9f\xef\xf7\xf9\x81\xb7\x6e\x04\x3a\x78\x35\xeb\x14\xc8\x9a\x43\x43\x03\x30\xa7\xde\xca\xed\x1b\x00\x13\xc1\x1c\x64\x9f\x6a\xb1\xa6\xcb\x7a\x43\xf3\x0c\x58\x00\x6d\x84\xc9\x42\x94\xfb\x06\x35\x6e\x4e\xd4\x90\x29\x29\xf1\xfd\x86\x99\x08\xdd\x6a\x42\x71\xf9\x91\xeb\x53\x54\x36\x0d\xb5\x0e\x4d\x10\x44\x40\x6e\x81\x64\xbd\xd2\x26\xd9\x20\xa2\x18\x3c\x98\xf1\x35\x29\x5b\xc1\x08\xa5\x0f\x3e\xf0\xa9\x36\x74\xf6\x85\x10\x05\x74\xce\x38\xd3\x24\x42\x1d\xee\x74\x20\x75\xeb\xc0\x83\x0f\xa9\x4b\x5d\x36\x68\xf7\xd3\x23\xfc\x43\x8c\x8c\x79\xf9\x13\xdb\x6c\xb4\xe5\xe6\xb1\xbe\x79\xc8\xae\xf5\xf6\x39\x2d\x3e\x50\xb2\x1b\x04\xc0\xcd\x4a\x2a\x93\xa2\x56\x52\xdf\x78\x59\x6d\x2c\x10\x67\xb5\xdf\x4f\x77\x33\x9b\x5f\x6b\x7e\x53\xb3\xcd\xf2\xc9\xdb\xe7\xb9\x22\x39\x26\x98\x3b\xa4\xd9\x3e\xa4\x1b\xb7\xe2\x42\xcf\x2f\x70\x69\x2c\x97\x60\x3d\x87\x6c\xcc\x6a\xa2\xc0\x01\xaa\x6d\x99\xf0\x89\xee\x65\x98\xe0\x5e\x02\x87\x03\x41\x9b\x60\xdf\x47\x90\xca\x7a\x97\x47\xe0\x0a\x0d\x76\xdd\xec\x4e\xf2\x7d\x3a\x66\xd7\x62\x44\x17\x26\xb5\xf2\x5f\x8a\x8a\x2e\xcd\x5d\xaf\xf5\xb2\x69\x1d\xb6\xb6\xdb\x05\x31\x36\x71\x18\x78\x0a\xe2\x52\x44\xc6\x0a\x98\xc3\x07\xdb\x62\x67\x74\xf4\xb4\x1b\xf4\xda\x0a\x70\xe3\xe3\xb9\x8f\x5f\xfe\xcb\x1d\x94\x9d\xd2\xd9\x7e\x9f\xf7\xbc\x21\x12\x35\x58\xed\x23\x97\x55\x30\x37\x88\xd0\xcd\xe7\xc3\xe5\xe3\xd0\x00\xf8\xc3\x9b\xe7\x44\x63\x9b\x05\x0f\x7d\xec\x4c\xe7\x15\xa0\x51\xfa\xa7\xf3\x5f\x76\x8f\xfb\x70\x8b\x4c\x09\xd8\x44\x90\x7a\x77\xe9\x7d\x80\xa8\xa4\x42\xef\xef\x2a\x48\x81\xe1\xef\x18\xc3\x6b\x2c\x19\x8c\xaa\x10\x77\x28\xaa\xd3\xce\x91\x8e\xaf\xaf\x0e\xb4\xde\x99\xcd\x34\xc2\xd2\xd1\x5e\x76\x67\xf8\x17\x5d\xd8\x38\x46\x57\xe4\xbe\x01\x08\xc2\x09\x50\xee\xa4\x41\x2d\x8d\xac\x96\xe0\xe4\x1a\x84\x7b\xf6\x71\x3f\xfe\x70\x64\xec\xd1\x02\x67\x1b\xe3\xef\xdc\x37\x4d\x23\x99\x7a\x3c\x9f\xeb\xe8\x61\x71\x37\x9f\xdb\x03\x20\xc6\xdb\x6e\xfb\x00\x3b\x2c\x0b\x21\x4d\x96\xc5\x84\x9b\x4c\x07\x4c\x4c\x6d\x50\x56\x6c\x34\xb4\xaf\xf5\x7d\x01\x3b\x9d\x26\xa4\x39\x0a\x91\x5d\x41\x77\xd8\xa9\x23\x31\x49\x08\x5b\xb7\x1f\x87\x55\xac\xf3\xb5\xd3\x31\x08\x33\x8e\x89\xd1\x3f\x8d\x63\x8b\xe1\xd0\x92\x94\xdb\x80\xa0\x87\x24\xde\x6d\x4e\xf8\xd8\xe6\x4c\xcd\xd1\xc0\xb9\x97\xf5\x74\xd3\xe1\x2a\xfa\x12\xa9\x44\x50\xc8\xea\x07\xe7\xe1\x84\x48\x84\xe5\x38\x00\x6c\x6e\x79\xae\x84\xe3\x6d\x10\x3e\xbf\x00\x25\xfa\x32\x30\xae\x85\xc3\x33\x64\x4e\xb7\xa2\x7b\xf0\x76\x53\x7e\x0c\x7c\xbb\xd8\xd6\xc3\xbc\xf3\x52\xb2\xd5\x9d\x65\xcb\xf4\xde\xce\xb3\x5a\x6c\x32\xef\x64\xd1\x66\x4a\xb5\xf6\xd4\xf3\xa3\xc8\x5c\xf1\x4e\xbd\x19\x39\x1c\xe3\x2c\xea\xab\xda\x51\x81\xd6\x33\xec\xba\x0b\xf9\x60\x95\xd1\xd9\x32\x7e\x3b\x1c\xb6\x9e\xd1\xa5\x4f\x82\x1e\xa8\xee\x92\x77\x71\x4a\x1e\x4b\x2a\x19\xc0\x3a\xc9\x56\x79\x6d\x61\x3f\xd5\x3d\x56\x87\xf7\xd8\xbd\xd6\xe9\xe5\x1b\x52\xab\x1b\xcd\xea\xeb\x42\x45\x6f\x68\x3e\xbd\x78\xc4\xbe\xb6\xd2\x1c\x24\x51\x5f\x92\xbc\x24\x9f\xf2\x25\x5e\x60\x31\x65\x33\x84\xc6\x9e\xb5\xc1\xe5\xd8\xb2\x36\x21\xf3\x7a\x4e\xc8\x26\x54\xe0\x6b\xfb\x04\x38\x8c\xb6\x8b\x6b\x86\x0b\x3c\xa6\xfc\x4b\x34\xb8\x20\x5e\xee\x84\xa0\xbc\x34\xa0\x9b\xe6\x45\xbd\x89\xcb\x19\x5b\xf7\xfb\x5c\x3a\x36\x4f\xb5\xde\x62\x1b\x45\xa8\xfc\xd3\x1a\x7d\xdd\x49\xcf\x3c\x2a\x32\x29\x51\x03\x03\xdf\x20\x84\x17\x84\x37\x4b\x77\x0a\x64\xb9\xdb\x58\x73\xd3\x55\xf7\xd1\xd8\x6d\x14\x9d\x18\x61\x89\x26\x79\x45\xf2\x8e\x45\x13\xb6\x3c\x8a\x6e\xe9\x0f\x8c\x7e\x9c\x3c\xd0\xbd\xb0\x7b\x39\xaa\x9b\x54\xf6\x4e\x48\xbd\xed\xb6\x8c\xbd\x9d\xee\x41\x40\x4b\x1f\x58\xd4\x97\x09\x0c\x1c\x8d\x97\x6c\xf9\x18\xea\x7d\x53\x96\x60\x78\x4a\x0c\x15\x29\x49\x53\x5b\x27\x52\xa7\xd8\x2c\xce\xe1\x53\x15\x7f\x9c\x41\xe8\x45\x1a\xc5\xdd\x22\x87\x6b\x10\xaa\x87\xff\x96\x8f\x47\xe8\xea\x21\x9a\x5e\xcc\x22\xf0\x9f\x2e\xe0\xb0\xab\x4e\xbb\x49\xb4\x0b\x24\x43\xc3\x52\xc7\x70\x4a\x67\xb9\x84\xe4\x7f\x6e\x6b\xcd\x73\x9d\xc7\x02\x61\xd1\x07\x2b\x7a\x0a\x02\xef\x51\xc7\xcb\xfc\x02\x6f\x8e\x43\x2e\x7f\x16\xd4\xb2\xd0\x69\x25\x36\x69\x3c\x5f\x46\x78\xa4\x11\xe7\x16\xcf\xb7\x88\x83\xd6\xdb\x53\x1f\xb4\xae\xa1\x20\xbe\xc4\xa9\xb7\x8d\x48\x7a\xdc\xbb\x37\x60\x13\x3f\x1c\xf1\xc0\xfd\xe7\x11\x9b\x2d\xc7\x9f\xe4\x22\xfa\x86\x70\x00\xb7\x39\x9a\x43\x7b\x17\x87\x29\x8b\x7a\x90\x9d\x0f\xe0\x44\x07\x53\x67\x3e\x3c\x88\x17\xad\xb5\x94\x07\x43\xa6\xc2\xbb\xb3\x0d\x4c\x6a\xc3\x38\x93\x1e\xc8\xfd\xab\x6a\x68\x40\xb2\x67\x07\x30\x7e\xcf\x92\x57\x64\x04\xf0\xdb\x8a\x6c\x72\xc9\x49\xa2\x4f\x8c\xf9\xb3\xeb\xc7\xad\x78\x85\x23\x46\xd7\x88\x0c\x26\xaf\x01\x9f\xcc\x31\x45\xb4\x43\x5e\xff\xa8\xcc\x63\x7a\x34\x08\x85\xf5\x96\x28\xe1\xf4\x40\x52\x3b\x2b\x3a\x5d\x13\xfc\x9c\xca\x19\x02\x8e\x4e\xd4\x1c\xe5\xea\xe7\x54\xcc\x70\x66\x7a\x08\xac\xcc\x09\x11\x9b\x6d\xd1\x01\x04\xbc\x34\xcf\x34\x5f\xb1\x10\xab\xd8\x1f\xd9\x13\xe3\x38\x7d\x98\x82\xc3\xf1\xf6\x81\x0b\x0e\xd1\xd1\x3f\x53\x5d\x51\xd2\x7c\x6f\xbb\x5d\xab\x79\x70\xf2\xf3\x08\xb8\x21\x39\xd6\xe6\x74\xb1\x50\xf3\x85\x9e\xeb\xee\x52\x09\xa1\xfd\xd2\x7a\x58\x70\x9c\xc2\x6b\xb6\x10\xff\x69\x96\x61\xd0\x71\x29\x61\xc3\x61\xe1\xc4\x93\x73\xa2\xc8\x52\x91\x4a\xca\xca\x10\xba\x32\x9d\x49\x26\x89\xa3\x68\x92\x0b\xd2\xce\x47\xc3\x1a\x7c\xe8\xa3\xba\xad\x65\x16\x08\x21\x84\x8d\xcf\x1b\x1b\x0e\xad\xb7\x58\xd8\xdd\xbc\x04\xc7\x46\xde\xcd\x0f\x5b\x22\x9c\xc0\x15\x64\x63\x9d\x06\x67\x38\xb4\x7f\xe5\x3d\xe5\x5c\x76\x3a\xed\xea\xc1\x6c\x9a\x30\xb5\x52\x90\x20\x04\x58\xe0\x6f\xcd\x97\x69\x19\x0b\x8b\xa4\xb0\x9e\xf6\xa8\x1c\xb4\x01\x70\xa5\x0b\x85\x23\x12\x57\x84\x83\x5f\x58\x42\x63\x52\xce\x06\xf5\x70\x08\x3e\x64\xaa\x67\x4f\xa3\x33\x9e\xd7\x6a\x6b\xd4\xe3\x08\x13\x4d\x13\x85\x0d\x71\x86\xde\x12\x2f\x48\x65\x57\x7a\x03\x82\xab\x50\xc7\xdf\x3a\x5f\xd9\x07\xe4\xfc\x02\x2f\xf6\xfb\x9c\x91\xaa\xab\x15\x8a\x31\xbf\x70\xe5\x41\xba\x36\x98\x59\xd5\x23\x30\xc1\x41\x53\x08\x2f\xc6\x11\xe2\x49\x5e\x22\x5c\x0f\x87\xe7\xe0\x4b\x9e\xc0\x6c\x41\xf9\x02\x1d\x44\xdd\x5c\xd4\x95\x2c\xb7\x1e\x76\xf3\x4c\xdf\xc5\x67\x25\x0f\x60\x36\x35\x0c\xa7\x01\xdb\x34\x49\x55\x34\xdc\xa6\x1d\x72\xa3\xd7\xd9\xb5\x7b\x64\xa9\xfb\x56\x4f\xa4\xd7\x4c\x02\x7f\x26\x9c\x76\xbe\x0d\x44\xba\xdf\x17\x1d\x14\x9b\xc6\xd2\x88\xb6\x58\x1f\x78\x8e\xc1\xae\x0b\x54\xf5\xa9\xbb\x6a\x50\x8e\xfd\x06\x36\x25\xba\x3b\x3a\xd7\x48\xec\xc1\x04\xf8\xa2\xdd\x49\xc9\x3b\x7e\x98\x4a\x76\xd7\x39\x9b\xf2\xc8\x20\x27\x62\x73\x1b\x43\xcd\xa0\x34\xc9\x94\x7e\x78\xf3\x3c\x52\x40\x32\x42\xc3\x8b\xa2\x08\x13\xc5\xfc\xf0\xe6\x39\xe8\x4e\xa2\xf6\xfc\xbb\x63\x6d\xe2\x32\x28\x7c\xa8\x51\x50\x3a\x94\xe3\x48\x8a\x8f\xb5\xa4\xf1\x3b\x60\x24\xca\x71\x2c\x9f\x90\x76\x5c\xac\x68\x15\x30\xcf\xf5\x0a\x77\x51\xa3\x7a\x65\x8d\x81\x96\xaf\x00\xe1\x3d\x74\xc1\xc5\x0c\xdd\xb3\xab\x7c\x49\x37\x54\xd2\x33\x39\xa5\x33\x2c\xa7\xcc\x04\x18\xce\x6c\xd2\x8d\x64\x34\x29\xc7\xb6\x9c\x41\x3a\x41\xd6\x53\x90\x10\x02\x32\xb1\xba\x36\x7b\x22\xeb\x39\x06\x9f\x6b\x0b\x90\xc2\x95\xa8\x87\xd2\x83\x4a\x87\x0a\x28\x02\xa9\x33\x1e\xf9\xec\x47\x57\x74\x92\x15\x4a\xe6\xd1\x58\x4f\xff\xf9\xf6\xd5\xcb\xb1\xbe\xb9\xd8\x4a\xc9\x41\x93\x0c\x92\xec\xf6\x20\x6e\xb5\xda\x49\x4f\x18\x18\xf4\xf8\x70\xd8\x9a\x31\x6e\xa0\xb0\x8c\x50\xd3\x13\x3b\x2b\x30\xb7\x33\xc6\xcd\x8c\xc1\xa0\x8f\x03\x0c\x1c\x1d\xf6\x4d\x59\x6e\x68\x61\x40\xae\x32\x29\x6a\x0a\xa9\x68\x27\x19\xaf\xb7\x37\x1a\x20\x47\x5e\xbd\x84\xbf\x73\x8a\x74\x1c\xcd\xab\x55\x8e\xa2\x09\x83\x25\xb9\x46\x39\x4c\xdc\xae\x10\x95\xe2\x76\xd1\x44\x4d\xd9\x4e\xd4\x9c\xf6\xc4\xac\xa6\x36\x1d\xb6\x71\x3f\x2d\x9b\x27\xf5\x36\x4f\x76\x06\x39\x9d\x72\xa1\x84\xbf\x62\x37\x65\x33\x34\x1c\x8a\xfe\xe0\x59\x39\x65\xb3\xe1\xd0\xcd\x3b\x9b\x81\xa8\x9d\x96\xb3\x5b\x9e\xdd\x1a\x8f\x67\x03\xf9\x6d\xb5\xc7\x3d\xa8\xe5\xe0\x86\xcb\x93\xc2\x03\x56\x7c\xa0\xd1\x7c\xee\x44\xb9\xa0\x95\x11\x49\x7c\x7b\x21\x58\x5b\x81\x05\xae\x30\x47\x31\xe0\x52\x85\x7d\x6a\xdb\x6e\x7e\x0d\xfd\x0d\x43\x06\x86\x2e\x4f\xd3\xe0\x64\xd0\x6b\x89\xa7\x45\x6f\xa2\x8b\xaa\x99\xa1\x40\x81\x50\x1b\x05\x42\x0d\xab\x78\x6c\x24\x89\x49\xb4\xba\xe9\x63\xb1\x0b\x36\x1b\x08\xc0\x64\x75\xd8\xec\xfb\x06\x57\x69\xe5\x63\xbb\x9e\x48\xfc\x8f\x10\xaf\x2a\x54\x4c\xeb\xd9\x7e\x9f\x03\x78\x55\x35\xad\x67\xc6\xcd\x7a\xbe\xaa\x37\x9b\xbb\xb7\x8b\x72\xd7\x49\x14\x62\x71\xba\x0f\x14\x29\x51\x1b\x82\xab\x04\x02\xdb\x5d\xb3\x76\xae\x10\x67\xdc\xbf\x71\xc4\xc2\xf6\x68\x7d\xb7\x84\xa4\x29\x5c\xf1\x0c\x1b\x16\xb2\xf3\x55\xce\xe0\x5b\xa7\x43\x4f\xa0\xff\xb1\x16\xfa\x1f\xc2\xdc\x44\x35\x1c\x3c\x8a\xdd\xef\x34\x73\xf2\xb7\xd7\x2f\xa8\x2c\x92\xea\x2e\x53\x3e\x00\x69\x8c\x94\xf3\x10\xba\xd9\xe0\xd6\x39\x4e\x05\xc5\x04\x4a\x66\xeb\x7f\x86\x37\x84\x4e\x6b\xe7\xa6\xb3\x20\x91\x75\x6c\xba\x01\xde\x66\xe1\x99\x47\x55\xd3\x52\xb1\x8e\x3b\x02\x40\xd4\xf7\x0d\x5e\x59\xf4\x30\xad\xc3\xaa\x1f\x8d\x46\xc6\x3d\xd4\x31\x19\x7a\x70\x1a\x3b\x5b\x6b\xc3\xb4\x62\x99\x87\x78\x0c\x6c\x34\x42\x79\x45\x76\x53\x00\x33\xe4\x0e\x91\xc1\xdc\x74\x68\x38\x6c\xc7\xec\x82\x06\xb9\x1d\x99\xb4\x9b\x16\x33\xac\xfe\x47\x4a\xbc\xd2\xce\x10\xa5\xc9\x32\x6f\xb7\xcf\x1a\x03\x3d\x43\x0d\x78\xa9\x2d\xc9\xf9\xa5\x41\xc7\x06\x84\xab\x15\x20\x5c\xad\x1d\xd8\xa8\x57\xf2\xfa\x59\x21\x5b\x84\xb7\x4a\xda\x4c\x6d\xd9\x74\xb6\x91\xd8\x39\x37\xdc\x8f\xd1\x86\xb0\x7e\x60\x98\x11\x87\xf0\xc8\xbf\x66\xe0\x0b\xa6\x43\xa3\x5b\x93\xba\x98\xf2\x19\x02\x71\xbf\x20\x17\xe0\x50\x16\xcc\x69\xf1\x75\xf5\x68\x34\x2a\x50\xbe\x21\x79\xad\x5f\x4d\x8b\x00\x24\x52\x0c\x87\x35\xfc\xd8\xef\xeb\x04\xec\x92\x2b\xd2\x7d\xa5\x3e\xf0\x40\x17\x50\xc8\xe0\xdc\x0c\x87\x4a\xc8\x4b\x7d\x33\x1c\xe6\x62\x9a\x7a\x31\x23\x62\xba\x99\x61\x73\x73\xa8\xbf\xd5\x86\x3e\x74\x40\x8f\xce\xf1\x02\x2f\x49\x0b\x5f\x64\xd7\x0d\x74\x0d\xbc\xee\x96\xa1\xd7\x1d\x5b\xd9\xb8\x81\x60\xa6\x97\x6e\xa6\x75\x32\x0f\x16\xce\x74\xf9\x75\xf1\x68\x34\x2a\x51\xa5\x1f\x4f\xcb\x19\xce\x6b\x52\xb9\x99\x96\x6a\xfb\xea\x99\xae\x7a\x66\x1a\x8a\xa4\x66\xba\x0a\x66\x1a\x0a\x99\x99\xbe\xaa\xcf\x09\x49\x7d\xa2\x76\xec\x34\xf5\x62\x46\xe4\xb4\x76\x13\xad\xfe\x46\x13\x0d\x51\xb2\x49\x05\xfb\x56\xc9\x60\xdf\xca\x04\xfb\x52\xe3\x7c\x88\x70\x5f\x63\x3b\x2b\x1c\x2e\xb0\x1e\x3c\xae\x5a\x40\x23\x8a\xa1\x34\x0e\x35\xc6\x2f\x02\xdc\x4b\x92\xda\xa7\xa3\x36\xc0\x79\xd5\x7d\x47\x62\xaf\x9d\x57\x4a\x10\x30\x1e\xf4\xbe\x64\xa5\x6d\x81\x38\x33\xb6\xfc\xb8\x8d\xcc\x40\x16\x45\x49\xd1\x3a\x79\xd5\x34\x0c\x5c\xea\xfb\xe4\x60\x8e\x5c\xb1\x2e\xc3\x7d\xc7\x65\xee\xb0\x07\x9f\x56\x55\x58\x3f\x9f\x54\x53\x2d\x3f\xbe\xd3\x2e\x7c\xe3\xeb\x87\xb0\xf3\x02\xca\xcf\x2f\x3c\x38\x3e\x4c\x90\x5a\xcb\xde\x25\x4a\x38\x7a\x74\x0b\x0d\x87\x7a\xb1\x74\x2d\x79\x6f\xb9\x83\xcb\x5d\x6f\x36\x0d\x4e\x38\x32\x27\x74\x8c\x91\xe3\x86\xd3\x20\xc6\x4e\x85\xfd\xea\xe7\xf6\xd7\x6a\xf8\x6d\x97\xc3\xe8\x6b\x7b\xea\xfa\xbe\xee\x28\x7c\x12\x21\xb2\x1a\xa7\x0f\xc2\xc3\x7c\x96\x06\x88\x5e\x08\x40\x75\xcb\x1e\x15\x71\x39\x15\x9a\x37\x13\xe9\xac\x59\x46\xee\x57\xef\xa7\xdc\xd9\xd4\x8a\xfd\x3e\xef\xb1\x54\x8e\xc1\xd9\xe9\xf1\x9a\x6d\x96\x2d\x55\x95\xc0\xf7\x36\x3e\x76\x72\x7e\x11\xa6\x90\x60\x0d\x42\xe3\x9b\xb2\x94\x39\xc2\xa6\x25\x52\x20\x5c\x34\x0d\xc2\x6f\xc9\xbd\x12\xa6\x8d\xd3\xc6\x8b\x4e\x3c\x3f\x40\xbb\xeb\xa5\x4f\x10\x8d\xdc\xa4\x0e\x69\x4d\x7c\x20\x68\x68\x9d\x4a\x41\xe8\xd4\xfb\xdf\xcf\x06\xeb\x9c\xe2\x38\x56\x9a\xad\x72\x71\x4e\x48\x01\x20\xad\xdb\x9c\xda\xbc\x0f\xc8\x99\xdb\xaa\xb6\x23\x3d\xc2\x65\xd2\x7d\xbe\x52\x2f\xfa\xac\x57\x10\x1c\x83\x0d\xfb\xc1\x34\x6f\x40\x56\x41\x7b\xd6\x1b\x63\xb3\xdf\xe7\xf5\xa9\x4d\xd6\x07\x9b\xdc\xe8\x26\x51\xd3\xc6\x1b\xd1\x26\xf4\xe9\xcc\xe9\x9c\x06\x0c\x52\xd4\xb4\x55\xb5\xc9\x67\xda\x57\xe5\xdd\x5a\x94\x1f\xf9\x55\xf4\x6b\x42\xb1\x54\x07\x1b\x38\x31\xa9\x93\xf5\xb0\xf1\x96\x56\x55\x71\x4b\xdd\x0b\xf7\x04\x61\xa6\xa8\xcd\xe2\x7d\xf0\x0a\x7e\x27\xe2\x55\x99\x2f\x83\x10\x16\x8e\x30\x42\xeb\xa1\x3d\x85\xa3\x26\xe7\x38\x83\x79\x3a\xfb\xb8\x66\x1b\x7a\x66\x04\x2d\xc6\x6f\xb5\x02\x71\x72\x96\x8d\x98\x71\x06\x01\xa9\xb3\xc1\x86\xba\xf5\x6a\x6c\xd4\x29\x3c\xb4\x91\xb4\x64\xc6\xce\x09\xe1\x10\x58\x0b\x1b\xc9\xe5\x13\xf1\x39\xe6\xfa\xd7\xaa\x74\x9b\x43\xc9\xc8\xab\xe8\x7b\x77\x3c\xaf\xf2\x03\x35\x14\xb0\xd6\x13\x39\xde\xb1\x0f\xa5\xd5\x0b\x9e\x13\x42\x1b\xd4\x34\x83\xeb\x38\xfe\x4e\xf1\xbd\x7d\xe4\x2e\xf6\xcb\xcc\x3b\xcf\x1c\x5c\x5f\x54\x63\x58\x62\xd2\xf9\xa6\xb1\x00\x28\xe1\x43\x93\xd5\x48\xbf\x69\xb0\x8f\x2d\x88\xba\xe6\x1c\x9b\xc3\x14\x16\xa9\xb4\x3d\x46\x18\x51\xa2\x07\x64\x40\x17\xb3\x8e\x7b\x99\x8e\x6c\x11\x38\xda\xfc\x0e\x33\xc4\x54\x7a\x19\xe7\x02\x1a\x59\x31\x86\xda\xa4\x8f\x41\x6a\x2c\x5c\x92\x57\xda\x55\x94\xa3\x47\xa5\x73\x5b\x39\x97\x79\x89\x19\x7a\x84\x4a\x17\x60\xa5\xb7\xaf\xd9\xaa\x5c\x6d\x7d\x00\x2a\xb6\xdf\x20\xd4\x38\x70\xfc\x9f\x4b\xc6\xa1\xf6\x26\x8a\x8a\xbc\x3e\x1a\x15\x69\xe3\x06\x8f\xe6\xa0\x4d\x87\x22\x26\xd3\x5c\x1c\xcc\x45\xcb\xdb\xa9\x2e\x42\x06\x05\xd8\x24\xc7\xa0\x44\xbf\x02\x3e\xaa\xdf\x2c\xcd\x83\xf4\x9f\x56\x5f\x11\x55\x30\x88\x92\x4c\xda\x57\x5d\x83\x35\xc7\x1a\x09\x19\x0d\x87\xf9\x79\x5e\x0e\x87\x21\x64\x23\x8b\x13\x09\x27\x90\x54\x6d\x4e\x39\x3f\xb4\x9e\x14\xad\x1c\x17\xc9\xf4\xc2\x05\xae\xe2\xc4\xc2\x7d\x49\x3d\xcd\x7a\x7c\x49\xbe\x8f\xa3\x8b\xe6\x8e\x11\x0b\x72\x34\x76\xa2\xd3\x87\xc3\x3c\xcb\xb4\x4e\x33\x7b\x08\x7f\x4c\x2f\x66\xa8\xa1\x1d\xc7\x91\x44\xd6\x9b\x9c\x12\x9f\x28\x20\xa4\x96\x2e\x36\x7e\x20\x88\xc9\x3b\x11\x05\x56\xc4\xc0\xef\x57\x74\xbc\x2b\x77\x39\x1a\xc7\x08\xfb\x16\x9e\xc5\x39\xaa\x4c\xa8\x43\x0e\xd3\xee\x2a\x13\x8a\xc3\x4f\x44\x63\x12\xfb\xb7\xb5\x8c\x89\xae\xd3\x0e\x1f\x7c\xd5\x7d\x94\xc0\xde\xb1\xb1\x31\xb1\x5c\xef\x72\x74\xc8\x56\x6c\x94\xea\x50\x0b\x45\xab\xe5\x76\x0d\xfe\x84\x06\x00\xfa\xad\x2a\x69\x5d\x07\x8d\x4e\x87\x74\x2b\x85\x80\xab\x13\x93\xe0\x96\x08\x6b\x30\xc0\x54\xca\x11\x45\x3f\x39\xd0\x4d\x0c\xa1\x68\x36\xc5\x2d\xf2\xde\x78\x15\xe1\x08\x73\x0b\x63\xcd\x30\xf7\x58\x00\x1e\x15\x3b\xe7\xb8\x42\x83\xd6\x28\x14\xc3\xad\x86\xdf\x11\x3d\xbb\xab\x01\x23\xd5\xba\xab\x2f\x4c\x9c\x36\x9d\xe1\x4d\x9c\x7d\x72\x41\xb2\x2c\xc0\x34\xa8\xfd\x98\x25\x62\xe9\xdc\x2e\xc0\x6a\x47\x94\xde\x54\xa1\xa7\x8d\x85\x3e\x8a\x96\x9a\x5f\x60\x31\xba\x44\x9e\x80\x63\x70\x17\x1e\x43\x22\xba\x57\xab\x9c\x23\x9d\x16\xb8\x24\x3c\xc0\xfa\x57\x3c\x7e\x3d\x95\x00\x13\x65\x71\xeb\x14\xe7\x34\x1c\x82\x56\x7e\x73\x95\x57\x00\xc6\xc2\x5d\x3d\x0c\x5d\xf1\x71\x55\xdf\x54\x52\xe4\xcc\xe7\x55\x9c\xf0\x08\xc0\x76\x33\x65\x33\x5c\x21\x34\x89\x1e\x62\x8e\x10\x5e\x8c\x48\x36\x99\x64\x23\x0e\x20\xf7\x3e\x55\xd5\x68\xe1\x20\x27\x4a\x9c\x3d\xc8\xc0\x76\x77\x38\x0d\x41\x67\xfd\xd4\xed\x7a\xdf\xf4\x5d\xd0\x79\x02\xaa\x48\xcd\xb4\xbf\x84\x53\xbc\x5f\x9e\x43\x72\xcf\x29\x9b\x91\xfb\xc2\x24\x4e\xc2\x8c\x94\xde\x80\x51\x40\xaa\x5e\x7d\x80\x58\x9b\xc0\x14\x96\x03\xeb\x54\xae\xd6\x6e\x5a\xcc\x4c\xfa\x07\x55\x75\xa3\xc3\x1a\x8b\xd9\x7e\x6f\x9b\x32\x18\xfa\x06\x05\xa5\x95\xc8\xa1\x84\x80\x37\x50\x42\x36\x0d\x02\xee\x03\x07\xd8\x3f\xda\xf8\xe9\x7d\xf9\x08\x83\x30\xb8\x36\xc6\x63\x22\xcf\x85\xea\xc5\xc5\xac\x07\x0a\xa7\x08\x84\xc0\x01\x5b\xe5\x45\x80\x51\xd4\x99\x40\x8d\x39\xc6\xf2\x32\x34\xc1\x73\x1b\x9d\xfb\x5a\x94\xb7\xa2\xd8\x6e\x0b\xc9\x16\x41\x28\x75\x75\x76\x73\x77\xf6\xc3\x9b\xe7\x67\x8b\x82\xf3\x52\x9e\xdd\xd0\x33\x88\xb8\xfd\xc8\xe4\x9a\x05\x46\xf9\xf1\xd9\xeb\x0d\x2d\x2a\x78\x0b\xc1\xb4\xda\x48\xcf\xb5\xa6\xab\x92\xb4\x00\x03\x7d\x49\x2a\x88\x86\x2f\xb1\x1a\x15\x29\x2d\xb7\x23\x80\x26\x06\xd7\x65\xea\x30\x7a\x68\x15\xf0\x53\xd6\x7b\x4b\x3b\x3f\x29\x86\x2f\x81\x98\x74\xdf\xc7\x08\xf2\xd1\xa8\x71\x9f\x4b\xd4\xb9\x8b\x04\x1a\x0e\xd9\x68\xe4\xd6\x8f\x10\xc2\x34\xa4\x7b\x49\x1e\xfe\x63\xfc\xf0\x36\xba\xb7\x35\xc7\xf4\x70\x51\x6e\x15\x37\x70\x20\x77\x58\x9a\xd5\x7a\xb8\x65\x9f\x18\xaf\xcc\xf7\x6a\xf5\x3e\x2f\x01\xb3\x53\x15\x3c\x90\xd6\x35\x50\x7c\x73\x81\x1e\xe4\xe2\xeb\x0b\x14\xe7\x52\x2e\xf4\x94\x10\x42\x2c\xf6\xdc\x99\x4e\x7a\x13\xe6\xa9\x84\x9d\x66\xcd\xc0\x14\xe1\x75\xfc\xa4\xd0\x2e\x26\x0e\x9c\x0b\x80\xa2\xad\x6e\x22\xd3\x90\xba\x5e\x34\x33\x8e\x3a\x14\xc2\x1d\xc2\xb8\x2f\x33\x5b\xc8\xe7\xc7\xeb\xbe\x84\x1e\x0f\xda\xf5\xaf\x13\xf5\x17\x08\x70\xb0\x7a\xeb\x7f\x70\xf9\x87\xe4\xeb\xbc\xc0\x26\x5f\xf3\x8a\xf0\xbc\x9c\xee\x66\xb8\x9c\xae\x67\xc8\xc6\x3e\xaf\x6c\xff\x56\x83\xea\x23\x93\x8b\x75\xbe\x43\xf7\x8b\xa2\xa2\xce\xbc\x3b\x81\x5f\xc6\xa6\x3b\xb1\x1b\x46\xf7\x1c\x5e\x99\x73\x18\xbc\xd2\x0e\x3d\xf4\xb1\xed\x02\xc2\x17\xa6\xac\xb6\xfc\x4e\xd4\xd6\xac\xbc\xc9\xa6\x26\x85\xb7\xde\xbc\x28\xe4\x7a\xbc\x65\x3c\xaf\x70\x8d\xf0\x82\x5c\x3c\x5a\x7c\xbd\x79\xb4\xd0\x89\xc2\xc0\xf1\x6b\x49\x58\x4e\xa7\x8b\x19\x2e\xa6\x8b\x99\x17\x3b\x97\x6e\x37\xc3\xa7\xba\x41\x37\xaf\x13\x27\x9c\x9a\x99\x4d\x2e\x22\x00\x55\xf9\xa5\x99\x5c\xe8\x5a\x96\x4a\xde\x08\x07\x78\x4b\xe5\x3b\xb6\x85\x7c\x98\xfe\x6f\x34\x30\xf5\xd9\x92\x17\x8d\xcf\xf7\x44\x98\x39\x5e\x90\x67\x65\xc5\x38\x5d\x4e\x2e\x80\x63\x9f\x5c\x62\x33\xd7\x93\xaf\xb0\x9e\xe7\xc9\x1f\xb1\x9e\xd5\xc9\x9f\x30\x4c\xd9\xe4\xff\xc1\x5a\x43\x31\xf9\xb3\x4b\x66\x3a\xf9\x3f\xee\x10\x4d\xfe\x1d\x83\x5f\xd3\xe4\xff\xc5\xaa\xab\x93\xcb\x8b\xa6\xef\x00\xd7\x92\x2e\xdd\x1f\xf3\x6d\xb1\x10\x65\x92\x17\x3f\x85\xfb\x3e\x74\x6a\x13\x49\xd3\x7b\xdd\xc6\xb9\x77\x1b\xd7\x66\x34\x0a\xb6\x33\xae\x2e\x42\xcf\xdf\xb0\xd9\xc0\xe6\x81\x52\x2c\x62\x7c\x95\x84\x6d\xa3\xfb\xc2\xca\xdc\x8d\x87\xbc\x9f\x86\x39\x40\xa2\x00\x10\x75\x05\xb1\x99\xbe\xef\xe8\xa7\x5d\xc1\x97\x21\xac\x69\x19\xdc\x73\x45\x93\x5f\x84\xd7\x1e\xfd\x78\x26\xc7\x8f\xcd\x64\x3a\xe2\xda\xf1\x8e\x54\x57\x7f\xe9\xf8\xd9\x20\x1e\x93\x41\x00\x0b\x98\x16\xed\xf5\x67\x7c\x0f\xcb\x29\x9d\x21\x7c\x2e\x72\x8f\x7e\xc1\x3d\x72\x60\x5c\x92\xcd\x50\x83\xef\x97\x74\x47\xf9\x92\x72\xf9\x3d\xbd\xab\x26\x65\x83\xd4\xe6\x2b\x85\x62\xfa\xb9\x43\x8e\xa3\x63\xba\xdd\xc9\xbb\x44\x28\x25\xd4\xea\x83\xe5\xe8\x28\x33\x1d\x8e\x22\x81\x83\xb2\xac\x7a\xaa\xaa\x42\x79\xab\x3f\xc6\xc3\x44\x31\x54\xf2\xe9\x6f\xd0\xd8\xf9\xa9\xad\xf1\x54\xca\xb4\x76\x4b\xbd\x83\x79\x59\x72\x7a\x70\x2c\x5f\x54\xf9\x79\xa7\x42\x5d\x9f\x3a\xf0\x5f\x56\x61\x5f\x8d\x00\xd0\x9a\x4c\x2c\x78\xa8\xd2\x18\x3d\xc8\x55\xe9\x72\xa2\xda\x1c\x93\xba\x0d\xda\xe6\x5c\x4e\x6a\x23\xb9\x6b\x29\x22\x84\x08\x5d\xed\x6d\x3b\xd9\xe9\x17\xd7\xf9\x8d\xab\x91\xfe\x66\x55\xda\x5e\x76\x52\xb2\x7e\x71\x95\x5f\xbb\x1a\x7f\xb3\x5e\x7e\x6d\x7b\x59\x72\xfa\x53\xd1\x7b\xe4\x8a\x0d\x2b\x20\xa3\x9a\x29\x97\x1b\xaf\xc5\x62\xf9\x8a\x6f\x4e\xf8\xca\x96\xd4\xdf\x59\x2c\x34\xc6\x6f\xaf\x55\x91\xd3\x06\x73\x7f\x1b\xc6\x31\x88\xde\x21\x41\x98\x68\x50\x10\x5c\x13\x7d\x51\xef\xa6\x4d\x95\x68\xc2\x1b\x3d\x7e\x45\xeb\x54\x81\x84\xd6\x97\x82\x9a\xb1\x14\x3d\xef\xcf\x69\x4b\x5b\xd5\xbe\x34\x75\xfe\xa0\xf9\x09\x77\x67\xcc\x05\xc7\x20\x6c\xf1\xbd\xda\x61\xad\x4f\xe2\xa7\x8d\x36\x94\x17\x92\x7d\xa0\x73\xcd\x53\x7d\x7e\xe2\x5a\x03\xa4\xef\xfd\xfc\x40\x5c\x3a\x76\x9b\x75\xfc\xfc\x69\x84\x00\xab\x04\x89\xfd\xbe\x83\x9d\x0a\x38\x61\x36\x03\x93\x6a\xd6\x04\x34\xb5\x6e\xad\x29\xd5\xf0\xef\x33\x6c\x77\x1a\x60\xe6\x75\xb2\xea\x86\xe2\xd2\xa3\x87\xff\x41\x8b\xc5\xda\xa4\xc3\xa5\xe8\x4a\x5d\x79\x1e\x51\x72\x0c\x6f\xc7\x7f\xf8\xdd\x43\x9c\x65\xe0\xfa\x4f\x31\x1d\x11\x68\xc6\xa2\x46\x9e\x36\x72\xda\x1e\xb9\x88\xb0\x7c\x4d\xaa\x3e\x64\x32\x8a\x16\xe3\x6b\x94\x4b\x8f\xaf\x80\x21\x6b\x89\x79\xae\x46\x1e\x8d\xd0\x41\x99\x39\xa8\x78\x60\x86\xa2\x14\xbd\x21\xdc\x89\x46\x6a\x48\x6d\x72\x3d\x81\x4d\xc4\xa3\x1c\x1e\x9b\x1b\x43\xaa\xcb\x9d\x25\x62\x7d\x4b\xb3\x88\x9c\x46\xeb\xc8\x72\xe4\xbb\x07\xfd\x96\x66\xf9\x51\x94\xa0\xf5\x94\xaf\x57\x6c\x03\x61\xd9\xdd\x0a\x76\x61\x7a\x88\x7f\x3a\x31\x84\x69\x70\x93\x4b\xdc\x55\xa3\x9a\xe8\x09\xb7\x98\x1e\xb1\xa2\x0f\xd9\x3f\x3a\x34\x58\x83\xec\x07\x3b\x86\x29\x69\x3c\xf9\xf1\x83\x4b\x88\x13\xb6\x1a\x31\x0a\xee\xaa\x96\xb7\x55\xe4\x4a\x84\x73\x10\xa2\x1d\x1e\xdd\xd4\x55\xc0\x34\xd7\xd6\x89\x21\x19\x74\x5e\x69\x36\x5a\xa3\xd3\xeb\x4c\x95\xe1\x31\x90\x08\x2f\x89\x4b\x7b\x67\x33\x39\xbc\x28\x76\xfb\x7d\x9e\x7a\x6c\x7a\xf6\x13\x2d\xde\xbf\x28\x20\x75\xd0\x12\x90\xb4\x74\xa0\x89\xd3\x7b\xee\x86\xc3\x5d\x72\x4e\x9c\x01\x49\xd0\x6d\xe9\x6b\x36\x36\x27\xcb\xe8\xa2\x06\x99\xec\xb8\xbd\xdb\x30\xa5\x20\x37\x9a\xd0\x49\xa6\x76\x88\x9c\x5e\xcc\x30\x27\x72\x7a\x39\xf3\x9a\x12\xbe\xdf\x67\x45\xb5\xc8\xf0\x54\x60\x3e\x6b\x50\x93\x2f\xd0\x60\x47\xd6\x71\x95\xde\xae\xaa\xea\x60\x64\x75\x95\x69\x42\x94\x8d\xc4\x44\x1d\x52\xf7\x6b\x10\x80\x51\x04\x99\x30\x50\xbe\xc1\x4c\x49\xc0\x53\xf8\x77\xd6\x20\xbc\x04\xe7\x19\x98\xf3\x9d\x85\x28\xce\xfe\x43\xfd\x06\x13\x06\xde\x92\x15\x44\x6a\x4f\xfa\x28\x74\xbc\xeb\xb6\xe8\x2a\xe5\xef\x6d\xb7\xb5\x33\x72\x8c\xab\x52\xc8\x84\x42\xd3\x39\xff\x19\x04\xc0\x8b\x47\xa5\xd7\xb2\x97\x5a\xae\x29\x88\x9c\x96\x33\x5c\x91\x42\x4d\x43\x4d\x8a\xe9\xe5\x0c\x83\x10\xbf\x21\x06\x4f\xd5\x20\xa0\x87\x88\x18\x95\x89\x8f\xb8\xd5\xf1\x11\x15\x72\x42\x7e\xb6\xa4\xd5\x42\x8d\xb6\xbe\x7a\x70\xf9\x87\xcd\x64\x33\x70\xa2\x36\x42\x4d\xbe\xc5\xeb\x98\xc8\xb6\xae\x17\x99\xbc\x5e\x3c\xb7\x9b\xd8\xac\x66\x3f\x89\x86\x8e\x6b\xce\x4a\xee\x25\xa9\xaa\xde\xa6\xf6\x56\x15\xdb\xcc\x83\x1c\x83\x23\xd9\xe0\x0b\xc3\xac\x7f\xfa\xac\x4f\xb5\x4e\xa4\x00\xcc\x2b\xd4\xe0\x07\x97\x0f\x4d\x3d\x8c\x7f\x41\x3d\x8c\x9b\x7a\x5c\x35\xc5\x8e\x2c\xf4\xbf\x7f\xb9\x23\xc9\x2f\x17\x79\xb8\x69\x65\x82\x3a\x87\x0b\x28\x8d\xc0\xa0\xc9\x35\x59\xba\x3f\x5b\xd5\xb7\xf1\xbb\xdc\x35\x48\xbe\x4a\xc0\xb2\x5f\x1d\x6d\x34\x9d\xcb\x30\x28\x01\x42\x07\x5e\xb6\x06\xc3\xa0\xb3\x35\x67\xbf\x00\xb8\x93\xfa\xe3\x2f\xed\x9c\xcc\x9f\xcf\x24\xe9\x4d\x88\xd3\x98\x38\x75\x2f\x1b\x15\x1f\xd2\x1a\x0d\x87\x75\xef\xbd\x52\xb6\x3c\x68\xc2\xc1\x0a\x84\x06\x00\xa1\x56\xed\xf7\x79\x35\x2d\x21\x3e\x8e\xd9\xcb\x43\xdd\x1d\xec\x64\xfe\x0b\x53\xed\x90\x51\xd1\x45\x14\xd5\xf4\xbf\x7b\xe1\xa6\xa9\xb6\x68\xdd\xad\xc9\x69\x14\xe8\x4a\x4c\xa6\x8a\x88\x32\x22\x8c\xe1\xd5\xf0\x12\x69\xc3\x5c\x19\x98\xd1\x44\x08\x0d\x7e\xaf\x1d\x6c\xcf\x2f\x55\x4d\x53\x39\xc3\x9a\xf0\xb1\x16\xe1\x63\x6a\xc2\x09\xa1\xe8\x9e\x93\xf3\x0b\x93\xa4\x90\xad\x72\x48\xf2\xc6\x9d\xa2\x3e\xc8\x5b\x98\xb9\x19\xce\x82\x31\xc0\x26\x62\xe6\x38\x55\x54\x3e\x61\xab\x55\xfa\x84\x9e\xb6\x33\x4d\xa0\x9c\xba\x6f\xa9\x45\xdc\xd2\xb7\x6f\xef\xc4\xc5\x0f\x38\xba\x12\xa9\xa9\xb3\x6a\xe8\xc8\x82\xa7\x6e\x61\x47\x8f\xc5\x41\xd2\x6c\x76\x1e\x4e\x93\x68\xb0\xa9\x96\x9b\xcd\xff\xea\xfe\x6b\xb3\xfd\xa1\x56\xd0\x72\x3e\x21\x1b\x18\x45\x19\x25\xd2\xaf\xb3\x08\x5e\x89\x4e\xd9\xec\xca\x30\x73\x40\x13\x26\x96\xb3\x03\x10\x1a\x77\x29\x99\xa5\x2f\x85\x4c\xae\x7b\x22\x3e\x58\x26\xef\xf5\x0e\x53\x1d\x44\xea\x39\xb6\xa8\xef\xca\xe7\xde\x77\x4a\xcb\x07\x02\xc4\xee\x06\x69\x68\x40\x89\x26\x6b\x73\xa7\xd8\x6b\x72\x97\x96\xa5\xad\x69\xb5\x0a\xfe\x4e\x89\xd0\x49\xe4\x72\x2b\xf8\x1a\xe9\xb2\xd7\xcc\xe4\x2b\x6e\x95\x60\xfc\xd0\x87\x1a\x1f\xd7\x38\xb2\xf6\xc1\x91\xb7\xe4\x69\xed\x60\x1a\x78\xea\x69\x0f\x21\xee\x18\x9b\x47\x26\xd1\x4b\x3f\x6c\xbc\xf6\xa6\x61\xe6\x7e\x78\x06\x5d\x64\x25\xff\x2b\xdd\xec\x14\x1b\x18\xe6\x9c\x8f\xd6\x2f\xf2\x9a\x2a\xd2\xd3\xbd\xbb\xfb\xcd\x27\x77\x77\x97\xb4\xe0\x1d\xf4\xc4\x81\x02\xd6\xc9\x29\x91\xb1\xca\xba\x67\xae\xd2\x59\x57\x4c\x00\xa2\x33\xa5\x01\x76\x19\xf8\x69\x84\xa2\x11\xfa\x86\x5c\xd8\x22\xa5\xc1\x74\x8e\xb3\xe8\x53\x6d\x31\x2d\xbc\x03\x0f\x96\x48\xdb\xa2\x1c\x44\xf1\x83\x07\xd5\x37\xe4\xe2\x11\x2a\xa6\xd5\x8c\xb0\x5c\xfd\x63\x7a\xdf\x58\x08\x68\xee\x4d\x48\xbc\x6b\x42\x42\xaa\x7a\x35\x4d\xb9\xfe\xcc\x21\x47\x6b\x43\x71\xc1\x17\x6a\x58\x4f\x0a\x49\x51\x01\xa2\x90\xfa\x33\x34\x29\xe9\x2f\xee\x0b\xeb\x5e\x50\x6b\x72\x62\xb8\x08\x0f\xa0\x19\x53\x17\x7d\x2c\x29\x56\x0c\x43\x36\x9f\x67\x3a\x62\x05\x9c\x27\x18\xbf\xcd\x2f\xf0\x57\x8a\xfa\x14\xd3\x7a\x46\xe4\x15\xcb\xe9\xb4\xb6\xe3\x9a\xa8\xbf\x9d\x5f\x9e\x9a\x57\x27\x62\xe2\xd2\xa6\x10\x41\xb8\x08\x6c\x59\x49\x42\x74\x60\xe5\xae\xe8\xe4\xf0\xa4\x5d\xd9\x29\x43\x13\xbd\x5d\xe4\xd5\x74\x66\x42\x12\xec\x5f\x28\x69\xd3\xa2\x9f\xe4\x43\x47\x02\xd5\x5e\x87\xb7\x41\x8e\xb9\x7f\xc6\xa2\xa5\xd5\xe3\x36\x8e\xdc\xcf\xfd\x80\x8e\x9f\xbe\xfc\x71\xfc\xf4\xff\xbe\x7b\xfa\xf2\xc9\xfc\xf5\x9b\x57\xef\x5e\xbd\xfb\xfb\xeb\xa7\x6f\xc7\xb6\x28\xe4\x89\xb5\xaa\x1c\xd2\x51\xb6\x9c\x79\x95\x68\x2c\xb6\x26\x41\x52\xf5\xd2\x06\x00\x3e\x26\x0a\x73\xaa\x68\xf7\x0c\xa1\x06\xf3\x71\xa9\x45\x96\x2a\xd9\x56\x99\x14\x91\xbf\xb8\xad\xb9\x6d\xec\xd9\xd6\x78\xe8\x6e\x92\x63\x54\xac\x85\x2d\x9a\x06\x83\x09\x7b\x1e\x56\x06\x8e\x3c\x8e\x66\xaa\x49\x45\x79\x66\xe7\xf6\xdf\x12\x5f\x9c\xb1\xea\xcc\x95\x5f\x8e\xcf\x7e\xa8\xe8\x59\xa7\xbc\x75\xd4\xc8\xf0\x3d\x5b\x4e\xe2\x7d\xa4\x08\xf7\x03\xbf\x8f\xd4\xc3\xcd\x24\xfb\xe3\xf8\x62\x7c\x91\xf5\x8d\x19\xa9\xde\xf3\xf4\x8c\xf3\xdf\x62\xae\x93\xfa\x68\xb5\xe1\x45\xf5\x61\x17\x13\x76\xfd\xe4\xb7\xf3\x9c\x34\x9c\x70\x8c\x3e\x10\x60\x59\x0e\xc0\x23\x25\xf0\x8a\x47\x6d\x6b\x6f\xa0\x54\x09\x8a\x75\xfd\x9e\x34\xcc\xa4\x87\xcb\x90\xa8\x9d\xc0\x3f\x86\x10\x87\x08\xd1\xb9\xa0\x45\x55\xf2\xf9\x47\x26\xd7\x73\xa8\x7e\x0e\x3e\x3f\x7c\x3e\xcf\xb0\xc9\x63\x4c\x31\xe5\xf5\x96\x0a\x1d\xb2\x71\xd9\x20\x2c\x1b\x03\xb5\x9d\xfd\xc0\x9d\xeb\xe0\xf2\x87\x37\xcf\x9f\xda\x94\x02\x3a\x1a\x25\x18\x63\xe6\x1d\x23\xaf\x6f\x00\x87\xa3\x5b\xcc\xd9\x17\x4c\xed\x3a\xb7\xf8\x79\xee\x93\x1e\x3f\x61\xd5\xae\x90\x8b\xb5\x4d\x37\x8a\x72\xe4\x9c\x94\x06\x60\x5f\x6b\xc0\x74\xa3\xba\xf1\xa4\xe5\x2f\xa0\x13\xd4\xdc\x14\x8b\xf7\x37\xb5\xe0\x54\x0c\xf4\x83\x79\xb1\x5c\x02\x68\x4f\x0e\x6b\x7f\xbd\x82\x74\x31\x1e\x00\x09\xac\x2e\x7c\xc5\x6e\x6b\x41\xf3\xac\xa8\xee\xf8\x22\x6b\x29\x05\xca\x10\xfa\x59\x73\x23\x99\xf6\x21\xd6\x12\x7c\xab\x0a\xdd\x42\xb8\xbe\x61\x05\x41\x27\x2c\x20\xae\xc6\xce\xb4\x09\x1b\x30\x0b\xf9\x15\xd9\xb7\xb5\xcd\xf6\x38\x48\xc9\x5b\x1c\x8b\xf9\x64\xd6\x1a\x5e\x87\x92\x0b\xf2\x16\x4a\x9e\x40\xc7\x75\x41\xb8\x0a\x57\xdb\x84\xc8\x21\x30\xef\x13\x39\x84\x17\x39\x74\x1c\x26\x85\xb4\x4d\x02\xc2\x82\x9c\xc8\xe1\xa2\x91\x40\x80\x5f\x6d\xbd\x4d\xa1\xc1\x62\xfc\xb1\x4b\x54\xa0\xdc\x47\xe4\x90\xe0\xc6\x9b\x72\xf1\x2f\xef\xd7\xa6\x5c\x44\xfd\x5a\x14\x5b\xba\x61\xbf\xd2\x9e\xee\xd9\xd7\x41\x2f\x97\xf4\xc8\x37\xbe\x40\xf8\x55\x51\xad\xa9\x38\xf0\x91\x7d\x1f\x7c\x53\x3b\xce\xba\xe7\x23\x5f\x20\xf8\x0a\xdc\x66\xd8\x2a\x71\x7f\xe9\x11\x99\xd7\xe1\x17\xc5\x8e\xc9\xe2\xe0\x2c\xd8\x02\xf6\x2b\x00\x65\x6f\x6f\x76\x60\x5c\x0f\xf9\xd2\x1d\xe6\xc7\xe3\xbd\xdf\xc3\xad\x3b\x2c\xe1\x9d\x28\x3f\xdd\x1d\x12\x98\x0a\xc6\xa9\xe8\x29\xa6\xc5\x88\xd3\x44\xa9\x3e\x43\x26\xab\x1e\x80\xf7\x40\xaf\xec\x05\x46\xcc\xe3\x8e\x83\xbd\xa6\x50\x9b\xe0\xb4\xa7\x00\xd4\xdf\x33\xbe\x68\xa2\x0f\x97\x51\xbb\x67\x7e\x78\x45\x22\xab\xec\x69\x92\xe6\x31\x59\xab\xe7\xbd\xbf\xde\xfa\x4a\xac\x04\xa5\xbf\x1e\x2a\xf0\xe0\xe0\x68\x37\xc5\xaf\x77\xf3\x4d\xa9\x38\xa6\xf4\xe7\x9a\x29\x3a\xd4\xc0\x56\xbb\xeb\xce\x8f\xf7\xd5\x96\x3c\x38\x71\x3a\x9c\x6d\x6e\xe6\xcf\x60\x63\xf5\xce\x8f\xce\x23\xd0\xf7\xda\x64\xe9\xe8\xdd\xf4\x7d\xbe\x72\x9f\xeb\x1f\x70\xa2\x0e\xe4\xb3\x95\x19\x96\x02\x50\xf1\x81\x25\x36\xbe\xe7\x13\x4f\xf3\x29\x00\x42\xe2\xd0\xc7\x93\xd5\xf5\x10\x9b\x48\x04\x3b\x9e\xc4\x0d\xef\xf0\x1a\xaf\xf0\x16\xdf\xe1\x5b\x7c\x83\x3f\xe0\x39\xfe\x88\x9f\xe2\x4f\xf8\x15\xbe\xc6\x6f\xf1\x6b\xfc\x1e\x3f\xc6\x6f\xf0\x0b\xfc\x33\x7e\x87\x9f\xe0\x97\x9d\xb0\xac\x8a\x4a\x7d\x3f\x57\x3a\x07\x8f\xff\xa1\x5d\x78\x09\xb5\x12\x3f\xe9\x70\x55\x74\xfc\xe6\xed\x8f\xaf\x09\x1d\xbf\xd5\xd3\x46\xe8\xd8\xfb\xfb\xbf\x50\x73\x1e\x3d\x21\x5e\xed\x18\xaa\xc0\xad\x92\xcb\xd9\x0a\x8c\xf5\x20\x30\x73\x38\xe3\x87\x35\xab\x78\xf5\xad\xd1\xe6\x69\xbb\x8b\x36\x06\x69\x53\x8e\xb6\x29\x05\x5e\x7b\x09\x1f\x9b\xc0\x5d\xc7\x79\xfb\x68\x57\x22\x70\x51\xd2\xbe\x4f\xe0\x53\x65\xfd\xb5\xac\x6f\x98\xf1\x3a\xd3\xce\x6c\xc6\x61\x2e\xf0\xd2\xb3\xae\x81\x74\xfc\x5a\x1f\x8c\xd7\xea\x5c\xd8\x29\x31\x39\x39\x08\x1d\xeb\x08\x23\xad\xbd\x7a\xab\x0f\x20\x74\x6a\x5b\x7e\xa0\xd7\xea\xcf\x17\xfa\x20\xdb\x05\x30\x3f\x9f\x3a\x02\x40\xe8\xf8\x95\xa3\x1b\x84\x8e\x81\xc2\x40\xd5\xa2\xe6\xcf\xcb\x62\xf9\xd7\xb2\x7c\x5f\xc1\xe8\xd4\x2f\x55\x22\xea\xca\xb7\x6f\x5e\xfd\xd7\xd3\x97\xf3\xa7\x6f\xde\xbc\x7a\xa3\x7e\x5a\x1a\xa7\x7a\x19\x36\xf2\xd8\x90\xcf\x60\x16\xbb\xea\x37\x42\xc7\xfa\x2f\x0b\x39\x47\xc7\xd7\x84\x8e\x5f\x02\x11\xb7\x43\x78\x5c\x0a\xaa\x65\x11\xe8\xbb\xfa\x03\x7a\xa4\x0a\xab\x22\xf6\x47\x98\xa3\xe3\x2d\x2d\xc4\x62\xfd\x84\x55\xaa\x0b\x4b\xd8\x92\xfd\xef\xdc\x1b\x68\xcc\x5e\x76\x7e\x5a\x55\x23\xd6\x28\x49\x20\xab\x45\xfb\x11\xab\x9e\xaa\x33\xe9\x76\x3d\x74\x12\x96\xc3\x3e\x62\xd5\x53\xb3\x1d\xcc\x1d\x0d\x3b\xda\x0c\x4a\x5d\x35\x66\xe3\x03\x27\x10\x4d\x38\xc4\xc4\x7f\x5b\xbc\xa7\x26\x11\xdf\xdd\x4f\x4c\xae\x9f\xd8\x8d\xa9\x27\xd1\xbe\x8a\x3e\xd4\x07\x13\xd6\xa8\xd8\xd2\x8f\xa5\x78\xdf\x9a\x45\xab\x01\x4c\x0b\x7a\x14\x67\xaf\xcc\x55\x7b\x1f\x8a\x72\x17\xf8\x36\x86\xc2\x75\x62\xb7\x91\x2e\x9a\x06\xf5\x57\xd9\xea\xcb\xc9\x75\xb7\xbe\x3b\xd8\xc6\x5b\x43\x28\x4f\xaa\x5a\x9c\xd4\xed\xee\x04\x9f\x58\x3d\x3f\xa9\xfa\xa3\x6b\x7c\x72\x6b\x47\x6b\x3a\xd8\x8f\xc4\x0e\x3c\xb1\x65\x76\xd2\x38\x35\x2f\x7b\x52\x85\xe5\x49\x15\x5a\x3e\xf8\xa4\x2a\x8b\x13\xfb\x68\x78\xe8\x93\xea\xac\x4e\xeb\xa6\x3e\xfd\x27\xd6\x59\x9f\x54\xe7\xb5\xe6\xd4\x4e\xaa\x71\x73\x52\x8d\x96\x6c\x9d\x5c\xa9\xfd\xe0\xd8\xd8\x1d\x6d\x3c\xb9\xe6\xf0\xa3\x83\xb5\xb7\x89\xf1\xc9\x2d\xb4\x3f\x3c\xd8\x4a\xe2\x22\x38\xb9\xa1\xc4\xb7\x47\xce\xa0\x17\xb7\x4e\x6a\x62\x71\xd2\xe2\xbe\xf4\x32\xda\x49\xb5\x2e\x4f\xdc\xd8\x3d\xd7\xea\xc9\xad\xb0\x2a\xfe\xf0\x60\x73\xfd\x57\xfc\xc9\xed\x29\xf6\xf5\xf4\x06\x3d\x83\x71\x62\x03\xbb\x93\xa6\x2d\xe0\x62\x4e\xac\x77\x7d\x52\xbd\x9e\x55\x3a\xb1\xda\xd5\x89\x7b\xc7\xf1\x63\x27\xd6\xbb\x3d\x8d\x84\x9d\x5c\xdb\xf5\xe1\x7a\x42\x1e\xf2\xc4\x3a\xef\x4e\xea\x61\x3f\xeb\xfa\x19\xcd\xf4\x55\x71\x64\x29\xad\xfa\xe1\xa4\x76\x6e\x4f\x1a\xce\xd3\x40\x0f\x70\x52\xb5\x37\x27\x32\x75\x4e\xd1\x71\x52\xad\x1f\xbc\xd8\xd0\x34\x68\xd0\x5f\x6f\x20\x6b\x9c\x5e\x75\xf0\xd1\xc1\x5e\xcf\x3f\x9b\xc9\x99\x9f\x76\x8d\x82\xe0\x74\x62\x95\x1f\x8d\x9c\x75\xf8\xfa\x09\x24\xb3\x93\xeb\x0d\x3f\x3a\x3c\x0f\x5a\x02\x3c\xb9\x62\x53\xfe\x08\x81\xf3\xaa\xa9\x93\xaa\x7d\x7a\xd2\xd4\x76\xa4\xd9\x13\x6b\xff\xf4\x39\xb5\x7f\x0e\x9d\x7b\x75\x52\xc5\x56\x3c\x3f\xb9\x52\xfb\xc1\xc1\x5a\x13\xaa\x80\x13\x1b\xb8\x3e\x8d\x58\x58\x05\xde\x49\x75\xbe\x3d\xa9\xce\x8e\x72\xe3\xc4\xda\x5f\x9f\x54\x3b\xa8\x50\x4e\xac\xf1\xbd\x56\xb8\x1c\xac\xcf\x6a\x67\x4e\xae\xd2\x7e\x70\xa4\x56\x7e\xea\xbe\x7d\x0f\x7a\xa2\x63\x7d\xfc\x9c\xee\x1d\x16\x43\xcb\xf2\x54\x19\xe5\x3d\xa8\xb3\x0e\xd6\x06\x7a\xaf\x93\xab\x83\xd2\x87\x57\xf7\x33\x44\xa8\xf7\x5a\xfb\x76\xb0\xbe\xdb\xd3\x27\xee\xf6\xf0\xbc\xdd\xca\xd3\x17\xf4\x56\x1e\x5e\xcf\xcd\xe9\xbd\x3a\x72\x1a\x36\x9f\xd1\xab\xcd\x91\x5e\x69\x55\xe7\xc9\xd5\xe9\xe2\x47\x68\xa2\xd6\xa3\x9e\x5c\xa7\xfd\xe0\x24\x7e\xcd\x2a\x6c\x4f\xae\xbd\xfd\xe1\x61\xa1\x93\x9f\x4a\x15\xdf\x8f\x0b\x7e\xf8\xa6\x2c\x4f\x65\x58\xdf\x8f\xcb\xc3\x82\x63\x55\x6f\x4f\xac\xea\xf1\xb8\xaa\xb7\x87\xcf\xee\xc9\x94\xf9\xf1\x78\xcb\xf8\x41\x2e\x6e\x5b\x7c\x3a\xbd\xae\xe2\xd3\x11\x9a\xb2\xfb\x8c\xba\x76\x87\xe7\xeb\xf4\x0b\xf3\x31\xd8\x0c\x8e\x89\xa6\x4f\xd8\x6a\x75\x7a\x85\xba\xfc\xb1\xd1\xfe\xe5\xd4\x03\xf2\x58\x1b\x3a\x0e\xd6\xa7\x6d\x22\x27\x57\xa8\x8b\x9f\x50\xe3\x67\x74\xd2\x7e\x70\xb0\xd6\x9a\xb3\x5f\x4e\xae\x51\x15\x3e\x5a\xdb\x67\xf4\x50\x17\x3f\x56\x63\x79\xfa\xf9\x80\xd2\x47\xb4\x98\x36\xf6\xe0\xd4\x3a\xdd\x17\x47\x54\x99\x60\x3c\x3b\xb9\x56\x53\xfe\xa8\x8a\xd8\x9a\x44\x4f\xaa\xf6\xcd\x89\x9a\x8b\xc8\x0c\x78\x62\xdd\x2f\x4e\xaa\xfb\xad\xb5\xd1\x9e\x54\xe7\xcf\xa7\x19\x04\xde\xfe\xf8\xfa\xc4\x0a\xdf\x9d\x28\x35\x86\x96\xd2\x93\xab\x8e\x3f\x3b\xa2\xab\xfb\x1c\xc9\xe6\x89\xb5\xe2\x1e\xac\x53\x9b\x7c\x4f\xae\x52\x17\x3f\xcc\x4b\x39\x8b\xf2\x89\xb5\xbe\x0c\x8c\xd0\xc7\x28\xf4\xe7\xd6\x5c\x85\x35\xa7\x7c\xe6\xac\xfd\xe1\xb7\x46\xf0\x41\xf7\x81\xbf\x37\xc7\x34\x1d\x9e\xd0\x0a\x92\x63\x90\x7e\x09\x73\xf5\x8f\x7b\x13\x07\xcf\xc9\xb1\xae\x22\x08\x51\x52\x9f\x02\x6a\xe2\x87\x62\xc3\x96\x85\x74\x73\xe6\x1a\x4b\xc2\xef\x01\xaa\x0f\xd5\xce\x7c\x10\x67\x67\x10\x7e\x5c\xee\x96\x02\xe5\x82\x14\xd3\x7a\x86\x02\xc7\xfb\x6e\xfb\xc3\x21\x44\x2d\x55\x2e\x94\x40\xe8\x44\x49\x90\xdf\xa0\xae\xd6\xf6\xf7\x80\xad\x72\xeb\x4d\x87\x7c\x9a\x05\x97\x30\x81\x8f\x46\xa8\x1b\x8d\x93\x97\x84\x4d\xab\x29\x9f\xcd\xd0\x70\x58\xe6\x2e\x3e\xed\xfc\xa2\x31\xe8\x03\xf7\x49\xbf\x76\xef\x30\xe5\x57\x76\x16\x79\x5f\xf6\x80\xd5\x26\x63\x7f\xe8\x70\x98\x08\x14\x72\x46\xe1\x2b\xf7\x57\x2e\xd1\xa4\x13\xa8\x30\x1c\xca\xf6\xa3\xab\x20\x60\x01\xc0\x1f\xdd\xaf\x09\x24\x4e\x4a\x8e\xa9\xe5\x74\xd4\xdd\xb2\x37\xc5\x0d\x55\x5b\xf6\x3f\x6e\x37\x6c\xbb\xa5\xe2\xa1\xa0\x2b\x2a\x28\x0f\xdc\x5b\x52\xbb\xfa\x64\xdf\x9d\x93\x42\x7a\xdc\x21\x28\x22\x7c\x6c\x13\x32\xf2\xef\x68\xa0\x41\xf5\xd6\xac\x82\x14\x4f\xde\xcf\xff\x27\xb6\xd9\xe8\x90\x79\xef\x34\xe9\x2a\xab\x3e\xb3\xb2\x27\x6c\xd9\xae\x4b\x27\x6d\x0a\xb7\x40\xe0\xb3\xcd\xa2\x88\xd0\xdd\xff\xc7\xdd\xbb\x77\x37\x8e\x23\x79\xa2\xff\xfb\x53\xc8\x9c\x1e\x35\x31\x82\x69\xb9\xba\x66\x67\x57\x4e\x94\xd7\xe5\x74\x75\xe7\xa9\xcc\x74\x4e\xda\xd5\xbd\xbd\x4a\x8d\x86\x16\x21\x0b\x93\x34\xa9\x06\x41\x3b\xdd\x96\xbe\xfb\x3d\x08\xbc\xf9\x90\xe5\xea\xba\x7b\xee\xde\x7f\x6c\x0a\xef\x67\x20\x10\x88\xf8\x45\x59\x55\xec\x36\xa7\x17\x0e\x11\xee\x33\xac\x04\x63\x6d\xea\x50\x1e\x90\x76\xc1\xa9\x4d\x28\x19\x06\x83\x23\x5a\x38\x33\xc4\x41\x99\xc0\x8c\x11\x86\xf5\xd7\x5f\x78\xba\x5e\x53\x7e\x93\xde\x81\xe2\x36\x4f\xde\x32\x2e\x40\x58\x7c\x93\xde\x99\x44\x17\xaa\x18\x97\x08\x1c\x33\xe9\x44\xca\x54\x55\xa4\x77\x60\xb7\x9a\x22\x84\x0d\x56\xa2\xc2\x63\x2a\x56\x94\x33\x51\xc9\xf6\x00\x82\xba\x53\x9d\xd7\x73\xda\xa1\x76\x6f\xad\xa4\xc1\xf2\xa0\xd1\x50\xe5\x7f\xcc\x38\xd6\x68\x34\xd0\x44\xa2\x6d\x50\x55\xc6\x1a\xd6\x1b\x9d\x05\x43\xaa\xb8\x91\x55\x8f\xa1\x9d\xc5\x96\xaa\x6e\xc3\xfe\x57\x95\xea\x8f\x7d\x67\x3b\x95\x2f\xc2\x70\xf0\x00\xa5\x83\x6d\x63\x9e\x00\xd8\x6c\x76\x93\xde\xa1\x00\xbc\x1a\xf8\x19\xeb\x5c\x43\xd7\xa0\x61\xa9\x0b\xd6\xe1\x54\x78\x87\xfb\xde\x03\xaf\xf1\x72\x2b\x1a\xff\xa0\xa0\xfc\x02\x42\xb5\x18\x61\x9a\x3c\x72\x66\x67\xda\x5f\xb0\xde\x41\x50\x2b\x08\x0b\xcc\xaa\x1b\x5e\x8b\xd5\xd3\x04\x0c\xe5\x6e\xcb\x32\xd7\x36\x6f\x30\x0c\xe0\xb2\xf8\x2f\xa9\x58\xac\x0c\xb9\xee\xf0\x28\x65\x92\x27\xd1\x88\x9e\x42\xd3\xe6\x69\x96\xfd\x48\x97\xf0\x18\x65\xf0\x14\x94\xc9\xa6\xd2\x4e\x4f\x35\xc2\x40\x00\xb8\xe0\x27\xa8\xd0\x16\x67\x2c\xfb\xa5\x78\x7c\x7d\xdd\x4a\x76\xba\x4f\xf5\x21\x82\x45\xbb\x05\x75\xf1\xb5\x28\x9d\x8d\x57\x47\xf5\x4d\xbf\xba\x6e\xfd\xb0\x65\x2c\x50\xd3\x06\x5e\x18\x60\xa5\x5f\x7a\x4b\xd6\xf8\xcc\xcd\x19\x56\x6b\x5b\x92\x76\xf9\xcb\x2b\x37\x64\x73\x1c\x26\x13\xd8\x6e\x21\x2c\x0e\x5a\x46\xda\x8d\x86\x7a\x65\x69\x87\x98\x60\x7e\xd0\xcd\xee\xf4\x28\xd0\xfe\x26\xdc\xcf\x4e\x3d\x31\x7f\xe8\x7b\x18\x3c\xb7\xfd\x71\x34\xb7\x06\x15\xcf\xc6\x86\xc2\xb0\x7a\x81\x55\x0a\x6e\x78\xf5\xde\x76\x73\x82\x0d\x74\x2c\x6b\xae\x01\xc3\xa4\xcd\xd4\x44\x63\xa3\xdf\x53\x7e\x47\x3d\x28\xc3\xc9\xd4\x66\x9b\x35\xfc\x9a\x53\x65\xd6\xce\xfb\xa1\x19\xf9\x0f\x27\x67\xfc\xe8\x64\x32\x46\x98\x91\x93\x53\xf6\x86\x1b\x88\xc6\xa3\x93\x06\x48\x23\x80\x7b\x4b\x3a\xa2\x6b\xdb\x6c\x82\x9f\x53\x3a\xdb\x6c\x0e\xc7\x7a\x25\x79\xa1\xa1\x7f\x8b\x10\x0f\xbc\xd9\x7f\xa5\x07\x1c\xa1\x83\x72\x38\x2c\x13\xd9\x19\xeb\xa6\xd0\xb3\x2e\x53\x0e\xcf\x3f\xc8\x71\x80\xa1\x09\x3a\x4c\x13\x33\x47\xc3\x61\x4c\x4d\x3b\x88\x0b\x36\x4e\xa5\x5c\x88\x1c\x6d\x9f\xb2\xee\x5a\xa0\xea\xa2\xf3\x6b\x30\xee\x5f\xd6\xf6\xee\x62\x63\xfa\x98\x98\x52\xb9\x6f\xf5\x9c\x0c\x90\x62\x38\x2c\xc0\xc7\xab\x3a\x9a\x36\x1b\x05\xcb\xea\xd8\x97\x08\x57\x2a\x51\x66\x8e\x2f\x93\xc6\x9e\x67\x91\x42\xb0\xe0\x06\x6d\x22\x5a\xa5\x55\xa0\x61\x52\x39\xf6\xa1\x26\x84\x28\x57\xd8\xbc\x93\x57\xea\xce\x8d\x99\x8c\xf8\x9f\x0a\xfe\xf4\x16\x88\x69\x84\x85\x24\x9d\x7e\xc4\x42\xb7\x46\xe0\x0a\xe1\xae\x8a\x3c\x3e\xaa\xa7\x1e\xba\x0d\x39\x3e\xcf\xd8\xdd\x0c\x1e\x97\x07\xc5\x7b\x56\x09\x5a\x50\x0e\xbe\x66\x42\xbe\xae\x33\x8b\x22\xee\x2e\xd7\xb8\x8d\x63\xd6\x6b\xc2\xef\x34\x38\xcf\xdc\x27\xf0\xe6\x53\x31\x6b\xa2\x82\x05\x7e\x47\x1b\xc6\xd5\x72\x37\x5a\xc8\x01\x71\x16\x0b\x32\xc6\x05\x61\xe4\xe8\x04\x4d\x5c\x04\xd8\xab\xca\x30\x6c\x83\xc0\xab\x8d\x0c\x92\xc7\xf9\x7c\x4e\xd3\xc5\x6a\x38\x34\x5f\x49\x63\xc1\xd8\x66\x68\xbf\x10\xb4\xc8\xe0\xed\x0e\x75\x4c\xe1\x54\xa7\x9d\x21\x2c\x7e\x20\xe3\xe1\xb0\x80\xbf\xcd\xc5\xe4\x5e\x58\xbd\xb9\xd2\x5e\x01\xa7\x33\x5c\x11\x31\x2a\x70\x49\xc4\x69\xf9\xa6\x02\xd0\x0d\x8d\xf9\x2a\x47\xb6\xd4\x36\xd4\x72\xad\x3b\x6c\x03\xb7\x81\x34\x43\xe5\xb5\x3f\x05\xeb\xb4\x06\x98\x99\x1e\xd8\x7f\x6c\xf4\x0e\x1c\x54\x12\x68\xbf\x7b\xf3\xa2\xba\xcf\x5e\xd9\xfd\x4c\x76\xbf\x24\x62\xc4\x70\x4a\xc4\x69\xfa\xa6\x3c\x4d\x47\x23\x94\xb9\xee\xa7\xa6\xfb\x19\x61\x07\x1d\xfd\xb6\x5b\x22\x2e\x70\xd6\x3f\xbd\x2e\xd9\x1e\xb3\x6b\xf6\xa1\x9b\x5d\xe8\xf8\x5a\x11\x89\x35\xa5\x5f\x3f\x00\x2f\x01\x70\xdb\x0e\xe3\xeb\x6c\x0d\xaf\x2a\xd0\x38\xc9\xbc\xc6\xc6\x9f\xb3\x99\x36\x9b\x74\x35\x1c\x2a\xcc\x28\x37\x4c\x1a\x32\x16\x1d\xc5\x31\xdc\xe0\xd9\xd9\x78\xc2\xd0\x51\x5c\x11\x05\x43\x72\x36\x9e\x80\x17\x00\x22\xde\x8c\xcf\xf2\x91\x98\x08\xec\x8a\x4b\x96\x8c\x57\x42\x9d\xe4\xc3\xa1\x9c\xb3\xc5\x70\x18\xef\xa2\x51\x5e\x86\x08\xaf\xf5\x60\x74\x93\x99\x46\x52\xe4\xd7\x9b\xa7\xae\xda\xfc\xe8\xe4\xcd\x62\x54\xbd\x50\xb1\xcb\xf1\x52\xbd\x61\x4a\x14\x2c\xe9\xcc\xb9\x89\xd3\xbc\x17\xa1\xda\xed\xdc\x57\xfa\x64\xc1\x18\xa0\x74\x8f\xef\xf3\x11\xf6\xbc\x93\xc4\x3a\x24\x38\x3d\x3a\x2a\x7f\x20\xec\x14\xc5\x29\xd1\x7b\xcf\x74\xa7\x8b\x09\x4f\xa1\x08\xc3\xfd\xfd\x4c\xfd\x53\x47\x77\x2d\xe0\xc9\x5b\xe9\xdd\x09\x84\x9a\xc8\x77\xaf\x6a\x5b\x37\x93\xbe\x47\xf3\x9a\x3c\xfb\xee\x16\x76\x28\xeb\xa7\xb8\x5b\xaf\x5f\xde\xca\xad\xde\x7e\x8d\xa9\xda\x85\x2d\x5a\x45\xf2\x46\x94\xbb\x63\x2e\x70\xc3\x10\xa0\xe3\xea\x45\x87\x43\x3a\xbd\x9f\x29\xa6\x71\x89\xef\x15\x6b\x55\x3d\xdd\xdf\xc2\xc5\xeb\xf2\xc3\x8f\x97\x9f\xe7\xe7\x9f\x3f\x9f\xff\x35\x42\xf8\x89\xf0\x90\xa9\xb4\x4a\xd6\x38\x5e\x82\xab\xdc\xe9\x3d\xe0\x4a\x2d\x35\xbf\x08\x5e\x57\xf0\xd2\xf5\xc3\x6f\x01\x18\x45\xd3\x37\xe3\xcd\x86\xfe\xe0\xed\x64\xc5\xd1\x99\xcd\x8c\xdc\xdd\x82\x37\xf0\x60\x4d\xb1\x55\xa3\x5c\x07\x12\xe5\x88\x7d\x0f\x3c\x66\xad\x6e\x40\x50\x58\x41\xbf\xe9\xcd\xd2\x35\x4e\xb5\x57\xef\x34\x9a\xce\xa2\x99\x6a\xb2\x83\xb2\x7d\xee\xb1\x14\x00\x2f\x5f\x01\x5b\xef\x4b\xe2\xb4\x4b\x31\x05\x4f\xaa\xb7\x5b\xc7\x30\xc0\xd5\x49\x96\xb4\x45\x78\xe9\xd3\xaa\x66\x2b\x3a\x94\xb7\x55\x51\x63\xb4\xf5\x01\x7b\xe5\x14\xa5\xaf\x2e\xa4\xaf\x79\x47\x27\xad\xd2\xb5\x15\x69\xd5\x35\x98\xd0\x69\x87\xd4\xf2\x03\x19\xcb\x09\x00\x19\x58\x87\x23\x8c\xc2\xc3\xd3\x39\x8f\xe5\x85\xa3\xaf\x19\x20\xef\x85\x48\x03\xe0\x4d\xd1\x19\x25\xe3\x09\x7d\x23\xcf\x54\x4a\xd8\x88\xea\x6d\x6b\x12\x08\xb4\xd9\x88\x1f\xd8\x99\x20\x6c\x22\x20\x95\x20\x6c\x24\xd0\x29\x7d\x23\x4e\x51\x31\x2d\xf4\x4a\x9e\x11\xb3\x02\x46\x23\xdf\xcf\xc9\xd2\xf4\xa3\xab\xe1\x2f\x35\xd5\xf1\x12\x50\xef\x18\x61\xdd\x84\x11\x61\x80\xc6\x05\x9e\x91\x0b\x05\x21\x56\x9b\xab\x90\x8f\x7d\x63\xf8\x99\xa3\x93\xad\x9e\xd1\x77\xbf\xbe\x39\x5e\x7b\xe4\xa0\x10\x00\xa8\x12\x84\x49\x56\xa6\xd5\xb0\x1f\xc8\xf8\xb4\x38\x3a\xda\xb3\x65\x2d\xaa\xd7\xb9\x19\x52\xe7\x33\x5a\x66\xea\xa2\x8a\x9d\xf9\xaa\x30\x5f\x8b\xab\x7f\x71\x7d\x43\xfc\x2a\xad\x0c\x77\x6e\x10\xbd\x1a\xec\x0c\x02\xa1\xec\xce\x94\x9a\xad\x05\xef\x93\x7d\x14\xbb\x29\x75\x30\x9a\xf9\xb6\x17\x60\x5e\xbf\xec\xa1\xea\x3d\xb9\x17\xcd\xdc\xac\x58\xe4\x75\xd6\xf2\xb5\x65\xfd\x48\xff\xea\xa5\x59\x9a\xa5\x59\x9a\xa5\xc9\x88\x5d\x02\x98\x2a\xc8\x67\x7a\x48\xe8\x70\xc8\x0e\x09\x33\xe0\x76\x86\x87\x3b\x3c\x01\x12\x0a\x70\x8b\x6d\x2a\xda\x4d\x40\x35\x23\x6a\xfc\x32\xaa\x5f\x20\x46\xce\x8c\xd0\xda\x8b\xd8\xa2\xe4\xa1\xcc\x53\xc1\x72\x1a\x87\x54\x09\xa1\x83\xcc\x89\x65\xc8\xf3\x7c\xae\x84\x36\x1f\xcb\xc2\x71\xd8\x2d\x47\xba\x53\x85\xef\x31\x03\xcb\xc1\x6a\xc1\xd9\x5a\x94\x5c\xc9\x88\xb7\xb8\x71\xf5\x09\xdd\xb9\x5a\xef\xfc\x8e\xb1\xc2\x25\x29\x7e\x18\x9f\x89\x51\x31\x39\x3a\x31\x9e\xab\x1c\x43\xac\xc4\xa7\x86\x65\xa9\x94\x7f\xa7\xf2\x87\xf1\x70\x28\x79\x9a\x0a\x6b\x91\x60\xd9\xe0\xfb\x5a\x6f\x0d\x15\x4e\x91\x6e\x9c\x5d\x3a\x8d\xb6\x85\x5e\x63\x75\xeb\x52\xc2\xa0\x75\x4c\xb6\xae\xda\xdd\x3a\x78\x55\x2b\x51\x2a\x5b\x27\xb9\xc1\xda\xb4\x2e\xed\xe7\x4a\x21\x45\x0d\xd2\xcc\xdd\xa2\x5c\x68\xd3\x2d\xbd\x63\x85\xda\xc6\xac\xb8\xbb\xb0\x3c\x55\x4c\x5f\x96\xc7\x42\x01\x95\x28\xd7\x7d\xf9\xfb\x0a\x6f\x8b\x55\x0d\x30\x22\x0c\xd1\x41\xb1\xd9\xc4\x7e\x40\xa7\xab\x61\x78\xf4\x3c\x93\x7f\x46\xa3\x49\x0c\x2f\xa0\x27\x78\x1d\x0b\x12\xb0\xdc\x58\xb1\xdc\x38\x38\xf8\x7d\xe6\x67\x8b\x7b\x7a\xf0\x62\x23\x87\x43\x59\xa9\x9c\x9a\xa3\x23\xf9\xf5\x86\xc0\x1a\x7a\x65\x03\xb6\xb8\x8b\xf7\x6d\xb0\x32\xbb\x57\xa2\x08\x0a\xe9\x5e\x8c\x8d\x32\x9a\xeb\x45\xa8\xf7\x60\x23\x68\x7b\xda\x21\x68\xf3\xb1\x21\xfa\xa4\xc0\x3b\x91\x61\x3c\x4c\x9a\xd6\x4b\x09\xd8\xe1\x29\x3f\x6c\xbb\xa4\xd1\x2d\x00\x8d\xdf\xb8\x21\xf3\xb9\xab\x61\xae\x1e\x6e\xca\xc7\x82\x72\xfb\x3e\xde\xc3\x86\x26\x41\xc6\x24\xcc\x13\x83\x43\xe0\xf2\x6b\xbd\xde\xc1\xa8\x86\x05\x68\xdf\xf7\xea\xd8\x9d\x73\xe5\xd4\xfa\x7d\xb9\x48\xf3\xf7\x10\x03\xfe\x2a\xf7\x2d\xcc\x20\x0d\x68\x97\x3b\x5e\x31\x31\x58\x40\x96\x05\x2d\xc4\x24\x1a\x51\xfc\x5c\x95\x35\x5f\xd0\x89\xd8\x6a\x22\xf2\x56\x81\x1c\xbd\xea\xe1\x0a\xb7\x9b\x00\x52\x17\x91\xf0\x5a\xbf\x8a\x86\xb1\x1e\x96\xd2\x16\x2f\xd3\x85\x28\xf9\xd3\x4f\x0d\x07\xe8\xea\xe6\xf1\x2b\xdd\x37\x5a\x67\x9f\x5d\xa3\xe3\x2a\x8c\x5f\x7e\x0d\xd9\x0d\xa5\xd9\xef\x71\x62\x2f\x7c\x8b\x7d\xc1\x31\xf7\x5d\xcd\xd6\x1e\x19\x3f\xb3\xca\x29\x5d\x4d\x0e\xc7\x58\x49\xf5\xb5\x33\x42\x51\xea\xad\xa7\xfc\x9e\xaa\x4f\xf3\x78\x19\x00\xc4\x19\x8d\x59\x14\x6b\xdf\x85\x5d\xf8\x6e\x6e\x8c\xcc\xdb\xec\x51\xaa\xf4\x73\x35\xd6\xdb\x77\xc9\xc9\xbf\x25\xe3\x08\xd7\x3c\x9f\x44\x2b\x21\xd6\xd5\xe4\xf8\x18\xca\xf8\xaf\x4a\xf2\x2b\xc7\x99\x67\xc3\x7c\xfc\xf0\x5d\xf2\xed\xf8\x9f\x44\xb9\x98\xbb\x82\x8f\xc2\x82\xb7\x3d\x00\x6e\x2d\x74\x97\xfd\x1e\xaf\x5e\x84\x78\xf9\xf5\x53\xf2\x2c\xdb\xa2\x06\x78\xc9\xcb\xbf\xd3\xe2\x42\xfe\xf6\x76\x17\x80\x5e\x5a\x8b\xa9\xe1\xd0\xfb\x61\x30\x1c\x15\x57\xd6\xfd\x5a\xc5\xaa\x9f\xa0\xd8\x08\x29\x7c\x7a\x58\xef\x80\xf7\x88\x12\x68\x3f\x8d\xd1\x81\xf3\xd9\xc8\xb5\xcf\x46\x99\x6c\x14\x0d\xb2\x92\x56\x83\xa2\x14\x03\x0d\xf7\x32\x80\x2c\xe0\x32\x7c\xf7\xb6\xf0\x31\x67\x7e\x8b\x87\x18\x87\x6d\xc4\xe9\xdf\x6a\xc6\xbb\x1f\x62\x76\xe9\x93\x38\x23\x31\xc3\x6d\x2f\x86\xc3\x18\x3c\x2a\x58\x6b\x73\xd4\xec\x4d\x17\xae\x10\x4a\xce\x11\x5e\xc4\xc1\x3b\x84\x2d\x5c\x96\x9b\x19\xcc\xf4\xe7\xed\x24\x53\x80\xd7\xc1\xeb\x83\x67\x8f\x6a\xb0\x3e\xe1\x98\x0b\x9f\x16\x6c\xaa\xdd\x70\xec\x1e\x3a\x30\x21\xde\x35\xa3\xc0\xd4\xc7\x64\xb7\xc5\x81\x13\x2b\xee\xbd\x48\x83\x6a\xcb\xc2\x88\x20\x41\xc2\xbd\x6e\x8a\x9e\x9e\x9d\xbc\x46\x2f\x55\x27\x14\x99\x34\x2e\x15\xd1\x74\x16\x78\x12\x33\x9e\x03\xfb\x64\x4e\x5a\x25\xa3\x8a\x11\xd6\xfc\x92\xab\x2c\x1e\x1b\x40\x3b\xfb\x9e\x05\xce\xdc\xb7\xa1\x00\xc4\x09\x57\x7e\xd3\xc6\x8c\x71\xa1\x64\x6a\x16\x22\x3f\x2b\x9f\x0b\xc2\x30\x6b\xb5\x53\x8c\x46\x18\x46\xfc\x71\x25\x2f\x42\xf6\x04\x62\x61\xc3\x8b\x46\xc3\x8d\xdc\xa6\xcb\x51\xbe\x2d\x03\xea\x5a\xb2\x22\x8b\xdb\xb3\x09\x93\x4e\x41\xa6\xa6\x60\xea\x27\x7d\x17\x50\xd9\xa5\xb4\xb7\xe3\x38\x77\x3e\x9b\x1b\xb7\x51\x85\x99\xaf\xf4\xed\x52\x75\x09\x6d\x75\xbf\xc0\xb9\xbc\x25\x19\xcd\x26\xcc\x70\xa1\xbc\xc4\xe0\x9c\x30\x8b\xef\xad\x06\xb3\x24\x75\x5c\x1a\x87\xfc\x77\x54\x40\xab\x95\xf0\x59\x92\xee\x0f\x54\xac\x4a\x39\x73\x4a\xfd\x1d\xe1\x4a\x27\xe9\xe7\x6d\x5a\x08\xfd\x45\x20\x6a\xa8\xf4\x76\xd0\x9e\x11\xee\xd3\x26\xd3\xa5\x94\x24\x52\xe7\x4c\xa6\xa7\x54\x45\x5f\x74\x1a\x3e\x65\xf2\x8e\xaa\x3b\xac\xe2\xc0\x27\x0c\x86\x86\x77\xcd\x28\x14\xdb\xf4\x54\xd2\x92\xb8\x1a\x19\x29\xa8\xca\xff\x43\x2d\x6d\xb4\xce\xba\xaf\x29\x74\x43\x39\x85\x2d\xb3\x63\x60\x1b\x50\xf3\x96\x86\x50\xc3\xe7\xf9\x2f\xfe\xb6\xd1\x3f\x3e\xf5\xf1\xc4\xba\xc0\xbc\x9b\x4d\x44\xa6\x49\x3f\x36\x75\x62\x94\x64\x72\x4f\x42\x18\xd2\x40\x50\x88\xdc\x87\x0e\x1e\x84\x42\x62\xb5\xae\xa1\x4f\x81\xb6\xc6\x5e\x02\xbe\xae\x2d\xa4\x21\x45\xd5\x3e\x3c\x3c\xd1\x3b\x0e\x7b\x94\x57\x13\x19\xa7\xde\xca\x86\xc3\x43\xb5\xe5\x16\x7d\x5b\x0e\x00\xb5\xf5\x34\x2f\xcc\xae\x43\xc3\x61\x9c\x91\x85\xdc\x7d\x0b\xd3\xad\x05\x09\xf7\x5f\xa6\x7a\xb6\x6b\xae\x8a\x6c\xc7\x4c\xd1\x07\xca\x9b\xd3\xa4\x47\xb6\x83\x60\x69\x35\x09\xbb\x7c\x74\x8b\x55\xb0\xd2\x44\xbb\x0c\x0b\x0c\x1b\x03\xb5\xed\x68\x4d\x5a\x74\x2e\x99\x1d\x73\x84\xfb\xa7\xe2\x25\x2a\xb8\xc7\xb4\x74\xcd\xca\xae\xd9\x48\xe5\x08\x9c\x17\xbd\xfd\x4f\x8b\x5d\xbd\x57\xe8\x77\x93\xa6\xb0\x52\xab\x26\xed\xa6\x15\x42\xce\x4b\x41\x68\x5c\x60\x49\xb7\x8d\xbe\xab\x6e\x72\xb1\xc5\xac\x78\x28\xbf\xd2\x96\xbe\x52\xfb\xea\x65\x51\x4e\xc5\x0f\x27\x67\x42\xe9\x2b\x15\xe4\xe4\xb4\x78\x23\x0c\xda\x69\xa8\xaf\x54\x28\xa7\xb2\x7a\x19\xbc\x4c\xd6\xac\x88\xaf\x94\x93\x22\xa6\x74\x76\xd0\xa1\xbe\x51\x0e\x87\x31\x9b\x16\x33\x62\x5c\x87\x9c\x95\x96\x5a\x71\x34\x91\xd9\x40\xd9\x54\x75\x90\x6d\xb1\x28\xa1\xd9\x93\x96\x96\xe8\x1e\x0d\x72\x22\x61\x3a\xe5\x33\x85\xac\xbb\xc5\xc0\xac\x2e\xfa\x1e\xa8\xfa\x3d\x78\x80\x17\xbf\x43\x75\x9e\x3f\x32\xb1\x2a\x6b\x31\x69\x3e\xe2\xe9\xe7\x1c\x25\x6e\x8e\xa9\xf5\x50\x0b\x4f\x70\xfa\x4e\xfc\x52\xbb\x65\xab\x25\xdf\xb0\xd9\xf0\x43\xc2\x87\x43\x7a\x28\xbf\x63\x31\x15\xf6\x01\x86\x03\x84\xf0\x16\xd7\x05\xfb\xdb\xaf\x19\x19\x79\xfa\x98\x47\x27\x81\xde\x8c\x87\x43\xaa\x0e\x1f\x00\x37\xa6\x5b\x2c\x39\xb3\x26\xb7\xb6\xeb\x55\x6f\x8b\x70\x9a\x65\x6d\xd5\x8c\xce\x93\x42\x2e\x8f\x50\xcb\xca\xdd\x47\x7c\x55\x2b\xa6\x52\xfa\xaa\x56\x2e\xa1\xa7\x6f\xd5\x96\xdf\xf7\xa9\x89\x58\xb5\x6d\xfd\x7a\xd1\x2b\xa9\xeb\x2d\xc1\x3e\xc4\x9b\x57\x0f\xfb\xe8\xe1\x29\x2f\x1a\x85\x1e\xf0\xbf\xb9\x4f\x06\xa3\x23\x42\x31\x43\xb8\xd9\xb8\xa6\x08\xb0\xbf\x6d\x8a\x6b\x53\x6f\x45\xff\xf7\xcc\xc5\x0e\xfd\xb7\x7d\xe6\x22\x54\x26\xdb\x6f\x3a\x5e\xce\x13\xce\x48\xbf\xe6\xdc\x5e\x33\xd2\x1d\xdd\xdc\x5f\xaf\x78\x8a\x6b\x37\x74\xe7\x7b\x5c\x7b\x2c\x60\x9b\xf7\x6b\x7d\x75\x2e\x15\xcd\x09\x99\xeb\x16\x2e\x1b\xae\xc9\x0a\x62\x7c\xe1\x3b\x65\xbd\x33\x3a\xa1\x67\x9d\xaa\x49\x13\x4a\x8e\x4e\x30\x6b\xe7\x11\x67\x62\x22\xce\x3a\x65\xf0\x13\x21\xf3\x94\x84\xbd\x19\x6f\x36\x85\xfc\xc3\x8e\x8a\x43\x32\xc6\xa0\xd5\x44\xe1\x5d\x5b\xb1\x02\x10\xe0\xf3\x06\x2f\x2c\xb1\xe9\x2c\x6a\x4f\x73\x3b\x99\x65\x4f\x9a\xea\x5e\xfd\x8b\x6e\x6a\xde\x22\x67\x66\x35\xf4\x6b\x9d\xfd\xff\x74\xd8\x77\x8e\x93\x55\x8f\xf3\xc6\xe9\xc5\xfd\x16\xce\x43\x6f\x32\x98\x55\xad\x75\x52\x72\xf1\x63\x17\x17\x61\xf8\x9d\xe0\xc4\xd4\x4c\x47\xcb\xdd\x93\xe3\x71\x3a\x3c\x3c\xd2\x96\x87\x47\xaa\x3c\x3c\xfa\x83\x9a\xa2\x40\x3d\xb8\x90\x01\x4d\x87\x8f\x15\xae\x2d\xe3\xe0\xbb\x71\x54\xe7\xfd\x8f\xed\x07\xaf\x42\x1e\xf9\x98\x75\xbd\xbe\xed\x66\x04\xac\xe2\x73\xcb\x59\x9e\x6e\x5f\x89\x29\x42\x07\x29\xbc\xbd\x6e\x36\x31\x9b\xa6\xa0\xd4\x54\x28\x6e\xa1\x04\x67\x79\xc0\x85\x2a\x8e\xa7\xdb\x0c\xa3\x9b\xc3\xef\x5a\xd9\xca\x04\x44\x31\xfd\x95\xf6\x1b\xa6\xb8\x7a\x61\xb9\xfa\x94\x50\x42\x48\xdc\x25\xe6\x28\x71\x8e\x90\xff\xe0\x2e\x17\xad\xf3\x9c\xa8\xcb\xcf\x49\x1d\xe7\x92\xa9\x0f\x54\xd6\x3b\xbd\x72\x35\xe1\xb2\x7f\xe3\xd7\x2b\xff\x79\x8a\xe2\xa6\x1f\xef\x36\xcf\xa0\xd2\xe8\x15\x5d\x16\xb4\x27\xf7\x40\x3d\xcb\x72\xcc\xdd\x2e\xec\x2d\x0e\x1f\x8e\x4d\x89\x82\xb3\xbb\x3b\xda\x7e\xc7\x81\x0b\xc0\xc1\x6f\x66\x06\x71\xaa\xbd\x94\x87\x44\x01\x9c\xa6\xe1\x72\xb9\xdc\x35\x24\x9d\xe7\x76\x30\x2a\xab\xb4\x4b\x5c\x07\x99\x3b\x8e\x46\xfa\x82\x9c\xdc\x43\x89\xff\x8d\xec\x68\x7a\x21\x9a\xad\xf3\x54\x17\xd4\x5c\x2e\xaf\x36\x49\x93\xd7\x56\xf5\xbe\x30\x39\x3c\xc1\xea\x3d\xe1\x65\x0b\x9a\xe6\x9b\x44\xdc\xf0\x2a\xef\x12\xd8\xb5\xa3\x1c\x50\x85\x9d\x8b\x54\xa2\x81\xd2\x4c\x1c\x2c\xd2\xa2\x28\xc5\xe0\x96\x0e\xee\xcb\x8c\x2d\x19\xcd\x92\x68\xc7\xc8\x37\x30\xef\xf7\x7d\xbb\xdb\xc7\x67\xc2\xfe\xc0\xfb\x1d\x29\xfa\x5c\x06\xbd\x64\x2d\x0b\x2b\x99\x2d\xe3\xd6\xb9\xcb\x21\x98\xcb\x53\x95\xff\xe0\x59\xf3\x78\x67\x36\x72\x0f\x40\xa5\x7e\x00\xaa\x3c\x29\x96\x52\xb2\x3f\x41\xd8\x39\x77\x97\x0d\xaa\xad\xe3\x32\xba\xf5\x50\xc8\x53\xb8\x86\x56\x24\x02\xed\xb8\x41\x59\x8b\x81\x6c\x85\xb1\x5c\x99\xce\xfa\xe9\x95\xd5\x3d\xc4\xde\x4b\xa5\xae\x52\x3f\x42\xe6\x34\xe5\xed\x43\xb6\xb9\xc2\xac\x24\xce\x7b\x96\xa1\x7a\xb1\x89\x50\x0b\x94\xe2\xda\x2c\x31\xcc\x8a\x8a\x72\x71\x1e\xc8\x44\xd5\xf0\xd1\x1f\xfa\xaa\xe8\x1e\xbb\x2e\x8d\x53\x8a\xc7\x78\xca\x67\xe1\x2d\xea\xbc\x47\x00\x1b\xa8\xe7\xc9\xb3\x50\x3f\x70\xf4\x6b\x78\xaa\xa6\xc7\x7d\xed\xc4\x14\xee\xdd\xae\xa8\xaa\x25\x5b\xb0\x1c\x82\x73\x0e\x37\x1c\x1e\xb6\xfc\xf8\xb9\x0e\xdf\x3c\xad\xa9\xea\x72\xf4\xa1\xae\xc4\x60\x9d\x56\xd5\x00\x74\xa0\x3d\x38\xf8\x81\x28\x75\x98\x0f\xb1\xf7\x4f\x5e\x43\xa2\xee\xf1\xea\xed\xc9\x58\xf6\x45\x0d\xe2\xba\x5c\x37\x07\xe6\xc5\x35\xc1\x96\xf1\x38\xd0\x9e\xac\xf3\x5c\xdb\xf1\x01\x2f\x61\x14\xa8\x0d\x09\x3f\x3a\x69\xb6\x4f\x4d\x5c\x4c\x8f\x4e\xf0\x09\xb0\x27\xd5\x8a\x2d\x45\xbb\x21\xba\xa6\xde\xa5\xd3\x6c\x00\xed\x6c\xc0\xb8\xa7\xfa\x31\x4c\x68\x5d\x74\x56\xde\xb7\x3c\xc6\x7a\x1d\x04\xd9\x3a\x1f\xa0\x1a\xfb\xc4\x1b\x74\x4e\xe5\xed\x92\xb6\xf2\xbe\x7a\xe4\xad\xd0\x4a\xbb\xc6\x75\x5c\xb1\xae\x22\xee\x5e\x19\x72\xd7\x72\xcb\x78\xd3\xce\x5e\x98\xba\x0c\x6a\x84\x5f\x0e\x50\x91\x18\x39\xf3\xd8\x9d\xc4\xa3\x51\x35\xf7\x07\x42\xd9\x23\xb4\x86\xde\x68\xed\x15\xbd\x85\x6f\x36\xe3\xd3\xa3\x23\xd0\xec\x45\x5d\x93\xae\x14\x7c\x87\xc3\x70\xca\x8b\xa0\x51\x5b\x0c\xf6\x1a\x2f\x4c\xbc\x15\x15\x6e\x36\x10\xe2\x36\x5e\x4c\xad\xa2\xfb\x1e\x07\xe5\xee\x27\xfd\x97\x0f\xb6\x2e\x46\xb6\xd3\x0e\x58\x1d\x0d\x8d\x27\x68\xe1\x0e\x04\xd7\x69\xc5\xcd\x9b\x9f\x5d\x97\x03\xe1\x2c\x13\x60\x94\x41\x0f\xd1\xa8\x30\xaa\xbb\x9c\x66\xd5\xe4\xe9\xd6\xe5\xeb\xdb\x0c\x66\x62\xeb\x01\xe3\x79\x75\x31\xa4\x45\xd6\x53\x58\xc7\x02\x81\xd6\xfa\x21\x1d\x0d\x76\x5a\xf5\xbb\x5a\x2a\xec\xb2\x3e\x3a\x39\x15\x72\x0d\x89\xa3\x23\xe4\x2d\x15\xd3\xd0\xa9\x98\x21\xbf\xfb\x2f\xb4\x77\xe7\x3a\xf0\x1d\x0e\xfd\x66\x36\xdf\xdd\xd7\x96\x40\x0e\x4c\x7b\xd8\x48\x8a\xe0\xfd\xd8\x33\xb2\x6e\x12\xa2\xdf\xd0\x25\xdb\x40\x84\x5e\xa8\x43\x17\x93\xca\x6b\xa4\xf1\x21\xc9\x11\x6a\x19\xa1\xf0\xa0\x13\x8e\xd5\x05\xfc\x1d\x5c\x75\x77\x83\x36\x33\xb5\xbc\x60\x5b\xd5\xda\xc6\xac\xf6\xf0\xe0\xdd\x6b\xca\x89\x8d\x9a\x8b\xa3\xa7\x98\xae\x55\x64\x0f\xe4\x96\x68\xab\xaf\x3f\xbd\x42\x30\xda\x2c\xab\x4b\x7c\xd5\x59\x54\x53\x3e\x63\x4b\x2a\x4a\xc1\x96\x4f\x61\xa3\x7b\x49\x66\xbb\x61\x86\x50\xb6\x2b\xb2\x24\x14\x7b\xa6\x73\x2f\xdc\xb9\x1b\x98\x13\xc1\xed\x32\xb4\x70\x7b\xf9\xa6\xba\xab\xac\x55\x5a\x99\xe8\xa6\xf2\xe4\x0b\x97\xd6\x51\x64\xa5\xbe\xb0\xc7\x94\x1b\x11\xd8\xab\xfd\x8b\x3a\x4c\x17\xac\x6f\x56\x2c\x38\x95\x3b\xaa\x0b\xf3\x22\x2c\xc5\xd8\x0a\x71\x34\x1c\xc6\x5c\x5e\x3a\x5a\x3b\x26\x5e\xa7\xbc\xa2\x3f\xe5\x65\xda\xe2\x76\x29\x92\x07\x2b\x1a\xc9\x4a\x33\xfa\x9b\x56\xda\xaa\x49\x56\x74\x04\x4f\xa5\xe5\xdd\x5d\x4e\x3b\xf5\xe2\x7b\xf6\xfc\x61\xbb\xd9\x5b\xbc\x48\x17\x2b\xba\x63\xa2\x4c\xbc\xb7\xf5\x8d\x73\xe1\xea\xa7\x92\x37\xf5\xd4\xbd\x9c\x7e\xb2\x3d\xe5\x12\x0d\x07\x6d\xbf\x4e\x4d\xf2\x15\x58\x50\x3b\x1d\xe2\xea\xcd\xd9\x20\xef\x6d\xc6\x4d\x37\xda\x71\x6e\xdc\x41\x5b\xf0\x00\x9c\xa2\xff\xe8\x51\xce\x6d\x35\x42\x4f\xf5\x89\x16\x19\x2b\xee\x26\x80\x90\x52\x94\x02\xc5\x11\xab\xae\xa9\x10\x39\xcd\xa2\x40\x95\xcb\x06\xab\xb4\x72\xa0\x23\x56\x7d\xa6\x0a\xef\x2c\x02\x99\x46\x9d\x2f\x59\xde\x91\xd3\xa4\x9a\x1c\x9e\x60\x2f\x99\xfc\xa9\xbb\x34\x51\x2b\xa0\xf7\xa5\xb4\xad\xc0\x19\x80\x6d\xff\xbe\x1a\xe8\x82\x06\xf7\xf2\x9e\x76\x4b\x07\x15\x15\xd1\x8e\x63\x6a\xb0\xeb\xec\xf2\x8f\x21\x8a\x9f\x1b\x4d\x0e\xfa\xb3\x45\x98\x27\x62\x45\x8b\xf0\xf5\xd9\x98\x8a\xb2\x4a\xeb\x93\xd3\x6c\xb3\xf1\x7e\xb2\xe2\x0e\x9e\x9b\xba\xaa\x33\x7a\xc8\x3c\x1c\xab\xb1\x52\x6a\xf2\xab\x51\xa3\xf2\xeb\x6a\xd1\xeb\x80\x07\xdd\xd1\x75\x44\x70\x9d\x9d\x0c\xfc\x21\x8e\xd0\xd6\x82\x85\x6d\x25\x05\xa6\xc5\x84\xc5\x91\xfc\x1f\x21\xbc\x48\xc5\x62\x25\x7f\xc3\x47\x84\xf0\x92\x15\x69\x9e\x3f\xc9\x20\xfd\x19\xed\x56\x59\x6e\xba\x13\xfd\xad\x31\x07\x7b\xb7\x99\xd1\x1f\xb1\xd6\x2c\xd6\x4f\xe1\x7c\x8e\x3c\xe8\x98\xc6\xfe\x7a\xd9\x71\x59\x97\x6a\xdb\xf3\x16\x17\xe4\x59\x5b\x37\x4c\x22\xfd\xa1\x8b\x80\x7c\x11\x56\xd5\x53\x2e\xa3\xd5\x57\x84\xeb\xc2\x85\xba\xef\x08\x84\xb5\xd1\x2a\xad\xc2\x12\xca\xb5\xfc\xef\xf2\x5f\xad\xfd\xf0\xaa\x19\x51\x45\xf2\x0c\xbc\x6a\x46\xd2\xcc\x46\xeb\x8c\x3f\x95\xfc\xe6\x69\x4d\x5b\xf9\x75\xb8\x5f\x4c\x2b\xa9\x2d\xcd\x26\x66\xd6\xc2\xc4\x38\xba\xda\x5a\x6b\x30\x36\x60\xc5\xa0\x40\xa0\x84\xd8\x26\xa5\xed\x89\xb4\x4a\x2a\x85\x99\x2f\x1a\xcc\x17\xc8\xa6\xc6\xb8\x98\xb2\x99\x23\x9e\xbe\x19\x50\xdb\x2c\xc6\xad\x02\x73\xb1\x69\xcd\xd5\xa4\x88\xcd\x14\x46\xc8\xcd\x1b\x84\xea\x19\x42\xfe\xd4\x15\xb1\x3f\x79\x08\x37\x26\x4e\xc6\xaf\xd2\xca\x2b\xca\x0c\x9a\x8c\xb1\x63\xeb\xc5\x9b\x39\x2b\xe2\x48\x4f\x51\x47\xe6\x2a\xc8\x5d\xb5\xb3\x9b\xb9\x72\xa5\x98\x39\xea\x28\xcc\x4b\xdc\x9a\xed\x08\xe9\x49\x95\xb1\x76\x7a\x5f\xd8\xf8\x3d\x6e\x57\xdb\xfb\xbf\xcb\x5b\xf7\xaf\xf2\x46\xdf\x7b\x07\x7f\xf6\x8d\x44\xd4\xb7\xaf\x76\xed\xec\x35\x51\xfc\x02\xf2\x56\xbf\xa2\x4f\x32\xf7\x0b\x6e\x1e\x50\xe6\x49\xc2\x4f\x43\x00\xbc\x5e\x8d\x8f\x96\x08\xc0\x37\xbc\x7d\x7f\x13\x1d\x41\x3d\xba\xe2\x41\x9a\x40\x6d\x5c\xdd\x26\x8b\xd6\x53\x63\x98\xc3\xec\x9c\x96\x9b\xfd\xe2\xcc\xa9\x13\xc6\xb4\x59\x4a\x01\xfa\x9a\x41\xb0\x32\x93\xf9\x26\xb4\xd5\x97\x4c\x82\x29\x9a\x14\xf2\x60\x51\x4f\x68\x0a\x1a\xad\x7d\xe3\x05\x45\xba\xa6\x4d\xd4\xb8\xd3\x26\x6a\xec\xdb\x44\x8d\x67\x93\xe7\x2d\x2e\x09\xd3\x60\x5c\x38\x25\x2c\x51\xa3\x8c\x2b\x1b\xaa\x7b\x6a\x15\x6b\x88\xd1\x24\x6a\x8d\x49\x84\x70\x4a\xd2\xcd\xa6\xf5\x90\x1c\xa8\x64\x52\x0f\x4d\xcc\x3c\xa2\x9e\xb5\x86\x8f\xf9\xc3\x57\x04\xd9\x19\x8c\x5d\xb1\x6b\xec\x18\x42\xb8\x40\x13\x36\x61\x9b\x4d\x4c\xc3\xa5\x73\xd6\xf8\x0d\x6b\x45\x1f\xe4\x1e\xa2\x50\x35\x1c\xc6\xd5\xee\xc9\xd7\xc8\x2f\x5a\xc6\x86\xf0\x61\x7c\x98\x6e\x36\x87\x72\x7c\xb4\x8c\xe0\xf0\x44\x36\x3f\x85\x67\xc9\xb3\x98\x92\x14\xf9\xd8\x69\x14\x4f\x4b\x2b\x40\xa8\x10\x9a\xc4\x05\x49\x91\x0c\x53\xf1\x05\x9e\xfa\xd1\x08\xf5\xf1\xef\x2d\x5f\xc2\x7b\x42\xd8\x7a\x8e\x7d\x83\xed\x46\xa8\x3c\x06\xee\x3a\x62\xdd\xb6\xd5\x29\x3a\xd1\x27\xa6\x54\xe3\x9d\x88\x1e\xb0\x5d\xe3\x24\x7c\xbd\xce\xd9\x42\x1f\xd0\x2f\x3a\x66\x77\x3e\xc7\xf7\x7e\x18\x37\x4f\x1b\xf4\x9b\xa0\x45\x16\x77\x0f\x5e\x87\xc3\xf2\x7d\x1f\x06\x7b\x5c\x3b\xef\x74\x24\xff\x1a\xf7\xdb\x2f\x3f\x26\x86\xd9\x77\xbd\x23\xe2\x14\x57\x7d\xac\x60\xdd\x50\xbc\x94\x73\x97\x87\xaf\x76\x45\x73\x30\x1d\x34\x4d\x08\x71\x2a\x5b\x54\xdc\xd1\xec\xc2\x99\x0e\x0a\x65\xe6\x11\xe0\x8c\x1a\xd1\xb7\x49\xd6\x79\x8d\x4d\x3d\x09\x79\x0b\x92\x31\xac\x07\x1e\xbb\xb6\x58\x8b\xec\xdb\xa5\xaa\x33\xaf\x59\x88\x6d\x8f\xf7\x60\xc7\x41\x67\xc0\x18\x70\x7b\x32\x2d\xc8\x3c\xbf\x6d\x40\x18\xd9\x32\x70\xeb\x11\x5d\xd0\x94\x67\xe5\x63\xa1\x5b\x03\xeb\xaf\x19\xf8\xf2\x4b\x8a\x43\xee\xa4\xa0\xc1\x94\x76\xe1\x76\x48\xc2\x08\xc9\x9f\x9d\xda\xe5\xc4\x64\x3d\x6f\xc2\x0d\x5a\x85\xcb\x30\x89\xd3\xb8\xdc\x3a\x9b\xf2\x46\xe6\x49\x8d\x3b\xb3\x4c\x6a\x3b\x64\x2e\x2c\x90\x44\xf4\x0c\x55\x7f\x77\xb5\x26\x02\x15\xf5\x3a\x18\x41\x3f\xe4\xd7\x0c\x5f\x13\x2b\xe5\xff\x85\xb1\x9b\x37\x56\xe7\xcb\xab\xa8\xb9\x9c\x5b\xac\x48\xab\x63\xed\x0d\xc0\x09\xe8\xe7\xb5\xdf\xfa\x27\x63\x35\x98\x8d\x2c\x8d\xbe\xe9\x97\x47\xcc\xf5\x29\xa8\xe5\x9f\xbd\x5d\xf1\x5e\x11\xdc\x5a\x3f\x0f\x53\xab\x77\x93\xe6\x70\xf4\xaf\x90\xff\x23\xc3\xa0\x56\x50\xb3\xa5\xdd\xdd\x75\x52\x5f\xaf\xb7\x5d\xe3\x18\x26\xc4\x63\x3d\x88\x98\xbb\x35\xdb\xa8\xf1\xe5\xb5\xdb\xea\xdb\x2b\xd7\xf0\xee\xf9\x0e\xd6\xf2\xce\x2e\xa9\x35\xdd\x33\xc5\xff\x48\x37\xf6\xa6\x64\xbf\x69\x4f\xfa\x37\x67\xdd\x8c\xf3\xe9\x9b\x39\x8b\x5e\x7e\xa6\x72\x44\x47\x3f\xe6\x36\x4e\x3b\x80\x47\x51\xab\xb2\x29\xe5\xfb\x15\x83\x69\x2e\xfa\x7d\x8b\x5e\xae\x3f\xa3\x50\xd3\x3c\x10\x15\x7a\x4e\x3f\xcd\x34\x1c\xba\x7d\x94\xf6\x8f\xd7\xb8\xf1\x8c\xd1\xa8\xc2\xe0\x5a\xef\x6e\xfe\x61\x5b\x57\xc2\x56\xef\xa9\x9d\x54\x46\xc6\xf9\x4b\xc5\x8a\xbb\x81\xae\x6c\x50\x16\x83\xb4\x18\x98\x42\x07\xce\x7b\xef\x80\x29\x23\xf6\x34\xcf\xcb\x47\x9a\x25\xf6\x3c\xd1\x39\xfb\x74\xdb\xe6\xaf\xd1\x07\x32\x58\xe4\x1d\x7a\x41\xb6\xbd\x1d\x1a\x51\xa1\x96\xc1\xbc\x47\x57\xa8\xbf\x21\x2f\x8e\x69\x87\xfe\x89\x1b\xd3\xa0\x6e\xab\x23\x22\xcb\x3e\xe8\x1d\x6e\x93\xec\x35\xe3\xdd\xad\xed\xc4\x3d\x03\x65\x5c\xe3\xc5\x41\x97\xfa\x9a\x52\xe5\x68\x2b\x52\x38\xf6\xb1\xbd\x66\xdb\xe7\x40\x49\xa6\x33\xec\xe1\x1f\xbe\xa4\xca\xb5\x7b\xca\x02\x03\x41\x6e\xde\x8c\x6a\x42\x4f\xeb\x37\x74\xc4\x4f\xeb\xd1\x08\x95\xda\xd8\xd6\x9a\x41\x35\x78\x58\x86\x6b\x84\x54\x51\x65\x43\x09\x3c\x30\xc4\x3d\xa2\x5b\xfd\x1c\xd5\xf7\x7a\xbb\x20\xe3\xd3\xc5\x9b\xd2\x28\x87\x2f\x46\x23\x14\x2e\xa6\x72\xba\x98\xe1\x13\x9c\xa3\xd3\xfe\xe7\xdb\x6d\xa0\x57\xb2\x87\xc2\xd9\xbc\x57\xe3\xac\xb9\x13\xf6\xd0\x3c\x2b\x3b\x35\xcf\x34\x78\x20\x2c\x2c\xf4\x7f\x42\xf3\x6c\xfe\x1a\xd5\xb3\xff\x33\x7a\x47\xf3\x4e\xc5\xa3\xfd\x94\xbe\xe6\xbf\x56\xeb\x6b\xde\xa9\xf6\x05\x98\x91\xed\x13\x3e\xd4\xdc\x72\x30\xa0\x90\xbc\x4b\xda\xdc\x3c\x57\x9b\xb7\x8a\xb6\x78\xd2\x32\x5a\x6d\x80\x3f\x65\x45\xdc\x53\x68\x0f\x1a\x5b\x77\x99\x1e\xd3\xa6\x8b\x7c\xb5\x3a\x34\xee\xba\xa6\xe0\x5d\x7c\xe6\x0b\xa0\x4a\x7d\x9c\x74\x93\xd3\x76\xe5\xf5\x48\x85\x94\x18\x62\x51\x72\x3a\x37\xb2\x88\xd7\xc1\xb2\xbc\xe0\x04\xa2\xc7\x33\xd6\x3f\xa4\xd3\x6c\x16\xd8\xe1\x49\xa7\x29\x87\x37\x58\x36\x53\x19\xa3\x67\xba\xd9\x94\xd6\x33\x55\x97\x2c\x34\x2e\xc8\xd4\x97\x7c\xce\x2c\x40\x55\x07\x40\x61\x2c\x92\x3f\xfe\xf2\xee\xed\xfc\xe7\xcb\xbf\xce\x3f\x7d\xbe\xfa\x74\xf9\xf9\xe6\xaf\x6a\x03\x6b\xfb\x1c\xbc\xc0\x6b\xbc\xc4\xf7\xf8\x09\xdf\xe1\x5b\xfc\x80\xe7\xf8\x91\x34\x91\x9c\xf1\x25\x79\x54\x6d\x92\x67\x9c\xfe\x84\x9d\x83\xd9\x70\x18\x3f\x1a\xcc\x29\x00\x17\xd1\xb6\xe6\x1a\x70\xbd\x30\x28\x24\x95\xda\x69\x4a\x08\x48\x8b\x54\xf8\x0e\x26\x70\xad\x62\x9b\x8e\x27\x70\x4e\xaa\xe1\xd0\xf5\x1e\x2f\x48\x3d\x1c\xd6\xee\xf7\x9a\x8c\x4f\xd7\x6f\x52\x73\x78\xac\x95\x65\xd1\x92\xa4\xd3\xf5\x0c\x5a\x70\x6f\x8c\x7e\xbe\xd2\xa7\x2a\x5e\x22\xfc\x44\xc6\xa7\x4f\x6f\xee\x4d\x8e\xa7\xd1\x08\xdd\x92\xe5\xf4\x8e\xdc\x4f\x9f\x66\x33\xac\x9f\x02\x24\x15\xff\x91\xc1\xeb\x39\x8a\xef\xd0\x70\xf8\x08\x8e\x69\xa8\x0e\xab\xe2\x3b\x7c\x8b\xf0\x9c\x28\x93\x67\x12\x3f\x40\xfb\xa7\x77\x33\x34\x1c\x46\x7a\x89\x5a\x1e\xe0\x61\x38\x7c\x50\xcf\xb6\xfa\x81\x01\xe7\xb2\x53\xe6\x64\xbd\x43\x3f\x1c\x9d\x0c\x87\xf1\x2d\x79\x50\x7c\xef\x7d\xfa\x95\xea\x53\xe3\x01\x19\xb1\xe9\x2d\x9a\x34\x23\x6f\x11\xc2\x0b\x39\x1c\xed\x92\x94\xa8\xaa\xaa\xd8\x5d\x81\xe2\xe7\x2d\x7e\xc0\x32\xf1\xfc\xec\x21\xa9\xa8\x42\x5c\x92\xd3\x8d\x26\xce\x02\xfd\xd0\x1a\xba\x01\x18\x62\xcb\xcf\xcb\x66\x73\x67\xfc\x4d\x9d\xe9\xbe\x92\xdb\x49\x4f\x62\x18\x9e\x03\x05\xb8\x89\x1f\xf5\x02\x95\xf4\x68\x07\xe1\x99\xae\x66\x31\xc2\x66\x71\x5d\xaa\x99\x58\xb2\x82\x55\xab\x8b\x55\xca\x8a\x0a\xc5\x8f\x7d\x06\x73\xb2\xe8\xc8\x5c\x53\xc3\x7f\x8f\x96\x37\x28\xc1\x8e\xf7\x33\x2d\xd7\xb4\xf0\xb7\x9f\xbc\xc1\x95\xc9\x27\x03\xf5\x09\x6f\x46\xcd\xb7\xa3\x66\x3c\x42\x58\xee\xec\x2d\x2e\xe5\x31\xc5\xbc\xe7\xf7\x40\x8c\x5c\x10\x6a\x93\xfc\xa4\xf7\x48\x70\xda\xaa\x78\xd5\xe5\xe6\xcb\x35\x29\x13\x20\xd6\x8b\x3c\xad\x9c\xf9\xdd\x70\x28\x2c\x79\xa0\x9b\x4d\x4c\xc9\xe1\x18\x37\x9b\xa7\x86\xf9\x53\xca\x05\x4b\xf3\xb8\x74\x38\xa6\xc8\x69\x82\xa9\x80\x2d\x2e\xb7\xb1\xe7\xae\x4b\x94\x4a\x52\x6e\x07\xc0\x39\xa6\x32\x51\xb8\xdc\xd2\xe4\xd3\xd5\xf5\xcd\xfc\xdd\xc7\x77\x37\xc6\xda\x12\xac\x26\x24\x45\x21\x3c\xe1\x75\x91\x54\x8b\x15\xcd\xea\x9c\xe2\x85\x2d\x6a\x0e\xad\xc2\x99\x0d\x50\xb3\xab\x9b\xe9\xe1\x36\xb9\x3a\x39\xcc\x16\x5e\x11\xbf\xc6\x10\x77\xdc\x86\x47\x08\x2f\xc1\xb6\x7f\xe9\x7a\xd1\x12\xf7\x2b\xe5\x87\xe4\x02\x44\x56\xea\x59\x1a\x2f\x5f\x98\xfc\xb8\x22\xcf\xaa\x21\xed\x17\x2b\x81\x79\x9f\x8e\xa6\x70\x3a\x9a\x9c\x8c\x4f\xf9\x1b\x7a\xca\x25\x73\x3b\xe5\xbe\x8e\x26\xb7\x3a\x9a\x1a\x96\x57\x78\x16\x67\xcd\x23\x7c\xbb\xc5\x72\x9f\xf8\xdd\xda\xe2\x1e\xd2\xbf\x87\xdf\x21\xa5\x4b\x05\x88\xb5\xd8\x07\xac\x45\xb2\xd0\x6e\x4a\xad\x89\x79\x8b\x52\x9b\x70\x4f\x59\x85\xb4\x9f\x55\xfb\x3c\x14\xb5\x80\x63\x13\x56\x5d\x03\x74\xa3\x2d\x2d\x6e\xa9\xfb\xa0\x67\x59\xa7\x42\x82\x30\x34\xd7\x52\x31\x6a\x55\x65\x74\xed\xdb\x2d\xf2\x9b\x27\x17\xc7\x6f\xd8\x3e\x56\xdc\xfd\x36\x0d\xd4\xc8\x91\x9d\x4e\xdf\xda\xf0\xba\xf2\xf2\x41\x3b\xdb\x82\x1c\x23\x4b\x45\x3b\x1a\xe7\xb1\x75\xe9\xa4\xa1\x78\x25\x59\xf0\xb8\x39\x48\x62\x70\x2c\xbd\x24\x73\xb3\xb1\x33\x9d\xd0\xe3\xb0\xfd\xfc\xad\x35\xda\xcc\x17\xac\xcf\x56\x27\xe4\x84\x6f\x36\xb1\x9e\xa2\x9c\x0a\xea\xf5\x1b\xb7\x7b\x25\xd3\xc3\xb2\xbd\x65\x45\xd6\x0d\xfd\x1d\x78\xa2\xe4\x89\x3e\xca\x37\x9b\x58\x10\xfb\x2b\x59\xf2\xf2\x3e\x16\x92\x4c\x26\xa2\x8c\x29\x1c\xbf\x85\x45\x29\xc4\x42\x56\xd1\x45\x5d\xd4\x24\x75\x00\xba\xe8\xfb\x85\xca\x71\xf9\x4d\xd0\xa2\x62\x65\x71\x16\x4d\xa2\x51\x77\x54\x8c\x26\x51\x64\xde\xe2\xdf\x44\x23\xa8\x79\x2a\x92\x8f\xe7\x1f\x2e\x25\x1f\x37\x33\xf0\x17\x8d\x15\xa9\x79\x30\x6d\x26\xb1\x70\xee\x1b\x6d\x15\x31\x42\x23\x59\x6f\x68\xcc\x0c\xb9\x47\x74\x14\xfd\x10\x6d\x71\x85\x50\x8b\x1c\x2a\xf4\x57\xcf\x1f\x24\x59\xe2\x65\x32\x57\x37\x89\xb9\xe2\x81\x80\xfc\xdf\x93\xb8\x26\xcf\x17\xf2\xb8\x52\x4e\xb3\x78\xf2\xf9\xf2\xdf\x7f\x79\xf7\xf9\xf2\x2d\x0e\x8b\xf4\x63\x58\x05\x39\x26\x87\x63\xcc\x34\x7e\xda\x44\x9e\xac\xb5\xdf\x67\x45\x5e\x64\x90\x61\x67\x4d\x90\x7e\xc4\x6b\xcf\x45\x1a\x3b\x1b\x6a\x77\xad\x73\xad\x6b\x99\x68\xc8\x61\x73\xd1\x72\x91\xed\x3e\x16\x20\x43\x83\x2d\xc0\x7e\x0d\xed\x81\xa3\xad\x42\xbb\xd2\xac\xcd\xb5\xb3\x91\xd6\xe7\x98\xa8\xc7\x1b\x10\x4d\xc7\xdd\x94\x84\x67\x3c\x2e\x88\xe7\x61\xae\x61\x05\x1f\x26\x45\xb8\xf0\x97\x0e\xa1\x58\x5f\xf3\x0b\xca\x53\x41\xff\x58\xb3\x0c\xc5\x06\x25\x44\xdd\x10\x0a\xe3\xe0\xaf\x08\x3b\xaf\xfb\xa0\x2e\xee\xba\xb6\xd6\x2c\xfd\x96\xe7\xa7\xf0\x2e\x49\x46\x80\xe0\x73\x66\xb1\x40\x18\xfc\x08\x2b\x19\x84\xe6\x2d\xba\x34\x02\x0c\x29\x54\xbc\x62\x8c\xec\x8c\x74\x4c\x79\x93\x8d\x75\x25\xc3\x58\x74\x14\x1f\x14\xe6\x06\xcc\x2f\x68\xd1\xe0\x90\xf1\xe1\x89\x2b\x5d\xdd\x4e\x9a\xfe\x51\x3a\x38\x79\x63\xa8\x76\x78\x02\x43\x7c\x4a\x4f\x95\xf0\x37\x74\xc5\x78\x38\x3e\xa0\xc4\x5f\x4e\x5b\x93\xcb\x55\xf6\x4e\x13\xce\x4e\xb7\x30\x3e\x59\x35\x6d\x94\x4b\xe3\xa7\x92\x1b\x4e\xa3\xc7\xe9\x8a\x61\x64\xa7\xd4\x9b\xc4\xb9\xcc\xbb\xd9\x48\x5e\xa7\x4e\xe6\xe6\x39\xc1\xe3\x34\xfa\x61\x61\x94\x7f\x9e\x55\x5a\x29\x77\xa6\x17\xad\xbc\x28\x36\x6e\x48\xfd\xea\xb1\x30\xd7\xf2\xc2\xf7\x04\x0d\x5a\x8a\x14\x99\x2b\x9e\x20\x74\xca\x3a\xef\x77\xc0\x93\xfb\x47\xf9\x70\xa8\x01\x20\x9e\x25\x6b\x35\x61\x58\x76\x69\xa2\xbb\xb6\xf5\x7c\x82\x04\x9a\xd4\x75\x42\xd3\xc5\xaa\xd1\xe8\xa7\x1e\xef\x1c\x56\x8e\xf0\xbc\xed\x00\xc6\xec\x18\xb6\xc8\x47\x8b\x48\x7d\xcf\xd3\x8c\xa4\xd3\x62\x66\xe1\x2f\xd5\x01\x82\x99\x62\x0b\x59\xa2\xa6\xa3\x44\x5b\x5c\x77\xb8\xf5\xb9\x47\x07\x4f\xdd\x07\x84\x47\x69\x9f\xf0\x93\x5e\xf3\x4b\xe4\x69\x65\x2e\x77\xc8\x7a\xf2\xf4\xef\x4f\xf3\xbc\x4c\x3b\x41\x25\x7c\x5d\xc1\x17\x34\x68\xa0\x0c\x9a\x39\xf8\x80\xb2\x78\x5f\xa6\x4d\x0e\x41\xbd\x1d\x15\xb0\x0e\xc1\x11\x39\xb8\x9a\x9c\xce\x30\xa8\xe0\x6b\xe4\x2f\xcc\x86\x43\x11\x33\xb4\xc5\x54\xde\x70\x64\x31\x7f\x2a\xcb\xaf\x81\x2a\x30\x43\xcf\x00\xe0\xcf\x8c\xf3\x36\x22\x12\xaf\xb5\xc9\x23\x2b\xb2\xf2\xf1\x20\xed\x74\xaa\x7d\x51\x57\xa2\xbc\x87\x8b\xad\xbc\x92\x82\xd3\x0a\x2f\x2c\xa6\xf8\x39\xa3\x22\x65\xf9\x84\x61\x58\x58\x74\x8b\x70\x9a\x64\xac\x5a\xa7\x62\xb1\x52\x89\x4a\x84\xa0\xd5\xc3\x21\xb4\x7d\x87\x4d\x20\x8d\x01\xbc\xd0\x58\xb0\x26\x97\x1f\xff\x9c\x28\x27\x4e\xef\xaf\xce\xdf\xce\xff\x74\x75\xf5\xf3\xb5\xdc\x87\xb8\x20\xcf\x5b\x6f\x28\x3b\x9d\x57\xb6\x34\x9b\x5e\x29\xa0\xeb\x52\xff\xec\xd6\x42\x7a\xad\x0b\x4b\xf7\x38\x08\xb8\x86\x6a\xe1\x1f\x2c\xa7\x34\xf9\xaf\x92\x15\x71\x94\x44\x68\x46\x78\xe8\x47\x83\x23\xb6\x8c\xef\xd5\x86\xe0\x92\x29\x02\xcf\x25\x7c\x5a\xcd\x30\x9d\xa6\x33\x02\x72\x2f\xe6\x18\x41\x40\x63\x3e\x64\x3e\xc7\x82\x82\x5f\xc4\xab\x4d\x79\xd8\x93\x25\xca\x32\x58\xf5\xd1\x8c\x99\x7a\x2a\x9a\x86\xec\x19\x43\x33\xb4\x28\x0b\xc1\x8a\x9a\x1e\x74\x44\xc2\xf5\x5f\xae\x3c\x5c\xa0\xad\xe9\x1e\x49\x03\xcf\x94\x6e\xca\x7f\x20\xff\xed\x5f\x87\x43\xfa\x86\xfc\x8f\x71\xb7\x83\xf1\x03\xc1\x9f\xcc\xbd\x87\x13\xb0\xc0\x1c\x0e\xb9\xdf\xca\xe1\x90\x6f\xc1\x0e\x40\x96\xbb\xdd\x06\x9a\x57\xf2\x3e\xb2\x4a\x3e\x7d\xbe\xba\xb8\xbc\xbe\xbe\x7c\xeb\x0c\x19\x19\x2e\x49\xd1\xd4\x6d\xac\x03\xd9\x5c\x89\x34\x23\x30\x3e\xa5\x6f\x8c\x88\xef\x94\x8e\x46\x28\x8d\x63\x4e\xea\x29\x9d\xa1\x64\xb1\x4a\xf9\x45\x99\x29\xfb\x71\x04\xae\x12\xab\xb8\xc4\x5c\x7d\x07\x23\xce\xd1\x36\xc0\xa4\x36\x4a\xfa\xfe\x51\x27\x2f\x50\x1c\x59\x73\x1b\x2f\xfb\x59\xf0\x6b\x92\xc7\xbe\x47\xf6\x45\xf0\x7a\xe0\x27\xb4\x8c\xa6\xf6\x3f\x13\xb4\xa8\x79\x08\x72\xcf\xa3\xe3\xe1\x1a\x46\x2f\x8b\x41\xe9\x23\x58\x48\xa6\x79\x07\x9c\xc4\x9c\xc8\x9e\xa0\xb3\x28\xae\xea\x5b\xe8\xc2\xa0\x5c\x0e\xa2\x11\x1f\x45\x28\x9a\x70\x23\xea\xe2\x9b\x4d\x14\x6b\x17\xd0\x03\x90\x79\xa3\x48\xeb\x85\x22\xdf\xaf\x9f\xe3\xc2\xe4\x99\xe2\x4f\x9d\x39\x54\x56\x69\xf5\x4b\xb1\xe6\xe5\x82\x56\x15\xcd\x80\x9c\xc3\x29\xaa\x96\x6f\x5c\xc7\x08\x7b\xb9\xc8\xe1\x18\x61\xb6\xd9\xa4\xca\x86\x9c\x92\x15\xf4\xe3\xfa\xd3\xf9\xc5\xe5\xb5\x7f\xcc\x82\xc9\xaa\x7f\x08\x95\xf1\x14\x4e\xd8\x62\x86\xbc\xfb\xca\x0c\x0b\xfc\xbc\x85\x87\x3f\xae\x9e\x9f\xba\x1a\xb3\xdd\xc2\xf5\x91\xa6\x7c\xb1\x7a\xcb\xaa\xf4\x36\xa7\x59\x17\xdf\xb5\xd5\xf7\xc6\x9e\x84\x14\x3d\xaf\xc9\xe1\x21\xdd\x6a\xff\x93\x87\x27\x78\x45\x58\x53\x59\xf0\xd9\xdb\x0a\x70\x67\x69\x88\x68\xfc\x1e\xeb\x93\x03\x6e\x8e\xc1\x28\x9d\x6c\xb1\xe9\x64\xa7\xce\x49\x70\x98\x4b\x9a\x6a\xf1\xeb\xbc\xf0\xfb\x52\x5e\xa7\x3f\x71\xba\x64\xdf\x3c\xdd\x89\xcd\x06\x66\xa5\xb9\xfa\xd0\x16\xce\x0c\x38\x95\x43\xd3\xd8\x32\x9e\x06\x37\x51\x18\x76\x50\x5b\xd9\x82\x1d\x62\xeb\x71\x47\x35\xb3\x31\xb5\x8d\x22\x0e\xe4\x11\xd6\xdc\xf1\x53\x31\xb3\x78\xc1\xca\x43\xb2\x5f\xc8\xfc\xc7\xbf\xce\xdf\xbd\x95\x14\x47\xce\xd3\x3a\x67\x0b\x1a\x7b\x30\x9c\x30\x8a\x27\xf6\x3d\x6a\x07\xaa\xcf\x16\x1d\xac\x7c\x1e\x3c\x7e\x76\x95\x4c\xa6\x16\xa5\x65\x86\x9b\x75\x4f\x9e\x95\x69\x94\x4d\xb2\xc5\x76\xd2\xb4\x39\x9b\x5c\x7a\xe7\x79\x3e\xc9\xf0\xed\x53\xc3\x69\x89\x5b\x68\x9b\x8d\xdc\xc7\xcb\x29\x9d\xc9\xb6\x80\xbb\x44\xd2\xee\x29\xbe\x27\xcf\x5b\xb9\xc1\xae\x9c\xe0\xfc\xa0\x5f\xec\x0a\x3e\x1a\x0d\xeb\xb4\xda\x79\x06\x7b\x70\xff\x2f\x2a\x00\xef\x3a\x78\x5f\x83\x16\xb4\x33\x91\x6f\x7c\xff\x92\x4f\x8b\xd7\xb9\xae\x68\x1b\x6d\xae\x9f\x76\xa8\x0d\xe3\x1a\xe7\x2d\x1e\xf1\x23\x0c\x98\xf2\x7b\x49\x93\x73\x5f\xa2\xbd\xc0\x59\xd3\x78\xc8\x69\x0b\xdb\x67\x7f\xc9\x84\x19\x0d\xe2\x6e\xe3\xff\x0e\x08\x42\xd8\xa0\x74\x36\xf1\xd6\x73\xac\xac\x62\x7b\x75\xb3\x06\x3a\x4f\x87\x86\x12\x1c\xb2\x06\x5f\x98\x79\xfa\x53\x2c\x50\x1a\xb4\x12\xcd\xa2\xe7\x41\xda\xb3\xc4\x2e\x11\x1e\x13\x42\xca\x33\xf5\xc8\xa3\x37\x24\xe6\xfa\x21\x4a\x37\xc1\xcb\xa0\xdc\xfc\x16\xdd\xcf\xd2\x61\xc1\x46\x0f\x20\x78\x35\xea\x84\x8b\xef\x71\xea\x2b\x8c\x51\x88\x55\x61\xd1\x63\x43\x04\x18\x39\x6a\xb2\x31\x51\xf0\x3f\x6e\x37\xe9\x70\xec\xf9\x3f\x6c\xa5\xf1\xe2\xf0\x22\xf0\x67\xe2\x71\x52\x6a\x54\xba\x9d\x85\xc6\x63\x9c\x3b\xb8\x42\x0a\x0e\xbc\x91\x7e\x2b\x83\x51\x04\x23\xcb\x35\x99\x9a\xa9\x99\x1d\x64\x8a\x09\x42\x9d\x0c\x7b\xa3\x81\xc0\xdd\xaf\x8d\xf7\x0d\x40\x16\xf3\x97\x70\x46\xe2\x05\xc9\x50\xa2\x31\x98\x35\x91\x5c\xe0\xb5\x22\x45\x2b\x3b\xa4\x8a\xe3\xff\x5f\x37\x97\x1f\xdf\xce\x3f\x7d\xbe\xba\xb9\xba\xf9\xeb\xa7\xcb\xeb\x04\x4a\x39\x8b\x8d\x6d\x47\xa3\x72\x59\xdb\x39\x59\x75\x4a\x02\xe4\x95\x69\x8b\x26\xbb\x12\xc4\x94\x4c\x67\xc8\x01\x64\x39\x8d\x99\x33\x3a\xb1\xe6\x24\x68\x8b\x9d\xc9\xc3\x39\x59\xa9\x3a\x9b\xfd\xf4\xe8\x61\xb6\x83\x1e\xfe\x63\x1a\x03\x5d\xba\x07\x7b\x13\xb9\x7e\xcd\x81\x36\xf0\x1d\x4f\xef\xe9\x63\xc9\xbf\x6a\xb3\x30\x8f\x08\x95\x38\x6d\xbc\x79\x5d\xfd\xf9\xf2\xf3\xe7\x77\x6f\x2f\xe7\x17\x57\x1f\x6f\xce\xdf\x7d\xbc\xfc\x2c\xcf\xf8\x08\x29\x30\xcd\xae\x84\x57\x7f\xf9\x78\xf9\x39\x42\xb8\xde\x65\xfe\x10\x97\xe4\x79\x0e\x6d\xbe\x30\x0e\xa5\x7e\xa6\x4f\x1d\xe6\x71\x3b\xcd\xe1\x98\x3a\xac\xa7\xe9\xcc\xd7\x1e\x9a\xa6\xb3\x83\xfe\x97\x0c\x23\xbd\xb6\x5c\xcc\x70\x48\x93\x65\x9d\xe7\xf2\x8c\xdd\x4a\x3e\xa4\x9c\x8a\x04\x3a\x31\xeb\x78\xb7\xd9\xab\x3d\x55\xd8\x9e\xea\xd5\xed\x01\x31\x47\xb7\x4d\xdf\xb4\x9a\x29\x43\xbe\x12\xa1\x83\xfa\xe5\xf7\x47\xfb\xf6\xd8\x9e\xf8\xda\x5b\xd6\xf5\x8b\xcb\xba\xdf\xce\xe7\x55\x36\x3c\x47\xaa\x98\x57\x40\xde\x34\x16\x91\x65\x99\x76\x29\xf0\x80\x6b\xc2\x6e\xd9\xc0\x7e\xad\xd5\x8a\x39\xbb\x9b\xa9\x6f\x0b\x70\x5a\x5b\x9f\x75\x7f\xa2\xf9\x1a\xd4\xf2\x4d\x1b\x90\xc6\x4c\x6b\x9b\x56\x1d\x14\x21\xf3\x28\xaf\x16\x90\x47\xbf\xe0\x2b\x43\x7a\xcf\x9e\x68\x57\x8f\x95\x31\xe0\x2b\x11\x28\xba\x8d\xb1\x7a\x4c\xb4\x1a\x16\x73\xaf\x87\x5e\x34\x47\x2d\x2e\x89\x80\xab\x28\xa0\xed\x5a\xc5\xc5\x12\x6d\x36\x2d\x3d\xa4\xef\x90\xc2\xf5\x2d\xe8\xa3\xd2\x9c\x8d\x9b\x49\x8e\x4e\xe4\x4d\xf6\xe4\x94\xbf\x69\xc6\x80\x14\xbf\x9c\xf2\x10\xf7\x94\xab\xed\x98\x12\xef\xb1\xc6\xe8\xf1\x1d\xff\xf3\xff\x8c\xa7\xe3\xa3\xff\x31\x1b\xa1\xb3\xe3\x3b\xdc\xfd\xba\x47\xc4\x19\x20\xab\xbc\x2b\x44\x2c\xf0\xc9\x18\x1d\x9d\x4c\xd2\xd1\x08\xeb\x37\xd8\x98\x92\x52\xde\x2d\xce\x22\x05\xfc\x1b\x4d\x2c\xff\x40\xcf\xa2\x48\xe1\x5e\xb0\xa2\x5a\xd3\x85\x3c\xb3\xd1\xb6\xdb\x43\x56\x1a\x42\x27\x79\xb7\x0e\x4f\x10\xe2\xb5\xab\x39\x9a\xa2\x7b\x34\x01\x12\xba\xc9\x87\x28\x15\x44\x10\x42\xb9\x97\x80\x13\x50\x3d\x01\xb7\x5f\x4a\x3f\x1e\x6d\x36\x14\xab\x79\x6c\xc8\x3b\xdc\x13\xf0\x3a\x67\x22\x3e\xfe\x52\x8d\x8e\x03\x29\x86\x4b\xf3\x41\x16\x26\x7b\xed\x09\x07\x5c\xec\x5d\x2b\x76\xed\xc5\xce\x5b\xb1\x2b\x2f\xf6\xaa\x15\xbb\xf4\x62\x3f\xb5\x62\xef\xbd\xd8\x0b\x13\x2b\x47\x61\xcd\x44\x9a\xb3\xbf\x53\x42\x93\xba\xc8\x28\xaf\xe4\x91\x4c\x68\x02\x52\x10\xb6\x7c\x02\x9f\x25\xf7\x54\x27\xc9\xd2\x6a\x45\xb9\xfe\xa6\x5e\xc4\x23\xa1\x49\x5e\x2e\x08\x4d\x96\xf7\xc1\x29\xfb\x44\x8e\xa7\x83\xf9\xec\xf8\x0e\xdf\xc1\xb2\x16\x09\xbc\x22\xc4\x27\xf4\x0f\xb8\x83\x97\x91\xa3\x67\x17\xe8\x13\x8e\x8e\x00\x33\xfe\x96\x1c\xc7\x5f\x8e\x36\x5f\xe6\x9b\x2f\xc9\xe6\x4b\x85\x46\x71\x02\x4b\xf6\x81\x1c\xc7\xff\xb1\xf9\x72\x8c\xe2\xe9\xf9\xd1\xff\x9e\xa1\xe3\x3b\x3c\xdf\xa7\x16\xb7\x07\x6e\x5b\x34\xcf\xc8\x7a\xce\x78\x22\xca\x5f\xd6\x6b\xca\x2f\xd2\x8a\xc2\xf3\xf1\xd6\x35\xed\xa1\xbb\x58\x51\xbe\x2f\x1f\x4d\x0e\xd0\xba\x7c\x24\xc7\xff\x21\xdb\x3e\xd7\x8d\xc6\x97\xe4\x38\x4e\x50\x67\x77\xbe\xe9\xee\x6c\xbe\x24\x28\x9e\xa6\x47\x7f\x87\x1e\x5d\xed\xec\x91\x76\x96\xd2\xe7\x94\x9a\x9f\x45\xf3\x68\xd4\xd1\x15\x5c\xf4\x63\x44\x88\x51\x5c\x9c\x15\xad\x3c\x68\x8b\x19\x31\xcb\x3e\x3a\xd6\x4f\x1f\x82\x8c\x4f\xc5\x1b\x66\xa8\x90\x18\x8d\x10\x9b\x8a\x19\x91\x7f\xec\x70\x3d\x62\xee\xc6\xee\x12\x3b\xc4\x42\xa6\x05\xb8\xc7\x9e\x85\xe5\xb7\xbe\xb1\xf5\x9a\x03\x63\x7b\x4e\x8e\x61\x98\xbe\x64\x33\xbd\x02\x46\x72\xc0\xae\xc9\xb1\x1c\xdd\x6a\x74\x7c\x87\x3f\xbd\x6e\x39\x9c\xe3\xe8\x77\x27\xf3\xdf\x7d\xe7\xb5\xe6\x1a\x47\xf3\x08\x35\x67\x16\x7f\x75\x4b\x4f\xb6\xa0\x1e\x8f\x2f\xc6\x47\x5f\xea\xf1\x77\xdf\xff\x04\xb3\x76\xf1\xba\x8a\xbf\xee\xdb\xe7\xcf\xad\x3e\xcb\xda\x3e\xbc\xae\xb6\xcf\xae\x9b\x8d\x7e\x79\xcc\xc8\xf3\xf2\x5e\x4c\x2a\x9c\x97\x8b\x49\x8d\x1f\x27\x39\x76\x1b\x7e\xb2\xc0\x96\x12\x4c\x32\x6c\x83\xd7\xd8\x90\x8d\xc9\x0a\x3b\x72\x32\x59\x62\x47\x68\x26\xf7\x92\x3d\x93\x54\xa2\xc2\x8a\x66\x48\xd6\xec\x91\xe4\x38\x20\x29\x20\x96\xb1\xd4\x26\xc3\x1e\x19\x5a\x63\x8f\x3c\xc9\xeb\x8b\x47\xb8\x96\x38\x20\x6a\xf7\xb2\x47\x4d\x26\x42\x9f\xf8\x2f\xc2\x55\x76\xcb\x5e\x76\x3f\x9b\xec\xc4\xd2\x61\xcb\xd8\xa8\x2e\x21\x2b\xc0\xc8\xf3\x48\xb2\x07\xee\xd8\x34\x51\xb2\x57\x4b\x56\xd0\x2c\xd2\xa6\xf2\x6c\x5a\xaa\x63\x8b\xa2\x99\x53\x7d\x32\x3a\x2d\xde\xc3\x17\x11\x67\xbc\xcb\x76\x22\x16\x24\x82\x81\x8b\xd0\xc4\x3d\xb7\x82\xe7\x84\xe0\xb9\x19\x6c\x28\xce\x04\x89\xa8\xfc\x88\x26\x34\x54\xf1\xd1\x25\xcb\x04\x26\xbc\x91\xe6\x6d\x2a\xa8\xaa\x2e\x4b\x05\x8d\x10\xc2\x02\x84\xc9\xea\x86\xd9\xb4\xf3\x00\x9d\xad\x8a\x8a\x77\x85\x90\x37\xbd\xdc\xbd\xaf\xb3\x65\xdc\x02\x1a\xb6\xcf\xeb\xf2\x02\xd2\xee\xa5\x8b\x57\x82\x0e\x59\x0b\x98\x10\xa9\xd9\x24\x84\xf0\x30\x09\x73\xaf\x57\x3d\x42\x25\x36\x1c\x32\x42\x98\xff\x44\x4d\x00\x07\x47\xc6\x5f\x2d\x49\xa1\xcb\x79\x8e\xa6\x1a\x75\xfc\xc7\xb2\xcc\x69\x5a\xcc\xa2\x49\x74\xab\x3e\x23\x6c\x23\x3f\x42\xf1\x32\x4e\x57\xe4\xa2\xd4\xf5\x46\x46\x19\x0e\xd7\x46\xfd\xa4\x07\x4d\x46\xda\xa9\x76\xd1\x30\x3c\x32\xce\x2c\x5a\x13\x21\xa7\x42\x86\xc3\x44\xb8\xe0\xcf\xf4\xee\xf2\xdb\x5a\x46\x70\x7a\x47\xbf\xad\xbd\x28\x75\x61\x92\x51\xf6\xba\x60\x1b\xc1\x72\x80\xc1\x87\x46\xb0\x9c\xe6\xac\x92\xb7\xad\xd2\xbc\x38\xb5\xc5\xab\x3e\x13\xdf\xda\x77\x3b\xb0\x27\xec\xc6\x11\x4e\xb7\xe1\x79\x7b\x20\xc0\x8d\xbb\x7d\x55\xe4\xa0\x3b\x8d\xd8\x32\xe6\x3e\x82\x30\xb7\xbc\xae\x63\x80\xb8\x65\x36\x47\xa3\xd5\x36\xdc\x97\xda\x65\xc4\xaf\x74\x1b\xad\x7a\x17\xa1\x11\x77\x1a\xbf\x36\x1b\x1d\x0e\xb5\xa6\x83\xdc\x10\x66\xf7\x4f\x9f\x66\x67\xf2\x0f\x11\x93\xf8\x2e\x79\x48\xf3\x9a\x12\x01\xaa\x46\x1d\x1a\xa7\x67\x3d\xe1\xf1\x2d\x9a\x74\x2b\xa0\x52\xfc\x84\xef\x10\xec\x3a\xdb\x51\x1f\x33\x4f\xc4\xd1\x7c\x1e\x8d\xe8\x28\x7e\x1a\x7d\x48\xc5\x2a\x59\xe6\x65\xc9\x63\xf8\xe4\x69\x91\x95\xf7\x31\xfa\x17\x79\xa0\xc8\xc5\x83\xd0\x48\xa6\xf6\x78\xc9\xd2\xe3\x3b\xd4\x3d\x48\x33\x02\x27\xa7\xa2\x7d\x2d\x11\xca\x78\xc0\xf3\xe1\x20\xef\x0b\x4a\x69\xc2\x7f\xa8\xe4\x08\x33\x32\x3e\x65\x6f\x0a\x93\x93\x8d\x46\x88\x4e\x4b\x52\x4c\xd9\x6c\x46\xf8\xb4\x9c\x75\xcc\x6b\x1a\xa3\xe7\xe0\xcd\xb5\xed\xd2\x57\x8e\xdf\x2a\xad\xae\xeb\x35\xe5\x92\xd4\x79\x3f\xc9\x37\x49\x32\xb0\x1f\xd4\xba\x71\x04\x4b\xc8\xc3\xa5\x56\xc2\xe5\x03\xef\x9b\x08\x7d\xfb\xed\x31\x1e\x0d\x6d\xb8\x54\x16\x8e\x0b\xfb\xbc\x98\x3c\xf2\x74\xbd\xa6\x99\xd9\xeb\x84\x62\x9e\xcc\xe7\xb0\xbe\xe6\xda\x06\xbe\x9a\xcf\xa1\x43\xcd\xc0\x8e\x94\x3f\x02\x84\x40\x67\x7a\x13\xe5\xe5\xca\x01\xef\x33\x2c\xde\x86\x61\xde\x70\x44\xec\x5c\x09\xf2\xe1\xd0\x38\xd5\x83\x6b\x2e\xdf\x6c\x0e\x0b\xab\x27\x3b\x15\xb3\x18\x1d\x54\x8f\x4c\x2c\x56\x71\x81\x9e\x17\x69\x45\x07\x27\x13\x3f\x9a\x4f\xc7\x33\x74\x00\x11\xdf\xb5\x22\x30\x9f\x9e\x98\xd8\x3f\x74\xc7\x62\x3e\xfd\xce\x24\xf9\x7e\x47\x12\xcc\xa7\x7f\x30\xe9\xfe\xf5\xa5\x74\x98\x4f\xbf\x9f\xa1\x03\x7d\xbc\xf8\xa9\xad\xf1\x5a\xf0\x12\xbe\x08\x6e\xcd\x6e\xcb\xfb\x84\xa0\x43\x37\x45\x16\xd8\x7d\x39\x74\x3a\xce\x6e\x1d\x37\x2e\x8a\x76\x0b\xc2\xf9\xd6\x04\x48\xb2\xd4\x90\x76\x1e\xa3\xda\x5f\x23\x75\xd0\xc7\x51\xa4\x5f\x90\x95\x67\xc6\x02\xac\xa2\xf8\x88\x44\x38\x42\x38\x8b\xe1\x11\x79\xb3\x91\x21\x6b\xf5\xc3\x03\x85\x0b\xfa\xdd\xd3\x55\x7b\x26\x9c\x51\xef\x45\x73\xf2\xc9\xf0\x34\x5b\x25\x46\x1f\xe3\x25\x99\xce\xe0\x15\x0f\x3f\x11\x20\x55\x8a\xc0\x8e\x06\x23\x4b\x93\xf0\x1d\x79\x7e\xe4\x4c\x18\x20\xb1\xdd\xc0\x62\x40\x60\x01\x7c\x66\x8b\x6f\x89\xd2\x1e\x7b\xc2\x4e\xd4\x39\x69\x01\x93\xf9\x65\xf7\x96\xb5\xc5\x0f\x84\xc5\x91\x91\x01\xcf\x0d\x39\x53\x06\x42\x9b\x4d\x29\x2f\x7f\x5f\x92\x58\xed\xf4\x8d\xec\xe6\x17\x20\x09\x1b\x58\x42\xea\x1b\xc9\x1b\xa1\xd9\xf0\x5d\x66\x21\xdf\xc8\xa5\x1a\xa1\x6e\x8d\xca\x2d\xb2\x6f\xb9\x91\x17\x1c\xa1\x1f\x8e\x4e\xce\x3a\x2e\x01\x8f\x89\xa0\x95\x88\x2f\xcd\xa8\xfb\xfe\xc0\xad\x2f\xd6\xf1\xf6\x20\xf5\xa9\xe4\xe1\x09\x10\xb6\xab\xfe\x73\x1e\x9f\x93\x60\x89\xe1\x6b\x39\x34\xe6\x99\x3c\x42\xf8\xd3\x8e\xbc\x5f\x49\x28\x57\x3e\x8c\x3b\xd6\xcf\x5f\x68\xfa\xf5\x43\xba\x46\x8e\x3b\x54\x72\x66\xb9\x26\x74\x9c\x61\xe0\x0c\xbb\xa2\x83\x67\x92\x61\xeb\xad\xdd\x2e\xbf\x18\xe1\x8b\x2e\x55\x73\xb0\x5e\x3f\xa0\x5a\xfa\x4f\x98\xc2\xb5\xba\x7a\x2c\x28\xef\x7c\x8d\x99\x3e\xcc\xb4\x4a\x44\x33\x8d\xa4\x10\x32\x9a\x00\x38\x16\xac\x1b\xf2\x80\xa9\x5e\x30\x64\x6e\x3f\x3f\x95\xf9\xd3\x92\xe5\x39\x29\xe5\x2d\x88\x41\xf6\x94\x77\xe9\x7b\x86\x5a\xc7\xce\x25\xba\x48\xe6\x32\x9f\xd2\xe6\xd6\x5a\x01\x3a\x0c\x43\xed\x75\xcd\x32\xc2\x31\xb5\x9a\xdf\xe4\xc9\xfc\x78\x7b\x79\x7d\x41\xee\xbc\x28\x6b\xe3\x48\x6e\xa1\xf3\x4e\x6b\x19\xb4\x93\xb5\xde\x54\x93\xaf\x6f\xdf\x68\x62\x7b\xa5\x41\x70\xe7\x69\x5e\x86\xb4\x08\x51\x5f\x77\x0c\xdd\x90\x29\x63\xff\xba\xb2\xd9\x84\x97\x1d\x34\x1c\x4a\x66\xca\x9d\x39\x4f\x33\xcd\x91\x6b\x39\x94\x3e\x7e\x84\x3a\x7e\x0c\xdb\xad\x89\x7a\xcc\xc8\x72\x4a\x81\xb4\xa9\x2f\x12\x15\x75\x34\xa2\x08\x33\x38\x2b\x0c\x61\x75\xc9\xef\x6d\xf2\x7b\x48\x5e\x89\x48\xf2\x7e\x36\x83\x61\xf9\xed\xa9\x71\x16\xc5\x82\xd7\x14\x45\x93\x28\x5e\xa6\x79\x45\x51\xd4\x3a\x59\xec\x12\x3d\x8b\x62\xf5\x81\xa2\x89\x0c\x55\xef\x86\x91\xa2\xe0\x28\x9a\xc8\xe1\xdd\xca\x19\x64\xf2\xba\x54\x00\xdf\xb8\x58\xd1\xc5\xd7\x3f\x59\x9e\x06\xd3\xe4\xf3\xd5\xd5\x0d\x49\xe5\xc5\x9a\xa7\xeb\x6e\xc3\x0d\xc9\x2b\x9d\x1d\x8a\x26\xd3\x31\x1c\x56\xb1\x40\x67\x92\xf9\xa9\xc1\x73\x1c\x9a\x28\x46\x68\x42\x55\xad\x20\xcb\x6d\x4e\xf6\xaf\xbb\xd7\xf6\xdf\xef\xa2\xa9\xe4\x4f\xa3\x59\xd7\x62\x70\x46\x3f\xf2\xea\x1a\xa9\x7d\x09\xbf\x4c\xe6\x68\xa4\x12\xee\x3a\x85\x86\x43\xf7\x7d\x48\xc8\x15\xf2\x84\x2e\x56\xdd\xc6\x7f\x2c\xef\x54\x63\x66\xcb\x98\x36\x94\x4d\x62\x86\x94\xea\xb8\x29\x47\x2e\x52\xd0\xfa\x63\x33\xe4\x94\x0e\x3b\x1a\xa7\x5e\xdc\x23\x47\x0c\x07\xcf\x83\x24\x49\x06\xdb\x08\x61\xee\x1f\xaa\x56\x17\xdd\x59\xa1\x9c\x69\xdd\x68\x36\x8a\x26\x83\x68\x74\xa5\xb5\x2c\x11\x9a\x84\x11\xdc\x18\x6e\x46\xcf\xd1\xa8\xd0\xd2\x37\x3c\x88\xd0\x28\xda\xc2\xc3\x99\xd2\x29\x72\x5a\xd7\x8d\xc5\x63\xaf\x5e\xb8\x20\xf4\xb4\x50\xba\xef\xdc\xd0\x21\x45\x18\xcd\x48\xb8\x42\xe2\x02\x0b\xe4\xae\x67\x85\x97\xde\xea\xfd\x5f\x2d\xe3\x02\xf9\x9c\xc4\x16\x64\x39\xc5\x3b\xf0\x35\x0d\x02\x21\xc1\x9f\xf4\xaf\xa6\xd4\x85\x2d\x63\xc5\x82\x59\x0f\x86\x3a\x46\x16\x62\x8d\x7b\xbb\xe8\x75\x17\xa3\x75\x36\x9d\x4d\xce\xd5\xe3\x39\xe8\x85\x68\x7e\xfe\x5a\x70\x10\x53\x99\x63\x8d\x5c\x63\x4f\x91\x68\x8d\x69\xf2\xa7\xf3\xeb\xf9\xc7\xf3\x9b\x77\x7f\xbe\x9c\xff\xe5\xf2\xfc\xe7\x0f\xe7\x9f\xc8\xd7\x30\xf8\xd3\xe7\xab\xff\xf5\x57\x72\xe1\xdf\x8b\x1f\x18\x7d\xac\x00\x0e\x3d\x15\xc7\xa9\x10\xbc\x53\x38\xa5\x6e\xcf\x2f\xe8\x65\x7f\xf8\xe5\xe6\xfc\xc7\xf7\x97\xf3\x8b\xcb\xf7\xef\x9d\x72\x76\x10\x1a\xbe\x64\xfb\x51\x11\xea\x6d\xd5\x32\xcd\xf3\xdb\x74\xf1\x15\x42\x8f\xba\x70\x24\x5f\xd5\x4c\x23\x62\x84\xb6\xb8\xf3\x0d\xa9\x03\xa0\xbb\x15\x65\x41\x0b\x31\x57\xab\xb3\xab\xe2\x4e\xcd\xa6\xd7\x78\x96\xd1\x4b\xd2\x28\x24\xda\x3a\x43\xf4\xfd\x40\xba\x2e\xcc\x83\xf6\x4f\x25\x8f\x23\x9b\x63\x12\x8d\x94\x8b\x83\x3c\x7d\x2a\xeb\xdd\x05\xa8\x0e\xc5\x91\xa0\xf7\xeb\x3c\x15\x74\x62\x4b\xa9\x8e\x75\x31\xdb\x8e\x11\x01\x9e\xaf\x6b\x18\x54\xb4\x16\x52\xfe\xd7\xdf\x6a\xca\x9f\xba\xe3\xc2\x77\xcf\x20\x0a\x1c\x4f\xce\x8d\x02\xbc\x87\xe4\xd0\x37\x1b\x41\xb4\x81\x28\xa6\xdf\x84\x43\x26\x0e\x52\x98\x62\x38\x9d\xcb\xcf\xee\xfc\x20\xa8\x9c\x83\xe6\x7b\x4f\x31\x26\xe1\x8a\xe5\x19\x14\xf4\x42\x42\xf9\x63\x5e\x89\x54\xd0\x7d\xd2\xed\x4a\xd1\xc4\x5d\xde\xb1\x91\xbb\xc6\x57\x0d\xdb\x7c\xad\x2c\xb4\x1b\x69\x60\x5e\x74\x92\x23\x3b\xd4\xdd\x05\xe9\x76\xdc\xa7\x45\x7a\xd7\x39\x4d\x3b\xb6\x6e\xe7\xc4\x7f\xeb\x36\x04\x70\x5a\x7e\x78\x81\x33\xbc\xc6\x2b\x05\x6e\xd1\xda\x4d\xa6\xb2\x3f\x33\xfa\x68\x30\xde\x09\x4d\x14\x30\xf1\x07\xd5\x4c\x62\xce\x98\x0b\xd3\x39\x02\x47\xa8\x36\x58\xb7\xd1\xee\x77\x40\xbf\x4c\x69\xd7\x6a\xf0\x09\x4d\x64\x65\xca\x22\x46\x7d\x5f\xcb\x29\x76\xd1\x17\x72\x7d\xc8\xf0\xca\x0b\x93\x8b\x0b\x14\x8e\xbd\xb0\x92\x53\x99\x8c\xd0\xe4\x86\x7e\x13\x7e\x84\x6e\xe7\x7b\x68\x17\xa1\x09\xd8\x84\xbc\xb5\xfb\x83\x50\x67\xdd\x77\x2d\x9e\x72\xea\x41\xda\x7f\xa0\x55\x95\xde\x81\x29\x18\x15\xb2\xf8\xcb\x1c\xfc\x8f\x10\xb8\x45\x74\x06\xbc\xcb\xd4\xb7\x6b\xb8\xfa\xfd\xb9\x2c\x85\xf7\x53\x7e\xfe\x58\xd6\x60\x60\x7b\x91\x33\x5a\x88\xcf\x00\x7c\x6d\xe2\x5c\x58\x33\x83\xfc\xcd\xaa\x6b\x76\xbf\xce\xe9\x45\xce\x16\x5f\x09\x4d\xfe\xeb\xdf\x25\xa9\x30\x67\x46\x9f\x5c\x31\x52\xc9\x22\x1c\xe8\x06\x8d\xfb\xa0\xbb\xad\xc2\xef\x16\xf5\x17\x19\xb4\x64\xcf\x92\x79\xd8\xfe\x9d\xe5\x07\x3d\xdf\xbb\xfc\x20\xd7\x3e\xe5\x7b\xc3\xfd\xda\x4a\xbc\xac\x7b\xf7\x24\x98\xf4\x5f\xd5\xab\xa0\x84\x97\xea\xb5\x6b\xef\x35\x55\xd9\x4c\x2f\x95\xee\x56\xfa\x6b\x8a\x77\xb9\xf6\x19\xb5\x77\xd9\x6b\x47\xe9\x5d\xb6\x4f\xb9\x7a\xfb\xbe\xb6\x70\x9d\x6d\x67\x0d\xd5\xaf\xab\xa1\xda\xbf\x86\x97\xc8\xd6\xde\x75\xbe\x54\xd0\xce\x56\x34\xc8\xe9\x9e\x95\x16\x7b\x51\x97\x06\xf1\xde\xb3\x6c\xb6\x57\xd9\xde\x31\xb1\x67\xb9\xe5\x9e\x6d\x56\x27\xd1\x9e\x85\xa6\xfb\x15\xda\x3c\xf2\xf6\x2c\xbd\xda\xaf\xf4\xe6\x21\xbb\x67\xe9\xf5\x5e\xa5\x37\x4f\xf5\x3d\x0b\xcf\xf7\x2e\x1c\xd8\x87\x3d\x4b\x5d\xec\x55\x6a\xc0\xa4\xec\x59\x72\xb6\x57\xc9\xc1\x95\x6d\xbf\x82\xd7\x01\x0b\xb5\xb3\xf4\x80\xf7\xda\xb3\xf8\xd5\x5e\xed\x76\x2c\xde\xde\xc5\xba\x2c\x7b\xb4\xf9\xc2\xf1\xca\x7b\x15\xbf\x7c\xc5\x3c\x7e\x30\x1c\xf6\x5e\x25\xdf\xef\x55\x72\x17\xaf\xbc\x67\x05\x4f\x5e\x05\xed\xbb\x61\xcf\x25\xe5\x75\x8a\xfa\xe1\x75\xba\xe3\x66\xb3\x97\xfa\x7d\x9f\xcf\x98\x8a\x16\x59\xd3\x5b\x09\x35\x6f\x52\xbd\xce\xfe\xc5\x0f\x27\x67\x42\x39\xfb\x2f\xc9\xc9\x69\xf9\x46\x9c\x96\xe0\xec\xbf\x0c\x95\x5e\x4b\x25\xff\x15\xb8\x90\x17\x17\xab\x8d\x68\xc5\x3b\xe0\x59\xc5\xf9\x24\xb1\x6f\x74\x71\xda\x03\x71\x33\x1c\x8a\x29\x0b\xf6\xd0\x0c\xd4\x5b\x84\x7a\xbb\x47\x58\x6c\xe3\x71\x07\x60\x00\x8c\x54\x12\x8d\x68\xdb\xce\x90\x22\x30\xae\xed\x90\x02\xa6\x67\x0d\x6d\xd8\x42\x1b\xb9\x04\x5e\x5e\xe2\x67\xed\xdc\x26\x6d\x7a\xb6\xd9\x2a\x4f\xa3\x45\xf6\x2b\x87\x96\x91\x93\x53\xf6\x46\xc0\xf3\x7b\x31\x65\xe1\xd0\x32\x37\xb4\x0c\x2b\xb0\x42\xed\x06\xa6\xd2\xf0\x20\xfa\xd7\x94\xce\xe0\x39\xb8\xdc\x6c\x0e\xc1\xde\xc9\x7f\x12\x2f\x90\x7a\xbf\x68\x8f\x98\xf5\xfc\x92\x0e\x87\xa9\xef\x0b\x25\x0d\x4c\x11\x77\x2c\xfb\x4e\x71\xc0\xeb\xd6\x7e\x87\x9c\xe4\x1f\xf0\x8f\xf4\x7a\xc0\x50\xad\x34\xcd\x3c\x0e\x57\x1b\x50\x6c\xf1\xc2\x06\xbd\xe8\x5f\xe9\x64\x1f\xff\x4a\x50\x57\xc0\x4c\x9b\xaa\xb6\x08\xa7\xeb\x35\x2d\x32\x88\x6a\xfb\x5b\xca\x59\xf1\x15\xa2\x62\x6a\x2c\xd4\xb2\xcc\x16\xe3\x39\xa4\xb4\x09\x83\x32\x8c\x2d\x1d\x3c\x92\x29\x85\x6b\xe3\x75\xcf\x04\xe1\x46\x1a\x6d\x69\xbd\x6b\xf2\xbb\x84\x46\xbf\x89\x57\x3c\xa5\xec\xa0\x89\x39\x18\x4a\xd2\x78\x3a\x43\x3b\xfc\x15\x77\x23\xbd\x4d\xa6\x4a\x05\x0f\x38\xb1\x08\xbb\x1f\x06\x03\x33\x9a\xbd\x1e\x62\x76\x8b\x5d\x99\x93\x02\xb7\xca\x94\x44\xa1\x77\xcc\x42\x41\xdd\x9e\x9e\x6d\x5e\xa3\xf8\xd8\x0d\x24\xcf\x5b\xe4\xd1\x46\x50\x49\xdf\x83\x94\x65\x01\x77\x04\x70\x20\x15\x44\x00\xfd\x8d\xd0\x69\x5c\x6a\x40\xb8\xaf\xf4\xe9\x13\xa7\x55\x15\x49\x9a\x33\x1c\xca\xdf\x47\x6b\x13\x40\x01\x75\xc1\x1d\x3e\x06\xad\x2d\xc2\x29\xc2\x41\x04\x95\x21\x31\xdb\x6c\x4a\x9d\x2d\x0e\xaa\xbd\xad\x6f\x6f\x73\x5a\x45\x68\xb3\x29\x92\x4a\x94\x6b\x39\xc1\xe9\x5d\xaa\x26\x4c\xa9\x32\x30\xf2\x7c\xf2\x87\x49\xa4\xe0\x96\x3f\xd2\xc7\x9c\x15\x34\xc2\xdf\xfd\xdb\x24\x5a\xa4\xc5\x82\xe6\xd1\xb6\x7f\xf1\xf0\xe4\x06\x08\x61\xc0\x45\xe2\x67\xa5\x7c\x10\x45\x58\x8e\x1c\xbb\xad\x1d\x72\xea\x64\x1a\xa5\xb5\x28\x9d\xea\x6b\x84\x55\x40\xc9\xb9\xd2\xe1\x93\xbf\x96\xe5\xa2\x96\x13\x9b\x69\x2b\xfd\x08\x47\xcb\x92\xdf\x47\x38\xba\x4f\xbf\x69\xa3\x49\x1c\xdd\xb3\xc2\x7e\x83\xbe\xf0\xaa\xcc\x33\x10\x2f\x72\x9a\x66\x65\x91\x3f\xc1\xe7\xdf\x6a\xc6\xa1\x88\x8a\xe6\xca\x1a\xe8\x2d\xe3\xd4\x28\x26\x56\x6b\x9a\xe7\xf0\x2e\x19\x49\xaa\x7e\xab\x05\xd6\x91\x60\x22\x97\xab\xc7\x2b\x58\xb9\x05\x32\x6d\x92\x94\xca\xb6\x46\xbb\x5c\xfd\x75\x90\xcb\x72\x7e\xd7\x69\x25\x68\x00\xb4\x47\xd5\xb5\xf8\xcf\x72\x28\x9d\x19\xad\xcb\xb1\xa8\xc5\xab\xd2\xb3\x62\xbd\x57\x8e\x6d\xe0\x8d\x4e\x2f\xe8\x49\x44\x0b\xf0\x49\xa9\x17\x14\xb8\x4a\x95\x21\x6b\x4e\xc5\xcf\xf4\x09\x12\x75\xb9\xb0\x67\x53\x9a\x7c\xa5\x4f\x17\x65\xa6\xce\xd9\x1d\x35\xc7\x08\x8b\xc0\x44\x4f\xcc\xc0\x14\xb4\x3b\xb5\x3f\xce\x0d\x17\xc5\x7a\xb3\xa9\x5e\xea\xcc\x9a\x01\x92\xe7\x52\xcb\x7d\xf6\xae\x36\x51\x64\xfc\x17\xe8\x9d\x11\x02\x3c\xc6\x66\x5c\xf4\x21\x82\x61\xa0\x65\xf2\xa3\xc2\xec\x24\x7b\xbe\xa8\xed\xd4\x2a\xa0\x5a\xa4\x6b\xaa\xf7\xbe\x4b\x0c\x5b\xe0\x5d\xd1\x4c\x0d\xc1\x47\xf2\x0e\x18\xa6\xbc\xaa\xbb\x3c\x0d\xf6\xf5\x09\xdb\x92\x4a\xbb\x26\x64\x51\x86\x28\x35\x6b\x75\xc4\x29\x48\xfb\xcb\xba\x5d\x67\x7b\x55\x58\xff\xe3\x3e\x3d\x93\x25\xd6\xeb\x08\x37\x61\xe4\x35\x9d\x34\x35\xbc\x2d\x1f\x8b\x76\x1d\xcd\x82\xb2\xf2\xb1\xd8\x59\xd4\x8e\x53\xa5\xeb\xb1\xa5\xef\x6c\xd9\xdb\x5d\x5b\xc3\xdd\xa8\xe0\x69\x51\x31\x99\xef\xa6\xec\xd8\x23\x6a\xae\x16\x35\xe7\xb4\x10\x20\x3e\xc0\xbc\x23\xd0\x68\x73\xca\x6f\x60\x5b\xbd\xdf\x84\x62\x80\x21\xa3\xdf\x98\xfd\xaf\x31\x33\x78\x02\x4b\x54\x1e\x28\xf0\x61\xb9\xa6\x17\x86\xe4\xb7\xb8\x8e\x75\xa1\x4b\xec\x78\xdc\xdb\xc3\xe8\xba\xeb\xd9\xf0\x37\x72\x13\xd7\xcf\x1a\xc7\x39\xe9\xe7\x92\x5a\x47\x5c\x34\xdb\xe2\x7c\x9a\x3a\xc4\xe2\x00\xb0\xd7\xbf\x21\xc5\x51\xc6\xb2\x77\x05\x13\xe7\x70\x53\xd5\xdb\xc4\x8f\xfc\x4c\x17\x94\x3d\x50\x1d\xbf\xc5\x79\x52\xd0\x94\xd3\x4a\x5c\x2d\x6f\x9e\xd6\x21\x20\x9f\xd1\x78\x30\xe0\x7a\xa9\x5c\x39\x92\xc5\xc5\x05\x69\x58\x46\x40\xef\x9c\xd6\x9d\xf0\x4c\x6f\xb4\x81\x82\xf0\xf5\xed\xba\xe2\x7d\x9c\x48\xb4\x3d\x15\x4a\xc1\x42\xa6\xb5\x34\xfc\x40\x6e\x05\xd7\x8c\xad\xd7\xfc\xbf\x30\xb1\xea\x44\x07\xec\xed\x84\xa9\x81\x2a\x55\xfa\x5d\x75\x70\xca\x69\x91\xf9\x1a\x6d\x0d\x07\x11\xfe\xae\xb2\xa9\xcd\xc5\x25\x37\x47\x46\x87\xa1\xf9\xaf\xb8\xb7\xa8\x2a\x55\x15\x14\xae\x90\x5a\xde\xed\x6e\x2f\x79\xf2\xbb\xa6\x9a\x92\x7f\x74\x59\x85\x9f\xb3\x78\x8c\x2b\x1f\x58\x22\x48\x35\x09\x63\x83\x38\xd9\x2b\x75\x47\xba\x29\xfb\xc0\x18\xe7\xde\x66\xdd\x6c\x98\x8f\x5b\x87\x9b\x38\x1c\x9c\x88\x64\x95\x56\x6f\xaf\x3e\x0c\x87\x6d\x85\xde\xb3\xac\x5c\x00\x83\x93\xc0\xfe\xbc\x06\xb6\xab\xe4\x31\x45\x13\xdd\x66\x3b\x1c\xa6\x51\xc6\xfb\xb8\x46\x06\x31\xad\xed\x9b\x41\x9b\xcd\xd6\x74\x5b\x66\x4f\xfe\xe4\xbd\xcb\x94\x4a\x61\x9e\x2c\x59\x91\xe9\x21\x7f\x57\x7c\x82\x95\x62\x5e\x32\xdb\x23\x11\xfd\x93\xc6\xe5\xb5\xc5\x38\xcc\x14\x7f\x70\xd1\x74\xac\x80\x78\xfd\x40\x4c\x65\xb0\x6c\xc4\x23\xcb\xf3\x77\xc0\x06\x98\xaa\x6a\x9c\x27\xb0\xd9\x9b\x81\xe0\x1b\x2c\xa7\x29\xff\xac\xd6\x2c\x24\x6c\x63\x28\xef\xc9\x4a\x86\x4b\x5b\x97\xe3\x56\xb6\x07\xd0\xec\xb7\xc1\xed\x1f\xcb\x24\x40\xb8\x48\xef\xe4\xed\xcc\x8c\xa4\x64\x6f\xdb\x10\xae\x81\x65\xc1\xae\xb6\xd9\x21\xdd\x6c\xa2\x48\x83\x90\x9a\x2a\x34\x5e\x9a\x37\x7b\x1d\x28\xc5\xa6\x1c\xc9\x55\x68\x41\xe7\x70\x18\x1f\xc6\x5c\xfb\x25\x6e\x5f\xc1\x87\x43\x6a\x15\x57\x9a\xca\x22\x93\xfb\x94\x15\x11\x42\x9b\x8d\xbc\xe7\x98\x57\x9d\x9b\xf2\xd2\x2b\x3e\x62\x00\xa6\x16\xf3\xa4\x37\x09\x39\x1c\x23\x18\xdb\x97\x51\xd8\x15\x44\x0d\x00\x6b\xce\x88\x0f\xb8\xae\x98\x53\x59\x88\x72\x49\x02\xe5\xf7\x88\xf8\xda\xb3\xec\xe5\x31\x20\x3b\xb0\xe3\x51\xc7\x09\xdf\xa3\x8f\xf1\x5a\x53\x27\xf4\xbc\xf5\xd8\x1d\x40\x03\x32\x9e\xc4\x15\x5f\x56\x35\xfc\xe5\xbe\xa0\xb6\xf3\x12\x8f\x11\x72\x15\xdd\x17\xfd\x57\x2b\x16\xfd\x03\x4a\x29\x7b\x73\x1c\x72\x8b\xd4\x44\x97\x1c\x78\x09\xce\x49\x94\x44\xa3\xda\x63\x3a\x58\x53\xb3\x8b\xaa\x4b\xd5\xb3\x28\xeb\xc5\xaa\x12\x29\x17\x93\x08\xbe\xaf\xe5\x77\x84\xe1\xfb\xbe\x7c\xa0\x3a\xf8\x43\xf9\x40\x75\x28\x2d\x32\x1d\x78\x59\x64\x3a\x4c\x5f\x3f\x54\xf0\x85\xba\xda\x4b\x1e\x5b\x72\xcf\x93\x48\x33\xdb\x10\x52\xaf\xe1\xf7\x2f\x6b\xf8\x05\x8c\xff\xc4\x09\x2c\xf0\x7d\x59\x57\x54\xe5\x82\x4f\x95\x0f\x3e\x65\x4e\xf8\x90\x79\x35\xfa\xdb\x3d\x2d\x6a\xed\x62\xf4\x9b\xf8\x40\x8b\x3a\xc2\x8b\x9c\x2d\xbe\x4e\xa2\x85\xd2\xa4\xc8\x6e\x73\x1d\x90\x95\xf5\xad\x55\xb0\x80\x72\x54\xf7\xe0\x53\x75\x0f\xae\x2d\xac\x98\x44\xfa\x82\xa4\x43\xca\x5a\xe8\xa0\x2b\x79\xa3\x81\x0c\xc0\xee\xea\xcc\x97\xea\x9a\x06\xdf\x39\x4d\x6d\xa1\xef\xe5\x77\x84\xab\xfa\xf6\x9e\x89\x49\xa4\xfe\x47\x18\x2e\xcb\x13\x73\x67\x5e\x18\x37\xa9\xc6\x47\x23\x4f\xef\xf4\x7c\xc8\x4f\x3d\x1d\xf2\x53\x05\xa8\x6f\x5d\xbd\xfc\xd4\xb5\xcb\x4f\x5d\xb9\xfc\xd4\x75\xcb\xcf\xf2\xc1\x24\xbd\x7a\x50\x29\xcb\xb5\xfc\x5d\xae\x4d\x59\x99\x29\x29\x8b\xb6\x98\x97\xa5\x39\x44\x26\x91\x3c\xfa\xa2\x5d\xb2\x07\xed\x9a\xa0\x5e\x77\xb8\xaf\xb3\x50\xc2\xa9\xe6\x02\x96\xac\x48\x73\x75\x71\x6b\xb9\x91\x31\x32\x58\x73\xc3\x52\x0b\x14\xae\x58\x07\xca\x9b\x5f\x91\xb0\xea\x63\x59\x50\x14\x73\x74\x06\x4e\xc2\x82\x0c\x5e\xbb\x23\xa4\x30\x37\xaa\xee\x58\xc9\x0b\xc4\x5c\x01\x5d\xd8\x13\x96\x23\x04\xb2\x5b\x00\x66\xa9\x11\x3e\xe4\x09\xab\xe2\xbc\xc7\xb5\xda\x2f\x85\x71\xa3\x96\x66\xd9\xe0\xf7\xd1\xa8\x1e\x45\xbf\x1f\x28\xd4\x4c\x51\x0e\x64\x6d\x03\x7d\xde\x0c\xe2\x68\x14\xf3\xa4\xd2\x9c\xca\x66\xc3\xa7\xe3\x99\x39\x9b\xd0\x28\x42\xc9\xe0\x43\xfa\x95\x0e\xaa\x9a\xd3\xc1\x53\x59\x0f\x2a\x2a\x06\x5e\x73\x65\x79\x62\x45\x07\x72\x2a\x06\x25\x1f\xa4\x85\x2d\x19\x9c\xe6\xa8\x98\x44\xa3\xce\x68\x5f\x48\x73\xad\x61\x61\xde\xd4\x62\x85\x53\x00\x0a\xdb\x29\x4a\xdb\xda\xda\xfa\xe1\x02\xa6\xf2\x4f\xca\x77\x55\xcc\x31\xc3\xe9\x94\xcd\x70\x65\x26\x59\xc7\x74\x38\x0d\x53\xf3\x2d\xcb\x38\xd0\x86\x5f\xca\xcc\x50\x72\xf8\xa3\x28\xa1\xda\xc8\x37\x71\x74\x30\x6a\x5c\x78\x15\xbe\x5c\xa1\x00\x23\x59\x36\xc3\x29\x39\x1c\x83\x8b\xfd\xde\xf3\xf1\x8c\xc1\x9a\xca\x3e\x2a\xc6\xdf\x8f\x02\xe4\x56\x10\x33\x19\xbe\xb2\x1a\x0e\xab\x43\x42\xc4\x59\x4a\x58\x32\x0f\x91\x8d\x0d\x78\xdc\xa4\x1c\x0e\x63\x88\x57\xb2\x28\x8d\x7b\x2c\x63\x11\xc2\x29\x60\xf3\x34\x7a\x34\xcd\x52\x91\x1e\x69\x22\x0c\xdd\x99\x45\x1d\xe0\x14\xea\xa9\x88\x26\xfa\x74\x55\x92\xcd\xc4\xde\xef\x2a\x5c\x19\xc5\x7a\x85\x25\x51\xfa\xa6\xa3\x47\x27\x87\xe0\xe0\xbf\x4c\x98\xa0\xe0\x43\x02\x0e\x7a\x1f\x4d\x2e\x8e\x5a\xed\x38\x8a\xf0\x58\xe1\xd8\x5a\xe5\x88\xf6\x59\x3a\x2d\x14\x83\x30\x43\xc3\x21\x53\xec\x0f\xb0\x65\x30\x7f\x47\x27\x84\x10\xe7\x4d\x8a\x41\x69\x9a\x27\x90\x2c\x37\xae\xb4\x5a\xbd\x64\x07\xd0\x16\x37\x57\x5d\xbf\xd3\x5b\x9f\x93\x0a\x80\xb0\x0c\x47\x15\x1e\x8a\x9a\x9f\xda\x6c\x9c\x22\x06\xee\x9b\xf9\x49\x8f\xae\x3e\x70\x9a\xa7\xd4\x70\x75\x96\x7a\x50\x4d\x6b\x0c\x5b\x26\xb9\xb6\x43\x3e\x15\x33\x74\x8a\x68\x98\xce\xf1\xb2\x91\x67\xf7\x87\xc3\xc5\xd4\xdc\x1c\x16\x3a\xf1\x50\x12\x42\xea\xbc\x0a\x74\x3e\x7b\xc6\xa5\xaa\x92\xd7\x85\xac\x32\xc5\x02\x33\x84\x45\x87\x7c\x7d\xa2\x5f\x1e\x83\xa5\xca\xe0\x19\x02\x97\x5b\xec\x07\xf7\x69\x5e\x87\xfc\x1d\x07\xd6\xae\x17\x94\x75\x27\xbd\x75\x37\x19\x8f\xa4\x52\x94\x94\xcb\x65\xec\xf6\xca\xbf\xfc\x0b\x60\x8a\xc8\x73\xd7\xd2\xd9\x3d\xde\x75\xba\xf0\x6c\x8d\xb5\x54\x43\x6d\x0a\x45\x9d\xc2\x27\x4f\xb5\x57\xf2\x83\x3d\x62\xb7\x96\xd0\x8d\xd7\x45\x32\x4f\xb3\xec\xdf\x6b\x5a\xd3\x38\x52\x37\xcb\x08\x5b\xf7\x36\x08\xb7\xd2\xa4\x4b\x41\xf5\x75\x0b\x1e\x08\xe0\xa3\xbf\x45\x86\x87\xfc\x07\x80\xe8\x03\x2c\xcb\x10\x12\xde\x5c\xa3\x63\x79\xa7\x36\x78\xb9\xec\x1e\x2a\xd2\xca\xae\x72\x4b\x73\xb5\xef\xe5\xf1\x27\x97\xd8\x59\xe3\xb7\x22\x2d\x37\x3c\x2d\xaa\xa5\xec\xcc\x64\x1a\x59\x26\x25\xc2\x9a\x29\x89\x2c\x57\xa2\xbf\x73\xc5\x80\x44\x86\x03\x81\x4f\xc9\x72\xe8\x94\x59\xd4\x83\x20\xaf\x2b\x5f\xb2\x6f\x00\x81\x3f\xa5\x33\xf2\xbc\xe6\xe5\xba\x92\xf5\xfa\x0d\x99\x6d\xb7\xc8\x07\x4b\xe3\xbd\xa3\xdc\xd4\x35\xef\x33\x9c\xd8\x39\xce\x9e\x09\xbc\xbd\xd2\xfb\x40\x40\x98\x13\x31\x15\x16\xa2\xcc\xb9\x9d\xf0\x03\x09\x20\x11\x61\xe1\x10\x7f\xbc\xcb\x8e\x57\x79\x61\x0d\xca\x0e\x09\x35\xa7\xab\xcf\x61\x99\x14\x1a\x3d\xc4\xe3\x52\x84\x71\xd0\x6b\x81\x16\x07\x8f\xa9\x72\x3b\xbc\x2c\xeb\x22\x1b\x3c\xae\x68\x31\x90\x43\xc2\x8a\xbb\x41\xbd\x1e\xa4\x03\x18\xac\x81\xb1\xbe\x48\x06\x37\x2b\x56\x0d\x58\x35\xb8\x2f\x2b\x31\xc8\xd9\x57\x9a\x3f\x0d\xb2\x1a\xd8\x9d\xfb\xb4\xa8\xd3\x3c\x7f\xd2\x32\x3f\xc1\x52\x21\x8b\x49\x0b\xed\x4f\x56\x12\xc7\x64\x70\x4d\xe9\x64\xb0\x12\x62\x3d\x39\x3e\xbe\x63\x22\x61\xe5\xf1\xe5\xcf\x9f\xd6\xc5\xb9\x07\x26\xdd\xb6\xfa\x88\x46\x1c\x6d\x36\x9d\x11\x05\xda\x6e\xe3\x02\xc3\xa1\xe3\x0c\x3c\x19\xd8\x00\x7a\x6a\xf3\xad\x11\x3c\x2c\xfe\xef\x1b\x99\x42\xf6\x48\x1f\xa1\x8a\xd8\x07\x43\x14\x53\x04\x2f\xae\xbb\x12\xc1\xb3\x44\xcf\x66\xe8\x45\xfe\xd9\xc3\x6a\x29\xdc\x03\xc6\xd0\x10\xe0\x25\x34\x43\x7b\x16\xca\x56\x28\x9a\x50\x5f\x38\xd3\x8c\x0d\x40\x48\x1c\x32\xef\x74\xa6\x0c\x0d\xad\x35\x6b\xd5\x4d\x2c\x34\xd7\x39\xa5\xb3\x83\x43\xb6\xd9\xb0\xc0\x09\x5b\xf0\x9b\x66\x9b\x0d\xb0\x51\xdc\xb2\x33\xf0\xe2\xce\x0d\xd6\x2d\x2e\x3c\x5e\x06\xcb\x1a\x01\x96\xc2\xb6\x8f\x35\x40\xa4\x9c\xcc\x55\xa9\xc7\x07\x9d\x29\xbd\x47\x4a\xe5\x64\xc8\x0a\x13\x95\xd8\xff\xb3\x7a\x94\x3c\xf0\xf5\x95\xe1\xaa\xa7\x40\x29\x62\x49\xff\x78\x25\x3e\x96\x19\x55\x8f\xf2\xe2\xb2\xc8\xce\x97\xf0\xc4\x02\x6c\x9f\x8e\xd9\xca\xd1\xfd\x00\x67\x5f\xe5\x6c\xdd\x42\xbb\x86\xb6\x24\x92\x26\xe0\xec\xf8\x67\xfa\x24\xb7\x9b\x3c\x08\xf5\x67\x9a\x9b\xc0\x85\xe0\xf9\xcf\xf4\x09\x73\x42\x93\xc7\x15\x5b\xac\x7e\x38\xd1\x8d\x3d\x14\xc3\xe1\x21\x40\xff\xbc\x68\xef\xd1\xb6\x34\xfc\xbd\x7e\xc8\x18\x54\x32\xcb\xc0\xf1\xbf\x83\xfb\x54\xee\x1c\xc1\xcb\xac\x5e\xd0\xc1\x82\x97\x55\x75\x54\x31\x41\x07\x4a\x90\x25\xf3\x3c\xd4\x79\x41\x79\x7a\xcb\x72\x26\x18\xad\x4e\x07\xeb\x9c\xa6\x15\x1d\xd0\x02\xee\x4e\x62\x95\x8a\x01\x30\xb3\xd5\xe0\x96\xca\x0c\xb7\xb0\xab\x53\x4e\x07\x6b\xb8\xe9\xe4\x4f\x03\xf5\x22\x9a\x25\x83\x9f\x4a\x3e\xb8\x2f\x39\x1d\xb0\x62\x59\xf2\x7b\x68\x37\x1e\xb0\x62\x91\xd7\xd0\xc0\x55\xf9\x28\x77\xb5\x7e\x91\x07\xd9\xd8\xe0\x31\xe5\x05\x2b\xee\xf0\xa0\xa2\x14\x36\x71\x35\x39\x3e\x86\xcd\xf3\x5f\x55\xb2\x28\xef\x8f\x33\x37\x06\xd5\xf1\xc3\x49\xf2\xed\xf8\x9f\x44\xb9\x98\xdf\xaa\x4e\x1f\x41\xa7\x8f\x5c\xa7\x93\xc1\xb5\x1a\x86\xe5\x92\x2e\x04\xcd\x26\x83\xe8\xf7\x23\x3a\xfa\x7d\xf4\xfb\x2d\x6e\x58\xbb\x74\x4d\xe2\x4e\x5e\x19\x73\x6f\x03\xf9\x18\x33\xa2\x1b\x08\x5a\x43\x96\xca\xad\xa4\xad\x41\x0b\x4f\x76\x3b\x1c\xea\x8d\x52\xc8\xdd\xc1\x75\xf3\xb4\xa1\x0e\xc7\x2d\x3b\x9e\x4e\x4c\x80\x74\xa6\x8c\xa7\x59\x6f\x52\xf0\x80\x62\xcc\x5e\xab\xbe\x22\x3d\x91\x25\x64\x10\xba\x39\x9e\xad\x50\x97\x8d\x6b\x5b\x97\x8a\xa2\xdd\x63\x88\x4c\x7b\x7b\x4a\x06\x2a\x31\x55\xb6\xb1\x9e\xda\x57\x0b\xed\xa0\xd2\x8e\x7e\xb8\xbc\xba\xa9\x9d\x93\xe7\x74\xe1\x17\x5b\xe0\xa6\x79\x12\x73\x21\x40\x2d\x00\x07\xa1\xc3\xac\xa9\xa3\xab\xe0\x5d\x50\x0e\x88\x4b\x16\xa3\x2d\xde\x65\x31\xb5\xa3\x94\x76\xea\x58\x5b\x14\x2b\xb2\xd3\x39\x31\xb5\x86\x94\x90\x77\x8a\x03\xab\xe6\xe8\x19\xdd\xfe\xf9\xdd\xe5\x5f\xe6\x97\xef\x2f\x3f\x5c\x7e\xbc\xe9\x40\x97\xbe\xf8\xd3\xbb\xf7\x6f\xe7\x90\xe8\xdd\xdb\x6b\x40\x97\xf6\x49\x9d\x67\x40\x6f\xed\xc0\xf5\x42\x19\x0e\x63\xfd\xe5\x01\x5d\xe8\xb6\x6e\x36\xbd\x51\xd7\x56\x3e\xd3\x91\xa4\xfc\xfb\x87\x3d\x52\x55\x7b\x24\x2a\xf7\x48\xf3\x48\x6f\xbf\x32\xd1\x48\xd8\x71\x87\xe8\xb3\x92\x6c\x1f\xed\xb7\xe9\x2d\xcd\x23\x30\x75\x51\x8c\xcf\xab\x54\xd7\x40\x87\xd8\x28\xab\xd2\xc4\x37\x0a\x8e\x0b\x2c\x70\x29\xa7\x8f\x26\xd6\xd0\xd7\x04\xd6\xe4\x59\x85\x4d\x2a\xec\xec\x82\xd3\xad\x27\x91\x39\x4c\x87\xc3\xb8\x76\x45\x92\xc0\x9a\x58\xc1\x67\x73\xf6\x90\x0a\xf6\x77\x8a\xe4\xd9\x8c\x70\xdd\xcd\x31\x5b\x34\x26\x25\x67\x31\xfb\xda\x96\x7c\xa4\x42\xf4\xce\xb6\x07\x2f\xe8\xc2\x81\xb7\xcf\xe1\x30\x8e\x19\x29\x40\xda\x23\x0b\x43\xae\x55\x92\x93\x50\x3d\x41\x67\x6c\xa2\x93\xe8\x75\xad\xd5\xf9\x44\x7a\x77\x47\xb3\x1b\xcd\x82\xbd\x67\x82\xf2\x34\x7f\x5f\x96\x15\x45\xf1\xd4\xb3\x8a\x3e\xd2\x4d\x8f\x66\xb8\x3b\xb8\x63\x9e\x5b\xa6\xc2\xbd\xa8\x8d\xfb\x5b\x39\xeb\x04\xa0\xef\xf1\xb2\x62\xaf\xe6\xb3\x9a\x80\xe2\xe6\x35\x41\x28\x63\x50\x9a\x61\xa1\x0d\x53\xb5\xa0\x10\x3f\xb3\x4a\x12\x9c\xc9\xe1\x18\x6b\xe5\x12\x25\x99\x5d\xe4\x65\x41\xe1\x89\xa9\x42\x71\x91\xa8\x28\xd4\x12\x34\x5b\xa5\xae\x97\x1f\x27\x95\xaa\x4a\xb4\xe6\xd4\xdc\xbe\x5f\xd0\x72\x49\x6c\x52\xe5\x72\xb2\x71\x2e\x19\x7f\xb0\x87\xc1\xa3\xb2\x77\x9b\x30\x77\x89\xb4\x90\x17\x08\xc7\xf4\xd3\x41\x3a\xb0\x13\x3b\xd0\x9e\x12\x06\xe9\xc0\xb2\x8c\x83\x4f\x6d\xb6\xe5\xa9\xac\x81\x4f\x01\xee\x50\xb2\x1f\xea\xa9\x78\x14\x41\x01\x83\x54\x33\x30\x03\xbb\x81\x8f\xcd\x51\x95\x44\x68\x8b\xdd\x41\x6d\x94\x05\x25\x63\x26\xbb\xf1\x16\xbc\xba\x55\x9d\x7e\x26\x12\xa5\xff\xd2\xf4\xaf\xa3\x38\x3b\x8b\xd1\xaf\x07\xad\x85\xdd\x8f\x69\x22\x17\x91\xf6\x10\xba\xc5\x5a\xb5\x64\x1f\x85\x7b\xde\x56\xb8\x2f\xc8\x89\x45\xdd\xe2\xd3\x22\x54\xb8\x2f\x66\x2f\xbf\x03\x1f\x78\x60\x7c\xc6\x61\x47\x0f\xfe\x09\x43\xd6\xc2\xcd\x2b\x8a\xa3\x2d\x5e\xa5\x5d\x23\xd5\xe3\x7a\x17\x1c\xf9\x89\xd0\xc5\x8a\x72\x28\x25\x12\xc3\x08\xd2\x5f\x2c\x2c\xab\x16\xb8\x4a\x2a\x86\x59\x13\x06\x5e\x4e\x5d\x0f\x06\x3c\xeb\x23\x08\x7a\xf3\xbe\xf8\xc0\xd9\xce\x73\x6c\xa8\xcd\x8e\x24\x6b\x4e\xe7\x56\xe0\xd5\x9b\x6a\x95\x56\x46\x11\x70\x57\x32\x56\xcc\xb3\xf2\x7e\x77\x8b\xcc\xb5\xad\xf7\x01\xb4\x25\x9e\x53\x59\xdd\xb5\xc7\x23\x2a\x1d\x0e\xd1\x9e\xb7\x07\x5c\x2e\x63\x0d\xec\xbb\x85\xa3\x45\x53\x80\x06\x84\x94\x4b\x87\x94\x96\x8e\x71\xeb\xbd\x2b\xd9\x2a\xad\x0c\xab\xba\x2b\x19\x2b\xde\x5e\x7d\x68\xa5\x70\x99\x91\x45\xd7\x29\x14\xba\x4e\x0b\x5a\xa7\x40\xc3\x61\xf0\x7a\xc6\xc1\xc7\xe6\xb4\x98\xf9\x42\x69\x3b\x3c\xcf\x73\x0b\xb3\x64\xbd\x71\xd8\x8e\x4f\xac\x01\x29\x86\x86\x4d\x9c\xe3\x21\xd7\xa4\x89\x73\xe3\xe1\xc6\x62\x12\x58\x5c\xee\x58\xa0\x6e\xb1\xfd\x2a\xb1\x9b\x87\xc5\xdc\x69\x89\x81\x9e\x03\x01\x8f\x2c\x56\x53\xe6\xbf\x96\xf5\x60\x91\x16\xbf\x17\x03\x59\x9e\x97\x79\x50\xd6\xa2\x62\x19\x1d\xc0\x46\xa6\x9a\x32\x4b\xaa\xab\xbd\x70\x45\x40\x0a\xac\x64\xbc\x13\x1c\x0e\x1b\xdd\xae\xc0\x89\x7e\x97\xf8\x7c\xfb\xf2\x00\xd9\xb5\xff\x4a\x6d\x85\x1d\xa3\xbd\xe7\x99\x1e\x2e\x44\xbb\x1a\x34\x19\x33\x2b\x8c\xe1\x97\x07\x9f\x27\xad\x71\x97\x57\x80\x70\xe0\x0b\x2d\x53\xd3\x17\xf4\xcc\x08\x67\xe4\x88\x77\x0d\xe8\xcb\xc5\x9b\x5c\x3b\xcb\x7e\x0d\x41\x0d\x69\xda\x6f\x40\x5c\xbb\xf4\x7b\xf7\x9c\x0f\xde\x3f\x1f\xed\xd1\x02\x5f\xf7\x96\xcb\xb0\xaa\x87\xb4\xeb\x51\xa7\x99\xf6\xbe\x7c\x50\xfa\xe8\x9d\xcb\x3e\x78\x35\x3a\x04\x82\x04\xde\x26\x80\x95\x5b\xe6\xc0\xfa\xbe\xb3\x2c\x07\x8a\x23\x50\xd4\x56\xaf\x24\x49\x34\x12\x58\xa9\x9b\x4c\x38\x96\x03\x35\xa1\x5b\xdc\x65\xc9\xce\x6b\x0d\xc5\x45\x01\xe5\x0a\xb8\x09\x05\x5f\xf5\xca\x09\x34\xa7\xcd\x3f\x6e\xec\xd9\xbb\x2e\xf6\x30\xfc\x54\x8f\x7e\xe1\x7c\xb2\x9e\xf9\x2c\xf1\xb3\xd2\xe8\xe8\x9d\x20\xf5\x6c\x0b\x53\x44\xbf\x31\xd1\x97\xb0\x2e\xfc\xa4\xc1\xa8\x95\x2f\x8c\x9a\x7f\xe0\xf7\x41\x2a\xed\x41\x69\x7a\xc9\x77\xc3\x37\x7c\x97\x53\x9f\xe3\x25\x4d\x45\xcd\xbb\x99\x9a\x2e\x7d\xef\x6e\xbb\xc4\xb6\x03\xac\xcb\xf3\x9b\x5f\x3e\x5f\x5e\x13\x9a\xbc\xbd\xfc\xe9\xfc\x97\xf7\x37\x73\x1b\xe4\xb9\xe9\x28\xba\xe2\x9f\x23\xd3\xa8\x23\x59\xe0\x7a\x4d\xb3\x23\x41\x2b\x11\x4d\x0e\x4f\x4c\x33\x72\x76\xcb\x53\xce\x68\x75\xc4\x2a\xf7\xc2\xee\xa7\x60\xf7\x6b\x5e\x3e\xd0\xec\xc8\x71\xe6\x4a\x57\xcb\x4b\x03\xcb\xf1\xe8\x91\xa6\x5f\xef\xd3\xb5\x1f\x71\x97\xb3\xfb\x7b\xca\x8f\xd2\x3c\x2f\x1f\x8f\x6e\xd3\xc5\x57\xc1\xd3\xc5\x57\x56\xdc\x1d\x99\x5d\xee\x27\xe7\x65\x2d\x20\xae\xac\x05\xe5\x47\xc6\x2b\x91\xbc\x83\xd9\xa1\xbc\x63\x05\xad\x8e\xee\xcb\xba\x10\x47\xeb\x94\xa7\xf7\x95\x1f\xaf\xdc\x7f\x1e\xd5\x05\x5b\x1a\x9d\x32\x28\xdf\x34\x64\x01\x9e\xa3\x9d\xc8\xe1\xc8\xe8\xb9\x41\xaa\xfb\xb4\xc8\x52\xc9\xc9\x1e\x55\x54\x88\xb0\x6d\xa6\x04\xa5\xe9\xdd\xdf\x97\xad\x3f\x6b\x70\x3d\x33\x5b\xa5\xc0\xca\x9d\xb4\x89\x0d\xd6\x4f\x07\x22\x98\xb6\xd1\xea\x59\x46\x45\x99\x51\xdd\xdd\x16\x91\x70\xc2\x92\x4e\x82\xe1\x2d\xd6\x06\x05\x91\xbd\xba\xad\xb9\x9f\x73\x51\x16\x55\xd9\xf6\x29\x19\x35\xc6\xc5\x96\xfd\x40\x79\xa5\x6c\xc8\xbc\xed\x17\x35\x66\xd8\xfe\x0e\x94\xff\x4c\x3f\xe5\xd5\x5c\x96\x71\x64\xac\x2d\x5e\x03\x6a\x85\xef\xfa\x04\x42\xb7\x0d\xf3\x06\x9a\xfc\xf9\xf2\xf3\xf5\xbb\xab\x8f\x56\xd9\xcb\x2a\x9b\x58\x84\x58\x66\x3f\xbd\xd8\xca\xc5\x56\xed\xd8\x00\x60\x95\x05\x3f\xbd\x54\x16\xb7\x95\xd9\x4f\xbf\x0c\x8d\xc9\xca\xcc\x97\x17\x67\x20\x3c\x99\xf9\xf2\xe2\x1c\x54\x22\x73\xdf\x5e\xbc\xc3\x63\x64\xee\xdb\x8b\x77\x08\x8d\xcc\x7d\x7b\xf1\x00\x47\xca\xe0\x9f\x17\x6a\xd1\x15\x99\xfd\xf4\x62\x6b\x35\x0e\x75\xd8\x7f\x0d\x9a\xcb\xf4\x87\x17\x63\x6f\xea\xa4\x74\xdf\x5e\xbc\x05\x26\x2b\xed\x27\xd0\xc0\x07\x3c\x27\x69\x62\x7c\xfc\x1f\xcc\x93\x34\x67\x69\x45\x52\xf5\xdf\x1f\x04\x9d\x84\xcc\x83\x5a\x55\xa0\x35\xbf\x48\x5b\x41\xc1\x38\x2e\x56\x54\x4e\x50\x6a\x3f\xc3\xbe\x51\x2e\x48\xad\x3f\xfc\xf1\x4b\x79\x41\x6a\xf8\xe7\x85\xc2\xee\x23\xb5\xfa\x1f\x84\xeb\xab\x38\xc4\xe9\xef\xae\xf8\x9f\xea\x62\xe1\xa7\x91\xbf\xbd\x74\xbc\x2e\xde\x15\x6f\x75\x25\xee\x87\x97\x42\x45\x3e\x9b\x13\xc0\x7b\x10\x33\x7a\x73\x75\xd2\x1f\x89\x4d\xd4\x5f\x52\xde\x91\xc1\x0b\xdd\xfa\x6b\x95\xf2\x3b\x4a\x52\xf5\x3f\x5c\xdf\xfa\x9c\x21\xa9\xf7\xc3\xdf\x7f\xf5\x6d\xb5\xe0\xec\x96\x06\x09\xa0\x45\xd7\x26\xca\x4b\xfe\x2e\x4c\x42\x9e\x5d\x9e\x49\x50\x83\x2d\x77\xb2\xa3\xdc\xba\xd8\x91\xec\x17\x17\x89\x39\xad\xa8\x68\x27\xf9\x2c\x83\xfd\x71\x80\xcb\x01\xa9\xd5\x7f\x2f\xfc\xc3\xe5\xcd\xb9\x02\x73\x4e\xdd\x77\x30\x7e\x22\x85\xe1\x13\x69\x48\xb9\x48\x2a\xff\x86\x61\x7f\x61\x62\xf5\x56\xb3\x33\x69\x23\xc0\x4b\x39\xbf\xa3\xe2\x53\x2a\x56\x24\xb5\x9f\x21\xdd\x23\xa9\xfc\x1b\x52\x8c\x6b\x08\x56\x1f\x5e\x8c\x3d\x04\x2b\xfb\xd9\x11\x9b\xb0\xea\xb2\x50\x3e\xc7\xeb\x84\x55\x3f\xa9\x93\x49\x07\xf9\x2d\x03\xdf\x48\x72\x57\xca\xff\x5e\x44\x59\x90\x34\x29\xfd\xed\x94\x66\xd9\x7b\xf0\x7c\x40\xe5\xfe\xf4\x7e\xf9\x5b\x02\xee\x0d\x5e\xb2\x30\xc0\xaf\xb8\xaa\x2b\x79\x0d\xf4\xd2\x36\x42\x0e\xfa\x13\x57\xed\xd4\x55\x30\xa0\x45\xa6\xac\x1a\x52\xf7\xed\xc5\xaf\xd2\xca\x2f\xc9\xff\x19\x10\x15\xb1\x58\xd1\x4c\x6b\x27\xa7\xe1\x6f\x2f\x5d\x6e\xf2\x2a\xc2\xe5\xff\xf4\xb7\x1f\x68\x2a\xcb\x9d\x05\x1f\x41\xcc\xe5\xfd\x1a\x28\xa3\xfe\x0a\xe2\x7e\xcc\xd3\xe2\x2b\xc4\xc1\x57\x10\xf7\x49\xee\x05\xb5\x9f\xcd\x77\x48\x9e\xe4\x04\xd4\xfe\x1c\xce\xaf\x94\xab\x0b\xae\x16\x97\xf7\xcb\x4b\xb4\xd6\x84\xd9\x39\x6a\x26\x69\x47\x60\x47\x0e\x67\xd0\x93\xb6\xc3\xfc\xc5\xf5\x40\x39\x67\x19\xbd\x58\xa5\xac\x90\x63\x1b\x06\x78\x29\x6f\xe9\x1d\xb3\x82\x2e\x55\x8e\x4c\xdf\x15\xec\xe5\xa2\x45\xd6\xce\xd3\x0e\xf4\x4f\x1e\x08\x71\xa6\x96\xf2\x04\x6a\x04\xf9\xfd\xcd\x53\xb1\x2c\xf9\x3d\x79\x0e\x01\x8c\x24\xc7\xbc\x4a\x2b\xf3\xf3\x7c\xb1\xa0\x55\x55\xf2\x6a\x72\x38\xde\x06\x07\x8c\x9f\x49\x29\xe3\x7a\x01\xcd\x35\xf8\x33\x7d\x32\xcb\xef\x67\xea\xc7\xd6\x85\x17\xef\x7e\xb4\xf6\x23\x8c\xea\x5f\x34\x2a\x67\xda\x11\x18\x10\x04\x19\xfe\xb1\xcc\x80\x28\x98\x6f\x2f\xc1\x92\x15\xac\x5a\xd9\x99\xf3\x7f\x36\x1b\xae\x49\x9e\xfd\x6e\x37\x5d\xa7\xf0\x7e\x35\xcb\x30\xf9\x83\x85\x0f\xcd\x66\xc5\x1d\xac\x7c\xf3\xa3\x5d\xba\x2b\x39\x18\x7c\x65\xee\x26\x43\x72\x2a\xe8\x07\x2a\xd2\x03\x7f\x37\xeb\x9b\x1b\x6c\x65\xfd\xed\x65\xbf\xe2\xf2\x5e\x9d\xe9\xfd\x63\x7f\xf8\x07\x4c\xba\x96\x47\x4b\xc0\xca\x7d\x48\xd7\xe1\x51\x11\x06\x84\x87\x4a\xb0\x0a\x83\xdf\xe1\xa1\x11\xa4\xab\x7a\xd2\xd1\x6f\xeb\xb4\xc8\x82\xa4\xcd\x20\x2f\xb5\xc5\xf0\x66\xf6\x33\x3c\x01\x0c\xc5\x50\x27\x80\xf9\xe5\x6f\x6d\x1d\xa4\xa9\xa1\xff\xb3\xb5\x2e\xbd\xc2\xc2\x80\x8e\x73\xc2\x4b\xdb\x0c\xda\x91\xba\xea\x48\x5e\x05\xed\x50\x78\x1d\xd0\x02\xf5\xe9\xf7\x57\x72\xb8\x1f\xa8\x58\x95\x99\xe1\x77\xd5\xaf\x8e\xfe\x7a\x7d\xf5\x97\xea\xfd\x3d\xcd\x58\x2a\xfc\xae\xce\x5b\x81\x3e\xf7\x01\x88\xbd\xa9\xfa\xef\x2f\x20\x1d\xfe\xa1\x11\x7e\xcb\x0a\xd9\x36\xf9\xcf\x0b\xd5\x3a\x55\x24\x35\x5f\xc1\xee\xf9\x63\x5e\xde\xa6\xb9\xde\x7a\xfe\xcf\x1e\x54\x36\x9b\x17\x47\x97\x1f\xff\x1c\xe1\xe7\x3e\xb8\xcb\xcb\x8f\x7f\xde\x86\x56\xca\xbd\x48\x6f\x5e\x99\x06\x2e\xbb\xb7\x58\xa3\xa7\xac\x12\xb6\x7d\x62\x37\x53\x10\xda\x6e\x85\xc7\x17\x36\x7d\xd0\x93\x1e\xdf\xf4\x2f\xb7\xfc\xfd\xd5\x1f\xe7\xd7\x37\xe7\x17\x3f\xdf\x7c\x3e\xbf\xb8\x9c\x5f\x7d\x9c\xbf\xbd\xfc\xf4\xf9\xf2\xe2\xfc\xe6\xdd\xd5\xc7\xdd\xe3\x94\xec\xcc\xdb\xd5\xc7\x17\x33\x91\xc3\xc3\x8e\x8e\xef\xd5\x09\x7d\x61\xdf\xa3\xc9\x3a\xe5\xae\x06\x9a\xdb\xff\xaf\x6f\xce\x8f\xef\x3e\xbe\x7d\xf7\xf1\x8f\xd7\x7b\xb4\xc7\x24\xdd\xd5\x20\x93\xe6\x57\xb6\xa8\x2c\x94\xc3\x47\xd5\x18\xa0\xc8\x57\x2a\x08\xab\x9b\x48\xe5\x02\x5e\x5d\xf8\xcf\xbd\x7d\xbc\xdd\x6e\xd1\xc1\x8b\xf9\x05\xad\x94\xe0\x07\x4a\x91\xac\xfe\x8d\x0a\x81\xb6\xd5\xb2\x6d\x26\xa0\x7f\x4b\xcc\x7f\xb4\xf2\x29\x62\xd1\x41\xbd\xf8\xf7\xe5\xdd\x1d\xe5\x64\xd1\x11\xa5\xbd\x3c\x64\xfa\xc3\x3f\x28\x95\x2a\x41\xa6\x3f\xfc\xea\x8c\x7c\x01\x7c\x08\x29\xca\x96\x25\xed\xc0\x80\x2b\x31\x12\x8b\x20\x4f\x47\x68\x43\x20\x91\x72\x4a\x32\xf3\x15\xc4\xad\x9f\x20\x62\x1d\xb2\xdb\x97\x7f\xab\xd3\x9c\x64\xe6\x2b\xb8\x3f\xeb\xfe\xa8\x0f\x2f\x46\x49\x86\xb2\xa4\x29\x15\xba\x80\x5a\xc1\x30\x3b\xf3\x7e\xf8\xb4\xc8\x99\x6e\x67\xde\x8f\x66\xd9\xd0\x3b\x53\x01\xfc\x68\x8d\xb3\x49\xe2\xfd\xf2\x4b\xf1\x55\x70\x64\x41\x81\x4a\x8e\xdf\x62\x4e\xed\xbc\xb9\x1f\x3e\x83\x90\x0a\xf6\x40\x4d\x8f\xbd\x5f\x41\x29\xeb\x27\xdb\x6b\xf5\xe9\xdf\x50\x39\xa5\x7f\xd7\xd1\xf6\xdb\x8f\xff\x7c\xf5\xbf\x2f\x3f\xce\x2f\x3f\x7f\xbe\xfa\x2c\x93\x78\x3f\xfd\xf3\xb0\x06\x4f\x64\xc1\x00\xb6\xc2\xda\xe9\x4d\xc3\xfd\x9f\x5e\xaa\x0e\x78\x31\x92\x75\x82\x8e\x79\x73\xa8\x14\x9d\xe4\x04\x6a\x95\x27\x17\xf7\x89\x97\xf7\xac\xa2\xc1\x9a\x6d\x85\x05\x73\x29\x19\x02\xdd\x1d\xf7\xc3\x97\x0b\x28\xe7\xaa\x99\xfe\x08\xd6\xae\xe9\x9c\xfe\x3a\xd8\x67\x2f\x96\xc5\xfb\x32\x95\x8d\x57\x1f\xe1\xf5\x51\x86\x80\xc9\x0d\xc9\x82\x9f\x0d\xa9\x22\x2f\x73\xb5\xac\xdc\x8f\xce\x14\xfe\xae\xf5\x42\x7c\x6a\xa2\x5e\x26\x24\x39\x51\x5f\x3e\x09\x08\x46\x71\xde\x39\x7e\x9f\xaf\xff\xfc\x49\x92\x92\xeb\x3f\x7f\x0a\xd6\xec\x3d\xad\xd6\x29\x94\x6b\xbf\xf1\x3c\xa1\x70\xed\xce\xd4\x7f\x3c\x4f\x8a\x52\x5c\xea\x20\xf3\x09\xa1\x05\x85\x90\x82\xaa\x34\x2a\x1a\xcf\x93\xdb\xb2\x94\xa4\x42\xfe\xc3\x73\xa5\x35\x4a\x32\xf5\x5f\x96\xae\x29\x09\xfc\xc7\xf3\xe4\x4e\x66\xbc\x13\xf0\x45\xe1\x53\x96\x97\xcb\xd0\x5c\xc0\x17\x85\x4f\x19\x5a\x16\xf4\x2f\x30\x95\xea\x03\xcf\x13\x4e\xd3\xac\x6a\x06\x5c\x15\xb9\x4c\x64\x3e\xf1\xdc\x8a\x2a\x59\x71\x77\x0e\x62\xda\xac\x15\x84\xe7\x49\x5a\xc8\x19\x4f\x8b\x4c\x56\x25\x27\xae\xe4\x10\xfa\x04\xa1\xb2\x9c\xaa\xbe\x27\x99\xfc\x2b\x3b\x06\x03\x7e\xcf\x0a\xe8\xe4\x37\xe8\xe2\xb7\x03\xf9\xbd\x86\xef\xb5\x4c\xaf\x76\x8a\xfc\x27\x7f\x51\xf1\x96\x2d\xe5\x2a\xd5\x5f\x90\x73\xfd\xe3\x93\x4a\xff\xa3\xac\x61\xc9\x72\x01\x8b\x46\x7d\xd8\x10\x48\x64\x3e\xf1\x3c\xa9\x0b\xf6\x37\x92\xc1\x3f\xfd\x0b\x52\xa8\x0f\x15\x52\x16\x2a\xa0\x94\x2d\x84\x87\xe6\xca\x50\x6a\xfd\x8d\xe7\x46\xc1\x1a\x68\x3e\x7c\xbd\x7c\x36\x5f\xdf\x7c\xd6\x5c\x48\x13\x89\x47\x9e\xb5\x99\x64\x04\xd4\xa9\x57\xc1\x61\x9b\x29\x93\x0d\x08\xd8\xe7\xe8\xff\xf1\xea\xea\xe6\xf2\x6d\x47\xe9\x6d\x9c\x1f\xb9\xa7\xed\xca\xbd\xa6\x29\x5f\xac\xde\x6a\x60\x40\x57\x75\x4f\x82\xe0\xa4\x77\xce\x45\xd6\xee\x1b\xaf\x93\x3f\xd1\x7c\x4d\x79\xb2\x82\x7f\x64\xad\x3f\xbc\x8c\x7f\x32\x31\x7f\x6a\xc6\x5c\xac\xe8\xe2\xeb\x6d\xf9\x4d\x96\xa8\x3f\x7d\x8a\x4a\xbf\x89\x9f\x18\xcd\x33\xb2\x76\xdf\x8d\xf8\x73\x4e\x53\x1d\x2d\x3f\x7d\xc6\x83\x15\x5f\xfd\x26\x07\xbf\x71\x0f\xdf\x9e\x18\x4f\x66\xb1\x76\x65\xe8\xf4\xa8\x57\xe2\x3e\xbf\x4e\x97\xb4\x8d\xf4\x13\x8f\xf1\xda\x46\x1b\xac\x57\xa5\x42\xf8\xe8\x59\x4b\xab\x23\xf3\x36\x85\x8b\x65\x3b\x70\xb3\x79\xde\xe2\x4b\x3f\xea\xe6\xc3\xfb\x1f\x1b\xa9\x75\x10\xa4\xfd\x46\x1e\x93\x5f\x04\xcb\x2b\xf3\x5f\x86\xf6\x70\x7d\x8f\x38\x92\x8d\xd3\xde\xd3\x14\xc3\xb7\x06\x79\xb2\x0b\xde\x22\x7c\x99\x18\xb3\x2f\xf2\xe8\x3e\xd7\xf6\x13\x7f\x4b\x94\xc9\xcb\xe5\x37\xc0\xda\x90\xdb\x67\xdd\x0a\xc2\x86\xa3\x73\x63\xe6\xc6\xc7\x45\xb2\x4a\x76\x47\x47\xbb\x1f\x2f\x2f\xfe\x9b\xcb\x0f\x9f\xde\x9f\xdf\x5c\x5e\xdb\x8e\xdc\x49\x4e\x55\x35\x51\xed\xa7\xb5\x62\x5e\x4d\xd0\xce\x5d\x02\x7a\x0d\xe6\xe2\xb1\xea\xe0\x53\xbb\xe2\xac\x78\xc7\x3e\xa9\x48\x96\xe7\x3d\x84\x3e\xc5\xd1\xa5\xb2\x51\xb6\x39\xfc\x7d\xf4\x3b\xb2\xd4\xe6\xb2\x7e\x1d\x8c\x3e\x76\x71\x10\xcb\xbe\x98\x46\x5e\xb5\x10\x9e\x03\x5b\xad\xc9\x32\xb4\xdd\xc2\xa1\x59\xcd\x64\xd9\xb0\xb3\xc1\x81\xc9\x88\x8b\x56\xbf\x71\xdb\x5a\xc4\x25\xf1\x02\x71\xaf\x59\x48\xa3\xc4\x20\x0e\xfb\xf6\x49\x2a\xa1\xfd\x89\x03\x6b\x1c\x15\xe9\x79\x2a\x69\x50\x04\x37\x72\xde\xaf\x2e\x32\xa6\x7d\x0f\x2d\x9b\x21\x4d\xfe\xcc\xf3\x4a\xb4\x6c\x86\x04\x17\x1d\xf5\x00\x47\xee\xed\xa7\xcf\x45\xd7\xa2\xf4\x52\xf8\x3f\x7d\x4a\x99\x56\x2b\x2f\x95\xff\xd3\x4f\xc5\x2a\x51\xf2\x27\x3f\x61\x18\xe2\xf3\x2f\x65\x41\xbd\x84\xfe\xcf\xe0\x46\x63\xb8\xaa\x9f\x4a\x4e\xee\xc3\xdf\x81\x80\x51\x3d\x9c\x3b\x2e\x4c\xab\x19\x93\xfb\xfe\xb8\x9d\xf9\x3b\x33\xfa\x5c\x19\xa8\x9d\xbc\xbd\x7e\x4f\xee\xdd\x77\x2b\xde\x46\x36\x63\x4c\x84\x3f\x13\x4e\xbd\x81\x3c\xf9\xbf\xba\xd3\xbc\xd3\x68\x84\x61\x5a\x13\x1a\xdc\xc7\xee\x58\x21\x93\xa9\x8f\x56\x8c\x57\x50\x18\xe0\xf1\xda\x5a\xa4\xfb\x99\x56\x65\xae\x04\x7e\xb6\x37\x26\xe8\xc9\x7e\xe2\x78\x8c\x43\xde\x1a\x69\xc2\xe3\xb7\x34\xc2\x41\xc3\x7d\x42\xf4\x36\x15\xe9\x79\x96\xae\xe5\x00\xde\xf9\xbf\x1a\x1c\x38\xdc\x92\xe1\x39\xda\xa5\xee\x0c\x57\x16\x71\xab\x54\x36\x44\xe9\x8d\x98\x83\x03\xb4\x7b\x58\x4e\x79\x64\xd4\x8d\x0d\x61\xdc\x91\xb2\xab\x38\x25\xb1\x90\x85\x3c\x90\x9e\x72\x74\x92\x80\x2c\x54\x82\x3c\xc0\xbf\x46\x68\x62\x7a\xf4\x90\xb4\xfb\x0e\x09\xfe\xfd\x97\x82\x09\x97\xca\xff\x19\x4a\xd4\xeb\xf5\x4f\x25\xd7\xf2\x12\xf2\xd0\x0c\x41\xfd\xb3\x15\xf9\x7a\x75\xee\x98\x2b\x92\x77\xd7\xf3\x8f\x57\x6f\x2f\xcf\x8a\x44\xe9\x14\x25\x5a\x0f\xc9\x25\x9a\x38\xf1\xa5\x8e\x53\x3a\xcb\xa4\x2b\xdc\x65\xf3\x95\x9c\xac\x6e\xd0\x5e\xc8\x6a\xae\xa1\xd1\x77\xc9\xc9\x7f\x4f\xbe\x8b\x54\x59\x81\xe6\x53\x5f\x49\x1a\xb8\xd0\xfa\x1d\xd6\xd6\x0f\x2a\x5b\xa7\x87\x73\xdd\x6f\x2d\x5e\x3f\x10\x67\xb1\xfd\x41\xc2\x38\x4c\xf5\x20\xe9\x70\x4c\xcd\xf0\x11\x81\x26\x5e\x36\xb0\x68\xb1\x89\xf5\x2f\x97\x74\x8b\x0e\x68\x1c\x81\xb2\xdb\x11\xa7\x8b\xf2\xae\x60\x7f\xff\x75\xb8\x73\x0a\xe7\x44\xc1\x2e\x78\x38\x05\xf3\xb9\x51\x6d\xd2\x3e\xa4\x65\x10\xf6\x1c\xd1\x73\x65\x23\xe7\x9c\xaa\x98\xda\x98\x67\x36\x37\x62\xca\x15\x84\xb1\x3d\x29\xe8\xe3\xe0\x3e\x4e\x21\xe3\x41\x19\x73\xfd\xe9\xfb\xd3\x0f\xcc\xda\x0a\xcc\xc8\x18\x6c\x03\x94\x83\x7a\xe3\xb4\x1e\x2c\x66\xd8\x88\xd0\x69\x31\x4b\xd6\xa9\x58\xe9\x70\xad\x7f\xfa\x2c\x83\x26\x82\x28\x7d\x0f\xc1\x63\x86\xb4\x8e\x2f\x9f\xf0\xed\x01\x55\x86\xa9\x25\x0a\x0c\xdd\x41\x3b\xcc\x34\xdd\xa8\x87\x11\x91\xc0\x20\x57\x38\x23\xbe\x3d\xf1\x42\x59\x2c\xa4\x64\x7c\x9a\xbe\xc9\x4c\xab\xd2\xd1\x08\x55\x24\x9b\xa6\x33\x5c\xc4\x35\xa1\x49\x95\xb3\x05\x8d\x11\xae\xf0\x62\x5a\xcd\x10\x8e\x73\x22\x12\x70\xe4\xc0\x69\x21\x43\xce\x58\x2c\xeb\x01\x18\x26\xae\xac\x47\x4b\x5c\x37\x8d\xea\xed\xac\x38\xe0\x0d\x79\xc9\x8c\x53\xe4\x41\x6a\xd8\x2c\x69\x90\x45\x35\xed\xcd\x1f\x36\x1b\x00\x36\xa2\xce\x69\xfc\x3f\x47\xe8\x8c\x4e\x32\xba\x28\x33\xfa\xcb\xe7\x77\x96\xbd\x88\x29\x4a\x38\x05\x98\xf6\xf8\x0e\xd3\xa2\x19\xef\x55\x55\xf9\x55\xb5\x12\xfa\x05\xdd\xe2\x76\x45\x5e\x41\xca\xd1\xf4\x73\xe0\xe3\xd9\xa0\x9f\x6e\x36\xd6\xc7\x74\xcb\x10\xed\xaf\x65\x3d\xb8\xaf\x2b\x31\x58\xa7\x55\x35\x48\x8b\x81\x76\x00\x9f\x56\x60\xe4\x50\xd1\x45\x09\xc6\xf0\xca\x60\x6a\x20\xca\xc1\x7f\x9a\x73\xfc\x3f\x93\x08\x40\xd6\x0e\x1f\x9d\xd5\xee\xae\x0a\x78\xf9\xc0\x32\x3a\x00\xc5\xd1\xc1\x7f\x46\x23\x31\x8a\xfe\xb3\x5d\xa0\x32\xbb\xa1\x53\x31\xc3\x05\x69\x21\xb9\xf2\x33\x3e\x89\xa2\x11\x97\xf5\x8e\xc1\xda\x5c\x4d\xcf\x1e\xf5\xa6\x61\xcd\x89\x07\x9d\xe1\x86\xd1\xf8\x3e\x7e\x36\xe8\x2b\x3f\x8c\x87\xc3\xef\xff\x8d\x10\x58\x76\x29\xbf\x28\x33\x7a\x2e\x62\x40\xc8\xf2\xb6\xc7\x09\x52\x0d\x57\xba\x91\x15\xae\x65\x94\xc3\x78\xc9\x0d\x29\x58\x18\xc5\x61\xb7\x23\x6b\x7f\x47\x96\x64\x8c\x2b\x32\xc6\x27\xdf\x0d\xe3\x92\x7c\xf7\xe6\x4d\x5c\x11\x40\xca\x88\x19\xa9\xa7\xc5\x0c\x9d\x7d\x3f\xf9\xd7\xff\x4e\x08\x61\x61\x6b\xce\x4e\x26\xdf\x7f\xd7\x11\xfc\xdd\x64\x8c\x14\x98\x17\xd3\x5b\xe9\x04\xf6\x50\xbe\xd9\x4c\x67\xc8\x40\x57\xe0\x78\x41\x16\x5e\xc8\xf8\x90\xc4\xdf\x0f\x4b\x84\x10\x3e\xf9\x7e\x58\x0e\x87\x7c\x5a\xcd\x46\x23\xac\xb7\xfd\xb3\x9c\x8b\x49\x85\x95\x4b\x85\x34\x66\x92\x98\xaa\xa1\x7c\x06\xff\x21\x93\x7c\xb3\xb9\xc6\xd5\xaa\xac\xf3\xec\x2d\x2c\xda\x6a\xb2\xd8\x6c\xae\x3d\x22\xb5\x68\x61\x4a\xc9\x86\x13\x70\x4b\x4e\x93\x82\xde\xc9\xfb\x28\x21\xdc\xe5\xc8\x42\x0b\x7e\x9d\xe6\x4c\x65\x54\xfe\xcc\x01\xa9\x43\x05\x4c\x5c\x81\x76\xdf\xca\x00\x57\xde\xda\x43\x0e\xd1\x38\x6b\x1a\x4a\x8d\x93\x31\x2e\x88\xa5\x94\xfc\x4d\x71\xca\x25\xb5\x04\x14\x2e\x5c\x92\x32\x51\xc8\xdb\x31\x53\x72\xbc\x58\x20\xbb\x94\x4a\x57\xc1\x0a\x94\xec\x09\xb5\x3b\xf8\xf8\xcb\xe8\xf8\xee\x1e\x47\xff\xfc\xdd\x58\xaf\x73\x71\x20\xf8\xd3\xb3\x20\x9d\x24\x64\xbb\x80\xc2\x29\x7a\x16\x24\x8a\x8c\x77\x6f\x01\xc8\xe0\xcb\x50\x2f\x1e\xdf\xb7\x6c\x9a\x35\x56\xb5\x58\x11\x0d\x70\x7c\xaf\xaf\x36\x42\xfd\x94\x87\x12\x0c\x32\xdf\x1e\xdc\x7b\xd2\x0f\x51\x92\x36\xc0\x9e\xc6\x7e\x37\x79\xe4\xe6\x03\x13\xe8\x47\x96\xe7\xe7\x59\x06\x9c\x37\x78\x86\x0a\x83\x62\xbf\xe2\x44\xf9\x27\xc2\xd4\x80\xe6\x9a\xf0\x34\xcb\x62\xdb\x5a\x4c\x91\x26\x63\x63\xd8\x73\x2f\xee\xee\x55\xfa\x40\x25\xd9\xb2\x14\x4a\xa3\x1b\xba\x79\x4e\xab\x8a\x66\x40\x67\x44\xf9\x9f\x11\x3a\x68\x56\xae\x1c\xf1\x78\x2d\xc0\x8d\x21\x42\x5b\x65\xb3\xfd\xd4\x82\xce\xd5\x47\x1b\x11\xb1\xee\x93\x39\x99\x5c\x88\xea\x35\xa1\xdb\x83\x27\x6f\x94\xd3\x2c\x6b\x0c\xb3\x57\xdc\x94\x02\x38\x45\x23\x3d\x34\x33\x9c\xe6\xc2\xa1\xc4\xc9\xa1\x79\x8a\x85\xee\x9d\x3d\x20\xe9\x8c\x94\x1a\x47\x41\xb2\x1b\x25\x66\xe8\x80\x0d\x87\xcc\x70\x8d\x80\x02\x4a\xb3\x76\x48\x2c\x70\x8a\x70\x11\xa7\xda\x5e\xfd\x8e\x1c\xff\xf3\xe6\xcb\xf1\xf1\x1d\xbe\x25\xc7\xff\x1c\x9f\x4d\xbe\x8b\xcf\x26\xdf\x6f\xfe\xdb\xe6\xc7\xcd\x05\xda\xfc\x21\x3e\x9b\xfc\xb8\x79\xbb\x39\x47\x9b\xef\xc7\xe8\xf8\x0e\x3f\x90\xe3\xf8\xcb\xf1\xe6\x4b\xb2\xf9\xf2\x2f\x9b\x2f\xa3\xcd\x97\xb3\xcd\x97\xcd\xe6\x4b\xbc\xf9\x82\x36\x5f\xa6\x9b\x2f\xb3\xcd\x97\xe7\xcd\x97\xed\xe6\xcb\x17\x99\x7a\xae\x0c\x7b\xcd\x9b\x04\x7e\x34\xab\xdb\x13\xca\x05\xc6\x8c\xf8\x52\xee\xd5\xcb\xe9\x78\xd6\xb5\x58\x95\x2d\x2f\xd8\xf3\x03\x89\x32\x9b\xfa\x94\x3b\x7c\x44\xb9\xa1\x0b\xb9\x93\x1d\xb9\xe4\x08\x4b\x32\xb9\xae\x45\x5c\xe0\xc3\x13\x7c\x78\xe2\x21\x46\xe1\xcb\xe9\x49\xb3\x32\xeb\xaa\x57\x66\xf9\xfe\xdf\xf0\xe1\x18\x1f\x8e\x91\x4c\xfa\xdd\xce\xa4\x47\x27\x50\xbc\x4a\xfa\x7d\x5f\x52\x35\xee\xdf\x64\x47\xbf\x85\x1d\xf5\x88\x20\xf4\xcf\x12\x98\x07\x1c\x7d\xf9\xf2\xbb\x93\x08\x6d\xf1\xb7\xa0\xb9\x0e\xf8\x6e\xfa\x1f\xc7\xb3\x11\x8a\x64\x82\xef\x3a\x13\x24\x3a\xf6\xfb\xae\xd8\x48\x35\xea\x4a\x36\xea\x6a\x77\xa3\xb6\xf8\xaa\x3d\x62\x8a\x96\xd4\xb1\xc0\x3a\x95\x1d\xe1\x8b\xe4\xf2\xe3\xc5\xd5\xdb\xcb\xf9\xf9\xc7\xb7\xf3\xb7\x97\xf0\xf9\xe9\xfc\xe6\x4f\xf3\xeb\xcb\x3f\x7e\xb8\xfc\x78\x73\x7d\x56\xc5\x1c\x4d\xb8\x2c\xb6\x6f\x74\xfd\x72\x65\xba\x5d\x5d\x38\x6f\xf8\xa3\x7a\xde\x22\x7c\xdd\xf6\x51\x85\x3f\x91\x2e\x8b\x2d\x05\x7a\xaa\x0c\x65\x35\x79\x65\x99\xa1\xac\x70\xee\x70\xf5\xad\x0f\xb2\xc2\xfc\xfa\x26\xb4\xa1\x31\x3b\x13\xca\xe6\xde\xd0\x1d\x41\x79\x41\x22\x03\x3f\xc0\xe9\x1d\xfd\x66\x98\x06\x08\xd2\xdc\x77\x15\x04\xca\xad\x61\x42\xb6\x07\x9f\xbc\xfd\xa2\x0a\xe8\xc1\xaa\x57\xc5\x1b\x80\x73\x5d\x99\xa4\x20\x9f\xe9\xdd\xe5\xb7\x75\xec\xb7\xc9\x50\x6b\x95\x6a\x8b\xfd\x4a\x24\x61\xeb\xd9\x7f\xc6\xc1\x9d\xeb\xf2\x81\x45\xa6\x23\x25\x62\xcb\x78\x1e\x97\x48\x99\xfa\x77\x6c\x4d\x99\x96\x78\xa3\x3c\x2d\xa7\x7c\x36\xc3\x8b\xb8\x00\x0c\x0d\x7b\x1b\xda\xd2\xbc\xa2\x03\xb6\x8c\x59\x98\x5a\x26\x65\x41\x52\x16\x36\x7d\x5d\x77\xc3\x80\x14\x07\xae\xea\x3b\x2a\xe2\xa0\xb6\x03\x07\x57\xab\x6b\xb2\x1c\x24\x0c\xdf\xa7\x98\x61\x66\xd0\x0a\x54\xa1\x98\x4d\x4d\xc8\x8c\x14\x58\xf1\xe1\x8d\x91\x39\x6b\x2e\x8e\x22\x61\xd9\x64\x1e\x37\x82\x51\x33\x9d\x86\x56\x4a\x58\xa6\xbd\x1c\x7a\x45\x4c\x1b\x01\xb8\x00\x70\xdc\x22\x1c\x05\xf5\x1c\xd9\x86\x9d\x75\x70\x08\x8d\x09\x3c\x34\x20\x08\xd3\x99\xbe\x29\x4e\x01\x2e\x61\x1e\x33\x84\x1c\x0c\x2d\xf3\x61\x68\xb3\x98\x07\x93\xc3\xa6\x62\x36\xc3\x14\x0d\x87\xa5\xc6\x37\x42\x07\x30\x8d\x59\x63\xce\x59\x90\xaa\xf0\x78\x2c\xa8\xfb\x6b\xfb\x38\x56\xb5\x12\xbd\x3b\x00\x24\xf3\x13\x98\xa9\x11\xba\xd9\x3c\x6f\xb7\x07\x5f\xbd\xce\x4b\xfe\x7c\x41\xf5\xd1\xd3\x0c\xc6\x41\xca\xee\x84\xad\x74\xb2\x9d\xad\x64\x32\x10\xda\x7b\xd1\x72\x9e\x00\xcc\xb2\x64\x15\x0e\x94\x0c\x61\x3a\xc3\x5c\x2f\x24\x8a\xc7\x58\x9e\x13\x63\x38\x86\xa8\xa4\xb5\x9a\xa4\x84\x64\x87\x97\xa5\x06\x29\xe1\xdb\x83\x8b\x9d\x1c\x86\xb7\x37\x95\xf5\x16\x09\x4b\xc0\x0b\x12\xfd\x47\x84\x33\x32\x1d\xe3\x31\x1e\xcf\xf0\x1a\xda\xa2\x30\x37\x0c\x37\x8c\xf0\x4a\x36\x73\x49\x0e\xc7\xf8\x5e\x4b\x16\xd4\xfe\xa5\xfe\xfe\x85\x7d\x5d\xca\x5b\x4b\x1e\xaf\x70\x5c\x00\xeb\x8c\x14\x7f\x95\x69\x1c\xe2\x0a\xa7\xf2\x56\xe2\xdf\x12\x4e\xef\xdf\x18\x41\xc4\xe9\xfd\x68\x84\xbe\x3f\x24\x24\xae\xc8\x6a\x7a\x3f\x43\x40\xec\x86\xc3\x78\x49\x0e\x4f\x70\x4d\x6a\x7b\xea\xc2\x49\x8d\x17\x23\x12\x1d\x47\xb8\x26\x97\x53\x45\x17\x67\x71\x85\x6b\x08\xff\xe6\x42\x10\x3a\x58\x4f\xf9\x8c\x3c\x1b\x61\x46\x61\x08\x2b\x56\x37\x97\xb2\x71\x6d\x49\xb7\xdb\xe5\x70\x18\xf7\xd5\x87\x70\xed\x28\xf3\x1a\xd7\x96\x92\x2f\x46\xd1\xef\x22\x5c\x6b\x0a\x9d\x29\xfe\xf1\xa0\x25\x12\x13\xc3\xa1\xa6\x89\xe0\x23\x29\xad\x86\xc3\xf8\x89\xc8\x0f\x84\x9f\xe4\x15\xd3\x2e\x93\xe9\xd3\x8c\x3c\x57\xf4\x0e\x60\x4b\x26\x2b\x23\x8d\xa9\x26\xeb\x2d\xda\xe2\x8b\x80\x55\x52\x31\x3f\x95\xbc\x7b\x6b\x13\xaf\x54\xed\x6a\xb4\x68\x73\xd8\x37\x2b\xca\xe9\x80\x55\x83\xa2\x1c\x00\x5f\x3a\x90\x39\xb2\x41\x34\xa2\x48\x13\x42\xb7\x3c\xec\x30\x9a\x3d\x88\x3c\x50\xea\x56\x24\x90\x05\x4e\x5c\xb8\xbc\xec\x4b\xb2\x40\xb8\xc7\x71\x85\x7d\xaa\x94\x98\xbf\xcd\x70\x1c\x1e\x06\xdd\x09\xf3\x19\xc9\x42\x3f\x9b\xe8\xe7\xc5\x25\x89\x22\x4d\xe6\x5e\x3f\x1e\xb0\x9a\xf5\x04\x79\xfb\x22\xf5\xf7\xc5\xf7\x0a\x91\x3b\x85\xdd\xa0\x17\x74\xa9\x56\x6e\x39\x22\x57\xd3\x42\x2f\xd4\x02\xbb\x3b\x65\x74\x1c\xc9\x33\x13\xf8\x0a\x23\x7a\x28\x65\x96\x51\x89\x94\x8b\x2d\x8f\xd0\xa9\xf2\xf4\xf1\xa5\xfa\x0e\x2f\x90\x1a\xa5\x27\x48\x8b\x00\xf1\xb9\x6b\xb8\xbc\x2c\x7d\xa7\x83\x22\x22\x92\x16\xd4\x81\x5c\x8f\xaa\x99\xaf\x41\xcd\x43\x5e\x82\x60\x09\xd4\xfe\xcc\xcb\xdb\x23\xa9\x41\xc0\x03\x6b\xdf\x90\x07\x04\xe7\x78\x87\x14\x8c\x23\x3c\x8f\x0b\x75\xc0\x94\x64\x7c\x5a\xbe\x31\x62\x1f\x70\x62\x9c\x12\x3e\x8a\xa6\x33\x12\x8d\x3a\xf2\x16\xd3\x72\x66\x11\xc7\x53\x7d\xd2\xb0\x11\x89\x7a\x92\x7b\xe8\xe4\x66\x2d\x8e\x01\xce\x5c\x55\x78\x16\x45\x93\xe8\x2c\x1a\x55\x5a\x6e\x38\x8c\x1a\xbb\x6f\x9d\xf2\xea\x15\xe3\x67\x25\x92\x43\x00\xab\x7b\xde\x7a\xfb\x26\xd8\x2e\x4c\x0e\xd3\x2a\x8e\x39\x91\xbb\xc5\xe4\x22\x11\x42\xd3\xf1\x0c\x21\xc3\x75\x94\x92\x3a\x1a\xbf\xcd\xf8\x84\x10\xc2\x4d\xcb\x53\x12\x09\x5e\xd3\x68\x12\xb3\x1f\xbe\x1b\x0e\xa3\xe9\x2c\x02\x01\x9a\x92\x0b\xb1\xa3\xef\xd4\xc2\x3a\x1c\xe3\x7a\x5a\xd8\xf0\x31\x96\x31\xb3\xcd\x26\xae\xa7\xc5\x8c\x4c\x67\x08\xe1\x94\xf0\xe9\xc9\xec\x6c\x15\xcb\x7f\x68\x12\x45\x08\x97\x67\x35\x48\x92\xd5\x28\x4f\x20\x6d\x6a\x06\xb0\x0e\x87\xc8\x8a\xdb\x7b\xc7\x26\xd5\xfc\x8b\x3d\x9b\x66\xb8\x22\xcf\x5b\x5c\xcb\xde\xe5\xbe\x08\xf6\x9f\x22\x74\x0a\x62\x9f\x1c\xe4\x0f\xd4\x08\xe4\xc6\x38\xd7\x22\xb9\x85\x9f\xfc\xcc\x24\x5f\x00\xbc\xb5\x4d\xbe\x18\x9d\x60\x77\xc4\x05\xe5\x2c\x10\xae\xac\xe7\xaf\x60\x6a\x63\x8e\x10\x56\xbb\x93\x06\xbb\x93\xc2\xee\xd4\x64\x21\x23\xf4\xe0\xe5\xdb\x0d\x25\x65\x4c\xd1\x24\xa6\x4e\x16\x14\x53\x84\x33\xef\x67\xa6\x3b\xb4\xb2\xa2\x29\x58\x2b\xab\x1f\x4e\x86\xc3\xe8\x38\x22\x5e\x2b\x56\x47\x27\xa8\x39\x1e\x32\x4c\x96\xe7\x42\x32\x0b\x30\x2d\x97\xde\x21\xc0\x69\xf9\x6f\x04\xe0\xd4\x60\x1d\xa7\x98\xfa\xd7\xe4\x02\xd9\xd5\x06\x22\xcb\x53\x25\x8f\xd2\xb2\x33\x46\xc6\xa7\xcc\xd1\x3c\x26\xb7\xe7\x94\xcd\x2c\xa5\x1f\x0e\x97\x7a\x91\x4c\xd9\x0c\x1d\xa4\xdd\x37\x48\xa0\x1d\x5d\x57\x47\xaa\x0e\xd4\xcd\xc6\xf0\x28\x05\xe1\xd3\xf1\x0c\x33\x58\x91\xb8\x24\x7c\xfa\xdd\x0c\xa7\x44\x34\xd3\x55\x24\x95\xe9\x6a\x92\xca\x74\x39\x49\xa7\xdf\xc1\xc9\x57\xca\xa5\x63\x18\xfc\xf2\x28\x87\x30\x85\x91\x7d\x48\x48\x65\x62\xaa\x23\xb8\x18\xb0\x43\x42\x6a\x13\x56\x1f\x31\x23\x94\x83\xf0\x33\x76\x54\x4f\x20\xd7\x59\x75\x54\x4c\xc6\x5b\xb4\x8d\x97\x6a\xca\xee\xc9\x72\x3a\xb6\xb0\xaa\xf7\xc3\xe1\xbd\x37\x20\x71\x2d\x7f\x6b\xc6\x61\x38\x84\x2b\xf8\xef\xe4\x74\xda\x40\xbd\x15\x8f\xfe\x55\x4e\x6a\xa6\x19\x8f\x9e\xfb\x4b\xdb\x38\x9f\x38\x96\x00\xaf\x88\xbe\x1a\xc6\x4a\x72\xbf\xda\x6c\x0e\xd7\xed\xb3\x0e\x78\xcc\x81\x02\xa8\x63\x82\xa5\x39\xfb\x3b\xcd\xb4\xcc\x72\x49\x84\x16\x7b\xae\x10\xbe\x27\x27\xf8\x09\xf8\x80\xaf\x92\x8d\x97\x2b\xe0\xc9\x70\xe1\x6b\xe7\x28\x5d\xae\xaa\xb5\xbf\x68\x9e\x81\xd4\xaf\xa7\x85\x9c\x33\xd6\xc7\x0e\xe2\x8a\x9c\xab\x3d\x2f\xa7\xe9\x7a\x38\x4c\xe5\x3f\x38\x06\x72\x32\x3e\xcd\xdd\x9d\x31\x1f\x8d\x90\x5c\xc2\x78\x41\xca\x69\x3e\xc3\x19\x59\x0e\x87\xcb\xe9\xfd\x68\x24\xa7\x9e\x90\xf3\xe1\x30\x96\x14\x04\xe1\x17\xb7\xe2\x70\x98\x4e\xf3\xd9\x59\x35\x5d\xcc\x48\x36\x1c\x76\x88\x66\x33\x34\x51\xb1\x07\x4f\x92\xcc\x59\x5e\xd2\xfa\xb8\xc0\x0a\x1b\x63\x52\x61\x56\xbd\x7d\x2a\xd2\x7b\xb6\x98\xd4\x5b\xb3\x58\x9e\xb6\xf1\x3d\xce\x30\x38\x0f\x93\x84\xd1\x68\x1d\x45\xe3\xe4\x0f\xc9\x1f\xa2\x97\x5b\x28\xfb\x79\x91\x7c\x2c\xf9\x3d\x4c\x0c\x27\xcf\x85\xf9\xbe\x56\xfc\xc7\x24\xc5\x36\xe8\x53\x2a\x56\x93\x52\xbf\x42\xc9\x1f\x26\x4d\x15\x52\xe5\xfb\x74\xdd\xc1\x25\xa9\x8b\xed\xd3\x01\x8d\x79\x1c\x45\xb8\x68\x48\x46\x11\x66\xf1\x74\x86\x8b\xe0\xa9\x54\x9c\x19\xaf\x5f\xfa\x5e\x9a\x66\x19\x40\xd0\x68\xa7\x6f\xee\x6d\xf9\x42\x3d\x2a\x2b\xc8\x91\x5d\x08\xa4\xed\x77\xda\x88\x57\x0f\xeb\x97\xe1\x91\xc2\xf7\x49\xcf\xaf\x87\xf2\xd9\xf8\x59\xbd\x5c\xc9\xed\x23\xe9\xa5\xbc\x1a\x08\xc9\x8a\x74\x62\x72\x2b\x4f\x23\x06\x8b\x50\x1f\xb1\x45\xc3\x0f\xa1\x64\xc8\x7e\x18\x0f\x87\x74\x2a\x8e\x4e\x66\xe6\x7f\x13\x8c\x2d\xf2\xd8\xb0\x08\x9d\x01\x07\x04\xe9\xbc\x70\xcc\xc9\x85\x79\x58\x1b\x63\x21\xa9\xf4\x94\xe3\x62\x86\x26\x53\x0a\x9c\xd3\xac\xf1\x62\xa9\x4f\xd0\x26\x12\x1c\x5b\xc6\x51\x51\x83\x02\x82\x73\x88\x38\x2d\x66\x48\xfe\x21\x51\x34\x92\xff\x0f\x8c\x20\x25\x90\xc4\xc6\x90\xce\x5c\xec\x31\x57\xcf\xc5\x86\x2b\x79\xc3\x81\x33\x91\x61\x92\x77\xd7\x25\x4d\xc5\x2c\x78\xde\x54\xb4\x89\x26\x79\x79\x37\x1c\xc6\x7f\x20\xa4\x05\xec\x78\x06\x91\x71\x74\x63\x7d\xd2\x0e\xfe\x09\xde\xe8\x26\x83\x68\xc4\xd1\x24\xe6\x44\x60\x95\x86\x23\x14\xbe\x79\x5a\xb9\x5e\xcb\xe5\xe3\x66\x13\x78\x18\x55\x47\xf6\x66\xd3\x1e\x8a\x46\xc2\x8f\x10\xdf\x78\x11\xb4\x57\x86\x9e\x07\xa2\xe1\xf0\x50\x72\x15\x02\x96\x10\x02\x56\xff\xb4\xf5\xd8\x25\x17\x67\xf3\xbd\xdc\x7a\xae\x90\xf7\x0f\x8d\x2b\x09\x1e\x55\xd8\x32\xb6\x70\x56\xa0\x8b\x86\xc2\x9f\xb1\x2a\x10\xe6\x4d\xbd\x01\xe8\x4b\x7d\xa1\x50\xda\x35\x81\x57\x6f\x29\x5c\x9f\x59\x07\x6d\x1c\x52\x49\x6e\x81\xd2\xeb\xc2\x07\xd0\x1a\xe3\x9b\x2a\x19\xa8\x6b\x4f\xca\xe5\x71\x30\x48\x17\x82\x3d\xd0\x81\x39\x4e\x22\xe5\xad\x3d\x27\x87\x27\x07\x8a\x37\x77\x3e\x2b\x4e\xcb\x1f\x24\xa7\x7e\x74\x24\xd7\x5f\x4a\xc4\xb4\x84\x43\xd8\x90\x48\x68\x96\x76\x9c\x58\x0d\x87\xe6\x6b\x5a\xcf\x94\x03\x86\xb1\x3c\x47\x5d\xa0\x1e\x99\x0a\x17\x46\x1a\x77\x90\x93\xc3\xf1\x56\xc9\xff\x6c\xa9\xda\x6c\x22\x11\x2b\x5a\xc4\x0c\x0c\x1e\x41\xe6\x88\x6b\x99\x11\x70\x3d\x95\x99\x16\x21\xa4\x1e\x0e\xa3\x5f\x0a\x4b\x52\xb2\x5f\x3e\xbf\xbf\x34\x71\xc5\x74\x3c\x83\x43\xc9\x1c\x8d\xf2\xf4\x96\xcd\xca\x87\xc3\xc3\x0e\x34\xd7\x8f\xa5\x58\x01\xfa\x3b\x34\x23\x83\x07\xa8\x70\x1c\x23\x5f\x43\x23\x0b\x6f\xa1\xa5\xa1\x25\x15\x79\x4e\xf3\x7c\xf2\x6c\x5c\x82\x67\xf2\x53\x19\xbd\xca\xcf\xed\x01\x8b\xab\x24\xcd\x73\x2c\x90\x76\xe3\x77\x78\x72\x20\xb7\x3e\x4e\x63\x8d\x00\x59\xaa\x3d\xff\xd9\x10\x8e\x52\xd2\x35\x4b\xe5\x4a\x24\xf9\x78\x70\x90\xa5\x8d\x69\xb3\x69\x39\x23\x54\xde\x91\xbc\xfc\x42\xce\x99\x97\x09\x75\xd0\x85\x72\x86\x86\xc3\x30\x50\x40\x31\x72\xe1\x4e\x4b\x43\x25\xe4\xa6\x70\xbf\x50\xa5\x0d\xe6\xa1\x5a\x58\x13\xb2\x35\x8a\xf8\x78\x3b\xcb\xe5\xb0\xaf\xaf\x32\x6c\xca\x67\xba\xbc\x29\x9f\xc9\x13\xbd\xb3\x34\x7d\xc7\x93\x19\x74\xea\x1d\x49\x0d\x2f\x37\x1c\x56\xc1\xd3\xb0\xa5\x2b\x4a\xdd\x50\x52\x22\x1a\x3c\xed\xea\x57\x4a\x8b\x13\x1a\xcd\xa3\x91\x70\x9e\x27\x64\xfb\xf8\x66\x43\xa7\x62\x36\x1c\x0a\x6f\xee\x97\x4d\xe7\x67\xaa\x2c\x2b\xf7\x90\x27\x06\x9b\x99\xe9\x93\xe9\x5c\xde\x7b\x23\x38\xd4\xcb\xfd\x5d\xb1\x2c\xe1\x0a\xde\x12\x77\x3e\x6f\xcd\xc3\x82\xfe\xe9\x0a\x79\xd2\xfe\x7c\x0f\xe1\x8c\xf6\x29\xdf\x13\xf2\xb5\x8c\x64\x3a\xf5\x48\x4d\x60\x95\xeb\xe5\xa0\xce\xf5\x03\x13\xb4\x16\x35\xa7\xd7\x22\x5d\x7c\xbd\xe1\xe9\x82\x9e\xf5\x84\xab\x7c\x4f\x9a\x1f\xa8\x64\x38\x11\xea\xbf\xe1\x28\xb4\xc3\x86\xb2\x20\xc2\xff\xa5\xa2\x97\x2c\xa7\xe0\x60\x4c\xd8\x4f\x15\x91\xb3\x82\x2a\x8a\x2d\x69\x8f\xfd\xa1\x5f\x98\xb5\x43\x09\x61\xbe\x36\x1b\xef\x90\x39\xbf\x2d\xb9\xa0\x99\x7e\x72\x91\xbb\x9d\xf4\xc7\x9a\x2a\x0a\xaf\x78\xc9\x50\x81\x87\xa4\xcc\x5b\x1a\x77\xde\x45\xa6\x8a\xa9\x7a\xd2\xe5\xe0\x97\xe0\x6f\x35\x2d\x16\x14\x47\x0a\xc5\x8c\x66\x83\x54\xd6\x91\x44\x08\xc3\x78\x6f\x3d\xb0\x2c\xef\xca\x53\xd0\xc7\x78\x8c\x6f\x93\xaf\x79\x5a\x55\x20\xa6\x42\xb1\xd8\x6c\x9e\xb7\x9e\x1b\x10\x0d\x7e\x4e\x6e\xb1\x77\x70\x3d\xf4\x4e\xf4\x43\x30\xd1\x0f\xbf\xfd\x44\x3f\xfc\x7f\x60\xa2\x1b\xb4\x3d\x98\xe6\x4e\xba\xff\xda\x99\x9e\x7b\x9c\x21\x58\x64\x98\x47\x23\x63\x42\x29\xbc\x1f\x1a\xf2\xd9\x05\x60\xf3\xfb\x9a\x72\xa6\xf9\x78\x11\xfe\x76\x79\x5c\x98\xca\x56\xaf\xb3\x54\xd0\x5f\x3e\xbf\x27\xc2\x7d\xeb\xe4\xf6\xb7\xf1\x6b\x0d\x6f\xc3\x2a\xad\xfb\xa1\x13\xbb\x00\x3d\x3b\x2c\x73\x5b\x40\xce\x8f\xff\x5b\xe7\x09\xc2\x54\xb6\x47\x96\xe7\x41\xbe\x30\x40\x67\x0c\x03\x1b\x6a\x28\xc2\x7e\x9a\x6a\xf4\xcf\xc0\x03\xbd\x02\xec\x11\xc1\x4f\x9d\xde\x0f\xd2\x4b\xa6\xbc\x93\x6b\xa5\xbc\xd3\x29\xf2\xf2\x4e\x57\x5a\xe5\x17\x69\x9e\xff\x98\x2e\xbe\x3a\xf2\xa9\x90\xe0\xfd\xd7\x55\xc5\xed\x78\xfd\xf2\x23\xe7\xfa\x3c\xf9\x77\x8f\xea\xfa\xf1\x65\x9e\x5d\xb7\x4a\xd4\xa8\xf2\x7f\xf2\xc9\x77\x47\xfc\xb5\x26\x15\xe6\x21\xcb\xdd\x7b\x88\xc2\xb4\x35\xaa\xc3\x3a\xb6\xa2\x22\xf6\x8e\x89\x47\x9f\xbd\x60\x44\x0b\xc8\x9b\xbd\x91\x17\xef\xb3\xce\x18\x35\x14\x13\x37\x2a\x38\x25\x54\x71\x60\x37\x25\x74\x2a\x2e\x9b\x0d\xc3\xad\xe5\xdd\xb1\xc0\x11\xae\x49\x16\x97\xc1\x25\x27\x0d\x24\xd2\x86\xa4\x7d\x8a\xd3\xe0\x90\xc3\x65\xf0\x13\x9d\xd5\xca\x3d\x5d\xe3\xdc\x73\x7d\x88\x6b\x8d\xfe\x8d\xce\x62\xee\x27\x01\x73\xc8\xc3\x31\xe6\xe6\x6e\xda\xe8\xfc\x66\x23\x87\xf8\x83\x32\xee\x9a\x88\x33\x98\x9e\x6f\x1a\x36\x1e\xee\x22\x2e\x1e\x53\x9c\xe2\x5d\x2b\x06\x75\x38\x2b\x95\x97\x08\x60\xee\x1d\x83\x64\xb8\x23\xfd\xa0\x71\xd2\xa7\x85\x36\x1a\x29\xbe\x59\xb2\x17\x40\xc9\x80\xbf\xd1\xdf\x2e\xb7\xa4\xf9\x61\xbd\xe0\xec\x6d\x38\x3c\x34\x8e\xfb\x0f\xc7\x07\x3a\x48\x6c\x36\x41\xc4\xc9\x81\xff\x84\x1f\x0a\xf6\x71\x4a\x42\x8f\x40\x20\x2c\x73\xfd\x48\x77\xf4\xa3\x6c\xf6\x03\x04\x40\xe5\x94\xcf\xb0\xe4\x77\xa0\x23\x6c\xe6\x72\x5a\xc0\x6c\xd5\x59\xc5\xc7\x60\xe1\xbe\x91\x4d\xbb\x75\x69\x77\x2f\x1a\xf0\x59\xd8\x5e\x0a\xa8\x7b\xee\xb4\x6b\xdb\xd6\xe6\x80\x43\x3b\xee\xc9\x44\x38\xe0\xc3\xc3\x2d\x84\xd8\x2f\x75\x1f\xe9\x90\x74\x76\xad\x0e\x86\x4b\xd0\x0a\xdc\xcd\x43\x68\xdb\x90\x6c\x90\xe6\xf9\xe0\xbe\xcc\x68\x5e\x0d\xe4\xcd\x02\x8c\x10\x52\xa5\x5f\x2e\x73\x9d\x0e\xc0\x7b\x32\xfb\xbb\xbc\x9e\x08\xd7\x0b\xf0\xf4\x64\x4b\x66\x44\x84\x23\xf7\x4d\x5e\x42\x31\x45\xe0\x15\x4c\xb3\x42\x72\x23\x55\x9e\x7b\x77\x4d\xbf\x78\x17\x55\xc3\x85\x31\x61\x4f\x38\x95\x4b\x26\x96\x7c\x11\x42\x93\xf8\x1c\xf8\x5f\x0a\x66\xb7\x85\x48\x6a\x9e\xeb\x4a\x60\x24\xc9\xe1\x09\xe6\xed\x51\x85\x3b\xdc\x22\x96\x83\xdb\x55\xd9\xe1\x18\x4f\xa3\xe0\x58\x8a\x66\x00\xc1\xef\x07\x0d\x87\x8d\x80\xb8\xb3\x30\x84\xab\x38\x1c\xea\x9b\xcf\xe7\x1f\xaf\xdf\xdd\xbc\xbb\xfa\x38\xb8\xb8\xfa\xf0\xe9\xfd\xe5\xcd\xa5\x1c\x3e\xa7\xd8\xa1\xe4\x3b\xea\x5a\xab\x95\x36\x85\xc1\x20\x17\x01\x83\xbd\xd9\xc4\x25\xa1\x1d\xa3\xe8\xa0\xab\x63\xc0\xd3\xd5\x0c\x09\xa6\xb8\x9c\x96\x1d\xd5\x60\x6a\xd6\x21\xc2\x62\xbb\x55\x2d\x16\xa0\xab\x08\xa2\x21\xbc\x8e\xa3\x6b\x2a\x44\x4e\xbd\x49\x1f\xe8\xe5\xa8\x1c\x16\x7a\xe1\xac\x32\xab\x84\x66\x11\x42\x98\x6d\x36\x3b\x65\xcb\xdd\x5d\xa8\xdd\x1b\x40\x15\x8a\x7e\x19\x3c\x2c\x55\xd3\x62\x86\xe3\xb4\xb1\xd4\xa6\xc5\x0c\x74\x3c\x0a\xe5\x3e\x38\x55\xb4\x0c\x84\xc4\x69\xc2\x2a\xb3\xce\x37\x9b\xda\xd8\x1c\x1c\x2c\x62\x8a\xf5\xa4\x87\x2c\x45\x84\xf9\x4c\x0e\x4d\x18\x3a\x1c\x36\x43\xe2\x0a\x37\xd6\x3b\x47\x5b\x4d\xe2\x31\x47\xf8\xd2\x7c\xd7\x48\xc6\xd8\x83\xf5\xd2\xca\x6c\xc0\x49\x75\x17\x0b\xc0\xe1\x7e\x0e\x02\x9f\xb0\x06\x68\xae\x47\x7c\x2c\xe2\x5d\x24\x17\xb5\x2a\x08\xab\xdc\x06\x59\x3d\x83\xce\x74\xd5\x02\xa6\x26\xae\x5d\xdf\x3a\x66\x69\xb7\xf2\x07\x69\xcd\x5d\xa3\xb9\x39\x79\x56\x8c\x64\x76\xa1\xf4\x42\x27\xd3\x19\x40\x88\xd3\x0c\xbe\x94\x96\xa8\xfc\xac\x0b\x23\xac\x98\xce\x34\xee\xa6\x56\x48\xc3\x0b\x27\x18\x1a\xe3\x94\xd8\x47\xe0\xf2\x4d\x0a\x0f\xb7\x9c\x80\xaa\x56\x41\x6a\xf9\x0f\x34\x8a\x75\x23\xe0\x61\x72\x65\x58\xe7\x98\x01\x99\x66\x67\x71\x9e\xe8\x9a\x8d\x4e\x90\xcc\x95\x27\xaa\x61\x49\x5d\x28\xd1\x17\x47\x68\xb2\xd8\x6c\xac\x6d\xd4\xa1\x2c\x4d\x7f\x9f\xc5\x0b\x79\xfc\xe7\x49\xd8\x3d\x53\x1e\x9a\xe4\x89\xed\x91\x55\x4f\x52\x7d\x30\xed\xc7\xa9\x5d\xe0\xb6\x2b\xad\x36\xc8\x9e\x59\x76\x26\x57\x4c\x1a\x69\xd5\x6a\xcc\x5b\x74\x82\x84\xd3\x07\xca\x2b\x08\xd9\xc6\x7a\x97\x61\x2d\xda\x29\xc8\x18\x33\x40\x66\x83\x8a\xcc\x6b\xca\x1b\x06\x9b\x45\x19\x19\xc5\xa5\x4d\x30\x2d\x1c\xb9\x30\x9d\xc7\xcb\xb8\xc4\x11\x54\x15\x61\x60\x82\x54\x88\xcc\x11\x61\x6e\x7c\xc1\x53\xc7\xbd\xea\x36\x18\xb7\x29\x44\x68\xc1\x13\xed\xe4\x65\x53\x6f\xec\x74\xd7\xe0\x2c\xf3\x9b\xaf\x3a\xda\x68\xfd\x12\x1a\x0e\x51\x5e\xbb\x5d\x53\x4f\x30\x0f\x07\xa1\x31\x8e\x8d\xe2\xae\xe2\x1a\x37\xd3\x48\xea\xd3\x2e\xc7\x2c\xa7\xce\x02\x74\x24\xe4\x94\x83\xd5\x24\xee\x66\x50\x24\xf9\xee\x1a\x8e\x50\x50\x83\xff\x1f\xf2\xfe\xb5\xbf\x6d\x5b\x59\x1c\x85\xdf\xfb\x53\xd8\x7a\xba\x55\x40\x84\x64\x52\x37\xdb\xb4\x11\x3d\x69\x9a\xb6\xd9\xcd\xad\xb9\x74\xad\x2e\x55\xdb\x9b\x96\x60\x89\x0d\x45\xaa\x20\x64\xc7\xb5\xf4\xdd\xcf\x0f\x83\x0b\x41\x8a\x72\xdc\xae\xee\x73\xfe\xfb\x9c\x17\x89\x45\x10\xc4\x65\x30\x18\xcc\x0c\xe6\x22\xb6\x86\x6e\xba\xaa\x9a\x4f\x88\x91\x35\x11\x65\xcd\xbf\xb3\xb9\xdf\xd4\x2a\x8f\x63\xa5\xd7\x6d\x36\xaf\x51\x4c\x1a\x3a\x83\x72\x8a\x49\xda\x6c\xa6\xc5\x91\xed\x68\x2a\xef\xe0\xfe\xd2\x20\x02\x8d\x08\x7c\xa8\x1f\x0b\x62\x84\x55\x39\x38\x35\x36\x48\xf4\x85\x26\xb5\x43\x88\x50\x7a\xe0\xac\x20\x22\x70\x05\xab\x1b\xb7\x66\x7b\xa3\x18\x65\x38\x14\x15\x65\x2d\xad\x16\x68\xed\x2d\x26\x47\x7e\x01\x85\xa7\x15\x95\xa9\xb9\xe2\xa4\x4c\xb2\x10\x2a\xe0\x9e\x9c\x61\xa2\xea\x4c\x0b\xde\x66\x56\x25\x6d\x2b\x3a\x1b\xcf\x9c\x33\x55\x1e\x38\x64\x61\x4c\x2f\x38\x2d\xde\x9d\xf3\x27\xd4\x3f\x6f\xb7\x39\x8e\x95\x15\xdb\x4c\x5b\xb1\x01\x03\x4a\x2c\x85\xea\xc4\x69\x04\x51\x3c\xe3\xab\x84\x7d\x73\xf7\xf1\xdd\xcb\x66\x13\x25\x8a\x4a\x1f\x24\xcd\x26\x5a\x94\x6d\x11\x3b\x97\x37\x31\xd4\x75\x68\xfa\x66\x53\x46\x81\x8c\x4e\x1d\xf1\xca\x5a\xe6\xa0\x15\x59\x60\x90\xc7\xe2\xfc\x59\xb4\xce\xd9\xec\x9b\xbb\x17\xea\x8e\xd6\x11\xed\x72\xda\xd0\x92\x7d\x83\x82\x69\xc4\x91\x5b\x1f\x56\x32\x4e\xe7\xce\x07\x72\x43\x57\x38\xe3\x66\xb3\xd4\x06\x89\x36\x9b\x7c\xb3\x59\x8f\xa6\x8e\xd2\x40\xae\xe7\xb4\xd0\x38\xa0\xac\xe4\x88\xf8\xbe\xea\x88\x28\xc6\xfe\x64\xb3\x01\x63\xa7\x72\xd2\x6b\x12\x49\xf0\x67\x92\x0f\x78\xf0\xa2\x0c\x2c\x12\x7e\xd0\x0a\x2a\x5c\x96\x1c\x81\x2e\xb9\x26\x3b\xa6\xfd\x11\xca\x11\x23\x8d\x8f\x72\x94\x92\x0b\x86\xaf\x0e\x75\xfa\x02\x0c\x32\x56\x2d\x37\x23\x51\xfc\x25\x02\x8f\xa6\x30\x1d\xa7\x55\x8c\xd1\xd8\x9d\xcb\x63\xcf\x19\x48\x18\x6d\x31\x0e\x95\x3d\x46\x5c\x58\x85\xe8\x41\x3c\x15\x82\x2d\x55\x5a\xda\x8f\xef\x5e\xba\x3c\x98\xc8\x0e\x1b\x5e\x8c\x75\xbf\x7f\xa0\xfb\x35\x4f\xc2\x58\xb6\xb5\xf3\xe5\xde\xaf\xcc\x68\x25\x9c\x8b\xf1\x3d\x33\x8a\xfc\x00\xef\x0c\x14\xf8\x4e\xd3\x9a\xc4\x24\xc9\x94\xa3\x75\x89\x00\xbd\xfd\xdb\x64\x57\x2d\xba\x6a\xa9\xb5\x46\xd8\xb3\x7d\x7e\x72\x88\x9e\xbe\xcd\x8c\x0f\xe3\xf4\x90\x63\x5e\xc5\x90\x18\x2b\x1b\x4a\x4a\x29\x1f\xc7\x93\x66\x53\xbb\xdb\xca\x87\x03\xf7\x62\x6c\x3c\x39\x50\x17\x71\xc0\x8a\x19\x86\xb7\xd8\x82\x96\x1d\x23\x6b\x92\x4e\x80\xee\xa1\xb4\x6e\xab\xd2\x7b\x1d\xf4\x25\x31\x44\xa3\x86\xbf\xf1\xbc\x0c\x27\x63\x94\x03\x6f\x83\xa5\xc4\x3c\xa1\xb9\x72\x4e\x20\xe6\xba\x30\xef\xe8\xc6\xf7\xf5\x34\xce\x4b\x1f\x16\xfc\xc4\x96\x75\x76\xf4\x52\xda\xc8\xb8\xde\x4c\xf9\xdd\x97\x5c\x6a\x5c\x27\x30\xc8\x9c\x2f\x49\xf1\xcb\xe8\x8a\x25\x61\x8d\x6b\x77\xc3\x8e\x04\xed\x5c\x48\x94\xdd\xa6\x1b\xca\xb6\x15\x09\x8f\x36\xa4\xd8\x24\x3c\xca\x60\x03\x6d\xb1\x14\x52\xbe\x86\x8b\xde\xaf\xe1\x7e\x05\x92\x39\x01\xbb\x1f\x96\x99\x57\xc7\x65\xda\x49\xfc\x53\x08\x98\xf0\x0d\x02\x37\xe1\x8e\x3b\x72\xd4\x80\x60\x43\x87\xf1\xf5\xa1\xb2\x2b\x81\x44\x88\x71\xba\x66\x0d\x8c\x3b\xea\x30\xaf\x91\xca\xe1\x82\x6c\x47\x80\x95\xc3\xab\x36\xaf\x4e\x7b\xa5\xc7\x6f\x60\x5c\x49\xfb\xad\xec\x27\xca\xc0\x19\x0b\x33\xde\x17\xe9\x8c\x7d\x9e\x38\x22\x8e\xcd\x6f\xfa\xd0\x07\x9e\x37\xa1\x8c\xa4\x9b\x8d\xdc\x85\x0e\x9b\x34\x8b\x39\x9b\x8a\x86\x4e\xc2\x28\x59\x3d\x81\x09\x47\x58\x1d\xa6\x99\x12\x0a\xab\xc3\xd7\x3d\x9b\xfb\xdc\xd2\x0c\x32\x9d\x47\xb3\xd4\x3b\x18\x42\xba\xa3\x2b\xef\xfe\x7b\x90\x5b\x95\x5f\x8b\xd2\x21\xe6\xdb\x47\xcd\x6a\x62\x17\x91\x13\xa1\xc7\x1c\xd7\x8f\xf9\x2d\xcf\xa6\x0c\xc4\xd4\xad\x32\xba\x75\xee\xb9\x0e\xbe\x84\x8d\xd1\x58\xe1\xde\x84\x32\xfd\x09\xb8\x05\x60\x82\x04\x55\x77\x2a\xe5\xe9\xfa\x9a\x21\x06\x71\x10\x6e\x5b\xf7\x62\x9f\xe3\xcc\x53\x1a\x2f\xa4\x67\x77\x48\xb6\xc4\x3c\x77\x4d\x6a\x3e\xd9\x5d\x96\x1a\x5c\x55\x97\x43\x95\xb9\xc6\xb4\x0c\xd7\x27\x85\xf5\x27\xb7\xe7\x57\x58\xae\x53\x37\x25\x40\x78\xbd\x9a\xcc\x98\x9a\xff\x23\x16\x0b\xb8\x29\x09\x2b\x6b\x59\x98\xf7\x91\xdb\xc8\xf0\x89\xe1\xda\xa2\x00\xde\xd6\xcd\x52\xef\x1d\xa5\xea\x90\x7c\x83\xeb\xf0\x58\x49\xfb\xa4\x2e\x9b\xec\x5b\x45\x7d\x5f\xb9\xfe\x14\x16\x6f\x99\x3e\x39\xe2\x4a\x24\x02\x58\xc3\x03\x93\x19\x56\xf1\xed\x7c\xb3\xb1\x32\x16\xf8\x70\xc1\xf1\x67\xfc\xb8\x14\xff\x68\x1c\x2d\x66\x91\xd0\xb8\xa6\x6a\x69\xf5\xa0\x56\x63\xc9\xb7\x10\xab\xcb\x68\xe4\x61\x47\xbf\x02\xbd\x9c\xbd\x8c\xad\xbd\xa0\xd5\x4c\xb0\xab\x45\x06\x90\x94\x4a\x56\xbb\xf7\x0b\x8b\x7d\x77\x08\xca\xe1\x14\xee\xd0\x4a\x4d\xc4\x37\x99\xbd\x99\x72\x5f\x18\x45\x57\xa9\xd0\xb2\xfb\xf4\x28\xb0\x25\x5a\x43\xa7\xab\x58\xb6\x9b\x36\x14\x03\xd8\x28\x4d\x5e\x6f\xa0\x9d\x99\x2b\xa5\xab\x6d\xd4\x39\xc5\x8e\x7c\x62\x53\xac\x96\x60\xb3\x83\x99\x31\x06\xad\x3b\x72\xa0\x15\x63\xbb\xb6\x0f\x31\xba\xf4\xe8\x28\x23\x95\x5a\x3b\xec\x33\xcd\x9a\x4d\x94\x3d\x54\x63\xb3\x91\x0c\x66\x66\x61\x87\x25\x97\x0b\x56\x52\xce\x6a\x71\xab\xb5\xae\x2e\x7e\x49\x0b\x5d\xb3\x9c\xbc\xbc\xab\x51\x54\x29\x31\x54\xd7\x38\x88\x38\x4b\x5e\xae\x38\x8e\x0c\xbb\x8a\x49\x4e\xfd\xf3\xfc\x02\x12\x67\x57\x6b\xe5\x13\xec\x9c\x43\xe7\x9e\x97\xe3\x5d\x9c\xb1\x8e\x2e\x07\x65\xb4\x61\xd5\x5b\x2b\xcf\x2b\xa3\x36\xb7\x34\xd2\xd9\xaf\x52\x54\x73\x84\xca\x7d\x34\x48\xe3\xe4\xaa\x64\x1c\x16\xa9\x8f\x0e\xdb\x87\xaa\x16\x64\xdc\x87\xfb\x9a\xfd\x67\x3a\xeb\x14\xa4\x69\xb3\x71\xba\x1e\xd5\x68\xaa\x13\xc9\x75\x27\x56\x23\x6b\xd4\xb1\x4c\xe1\x1a\x49\x88\x3d\x7a\x2d\x4d\xc4\x24\xb1\x37\x03\xbb\xac\x83\xfa\x50\x0e\x73\x65\x09\xdf\x53\xc3\x34\x80\xb5\xca\x5e\x84\x57\x90\x2b\x88\x16\xae\x1a\x76\xd8\x09\x16\x9c\x5d\x9c\x3f\xff\x1c\x8b\x07\x9c\x0f\xe8\x0e\xce\x1d\x14\x36\x7e\xb1\x6b\xe0\xe7\x79\x60\x0c\x84\x52\x1a\x8f\xc5\x04\x1b\x35\x2d\xdb\x6c\x52\x47\x57\xc7\x6a\x78\x79\xe2\x8e\x48\x9e\x78\x3b\xf6\xca\x35\x7b\x5d\x1d\x8d\xea\x7d\xb9\x85\x69\xc5\x55\xd1\x75\x95\x76\x1b\xd0\x41\x13\x88\xa8\x7c\x0f\xfc\x7e\x72\xf7\x88\x16\x74\xcd\x9a\x36\x60\x81\xf7\x39\xd5\x16\x18\x25\x1f\xa5\xd4\xe6\x9c\x22\x65\x52\x5b\x25\xd4\x5e\x23\x74\x85\xba\xdb\x28\x37\x38\xde\xc0\xee\xc9\xd4\x59\x71\xe7\x56\xc4\xc9\x4d\xae\x3a\x29\x1d\x65\x05\x01\xf7\xab\x04\x3c\x70\xcf\xb7\x3d\x97\x2d\xd6\x54\xd7\x75\xdb\x10\xfc\x6e\xc7\x87\x51\x23\xbd\xf6\x60\x74\x1b\xae\x11\x2c\x9d\xb9\xb8\xee\xf5\xc6\x05\xae\x74\xac\x34\x9b\xac\xb3\x84\x5f\xa8\xfc\x02\x13\x56\x1e\x98\xaa\x55\xe7\x49\x50\x39\xa8\x14\x6c\x2a\x98\xa9\x36\xf9\xee\x4e\x31\xc6\xb7\x4e\xae\xf0\xc6\x55\x96\x25\x2c\x72\xe2\x56\xb1\x91\x30\xe6\x96\x21\x40\x76\x5a\xb3\xea\x3b\xca\x05\xeb\x5a\xb3\x73\x60\x7a\x01\x26\x35\xb8\x9b\x25\x49\x76\xfb\x4e\x33\xf9\xb9\xbb\x06\x3b\x60\x3f\xd8\xbf\x29\xec\x67\x6e\x18\x95\xea\xf2\x8f\x76\x8b\xaa\xfd\x23\x1c\xee\x90\x38\x81\xb7\x95\x41\x9b\xcc\xf0\x35\x3e\xf8\x0e\x2d\x47\x66\x4f\xe8\xd4\xf5\x76\x8f\x78\x0d\xdc\x28\x37\x98\x64\x65\x7a\xf6\xd0\x06\x83\x84\xa7\x5b\x84\x0f\x5e\xb9\x92\x30\x4b\x67\xf4\xd5\xee\xda\x03\xee\xfe\xb6\x83\xd9\x05\xc7\x67\xb8\xbb\x2d\xf9\x50\x13\x36\xe0\xdb\x7d\x7c\x68\x8d\x75\xd0\xa5\xa1\x99\x1f\x48\xe9\xd9\xe8\x42\x0b\x91\xc0\x98\x74\x15\x25\xa9\x32\x8b\x92\x7f\x0e\x2a\x66\xec\x0d\x23\x2a\x50\x4a\xb9\x32\xea\xb8\xd4\x49\xa9\xf5\xf1\x8d\xac\x12\x54\xd9\x3d\x18\x4b\xf7\xba\xe3\xc3\x31\x61\x72\x66\x56\x41\x49\x26\xa6\x8b\x9a\x5a\x0e\x3e\x16\xcd\x14\x6e\xac\xb8\x84\x9e\xd5\x31\xb2\x0a\x0a\x55\xde\xd7\xec\x51\x60\xea\xdd\x26\xab\xf0\xdc\xd5\x12\x60\xb2\x4b\x28\xd0\x8e\x63\x2e\xb3\x8e\xb9\x6c\xb3\xa9\x09\x58\xc7\x70\x6d\x1c\x3b\x75\x80\x6d\x11\xc3\x23\x54\x37\x9e\x9a\xb2\xbd\xc6\x01\xc6\xb4\xcb\x81\x0e\x2e\x31\x8b\x9a\x63\xc7\x21\x53\x4b\x5e\xad\x6e\xef\xe1\xf6\xef\x22\x79\x06\x6a\xd3\x7c\x65\x60\x6f\x57\x4a\x59\xdf\x57\x29\x91\x2b\xc2\xd5\x11\x5c\xad\xd1\x29\x1a\xf9\x5a\x2b\x76\x2a\xf8\xf5\x31\x35\x32\xd2\x9e\xe3\xb4\xfc\x45\x6e\x4c\x88\xf6\x1d\xbe\x8e\x30\x5f\xfa\xb0\x04\x92\x7a\x5f\x33\xb3\x05\x95\xd5\xa1\x19\x79\x19\xd0\xac\x7a\x12\xc2\xd8\xf7\x07\x4a\x9a\x2e\xd8\xf4\xd3\x77\x19\x87\x33\x58\x99\xa1\x2b\x7b\x21\x6c\x78\x2f\xbe\x4e\xbf\x61\xd7\x19\x67\x20\x23\xfe\x90\x65\x9f\x9c\x6a\x02\x9b\xf0\x19\x73\x26\xa0\x42\xf9\x65\x64\xdb\x78\x7a\x2d\x18\xdf\xd3\x84\xf6\x5a\xbc\x62\xd3\x6c\xc9\x0c\x73\x5f\xae\xb2\x2e\x6d\xa0\x3d\x6c\x67\x19\x5d\xf7\xeb\x38\x1c\x75\xc5\x3e\x94\xae\xdb\x8e\xaa\x32\x57\xda\x90\x75\xad\xfe\xee\x3a\xe3\x56\xc7\x56\x52\x0e\x55\xab\x2b\x90\x2a\x7b\x18\x5b\xf7\xc1\xa6\xe3\x6b\x2b\x4e\xcc\xd6\x90\xcc\xff\xeb\xab\x62\x5d\xbe\x3e\x5c\x64\xd9\xa7\xaa\xca\xa6\xda\xd2\xab\xbf\xd4\x5d\x9c\x1e\x7e\xbd\xac\xe9\x24\xaa\xff\x1e\x56\xfa\x2f\xce\x4c\x76\x15\x59\x4c\xa9\xf4\x97\xef\x03\xa5\x44\x9b\x43\xb3\x4d\x41\xc6\x2a\xc7\xdb\x80\x1b\xd0\xea\xa9\xbf\x8b\xd7\xf5\xbb\x4e\x1f\xbd\x92\xec\xb8\x86\x2f\xb7\x71\x92\x68\x54\x55\x50\x25\xe5\x9d\xa8\x09\x20\x5f\xa7\xef\x17\x11\xd7\x1a\x16\xd9\x0b\x62\xa4\xe1\x2c\x5c\x83\x8c\x27\xbb\x23\x2b\xef\x96\xfd\xdb\x17\x8e\x58\x97\xbc\xe4\x22\xca\x17\xef\x5c\xad\x0e\x7c\xf3\xd0\x60\x0a\x78\x37\x08\x48\x4e\xe5\x3d\xe1\x80\xa2\xac\x2d\x92\x67\xf2\x5e\xcd\xe0\x8b\x79\x2a\xf1\xfb\x7a\x9d\x5c\xc7\x49\x02\xe1\xce\xe0\x62\xe0\x30\x4a\x67\x87\xc6\xbb\x54\x36\xa3\x8a\x61\xd1\x2a\x30\xa8\x0c\xb5\x3e\x6e\x9c\x3c\x09\x18\x69\x48\xfe\x57\x6e\x09\xd0\xd1\x6b\xac\xd9\xd1\x66\x34\x9b\x5c\xdf\x02\x57\x5e\x60\xa2\x5f\xd8\x78\x11\xb5\x46\x45\xc6\x01\x22\xbe\x46\x29\x76\xae\xef\xac\xe6\x12\x7c\xce\x94\x3f\x04\x0e\x83\x3d\x6f\x08\x1f\xfb\x13\x1c\x76\x1f\x7a\x4d\x94\xbb\x3a\x14\x2b\x7f\x22\x66\x0d\x7f\xac\x06\x53\x0e\xcc\x71\xc6\x88\x4b\x3a\x2a\x88\xa4\x08\xd7\xba\x64\x97\x94\xc5\x0f\xe9\x72\xd5\x32\xa9\x76\xd9\xec\xf0\x9a\x67\xcb\xc3\x2c\x65\x87\xd9\x35\x38\x0b\xa9\x45\x93\x10\xce\x77\x16\xcd\x9c\x01\xfb\x99\xb1\xd2\x71\x53\x2f\xe1\xd6\x5f\x97\xd4\x0c\x78\x1f\xc5\xad\x39\x78\xff\x22\x9e\x3a\x77\x30\x95\x53\x7e\x67\x97\xed\x70\x2a\x15\xcd\x6a\xb5\x00\x54\xb0\x3b\x3b\xca\xee\x69\x08\xab\xe7\xf6\x58\x3e\x1b\xf7\x13\x04\xcb\x7f\xa0\xc2\x53\x87\x19\xed\xdb\x3e\xe2\x60\xae\x18\x4a\x77\x0d\xb6\xd4\x1d\x95\x21\x6b\x9a\xe7\x47\x0d\x4b\x75\x21\xef\x07\x98\x5f\x09\xa2\xae\x76\x2d\x83\x62\xbc\x8e\x4b\xd8\xab\x1d\x8f\x79\x95\x2c\xab\xeb\xaf\xf7\xeb\x15\xe3\x53\x36\x2b\x07\x5e\x00\x4b\xe0\xc2\x30\x58\xcb\x2c\xd6\x52\x44\xcb\xe5\x15\x63\x0e\x66\xed\x8f\xcd\x80\xb4\x91\x7d\xf5\xfe\x5e\x7f\xd7\xc0\xcd\xe6\x91\xd8\x53\x67\x65\xaf\xf7\xeb\xec\x96\xff\xcb\xb5\x4e\xae\x0c\xb6\x24\x07\x81\xab\x6b\xf5\x5e\x13\x71\xdc\x6c\x3e\x7c\xeb\xec\x6a\x6d\xed\xfa\xe0\xad\x8a\x4a\xae\x6e\x20\x9e\x25\x51\x9e\x63\xc4\xc8\xf8\xfe\x13\xbb\x0b\xad\xbc\x45\xea\xd3\xb2\x95\x64\xbb\x23\x4a\x3f\x8c\x4a\x25\x6a\xcd\x5c\x11\x0a\xe1\x9a\xdc\x74\x35\x6d\x51\xb6\xdd\x92\xd2\x10\xf4\xb6\xde\x37\x12\x57\xb5\x52\x11\x36\x47\x75\x85\x21\xaa\x19\x5b\xad\xac\xfa\xc8\x11\x1b\xc9\x87\x11\xb6\xdd\x4e\xb0\x92\xca\xbf\x75\x89\x97\xc6\x33\x39\x52\x40\xbe\xd7\x25\xec\x74\xee\x7e\xed\x89\x01\x0b\xb3\xca\x94\xbd\xcd\xb3\x0c\x72\x7c\xcb\x9d\xf3\x0e\xfa\xc7\x9a\xd7\x76\xfc\x98\x78\x11\xa0\x35\x75\x34\xdd\x70\xcf\xab\x25\x60\x68\x33\x4e\x17\x8c\xc7\x22\xc7\x88\x4b\x5e\x9d\x7f\x91\xe7\x77\x9c\xbe\x2b\x54\x47\x52\x87\x87\x08\x91\xb3\xa7\xea\x0e\x13\xc5\xa1\xef\x3d\x4f\x80\x76\xf2\x3f\x29\x53\x15\xf4\x05\x50\xbc\x41\xee\xff\x04\x49\x71\xf6\x88\x24\x2e\x7c\x8b\xbe\xc5\xe4\xc5\xff\xf0\x52\xa9\x00\x69\xfa\xef\x66\x33\x9e\x3c\x7a\xb9\x76\x0f\xcd\x0a\x7e\x2a\x16\xa7\x24\xee\x2a\xf0\x49\x86\x47\x87\x8c\x9e\x19\x7e\x7b\xcf\x02\xd9\x05\x2c\xaf\x45\x8d\xb4\xea\xea\x82\xdc\x2f\x89\xc3\x71\xe6\x24\xa5\xf7\x5b\x49\xe1\xd6\xc8\x09\x3a\x38\x96\xac\xcb\x84\x0a\x65\x7a\x53\x3e\x8e\x78\xe9\xbe\xac\x28\x56\xf0\x54\xa7\xb3\xe4\x67\xcc\x87\x7a\x4d\xf5\xdd\xa5\xb1\x5e\xb3\xdf\xe1\x1a\x4d\x8a\x7b\xf6\xe9\xa6\x5c\x1e\xcc\x78\xb1\xf2\x22\xbe\xc9\xf1\x65\x3c\xfb\xea\xb8\x23\x58\x2e\x50\x8c\x47\xe9\x38\x9e\x50\xd1\x89\x67\xa1\xfa\x45\xd2\xad\x41\x9f\xef\xfe\x87\xd1\x47\x9f\xbf\xa9\x7b\xfe\xfe\x5b\x08\x54\x28\x9d\x8c\xc5\x01\xc4\x84\x28\xc7\xdf\x8a\x91\xa8\xf8\xdf\xe2\xb2\x79\x67\xd9\xd6\xce\x44\x3c\x2f\x6d\x3a\xc9\x15\x73\xd2\x98\x31\x0b\xfd\x06\xde\x6c\xa0\x4c\xa3\x64\x49\x3e\xa9\x15\x41\x52\x90\x3b\x34\xac\x0f\xac\x03\x29\xbd\x37\x64\x22\x7c\xad\x36\x77\xf8\x1d\x51\xea\xaf\xf0\x85\x8a\xac\xf8\xf2\xff\x86\x6d\x4d\xb9\xa2\x39\x69\xf9\x96\x91\x97\x1e\x89\x35\xdb\xce\x8b\x4c\x17\x9a\x10\x3c\x70\xa3\xfa\xd8\x35\x76\x5d\xda\x6a\xe3\xbc\x2a\x0b\x93\x0c\x39\x94\xdb\xc4\xfe\x76\x77\x71\x0e\x41\xb8\x48\x5e\x58\x9a\xe6\xdf\x65\x1c\x45\x52\x24\x21\x6b\x9a\x8f\xf3\x5d\x17\x8e\xd2\xfa\xe9\x81\xe8\x59\xe7\xe0\xdf\x00\x66\x68\x8a\xc3\x8e\x2b\x04\xa6\x52\x7d\x77\xe8\x60\xf2\xa6\x86\x6f\xc3\x00\x91\x05\xb9\x26\x77\x64\x4e\xae\xc0\x56\x70\x49\x6e\x4a\x87\x90\xbd\x94\xc0\xe4\xd2\x5a\xf5\x59\xc2\xe1\x2e\x0a\x84\x03\x59\x53\x9f\x24\xb6\xde\xf9\xfa\x22\x39\xf7\xbc\xb5\x64\xc0\xc4\x78\x3d\x71\xae\x06\x77\x3e\x2f\x29\xdc\xf0\xfd\x25\x5d\x1f\x5c\x71\x16\x7d\xda\xaa\x66\x9d\x08\x12\x6b\x65\x7d\xbb\xc6\x33\x8a\xa6\x54\xb6\x8b\x8b\x53\xa9\xe2\xc1\x30\x5e\x4f\xc8\x42\xfb\x09\x29\x6a\x6a\xe3\xf7\x8f\xd6\x4f\xe8\xe5\x68\xa1\x67\x0b\xec\x1c\xe0\x89\x63\xaa\x8d\x66\x84\x9b\xef\xc8\x0d\x59\xe1\x10\x5d\xd3\x1c\xcd\x30\x59\x54\x75\xd9\xb2\xfa\x77\x19\xd7\x61\x7d\x74\x2c\x9d\xea\xf7\x24\x25\x6b\x72\x8d\x71\xf8\xe7\x7a\x25\x51\xb3\x89\x16\x74\x51\x91\x4b\x14\x21\x5f\x14\xec\xc2\x1d\x5d\x35\x9b\x2b\x7b\x86\x54\x27\xdc\x6c\x2e\x1c\xee\xfd\x0e\xec\x8f\x35\x29\x84\xef\x0c\x51\x2a\x6a\xdd\x61\x32\xa7\x2b\x82\x24\xa4\x36\x9b\x45\x55\x5c\x40\x2b\x48\x22\x70\x49\x5f\x45\x62\xd1\x59\xc6\x29\x5a\x93\x4b\xf9\xc9\x02\x93\xac\xd9\x3c\x92\xc3\x9e\xd3\x79\xed\xb0\xe7\x76\xd8\x98\x5c\x95\x6f\xc1\x8c\xab\xc4\x1c\x4e\x95\x1b\x3b\xfe\xdd\xf8\x1a\xaf\xa4\x34\xa9\xdb\xd1\x09\x2a\xf2\xc3\x5b\xc6\x99\x8d\xee\xbe\x88\x20\xec\xbb\x0e\x55\x32\x53\xab\x73\x68\xc2\x31\x82\x3c\x2b\xe5\x6c\xb8\x2c\x0a\x0f\x1b\x9e\x13\x4d\x56\x9f\xc8\x71\x7a\x13\x25\xf1\x4c\x32\xfb\x3a\x7a\x3a\x2a\x8f\x57\x4e\x39\x46\x57\xbb\xb6\x1b\xbf\xbb\x56\xdc\xf7\x5b\x4c\xae\xca\xdb\x75\xb7\xe5\x7d\xce\x39\xda\x78\x56\xd4\x1a\xcf\xaa\xf4\x03\x10\xa3\x28\x2e\xf3\x7b\x68\x97\x19\x7c\x08\x5b\x6b\x48\x9d\x4b\x31\x12\x32\x05\x65\x4c\xb1\x1e\x60\xad\x41\x4b\x36\xd0\x64\x8d\x12\x5c\xe2\x17\xf6\xe0\x78\x41\x4d\x0f\xd2\xce\x2a\x5b\x21\x65\xf0\x00\x01\xc0\x9a\xcd\xd8\x1a\x14\xd8\x38\xcd\x2a\x6c\x8d\xe2\x7c\xab\xb7\xdd\x45\xa5\x04\x48\x42\x7d\xad\x8a\x09\xcc\x04\x37\x9b\x53\x83\x85\xe6\xbe\xeb\xca\x5e\xf9\x68\x2e\x98\x91\x02\x6a\xa1\x20\x05\x2f\x15\xe6\xc6\x94\x3a\x4c\x74\x90\x58\x10\xaf\x5d\x80\xd7\xcf\xbd\xf6\x48\x31\x12\xab\xb2\x4a\x4e\x24\xa7\x30\xb5\xdc\xd4\xf9\xb4\xdd\x3e\x97\x44\x34\xa3\x71\xb3\xc9\xc0\x84\x5c\x76\x29\x01\xe5\xf0\x30\x51\x65\x2d\x72\xca\xc7\x53\xb9\x24\x11\xc6\xc9\x38\x87\x50\x4c\x1a\xd8\x07\x06\xd8\x47\x3b\xa6\xf5\xf9\x9e\x64\x2d\xb3\x78\x96\x7e\x5d\xa4\x4d\x61\x69\xb6\x9e\x2f\x0e\x55\x7c\xa5\x63\xc8\xa7\x18\x4f\x95\xf9\x3c\x13\x8c\xe7\x87\x22\x3b\xcc\x23\x11\xe7\xd7\x77\xe0\x8c\xaa\x35\x5a\xb5\x5b\x50\xc5\x4d\x85\xd0\x88\x30\xce\x6c\x9c\x4f\x9c\x15\x29\x89\x25\x95\x05\xd1\x62\x48\xa2\x85\x8f\xdf\xf0\xc1\xcd\x9f\x33\x17\xfc\xe3\x7f\x98\xa9\x59\xf3\x84\x72\xf9\xff\xdf\xc1\x7e\x38\x03\x34\x3a\x1a\xe0\x34\x77\x1c\x4d\x9c\x25\xbc\x41\xd7\x85\x72\x6a\xeb\x58\xbe\x2b\x0e\x40\x9f\xfa\x2b\x30\x11\xd5\x7e\x25\xd6\xb2\x42\x05\x8b\x5a\x95\x5a\x2b\xde\xa9\xa8\x93\x47\x01\xb9\xb6\x36\x1a\x07\x3a\x08\x1f\x99\xda\x38\x7f\xe7\xc9\xc5\xf4\xdc\xf3\x12\x8c\x72\x8a\x22\x5a\x5d\x4f\x94\xd1\xd5\x38\x71\x8e\x70\x67\x79\xad\x94\x99\x59\x11\xd3\xd6\xc3\xa3\x14\xe5\x38\xac\xc6\x78\xa2\xf5\x41\x9f\x52\x0c\xbe\x2c\x25\x0a\x90\x4c\xc8\x62\xb3\x89\x76\x4e\xb5\x35\x1e\xa1\x05\x3d\xf2\xc9\xac\x5a\x9f\x46\x38\xdc\x2d\xb4\xde\x25\x31\x9a\x95\x4e\x81\x55\x59\xed\x3d\xd3\x18\x4a\x7e\xd8\x0d\x06\x9e\xad\x0e\x2e\x5d\x43\xfb\x65\xb4\x0a\xcb\xd7\x2a\xa5\xb0\x0a\x4e\x7c\x8c\xc5\x4e\x4c\x0c\xa7\xda\x32\x5a\x21\x56\x1f\x6c\xa0\x38\x55\x2c\xc5\x20\x29\x3d\xf2\xc1\xb9\xa9\xd9\x4c\x95\x7f\x13\xe8\xc6\x08\x53\xc9\x58\xc8\x7d\x94\x17\xd1\x0c\xb7\x98\xa4\xd4\x38\xb4\xac\x22\xb1\xd8\x6c\x1a\xa5\x07\x15\x5e\x55\x15\x59\xa9\x51\x45\xac\x1c\x82\x59\x88\x89\xde\xbc\x57\x59\xe4\xcc\xc4\xd4\x05\x63\x00\x07\x45\x4a\xca\xef\x52\x54\x89\xf2\xab\xda\x68\x10\xe1\x6e\x94\x40\x10\x5b\xf5\x35\xab\x59\x57\xed\xf7\x9b\xca\x8d\x7a\x24\xf6\x04\x00\xa8\x8f\x99\x11\xa2\xd8\x09\x0c\x81\x49\x5c\x1b\x73\xa2\xe2\xf8\xa7\x7a\x2b\x33\x19\x25\xb9\x86\xc4\xb2\x25\x63\x16\x18\x7f\x31\x9e\xc0\x53\x14\x13\x8e\x49\x56\xf5\x7c\xaf\x14\xa0\xac\xde\xf3\x9d\x15\xce\xe3\x8e\x89\xce\x34\x5b\xae\x12\x26\x18\x78\x86\xe3\x2d\xd9\xb5\xeb\x2a\x63\x70\x11\xbb\xe0\x56\x5f\xb3\xc0\x3c\x0b\x3b\xaa\xc2\x8d\xd2\x89\x42\x64\x23\x6a\x28\xad\x05\xde\x6e\xb5\x33\x71\xd5\x2c\x07\xcc\xa9\x9a\xcd\xc4\xb1\x89\xac\x33\xae\xc2\x8e\x2f\x6d\x89\xf0\xbb\x7e\x13\xe0\xf7\x6a\xcd\x2a\x6a\x43\xb6\x28\x4b\x71\x45\x3b\x15\x9f\x53\xe3\xe8\x29\xc7\xbc\x25\x3b\x38\xa1\xf8\x76\xa8\xf8\xf1\xdd\xcb\x1a\x3f\x9a\x5d\x13\x33\x37\xe4\x77\x39\xa8\xb0\x18\xfb\x13\x1d\x57\x98\xbc\x37\x37\xf8\xc6\x42\x4e\x39\x84\x13\xeb\x89\x57\x86\x5a\xe5\x90\xb7\xb5\x54\x34\x73\x71\x08\x99\x83\xe5\x00\xd8\xac\x01\x4e\x38\xc6\xbf\x6f\x97\x34\x15\xbe\x7e\xac\x84\x0a\x1f\xb2\x1a\xe5\xf3\xfb\x9d\x95\x27\x90\x6d\x7d\xc9\x66\x71\x24\x1c\x48\x3d\xea\x6b\x95\x31\x87\xb3\x6b\xce\xf2\x45\x0d\x30\x6b\xf7\x25\xe1\x54\x8c\xc4\x6e\x44\x9b\xb4\x62\x03\x7d\xa0\xac\xc9\x88\xb2\x65\x88\xd3\xf9\x61\x74\xa8\xbb\x2a\x39\x6f\x38\x91\xef\x1f\xf0\x0d\x74\xe5\xdd\x90\x6d\x36\x10\x4f\xd0\x60\xdd\x3e\xc7\x41\xa5\x36\xdf\xf5\xf6\xdf\x6c\x78\x55\xc4\xd8\x5a\x03\x91\x1a\x23\xcb\xd8\x35\xad\x14\x65\x37\x4e\xe1\xda\x57\x66\xd6\xbe\xd2\x35\xae\xcc\x2c\x02\xfc\x23\x16\x8b\xc7\xac\xaa\x69\xc6\x76\x04\x94\x5b\xf9\xab\xee\xae\x13\x64\x20\xc8\x50\x15\xf5\x49\x00\x81\xc5\x53\xa5\x48\x49\xc7\x52\xc4\x28\x81\xd9\xf1\xb8\x8c\xb6\xb8\x1c\x8e\xc8\x59\xd8\xca\x79\xb2\x13\x97\xa8\xb8\xb2\xac\x84\x26\x4a\x9c\xe0\xeb\xc4\x31\x77\x77\x2d\xee\x0b\x93\x68\x94\x90\x75\xc5\xa3\x69\xe2\xa8\x4a\xb1\xe3\xfa\xef\xd2\xfc\x7c\xe7\xe4\xb6\x8e\xbd\x8c\xc8\x1d\x0c\xd3\xda\xa1\xaa\xa5\x68\x70\x75\x10\x11\x70\x48\xd7\xee\x80\x7d\x71\x6c\x00\x5c\x5a\xf6\x55\x3e\xfe\x36\x9c\x5c\x09\xb6\xe9\x5f\x06\xe9\x96\x18\x9b\xe3\x9a\x09\x15\xa7\x70\x26\x97\xdd\x1d\x88\x1b\x27\x54\x6d\x4e\xc9\x9c\xe6\x3b\x9e\xa6\x2a\x12\x41\x59\xbb\x06\xdb\x2f\xa1\xbb\x5c\x45\xa1\x96\x5b\x63\x32\xd5\x99\x4b\x32\x9a\x58\xc9\xeb\x22\x6b\x36\xf3\xf1\xd4\x06\x56\x62\xe7\x9e\x37\xc5\xe7\xf1\x35\x9a\x52\x6a\xeb\x95\x7b\x57\x19\x52\x96\x07\xab\xb2\xff\x46\x61\xe0\x3b\xf5\x02\x89\x59\x49\xa9\x40\xf3\xd3\x6f\x91\xbb\x98\xeb\xd2\x62\xee\x68\x04\x57\x24\xd9\x81\xfb\x5a\x65\x1c\xab\x03\x7d\xc5\xe3\xbd\x1c\x07\x09\xc0\xc9\x37\x9b\x23\x33\x9b\xc3\x85\x8e\xec\x7d\xbf\x3d\x88\xd1\xb5\x09\x04\x71\x47\x4b\xc1\xb9\xec\x65\xeb\xfc\x30\x4e\x0f\xef\xf0\x5d\x55\xa0\x9c\xe3\x66\xf3\xba\xae\x10\x5d\x8f\xe7\x13\x7a\x37\x9e\x17\x11\x31\x16\xcd\xe6\xd1\x0c\xba\x2a\xb0\xa4\x86\xa6\xd7\xd3\x89\x83\x8a\xdd\xbd\x83\x63\x12\xb5\x24\x09\x11\xe3\x60\x02\x07\x14\xd8\x16\x85\x3b\x16\xaa\xbb\x27\xef\xd4\xb9\x73\xab\x0d\x32\x14\x80\x55\x71\x92\xcd\x43\x75\xdc\x97\x5c\x70\x5f\x39\x51\xad\x2f\x75\x54\xeb\xfc\x66\xf5\x50\x4c\x6b\x37\x95\x72\x35\x8e\xf5\xbe\x28\xd6\xee\x4d\x12\x98\xc7\x4a\x76\xf0\x59\x94\x24\x57\xd1\xf4\x53\x61\x09\xbb\xd9\xa0\xda\x0a\x10\x01\x5d\x54\x92\xf6\x82\x74\xd9\x3d\xda\x8d\xcb\x6c\xb0\xe3\x97\x31\x9b\x1c\xfc\xa2\xb2\x12\x3a\xfe\xa1\x7a\xa0\x01\xa5\xf4\x47\x9d\x18\x54\x93\xa5\x55\x74\x97\x64\xd1\x2c\x84\x8b\x6a\xd1\xb9\x9c\xaf\xe3\xd9\x8f\xec\x8e\xc4\x33\xf9\x14\xcf\x08\xc4\xc6\x7d\xad\x2a\xcf\x98\x88\xe2\x44\xbe\xe0\x2c\x5f\x27\x82\x40\xf2\xc2\x17\xb3\x10\xe2\xc1\xc8\xda\x09\x78\x21\x8b\xce\x25\xfc\x20\x22\x5e\xb2\xf7\x22\x5a\xae\xc2\x6f\x25\xef\x97\x66\xb7\x08\x13\xe5\xab\xf8\xcb\xb8\x11\x83\xd8\x2e\xa7\xd1\xbe\x8d\xc5\xa2\x0d\xa1\x27\x1b\x93\x51\xc1\xff\x98\x86\xb0\x5a\xc7\x2d\x6e\x36\x73\x26\x3e\xc4\x4b\x96\xad\x05\xaa\x62\x0a\x31\x11\xb5\x19\xf5\xcf\xd9\xc5\x8f\x86\x5e\x30\xcf\xc3\x88\x53\x24\xe8\x8f\x63\x06\x41\x21\x60\xce\xb8\x23\x27\x4b\x79\xe7\x13\xbb\xf3\x78\x27\x9e\x41\x74\x9f\x38\x99\x7d\xef\x16\xeb\x29\x12\xae\x1c\x83\x20\x30\x99\x8a\x95\xa9\x4b\xd4\x13\x26\xbf\x58\xeb\x38\xa1\xcd\x52\x6d\x47\x07\x3f\xda\x74\x57\x5b\x32\xf0\xcb\xe9\x8b\x4d\x74\xda\x66\xb3\xce\xb2\x19\x2e\xdd\x8d\x76\x43\xeb\xe8\xcd\x62\xb3\x83\xe2\xa0\x91\xe5\x28\x77\xa2\xd3\x2e\xb4\x12\xc3\x0d\xf0\x8d\xef\xdd\x80\xdc\x9a\x4d\x54\x4e\x79\x00\x5f\xfb\x32\xa9\x48\x07\xda\x56\xda\x66\x39\xd5\xc5\xff\xd2\x1f\x33\xf2\xaf\x52\xbe\x58\xbd\x1e\x6e\x6c\x34\x46\xff\x93\xfc\xa7\x49\xed\xfd\x90\xa8\x51\xb4\xfe\x4f\xdb\xfa\x3f\xcb\x01\x99\x6d\x8d\xff\xa4\x8c\x4c\x2b\x69\x62\x8b\xec\x70\xa2\x02\xba\x12\x28\x9b\x4d\x59\x74\x59\x01\xb0\x35\x1d\xa0\x34\x1a\x95\xcf\x74\xd1\xb9\x54\xf2\x05\xa5\x5f\x8d\x96\x10\x34\x4a\xef\x02\x1c\x3a\xef\x7e\x1a\x49\xa4\xcd\xd2\xe7\x16\xaa\xe4\xae\x54\x19\x87\x73\x24\x4c\x24\x42\xdb\x05\xc7\xf7\x02\x1c\x02\x96\x60\xe8\x16\x2e\x94\xbd\x1b\xa9\xf1\x03\xd1\xde\x4e\x78\x0b\x7f\x43\x39\x8d\x7f\x8d\x50\x4a\xf5\x62\x90\x7f\x39\x2b\x0a\x7d\xa7\x18\x87\x35\xf6\xef\x7c\x54\xa5\x63\xbf\x74\xa2\xfc\x2e\x9d\xee\xf8\x2e\xa7\xf4\x28\x20\x55\x93\x40\xc9\x12\xc8\xf5\x65\x36\x2c\x3f\x49\x77\xd7\x90\x41\xc0\x33\x51\x9a\x68\xba\xd9\x20\x70\x21\x15\x47\x72\xc6\x6a\xaa\xa1\x9a\x78\x65\xca\xb6\xaa\x9a\x34\x58\x4a\x69\x8a\x70\x70\x94\x36\x9b\x71\xb3\x59\xbc\x8f\xe1\xbd\x82\x8b\x69\xd1\x4d\xbb\xad\x23\x41\xcb\x55\x12\x6a\x05\x71\x78\x54\x23\x9b\xe8\xbd\x57\xf1\x78\x62\xcd\xa6\xe3\x7a\x40\x45\xd9\xd5\x80\x0a\xbc\x45\x02\x9b\x66\x15\x26\x26\x48\xb8\x6e\xfa\x10\x81\x9a\x59\xe4\x90\xa8\x67\x7e\x23\x66\xf1\x83\x5c\x49\x71\xcd\x7e\xb4\x34\xe6\x74\x16\xc3\xbe\x57\x01\xcd\x54\x75\x88\xb6\xaf\x5f\x7d\x45\x7c\xc0\xf2\xcb\x7c\x7d\x95\x4f\x79\x7c\x55\x64\xf1\x1a\xfd\xd2\x29\x88\x6d\xb3\x99\xa1\x86\xb6\xf7\x63\xb3\x06\x61\x38\x34\x2b\x7f\x45\x98\x3b\xe2\xbb\x7d\x9d\xab\xc7\x9f\x88\x3b\x0e\x8b\x3d\xe5\x36\xe6\xd5\x20\xda\xe5\x01\x42\x4e\x11\x7d\x83\xc9\x2a\x1b\x27\x86\x00\xe0\xf2\x8f\xf7\xd5\x84\x72\xf8\xf1\xd3\x84\xa6\x30\xcf\x0c\xe0\xa7\x35\x0c\xee\xf8\x4b\xb1\x99\xad\x20\x53\xed\x36\xa5\xe6\x6b\xc9\x62\x55\xc1\x93\xc2\x2e\x77\x80\x14\x36\x94\xf3\x94\x82\x17\xf1\x8f\x76\xcd\x2a\xf4\x96\x8e\x8a\x08\xf1\x16\x3a\x4e\xa2\x28\x5e\x24\x8a\xa2\x3d\x1c\x53\x3e\x16\x13\x48\xd2\x24\xbc\x74\x42\xe2\xd1\x0d\x82\xa4\x4a\x24\xc7\x61\x84\x72\x7c\x50\xbb\x9c\xd4\xdf\x96\x62\x47\x57\x15\x65\x75\xbb\xdd\x0e\xec\x20\xa2\xd9\x68\x86\x38\x46\x29\x0e\x53\x62\x68\xd7\x11\xa5\xdf\x6f\x36\x28\x82\xdd\x71\x87\x04\x04\xba\xfe\x70\xb7\x62\x5a\x13\xf1\xd4\x84\x24\xcc\x0f\xa7\x9a\x47\x39\x9c\x46\x69\x9a\x89\x43\xcb\xe2\x45\xe2\x30\x8f\x96\xcc\xd4\xec\x34\x30\x0e\x65\x83\xff\x1c\x21\x08\xe0\x05\xf4\x29\x2a\xd3\x27\x21\xf7\x6d\x98\x8d\x16\x90\xc6\x38\x34\xf4\xd5\x3e\xfc\xd4\x6c\xde\xc1\x13\x2e\x85\x73\xae\x44\x2b\x02\x79\xdc\x2e\x67\x2c\x1b\x69\x36\x8f\xd8\x66\x13\xab\x26\xac\x5d\xe2\xe1\xce\x4e\x98\x2e\xa2\x38\x35\xd1\xc3\x95\x33\x25\xfc\xaf\xbd\xc0\x5c\x8c\xd4\xb9\xe3\xcc\x79\xeb\x9e\x1c\x28\x27\xdc\x38\x69\xd8\x65\x7f\x5c\x97\x11\x26\x72\x94\xdf\x8f\xe6\x26\x96\x21\xd0\x10\x94\x52\x98\xc7\x88\x85\xce\xe6\xda\x11\xf1\x6f\x90\x44\x97\x94\xac\xf1\x56\x4a\xe5\x95\xd0\xc2\xd6\x4c\xfc\x92\xb3\x65\x14\xa7\x71\x3a\x6f\xb7\x89\x3b\xc8\xb1\x98\x50\x05\xf4\x7b\xa5\x79\x71\x49\x83\x4a\x1b\xcf\xb7\xa1\x79\x57\xec\x02\xce\xa2\x3c\x4b\x43\xbe\x75\x63\x2e\xea\xce\xe0\x33\x93\xeb\xd6\xbe\xb6\xa1\x0f\xd5\xb1\xa1\x99\x80\x22\x56\x5b\x71\x6a\xc4\x3a\x35\x30\x65\x24\x66\xdb\x4a\x7c\x35\x53\xeb\x5e\xb2\x24\x85\xb4\x00\x1b\xc0\xb2\x2b\xee\x99\xb4\x2d\x87\x26\xb3\x77\x48\x15\xf6\x51\xe8\x40\xba\x55\xd6\x9a\x44\x4e\xf2\xc4\xcc\x53\x09\xb8\x02\x67\x4b\x67\xa0\x66\x80\x3c\x54\xc5\xc7\x72\x5b\x1f\xad\xa1\x14\xad\xeb\x52\x21\x22\x89\x9d\xe6\x40\x39\x72\x7d\xd5\x50\x95\xe7\x4b\x99\x1b\xe4\xf3\x31\x8c\x59\x05\x80\x48\x52\x64\x94\x62\x2c\xe9\x66\x71\x33\x0b\xf3\x4a\x19\xca\x31\xb9\x43\x31\xc9\x4c\x42\x66\x12\x1f\xac\x9b\x4d\xc8\xeb\xb1\x86\x03\xf6\x0d\x82\xa4\x1c\xdb\x48\x22\x4b\xaa\x13\x89\xd8\x8f\x0d\x9a\x47\x92\x5c\x57\xac\xc0\x47\x77\x28\x21\xd6\xbd\x8d\xaa\xf3\x3e\x81\x93\xb7\x78\xaa\xd1\x3b\xd9\x3b\x75\x92\x3a\xd0\xe7\xed\xc0\x24\xab\x0c\x6c\x4e\x9b\x14\xb2\xf1\x50\x36\x16\x36\x6b\x57\xba\x75\xa4\x45\x1c\x96\x53\x5f\x70\x5c\xe9\xb4\x9c\x65\xf2\x7e\x0b\xd9\xc8\xeb\xd6\x1e\xbb\xd9\xc9\x21\xd3\x45\x34\xe6\x13\xb8\xeb\x37\x81\x0a\xcf\xd3\x0b\xe1\x26\xcf\x8a\xc7\x62\x9c\x4e\x26\x34\x1a\xa7\x5e\x30\x29\x32\x66\x3a\x42\x32\xc7\x92\xdd\x03\x3d\x3a\x59\x8f\x76\x99\x2c\xab\x78\xef\xe8\x50\x6a\xe5\x1b\x05\x61\xce\x9f\xcf\x72\x0b\xb8\xe9\x29\x28\xa5\x31\x93\xd4\x93\x91\xd8\xac\x2c\x93\x7c\x63\xa2\x48\x0c\x44\xcd\xde\x73\xdb\x52\xb4\x56\xd7\x4c\x71\x75\xe9\xb6\x65\xe2\x07\xc1\x5d\xaa\x16\xb0\x73\x8c\xe0\x8a\x26\xad\x84\x9a\xab\x4e\xab\xcc\xa9\xbd\x2d\x55\xa9\xa4\x33\xc1\x20\x1f\x46\x0c\xa5\x0c\x08\xa5\xb9\x69\x09\x53\xeb\xe1\x5c\x39\xba\xcc\xad\x63\x94\x24\x2a\xd0\xee\xec\x70\xb9\xce\xc5\xe1\x15\x83\xa3\x8c\xcd\x0e\xa5\xf8\x79\x18\xa5\x87\x91\xec\xa2\x81\x4b\x83\xf9\x54\x1d\x2f\xe4\x4e\x28\x0f\xf8\x59\xb9\x8e\x0a\x71\x56\xbb\xbf\x47\x5f\x1c\xe5\x22\xca\x17\xfb\xc6\xa7\x9b\x93\x03\x0c\xe5\xe7\xeb\x1d\x28\x14\x63\x7a\xf7\x37\x8c\xe9\xdd\xfb\x9f\xdf\xc2\x80\xbe\x00\xb7\xea\xb8\x12\x3d\xae\xa3\xa0\x76\x68\xaf\x0a\xaf\xb4\x7a\x71\xde\x7a\xac\x11\xe7\xab\xdf\x0a\x1e\xdd\xd8\x45\x6a\xba\x42\xd4\xe8\x8d\x13\xad\xd5\xad\x14\x51\x3a\x14\xad\x72\x90\x5d\x1e\x43\x56\xda\x93\xf2\x99\x6a\x82\x72\x29\x42\xb8\x7a\x97\x0f\x95\x10\x18\x3b\xd8\x58\x30\x5b\x16\xa2\xe2\x0b\x10\x5d\x46\xab\x43\xf6\x79\x05\xa6\x51\xd1\x61\xa1\x0c\x90\x4f\x39\x9b\x66\xe9\xec\xd0\xd0\x87\x06\x96\xa2\x8c\x6c\x64\x6a\xd6\x9a\xf0\x47\xe0\xbc\xed\xe7\x0b\x98\xee\x46\x0f\xfc\x76\x07\xd3\x8d\xff\x51\x09\xd9\x5f\xef\x56\x53\xa1\x53\x4a\xb5\x5e\x7c\x01\x6e\x9b\x4d\x21\x58\xd5\x29\x3e\xd4\x5a\xc2\xd5\x9a\x24\x78\x7f\x05\xcc\xd7\x71\x22\x18\xb7\x90\x7e\x14\x9c\x9d\x39\xf3\x07\x9c\x63\xd9\xed\xe1\xaa\x66\x3d\xb6\xf8\x0b\x2b\xa2\x87\xf4\xd0\xa2\x1c\x66\xdc\x30\xd0\x95\xf5\xf9\x4e\x01\xfe\x92\x8d\x17\x6c\x42\x19\x81\x1f\x5e\x20\x65\xa4\x2e\xa5\x14\x2d\x98\x47\xbb\xb8\xd9\xbc\x65\x6e\x8a\x89\x97\x68\x37\x86\x7d\x91\xf6\xa6\xd8\x7e\x7f\x90\xc0\x8d\x08\xfa\x87\xd5\xe2\x14\x1a\xb5\x05\x3b\x87\x2e\x90\x2f\xfb\x66\x13\x8c\xe4\x1f\x2f\x98\x60\xf5\x6c\x44\x1f\x5d\x6a\x04\x8e\x05\xa3\x0e\x1b\xf8\x43\xa1\xae\x2b\x2b\x88\x78\x87\xb3\xdf\xd7\x31\x67\x44\x50\x86\x1a\x37\x8c\x8b\xcf\x0d\x4c\x2c\x22\xa0\x6b\x46\x45\x87\xaf\xd3\x37\xe9\xcb\x2c\x5b\x6d\x36\xfa\x41\x07\x0d\xc6\x23\x67\x7a\xd7\x0c\xfd\x81\xb7\xe1\x4b\xb4\xcb\x5c\xca\xb2\x62\x34\xdf\x20\x7c\xff\x4b\x27\x4b\x35\x3b\xfa\x8b\xab\x90\xb2\x95\x7e\x57\x95\xae\xaf\xeb\x6a\x31\xbd\xa8\x94\x29\x1e\x9d\xaa\xfc\x8c\x06\x0d\x0a\xc7\x37\xca\x64\x13\xf2\xff\x54\xe9\xa2\xae\xe3\xf9\x9a\xcb\xe2\x19\x4b\xb3\x19\x8b\xaf\xef\xe0\xf7\x35\xb4\xc5\x19\x10\x41\xca\x5c\xfa\xab\x9f\xa8\x3a\x84\xa8\x7b\xa4\xa9\x07\xca\x3a\x90\x55\xe5\x03\x04\xac\xa1\xac\x63\x7d\x7a\x3a\xd3\x28\x17\x30\xc6\x68\xe5\x46\xa1\xfc\x48\x7e\x26\xff\xa0\xf7\xcb\xf8\x73\x9c\xd6\x19\x7d\xc0\x70\xd5\x9d\x7b\x4a\xd4\x0c\xd4\xd3\xf5\x75\x11\x09\xdf\x5c\x70\xc2\x03\xa9\xd3\x66\x6b\xcc\x60\x5b\x52\x31\xf1\x00\x16\xb9\x6e\x73\x3b\x06\x4e\xce\x2e\x32\x2d\xda\x2d\x54\xd0\xcf\x86\x31\xcf\x4f\x8d\x61\x87\xee\xf5\x1c\x49\x39\x9b\x4d\x30\x84\x27\x97\xbf\xe8\x78\x82\x49\x6c\x73\x0d\x0b\x0c\x56\x7b\x3a\x3e\x32\xc9\xae\xaf\xeb\x2f\xf4\x2a\xed\xda\x6c\x70\x07\x62\x04\x99\x8a\x55\x1a\x7d\xe8\xca\x69\x1b\x1a\xcf\x57\x70\xab\x94\x91\x00\x87\x7a\x04\x35\x57\x1e\x8e\x58\x1b\x17\xad\x83\x91\xa1\xee\x5c\xb6\x5d\x24\xef\xcd\xdc\xe4\xbd\xc8\x27\xd9\x38\x9e\x60\x25\x53\x6d\xc9\x2f\xf4\xbe\x90\x3b\xc3\xa3\x60\x7b\xf0\x8f\x0e\x2c\x33\xfa\x45\x41\xea\x47\x3a\x9e\x90\xef\xcd\x64\xbe\xa2\x01\xf9\x89\x76\xc9\xbf\xe0\xb4\x5c\x93\x7f\xea\xbf\xff\x69\xd7\x8e\x3d\x18\xc5\x2f\x35\x92\xa6\xc9\xa2\xe0\x98\xe5\xd1\x72\x2c\x02\x68\x99\x41\x8a\x40\x2d\x8b\x82\x03\xeb\x9b\xf4\x9d\x3e\x84\x4d\x18\xa4\x8f\x79\x9c\xce\xd5\x15\x95\xc2\x62\x90\x86\x88\xe9\x27\x16\x7b\x54\xc9\x35\x91\x52\xa0\x7a\xbd\xdb\xa8\x06\xe2\x66\xe3\x2b\x99\x5f\x2b\x59\x38\xa9\x48\xce\x4e\x09\xe8\xbc\x1c\xc1\xc4\xcc\x83\x81\xd1\x25\xdc\x73\x57\x03\xa4\xd8\x57\x75\x91\xbe\xa8\xd3\xb1\xb9\x1d\xd6\xc0\xb2\x92\x66\x5a\x52\xc3\x19\xf1\x47\xf7\x1b\x4d\x17\xcf\x53\xc1\xef\x90\x94\x83\x20\x70\x2e\x3e\x30\x56\x0a\x6c\xfa\xe9\xbb\x75\x62\xfd\x7b\x51\x75\x64\x3b\x35\xdc\x75\xf6\x8d\x63\x40\x01\x87\x66\x73\x89\xdc\x11\x96\xa0\x52\x6d\x3c\x07\xf2\xf4\x2a\xba\xbb\x62\x1f\x16\x2c\x8d\xae\x92\x5d\x03\x4a\x9b\x0b\x81\xee\xc5\x20\xb2\xa6\x99\x21\xa4\x07\x6b\xd0\xcf\xa3\x94\x26\x52\xb2\x35\x7a\xfc\x42\x8f\x35\x42\x55\x55\xa2\x56\x10\x29\x52\xf9\x54\x58\x1d\x26\xe4\x37\x31\xb7\x59\xbc\xa4\x28\xb7\x94\x48\x9b\x91\x39\x5f\x7f\x05\xe9\x3e\x4c\x5a\xa2\x1d\x34\x1d\xa1\x95\x36\x31\xcb\xa4\x6c\xcd\x0a\x34\xbf\x8d\x0d\xbd\x7e\x2a\x50\x4c\x54\x97\x35\xaf\xd4\xb7\x35\xca\x7f\xa1\x43\xcb\xd8\xce\xcb\xdf\xad\x11\xc3\x35\x01\xd9\x0a\xf4\xd8\x01\xfd\x43\x4c\x58\x69\xde\xa5\x15\x34\x2a\x76\x5b\xe1\x1d\x40\xd0\x01\x4d\x2d\x16\xcc\x9e\xee\x1a\xb4\x1b\x81\xb3\x84\xf2\x71\x59\xe3\x5c\x43\x23\x94\xc9\xf5\x4f\xa3\x3b\x30\xa3\xd3\xae\xb0\xa5\x91\x98\xf6\xc9\xde\x6d\x50\x75\x6a\x77\x3f\xaf\x0f\xb6\xf0\xa0\x16\x8d\x57\x5a\x73\x57\x66\x4f\x3c\x05\xd0\x33\xce\x11\xdb\xb9\x0f\x72\xe3\xb0\xd4\x20\xde\xf6\x8b\x35\x7f\x32\x35\x75\x74\x2d\x22\x18\x85\x6b\xee\xcb\x86\x57\xdc\xc5\x7a\x8d\x76\x83\x70\x46\x7d\x92\xee\x23\xee\xce\xe4\xe3\x19\xe5\x36\x64\xa4\xba\x86\xb1\x24\x71\x37\x25\x9b\xa1\x92\xa5\x32\x47\x97\x2d\x0f\x9f\x5d\xcd\x28\x58\x85\x6b\xcd\x28\x26\xb9\x8e\x48\x5d\xc7\x1f\x34\x9b\xb5\x86\x73\x0e\xaf\xf0\x4b\xb6\x56\x6c\xc2\x2a\xca\x73\x30\x12\x03\xf2\xc1\x4b\x92\x80\x58\xb0\xc3\xeb\x98\xe7\xc2\x8a\x02\x87\x22\x83\x52\x93\x82\xc7\x51\xc6\x35\xf0\x56\xbb\x58\xbb\xb9\x82\xd8\xa8\xee\x58\x39\x0a\x80\xbd\x15\xe5\x6d\xbc\xd9\x20\x4e\x8f\x7c\xb2\x30\x17\x5a\xb5\x6f\xcd\x75\x97\x63\x7f\xa9\xaf\xfd\xb6\xc6\x9c\xb0\xde\x6c\xd0\x99\xfd\x77\x51\x0c\xf9\x6d\xb3\x62\x02\x87\x5f\x6b\x0a\xf5\x75\x78\xf8\x36\x61\x51\xce\x0e\xd7\x10\xd0\x92\x1d\x7e\x9d\xb2\xdb\xaf\x0f\xb3\x95\x3c\xa1\x32\x4e\x40\xbf\xad\xc5\x7a\x17\x00\x46\xe5\x5f\xc8\x2e\x91\x2b\xc2\x76\x00\x40\xf5\xe7\xaf\xa1\xc7\xf5\xd6\x80\x07\xbf\x74\x20\x0c\x4b\x49\x0b\xe0\xdc\x95\xfd\xb2\x1b\xe2\x93\x58\xeb\x80\x6a\x08\x85\x2f\x05\xa0\x04\xb1\xce\x70\x35\x8f\x0c\x3f\xe9\x86\x8c\x2a\xe0\x71\xb0\xd3\x6c\x0d\xd1\xe6\x6e\x20\x8f\x07\x62\x74\xd4\xdf\xf7\x7e\xe1\x6b\x9d\xbb\x0a\x22\x37\x9b\x48\x7a\xa9\xe6\xf6\x23\xa2\xd4\x6b\xf5\xa0\xa8\xd5\xab\x31\x66\x8c\x7b\x8f\x7c\x57\xb9\xa6\xad\xb4\xbe\xa0\x5e\x7b\x84\x5e\x8d\x68\x0d\x5a\xbd\x5f\x55\xc5\x96\x21\xbe\x46\x47\xd5\x61\x62\x7b\x0f\x9e\x56\xef\xa8\xac\xe3\x77\x34\x65\x5f\x18\x0a\x2e\xf2\x83\x57\x18\x2b\x7e\x51\xf8\x73\x79\x1e\xd6\x71\xd6\xec\x1a\x8c\xf9\x04\x3f\x40\xae\x17\xa0\xef\xac\xa5\xcf\x77\xea\x55\xe1\x87\xa2\x60\xa1\x85\xc3\x88\x58\xcd\x41\x2d\xe6\xd5\x1a\x79\xdc\x19\x23\x0f\xf9\xb1\xb3\xd7\xb4\x15\x0f\x15\xac\xfc\x02\x62\xbb\x5e\x2a\xc3\x58\xc5\x85\x3f\x27\x99\xf9\x11\xb1\xbd\x6e\x37\xca\x1f\xca\x51\xef\xfe\x29\xd7\x1b\x92\x92\xa3\x00\xae\xe7\x1f\x70\xb6\xd9\x22\xc6\xf0\x41\xb4\xf7\x3c\xbe\x55\xf1\xdd\xd9\x97\x92\x23\x90\xf5\x43\xd3\x30\xdc\xc6\x11\xaa\x5e\xf3\x3c\xe9\x3a\x3a\xa7\xe2\x1a\xa7\x2b\xa5\x46\xf7\xd1\xbd\x21\x1a\xf7\x26\x07\xff\x06\x50\x62\x92\x3d\x0c\x93\x2f\x88\x2f\xa5\x63\xd6\xb8\xb1\x97\x44\x10\xf2\x17\xb8\x77\xfe\x27\x85\x16\xd3\x4c\x6a\x72\xca\xd9\x0c\x20\x0c\xe7\xcc\x04\x75\x82\xd4\x1f\xda\xf4\x6c\x95\x69\xa3\xfb\x98\x30\xc9\x94\x86\x6c\x1c\x4f\x74\x9e\x8e\x8c\x1a\x0b\xed\x83\xaa\xf4\x95\xe9\xeb\x57\x2d\x15\x1b\xb1\x88\x57\xc4\xa2\x0c\xc4\xa2\x88\xa6\x20\x08\x55\xa4\x23\x48\x14\xc5\xef\x48\xd4\x31\x83\x50\x3e\x6a\x8c\x61\x92\xfc\x3f\x8c\xff\x6b\x86\x0f\x92\x2f\xe0\xff\xf4\xe1\x31\x92\xec\xdf\x1b\xa5\x4f\xb2\x2f\x8d\xf3\x41\x9c\x74\x9d\xf1\xb3\xbd\x82\x75\xb6\x23\x58\x67\xfb\x04\xeb\xcc\xb0\xef\xcb\x68\xf5\x5d\x4a\xe3\x5a\x31\x9b\x3f\x8e\x87\xb7\xbb\xff\x20\x1d\xa1\x98\xea\x58\xc5\xaa\x65\x0c\xd9\x2c\x30\xd8\x2a\x54\xa5\x3d\xc9\x4a\xc7\xda\x78\xe1\x28\x30\x42\x4f\x81\x53\x52\x8e\x93\xe5\xe8\x11\x22\x42\x81\x6d\x33\x26\xb7\xec\xea\xff\xab\xeb\xa9\x74\xa6\x8f\x5b\xd2\x3f\xaf\x9f\x40\xa5\xee\xdd\x07\xad\xac\xad\x8d\x3b\x7f\x44\xe9\x8c\x6d\x31\x79\x88\x3e\xfe\x45\x74\xdb\x41\x04\xe2\x60\xa0\x81\xc5\xdf\x80\x84\xb5\x58\x28\xc5\x8a\xea\x00\x66\x0c\x17\xb8\xb8\x90\x12\xe0\xb5\x15\xdf\x96\x8c\x36\xd6\xe9\x8c\x5d\x83\x91\x8a\x95\xb8\x6e\xe3\x74\x96\xdd\x8e\xd4\x1f\x73\xf3\x76\xc7\xe8\x12\x82\x26\x93\x39\xa3\x77\xac\xf3\x6a\x2d\x20\xa5\xed\x9b\xab\x9c\xf1\x1b\xc6\x37\x9b\x3b\xd6\xf9\x07\xbb\xfa\x31\x16\xd5\x57\xe4\xaa\xd4\x8f\xd5\x3b\xe4\x2c\xb9\x6e\x36\xeb\x46\xa0\x63\x0c\x37\x9b\x8d\xb1\x16\x4d\x74\xc9\xa4\x41\x29\xbd\xdf\xda\x40\xd6\x6a\x1f\xe8\x97\x98\xdc\xd4\x4f\xe8\x63\x9c\x8a\xd3\x67\x49\xb4\x5c\xb1\x19\xa0\x67\x7d\xaf\xf1\x72\x95\x71\xf1\x1e\x92\xdf\xe7\xf5\x55\x5e\xa9\x54\xf6\xcf\x16\x51\x9a\xb2\x84\x5c\x32\x07\xe5\x03\xd6\xc3\xe4\x96\x39\xca\xdc\x5b\x46\xaf\xd8\xa8\x62\x7e\xc2\xa8\x1e\x6e\x27\x65\x9f\xc5\x87\x78\xfa\x89\x08\x5b\x74\xc3\x78\x1e\x67\x69\xde\x49\xb3\x19\xeb\x2c\x41\x26\x3c\xfe\x2f\x34\x0a\xd1\xaf\x33\x0f\xff\xda\xc1\xa3\xd2\xef\x5f\x5b\x1b\xf9\xfb\xab\x63\xcb\x28\x96\x99\x68\x81\x9b\xcd\x86\x0f\x66\x8b\xe3\x60\xd2\x6c\x36\x02\xfd\xd0\x9d\x34\x9b\x88\xd1\x9c\x89\x17\x4b\xed\xf9\xe5\xb8\xe4\x15\x3b\x05\xfd\x21\x25\x51\x1c\xce\x6b\xa6\xe1\x13\xb5\xe1\xe7\xb2\x16\xe1\x74\x96\x4d\x81\x5b\xd2\x1e\xdf\x1f\xd8\x67\xf1\x3a\x9b\x31\xd4\x70\x02\xe3\x74\x32\x85\x13\x88\x93\xfb\xe9\x22\xe2\xd1\x54\x30\xfe\x6d\x24\xa2\xf0\xc8\xdf\xd6\x8d\x80\xab\x90\xdf\x8c\x7a\x1e\xfb\x8f\x2e\x8c\xe5\xa6\x66\x2c\xe0\xad\x58\x5a\x9b\x22\x28\x9e\x5c\xd4\xa0\x93\xa5\x4b\xf5\x9e\xfe\x51\x37\x51\xa8\xd5\x95\x84\x57\xe8\x76\x90\xaf\xa6\x6e\x2d\x5a\x96\xac\x36\xbc\xb4\xbd\xcd\x1a\xfd\x80\x70\xf8\x12\x61\xb2\xa3\x60\x93\x88\x8e\xe5\x7f\xd6\xf3\x7f\xe7\x6e\x7e\x9e\x64\x57\x51\xb2\xeb\xfc\x9f\x66\xfa\x55\x78\xf8\xdf\xb2\x85\xff\x3e\xcc\xf8\xe1\x7f\xab\xa2\xff\x3e\xbc\xce\xd6\xe9\xac\x81\x0f\xd4\xf3\x56\x1b\x8f\xd1\xef\x88\x16\xb2\xeb\x22\x6d\x39\x37\x81\x8c\xf8\x58\x45\x17\x7a\xce\xe8\xb7\xe4\xf3\x9e\x48\x6a\xc6\x26\x0d\x24\x68\x89\xd7\xfb\x89\x46\x8d\x76\x51\xbd\xe8\x5c\x5e\xbe\x7d\xf7\xe6\xd5\x8b\xf7\xcf\x2f\x5f\xbc\x7e\xff\xe1\xdd\xc7\x57\xcf\x5f\x7f\x78\xfa\xe1\xc5\x9b\xd7\x97\x97\xf8\xfe\x67\xfa\xe5\x5a\x24\x46\x8e\x23\x41\x03\x14\xdf\x86\x0b\x7d\xc3\x24\x1b\xfa\x33\xfe\xb9\xea\xe9\xf2\x86\xe1\x66\xf3\x1b\xf4\x86\x91\x9f\xc7\x6f\xd8\x44\xe5\xa7\x7a\xca\x28\xfa\x48\xef\xa3\x3c\x5a\x85\xdf\x11\x29\x40\x87\xcf\x19\x79\x6b\x6f\xda\x89\x73\xb3\x16\xfe\x83\x44\x49\x12\xbe\x27\xc5\x05\x5c\xf8\x96\x48\xb9\x33\xfc\x44\x16\x51\xbe\x08\x9f\x11\xe7\xde\x2e\x7c\x47\xf4\x7d\x5e\xf8\x8a\xc0\x0d\x5f\xf8\x1b\xb1\xb7\x7e\xe1\x53\x62\x6f\x03\xc3\x98\x64\x69\xf8\x0d\xdc\x41\xfd\x6e\x73\xac\x7d\x6b\x2c\x1c\x5e\x93\x65\xb4\x0a\x3f\x6c\xc9\x47\xbd\xa6\x9f\x19\xf9\x68\x2e\x20\x5f\x90\x8f\xf8\x40\xdf\xf0\x7d\x47\xb4\x0e\xe0\x39\x23\xc5\x2d\x60\x2a\x1f\xdc\x0b\xc2\x7f\x10\xa5\x20\x78\x4f\x4a\x77\x89\x6f\x89\x16\xd2\x3f\x11\x7d\xe3\xf8\x8c\x94\x2f\x22\xdf\x91\xe2\x8a\x52\x3b\xd4\x30\x4e\x7f\x23\xee\x65\xe6\x53\xe2\x5e\x73\xc6\x04\xae\x12\xbf\xd1\x97\x88\xbf\x17\xc1\x3f\xe9\xb7\xc4\x8a\xbe\xaf\x89\xba\x3e\xfd\x40\x58\x31\x43\x56\xcc\xb0\x70\xdd\x79\x2a\x8f\x6a\x81\x94\xa7\x8e\x52\xcc\x95\xd5\x96\x95\x34\xac\x10\x34\x05\xdc\xa9\xc6\xd1\x44\xfd\x12\xf0\x4b\xf9\xa6\xd5\x6d\x61\xb5\x81\x9b\x4d\xfd\x43\xf9\xb6\x35\x9b\x6b\xa3\x82\x58\xa3\x08\xf0\x2d\xbe\x46\x99\x29\xcb\x74\x59\x61\x24\x67\x6f\x2e\x41\x73\x76\x1d\xa7\x10\xab\x6e\x9d\xb0\xc3\xaf\x1b\x5e\xe4\x35\xbe\x6e\xe0\x03\xb5\xc1\x93\xce\x34\x9b\x31\xda\x78\xf5\xe6\xdb\x8f\x2f\x9f\x5f\xbe\x7e\xf3\xe1\xf2\xbb\x37\x1f\x5f\x7f\xdb\x20\xc9\x56\xa5\x4a\x95\x63\xa7\xf7\xda\x4d\x29\xbc\xdf\x6e\x0f\xe4\x1c\xc6\xbe\x0e\x9e\x3b\xed\xe8\x57\x3b\x36\x75\x9c\x42\xc5\x60\x32\x66\x85\x19\x1a\xe2\x9b\x0d\xc3\x5b\x32\x25\xc5\x87\x86\x77\x31\x3a\x3c\xd9\xa3\x79\xb9\xb5\x11\x51\x1e\x03\x2e\x12\x51\xff\x3c\xba\x30\xf2\xdc\x79\xe4\x79\x38\x46\xa9\x84\xb9\x63\x08\x77\x1f\x84\xe3\xaa\x72\xdc\x35\xd4\x49\xf1\xfd\x0e\xed\xe0\x8e\xa8\x2e\x46\x29\xe2\xb5\x0e\x0e\x8a\x16\x35\x9b\xea\x6f\x27\x5a\xce\x46\xea\x27\x2a\x1c\xbd\x26\x24\xc5\x61\x8a\x58\x67\xd6\xa3\xf2\x3f\x08\x0a\xb4\xd5\xec\xb4\x0b\xc3\x7a\x1f\x2f\xe1\x6a\x68\xca\x81\x4d\x98\x1b\xd4\xc4\xc0\x2d\x55\x39\x20\xf8\x38\x9d\x50\x31\x4e\xed\x4a\x38\x5e\x3a\xbc\xe4\xa5\x53\x88\xdb\xf6\xe0\xa2\x88\x79\x8d\x06\xee\x08\x1e\x2f\x11\xee\x88\xec\x65\x76\xcb\xf8\xb3\x08\xdc\xe7\x91\xa0\x9f\x3a\xec\x33\x9b\x22\x86\xf1\x08\x09\xba\x8a\x78\xce\x5e\xa4\x02\xc9\x93\x9e\x04\x43\x0c\x3a\xb3\x35\x12\x4f\x9e\x9c\x36\x83\xc1\x46\x3c\x79\xd2\x6f\x76\xfb\x3e\x81\x1f\xc1\x60\xd3\xed\xfb\x4d\x41\x50\x30\x68\x0a\x7c\x71\xd1\xdf\xc8\x1f\x44\x31\x96\xf4\x59\xd1\x74\x8c\x76\x5a\x86\x2a\xef\x8a\x2a\xba\x23\xf9\x56\x72\x16\x44\x8c\x7b\x13\x02\x72\x12\x7d\x55\xad\xd5\x1d\x0c\x5a\xb2\xe6\x71\xe0\xfb\x44\x3d\x74\xdd\x87\x9e\x7a\x50\x5f\xff\x56\x7c\x9d\x55\xdb\x17\xe3\xfe\x04\x2a\x7d\x70\x2b\x3d\xb2\x79\xfb\xf1\xb7\xc5\xc7\x49\xd1\x83\xae\x53\x1a\xcb\xeb\x47\xd4\x54\xcd\xbe\xa8\x1e\x42\x4c\x42\xf1\xc5\x98\x4d\x70\xd8\x00\xdf\xf0\x55\xc4\xe5\x11\x46\x29\x65\x1a\x2c\xaf\xa3\xd7\xc4\xfc\xf3\xb5\x13\x9c\x43\xd2\xca\x06\x49\x6b\xc4\x9e\x3c\x09\x86\xcd\xee\x60\x40\x98\x5c\x5e\xf9\xa3\x3b\x18\x34\x19\x09\xf0\x8e\x37\xa0\x6b\x5a\x7a\x41\x7d\xe0\xfb\x04\xe5\xf4\x75\xf4\xda\xe0\x88\x25\x05\xc5\x7d\x89\x2b\x2e\xb9\x57\x20\x52\xc4\x60\x54\x62\x2b\x26\x6c\x84\x18\x65\x1d\x3e\xbf\x42\xb6\xa5\x0e\x27\xac\x33\x27\xac\x73\x25\xc9\xff\x2a\x9a\xc6\xe2\x0e\x6b\x1b\x46\xd7\x43\xad\x3a\xb4\x80\xee\xfa\x3a\x8e\xe4\x28\xc2\xd2\x10\xc1\xb8\x31\x1d\x05\xa1\x3b\xd8\x75\xc5\x30\x81\x53\x4f\x0b\x73\x73\xea\xe9\xc4\x81\x57\xd4\xd3\x37\x58\x7a\x50\xd4\x4b\x4b\x6e\x70\x35\xa0\x1a\x59\x40\x85\xfc\x82\xfa\x9b\x0d\x7f\x42\x03\x28\x94\x45\xc2\x00\xd3\x02\x72\x56\x03\x48\x95\xdd\xd6\x91\xef\xeb\x67\xea\x52\xa0\xf8\x1a\x95\x40\x5e\x64\x62\x53\x7d\x74\x16\x84\x75\x72\xc2\x3a\x89\x03\xe2\x83\xea\x57\xee\x42\xd9\xe8\xcc\xaa\x89\x9d\xba\xb3\xb2\xa3\xa1\xa0\xc5\xba\xe2\x0e\x3f\x96\xe8\x15\x53\xd6\x99\xc3\xaf\x8c\xb2\xce\x15\xfc\x8a\x8a\xd8\x73\x6a\x8a\x24\xd7\x25\xd1\x67\x53\xb2\x96\xe0\x21\x09\xcd\xdb\x11\x99\x52\x94\x7b\x11\x3e\xee\x5a\x3f\xfc\x11\x5a\x53\x41\x29\xcd\x47\x28\x6e\x67\xf8\x38\xf1\x86\x2d\x14\x5f\x64\x38\x8c\x55\x69\xd6\x16\xb2\xb4\x1b\x22\xd1\x8e\xe5\xaf\x3e\x49\x8e\xe9\xf4\xa2\x33\x18\xe5\x5e\x14\x76\xdb\xb2\xdd\x75\x8b\x0e\x7d\x1c\x26\x74\xfa\xc4\x6f\x36\xa7\x17\xc1\xc8\x0f\xd7\x7a\x45\x54\xa0\xa5\x02\x4e\x5b\x83\x52\x33\xbd\x30\x0a\xa5\xb2\x51\x10\x66\xb8\xe4\x7c\x58\x42\xa9\x85\x45\xa9\xdc\xa2\x54\xf2\x20\x4a\xad\x2a\x66\x91\x92\xfe\x20\x76\x31\xf4\x47\xc2\x43\xbc\x2d\x70\x8b\x1d\x0f\xfd\x90\x5d\x04\xa7\xfe\x88\x87\xec\xa2\xdb\x2f\x5e\xa1\x6e\xdf\x6f\x33\x2c\x2b\x54\x1c\xdb\x76\xd1\x63\xe9\xae\xed\x12\x29\xb4\x88\x2a\x3b\x70\x67\xc9\x6f\x0b\x97\xe5\x45\xeb\xbb\x83\x9d\x26\x60\x1d\xa7\x59\x8e\xe4\x40\x3b\x53\xf5\x9c\xcb\x95\x56\xcf\x0e\x44\x4b\xed\xae\x01\xed\xe4\xc6\x35\x46\x5a\x37\x92\x28\x60\x92\xc2\x8f\x39\x18\x55\x21\xd6\xb9\xc2\x24\xa3\x77\x08\x75\xfa\x41\xb7\x3f\x18\xf6\x5b\xdc\xeb\xf4\x06\x27\x83\x93\x61\xd0\x4a\xbd\x4e\x70\xea\xf7\x7b\x27\x83\x56\x8c\x8f\xff\x90\x68\x25\x6b\x76\x83\xee\xf0\xa4\x7b\x26\x6b\x9e\x04\x83\x60\xd0\xed\xca\x9a\xfe\x49\x37\x50\x15\x7f\xc0\xe5\x69\x04\xc1\xb0\x95\xb7\x83\x21\x19\xf8\x7e\x0b\x65\xed\x1c\x93\xae\xfc\x95\xb7\x65\x6b\x7e\x70\xd6\xeb\xf5\xa0\xb5\x20\x38\x0b\xce\xa0\xb1\xb3\x81\xdf\xf3\xfb\x81\x6c\xed\x1b\x48\xc4\x6d\x27\x69\xd7\xe0\xfa\x71\xa4\x6b\x61\xf0\x6c\xf9\x20\xe9\x5a\x56\xf0\x2c\xb1\x78\x16\x3d\x92\x74\xdd\xb9\x94\xfa\xc9\x3f\x46\xb0\x50\xab\xec\x16\x31\x12\x1c\xf7\x70\xc8\x8e\x7f\xf6\x7e\x2f\x79\xe9\x39\xd5\x3f\x8e\x58\x8b\xb5\x58\xf8\x73\x0b\xb1\xf6\xef\x55\x8f\xba\x32\xe6\xd2\x8e\xef\xf7\x82\x9e\x7f\x3a\x0a\xba\x9d\xb3\x6e\x8b\x85\x41\xc7\x1f\x0c\x5a\xa5\x0e\xbb\x9d\x3e\x6e\xcb\x62\x5c\xf2\x5b\xb3\xca\x4d\x76\x4c\xbb\x83\x01\x96\x8d\xf5\xfd\xfe\x60\xc4\x8e\xa1\xb1\xd0\x36\x82\x98\x07\x9f\x1f\x43\xe3\x44\xb6\xb7\xe3\x0e\xf6\x25\xd8\x3f\x44\x4c\x6f\xdd\xdd\x72\xab\x89\xe9\xb4\x4a\x4c\xcb\x1b\x0c\x50\x7a\x61\x51\x5a\x28\x22\x17\x89\x28\xed\x22\xb5\xcd\x22\xdc\x7a\x79\x50\x6a\x58\x5c\xc8\xdd\xdc\x93\x1b\x58\xef\x9d\xdf\xb9\x40\xac\x13\xb5\x58\x27\xf2\x58\xe7\xaa\x05\x7b\xa0\xdc\xaf\x25\x4e\xb7\x0f\x22\xcd\xed\x5e\xe2\x34\x7d\x24\x71\x7a\xfe\xef\x03\xf2\xb3\x0b\xc8\xcf\xfb\x4e\xa5\x07\x69\x03\x98\xcc\xc2\x49\xc2\xed\xe9\x92\xda\xd3\x25\xa6\xe8\x5f\xad\xd4\xfb\xaa\x25\xda\x3f\xb5\x38\x3e\x46\xff\xf2\xbe\x6a\xff\x24\xc9\x46\xda\x8e\x49\x4e\xd1\xf7\x2d\xc4\xdb\x31\x6e\xff\xd2\xca\xf0\xf1\x8f\x24\xa1\x05\x9c\xf3\x56\xee\x65\xb2\x18\x7d\xdf\x8a\x5b\x28\x68\xc7\x18\x93\x29\x4d\x46\xce\xca\xe5\x24\xc3\xad\x97\xed\xa0\xeb\x87\xaf\xa3\xd7\x07\xa5\xd9\x4c\x2f\xfc\xd1\x14\x56\x6f\x4a\x12\x12\xd7\x2d\xd1\xe7\x07\x97\xe8\xf3\x5f\x3d\x3f\x40\x9b\xb1\x63\x44\xe4\xc8\x18\xd4\xb9\x11\xa5\x9c\xf0\x92\x0b\x19\xdb\x92\xa7\xb4\xf1\xeb\xaf\x79\x0b\x8d\xbd\xf6\x64\xf4\x2b\x68\x0a\x7f\xcd\x5b\x0d\xf2\xbe\x52\xde\xfa\xf5\xd7\x0e\xbc\x47\xa3\x70\xcc\x9e\x4f\x8a\xfa\x23\xfd\xc5\xdb\x3f\xf1\xc5\x7f\xa8\x4f\x3e\xd1\xe3\xff\xfa\xff\xa1\xb1\xdf\x3e\x8b\xda\xd7\x93\xfb\xde\x16\x7f\x75\x4c\x9e\x95\x0b\x87\x50\xf8\x0e\x24\xe6\x77\x6c\xfe\xfc\xf3\x0a\x35\xfe\x8b\xcf\xaf\x7e\xfd\x15\x35\xbc\xf1\x53\xf2\x94\x3c\x9d\x78\x8d\x5f\x7f\xc5\x5f\x35\x30\x79\xb5\xa7\xda\x5b\xf2\x96\xbc\x2d\xaa\xfd\xb6\x53\x2d\x72\x9a\x23\xef\x8b\x9a\x1f\xf6\xd5\x84\x16\xdd\x9a\xdf\x96\x6b\x2e\xf2\x44\x55\x7c\x5f\xee\xfa\xf5\x4e\xb5\xc8\xa9\xe7\x36\xf8\x82\xde\x47\x49\x3c\x65\x57\xc9\x9a\x85\xc1\xe0\xe4\xac\xdb\x3b\xed\x91\x28\x15\xf1\xef\x6b\x76\xbb\x88\x05\x0b\x83\x61\xbf\x2f\xcf\x3d\x12\xfd\xbe\x8e\xc2\xe1\x60\xd0\x53\x3f\x97\x11\x8f\x53\x16\x9e\xf6\x4e\x4f\x07\xc3\x3e\x89\xfe\x58\x73\xd5\x44\x3f\x38\x19\x90\x2b\x16\xcf\xe5\xb7\x41\x70\xd6\x1d\xfa\xe4\x2a\xce\x7f\x97\x3d\x0c\x4f\x4e\xfc\x6e\xbf\x4f\xae\x92\x68\xfa\x29\xf4\xe5\xdf\x74\xba\x60\xb3\x28\x59\x66\xe9\x0c\xde\x77\xfd\xfe\x80\xc0\x78\xe4\x8e\x93\x3f\x6e\xe2\x2c\x61\x22\x3c\xf3\x07\x83\xae\xdf\x25\x57\x3c\xbb\x4d\xc3\xc0\x3f\xed\xf6\xbb\xbd\x3e\xb9\x5a\xf3\xe4\xee\x36\xcb\x66\x61\xd0\x1f\x9c\x0d\xbb\xbd\x80\x4c\xa3\x19\x13\xd0\xc4\xb0\x3b\x1c\x0e\xba\xa7\x64\xba\x88\xb8\xe0\x6c\x9d\xab\x01\xf7\x06\x5d\x32\x5d\x64\xd3\x2c\x89\xe4\x0c\x7b\x27\xa7\x67\xfd\x13\x9f\x4c\x33\x1e\x25\x72\x10\xfd\x7e\xf7\xa4\x2b\x1f\xd3\xeb\x44\x0a\xb8\xaa\xad\xc1\x59\x70\x76\x1a\x40\x71\x1e\x27\x9f\x60\xb4\x83\xde\xe9\x29\x99\xf2\x78\x99\x67\x69\x18\xf4\xfb\xdd\x9e\x14\xba\xa6\x77\x51\xaa\x41\x35\x8b\xf8\x27\x05\xdd\xde\x19\x3c\xc0\xbb\xde\xe0\xa4\xdb\x83\xc7\x79\x96\xcc\x58\xca\xe5\xf0\xbb\xfe\x59\xf7\x4c\xd7\x9a\xf3\xe8\x2e\x0c\x82\x20\x38\xf3\x83\x13\x5d\xc2\x58\x1a\x76\x07\x43\xdf\x37\xcf\x95\x1a\x9f\x16\xd1\xa7\x38\x0c\xba\xfd\x5e\xaf\x3b\x50\xcd\x2c\xa3\x39\x4b\x45\x14\x9e\x05\xfe\xd9\xb0\xaf\x7a\xcc\x92\xf8\x86\xa9\xd6\x06\x83\xb3\x93\xb3\x33\x55\x35\xe3\x51\x0a\x4b\x76\xd2\x3f\x19\x74\x7d\x5d\x36\x5d\xc4\xb3\x30\xf0\xfd\xbe\xef\x07\x5d\x28\xe3\x6c\x06\xcd\x0d\xfc\x3e\x3c\xe7\xb0\x76\x61\x30\xe8\xf9\xa7\xfd\x40\x7d\x97\xb3\x48\x75\x70\xd6\x0f\xce\xce\x02\xd5\x41\x2e\x81\x0d\xa0\xe8\x9f\xf4\xfa\xbd\xfe\x49\x51\x0a\xb3\x95\x90\xeb\x9f\x0d\xdc\x52\x56\x2e\x15\x6b\xfe\xfb\x3a\x8b\x73\x16\x0e\xba\x67\x7d\x55\x66\x90\x63\x78\x76\x36\x90\xb0\x63\x6c\xb5\x8a\x53\x58\x9c\x60\x78\x26\x3b\x61\x6c\x95\x7f\xba\x53\x1d\x9f\x05\x83\x80\xcc\xe2\x25\x74\x38\x3c\xf3\x4f\xbb\xc3\x81\x7a\x66\xce\x73\x36\x9b\xeb\x35\xef\x4a\xfe\xe2\xec\x8c\x5c\xc7\x9c\x5d\xf1\x78\xfa\x29\x0c\x24\x80\x82\xfe\x90\x5c\x27\x12\x5b\xcc\x1e\x39\x39\x19\x9c\x75\x7d\x72\x9d\x71\x96\x0b\xbd\x54\xdd\x61\xef\xb4\xdf\x25\xd7\xeb\xe9\x22\x8f\x23\x18\x51\x70\xd6\x1b\x90\x79\x14\xa7\xf9\x55\xc6\x33\x89\x30\x27\xfd\xfe\xd0\x27\xf3\x45\x96\x0b\xd3\x56\x2f\x18\x0e\x4f\x02\x22\x31\x43\x7e\x34\x1c\x9e\x74\x7d\xe2\xe0\x49\xbf\xd7\x3d\x0b\x64\x91\x9c\xc4\x69\xbf\x1b\xc8\xa5\x50\x7d\xf6\xba\x27\xc3\x53\xf5\xfb\x8e\x25\x49\x76\x1b\x06\x41\xdf\xef\x49\xb6\x05\xa6\x68\x6a\x2f\xb2\x94\xdd\xcd\xd8\xad\xde\xb0\x43\x9f\x2c\x32\x61\xe0\xd6\x3b\x3d\xe9\xfb\x24\x4e\x67\x71\x94\xca\xd5\x0e\x7a\xfd\xc1\xe9\xa0\xdb\x87\xa2\x79\x06\x50\xec\xf5\x7c\x12\xdf\x64\xfc\x0e\xe6\x7e\xd2\xf5\x7d\xa2\xd1\x6f\x70\x72\x7a\x32\x1c\xfa\x24\x89\x6e\x58\x3a\x63\x3c\x0c\x06\x41\xaf\x2b\x31\xc3\x94\x5c\x25\xeb\x7c\x01\xdf\xf5\x7a\xc3\x01\x49\xa2\xdb\x54\x8d\xfe\x34\x38\xf3\xcf\x4e\x86\x24\x61\xcb\x2c\x9d\x2e\xe2\xeb\x6b\x89\x58\x12\xb6\xa7\xa7\x03\x92\xc4\xf3\x85\xda\xd5\x41\xd0\x3b\xeb\x75\x07\x7d\x55\xa4\x77\xad\x64\xd3\x07\xbd\xa1\x2e\x93\x9b\x2c\xe8\x9f\xf4\x07\x83\xb3\x33\x55\x64\x01\x68\x00\x33\xec\xf7\x4f\xbb\x72\x58\xf0\x16\xf6\x5b\xef\xf4\xb4\xdb\xeb\xf6\x4c\x91\xc2\xe0\xb3\xd3\xee\x60\x68\x8b\xaa\xb5\x0c\xd0\x06\xa7\xfd\xa1\x1e\xa3\xd9\x11\xc3\x93\x41\xf7\x64\xd8\xd5\x85\x66\x4b\x74\x83\x7e\xf7\xf4\x4c\x77\x6b\x10\xf3\xf4\xcc\xf7\x7b\x7d\xdd\x4b\xb1\x25\x4e\x4e\x7b\xbd\x93\x41\xaf\x54\xcc\xaa\xc5\x82\xb1\x44\x83\x65\x70\x2a\xb7\x96\x2a\xb7\xd3\x3c\x39\x39\x09\x4e\x65\xe1\x52\xd2\xb0\xee\xa9\x0f\x3f\x35\xbe\xf4\xba\x67\x72\x29\x93\x38\x65\x29\x80\x64\x30\x3c\xf1\x89\x21\x1b\x16\x65\x97\x11\xcf\xb2\x14\x68\xe7\xd0\x3f\x25\x4b\x36\x8b\xd7\x4b\xe7\x14\x18\x9e\xf4\x4e\x7a\xdd\xae\x7e\xa1\xb7\xce\x40\x3f\x1a\x2a\xd2\xed\x06\x12\xb3\x75\xe9\x6a\xcd\x57\x09\x0b\xcf\x86\xc3\xee\xf0\xb4\xa7\x0b\x2d\x94\x7a\x67\x27\xa7\xfe\x99\xa9\x5b\x90\x8e\x53\xff\xf4\xe4\xe4\xcc\x37\xe5\x2b\x1e\xa7\x73\xf5\xc5\xb0\x1f\x0c\xfa\xba\xbc\x20\x14\xfd\x93\x93\x6e\xcf\x37\xf5\x15\xb1\x50\x38\xed\xf7\x4f\x82\x93\x1e\x59\xc6\xb3\xb4\x40\xac\x61\xbf\x7f\x16\x74\xc9\x32\x4e\xc5\x94\xb3\x68\x29\x4f\xb0\x6e\x70\x3a\xf0\xc9\x32\xce\xc5\x1d\xcf\x72\x73\x88\xc9\x4f\xb3\xe9\x34\xca\xe3\x54\x97\x74\xcf\x48\x1a\xdd\x44\xbf\x65\x96\x26\x0c\x4f\x87\xa7\x03\x59\x78\x17\x06\xdd\x53\x92\x25\xb3\x24\x9a\xca\x37\xc3\x7e\x6f\x30\x90\x05\xf1\x0d\x83\x3d\xd9\x3b\x19\xaa\xa7\x19\x8f\xae\xc2\x13\xbf\x7f\x7a\xd2\x3b\x23\x05\x49\x1e\xf4\x24\x75\x51\xcf\x30\x7c\x29\x75\xf6\xfa\x7d\x62\x60\xdb\xef\x05\x03\xb9\xf4\xab\x28\x61\x0e\xa9\x18\x0c\x07\x27\x41\xcf\x57\xc5\x00\xa6\xc0\xf7\xbb\x83\xd3\x53\x55\x54\xc0\x29\x08\x06\xdd\xb3\xb3\xe1\x10\x8a\x1d\x30\xf5\x7b\xa7\x41\xd7\xef\x91\x55\xb4\x8a\xee\xa2\xdb\x45\xbc\x52\x1b\xd7\x3f\x39\x21\x2b\x16\x4d\x17\xab\xf5\xf5\x35\xcc\xf5\x64\x78\xd2\x23\x2b\xc6\xd7\x92\x5e\x0c\x4f\xcf\xce\x02\x62\xf6\xc6\x30\xf0\x7b\x03\xb2\x4a\xd6\x4b\x79\x46\x77\xfb\xc3\xde\x09\x59\x65\xb7\x33\x4d\x64\x83\x40\x9e\xac\x81\x4f\x34\x4a\x48\x2c\x3b\xe9\x0d\x09\x67\x57\x6c\x3a\x8d\x74\xe9\x70\x78\x76\x72\x7a\x1a\x10\x3d\xfd\x20\x18\x9e\xfa\x84\x67\xf9\x9d\xe6\x07\xba\x52\x54\x0f\xce\x08\xcf\xee\x22\xb5\x1f\xfa\xdd\xd3\xa1\x3c\x26\xf2\x68\x36\x4b\x98\xaa\x76\x16\x74\x4f\x82\xd3\x13\x62\xf7\x68\x3f\x18\x9e\x9e\x76\x49\x1e\xa5\x33\xd3\xd2\xd0\xef\x75\x4f\x87\x7d\x52\x20\xa3\x3f\xf0\x7b\xdd\x13\x59\x90\x2f\x58\x02\x2c\xc2\x49\x7f\xd8\x3b\x25\x79\xcc\xd2\x34\x0a\x03\x7f\xe0\x0f\x4f\xce\x4e\x48\x1e\x27\x37\x92\xe4\x75\x87\xbd\xae\xa4\x1a\xa5\xfd\xdd\x0b\x48\x81\xc8\xc3\xb3\x13\xdf\x1f\xea\x12\xb5\xd9\x7b\x27\xdd\xb3\x7e\x9f\x38\xfb\xdc\x94\xa4\x7a\x23\x0f\xce\x7a\x3e\x29\x21\xfd\xa0\xef\x9f\x90\x82\x04\xf4\x87\x5d\xff\xec\xd4\x27\x42\x92\xbf\x9e\xdc\x2c\xf2\x81\x45\x49\xd8\xeb\x9e\x9e\x0d\x81\xb5\x17\x09\x0b\x83\x7e\xd7\xef\x9f\x9e\x9e\x12\x91\x2d\x23\x91\x01\xd5\x3f\xf1\xcf\x06\xc4\xd9\x39\xdd\x41\x70\x3a\x18\x12\x7d\xc0\x06\x83\x61\x2f\xf0\x4f\x87\xe4\x76\xc1\x22\x01\x9c\x5d\x4f\xce\xa8\x38\x00\x4f\xba\xc1\x40\x3d\xe6\xcb\xec\x93\x61\xfe\x4e\x07\xc4\xa1\x44\xc3\xb3\xa1\xaf\x9f\x0d\x3a\x06\xfd\x81\x7f\xd2\xdf\x1e\xbc\x01\xab\xa3\xfb\x59\x9c\xaf\x92\xe8\x2e\xba\x4a\xd8\xbe\x84\x69\xa0\x04\xec\x38\x15\x11\xde\x12\x63\x7d\xf1\xe0\x47\x5e\xa3\xb1\xdd\x62\xf2\x06\xad\x49\x4e\x04\xe2\xe4\xfe\x8a\xcb\xcd\x5f\x72\x83\x2b\x74\x11\x54\x09\x52\x6c\x14\x1c\x77\x4e\x0a\x7d\x80\x7c\x82\xb8\x02\xea\x8e\x01\x5a\x6f\x19\xed\xae\xf9\x71\x65\x7e\x58\x29\x0d\xd8\x95\x2f\xf5\xe4\xf6\xf3\xd7\x7a\xe1\xf3\xab\x3d\x30\xd8\x92\x87\x81\xeb\x5f\xe8\x78\x98\x3a\x14\x28\xbf\xa0\xdd\xc1\xa0\xd9\x34\xe5\x73\x5d\x3e\xaf\x94\x5f\xe9\xf2\xab\x4a\xb9\x1e\x93\x7e\xab\x9f\x2e\x68\x50\xbf\x58\x4e\x46\x70\x5d\xd5\x98\xb7\x06\x94\x52\xc4\x68\x9c\xbf\x8e\x5e\x23\x86\x47\x41\x68\x35\xba\x3e\xb1\xea\xde\x80\x30\x8c\xf1\xa8\x21\x17\xba\x11\xca\x3f\x11\x6a\x60\xaf\xae\xaa\x14\x2c\xe0\x81\x67\x6b\x9d\xe5\xb8\xc3\xf1\x66\xe3\x63\xec\x35\xc8\x61\xe3\xd1\x1f\xcd\xff\xca\x47\x57\xfa\x23\x98\x17\x1b\x35\x70\x23\x84\xef\x21\x95\x3d\xde\x6e\xb1\x44\xd0\x19\x99\xfe\x3d\x08\xaa\x3b\x5d\x68\x49\x5f\x8b\xf9\x7f\x27\x72\x3e\xb6\x87\x0a\x62\x3a\xeb\xbd\xf8\x8f\xde\xd0\xf7\x7a\x43\xbf\xa5\x9b\xba\xf0\x31\x11\x76\xc1\x37\x1b\xf5\x4b\xb5\x8f\x47\xbe\x0e\xd0\x6c\x3d\x17\x49\x4a\xb9\x87\xf8\x45\x67\x30\xe2\x61\xd0\xe6\xb8\x25\x48\x4c\xbb\x2d\xde\x4e\x0f\x4a\x77\x54\x2b\xc4\x9e\xd0\x6e\xdf\x1f\xb1\x76\xb7\xef\x87\xcc\x93\x6c\x74\x4c\x52\x4c\x56\x88\xd9\x1f\x17\x41\xd7\x1f\x31\x0f\x6a\xb4\x6d\x8d\x2a\xbc\x1e\xda\x4a\xc8\x6c\x81\x5c\x23\x7f\x7e\x41\x83\xca\x34\x70\xb1\x51\x12\x5d\x2b\xb9\xa0\xc1\x23\xb6\xcf\x56\xeb\xaa\xbe\x53\xda\xa5\xb7\x2f\x8e\x83\x53\x9f\xbc\xa4\xc1\xa9\x7f\xac\x4b\xc8\x1f\xb4\x23\x25\xb4\x13\xf2\x03\x0d\xc8\x37\x34\xe8\xf8\xa7\xa7\xa7\x3d\xf2\x3b\xed\x1f\x77\xcf\xc8\x47\x3a\x94\x7f\x7e\xa6\xbd\xd6\xc7\xd6\x47\xf2\x0f\xfa\x51\xfe\x3d\x78\x83\x96\xe4\xfa\xcb\x68\xa7\x54\xc8\x6a\xc4\x5e\x70\xda\x42\x16\x0b\x43\xa6\xe1\x14\x69\xf2\xf4\x78\x2c\x73\x1b\x6d\xff\xb9\x46\x6b\x11\xcb\x8e\x6f\x88\x8f\x83\x60\x68\xd1\x49\xb5\x84\x47\x2c\x64\x2a\xff\x7c\x74\x3c\xf0\x7d\xc2\xdd\xd7\x57\xf0\xba\xad\x7e\x1f\x77\x7d\xbf\xb8\xff\xfe\xa1\x35\x07\x37\x47\xfa\x47\x6b\x8e\x04\x26\x9c\x7e\xd3\x9a\x23\x6e\xc8\xf4\x15\xea\x75\xba\x7d\xbf\x3f\xe8\x77\x5b\xa2\x1d\x74\x06\xbd\x93\xa0\x77\x3a\x68\xb1\x76\xa7\x7f\x76\x3a\xe8\x05\xfd\x16\xc7\xe4\x0a\xb5\x3b\x67\xc3\xb3\xee\x70\xd8\x12\x5e\xd0\x39\x3d\x19\xfa\x81\x7f\xda\x62\x5e\xc7\xef\x07\x83\xc1\x50\xd5\xe9\xf8\x83\xc1\xb0\xdf\xeb\xb7\x44\xbb\xd3\xf5\xfb\x7e\x77\x70\xd6\x62\x5e\xd0\xf1\x07\x27\xdd\xee\xa0\xdb\xe2\x55\x9c\x54\x94\xe3\x96\x5c\x3e\x6e\x09\x6f\x4b\xfb\x76\x4a\x1e\x5c\xd0\xc7\x2e\x61\x7d\xa3\x7b\x16\xf4\x4b\x87\x96\xca\x15\x8d\xd5\xd9\x6d\xd1\xfe\x17\xda\xee\x74\xcf\xba\xdd\x13\xf2\x23\x6d\x77\xce\xfc\x61\xff\x8c\x7c\x4f\x83\xce\x99\x64\x96\xc8\x57\xf4\xfb\xd6\x8f\xe4\x27\x1a\x74\x4e\x4e\xbb\x27\x27\xad\xef\xc9\xbf\xec\xef\x5f\xda\x87\xed\x4e\xd0\x3f\x1d\x06\xad\x1f\x0f\xde\xa0\xcf\xe4\xf9\xdf\x43\x63\x3f\xff\x8f\xd3\xd8\xc7\xf6\x50\xbb\x15\x1c\xcc\x5e\x48\xea\xa9\x7f\x4a\xe2\x87\x5b\xdf\x11\x41\x3d\x4d\x46\x4b\x9b\xc0\x21\xb4\x2d\xd1\x42\x41\x5b\x60\x92\x52\x7b\x07\xc7\x30\x89\xa9\xbd\x81\x63\xb8\x4c\x68\xe1\x7e\x46\x78\xbc\x85\x0c\xc0\x53\xcf\xac\x42\x8c\x31\x29\xde\xff\xd2\x4a\xbd\x1f\x2b\x65\xdf\xb7\x52\x5c\x87\xdc\xac\x33\xcd\x92\x8c\xd3\x94\xc0\x4d\x30\xcd\x09\xeb\x2c\xf2\x84\xc2\x5d\x49\x74\x45\xaf\xe5\xf3\x34\xa1\x97\xb2\xe6\xfa\x8a\x2d\x58\x12\x7f\xa6\xcf\x89\x36\x8e\x51\x06\x38\x85\x09\x04\x69\x5c\x5e\xb2\xfc\x95\x8a\xac\x4c\xee\x55\xbc\xb9\x23\x7f\x0b\x2e\x7d\xf7\xdb\x09\xe9\xfe\xaf\xb6\x0e\x2a\x72\x48\x31\x22\xa8\x4f\xd2\xdd\xe8\x72\x31\xbd\xdf\x9e\x0b\x48\x1c\xa6\xb3\x28\x23\x56\x0a\x23\xe7\x35\x1a\x78\xb3\x01\x4b\xc6\x78\xd7\x10\x34\x4e\x12\x36\x8f\x92\x43\x39\xab\x50\xa5\x6b\x8a\x75\x78\x09\x07\x1b\x38\x8a\xb1\x6b\x62\x64\x52\x44\x5c\x52\x56\xb2\x35\xd2\xf9\x8c\x8c\xb5\x12\xf5\x9d\x58\x68\xe7\x29\x44\xba\x4b\x21\x73\xf3\x38\x9d\x98\x74\x60\x02\xdf\xcb\x47\x1a\x13\x46\x99\x0d\x9e\x9e\x62\x93\x7d\xd1\x94\xa5\x5e\x80\xb1\xce\x1f\x58\x0a\xad\x0a\x91\x50\x9d\xa0\xd4\xc2\x86\x1d\xc4\x44\x25\x47\x8a\xa9\xc6\x0c\x67\x5f\x6d\xb7\x07\x7c\xcf\xf5\xc7\xbd\x73\xf7\x11\xf2\xdd\x80\x23\xca\xd7\xd0\x44\x8d\x24\x59\xbd\x79\x2b\x33\x16\x56\xf9\x2a\x89\x05\x3a\xfe\xaf\xcd\xaf\xb9\x77\x8c\x21\x7f\xcf\xae\x75\x5d\xa3\x01\x77\x54\x26\xea\x47\xa3\xd3\x50\x69\xf2\x21\x71\x0f\xe2\xd4\x85\x42\x05\x50\x98\xb0\x66\xf3\x48\xec\x9a\x07\xed\xae\xf6\x3a\xfd\x94\x66\xb7\xa9\xbb\xda\x26\x18\xa2\x2c\x61\x2a\xf1\x38\xdf\x42\x74\x60\xaf\xd1\x20\x31\x26\x11\x6d\x07\x24\xa7\x99\x93\x27\x72\xd7\xfb\xed\xa2\x8b\x55\x04\x43\x58\x11\xe1\x5a\x34\xd7\x46\x64\x31\xd8\xa7\xd2\xe5\xd9\x88\xa0\x72\x4c\x42\x99\xbb\x9d\x7b\x5e\x74\x91\x43\x86\x34\x2e\x45\x87\x6c\x1c\x4d\x70\x07\xcc\xe1\xe2\x31\x9f\xd0\x14\xc5\x2a\x8d\x91\x8a\x95\xad\xb2\x9f\x1d\xea\x21\x48\xac\x02\xef\x4c\x85\xf5\x35\x1f\x40\x16\x15\xd7\xfb\x76\x5b\xe9\x74\xa7\x57\x58\x86\xf2\x4a\xdb\x94\xe4\x44\xa2\x7a\xec\xa2\x7a\x6c\x50\x5d\xae\xdd\x38\x9d\xe0\x02\xdd\xad\x09\x3a\xe0\xe4\xd6\x1d\x16\xb6\xde\xa9\x7c\x4b\xa6\xd9\xea\x6e\xf7\x24\xb8\xdf\x12\xe3\x91\x52\x35\x0b\x64\xc6\x2c\xd0\xe4\xc5\x39\x28\x6d\x61\xb0\xd4\x8c\x92\x64\x37\x7c\x0e\xe2\x3b\x74\xa5\xdd\xc5\x4f\x7c\xec\x4c\x90\xc4\xe5\x78\x25\x19\xf5\xcf\x33\x48\x91\x91\x61\x08\xb4\x5b\xd0\x9c\xcc\xeb\x4e\x8a\xd4\x7e\x97\x7f\x11\x31\x55\xd2\x06\xc9\xd6\x21\x1d\xd0\xe4\x12\x02\xe3\x68\x10\x9b\xbe\xd3\x71\x36\x51\x90\xb4\x11\x41\x63\x93\x5c\x63\x27\x30\xce\xdf\x32\xa8\x22\xf4\x02\x8c\x88\xc4\x40\xe6\xac\x99\x6a\x0c\x64\x2e\xc6\xe9\x38\xae\x0e\x0c\xc2\xea\x30\x50\x7b\x80\x87\xb9\xf8\xcb\xc7\x5a\xef\x7f\xf5\xb1\x56\x18\x6e\x20\xd6\xa2\x5d\x7c\x41\x83\x11\x6b\xb1\xb0\xdd\x66\x2d\xd4\x6d\x33\xec\x05\xf8\xb8\x5b\x39\x70\xea\xbe\x68\xb1\x10\xb1\x36\xed\x62\xf9\xd3\xeb\x96\x3e\x72\x78\x33\x14\xb4\x2d\xd3\x33\x6d\x31\x5c\xaa\x17\xd7\x36\x6e\x19\xb8\x2e\x09\xfc\x16\x6b\x07\x3e\x0e\xbb\xed\x52\x69\x5b\xbe\x28\xb7\x95\xd5\xb6\xa5\x7b\x07\x13\x82\xa0\xcd\x5a\x0c\x87\x6e\x81\x99\x41\x75\xd6\x91\x6b\xe0\x42\x3d\x86\x2f\x56\xa3\x5b\x98\x33\xbb\xb8\x1e\xdd\xb6\xe4\x77\x0b\xdc\x62\xde\x32\x64\x17\x73\x5d\x70\x27\x0b\xae\x42\xf5\x70\x23\x1f\x2e\xe1\x08\x2c\x32\x07\x1f\x32\x24\x4a\x9e\x82\x05\x0b\xeb\xd8\xdc\x08\x6b\xc0\x2d\x79\x4b\xc2\xc1\x84\x3b\x65\xa9\xa0\x8c\xf0\x2d\xea\x61\xb2\x7e\x4c\x8b\x41\x01\xb2\xa0\xfd\x98\x56\x93\x47\xb4\x5a\xb7\x4c\x10\xf2\xd8\x5d\x20\xe8\x4d\xc2\xf3\x0b\x1d\x4e\x8d\x04\x4e\x66\x74\x7a\xdc\x25\x2b\xda\x3f\x0e\x02\xb2\xa0\x43\xf9\xe7\x9a\x9e\xca\x3f\x4b\xda\x39\x19\x90\x3b\x7a\x26\x1f\xe6\x34\xf0\xe5\xdf\x2b\xda\x39\xeb\x9d\x0c\xc8\x0d\xed\x06\xc7\xdd\x2e\xb9\xa4\xc3\xde\xf1\xb0\x4f\x6e\x69\x70\xbc\x3a\x5e\x91\xe7\x8f\x01\x90\x44\x62\x84\x84\x17\xe0\x16\x6b\xef\x80\x27\xbb\x61\x3c\x5f\x64\x99\x1e\x6e\xd0\x39\xf1\x83\xc1\x29\x26\x9f\x1f\xd1\xb4\xdc\x4c\x45\xdb\x9e\xc0\x5e\xf0\xc8\xd6\xdf\xfc\x89\x35\x50\xdb\xd0\x99\x41\xb1\x21\xdd\xae\xbb\xbb\x2b\xb1\xaf\xf7\xa7\xb4\xdb\x32\x4b\xf2\x9e\x96\x5d\x32\xaa\xb9\x32\x4d\x8b\xad\xf2\x76\x6d\xb7\x19\x6e\x59\xc1\x06\xc5\x6d\x86\x8f\x39\xd6\xac\xa0\xb2\xd5\x91\x2f\x82\x63\x24\x0a\xcb\xd2\x40\xe2\x0b\x6e\x21\x7e\x4c\x9f\x3a\xb9\x3e\xa3\xa5\x64\xdf\xd6\x33\xc7\x89\xc9\xe1\xf1\xe4\xa0\x5a\x4f\xf1\x96\xa4\x9d\x15\xe3\x71\x36\x2b\x6a\xf1\x72\x2d\x59\x67\x8b\x02\xd2\xe9\x61\xf2\xf6\x71\xd3\x0a\xda\xa5\x89\x49\x7a\xa3\x08\x81\x3b\x39\xe6\xc5\xff\x67\x4d\xee\xd3\xa3\x26\x87\x10\xa3\x5d\x49\x57\xf1\x85\x3f\xaa\xae\x5f\xdd\xea\x85\xdd\x5d\x68\x94\xeb\x79\x50\x4f\x22\xda\xff\x29\xb0\x38\x60\x1d\x16\xe5\xec\x65\x9c\xb2\xa8\xce\x69\xce\x63\x92\x1d\x90\x55\x7e\x5a\x47\x33\xc8\xc5\x60\x1e\x5e\xa4\x75\x4e\x76\xac\x55\xfa\xe2\xcd\x5a\xd4\xd7\x82\x43\x74\x5b\x6a\x4e\xd6\x35\x1d\x3c\x5b\x5f\xc5\x53\xca\xdd\xa7\xbd\xfd\x15\x3d\x42\xbd\xfa\x2e\x15\xad\x61\x5e\xb0\x2d\xb7\x29\x6b\x9b\x6e\xde\x66\xc9\x1d\x4d\x9c\x87\x17\x29\x48\xff\xe6\x51\xd6\x5d\x97\x5e\xcb\x12\xf3\xc1\xfb\x38\x05\x9d\x81\xfe\x5d\x3f\x5c\xe7\x98\x67\xad\x99\x05\xc0\xfb\x38\xdd\x03\xa9\x42\xf9\x51\xae\xae\xfa\x36\xfd\x3d\xff\xbc\x02\xef\x33\xfd\xbb\xbe\xef\x1a\x86\x61\x5b\x7c\xb3\xa7\xff\xa0\xbd\x83\xd1\x5b\xb7\x23\xf9\x99\xe9\xf9\x59\xcc\xa7\x09\xa3\x59\xe9\xf1\x41\x38\x38\x0c\xc7\xb6\xf4\xd5\x83\xd0\x50\x1f\x1d\xb6\x6b\xbe\x53\x03\x32\x23\xf8\x26\x5b\xa7\x53\x46\xa3\xd2\xe3\xbe\x01\x45\x72\x20\xb6\x39\x55\x57\x36\x56\xfd\xba\x7e\x68\x25\x66\x4a\x35\x15\x46\x48\x52\x0f\xc5\x33\x99\x46\xa2\xe9\x27\xfa\xe6\xa0\x78\x78\x91\xd2\xe7\xce\x3b\xd9\xf8\x67\xe2\xbe\x96\x25\x6f\x0c\xc4\x93\x28\x17\xf1\x14\x9c\x17\x9d\xe7\x17\x29\x78\x37\x3a\x25\xf2\xa3\x9d\x4a\xb2\xf0\xd3\x5f\xe6\xe7\xfb\x0f\xf1\xf3\x10\x42\xe1\x0b\xfc\x7c\x8c\x38\x61\xa8\x31\xeb\xb5\x41\xbf\xd6\xa8\xcf\xd9\xf3\x18\xee\x9e\x14\x8d\x4c\x48\x8c\xc3\x18\xa5\x92\xd1\x4f\x35\xa3\x4f\xe4\x8f\x1a\x6e\x5f\x8a\x92\xf5\xfc\x3e\xdf\x8d\x04\xc1\x5a\x8c\x44\x34\x6b\x99\x24\x39\x08\x05\xed\x5e\x8b\x79\xbd\x56\xd6\x8e\x70\x4b\x78\xa8\xdf\x1e\xb6\x32\xaf\xd7\x8a\x70\x8b\x7b\x28\xf0\xcc\x5b\x28\x49\xbd\xa8\x15\xe3\xe3\x61\x45\xf7\xb4\x1b\xa7\xd8\x21\xcd\x1e\x6f\x89\xed\x4e\x3a\x34\xed\xda\xd8\x2e\x32\x22\x8e\x20\xba\xf7\x93\xe0\xd4\xdf\x6c\xf8\x45\x1b\xdc\x28\xda\xbd\xa1\xdf\x72\xee\x00\xf9\x71\x6f\xe8\xe3\x90\xe3\xf0\x06\xd9\x2b\x4d\x11\x32\x5c\x2b\x09\x1c\x06\x70\xf7\xe9\x31\x3c\x8a\x0a\x89\xd4\x75\xe2\xe0\x6d\xb1\x93\x4c\xc9\x6a\x95\x1d\x16\x97\x63\x22\x8a\x67\x59\xad\xcd\x08\xa7\xc1\x31\x2f\x16\x22\xad\xe1\xe6\xbd\xb4\xa5\x84\x4f\x70\x6b\x65\xc5\xb0\x05\x1e\xf1\x50\xb8\xf1\x8c\xa3\x87\xe1\xf2\xc0\x8c\x73\x67\xc6\xee\x02\x14\xc1\x39\x79\x7d\x56\x04\x92\x97\x1f\xd7\xbb\x39\x13\x54\x66\x04\xad\x3e\xa4\x02\x6e\x13\xf8\x38\x9d\x60\x12\x81\xea\xb0\xc3\x37\x1b\x9f\xe4\xea\xf7\x5c\xfe\x5e\xab\xdf\x57\x9b\x8d\xbd\xf9\x89\x28\x43\x91\xec\x0d\x32\x56\xac\x29\x43\x6b\x4c\x62\x6b\x25\x1d\xd4\xc5\xdc\x8a\x3b\x1c\x2c\xcb\x49\xdc\x99\x53\xa5\x31\xef\x5c\x51\x08\x93\x19\x83\x25\x42\xad\xbb\x58\xad\x8b\x9d\x51\x0e\x8d\x98\x4a\xd7\xef\x35\x0e\x1b\x61\xa3\xb1\xad\x82\x2c\x23\x91\x02\x1a\x44\x38\x5c\xd3\xb1\xf5\xf2\xcc\x28\x93\xf0\xd1\xf3\x70\xc5\x7d\x09\x5e\x62\x1c\x94\xd9\x11\xa5\xf1\x66\x93\x1e\x51\x9a\x19\xef\xe4\x48\x29\x48\x95\x9f\x60\x12\x09\x86\x1a\x3a\x97\xa7\xfa\xc3\xf1\x41\xae\x75\xa8\x71\xb8\x6e\xf7\xc9\xe7\xf0\x29\x44\x5d\xda\x12\x28\xe8\x42\x41\x4a\x32\x49\xb1\x58\x92\x33\x14\x6f\x36\x19\x6e\x36\x6b\x1a\xf6\x62\x4f\x78\x99\xc7\xf1\x16\x65\x1d\x5b\xfe\x4f\xe2\x3c\xfc\x42\x22\xf7\x4d\xe4\xbe\xc9\xc9\x1a\x57\x52\x24\x92\x0c\xdf\x33\x20\x73\x88\xb5\x85\xdc\x9b\x23\xe1\x51\xf0\x82\x68\x33\xf9\xd8\x6c\x22\x06\x05\x98\x64\x76\x1a\x5c\xfd\x8a\x11\xc7\x5e\x83\x67\xc2\x99\x75\x8a\xf5\x8c\x54\x2a\x34\x1c\x8a\x66\xb3\xb6\xba\x27\xbc\x14\xe6\xa1\x0a\x48\x64\x7e\x3c\x38\xca\x3d\x63\xc8\x3f\xb1\xdb\x7f\xee\x19\xc2\xce\x08\x74\x65\x3b\x00\x78\x26\x91\xfe\x5b\xd7\x7d\x4a\x00\x75\x34\x06\xf0\xcd\x46\x1c\x51\x9a\x1a\x5c\xca\x4c\xe3\x99\x6c\x7c\x1a\x25\x16\x18\x0d\x62\x7e\xe0\x06\x3e\x88\xec\xd8\x73\x8b\x06\x5c\xa1\x41\xae\x47\x2c\x48\x6a\xd0\x00\x1c\x3c\x78\xb3\x29\xff\xa4\x9b\x4d\x5d\x27\x1e\xf7\x1a\xa4\xe1\xa5\xca\x34\x42\xce\x44\x96\x4b\x74\x80\x1f\x12\x15\x74\x49\x64\x4a\x60\x76\x19\x8d\x54\xec\x5d\x77\x5b\x1a\xfd\x9b\x20\x9c\x42\x72\xfb\xb5\x51\xbb\x79\x1e\xbf\x48\xcf\x71\x3e\x46\x82\xae\xc7\x7c\x82\x3b\xf1\x84\x8a\xce\x67\xe7\x5e\x2b\xef\xfc\x96\xc5\x29\x6a\x34\x4a\x39\x7d\x92\xb2\x50\x02\x54\x93\x7d\x5e\x21\x86\xb1\x17\x1c\xb3\x92\x4a\x66\x5a\x4b\xe3\x9c\xdc\x64\x08\x92\xef\x2f\xf2\x04\x71\x8c\x3b\x0b\x82\x52\xfd\x98\xca\x47\x98\x14\xe2\x9d\x9c\xa4\x9d\x5c\x52\x22\xf9\x90\x90\xb4\x93\x48\x7a\x24\x1f\x34\x31\x22\x69\xe1\xeb\x52\xed\x8e\x39\x41\x4c\x16\x54\x52\x18\xc2\x3b\x39\xcd\xd4\x8f\x44\x51\x29\xdb\x92\xa2\x55\xbc\x42\xab\x66\x8f\x9c\xc7\xb4\x3c\x8f\x69\x65\x1e\x53\x92\x76\xa6\x7f\xeb\x3c\xa6\x7f\x6e\x1e\xab\x9a\x79\x1c\x72\x54\x26\xc1\xdc\xe1\x3b\xd4\xbc\xec\xc5\xa2\x99\x5d\x5c\x2a\x8c\xd5\x1c\x73\xbd\x56\x71\x27\x37\xd3\x4a\x48\x2c\xe7\x98\x94\xe6\x18\x3f\x76\x8e\x99\x59\xab\xdc\xcc\x71\x8d\x9c\xd3\x3d\xc5\xee\x7c\x93\x62\xbe\x46\x44\xa5\x5e\x2a\xcf\xa1\x68\xb9\x8c\x28\x27\xf1\x16\x05\x4a\xec\x5f\x90\x6b\xb2\x24\x77\x64\x5e\x13\x1b\x95\xd9\x84\xc9\x3b\x83\xb3\xab\x0d\x4e\xc9\x29\xf5\xc3\xf4\x09\x0d\x46\x28\xa5\x01\x11\xed\x40\x2b\x29\xaf\x93\x4c\x1e\xc0\x2d\x21\x17\x9d\x8d\xe3\x89\x3c\x7f\xc6\xb1\x17\x4c\x48\x4e\xe3\x27\xfe\x88\x8d\xe3\x76\x30\x09\xbb\x92\x75\x23\x6b\x1a\x5f\x88\x76\x20\x0b\xbd\xae\x2c\x8c\xda\x99\x65\x21\x10\x4a\xdb\xf1\xb1\xc0\x2d\x41\x72\x38\xaf\xd6\x78\xbb\x25\x57\x0f\x8c\x7a\xff\x98\x9d\xb1\x21\x94\xfe\x07\x05\x3d\x82\xe7\xa5\x61\x8a\xcd\x50\x51\xec\xc9\x69\xfc\x87\xd0\x43\x96\x3f\x72\x55\xae\x4a\xd7\xea\xa1\x2b\x1f\xea\x06\x09\x47\xaa\x1a\xe4\x4d\x9d\x54\xb3\x6b\xed\xc0\xb6\x5b\x72\xe9\xea\x3f\x2a\xda\x8f\x22\x72\x73\x2c\x69\x8d\x62\x64\x18\xc6\x1d\x4e\x00\x31\x81\xaf\x91\x8f\x72\x06\x31\x62\x9d\x39\xe1\x9d\xb9\x44\xc5\x18\x5c\x02\x79\xe7\x4a\xa1\xa2\xf5\x1c\x2b\x30\x66\x17\xfb\xdc\xbb\x48\xc8\x3e\x80\x09\xeb\xcc\x69\xa6\x7e\x5c\xd1\x5c\xfd\x28\x76\x98\x7c\x04\x8c\x53\x30\xce\x10\x77\xf4\x23\x0a\xef\x18\x28\x37\x30\xb9\xa5\x39\x9a\x63\xf2\x9c\xe6\xe8\xca\xd5\x47\x96\xa3\xb1\x8a\x91\x89\xf9\x16\xc2\xfd\xd8\xc8\x5a\xd5\x49\xd9\x5a\xe7\x3f\x0c\xe1\xfa\xc4\xb2\x7c\x29\x2e\xf1\x87\xa9\x9b\x35\x2b\x96\x64\x1e\x67\x63\x3e\xa1\xef\x20\x94\x2a\x11\x92\xd4\xab\x0b\x43\x0e\x97\xe0\x5c\x25\xd5\x92\xe5\x75\xdb\xb1\xda\x16\x54\x96\x0d\x3a\xe7\x44\xb4\xdd\x92\x37\x7b\x83\xa8\x7e\xeb\xe4\x4f\x67\xe0\x7f\xd7\xa6\xac\x8e\xff\xe6\x1d\x1d\x13\x09\x31\x4f\xb4\x52\x4c\xf8\x76\x4b\x9e\xee\xb9\x2c\xde\x6d\xc8\x95\x5d\x44\x4b\x7e\xfb\x7e\x0f\x94\xef\xb7\x60\x05\x70\xf0\x50\x2c\x76\xf0\x91\xbc\xdf\x62\xa2\x2b\x89\x9a\x4a\x2a\x97\xf4\xfd\x56\x43\x5c\xc7\x1a\x81\x48\x9c\xa3\xb4\x0a\xf3\x30\xfe\x22\x98\xe5\x97\xa9\xbe\x7c\x2d\x43\x38\xde\x6e\xc9\x5b\x7a\x3c\x6e\x7b\x93\x11\x1a\x85\xbf\xce\xbc\x5f\x3b\xa3\x5f\x67\xad\x0d\xfc\xf1\xb0\x71\x05\x94\xef\xc1\x13\xf0\x78\x4e\x3e\xb9\x1e\x71\x6f\x3b\x79\xb6\xe6\x53\x46\x1a\xf3\x06\x26\xcf\xea\x01\x03\x42\xc7\xdb\x8e\x94\xd0\x5f\xa4\x33\xf6\x99\x7e\x72\x7e\xfb\xe6\x62\xdb\x30\xd9\x90\xa6\xc6\xa3\x8d\x06\x11\xf2\xff\x73\xc4\xe9\x5b\x1b\x9c\x03\xd2\xd8\xe9\xc8\x28\x02\xe3\x73\x8c\x62\x9a\xaa\xdb\x7a\xfc\x24\x6b\x36\xe1\x04\xc9\x75\x8a\x8e\x18\x93\x7c\x1c\x4d\x46\xf2\x3f\x8f\xc6\x61\x3e\xf6\xbc\x68\x42\x63\x2c\x37\x39\x1f\xfb\x13\x4c\x29\x45\x29\x4d\xe5\xcf\x91\x53\x35\x35\x55\xd3\x10\x99\x5f\x92\x03\x5a\x5b\x9e\x2c\x02\x06\x0c\x62\x41\x60\x49\x23\x9c\x19\x59\x29\xc1\x66\x90\x2b\x0f\x6b\xef\xa0\x8a\x3b\xfc\xd1\x7a\xec\x4f\x46\x0f\x51\xba\x92\x46\x54\xd9\x62\x23\xf9\x51\xe7\x33\xae\xb3\x89\xaa\xa5\x90\x48\x40\xe4\x13\xc3\xb9\xd5\xf2\x77\x70\xa3\x7e\x9e\x5e\x08\x10\xf9\xf2\x31\xe2\x74\x0d\xb7\xe8\xf1\x84\xf2\x7d\x4c\x1d\xde\x92\x77\x2e\x26\xb8\x09\x3e\xb5\xce\xc4\x4d\xca\x0b\x3c\x72\xe3\x2a\xcb\x12\x16\x41\x0e\xde\x78\x74\x83\x38\x0e\x51\x23\x5d\x43\x4c\x28\x28\x7a\x1a\x36\x72\x30\x74\x56\x8f\xc0\x08\x81\x76\x44\x12\xea\x11\xe2\x34\x25\x97\x38\x7c\x16\x72\xd7\x25\x59\x57\x19\x5d\x96\x8b\x25\xe9\x18\xbd\xd9\xcd\x27\xf8\xb9\x2e\x6d\x84\xb6\x0f\x78\x73\x5d\x6b\x4c\xc1\x6d\xac\x42\x63\x93\xca\xf1\xe8\x7d\xf8\x14\x6b\x76\xfd\x55\xc9\x94\xf4\x37\x7a\x5f\x88\x5b\xa1\x4f\x0a\x71\x2b\xf4\x89\x92\x68\x42\x9f\x80\x68\x21\xff\x02\x3b\x1e\x06\xea\xc7\x2f\x61\xb0\x25\x1f\x6a\xc2\x7a\x12\x2d\x5d\xc2\x21\x69\x14\x39\x91\xe3\x2e\xcd\x5a\x92\x72\x41\x02\x1b\xc4\x8e\x69\x44\xc4\x31\x8d\x30\x41\x6b\xca\x5a\x1c\x48\x62\xb3\x89\x78\x9b\xb2\xd6\x9a\xa4\x6d\x2a\x5a\x6b\x4c\x50\xee\x34\xc0\x5b\xdc\x4b\x5b\x29\x34\xc0\x8f\x69\x4e\x52\xf9\xdf\xfa\x98\xe6\x98\xb0\x56\x7a\x21\x5a\x1c\x42\xa5\xb4\x19\x11\xb4\x2d\xc8\x9a\xb6\xd7\x72\x5b\x47\x98\xb8\xf3\x8d\xdd\xf9\x66\x66\xbe\x8e\xcf\xb6\x20\x0c\xb7\x5e\xe9\xf9\xdb\x72\xb4\x86\x42\x05\x8c\xc8\x00\x23\xdf\x6e\xc9\xb7\x74\x5d\x13\x00\xb4\x91\x66\x29\x53\xd1\x77\x7e\x0b\xd1\x62\xb3\x41\x8b\x6a\xf0\xc2\xe7\x09\x83\xd4\x11\x8d\x6f\x5f\xfc\xdc\xc0\xe4\xba\x78\x6f\x7e\xe8\x1a\x64\xe9\xbc\x52\x01\xcb\x7e\x8e\xd9\x2d\x26\x8b\x4e\x2e\xee\x12\xa6\x04\xe6\xeb\x8c\x2f\x29\x23\x8c\x2e\x3b\x73\x26\x9e\x65\xcb\xd5\x5a\xb0\xd9\x7b\x59\x01\x41\xae\x29\x96\xce\x9e\x2d\xe2\x64\x86\x16\x8a\xf0\x63\x59\xcf\xa8\x25\x7f\x96\xe8\xa5\x25\x77\xd9\x92\x1c\x50\x87\xb3\x65\x76\xc3\xec\x47\x85\xa5\xd1\x09\x69\x07\xc6\x96\xa9\x41\x1a\x98\x7c\x40\x1e\x1b\xfb\x13\xe2\xb1\x71\x00\xff\x77\xe1\xff\x1e\xfc\xdf\x87\xff\x07\x13\x8c\xb7\xa4\xb1\xfa\x4c\x0e\x1b\xf2\x0f\x6e\x90\xc6\x8c\xcd\x31\xf8\x37\xd7\x81\xf0\xd0\x98\x50\xfe\x16\xa2\xbb\xcd\x06\xdd\xed\x01\xe0\xeb\xf7\xa8\xb1\x10\x62\x15\x1e\x1f\xdf\xde\xde\x76\x6e\x7b\x9d\x8c\xcf\x8f\xbb\xbe\xef\x1f\xe7\x37\xf3\x06\x9c\x0a\x98\xdc\xc9\x03\xf8\xa9\x10\x3c\xbe\x5a\x8b\xd2\x4c\x09\xc3\x04\x31\x7a\x57\x80\xb1\x73\x15\xe5\xec\xe7\x28\x01\xbf\xf7\x2c\x89\x67\x52\xfc\x97\x1b\x9c\x41\x3e\x2e\xc1\xe3\xcf\xe4\x03\x2a\x22\xa0\x4c\x09\xeb\xcc\x08\xeb\x40\x70\x39\x8c\xc3\xdf\xe4\x44\x61\x9a\x18\xfe\x61\xf2\x42\x21\xf2\xfb\x9f\xde\x7d\xe8\x92\xef\xe8\x14\xc5\x98\xbc\xa4\x53\x14\x61\xf2\x07\x9d\xc9\xa7\x1f\xe8\x4c\x3e\x7d\x43\x57\xf2\xe9\x77\xba\x42\x11\x3e\x60\x9d\x38\x15\x8c\xaf\xc0\xaf\x19\xc2\xe4\x39\xcf\x40\x31\x40\x85\xed\x14\x7e\x13\xe5\x71\x4e\xe7\x35\x85\xcf\x92\x2c\x67\x33\x7a\x55\x7e\x25\xa9\x10\x28\xbd\x9d\xb2\xd7\x40\xf1\x20\xe2\x9e\x53\xaa\xb4\xd9\xa0\xfe\x76\x4a\xdf\x65\xeb\x74\xf6\x17\xd8\x18\x47\x81\x0a\x1c\x8d\x32\x86\x71\x1a\x56\xf4\x0c\x42\x05\x3a\xa5\x1f\xcc\x12\x3d\xcb\x73\x88\xf4\x57\xf7\xee\xfd\xcd\x1c\x42\xff\x39\xef\xfe\x95\x65\xcb\x7d\x7c\x01\x05\xcc\x95\x42\x42\xa0\x84\x83\xae\x14\x0d\x84\x2c\x5c\x43\x4c\x53\x32\x85\x68\xa6\x64\x46\xf3\x76\x4c\x56\x74\xdd\xce\xc8\x82\xce\x5a\x33\x6f\xd5\x5a\x1d\xc4\xd7\x68\x71\x11\xb0\x76\xd0\xc5\xda\x9c\x36\xc9\xe6\x68\x7a\x1c\xe1\xe3\x17\xa4\xee\xa2\x6f\x1c\x7b\xac\x35\x23\x99\xc7\x5a\x2b\x12\xb5\xac\x8e\xe1\x45\x8b\xb5\x52\x3c\xd9\xaa\x00\x9e\x72\x78\xd7\x0e\xf9\x5b\x60\xb2\xa4\x68\xda\x9a\xb6\xa3\x56\xe4\xf5\x5b\x0b\x7c\x8c\xba\xad\xa8\xd5\x6d\x5d\x63\x72\x67\xdf\xb4\xcd\x9b\xa9\x7a\x33\x2f\x86\x54\xb4\xb5\x6c\x2d\xbd\x00\xb7\x97\x98\x5c\xd5\xbd\xbe\x6b\xdd\xc9\xd7\x77\xf8\x20\xa5\xe8\xaa\x3d\xdf\x9d\x88\x16\xcc\x5a\x29\xe1\x34\x41\x20\x93\x44\xb2\xd3\x6b\xdc\x42\xbc\x55\x7b\x65\x53\xe8\x52\xba\x2d\x86\x71\x3b\xc0\xc7\x88\x79\x01\xde\xa2\x17\x2d\xe1\xcd\x71\xfb\x0b\x5f\xc1\x37\x4a\x03\x83\xe6\xd8\x9c\xf8\xe3\xd8\xcb\x01\x96\x39\xc0\x92\x1f\x27\xba\xb9\x89\x95\x94\x79\x67\xb6\xe6\x10\x2b\x98\x06\xac\x27\x87\x5c\xc1\xb4\x77\xf3\x2b\xb0\x30\x2e\x17\xa9\x8d\x74\x5b\x5f\xae\xf7\xd2\xf3\xf2\xdb\x1f\xf2\x04\x42\x65\x96\x8b\x5e\x66\xe9\x9c\xbe\x2c\x17\xbf\x8c\xae\xea\x78\x13\x1a\x29\x41\x30\x89\x94\x20\x98\x28\x41\x50\x3e\x4a\x41\x30\xc1\x24\x06\x71\x2f\x22\xbc\x13\x29\xbd\x8b\x15\x04\xf3\xbf\x22\x08\x26\x46\x10\x8c\x68\x6c\x04\xc1\xac\x2c\x08\xe6\x85\x20\x58\x99\xda\x34\xa1\x7f\xec\x14\xc1\x6c\x7f\x28\x17\x3f\xb3\xa6\xdb\xdf\xec\x79\x01\x5f\xfd\x4e\x58\xe7\xf7\x75\x94\x8a\xf8\x8f\x6a\x90\x58\xcb\x09\x3a\xb2\x20\x98\xaf\x17\x6c\x21\x84\x41\x64\x28\x3d\x46\x52\xce\xc7\x45\x30\xc4\xbf\x76\x0d\x57\xdc\x7b\x85\xc1\x76\x42\x06\xff\xab\x4d\xec\x4a\x1e\x1d\x95\xf0\x90\xda\x74\xbb\xf1\xff\x6f\x78\xc8\xf3\x7e\xc3\x96\x95\x44\xbd\x21\xae\xb1\xe7\xb6\xc4\x3d\xd6\x25\xa5\x34\x33\x26\x09\x1e\x67\x72\x7d\x67\x2a\x30\xec\x01\x07\x73\x59\x15\x5a\x7d\xb3\x39\x6d\xf2\xce\x34\x5b\xae\x22\xce\xbe\xd5\x07\xfa\x5b\x9d\x3f\x41\xf9\x87\xe0\xcd\xc6\x0d\x3e\x5f\xba\x92\x8a\x51\x39\xa6\x90\xed\xbc\x50\xeb\x75\xd8\x0d\x4b\xc5\x81\xfe\x4b\x63\x95\x39\xc9\x6d\x10\xa6\x7c\x39\x8b\x44\x74\x79\xa9\x63\xe9\xa9\x34\x3d\xf7\xe6\xa3\xcc\x55\x2c\x66\xf5\x42\x4c\x91\x6f\xa8\x73\x79\x99\xa5\xf2\x20\xa8\x31\x03\x6e\x07\xa4\x08\x76\x6f\xef\xad\x38\x98\xe6\x12\x06\xd6\xc4\xcd\x26\x87\xbf\x2a\x3f\xed\xdd\x8a\x6d\x36\x1c\x2c\x80\xa1\x40\xfe\x18\x89\xb1\xe7\x49\x69\xc7\xa4\xce\x91\x7c\x19\x84\xde\x7d\x19\xe7\x82\xa5\x8c\x23\xd5\x04\xe1\x9d\x44\x97\x10\xde\x99\x46\x2b\xb1\xe6\x0c\x9f\x7b\x5e\x6c\x95\x2f\x34\x0e\x67\x2c\x61\x82\x1d\xda\xa1\x6f\xab\x77\x7e\x86\x22\x65\xf4\xbb\x1d\xdb\x58\x65\x00\x3d\x4a\xc3\x78\x57\x21\x47\x62\x7b\x5f\x25\xcf\x4e\xd3\x3e\x49\x24\x55\x81\x97\x12\x4a\x6b\x6b\x4a\x3c\xa5\x3e\x99\x15\x6a\xfb\xe9\xc5\xec\xdc\xf3\xa6\x60\x29\x9d\xd3\xf5\x78\xaa\xcd\xad\xa9\x01\x4c\xb3\x99\x1b\xd3\x69\x6d\x23\xed\x18\x6d\xd7\x82\x25\x57\x60\xc9\x0b\xb0\xe4\x16\x2c\xda\x0b\x6d\x36\xfb\xc2\x27\x34\x29\x3e\xa2\x5c\x25\xec\x41\xb9\x4e\x8a\x2f\x74\x6a\xc4\x9d\x66\xd4\x88\x49\x22\xb7\x48\x4e\xb5\x4d\xbd\x2a\x03\xc3\x7a\x6d\x7b\xae\xe8\x8e\x20\xa6\xb3\x30\x21\xba\xab\x90\x6f\xc9\x7a\xa4\xc5\xfd\xdc\x44\xe9\xbf\xcc\x52\x3a\xce\x27\x5b\xf7\xae\xd5\x0d\xf2\xba\xb6\xbb\x7d\x3c\xa9\x04\x9f\xd4\x9b\x3d\xbb\x4d\x19\x37\x3b\x8f\xb2\xf2\xb3\x82\x89\x1c\x59\xbe\x8a\xa6\xec\xe3\xbb\x17\x1a\xd2\xe6\x51\xef\x9e\x94\x7d\x16\x6e\x36\x44\x15\x6e\xd4\xa4\xe6\x34\x9b\x8b\x8a\x6a\x94\x4a\x2b\x2c\x1a\x14\x88\x48\x4e\x7d\x89\x2c\x46\x03\x30\xb5\xde\x05\xe7\xf9\xc5\xf4\xdc\xf3\x72\x8c\x22\x2a\xc6\xf9\x04\x8f\x50\x54\x34\x9d\x8d\xf3\x09\x49\xc7\xf9\x84\x46\x38\xe4\xf2\x2f\x24\x0b\x47\x8c\xc8\x37\x5a\x0d\x98\x5f\xac\x4b\x2d\x34\x9b\x28\x56\x9f\xd4\xc4\x61\x54\x17\xa7\x16\x7f\xc9\x94\xcc\x20\xad\x46\x31\xb6\x85\x1d\x1b\xb9\x76\x8e\xa2\x95\xea\x2d\xa7\xfe\x79\x7e\xb1\x52\x1d\xae\x6d\x87\xd7\xb2\xc3\x29\xfd\xe8\x45\x8a\x06\xad\xc9\xba\xa0\x3e\x92\xbc\x91\xe9\x61\x9c\x1e\xce\x46\x30\xb2\x75\x38\x1b\x4f\x27\x74\xed\x36\xb9\x30\x4d\xce\xc6\x4e\x3b\x6a\xa2\x24\x27\x19\x96\xa0\x01\x50\xb8\x6d\x2b\x08\x41\x6b\x20\xee\xed\x03\x52\xfd\xb0\x67\x63\x39\xee\x09\xa5\x74\x6d\x80\xb6\xc6\x95\xd0\x93\xc5\x69\x70\x21\x46\xed\x20\x64\x4f\xc4\x48\xfe\x4f\xc5\x08\x02\x9e\x95\xa2\x4a\x96\xbc\x61\x94\xdc\xba\x23\x7f\x0a\xbc\xd9\xfc\x8c\x18\xde\x95\x60\xd9\x3e\x91\x55\x94\xe3\x26\x7e\xc9\xe3\xa6\x14\x16\xd1\xa9\x3c\x4d\xa2\x3c\x97\x7b\x77\xb3\x91\x10\xba\x43\xae\x35\xc3\x5d\xe1\xe3\x94\x66\x33\x66\xb1\x1c\xf6\x05\xbd\x46\x30\x13\x47\xb6\x84\xc6\x1a\x78\xb3\x69\x34\x70\x29\x2c\x62\x99\x97\x91\x23\x20\xa9\x3c\x21\xe2\xe2\x84\xf0\xbc\xf4\x22\x3e\xc7\x5c\x12\x14\x24\x0f\x89\x72\xc4\xc4\x3f\xd3\x82\xa2\x87\xd5\x46\x6e\xcc\xa1\x2f\xd8\x67\x01\xe9\xae\x53\x41\x1b\x0d\x37\x02\xa2\xae\x10\xa7\x29\xe3\x3f\x7c\x78\xf5\xb2\xf4\xfa\xd6\xbc\x96\x24\xe0\x7d\x7c\x95\x40\x92\x14\x28\x51\x44\xe0\x75\x36\x63\x25\x7d\x03\x1c\xea\x6e\x60\x40\xdd\xc0\x8a\xb3\x9b\x38\x5b\xe7\x7b\x1b\x89\xd3\x9c\x71\xf1\x0d\xbb\xce\x38\x73\x8e\x6e\xa7\x06\x24\x5b\x84\x5e\x4a\x81\xf1\x4a\x2a\x84\xe2\xc5\x9b\xb2\x9b\x7a\xd1\xce\x01\x6b\x36\x59\x49\xdd\x51\x19\xf3\xd3\x72\xaa\xcd\x9f\x95\xbb\x64\xda\x79\xb6\xce\x45\xb6\x04\xc2\x7f\x50\xc3\xdd\xc5\x23\xe5\x28\x03\x5c\x0b\x0e\x41\x4f\x5c\x55\x62\xdc\x80\x0e\x08\xfe\x34\x30\xe1\x23\x14\x77\xe2\x34\x16\xaa\x5c\x48\xe6\x7e\x7d\x75\x95\xb0\x1c\xce\xf3\x74\xca\x92\xe8\x2a\x01\xd3\x93\x19\x13\x51\x9c\x50\xae\x7f\xe0\xb0\xfc\xe1\x51\x00\x39\x5c\x1c\x17\x13\xf5\xc6\x75\xde\x7b\xef\xe6\xfe\x9a\xf3\x6c\xbd\xca\x2d\x72\x2b\xe8\xe4\x2e\x09\x7f\x5b\xe6\x24\xdf\xa3\xf1\x78\x9f\xce\x6a\x32\x21\xff\x50\x17\x92\x9f\x68\x8d\x76\x26\x38\x3b\x3b\x3b\xfe\xbc\x10\xcb\xa4\x41\x9e\xd1\xfb\xfc\x66\x1e\x3e\xa8\xc3\x81\xaa\xe1\x27\xf2\x39\x89\xd3\x4f\x75\x55\x55\x83\xf2\x6d\x83\x7c\x5e\x26\x75\x55\xfe\xf9\xea\xa5\xac\x76\x7a\x6c\x8f\x33\xa8\x9a\xe6\x7b\xbb\x86\xb7\xc7\x8d\xb2\x26\xd9\x4a\xbf\x70\x3d\x20\x99\x5d\xeb\xa7\x17\x16\x59\x48\x38\xf8\xea\x35\xa0\x85\xc6\x11\xa5\x48\x38\x6e\x7a\x5c\x69\x41\x6d\x09\xf7\xe4\x42\x3d\xab\xb2\x5a\x02\x8f\xee\x61\x9c\xe1\xb3\xb1\x98\x90\x24\x9b\x46\x49\xc8\xb6\x21\xdb\x92\x57\x35\x03\x7a\x57\x28\xc2\x91\xe8\x40\xed\x07\xd5\xf7\xe5\x78\x2a\x25\x2e\x60\x47\xc1\xc6\x3a\x30\x10\xc2\x54\xbb\x78\xbb\xfd\x82\x86\xdf\x61\x8e\xcb\xfc\x85\x8e\xf1\xe0\xb2\x14\x16\x66\x94\xd2\x4f\xcd\xe6\x0e\x2e\x95\xd9\x11\x4a\x3f\x8d\xaa\x2a\x54\x86\xc3\xdd\x31\x73\xc2\xf0\x56\x8a\x49\x78\x4b\x7e\xa3\xfe\x63\x3d\x3c\xe7\x4c\x84\xb5\x56\x26\x9a\x9f\x3d\x3f\x42\x42\x25\xa4\x03\xd7\xc0\x23\x58\xc7\x82\x94\x18\xa7\x3d\x7b\x2b\x38\x16\x93\x2d\xc9\x4b\x8d\xba\x47\xe1\x58\xb5\x3a\xa1\x62\x4b\x14\x01\xaa\x83\xac\xaa\x04\xdd\x4a\x59\x11\xd8\x77\xfb\xe9\x97\x83\xe5\x5c\x6e\x55\x0a\x96\x0f\x8f\xbb\xb9\x86\x6f\x20\x31\x10\xcb\xe5\x41\xb8\x37\x21\x8b\x59\x28\xb5\xde\xdf\xee\xd5\x60\x83\x03\xe0\xb7\xa6\x49\x55\xfb\x35\xfd\xb6\x73\xcb\xae\x3e\xc5\xe2\x95\x2a\x7e\xcf\x12\x26\xd7\x60\xb3\xf9\xb6\xb3\xcc\xeb\x0a\xb3\x3f\x6a\x4a\xb3\x4a\xd9\xc1\x23\x27\xf9\xda\x91\x08\xe5\x1c\xd5\x45\xf7\x0b\xfa\x81\x7c\x47\xef\x61\xc6\x46\x18\x54\xf6\x50\x0f\x4e\xbf\x91\xa5\xcb\x6c\x9d\x33\x96\x0a\xc6\x1b\x92\x9b\xdb\x03\x89\xcd\x06\x7d\x47\xef\x8b\xba\x61\x03\x7e\x67\x37\x8c\x37\x08\xfc\x4c\x58\x74\xc3\x4c\xf1\x5a\x34\xb6\x8a\x8c\xbe\x2c\xa5\x54\x76\x2c\x9f\xf4\x28\xcf\x05\xe5\xfa\x1e\x14\xe8\xfc\xb9\x94\x31\x1d\x2d\xc8\x1f\xb5\x77\xd8\x9a\xfb\x7f\xff\xf3\xf7\x76\x7c\x90\x99\x84\xeb\xdd\xf4\xfe\xe7\xef\xdf\x66\xb1\x59\xe0\x94\x56\xcb\x1d\xb7\xd2\xce\x67\x2a\x3a\xd3\x24\x66\xa9\xf8\x27\x49\x3b\x77\xf6\xe9\x17\x92\xd2\x54\xab\xcd\xad\x8e\x56\xf1\x4c\xef\xa7\x9c\xb1\xf4\xd9\x87\x57\x08\x77\xe2\xf4\x86\xf1\x9c\x21\x8c\xc9\x38\xed\x7c\x96\x4d\x4c\xb4\xed\x01\xd4\xfd\x26\x5b\xa7\xb3\x38\x9d\x3f\x83\x46\xdf\xb1\x69\xd1\xf9\xd8\x76\xdc\x8e\x3b\x09\xbb\x16\x6d\xa6\x0b\x5e\xb2\x6b\x41\xec\x40\xda\x71\x47\x64\x2b\xfb\xf2\x43\xb6\x9a\x6c\xc9\x0f\x75\xe8\x62\xae\x1e\xf2\x7d\x3b\xea\xf7\x35\xe3\x77\x06\xe5\x60\x8f\x90\x6f\x1e\x6a\x68\xfd\xa8\x86\x9e\x4a\xb6\x5e\xb6\xf5\x7b\x6d\x5b\x56\xe0\xb0\xe6\x12\xdb\x83\x64\x1f\x25\x4b\x88\xc3\x83\xed\xa7\x29\x8a\x72\x95\x59\x2d\xe6\x08\x79\x78\x4b\xdc\x77\xf5\x54\xec\xc1\xa6\xf0\x96\x94\x26\xf9\xc5\xb1\xec\xc0\x96\x54\x81\xf4\xe7\x9a\x30\x50\x05\x12\xf8\x91\x36\xbe\x6a\x90\x9f\x6b\x1d\x5c\xca\x47\x95\x64\x09\xcb\xa7\xa2\x73\xf9\xb6\xd9\x30\xbb\xb5\x9b\x4d\x06\x8f\xc5\xdb\xed\xc1\x9d\xbb\x2c\xd1\xac\xbc\x00\x8e\xf4\x60\x99\x07\x86\x2f\x7c\x9b\x6b\x50\xbd\x02\xc1\xdf\xa8\x29\x40\xf2\xa8\xdc\x61\x29\x39\xc3\x15\x46\xf4\xfd\xf7\x61\x03\xf2\xd1\xd7\x9c\x27\xee\x49\x56\x1d\xc0\x81\x50\x01\x06\xdc\xb7\x52\x7a\x9a\x32\x24\x48\xf0\x6f\x8c\x63\x9a\xa5\x22\x8a\xd3\x7c\xff\xb2\x55\x87\xf2\x84\xfa\x7a\xbd\xfe\x41\xc7\x72\x0f\x4d\x0e\xde\x3b\x10\x7d\xbb\x0f\xe9\xdf\x93\x1c\x16\xbd\xd4\x53\xcd\x8d\x39\x03\xfe\xeb\x07\x08\x13\x5e\x3d\xe0\x15\x1f\x0c\x9c\x9d\x96\xf5\xd3\xb2\xb7\x7b\x4c\xfd\xf3\x18\x3c\xce\x63\xab\xc9\x02\xf3\x30\x2a\xc6\xf1\x84\xac\xa9\x8d\xc7\x91\xd0\x74\x1c\x4f\x9c\xaf\xd7\x98\x4c\xa9\x7f\x3e\x05\xb5\xc4\x14\xa3\x8c\xe6\xe3\x29\x68\x09\x22\xaa\x75\x9e\x19\xc9\x0a\xf5\xc0\x94\x40\x60\x29\xd4\x30\x25\xf2\x6c\xc9\x64\x75\x47\xcc\xb7\x3f\x31\x49\xa4\xb4\x1f\x95\x7c\xfd\xdf\xa3\xb4\xcc\xd1\xe3\xad\x06\x52\x75\x23\xed\x85\xd3\x37\x8f\x86\xd3\x78\x42\x62\xf9\x9f\x1b\x10\xc0\xd5\xf4\x88\x71\x56\x01\x90\x7f\x9e\x00\x30\x12\x8c\x22\x9a\x8f\x13\x00\x86\x4e\xee\xab\x21\x12\x91\x62\xb6\x24\x91\x10\x21\xb1\xaa\x10\xe1\x9d\xa9\xc6\x78\x4b\x54\x82\xaf\xc7\xcd\xed\xc5\xdf\x8a\x03\x0a\x03\x72\x1a\x99\xcf\xd6\x0a\x03\xc6\x13\x3d\xd5\x5c\x4d\x35\xa3\x91\x9a\x6a\xdd\xa2\x27\x24\xc2\xcd\xa6\x56\xfc\x65\x5f\x5c\x4c\xf9\xd5\x6e\x18\x87\x22\x1f\xcb\xd2\xbd\x34\x81\xf8\x3f\xf1\x1f\x70\xcc\x26\xb4\x1d\xa8\xd6\x58\x34\x5d\x94\x6e\xe0\x97\x63\xcf\x4b\x26\x14\x12\x98\xea\x1c\x1b\x62\x34\x0b\xa7\xc4\xc4\x3a\xd0\xdd\xdb\xc0\x27\x0a\x60\x07\x7b\xc1\xfc\x68\x7b\x20\x77\x35\x32\x1a\xff\x15\x2f\x11\x0d\xea\x0c\x40\x0d\x14\x6f\x45\xd3\x71\x32\x21\x0b\x1a\xcb\x3f\xd7\x74\x61\x9a\x5d\x9a\x5d\xb7\x22\xab\x66\x73\xe5\xae\x41\x8a\xc9\x1d\x5d\x9a\x8a\x73\xc0\x4d\xa7\x9b\x3b\x4c\xae\x60\x11\x4b\x65\x07\x1c\xad\xc8\x82\xcc\xc9\x15\x59\x97\xdf\x5d\x63\xb2\x24\xa2\x98\xdb\x0d\xb9\x24\xb7\xd4\x27\xcf\xa9\x7f\x7e\x7b\x71\x77\xee\x79\xb7\x52\x9c\xb8\xa1\xf3\xf1\xed\x44\x71\x78\xb7\x4f\xe8\xf3\x66\x13\x3d\xa7\xb7\x5e\x80\xcf\x8f\xd0\x25\xbd\x1a\x3f\x97\x48\xe3\x79\xcf\x2f\xee\xce\xf1\xf9\x8d\xd6\xc3\x5e\x6e\x36\xa0\xe8\xd8\x5a\xe7\x16\x85\x2b\x91\x9c\x44\xd4\xb9\x04\x4e\x93\xe6\xf0\xf3\x73\x2c\xe8\x9a\x44\x5b\xa2\xd8\xcf\xdd\x45\x50\x9f\xaa\x55\x85\x3a\x9b\x8d\xbb\xc4\x10\xb2\xe6\x77\xbc\x83\x85\xb2\xe1\x2f\xb5\xf6\x39\x16\x8f\x6b\x6c\xc9\xf8\x9c\x3d\x28\x85\xd9\x0d\xca\xec\xef\xb4\xd8\xac\x71\xe1\x5e\x94\x51\xc7\xcc\x34\xae\x9a\x93\x12\xa5\xfc\xcc\x40\xf9\x69\xfa\x58\x93\x04\xb4\xa0\x64\x4a\x39\xa8\x50\x69\x62\x5a\x5b\xd1\xc8\x28\x51\x55\x13\x33\x4c\x16\xd4\x3f\x5f\xc0\xcd\xc5\x02\xa3\x35\x4d\xc6\x8b\xc9\x66\x33\x1d\x2f\x80\x92\xad\xc6\x0b\xab\xcc\x3d\xcf\xc1\x28\x35\xc7\xd0\x86\xec\xa1\xbc\xb5\xa3\x1d\x38\x64\x7c\x56\x5e\x23\x1b\x01\xaa\x0c\x06\x21\x77\x32\x2f\x42\xce\x78\x9e\xb8\xe0\xe7\x76\x42\xca\xc8\x41\x48\xb2\x1c\x5b\x13\x70\x12\xd1\x78\x9c\x4d\xce\xdb\xed\xec\x09\xf5\xcf\x31\x4a\xe1\x19\xce\xa2\x66\x33\x3a\xa2\x34\x2d\xab\xf8\xa2\xbd\xaa\xb9\x94\x44\x00\xd8\x72\x0c\x1d\x92\x67\xbc\x22\x4a\x17\x57\x92\xee\x5d\xa2\x68\x36\xf9\x88\x21\xe1\xdc\xc9\x15\x47\x5a\x78\x24\xda\x47\x7c\xab\x6c\x56\x57\xc5\xfe\xe1\x65\x08\xa4\xc5\x8a\xc7\xe5\x15\x56\x47\x51\x0a\x47\x51\xe9\xd6\x81\xef\x9c\x45\x10\xba\x66\xff\x61\x1d\xd9\xc3\xda\x1c\xb3\x49\x47\xce\x11\x15\xa1\x1a\xd4\x42\xc6\x95\x85\xec\xc0\x3a\xa2\x9d\x90\x3b\x46\x1b\x59\x44\xcb\xf1\x2d\x4a\xb8\x65\x54\x09\xa9\x3a\x74\x0c\x88\xa3\xf6\xb5\xda\x3c\x5b\x22\xd9\xb2\x7c\xb7\xe9\x3d\xa4\x5f\x22\x8c\xbb\x58\x95\x13\x00\xdf\xb3\xb1\xe7\x09\xd5\x31\x44\xce\x82\xf6\x1f\x85\x89\xbe\x8b\x88\x02\x8e\x48\x51\x60\xa2\xc2\xc3\x3d\x51\x72\x94\x05\x21\x9c\x98\x52\x08\x8d\xb0\xb5\xc1\x76\xd5\xb9\x44\x4e\x62\x77\xa6\xfe\x83\xf3\xf1\x3c\xa6\xe6\xc1\x96\x2b\x71\xb7\x4b\xa8\x54\x24\x20\x39\x49\xb9\x4c\xf2\xeb\xc7\x91\x1f\xdf\x21\x3b\xd6\xe8\xdc\xd4\x8e\x49\x06\x46\xd1\x24\xa2\xbe\x13\x35\xeb\x3c\x02\x36\x20\xc2\x28\x56\x31\xa5\x2c\x1b\x10\x93\xb8\xd8\x04\x11\xc9\x2a\x1b\x2a\x12\x82\xd7\x85\x1f\x53\xaa\x3f\x09\xb1\xdd\x48\x5c\xf7\x4e\x84\x22\x35\x3d\xab\x14\xd0\x3a\xc2\xb4\x74\x7b\xf1\xfa\x3d\xe2\x5a\xd9\xa7\x2b\xe0\xb0\x5c\x03\xf1\x22\x32\x89\x05\xb5\x89\xb4\x35\xe2\x8f\xd2\x3c\x3a\xf7\xb5\x6e\xcf\x7f\x5a\xcd\x58\xd7\x0e\xc8\x7a\x75\xb6\x16\x75\x83\xab\x73\x14\x2e\xcc\x18\x74\xac\x26\xb9\xfb\x8a\x0d\x77\xa0\xed\x85\x47\x8f\x9c\x84\x0e\xba\x58\x86\x71\xa5\x12\x38\xe4\xd6\xcb\xd6\x7f\xcb\xb0\x40\x43\x5a\x1d\x86\xb2\x0e\xde\x86\x8f\x85\xca\x63\xe6\x21\x1e\x33\x8f\xba\x91\x08\xd0\xd5\x42\xce\xfa\x2d\x81\xeb\xc1\x9d\x80\x5d\x55\xca\xa8\x91\xfc\x49\x30\xaa\xc1\xc3\x47\xe0\x8d\xba\x84\x54\x90\x72\x62\x7f\xed\x43\x9e\x3d\xc3\xa9\xac\x4f\xfa\x85\xf5\x49\x47\x0f\xf5\x1d\x3a\x2f\xf3\xe2\xaa\x13\xdc\x7a\x77\x50\xa4\x7e\x10\x7b\x5b\x50\x5e\xdf\x18\x7e\x19\x5c\x69\x34\x42\x8e\x71\xa8\x02\xb3\x6a\xfa\x40\x18\xde\x92\x95\xfe\xae\x7e\x2d\xff\x8e\x25\x70\x8c\x50\xc6\x6c\xf2\x18\xa0\xff\xf5\x2d\x51\xee\x2b\xd4\x7f\x29\x7f\x24\xae\xca\xba\x42\x83\x0e\xeb\x35\x52\xb0\x92\x23\x27\xa0\xfe\x60\xb3\x5a\xca\x7c\xad\x12\xec\xee\x23\xce\xc5\xb9\xb8\x74\x97\x00\x1b\xc3\x21\x5e\x70\x74\xf2\x90\x84\x0b\x87\xb4\x63\xf4\x29\x88\x8f\xe3\x89\xb9\x70\x38\x32\x07\xfa\x91\x5f\x43\x9e\xff\x12\x70\xd1\x1e\xb8\x8e\xe6\xe1\x15\x2e\x34\xe7\xe1\x97\x96\x7a\xee\xd4\x7d\xb8\xe6\x55\x51\xd3\x12\x03\xc1\x3e\x8b\xba\xcf\x76\x52\xc9\x15\xd3\x35\x5a\xd7\x9b\xb0\x6e\xe2\xec\x0b\xc3\x35\x6e\x87\xf5\x38\xb5\x73\x77\x6e\xd0\xbd\xd1\x08\xc5\xe3\x0e\x2c\xf7\x6b\x06\x78\x55\xc6\x2a\xb7\xc2\x96\xc0\xd5\xe7\x5f\x9b\xff\xe5\xff\xd4\xfc\x0b\xd3\x80\x3f\x3f\xfb\xe2\xdb\xda\xb9\xdb\xd7\x5b\xc2\xa3\x38\xdf\x9b\x35\x02\x26\x7a\x8b\xb7\x04\x32\x7a\x3d\x58\xeb\xb9\x8a\x01\xc9\xd2\x59\x8d\x2e\xb4\x16\x40\x2c\x7c\xe5\xb8\x15\xe9\xf3\x2a\x61\x53\x81\xf6\xf4\x53\xb2\x77\xa8\x87\x1c\x18\x96\x2a\xb9\xa9\x96\x54\x3c\x30\x10\x92\x5a\x38\x7f\xae\xa7\x93\x22\xfc\x01\x89\x3f\x33\xe0\x92\x00\xc7\xeb\x47\x4c\xd2\xfa\x72\xa5\x6e\x80\xf9\x54\x55\xcc\x35\xd0\x7f\xa3\x74\x54\xeb\xe5\xe3\x91\xd8\x9c\x3e\x8e\xde\x93\xb0\x32\x9a\x98\x17\xdb\x6a\x48\x5e\xc7\xd3\x8b\xe4\xf5\x6a\xfe\xc7\xc7\xe2\x15\xea\x8e\xbf\x12\x8b\xb7\x74\xc7\xef\xdc\xec\xf3\x6a\x3c\x5e\x8e\x31\x29\x45\xd3\x15\x36\x9a\x2e\x76\x44\xcf\x07\xc2\xe8\xca\x03\x22\xa1\x62\x14\x85\x99\x39\xb4\xc1\x98\xf6\x28\x30\xe6\xcf\x6b\x30\x28\x2d\xc0\x9d\xa0\x7c\x9c\x4e\x00\x0e\x65\xf1\x41\xce\x27\xa1\x65\x18\x2a\xb3\xd5\xa4\x30\xc8\x24\x33\xea\x93\x95\x55\x78\x9c\xcf\xc0\x30\x6c\x86\x75\xe0\x15\x32\xa5\xc9\x78\x36\xb1\xdd\xc6\xd7\x08\xc5\x34\x07\x6f\x3c\x6d\xa9\x39\xd5\x96\x9a\xb1\xb1\xd4\x9c\x96\x2c\x35\xa7\x3a\xd2\x2d\x31\x56\x29\x0f\xdc\x28\xfd\x1b\x47\x97\x2e\x79\xaa\xcf\x13\xb2\x77\x4f\x7e\x99\x03\xd8\x69\x0a\x5b\x56\x60\xbb\x3d\x60\xea\x46\x34\xe3\xf4\x95\x61\x82\x21\xb4\x9a\xba\xeb\xe6\xf4\x85\xfc\x9d\xad\x73\x56\x63\xb1\xf1\xb2\x10\xc6\x44\x67\xba\x88\xd2\x39\x9b\x7d\xc8\xd6\xd3\x05\xcb\x01\xaf\xaa\x85\x63\x7f\x82\xc9\x1f\xfa\x4e\xcd\x31\xcb\x04\xcf\x20\xfb\x94\x83\xd3\x8c\xba\xe2\x84\x4b\x5a\x30\xd3\x57\xd4\xa0\x66\x3f\x14\x1e\x8d\x96\xe8\xec\x18\xf7\x54\x6f\xe4\x26\x13\xb2\xdf\xf2\x47\xe5\x2e\x95\xdf\x33\x65\x05\x64\x7b\x7f\x9a\x24\x7f\x6a\x00\xf5\xfd\xab\xeb\xbc\x47\x8d\xc0\x9c\x83\xe3\x49\xc8\xca\x43\x89\xb3\x14\xc2\x76\xe5\xba\x51\xf0\x59\xc8\x8b\x1e\xc0\x55\x01\xb8\x68\xba\x20\xac\x23\xe4\x02\xec\xa4\x4c\xdd\xd9\xb1\x3d\xd8\x9b\x82\xc0\xd2\x56\x16\xcf\x89\x17\xac\xf5\x1f\xae\x43\xbc\xd5\x81\xc8\x1d\x95\xc2\x35\x02\xee\xc4\x33\x96\x8a\xf8\x3a\x66\x9c\x52\xca\xcd\x0e\xfa\x03\x1c\x0e\x0e\x4a\x2a\x11\x3d\x42\x96\x57\x6e\xf9\xf5\xa9\x01\xd8\x24\x87\x24\xaa\x63\xd1\x1a\x8c\xb2\x6b\xbe\xab\x3f\xb3\x4a\x0d\x70\xdd\x06\xe4\x03\x2f\x7b\xdd\x7d\x2c\xfb\xbe\x8d\xd3\x59\x76\x4b\x7f\x86\x30\xfd\xd6\x20\xce\x09\x9d\x58\x09\xf8\xa5\x2d\xf4\x85\x6b\xaf\x60\x4a\x89\xb1\xba\x10\x60\xb7\x6f\x75\x15\x5a\xf7\x45\xe2\x5a\x63\xfd\xbf\x1c\x6b\x6d\xf8\xff\x0e\xc7\x8e\xbb\xcd\x06\xdd\x20\x8e\xc9\x1d\xbd\xea\xa4\xd9\x2d\xc2\xde\x1c\x97\x1d\x3d\xee\xa8\xef\xba\x73\x98\x5b\xe8\x69\x94\xe8\x43\xe1\x52\xc4\x4b\xa3\xcd\xb3\xe6\xdd\x95\x20\x69\xe6\x70\x55\x38\x62\x8d\x9c\xe2\x0e\x67\xb9\x88\xb8\x30\x3e\x21\xb1\xeb\x3d\x81\xef\x05\xc2\xc4\xf3\x66\x07\x45\x02\x03\x4e\x93\x73\x7e\x8e\x11\xa3\x77\x6d\xae\xba\xc6\x70\x9c\x72\x35\x24\xa5\x0f\x03\x55\x27\xc3\x84\x53\xae\xc6\x74\xde\x6e\xcf\x5c\x5f\x05\x39\x2d\xb4\x34\x73\xc6\xde\x9c\xcc\xe8\x8a\xfa\x80\x3a\x19\x2a\x50\x45\x9e\x6a\x55\x8d\xa1\x1c\x29\x4d\x48\x4a\x83\x63\x5f\x07\x8d\x38\xc7\xba\xfb\x11\x4a\x9f\xe8\x61\x81\xb7\xbf\x19\x22\x81\x7c\xc8\x66\x34\xe0\xba\xae\x7f\x13\xee\x1a\xc5\x73\xca\x46\x4c\x17\x88\x30\xa1\x02\x1f\x4c\x29\x23\x6b\x94\xe2\x2d\x92\xab\xe4\x57\x0c\xf8\x95\x0e\x53\xcf\x83\x08\xca\xda\xcb\x03\xf1\xe4\xba\xd9\x44\xf3\x36\x15\x64\x49\x5d\x7b\xe4\xb5\x4e\x96\x7d\x34\xc3\xf7\xab\x66\x13\xad\xe8\x34\x61\x11\xff\x10\x2f\x59\xb6\x16\x68\x55\xe4\xbe\x6e\xdf\x1d\x88\x27\xdd\xfe\x08\xb1\x8b\xe0\xd8\x87\xaa\x3a\x0e\x85\xac\x18\xc9\x33\x8c\x2c\x9a\x4d\xb4\x50\x2d\xbc\x48\x05\xe3\x37\x51\x82\x16\x18\x63\xe5\xb6\xbc\xa4\x77\x64\x21\x3f\xb2\xef\x72\x72\x8d\x31\x99\xd1\x80\xdc\xa0\x48\x9e\x81\xc0\x58\x10\xc3\x3a\xf8\x64\x21\x81\x4d\x03\xd6\x23\x4b\xea\xcb\xb9\x92\x39\xf5\xc9\x15\xdd\xd9\x49\x2b\xc6\xaf\x33\xbe\x8c\xd2\x29\x6b\x36\x9d\x07\x09\x85\x91\xf3\x1c\x7e\x1b\x09\x46\x6e\x76\x1b\x50\x84\xa7\xd9\x54\x7f\x3b\x9c\xfd\xbe\x66\xb9\x78\x9a\xc6\x4b\x70\xf8\xfb\x8e\x47\x4b\x36\x7a\xe8\x65\xe7\x2a\x4e\x67\x48\xd5\x28\x07\x2d\x70\xc0\xc4\x48\x70\x82\xb7\x07\xa9\x63\x74\x10\xef\x33\x40\x48\x89\xde\x09\x2e\x5b\x01\x0e\x4b\xf1\x35\xaa\xbb\x1d\x75\x22\xcd\x7f\xb8\x5b\x31\x1d\x6d\xde\xe4\x40\x38\x8c\xf3\xc3\x34\x13\x87\x91\x65\x48\x1a\xe0\x95\x69\x75\x49\x08\x87\x5e\x8a\x3d\x64\x34\x1d\x7e\xe8\x71\xec\x98\xef\x6c\x36\x53\xeb\x78\x85\xa6\xa3\xa9\xc1\xc9\x45\x9c\x87\x6a\xdf\x93\x29\xfc\x31\x1f\x01\x3d\x30\x06\x40\x40\x11\x52\xb2\x46\xa0\x93\xcb\x56\x61\x55\x96\x83\xea\xd6\x64\x04\xbe\x75\x9c\x42\xe0\xf3\xe0\xd8\x97\x0d\x28\x5e\x29\xcd\x6e\x81\x3b\x92\x6f\x38\x44\x33\x85\x5f\xdf\x25\xeb\x7c\x01\xb1\x44\x85\x82\xf9\xce\x51\x5b\x43\x74\x0a\xc9\xdb\x0f\x3d\x41\x0a\x1a\x64\xbf\xe5\xf8\x3e\xee\xc8\x71\x23\x4c\x24\x77\x2e\xd9\x26\x4d\x9e\x8c\x23\xe2\x4d\x94\x94\x3c\x31\x8b\x53\x0a\xfa\x22\x11\xad\x86\x89\x18\xa1\xcc\xa1\x76\xf2\x03\x92\xe1\x10\x71\xea\x71\x79\x74\x42\xa5\x58\x2d\x4c\x4c\xb2\x9d\x41\x1d\x0a\x94\xe2\xfb\xd4\xa3\x91\xf3\x52\x90\xc8\xa3\xd0\x14\x93\x14\xc2\xb4\xfa\xd7\x8f\xb5\x93\xbf\x2f\x84\xa8\xe5\x97\x1a\x58\x97\x18\xce\xdd\x16\xc0\x1a\xda\x27\xc7\xc1\xd3\x96\xe9\x38\xa4\xfa\x89\x45\x39\xfb\x77\x83\x92\x16\xc3\x22\xa5\x31\x91\x62\x40\xa4\x3a\x1a\x27\x9a\x29\xb1\xe3\xd8\x1b\xd7\x74\xef\x7f\xb5\x01\x4f\x5d\x07\xa2\xfa\xe3\x3a\x77\x85\x7d\xe5\x90\xa5\x4c\x2d\x73\x11\x09\xf6\x64\xbe\x9b\x73\x42\x64\xd9\xa1\x1c\xf8\xf9\x61\x94\x70\x16\xcd\xee\x0e\xf3\xe9\x82\xc9\x45\x9f\x39\x52\x68\x25\xea\xe4\xfe\x1e\x6e\x1e\xd5\x83\x44\xc8\x3d\xed\x27\x65\xd3\xd1\xcb\x4b\x88\x98\x00\x9e\x9b\x20\xc2\xf2\xcd\xe6\x08\xa2\xda\x88\x49\x4d\x06\x8d\xa2\x32\x90\xb4\xeb\x6c\x9d\xd6\x77\x33\x2d\x3b\x5b\xb0\xce\x65\x3c\xb3\xe6\xd4\x3b\x37\x7b\xea\xe4\x54\x19\x35\x49\x8a\xcf\x11\x53\x12\xe6\x66\x63\x7e\xd1\xfb\x2d\xc6\x63\x31\xa1\x7b\xd4\x1c\x5b\x5c\x17\xed\x33\x01\xf6\x4f\xb5\x30\x16\x93\x6d\x8d\xc3\xd8\x97\x3c\x27\x1c\x8b\x38\xca\xf5\x43\x3c\xa3\x69\x7d\xcc\x3a\x51\x88\x26\x92\x53\xb7\xd0\x2a\xb9\x22\x2d\x2c\xcf\xe7\x79\x9f\x4a\x9e\x4f\x25\xcf\xa0\xf3\x23\x54\x5d\x21\xec\x2c\xce\x83\x96\xeb\x87\xef\x3a\x8a\xee\x6b\x66\xe4\x5d\xb1\x44\xb2\xed\x25\xe5\xd6\xa3\x04\x35\x00\x5d\x1a\xa4\xc1\xd2\x59\x83\x34\x60\xb3\xf1\xf5\x4a\x34\x24\x8f\x33\x9e\xe8\x83\x3f\x20\x37\xb4\x4b\x2e\x69\x8f\xdc\xd2\x3e\x79\x4e\x07\xe4\x33\x1d\x56\xa2\x6a\x49\x9a\xe7\xb8\xdf\xd5\xa0\x97\x0a\x68\x0a\x81\xa4\x72\x3d\x54\x15\x76\xb2\x5c\x95\xde\x6f\xcf\x51\x95\xf8\x39\x5c\xac\x36\x09\x9a\x92\x19\x59\x91\x85\xb3\x3f\x8e\x28\xbd\xb2\x37\xce\x48\x89\x48\xe0\x99\xb7\x06\xa1\x6c\xa1\x1d\x52\xb5\x56\x43\x79\xe8\xc2\x90\x16\xea\x7b\x4a\xe9\x25\xb6\xd6\xd0\xfa\x20\x43\x31\x3e\x28\xde\xdf\x8e\x6c\xe5\xcf\x64\xa1\xce\x3e\x73\x40\x2d\x3a\x59\xaa\xb8\x5e\x07\x8c\x84\x11\x56\xdc\x08\x2f\x94\x1a\x8a\x2c\x3a\x80\x71\x98\xe8\x7b\x0d\x18\x58\xe8\x4d\x2f\xa4\xa0\xb7\xb7\x03\xb7\xf2\x36\xbe\x46\xc5\x18\x5d\x65\x47\x31\x17\x29\xcb\xea\xa7\x5b\xc2\x75\x5b\xe6\xc4\xca\x08\xef\xcc\x58\x12\xdd\xe9\x37\x98\x64\x28\xc1\x72\x2b\x99\x6f\x6e\x08\x2f\x66\xa4\xd1\xa4\x34\x1b\xae\x67\xc3\xcd\x6c\x8a\xbe\x6f\x74\xd0\x30\x5d\x70\x59\xb2\xf7\x5a\x51\xde\x11\xb7\x8c\x19\xf3\x01\xb0\xd2\x20\x33\xda\x0e\xce\xa7\xa0\xad\x9a\x62\xb4\x30\x75\xc6\x53\x93\x77\x47\xfb\x4c\x3e\x30\x00\xdc\x6c\x42\xa4\xad\xd9\x84\x2e\xf0\x81\x11\xea\xe9\xcc\x0b\x4a\xce\xe0\xc2\xbd\xb6\x11\x17\x45\x7c\x89\x11\x87\x28\xe0\x8e\xe8\x22\x8e\x8b\xb7\x92\x47\xa8\x00\x31\x2a\xe6\xfc\x9c\x04\xf6\xd2\x27\xaf\x5c\xfa\xe4\xe3\x78\xe2\x34\x2a\x65\x7f\x0b\xa9\xe7\xb0\x4a\x16\xce\xb0\x0d\x1f\x86\x72\x24\x79\xb1\x92\x08\xc5\x2d\xc6\xf0\x3d\x18\x23\x26\xe5\xf4\x52\x6b\xe3\xe4\x62\x5c\x51\x4a\x3b\x70\x6b\x1c\xc0\x2b\x7b\x78\x0d\x34\xd8\x74\x42\x15\xfe\xf1\x72\xe4\x1f\x3d\x94\xab\x1d\x84\x8b\x77\x10\x4e\x3f\x5f\x50\xd6\x6c\xc6\x88\xb5\xf5\x33\xde\x12\xdf\xd4\x01\x3d\x1d\x27\x26\x15\x1c\x40\x22\x8c\x09\x40\x22\xcc\x48\x96\x86\x4b\x02\x68\x12\xde\x11\xf9\x41\x18\xc1\x77\x04\x1a\x0a\x23\xdd\xa1\x59\x41\x59\xa0\x7f\x12\xb9\xd0\x61\x04\xeb\x0d\x5f\xf2\x10\xd6\x06\x46\x1f\xce\x25\x1b\x56\x0d\xee\xe7\xc6\xa1\x2b\x03\x86\x44\xf4\xc8\x97\x84\x28\xc3\xf7\x05\x53\x2b\xff\x86\xc2\x6b\x34\x00\xf4\xb1\x04\x7b\x86\x11\xa7\x19\xa8\x86\x4c\x02\xb1\x11\x08\xa7\xfa\x7c\x97\xd2\x33\xfc\xbc\x78\x4e\xf6\x2e\x6a\x2a\x6b\x7d\x91\xd4\xec\xa0\x8d\x5e\x69\xe8\x3d\x8c\xe8\x51\x70\x10\x15\x9e\x48\xe5\xe5\xdf\x13\x9c\xd0\xf8\xa6\x15\x11\xd5\xac\x36\x37\xde\x0d\x3f\x14\x0a\x37\x58\x5a\xa6\x63\xa8\xc5\x95\x68\x2c\x92\xef\xd6\xef\x90\xc0\x78\x24\xe5\x71\x52\xad\xa4\x3c\x23\x2b\x91\x85\xb0\x56\xa3\xbe\xa5\xce\xb9\x5b\x48\x75\x1d\x47\xa8\x23\x9f\xa8\x4f\x9e\xd5\xd7\x3b\x98\x39\x92\xe0\x6a\x9f\x54\x38\xab\x33\x4b\x77\xad\xd8\x54\x1a\x3a\x6a\x58\x84\xfd\x76\xb4\xc2\x2a\x29\x4b\x96\xb2\x65\x33\x5c\xf2\x90\xe1\x6c\x9d\xbd\xe3\x94\xac\x68\x3c\xce\x27\x64\x41\x57\x85\x83\x7b\xc5\xd4\x11\x22\x10\xf9\xe7\x4b\x70\x47\x5f\x62\xb4\xa6\xab\xf1\x12\xcc\xe1\xa6\xc6\x8a\xf6\xff\x62\xef\x5d\xd7\xdb\xc6\x95\x05\xd1\xff\x7a\x0a\x9a\x6b\x2d\x86\x68\x41\xb2\xe4\x24\xdd\xab\x69\x23\x9a\x74\x2e\xbb\x33\x3b\xb7\x49\xd2\xb3\xf7\x39\x32\xdb\x4d\x8b\x90\xc4\x84\x22\xb5\x40\xc8\x8e\xdb\xe2\xf9\xe6\x69\xe6\x2d\xe6\x9b\x77\x99\x17\x98\x57\x38\x1f\x0a\x00\x01\x5e\x24\x2b\x9d\xf4\xec\x7d\x66\xce\xfa\x56\xc7\x22\x50\xb8\x15\x80\x42\xa1\xaa\x50\x55\x7b\xda\xbe\xc2\xeb\xb6\xed\xfa\x46\x80\x1b\xdb\xf5\x8d\x65\xbb\x3e\x9f\xae\x42\x32\xc3\x6f\x7c\xf1\x03\xd8\xe9\x15\x9e\x63\x51\x69\x86\xea\x76\xde\x71\xd3\x54\x52\x3a\xf1\xd8\x61\xd6\xfe\x95\x78\x96\xe2\xe6\xc3\x50\x3d\x0d\xb5\x0f\xc9\xd1\xe9\x06\xb0\x6c\xf9\xba\x00\x1c\x6f\x1a\x38\x1e\x9d\xce\x01\x9f\x73\xc1\x63\xcc\xc8\x7a\x3a\x0f\xcd\xf1\xb2\xc2\x37\x1a\xb3\x33\x6c\xb0\x86\xe7\x78\x8d\xf0\x82\x88\xd4\x0c\xe1\x4b\x32\xc2\x57\xe4\x46\x1f\x1a\x97\x67\x57\xa7\xfd\xfe\x25\xf2\x57\xe4\x66\x7a\x29\xe6\xe7\x8d\xbf\x02\x74\x5e\xe2\x1b\xbc\xa8\x9c\x7a\xdf\x20\xac\x9e\x98\xcc\x6a\xe6\x8b\x02\xb9\x1a\xa1\x5f\x62\x48\xcf\xb5\xca\xa3\x86\xad\x3f\x64\xa6\x79\x80\x95\xe6\x34\xdc\x61\x9b\xd9\xf5\x66\x60\x86\x0b\xe4\x79\xa9\x7e\x33\x50\x5f\x4a\x0d\x63\x4d\x8b\x67\xaf\x38\xf6\x4e\x8b\x64\x78\x20\x78\x91\xc4\x47\xa4\x5a\x4e\xcd\x3b\xcf\xee\x67\x05\xff\x0b\xac\x96\x8d\x12\x0f\x2f\x9b\x5b\x79\x8d\xd4\xd2\x5b\xc3\xd2\x03\xab\xe5\x39\x58\x2d\xcf\x61\x43\x2f\xa7\xf3\x03\xad\x96\xdb\x5b\xb1\x1b\x7f\x15\xe9\xdc\x61\x23\xfe\xd6\xaf\x9b\x91\x36\x0c\xa1\xcd\xe9\xb2\xcf\x06\x55\x36\x5a\x4d\x07\x66\x64\x29\x0e\xbc\x3a\xf2\x93\xca\xee\x54\xad\xb9\xa4\xb5\xe6\xb2\xc6\x9a\xb3\x57\x5a\x32\xd7\x6b\x4d\xbd\x2c\x48\x41\x8c\xda\x7b\xe3\x47\x58\xf0\x1a\x33\x5c\xe0\x5b\xe0\x25\xd6\x70\xee\xf6\xd7\x92\x8b\x10\x7f\x35\xf3\x20\xd9\x8b\x91\x61\x2c\xd6\x0d\xc6\x62\x0d\x8c\x45\xd9\xd8\x97\x8d\xa7\x1f\x58\x3a\xf7\x04\x93\xe2\x27\xb0\xea\x95\x11\xf0\x13\xd0\xef\x16\xd2\x64\x57\x7e\x48\x9b\xd9\x27\x60\xff\xab\x4c\x60\x9f\x0c\xe1\xaf\xb4\x75\x7d\x02\xd7\xea\x1d\xd1\x6d\x0d\xb9\xdc\xa1\xb4\x3f\x3b\x99\xa4\x35\x0b\x32\x86\x04\x87\x01\xfb\x24\xe8\x30\xc7\x6d\x68\xe9\xf3\xae\x20\x3f\xa0\x23\xdf\xa1\xa9\xa7\x57\x94\xdd\x74\xe8\xea\xbb\xd5\xf4\xea\x55\x9b\xad\x97\xe7\x08\xe1\x23\xba\xdd\xaa\x7b\x09\x21\x44\x20\xdb\xe7\x68\x52\x04\x9b\x96\x5b\x23\x6d\x97\x9c\x6b\xe3\x24\x78\xe0\x93\x67\xbd\xe2\x88\x90\x0c\x1c\xeb\xfa\x19\x29\xd0\x70\x96\xaf\x6f\x7c\x24\xc6\x0e\xf6\xed\x58\x00\x91\xa4\x2c\x7d\x86\xa5\xba\xb8\x65\xc1\xcb\x8c\xd1\x60\xa5\xbf\xf5\xc5\x65\x8a\x58\x0e\x2a\x09\x21\x59\x9d\xf3\xb1\x5d\x1d\x06\xef\x6b\x56\x1f\xa2\x85\x0f\x82\xa5\xf5\x29\xee\x90\xaf\xb1\x89\x9f\x75\x98\x7b\xd6\xa6\x63\x17\x02\x04\x35\x96\x8e\x31\x7a\x55\x74\x5f\x7d\x13\xf7\x23\xb9\x4a\x16\x7b\xcd\x43\x11\x22\x84\x14\x92\xb5\x8d\x08\x20\xaf\x00\x4f\xba\x79\x90\x13\xee\x67\x24\xc2\x09\xd1\x36\x46\x5f\x68\x1e\xfc\x27\x0d\x42\x9c\x66\x7f\xbc\xd3\xbe\xb4\x64\xcb\x70\x8e\x67\x72\xf5\xb8\x62\x82\x86\x6e\x5f\xcc\x3d\x0a\x2a\x99\x72\x7b\x52\xfe\x4d\xcc\xa6\x91\x2f\xee\xa9\x77\xac\x90\x1d\xa8\xcd\x0f\x5a\x01\x26\x7e\x8d\x18\x37\x20\x35\x97\x0b\x3c\x48\x00\x9b\x79\xb7\xa1\xeb\x17\xb7\x6d\xd9\x6f\xdd\xd1\x96\x9c\x1f\x26\x08\x8e\xda\xa2\xb0\x81\x3a\xf7\x69\x35\x7d\x3b\x2c\x3a\xd5\x42\x52\x67\x0e\xdc\x2d\x7d\xf0\x59\x9c\x0d\x2f\x40\x0e\xd1\xab\xa2\x52\xb3\x9a\xf3\x32\x05\xaa\x62\x51\x77\x2b\x8b\x58\x8b\xc1\x50\x0c\x69\x8d\x78\xf4\xba\xaa\xf5\x93\x4e\x23\xef\x9a\x86\xd8\x10\x7b\x6c\xac\x98\x99\x6d\xfb\xa7\x8f\x23\xcf\x33\xba\x7d\xb8\xb4\xef\x37\x0a\x17\x50\xc8\x72\xc8\x79\xa1\x5c\xa7\x61\xd6\xb4\xbe\xf9\x13\xfa\xe3\xd3\x7d\xed\x23\x3f\x11\x1b\xb1\xc3\xe4\xbc\x8a\x80\xd2\xa0\xc5\xd2\x2f\x3c\xda\x41\x90\x9f\x14\x85\x21\xc8\x35\x8b\x7c\x68\x40\x53\xe6\x8e\xa5\xb5\x8f\x68\x89\xeb\x08\xb8\xc1\x32\x07\x90\xbf\xcf\x8c\x1c\x37\xe0\x4d\x34\x83\x3d\xa4\x8c\x55\xa4\xac\x2c\x7d\x8a\x73\x79\x90\xb9\x34\x8b\x55\x33\x82\x68\x1d\x40\x57\x76\x9a\xd5\x1b\x53\xcf\x1a\x2e\x3a\x4f\xa9\xae\x89\x00\xf9\xf0\x0e\x14\x15\x2d\x14\x6d\x88\x72\x27\x59\x9f\x8d\x8d\xd6\x56\xee\x42\xdd\xa6\x59\x93\xc0\x36\x21\x1b\x89\x35\x40\x97\xe7\x6d\x08\x21\xf9\x24\x0a\x22\xc2\xfc\x84\x88\x5b\xe0\x46\x61\xad\xa2\xf3\x06\x67\x82\xd0\xef\x18\xcf\xa1\x13\x6e\xcf\x5f\x66\xe6\x4f\x4f\x5c\x42\x22\x71\x5f\x93\x1d\x00\x42\x26\xef\xc3\x15\x9a\xbb\xc9\x29\xa9\x3a\xa9\x16\xf5\xd7\x13\x35\xfe\xc5\x44\x8d\xb7\x88\x5a\x57\x0d\x3b\x05\xfa\xd6\xbb\x0b\x81\xaa\xa4\x22\x14\x59\x07\xa1\x48\xea\x84\x22\xeb\x7c\x27\x01\x9e\x70\x99\xa1\x17\x99\xa1\x17\x59\xd9\xf1\x7a\x62\xb7\x85\xba\x35\x02\x57\xc0\xb8\x5d\x6b\xfd\x40\x6b\x6c\xb5\x96\xef\xb0\x3e\xf7\xf5\xea\x93\xcd\x51\x74\x57\x24\x86\x2e\x7b\xf4\xca\x7c\xdc\x75\x03\xaa\x4e\xc5\xfd\x76\xbe\x9a\x4e\x48\x28\xf7\x0e\x2a\x61\xdd\x88\x2d\x17\x6c\x95\xc4\x00\x42\x8d\xc0\x8d\xc3\xd6\x5e\x25\x73\xbf\xcf\x8e\x08\xd1\x86\xa4\x3d\xee\x79\xbc\xc3\x65\x5b\xe9\x57\xb7\x4e\x31\x33\xad\xc5\xdf\xba\xd3\x88\x7b\x3c\xb8\xf2\xda\xfb\x3e\x03\x27\xa4\x75\xc5\x81\xca\xc5\x25\x12\x47\x95\x10\xe8\x34\x3f\x8b\xe0\x3e\x29\xed\xf8\xe0\x45\x6d\xe5\xb2\xd4\x68\x87\xe4\xae\xb1\x4d\xf8\x76\xbf\xa8\xeb\x14\x23\xef\x20\x1c\x89\x56\x84\xc2\x1d\x22\x91\x5d\x04\xd1\xf2\x91\x60\x38\xaa\x4b\x2e\xbc\x47\xf4\x33\xc2\x48\x8e\x9a\xaf\x12\xc5\x5e\x9e\x46\x61\x25\x62\x46\xb7\x7e\x46\x32\x75\x77\x42\x48\xbb\x04\x89\xf0\x18\xf5\x2e\x19\x8d\x3e\x95\xaa\x1d\x92\xed\xe1\xdb\x0e\xe5\x68\x76\xf1\x77\x66\x5c\x11\xc9\xcd\xb8\x22\x19\xd6\x0e\x6e\x60\x11\xd2\x9d\xac\x16\x53\x41\xb4\xec\x5f\xda\x48\xb0\x12\xa7\x60\xc5\x5c\xcd\x57\x0a\x3e\x46\x53\x31\xea\x64\x9a\xda\xa3\x16\x9f\xa4\x50\x43\x4c\x09\x21\x33\xcf\x4b\xb4\x37\xd6\x52\xf5\x41\x5c\xef\x90\xb9\xdf\xc9\x9b\x7d\xfb\x66\x7a\xd7\x0d\x7a\xb2\xdf\xde\x99\xde\x69\xef\x5c\x68\xf4\x48\x69\x03\xe9\xef\x30\x78\xde\x65\xef\x0c\x71\xd8\xf7\xd4\x07\xcf\x9f\x38\x10\x94\xfa\x3e\xe0\x0a\xa2\x34\xd2\x8c\x7f\x83\xe1\x6f\x4c\x77\xb5\xb3\xf7\xaf\xc5\x40\x47\x95\x7b\x91\xa0\x80\x4a\x29\xc1\xf9\x2a\x1c\xd4\xfb\xf7\x85\xc7\x66\xe7\x10\x44\x9f\x44\xf7\x77\xf5\x1e\xc4\x4d\xd2\xe1\xce\x3b\x22\xc5\x57\xa0\xcf\x6a\x49\xaa\x4e\x1e\x8e\x6c\xdd\x97\x09\xed\x5d\xf6\xba\xf5\x28\x95\x82\xa9\xeb\x29\x46\xc7\x90\xd1\xed\xe3\xea\x0d\x98\x20\xe0\x9d\x95\x5a\xda\xfe\x16\xa2\x31\xeb\x51\x5b\x75\x14\x4f\xe0\x85\xc6\x45\x12\xc3\xd3\x0c\x10\x12\x82\xe1\xe6\xd2\x87\x18\x4c\xef\x50\xdd\xdc\x81\x12\x7d\xfc\x01\x9b\x25\x9f\xef\x1d\x22\xfc\x1f\x9d\x46\x20\x92\x8d\x2a\x32\x5b\xe0\x0d\x49\xa6\x51\x88\x53\x13\xe0\x48\xca\x12\x53\x29\xb5\x56\x4e\xae\x3d\xef\x8d\x0f\x2f\x0b\xf0\x0c\x6f\x30\xdb\x6e\xe7\x7e\x21\xe8\xc9\x7e\x41\x35\xe8\xaf\x60\xca\x5e\x69\x1f\x49\x35\xcc\xac\x31\x1d\x46\x33\x9e\x5c\x35\xbd\xe9\x5f\x99\xc8\x17\x2d\x23\x8b\x64\xb7\x0a\x12\x34\xbf\xd2\x40\x9d\x91\x04\x9e\x7c\x48\xbd\xe3\xa5\xe7\x31\x43\x37\x6b\x7d\x96\x6f\x00\x5e\x61\x8e\xfb\x19\x2a\x1b\x26\xeb\x66\x69\x3c\xfe\x7a\x27\xfd\x75\x2b\xb0\xe0\xc4\x18\x78\x05\xf7\x5b\x86\x60\xc1\x83\x86\x0d\x59\xf0\xd0\xb2\x1b\x0b\xbe\x2f\x43\xfc\xf7\xb6\x05\x5d\xb7\x59\x97\x42\xaa\x65\xac\x1e\xd3\x59\x1e\xd3\x5f\xde\xbd\x78\x92\xaf\xd6\x79\x06\x0e\x2a\xab\xc0\x54\xa8\x9c\x81\xe5\x0c\x45\xb7\x65\x32\xf7\xc7\xe0\xca\x5c\x19\x32\x68\x1b\xa7\x1e\x27\x7c\xbb\x1d\xf7\xb4\xa1\x95\x11\x5b\xc2\x9c\xc9\x4f\xf3\xda\x4b\x86\x90\xaa\xa9\x2e\x67\x91\x72\x78\x3f\x0d\x71\xe6\x33\x84\x33\x3f\xb1\xd5\xfe\x10\x8b\xf8\x8e\x2e\xeb\x9e\x26\xb6\xfb\x03\xf5\xb0\xc5\xcf\x11\x66\x64\x7c\xca\xce\x8c\xf3\x83\x7e\x1f\x71\xe2\x53\x22\x85\x9f\x66\xc0\x55\x89\xca\x86\x4b\x9a\x0c\xe7\x76\x0c\x37\xf7\x6f\xd3\x68\x30\x1f\x0d\x7e\x0c\x6f\x4f\x4a\x17\xbb\x8b\xc4\xd5\x5a\x0f\x0d\xe1\xdb\x20\xa8\xaf\x80\x7a\x7c\xa8\xec\x02\x49\x43\x3b\xa3\xdf\x95\xdc\x65\x6b\xfb\xec\xf3\x9a\xce\x38\x8d\x9d\xdf\x68\x26\xb0\x10\xff\xf2\xee\xc5\x6f\x0e\xcf\x9d\x4b\xea\x08\x42\x7b\xb3\xa6\xce\x6f\xb2\xae\xdf\xb0\xb3\xc8\xb9\xf3\x9b\xdb\xd7\x55\xf6\xdd\xdf\x44\x1f\x0c\x26\x05\x8d\x61\x74\x9d\x46\x33\xea\x1f\x9f\xf7\x8f\x17\xd8\x75\x5c\x84\xf7\x21\xb8\xe3\x44\xab\xb9\x9c\xb8\x75\xff\xf6\xfc\xd9\xdf\x9e\x3f\x77\x03\xf7\x7f\xfe\xf7\xff\xf6\x3f\xff\xfb\x7f\x73\xb1\xfb\xb7\xe7\xcf\xff\xf6\xfc\x99\x49\x29\x31\x23\x91\x8e\x50\x77\xca\x4e\xe5\xec\xf2\x29\x9b\x8e\xc2\x90\x74\xb4\x0e\xa1\xe7\xcc\x5a\xbc\x52\x81\x28\x21\xb9\x97\x09\x6e\x71\x3a\x0a\xc5\x5d\x59\x55\x21\xb6\xaf\x69\xa1\xe4\x53\xf7\x6f\x4f\x4e\xdc\x90\x88\x0e\xb8\x96\xc7\x26\xb5\x91\x3f\xd1\x1b\x88\x1c\xa2\x34\x55\x95\x47\xf7\x7e\x5f\x47\xa1\xce\xa7\x45\xd8\xb3\xb1\x65\xcd\xf5\x46\x86\xf2\xe3\xd3\x4d\x58\x51\x0d\x5a\x82\x10\x41\xda\xb7\xfe\xd8\xde\x9d\xcd\x0d\x69\x89\x92\x64\x84\xe6\xdb\x0d\xd9\x6c\xb7\x63\x6c\xf7\x90\xa2\xe1\x3c\x67\xcf\x6a\x27\x90\x36\x10\x23\x74\x9a\x86\x38\x16\x57\xf1\x68\x4e\x3d\xaf\x1e\xa9\x6d\x86\xf0\x5a\x0f\xd6\x3a\x98\x94\x23\x56\xa5\xb4\x45\x78\x49\x72\xf1\x67\x4e\x8a\x49\xd1\xcf\xfa\x69\x90\x82\xa5\x64\xec\x79\x47\x4b\xcf\xf3\xdd\xa9\x34\xc3\x75\x64\x4d\xa1\x4b\x08\x59\x6f\xb7\x55\x32\xb4\x25\x53\xc5\x29\x61\xf5\x7c\x86\x4c\x60\xbf\x23\x3e\x5c\x45\x9f\x9f\xd2\x35\x5f\x6e\xb7\x9b\xb3\xa4\xb2\xe4\x63\xfe\x0c\xcf\xf1\xa6\x3f\x46\xbd\x68\x3a\x0f\xc9\x4c\x39\x13\xcd\x88\x0f\x24\xe6\xb6\x04\xee\x2d\x59\x25\xe0\xe7\xc9\x1d\xba\x70\x81\xd6\x95\xe1\x88\xdc\x96\x26\x18\xaa\xe0\xbd\x5b\x41\xf3\x6d\x34\xeb\xbb\x95\xb4\xe0\xb0\x43\x3c\xaa\xa0\x74\xdb\xed\x60\x0c\x41\x2d\x6c\x3d\xcd\x76\xcb\x87\x72\xb8\x13\xc1\xa0\xdf\xd1\xbf\x88\xf0\x61\x7e\x45\xd9\x35\x4b\x38\xdd\x6e\x8f\xc6\xb8\x50\xee\x5a\x73\x9f\x22\x0b\x75\x1a\xa3\x47\xe4\xae\x69\x32\x96\x8f\xd5\x95\xac\xb1\x46\xc0\xcb\x4f\x27\xd7\x58\x85\xd4\xd5\x74\xb0\xec\x58\x51\x96\xe3\xa1\x0d\xc9\x95\x36\x2b\x43\x38\x25\xcc\xdf\x0c\x8b\x65\x32\xe7\x3e\x42\x78\x26\x3e\xe1\x8d\x5f\x4c\x8a\xd3\xca\x18\x7b\x76\xaa\x55\x8d\x77\x8c\x23\x9e\xa6\xa1\x58\x71\x5f\xb0\xa8\x60\x31\x46\x72\x31\x56\x0d\x42\x3d\x72\x7c\xa7\x3e\x64\x6e\xb7\x02\x48\xb2\x05\xb1\xf2\xd1\x27\xfe\x12\x6d\xcb\x53\xd1\xd8\x99\x35\x9b\xb7\x65\x30\x85\xc1\x08\x50\xac\x39\xa0\x47\x23\xcf\xf3\x77\x8d\x1c\x95\x50\x6d\xe2\xd3\x69\x1e\x42\x2c\x74\x5c\xa8\xc3\x82\xfa\x6e\x52\x0c\x2e\x37\xf3\x39\x65\x35\xb2\x9f\xe1\x6c\x38\x4f\x23\xce\xc5\x0d\x14\x67\xc3\x4d\xa6\xbf\x12\xc1\x23\x98\x42\xc1\x78\x5c\x86\x78\x3c\xfa\x43\x4f\xbe\xda\x01\x52\x27\x56\x17\xfc\x2f\x34\x66\x77\x9f\x6f\x0a\xea\xe2\x29\xbc\x00\x6b\x37\x37\x61\x43\x01\x00\xf5\xd2\xea\x67\xcb\xec\xbc\xfb\xdc\xa8\x3d\x34\x48\xe6\x3e\x13\xac\x9a\xde\xc4\xd3\x2c\xd4\xbd\x56\xca\x03\x08\x9c\x74\x9b\x04\x19\x4e\x83\xa3\x31\x56\x99\xc1\x6d\x59\x1a\x17\xd6\x99\xb2\x3f\x4c\x74\x59\x9c\x60\xf3\x5b\xb0\x25\xc3\x94\x1c\x8d\x4c\x5a\x29\x09\x81\xa1\x1e\x7c\xb8\x22\x14\xf3\xe1\x8c\x30\xcc\x87\x49\xe7\xbb\x6c\xc1\xed\xc7\xa4\x29\x29\xe5\xc3\x1c\xa4\xe4\xdb\xed\x2e\x1e\x91\xe1\xdb\x59\x9e\xcd\x93\xc5\x86\x45\x97\x29\x85\x51\x64\x9b\x15\x55\x5f\x23\x70\xe9\x9d\xc9\xdb\x44\xfb\xc2\xc0\x08\x38\xff\x37\x7c\xe6\xa4\x8d\xdf\xca\xb9\x6b\xd9\x21\x01\xa3\xd6\x20\x63\x9f\x61\x37\x72\x31\x43\x98\x89\xe6\xf2\xee\xd0\x78\xad\x8d\x5c\xf7\xfc\xae\x6d\x55\xe1\xbd\xca\x70\x0d\x61\x68\x7d\x3e\x2c\xc8\xdf\x51\xe9\xef\x67\x4b\x69\x27\x37\xa4\x1e\xda\xb6\x09\xc0\x9d\x94\xb1\x2c\x5b\xa2\xd7\x5a\x7b\x92\x5a\xdb\x36\x19\x7a\xf9\xd1\x66\xb0\x8a\x51\x93\x5b\xd4\x72\xdb\x29\x0b\x7b\xd9\xd0\x4c\x19\xb1\x3f\x80\xc4\x83\xcb\x93\x6a\x82\xc5\x4a\x73\xe1\x2a\xe0\x26\xa0\xfc\xf1\xb3\xa1\x38\x0e\x54\x1e\xda\x79\x99\xc8\x04\x41\x07\x41\x79\x73\xdf\xd4\x83\x4a\x31\xcf\xa3\xbe\x85\x15\x31\x9d\x19\xa4\xe1\x0c\x61\x71\x8d\x16\x8c\x38\xf3\x1f\x22\x9c\x13\xe6\xff\x20\x38\x55\xe6\x3f\x40\xb6\xbf\x81\x1a\x26\x2c\x91\xbb\x74\xb6\x04\xa6\x1e\x09\x91\x24\x17\x64\xfa\xa3\x20\x03\x7f\x2f\x71\x22\x6f\xae\xb8\x30\xb9\xf9\x64\x3c\x1a\x05\x39\xde\x10\x36\xe4\x4b\x46\x8b\x65\x9e\xc6\x38\x35\x00\x9b\xc9\xf0\xfb\x60\x23\xc8\xa8\x38\xbb\xdf\x0a\xea\xc7\xb2\x97\xf2\xc2\x19\x1b\xb0\xd9\xe4\xfe\x49\x30\xc3\x6b\xc2\x86\x49\xf1\x24\x2a\xe8\x7b\x0a\x57\xbf\x2b\x8a\x97\xa4\x22\xff\x6b\xcf\x5b\xe3\xb9\x68\x2a\xff\x44\xb3\xf7\x74\x1d\xb1\x88\xe7\x0c\xaf\x4c\x45\xf3\xc9\xb1\xd3\x3f\x5e\x04\x73\x7c\x43\xd8\x70\x9e\x64\xf1\xe3\x34\x55\x7e\xd8\xf1\xc2\x54\x75\xe3\x79\x37\xf8\x52\xf4\x2a\xc9\x20\xfb\xc9\x32\x62\xaa\x5f\x57\xa6\xba\xcb\xc9\x38\xb8\x3c\x6d\x8b\x3d\x8e\xfc\xda\x4d\x9e\xa3\x6e\x06\xfe\x49\x94\x65\x39\x77\xc4\x8a\x75\x22\x07\xbc\xf1\x38\x51\x51\x7b\x33\x57\x56\xee\x6a\xe4\x25\x3a\x5f\x8b\xf4\x82\xdc\xea\xc9\x08\x12\xac\x31\x1f\x14\xb8\x42\x72\x90\xe2\x26\x42\x83\x18\x37\x90\x17\x2c\x71\x1d\x55\xc1\x0a\xd7\x71\x12\x2c\x70\x1b\x03\xc1\x55\xa9\xe3\x99\x40\xf5\xc4\xee\x59\x73\x82\x26\x3c\xe0\x43\x9e\xbf\xcc\xaf\x29\x13\x19\x3e\xaa\x95\xd5\x22\x6b\x12\x6b\xf5\x96\xca\x78\x9c\xae\x97\xd1\x25\xe5\x24\xaa\x25\x23\x73\x19\xf7\x29\x9e\xde\x7e\xa2\x37\x81\x5b\xd0\x88\xcd\x96\xae\x12\x95\x36\x6e\x53\xfb\x3a\x07\xbe\x19\x69\xbd\x7b\xf5\xfe\x59\xd2\xef\xdb\x44\xfa\xf6\x17\x84\xb9\x98\xe5\x8c\x06\x23\x2c\x2d\x07\xe3\x17\x59\x9c\xcc\x68\x11\x4c\xa7\xa3\x2a\x22\xfc\x60\x1c\x86\x65\xcf\x12\xa1\xa9\x3e\x80\x6f\xde\xd6\x62\xcf\x08\x6f\x2c\xdb\x9e\xee\x7b\x1d\x53\x8f\x2a\xed\x7b\xa2\xdd\x9d\x2b\x00\x9c\xc9\xd7\xb3\x51\xbd\x39\xf0\xe9\xab\x77\xee\x86\x44\x66\xa3\xa6\x24\xb2\x76\xe5\x8c\x44\xcd\x0d\x11\x93\xa8\x63\x03\x54\xc6\x09\xcd\xf6\xbb\xa6\x0f\x9b\x85\x5a\x98\x85\xba\xa9\x2d\xd4\xc6\x92\x9b\x75\x2d\xb9\xb8\x44\x65\x19\x22\x4c\x4b\x1f\x59\x67\x45\x71\x10\x95\x67\xfe\x08\x75\x1e\x30\x1d\x32\x59\x49\xf4\x70\x22\x39\x10\x2d\xc4\x67\x35\xc6\x5f\x50\x4d\x5c\x80\xb4\xe9\x14\xee\x05\xe0\xd8\x9a\xb0\x4a\xde\x01\xf6\xca\xfa\x33\xef\x8f\xd5\xbb\xe6\x0d\xe1\xd3\x28\x34\xe6\x3b\x64\x63\x31\xaf\xf0\x58\xa7\x00\xd3\xae\xfa\xed\x7f\xe3\x79\x2d\x6e\x15\x80\x33\x7f\x83\x2a\x91\x9d\xd4\x0e\x6c\x6c\xed\x40\xda\x27\x63\x44\xfd\x8d\x60\x62\x0b\x9c\x20\x88\xcf\xea\x14\xe2\x3c\xd8\x58\x09\x4a\x35\xb0\x31\x01\x14\x11\x2a\xed\x1c\x6e\x39\x4d\x00\x2c\x4f\xc3\x3b\x8f\xd7\x0e\x6c\xdb\x66\x8f\x2d\x3f\x6c\x23\x0b\x13\xb6\x07\xd1\x89\xfd\x11\x4c\x43\xcc\xdb\x65\xc7\x9d\x65\xc7\x76\xd9\x71\x18\x8c\x31\x23\x82\x6d\x95\x41\xa7\xe0\xbd\xca\x08\x47\xc6\xe3\x67\x7e\x16\x9d\xe6\x02\x63\xfa\x1d\xd7\x34\x0f\x7b\x85\xe7\x0d\xc6\x52\x75\x4d\xf2\xa0\x10\xd7\x40\xf1\xb5\xdd\xfa\x7e\x42\xf2\xc1\x18\x0d\xb2\xfe\xf8\x11\xe1\x9e\xc7\x24\xae\xa6\x19\x4e\x42\x19\xda\xca\x08\x00\xa6\xf9\x60\x1c\x7a\x5e\x3e\xc8\x1a\xa0\x22\x5d\x30\x5c\x5f\x8e\xcc\xba\x9c\xa5\xb4\x5c\x97\x2a\xef\x3a\xec\x34\x13\x83\xe1\x53\x3a\x9c\x2d\x23\xf6\x58\x30\xd5\x21\x19\x59\x02\x61\xe9\x07\x3c\x69\x40\x25\x28\xdc\x92\xf1\xd9\x19\x1b\x24\x96\xa7\xd5\xc3\xb8\xa9\xe3\xe9\xf9\xe0\x7c\x7a\x1e\x9e\x1f\x9f\xdf\x9e\x97\xe7\xfe\x39\x3a\xff\xee\xbc\x7f\x3e\x39\x1f\x9e\x9f\x9f\xff\x7a\xfe\xd7\xf3\x6d\x78\xbc\xd8\xb9\x11\x25\xb3\xd5\x9a\xdd\x93\xce\xd9\x3d\xb1\x67\xf7\x24\x0c\xe0\x58\x57\xa6\xd9\x4a\x16\xc3\x8d\x80\x06\xbb\xe7\xe7\x7f\xf5\x5c\x54\xa5\x30\xec\x6e\x5d\x84\xe0\x45\xcb\x4a\x09\x0b\x71\x44\x8e\x8e\x72\xb0\x83\x97\x4e\x5c\xcd\xd5\x77\x84\x53\xe3\x04\x75\x73\x96\x9e\x6e\xaa\x85\x32\x23\xf9\x74\x13\xf6\x94\x45\xfa\xd4\x48\x08\x66\x08\xcf\xcc\x51\xa0\x17\xc3\xad\x3c\x39\xa2\xc9\xf0\x61\x30\xc6\xfa\x44\x89\x9a\x07\x49\x51\xfe\x91\x35\x61\x29\x89\x87\x54\xb0\x18\x05\xce\x0c\xb3\xc2\x26\xa3\x80\x81\x98\x64\xb6\x61\x8c\x66\xfc\xa5\x3e\x15\x72\x03\x94\x4c\x46\x41\x02\xb2\x0a\xaa\xa4\x8b\x15\x94\xc5\xd7\x45\x93\x51\x10\x81\xc1\x89\x75\x98\x58\x4c\x9d\xe0\xfa\x04\x57\x97\x1d\x57\xab\x32\x96\x86\xe1\xd1\x65\xe1\x17\x03\x23\x52\x4d\x27\xb3\x7e\x7c\x9c\x06\xf1\x64\x1c\xcc\x0e\x5b\x65\xcc\xff\x5e\x72\xb1\xf7\x77\x11\x75\xcc\x6a\x81\x1a\xc5\xd4\xed\x19\x44\x7e\xc7\x20\x72\xeb\x90\xac\xf1\xa4\xc3\xef\x81\x27\xcd\x9b\xc7\x66\x9b\x25\xcd\xbb\xf8\xc8\x1a\x5b\x3a\x06\x96\x54\xf0\xa0\x15\xc6\x2e\x49\x8c\xaf\x2c\x91\x13\xc7\x37\x08\x5f\x18\xab\xfb\x6b\x41\xce\x9e\x91\xd1\xe9\xb3\xb3\xc5\xe9\x33\xb1\x20\xaf\xa7\xcf\xc4\x16\x4f\xe6\x3e\x9c\x4a\x57\x72\x35\x7c\x06\xc1\xf6\xad\x5c\x10\xc1\x08\x37\x66\x3f\xb8\xc2\xcd\xa9\x0e\x6e\xcc\x51\x9d\x96\x60\xff\x72\x69\xec\xfa\x3f\xe3\x4b\x84\xa1\x01\x5f\x74\x2f\x8d\x0a\xfe\xc2\x74\xb1\x7f\x81\x90\x6c\xf7\xcd\x57\xb7\x6b\x35\xfa\x06\x5f\xa2\xb2\xbc\x22\x83\x71\x45\xc1\x1e\x8b\xf1\xbf\x27\x63\xfc\x96\x5c\xf4\x17\xf8\x93\xa0\x5a\x17\x83\x31\x7e\x42\x46\xa7\x4f\xce\x2e\x4e\x9f\xc0\x1e\xd5\xd0\xef\xc8\x08\xbf\x22\x6f\x4f\xdf\x9d\xbd\x3a\x45\xb7\x76\xcf\x9e\xb4\x7a\x76\xd3\x7f\x75\x57\xdf\xce\xc8\xe5\xe4\x1d\x79\x15\xbc\x25\xaf\xf0\x2b\xd9\xcd\x79\x9a\xe7\xcc\xf7\xdf\x0e\xde\xa1\xe3\x93\xfe\x3b\x54\xbe\x25\xaf\x60\xc9\x7e\x54\xc3\x88\x3e\xfb\x63\x7c\x33\x78\xd5\x1f\x23\xfc\x81\x2c\x27\x8b\xa0\x1a\x9e\x68\x71\x81\xfa\x17\xf8\x29\x91\x52\xda\x0f\xfd\x13\xd4\x7b\x3a\xfd\xd0\x1f\x87\xc4\x1f\x9f\x9d\x3d\x41\xd6\xc8\x5f\x93\x0f\xa7\xaf\x1f\x91\x8f\xa7\xaf\x07\x9a\x0c\xbd\x20\xaf\x07\x63\xfc\x9c\x30\x43\xc9\x5f\x20\xa0\x63\xcf\x3d\xcf\xbf\x9e\xbe\x08\xc9\x18\xe1\xa7\xd3\xd7\x21\xf1\x9f\x4e\x5f\xf7\xc7\xe1\xd9\xd9\x78\x3b\x46\xde\x73\x2c\xd6\xe9\x13\xcf\x13\xc9\xe1\x96\xf8\x8f\x21\x77\xfb\x78\xfa\x3a\x44\x00\xb3\x95\x29\xb2\xb4\xf7\xc9\xf3\xfc\xf7\x64\x3f\xfe\x5e\xdc\x85\x3d\x81\x3e\x60\xb0\x2e\xc9\x7b\xec\x5f\x91\x17\xe8\x8c\xdc\x20\x30\x58\xe8\xd5\xb0\x75\xf2\xdd\xcd\xe0\x0a\x95\xf0\xea\xd7\x6e\xb2\x3f\x6e\x4f\xda\x5d\x8d\x3e\xba\x54\x2d\x3c\x26\x4f\xcb\x06\x4b\x7f\xf5\x88\x54\x4c\x3d\x21\xe4\xfd\x64\x38\x1a\x8d\x83\xf7\x4d\xb2\x9c\xf8\xd7\x78\x85\xee\xa4\xcd\xff\x47\xcb\x16\xc6\x52\xb6\x70\x22\x65\x0b\xa3\xaf\x96\x2d\x44\x3b\x64\x0b\x11\x10\xe8\xe8\x5b\xca\x16\x66\xff\xce\x24\x0b\xf8\x42\x5c\x3c\x62\x7c\x6d\xd2\x2f\xa4\x6e\xfb\x02\x3f\x23\x0c\xa4\xfc\xf8\xb3\xc9\x7c\x36\x99\x86\xc1\x33\xfc\x46\x5c\x3d\x96\xf9\x26\x8d\xdf\xe7\x8c\xe3\xc7\x06\xe0\xcd\x76\xfb\x06\xbf\x27\x6c\xb8\xa0\xfc\x79\x86\xdf\x9a\x9c\xf7\x93\x3c\x78\x8f\x3f\x41\x28\x36\x26\xf2\x9e\x98\xbc\x4f\xdd\x56\x2c\x74\x08\x1b\x66\xc0\xe5\xdf\x32\xf8\x84\xdf\x69\x14\x25\xbf\x53\xfc\xca\x0c\xfa\x9d\xe7\xbd\xc3\x1f\x61\x22\xf8\x6c\xf9\x38\x4d\x3f\x08\xa0\x02\x7f\x30\x20\x1f\x3d\xef\x23\x7e\x0a\x17\xad\x59\xba\x89\xa9\x46\xdd\x6b\x03\xf2\xd4\xf3\x9e\xe2\x17\x06\xe4\xbd\x68\x16\x3f\x37\x00\x2f\x3c\xef\x05\x7e\x49\xd8\xf0\x8a\xb2\xcb\xbc\xa0\xf8\x77\x93\xf7\xd2\xf3\x5e\xfe\x1f\x28\xa9\xc1\x49\x1c\x5c\x63\xb1\x50\x82\xcf\xb8\x8e\xda\xe0\x35\xb6\x11\x19\x3c\xc7\x66\xd1\x04\x8f\x31\x2c\x91\xe0\x2d\x96\xeb\x21\x78\x82\x15\x52\x83\xdf\xb1\x9e\xe2\xe0\x15\xae\x4f\x68\xf0\x41\x49\x86\x0a\xca\x9f\xe4\xa9\x76\x0a\xc2\xbb\x85\x36\x16\x48\x97\xec\xc6\x36\xb5\x49\x93\x82\x13\x8a\x69\x59\xe2\xbb\x44\x3e\xd2\xd6\x24\xcd\x17\xfe\xbd\x81\xfe\xdf\x79\xf6\x1e\xe0\x1d\x25\x9d\x08\x1c\xf7\x5e\x9f\xf6\xef\xb9\xf7\x90\x2d\xa1\xb9\x58\x33\x81\x5f\x2a\x81\x29\x2b\x7c\x70\xe1\x56\x49\x66\x54\x2a\x08\x6b\xe6\x9b\x34\xd5\x29\x55\x30\x21\xd9\x2b\x5f\x90\x4d\x30\xb1\xb9\xa6\xc9\x62\xc9\x0b\x30\xb3\x64\xb4\xd8\xa4\xbc\xa8\x19\x09\x5f\xcc\x64\xac\x68\x98\x00\x3f\xc7\x51\x7d\xed\x58\xbb\x58\xc5\x18\xbe\x00\x85\x9e\x06\xbb\x00\x3f\x63\xe2\xbb\xc2\x4b\x6b\x08\x2d\x14\xb5\x62\x77\x7c\xd9\x15\xdc\x75\x31\x57\x37\xa4\x5a\x57\xf5\x9a\x40\xe6\x6c\xa3\x4a\x61\xd8\x86\xab\x96\x31\xf8\x82\xb5\xdd\x85\x67\x67\xb9\xba\xb8\xca\x0b\x95\x0c\x42\xcc\xc0\x31\xac\x55\x4d\x65\x62\x74\x5b\x9f\x9a\x80\x63\x7b\x62\x02\x59\x9c\xd6\xcb\x96\x06\x5b\x3b\x96\xd1\x57\xe2\xa8\x2e\xa6\x98\x8e\x43\x1d\x3c\x56\x2c\x63\x9c\x89\xfb\x7a\xa2\x70\xd8\xf2\x21\x0a\x76\x0c\xb7\xc6\x2c\x61\x04\x07\x60\x53\x46\x21\xa7\x3f\xca\xa2\xf4\xe6\x77\xea\xcb\xc1\xe8\x51\xc0\xc3\x63\x46\x67\x39\x8b\x83\x5c\xb9\x8e\xc8\x4b\x7c\x2b\x17\xe0\xab\x68\x2d\x7d\xbd\x89\xc5\x18\x24\xb8\x81\x3f\x5a\xc7\x1f\x2f\x2b\x44\xab\xb5\x2c\xcd\xeb\xaa\xf2\x65\x69\x59\xac\x96\x58\x5e\x95\x59\xeb\xaa\x5c\xbd\x25\x27\x6c\xba\x09\x95\xc3\xbd\xda\xba\x10\x24\xca\xf6\xdd\x1b\x57\x37\xec\x65\x1b\x70\x1a\xd7\x90\x57\x89\xc5\x96\x40\xd3\x8b\xe9\x12\xac\xba\x42\xa2\x3a\x1d\x8c\x07\x4b\xb5\x17\xb7\xdb\x71\x89\xf5\xc7\x19\x19\x6d\xb7\xfa\xe3\xd1\xb8\xed\xf9\xe9\x9f\xe9\x8d\x23\x73\x9d\x65\x54\x28\xd3\x9a\x47\xce\xc8\x89\xb2\xd8\x39\x23\xce\xd8\x45\xbd\x25\x91\xad\x49\x91\x59\x31\x5d\x5a\xcd\x96\xbd\x8e\x89\x5a\xaa\x79\xaa\x8d\x0a\xa8\xad\x3f\xc3\x4b\xa4\xa7\x6e\xa6\xa6\x6e\xf3\xc7\xa7\xae\x6c\x4c\x5d\x61\xcf\x5b\xb5\x07\x54\xe7\xda\xb4\xd4\x76\x99\x05\x3c\x22\xa1\xc3\x48\xdc\x4e\xe0\xba\x57\xe7\xd4\x06\x63\x50\x03\x29\xc7\x55\xb8\x00\xf3\x18\x31\x0e\xf0\xa6\x22\x5d\x72\xa4\x6d\x4a\x3a\x33\x75\xa4\x82\x79\x49\xc1\x6c\xa5\x46\x5b\xd7\x06\x24\x16\x20\x31\x5e\x12\x3e\xac\x30\x82\xe7\x26\x7f\x39\xb9\x2d\x03\x71\xb1\xd6\xf9\x05\xbe\x31\xb9\x2b\x51\x7a\x25\xd6\x4d\xb5\x85\x73\x69\x1b\x20\x7e\xc9\xa1\x2e\xc8\xd1\x18\x5f\x92\xc1\x18\x5f\xc9\x8b\x74\x6b\x7f\xe6\xf6\x09\xe3\x9e\x67\xff\x4c\x6f\x02\xc7\xed\xfb\xae\x0b\x22\x16\x77\x00\x4f\x2b\xe0\x54\xb9\x20\xeb\xa1\x3a\x11\x72\x54\x11\x4c\x79\x34\x3d\xdf\xa4\xa9\x03\xcf\x2f\xc4\x51\x94\xf7\xef\xb9\xd8\x91\xf7\x0f\xe7\x5e\xff\x42\x72\x54\x8d\xc3\xa0\xa2\xb0\x15\x75\xb8\xae\x6c\x32\xf6\x92\xd8\x67\xe2\xa2\xfc\x99\x8c\x4e\x3f\x9f\x69\x89\xd4\xe9\xe7\x6a\x7b\xbd\x21\xb3\xe9\xe7\xb0\x67\xf5\xed\x3c\x7b\x6b\x1d\x93\x6f\xb4\x48\x5f\x1e\x97\xe6\xf6\x7d\x34\xc6\xef\xc9\xe8\xf4\xfd\xd9\xb5\xae\xf4\x7d\x55\xe9\x5b\x72\x3d\x7d\x1f\xe2\x4f\xe4\x8d\xc6\xc0\x5b\x84\x9f\x90\xdb\xb2\xf7\x69\xa8\xee\x5c\x13\xff\xc9\xf4\x6d\x48\x3e\xc9\xb1\xe2\x85\xb8\xc0\x3c\x16\xff\x3c\x93\x94\x5f\x65\x20\x14\x48\xc0\x71\x1d\x1b\x75\xc6\x63\xbb\x55\xa5\xc6\x5a\x7f\x23\x87\x02\xb9\x30\x8c\xb7\x75\x14\x8b\x2a\x51\xf9\xd8\xf3\xfc\x2b\xd1\xe9\xf2\x92\x3c\x9b\x8e\x8c\xb3\xa0\x77\xe4\x99\x16\xb3\xbc\x22\xe3\xd3\x57\x67\xef\x4e\x5f\x09\xb8\xcb\x3e\x79\x36\x7d\x15\xf6\x2e\x8f\xc9\x3b\xab\x1d\x17\xda\x91\xb5\x3b\xd1\x15\x65\xd1\x82\x06\x2e\xbe\x94\x46\x4b\x1f\x89\x9a\xd0\xde\xe5\xa3\xc1\xd8\xf3\xfc\x8f\xc4\xff\xd8\xbf\x44\xc7\x27\x76\x5f\xdd\xf7\x8d\xd2\x1f\x91\x0a\x7d\x7d\xd4\xb9\x0c\xb6\xdb\xa3\xbd\x08\xb9\x7a\x44\x66\x96\x9b\xf6\xda\xa2\x7d\xb2\xa4\xb3\x4f\x8e\xe6\x03\x1d\xb7\xff\x01\x61\x7f\xb1\xdd\x5e\xe8\xc9\x41\x9e\xf7\x41\xc7\xc6\x9e\x4f\x37\x61\xef\xe9\xe4\xe9\x30\xdf\xf0\xf5\x46\x9d\xcb\x40\x3b\x18\x36\xe4\x20\x48\x14\xfd\xc8\xd5\x3d\xfa\x63\xf3\xf2\x7c\x31\xac\x27\x94\x28\xf0\x45\xdd\xe4\x36\xe1\x74\x15\x14\x58\xd6\x1f\x4c\xbf\x45\xdd\x61\x89\x6f\x64\x4f\x45\x13\x08\x95\x4a\xa3\x31\xf7\x23\x3f\x37\x5a\x93\xd7\x64\x84\x5f\x18\xd1\xee\xeb\xb3\x17\xa7\xaf\x77\x9c\xaf\xb5\x0e\xbd\xd6\x1d\x9a\xbe\xae\xce\xda\xa2\x93\x60\xcf\x2b\x9a\x7b\xd3\x24\xd8\xb3\x3a\xc1\x5e\x97\x36\x67\x62\x73\x86\xdd\xa4\xb9\x36\xa3\xe7\xd9\x13\x28\x90\x64\x0b\xb5\xc8\xcf\x33\xb7\xe5\x2d\xdb\x8e\xf7\xc5\x6a\xe2\xb1\x04\x24\x0e\x6a\x8a\x1b\xe6\xe1\xb8\x20\xe3\xca\x33\x8c\x91\x7c\xa7\x84\x4e\xe8\x34\x99\x6e\x42\x71\x3a\x84\x43\x7d\xe8\xe1\x19\x01\xeb\xe0\x74\x02\x79\xb2\x37\xe6\xe7\x76\x3b\x1c\x8d\xc6\xe8\xbb\xb4\x37\x3e\x12\x40\x85\x11\xf2\x15\x78\x86\x02\x1f\x40\x33\x18\x38\x99\xe1\xa8\x4f\x66\xa8\x84\xce\x41\x71\x32\x86\x97\xa0\xd1\x71\x1e\x14\xd6\xee\x01\xdf\xde\x36\x63\x97\x33\xbe\xff\x76\x00\x48\x13\xac\x75\x92\x2d\x86\xc3\xe1\xd0\x45\x98\xaa\xa8\x78\x35\x16\x1c\xae\x3f\x16\x83\x2d\x79\xee\xae\xba\xe5\x4d\x62\x6a\xd3\x52\x68\xe4\x8d\x5c\xd7\xe2\xa7\x8b\xff\xe3\xfb\x37\xaf\x87\xf2\x50\x49\xe6\x37\xe0\x72\x46\x4e\x90\x2e\x57\xa9\xaa\x6b\x97\xb5\x4a\x6b\xd4\x7d\x3c\xcb\x79\xeb\x69\x57\x36\xa0\xc3\x30\xbe\xde\x46\x96\x87\x96\xd3\xec\x2c\x91\x1c\xb6\x56\x6d\x4e\x33\x60\xa6\xe0\x3c\x6c\x6c\x23\x6d\xdf\xad\xde\x76\xde\x26\x6a\xbb\x35\xe1\xf4\x6e\x50\x21\x12\x7a\xb9\x58\x11\x10\xec\xf7\x13\xbd\x21\xf0\x85\x70\xde\x30\x16\xf2\x5d\xb3\xa1\x5c\xe4\x79\xb9\xc5\x5c\x48\x3a\x19\x59\x29\xc4\xce\x46\xb8\x1a\xa9\xf6\x8d\x53\x96\x65\xe3\xbc\xb4\x2f\xb7\x3b\xd0\xa7\x44\x17\x44\x89\x32\x4a\xd4\x40\x1a\xdd\x85\x34\xaa\x90\x56\x6f\x30\xf6\x3c\x3f\x1f\x0a\x6a\x46\x3a\x98\x3b\x99\xd3\xe8\x63\x8c\xc0\x6e\x92\x55\x98\x36\x5a\x0b\x49\x16\x65\xa9\x12\x17\x64\x04\xa2\x2e\x6d\x8f\x7c\xb6\x39\x2d\x44\x87\xd8\xb4\x08\xe1\xe6\xd8\xe3\x15\x2a\x80\xd4\xa9\x4f\x59\xde\x04\xbe\x33\x0b\x39\xcd\x17\x1d\x17\x9f\xe6\xa0\xd4\xad\x5f\xdd\x88\x4e\x7d\x4a\x66\x79\x56\xe4\x29\x45\xc3\x34\x5f\xa8\x97\x4a\xb4\xf6\x4c\xa9\x53\x4f\x1f\x56\x2e\x7e\xc7\xe3\xfd\x36\xd0\x55\x64\xc3\xa3\x9a\x33\x33\xcf\xeb\x7a\x60\x65\x43\x0c\x93\xe2\x27\x30\x98\x04\x67\x4a\x1d\xe9\x60\xff\xbd\xc7\xce\xcc\x91\xcc\x20\x78\x4e\x07\x9b\xdc\x0e\x53\xb4\xae\x3e\x30\x1a\xc5\xcf\xd3\x3c\xe2\x2f\x9f\xed\xe8\x25\x58\x02\x78\x5e\xe6\x9b\x37\x11\x23\x84\x4a\x68\x44\x8c\xf3\x42\x77\x11\x29\x3b\xf1\xf1\x49\x1b\x49\xdd\x5d\xff\xff\xcd\x26\xff\xf7\x33\x9b\x8c\x93\x82\x6b\xd3\xc9\xef\xef\x34\x9d\xec\xc6\x13\xdf\xf9\x04\xa9\xd2\xa3\x3e\x94\x12\xfb\x07\x08\xe7\xc4\x67\xc3\xcc\x4f\x10\x3e\xf6\x7f\x3d\x8f\x6f\xc7\xf8\x41\x39\x3d\x1f\x6e\xcf\xcf\xcf\x8f\xb7\x83\x10\x52\x4e\x5a\x29\x0f\x4a\xe4\x9f\x17\xdf\xf9\x93\x60\x34\x99\x8e\x07\x3f\x86\xc1\x74\x34\x78\x18\x6e\xc7\xfe\x84\x4c\x47\xe3\x93\x10\x9d\xc7\x32\x09\x9d\xc7\xe7\xc5\x77\xd3\x68\x1d\xae\xd0\xe4\xaf\xc7\x08\x47\xe4\xf8\x3c\xbe\x3d\x29\x03\xeb\x5f\xe7\x9f\x5e\x7d\x18\x9c\xc7\xb7\x0f\xca\x63\x5c\x40\xfe\x83\x72\x00\x39\xf2\xdf\x0f\xad\x12\xc3\xf3\xf8\xf6\x7e\xf9\x7f\x1f\xe3\x0d\xd9\xe7\x2c\xbf\x6b\x23\x3b\xd4\x47\x78\x54\xe2\x94\xdc\x2e\xf3\x2b\xca\xde\x32\x7a\x95\xd0\xeb\x67\x99\x58\x44\xb1\x58\x53\x76\x32\x28\xe5\x9e\xe4\x9b\x8c\x07\xe3\xd1\xa8\x96\xf5\x3c\xa1\x69\x2c\xb3\x1e\xe2\x08\xda\xa5\x6f\xd6\x34\x13\x0b\x51\x7d\x3e\x49\xf3\x02\x16\x26\x5f\x52\xf5\x40\xb1\xc4\xb3\xdd\x0a\x22\xe5\x69\x41\x5f\x5c\x65\x14\x94\x31\xc2\x46\x95\x0f\xe1\x5a\x52\x75\xe0\x7d\x2c\xf2\x8c\x54\x32\x2e\x9a\x69\xff\xcd\x72\x93\x68\x07\xce\xe2\x24\xd6\x8e\xb8\x92\x42\xf4\x50\x7a\xbc\x37\xcd\x98\x32\xc3\x0e\x94\x68\xfb\xbc\xdd\x10\x24\xed\x4a\x45\x77\xb7\x60\xb0\xbb\xa7\x11\x03\xd4\x68\xc7\x64\x1c\xd0\x94\x99\xad\x3d\x4d\x19\xa0\x46\x53\x26\xa3\x3a\x50\x77\x10\x29\x4b\x4f\xe6\x4a\x6c\xbb\xf8\x56\xd0\xa5\x36\x3d\x51\x12\x08\x7b\x66\x26\xf6\x47\x50\x4d\xec\xa3\x51\x89\x0b\xca\x3b\x18\x5a\x35\xa1\xb4\x6c\x50\xc2\x3a\x9d\x1c\x95\x3b\xd5\x80\xf5\xfe\x3e\x05\xa7\xf3\xdd\xfd\x35\x12\x11\xe5\x55\x03\x82\x66\xf9\xf9\x90\xd3\x42\xf1\xce\x62\x41\xa2\xed\xb6\x68\x27\x45\xcd\x24\xf4\x8d\x7a\xfc\x0b\x4b\xbf\xac\xc3\xd5\x22\x11\xdd\x30\xd6\x7d\x4b\xce\xd7\xee\xb7\xea\x14\xac\xcc\x9d\xf3\x5e\x7f\x96\x65\x50\xf2\x8d\x1a\x97\x40\x3b\x5b\x67\xc3\xc4\xcf\x86\x11\xfa\xf6\x0d\x3f\x5b\xad\xf9\xcd\xfe\xd6\x8f\x34\x45\x2a\xaa\xb7\x60\x32\x49\x61\xe3\x5b\xf6\x64\x27\x06\x54\x83\x56\x77\x55\x8c\x7f\xd1\x2f\xdd\xa1\x5a\x1f\xbf\x79\x17\x97\x51\xf1\xcf\x74\x77\x0f\x4d\x58\x0b\xd5\x95\x6f\xd2\xa8\xc5\x19\xbf\x8e\x56\x3b\xf7\xb9\x5a\x21\x97\xdf\x7c\x85\x88\x7f\xef\x68\x74\xf6\xcd\x1b\x15\xf3\x78\xd7\x4a\x90\xd5\x4c\x6a\x0f\x41\xab\x5e\xb4\xa2\x2c\x6a\x36\x62\xbb\xbd\xe7\xba\xf7\x4a\x14\x4c\xc3\xbb\x7b\x4a\x6b\x2f\x56\x16\x8b\x14\x58\x05\x9b\x13\xd0\x7d\x11\xc9\x47\xd6\x87\x3c\xb9\xa9\x0c\x14\xa7\xcf\x2e\xfb\xb4\xb0\x02\x79\x32\x9a\xd5\xce\x36\x8b\x2b\x51\x7e\xac\x2c\xf7\x33\x3b\x80\x81\x67\x41\xb5\x56\x87\xa0\xf7\x7e\x99\x14\x5c\xf5\xdd\x97\xb3\x15\x23\xdf\x15\xc7\x93\x8b\x80\x9c\x5b\x43\x14\xa9\x8f\x39\x3c\xc9\xac\xf3\xe1\xfa\x98\x96\x1e\x78\xc7\x08\xd3\xb3\xd1\x76\xeb\x1b\x16\x46\xb1\x33\x0a\x11\x62\x0f\xd0\x4e\x0c\x34\x06\x72\x34\x46\x18\xea\x9d\xec\xe8\xb8\x84\x6f\x77\x3c\xf0\xbf\x04\x89\xbb\xd0\x12\xc5\x71\x07\x4e\x9a\x58\x59\x50\xfe\x22\x4b\x93\x8c\xae\x25\x57\x41\x5a\x7a\x47\x51\x7d\x25\x5e\x50\x04\xa7\xe6\x9f\x0a\x0e\x2d\xa5\x93\xbc\x9b\x61\x9a\xb8\xf0\x7b\xea\xf6\x9b\x85\xfb\x6e\xe8\x06\x6e\x2d\x43\xac\xf3\x6c\x48\xf5\x3b\x78\xec\xb8\x48\x40\xd9\x7a\x72\xb0\x3b\x49\x08\x37\xef\xfb\xef\x64\xa4\x1a\xfb\xc7\xf2\x5e\xd2\x77\x03\xb7\x2f\x91\x46\x91\x4f\xa1\x13\x53\x1e\xa2\x52\xdc\x4a\xb4\xc4\xf2\xd1\x01\x0c\xdd\xc4\xfd\x1f\xff\xe5\xbf\xba\x81\xeb\xaa\xeb\x99\x7b\xeb\xf6\x13\x7b\x14\x79\xdf\x2d\xdd\xfa\x54\x30\x9a\xc5\x94\xb5\xf6\x9f\x9a\x59\x22\xbb\x35\x47\xbe\x1b\x27\x57\x2e\x76\x59\x7e\xed\xca\xeb\x13\xb5\xf2\x22\x17\xbb\x72\x43\xb0\x41\x9a\x64\x9f\x5c\x64\xcd\x9d\xa4\x26\xe2\xc6\x69\x47\xda\x35\x85\x8b\x75\x94\x99\xf2\xae\x56\x5f\xc8\x93\xe1\xce\x62\x9f\xc4\xe9\xa1\xe7\x44\x60\x52\x97\xd7\x0d\x6b\xa9\x64\xab\xa4\x34\x15\x83\x0b\x60\x3d\x0b\xcc\xb7\x9a\xd0\xd6\x99\x31\xc8\xe0\xd0\xd0\xf3\x61\x1f\x25\x30\xee\xa4\xd6\xe3\xbc\xea\x8f\x5c\xc4\x4a\x92\xd8\x6c\xb3\x17\xed\x1f\xe7\x25\x8b\x66\x9f\x28\x77\xb1\x3b\x15\x43\xbc\x03\x5a\xbd\x96\xc0\xcd\xd5\x7e\x77\x49\xd3\x4e\x28\xda\xa9\x8f\x25\x42\x25\xaf\x25\x24\x82\xa0\xd7\x02\x28\x4b\xd9\xdb\xad\xaf\x36\x0a\xf0\xa5\x13\x7b\xa5\xa0\xa0\x39\x74\xb4\x8b\x7e\x54\xcc\xaa\x99\x53\xc1\x97\x7b\xde\x6e\x8a\x13\x43\xe8\xaa\x0a\xfc\x17\x06\x21\xce\x76\x82\x6f\x58\x0a\xd0\x75\xb7\x93\xee\x92\xd1\xb9\x85\x3c\x25\xa1\x2e\xd4\xa4\x2d\xac\xb3\xd9\x02\xea\xd5\x51\x53\x85\x38\x85\x20\xb3\xf4\x03\xfd\x0c\xce\xd2\xfc\x02\x75\xe0\xac\xbd\x5b\xee\xb8\x69\x6a\x57\x0c\xad\xf9\x53\x14\x75\x00\x5e\xe4\x50\x6f\x73\x50\x9f\xa0\xb1\x26\x51\xf6\x51\xab\xa7\x1b\xa4\x42\x11\x37\xc9\xc2\x4c\x9d\x17\x6e\xdd\x85\xa9\x19\x4e\xba\xfb\x8c\x90\x7c\x32\xaa\x6f\x93\x7d\x25\x40\x0a\x6e\x15\x00\xfe\x75\x5f\x01\xf0\x96\x5d\x15\x90\x48\xad\x63\x18\xc4\x12\x2a\xe9\x8e\x43\xad\x55\xcc\x22\x38\x6b\x9a\x1d\x56\x89\x3e\x19\xeb\xc7\xa8\x8d\xea\x26\xe7\x61\xe7\xa5\x0d\x12\x57\xf1\xe5\x56\x07\x1a\xe7\x78\xab\x04\x15\x1d\x82\xf0\xad\xa2\x77\x34\xa3\xcc\x77\x67\x69\x32\xfb\xa4\xd6\xbd\xe1\xcd\x64\xa0\x45\x91\xd8\xe8\x6f\xfd\x20\xa9\x37\x48\xec\x83\xce\xb8\x5f\xea\x35\x44\x3a\x47\x63\xb9\xb5\x94\x13\x60\x3d\xd8\x7a\xd0\x62\xb1\xc6\x86\xfa\x84\x14\xc8\x33\xab\x0d\xe8\x6d\x6e\xee\x4e\xb0\x14\x90\xd8\x4d\x9a\xce\x8e\xea\xd6\xb7\xf2\x2c\x48\xa4\x0d\x4d\x14\x62\x06\xef\x65\xa8\x9f\xe8\x53\x17\x27\xc0\x7e\x0d\xc6\x38\x51\xb3\x8c\x39\xea\xe5\x0d\xa2\x29\x4f\x4d\x1f\x21\xec\x47\x7d\x32\x46\x67\x49\xfd\x9e\xe4\x47\x8f\xc6\xa3\x49\xe1\xa3\x60\x23\x36\x7c\xd9\x13\x7f\x94\x56\xa2\xba\x54\xb5\x9c\x4d\x54\xea\xac\xaf\xeb\x53\x89\x9a\x47\xbc\xcd\x21\xee\x63\x43\xf5\x74\xf0\xaf\x99\x0e\xaa\x27\x7c\x64\xbb\x87\x47\xb7\xe0\xf5\x51\xc3\x1a\x4c\x35\x3c\x41\x56\x10\xa0\x15\xf2\xe1\x71\x96\xc0\x65\x0e\xb8\xcc\x25\x2e\x73\x8d\x4b\x28\x9f\x64\x19\x65\x3f\x7f\x78\xf5\x92\xb8\x20\xb8\x28\x7d\x41\x8b\x95\xfc\x9a\xcc\xda\xa6\xea\xbe\x51\xcb\x30\xff\x04\xf9\x08\x99\xb7\x4b\xf8\x1e\x60\x7d\x20\x95\x9c\x9c\xb2\x01\xcb\xaf\x9d\xdb\xf3\xcc\x71\xe6\x79\xc6\x07\xf3\x68\x95\xa4\x37\x81\xb3\xca\xb3\x1c\x5c\x25\x9f\x9e\x67\xe5\x79\xd6\x51\x08\x77\xa6\x3a\xd1\xae\xf4\x00\xc8\xbc\x6c\x0a\x5c\x63\x05\xce\x65\x1a\xcd\x3e\x9d\x8a\x04\x41\xce\x07\x31\x9d\xe5\xca\x99\x9b\x93\xe5\xd9\xee\xa6\x9d\x9d\x63\x58\x45\x6c\x91\x64\x83\x94\xce\x79\xe0\x8c\x19\x5d\x1d\x5e\x47\x35\x75\x8d\x74\xa0\xae\xb2\xf6\x7c\x1d\xcd\x12\x7e\x13\x38\xa3\xe1\xc3\xd3\x3f\xb3\xb9\x20\x9a\x73\x8d\xab\x38\x29\xd6\x69\x74\xf3\xa5\x28\xd9\x5b\x7f\x33\x51\x1e\x52\x76\xab\x33\xe9\x74\x35\x70\xdc\xd7\xb9\xb3\x96\x37\xee\x84\x16\xee\x9f\xd4\x01\x38\xf3\xba\xdb\x9f\x86\x5f\xd0\xa8\x94\x04\xd6\x16\xd9\x82\x51\x9a\xc1\x6c\x5d\x2f\x13\x4e\x07\xb0\xaa\x03\x67\xcd\xa8\x4c\xcc\x59\x3c\xb8\x66\xd1\x3a\x70\xe0\xf1\xc8\x40\x24\x1c\xde\xa0\xe4\x44\x1b\xab\x7a\xf3\x05\xf3\x74\x99\xe7\x29\x8d\xb2\x5a\x0d\x8c\x7e\x51\x0f\xd2\xb4\x56\xfa\x2f\x7f\x7f\xf8\xf0\xf1\x68\x74\x78\x0d\x9b\x4c\x0a\x56\xe2\x7a\x35\xb3\x68\x74\xf9\xfd\x8f\x87\x57\x53\xa9\x38\x6a\xb5\x3c\x7f\x7e\x32\x7a\xf6\xf4\xf0\x5a\x04\x87\x2b\x6b\xb8\x8c\x66\x9f\x16\x2c\xdf\x64\xf1\x40\xe3\x65\x71\x19\xf9\x23\xec\xa8\xff\x0f\x47\x0f\xd1\x17\x8c\x92\x29\x34\xb5\x68\x8d\x18\x3f\x13\x9c\xe1\x69\x7b\x16\x1d\x67\xb6\x61\x85\x48\x58\xe7\xe0\xa7\xef\x0b\x66\x56\x5e\x35\xbe\x62\x6d\x7c\xa2\x37\x75\x64\x8e\x46\xa3\xd1\xdf\x7f\xda\xd1\x2d\xc7\x59\x47\x71\x9c\x64\x8b\x01\x03\x3b\x1d\x67\x34\x3c\xf9\x32\x92\xd4\xb8\x03\xaa\xb6\xff\xe8\xf8\xd5\x8d\x57\xd6\x22\xd0\x3b\x58\x4a\x03\x22\x67\xac\x3b\xa6\x0e\x1d\x08\x01\xe3\x8c\x86\x3f\xe8\xd4\x2b\x41\x6d\x66\x51\x3a\x88\xd2\x64\x91\x05\xce\x2a\x89\xe3\x54\x4e\x87\x45\x83\xbf\xff\xb3\x10\xa1\x7a\xde\x49\x85\x13\xb8\x43\x0c\x2e\xd3\x5c\x1f\x5d\x26\x00\x90\x53\x79\xe3\x77\xc6\xa3\xd1\xaa\x70\x68\x54\xd0\x41\x92\x9d\xd6\x29\xda\xf9\xf9\xc9\xc3\x9f\x1e\xef\xa1\x6a\x8f\x9c\xc8\x79\xd4\xea\x95\x7d\xf5\x69\x9e\x47\xad\x9e\xa8\x2c\x67\x34\x1c\x3f\xac\xf7\x43\x62\x1c\x62\x0a\x38\x09\x8f\xd2\x64\xb6\xb3\x23\xea\xc8\xfe\xf2\xee\xc0\xd4\x74\xd7\xd9\x3a\x7a\xd6\x34\xeb\xa8\xdd\x16\xb7\x1c\x32\x3f\x15\xe6\x03\x87\xe5\x3c\xe2\xd4\xff\x71\x14\xd3\xc5\x6e\xfa\x70\x60\x3f\xf4\x29\x76\xc8\x5a\xf8\xa2\x86\x0e\x43\xe9\x61\x87\x7f\x57\x13\x87\xf3\x15\x7b\xba\x1f\x47\xec\xd3\x37\xe1\x17\x77\x54\xd4\xc1\x2b\xee\x6a\xb2\x8b\xaf\xdc\x09\xdb\xc1\x6b\xc2\xe1\xff\xa5\xbc\xe6\xae\x06\xbe\x96\xff\x3c\xb4\xde\x3f\x91\x27\xfd\x26\x5d\xf8\x42\x3e\xf5\x9b\xb4\xf9\xad\x79\xd7\x3f\xa5\x53\x7f\x84\x9f\x3d\xb4\x23\x1d\x3c\xee\x5f\xee\x8f\x9f\x8f\xee\x8f\xbf\x09\x97\x7b\x68\x37\x3a\x38\xdf\xbf\x7c\xff\xfd\x93\x93\xe7\xcf\xbf\xae\xde\x2e\x86\xf8\x2f\xcf\x9e\x3c\x38\x79\x70\xf2\xb5\x1d\x6e\x32\xca\xcf\x9e\x3d\xf9\xf1\x87\x1d\xbc\xe9\xa1\xb5\xee\x60\x9e\xe9\xfc\xef\xf3\xcb\xaf\xdc\x06\x3b\x18\xea\xa7\x0f\xfe\xfe\xe4\xa7\xaf\xab\xf9\x4e\x26\xfb\xe4\xe1\x43\xec\x98\x7f\xf6\xb0\xda\x07\xe3\xe9\xcb\xd8\xef\xbf\x8c\x4e\x7e\xf8\x09\x96\xd2\x81\x1c\xe8\xc1\xcb\xab\x83\x2b\xff\xcb\x8f\x0f\x7e\x7c\xf0\xb5\xeb\xb6\xc5\xac\x9f\xdc\x7f\x3c\x7a\xfa\x4d\x98\xf5\x83\x49\xd4\x1f\x67\xe0\x0f\x6d\xe2\xff\x1b\x4c\xfd\x17\x8e\xe6\xdf\x84\xd1\xdf\xd5\xc7\x7f\x17\xcc\xff\x8e\xce\x7d\xf3\x0b\xc1\x8e\x76\xfe\x5d\x5c\x12\xbe\xae\x6f\x5f\x79\x71\xf8\xb2\xc6\xbf\xd9\x65\xe2\x0b\x9a\xfd\x43\x17\x8c\x7b\xd8\x75\x43\x54\x17\x59\xa3\xdb\x4e\x5f\x72\x52\x09\x3f\xad\x62\xfa\x1a\x0f\xb0\xdd\x1e\xe7\xe0\x4d\xf6\xe8\x94\x9f\x81\x6c\x5f\xbd\xa2\xe0\xda\xe1\x8a\x7c\x9f\x3d\xe5\x61\x8f\x4d\x4f\xc2\x09\x95\x12\x71\xf7\x3f\xac\x68\x9c\x44\x8e\xdb\x17\xa9\x7d\xf7\x56\xfc\x18\x87\x7d\xb7\x74\x51\xa0\x60\x44\x82\xf1\xf4\x56\x05\x0f\x80\x30\x11\xc4\x76\xa5\x82\x6e\x5b\x6f\x49\xa5\x16\x68\x0a\x31\x30\x30\x17\x63\x0f\xed\x17\x28\xf0\x4c\x7c\x74\x9a\xd4\xba\x9c\xe8\x2e\x4b\xa5\xd1\x34\x09\xa7\xa3\xb0\xd7\x0a\x4d\x9f\x7b\x9e\x9f\x4d\xf3\x90\x1c\x8d\x10\x3c\xd1\x56\x35\xb5\xaa\x89\x08\x9f\x26\x1d\x15\x44\xe0\x45\x3f\x9b\x8a\xbf\xe1\x76\xeb\x33\xcf\x3b\x8a\xc0\xed\xda\xf4\x24\x24\x2c\x60\x9e\xe7\xc3\x4f\xd7\x77\xfb\x11\xa0\x07\xc1\xb3\x68\xdf\xed\xb3\xbe\x8b\xe0\x39\x95\x7a\x90\x82\xca\x12\x5c\x37\xd4\xa7\xb5\xe6\xe7\xbe\xe5\x14\x87\x76\x38\xc5\xa1\x53\x16\xe2\x84\xa4\xd3\x6c\x98\xc8\x17\xe0\x09\xba\x4d\x86\x8c\xce\x8b\x7e\xdf\x72\xe5\x0f\xc1\x91\x87\xeb\x88\x55\x0f\xf7\x4f\xf3\x7e\x1f\xa9\xa4\x69\x1e\xfa\x59\xf5\x53\xc5\x8a\xce\xcf\xb2\x9d\x05\x54\xe8\x24\xab\x10\xc4\x4c\x02\x4d\xbf\x44\xa1\x7a\x6d\xa5\x42\x81\xb7\x2b\x8a\xba\xab\xe8\xa9\x91\x90\xdb\x24\x0e\xc4\x2f\x2c\x86\x12\x8c\x31\x00\x05\x51\x59\x96\x65\xfd\x65\x8c\xf1\xf9\x37\x0d\x31\x13\x2b\x44\x7a\xfb\x33\x0f\x95\x34\xb6\x12\x78\xa3\x84\x73\x92\x4c\x47\x21\x8e\xc8\xed\xac\x28\x82\x64\x3a\x0e\x31\xac\xe9\x20\x99\x9e\x84\xb8\xc8\x37\x6c\x46\x5f\x45\xeb\x20\x99\xde\x0f\xcb\x1e\x9b\xe6\xe1\x44\xfc\x63\x0f\x3c\x42\x01\xd7\x6b\x3d\x97\x7d\xcd\x55\x0f\xa7\x51\x58\x5a\x4f\x8b\x9a\x2e\xf6\xe5\x6c\xae\x21\x94\xf5\x6a\xba\x32\xde\xf0\xe0\x65\x35\xcf\xd7\x10\xc0\x78\x98\x64\x05\x65\xfc\x31\x47\xd9\x24\x1b\x66\xf4\x33\x7f\x9f\x5c\xa6\x49\xb6\x98\x30\x95\xf5\x13\x9d\xe7\x0c\x1c\x0d\xd9\xd9\x28\x60\x0d\x43\x82\xa0\x55\x80\x0d\xe7\x09\x2b\x38\x00\x20\xbc\xaa\xfc\x59\xc2\xdc\x89\x4e\x5c\xe6\x9c\xe7\x2b\xf7\xa8\xd6\x8f\x96\x1f\x80\x17\xd9\x55\x94\x26\xb1\x03\x46\x33\xce\x3c\x67\xce\x3a\x62\xd1\x8a\x0a\x62\x76\x4f\x17\xbb\x37\x74\x5e\x6d\x0a\xee\x5c\x52\xe7\x1e\xcf\xd7\xf7\x9c\x9c\x39\xf7\x64\xfd\xf7\x20\xaa\x73\xd3\xec\xc1\xe0\x2b\x17\x73\x4b\xad\xa0\x72\x35\xad\x20\xd5\x6a\xc9\x55\x65\xa7\x4c\x51\x4f\x46\x87\x5e\xe9\xa8\x66\x1c\x8f\xad\x30\x29\x91\x79\x8f\xd8\xb0\x7a\x78\x26\xb5\x9a\xbe\x8c\xa0\x68\x59\x2c\x80\xa9\x09\x81\xf8\x7b\xc7\xb3\xa2\x70\xb1\x9c\x44\x6c\x4d\x6b\x51\x0f\xc3\x23\x4d\xd4\x86\x45\x92\x2d\x52\xca\xf3\x4c\x3f\x0b\x9d\xf7\xfb\x3d\x46\x96\xdb\xad\xbf\x24\x91\xcf\x91\x98\xfe\x8d\xd4\xa3\x4b\xe7\x11\x38\xc5\x47\x63\x84\x8b\x76\xea\x48\xa9\x36\xe9\xb0\x5a\x9a\x9d\x2f\xaa\x7e\x79\xf7\x72\x57\xba\x1a\xa7\xd4\xf4\xef\x83\x63\xf4\x2a\xff\x74\x07\xdc\x4f\x69\x7e\xd9\x99\x71\xc9\xf3\x68\xe2\xb3\x76\x14\xa7\x9d\xf8\x56\x96\x61\x15\xba\x19\x4d\x55\x18\xcb\x62\x49\x29\xb7\xf0\xed\x73\x81\xb1\x6e\xb7\x8e\xb3\x42\xba\x9f\xa9\xd0\xd3\xcb\x3c\xcf\x67\x7d\xe2\x9e\x67\xc7\xdf\xfd\xc5\xa9\xd2\xd7\x49\xb6\xf8\xe5\xdd\x4b\x12\x47\x3c\x0a\xa2\xb5\x58\x24\x70\xa1\x3a\x16\xe7\xf2\xe9\x65\x54\xd0\xef\x1f\x60\xb7\x2f\xc6\xe1\x6f\x32\x5a\xcc\xa2\x35\xf5\x65\x1c\x99\x5a\xb8\x95\xc6\x7b\xd5\x0c\x21\x84\xfa\xae\xf3\xdd\xb1\x32\x84\x93\x2e\x37\x05\x9e\x7c\x41\x9d\x6f\x05\x7e\x02\xb3\x8a\x4a\xe9\x63\x73\xc9\xe8\xbc\x27\xff\x90\x8e\x39\xf2\x13\x84\x73\xcf\xeb\x98\x15\x3f\x47\xa5\xbd\x48\x1a\xee\xc4\x72\x9f\x21\xcc\xa0\xde\xee\xe2\x32\x0f\x95\x28\xf0\x19\x2c\xc6\x3b\x31\x0b\xe4\x11\x7c\xf4\x7a\x1e\x6d\x58\x46\x41\x9e\x8b\x33\x78\x2a\x2c\xa6\xee\xbd\x98\x3a\x64\x7f\x88\x7a\x3e\xd0\xcf\x9c\x30\x49\x64\xe0\x74\xa1\x16\x19\x3a\x45\x8d\xdd\x6d\x93\xa8\x1e\x3d\xc8\x62\x89\x89\x23\xf5\x0e\xb4\x94\x26\x0a\x97\x4f\x11\xb6\xcd\x2c\xa4\x85\x08\x6c\xde\x59\x51\x00\x0d\x9e\x15\x85\xe7\xa9\xc1\x43\x02\xfc\x12\x49\xd5\x8a\x82\xe4\xea\x4b\x47\xb3\xcc\x7c\x4a\x94\xd9\x9b\x53\xf8\x36\x51\xdb\x58\x4f\x99\xe4\xcb\xc3\x89\xeb\x06\x99\x68\x0a\x0c\x25\xee\xc4\xe0\x8d\xcf\xb5\x93\x62\xc5\xf1\xec\xc2\x07\x38\x6f\xa5\xd2\x78\x42\x24\x14\xbd\x68\xca\x43\x31\x7f\x36\xa6\x45\x1a\xc2\x91\x0e\x5b\x47\xeb\x87\x45\x8e\x21\x3f\xa0\x0d\xfb\xc5\x52\x19\x7d\xdd\xd6\x9e\x6c\xe9\xed\xde\x11\xbc\xae\x66\xbc\x5f\xd9\xfa\xd0\xee\xa0\x7e\xe0\x39\x0f\xc7\x64\xe6\xb7\x6a\x38\x5e\x15\x09\x75\xa6\xdf\x0f\x7e\x0c\xcf\x2f\x8f\xe5\xc3\x19\xf5\xca\x2d\x8b\xae\x92\x45\xc4\x73\x36\xdc\x14\x94\x3d\x5e\x08\x94\xd4\x9d\x98\x97\x08\xaf\xbb\x2a\x75\x2a\x14\x2e\x69\x14\x6f\xb7\xd5\xe7\x82\x72\x45\xaa\x8a\x9f\x6e\x3e\x44\x8b\xd7\xd1\x8a\xfa\xae\x00\x72\xd1\x74\x14\x96\x08\x2f\xe5\x7b\xb1\x39\x19\xe1\x95\xe0\x78\x76\x79\xa0\x15\xc7\x6a\x25\xf6\x32\xbe\x79\x9e\x3e\xfb\xe9\x97\x7f\xf2\x3c\xf5\x47\x1b\xbe\x55\xd9\xba\x23\xed\xc3\xf7\xc3\x92\x3a\xb0\x3a\x06\x69\x1e\xc5\x94\x39\x33\xe9\x8c\xed\x92\x3a\x9b\x82\xc6\x4e\x92\x39\x91\xb8\xb3\x0c\x2e\x59\x7e\x5d\x50\xe6\xd0\xec\x2a\x61\x79\x26\x6a\x13\x44\x4a\xcf\x83\x89\xcc\x53\x9d\x58\x60\x40\x53\x7d\x91\xd8\x47\xf6\x13\xb2\x8a\x21\x50\x76\x36\xf2\x83\x68\x9e\xa1\xa2\x7f\x56\xbc\x20\xe6\x27\x82\x86\x77\xb9\x69\xce\x05\xcb\x26\x83\xed\x55\x31\x3c\x23\xcd\xad\x15\x10\x6e\xef\xd4\xdf\x90\x74\x5a\x08\x96\x10\x01\x57\x3b\x18\xe0\x5c\x79\xe7\x46\x25\xf5\x3c\x06\xef\x92\x31\x97\x4c\xab\x8a\xdc\xd7\xaa\x6c\x03\xcf\xf9\xc5\x88\x37\x24\x9f\x46\xaa\x2e\xd3\x13\x19\xc9\x6f\x53\x67\x53\x67\xfd\x3e\x52\x49\xd3\x59\xe8\xa3\x5e\x4c\x53\xca\xa9\x93\x4e\x37\xa2\x3f\x82\x15\x85\xf1\xde\xec\xbb\x84\xd5\xef\x3b\xd5\x73\x62\x1e\x12\x86\x05\x9d\x4b\x39\x65\xfe\x4f\x52\x82\xab\x0d\xcc\xcf\x33\x17\x95\xa5\x8f\xda\x86\x4a\xfa\x99\xea\x18\xf5\x5a\x57\x27\x70\x70\x49\xa6\x60\xb3\x94\xc9\x9b\x13\x66\xfe\x7d\xe4\x67\xf8\xb6\x44\x38\x93\x01\xdc\x0b\xcf\xb3\xac\x9d\x74\x62\x47\x53\x3b\x23\xe4\x59\x8f\xd1\x3b\x42\xe9\xd0\x46\x60\xba\xca\xb7\x90\x15\x36\xc0\x75\x4d\x90\x69\x93\xa8\xde\x47\x01\x23\xdc\xaa\xd5\xf3\xea\x4f\xdf\x9b\x85\x24\xa3\x71\x5c\xb5\xed\x4f\x7f\xf5\xc3\xef\xd0\xb1\x0a\x72\x56\x7b\xfb\x6e\x39\x75\xaf\x78\x0f\x41\xd6\xb5\xef\xf4\x09\x9f\x8e\xc3\xc0\x75\x1b\xcc\x68\x2d\xf4\x38\xa1\x13\x57\xfc\x72\x83\xf6\xb8\x23\xfb\x14\xcd\xcd\x56\x90\x05\x08\x21\x6c\xbb\xb5\xc8\x01\x38\x49\x62\x81\xe5\x57\x09\x1e\xb3\x72\x72\xcf\xbd\xd7\xef\x7a\x5e\x53\xb9\xec\xbe\xe7\xde\xc3\xf7\xdc\x7b\x48\xb0\x47\xe0\x8a\xa8\x16\x93\x9a\xb0\x09\xb5\xc6\x6a\x22\xd9\x4d\xcf\xd9\x79\x16\x1e\x2f\xb0\x6b\xb9\xff\x3e\x3e\xbf\x1d\x7e\x77\x5e\x1e\x8b\xc4\xbe\x7b\xfb\x3f\xfe\xcb\x7f\x2d\xdd\x80\xa3\x1a\xa7\x5b\x3d\x1f\x6c\x08\x32\xdc\x3e\x2d\xf9\x30\x22\x19\xe6\xc3\x4b\x92\xc0\x1b\xf7\x1c\xf3\xe1\x82\x44\x98\x0f\x69\x07\x47\x58\xbd\x48\x80\x05\x35\xf1\x39\x11\x8b\x05\xd7\xdf\xff\x51\x24\xd0\xd0\x27\xee\xd4\xed\x53\xeb\x75\x06\x42\x01\x27\x02\xc9\x62\xdf\xcb\x17\xf3\x05\xe6\xc3\x39\xe9\xde\x2d\x3b\xb8\x4f\x6a\x4f\x7e\xd6\xb0\xcb\x2d\x80\x47\xaf\x1e\x9b\xc1\xe3\x62\xdb\x29\xa6\x38\x51\x27\x59\xdd\xde\x12\x05\xd9\x41\x9c\x8a\x9a\x10\x26\xd8\x46\x9c\x75\x38\xce\xb5\x8d\x11\x47\xa8\x0c\xb5\x93\x88\xfb\x7b\x83\x5d\xb5\xa5\x07\x7a\x9b\xfa\x74\xa2\xd1\x17\x8c\x90\x15\x36\x5d\x55\x22\xb8\x9e\x23\x13\xed\xb3\xe1\x36\xbc\xe2\x55\x2a\x2f\xdc\x39\x61\x7d\x3f\x9b\x8c\x83\xc1\x58\x89\x0a\xb2\x49\x3e\x18\x04\xfd\x7e\x7e\x96\x9c\x82\xb1\xad\x8c\xf9\x95\x63\x13\x8e\x4d\x87\xc7\x1f\x8c\x55\x64\xfb\xea\xcd\x3d\x04\x1f\xd0\x95\xcb\xfa\xfa\xfd\x4c\xd5\x24\x6e\xec\xb5\x50\xa4\xb5\x6a\x38\x1e\xa1\x47\x83\x71\x4d\x22\xa0\xbc\x67\x54\x22\x23\x59\xbd\x85\x01\xab\x76\xe6\x73\x2c\x5a\xd0\xbd\x3c\x1a\xa9\xea\x8f\xc6\xed\xe0\x78\x95\x2c\x66\x30\xc6\x59\xad\x46\x9c\x28\x17\xd5\x19\x3a\xed\xf7\xd9\x59\x76\x8a\x92\x29\x0b\x89\x40\x03\x0b\x31\xb3\x82\xfe\x27\xdd\x44\x85\x1e\x11\xda\xb8\xaa\xb6\xce\x0f\xeb\x99\x7e\xed\xa6\x5c\x34\x5c\xd0\x2e\x23\xb1\x7a\x6b\x4c\xa7\xde\x76\x83\x31\x66\xb5\x9e\x03\xba\xa5\x01\x7b\x4a\x23\xe6\x8b\xfe\xf3\x33\x76\x6a\xc4\x4b\x5c\xf9\xe0\x29\x28\xf7\xb3\xe9\x28\xc4\x19\x48\xf7\x4c\xf5\xe9\x9f\x5b\xfd\xec\xcf\xad\x3e\x3e\xa8\xfa\x8b\x0b\x71\x67\xbc\xb8\x80\x8b\xdd\x4c\xb7\x22\xcd\xea\xe3\xd8\xa7\xf0\x38\xab\xaa\x73\xdd\x5c\x30\x46\x70\x37\x18\xc0\xba\xeb\x76\x1e\x2c\xd6\xf9\x76\x4b\xc1\xdb\x8a\xd8\x90\x25\x2c\x1f\xd1\x6b\x6e\xa2\x40\x9a\xf5\x5f\xb5\xb7\x54\xe7\xec\xd1\xe5\x0e\x0f\x2d\x47\x47\xaf\x3c\xef\x95\xe0\x0a\x21\xf0\xa6\x5e\xec\x3a\x96\x85\xbf\x68\x95\x93\x18\x39\x1a\x9b\xc0\x2c\xd4\xbe\xf3\x9b\x30\xac\xd5\x01\x83\x20\x46\x29\x11\xd4\xa6\xef\xba\x76\x64\xdc\x4a\x16\x26\x28\xfd\xeb\xe0\x33\x92\x7c\xbb\xdd\x9c\x69\xa5\x16\xc9\xf6\x63\x15\xb9\xcc\xd4\x66\x87\x67\xed\xbb\xae\x95\x53\x6a\xe6\x02\xc6\x68\xd0\x33\xef\xda\x4d\xfb\x92\x76\x31\x36\x70\x20\xed\x73\x91\xd3\xe1\x1b\xa7\x29\x43\xa6\x9e\x47\xc1\x93\x13\xfd\xdb\x98\x90\x91\xe7\xd1\x33\x72\x51\xfa\x55\xd8\x60\xcf\x3b\x12\xb3\x51\xaa\xff\x26\x34\x98\x86\x66\x28\xab\xba\x8b\x2b\xbd\x2c\x5b\xbc\xa6\x09\x54\xae\x5a\xed\x35\xdf\xfd\xf3\xed\xd6\xea\xdb\x76\xeb\x16\x37\xab\xcb\x3c\x55\x1f\xca\xa2\x40\x7c\x4d\xdc\x8b\x0b\x78\x39\x70\x71\x01\x22\xc1\x40\xf3\x3f\x82\xe9\x98\xb0\x69\x5b\x82\x3f\xd1\x49\x81\xbb\x8c\x8a\xa5\x1b\x06\x6c\xb8\x8a\xd6\x66\x14\x37\xf6\x28\x3a\xb7\x82\x8e\xda\x2d\x0f\xe0\x40\xec\x2f\x20\xf7\x15\x19\x5d\xfa\x0c\x4d\x58\x20\xf3\x4d\xcd\x0b\x33\x72\xb1\x17\x26\x4f\xf5\x02\x32\x4f\x20\x1d\x4e\xc8\xf5\x76\xcb\x09\x79\x66\xca\x5d\xee\xc4\x18\xac\x05\x9b\x1f\xdd\x6e\x6b\xa2\x2f\xf9\xfe\xe9\x8a\xb8\x17\x17\x69\x1e\x47\xc5\xf2\x42\x8c\xf9\xa2\xe2\xee\x2e\x2e\x5c\x7c\x41\x7e\x1c\x8d\x7e\x18\xff\xf8\xe3\xc9\xc3\x07\x3f\x3c\x18\xfd\xf8\xe3\x18\x5f\x9b\xc0\x9e\xcf\x55\x6d\xa1\x8b\x9f\x99\xd4\x7f\xa2\x19\x05\x5f\x95\x56\xf6\x67\x72\xfc\xeb\xb9\x06\x18\xf6\x27\x4f\x0c\x4f\x7b\x1e\xfe\xf5\x18\xbf\x21\x5d\x7c\x33\xb8\xf6\x91\x6c\x72\x15\x24\xd0\xf3\x28\x7e\xdc\x86\x2e\x68\x3a\xf7\x3c\xf3\x6f\xbb\x98\x48\xc5\xef\xc9\x9b\xed\xf6\xf1\x76\xab\xbb\xe6\xbb\xd6\x13\x2f\x17\xf9\x08\xbf\x25\x8d\x38\xd6\xf8\x13\xd1\xd0\x56\xe2\x93\x56\xcc\x42\xfc\x8e\xbc\x9f\xba\x17\x17\xe0\x45\xfd\x63\x71\x51\x2c\x23\x06\x48\x0c\xf1\xab\xf6\x2d\xeb\x78\xfa\xeb\x30\xec\xff\x55\x31\xf9\xef\x3c\xef\x9d\x72\x54\x20\xff\x0e\x5f\x3c\xbb\x78\xfb\xee\xcd\x87\x37\xdb\xad\x6b\xc4\x8c\x74\xe2\xbe\x87\xb5\xee\x17\x6c\x86\x2e\xc6\x43\xb7\x4f\x05\xb3\xef\x23\xfc\x91\x7c\xaa\xe8\x19\xfe\x40\x9e\x34\x7c\x12\xe1\xa7\xe4\x89\xc9\x7f\x4d\x74\x30\xeb\x5f\xdd\xbe\xa2\x54\x1f\x6a\x5c\xf6\xf9\xaf\x7f\x1d\x7e\xd7\x9f\xf8\x68\x7a\x1e\xde\x96\x5b\xe0\xb8\x1b\x41\x77\x8e\xeb\x2d\x6c\x2b\xaa\x88\x86\xdf\x4d\xfc\x09\x39\x3f\x3f\xf7\xd1\x16\xc4\xeb\xc3\xbe\x4a\x08\x91\xa8\xe8\xaf\xe3\xe1\x77\x13\xc1\xaa\xff\xd5\x45\xf8\x05\x79\xab\x84\xde\xf8\x79\x15\x2b\x02\xbf\xac\xdc\x08\xe2\xdf\xc9\x8d\xff\x1e\xbb\xaf\xa2\xb5\x8b\xf0\xcf\xe4\xc6\x97\x88\xc7\xae\xe4\x4d\xe1\x5d\xa0\x15\x74\x5c\x9c\xa6\xad\x17\xc0\xd5\x21\xf8\xf3\xe4\x67\x20\xd7\x28\xb8\x2d\x4b\x6c\x17\x94\x17\xe4\x2e\xcf\x56\xfa\x05\x2f\xd0\x50\x75\x8f\xae\xd5\x3a\xa5\x61\xbd\xae\x05\xe5\x1d\x17\x87\x5a\x19\x71\x3a\xfd\x5c\x89\x2b\xa7\xb4\xba\x74\x33\x42\xc8\x95\xa6\x1e\x4c\x9f\x40\x1f\xe4\x24\x71\x4c\xd1\x44\x40\x6b\xf2\x51\x6b\x76\x19\x15\x77\x36\xab\xea\xfb\x79\x62\xbc\x51\x88\xea\xac\xfa\xeb\x75\x16\xb5\xa1\x58\x74\xae\x89\x01\xf2\xb3\x76\xa6\x2d\x78\x81\xc9\x55\x20\xdd\x16\x95\x38\x3d\x7c\x76\xa6\x61\x1d\xbc\x63\x4e\x3a\xc6\x84\x19\x59\x43\xcf\x35\xdd\xf3\x19\xb8\x1f\x60\xa4\x7a\x70\x3e\x18\x4f\xf8\x70\x9d\xaf\x7d\x14\xbc\xd0\x23\x65\x78\x8c\xc0\x6d\x5b\xad\xc9\x03\xa6\xae\xd9\x9e\xc3\xce\x46\x7a\xc2\xb8\xe0\x7a\xc6\x8d\x61\x34\xe7\x45\x15\x5b\xd7\x19\x34\x4c\xe1\x3e\x50\x2b\xd9\xc6\xbe\x51\x6f\x9b\x82\x19\x59\xfb\x36\xa3\x9e\x9d\x8d\x26\x3a\x2a\x19\xc5\x3c\x44\x01\x9b\x66\xa2\x5b\x44\xcf\xc9\xec\xf0\x39\xb9\x15\x87\x02\x78\x5e\xdf\xe0\x55\xb4\x16\xbf\xfc\xdf\xb7\xdb\x14\x61\x79\x54\xca\xac\xb2\x5e\xe7\xee\xcd\xb4\xd2\x61\x15\x14\x8c\x60\x16\x6a\x45\x9b\x13\xd0\x2a\xb7\xa0\xbc\x55\x68\x07\x86\x4d\x21\xb9\x7d\xeb\x85\x76\x2e\x6d\x53\x4c\xf0\xde\x52\x8d\x03\x68\x8b\xed\x27\xa2\x71\x4c\xec\x6f\x81\xee\x9d\xd4\x43\x63\x53\x55\x78\xd5\x55\xe1\x8e\x31\xd4\xcb\xab\x71\xc0\xfd\xf3\xa7\x1d\x1b\x93\x3c\xf7\xad\x8d\x68\x02\x58\x06\xe2\xca\x89\x3b\xcc\x29\xac\x30\x6d\x3a\xa0\xde\x73\x9f\x55\x11\xc5\x45\xa9\x5c\xdd\x12\x13\xa4\xaf\xa0\xb9\xb8\xdd\xb2\x29\xef\x67\x61\x2f\xb3\x03\x39\x45\x0a\x94\xf7\xc7\x12\x98\x9f\xa2\x48\x02\x67\x15\x95\x8b\xa6\x3c\x24\x79\x4b\x7c\x50\x5c\x27\x82\x25\x36\xfe\x33\x67\x51\x41\x05\x1d\xd4\x17\x44\xb9\x77\x51\x0f\xd2\xc7\xcd\x74\x0c\xee\xf6\x65\xe6\x49\x67\x26\x06\x03\x0f\x09\x71\x7f\x37\x04\x66\xd3\x13\xdb\x0e\x44\x09\xfb\x31\x43\xa5\x0a\x3f\x80\x23\x54\x96\x7e\x9b\x52\x88\x1b\xf7\xdc\xd2\x0b\x56\xce\x86\xa6\xa3\x50\xb0\x9e\xd3\x51\x58\x8b\xbf\x82\xeb\x41\xd9\x27\x59\xc0\x70\x0a\x60\x5a\x64\x31\x33\xd2\x8b\x35\x99\xe1\x25\xa9\x02\xff\xcf\xc9\xf8\x58\x4a\xef\x4f\xd7\xe2\x76\x76\x2b\x25\xba\x74\xba\x0e\x7b\x6b\xcf\xe3\x9e\xe7\xdf\x90\xc4\xbf\xc1\xa0\xb6\x15\xf0\x2f\xfd\x1b\x5d\xd7\x1c\xe1\xe5\x74\x1d\x92\xa3\xdc\xf3\x7c\xbe\xdd\xa6\x8f\xc8\xf8\x64\xe4\x79\x37\x95\x8f\x8e\xf1\xc9\x08\x4d\xc4\xee\x8e\xfd\xb5\xe7\xdd\x20\x7d\xe6\xdc\x40\xf7\x7a\xd2\xc1\xfa\x60\x8c\x2f\xc9\x52\x7c\xd3\x40\xc9\x3f\x16\x67\xa9\xe7\x69\xf3\x80\xb3\xb9\xea\xd7\x15\xb9\x99\x2e\x42\x7c\x41\xf8\x84\xfb\x57\x28\xb8\x02\xd7\xed\x24\xdf\x6e\xc5\x21\x74\x35\xb9\x0a\x46\xf8\xc8\xbf\x9c\x14\xfe\x25\xbe\x40\xc1\xc6\x5f\xe1\x0b\x9c\x23\x24\xd1\xb3\x26\xb3\xd3\xc1\x60\xad\xea\xba\x26\xa2\xeb\x10\x34\xde\xbf\x9e\x14\xfe\xb5\x2c\x21\x06\xae\x0a\xcd\xf2\x8c\x27\xd9\x86\x3a\xb4\xbc\xf4\xbc\x4b\x49\x0c\x2f\x2a\x9b\x81\x2b\x13\x1f\x69\x25\x2e\x03\xe2\xa6\x62\xc7\x72\xff\xa9\x44\x6a\x4d\x88\xa9\xee\xd2\x7f\x2c\xd2\xfc\x32\x4a\x27\xf2\x4f\xd0\x05\x21\xf8\xcd\x89\xf8\xa7\x33\x57\xaa\x7e\x26\xf2\x4f\x70\x5b\x79\x53\x7d\xd0\x16\x94\x75\x04\xa3\x52\xbc\xe7\x82\x72\x8b\x03\x93\xac\x61\x81\x93\x76\x38\xed\x06\x33\x98\xb7\x21\x94\xe5\xfc\xcd\x8b\xe2\x59\xe5\xf4\xa8\xd7\xe1\xa2\x54\x5e\x72\x05\xe6\x55\x15\x51\x51\x24\x8b\xcc\xdc\xcb\x25\x7b\x2b\x96\x8d\x12\x16\xba\xd1\xe5\x4c\xfa\x50\xa1\xd3\x87\x21\x71\x63\xea\x62\xf7\xa1\x15\xf5\xbb\x3e\x8a\xd7\xd1\x8a\x0a\x1a\x27\x76\x72\x55\x69\x23\x38\xe6\xe8\x94\x9d\x8d\x47\x60\x4b\xc4\xa7\xee\x85\xdb\x57\xc1\xc2\xe7\x2c\x5f\x3d\x59\x46\xec\x89\xd4\xaa\x86\x04\xc2\xee\xba\xa3\xf1\xc9\xfd\x07\x0f\xbf\xff\xe1\xef\x3f\x8a\x6b\xe0\x9e\x56\x9b\x7e\x6d\x2c\x2a\x2c\x78\x3c\x54\xd9\x83\xd5\x87\x9b\x19\x4f\xa9\x62\xb0\x31\x9d\x2f\x96\xc9\xc7\x4f\xe9\x2a\xcb\xd7\xff\x60\x05\x77\x95\x5b\x7f\xd7\x45\xed\x77\xf2\x14\xdd\x66\x82\x7d\xa2\x25\xc2\xdd\xa5\x0d\xa6\xc0\x89\x55\x0d\xef\xfe\x6d\x89\x33\x64\x3a\x66\x64\x0a\x95\x30\xb0\xf4\xd1\xa4\x56\xa6\xe1\x78\xbc\x3a\x05\x70\x84\xeb\x27\x90\xa5\xe8\xd8\x6e\x2d\x4d\x48\x67\x4c\xa5\x5a\x13\x96\x52\x4f\x6c\x23\x1a\x3b\xd7\x09\x5f\xc2\xdd\xd8\xc9\x99\x63\xf6\x43\x45\x29\x65\x71\x25\x3a\xc0\x1b\x32\x3e\xdd\x9c\x35\xe3\xb5\x9c\x6e\xfa\x7d\x74\xcb\x14\x36\x7c\x13\x92\x65\x63\x19\xda\xa5\x4e\x92\x39\x0c\x25\x72\xff\x32\x9c\x22\xcf\xf3\x8b\x69\x2a\xce\x9f\x34\x84\x75\x98\xa1\xdb\x88\x64\x3e\x33\x85\xa4\x0e\x2d\xb2\xb5\x67\xb9\xae\x20\x9a\xce\x42\x59\x87\xf8\x25\xaa\x81\xbf\x86\x82\x14\xda\xc9\xef\xc3\x3b\xf6\x6e\x5d\xd4\x6b\xd6\xd6\x50\x1a\x6a\x4c\xf8\x50\x42\x4e\x72\x71\xed\xef\xb0\xde\x10\xa9\x0d\x1d\x55\xa7\xf7\x41\x8a\x26\xca\xf9\x39\x0a\xda\xf7\xea\x49\xe2\xdb\xeb\x89\x22\x24\x61\x3b\xb9\x89\xd7\x20\x68\xf1\x29\x1a\xa8\x5f\x1c\x95\x3b\xbd\x3f\x81\xb0\x43\xf4\x51\xb9\xd5\x96\x7a\xa1\x19\x1f\x6c\x58\x32\x90\xe3\x81\x70\xcb\x54\x4b\x25\x06\x72\xb9\xb8\x08\x17\x22\x31\xa6\x02\x04\xa0\x67\x7a\xd0\x60\x6a\x45\x3f\x73\x16\xcd\xba\x38\x73\x13\x50\xd3\x9d\x54\xab\x09\xc2\xfa\xf2\x89\xeb\x06\xda\x41\xb3\x60\x46\x4a\xcc\x86\xeb\x88\x15\xb4\x93\xa5\x6e\xdb\x02\x28\x66\x44\x45\x49\x79\x0e\x2a\x23\xc9\x91\xb8\xd0\xa6\x1b\xb4\xb5\x0e\xd2\xe7\x31\x39\x3e\x9f\xfa\xe7\xf1\x77\xe8\x3c\xd4\x37\x7c\x8a\x30\x25\xd4\x52\x59\x4d\xcf\xe3\xef\x40\xf4\xe1\xba\x08\xf3\x89\x61\xd9\x04\x35\x00\x73\x4f\x1a\x12\x50\x7e\x4e\x69\x38\xe5\xd3\xb1\x58\x7a\x28\x80\x64\x56\x02\x07\x53\xf9\x37\xda\xd3\x11\xff\x7c\x7a\x1e\xa2\x3d\xbd\x30\x5d\xa8\x6e\x84\xa2\x8d\x09\x34\x34\x0d\x87\xb3\x3c\x9b\x45\x1c\xba\x83\x75\xfb\x53\x16\x56\x1d\x51\xae\x29\x3a\xba\x20\xf5\x58\x95\x1e\x4a\x54\xca\xea\x95\x8a\x4f\xcc\xc5\xf5\x84\x86\x84\x97\x65\xe9\x73\x12\xf9\xb7\x16\xbe\x03\x37\xcb\x33\xea\x96\x58\xda\x9d\xa9\x75\x2b\x6f\xfe\xf2\x22\xdf\x10\x0f\x1a\xf1\xee\x24\x0b\x64\x38\x78\x96\xac\x6c\x15\xe2\xaf\xd3\xc9\x5f\xbc\x10\x06\x8d\x26\xbe\x8e\x6a\xe5\x7a\x3b\x88\xb3\x5e\x66\x06\x67\xfd\xe3\x05\x76\x1d\x17\xe9\x92\x04\xfc\x6e\xf1\x61\xb1\x4c\xe6\xdc\xaf\xf9\x39\x1b\x4d\xb8\x22\xcd\xc4\xd5\xfc\x53\xcf\x8a\xcf\x9b\xcb\xf8\x7f\x85\x9f\x23\xcc\xfc\x02\x0c\xa7\x70\x86\x8c\x13\x44\xd8\xa1\x99\xda\xa0\x62\x10\xf1\x66\x46\x3b\xa3\x06\x64\x60\xee\x2c\x27\x41\xe9\xe4\x7d\x86\x3a\x84\xc1\xcc\xf3\x8e\xea\xe4\x82\xa1\x09\x68\xf5\x13\x9f\xa1\x40\xeb\xf7\x4b\xdc\x81\x6c\x84\x82\x4c\x6c\xa3\xca\x82\xec\xce\xad\xf4\xe5\x9b\x48\xc5\x6b\xaf\xab\xac\xd9\x64\x9a\xc1\x9d\x1b\xbb\x53\x17\x27\xd8\x0d\xdd\xb0\x3a\xf4\x02\x3b\x2f\xf3\x13\xf8\x19\x12\xf1\x5b\x5c\x8b\x0d\xe0\x5d\xdb\xc6\xb6\x73\xa8\x1a\x96\x75\x5b\x6d\x74\xd7\xbc\x6b\x1f\x1c\x54\x67\x57\x8d\x7a\x37\x48\xba\x19\x1c\x8d\xb0\x24\xa6\xe0\x89\xba\x7b\x87\x18\x39\x61\x9d\xc0\xeb\xe5\x53\x23\xdb\x89\x89\x7e\x90\x84\x3d\xdb\xd6\x21\xef\xb2\x75\xc8\x2b\x35\x26\x18\xc5\x88\x9c\xfa\x2a\xca\x11\x32\xf6\xd3\x5a\x73\xaa\xc8\xef\x8e\xad\xa5\x69\x03\xf5\x3c\x65\x53\xcd\xc4\xec\x55\x46\x5d\x60\xf8\x14\x29\x94\x78\xae\x15\x77\x50\x74\xa1\xef\x12\xb7\x9f\xf9\x39\x86\x23\x49\x99\xa3\x74\x1a\x1d\xe8\xdd\x58\x71\x70\x9e\x8b\x02\xd7\x15\xe7\x76\xf7\x99\x13\xfc\x1d\x37\x4e\xa8\x60\xfc\x00\x77\x9c\x66\xc1\xf8\x7b\x71\xf2\x7f\x7f\xc7\xc9\xbf\x37\x4c\x41\xe7\x41\x6f\x09\x63\x8f\xee\xf9\xe8\xbb\xf0\x78\x81\x3b\x74\x34\x7f\x73\xfb\x32\x42\xb0\x60\x79\x1f\x73\x7f\x84\x8c\xd9\xc4\xf8\x7b\xf1\xf1\xcb\x7a\xad\xcd\xc8\xca\x2a\x1c\xc1\x0f\xed\xfe\x4a\x8e\xcc\x77\xb3\xf5\x2a\x88\xef\x0f\x0a\x5a\xc5\x72\x6c\x59\x9d\xdd\xea\xb5\x2e\x8e\x6c\x1b\x14\x95\x25\xc2\x8d\x8a\xcc\x53\xa5\xbb\x6b\xb2\x60\x5b\x55\xcd\xd3\x88\xdf\x51\x03\x80\xb4\x0b\x6e\x0a\x3a\xfc\x58\xdc\x55\x56\x41\xb5\x8a\x37\xec\x45\xee\xac\xa8\x0d\xdf\xaa\x52\x6a\x5b\x86\xf0\xd8\xad\x38\x08\xcb\x5d\x25\x5a\xd5\x82\x67\x2b\xf5\x60\xf8\x8e\xfa\x6a\xa0\xa2\x22\xd8\x09\xf6\x54\x06\x0f\x71\x63\x46\x82\x1f\xb0\x40\x70\xf0\x23\xae\x90\x15\x8c\x47\xb8\x63\xc0\xc1\xf8\x04\x77\x76\x39\x18\xdf\xc7\xf5\xb6\x83\xf1\xc3\x32\x14\x8b\x12\x4f\xc7\x3f\x84\x75\xe9\x94\xe6\x73\xa9\xf1\xfd\x7d\x71\x41\x41\xef\xd7\xcf\xfb\x49\xbf\x6f\x58\x61\xee\xa3\xdb\xd2\xb2\x21\xe1\x26\xf2\xc9\x45\x12\x13\xea\x23\xac\xfd\xb2\x5b\x21\x1f\x55\xcc\xd8\x86\xe7\xee\x1d\x31\x63\x3f\x2c\xa9\x73\x4d\xa3\x4f\xce\x2a\x5a\x3b\x96\x49\x96\xb3\xce\xd3\x9b\x79\x22\x2e\x36\x59\x7a\xe3\x14\x9b\x35\x6c\x74\x27\xca\x1c\xa0\xd2\x8e\xbe\xa6\xd4\xe3\x37\xed\x09\x14\x3d\x1d\x85\x58\x06\x70\x9a\x8e\x6d\x1b\x00\x9c\x88\x43\x01\xe0\xb0\x74\x48\x06\xf1\x34\x9f\x46\x5c\x4a\x45\x3f\x24\x2b\xea\x23\x29\x15\xc9\x48\x97\xd0\xe1\x99\x40\xde\x04\xfe\x0d\x18\xfd\xc7\x26\x61\xd4\x77\x25\x46\x91\xf6\x31\x86\x86\xff\x42\xa3\x4f\xaf\xa2\xb5\xa6\xe6\xd9\x70\x45\x79\x04\x0c\xba\x60\xc5\xf7\x8b\xca\x19\x89\x04\x93\x99\x11\x36\x2d\xe0\x50\x61\x9e\x27\xe3\x98\x64\x53\x3d\x1d\xb6\x51\x4c\x25\xb2\x36\xb9\x25\xf0\xe9\xbb\xa4\xb4\x95\x69\x54\xa5\xec\x14\xe3\xa5\xdb\xad\x31\x41\x25\x59\x5d\xdf\x4f\xb2\xee\x19\xad\x3f\x03\x01\xe3\xd3\xa8\x30\x73\xfc\x89\xde\x54\x46\xa1\x91\x65\x72\xd5\x08\xdb\xc0\x11\x4e\xa6\x45\xb8\xdd\xfa\xe2\x0f\x70\xec\xe2\x87\x35\x5a\xa6\x84\xbd\xec\x4e\x55\x8d\x68\x46\xe0\xcd\x18\x77\x59\x5a\x1a\x83\xa0\x5a\x4d\x3b\x75\x24\x56\x9f\x8f\x8e\x6a\x3a\x2c\x5f\x2b\xb1\x6a\xfd\x84\xe7\x1a\xb8\xe3\x71\x84\x5a\x0f\x93\x4c\xaf\x0c\xa2\xfe\x06\x26\x85\x41\xc0\x70\x4d\x8d\x60\x49\x0d\x66\x69\x32\x28\x96\xc9\xaa\x38\x8e\xe9\x9a\x51\xf9\x60\xa1\x70\xf1\x34\xc4\x2d\x75\xe8\xad\x2a\x63\x3d\x6d\x70\x83\x8a\x62\x4d\xdd\xff\x00\xd9\xc7\x76\x76\x58\x62\x5d\x08\x7c\x68\x76\x81\x43\x46\x03\xf0\x78\xb5\x81\x30\xea\x3b\x0b\x54\x00\xcd\x82\x1b\x9e\xa4\x85\x1b\xdc\x3e\x6e\xb6\x80\xdd\xc7\x6e\x88\x93\x02\x76\x16\x90\x91\x36\x84\x8e\x1f\x10\x62\xf0\xcc\xd0\xca\x5f\x45\x9f\xe8\xe3\x46\x7f\x2d\x86\xa4\xdd\x57\x93\xd9\x51\xa0\x38\x9e\x2d\xe9\xec\xd3\x65\xfe\x79\x6f\x51\x03\xd5\x59\x07\xbc\xde\x8f\x18\x8d\xf6\x57\x62\xc0\x76\xd7\x32\x4f\x68\x1a\x1f\x50\x8d\x84\xb3\xeb\xc9\x38\xcb\xd3\x94\xb2\xee\xc2\x55\x6e\x57\x91\xe3\x24\x03\x9a\xb0\xbf\x24\x76\x15\x58\x67\x15\x6b\x96\x7f\xde\xbd\xb8\x54\xb6\x29\x19\xd3\xcb\xcd\xc2\x0d\x6e\xd3\x7c\x61\x40\x65\x22\x76\xe5\xdf\x10\x27\x59\xb1\xa6\x33\xde\x06\x50\x19\x6e\x88\xd9\x26\x6b\x67\xb3\x4d\xf6\x22\x7b\xaa\x2a\xb9\x8e\x58\x07\x88\x48\x6d\x76\x07\x06\x1b\x25\x99\xfe\x1e\x44\x71\xb4\xe6\xdd\x18\xdd\x5f\xa0\x59\x71\x1c\xf1\xe8\xee\xda\x6a\x50\x76\x15\x16\x55\x10\x85\xe5\x27\xed\xdc\xee\x0d\x1a\xe2\x56\xd0\x6e\x88\xab\xdf\xcf\x37\xd9\xec\xcb\x4a\x8b\x12\x56\x97\x8c\xc3\xff\xae\xd1\x58\xb9\x56\x91\x2b\x9a\x71\xda\xb9\xb4\xe5\x89\x74\xac\x21\x5a\x65\x8e\xbb\x89\x5c\xa3\x18\x76\x6b\xc4\x4e\x6a\x1c\x8a\x01\xa3\x45\x9e\x5e\x75\xa3\xdd\x1e\x79\x0b\xde\x54\xb5\xa4\xe9\x7a\xd7\xbe\xd2\x9b\x52\xc1\x84\x58\xfe\xd8\x03\x82\x5d\x0d\x5b\x35\x90\x00\x97\x24\x98\x1f\x4d\xd1\x4d\x8a\xa9\xa9\x09\x05\xdb\x40\xa5\x88\x9d\x40\x0b\xba\x17\x1a\x00\xdc\x10\x17\x9b\xcb\x62\xc6\x92\x4b\xba\x0f\xb8\x02\x72\x43\xbc\xc9\x0e\x2a\x62\x81\x59\x63\x4b\x73\xb5\x9c\x8e\xc1\x52\xac\x03\x89\x2c\x87\x00\x9e\x90\x5f\x81\x77\xd7\x90\x14\x3c\x67\x9d\x54\xa6\xaa\x44\x82\xec\xaf\x07\x24\x01\x7b\x2a\x11\xf9\x5d\x35\xac\xa2\x75\x57\x31\x91\x1c\xe2\xeb\x84\x2f\x9f\x76\x64\x1d\x8b\x8c\x81\x2a\x64\x57\x46\x79\x94\xca\xd5\x2b\xb6\x75\x14\xc7\xda\x29\x73\xf7\x12\x17\xfb\xd1\x02\x82\x19\x5f\xe5\x57\xf4\xee\x52\x75\x38\xb1\x02\x68\x16\xef\x06\x17\xb9\xe0\x24\xba\xd5\xd9\x05\xed\x3c\x23\x14\x47\x89\xdd\x05\xac\xaf\x05\xe5\x6f\x2b\xff\x52\xdd\x50\x26\xbf\xd5\xc6\x2a\xf9\x9c\xec\xdb\xee\x32\xbf\x59\x2a\xbf\x2c\x28\xdb\xb1\xcb\xab\x86\x2b\xa0\x10\x47\x71\xfc\x46\x7d\xb5\x5a\xd0\x60\x0a\xe1\x6f\x4c\x29\x89\xc8\x83\x0a\xd6\x41\xdb\xfd\xcd\xe0\x59\xd7\x5d\xbc\x9b\xa0\x69\x2f\x05\x5c\xe3\xa0\xab\xc3\xb0\x0d\x00\xfd\x9c\xe7\x9f\xda\xf8\x2c\xee\x98\x33\x45\x13\xee\x98\xb3\xa2\x3e\x67\x98\xb3\x9b\xf7\xb4\xab\x3a\x99\xd1\xea\x85\x66\x09\xa3\x34\x89\x8a\x57\x94\x2f\xf3\xd6\x02\x14\xd8\x36\xb9\x62\x8e\x8a\x82\xb2\x8e\xc3\x5f\xa6\xbb\x21\x9e\x45\xb3\x25\x7d\x9e\xb7\x27\x02\x2e\xd3\x59\x94\x8a\x89\xd0\x40\x02\x3e\x5f\xdf\xec\x87\xcd\xd7\x82\xf1\x5c\x6c\x92\xf8\xae\x6a\x15\x8c\x35\x50\x35\x8a\xdd\xb8\xb6\x40\xaf\x33\xca\x76\xed\xa6\xfa\xdc\x4a\xf5\x6b\x6d\x05\xc9\xd2\x3b\xe6\xb5\x5e\xba\x68\x97\x5e\xa7\x11\x9f\xe7\x6c\x25\x26\x43\xaa\x39\xab\xb2\xfa\x86\x5e\x48\x24\x27\x8b\x4c\x20\x0d\xc4\xda\xdd\x40\xca\xb2\x30\xc4\xcb\xa8\x78\x3c\x9b\xd1\xa2\xc8\x59\xd1\x0d\xba\x8c\x0a\xad\x43\xae\x20\xdd\x10\x7f\xa2\x37\x3b\x0a\x40\xe8\x22\xd3\x6d\x41\x9a\xf7\xd2\x6c\x09\xd0\x28\xd0\x49\x0f\x6a\x25\x6c\xd4\xb0\x4d\x96\xe6\x79\x27\x89\xd7\x59\xb0\xd9\xdc\x10\x5f\xd2\x45\x92\x75\x65\x43\x86\x00\x48\x6c\x12\x6b\xe5\x27\x59\x0c\x4b\x37\x9b\xd1\xb4\x0b\x40\xe6\x00\xb7\x76\x99\x6f\xb2\x19\xed\x02\xd2\x79\x6e\x88\x69\x77\x3b\x14\x9a\xf9\x98\x77\xf7\x52\xa4\xbb\x21\x4e\x23\x6e\x93\x31\x93\x0f\x19\x6e\x88\x33\xfa\xb9\x13\x09\x22\xdd\x0d\x71\xbe\xa3\x7b\xb9\xec\x5a\x31\x5b\xd2\x78\x93\x76\x82\xe8\x3c\x0b\xec\xcd\x8e\xda\xec\x7c\x41\x7a\x96\x2c\xe7\xbc\xbb\x56\x9d\x67\x4d\xaa\x20\xc0\xc9\xac\x73\xe9\xe8\xac\x16\xf0\x9e\xfb\x90\x2e\xd3\x71\x19\xd2\xa2\xba\xdb\x59\xb4\xa2\x69\xf2\xbb\xd5\x43\x2d\x6c\x74\x75\x16\x2c\x81\x35\x38\x9b\xda\x01\xa7\x33\x05\x64\x2a\x76\xe3\xfc\xa6\x0b\x4e\x65\x89\xf5\x12\x15\x4b\xca\xba\xab\xab\xf2\x60\x5d\xed\xe9\x9f\xc9\x74\x43\x3c\x5f\xf1\x0e\x90\xf9\x4a\x4c\xfd\x92\xaf\xd2\xf7\xd1\xbc\xab\x0e\x9d\x25\x16\x58\x3e\xeb\x00\x48\xf3\x19\x70\x95\x31\x65\x32\x4c\x7a\x1b\xc4\x64\x0a\xce\xaa\x03\xe0\xda\x42\xbc\x3e\x5c\x92\xe2\xa7\x34\xca\x3e\x19\x68\x99\x81\x5d\x95\xa1\x64\x0f\x6b\x7e\xd3\x05\x22\xc3\xe6\x09\x90\xd7\x79\x46\xbb\x20\x44\x3a\x00\xbc\x15\xac\xb4\xcd\x9a\x1b\x18\x95\x25\x8f\xc8\x17\xd9\x55\xfe\xa9\xa3\xaa\x2a\x4b\x80\xdd\xac\xe9\x9b\x79\x07\x0c\xa4\x37\x24\x05\x9b\xbd\x37\x28\x38\xc1\x14\x50\x88\x69\x7d\xa0\xea\x0c\xab\x00\xb0\x8a\x90\x12\xe2\x2c\xe7\xcf\xee\x82\xd5\x30\x00\x6e\x63\xa7\x0b\x14\xb0\x94\xe5\x6d\xde\xad\x5e\xa1\xa0\x92\x79\x9e\xee\x83\x12\xf9\x6e\x88\x21\xe8\xf9\x3e\x38\x00\x10\x63\xfe\xc7\x26\xda\x5b\x21\x00\x88\x23\x7e\x6f\xe7\x16\xc0\xc6\xf2\xbd\xc3\x5c\xc0\xc1\xd7\xc1\xa0\x5a\x30\x82\xdf\xc7\xe9\xfe\x7a\x52\xa8\x07\x38\x9f\x7d\x60\x00\x00\x24\x97\xfe\x4b\xb4\x77\xaa\x24\x04\x70\xab\x51\xbc\xb7\x4e\x00\x50\x80\x6f\xb2\x74\x6f\xad\x1a\xc6\x12\x23\x24\xd9\xe2\xf1\x5d\xdd\x6e\xc2\x8a\xa1\x76\xdc\x3d\xec\x81\xc2\xc1\xd5\xc1\x7d\xd9\x43\x94\xdc\x5c\x9a\xd6\x84\x43\x6d\x38\x05\x02\x77\xde\xd5\x3e\xc0\x62\xb3\x12\xcb\xcc\x3e\x2c\x3b\x16\x19\x9c\x99\xab\xe8\xf3\xfe\x95\xf8\x19\x80\xd6\xfb\x81\xc4\x85\xb1\xc8\xd9\xde\xde\x8b\x7c\xc9\x9a\x3f\x4d\xe6\xf3\xbd\x90\x12\x44\x36\xfc\xd3\xde\x79\x04\x00\x09\xa8\xf9\xb1\x3b\xc0\x35\x98\x38\x10\x40\x77\xbc\x0f\x5e\x42\x54\xa0\xfb\xfb\xa2\x61\x2a\xf0\x43\x7a\x54\x87\x84\x73\x24\xf9\xc7\xbe\x02\x22\x5f\x82\xe5\x7b\xa7\x17\x00\x40\xe8\xa8\x34\x71\xfb\x80\x2b\x20\x8b\x40\x73\x5a\xf0\xe3\x3d\x42\xbe\x5a\x7e\x68\x02\xcf\xef\x0a\xf8\xbe\x2b\x90\x39\xa6\xe5\x2e\x05\x60\x5d\x47\x4d\xf1\x74\xbf\x8a\xc1\x52\x30\x64\x0d\x4d\x7c\x32\xf7\x99\x7e\x15\x0e\x36\x4d\x39\x71\x5f\xac\xd6\x39\x13\x5b\xd9\x99\xb3\x7c\xe5\xf0\x25\x75\x7e\x73\xfb\xb4\xef\xfe\xe6\xac\xa0\x9b\xce\x32\x2a\x9c\x4b\x4a\x33\xa7\x12\x1c\xc6\x43\xc7\xed\x25\x13\x3f\xef\x13\xf7\x6d\x4a\xa3\x02\x34\x48\x50\x36\xa3\xd7\xba\x5c\x02\x35\x17\xc1\x79\x76\x9e\xb9\x35\x9b\x9e\x64\x9f\xb5\x51\x32\xa5\xa0\x3c\xe3\xd3\x71\x88\x44\x0b\xb2\x1e\xe7\xd6\x71\xfb\x1c\x5c\x16\x3a\xa5\xec\xeb\x3d\x91\x30\x0a\xfb\xee\xbd\xf3\xcc\x35\xbe\x75\x18\x01\x55\xc4\x50\xd9\xc5\x6a\x6e\xca\x17\xb0\xda\x6c\xe9\xd8\x45\xf2\x49\x0c\xea\x59\x4d\x80\xbb\xbf\x8e\xba\xcb\x12\xe1\x1c\xfc\x52\xb9\x28\x68\x0c\x5a\x89\x18\xc1\xc9\x00\x8d\xe2\xa1\x8b\x65\xeb\x15\xb2\xfc\x1c\x1f\x8d\xf1\x6d\x12\x07\xcd\x79\x33\x30\xb1\x4c\x70\xf1\x26\xe3\x49\x1a\xb8\xf7\x87\xa3\xe1\xc8\xc5\x1b\x96\x06\x10\xc6\xb9\x08\x8e\x8f\x17\x09\x5f\x6e\x2e\x87\xb3\x7c\x75\x0c\xf5\x7c\x2c\x8e\xd9\x7c\x56\x1c\x5f\xa6\xf9\xe5\xf1\x2a\x2a\x38\xac\xc6\xcf\xfc\x78\x34\xfe\xe1\xfb\xc1\xc7\xe8\x2a\x2a\x66\x2c\x59\xf3\x81\x9c\x8e\x41\xb4\x4e\x86\xab\xd8\x2d\xef\x08\xf7\xbd\x3b\xd6\x3e\xe6\x25\x2a\x2b\x9d\x29\xae\xf6\x02\x8c\xb7\xbe\x7a\x95\xb9\xf2\x5e\xbd\x96\x44\xd3\x63\x93\xb7\x53\xa5\xa5\x20\x65\xa8\xe2\x3b\xb4\x59\x12\xf6\x95\x4c\xef\x2a\x62\xf4\x58\xaa\xda\xba\xea\x4a\x26\x2a\x7d\x95\xd4\x56\xc9\xa4\x4a\x45\xb5\x57\x41\x25\x61\x2b\x5b\x96\x03\x75\x53\xaa\x94\xca\x38\x54\x19\x25\x4b\x7d\xa0\x9f\xf9\x63\x46\xa3\x83\x95\x4f\xa6\x18\xc4\x1b\xdd\xaf\x6c\xd2\xe3\xd1\x59\x07\xe9\x99\x14\x0e\x33\x69\x41\xb7\xb7\x6c\x53\xc1\x64\x4d\xf5\x5b\x91\xd5\x51\xa6\x38\x16\x67\x68\xe7\xb4\xbf\x57\x19\xaf\x92\xcf\x49\xd6\xa9\x95\xd2\x7b\xf3\x72\xb3\xa8\x14\x51\xba\xbb\xf0\x05\x22\x39\x99\x62\x14\x4e\x52\xdd\x24\x53\xc5\xcf\x2f\xd6\x30\x19\x34\x02\x1c\x54\xfa\x58\x42\x1d\xa6\x54\x92\x15\x3c\x8d\x78\xd4\x2e\xb6\x43\x91\xd4\x20\x43\x0d\x45\x51\x23\x57\xa4\xed\x57\x04\xc9\x02\xe6\x7d\xc4\x1e\x1d\x90\x02\x95\xe9\xfb\xf5\x3e\x12\xd4\xda\xfb\x7b\x34\x3c\x0a\x07\xf2\xeb\x9d\xca\xdf\xad\xcf\x91\xe0\x3f\x43\xb2\x56\xe0\xd8\x69\x9e\x67\x7f\x0d\x25\xc4\x61\xda\x1b\x59\xf0\x45\x1d\x64\x68\x00\x94\xda\xa6\x1b\x0c\xf2\x2c\x7d\x4d\x37\x54\x95\x5f\x53\xd4\x74\xc3\x5a\x10\x77\x6b\x68\xd4\xa0\xa3\x62\xf9\x32\x6f\xd0\xdd\x7d\x3a\x19\x55\x4c\xa6\xef\x29\xd9\xd0\xc2\xc8\x62\xe2\x8e\xdd\x2a\x53\xd7\xbb\x28\xba\x1d\xad\x6b\x2a\x97\x2a\xf5\x5f\x4c\x62\x43\x08\x1d\xd3\x82\xb3\xbc\xdd\x55\x95\x7e\x88\x66\x46\x16\xb0\x52\x9a\x4a\x18\x45\x0f\x6a\x89\x52\xdf\x22\x73\x2a\xe5\xca\x5e\xd5\x8a\x84\x5d\x50\xde\x50\xa6\x54\xe9\x26\xed\x0e\xf5\x89\x42\x4b\x8d\xca\xed\x54\x99\xa8\x2d\xa6\x32\x6a\x4a\x92\x6a\xe0\x3a\xa5\xa9\x0c\xb1\x07\xae\x13\xef\x54\x7a\xe8\x3d\xfd\x32\x8f\xe2\x3a\x39\xad\x14\x1a\x7b\xd5\x19\x1a\xa7\xbc\xa1\xc0\xa8\xd2\x4d\x9a\x56\x59\xc8\x2c\xf9\x71\x80\x92\x42\x8d\xdb\xa4\x68\xb5\x84\xca\x80\x0f\xa3\x89\x90\xa9\xfa\x53\x6a\x1c\x54\x5a\xbe\xbe\xa9\x34\x0b\x6a\x1e\xe5\xd7\x6e\x0d\x82\x04\x93\xcc\xd7\x5e\xe5\x41\xb5\x2e\x40\xda\xbf\x57\x53\x50\xa1\xa6\x0e\xda\x56\x0b\x54\x03\x4c\x16\xd9\x76\xab\x38\x1b\xca\x16\x54\xab\x04\xd4\xb8\xe0\x03\xd7\x59\x43\x95\xa7\x2b\x6d\x30\x8e\x75\x75\x41\x03\xb4\x4b\x51\x20\xd5\x04\x12\x50\xfc\xdc\xa9\x15\x90\x20\xef\x44\xea\x6e\x45\x80\x05\xc4\xf6\xc8\xfe\xab\xa5\xa8\x84\xfd\xd5\xf7\x10\xbe\xa5\x84\xdf\x4a\x4c\xb2\x58\x8b\xf5\x4d\xaa\x4c\x30\xb2\x7c\x93\xa3\x93\x30\xad\x55\x43\xb3\x58\x4a\xed\x4d\x92\xf8\x54\xa2\x7a\x93\x08\xdf\x52\x3e\x6f\x12\xc5\xa7\x14\xca\x9b\x34\xf1\x69\x24\xf1\x26\x5d\x27\xd5\xc5\xef\xed\x7c\x91\x6c\x64\xee\x26\x5f\x27\xed\x11\xb4\x2b\x4e\x4b\xa6\xdf\x2d\x63\xaf\xf1\x82\x45\xab\x14\x3f\xce\x59\x4c\x59\x07\xfb\xf0\x46\xa6\xdb\x1b\xba\x2d\x8b\xaf\x5f\xf4\x54\xaa\x2d\x84\x6f\x00\xe8\x74\x23\x7d\xef\xbc\x2a\x5a\x62\xf7\x5a\x7e\x95\x6c\xcb\xdb\xeb\x10\x55\x3a\x08\xda\x6b\x79\xf3\x15\x37\x12\xf6\x5a\x8e\x4e\x05\xd1\x7a\x2d\x27\xcd\x67\xb6\x4c\xbd\x96\x67\xd2\xf1\x75\x3d\xe7\x7a\xa7\x14\x5d\x5f\x6f\xe0\xab\x12\x9c\xeb\x54\xf8\xd2\xb2\x72\x9d\x28\x3e\x2c\xf1\xb8\x4e\x56\xdf\x96\x44\xbc\x22\xc2\xf2\x5b\x0b\xc1\x55\x32\x7c\x94\x65\x8f\x4f\x9b\xa2\xef\x90\x34\xa6\x5e\xe7\x94\x96\xcd\xf0\x54\x49\xb6\x2d\xa9\xb5\x92\x4a\x4b\xb1\xb3\x12\x2b\x6b\xa9\xb1\x16\x0a\x83\xd8\x57\xca\x75\x41\x72\x2b\x45\xb3\x5a\xf2\x5a\xc9\x55\xb5\xd8\xd4\x12\x89\x76\x88\x39\xa5\x1c\x13\x24\x95\x46\x0c\x29\xe5\x8c\x52\x90\x28\x25\x85\x52\x14\xa8\x44\x7d\x46\x8e\xa7\xc5\x74\x75\xf9\x5b\x25\x5d\xb3\x24\x67\x2d\x79\x98\x92\x77\x69\x71\x56\x4d\x52\x85\x33\x32\xc2\x09\x61\x95\xd7\xfc\xb3\xc4\x78\xce\xcf\xa5\xdf\x81\x0e\x9c\x4f\xf3\x90\xd4\xb1\x3d\xcd\xc3\xb2\x72\x63\xe0\x24\x99\xc3\x11\xf5\x23\xcc\xa7\x91\xb4\x8e\xf5\x6b\x37\xfc\x64\xee\xeb\x8b\x64\xc1\x9b\x17\x7e\x4e\x8b\x36\x0d\x10\x80\x77\x89\xd5\x0c\xe4\xb0\x79\xcf\x81\x12\xff\xd8\x64\x09\xdf\x79\x3d\x82\x72\xff\xe9\x97\x2c\xe1\xba\xb0\xb5\x82\xf4\x88\x18\xe6\x53\x16\x82\x9b\x56\x4c\x7d\xf7\x23\x58\xe4\x5b\xd2\x0c\xf0\x9f\xf4\xf1\x3f\x89\xd4\x12\x20\x58\x71\xb5\x6e\x4a\x3b\x86\xef\xde\xff\xe7\xb7\x65\x13\x27\xb6\xcc\x0e\xdd\xca\x40\xdc\xee\xb1\xdb\xa7\xc6\x38\x78\x95\xc7\x34\x1d\xcc\x59\xb4\x80\xc7\xbb\x6e\x9f\xb6\xdf\x2a\x38\x4d\x01\x52\xa7\x8c\xae\x51\x53\x25\xad\x4b\x8a\x9a\x9c\xee\x85\x14\x4b\x29\x61\x9c\x2c\xff\x9b\xba\x39\x8a\xab\x66\xb3\x9a\xa1\x5b\x49\xab\x1a\x59\x5a\x8e\x24\x6b\x6a\x88\xaa\x4a\x84\xeb\x36\xf5\x9d\xb5\x0b\x54\x94\xa8\xb4\x22\x3f\xb8\x62\x53\x81\x5c\x46\x03\x55\x09\x05\x8f\x38\x9d\x6f\x52\x50\xad\xa9\x68\x36\x45\x65\x31\x6c\x25\x59\x25\x3b\x52\x07\xba\x04\x90\xc2\x63\xed\x0b\x74\x90\xcf\x07\x82\x26\x55\x19\x72\xcf\x46\xda\x41\xba\xd8\xed\xf4\xb3\xa8\xd3\xaa\x5e\x3e\xda\xc3\x2e\x74\x4d\x40\x5c\x51\x56\x48\x01\x73\xc7\xab\x06\xea\xcb\x95\xe6\x23\x5c\xf3\x1a\xab\x2c\xcb\x9f\x47\x05\xff\x29\xcf\x79\xdd\xfd\x9c\x5e\x28\x73\x0a\x64\x6c\xea\xaa\xb7\x53\xb6\x58\x97\xef\x7a\x5a\xcd\xac\x87\x55\xc9\x60\x80\xe5\x5b\xe4\x8c\xd0\xa1\x59\xb5\xc3\xb7\x2c\x5f\x25\x05\xed\xd1\xe1\xf3\x9c\xad\x9e\x46\x3c\x02\x9f\xd0\xfa\x83\x98\x74\x84\xe9\xf0\x79\x92\xd2\x77\x34\x8a\x29\x93\x50\xd5\x27\xb1\xf3\x04\xa4\x8c\x2f\xe0\x73\xf8\x41\xe4\xb7\x48\x07\x61\xce\x4f\x9b\xf9\x5c\x55\x61\x7d\x93\x5a\x6e\xc3\xd7\xb4\x79\xde\x22\x5f\xe3\xb7\x1f\xb9\xc2\x06\x53\xef\xbd\x28\x42\xf8\x78\xfa\x6b\x34\xf8\x7d\x34\xf8\xf1\x7c\xf0\x97\xbf\xfe\xcd\xbb\xf7\x5d\x7f\x78\xfe\xeb\xc5\x6f\xdb\xff\x27\x3c\x4e\xa4\xef\x42\xba\xe3\x7d\x8b\x7e\x0d\x31\x5b\x46\x2c\x9a\x71\x0a\xd4\x62\x09\x43\x73\x40\x7e\xe6\x64\xd1\xca\x8a\x30\x41\xeb\x2e\xca\xcb\xae\x19\xb8\xbb\xbf\xcd\xe7\xec\x8a\x88\x02\xff\xd7\x12\xa6\x52\xfd\xc4\xb6\xa7\x5f\x34\x89\x43\xda\xf8\xba\xc1\x52\x50\xcb\x4b\xa3\x83\x98\x0f\x13\x2e\x85\x35\x02\xf1\x53\xe9\x22\x43\xa6\xf1\x9c\x85\xa4\x4d\x79\x78\x59\x0b\x92\x01\x9e\x4e\xe1\x8d\xc4\x2a\x5a\x93\xdb\x12\x53\xdb\x97\x6e\x3e\xa1\x1d\x62\x7c\xcc\x55\x11\xe9\x52\x57\x79\xd5\x12\x29\x28\xe8\x78\xa8\xdf\xa5\x07\xb0\x8b\xd3\xe9\x28\xc4\x14\x9c\x7f\xaa\x4a\xa8\xe7\xed\xf5\x9d\xd1\xae\xb2\xdd\x23\xf0\xfb\x29\xeb\x6b\x78\x6f\x05\x6f\xfe\x97\x79\x7c\xf3\x4b\x41\xe3\xea\xd5\xe7\x90\x51\xf0\xba\xd0\x58\x36\x8f\x53\xc1\x2e\xdc\x38\x0c\x5c\xcb\xa3\x9e\x29\x49\x8e\x46\x9d\x1e\x98\x61\xe1\x65\x7e\xfd\x81\x2c\x1d\xe6\x99\xb8\x43\xd7\x1c\x8d\xf8\x74\xc8\x68\xb1\x49\x39\xc4\x5f\xca\x33\x2a\x9a\xac\x4d\x99\x4f\x87\x90\x08\x4f\xd8\xba\xbc\xc6\x8a\xb6\xcc\x1e\xc5\x8c\x14\x3e\xaf\x45\xed\x88\xe2\xc7\x85\xb5\x01\x7d\x8a\x30\x6b\x38\x88\x95\xd1\x0d\xd2\x64\xa6\xdd\x7d\x3b\xda\xab\xc0\x48\x87\x72\x11\xcd\xfc\x92\x64\xfc\xef\x6a\x5a\x87\x97\x37\x9c\xbe\x94\x6f\x58\x4d\x6b\xf0\x8a\xab\x01\x89\x10\xe6\xc3\x4b\x68\xdb\x76\x1c\x5b\x77\xff\x64\x50\x3a\xc6\xea\xbd\x4e\x96\xf0\x9f\xf2\xf8\xa6\xe9\xaf\x43\xe6\x0a\xf8\x17\x59\xc2\x09\xc5\x14\x59\x74\xc3\xf8\x80\x40\x06\x10\x82\x33\x50\xd0\x1d\x39\xc9\xdc\x9f\x0f\x2f\x81\x8a\x09\xda\x65\x3d\x33\x12\xdc\xae\xfa\x0d\x01\x6b\xac\x0a\x24\xb1\xb3\x2a\x98\x57\x44\x55\x93\xd1\xc3\x2a\x32\xf4\xd7\xaa\xac\xa0\x11\x9b\x2d\xdf\x46\x2c\x5a\x15\x10\x14\xe4\xbd\x95\x70\x58\xbd\x72\x84\x96\x3f\x71\xab\xfa\xc8\x26\xcd\x7a\xec\x37\xf5\xf2\x36\xb9\x4e\xc5\xe4\x2a\x5a\xdd\x40\xb6\x89\x9c\xd2\x59\x34\x34\x71\x8a\x8e\x6a\xed\x6e\xb7\x47\x16\xd8\x9e\x21\x29\x07\xab\xed\x98\x0a\x9b\x4c\x3d\x3b\xa4\xb1\xf3\x93\xea\x8e\x03\x47\x3b\xea\xed\x1c\x86\x8a\xf2\xd1\x40\x93\xeb\xca\x12\x92\xf2\x17\xe0\x6d\xcd\x55\x41\x0e\x25\xb7\x80\xb6\xdb\x8e\x05\x35\xa9\x95\x2a\x5a\xa5\xb0\x0c\x22\xb3\x4e\xa3\x24\x3b\x15\x67\x4c\x41\x39\xf9\xe5\xc3\xf3\xc1\xdf\x5d\x14\xd4\xd7\x92\xe7\xd5\xbf\xe1\xe2\x74\x67\xfd\x1d\x65\x50\xf0\xc7\x97\x8f\xea\xc4\xbe\x01\xd9\xaf\x2c\x3e\x0f\xae\xaf\xaf\xe1\x15\xec\x60\xc3\x52\xf9\xa2\x3b\x6e\x8e\x13\x95\x58\xaf\x30\xb9\x51\xc5\xef\xb6\x6b\xd0\x08\x32\xa5\xc7\xa4\x8a\xe2\xf4\x6a\x9b\x1b\x18\x0b\x8b\x32\x83\x22\xa0\x99\x5f\x2f\x62\x73\x19\xad\x92\x77\x2e\xdd\x46\x65\x15\x7b\xd4\x5a\x8a\xb3\x7c\x23\x58\x85\x9c\xc3\x89\xe0\x68\x40\x47\x94\x72\xa2\xc2\x11\x43\x36\x4c\xc4\xfe\x1e\x88\x05\x19\x22\x75\x4a\xd9\x3b\xa6\xeb\xd8\xee\xea\xf7\x44\xa1\x72\xbb\xed\x42\x92\x8d\x91\xa0\x9a\x0f\x1f\x0d\xf9\x92\x66\xfe\x06\x95\x6a\x87\x8b\x85\xfb\xd5\xb3\xd4\x56\xf2\x1f\x74\x34\x09\x14\xc8\x33\xe9\x2b\x66\xb7\xc6\x53\x56\x17\x8f\xd6\x49\x84\x19\xa4\xa9\x67\xd0\xda\x05\x83\x0a\x49\xc7\xed\x90\x74\xe2\x46\x4d\xba\x7c\x6e\xf1\x69\x16\x1a\xb7\x98\xc6\x97\xc5\x8e\x9e\x7e\xb3\x55\x25\xa6\xa8\x6b\x55\xd5\xd7\x12\xec\xbf\xb9\xc5\xf1\x8b\x5c\xfd\xbd\x6b\x4d\x89\xaa\xf5\x9a\x58\x57\x6b\xe2\x63\x91\x67\x87\x94\x80\x78\x5b\xe0\x74\x48\x2d\xe3\x9a\xfb\x76\xe3\x32\xc5\x44\xb3\x11\x9d\x85\x45\x65\xf3\x99\x71\x93\x2b\xeb\x64\xe1\xeb\xbc\x98\xa4\xe3\x1b\x96\x12\x2a\xfe\x95\xfd\x9e\x31\x1a\xd3\x8c\x27\x51\x5a\x10\x6a\x7f\x61\xae\x69\xdd\x76\xeb\xdb\xa4\x0f\xd6\x44\xee\x53\xfd\x8d\x14\x06\x56\xa0\x35\x80\xd0\x52\xa0\x3e\x90\x89\x79\x4c\x45\x52\x1e\x53\xcc\xb6\x5b\xe5\x0b\xdb\x9c\x91\xe0\x95\xd5\xfa\xc6\x35\x76\xd1\x3e\x91\x44\xbf\xab\x7b\x42\xb5\x4c\xec\xee\x73\xfb\x6b\xbb\x6d\xe6\x6f\xb7\x6e\xbe\x4a\xb8\x8b\x8f\xaa\x91\xd5\x69\x7a\xf7\x38\xf9\x8e\x71\x76\xb9\x04\xaa\x39\xd7\xd0\x8b\xef\xb2\x72\x48\xc5\xd1\xa3\xc1\x78\xc2\x03\x5a\xfa\x5c\x55\xa3\xba\xa9\x3f\xdc\x7f\x7a\xf6\xc1\x45\x16\xea\x38\xfc\xd1\x50\xf0\x53\x46\x13\x15\xdf\x8c\xce\x29\x63\x94\xc9\xc0\x4d\x3e\x14\x16\xd7\x9e\x5a\x8d\x3f\x3f\x7b\xfc\xb4\x91\x8a\x3c\x8f\x75\x2f\x18\xc1\x2b\xc0\xae\x8a\xd2\x34\xbf\xa6\x31\x38\x6b\xfe\xa7\x67\x1f\x9c\x9c\x39\xa2\x22\x87\xd1\x7f\x6c\x68\xc1\x8b\x8a\x8f\xd0\x7c\xa7\xcf\xea\x41\x03\x6a\x44\x4d\xed\x28\xeb\xa6\x28\x5d\x30\xdd\xe1\x69\x09\x28\x69\xe5\x20\xde\x72\xae\x94\x11\xa6\x6f\x7e\x1d\x6e\x98\x40\xf2\x57\x39\x59\xea\x00\xe8\x71\x7d\xed\x91\xbe\x5e\x6a\x9e\x56\x32\x84\x3b\x52\x13\x04\xde\x35\x78\x2d\x50\x01\x5c\xeb\xc4\xaa\x81\x47\xfe\x72\xab\x43\x90\x45\xfd\x06\x4e\xa6\x15\x3c\xe2\x9b\x82\xb8\xf2\xaf\x9b\x64\x0e\x07\xcf\x6e\xe2\x2b\x38\x19\x8d\x24\x54\xfe\x89\x58\xd0\x8f\xc8\xc9\x68\xa4\x96\xa7\x4c\x39\xbb\xaf\x21\xe5\xb7\x64\xce\xcc\xef\x7a\xbd\x22\x25\x70\xdf\xfc\xb3\xea\xc2\xae\x25\x8d\xab\xad\xc5\xc5\xbf\xdb\xad\xeb\x36\xee\x13\x82\x2d\x04\x87\x0a\x43\x90\xbe\xc8\xe9\x98\x93\x5b\x9b\x8d\x0a\xdc\x06\x1b\x25\xfa\x42\xb1\xbe\x68\x07\xca\x47\x39\xa4\x7a\x9e\xab\x2f\xdb\xe2\x5b\xe6\x60\x71\xce\x06\xae\x39\xfc\x34\xa8\x38\xd8\xd4\xef\x86\xc3\x49\xeb\xea\x28\x80\xf0\xd1\xa8\xdb\xd3\x21\xd6\xe4\x3c\x70\xf5\x32\x94\xbd\xb3\xb8\x87\xc0\xb5\xce\x20\xc8\x2d\x7b\xcd\xbb\x00\x12\xe3\x5e\x91\x69\xe5\xd4\xfe\x85\x3e\x28\x43\x17\x57\x89\xe6\xf8\x6c\xa5\x3e\x49\xa3\xd5\x9a\xc6\xad\xcc\x17\x19\x1f\x7f\xdf\x59\xa4\x23\xf9\x45\xc6\xef\x9f\x74\x02\x77\x24\x3f\x4f\xf3\x68\x67\xfa\xf7\x0f\x54\x7a\x88\x6f\x3a\x7d\x10\x79\x9e\xc0\xd5\x7f\x4e\xe8\xf5\x1e\xa6\xb8\xc4\x0b\x62\x5f\x55\x92\x42\x14\xe8\x0a\xdb\x21\x2a\x34\xf1\x4d\x5b\xde\x46\xf5\x55\x4c\xc7\x38\x00\xcf\xd7\xbd\xdc\x76\xaf\x0c\x3b\xd6\xf6\xfc\x91\xa1\x5b\x4a\xb8\xf2\x2e\xe2\x67\xda\x35\x87\x96\xcd\x4c\xa9\xf2\x95\x22\x7f\x93\x64\x92\xf4\x5d\xec\xf6\xb3\x20\x2b\x71\xbe\xdf\x61\x86\xed\xd4\x5d\x14\x17\xad\x84\xf5\x52\x3b\xdc\x52\xab\x1e\x59\xee\x35\x26\x56\x27\x20\xe0\x44\xbd\x9e\x7d\x5e\x9e\x57\xd1\xba\xe1\xa9\xd5\x07\x79\x5d\xbd\x86\x86\x43\x94\xcc\x88\xa7\x64\xbf\x01\x39\xf5\x22\x8a\xda\x92\x1d\x8e\x3f\x41\x2f\xa0\xea\x40\xbb\x7a\xc2\x90\xe7\x55\x8e\x92\xab\x16\x21\x44\x90\x14\x22\xd5\x5a\xfc\x44\x6f\xf6\xc6\xf7\xd6\xac\x57\x43\x4a\x25\x45\x41\xd2\x13\x98\xe0\xb5\x12\x58\x74\x76\xc5\x20\xe2\xfb\x23\x55\x57\x15\xf3\xee\x8a\x69\xc6\x59\xf2\x87\x6a\xb6\x3a\x3d\x65\x98\x87\xa6\xfe\x9a\xf4\xd1\x6a\xac\x2d\x87\xec\xe8\x89\x5c\xe0\x97\x64\xea\x3e\x7d\xf6\xf2\xd9\x87\x67\x2e\x86\x13\x1f\xcb\x23\x1e\xbb\x6f\xde\x7e\x78\xf1\xe6\xf5\x7b\x17\xbb\x6f\xdf\xbc\x17\xe9\x6f\x7f\xf9\xe0\x86\xbd\xb8\xe6\xda\x3d\xcf\x68\x07\x9b\x2a\x9d\x3a\x83\x6f\xe3\x5b\xc1\x7f\x05\x75\x49\x46\x09\x8e\xd2\x61\xaa\xad\xda\x90\x4e\x5b\xda\x69\xcb\x03\x9b\x5b\x36\x44\x53\xf8\x56\x9d\x88\xd6\x19\x87\xad\xc3\xac\x71\xf4\x61\x75\x84\x05\xea\x48\xb3\x4e\x39\x04\x36\xc2\xfa\x64\x13\x7d\x5f\x0e\x5b\x92\x42\xe3\x95\x78\x29\x63\xac\xea\xe6\x47\x76\xa3\xae\x5b\xda\xf2\x6d\x38\xdc\xa1\x2a\x17\x53\xe9\x73\xfd\x8a\x4c\xef\x8f\xc6\xf8\xfe\xe8\x04\xdf\x1f\xdd\xc7\xf7\x47\x3f\xe0\xfb\xa3\xbf\x87\xbd\xe5\x90\xd1\x38\x61\x74\xd6\x74\x29\x9f\xcc\x7d\xf0\x46\x7a\x65\xb1\x85\x16\x33\xf6\x2e\xca\x16\x4d\x09\xbc\xec\x90\x23\xbd\xa5\xf6\x6a\x38\xac\x75\xdd\x20\xe5\x56\x1b\x9f\x05\x14\x7c\x79\xd1\xe1\xcf\x8a\x03\xc8\x31\x1d\xbe\x93\x4c\x1c\x89\xe1\x77\xb1\xce\xb3\x82\x92\x25\x56\x47\xfc\x8e\x28\x36\x75\x19\xad\x15\x4a\x4d\xae\x1d\x70\x8a\x1f\xc1\xc7\xbf\xbe\x7a\xf9\x33\xe7\x6b\xd5\x4a\x2f\xea\x90\xe4\x2a\x1f\x3f\xaa\xdf\x51\xc7\x74\x47\x5d\x73\xdd\x7d\x67\xce\xcd\x0c\x49\x1e\xf1\xf8\x9c\x4d\xce\xb3\xe3\xdd\x06\xf5\x16\x3b\x19\x34\xd8\x49\xc9\x99\x2a\xa7\xc0\x2a\xae\xad\x62\x26\x03\xb7\xca\xae\x18\x48\xe9\x83\x0b\xa2\x3a\x47\xe2\x48\x78\x9c\xa6\x1a\xa3\x0a\xe3\x3e\x82\x88\x2d\x65\x0f\x2e\x5d\xc4\x65\x2a\xfb\x97\x77\x2f\x05\xab\x11\x4d\xa2\xa1\x95\x14\xd0\xba\xa0\xed\x5f\x07\x0a\x8d\x03\x01\xaf\xa5\xcb\x55\x25\xcd\x1a\x02\xf3\x53\x20\xae\xc7\x7c\xb5\xd5\x30\x9c\x1a\x51\x97\xcc\x3c\x6b\x4a\xf0\x5f\x53\x7e\x9d\xb3\x4f\x9a\xd7\x77\xe6\x51\x92\xd2\xd8\xd5\x15\xf0\x64\x45\xf3\x0d\xff\x8a\x2a\xd6\x34\xf3\x13\x7d\x4d\x4c\xe0\x2e\x7a\x34\x42\xd8\x4d\xb2\x59\xba\x89\xa9\xb8\xad\x24\xf6\xcd\xcd\xf3\xfc\x68\x78\x9d\xf0\xe5\x13\xeb\xb6\x07\x25\xaa\xc1\xde\xac\x25\x2e\x8c\xc8\xd6\xb7\x50\x01\xfb\x56\x0a\x9a\x70\x52\x21\xb8\x5b\x4f\x13\x89\xf3\x54\x21\x5d\x4e\xa1\x54\xd7\x20\x1c\x81\x4d\xa3\xf1\x8a\x99\x18\xe2\x25\xbd\xb6\x5a\x09\x48\xee\x3a\xd8\x50\x43\xfd\xda\x9b\x1c\x8d\xca\xd2\x37\x1e\xbc\x26\x92\xaa\x69\xc6\x65\xd4\xd3\x3a\xc9\x0f\xb4\xe0\x13\xdf\xfe\x1a\x32\xba\x48\x0a\x4e\xd9\xbf\x44\x49\xcd\xab\x65\xb5\x41\xa1\x47\x62\x25\x6a\xbf\x6d\x1d\x74\x37\xe9\xf7\x31\x57\x9d\xd2\x11\x0c\x4c\xac\x62\x29\xa0\xe8\xf4\x97\x09\x84\xdc\x47\x35\x79\x18\xc3\x0c\x61\x5a\xe2\xba\x96\x4a\xd0\x31\x50\x9a\xd0\x12\x95\x28\x30\xbd\x51\xed\x62\x5e\x91\xa2\xea\x17\xe6\x15\x49\xaa\x7e\x41\x9a\x22\x4d\xe6\xa7\xe5\xe0\x10\x6a\x3b\x8e\x3e\x46\x9f\x77\x68\x84\x75\x6f\x2c\xa9\xd1\xff\x95\x6f\x1c\xb5\xc8\x62\xe7\x37\x53\xc3\x6f\xce\xe5\x86\x3b\x09\x77\xae\xa3\xc2\x61\x34\x8b\x56\x34\x76\x78\xae\x8d\x02\x2c\x40\x57\x4c\x6c\x67\xfc\xe3\xba\xff\xfe\xaf\x8d\x10\x00\xeb\x42\xd9\x1f\x3e\xad\x4c\x17\xe4\x03\x14\x65\x4d\x70\x5c\x99\x83\xef\x06\xb4\x40\xea\xae\xd8\xc4\x60\x8e\x07\x6b\x96\x5c\x45\x9c\x1e\xaf\xa5\xfa\x7b\x07\x22\x69\x43\xb5\xfe\xa5\xcf\xb8\x14\xd1\xda\xf9\x90\xcb\x8e\x3b\xb2\xcf\x0d\x62\x2f\x1b\x1a\x2b\x7c\x62\x7f\x6c\xb7\x47\x63\x9c\x0d\x67\x79\x36\x4f\x16\x1b\x99\x7f\x34\xc2\x2e\xf4\x41\xd0\x05\x08\x27\x3c\xbc\x66\x09\x57\x79\x95\x3f\xe5\xd6\x28\x32\xc1\xaa\xe2\xcc\x78\x73\xaf\xf9\x21\xce\xaa\x4d\xc1\x3c\x8f\xfa\x76\xb4\x2f\x86\x70\x06\x69\x38\x83\xa8\xdf\x3e\xc2\xfa\xd5\x95\x6d\x63\x50\x0b\x50\x6f\xa1\xc2\xda\xa6\x2d\x86\xe1\xa8\x2e\xfc\xdb\xe5\x91\xf2\x89\xf4\xb1\x2f\x78\x32\x27\x72\xc0\x70\xcf\x89\x0a\x27\xaa\x2a\xd4\x82\x57\xd1\xc3\x76\x23\xb6\x1f\xff\x77\x74\x4e\x19\xcd\x66\xba\x6a\x51\xca\x59\x46\x45\x76\x8f\xcb\x77\x6f\x49\x96\x08\x3a\x9c\x14\x34\x76\x06\x4e\xb1\x59\x53\xe6\xa3\x1a\x84\xf4\xf3\x5f\x31\x2c\x47\xdc\x76\xc9\xa8\xe3\xeb\x75\x06\x62\xe4\x13\x1a\x70\xd5\x53\x3f\x1b\x56\x31\xfb\xb6\x5b\xa3\xe4\xb6\xef\xa1\x19\x42\x3b\xa2\xaf\xb7\xe6\xb0\x8a\x60\xde\xd1\xaa\xe7\x69\x97\xa0\xdd\xe8\x7d\x2f\x06\xe9\xd0\xcf\x6b\x46\x8b\x02\x22\x18\x6e\x0a\xee\xd0\x84\x2f\x29\x73\x2e\x69\x15\xcc\xc0\xe0\x1b\x83\x2c\xcd\xed\xeb\x16\x50\x8f\x9a\x05\xd3\xf0\x5d\x0e\x51\x9b\xcd\x6a\xba\xb5\x3c\x8a\x06\x6a\x33\x51\x6c\x96\x7c\x70\x34\xc6\x7a\x3d\x07\x47\x23\x6c\xaf\x7d\xb1\xeb\xc4\x49\xe0\x79\xfa\xa2\x5d\xd4\x10\x36\xe9\x4c\x05\xdc\x04\xd4\xa0\x9b\x70\x54\xfa\x99\x58\xd7\xdc\xcf\xf0\xf4\xf6\x13\xbd\x09\x5c\x41\xfa\x5d\x65\x57\xd1\x62\xe8\xac\x7d\xad\x36\x8b\xf2\x15\x2d\x63\xe4\xb7\xa3\xe6\xe9\xa3\xaf\xd3\x78\xe1\x29\x95\x8f\xf5\x72\x06\x57\xaa\x9a\x47\xea\xca\x57\x75\xf7\x8a\x30\x7a\x13\xed\xac\xba\x0a\xbf\xe8\xe7\xd0\xb3\x52\x2c\x82\x8a\x3e\x24\x5a\x47\x92\xc8\xfb\x64\x4f\x7a\x3a\x4d\x44\xbd\xa6\xdd\x23\x42\x22\x0d\x18\xc9\xab\x4f\x26\x50\x64\xdd\x78\xee\x5e\xab\xf6\x5d\x49\x61\x13\x88\x7d\xf7\x0a\x36\xac\xed\xe7\xa5\x8a\xf2\xf5\x79\xc9\x30\x2d\xcb\x10\xe1\xac\xf4\xc5\x8a\xd2\x27\x6c\x56\xee\xa7\xf2\xd2\xa6\x6b\x41\xf9\x40\x72\x40\x7f\x12\xb9\xc7\xb4\xcd\x81\x80\x54\x42\xd0\x18\x26\xb5\xd6\x4c\xec\x59\x13\x23\xa2\x15\x7e\x62\x9e\x64\x71\x37\x27\x52\xb3\x31\x22\x84\x64\x0d\xab\x23\x14\x96\xea\xbc\xd1\x4f\x19\x35\x11\x96\x56\xbb\x07\xe1\x28\x29\x06\xf3\xa8\xe0\x97\x79\xce\xff\xdc\x33\xb1\x8b\x09\xd0\x36\x70\xd6\xcc\xf2\x43\x7b\xad\xbd\x86\xfc\xaf\x9b\xd8\xa6\x65\x97\x15\x62\xf6\xa0\x4e\x83\x2a\x6c\xa0\x39\x75\xb5\x32\x8b\xff\xb5\x23\x90\xac\x47\x15\xb2\xc7\xa1\x13\x7d\x3d\xe4\x7b\x23\x2c\x74\x2c\xd0\xb6\x35\x97\x32\xf0\x9a\xb3\x7c\x05\xc1\x6c\xb8\x75\xf3\x94\x7e\x91\xc1\xbb\x33\x53\x16\x44\x63\x43\xb9\xc4\xda\x86\xeb\x26\xf6\x13\x92\xb4\x2e\xa1\xc8\xf3\x64\x44\xf1\x04\xd8\x70\x86\x02\xa6\x97\x3e\x1d\x3e\x79\xf7\xf2\x39\x71\xcf\xd9\x79\xe6\x1e\x34\x0d\x1b\x96\xaa\xd7\x82\x35\xdc\x8b\x1b\x16\x58\xb0\xba\xf8\xc0\xed\x12\xb6\x42\xb8\xed\x8c\x78\xa3\xef\xf0\x3a\x0a\xc6\x76\xcb\xf4\xf4\x4c\x38\x89\xa4\x96\xd4\xa7\x28\xf0\xa3\xe1\x92\xd1\x39\xa1\x98\x93\x08\x35\x23\x2c\x39\x99\xcc\xe5\xf0\x07\x2b\x02\x3b\xcb\x53\xc2\xab\x9f\x38\x1b\x2e\xf3\x82\x0b\xc6\x5e\xc0\xa9\x9f\x02\x36\x67\xe2\xd2\x21\xfe\x88\xaf\x88\x2f\x15\x8c\xfe\x89\x33\x65\x31\x42\xb8\xfa\x21\xea\x8a\x0a\xf1\x2d\xfe\xe0\xac\xfc\x03\xab\x10\x86\xf6\xcb\xbb\x97\x24\xc3\x74\x98\x14\xcf\x37\x69\x2a\xbe\x3a\x29\x1e\x18\xef\xfb\x09\xdc\x27\x97\xd1\x15\x7d\x1f\xad\xe8\xcf\x79\xb1\x23\x54\x21\x25\x19\xc8\x9f\x49\xe6\x73\x68\x49\x23\x83\x58\xe8\xf0\x3c\x6a\xf0\x41\x2c\x8c\x88\x0c\x40\x09\x51\x48\x29\xd5\x01\x7d\xfc\xab\xbf\xe4\x7c\xbd\x85\x87\xf7\xe8\x18\xe7\xa4\xcb\x7c\x57\x46\xdb\xed\x22\x6a\x6b\x96\xcf\x68\x51\x78\x5e\xa5\x85\x50\x29\xa1\xb8\xed\xdf\x96\x0d\x05\x80\xca\x44\x38\x22\x66\x4d\xfc\xf2\xee\x65\x90\x4f\xfc\x91\xb9\xe2\x22\xdf\xdd\xb0\xd4\x45\x41\x9c\xcf\xe0\xc0\x54\xcc\xd4\xb3\x94\x8a\x2f\xdf\x8d\xc4\x7d\xad\x6b\xf9\x8b\x7f\x06\x4a\x3a\x51\x5f\xf0\x16\x10\x3c\x31\x2c\xea\xb0\x61\x83\x71\xfe\xfa\x53\x40\x9f\x4f\xb2\xb0\x45\xf5\x21\xca\x11\x18\x67\x56\xe3\xed\x1e\x0c\x88\x74\x0e\xa5\x99\x75\x1b\x62\xe5\x19\xbc\x11\x57\xeb\xd1\xd8\x72\x34\x6e\xa2\x6a\x8d\xc3\x89\xfd\x11\xb8\x8f\x3f\x46\x9f\x1d\x31\x4a\x90\x35\x6a\x29\x4f\x6f\x6d\x85\xca\x53\xa1\x32\x87\xeb\xe8\x06\x84\x80\xb4\x61\x17\xcc\x2d\x58\x8a\x5d\x75\xfb\x57\x17\x71\x81\x10\x1a\x3b\x97\x74\x16\x89\x21\xa8\x0b\x7a\x22\xc5\xa2\xae\xa5\x70\xce\x3a\xaa\x82\xce\x45\x1b\xbe\xcc\x59\xf2\x7b\xad\x83\xa8\x61\x63\xfc\x25\x7d\xd8\x14\x94\x39\x49\x01\x8c\xfd\x9a\xb2\x55\xc2\xb9\x94\x15\xac\x29\x9b\xe7\x6c\x05\x3a\x01\x83\x93\xa1\xdd\x58\x7e\x47\x63\x3a\x66\x42\xec\x24\xd9\x2c\x67\x8c\xce\x78\x7a\x53\xab\x21\xea\xac\xa1\xc8\x37\x6c\x46\xa1\x0a\xd1\xad\x79\xbe\xc9\xe2\x5a\xb1\xc2\xaf\x97\x02\xa9\x31\x04\x30\x88\xea\x33\xc8\x93\x15\x8d\x9d\x7c\xc3\xdd\x9a\xf5\xec\x81\xa5\x45\x07\xa2\x4b\xb0\x3a\xb4\xcb\xa7\x1d\x9d\xee\x28\x2d\x27\xc7\x89\x37\x54\xa0\x33\x72\xc4\x8d\x26\x15\x4b\x16\xd9\x76\xb0\x07\x4e\x97\xaa\x45\xbe\xce\x75\xa4\xc8\x1e\xd5\x4c\x6d\x0c\xc5\xac\x5d\xad\xff\x08\x35\x17\x2b\x0d\xee\x88\x84\x63\x3a\x54\x52\x7b\x99\xc0\x30\x1d\xfe\x92\xe9\x55\x48\x55\xaa\xa0\xfa\xcf\x73\x76\x99\xc4\x31\xcd\x64\x52\x82\xe9\xf0\xa7\x28\x56\x83\x91\x69\x39\xa6\xc3\xd7\x39\x7f\x2e\xe6\x53\xa6\x44\x98\x0e\x3f\x48\xf9\xab\x4c\x28\x44\xf3\x02\xe5\xf2\x73\x83\xe9\xf0\x89\xc2\x9b\x4c\x49\x31\x85\x87\x89\x94\xc9\xef\x19\x1c\x38\xa6\xc7\x31\x7c\xb7\xbb\xd8\x71\x14\xc5\xc0\xcf\xd8\xd8\xca\x82\x07\xa3\x31\xc4\xcf\x97\xc7\x58\x7d\x48\x07\x55\x91\x04\x0f\x46\xf7\x4d\x15\x35\xe4\x1d\x54\x01\x0b\x1e\x9c\x9c\x98\x0a\x9a\x38\x3c\xa8\x8e\x3c\x78\x30\x1a\x99\x3a\xea\x38\x3f\xa8\x86\x28\x78\x30\x7a\x60\x6a\xa8\xcd\x51\xd7\xa9\x6e\x97\x2d\x64\x19\x6b\x1a\x0f\x6a\x72\x13\x58\x5d\xae\x4f\xfa\x41\xe5\xd3\xe0\xc1\xe8\x47\x53\x83\xbd\x48\x0e\x2a\x3f\x0b\xe8\x23\xf2\x70\x34\xf2\x3c\x7a\xf6\xfd\x68\xa4\x6a\xd9\xc0\x53\xe6\x0e\xeb\x28\x60\x79\x5e\x64\xdc\xa7\x78\x3c\x32\x66\x8d\xda\xd0\xe5\xec\xfe\x68\xb4\xdd\xde\x07\x24\x2a\xae\x63\xad\x0e\x46\xe8\x53\x8f\xef\x94\x9c\xac\xed\x2b\x35\xdb\x2d\x60\xb1\xc1\xb2\xc3\xc0\x92\xc3\xc0\xf2\xc3\xc0\xa2\xc3\xc0\x8a\xc3\xc0\x36\x87\x81\xa5\x87\x81\xcd\x0e\x02\xeb\xe6\x3f\xd4\x13\xb0\x1d\x5c\xd4\x9f\xc2\x39\xed\x14\xdf\x1a\xdb\xab\x5b\x5b\x58\x36\xc2\x0b\x5a\x7b\x40\x54\x99\xd5\x2a\xf8\xb2\xdc\x31\xb8\x2e\x26\x70\xd7\x50\x35\x23\x66\xa7\xc9\x2b\x92\xd4\x53\xfc\x81\x7b\xf0\x81\x92\x9c\x43\xaf\x76\x87\x89\x0f\xf6\x2a\x09\x9a\x37\x3c\x9c\xe1\x04\xe7\x38\xc2\xc5\x2e\x4e\x73\x63\x19\x65\x1d\xf9\x23\x1c\x19\xfe\x1d\xa4\x41\x47\xfa\x92\xf3\xb8\xc9\x35\x28\xd9\xc2\xb1\xb8\x24\xc8\xb0\x66\x10\xd2\xac\xc1\x10\x18\xf5\xef\xe6\xb2\x50\xa1\xce\x76\x1c\xf6\xa9\x8c\x77\x43\xc9\x0c\x5e\xda\x74\xc8\x31\xea\x6d\x99\x60\xe9\x10\x87\x16\x8a\x56\x8f\x7d\xf0\x60\x0c\x2f\xd6\xfe\x10\xdb\xbf\x26\x1d\x91\x75\xa4\x19\x88\xe7\xb9\x85\xb4\x98\x6b\x64\x54\xf6\x21\x93\x2e\x8b\x21\x2d\x77\x09\xba\xad\xaf\xf6\x34\x47\x87\x96\xb4\x99\x10\x52\xa5\x1f\xe9\xdf\x86\x06\x4c\x74\xdf\x82\xaa\x41\xbc\xac\x84\x6d\x73\x9b\x66\xe3\x95\xfa\x7a\x99\x2f\x16\x94\xe1\x1b\x62\x39\x69\xc1\x0b\x62\xd4\x9b\xf8\x92\x18\x4f\x30\x57\xa4\xfe\xf6\xfe\x82\xd8\x3e\x39\xae\x89\xf1\x57\xf1\x8c\xb4\xbc\x52\x7d\x56\x49\x9c\x16\x3c\xc9\x16\xf8\x0d\x31\x2e\xaa\xf0\x63\x72\xfc\xab\xf5\x48\xe3\xfc\xd8\x9f\x04\x57\x59\x7c\x3e\x8c\xd6\xc9\x79\x1f\x4d\x3e\x16\x79\x76\x9c\xe0\xf7\x64\xd4\xfb\xec\x79\x8b\xc3\x94\xae\xef\x6b\x72\xa5\x1b\x4d\x36\x6f\xd5\xe3\x90\x0f\x37\x6b\x1a\x1c\xf0\x34\xc4\xa9\xbf\x0d\x31\xa6\x1c\x25\x56\x64\x27\xe8\x92\x41\x49\xdb\xd1\xb5\x48\x2e\xa4\x11\x46\x26\xd3\x2e\x56\xd1\x27\xaa\x58\x21\x9f\x21\x2c\x0d\x35\x0a\xdd\xd1\x86\x40\x2b\x6b\x28\x7f\x4d\xfd\x95\x16\xbd\x47\xc1\x04\x6b\x28\xcd\x2c\xbb\x4c\x2a\x2a\x48\x0e\x90\xa5\x4d\x47\x02\xc7\xed\x4b\x8f\x07\x7d\x17\x7e\x6e\x58\xda\x77\x9d\xca\x90\xa1\xe2\x08\x12\x90\x74\x67\x20\xe6\x4e\x4a\xcc\xa2\xeb\xc3\xc6\x5d\xb3\xc9\x6a\x0c\xbe\xc4\x76\x42\xcb\x8c\x24\x27\x52\xea\x5e\xd9\xae\x6f\xb7\xd2\xd8\x47\x19\x64\xe3\x94\xdc\xca\x8c\x20\x02\x0f\x0e\x41\x04\x26\x46\x60\xd1\x51\x9e\x76\xca\x06\xa5\x93\x37\x35\xff\x62\x4e\x86\x71\xc4\x23\x08\x05\xab\x66\x56\xc7\xa9\x15\x2d\xc8\x90\x97\x47\xfe\xd1\x06\xcc\xea\x8e\x36\xbe\x3f\xc2\x89\x21\x93\x39\x76\x9f\xa8\xb7\x46\x60\xea\x80\x50\x2d\x90\x2b\xb1\x82\x05\x4f\x2c\xf1\x4b\xb0\xf6\x33\x84\x4a\xe4\x47\x58\xd2\x2e\xe8\x04\x81\x37\x08\x55\xc4\x56\x95\x8a\x10\x7e\xdf\x27\x32\x7e\xf9\x8c\xf8\x23\xcc\x6c\x2a\x8d\xe3\xdd\xcb\x87\xa1\xdb\xd9\x30\xce\x33\x4b\x48\x9a\xc8\xe3\x40\xd4\xb5\x21\xf9\x70\x19\x65\x71\x4a\xb5\x12\xdf\xaf\xcc\xbb\xfc\x11\xce\x4c\x2b\xc5\x2e\x03\x1a\x84\x13\x9c\xa2\x53\x90\xfc\x58\x77\x17\xe4\x6f\xd0\xe4\x5a\xca\x45\xe1\x4e\xca\xf0\xad\x12\x33\x04\x09\xe6\xf4\x33\x7f\xaf\xec\x8b\xf0\xc7\x7f\xfc\xeb\xcf\xef\x82\x02\x57\x76\x32\x9b\x12\x05\x76\x51\xfa\x45\x45\x4b\x34\x14\xb7\x55\x1b\x09\x09\x8e\xd0\xed\x33\xbf\xa1\x12\xe3\x04\x6e\xba\xea\x1a\x2a\x27\x9c\xc6\x4e\x94\x39\xe0\xb9\xc3\x91\x93\x00\x56\xf6\x6e\x3f\x35\xdb\x23\x95\xdb\x03\x3b\xd7\xcb\x64\xb6\xb4\x82\xa7\x03\x9b\x10\x3b\x49\x06\x57\x64\x69\x1e\x06\xd3\xe9\xbc\x53\x84\x5e\xaa\x23\xb5\x2e\xf2\xb6\x1c\xba\x98\x91\x23\xdf\x85\x92\x4c\xde\x84\x09\x21\x89\xe7\xb9\xf2\xa4\xb3\x0d\x86\x50\xef\x0d\x68\xee\xc0\xd7\x41\x5c\x0c\x95\x57\x89\xa1\xee\xf9\x00\xba\xad\xf8\x84\x41\x54\x0c\x44\xdb\xae\x40\x08\xac\x9b\x82\xe4\x52\xb4\x09\xf3\x53\xcd\x77\xa3\x8d\xed\x36\xc2\x1b\x2d\xf5\xdd\x90\xc8\xbe\x54\x40\xc1\x49\x14\xb8\xca\xca\x08\xba\x3a\x11\x4b\x8f\xd7\x2e\xbe\x81\x0b\x82\x06\x3b\xdb\xdc\x9f\x82\xd6\x8a\xa3\xdd\x2b\x8e\xee\x5e\x71\x05\x4e\x11\xde\xb1\xb8\x0a\x7b\x85\x24\x6a\x85\x50\x0c\xb8\xfd\xb0\x64\xf9\x75\x16\x44\xcd\xf5\x12\xa5\xd7\xd1\x4d\x61\xaf\x8f\xf7\x03\x32\xee\x20\x92\xd4\xac\x02\xa0\x2f\x15\x61\x8b\x81\x30\xce\x70\x5c\xe2\x75\xde\x3a\x0d\x6c\xea\xa7\xce\x0b\x91\x01\xc4\x30\x8a\x63\x41\x35\x3e\xe4\x6f\x24\xbd\x7c\x0e\x1a\x55\x69\x25\x8a\x50\x89\xd7\x9b\x6f\x51\xdb\x2f\xaa\x32\x70\x61\xfe\xf5\xd5\x3d\xfe\xf0\xe4\x67\xa8\x30\xa6\xe9\xd7\x57\xa7\x2c\x66\x55\x7d\x94\xd3\xae\xbb\x80\xa8\x20\xa6\x69\xb7\x26\xb6\xac\xdf\x20\xe4\xf3\x94\xb6\xe0\x74\xbb\x1d\x8c\x05\x35\x37\x51\xe8\x8f\x5d\xdb\x5c\x63\xee\xbb\x2f\xb8\x53\x50\xba\x2a\x9c\x9b\x7c\xe3\x70\x96\x48\xf9\xa1\xe0\x9c\x7f\x13\xeb\xf1\x37\xf1\x25\x8e\x2b\x27\xd2\xf6\x73\x47\xce\x2f\xca\x95\xf0\x6f\x7a\xc0\xbf\x39\xf2\x44\x32\x3e\x76\x1b\x27\x20\x98\x64\xec\x1a\x4a\x17\x9a\xba\x91\x4c\x09\xdd\x6e\x6f\xc5\xe5\x1e\xae\x86\x1c\xd3\x12\x5f\x2c\x28\x7f\xbe\x49\x53\xb5\x5d\x7e\x8e\x8a\x65\x87\x69\xe6\xa5\x6c\xd6\xd5\x57\x19\x84\x19\xb9\xf0\x6f\x4b\xeb\xac\xbe\x80\x10\xd7\x25\x56\xe7\x78\x47\x25\x7f\x50\x32\x6d\x94\x43\x5c\xb7\x89\xb9\x7c\xe7\x22\x8d\x8e\x37\x49\x1a\xff\xf2\xee\xa5\xe4\x98\xb8\x1a\x5b\xed\xcc\x97\x07\xf6\x07\x99\xa1\x7f\x6e\xb7\x10\xdd\x56\xe4\x5a\xc7\x3b\xb9\xf2\x6b\xdf\x68\xa2\xc7\x6e\x25\xba\x28\xa8\xf3\x04\x6a\x9a\x96\xf9\x26\x8d\xdf\xd3\x2c\xd6\xc4\x87\xa3\x49\xc5\x23\xa8\xee\xb6\xf1\x6d\xbd\xe1\x09\x2c\x68\xf3\x94\x4d\x8c\xb9\xc4\xd5\x40\xbf\x29\x6a\x93\xb9\x60\x4f\x72\xa3\xb8\x12\x1c\x82\x79\xf2\xaa\x9c\x53\x85\xc0\xf5\x2c\xf3\x82\x6f\xb7\xd5\x5a\xc8\x0b\xee\xa2\x1e\x98\x63\x91\x58\x30\x27\x98\x49\x43\x79\xf3\x7c\x63\x98\x45\x2b\x5a\xac\xa3\x19\x35\xe5\xaa\x24\x17\xf5\x12\xcf\xf3\x13\x12\xfb\x49\x55\x36\x41\x35\xab\xe8\x77\x74\xf1\xec\xf3\xda\x77\x7f\xf5\x8f\xd1\xc4\xed\x27\x48\xfb\x39\x99\xd0\xc0\x6f\x5c\x00\x55\x0d\x20\x38\x92\x0a\xd6\x63\x20\x12\xf5\xf3\xc3\xde\x1a\x70\xdf\xd5\x7c\xa3\x3a\xc4\xf4\x6b\xc4\x4a\xfe\x25\xe1\x2a\x9c\x64\x60\x4f\x2c\x27\x33\xcb\xd9\x2a\x4a\x93\xdf\x9b\x67\x24\x14\xc0\xaa\x9a\x96\x3c\x56\x57\x98\x13\x79\xd8\xb5\x01\x32\xe3\xc4\x40\x55\x52\x17\xc7\x36\x6b\x68\xe4\xb6\x8b\xdb\xa2\xd8\x66\xe1\x5a\x5e\xbb\x68\x43\x08\xdb\x2c\xdd\xcc\x6e\x57\x50\x93\xc0\x36\x8b\xd7\x33\xdb\x85\x0d\x23\xd0\x2c\x69\xe5\xb4\x8b\xd5\x44\xa8\xcd\x92\xf5\xcc\x76\x61\x4b\x7a\xda\x2c\x6a\x67\xa9\x82\x2a\x90\x32\x94\x5d\xd0\x4c\xdc\xe9\xe9\x53\xca\x41\x01\xf2\x8a\x16\x45\xb4\xa0\xd5\x4a\xeb\x55\x9d\xd7\x7c\xaf\x9f\xe1\xa8\xb2\x6c\xcb\xe1\x6e\xc3\x67\xcb\x9f\xf3\x82\x17\x3b\x0e\xca\xc6\xf5\x5e\x6e\x90\x09\xd7\xfb\x22\x68\x19\x6f\xf0\x09\x17\xbc\x61\xe0\xaf\xe0\xe2\xec\xbb\x9c\x6d\x0a\x4e\x63\x68\x44\xc6\xb5\x96\x3b\xa4\x50\x2c\x6c\x21\x98\x4d\x46\x17\xf4\x33\x2d\x86\x2e\xe6\xd8\x4d\x0a\x27\x93\xcc\xe8\xd0\x45\xf8\x68\x2c\x4e\x9d\x16\xb1\xeb\x20\x4b\xb0\xe1\x99\x7a\xa2\x9c\x11\xa9\xa8\xee\x31\xc2\xe0\x71\x62\x46\xb2\x26\x35\x11\xe9\x8a\x76\xe8\x0c\xbb\xb7\x02\x60\xe9\x23\x1c\x11\xa0\x59\x5a\xf3\x8e\x7c\x86\x2a\xb5\xb7\x36\x51\x6c\x52\x35\x86\xb6\x5b\xff\xe8\x28\xd9\x69\x8f\xc4\x87\x16\xf2\xe1\x96\x55\x8a\x22\xa2\x1a\x5b\x55\x8f\xe0\xbd\x04\xb0\x10\x9d\x93\x1d\x34\x25\x6a\x75\xfa\x22\xfb\x6e\x5d\x07\x79\xf3\x3a\xb8\xdd\xba\x20\x2b\x71\x6a\xc9\xbd\x9c\x48\x27\x1b\x4b\xbe\x4a\x05\xab\x1c\xd5\x8d\xa5\x3c\x4f\x7b\xc8\x7b\x74\xf2\x70\x34\x71\xa7\x6f\x94\x3a\x53\x3a\xaa\xb9\x71\x7e\xfe\xf0\xea\x65\xe8\x06\x8d\xfb\x22\xd3\xd4\x76\xea\x82\x6c\xc5\x79\xfc\x1f\x1f\xff\xab\xa3\xd5\x70\x6e\xdf\xcf\x0c\x0b\x9b\x01\x0b\x0b\x17\x7d\x7d\xf7\x11\x8c\x2d\x76\xdf\x4a\x5e\xda\xf1\xdd\x7e\xd4\x77\x91\x8b\xf3\x50\x11\xe0\xf3\xcc\x45\x25\xee\xa0\x81\x1d\x72\x2d\x75\x25\x6c\x81\x22\x78\x6d\xd5\x24\x81\xbb\x2b\xa8\xc3\xe9\xd2\x36\x95\xdb\x5d\xd6\x86\xd2\x25\x1b\x14\x6e\x77\xe1\x06\xa0\x2e\x5f\x23\x71\xbb\x4b\xd7\xc0\x74\x59\xeb\x1e\xb4\xb3\xa0\x81\xd1\xa5\x6a\x04\x6e\x77\xc1\x1a\x98\x2e\x6b\x51\xb8\xdd\x25\x2d\xa0\xaa\x9c\x3c\x2c\xf7\x94\x91\x00\x12\xbe\x7d\xb1\xac\x15\xb4\x1e\x05\x1b\x1f\x0b\xa2\xa0\x94\x57\x59\x1c\x6d\x59\xe2\xee\x43\x38\x68\x9a\x2e\x69\x53\xef\x83\x94\x03\xca\xe3\xce\x9f\x6b\x30\x68\x0b\x50\x2b\xc3\xc6\x9a\x23\x59\x9c\x35\x7c\x58\x4a\x9f\xce\xb6\x35\x61\x25\xa2\x14\xfd\x56\x5e\x6b\x03\xe6\xbb\xa0\xa4\x40\x58\x50\xc5\x20\x93\x9f\x2a\x77\x28\x49\x2d\xae\xf8\xb0\x66\xbe\xc5\xa0\x99\x97\x79\x8d\x2a\xaa\x7b\x00\x5c\x75\xbb\x29\xff\x50\xe4\xa9\x3b\xc9\x7e\x8b\x58\x75\x78\xf2\x5a\x23\xf0\xdc\xbf\xba\x10\xa2\xbb\xe6\x2d\xa5\x8b\x68\x76\x73\x5c\xad\x86\x01\x5c\xe1\x2b\x2d\xcc\x4e\x3d\xcf\x4e\xcd\xc9\x5e\x1d\x57\xdd\xf0\x45\x49\xff\xba\x64\x78\xb4\x26\xc3\xcb\xe0\xc5\xef\x1f\x5a\x2f\xd9\xff\x46\x3a\x86\xa4\xb6\xf6\xf3\x4a\x47\x20\x83\x92\x44\x35\x23\x5f\x5c\xd8\x2a\x03\x6b\xe9\x27\xd5\xd2\xbf\x9b\x02\x00\x9b\xaf\x85\xd2\x24\xf2\x13\x34\xb9\x2d\x83\x04\xe7\x7e\x22\x9f\x93\x16\x68\xa2\x7f\x0d\x57\xd1\xba\x26\x3c\x4f\xe6\x3e\xf3\x39\xd2\xcf\x57\x8a\xfa\xbd\x37\xab\x7c\x42\xb8\x7d\xed\xb1\x01\x67\x8a\xa5\xd3\xaf\x22\x5d\x71\x4e\xf2\x84\xa7\xe0\xc0\x10\x05\xb9\xe8\x41\xd2\x6a\x49\xd3\x28\x71\x6f\xec\x2a\x3a\x84\xbf\xdb\x2d\x08\x22\x2f\xa3\xd9\x27\x9a\xc5\x4a\xec\x1e\xd3\xd8\xb9\x4e\xf8\x12\xe4\x91\xf2\x55\x6b\x0c\x8c\x49\xc0\xcb\xa0\xa3\x2e\xd1\x5b\xd1\x93\xba\x09\x5e\x82\x26\xd3\x0e\xe0\xa4\x0c\x83\xce\xf4\x3f\xd4\xa1\xa4\x0c\x77\x6e\x66\x16\x5d\xef\xdc\xa9\x7f\x9e\xed\x5e\x97\x2d\xb1\xfd\xac\xb8\xc2\x90\x31\xe1\x67\xd1\xb5\xa2\x69\xd4\x96\xc6\xec\x18\xd5\x1d\xba\xe6\x7f\x5f\x23\x93\xfd\x38\x7c\x74\xea\xb0\x2a\x5a\x0f\xf8\xfe\x0d\x0d\x30\xd5\x19\xf2\x47\x2c\x30\x6d\x25\xff\xc1\x67\xc6\x0e\x9b\xe9\x6f\x39\xa4\xbf\xd6\x8e\x7d\x6d\x48\x9b\xc1\x01\xcc\xe0\xac\x6d\x8d\xe7\x32\x2a\x92\xd9\x20\x66\xf9\x3a\xce\xaf\xb3\x63\x2b\x72\x52\x3d\xa7\x6b\xa0\x8d\xb2\x9c\xae\xd6\x69\xc4\x69\xb1\xaf\x96\xee\xa2\x12\x49\x9a\x85\x19\xcc\xa3\x34\x15\xa4\x62\x90\xcc\x07\xe6\x68\xdc\x5f\x36\x4a\x67\x1b\xd1\xfa\x60\x9d\x17\x09\x97\x1e\x89\xdb\xf7\xac\xaf\xc7\x75\xf5\x7a\x49\x47\x90\xa8\x3d\xef\xab\xbc\xab\x35\xc5\x6d\x98\x11\xe5\x58\xed\xd1\x78\xc2\x07\xe3\x60\x84\x70\x46\xc6\xa7\xd9\x19\xd7\x2e\xd5\x06\xe3\xd0\x12\xc4\x65\x61\xe5\xb8\x3b\x21\xa3\xd3\xe4\xac\x72\x6f\x9e\xd8\xae\xcd\x13\x08\x14\x97\xa3\xca\x6d\x39\xb1\x1f\xd7\xe4\x08\x17\x64\x74\x5a\x9c\x45\xba\x70\xa1\x0b\x6f\x48\x34\x2d\xc2\x1e\x9d\x6e\x42\x92\x4f\x37\x61\xf5\x00\x92\x96\xd6\x2a\xd2\x51\x9b\xd4\x7c\xea\x0d\x72\x9b\x46\x37\xf9\x86\x9b\xf7\xbe\x98\x47\x8b\xd7\xd1\x4a\x1c\x1a\x98\xd1\x2c\xa6\xec\x45\xf6\x36\x15\x9c\x63\x5d\xb5\x78\x34\x46\xf8\x8a\x32\x9e\xcc\xa2\xf4\xad\x9a\xa8\x06\x88\x1b\x6d\x78\x0e\x7c\x29\x4b\x7e\xcf\x33\x7e\x27\x20\x5c\xc9\x3f\xb0\x64\xb1\xa0\xec\x5f\x92\x98\x2f\x3b\xda\xe4\x32\xbb\x1a\x48\xb3\xaa\xe6\x52\x96\xe0\x2e\xc2\x4a\x84\x7b\x68\x41\x05\x2e\x0a\xea\x05\xb9\xa3\xf7\x46\x2f\x25\x23\x31\x80\xef\xde\x60\xda\xb9\xc6\xdd\x10\xf3\x7c\x0d\xde\x64\x70\x4a\xe7\x5c\xfe\x62\xc9\x62\xa9\x7e\x5e\xc3\xb0\xe1\xe7\x92\x9a\xe4\x24\x4b\x6a\x56\x50\x86\x89\xae\xcd\x91\x8b\x94\x76\xd0\xe4\xab\xe9\x74\xb5\x1f\xcc\xc2\x4e\xc4\x6e\x9c\x5c\x69\xbf\x65\xfb\x34\x0f\xd8\x94\x5d\x6f\x2e\xd3\x64\xf6\xf8\xed\x0b\x17\xdf\xaa\x9d\x44\x65\x7b\x9b\x75\x1c\x71\xfa\x9e\x03\x9f\xb6\xc9\x92\x7f\x6c\xe8\x8b\xb8\x1e\x49\x46\xba\x5a\xc4\x49\xf1\x66\x4d\xb3\xc0\xf4\x52\xbd\x4a\x4d\x6f\x44\x3a\x8d\x5d\x04\x2f\x83\xe3\xa4\x88\x2e\x53\x1a\x5b\x80\x3a\x49\x41\x44\x33\xa9\x80\xb8\xcd\xab\xfa\xc4\x2f\x88\x75\xa2\xda\x9a\xa5\x79\x41\x65\x16\xfc\xb4\xf3\x78\xbe\x58\xa4\x2a\x53\xfe\xb6\x73\x19\xd5\x14\x28\x50\x2a\x2b\xfd\x6d\x41\x95\xa5\xf2\xa8\xa6\xa7\xf8\x45\x4c\x1a\xdf\xdb\x6d\xe7\x5a\x18\x68\x2f\xa4\xa0\x30\x54\xe8\xea\x59\x57\x2a\x18\x70\x9e\xbd\xc8\x12\xee\xa2\x1e\xf7\x3c\x0e\xf7\xe9\x38\x89\xdf\xd1\x19\x4d\xae\xe8\x63\xce\x6d\x51\x9c\x5a\x16\xfb\xe6\x51\x4d\xd7\xd1\x91\x84\xcc\xd3\xf8\xa9\x42\x28\xe6\x3a\xb5\x81\xe7\x5e\x0b\x94\x70\xcc\x3d\xef\x88\x4e\xea\x11\x60\xd4\xbb\x01\x18\xbb\x84\x44\xc1\x11\xf7\x3c\xaa\x83\x93\x75\x00\xd2\x0c\xe0\x4a\xfc\xff\xb2\xf7\xee\xed\x6d\xe3\xc6\xc2\xf8\xff\xfa\x14\x32\xdf\xfe\xb4\xc4\x2b\x58\xb1\xb3\xe7\xbc\x17\x39\x8c\xde\x6c\x2e\xdd\x9c\xee\x26\x39\x49\xb6\x3d\xfb\xa8\xaa\x97\x96\x20\x1b\x0d\x05\xa8\x20\x18\xc7\xb5\xf4\xdd\x7f\x0f\x06\x17\x82\x24\x28\x53\x4a\xb2\xd9\xed\xc9\x3e\x6d\x2c\xe2\x7e\x19\x0c\x66\x06\x73\xb9\xa6\x59\xf6\x44\x47\xb9\x3a\x64\x42\xfe\x79\xd0\xaa\x3f\x0a\x40\x51\x8f\x0c\x06\x04\x9e\x81\xe1\xfd\x30\x97\x94\x69\xef\x2a\x55\x4e\x3b\xbe\x6d\x51\x32\xb4\x8f\x38\x4f\xca\xaa\xcf\x17\x31\xda\xe2\x9c\xb4\xbc\xbc\x96\x3e\xcc\x27\x6d\xb5\x81\x2b\x28\x21\x57\xcb\x63\x9f\xf1\x79\xd1\x26\x55\xb5\x80\x00\x65\x2c\x24\x94\x19\xe5\x81\x44\x98\xa0\xed\x16\xc3\x59\xa8\x3d\x78\x7a\x5b\x4b\x73\xb3\xd0\xe0\xd8\xa3\xd1\x8f\xd7\x5c\x0f\x2a\xda\xdd\x5c\x0c\x06\x47\x72\xa4\x8f\x6e\x45\x9b\xc7\x0c\x4f\xa5\x47\xa8\x27\x06\x83\xa3\xd3\x24\x49\xb4\xfb\x0d\xe3\x01\xb1\x82\x1a\xcc\xe9\x57\x17\xf1\x76\xbb\x35\x07\xb4\x69\xd6\xbe\x73\xc4\x62\xc7\x88\x85\x37\x62\x51\x19\x30\xab\x0c\xf8\xb1\xea\xd8\xd4\x89\x99\x19\x36\x83\xa7\x4d\x33\xec\x66\xef\xd6\xd7\x64\x25\x72\x57\x7c\x7b\xe5\xee\x06\x40\xd7\xef\xab\x9f\x87\xa0\x7c\xeb\x98\x70\x2d\xc8\x7b\xca\x8b\xfc\xcf\xb5\xbb\x36\xa9\xe4\x7e\xdf\xb8\x62\x93\xd2\xdd\x64\x70\xf1\x4f\x55\x07\x08\x59\x5f\x39\xce\x10\x0b\x42\x88\xbc\x21\x19\x51\xec\x7e\x1c\x4d\x21\xf4\x05\xb9\x58\x1c\xd3\x45\x02\xea\x5f\x06\x51\x0d\xa3\x63\x73\xb7\xce\xf4\xdb\x1e\x1d\xc9\xf4\xe2\x39\x5b\x90\x0f\x0f\x8f\x4f\xd5\xe7\x52\x81\x6b\xac\xb6\x78\x6b\x11\x6d\x45\xee\xd7\xdc\x3f\xb3\x57\x91\x71\xbd\x06\x80\x11\x13\x54\xe2\x75\xc0\x7f\x1e\x5a\x6e\xb0\x39\xad\x40\x41\x2a\x70\x20\x13\x88\x8c\xe2\x26\x7d\x49\xa4\x31\x3d\xfb\xee\xe6\xb9\x46\xec\x1e\xfe\x46\x58\x74\x5d\x1f\xd2\xb6\x3e\xcb\x58\x0e\x06\xc2\xcc\xda\xc3\x44\xa6\xdb\xa4\x25\x7d\xb3\xb9\x7b\xa0\x1a\x5f\x97\x55\x23\x64\x85\x48\x36\xdb\x83\xd4\xa8\x49\x8c\xe9\xd0\x1f\x15\xe0\xb2\xa1\x87\x7c\x5a\x2c\xc2\x51\x3b\xb4\x79\x99\x75\x40\x05\x5b\xd4\x0a\x8d\xd2\x63\x6e\x71\x61\x88\xbe\xff\x3f\xed\xa5\xbc\x4e\x71\x45\x28\x16\xd8\x38\xab\x6b\x2e\x12\x66\x55\xe1\x22\x5c\x14\xaf\x1d\x94\x40\x55\x0a\xa8\xa6\x96\xd3\x90\x1b\x1b\x0b\xd5\xf2\x34\x8b\x51\x73\xbd\xbc\xd3\x2d\x46\xf5\x95\x83\x47\x76\x31\xca\xe5\x0d\xb8\x8a\x73\xef\xf2\x26\x69\x24\xf9\x1a\x5c\x9a\x48\xbe\xf6\xd3\x86\xd1\xfa\x43\x84\x70\xa3\xb8\x42\x18\x93\x98\xc1\xdf\x4a\x22\x54\xc0\x6c\x04\x78\x44\x9f\xf5\x46\x65\xc8\x1b\x0c\xe2\xca\xb7\x79\x9a\x42\x68\xdc\x5a\xde\xb6\x5a\x49\xb7\x1d\xc2\x48\xe0\x46\x6d\x76\x08\x98\x4c\x7b\x6c\x51\xbf\xaa\xe9\x6d\x53\xd4\x38\x0f\x6a\xe9\x9f\xb5\x1c\x53\xcf\x3a\xa4\x28\x09\x5b\xbe\x8e\x4a\xfc\x35\x2d\x99\x2c\xde\xa7\xac\x6f\xda\x40\xf5\xee\xa6\x7c\x36\x18\xc4\x11\x2b\x14\x01\x50\x0a\x3b\xcb\xdc\x09\xd5\x9a\x05\x7c\x18\x69\xd5\x57\x9b\xa1\xc7\x31\x6e\xcb\x46\xa8\x07\x8e\x39\x1e\xd9\xa0\x3b\x71\x04\x59\x11\xb6\x16\xe0\x67\x51\xe9\xd7\x24\x70\x87\xb0\x1a\xc2\x0f\xa0\xf4\x20\x34\xee\xbe\x25\x9a\x10\x8a\xd9\xd6\x12\xd6\x5d\xf1\xa7\x45\x9e\x83\x01\x19\x19\xba\xc5\x20\x67\x14\xb8\x61\x1c\xd5\x0e\x17\x3c\xd6\x24\x5e\x83\xa8\x6b\xa9\x02\x9a\x75\x5e\x5e\x80\x24\x72\xf1\x21\xcd\xa3\xb1\xc7\x90\x50\x10\xd7\xb6\x50\x46\x0a\x8d\xb7\xd1\x89\xa5\x6f\x20\x11\x4b\x04\x1a\x38\x75\xc2\xad\xb9\x58\xd5\x98\x96\x9a\x1d\xb0\x0e\xcb\x5f\x43\xf3\xda\x42\x12\xe2\x0d\x2c\xe9\xe5\x98\xb0\xf7\x54\x70\x06\x01\x98\x6c\x9f\x11\xc4\x17\x03\x85\x4e\x2f\x7b\xe2\x05\x0a\x83\x30\x81\xa4\x8d\x9f\x1c\x0c\x5a\xb3\x7c\x54\xd9\xc6\x83\x5c\x73\xb1\xba\xe2\x19\x89\x40\x4a\xdb\x3b\x4c\xa4\x64\x99\xe5\x63\xa2\x11\xf2\xe7\xf7\x02\xd1\x26\xcd\x70\x21\xaf\xbe\xa3\x6c\x41\xd9\xa5\xe2\xc3\xcd\x31\x8c\x16\x54\x44\xb3\x80\x2c\x7a\xdf\x59\x7e\x1a\x01\x5a\xd9\xda\xaf\x28\x48\xdb\x59\x3e\x9f\x0b\x9e\x95\x26\x47\x21\x73\xa1\xb6\x87\x31\x6e\xb8\x8c\xba\x17\x0d\x5f\x8e\x76\xe2\x04\x67\xd6\x36\x07\x9d\xc9\x07\xf6\xf7\x99\x04\xd1\x99\x9c\x25\x64\x2a\x9d\x9f\x56\xb1\xad\xb8\xe7\xb0\xbe\x38\xaa\x66\xd5\xaa\x8b\x33\x75\xd9\x1e\x11\x1d\xf4\xf2\x07\x9a\xcb\xcd\xc6\xff\x1a\x99\xa8\xe6\x79\x78\xcf\x8f\x9d\xb0\x07\x9d\x21\x92\x80\x9b\x07\xc2\x2c\xa5\xe5\xa4\xe5\x95\x20\x48\x8a\x4b\x01\xda\x4c\x3b\x8e\xb3\x92\xf4\x47\x8c\xae\xe0\xc0\x3d\x13\xe9\x8a\xd4\xd5\xca\x45\xe2\x57\xb9\x24\x20\x8d\x52\xfb\xfb\x46\xc1\xa8\xf1\x8f\xaf\x23\x41\xc2\x95\x95\xda\xd6\x5e\x80\x8f\x87\x48\x14\x8c\x69\x7d\x1f\x3f\xf3\x55\x96\xde\x00\xb2\xb4\x04\x8c\xf7\x60\x89\x6e\x89\x09\x79\x0c\x31\x9d\x6d\xc0\xe7\x38\x72\xb5\x09\x5b\x44\xda\x57\x14\xf8\xba\x4c\x17\x8b\x9d\x25\x99\xf5\xed\x1f\xa3\x5a\xa4\xa6\xd2\x86\x22\x35\x33\x71\x14\x55\x1a\xb7\xd2\xcf\xa9\xa0\xe9\x31\xbf\x66\x39\x70\x17\x65\xc8\xba\x11\x5d\x68\x97\x4e\xc3\x68\x16\x79\x7a\x82\x83\x01\x0b\x95\x52\xa4\xc1\x66\x53\xc4\x0c\x4b\x7b\xc9\x1e\x9d\x1e\x62\x13\xfe\x31\xf2\x52\x9a\xbf\xe5\xc5\xfc\xea\x09\x81\x87\xf9\xa3\x23\x6f\xb3\x07\x83\x88\x33\xa9\x72\x73\x99\x0a\x70\xfa\xee\xe5\xe2\xab\x34\xff\x91\xbf\x87\x0b\x10\xbb\xf5\x7e\xac\xc0\x57\xb5\x0b\x91\x00\xe1\x04\x53\x76\xf9\xdc\xa6\x07\x21\xf9\xb8\x52\xf6\x98\x32\xbf\x36\x59\x74\xae\x4c\x16\xb5\xba\x94\x5d\xbe\x2c\xe4\x1e\x5d\xf3\x42\x46\xf8\xdc\x2a\xce\x9a\x45\xaa\xc9\x5c\xb5\xf4\xd1\x4d\xf8\x29\xd3\x54\x40\x4d\x3a\xd3\x10\xcc\xe8\x3b\xf3\x28\xf9\xc8\x1b\xd8\xbf\x70\x15\x37\xcc\xeb\x1d\x57\xb8\x2a\xbc\x4b\x48\xd4\xe4\xc1\xf6\x90\x11\x35\x2b\x6b\x11\x11\x5c\x5c\x8d\x31\x29\xba\x17\x47\x8a\x0c\x57\x9c\x95\xa2\x90\x23\x1c\x5d\x1b\x0e\x4d\x93\xcc\x11\x6e\xd0\x2a\x0a\x8a\x82\xfc\x60\x97\xe6\x80\x72\x52\x6c\x0a\x68\x06\xab\xb2\x98\x26\x52\xf3\x05\x60\x19\x05\xe5\x71\x0a\x7a\xcc\x2a\x11\x0e\xff\x60\x10\x93\x61\xa2\x3a\x00\x4a\x79\xa8\x08\x60\xcc\x4c\x2a\x48\x42\xfa\xd1\x90\xe9\x64\x6a\x92\xb5\x58\xa4\x1f\x0d\xa9\x4e\xe7\x26\x5d\xcb\x48\xfa\xd1\x90\xeb\xf4\xd4\xa4\x1b\x81\x49\x3f\x1a\x42\x80\x47\xa3\x14\x77\x62\xf5\x77\x83\x81\x89\x63\x30\x87\x0e\x4a\xd4\xef\x16\x81\x1b\xfd\x62\xce\xe5\x8f\xbc\xc8\xc9\x13\xcb\xc3\x86\x32\x2a\x92\x66\x2d\x62\x2e\xe6\x57\x6f\xd4\xf9\xff\x1e\x4a\x1b\x7a\xb4\x91\x1c\xae\xa8\x10\x44\xb3\x9e\x97\xda\xa8\x76\x7d\x45\x48\x56\xa9\xe2\xa7\x78\xc5\x1b\x52\x54\x47\x44\x1a\xf1\xaf\xa6\x0d\xd4\xe9\x7c\xc4\xe6\x24\x97\x5c\xe4\xc9\x74\x86\xeb\x82\xef\xee\x72\x6e\x8f\x4a\xaf\x1f\xff\xea\x53\x45\x15\x1b\x46\x5e\xbd\x10\x56\x8c\x6c\xb0\x17\x13\x2d\xfd\xd1\x75\x2a\x48\xc9\xf0\xfb\xef\xe2\x35\x99\x74\xc9\xd9\x94\xf2\x25\xb4\xad\x08\xa6\x0d\x3d\x70\x00\xd4\x9c\x4b\x92\x0a\xb5\x16\xf1\xa7\x91\xdf\x7b\x52\xcc\x6c\xf1\xc4\xed\x95\xb6\x1e\x08\x6e\xa3\xc7\xfb\xdc\x79\xfa\x6b\xe2\x1a\x70\xb3\xad\x0e\xbf\x0e\xcc\xbc\x54\x47\x5e\x98\xc3\x9f\xaa\x5f\x7e\xf1\x33\x45\x85\x69\x6e\xd1\x46\x0d\x4a\x98\x76\xd0\xa9\x8d\xd7\xac\x5f\x47\x23\x6e\x4d\xd5\x66\x9b\x0a\x93\x70\x6c\xf7\x38\x4a\x97\x92\x88\xd7\xd0\x8d\x06\x00\xec\x24\x82\x68\x5c\x32\xa7\x4e\x3a\x6d\xe0\xa7\xc2\xa2\xe6\xf5\xd5\x52\x84\x42\x4d\x54\xde\xe4\x82\xeb\xe7\xc0\x88\xf4\x2a\x52\xbb\x6a\xda\x66\xf3\x71\xa2\xc2\xea\x99\xb2\x1d\x75\x96\x54\x56\xc5\x85\x4d\x62\x6e\xa5\x90\x93\x99\x7f\x0b\xda\x02\x9f\xde\xbe\xf8\xdb\x23\x6a\xd4\xd9\x8c\xef\xea\xc3\x23\x73\x5a\xf0\x1e\x74\xd1\xa9\x19\xa0\x39\x77\x8d\x14\x05\x5e\xcc\xe0\xa1\xe4\x39\x33\x4f\x25\x81\xf5\x0c\xf4\x06\xd2\x6a\x45\xf2\x38\x68\x28\xf5\x48\x25\x18\xcb\x3a\x15\x8d\x46\x57\x2f\x0b\xa9\x1f\x3e\xf6\xe9\x0b\xe8\xa3\xa0\x42\x18\x68\x40\xd6\x65\xb8\xaa\x33\x98\xf8\x53\x26\x89\xd0\xb6\x38\x1d\xbb\x83\x3d\x27\x50\x2d\xd4\x21\xf3\x3b\xa4\xcd\x0e\x7f\x20\xe9\x7b\x63\xbf\xb3\x4f\x87\x19\x54\x0b\x75\x48\x4d\x87\x38\x84\x73\x63\x1f\xf6\x6a\x98\xc8\x3e\xbe\x04\xe4\xe7\xfb\x4a\xc8\x2d\x56\x08\xdc\x6b\xb6\xca\x9b\x66\x9e\x1d\x5c\xba\x58\xfc\x11\xbc\x81\xc3\xc4\xfd\x64\x5d\x09\xc0\x1c\x02\x94\xba\xc8\x4f\x42\xbe\xbc\x00\xe5\x29\x76\xf9\x84\xaf\x7e\x2c\x24\x8c\x24\xaf\x4c\x37\x74\x13\xee\x89\x13\x75\x13\xe4\x39\x43\x8d\x87\x35\x7b\xbd\x94\x77\x51\x97\x4b\xd8\x34\xf8\xb2\x90\x71\x68\xf7\x5b\xf0\x95\x0e\x97\x13\x38\xb2\xcd\x27\x20\xcb\xfa\x98\x27\xb7\x3a\x74\x39\xce\x9d\x8c\x64\x2a\x2e\x89\xb4\x6f\x73\x55\xb4\x6b\x46\x5b\x4d\x0c\x54\x9e\x54\xfa\x4c\x8e\x4e\xc7\x85\xcb\xac\x93\x33\x81\xc2\xa1\x9b\xa1\x26\x12\x25\x0a\x2b\x6d\x71\x0d\x44\xfc\x6d\xf0\x65\x00\xcd\xc3\x23\x48\x4e\xff\x69\xc3\xa0\x86\xc9\x18\x83\x3b\x5b\x9b\xe0\x82\x12\xa6\x01\x6c\x7e\x95\xb2\xcb\x3b\x5a\xdb\xe2\x76\xf8\x0c\x5f\x8e\x26\x3e\x93\x29\xa4\x2b\x12\x1d\x74\xf2\xc7\x5a\x62\x45\xe7\x35\x96\xd3\x93\x99\x1a\x30\x59\xbc\xe0\x0b\x62\x55\xaa\x36\x1b\x48\xd7\x72\x8a\x4a\x0e\x84\x2a\x0a\x0f\x3b\x76\x21\x1c\xeb\xe3\x18\x71\xfd\x23\x08\xb0\xf8\x76\x7e\x45\xb3\x85\x5a\xac\xf1\xd1\x09\xce\x8b\x0b\x29\x08\x31\xb2\x6a\x3d\x82\x2e\xfb\x16\x94\xa9\xec\xbd\x75\xc1\x56\x0e\xd8\x3d\xbe\xbe\x73\xf3\x82\x2b\x65\x43\x67\x36\x56\x70\x41\xf3\x39\x67\x8c\xcc\x65\xdc\xb2\xc8\x89\xd1\xaa\x70\x08\xa7\x05\x52\xf2\xf0\x2e\x78\x85\x49\x98\xd0\x27\x75\x2a\xdf\x49\x2f\x22\x04\x4e\x4a\x4a\xcc\xd4\x7c\x24\xc0\x02\xb3\xa4\xf5\x1e\x99\xd4\x24\x7c\xd5\xaf\x71\x2d\x17\xd3\xc4\x04\xd2\x50\x90\x19\x1f\x9d\xa0\x1e\x1d\xd1\x45\xa2\xfe\x19\x46\xc7\xc7\x90\x15\xf5\x2a\xa6\x81\xad\xec\xc9\x59\x0c\xca\xec\x56\x30\x89\x0c\x08\xb8\xa8\x1e\x3c\x4e\xad\x9f\xe1\x3e\x5c\x53\xb1\xa8\x96\x4f\x17\x0b\x53\x58\x60\x1e\xb7\x74\x67\x25\x35\x11\xaa\x36\xc6\x4c\xf8\x9b\xc7\xea\x08\xc4\xd4\x27\x8d\xeb\xcb\x9f\x22\x9c\xc7\xd4\xdf\x27\x66\xc6\x6a\x2b\xab\x3d\x68\x50\x76\x8d\xf3\x72\x17\x81\xa7\x5a\x8c\xc2\x5c\xae\x46\xa4\xf5\xd4\x06\x50\x97\xf8\xf9\xa4\x46\x53\x06\x8f\x57\xb7\x5e\x7d\x46\xb9\x4d\x2d\xa7\x06\xd3\xf0\xc8\x1f\xbe\xaf\xe0\x79\xc7\x7c\xda\x38\xb1\x27\x18\xbc\xd4\x3f\x7a\x9f\x52\x20\x32\x34\xe5\x80\xbc\xdb\x08\x81\x19\xe5\x82\x64\x32\xfd\x2f\xcc\xed\xcf\x9f\x55\x3f\x27\xe0\xaa\x00\xbe\x7f\xe4\x0b\x33\xac\xd4\x35\xaa\xdb\xfa\x81\x32\xf2\x3d\x08\x48\x50\x8c\x7a\xe0\x6b\xb1\xac\x02\x96\xdc\xdf\x62\x9e\x7c\xeb\x77\xf3\x3f\x53\xaf\xa3\xff\x99\x6e\xd9\x03\x61\x72\x5e\x90\xcb\x54\xd2\xf7\x64\x12\xb3\xa4\x9e\x06\xee\x8a\x89\x5a\xe6\x27\xc6\xcb\x0c\x42\x63\xf6\xd0\x16\xd3\x2f\x8f\xd5\xaa\x36\x2d\x58\x95\xdb\x5e\x7f\x2e\x7b\xe5\x49\x3d\x2d\x5c\xd5\xf6\xfa\xb3\xed\x61\x30\xf0\xea\xee\xea\xb6\x14\xfe\xbe\xd2\x59\x64\xa1\x16\x69\xb3\xe1\x8a\xe9\x01\x3b\x4e\x9a\x1b\xc1\xb3\xdd\x2c\x86\x39\xf6\x36\x4c\x8b\xc6\x9b\x6d\x83\x0f\x8a\x00\x3d\xd9\xc4\x99\xd3\x99\x33\x4a\xaf\xd2\x32\xa8\x7c\x49\x01\x5f\x28\xae\xc1\x57\x80\xab\x50\xa8\x8e\xc1\x63\x0a\x6d\xa1\x33\x39\x18\x44\xdf\xbd\x7c\xf2\x73\x74\x94\x24\x72\x64\xa4\xd6\xd5\xc8\xb7\x83\x41\xf4\xfd\xdb\x1f\x7f\xd8\x51\xe2\x0c\xb9\xd8\x7b\xb8\x75\x20\x7e\xb7\xe5\xe3\x09\x6e\x50\xc7\xfe\xec\x8f\x4e\x2a\x8f\xfb\x66\x01\x75\xf9\x08\x4d\x62\x4b\x5f\xbf\xf2\x33\xe0\x64\xdb\x0b\x4a\x1f\xf6\x6a\x0f\x89\x97\xd3\xac\x89\xc6\x71\x95\x6c\xaf\x52\xf3\x77\x35\xe8\xd7\x71\xb4\x43\xfb\x0c\x61\x01\x9a\x83\xd8\x07\x61\x02\x52\x8a\x9a\xb2\x3d\x7c\x3b\x4f\xd7\xb2\x10\xe0\x2f\x71\x9d\xe6\x39\x7d\x4f\xcc\x53\x7a\xdb\xdc\xdb\xbb\x0d\x22\xcd\x03\x7a\xae\xad\x6a\x1b\x79\xb0\x93\x90\xd5\xec\xd9\x1d\x04\x55\x1b\x23\x17\x0c\x1d\x19\x5a\x56\xdb\x4b\x1b\xa5\x89\xb6\xb5\xed\xed\x3c\xa3\xe0\x5a\x7e\x8e\x49\xed\xec\x68\xe7\xbc\x1c\x3b\xd8\xb8\x57\x9b\xc4\xf0\xae\x93\x61\xf3\x02\xbc\x79\xa9\x89\xb8\x4b\x8c\xdc\x4a\xc5\xc6\x75\x51\x51\x70\xb2\x9f\x5e\xb0\xd5\x4e\x3d\xec\x2b\xdb\x6a\x6f\xe9\x6e\xf1\x56\xc8\x7a\xae\xb3\xc6\x82\xb5\x7e\xf8\x34\x1a\x0b\xae\xb5\x8f\xd0\x58\xd8\x2b\xcc\x44\xe5\x15\xc7\xbd\x80\x11\xbc\xe3\x11\x8e\xa0\x49\x24\x45\x41\x22\xa3\x44\x7b\x98\xfd\x2d\x4d\xf6\x78\xbc\x3d\xc4\xc8\xa6\xfa\x52\x4c\xef\x36\x1c\xb1\x12\xe2\x68\x86\x05\xcf\x1a\x0f\xa9\x17\x85\x94\x9c\x45\x08\xa7\x82\xa6\xaf\x79\xe3\xd9\x70\x24\x48\xba\x78\xc9\xb2\x9b\x38\x52\xd5\x23\x84\x65\x7a\x01\x9e\xae\xc6\x27\x18\xee\x06\xed\xee\xd2\x3b\x45\x6e\x48\x9e\x2a\x0d\xd5\x1c\x94\x61\x11\x22\xa7\x27\x69\x13\xde\x57\x13\x66\x38\xa4\x8f\xe3\x86\x08\x23\xc1\x4e\x3f\xc7\x59\x8c\x78\x72\xf2\x08\x47\x56\xab\x78\x6c\x47\x1c\xe1\xa8\x94\xd1\x8c\x9d\xfe\x40\x84\xa1\xe5\x1f\xd2\x0b\x92\xe9\xd4\x4c\xfd\xf4\x93\x33\xb2\xf8\xee\xc6\xcb\xcb\xc8\xe2\xe2\xc6\x14\xd0\x41\xab\x2e\xca\x12\x0b\x9b\xe0\x8a\x1c\xa7\x85\xe4\x6a\x45\x33\x22\x89\x4b\x9b\x2b\x7a\x52\x15\x26\x6c\x91\x82\x3e\x8f\xae\x6e\x0d\x28\xcc\x37\xf9\xb0\x4e\xd9\xa2\xfc\xbe\x4a\xf3\x35\x5f\x17\x6b\xfb\x6d\x83\x23\x98\x4f\x88\x55\x56\x96\x36\xd1\x5c\x60\x3d\xa8\xcc\x48\x34\x6b\x3c\x60\xd6\xa5\x33\x77\x3e\x23\x85\x1f\x8a\x74\x65\xbb\x17\x89\x0c\xbc\x52\x44\x8d\x77\xbf\xda\xf7\xdd\x06\x2f\xb2\xf6\x10\x78\x1e\x7e\xe1\x6c\x24\x37\x9e\x38\xcf\x01\x62\x8b\xb5\xad\xb6\x1f\x59\x63\x2a\xab\x2b\xb2\xd6\x50\x00\x8b\x5f\xf0\xc5\x8d\xa7\x52\xa4\x1b\x6c\x51\x28\x92\xe4\x83\x3c\xce\xe1\xe9\xa7\x84\x04\xb4\x85\xc7\xbf\xe7\x2c\x27\x42\x1e\xfe\x98\x98\x2e\x16\x3f\xa6\x6c\x91\x4a\x2e\x6e\xcc\x68\x7d\x09\xb4\x76\xc2\x90\x66\x65\xd6\xc7\x3f\x62\x1e\xc0\x56\x37\xb6\xae\xfb\x2d\xae\x36\x24\xb4\xb9\x9a\x33\xaf\x1d\xaf\x31\x2b\xa1\x77\x54\x2e\x75\xfd\xd4\x55\x8a\x59\x33\x83\xda\xd1\x03\xc7\x17\x82\xa6\xcf\x6d\x9c\x92\xda\x59\xb4\xf9\xaf\xcc\x37\xaa\x1f\x4e\x5b\xe0\xb5\x4d\x00\x34\xab\xb1\x57\x43\xb5\xa4\x31\x66\x40\x75\x06\xc3\xed\x78\x92\x74\x85\x5c\x80\x46\x88\xe4\xe0\x5b\xac\x04\xd6\xc3\x85\xd1\xdb\x6c\x4e\xb6\xa8\xbc\x0e\x10\xf6\x71\x7a\x63\x94\x55\xc1\x99\x3f\x2c\xcb\xa5\x86\xe4\x6b\x46\xfd\x62\xe7\x45\x76\x7c\x4c\xd9\xf1\x1a\xca\x6f\x11\xae\xde\x24\x8d\x61\x5c\x95\xc6\x04\x3b\x56\xa6\x2c\xa5\x4d\x3e\xba\x0d\x23\x1a\x92\x2d\xc2\xef\x77\x0f\xe0\x7d\xa7\x01\xbc\xff\x88\x01\xd4\xec\xc1\xc2\x0f\x26\x3b\xd0\x76\xd5\x54\x2b\x64\x9f\xe5\x9a\xd4\xa5\xe3\x23\xb1\xd9\x1c\x9d\x1e\x59\x4b\x2d\xc5\xfd\x97\xd7\x7f\x85\x1b\x77\x04\x42\x84\x60\xe3\xb5\xf4\x49\xd3\x1c\x66\x8e\x4e\x6a\xa1\xc8\xf8\xb7\xe4\x83\xd4\xef\xde\x94\xb3\x9f\x98\xa4\xd9\x8f\xfa\x20\xc7\x4e\x9f\xe5\xf2\x32\x23\xcf\xf3\xef\x08\x65\x97\xfa\x74\x2f\xbe\xbb\x01\x92\xc8\xf0\xd3\x9e\xaa\x54\xdc\xad\x4a\x72\x74\x0a\xf1\xbd\xcd\x63\x8c\x2e\x1f\x13\xb0\xfb\xd0\x6b\xfa\x38\xa3\xf3\x77\x7b\xac\xa7\x04\x95\x82\xd2\x96\x2c\x9a\xab\x06\x76\x2f\xcd\x17\x98\x9e\x99\x9d\x2e\xcb\x16\xcd\x17\xb6\x0e\x6d\x9f\xec\xa2\x08\x74\x20\xdb\xc1\xa0\x29\x1f\xdb\x6c\x3c\x90\xf3\xac\xf6\xac\x48\x36\x04\x86\x76\x9c\xba\xe1\xaa\xb5\xa0\x05\xa6\xd0\x3c\xeb\x6f\x71\x9f\xe8\x52\xb2\xd2\x3b\x6b\xae\x86\x73\x22\x8d\xc3\xe2\xb8\x8a\xee\xaa\x12\x5c\x17\xfe\x4e\x8a\x9b\xdb\xd8\x7b\x80\x36\x91\xcc\x40\x34\x15\xe9\x17\x7b\x58\xe4\x08\xa1\x91\xa2\xd9\xca\xa4\xd8\x00\x14\x3e\x3a\x51\xff\xd3\xdc\x84\xf5\x7b\xa5\x36\x0f\x1e\xd4\x2a\x45\xd1\x76\x49\x59\x9a\x65\x37\xb7\x6e\xdc\x0b\x9a\x83\xeb\x5e\x5d\x4e\x02\xbc\x9f\xa0\x80\x80\xd3\x41\xca\x9f\xc8\xcd\xa7\xc5\x2c\xa6\xc1\x80\xf1\x67\x7c\x0a\x31\x82\x46\xef\xc8\xcd\x63\xbe\x20\x93\xc0\xc6\x8e\xbf\xbd\x5f\x29\x12\x37\x47\x8e\x03\xd5\xd0\xf8\xfe\xff\xf6\xeb\x0d\x06\xb2\xfe\x10\x8b\x60\x2d\x1a\x7b\xfe\xa9\x1f\x10\x9a\x40\xa5\x9f\xe4\x5a\xb1\xe0\x3e\x22\xbf\x3b\x09\xa2\xdd\x44\x6a\xba\x58\xec\x47\xa1\xe2\x10\x75\xb9\x8b\xcd\x68\x11\xa5\x40\x1e\x69\xd5\x10\xf1\xc5\x28\x87\xbd\x18\x91\xd0\xba\x9b\xeb\xe5\x8e\x7e\x41\xe8\x12\xd0\x4b\x21\xa3\x5c\x71\xeb\x51\x15\x9f\x82\xa2\x18\xba\xb3\x65\x8f\x73\xbe\xb3\xe9\xf2\x26\xd6\x7a\x30\x77\x34\x6d\xb0\xc4\x9d\xcd\x3e\xd6\xe5\xba\x34\xf9\x8e\xdc\x74\x1c\xab\x3d\xdb\xd0\x2c\x80\x47\x9d\xc1\xe8\xa6\x3f\x87\x65\xbb\x2a\x93\xd5\xde\xb8\x63\x75\xeb\x2a\x4c\x9d\x14\xb4\x2a\x2a\x4c\xa2\x5b\x47\xed\xaa\x4b\x3b\x94\xb3\xac\x75\x3e\xbb\xb3\x0f\xb8\x69\xf6\x55\xc5\xfa\x2e\x2b\x84\xa7\x84\xd5\xde\xfa\x85\x2a\xb8\x4b\xed\xaa\x57\x86\xce\x68\x2a\xcc\xf1\x6e\xa3\xa7\x61\xd0\xe1\x7e\x17\x69\x9b\xa2\x5c\xda\xad\x8f\x36\x05\xb9\xd4\x74\xd2\x41\x32\xda\xc9\x91\x51\x27\x5b\x35\x32\x2a\xe5\x85\xea\x9e\xa8\xcb\xfc\xbe\x7f\xfb\xe3\x0f\xdf\xa5\x22\x1f\xd9\x2e\x63\x08\xc5\xf0\xe8\xf9\x2a\x97\x8b\xd3\x0f\x11\xbe\xc8\xf8\xfc\xdd\xf8\x9b\x5b\xe3\x21\x2f\x8f\xc6\xd3\x68\x60\x63\x5e\xcd\x70\x94\xcb\x54\xc2\x72\xa8\x9c\xe9\xe9\x29\x3e\xc5\xd3\xe9\xfd\x7f\xc7\xd1\x55\x9a\x5f\x45\x3a\x76\xe3\x74\xea\x84\x64\x11\x8e\x0c\x17\x8b\x23\x5f\xd4\xa4\x6f\x40\xc5\x4b\x3a\x61\xad\x35\x6e\x9a\xa9\x06\x4f\xf0\xd4\x37\x98\x2c\xdb\x9b\xcd\x70\x33\xd7\x74\x11\xcc\x73\xbd\x06\x73\xed\x40\x20\xf3\xdf\xd5\x20\xcc\xfa\x47\x76\x14\x75\x47\x3e\xd1\x4c\x95\x9d\x46\x9e\x87\x29\x8f\xed\x73\x07\xac\xae\x9e\xec\x09\x1d\xf5\x0c\xff\x5d\x95\x48\x17\x9c\x65\x37\x51\x73\xc6\xaa\x13\xb5\x96\x66\x58\x8d\x92\x65\x97\xb5\x92\x7a\x42\xaa\xdc\xe9\xff\xc5\x27\x78\x3a\x9b\xe1\xc8\x73\xdd\x11\xed\x6e\xb6\x3a\xe6\xbb\x06\xf1\xbe\x39\x88\x59\xfb\x42\xd6\x1d\x1b\xdd\xb1\x90\xf5\xe5\xab\x3e\xb5\xfa\xcb\x89\xab\xf6\x2f\x9d\x4c\x45\x3e\xe7\x16\x7c\xe4\xaa\x56\x27\x7a\xc0\x1e\xb4\x94\xf4\x17\xe9\xae\xb2\x6a\x09\xef\x2a\x03\x0b\x7c\xe7\xd4\xf5\x6a\xdf\x51\x4a\x6f\xce\x9d\x0b\x4e\xaa\x8d\xd9\xff\xf0\xf4\x04\x47\x7f\xfd\x2b\x9c\x7f\x85\x86\x9e\xbe\x4f\xb3\x68\xbc\x4c\xb3\x9c\x6c\xbf\xc1\x2b\x22\xd3\xf1\xed\x0a\x30\xa2\x36\x80\x3b\x14\x05\x8f\xae\x2e\xf2\xe8\xd3\x60\xf3\x90\x8d\xee\xa7\xc7\xea\xf7\xe6\xf9\x8b\xf4\xea\x4f\xff\x6b\x5f\xac\xfe\x6f\x38\xa2\xcb\x12\x6e\xca\xf3\xe9\xf0\xac\xde\x01\x7c\xdb\xac\xa8\x57\xc4\x99\x6b\xbb\x0b\x41\xf2\xc0\x99\x9e\x9b\xe7\x17\x07\x75\x25\x92\xae\x9f\x99\xf0\x63\x9e\x13\xd5\xdb\x0e\x8f\xb9\xa0\x97\x14\x40\x21\x30\x38\x6f\x56\xfc\x3d\x11\x59\x7a\xd3\x3e\x97\x13\x1c\xf5\xe1\x3f\x35\xbe\xff\xa5\x3d\x90\xcd\xf0\xf4\xff\xda\x51\xb7\x0c\xc8\xb5\x8b\xa7\xff\x7b\x86\xa7\xff\xa7\x0a\x9d\xeb\x54\xa4\x2b\x22\x89\x50\x5d\xcc\xb6\x16\xdc\xff\x0d\xb7\xb8\x75\x2b\x2d\xd5\xdd\x3a\x3a\x97\x68\xf0\x08\x63\xc7\x52\x31\x1e\xb7\x73\xac\x59\x35\x96\x8b\x5b\x3e\x81\x78\x17\x1f\x9b\xa7\x1a\x1e\x77\xac\x73\x3f\x32\x2d\x98\x9d\x9b\xe1\xc8\x25\x19\x70\x7a\x5c\xcd\xf9\xf7\xca\xaa\xef\xb9\xab\x4e\xf6\xda\xaf\xde\x5b\x5e\x8b\x3e\x16\xde\x67\x26\xc7\xc7\x76\xdc\x01\x3c\x6e\x3b\x0b\x4d\xe1\xfd\x47\x77\x18\xba\x36\x2b\x1d\xaa\x42\x35\x3d\x47\x1f\x37\xaa\x6c\xbd\xdf\xe5\x86\xaa\x6d\x9f\x05\x80\xbe\x02\xc5\x8a\x5a\xeb\x00\x8f\x7b\xa4\x07\xbb\xab\x1e\x98\xd3\x13\x0d\xaa\xd3\xd3\xff\x83\x2b\x80\x67\xe7\x73\xd7\x89\xb2\xeb\x07\x80\x70\xc5\xb3\x05\xbc\x2e\xab\x6a\x25\xd0\xe7\xeb\x2c\xbd\x19\xf7\x19\x67\xe4\xac\xdb\xd1\xfb\xcc\x77\x85\x3d\xc0\x9f\xf2\xce\x08\x68\x49\x7c\xfa\x3b\x83\x2e\xd8\x3f\xff\xf2\x6d\xf1\xe2\x10\x4e\xe0\x73\xaf\xa9\x59\x80\xae\x6b\xda\xee\x5e\xa2\xd3\x02\x3a\x1d\x0f\x59\x7a\x73\x2d\x1d\xa4\xb2\x90\x8f\x1b\x9e\xb0\xa6\x1f\x9b\x34\x61\xa3\x86\x97\x2a\x9c\x27\x6c\x87\x0b\x1d\x5c\x78\xd9\x75\x67\x39\x38\x4b\x8c\xde\xd6\x3a\xbd\x24\xff\xf5\x72\xb9\xcc\x89\xc4\x73\x3f\xf1\x67\x93\xb8\x48\x40\x3d\xfd\x3b\x5e\x80\x5a\xc3\xe3\x8c\x12\x26\x5f\x6b\x75\xf9\x75\xb2\xd0\x66\x92\x57\xc9\x02\xec\x26\x97\xc9\xc2\x58\x48\xaf\x92\x85\xb1\x90\xc6\x37\x89\x6c\x6d\xe1\x32\xb9\xb1\xc5\x2e\x92\x1b\x53\xf7\x7d\x12\x94\xf4\xa9\x6a\x30\x73\xe3\x2a\xcc\x0c\x96\x32\x66\x57\xe4\x3c\xb9\xdd\xe2\xeb\x44\x78\x6a\x99\xf8\x69\xd2\xe6\x83\xe2\x1a\x8d\xec\x7e\x9e\x45\x82\x64\xa0\x6a\x0b\xb6\xf6\x83\x41\x94\x5e\xe4\x3c\x2b\xa4\xfb\xb6\xfa\xa4\xd7\x6d\xfa\xa4\x7e\xa7\x67\xe8\x3a\xb9\xde\x7b\x10\xe0\x11\xc3\x8d\x23\x49\x92\xa7\x9b\x4d\x39\x0e\xf5\xad\xa5\x4e\x1f\x92\xeb\xb6\xf5\xec\xad\x8f\x93\x0f\x66\x4b\xd4\x2f\xc9\xd7\xbd\xeb\x11\x87\x9d\xd4\x4a\xab\x83\x41\xbc\x3e\x4e\xaa\x69\x46\x59\xed\x07\x53\x2d\x98\xf9\x96\xaf\xd1\xf6\x22\x49\x27\xcb\xf1\x05\xd8\xa4\x9f\x1b\xcf\x57\x17\x5a\x04\xf2\x32\x59\x0f\x33\x98\x01\x78\xb8\x4d\x92\x84\xaa\xd1\x17\x92\x1f\x03\x95\xaf\x12\xf4\xf0\x1f\x25\x3f\xa6\xf2\x6a\xb4\xa2\x2c\x7e\x8f\xd7\xc3\x0b\x74\xac\xbf\xd3\x0f\xf1\x09\x5e\x23\xfc\xa6\x9a\xbf\xac\xe6\x0f\x97\xc7\x17\xa8\x47\x93\x8b\x87\x8f\x06\x83\x37\x0f\x1f\x4d\x0c\x7f\x30\xbe\x78\xf8\x66\x30\x78\xf4\xf0\xcd\x44\x73\x15\xe3\x7c\xb3\xd1\xbf\xb6\x36\x0e\x92\x1e\x8d\x2e\x5e\x0e\xe7\xd5\x1d\xc3\x79\xd7\x71\x38\xef\x06\x83\x57\x0f\xdf\xd9\xde\x2f\x1e\xbe\x1a\x0c\xde\x3d\x7c\xe5\x86\xa7\x86\xa3\x7f\x6e\xa3\x72\x08\x93\x73\xeb\xaa\xec\x38\x7e\x39\x5c\xa2\xf1\xb9\xf6\x3a\x16\xcd\xb5\x04\x10\xca\xbc\x1c\xc6\xaa\x97\x7b\xf7\xc7\x2f\x61\xa9\x1f\x27\x57\x0d\x50\x69\x03\xaf\xca\x19\x42\x9e\x4d\xf4\xcd\x9f\xd3\xac\x20\x71\xe4\x30\x1a\xda\x6c\xe2\xc7\xc3\x64\x8e\x70\x94\x5e\x70\xdd\x2a\x47\xe7\xe0\xbe\xed\xf1\xf1\xa5\x8b\x26\x15\x5d\x90\x8c\x5f\x57\x72\x87\xab\x32\x64\xd4\x6b\xf5\x39\xbc\x7c\x30\x1f\x36\xce\xa8\x56\xd0\xc7\x3f\x26\x57\x0f\x2f\x7b\x3c\x29\x1b\x2a\x06\x83\xa3\xd7\x83\xc1\x8f\x13\xd3\xf3\xb8\x1c\x81\xca\xfa\x71\x30\x78\x3d\x31\xa5\xc7\xc5\x66\x13\x97\x5f\xa6\x20\xc2\x76\x24\xfe\xf0\x26\xab\xf1\xf1\xa5\x75\x91\x72\x1b\x70\xcd\x4c\x9b\x6e\x9d\xb9\x71\x45\x71\xbe\xdd\xfa\xb1\x30\xfc\x90\x47\xfb\x21\x6e\x13\x1e\x29\x4f\x74\x50\xba\xf2\x74\x58\x8f\xd6\xad\xd8\xb5\x97\xb6\xe3\x4d\x80\x83\x10\x0e\x6f\xae\x3a\x60\xc6\x5e\x1e\x18\x72\x52\x68\xff\x7a\xa9\x3e\xc9\x0f\x33\x07\xac\xf5\x83\xe3\x41\xa3\x1e\xf6\xbc\x7d\xd8\x06\x87\x2f\xda\x07\xaf\x4b\xf4\x72\xed\x50\x2e\xb9\x05\x07\x19\xf1\xfc\x78\x81\xee\xdd\xdf\xde\x71\x5a\xd7\x3b\x6e\xa3\xab\x1d\xeb\x15\x9c\xff\x5a\x1f\xbe\x87\x57\x7a\x44\xa1\xe9\x7b\x67\x75\x30\x88\x83\xad\x98\x22\xce\xcb\x59\x79\x7a\x26\x71\xde\x00\x89\x84\xe3\x34\x49\x37\x9b\xf6\x2b\xd1\xad\x8b\xe4\xeb\xf1\x71\x6a\xae\xc7\x2d\x1a\x07\x1a\x33\xd0\x8e\xf3\x8f\xf1\xff\x53\x0d\x28\x82\x79\x29\xe3\xae\x3a\x3c\x98\x58\x9d\x29\x1b\xf2\xcb\x69\x4d\x8d\x65\x5b\xce\x16\x93\x91\x23\x9f\xfe\x62\x38\xec\x45\xe9\xd9\xd5\xcf\x36\xdd\x94\x0e\xfd\xb4\x61\x9c\x6f\x72\x91\x34\x1f\x72\xef\x70\x33\x85\x45\x52\xb9\x43\xa5\xbb\x6e\x31\x4b\xee\xc5\x0a\xc8\x36\xfa\x86\x43\xf7\xe0\x80\x2e\xe9\x07\xb2\xa8\x96\xb4\x3a\x0c\x15\x64\xea\x79\xba\x27\x67\x34\xa1\x55\x4b\xba\x33\x44\x97\xf1\x1d\x83\xa3\x08\x83\x66\x0a\x90\xc1\x74\xae\x6d\x51\x5c\x9f\x83\x01\xd3\xc1\xef\xe4\x88\xbf\x27\x62\x99\xf1\xeb\x61\xf9\xf3\x67\xef\xf7\x7f\xb9\x20\x8e\xb4\x17\x1a\x69\x33\xbe\xc5\x41\x0e\xd8\x3e\xb7\xa3\xbb\x40\xb8\x9e\x6e\xbe\xab\x49\xcd\x01\x91\x1f\x17\xcb\x39\x20\x12\x13\x32\x86\x20\x59\xdd\x16\xa3\xe6\x21\xee\x00\x72\xbf\x12\x84\x93\x19\x2a\x0a\x90\xf1\x31\xf3\x89\x59\x20\xee\x75\xae\xbe\x20\x5d\xb6\xb9\x2f\xf3\xe4\x98\xf9\x14\x5a\x91\xf0\x6a\x42\x56\x16\x78\xcb\xd7\x78\x9e\xa4\xfe\x77\xcf\x2f\x9b\xf8\x1f\x43\x82\xbd\x72\x89\xf7\x7b\x28\x30\x79\x58\x4c\xc8\x71\x52\x8c\xc9\x83\x5c\xfd\xc8\xc7\x24\x39\xc1\xe2\xe1\x7c\x22\x8e\x93\xf9\x58\x3c\xc8\xd4\x8f\x6c\x2c\x92\x13\xcc\x8e\x34\x7a\x24\x9b\x8d\x40\xe0\xbb\x5d\xcd\xde\xa7\x7f\xe9\xfe\xda\xe9\xfe\xe1\x2f\xcd\xfb\x92\xaa\xa2\xca\x91\xb0\x0f\xb1\x75\xa5\x14\x7d\x0c\xe3\x88\x2e\x05\xc4\x04\xe8\x91\x51\x2e\xe6\x49\xf4\x3f\x22\x4c\x8c\xd3\x55\xe7\x2a\xa7\x44\x10\x2e\xef\x3d\xcd\xe9\x05\xcd\xa8\xbc\x49\xa2\x2b\x08\xbb\x57\xe6\x69\xba\x37\x3a\x59\x7f\x28\xd3\x8c\x3f\xd7\x6a\xe2\x05\x17\x0b\x22\x12\xed\xe5\x0e\x57\xd9\x19\xdf\x3a\x95\x58\x2d\x65\x62\xa3\xef\xfe\x45\xa3\x0c\x5b\xa5\x27\xb5\x4f\x68\x84\xe5\xe8\x5a\x50\x49\xe2\xe8\xc1\xd1\x82\xcf\xe5\xcd\x9a\xf4\xaf\xe4\x2a\x7b\xf8\xc0\xfc\x4b\xd2\xc5\xc3\x07\xf7\xf4\x1f\xd5\xcf\xc3\x07\xf9\x3a\x65\x0f\xff\xeb\xc1\x3d\xf8\xfb\xe0\x9e\x4e\x84\x70\x8b\x0f\x23\xd5\x9e\x75\x1d\x23\x12\x33\xb2\x25\x15\xb9\x45\x63\x30\x3e\xc3\x0e\x18\x70\xac\x4e\xc3\xb7\x93\x25\xce\xe7\xab\xd8\xea\xdd\xab\x59\x7c\x26\x55\x1f\x61\x16\x81\x8a\xe4\xb6\x6a\x64\x39\x3e\xc1\x55\xd3\x49\x9b\xf0\x73\xbd\xc4\xcf\x65\x89\x2d\x66\x96\xd8\xa2\xe6\xc7\x99\x6f\xa3\x6a\x8d\x53\xcf\x10\x4b\x48\xe5\x38\x92\xca\x71\xa4\x2e\xd7\x1c\x47\x52\x3d\x8e\x75\x8b\xd0\x61\x72\x4c\xfc\xd3\x58\x37\xfb\x1c\x26\x2c\x58\xe0\xe7\x40\x03\xea\xf8\xd6\xed\x37\x87\x09\xad\xe4\x97\x4e\x1b\xd5\xc9\xea\xf9\x2b\x5e\x37\xda\x4c\xa4\xd1\x12\x30\x5e\xd6\xab\x78\x6f\x9e\x51\x1b\x25\xdf\xa0\xb9\x32\x00\x90\x3e\x44\xd5\xec\x2f\x72\x03\xf8\x1a\x10\x46\x11\x21\x16\xf8\x14\x4d\x4f\x9c\xe7\x4c\x88\xb7\x1a\x45\x98\xc4\x0c\x6d\xb7\xe6\x24\x35\x6f\x89\x86\xd7\xfd\x86\x07\x4f\x17\x1d\x9a\x2e\xe3\x5a\xa0\xb9\x3e\x65\x7d\x3d\x31\xaf\x60\xb5\x45\x2f\xa4\xf4\x91\x02\xc1\xa3\x53\xcc\x7d\xc5\x39\x17\xec\x06\xe7\x09\x99\xd6\xda\x9f\xc5\xe8\xec\x28\x66\x49\x9c\x26\xf9\x88\x91\x0f\x32\x46\x68\xb4\xe0\x0c\x02\x41\x9b\x00\xd0\xa9\x76\xff\x88\xf0\x91\xdc\x6c\x6c\x60\x1d\x45\x33\xa0\x33\xd5\x25\x3a\x2b\xd5\xe9\xa8\x1a\x02\x4f\x88\x53\xa1\x53\x03\x38\x62\x83\x41\x3e\xd2\x63\x2f\x7f\xc5\xa5\x9e\x1d\x5d\xc6\xd4\x84\x81\xe7\xdb\xf2\x28\xc3\xf4\x7a\x65\x78\xf8\xb7\x37\x6b\x1d\x91\x2e\x8e\x8c\xfa\x78\x3f\x95\x92\xac\xd6\xb2\x2f\x79\x7f\x41\x74\x00\xbd\x42\x90\x3e\xe3\xec\x18\x66\x78\x91\x11\x08\x02\x9f\xb2\x39\x89\xd0\x76\x1b\x37\x05\x6f\x01\x68\xb4\x7f\xe7\xe9\x8a\x64\xe0\x6d\xa2\x69\xdb\xb5\x37\x10\x7f\xea\x30\x64\x76\x70\x76\xab\x35\x18\x78\xe9\xd5\x48\x74\x15\x37\x7d\xb6\x0c\x6a\xd8\x55\x7d\x0f\x83\x1d\xe9\x31\xc7\x62\xcf\xe5\x5a\x53\x99\xfe\x86\x17\xcc\x0e\xaf\xb9\x64\x2e\x67\xe7\xa2\xd9\x52\x9f\x78\xd9\xb2\x34\xcf\xe9\xf2\xe6\xb7\xb9\x68\x66\x70\x8d\x25\xb3\xe9\xbb\x16\xcc\x94\xf9\xb4\xcb\xb5\x48\xf3\x2b\x22\x7e\xab\x40\xe6\x46\x57\x5f\xb0\x32\x63\xc7\x8a\xb9\x42\x9f\x76\xc9\x14\xcd\x75\x9c\xa7\xcb\xdf\xe6\x92\x59\x9f\xa1\xf5\x15\x73\xe9\x3b\x16\xcc\x96\xf9\xc4\xeb\x55\xac\x52\x56\x83\xb0\x8e\xdc\x97\x15\x0e\x88\x98\x18\x62\x81\x2e\xcb\xe0\xb5\xd2\xf9\x6b\x94\xd6\x6e\x25\xb2\xaa\x82\xd5\xf0\xe3\x23\x41\xe0\xcd\x30\x86\x30\xf7\x4e\x2c\x32\xbf\x4a\xc5\x23\x19\x9f\xa0\xea\x23\xc0\x90\x8f\xf2\x8c\xce\x49\x7c\x7a\x10\xbb\x63\xe7\xeb\xc8\xb6\xaf\x44\xcc\x6f\x9b\x88\xc1\x2c\xb9\x77\x3e\xdc\x1c\x0f\xef\x5d\x62\x9a\x44\xfd\xe8\x0e\xf0\x0f\x84\xe6\xdc\x01\xfe\x99\x02\xc3\x79\x1a\x8e\xf1\x1c\xa8\xa7\x05\x17\x5e\xad\x4f\x83\x59\x1a\x86\xeb\x07\x40\xb6\x1b\x94\x8f\x5c\x14\x1b\x56\x66\x54\xad\xbc\x4b\x44\x73\xc7\x92\xb2\xbd\x96\x14\x0c\x8a\xbb\xdf\x59\x7a\x45\xcb\x4a\xbf\x9d\x05\xb5\x63\xaa\xaf\xa7\x4b\xff\x75\x96\x53\x14\x6c\x9e\xca\x8f\x45\xd0\xf7\xd5\x41\x92\xd3\x93\x19\xa6\x89\x9c\x9e\xce\x30\xf7\x02\x8d\xd3\xc9\xe9\xbf\x9d\x8c\x29\x3a\xfe\xb6\xe2\x17\xdf\xb8\xbf\xe6\x13\x36\xca\x8b\x0b\x3d\xbe\xf8\x04\x73\x34\x8c\x46\xa3\x51\x34\x66\x87\x20\x60\x3b\x9f\xaf\x08\xf8\x77\x82\x80\x3f\x29\xbe\x2d\xd8\x82\x88\x7c\xce\xc5\x6f\x93\x3e\x2b\x87\x57\xa7\xd0\xbc\x9c\x1d\x34\x5a\x59\xea\xd3\x52\x69\x85\xa2\x7f\xf6\xbe\xa6\xbc\x5a\xbf\x1d\xac\xea\x06\x55\x47\xab\x65\xc6\xaf\x82\x57\xaf\x0f\x42\xa8\x0d\x7c\xe2\x92\xea\x38\x6a\x42\xc6\xd5\x28\x33\x31\x41\x86\x72\x3d\x41\x10\xbd\xbf\x02\x39\xd7\x8a\x0c\x5e\x14\x73\x2f\xc6\x8b\x1f\xe3\x01\x84\xd6\xf3\x14\x0c\x32\xf1\x74\x76\x10\xe9\x7b\x0d\x2f\x81\x1f\x7f\x96\x1b\x34\xd0\xaf\x26\xb2\xb4\xef\x10\xf5\x18\xda\x0f\x4f\x06\x03\x17\x99\xad\x8c\x94\x7d\x32\x9b\xf8\x1f\xe3\x28\x82\xc7\x47\x3d\x9d\xe8\xc8\x06\x6b\x23\x28\x88\x31\x9f\x7e\x58\x93\xb9\x24\x8b\x7e\xda\xd7\x35\x70\xff\x92\xcb\x7e\xda\x8f\x86\xe5\xcd\x49\x26\x51\xf9\x7a\x37\x86\x2b\xa7\xf4\x51\x57\x65\x73\xac\xd4\x34\xb2\xd3\x29\xc3\xc5\xe9\x2b\x66\x30\x30\x2a\x7c\xf5\x0c\x77\xf7\x4c\x02\x70\x67\x27\xb1\x1d\x07\x32\xc9\x60\xb0\xa3\x3b\x00\x2a\x7d\x07\x70\x91\x24\x89\x4b\x3f\xb2\xbf\x47\x6b\xc1\x25\x57\xd5\x26\x76\x6c\x63\xd7\x61\x77\x58\x09\x91\x84\x5f\x41\xa5\x1d\x54\x1c\x47\x7c\x2f\x9e\x8c\xff\xb6\xf9\x6b\xbe\x39\xde\xfc\xf5\x1e\xfa\xeb\x9b\x7b\x97\x38\xb4\xcb\x55\x0e\x79\xfb\xdf\x19\xd4\x82\x37\xe5\x57\x58\xab\xc1\x9a\x0f\x2d\xff\xfa\xb0\xc2\x57\x6b\x0e\xc6\x85\x01\xa2\x27\xe3\x79\x21\xc8\xb1\x33\xc7\xfb\x1c\x30\xd3\xf3\x03\x4d\x9e\x9f\x67\x3c\x5d\x10\x81\x45\x72\xfb\xe8\xf1\xdb\xe7\x2f\x5f\x68\xd7\x72\x3d\x33\xda\x2b\xb9\xca\x2e\x52\x91\xdf\x7b\x47\x6e\xae\xb9\x58\xe4\xf5\x31\x52\xd6\x97\x23\x1d\x6e\x52\xdc\x4c\x44\x22\x47\xc6\x61\x50\xdc\xb5\x05\x64\x75\xbb\x05\x2f\x24\x1c\xa1\xbd\xfa\x54\x7c\x4e\xb3\xd7\xce\x6d\xf9\x9e\x71\x13\x31\xd2\x6b\xb0\xdf\xa6\x69\x4a\x75\x55\x64\x92\x1e\xa7\x8a\xc8\xfa\x92\xaf\xa7\x15\x42\xca\x7a\xe8\x33\xea\x34\x01\x9f\x18\x1f\x4b\x3a\xf6\x2a\xdd\x96\x61\x4b\x61\x1d\xf2\x08\x4b\xa0\x2d\x5b\xc7\xe9\xf5\xa2\x13\x1e\xc5\x04\x8d\xc9\x16\x21\xec\xa2\x9f\x99\x16\x5d\x14\xc3\x2d\x86\xb5\xc8\x9f\xd0\xc5\x63\xf0\x20\x6f\xfc\x19\x71\xeb\x93\xdf\x74\x3e\x9a\xce\x2a\xee\x17\xb4\x8f\x09\x41\xcc\x62\x40\xc7\x7f\x22\x37\x79\x5c\x3d\x11\x97\xf5\x39\x20\x2c\xc2\x59\xaa\x72\x84\x7a\x76\x26\x4f\x57\x6b\x79\x13\x4b\x3b\x93\xda\x7e\x56\x27\xa1\x88\xe6\x71\x97\x72\xa4\xaa\x65\xe7\x2f\xe4\xaf\x17\x91\x32\x16\x08\x29\x5a\xdc\x8c\xaa\x7d\xe1\xad\xf9\x4a\x68\xe5\xdd\xc2\xc3\x4b\x70\x60\x1f\xc2\x9e\x16\xda\x16\x3f\x87\xd0\x4d\x3b\xf6\x65\xb3\x99\xce\x20\xa8\x93\x02\x40\x89\x7a\x6c\xb4\xa4\x99\xf4\x43\x36\x38\x60\x3c\x3e\x4d\x92\x84\x8e\xc0\xf1\xd8\xcb\x25\x44\x50\x0b\x7a\xa2\x6d\xc0\xba\x62\x42\x75\xa4\x00\x84\x45\xb3\x8a\x08\x57\x89\x05\x02\x7f\x0e\x38\x78\x68\x60\xf4\x10\xd1\x1b\x35\x34\x1b\xdc\x88\xa3\xf3\x73\x8d\x69\xa2\xa1\x59\x82\x82\x2e\x9e\x71\x01\x2e\x93\x0e\x40\x5e\x8c\x90\x85\xca\x4e\x6f\x72\x99\xce\xdf\xfd\xfa\x08\xec\x23\x89\x16\xd1\xdb\x8d\xfe\x00\x2c\x1b\x7e\xcf\xf4\xac\x01\x5a\x23\x3b\x75\xfd\xc5\xd7\x32\xe4\x0e\xad\x89\x23\x74\x13\x41\x1c\x61\x5b\x0c\x02\xaa\xe9\xa0\x24\x83\x62\xad\x6e\x5e\xf5\x5e\xd7\x86\xb7\x45\xa2\x00\x09\x7c\xdb\x0b\x2d\x44\x15\x5a\x88\x2a\xa6\xf7\x67\xbd\x1a\x86\xd5\x78\x09\xdc\xbc\xf3\x84\x62\x6a\xe2\x9b\xd7\x81\xcf\xcc\x04\xb3\x66\x96\x9b\x09\xe6\xcd\x4c\xbb\x54\x74\x27\xca\xee\x8a\x3a\xee\xc0\x1b\x81\x33\xf1\x55\x4e\xfb\x9b\x94\xd3\xe2\x8a\x28\xbd\x13\x52\xb2\x7f\xb5\x9e\x64\x50\xb6\x78\x10\x19\xb6\x53\x2c\xeb\x9b\x7c\x7c\x91\x28\xcf\x6a\x79\x6c\x0f\x4d\xfc\x87\xa5\xed\x50\x1d\xf6\x93\x33\xf6\x80\x9c\xb1\xe1\x10\xc9\x29\x9b\x79\xf8\x90\xcd\x8c\x53\x9d\x58\x26\x52\xdd\x7c\xa8\x8d\xee\x22\xc3\x48\xa1\xb8\x6d\x8d\x72\x73\xae\x94\x2b\xe4\x86\x88\x29\xb2\xa2\xbe\x69\x1d\x57\x9b\x18\x34\x10\x2c\xb5\xde\x59\x1d\x59\x32\x4c\x50\x1d\x2f\xe9\x79\x49\x34\x91\x23\xc9\xf5\x07\x1a\x4f\xe5\xcc\x0d\x2d\x26\x89\x9a\x88\xee\xdf\x0c\x8c\xc0\x98\xd0\x76\x86\x0e\x12\x3a\x6a\xd0\x4a\x98\x77\x05\x55\xe5\xe7\x21\xa9\xed\x0e\x48\x55\xa3\xde\x5f\x72\xfb\x91\x97\xdd\xb4\x86\xe2\x1f\xc5\xc4\xd0\xe3\x07\x2e\x8a\x9a\x45\x27\x69\x6c\xaf\xf3\xca\xcc\xaf\x0a\xf6\xee\x20\x93\x59\x8b\x68\xd7\xa9\xc8\xc9\x73\xa6\xd2\x4e\x4f\x10\xe6\x09\x8b\x05\x3e\x41\x38\x4d\x4e\x14\xfe\xae\x43\xd1\x60\x10\xa7\xfe\x2d\x8b\x23\xbd\xa6\x8a\xc1\x3b\x4a\x37\x1b\xfe\xe0\xd4\xa0\xf5\xe9\xcc\xd9\x71\xe4\xc9\x09\x2e\x92\xe3\x53\x9c\x81\x33\x42\xdd\x16\x8d\xd3\x7b\x1c\xa1\xb3\xfc\x41\x7a\x86\xb2\xe9\x70\x58\xcc\x12\x69\x16\x38\xc7\xf9\x30\xe1\x0e\x94\xb3\x43\x96\x1b\x96\xe6\xeb\x7b\xe3\xef\xe5\x1e\x63\x89\x35\xfe\xc4\x54\xff\x9c\x13\x9a\xb5\x3d\xfe\xdc\x49\x72\x16\xab\xc8\x10\xfa\x75\x2e\x49\xe3\x84\x20\x47\x53\xd2\x89\x32\x6e\x50\xa0\xc5\x2a\x42\x98\x68\xfe\xac\x8d\xcd\x0f\xbd\xb9\xef\x64\xdd\x3d\x7a\x2e\xaf\x74\x55\xd2\x87\x9f\x99\xce\xdb\x03\x0d\xab\xac\x74\xde\xd5\x2d\xce\x81\xf2\xb2\xaf\x07\xf5\xb7\x7d\x50\xef\x3e\x91\xbb\x78\xa9\x8a\x79\x41\xf5\x6e\x11\x68\x12\xb7\x9c\x11\xb1\xe3\x2c\x58\xf9\xce\xa3\x78\x2a\x66\xe5\xc9\xa8\x87\xae\x30\x42\x09\xdb\xa2\xed\xfa\x95\x20\x39\x04\x20\xfd\x62\x07\xaa\xf8\x28\x25\x9f\x03\xe5\x8a\x58\x68\x0c\xc5\xdc\x8d\x7b\xea\x50\x9f\xf8\x4d\x88\xc2\xd8\x61\x34\x96\x59\xd1\x83\xde\xbc\x77\xed\x93\x36\x75\x3a\x90\x57\x6a\x93\xfa\xb4\xb7\xa0\x5f\xb5\x28\x9b\x67\xc5\x82\xe4\xfb\xc4\xbb\x29\xb5\x07\xaa\xfa\x14\xf6\x90\x48\xb8\xc3\x5c\x0d\xea\xd7\x38\x3a\x0a\x50\x7b\x75\x01\xb2\x0d\x26\x0c\x71\x72\x4a\xea\x6f\x42\x02\x9a\x0c\xc2\x7f\xfb\x51\x74\xa5\x44\x5b\x7c\x74\x82\xc6\x7a\xa0\x07\xee\xb0\xde\x8b\x84\xb6\x32\x17\x74\xaf\xcd\x5d\x90\xf9\x27\xd6\xb2\xf3\xe9\x66\x2d\x15\xa2\x6a\x25\x69\xc2\x9c\x21\x1d\xc2\x34\x79\x51\xa8\x32\x31\x45\xf8\x88\xe6\x2f\xd2\x17\x8a\xe1\xaa\xdb\xd6\x32\x88\xb0\x78\x8a\x30\x3d\x3e\x48\xef\x6e\x41\xe6\x5f\x49\xe0\xdf\xf9\xcd\x7a\x10\xca\x5a\x08\xbe\xfe\x4a\xa8\x7d\x05\xa7\x43\x09\xb5\xfb\x35\xa1\xf7\xdd\x5c\x0c\x35\x94\x04\x43\x5b\x0c\xa9\x8f\xef\x22\xa9\x82\xec\xd9\xc7\xd2\x54\x9a\xd0\x3b\xbe\x08\x5b\x9b\xb5\x5e\xb5\xf9\x31\xf9\x47\x91\x66\x9f\x56\xb7\xf4\x2b\xe2\xfd\x97\x3e\x29\xfa\xf6\xff\xb6\xa9\x63\x2f\xcb\xe7\xa1\x1a\x49\xc5\x1d\xfd\x64\x53\x68\xf9\x60\x64\x49\x83\x96\x33\x16\x78\x14\xba\xb8\x79\x95\xca\xab\xe0\x63\x12\xec\xcf\x5d\xcf\x45\xba\x7e\xfb\x09\xb5\xed\xdb\xd6\xee\x14\xa3\x98\x0a\xa1\x77\x3a\xdd\x04\x6a\x12\x47\x04\xa1\x8e\x4f\xf9\xa5\x2f\x2c\x4b\x47\xf5\xec\x93\x9f\x63\xe5\x14\x1f\x19\x50\x33\xf2\xd4\x95\x7c\x47\xfc\xbe\x24\x93\x20\xe4\xe9\x2d\x31\x8f\x8e\x6e\x28\x7e\x5b\x59\x3b\x16\x7e\x95\x06\x21\x6d\xdb\xdd\x9a\x57\x83\x5d\x3c\xe9\xe8\xff\x91\x74\x7e\x35\x8a\x86\x04\x33\xab\xec\xb0\x7b\x41\xe0\xed\xfa\xcb\x30\xae\x7a\xe4\x5f\xe9\x8b\xaf\x58\xf3\xd7\xa3\x2f\xea\x39\x73\xe3\x4b\xe9\x4e\x51\xa9\x29\xb7\xe3\x84\xb8\x96\xee\xc4\x6f\xae\xe8\x27\xc2\x63\x72\x27\x4e\x88\x30\xe9\x86\x0a\xe4\x97\x44\x05\x6c\x51\xa3\xb6\xbe\xe2\x82\xaf\xb8\x60\x1f\x5c\xd0\x49\xc1\xe6\xb7\x44\x0e\x75\x26\x83\x7a\x75\x0c\xf1\x49\x95\x16\xeb\x8f\x5e\x75\x3a\xa2\x85\x6a\x6b\xd1\xc0\xdc\x49\xb4\xd5\x1e\xc2\x25\x1a\xa9\x73\xff\xdd\x8d\x09\x99\xb4\x8f\xd6\xe2\xa7\xc5\x3e\x99\x02\xd6\x43\x9c\x46\xb7\x6b\xc8\xde\x21\xc9\x74\x36\x59\xb1\x40\xda\x2c\x6b\x4c\x0e\x11\xcd\x99\xa1\x7f\x15\xcf\xfd\x8b\xe3\x38\xe6\xb9\xca\xd8\x8d\xd1\x18\xc2\xf2\x4b\x8b\x4f\x2e\x05\x2f\xd6\x5f\xef\xf3\xff\xe6\xb0\x5e\xd5\x2a\xdc\xa9\x31\x81\x9b\xd7\x49\x43\x08\x60\xa0\x44\x3f\x87\xc5\x9e\x4d\x52\x43\x95\xdb\x9d\x19\xff\x91\x49\x22\x4c\xbd\x04\x51\x32\xc8\xa5\x10\x65\xb3\x89\x6d\x99\x47\x6a\xfc\xd3\x28\x1a\xb2\x59\x02\x72\x49\xd8\x1f\xd0\xdc\x10\xdb\x2f\xcd\xb5\x34\x48\x94\x5f\x89\x10\x21\x9d\x28\x8f\xbb\x28\x0a\x81\xba\x51\x26\x56\x59\xff\x8b\xd0\x04\x57\x69\x7e\xac\x0e\x69\x47\x01\xb0\xfd\xab\xab\xfc\x0a\xaf\xba\x61\x51\xb3\xf6\x82\x1e\x26\x57\xa8\xa6\x40\xb4\x10\xa9\xa1\xcd\x78\x3f\xa8\xcd\x78\x7f\x36\x18\xf8\x5f\x98\xeb\x57\x52\x35\x4d\x04\x6e\x64\x9d\xdb\xa5\xa3\xf8\x04\xb3\x52\xc4\xc5\x31\xc1\xd4\x93\x53\x5a\xc1\x1a\x3f\xcc\xf5\x52\x9a\xbf\x20\x1f\x64\xfd\xb9\x56\x1c\xfa\x5c\xab\x76\xd7\xc6\xde\xd8\x73\x87\xcb\x6a\xff\xf2\xbb\x6c\xa7\xfa\x2b\xef\xf4\x2b\xd3\xed\x27\xdb\x6d\xca\x7e\x17\x8f\xf3\xc3\x83\x1e\xe7\x29\xfb\xfa\x38\xff\x7b\xa1\x88\x3e\xe9\xe3\x3c\x65\x92\x88\x9c\xcc\xbb\x5e\x51\x1f\x6b\x7c\xf1\x11\x96\x63\xa1\xd7\x0f\x27\xac\x74\xf3\xd8\x73\xf6\xef\xf9\xbb\x2f\xa1\xf4\x56\xe2\x01\xa7\xf4\x86\x79\x42\x47\x6b\xbe\x8e\x5b\xcc\x26\x38\x9a\x34\x68\x2c\xbe\xdb\xd6\x56\x8a\x9b\xe7\x30\x43\x1d\xf4\x01\x95\x26\x20\x60\x36\x18\xf0\xb2\x5f\xaf\xc7\x75\xbd\xc3\x50\x8a\x6a\xc1\x61\x15\xdd\xf2\xeb\x37\x7f\x7e\x35\x4a\xb3\x56\x65\xea\x83\x60\xf8\xef\x9c\x7e\x66\xcb\xf9\xaf\x28\xf1\xf7\x89\x12\x3f\x05\x2b\x65\xb7\x94\x95\x77\x73\x84\xa3\xd6\xa7\x71\x60\xf3\x14\x44\x7e\x69\xf1\xc9\x2a\xfd\x2a\x3c\xf9\x7a\x2e\xfe\x7b\x8a\x18\x7e\xc5\xb7\x0e\x75\x03\x7f\x77\xe3\xbd\x92\x7e\x31\x61\xc3\x2a\xfd\xaa\x66\xf9\xf5\xb4\xff\x0e\xd4\x20\xee\x3a\xef\x87\x29\x41\xfc\xca\x67\xfe\xb7\x70\xe2\xf7\x10\x2d\x6a\x51\xd0\x25\x91\xc7\xe0\xf3\xe4\x13\xc8\x9d\xf6\xb1\x04\x71\x71\x5d\x0e\x95\x25\xd1\x1a\xf7\x27\x30\x51\x40\xc6\x2b\xb2\x78\x67\x01\x72\x7c\xaa\xd0\xcd\x51\x5d\xb6\xe2\x02\xa8\x41\xd8\x3e\xe2\xac\xb5\x04\x1a\x71\xc0\x43\x8f\x64\x4c\x87\x87\xb9\x75\x57\x5b\x51\x37\x32\x17\x87\x1a\x99\xeb\xd1\x1c\xa7\x5d\xed\x1b\xeb\xe6\xd4\x01\x63\x69\x87\x88\xeb\x56\xd6\xde\x3b\xba\x5b\x04\x72\xd0\x12\xd8\xea\x5f\x05\x49\xff\x32\xf7\x45\xd8\xa2\xd9\x62\x90\x20\xdb\xd2\x6a\xb5\xac\x6b\x35\x2f\x06\xf3\x78\xf7\xe9\xac\x99\xcd\xf0\x02\x9a\x37\xf5\xab\xeb\xb7\x63\xcf\xac\x5d\xea\xa4\xd9\x27\x89\x82\xa1\xd7\x25\xa0\x79\x2c\x27\x32\xe8\x0d\xf1\x20\xf9\x8e\x1d\xf2\xd7\xe3\xfe\x3b\x3f\xee\x07\xc9\xdc\xd6\x74\x1d\x72\x5a\xd9\xe5\xe9\x8b\xae\x49\x37\xf2\xa3\xea\xb6\xf1\x13\x7b\x02\x37\x6e\xbf\xe5\x48\x8d\xa7\xe7\xae\xea\xc1\x20\x66\x53\xf7\x35\x53\x9b\x7c\x87\xfd\xee\x7e\x57\xbb\x9e\xfd\x7e\xe6\x40\x6b\xc1\x57\x34\x27\xdd\xbd\x1a\x95\x3a\x62\x55\xaa\x09\x34\xca\xe4\x15\x61\xb1\x40\x63\xd1\xf0\x49\xf4\x89\x5c\xd4\x78\x78\xa0\x34\xc8\x6e\x78\x39\x62\x89\x25\x4d\x30\x4d\x4e\xce\xe8\x03\x79\x46\x87\x43\xc4\xa6\xd4\xf7\x72\x44\x67\xa5\x86\x46\xc0\x3d\x39\xa6\x0e\xd7\xe8\x30\x12\xb5\x10\xc5\x0c\xa6\x09\xb6\xbe\xe6\x3d\xed\x23\x44\xd9\xcf\x4c\xc7\x10\xb2\x58\xed\x63\x85\xde\xfb\x04\xa0\xb1\xdf\x53\xf2\xbf\x24\x45\xbf\x93\x6e\xd7\x5b\xdc\x42\xb7\x1f\x1f\x46\xb7\xdb\x45\xff\x64\xb4\xfb\x3f\x0a\x52\x7c\xf6\x13\xfe\x39\xcf\xaa\x68\x3f\xab\xc2\x9e\x55\xb1\xff\x59\x15\x8d\xb3\x2a\x1a\x67\x35\xa4\xe5\xda\x86\xc1\x9a\xd4\x46\xa3\xbd\x2d\x1a\x37\xd3\xb4\x9a\xf0\x47\xa1\x03\xd8\x62\xc0\x02\xfb\x06\xd8\x68\x07\x1b\xa1\x48\xcd\xbd\xc0\x06\x5c\xe0\x08\x9a\x37\xae\xc6\x9d\xee\xee\xf4\x0e\x33\xad\xea\x4e\xb5\xbc\x87\x6b\x55\xf7\x54\xab\xba\xa7\x49\x74\xc1\x79\x46\x52\x45\x38\x9a\x99\x29\xfa\xf1\xe5\x32\x4e\xd1\x60\x90\xf6\xb4\x1b\xad\x29\xa8\x2f\xd0\x07\x1c\x59\xc0\x29\x92\x74\x22\x47\x99\x24\x63\xf5\x2f\xce\x12\x7a\x56\xc4\x19\xe6\xe8\x2c\x1b\x0e\x51\xae\x29\xaa\x0c\x8e\x38\x7d\x58\x56\x9b\x43\xb5\x4b\xa8\x76\x29\xf1\x22\xa1\x67\xf3\x78\xa1\xaa\x2d\x8e\x8f\x6d\xb5\x85\x7b\xb9\x3c\x28\x08\x3e\xac\x6e\x22\xcc\x9d\xff\x95\x50\xfd\x5d\x13\xaa\x7b\x1e\x2c\xc0\x44\x5f\x05\xe3\x5f\x01\xea\x57\xb2\x09\x0a\x48\xc1\xbb\x18\x0c\x51\x46\x25\x4d\xb3\x3f\x77\x31\x0e\xda\xc7\x8e\xb0\xd6\x70\x43\xa2\x0e\x8d\x37\x15\xa7\x4b\xc1\x7a\xc0\x14\xa7\xd2\x64\xc0\xfc\x50\x1e\x64\x46\x1d\xd6\xf8\x0d\x8b\x97\x7c\x9d\x6c\x2b\x41\xb2\x44\x87\x04\x3b\xa0\x4e\xc6\x8a\xec\xcb\x19\x2b\x0a\x02\x32\xde\xaf\xce\x21\xbe\xa2\xb1\xaf\xce\x21\xbe\x3a\x87\xd8\xe5\x1c\xe2\xa8\x93\x73\x88\xa3\x43\xbc\x43\x54\xdb\xfd\x97\x73\x0e\x21\xc8\x9a\x1c\xf4\x8a\xd6\xe1\xdd\x21\x62\xa0\x97\x1d\x1d\xd5\x98\x24\x86\x26\x53\x3a\x33\x3a\x9f\x9a\xfb\x64\x45\x96\xe1\x5b\x8d\x7c\xc6\x6c\x5b\xf3\xd4\xed\xb0\x2d\xdd\x1e\x24\xc2\xd0\x93\xfc\x2a\x86\xff\x9d\x63\xf1\x83\x9c\x6e\x0b\xf2\x9e\x88\xcf\x16\x6b\xec\x2b\x7b\xf3\xbb\x86\xa8\x5f\xc5\x0f\x2e\x88\x61\x5d\x58\x51\x03\x8f\x31\x42\xe3\xa9\x98\x7d\x51\xfd\xd7\xfc\xaa\x58\x2e\xb3\x43\x94\xfb\x15\x04\x92\x84\x94\x11\xaf\x7c\x0d\xf6\x9a\xb3\x51\x67\xa9\xe3\xe8\x22\x70\x35\x5f\x0d\x67\x57\xbd\x20\x24\x1a\x0c\xe4\x66\x03\x8e\xc5\x45\xca\x16\x7c\x75\x26\x1e\x9e\x9e\x21\xe3\x76\x7c\x99\x71\xd5\x40\x8c\xfe\xa7\x38\x3e\x46\x98\x26\x64\x2a\x66\x58\xfd\x93\x90\x29\x53\xbf\xd8\x2c\xa1\x4e\xd4\x7a\xc8\x8d\x61\x96\xe6\xeb\x95\xf1\x2f\x7e\xc0\x99\xa5\x5f\x68\xc2\xb4\xa0\x97\x79\x7a\x13\xce\x78\x8c\xb7\x50\xf6\x9e\xe5\x49\x1b\x1a\xe0\x08\xcb\x98\x63\xea\xfb\xbe\xe6\xb3\x2f\xab\xf8\x0e\xc7\xf6\xeb\x8d\xf8\xf5\xc0\xfc\xea\x4e\x80\xb8\xf5\x3b\xaa\x78\x9e\x2f\x7a\x04\xb8\xa8\x8b\x96\xbe\x1e\x82\xaf\x87\xa0\xeb\x21\x70\xc1\x85\xd4\x39\xd0\x36\x89\x8a\xf7\x8d\x45\x85\x58\x8c\xdb\x49\x1c\x8a\x36\x9b\xba\xf8\x08\x96\x39\x09\xa8\x8d\x97\x2e\x67\xea\x39\x0a\x8c\x15\x3c\xe6\xbb\xe3\x2e\x6c\xb1\x2b\xd8\x7e\xce\xbc\xb6\xee\x94\x0e\x95\x65\x9b\x6a\xe5\x56\x2e\x76\xa7\x10\x08\x07\xa4\x3b\x87\xb8\xbe\x18\xa9\xd1\xf8\xda\xe6\x87\x28\xac\x57\xda\xf0\xe7\xf7\xc5\x74\xd7\x65\xda\xd9\xf0\xf6\x2b\x7e\xfa\x8a\x9f\x3e\x81\xb9\x8a\xf5\x0a\x0e\x6a\x20\x5f\xf2\x76\x96\xfc\xf2\x32\x3b\x50\x7b\x52\xd7\xfd\x2d\xe9\x4f\xea\x11\xfd\x7a\x1a\x94\x76\x05\xbe\x60\xa0\x1a\x45\x13\x96\xa6\xfb\xf7\x51\x40\x9b\xaa\x7e\xb1\x30\x2c\x2a\x4f\x0a\xf6\x15\x80\x22\x3b\x2c\x3f\x1a\x31\xe6\x49\x15\xb3\xe8\x0e\x20\x6a\xb1\xdc\x6c\xe4\xf0\x14\x62\xec\x9f\x8c\xe5\xf0\x74\xeb\x89\xfa\xa9\x27\x98\x90\x81\x48\xdd\x0c\x0b\x4c\x81\x41\x0b\x66\x1d\x91\xc3\x14\xa2\xf4\x96\x7c\xe2\x48\x37\x05\xeb\x7e\x3a\x7e\xab\x5e\x29\x60\x0e\x7b\xcd\xfa\x9a\xca\x2b\x5e\x1c\xea\x8d\xe3\xcb\x84\xf7\x09\x06\xeb\x31\x88\xb7\x4e\x19\xb6\x47\xed\x91\x0d\xa5\x41\x89\x59\xcb\xd5\xed\x54\x03\x5b\xc3\x0a\xc1\xab\xd7\x44\x8e\xa5\xf5\x91\xc9\x8c\x83\x4c\xcf\xde\xc9\xac\xb5\xba\xce\x0f\x81\x7a\x53\xfd\xa3\x43\x8b\x1a\xf5\xdd\xbd\xae\x01\x1b\x30\xb7\x73\xc0\xd2\x0e\x91\xa5\xd2\x15\xc9\xe8\x3f\x77\xde\x2d\x65\xd9\x35\x95\x69\xe7\xd2\x3a\x32\x68\x87\x82\x59\x9a\xe7\x74\xd9\x6d\xb8\x36\x02\xe0\x1e\xb1\xcd\xf6\x09\xaf\xd5\x21\xae\x4d\x9a\x5f\x11\xd1\x71\x0d\x20\xb4\x53\xd7\x58\x39\x7b\x85\x16\xe9\xee\x22\x7f\x0f\x0f\xda\xfb\x78\xe7\xec\xe8\x3a\x6b\x2f\x5f\x44\xdd\x5d\xf7\x74\x75\x0f\xd3\xdd\x61\x46\x47\x4b\xfb\x7d\x8c\xba\x3e\xde\x2a\x26\x68\x77\xd3\x59\xad\xb8\xbb\x9a\xe4\x5e\x8a\x4b\xdd\x1f\xe0\xf7\x78\xae\xd9\x43\xba\xd5\x95\xcb\xfc\x14\x64\x75\x0b\xf1\xde\xa1\x82\x28\xd4\x05\xd4\xa9\xf1\x82\x2d\x88\xc8\xe7\x5c\x74\x2c\xdd\x71\x08\xd7\x9d\x0a\x59\xca\x63\x0f\x57\xd7\x7b\x99\x32\x77\x96\xdc\x77\x58\x53\x2a\x33\xd2\x11\xf3\xde\xe5\x4c\xd3\x9d\xac\x0e\x2e\x19\xdd\x5f\xe7\xd7\x73\x5f\x2f\x91\x5d\x0d\x48\x9a\xbe\x1a\x31\xc5\x1c\xa7\x38\xc7\x05\xce\xf0\x1c\x2f\xf0\x1a\x5f\xe1\x25\x5e\xe1\x1b\x7c\x89\x2f\xf0\x7b\x7c\x8e\xaf\xf1\x53\xfc\x01\xbf\xc4\x8f\xf0\x1b\xfc\x0a\xbf\xc3\x8f\xf1\x6b\xfc\x23\xfe\x3b\x7e\x8b\x9f\xe0\x17\xf8\x39\x7e\x86\x7f\xc0\xff\xc4\xdf\xe3\xef\xf0\x3f\xf0\x4f\xf8\xcf\xf8\x2f\xf8\x67\xfc\x27\xfc\xc7\x8f\x25\x86\x5b\x2b\x3c\x02\x2a\xe5\x7b\x43\x84\xde\x12\x56\xac\xb4\x24\x60\x7c\x74\x82\x2f\x89\x0c\x38\x20\x73\xd4\xd3\x76\x67\xc3\x8a\xa8\xd9\xab\x5d\xd1\xa9\xdd\xc7\x86\x06\xda\xab\x69\xd6\xb1\x69\x4b\x32\xed\xd5\x38\xed\xd6\xb8\xa2\xb0\xf6\x6a\x97\x77\x6b\xd7\x10\x64\x7b\x35\x9d\x76\x6b\x5a\xd3\x6f\x7b\xb5\x9c\x77\x6e\xb9\x90\xfb\x2d\x73\xd1\xb1\x65\x4d\x1d\xee\xd5\x74\xd6\xa9\xe9\x27\x96\x98\xdc\xab\xed\x79\xb7\xb6\xc9\x7c\xaf\x56\x17\xdd\x5a\x15\x7c\xbd\x57\xb3\xeb\x4e\xcd\x3e\x03\x62\xf5\xbb\xfd\x40\xee\x6a\x8f\xa6\xf7\x6a\x78\xd9\xb1\x61\xb6\xd8\x73\xc4\xab\x4e\x0d\xff\x51\x11\xd9\x7b\xb6\x7c\xd3\xa9\xe5\xe7\x6c\x3f\x98\xb8\xec\xd8\xaa\xa1\xe0\xf7\x6a\xfb\xa2\x63\xdb\x8a\xe0\xdf\xab\xe1\xf7\x9d\x1a\xfe\x0f\x4e\xd9\x5e\xcd\x9e\x77\x6a\xf6\xc7\x74\xdf\x9d\xbb\xee\xda\xee\x5e\xad\x3e\xed\xd4\xea\x4b\xc3\xab\xec\xd5\xf4\x87\x4e\x4d\xbf\xa2\xeb\xfd\xb6\xed\x65\xe7\x66\x1f\x41\xcd\xbd\x1a\x7f\xd4\xa9\xf1\xd7\x8a\x6f\xda\xab\xdd\x37\xdd\xda\x05\x36\x6b\xaf\x86\x5f\x75\x6c\x58\x65\xec\x09\x70\xef\x3a\x36\xad\x78\xb8\xbd\x1a\x7e\xec\x35\xdc\x4e\x4f\xbe\xd1\x2c\xdf\x5e\x2d\xbf\xee\x34\xe4\x37\x5c\xec\xbb\x16\x3f\x76\x6a\xf8\x6d\xba\x27\x0a\xfa\x7b\xb7\x66\x81\xa9\xdc\xab\xe1\xb7\x7b\x34\x7c\xc0\x31\x79\xd2\xad\x79\xc3\xdb\xee\xd5\xf4\x8b\x4e\x4d\xff\xe4\x58\xe1\xbd\x1a\x7f\xde\xb1\xf1\x7d\xd7\xe3\x59\xa7\x76\xff\xb2\x57\x9b\x3f\x74\x6b\x53\xf3\xe5\x7b\xb5\xfc\xcf\x6e\x64\x8b\x66\xe3\xf7\x6a\xf9\xfb\x6e\xb7\x89\x71\xcb\xb0\x57\xd3\xdf\x75\x3b\xda\x19\xdd\x13\x81\xfe\xa3\x1b\x28\x1b\x91\xc2\x5e\x4d\xff\xd4\xa9\xe9\x17\xe4\xc3\x7e\x2b\xf1\xe7\x6e\x17\xa0\x11\x2a\xec\xd5\xf4\x5f\x3a\x35\xfd\xbd\x8e\x94\xb1\x57\xcb\x3f\x77\x6d\xf9\xa0\x71\xff\xa9\x53\xeb\xff\x59\x90\x62\xbf\x1d\xfc\xa3\xd7\x6e\x97\xc7\x9a\x86\xef\x85\xcf\xa3\xc2\x82\xc9\x28\x93\x24\xf8\x08\xdc\x27\x0f\x12\xb9\x85\x02\x6d\xf9\x90\x7d\xd9\x5a\xff\x61\x62\x0a\xb4\xe5\xc3\x22\x77\x5c\x0a\xcf\x01\xcd\x17\xb7\x63\xf5\x1e\xe2\xbc\x56\x21\xce\x89\x36\x6c\x13\x3d\x06\x4e\xbc\xed\x23\x20\xd1\xc1\x03\x03\x1e\xf4\x6b\x6e\x47\xa0\x91\x2d\xd2\x5a\x0f\xdc\xaf\x6f\x1f\xed\x5d\x60\x93\x3e\x7f\x98\x9c\x4c\xf8\x98\x15\x59\xb6\xc7\x3a\xba\x27\xd8\xcf\x06\x50\xcd\xa5\xf1\x1d\x34\x41\x0c\x10\x18\xc1\x66\x03\x81\x05\x41\xd2\x81\x77\x79\x83\x79\x78\x3a\x11\xc7\xa7\x63\x08\x52\x72\xea\x7b\x85\x39\x3e\x0d\xfb\x85\xb1\xde\x99\x88\x31\xbc\xee\xba\x34\x16\x58\x7e\xc5\xa5\xf1\xce\xc3\x81\x1e\x8e\x26\xff\xf1\xe6\xe5\x8b\x91\x1a\x14\xbb\xa4\xcb\x9b\x98\xa0\x24\x49\x6a\x69\xd2\xbe\x47\xd3\xfc\xa9\x9a\x21\xf4\x5b\xaa\x4e\xea\x34\xb0\xcc\xdc\x6b\xb5\xb4\xd0\xfd\xd7\x85\x24\x63\x14\x69\xba\x6e\x3e\xfb\x6f\x36\x91\x53\xff\x6a\xe6\xee\x37\x3f\xeb\x2e\x69\x4f\x8c\x63\xc6\xf6\xf9\x51\x4e\x9b\xef\xa2\xc1\xa0\xa1\x21\x74\xa0\x07\xa7\xdb\x6d\xc0\xcb\x63\x6d\x51\xc1\x4f\x12\x1a\x0c\x76\x15\x01\x75\x41\x50\x6f\x0a\xed\x00\x9b\x17\x42\x10\x36\xbf\xb9\x77\x7c\x51\x2c\x97\x44\x1c\xaf\x79\x46\xe7\x5d\xf5\xca\xab\xca\x57\xf6\x76\x19\xad\xd2\x0f\x8f\xcb\xa6\x8f\x8d\x3f\xa5\xc5\xdb\x34\x7f\xf7\xdc\x40\x88\x5d\x8d\x63\x32\x4a\xe7\x92\xbe\x27\xa1\xcc\xbd\x75\x36\xea\xd6\x4e\x06\xff\x9d\xed\xea\xe4\x41\x7d\xbc\x67\x56\x5f\x2b\x3c\xee\xfc\x8a\x2e\x65\xac\xfd\x98\x49\x74\x21\x48\xfa\xae\x17\x6e\x1f\x14\x3a\x25\xda\x6e\x7b\x64\x44\x18\xb4\xa5\x0a\xe4\xaf\x60\x89\x93\x5b\x41\xfe\x51\x50\x41\xf2\x9f\xd8\x05\x2f\xd8\x82\x2c\xbc\x41\x28\x7a\x26\x9f\x5f\x11\x35\xc5\xaa\x47\x4f\xb5\x93\x8a\xd4\x51\xe4\xdb\x2b\x22\x96\x5c\xac\xde\xc8\x54\x16\x79\xc8\xf1\xa7\xda\x97\x87\x27\x93\x28\x2f\xe6\x73\x42\x16\xd1\x38\x32\x03\x89\xb6\x8a\x40\x58\x08\xbe\xfe\x4f\x37\x47\x37\xb0\xb9\x1a\x7f\xf6\x9a\xa4\x39\x67\xe3\x88\xca\xfe\x05\xc9\x38\xbb\xcc\xfb\x92\xf7\xd3\xfe\x37\xaa\xd6\x37\x7d\x55\xa3\x2f\xaf\x52\xd9\xbf\x4e\xf3\x7e\x9a\x09\x92\x2e\x6e\xfa\xa2\x60\x8c\xb2\xcb\xa8\x7d\xf0\x98\x8c\xf2\xb5\x22\xf1\x2b\x8b\x05\xba\x9c\x23\xbf\x63\x1c\x5c\x7e\x7c\x12\x4e\x37\x9b\xf9\x51\x4b\x03\xaa\x19\xb0\x2e\x7a\x1c\x2f\xd9\x25\xa7\xec\x72\x9f\xa5\x11\x24\x97\xa9\x90\x0a\x3b\xd5\x57\x68\xb4\xd6\x23\x8a\x11\x59\xf4\xd3\xcb\x94\xb2\x96\x45\xb2\xc0\x17\x00\x29\x2c\xc2\x40\xd9\x93\x00\x6c\xe6\xf2\x95\x95\x03\x1b\x52\x82\xf6\xa8\x82\x13\x2c\xcc\x6d\x4f\xec\x1a\x9e\xc9\x07\xf6\xf7\x99\x1c\x0e\x91\x98\xca\x59\x42\xa6\xd2\xdd\xf2\x62\x5b\xd1\xaa\x74\x2a\x94\x02\x21\x6c\x75\x96\x93\x13\xa3\x3f\x0a\x26\x8f\xab\xf4\x03\xa0\x4a\x77\xe8\xab\x47\x0e\xf5\xba\x02\x85\xc4\x5a\xb9\xf7\xf0\x5d\xd6\xcd\x9d\xbb\x07\x5b\x77\x10\xbe\x2b\xe4\x9f\x08\x59\xff\x90\x4a\x92\xcb\x8e\xfb\xfd\xce\x55\xf8\x8d\x1e\x88\xe3\x53\xb4\xbd\x03\xf1\xeb\x3e\xe0\x42\x35\xd7\xae\xbd\x58\xc3\xd7\xaf\x57\x55\xa6\xf9\xbb\x63\x77\xe9\x87\x8a\xc0\xd5\xbc\x8f\xd2\x61\xf9\x9e\x4b\x2e\x09\xd3\x8a\xf3\xaf\x0b\x26\xe9\x8a\x8c\xae\x85\xef\x55\x41\x1a\xe4\x7e\x86\xf2\x6b\x2a\xe7\x57\xb1\x8e\x44\x98\x98\xb0\x93\xb7\xf3\x34\x27\xfd\x93\x71\x49\x99\x5e\x88\x62\x2d\xe3\xc8\x5c\xab\x98\xa0\x1e\x14\x39\x1d\xab\x3f\x11\x61\x8b\xa8\x2c\x9c\x4b\xbe\x8e\xd1\x76\x8b\x53\xac\x36\xc2\xf3\xa3\x4a\x2b\x7e\x95\x5d\x32\xb7\x7c\x48\x5d\x9d\x91\xea\x13\xcd\x13\xf5\x13\xa7\x7e\x98\xac\x05\x59\x12\x11\xa3\x1e\x99\x8a\x59\x4c\x91\x76\x7b\x98\x8e\x04\xc9\x79\xf6\x9e\x60\xf5\x4b\xdd\x7f\xc8\x38\xe4\x3b\x3a\xc5\x85\x6f\xf3\x90\x6f\x36\x71\x0e\x46\x00\xc1\xd8\xb6\x64\x30\x88\x4b\x8d\x7c\xbe\x2c\x5f\xde\x27\x16\xc3\xc5\x68\x1c\xb2\x61\x19\x9d\x9f\x93\xf9\xb9\x39\x28\xe7\x83\x41\x2d\x21\x46\x10\x85\x1d\x67\x49\x3a\x32\x10\x33\x32\xe6\x05\x71\xe1\x98\xa4\xac\x5a\x29\x29\x70\x76\x90\xea\xf1\x55\x9a\x5f\x25\x64\x24\xd2\x39\x51\x48\x31\xcb\xde\x10\x29\x33\xb2\xd0\x1f\xd6\xf8\x02\x8c\x2e\x92\x00\xcc\xac\x52\xf1\x2e\x66\x08\xe7\x09\x8f\xbd\xa5\x7f\xa5\xc7\x8d\xa3\x34\xcb\x22\x4c\x15\x02\x52\xad\xd5\x10\xe7\x49\x92\x24\x0e\x2d\x3a\xcb\x11\x8b\x3c\xb5\xa7\x4c\x87\x2a\x87\x43\xb7\xd5\x44\xb1\x44\x8a\x40\xe0\x9b\xcd\x11\x9f\x8a\xd1\x0d\x25\xd9\x42\x1d\x31\x6d\x12\x32\xb3\x8d\xe5\x0a\x6f\xea\xb1\xc3\xee\x92\x46\xb8\x37\x63\x0f\x61\xb7\xce\xc6\x35\xbe\x5d\xb2\x31\xc3\xa9\xb8\xcc\xc7\x53\x32\xdb\xa2\xd1\x39\x5c\x3c\x65\x68\xb9\xd3\xa3\x24\x11\xa3\x73\x45\x2d\x67\x44\x35\xa6\x70\xa4\x02\x89\x14\xf4\xf5\x45\x19\x29\x2e\x9d\xe4\x71\x81\xc6\x45\x5b\xa4\x39\xa2\x4d\x52\xb6\x48\x21\x4a\x6f\xfd\xfd\xf5\x84\x75\x34\x19\x60\x8a\x61\x36\x2c\xbc\xe6\x2a\xcb\x94\x82\xdd\xad\xb6\xa4\x92\x22\x1c\x18\x88\x01\x9e\x77\xe4\x46\x2d\x5b\x75\xb8\x9e\x70\x63\x2a\x67\x2d\xf6\x1a\x1e\xe6\x22\x6c\x9e\xae\xf3\x22\x4b\x25\x59\x00\x1a\xdb\x13\xd7\x7d\x2e\x16\xa3\xdc\x68\x6b\x24\x73\xbe\x4a\xdf\x91\xe7\xc6\x84\x68\xdc\x60\x2f\xe0\x9a\xb8\x24\x32\x8e\x0c\x7d\x11\x79\x21\xaf\x0d\x3d\x00\x0e\xe0\x54\x39\x05\x2f\x68\x8b\x4d\x49\x2d\xc0\xb8\x6b\xa1\xde\x13\xa6\xd6\x48\x5b\xcc\x28\x10\xfe\xfc\x5c\xa7\x86\x06\xd3\x80\x5d\x07\x7e\xf1\x77\x18\x30\x86\x11\xbd\x48\x57\x44\x7f\xe6\xc5\x45\x3e\x17\xf4\x22\x44\x44\xc1\xa4\xf9\xc5\xdf\xb1\xd0\x3f\x5d\xd5\x9e\x1c\x71\x16\x0b\x75\x07\x68\x2a\xe5\xe8\xd4\xac\xda\xed\x82\xe6\x6b\x9e\x13\x7f\xa5\xd9\x66\x13\x83\xc1\x97\x1c\xf1\xe5\x12\xaa\xa9\x5b\xf5\xae\xa5\x0b\xdc\xa2\x9f\x76\xbd\x14\x48\x6a\x59\xe8\x63\x6d\x09\x94\xd4\x55\xca\x9c\x58\xcc\x78\x81\x75\xb1\x28\xab\x96\x23\xa2\x60\xa3\x0b\xca\x16\xda\x8f\x91\x37\x73\xba\x8c\x69\x95\xbf\x34\x77\x04\x9d\xca\x59\x49\x46\x36\xb9\xdc\x92\xaa\x54\x77\xde\xc9\x59\xfa\x80\x9c\xa5\x40\x4b\xa6\xbe\xe4\x28\x05\x34\xc9\x06\x03\x66\xec\xde\x6e\xf5\x55\x27\x6c\x9c\x4c\xcd\x44\x95\xf6\x04\x39\xb6\x25\x9d\x85\x8b\x1a\x8a\x81\x74\xfa\xa5\x28\x5f\x8e\xac\x15\x82\x50\xa0\x71\x17\xaf\xbd\x36\xdb\x7b\xbc\xe2\x0b\xba\xa4\x44\xe4\xc7\x2b\xfa\x81\xb6\x18\xc3\x78\x15\x2d\x11\x29\xc2\xd9\x55\x1e\xfe\x20\x53\x0f\x75\xfb\x5f\xa5\xf9\x1b\x22\xbf\x83\xc6\x0c\x21\x7c\xa4\xc8\x4c\x95\xf1\x53\x4e\x16\x3f\x9a\x51\x9b\xd4\x0b\xbf\xa0\xc4\x54\xd3\xb4\xe7\x55\x12\x3f\x49\x92\xd3\x7b\x27\x8a\x24\x69\xe4\x9c\x22\x4c\x6a\xf4\xd5\x61\x8e\xbe\x75\x29\x3b\xba\xdc\xfa\x6d\x21\x96\xa2\x7a\x63\x57\xaf\x21\x3c\xa6\x4b\x35\x2e\x75\x9e\x40\x21\xe7\x55\x2a\xaf\xdc\xd1\xd1\x76\x2c\xf5\xdc\x9e\x53\xdf\x3b\x77\x9b\xb2\xad\xab\x38\xba\xdb\xda\x5f\xa2\x71\x6d\xc9\x70\x75\x39\xc6\x8d\x05\xda\xa2\x6d\x2f\x34\xbd\xdb\x4a\x33\x63\x11\x10\x32\xe0\x5a\x53\xe3\xd3\x7b\x27\xb8\x3a\x13\x8d\x45\xeb\x5b\x3b\x3e\x3a\xc5\x01\x38\x50\xc9\x1e\x8f\x1b\xd2\x95\xd4\xd7\x8d\x68\xe5\xa1\x15\x19\xa1\xc7\xb9\xab\x76\x73\x2a\x68\x8b\x15\x97\xb6\xab\x52\x50\x9c\x81\xb6\xb8\xe4\xd2\xee\xaa\x1d\xe0\x01\xd1\xb6\xbe\x41\x21\x36\x53\xdd\x2e\xa1\xe3\xa1\x33\x6a\x00\x4f\x30\x8d\x11\x64\x6d\x31\x58\x59\xb4\x37\x59\xd9\xaa\x4a\xc5\x05\xb9\x28\x2e\x43\xfa\xb5\x50\x0f\x72\xed\x00\xee\xe2\x00\x3d\xac\x72\x88\xd8\x6f\x38\xec\xf9\x58\x95\x25\x25\x0e\x7d\xc0\xce\x86\x43\x69\x8f\x12\x60\x52\x75\x60\x08\x61\xcf\xd9\x82\x7c\x78\x20\x06\x83\xd8\x4f\x48\x04\x0e\x89\x42\x58\xb1\x7a\xad\xf9\x68\x90\x80\xb0\x62\xa5\xb7\x19\xfa\x02\xe2\x07\x96\x31\x42\x30\x90\x33\x76\x86\x7c\xb3\xc7\xa8\xac\x1e\x61\xe9\x3b\x21\xd0\x79\xba\x2d\xf0\x40\xc0\x12\x56\x69\x6f\x1b\x53\x74\x80\xc5\xa4\x91\x43\xaa\xb5\x08\xd2\x32\x59\x9a\x5b\xd1\x05\x59\xe8\x03\xa8\x92\xde\xa8\x73\xe5\x27\x98\x51\x7b\x25\x8a\xf9\x9c\xe4\xf9\xb2\xc8\xca\xb4\xc7\x9a\xc4\x27\x65\x0a\x18\x6e\xfb\xed\x3c\x86\xb3\xe8\xa7\x3c\x67\xf3\x4a\x35\x43\x12\x3e\xe6\x05\x93\xe3\x13\x0c\x02\xc9\xef\x53\xb6\xc8\xc8\xb3\x22\x5b\xd2\xcc\xf4\xe7\xa5\x6b\x7d\x24\x9d\x4c\x19\xad\x1c\x2d\x0d\x83\x79\xb1\x26\xc2\xa7\x41\xdd\xbd\x8f\x0c\x39\xda\x94\x70\x25\xd3\x99\xce\x0b\x88\x34\x92\xe9\x6c\x8b\x35\x5a\x79\x94\x65\x01\xab\xf1\xe9\xac\x07\x75\x43\xe2\x14\xd2\xda\x25\x3e\x69\xcd\x72\xc4\x8c\x19\xf0\x8e\x86\xc3\xa2\x99\xb6\x2c\xbf\xe1\x58\xa0\x2d\x0e\xb4\x3c\x6e\xda\x07\x94\xe4\x0b\x4f\xc4\x19\x7f\x20\x86\xea\x7c\x71\x3d\xff\x34\x91\x53\x3e\xeb\xa5\x8a\xa7\x32\x90\xb4\xd9\xa4\x40\x24\x8e\x16\x64\x2e\x88\x5a\x7a\x07\xbc\x1e\xe0\x23\x9c\x5a\x79\x00\x41\x98\x0e\x06\xd4\xfa\x22\x50\x75\xd1\x56\x9a\x79\xc7\xf0\x44\x1a\x16\x64\xd5\x8d\xf2\x2b\x10\x1e\x61\x62\x16\x90\xb2\xc6\x38\x7c\xc8\x8b\x2c\x55\x1b\x2a\xe8\x0f\xb8\x75\x5d\x61\xe0\xb6\xb7\xf3\x65\x56\xe4\x57\x50\x29\x8f\xd1\x16\xfb\xdf\x3e\xb8\x96\x64\xec\x74\x86\x45\x72\x72\x26\x1e\xdc\x01\x11\x67\xc3\xa1\x40\xc4\x48\xf8\x5b\x8a\x4e\xc5\x4c\x2f\x60\xaf\x15\xd8\xc3\x0f\xb5\x7a\x10\x3e\x1e\x15\x80\x47\x45\x89\x47\xc5\xac\x77\x74\xea\x1e\x7b\x8c\x61\x38\xcd\x9f\x51\x46\xf3\x2b\xb5\x42\x83\x81\x16\x09\xc7\xd4\xd1\xc9\x72\xdb\x3a\x54\xb3\x5e\x3e\x39\x31\xb2\xdb\x0c\x95\x90\xc3\xf0\x2c\xd1\x27\x5e\x47\xf4\xb9\x73\x95\x9c\x48\xa4\x75\x95\xe8\xac\xc7\x2b\x20\x1b\x1b\xec\xa1\xbe\xfd\xa2\x31\x57\xf8\x99\x03\xa9\xa7\x66\xc6\x0d\x78\x32\x6b\x6f\x5c\x85\x3e\xd3\x5e\xd0\xed\x8c\x87\x5b\x55\xbe\x9b\x9c\xe6\x54\xee\x38\xb4\x67\xc3\x61\x5a\xd9\xfb\x40\xd1\x69\xea\xf6\x5e\x41\x63\xc3\x83\x7c\x79\xfb\x46\x77\x21\x1f\x05\xb7\x8d\xb5\x68\xe1\x75\xe1\x76\x54\xfd\x82\xb3\x86\x9d\x27\x48\xb4\x1c\x31\xbb\x2c\x40\xc2\x1b\x99\xd2\xe8\x9c\xb3\x67\x94\x81\x6d\x4b\xc5\xab\x6d\x4b\x27\xae\x0d\xc3\x5c\x93\x86\x1c\xaa\xe7\xad\x88\xde\x0e\x7b\x8b\x01\xae\x50\xa0\xcd\x26\x8d\x32\xe5\xed\xa7\x4a\x8d\xe3\xfb\xe1\x62\xe6\xfa\x83\x32\xdf\xaa\x22\x15\x00\x31\xdd\x99\x1b\x11\xba\x6b\xe4\x96\xb7\x23\xf8\xe3\xc1\x25\x97\xcc\x19\xf8\x9f\x97\x15\xdc\x82\x80\xe1\xf3\xbc\x9d\xb0\xdd\xf4\x16\x88\x92\x34\x85\x71\x07\xc3\xa7\xc5\xe7\xed\xf2\xa8\x5c\x82\x33\x04\xcd\x3b\xee\xc5\x69\x36\xcd\xcf\xda\x88\x3c\x1a\x77\x65\xf4\x8d\x40\x14\x94\x44\x44\x23\x74\x90\x11\xd1\x1a\x6f\x53\x39\x00\x6c\x4f\x8e\xce\x8d\x35\xcf\xc2\x82\xd0\x68\x9e\x66\x99\x3e\x28\x01\xb2\x98\xfb\x12\xd0\x54\x7b\x36\xfa\x20\xc7\x50\xfc\x9c\x0b\x7a\x49\x99\xf9\xa8\x72\x39\x75\x5a\x1a\x97\x6c\xdb\x38\x3e\xc1\xac\xc1\x23\xa2\x58\x0b\xcd\x30\x47\xf8\xdc\x2e\x23\x88\x9d\x08\x88\x17\x0f\xe0\x50\xdf\xda\x01\x94\x9c\xa9\x4b\xb2\x2d\x24\xd4\x68\x20\xf9\xc5\x43\x44\xa4\xb3\x77\xc3\xb7\x34\x77\x45\xc7\x8a\xe4\xe7\x6f\x40\xff\xa4\xc9\x1c\x44\x0f\xca\x82\xd1\x50\xe3\x59\x7f\x6a\xc3\xe8\x61\xb4\xc5\xe7\xe5\x11\x7e\x29\x5e\x58\x9c\x51\x0b\x12\x3a\xe2\xa2\x72\xd6\x71\x05\xbb\xd0\xdc\x92\xae\xb5\x5a\x17\x9c\x67\x71\x14\xee\x01\xea\x99\xce\x8e\x4e\xb7\xa8\x47\x15\xd3\x2b\xb9\xbc\x59\x93\xc4\x4c\xde\x6c\x7e\x08\x6c\x5c\x59\x84\xe1\xad\xd1\x44\x0e\xcb\x73\x7a\xc9\x50\xec\xb5\x85\x59\x93\x99\xc6\xb7\x73\xce\xb4\x53\x23\x2e\xc6\xf4\x2e\xd1\x5e\xed\xe1\xab\xcb\x21\xde\x23\x84\x93\x95\xc4\x0c\x06\x64\xc4\xd2\x15\x49\x92\x84\x6f\x83\x8f\x64\x35\x71\xb0\xec\xd5\xf9\xd1\x37\x56\x3a\xba\x50\xcc\x60\x2c\x3d\x79\xf1\xb9\x55\xb2\x41\x68\x4a\x66\xee\xed\xb8\x24\xd2\xb7\x15\xa1\x4c\xe9\xfe\xaa\xb3\xba\xd4\xc4\xff\x28\x35\x5a\xfa\x0b\xbb\x8d\x66\x53\x53\xd8\xa3\xf8\x16\x9e\x33\x08\x5e\xb2\xb1\xac\x1c\xec\x2d\x16\xa8\x7c\xe1\x38\xe4\xe4\xbd\x7a\xfa\xfa\xd9\xcb\xd7\x3f\x9e\xbf\xfd\xf9\xd5\xd3\xf3\x1f\x9e\xbf\xf8\xd3\xd3\x27\x49\x2d\xf5\xa7\x17\xe1\xf4\x27\x4f\x9f\x3d\xfa\xe9\x87\xb7\xe5\x91\xbd\x24\x96\x76\xb0\xb7\x71\xc0\x11\x59\x36\xcd\xdc\x0b\xec\x0c\x5e\x98\xe9\x42\xdf\x39\x10\x56\xec\x92\x27\x14\xeb\x07\xcd\xa4\x79\x95\x37\x16\xf8\x34\xb8\xc0\xa7\xfe\x02\x9f\xfa\x0b\x1c\xa0\x6d\x77\x07\x7d\xe3\xc9\x89\x62\x27\xce\x38\xa8\xf7\x71\x1f\x73\xf3\x59\x29\xea\x2a\x31\x33\xc3\x10\x74\x71\x6b\x90\x55\xa4\xf0\x8a\x9e\x5f\x0a\x82\x62\x9c\xb6\xad\x63\x14\x4a\x8d\x70\xde\xba\x1f\x51\x30\x39\x82\xd7\xb2\xd0\xbe\x46\x81\xc4\x08\x67\x8a\xac\x9e\x27\xb7\xd6\x19\x9b\x11\x7b\x19\x69\xbf\xfd\xac\x91\x29\xe3\x13\xac\x4e\xba\xce\xd4\x8f\x6d\x33\x5c\x3d\x56\x20\x28\x13\x05\xfb\x81\x73\x40\xbe\x5a\xf2\xa2\x52\x2b\xaa\x03\xba\x79\xc3\xeb\xbc\xbd\x59\x93\x71\x8a\xcf\xc9\x87\x35\x99\xcb\xfc\x07\xca\xde\x91\xc5\xcf\x94\x64\xd0\x9a\x06\x5c\xfd\xd4\xa1\x28\x19\xc3\x62\xe7\x1e\xef\x7f\x74\x8a\x69\x0e\x64\x8e\xfe\xe9\xf8\xfb\x1a\xb6\x4d\xd9\x22\x8e\x6c\xb6\xc6\xd2\x3e\x93\x80\xbd\x2c\xd5\x50\x49\x85\xeb\x66\x6d\x49\xfd\xd5\x82\xd1\x19\x97\x71\xb5\x55\x20\x4a\x9a\x31\xa5\xf3\x27\x82\xaf\xd7\x8a\xe4\xaa\x0d\xa9\xec\xb6\x3a\xbe\x9d\x51\x81\x4c\x9c\x22\xd7\x28\x9a\x80\xfe\x8e\xfa\x39\x6e\x96\x2a\xbb\x43\x13\xa3\x01\x12\x2e\x58\x4e\x63\x12\x2d\xed\xef\x46\x39\x6f\xc4\x68\x12\x59\x15\x8f\x71\x74\x9d\x52\xa9\x7e\x6d\xd5\xd2\x9a\x91\x05\x16\xa2\x6d\xf2\x5d\xe6\xeb\xcd\x64\x30\x38\xda\x35\xb0\x2d\xc2\xe7\xa0\xbb\x3c\x3e\x35\x1c\x44\x9b\xb4\xd0\xe7\xbe\x34\x9b\x5e\x76\x33\x51\x09\xe3\x86\x77\x68\x7f\xd8\x47\x27\x96\xdf\xb6\x24\xd5\x2b\xc1\xe7\x84\x2c\x62\x39\xfa\xf9\xf9\xd3\x1f\x9e\x3c\xfa\xee\x87\xa7\xe7\x8f\x5f\xbe\x78\xfb\xfc\xc5\x4f\x4f\x6d\x60\x46\xa3\x57\xb1\x83\x5a\xe9\x37\x29\x54\xf7\x46\x61\x1d\xfd\x49\x34\x8c\xd9\x66\x13\x45\x68\x68\x13\xe5\x50\xa0\x6d\x1c\x19\xfa\x46\x9d\x5f\x7c\x7c\x8a\x4f\x70\x54\x6a\x60\xe9\x10\x5b\x6a\x86\xcd\x07\xd5\x03\xf5\x35\x23\xa7\x52\x01\xea\x3f\xe4\xc3\x3a\xa3\x73\x2a\xb3\x9b\xbe\x42\x9a\x64\x11\x69\x85\xc1\xda\xea\x06\xb6\xd0\x87\xc1\xa6\x5c\xa5\x02\x3c\x47\x01\xcf\xf5\xba\x18\xc8\x50\x2a\xa4\x5d\x84\x36\x9b\xe8\x41\xc1\xde\x31\x7e\xcd\x1e\x46\xbd\x66\x50\xb3\x12\x5b\x45\x38\xf2\x99\xcd\xfe\x37\xd1\x50\x0c\xa3\x6f\x60\x62\xf6\xf0\xf4\x2f\xc8\x3c\x55\x24\x4c\x34\x24\xc3\x68\xd4\x7f\xc6\x45\x7f\xc5\x05\xe9\x53\xa6\xd6\x18\x6e\x01\xdc\xcf\x09\x19\xf7\xaf\xa4\x5c\x8f\xef\xdd\x6b\x10\x46\xea\x4c\xdc\xfb\x1f\xf7\x16\x7c\x9e\xdf\x03\x82\x6a\x5e\x5e\x20\xf0\x78\x6a\x05\x3d\x25\xb0\x4d\x1c\xcd\xaa\xe0\xeb\x0d\xe7\xac\x0a\x63\x8f\x5e\x3c\x7e\xfa\x03\x56\x08\x13\x8d\x8d\x08\xc8\xf2\xad\x80\x45\xbf\x45\xdb\xad\x42\xd1\x4b\x87\xf1\x0d\x11\x54\x3f\xa5\xed\x72\xf5\x25\x11\x01\x1d\x1e\x27\xe8\xbf\xb9\x20\xaf\x35\x27\xf1\xa4\x92\x03\xe5\xac\xba\x8c\x3a\x9a\x8d\xa2\x4d\x01\x2a\xd4\x19\x0c\xf4\x47\x53\x93\x03\x7c\x05\x86\xf2\x26\x7e\x97\x86\xaf\xd1\xa2\x0a\xfd\x74\x3a\xae\xe6\x83\xc7\x53\xfd\x3e\xae\xae\x14\xa4\x0e\xe5\x15\x61\x63\x16\x47\xea\x6f\x84\x30\x28\x11\xab\x6f\xf8\x11\x21\x6c\xd4\x7d\x54\x92\xf9\x19\x21\xec\xd6\x7a\x5c\xa5\x74\x8d\x0a\x0b\x66\x09\xd1\xa2\x30\x8d\x96\x86\x43\xdc\x3c\x0e\xb1\x48\xbe\xc5\x2c\x61\xe4\xba\xaf\xdd\x8f\x36\xd4\xe0\x10\x8e\xbd\x27\x0e\xab\x4a\xff\xf4\xc5\x9f\x47\x4f\x9e\x7e\xf7\xd3\x1f\xcf\xdf\x3e\x7a\xf3\xa7\x37\xce\x07\xdd\x0f\xfc\xf2\x92\x88\x51\xc6\x2f\x43\x2d\x31\x4d\x5e\x73\xcc\x00\x4f\x38\x7a\x0e\x50\x53\x43\x6a\x53\x5f\x66\xcf\x67\xb1\x57\x48\x90\xbc\xc8\x20\xf2\x1c\x88\x31\x44\xd3\xb3\xbe\x7f\x95\x6b\xec\xd9\x12\x32\x8b\x21\x34\xbe\xdf\xd6\x06\x2c\x4f\xb8\x3a\xd1\x59\xaa\xfa\xb7\xaa\x7a\x53\x40\xe6\x4a\x34\xa3\x14\x7a\xf7\x6f\x89\xd8\x0d\x99\xe4\xa0\x59\x14\x4e\x20\xf4\xd8\xc4\x11\x34\x12\xd6\x7a\xaa\x39\x66\xa5\x00\xa9\x22\xba\xaa\x9e\x51\x57\xc9\x09\x01\x1b\x39\xc9\x74\xe6\x84\xbb\xf5\xbc\x9a\xf0\xb7\x71\x60\xee\x18\x7a\x28\x63\x5c\xd5\x85\xb8\xeb\x90\x37\x86\xe4\x4b\x4e\x4e\xb0\xe1\xbe\x02\x23\x37\x92\x45\xf2\x40\x9e\x0d\x87\x04\xb5\x14\x9b\x92\x59\x6c\xa4\xc9\x81\x95\x01\x6d\x1e\x6f\x84\x6f\xaf\x04\xbf\xfe\x89\x5d\xc1\x6b\x0d\x88\x27\x01\x64\x7e\x48\xa5\x1a\xf1\x16\xdf\x5d\x2a\xac\x6d\xd4\x0b\x30\x97\x9b\xcd\xfd\xa3\x16\x64\x64\x4f\xa8\x28\x58\x29\x53\x2e\x93\x40\x78\x9a\x4f\xeb\x09\x25\xf3\xe4\x53\x45\xa4\xd1\xad\x88\x89\xc1\x5a\xb6\x1f\xc0\xca\x06\xa9\xd9\xbc\xad\x9a\x6e\x40\xb1\xc7\x6d\xa9\x65\x03\x2a\x5a\x55\x2e\xb5\x57\xfd\xd4\x12\x70\x02\xea\xa1\xe7\x34\xff\xa3\x55\x39\x7c\xc2\x19\x69\x51\xd0\x3a\x77\x7a\x89\x5a\xfc\x69\xc4\x31\x4f\x5e\xbe\x78\x1a\x25\x49\x42\x36\x9b\xe8\xe9\xeb\xd7\x2f\x5f\x3f\x7d\x02\x9f\x0a\x1a\x49\x5e\xac\x88\x6b\xbb\x86\x52\xa5\xb8\xb9\xcd\x4a\x11\xb4\x25\x03\x6c\x5f\xd2\xea\x8b\xc5\x68\x2a\x67\x31\xb1\x40\xe3\x46\x01\x81\x3d\x13\xa1\xef\x03\x2c\xc0\x0b\xf5\x24\x34\xd2\x44\x8f\x71\x1c\xce\xfb\xfe\xd1\x9b\xf3\x1f\x5f\xbe\x7e\x7a\xfe\xe7\x47\x3f\xfc\xf4\xf4\x4d\x54\x3a\xa7\x0e\xf6\x67\x9e\xca\x1a\xcd\xd8\xa9\x97\x9e\xac\xa1\x58\x93\x3d\x1a\x0c\xe2\x50\xc3\xf6\x68\x57\x53\x47\x3e\xbb\x95\x24\x49\x61\x21\xc4\xdc\x09\xd7\xa9\x60\x71\xf4\x33\x2f\xfa\x6b\xfb\x50\xd5\x4f\xfb\xa3\x0c\xba\x8b\x51\x5f\xdd\x08\x7d\xe3\x33\xad\x4f\x57\x2b\xb2\xa0\xa9\x24\xd9\x4d\x1f\x94\x39\x29\xbb\xbc\xa7\x77\x91\xb2\xcb\x3e\x95\xa3\xfe\xdb\x2b\x9a\xf7\x69\xde\xd7\xe4\x8d\xa2\xfc\x0a\x96\x17\xeb\x35\x57\x84\x4b\x3f\xbe\x28\x64\x7f\x45\x2f\xaf\x64\xff\x82\xf4\xcb\x74\xaa\xc8\x5c\x70\xa4\xfd\x9e\x88\x1c\x34\x89\x97\xfd\x06\xa9\x84\x46\x96\x16\x0a\xac\x4a\x72\x74\x8a\x70\xa6\xe5\xaa\x0a\x24\xbd\xfd\x6f\xa3\xf8\x2d\x17\x6c\x11\xad\xfd\x4e\x2c\xfe\x28\x55\x0e\x63\x64\xdf\xee\x4c\x02\x60\x8e\xb0\x4a\xa2\xdf\xc5\x92\x79\x4f\xbf\x23\x23\xce\xa9\xa8\x21\x9e\xa7\x8b\xf7\xea\xba\x85\x97\xff\x71\x4d\x73\xcb\x23\x14\xd4\x89\x30\x0a\xb3\xc3\xa1\x97\xbe\xc5\x3e\x21\x18\x26\x3a\x4a\x7c\xe5\x77\xe6\xb7\xee\x5d\x69\x8a\x87\x9f\x94\x98\xe8\xef\x9c\x56\xa2\xd0\x07\xf0\x58\xa4\xbd\x04\xe6\x11\x16\x58\x38\xba\x54\xcb\x46\xd0\x38\x27\xf2\x2d\x5d\x11\x5e\xc8\x60\x30\x7b\x5b\x1c\x06\xbc\xc5\xa7\x68\x8b\x4d\xca\xb8\xae\xb8\xd5\x82\x59\x03\x33\x23\xc8\x9e\x86\x0a\x91\x0c\x21\xf1\xeb\xfc\xd9\x5d\x4b\xd6\xe8\xcf\x30\x30\x76\xad\x7c\xd4\x6e\xa0\xfe\xb5\x59\xc5\x5a\xb9\xa3\x3b\x0a\xfa\x2b\xb1\xf7\xb2\x8d\x5d\xe3\x9e\xaa\x6b\x65\x2f\x50\x09\x2a\x75\x44\xda\x32\x51\x87\x9a\x43\x18\x6b\x62\x6f\x40\xad\x07\x01\x84\xc0\xe2\x35\x8c\x8f\x2c\x00\xf7\xe8\x89\x84\x8a\x3d\xe6\x4c\x52\x56\x90\xb2\x98\x1a\xdc\x8e\xa6\xfc\x01\x0b\x74\x6b\x6c\x1d\x88\xb1\x6f\x08\x71\xd8\xe3\x46\xce\xeb\xa7\x6f\x7f\x7a\xfd\xa2\xce\x11\x09\x7c\x8a\x7a\xda\x80\xad\x51\xe3\xed\xf7\xaf\x5f\xfe\xa5\x59\xe1\x7e\x6b\x05\xcd\x7a\x8d\xef\xe2\x57\x71\x3b\x57\x56\x5d\xe3\x71\xf4\xdd\xd3\x67\xea\x6a\x79\xfc\xfa\xe9\xa3\xb7\x4f\x23\x5c\xc3\xee\x4e\x6d\xad\x75\x71\x6b\x0b\x67\x9e\x22\x7b\x4c\x6d\x6a\x63\xe0\x83\x41\x80\xc4\xae\x0d\x9d\x25\xcd\x35\x6d\x10\xc8\x26\xc0\xaa\x87\x60\xcc\x61\xaa\x5d\xe8\xa0\x4c\x81\x03\x07\x18\xc2\xf0\xba\x2b\xf1\xa8\x03\x04\xc2\x25\x60\x01\xaf\xc1\xf7\x86\xae\x46\x7c\xdf\x83\x3a\xbf\xfa\x9d\xe4\x0b\x94\xea\x91\x49\xcd\xb0\xe4\x75\x7a\x0d\x39\xd5\xe3\xfc\x17\x2a\xaf\xde\x50\x75\xb4\x0c\xb4\x5b\xfe\x33\xb6\xf3\x5e\x3c\x31\x34\x55\x5c\xb3\x31\x41\x98\x4c\x65\xc3\x6c\x62\x62\x97\xf5\x3d\x7f\xa7\xc7\xad\x32\x63\xd2\x62\xc6\xa2\xb8\xd7\x49\x5d\xd5\x53\x27\x57\x0d\x1d\x46\x16\xa5\x30\x1c\x14\x59\x11\xb4\xc5\x5d\x2a\xc0\xa9\x51\xa5\xd1\xd6\xe8\x05\x61\xff\xa6\x19\xef\x5e\x1d\x74\x67\x81\x12\x8d\xd5\xf2\x9a\x4c\x95\x1d\xa0\xd7\x7f\xfb\xdc\xfc\x9d\xa8\x5f\xc4\xa1\x95\xad\xe8\xd7\xb7\x92\xc9\x72\xe2\x4b\x34\x62\x04\x24\xf3\x98\x00\xd5\x5c\xdd\xc1\xea\xf0\xc5\x8d\x8d\x52\x14\x00\x81\xb8\xb1\xaa\xbd\x26\x30\x09\x54\x52\xa2\xdb\xed\xb6\x37\x0f\x34\x94\x84\xd0\x03\x5c\x7e\xce\xeb\x67\xf3\x01\x8d\xb5\xa9\x42\xe8\x53\xcf\x9a\x8a\x0e\xa7\x49\x92\xd0\x09\x71\xfb\x21\xc2\xbb\x60\xb5\xda\x81\xdf\x6f\x2f\xaf\x01\x8c\x19\xb6\x06\xb8\x7b\x3a\x18\xb4\xb6\xee\x89\xc3\xb6\xa8\xa6\xd7\xcf\x2a\xf4\xf1\x51\x92\xe4\x81\xe4\x24\x49\x52\xbb\xd9\x15\xa7\xfe\x20\x60\x34\x44\x5d\x2d\xc8\x36\xab\xe7\xf6\x14\x39\x37\x18\x88\xc1\x40\x1e\x81\x34\x42\x8e\x68\xfe\x84\xe4\x52\xf0\x1b\x10\xfa\x54\xea\xba\x87\x86\x08\xd9\x65\x8d\x7e\x89\x86\x46\x2f\xac\xf6\x5c\xfd\x4b\x84\x39\x64\xb3\x96\xec\x5e\x93\xe4\xff\xa6\x41\x5d\xf7\x17\x44\x92\xb9\x04\xfa\x7f\xcd\x25\x61\x92\x2a\x36\xa4\x7f\x95\xfe\x33\x15\x0b\x5e\xe4\xfd\x28\x27\xd9\xd2\xc8\x27\xfb\x19\xe7\xeb\xa8\x7f\x41\xe4\x35\x21\xac\xbf\x4e\x15\x39\xa3\xb9\x85\x6f\x86\x74\x18\xf5\x53\xb6\xe8\xcf\xaf\x68\xb6\xd0\x89\xd1\x90\x0f\xa3\x51\xff\xf9\xb2\x7f\xc3\x8b\xfe\x75\xca\x64\x23\xb7\x2f\xb9\xe2\x0a\x9c\x6c\xf5\xfa\xaa\xd6\x70\x04\x0d\xd3\x52\xfc\x8a\xfb\xeb\x8c\xa8\x3b\x78\x0e\x61\x6d\xfa\xbf\x94\xc2\xed\x5f\x54\x6b\xbf\x38\x3e\xc6\xcb\xb8\x7b\x10\xef\x08\x59\x5b\x93\xd5\x7e\xba\x94\x44\xdc\x35\x0c\xd3\x3f\x95\xba\xd7\x82\x05\xfa\x8d\xd0\x76\xcb\x9c\x7c\x7c\x6b\x5e\x0d\x17\x41\xb5\x86\xb9\xaf\x47\xb3\xe8\xf0\x0a\x6f\x77\xfc\x13\x18\xab\x76\xd4\xa9\xf1\xd5\x77\xf6\xb3\xee\xd8\x4f\xc3\xa7\x69\xa3\xd6\xe6\x33\xba\x4d\x9b\x20\xff\x75\xcd\x60\x5c\xbf\x45\x55\x2d\xad\xc7\xbb\x69\xf9\x08\xef\x81\x47\xdd\x22\x59\x0a\xe7\x38\x11\xc3\xa8\x1f\x83\x3a\x5d\x84\xd7\xbe\xfe\x8f\x84\x53\xff\x8c\x75\x57\x03\x92\xbb\xd5\x80\x68\x40\x0d\x48\x33\xad\x98\x95\xfa\x38\x75\x85\x20\x61\x5f\x7d\xa5\x91\x4a\x83\xfa\x88\x7b\x7e\x7a\xc6\xac\xe4\xc3\xd9\x9f\x69\x69\x1d\xf6\x44\xd2\x4f\x43\x59\xe7\x26\x4e\x95\x11\xee\xb9\xf5\xcd\xfc\xed\x87\x1d\x16\xa8\xaa\xc3\x28\x7c\x65\xc5\x5b\xa2\x18\xc0\x69\x3a\xc3\x55\xfb\x2e\xc3\x5c\x86\x75\x49\x58\xa9\x2a\x42\x50\x4f\x4c\x9a\xdc\xef\x4b\x36\xb7\x26\x86\x46\x39\x62\x5a\xf2\xc3\x0c\xcb\x99\xb5\x89\xd2\x50\xe2\xf4\x6f\xf4\x3b\x9d\x06\x80\x52\xdb\x04\xa1\x31\x2b\x2d\xb9\x58\x45\x0f\x25\xd6\x13\x3d\x2c\x76\x91\xda\xb6\xaa\xc2\x95\xd3\xb5\x2a\x00\x11\xcd\x93\x00\x8d\xa3\xa9\x84\xc1\x20\xca\xe1\x47\x3d\xc3\x49\x43\x26\x21\xd3\x0d\x43\x26\x6d\x43\x76\x1d\x24\x68\x4f\x67\xbb\x03\xc7\x4c\x56\x0f\x29\x49\x12\x97\x7e\x64\x7f\x97\xeb\x38\xb1\x63\x1b\xbb\x0e\x71\x18\xa9\xde\x9e\x97\x6a\x0c\x15\x25\x04\x9d\xa2\x51\xb6\xae\x52\x31\x07\x08\x2b\x49\x37\x14\x49\x64\xa9\x02\xa8\xb5\xa7\xc9\x99\x18\x0e\x91\x9c\x0a\x5f\x91\x44\xcc\x7a\x0d\xd3\x16\x47\x6c\xbc\xb9\x4a\x85\xa2\x56\x2d\xf3\x5e\x8e\xd1\xa4\xf8\x63\x04\xf3\xba\xb5\xd1\x90\xbb\x43\x39\xae\x05\xd8\x65\x9f\xb2\x3e\x99\xb4\x81\x93\xb4\x30\x24\x70\xd5\xc7\xdc\x9c\xb3\x25\xbd\x2c\xdc\xf7\xb5\xa0\xd2\xfc\xde\xa2\xb1\xc2\x91\x89\xc0\x64\xab\xed\xb3\xd5\x4a\x5a\xcc\x64\x9e\x41\xcc\x79\xb6\xea\x26\x85\x10\x37\x8f\xc4\x65\x1e\xd8\x88\x3c\x6c\x5a\xe1\x44\x63\xbb\xac\x2b\x3c\x27\x4d\xf3\xd8\x48\xe3\x50\x23\x64\xd9\xcb\x6b\x46\x44\x45\x3c\x87\xb0\x4c\xc8\x84\x8c\xb8\xca\x79\xce\x54\x1b\xd0\xeb\xf8\x76\xdb\x2b\x37\xcd\x3e\x93\x3d\x4b\x15\x90\xde\x24\x69\xdd\x66\xd9\xec\xe2\x92\xa1\x6d\x7c\x82\xf9\xe8\x7c\x9e\x91\x94\x15\xeb\x97\xcc\x50\x7d\xa8\x29\x14\xb4\x2f\xd0\x8f\xb2\x2c\xc2\x91\xbc\x22\x7d\x3d\x07\x45\x59\x64\xf4\x3d\xc9\xfb\x9c\xc1\x03\xf4\x42\x37\x41\x16\x7d\x2e\xfa\x05\x13\x84\x2d\x88\x00\x7d\x07\xb3\x9e\x61\xa0\x35\x82\x9e\x8c\x33\x78\xc5\x6a\xd7\x63\x95\x8a\xd1\x3f\x39\x63\x0f\xe4\x19\x83\xbb\x8f\xf9\x40\xcc\x66\xa5\x75\x75\xb9\x7d\xc9\xd4\xe1\x3a\xe3\xb8\xa3\xcc\xdb\x6c\xa6\x33\x84\x73\x70\x8e\x42\xb6\x58\x6f\x71\x93\xcf\x06\x95\xc5\xa6\x6a\x19\x32\x9e\x86\x08\x2a\x63\x33\x9a\xb8\x8c\x3f\xf3\x42\xd1\x61\x7d\xce\x8c\x92\x81\x27\xbb\x56\x37\x32\xc8\xae\x29\xeb\xa7\x40\xbb\x8d\x4a\xbb\x70\xa7\x7e\x67\xd0\x82\xbe\x27\x7d\xb4\x20\x43\x8a\x55\x35\x3c\x01\x0e\x01\x2c\xb9\x17\xf4\x31\xbf\x67\x2f\x56\xb3\x0b\x1e\x6b\x60\xa3\x82\x2e\xe6\xfd\xeb\x5f\x43\x59\xe5\xf6\x77\x40\xe5\x53\x01\x23\xf3\xd1\xa0\x06\xae\x1a\x36\x76\x3e\x41\x20\x2b\x4a\x2d\xa2\x76\xeb\xcb\x86\xfa\xec\x76\xa7\x3a\x8b\x56\xbe\xdd\xa5\x77\x1b\x38\x5c\x63\x67\x4b\xba\x27\x4e\xf6\xd4\xb2\x35\x38\x93\xdd\xe0\x5c\xc1\xbb\x06\x1b\x2b\x6e\x32\xa4\xad\x67\x38\x4a\x5c\x2d\x3e\xae\x4b\x5a\x7c\x49\x98\x3b\x0e\x93\x1d\x47\x45\x1d\x13\x82\xd0\x98\x60\x63\x2f\x12\x5a\x91\x10\x00\x80\x6a\x1e\x0d\xc3\x01\xe0\xb2\x6a\x92\x07\x8f\x86\x6e\x2b\x15\x0a\x6a\xd4\xa3\x0f\xaf\x9e\xcf\x0c\x01\x42\xc4\xc0\x21\x19\x0c\x14\x07\x1d\x7a\xa3\xb1\xb2\x4f\x33\x88\x1a\x0b\xcc\x1d\x7b\x54\x53\xa5\x12\xe5\x63\x03\x47\x98\x6f\xb7\x98\x8f\x9e\xbf\xf8\xf3\xcb\x3f\x3d\x0d\xa8\x8b\x69\xc9\x8f\x1e\x72\xf8\x6a\xd8\x22\xd4\x2b\x5a\xd5\xaa\x43\x74\x7a\x55\xad\x9a\xd7\xd4\xaa\xbd\xb6\x30\xbd\x4b\xad\xba\xc0\x39\x91\x15\x6b\xd7\x52\x04\x1f\xb2\x16\xb7\x0f\x1c\x4d\x3b\xe4\xe0\x53\xde\xdb\x2b\xd2\x57\x6c\x10\x5f\xf6\xab\xad\xc5\xc8\xbd\xe3\xa5\xfd\x7c\x4d\xe6\x6a\x70\x86\xf5\xb5\x3c\x9a\xe2\x6a\x17\x64\x2d\xc8\x3c\x05\x41\x00\x5b\xf4\xaf\x39\xfb\xe6\xae\xd7\xba\x3c\xf8\x5c\x37\xea\xbf\xd2\xdc\xb9\xee\xec\xc6\xe0\x60\xaf\x33\x96\x4b\x92\x2e\x70\x9f\x8c\x2e\x47\xfd\x5f\xa2\xa1\x1c\x46\x63\x28\x13\x8f\x46\x23\x64\xcd\x9f\x63\x54\x73\x94\x15\x5b\xec\x51\x4d\x1e\x46\x8a\xc9\xc6\x99\x91\x61\xa7\x8b\xc5\x0f\x34\x97\x84\x11\x81\x1b\x9c\x07\x96\xd8\xb9\x0a\xc1\xf0\x72\xd8\x5e\xab\xce\x9a\xa8\xba\xde\x35\x5d\xab\xfd\xd2\x04\xd5\xb5\xb5\x1d\xb5\x53\xed\xf2\x04\x6d\xb1\xff\x5c\x57\x85\x5e\x8f\x45\xaa\x7d\xab\x8b\xb4\x3e\x99\x8a\xdb\xb3\xda\x3c\x6b\xd6\xa6\x56\xe3\xef\x65\x6b\xd7\x0d\x46\x2c\x98\x5a\x0e\xa3\x9e\xd3\x18\x4c\x63\xf9\x1a\x43\x72\xf4\xe0\xe7\x24\xb4\x1d\x13\x29\x4d\xaf\x81\x9b\xa4\x41\x5d\x3c\x97\xfd\x8c\xf3\x77\x79\x3f\xa3\xef\x08\x08\x8d\xa4\x80\x43\xc3\xed\x73\xb9\x05\xea\xf7\x34\xed\xff\x02\x3d\xb1\x74\x45\x5e\x2e\xd5\x2d\xe7\x09\x7f\x70\xff\xfa\x8a\xce\xaf\xfa\x34\x57\xa7\xc9\x1d\xa5\x51\xff\xa7\x9c\x98\x7a\x8a\xc7\xfc\xa6\xac\xfc\x8d\x2f\x3b\xb2\x47\x65\x14\xa1\x3b\x1d\xae\x34\xc5\x37\x9f\x33\xfa\x78\x5d\xd7\x3a\xa3\x69\xde\x88\x78\xfd\xa3\x1a\x87\xbb\xb2\x5a\x95\xa8\x2f\x65\xd5\x98\xe6\xc4\x33\x85\x09\x17\xb5\x46\xeb\x50\xf2\xf9\x22\x0b\x29\x5c\x97\xb6\x39\xb6\xb1\x80\x8e\xf1\x91\xdb\x02\x5f\xf4\x3a\x18\x54\xd2\xad\x81\xce\xb6\x5d\xbb\xbb\x53\x67\xfd\x60\x67\x9e\x0a\x75\xa8\xd3\x49\xa4\x2d\x2c\xa3\x71\x44\x17\x19\x89\xb6\x75\xf9\x8b\xe1\xad\xf4\xbd\x0d\x1f\x0c\x08\x34\x6d\xe3\xe2\xa9\xc0\x62\x0f\x5c\xc6\xb2\x66\xef\x98\xa5\xb9\x84\x3a\xe5\xd5\xeb\xdb\x91\xa2\x8a\x45\x7e\xb3\x5c\xb5\xa1\xd2\xba\xbf\x59\xb2\xb4\x8b\x46\x75\xa3\xfe\x40\xf7\xa5\xaa\x20\xaa\x9a\xfb\x37\xcb\x3a\x1b\x4a\x54\x71\x03\xd0\x2c\x68\x2d\x24\x51\xd5\x3b\x40\xa0\x45\xab\x2a\x8f\xea\x5e\x03\x9a\x65\x3d\xa3\x49\x54\xf5\x27\x50\x2d\x5b\x33\xf8\x2e\xf7\x60\x7c\x82\x1d\x60\x8f\x4f\x70\xe9\x15\x62\x7c\x12\x32\xfb\xff\x44\x0a\xdb\x8f\xb2\x56\x9d\x6d\xc5\x72\x2a\x4e\x54\x21\xa5\xa8\x57\xa7\xcb\xca\xea\xe0\x91\x15\x8c\xea\x3a\x6a\x11\x57\x38\x0e\xa3\xaf\x61\xe9\x42\xab\xc4\x5d\x77\x38\xa3\xa0\xbe\x64\x4d\xba\xb8\xee\xba\x4e\xa9\x3c\x5e\x72\xf1\x89\xed\xd3\x54\xa6\x62\x49\x6b\xce\x05\x91\xc7\xa1\x2a\x72\xd9\xdc\x23\x8f\x53\xc6\xb8\xd4\xfc\x69\xda\x87\xf8\xbf\xfd\x34\xef\xa7\x4e\xdc\x18\x1d\x16\x9a\x39\xa5\xf2\x19\x17\x00\x2c\xa1\x78\xef\x6a\x14\x14\x36\xc6\x95\x85\x7b\x38\xec\x00\x5c\x95\xe6\x5a\x9f\xc4\x98\x2c\xfb\xf7\xb1\x9d\xbb\x56\xd7\xf0\x2c\xaa\xc0\x51\x80\xb3\xd1\x1f\x0e\x9d\xe0\x54\x5d\xc1\x6c\x54\x4a\x8e\x12\xff\x63\xb3\x39\x3a\xc5\x6c\xe4\x4b\x92\x92\xa3\x13\xab\xf4\x4b\x59\x9f\x01\x13\x61\x25\x4b\xc0\x39\xb4\xad\x10\x1b\xbd\x23\x37\xe0\x6b\xbd\x2e\xc4\xad\x1a\x4c\x88\xc1\x80\x80\x7f\x4c\x4b\xab\x0b\x84\x19\xa4\x81\x16\xc2\x76\x1b\x23\x4c\x5b\x26\xad\x96\x49\xb3\x11\xc4\x77\xbc\x00\x92\x79\xb9\x75\x5e\x74\x08\x9e\xde\xbe\x23\x8a\x61\xad\xbd\xb4\x1a\x83\xa6\xea\x73\x6b\x40\x97\xaa\xda\x74\x55\xed\xf3\xae\xd7\x53\xfd\xc2\xb9\xdd\xce\x10\x26\x6a\x2e\xbc\x6d\x2e\xb0\x26\xd5\xd9\x68\x86\xc6\x10\x47\x25\x01\x99\xb0\x43\xe7\x56\x4a\xcf\xfd\x35\x65\x5d\xe6\x81\xb6\x15\xd2\x4d\x0f\x6d\xc4\x19\xa9\x51\xb7\x98\x56\x9e\x73\x99\x2b\xb9\x5c\xc6\xac\x52\x6c\xeb\x16\x65\x27\xb2\xd8\x11\xe0\xa1\xbb\x35\x7a\xf9\x14\xf7\x31\xef\x6f\x3b\x5e\xd6\x42\xce\x08\xf7\x75\x69\xbb\x13\x53\xb6\x07\x65\xfd\x78\x6f\x7d\x15\x34\x54\xc3\x60\x64\x24\xb5\xc6\x5b\xe2\x5b\x8a\x3a\xaf\xa7\xc6\x07\x6a\x8b\xf3\x53\xe3\x33\x25\xd9\x9b\x87\xf0\x05\x43\xb2\x4d\x30\xc4\xc8\x75\xfc\xcc\xb4\xec\xbd\xe1\x5c\x50\xb6\x30\xbc\x8e\xa8\x3c\xaa\xe0\xa9\x3a\x8d\x4e\xc8\x23\x11\x02\x24\xec\x2e\xb3\xfd\x87\xd9\x89\xd5\xb9\x7b\x98\xb4\x69\x6c\xdf\x32\x56\x00\xb3\x3c\x7c\x55\xf0\x86\x6f\x37\x7e\xf1\xf7\x31\xf1\xbc\x52\x4a\xe7\x29\x35\x49\xd5\xbf\x55\xaf\xa9\xa9\xf7\x61\xfd\x9f\x82\xcb\x9e\x2b\xeb\x33\x35\x85\x3f\x15\x93\x61\x56\xfe\xc6\x25\xa8\x48\xfb\xab\x7e\x1f\xe6\x95\xcf\x3a\xe8\xe5\x95\xcf\x9d\x58\xc1\x1c\xf8\xbd\x9d\x82\x39\xb1\x4e\x2a\x2e\x73\xfb\xf8\xa9\x4d\xa7\xe4\xb6\x6a\xeb\x0e\x59\xef\xb5\x7a\xf8\x21\x84\x00\xcd\x9f\x6a\xa4\xa0\xeb\x86\x68\x81\xf0\x8b\x1b\x51\x68\xb5\x2d\x67\xb9\x54\x5b\xf8\xc8\xc2\x59\xa2\x96\xb8\xf1\x8a\x91\xd4\xdf\x96\x4a\x1f\x39\x0d\x70\xa6\x06\x9c\xd9\xc3\x6f\x27\xec\xf8\xdb\xf1\x89\xba\xa3\xbe\x3d\xe3\x0f\x18\xd8\x5c\xd3\x29\x3f\xfe\xb6\x66\x75\x0d\x3e\x09\xaf\x69\x96\xd9\x47\x13\xa0\xba\x2a\x49\xa3\xf3\x73\xd8\x34\xad\x15\x96\xe7\x24\x3f\xb7\xcf\x23\x22\x3f\x3f\xb7\x7e\xa1\x2a\x75\x70\x9e\x4c\x67\xbd\x4a\x52\xe8\x48\x6a\xc5\x80\xbc\xf4\xe4\x26\x40\x15\x20\x9f\xca\x59\x8c\x7a\xa9\x8b\xf3\xe2\x89\x16\xf1\x3e\x63\x4b\xf2\xed\x3e\xc5\xb5\xad\x83\x2f\xb0\x98\x8a\xd2\x67\x01\x85\xcb\xdf\x3b\x1a\x4d\x9b\x7a\x83\x2a\x85\x36\x2d\x6b\x38\x25\x8e\x7d\x25\x04\xcb\xbc\x2b\xf2\x24\x03\x73\x19\x01\x4a\x7d\xbd\x52\x07\xb9\xe2\xda\x3a\xa8\x23\x6e\xe4\xb9\x12\x6d\xb1\x50\x43\xb3\x2a\x92\x60\xff\x2f\xd2\xeb\x36\xaa\x55\x18\xaa\x55\xa4\xd7\x6f\x03\xb3\x09\x9a\xc6\xfe\x7a\xcf\x9a\x5b\xcc\xb1\x4f\x63\xd6\xa8\x9d\xb0\xea\xb6\xf4\xe8\x9e\x14\xb3\x91\xb1\x91\x53\xd3\x44\x01\x97\x05\xd7\x94\x2d\xf8\xf5\x48\x1d\x37\x01\xf1\x66\xdf\xa7\x59\x4c\x41\xfc\x83\x3d\x1a\xd6\xaa\x6a\x24\x0d\xdd\x47\xdf\x6e\xb2\x6a\x04\x49\xc0\x95\xa6\x2f\xc2\x4e\x2a\x3e\x28\x36\x9b\x9a\xf6\xa3\xba\x1f\x92\x84\xec\xe6\x6d\x38\x7b\x4f\x84\xec\x17\x4c\x2f\x38\xbc\x4c\xaa\x8a\x7d\xc9\xcd\x2b\x66\x84\x7a\x56\xd6\x1e\x13\xe4\xb9\x4b\x3c\x3d\x93\x0f\xea\xc8\x02\x0e\x5a\xdd\xd7\x06\xb8\x4e\xd4\xe3\x39\x4a\x4a\x6d\x0f\xa6\x36\x5c\x20\x33\x89\x72\x6d\xae\xd2\xfc\xe5\x35\xab\x2a\xdb\x28\x86\x60\x30\x88\x89\xba\xe9\xc5\x94\xcd\x9c\x67\x30\xa2\xe0\x4d\x3f\x2a\x24\xd1\xb9\x51\xce\x3c\xd7\xca\x05\xe7\xe7\x91\xe7\xfb\x6b\x6a\x2e\x89\xcb\x8c\xae\x56\x44\xb8\x90\xf6\x5a\xed\xc3\x11\x57\x82\x17\x92\xb2\xcb\xe3\x2b\xb9\xca\x2e\x52\x91\xdf\x7b\x47\x6e\xae\xb9\x58\xe4\xf7\xe6\xda\x51\xf1\x71\xb8\x42\x6b\xb9\x99\xf1\x2d\xc4\xec\x12\x51\x85\x34\x97\x31\x9b\xd2\x19\xb5\x66\xf2\xe7\xe7\x19\x4f\x17\xb0\xdb\x97\x34\x97\xe2\x46\x51\xdc\x66\x5a\x8d\x12\x10\x7a\x05\xea\x23\x53\x46\x6b\xb6\x6f\xad\xf7\x9d\x1a\xa5\xaf\x16\x86\xcc\xcf\x5d\xea\xf9\xb9\xf6\x71\xd1\xa4\xe2\x93\x88\x91\x0f\x32\xea\x91\xba\xde\x66\x12\x01\x14\x45\x98\x34\xd4\xc8\x93\x32\x2a\x41\x43\x7f\x33\x31\x22\x77\x95\xd7\x78\x9e\x31\x13\xab\x27\x6f\x51\xaf\x7a\xab\x2f\x52\x99\x1e\xaf\xf8\x82\x64\xc7\x4b\x91\x5e\x02\x48\xdd\x4b\xd5\x95\x74\xcf\x7e\x87\xa8\xff\x1d\xd5\x40\x0e\x08\x16\xac\xbb\xca\x96\x8d\xef\x2a\xa5\xe8\x8c\x7b\x96\x35\x38\xe6\xcb\x63\x05\xc3\x1d\xaa\xac\xd2\x75\x90\x64\x6f\x23\x4d\x80\xc7\xc7\x1c\x17\xfa\x78\xcd\x93\x54\x11\x17\xf0\x42\x18\x21\xbc\x48\xd2\x78\x8e\xa3\x5c\x72\x01\x22\x2c\x9d\x0b\x43\x41\xf8\xca\x94\x5d\x6b\xfd\x26\x84\x97\x3a\x81\x69\xc1\xe2\xca\x06\x22\x70\x71\xa1\x68\x19\x17\xca\x43\x99\xa0\xaf\xa5\xfa\xbe\xf1\x5b\x57\x27\xdb\x3c\xa3\xe4\x39\x11\xb2\xf6\xb8\x9f\x2e\x16\xfd\x6f\xa2\xe1\xcd\x30\xfa\xa6\xef\x56\x40\x21\x19\xa3\x22\x91\x81\x32\x52\x06\x41\x49\x14\xd2\xeb\x7b\x8c\x58\xa9\x09\xa2\x70\xe8\x66\x03\xbe\xae\xdc\xc8\x16\x23\x58\xd7\x67\x5c\xc4\x37\x08\x53\x04\x6f\x7c\x62\x44\xf3\x67\xa6\x1b\x14\x53\x84\x6e\x57\xc6\x2b\xd5\x65\xa2\xb3\x15\x52\x66\x69\xf6\xa3\xa9\x8b\xe2\x15\x1a\x9d\xc3\x32\xf6\xaa\xd3\x78\xe6\x46\xeb\x26\xa3\x03\xa8\x00\x6a\x64\xa4\x0f\x95\x70\x5f\x8a\x9b\xfe\x9c\xaf\x6f\xc0\x96\x4e\x0b\xfc\x23\x7c\x74\xb9\xd9\x5c\x26\x49\x32\x47\xf8\x12\x06\x0e\xd6\x19\xb6\x49\xd0\x5e\x41\xf1\x0a\xcf\xf1\x12\x6d\x49\x96\x93\x78\x05\x1e\x30\xd1\xa4\x98\xd4\x0b\x3f\x49\x65\xaa\xca\x52\x34\xce\xf5\x9f\x95\x9e\x8a\x26\xe2\xcb\xd9\x2e\xf0\x5a\x35\x88\xaf\x70\x19\xee\x6f\x75\x80\xb7\x2f\xe3\xed\xcc\xe9\xda\xe0\x3c\x71\xf6\x25\xa6\x3a\x25\x39\x2e\x6a\xaf\x08\x38\xab\xc4\xef\xc2\xf3\x40\x40\x00\xe9\x14\xb7\x0c\x30\x1a\xf9\x37\xe3\x62\x05\x7a\xe9\x6a\xb2\x21\xcd\x33\x6e\x1e\x83\x4b\x27\x84\x92\x68\x9f\x9b\xfa\x51\xee\x5c\x2f\xc6\x1b\x96\xae\xf3\x2b\xde\xea\x2d\xa4\x35\x4c\x44\xad\x7e\xac\xcd\x6e\xc1\x4f\xde\x63\xd0\x12\x5e\x3c\x92\x52\xd0\x8b\x42\x56\x1f\xbc\x82\xad\x92\x51\x4b\x4d\xd3\x6c\xba\x48\xd7\x92\x88\x27\x74\xf1\x98\xaf\x56\xbe\x8e\x14\xe9\xec\x7f\xb6\x11\x35\x45\xdb\xda\x8d\x1a\x8d\xc7\x64\x30\x20\x53\x31\xab\x77\xad\x5d\xf0\x7c\x92\x9e\x6b\xfd\x6a\x0a\x03\x2c\x49\xf0\x55\x9a\x3f\xa1\x42\xde\x78\xab\x57\xc4\xd1\xff\x23\xe9\xfc\x6a\xd4\xcc\x8b\x70\x64\x9e\x42\xd2\xcc\xb8\x29\x68\x13\x43\xef\x18\xa6\x73\x04\xf3\x88\xdd\xc4\x51\xa0\x17\xb4\x45\x58\x70\x6d\x7b\xbe\x63\x5b\xef\x5e\x0a\x4d\x6d\xc4\x51\xb3\xb1\x08\x6d\x71\x4e\x04\x4d\xab\x6e\x03\x6a\x96\xac\xa6\xba\x2b\xa8\x6a\x09\xb2\xce\xd2\x39\x79\xac\x21\xbc\x61\x4d\x69\x78\xb4\xc6\x39\xa0\x89\x39\x22\xcc\xb8\x92\x21\x98\x0c\x25\xc2\x02\x95\x36\x21\xa6\x69\x68\x8a\xa2\x2d\x4e\x17\x0b\x8b\x3d\x5a\xbd\x78\xc3\xdb\xb8\xa1\xfd\xd4\xe0\x56\xfc\x3d\xb9\xb3\x92\x2e\xe6\xd5\xab\xa2\xaa\x80\x07\x50\x3b\x21\x7b\x9f\x09\x95\x52\xde\x67\xe5\x8c\xcd\x95\x46\x93\x3a\xfe\x8b\x99\x47\x91\x6b\x65\x92\x22\xbf\x32\x63\x50\xb3\xf5\x18\xb6\x03\xb6\x3a\x18\xa5\x68\x64\xd8\xbc\xd8\xe9\x4c\x57\xc1\xf7\xee\x5a\x55\xdf\x9b\xf3\x86\x44\xa3\x13\x11\xd3\x91\xf6\x81\x0a\x77\x3c\x96\x1c\xe8\x2d\xbc\xbc\x2b\x58\x79\x57\x60\x5a\xbf\x21\xb8\x4b\x58\xdf\xb8\x70\x52\xab\xf4\x1d\x01\x01\x83\xbb\x67\xe0\xeb\x95\xe0\x1f\x6e\xec\xc5\x61\x29\xc5\xf5\x8d\xa2\x5f\xf1\xad\x56\x8c\x2a\x9f\x4b\x3f\xc6\x93\xf7\xf9\x9a\xb0\x05\x65\x97\xea\xea\xb1\xac\x36\xb3\x1e\x51\x6a\xd8\x68\x3a\x53\xc0\x6c\x8e\x26\x0d\xbc\x91\xd9\xd8\xbb\x0a\x20\xd4\x2c\x77\x5d\x44\x1c\x70\x84\x2c\xd6\x8d\x4b\xcf\x29\xca\x7a\x43\x3b\x52\xac\xdc\x6d\x73\xc4\xa4\xe7\xdb\xb3\x55\x2e\xd2\x38\x8d\x09\x82\xb3\x52\x47\x17\xbd\xb6\x09\x4a\x04\x76\x04\x1a\x4f\x9c\x60\x11\x53\x1c\x69\xb6\x25\x42\x2a\xb3\x6d\xc5\xb6\xdb\x0e\x97\x38\xe9\x7c\x4f\x4b\xae\x45\x4e\xdd\x2e\xe1\xbb\xae\x54\x63\xda\xe9\xd6\x3a\x26\x68\xdc\xba\x00\x95\xee\x77\x5e\x99\xaa\xe3\xc0\xfd\x46\xe3\x68\x3a\xeb\x74\x93\x9d\x1c\x25\xde\x09\x49\x85\x79\x29\x71\xbd\x63\x11\x1e\x24\xea\x78\x81\xe5\x44\x1a\x7d\xec\xb8\xbd\xa5\xbb\xaf\x29\x6f\x33\x00\xf3\x98\xab\x49\xad\x35\xec\xca\x5e\x67\xae\xa7\x65\xe6\xa2\x86\xef\x99\x4b\xd1\x4c\x49\x4f\x94\xce\xda\x1a\xd7\xf7\x04\x14\x8e\x2d\x62\x7b\x42\x17\x50\x02\xc5\x04\x33\xed\x99\x6d\x5c\x2f\xf0\x9a\xe4\x04\x22\x65\x33\x4f\xcd\xf5\xa9\xc2\x2d\x39\x0d\xe9\x73\xe9\x71\xc5\xd1\xb0\x32\xce\x11\x5d\x44\x68\x18\xa1\xa8\x8a\xb5\xf3\x8e\x58\xdb\x23\x73\x3e\x03\xb7\x5a\x67\x88\x3b\xdc\x04\x9f\x8d\xfb\x0d\x3f\x45\xb5\x71\xb6\x69\x95\xb6\x89\x8e\x57\xcb\xe3\x68\x48\x8c\xe9\x65\xcc\x86\x49\xf4\x87\x08\x68\x99\xc1\x40\x8c\xd6\x3c\xbb\x59\x71\xb1\xbe\xa2\x73\x74\x6b\xf2\x62\xcd\x74\xfc\x89\xdc\x6c\x36\x86\x42\x70\x0f\xa0\x5b\xdf\xa2\xcc\x8f\x2c\xc5\x13\xcd\x8e\x10\x4c\x73\x07\x5d\xe3\xa3\x13\x5c\x72\x90\xea\xcb\x32\x2a\x32\x91\x9b\xcd\xed\xd6\x3d\x72\xde\xc4\xb7\x95\xa0\xfd\x8e\x94\x01\xfe\xb9\xc9\x66\x02\x60\x3a\x38\x1f\x01\x65\x83\xcd\x63\x6e\x19\x82\xfc\xdc\x2d\xed\x94\xcc\x12\x06\x17\x44\xc0\xd5\x05\xdf\xdd\x4b\xba\xb3\x97\x34\x31\xc8\x8f\xe0\x54\xe1\x74\x5e\xeb\x35\xdd\x6e\xd1\x68\x45\x64\xaa\x6e\x28\xdf\x2e\x0e\x0b\xb5\x89\x65\xf8\x3f\xec\x47\x3c\xc1\x0c\xa7\x36\x04\x56\xcb\xe0\x18\xc2\x45\x92\xc5\x39\x4e\xb1\xc0\x11\x00\x6c\x84\xf0\x3c\xc9\xfd\x01\xa4\xb3\xcd\x46\x5d\xe7\x76\xb4\x45\x30\x0c\xe4\x60\x70\x34\x9f\xcc\x93\x62\x5c\x0c\x06\xc5\x51\x92\xcc\x27\xf1\x7c\xb3\x89\xe7\x09\x8f\xd5\x38\x10\xce\x47\xe7\x0a\x60\xa7\xe9\x2c\x99\xe3\xb9\x87\xfb\x0b\x84\xc6\xf3\xa4\xc0\xf3\x6d\x1d\x48\xef\x1a\x7e\xb9\x82\x57\x71\x8a\x26\xb1\xd8\x6c\x62\x91\x68\xdd\x0b\xa4\x79\x76\x8b\x6e\x53\x84\xc6\x5a\xfc\x9a\xa4\x13\xed\x74\x69\x5c\x95\x2e\x3c\x72\xd2\x90\x3e\x2c\x84\x93\x7b\xf8\xd2\x86\xbe\x96\xec\x82\x4e\xaf\x29\x66\xc4\xb3\x51\x39\x43\x39\x3b\x4a\x12\xb1\xd9\x2c\x62\xd1\x8e\x2e\x59\x10\x5d\xaa\x53\x37\xae\xe7\x3a\x5c\x29\x21\xd4\x62\xc0\x72\xaf\x26\xb2\xd7\xe3\x98\x10\x37\x9e\x16\xa6\xc5\x48\x99\xc2\x76\xf9\x6e\x67\xe1\xa1\x01\xb1\xa4\x9a\x10\xa3\x1e\xc9\x72\xd2\x57\x95\xfd\xf4\x88\xb2\xbe\x6c\x94\x86\xb2\xe0\x00\x40\x03\x99\x5a\x20\x1b\xb6\x12\x60\x8b\x25\xd3\xd9\xb6\x42\xb2\xd9\x7d\x79\x7b\x45\xdc\xce\x7c\x93\xf7\x4d\xab\x7d\xa0\x78\xfb\xab\x22\x07\xa5\xea\x94\xf5\xa3\xa1\xc0\xcb\x98\x21\x58\x7a\xb3\xd5\x0c\xe1\x55\xcc\x40\x20\xa1\x68\x27\x75\xd9\x1c\xf0\x2a\xb8\xf4\x85\x44\x09\x19\xc1\x14\x92\x32\xfd\x51\xed\xdb\x0f\x23\xfa\xaf\x68\x0e\xa8\xb8\x8a\x75\x50\x02\x75\x65\x52\x8d\x71\x30\x5e\x56\x05\x50\x2b\x9f\xdb\xb8\xa9\xf1\x22\x3d\x6f\x01\x83\x8f\xe5\x79\x9c\xc6\x51\x79\x09\x12\x6c\x2e\x00\x84\x3d\xc3\x3c\x75\xb3\xb9\x10\x36\xed\x58\x2f\x4f\xb2\x38\xc5\x1c\x4b\x27\xd3\x54\x98\x30\xf5\xd1\x9e\x73\x55\x7d\x54\x0c\x06\xba\x25\x4f\x90\x99\xa3\x49\x91\xe4\xe3\x7c\x30\xc8\x8f\x92\xa4\x98\xc4\x20\x26\xa4\x4d\x31\x61\x81\x73\x34\x2e\xf4\x50\xea\xf2\x41\x81\x15\x92\x56\xa3\x50\x57\x84\x39\xad\x7c\x96\x14\xaa\x46\x8e\x8b\xad\x3f\xaf\x14\xe7\x56\xd4\x9c\x25\xc2\x5c\x24\xf3\xb6\x39\x8a\x3b\xc5\xc0\x80\xc8\xfa\xbf\xa8\x93\xf2\x0b\x56\x07\xa8\x2a\xff\x55\x78\x2d\xed\x7f\x03\x0e\x59\x4b\x41\xb1\x43\xfd\x01\xe9\xb0\x39\x73\xc5\x66\xe3\xc9\x89\x97\x71\xa1\xe5\xc4\xbc\x94\x13\x67\xa5\x9c\x98\x20\x5c\x20\xf5\x7f\xba\x8c\x1b\x6b\x5c\x20\x64\x50\x7f\x53\x52\x5b\xc0\xf5\xe0\xd0\x4a\x6e\x91\xc9\x3a\x56\xab\x84\xf3\x5e\x1e\x5e\xf2\x0c\xab\x4b\x32\xc5\x12\x17\x5a\xce\xdb\xd7\xe6\xd0\xf6\x22\x99\xbb\x5b\xea\x28\x49\xf2\x36\x44\x0d\xbb\xd1\x8a\xa8\xd5\xc8\x70\xae\x15\x37\xaa\x38\x22\x08\xd7\x72\xb3\x89\x65\xa2\xe0\xb8\xf0\x21\xfc\x58\x63\x4a\x70\x39\xe5\x43\x38\xbc\x48\xb8\xb7\xe3\xba\xfe\x88\x21\xa0\x1c\x8d\xa4\xb9\x71\x6a\x0c\x97\x18\x04\x9b\xc0\x16\x85\x55\x35\xcd\x2c\xa1\xed\xf6\xce\x18\x62\x27\x49\x42\x26\x91\x7b\x8f\x8c\xc6\x73\xc5\xc4\x4e\x62\x91\x10\x4c\x0c\xae\x43\x63\x7d\xf7\xba\x59\xd8\xc1\xa3\x1a\x49\x52\xce\xba\xa9\xfa\x62\xc6\x2c\x8c\x04\xc1\x8c\x99\xd8\x31\x57\xd1\x70\x93\x35\xba\x69\xe5\xfe\xeb\x0f\x08\xfa\xa1\xc0\x82\x2e\x25\x95\x07\x85\x7e\x91\x6b\x65\x5d\x87\x0a\x46\x11\x6e\xc0\x26\x90\x75\x08\xef\x22\xfa\xcc\x23\x86\x25\xdd\x6e\xcb\xea\x30\x03\xb8\x5d\x46\x82\xa4\x8b\x97\x2c\x53\xbc\x5c\x37\xa6\x85\x7c\x68\x7d\x5b\xbb\xa7\x85\x73\x95\x24\xa8\x5e\x4d\x3a\x5e\x0b\xfa\x1e\x18\xe0\x4a\x5d\xcb\x74\x8a\xfc\xde\xdf\x73\xef\x35\xf5\x33\xf3\x2b\x35\x2e\xa9\xb3\xce\x5c\x85\x0c\xf6\x68\x1a\xf0\x2c\x01\x3a\x06\x0d\xdd\x6e\xd6\xc2\x00\xbb\xc3\x54\x7a\x91\xa8\xa8\xa2\x1c\x42\x33\xfc\xc7\x9b\x97\x2f\xde\xb8\x25\x4d\xc8\x08\x80\x23\x21\xa3\x37\x6a\x8f\x7c\x0a\x21\x4b\xbc\x50\xd4\xd6\x14\x4d\xfd\xc6\xf3\xaa\x41\x9d\xcd\xd3\x5f\xfe\x6d\x0c\xf0\x84\xd7\x09\x1b\x3d\xf7\x41\xb1\xbc\xcd\x7b\xe5\x69\x13\x84\xaf\x09\x8b\x6f\x5b\x05\xc0\x0a\x33\x35\x29\x30\x7b\x11\xc0\xf6\x95\x64\x57\x3f\x2f\x2e\xb4\x1a\x36\x5f\xf6\x7f\x7c\x36\x7a\xe6\xf6\xdc\x48\xfc\x9d\x30\x98\x20\x2b\x9a\x64\xe4\xba\x5f\x1b\xa9\xc2\x0c\xd6\x4f\x05\x5e\x98\xe3\x33\xe7\x4c\xa6\x54\x61\xfb\x9e\xb0\x8e\xfe\xb4\x8f\xcf\x52\x6d\x8e\xac\xd6\xf2\x06\x8b\xd1\x39\xb8\x5e\x86\x36\x84\x39\x77\xf6\x0b\x1e\xe9\x17\xc0\x69\x58\x7f\x6a\xb0\x68\xaf\xc9\x9c\x8b\x45\x19\xe3\x5c\x0e\x06\xb4\x4a\xce\xc4\x20\x7b\x93\x82\x5e\x5e\x12\x11\x47\xea\xa8\x2a\xf6\x88\x8e\xce\xcb\x79\x25\x8a\x3d\xdd\xfa\x1c\x6a\x93\xff\xd4\xf2\xc5\xf2\xca\x73\x6c\x9f\x9b\x86\x76\x19\x14\x6b\x5f\x04\xa2\xb9\x57\xbb\x64\x6d\xbe\x45\xfa\x4e\xd1\xaa\xba\x10\xd3\x36\x64\xe5\x02\xed\xc7\x3e\xcb\x8b\x9a\xf2\x72\x75\x51\x28\x26\x43\x8e\xce\x4b\xf9\x09\x28\x82\x88\x59\xa2\x08\x6d\x30\x4c\x3f\x54\xb4\xdf\x73\xf6\xeb\xad\x23\xc5\x9e\xfa\x95\x39\x46\x4b\x2e\x62\xcb\xf9\x94\x63\x57\x17\x94\x4f\xd0\xc9\x19\x1a\x0c\xc0\x99\x83\x11\xf6\xe3\x05\xc9\x88\x24\xfd\x7a\xa9\x4a\x7b\x0b\xa0\xe2\x74\x5b\x86\x9b\x42\x1e\xff\xeb\xf6\x70\xb3\x11\x3e\x5f\x9c\x3b\x72\xa7\xb5\x4f\xdb\xda\x16\xee\xcc\x35\x8e\xaa\x92\xd8\x28\x18\xbc\xd4\x5b\x74\x6f\xcb\x02\xfb\x54\x46\xfb\x9f\x92\x59\x4f\x04\x19\x03\x51\x7f\x65\x1d\x0c\x62\x55\x3c\x69\x64\xc4\x48\x6f\xac\x19\x69\xe0\x79\x0d\x87\x34\x71\x01\x50\xb4\x07\x41\xb7\x2d\xb5\xef\x29\x99\x59\x1f\xa3\x7e\xda\xa8\xd9\x05\x88\xf0\xa1\xfb\xb0\x00\xba\x32\x04\x0d\x47\x1e\x7c\xc0\x02\x86\xc6\x13\xdb\xc3\x53\x83\x94\x9d\x6f\xc6\x7a\x1c\x75\x19\x77\x84\x9b\x82\x21\xb5\x01\x27\x6a\x8a\xd3\x93\xd9\xa8\xdc\xbc\xcd\x66\x0e\xea\x57\x08\xb3\xfa\x28\x69\x70\x94\xac\x31\x4a\xaa\x46\xc9\x02\xef\xcb\x42\x65\x35\xc7\x68\x7c\xbc\xb7\x0d\xf1\xb3\x8c\x48\xbf\x3c\x0b\x35\x1a\xda\x40\x6b\x52\xa4\x2c\x5f\x72\xb1\x7a\x56\x7b\xf7\xb6\xd2\x78\x45\x79\x8e\xc0\x98\xe0\xe5\x32\xd6\x52\x48\x34\x09\x8b\x32\x22\xd7\xd8\x38\x1a\x0a\x78\x8d\x5c\x81\xd3\xbe\x7b\x7f\x53\xf5\x62\x3b\xc8\x4d\x95\xbc\xde\xc0\xbf\x28\x9e\x8c\xff\xfa\x87\x78\xfa\xb7\x3f\xcc\x86\x8a\xb2\x85\xaf\x91\xfa\xf9\x87\x7b\x08\xf3\x84\x4e\x4f\x67\x38\x4d\xe8\xf4\xfe\x0c\xe7\x09\x9d\x7e\x3b\xd3\x6e\x34\x46\x57\x69\xfe\x5a\xab\x87\xa5\xc6\x2c\x43\x8f\xa7\x48\xc8\x68\xa9\x3d\x0c\x28\x94\x5f\x19\x1c\x47\xbd\x22\x29\x06\x83\x62\x04\x17\x27\x04\x14\x57\x4d\x10\x11\x33\x5c\x38\xc5\x0c\xa0\xe5\xc6\x12\x4b\x1d\xde\xc7\x13\xb2\xbe\xbd\x59\x03\x11\x32\xce\xb7\x65\xdc\x7a\x32\xca\x38\x7f\x57\xac\x63\x86\xb6\xf1\xc2\x62\xca\x52\xe2\xe8\xe2\x34\xec\x40\xbe\xdb\xaa\x5b\x3f\x4b\x34\x3d\xb6\xf7\xb0\xf5\x9d\xf0\x38\x9d\x5f\x11\xcf\xfc\x07\xf0\xd2\xd2\xba\x8e\x7f\xc6\x45\xaf\xf6\x5d\x63\x34\xe8\xd2\x7b\x61\x17\xe0\xa3\xbc\xe2\x25\xea\x1c\x86\x6c\x6e\xcc\x72\x15\x35\x4b\xcb\x06\x83\xc6\xbd\xc9\xf4\x52\x22\xc3\x04\x4e\xa3\x63\x8f\xf6\x3c\x36\x85\xa3\x59\x19\x51\xdd\x9b\xfe\x94\x60\xa1\x70\x70\xac\xa8\x36\x4d\x9c\x95\x5e\x32\x2c\xd9\x26\xbc\x94\x1a\x65\xe7\xc0\xba\x1b\xf9\xbe\xb7\x7e\x9c\xa2\xf7\xf7\xb0\xa6\x33\xeb\x7b\x24\x7d\xb1\xfc\x66\x73\xe4\xa4\x6d\xc4\x91\xbb\x53\x59\x97\xd1\xcf\x36\x1b\x52\x0b\x0d\xe7\xee\x9d\xca\x6d\xec\xd1\x4c\x47\x3e\xbd\xa0\xee\x0f\xef\x33\xc9\x35\x46\x41\x58\xd6\xa2\xbf\x61\x17\x7e\x96\x79\x04\x51\x8d\xec\xe4\xfd\xb5\x20\x60\x6d\xde\xb7\xb7\x41\x3f\x27\xab\x94\x49\x3a\xcf\xb1\xa7\xbc\xb6\x4b\x1d\x6c\xd4\x7f\x1b\x54\x07\xa3\x86\x4c\xdc\x6c\xec\xaf\x24\x49\x80\xe0\x33\x5f\x52\xfd\x04\xb2\x52\xe0\x34\xae\xc8\xce\x70\x54\xe1\x45\x4b\x8a\x31\x0a\x5c\xc4\x12\xdd\x92\x11\xe3\x92\x2e\x6f\x2c\xeb\xa0\xaf\x14\x45\xee\xa9\x3b\xb5\xaa\x50\x88\x6e\xd5\x8a\x78\xe2\xf1\xdb\xf2\xd2\x00\x6b\x90\x03\x98\x91\x4b\x22\x1f\xcd\x65\x91\x66\x96\x48\x05\x6f\x9c\x02\x93\x06\x8d\x95\x30\x4c\x1a\xd2\x16\x88\x2e\x57\x13\x6c\x25\x1c\x93\x9a\x70\xa5\x6a\xc1\xc0\x6a\x02\xab\x58\xc2\x27\x9e\x27\xf5\x7a\x71\xe6\x00\x80\xc6\x73\x78\xb5\xc0\x3c\x9e\x43\xe1\x2d\x18\x65\x04\x7a\xa8\xc6\x35\xf4\x08\xf2\x6d\x40\x59\x6e\x17\x1b\x55\xf8\x32\xc9\x2c\x91\xfa\xc4\xd7\xd5\x1c\x56\xeb\x14\xd4\xd9\x71\x5d\xef\xc1\xbc\x13\x8f\x83\x92\x1d\xa2\x40\x6a\x72\x32\x3e\xdd\x36\x54\x0f\x4a\xaa\xdd\x06\xf2\xf0\xe1\x4b\xd8\x93\x53\xbe\x43\x91\x74\x7e\xe5\x68\x90\x0a\x74\x81\x43\xc5\x22\x4e\x8d\xff\x6f\x1f\xed\xd7\x57\x5a\x6a\xa4\x0a\xd6\x7c\xa2\xdb\x53\x3e\x33\xdc\x58\x2b\x2d\x74\xc7\x53\xbf\xad\xdf\xa0\x52\x7c\xb8\x26\x9b\x8d\x99\xf0\x6e\x9d\xb8\xb2\xb9\xf3\x3c\x7d\x4f\xfe\xa2\xae\xdf\xbf\x83\xb3\xd5\xf8\xae\x67\x64\x73\x9b\x39\x1e\x42\xc3\x8d\x56\x33\xa5\xcb\x58\x36\x1e\x9a\x41\xdd\xc9\xbd\x2f\x9b\xcc\x68\x0b\x32\x1b\x45\xbf\x3c\x56\x57\x4e\x7c\xdb\x82\x09\x76\x18\x6f\xdb\xe0\xe0\x15\xd5\x28\xb5\xbd\x75\xbd\xeb\x9a\x2a\xa1\xaf\x49\x0b\xbd\x81\xaf\x5e\x88\xda\x61\x88\x73\x5f\x9a\xe4\xbf\x87\x67\xdd\xee\xa6\x56\xb3\xcd\x60\x69\xe3\xb3\xe6\x33\xc8\x80\x76\x96\x75\xa4\x54\xd7\xc6\x03\x15\xac\x68\xb5\x63\xb5\x0e\xa5\x3d\x55\x82\xcf\x66\xf5\xd9\xd3\x94\xa5\x06\x2c\x70\x01\xb3\x4e\xe7\xc4\x89\x4f\xff\xfc\xf4\xf5\x9b\xe7\x2f\x5f\x78\x3e\xbe\x9c\x48\x42\x34\x92\x40\x1c\x3d\x66\x8d\xf4\xb7\x8e\x50\xa5\xe1\x3a\x65\x01\x27\x84\xc1\xb5\x8c\xb4\x74\x97\x68\x07\x90\x3b\xe1\x2d\xae\x08\xc4\xbd\x0c\xfd\x60\x94\x9a\xd4\x54\x3f\x1f\x55\xe4\xa5\x79\x55\x02\xbc\x45\x46\x3d\x3c\xa3\x17\x22\x15\x94\xe4\xd6\xf7\xb3\x4b\x28\x29\xeb\x08\xb0\x7a\xdf\x69\x90\x47\xb8\x18\x99\x05\x53\x17\xa4\x3d\x28\x45\xb7\x83\x62\xa5\x9f\x2d\x62\x58\x27\x60\xdd\x87\x6e\x63\xe8\x36\x26\xb5\x07\x02\xe7\x1c\x00\xf8\x2f\x04\x22\x16\xe9\x99\xa9\x92\x6d\x2c\x27\x79\x2c\xd1\xf8\x76\x8b\x09\x42\x23\xed\x5e\x59\x0b\xc9\x14\xad\x0a\x03\xd5\xf6\xe7\x55\x66\x8e\xa0\xba\x55\x0f\x84\x0a\x88\xbc\x06\xa2\x23\x70\x07\x1e\xb9\x36\x6c\x42\xf9\x40\xc0\x63\xa2\x79\x3e\xf8\x9b\x08\xf8\x83\x09\x66\xc3\x68\x14\x0d\x29\x42\xe5\x40\x7d\xaa\x52\x93\x7f\x60\xb1\x40\xf3\x27\x20\x0f\x59\x44\x68\xb3\x89\xeb\x64\xa6\x2f\xed\x30\x56\x63\xa3\x5c\x5d\xcb\xd1\x05\x99\xf3\x15\x81\xd7\x98\x08\xa1\x46\x68\xe1\x52\xc8\xb2\xab\x3d\x6c\x86\xf0\x82\x5c\xab\xee\x6d\xdb\xf6\x45\x0b\x6e\x97\x9c\xc8\x08\xcb\x8f\x7a\x36\xb6\xcf\x46\x40\x5b\xd5\x5f\x8b\x5c\x84\xee\x7f\x9d\x67\xe2\x7d\x68\xaf\xa0\x88\x4b\x9b\x71\x80\xc4\x4d\xd1\xdf\x3d\x39\x18\x68\x17\x14\x04\x6d\x71\x96\xdc\xd2\xfc\xe9\x6a\x2d\x6f\x74\x20\xd9\x1f\x78\xba\x30\x11\x67\xf5\x87\x8d\x30\x0b\x6b\xae\x7f\xbe\x49\xdf\xbb\x22\x06\xde\xf4\xc7\x0b\x72\xad\x7f\xfc\x39\xcd\xe8\x62\x7c\x74\x82\x17\x74\xf1\xc6\xc9\x80\x6f\xc6\x72\xf4\x9a\x73\x7d\x1e\x8c\x20\x79\xa4\x08\x8f\xc5\xa8\x5a\x0e\xd7\x61\xa6\xaa\x93\xe8\x41\x6b\x35\x43\xb1\x35\x64\xf1\x5d\x3a\x7f\x57\x4d\x07\xb1\xf6\xb8\x9c\xe8\x09\x2e\xa5\xd8\x55\x45\xca\x11\xdc\x53\x54\x7d\xbf\xe5\x71\x64\xc6\xa8\xd7\x17\xdc\x98\x2a\x02\xa1\x7b\x45\x98\x5c\x84\xb6\x5b\xd3\xe1\xf8\xb6\x63\x7d\x5b\x11\xc3\x8f\xf1\x6d\xdd\x37\xdf\xae\xed\x6d\x9c\xd2\x52\xa2\x24\x66\x83\x41\xac\x28\x31\x31\x8c\x42\xe6\x09\x68\xb3\xa1\x40\x1d\xb5\xcc\x54\x2d\xe6\xa2\x49\x97\xb6\x6e\x4a\x60\x66\xc5\x7a\x61\xd6\xd2\x6a\xcd\x2f\xd4\xce\x18\xf0\x3a\xb1\x50\x74\x62\xdc\x11\x16\xa1\xfe\x76\x2c\xd8\x16\x9b\x0e\x2a\x8d\xda\xb6\x1a\x70\x15\x00\x48\x53\x7f\x54\xb0\x39\x74\xab\x7e\xd7\xeb\xed\x39\xa8\x20\x60\xee\x9a\xc4\x76\xdb\x53\x3c\x5e\xa6\x9f\x71\x22\xc1\x39\x98\x02\xed\x4b\x81\x36\x89\xae\x96\x2b\xd6\x15\x3c\xd0\xae\xef\x53\x90\x62\xcc\xc3\x73\xb4\xa1\x3a\xcf\xeb\xaa\xf6\x69\xfd\xbd\x2e\x0f\x98\x63\x69\xa9\x9f\x7e\x0b\x73\x96\x59\x0b\x12\xd0\x08\xae\x5a\x14\xfb\xaa\x54\xfa\xa0\x59\x75\xea\x72\xa5\xca\xdb\x38\xa1\x10\xd8\x52\x1b\xb6\x39\xb5\x0c\x82\xd5\x78\x5c\x57\x58\xa2\x31\x09\x2a\x23\x7f\x54\xd7\xc4\x6a\x2f\x4f\x48\xa9\xc7\x3c\x26\xc1\xd1\xd4\xc7\x52\x8a\x51\x79\xac\x25\x56\x4d\x79\x65\xe9\xf3\xad\xb4\x86\x3c\x0a\x8d\x32\x35\x9c\xa4\x91\x9b\x56\x64\xb4\x6d\x22\xa9\x9f\x98\xe2\xfa\xfb\x92\xf7\x97\x94\x2d\xfa\xae\x4a\x7f\xc9\x85\x7d\x22\x8d\xf0\xd1\x91\x44\x58\x6e\xd1\x21\x3a\xc9\x3b\xb8\x95\x8e\x7c\xd9\xde\x0c\xd2\x67\x3e\x24\x4d\x20\x6f\x83\x67\x2f\xc6\x83\xb7\x5d\x49\x42\x26\xa0\xae\x59\x87\x8f\x10\xd5\xe3\x03\xf0\x1b\xca\x2e\x33\x1d\xe8\x48\xea\xe8\xe0\xad\xb0\x1c\x04\x90\x52\x8c\x52\xda\xe1\xde\x3d\x80\x52\xb0\x0d\x8f\xbd\xa5\xc0\x05\x95\x59\xda\x14\xaf\x02\x1e\xec\x60\xf0\xd8\x13\x47\x36\x14\x3d\x8e\xd3\x35\xfd\x15\xf0\x63\x47\x5c\x17\x7a\xe7\xd8\x89\x04\x43\x90\x62\x7c\x35\x84\x20\xa1\x2b\x08\xf8\xb2\x19\x2d\x4a\xeb\xba\xb1\xd8\x65\xd4\x9f\xb5\x6a\xd8\x51\xdb\xcd\x09\x97\x10\x98\xba\x87\x38\x21\xe4\x11\xd1\x04\x91\x4c\xc0\x7e\x14\xcb\x2d\x6e\xcc\xb2\x4d\xff\x40\x3f\x03\x51\x4f\x19\xc1\x0c\x51\x5d\x05\x3c\xa9\x03\x2e\x45\xbd\xa6\x12\xc8\x2f\xff\xf1\xe6\xe5\x8b\x47\xaf\x9e\x97\xcf\x1f\xbf\xf4\x69\xde\x67\x5c\xf6\xf3\x42\xfb\xf8\x00\x4c\xa8\x95\x44\x1c\xd4\xba\xf0\x42\x0a\xa4\x7e\xa9\xbe\x9f\xfc\x12\xe1\xa3\x98\xfb\x2f\xe7\xe5\x11\xb3\x76\xcf\xb2\x54\x9e\xa0\x08\xe7\x09\x1f\x39\xc3\xa6\x38\xf5\xd4\xe8\x59\x9c\xe3\x48\xc1\xb8\xf7\xce\x1a\xd5\xce\x19\xed\x76\xce\x5a\x7c\x08\x7c\x16\x0f\xb0\x1e\x99\x14\xd6\x0f\xf4\x57\x87\x74\x54\x13\x73\x48\xfd\x57\x1d\x33\xf6\x83\xee\xac\xd2\xf5\x04\xfe\x05\x02\xbd\x7e\xde\x9c\x6e\xa1\x02\x48\xa7\xb0\xad\x3f\x4a\xe6\xf4\xa8\x8c\x12\x17\x70\x9a\xe2\xb9\x3e\x31\x66\xa5\x5a\xba\x2b\x12\xeb\x48\xf1\xe1\xc3\x87\x27\x26\x02\xbc\x26\x35\x04\xc2\xd4\xf3\x83\x72\x3a\xc3\x3c\x39\x39\xe3\x0f\x04\x78\x4e\xe2\x20\x68\x19\x0c\x62\x36\xe5\xb3\xc4\x44\x95\xa1\x58\x4e\xf9\x0c\x73\x2c\x4b\x81\x06\xdb\xea\x3c\x3d\xe7\x8e\x7b\xe2\x24\xa6\x9f\x7b\x4b\xa2\xfb\xa3\xd3\x7f\x1b\x9d\x44\x8d\x61\x2d\x89\x9c\x5f\xdd\x4b\xff\x9e\xd6\xc4\xbc\x90\xfe\x69\xed\x50\x43\x10\x12\x50\xfe\xac\x44\xfc\x29\x9f\xa2\x9b\x61\x15\xc1\x81\x15\x7f\xe7\x9e\x31\x47\xea\xee\x82\x00\xe6\x0a\x2c\xc8\x36\xb0\x09\x7a\xb6\xe0\xbc\x39\xbf\x67\xde\x14\x74\xe2\xde\xb3\xf7\x85\x75\x9e\x0f\x48\x19\x13\x4c\x8d\x01\x10\x4e\x71\x01\x6e\xb6\x50\x23\x46\x16\x45\xe0\x62\x87\x27\x27\x38\x4d\xa8\xf5\x3a\xc3\x1f\xa4\x00\x74\xeb\x91\x24\xb9\x8c\x09\x9a\x30\xd0\x08\xa7\x53\x3e\x43\x63\x19\x93\x61\x34\x8d\x86\xb1\x27\x6f\xcb\x63\xc8\x9b\xf0\x71\x14\xa1\x61\x34\x8b\x74\x59\x67\x88\x41\x07\x83\x68\x6a\xd4\xb8\xf5\x7e\xcd\x54\x35\xfd\x2a\x62\x47\x51\x28\x18\xa7\xc8\xb6\x5f\x98\x76\x0a\xdb\x8e\x19\x44\xd9\xea\x3e\x73\x51\x95\xd5\x98\xc0\x7b\xb7\xfe\xa5\x43\x11\xea\xd6\x2a\xfd\x17\xa6\x57\x17\x06\x4c\xeb\xa2\x78\x0f\x23\x71\x14\x61\x82\x74\xe8\xe4\x68\x10\x21\x67\x07\x7b\xef\xff\xbb\x7f\x72\xef\x12\x47\xc3\x08\x05\x24\x8b\xce\x5f\xaf\x18\x0c\x62\x11\x92\xac\x89\x89\x88\xd1\x58\x60\x32\xb5\xa1\xc9\x66\x09\x61\x73\xbe\x20\x3f\xbd\x7e\xfe\x98\xaf\xd6\x9c\xc1\x73\x19\x1a\x46\x49\x34\x0c\xe4\x88\x9a\xd0\xd1\x5e\xb5\xb7\xdb\x9e\xff\x2e\xd9\xd4\xca\xf2\xdd\x6b\x4d\xc5\x2c\x21\xdb\xca\xe3\x38\x2f\xb5\x72\x58\x52\x6c\x36\x19\xa6\x89\x56\xd6\x5c\xe8\x40\x82\xf9\x38\xca\xd3\x15\x39\xd6\x56\xa3\xd1\x16\x9b\xdb\x1b\x38\x9e\x2b\x92\x2e\x88\xc8\x35\xd3\xc3\x07\x83\x98\x8e\x4c\x52\xc2\x62\x16\xdf\x6e\xb1\x4b\xd0\x86\x13\x1c\x21\x4c\x47\x2b\x22\xaf\xf8\x22\xa1\xa0\x0e\xb0\xd9\x44\x7f\x7c\xfa\x36\xc2\x74\x04\x9a\x6f\x74\x19\xc3\x77\x92\x24\xb6\xe0\x66\x13\x7d\xff\xf4\xd1\x13\x3f\x09\x8e\xa7\xa7\xc6\x1a\x9b\xda\x36\x06\x9c\xb1\xc7\xa0\xa3\x42\x64\xa5\x42\xcf\x24\x42\x0f\x8f\x4f\x27\xd1\x20\x1a\x47\x93\xa8\x07\xb9\xc3\x24\x8a\x86\xe9\x50\xd8\x16\xb6\x5a\x49\x9f\x8e\x2e\xf8\xe2\x26\x51\xb4\xc3\x28\x07\x70\xa6\xcb\x1b\x5b\xc6\x06\xc0\x6f\x8c\xf3\x48\x57\xdb\x6c\x1c\x44\xb8\xf9\xfb\x8b\x33\x8d\x8c\x01\xed\xf1\x5b\xa3\x05\xe1\x65\x19\x0b\x6d\x63\x46\x89\x36\x1b\x6f\x51\x2b\xab\x89\x5b\xdb\x4b\x22\x85\xe5\xe8\x1c\x74\x84\x80\xe6\x3e\xeb\xcf\xaf\x52\x91\x13\x99\x14\x72\x79\xfc\x7f\x22\x84\xe9\xb6\x6a\x7d\xe9\xdd\xa3\x92\x7c\x90\x71\x1d\x23\x0a\x1d\xda\x54\xe8\x25\x59\xab\xc6\xca\x40\xa5\xd4\xf8\x54\xa6\x3e\xe5\xf0\xe6\x86\xc9\xf4\x03\xdc\x9b\xd6\xbb\x32\x35\x74\xba\x7e\x28\x28\xf2\xde\x91\x42\xb1\x9b\xcd\xfd\x93\x7f\x3b\x4a\x12\x36\x18\xdc\x3f\xf9\x77\xfd\x43\xef\xf8\x51\xa2\x68\x31\x58\xdc\xc9\x42\x91\x84\x34\xef\x0b\x92\xaf\x39\xcb\x09\x38\xbd\x2e\x1c\x7f\x7c\x41\xfa\x30\xa8\x45\x3f\xcd\xfb\x6a\xca\xa3\x48\x11\x01\x22\xb9\x55\x5b\xa6\x3d\x4e\x6f\xdd\xc9\x3f\x48\xbe\xee\x08\xd6\xff\x2c\x88\xb8\x79\x95\x8a\x74\x95\xc3\x13\x81\xd9\x86\xb7\xdc\x78\x71\xa4\x98\x8c\x56\x05\xbb\x7c\xa9\x0d\x0c\x9e\x71\xf1\x4c\x61\x7c\x50\x61\x58\x10\x49\xc4\x8a\x32\xf2\x1d\x5f\xdc\x18\xf7\x7d\x49\xda\xd3\x66\x87\xff\x3a\x32\x79\xfb\x6c\xa8\xad\x7e\x9c\x63\xa0\x15\x11\x97\x04\xcf\x93\xd2\x85\xa1\x53\x2b\xf7\x82\xa1\xe0\x75\x72\xef\xaf\xd3\xbf\xce\xfe\x70\xef\x8e\x88\x04\x8a\xb0\x30\x8b\x1c\x8c\x06\xdf\x70\xae\x7e\x3f\xe8\x5c\xfd\xbe\xef\x5c\xfd\xfe\x6c\x5c\x22\x55\xa1\x50\x44\x42\xb0\xb6\x28\x4b\x24\xe6\xb1\xb0\xcc\xbd\xea\xbc\xc5\xce\xd1\xf8\x13\xbc\x2d\x44\x36\x26\x58\x03\xf0\x58\x6e\x6d\x60\x20\x6f\xd8\xa6\x5e\x35\xe4\x85\xca\x7f\x4d\xfe\x51\xa8\x5b\x9a\xa3\x91\x3e\x63\xf5\x9e\x0c\x79\x0a\x8d\x69\xad\x47\x86\xa5\x16\x87\x6a\x7f\x8f\x81\x48\xd1\xd6\xe4\xe8\x2a\xcd\xaf\xe2\x5b\x7b\x92\xc6\x04\xaf\xd3\x9b\x8c\xa7\x8b\x71\x0a\xf4\xc5\x36\x58\xdb\xca\xd3\x6d\x35\x90\xa8\x9b\x8a\xa0\xd1\xe0\x51\x4b\x7a\x58\xc6\xfb\x3f\x0c\x4c\xa8\x1b\x3e\x3c\x66\xa1\xbb\xc4\xfe\xbc\x5b\x1d\xcb\x9c\x03\xf1\x64\x57\x87\xa8\xfd\xd1\x41\xa0\xfd\xf4\x71\xe8\xfe\x03\x8f\x00\x9e\x34\x45\x98\x3d\x34\xa3\x1c\xd7\x5f\xd1\xad\x9d\x35\x19\xb9\x30\xed\x30\xef\x58\x1a\xec\x85\x69\x2c\xed\xd9\x47\x50\xc3\x6e\x23\x1f\x0c\xb8\x22\x60\x34\x09\x08\x33\x9d\xcc\xad\xb3\xce\x91\x00\x15\x92\x98\xa3\x31\xdf\x62\x40\x5a\xcf\xf4\xd8\x75\xfb\xcf\xb8\xa8\x7b\x66\xaa\x1a\x6f\x59\xec\xf9\x96\xe4\x52\x4f\xa1\x59\x1e\x1b\xbb\x44\x75\x2f\xdb\x4d\xe1\x3d\xeb\x50\xb5\xbd\xd3\xd8\x87\xc6\x8e\x33\x37\xed\x41\x7d\x57\x34\x45\x9b\x0d\xd8\xbf\x06\xfc\xfc\x53\xb6\xcc\x88\x42\x2c\xa5\x06\xc8\xca\x60\xdc\x86\x64\xa9\x2c\x9b\xd1\x8b\x7b\xf9\x4d\x2e\xc9\xaa\x25\x93\x7c\x90\xf7\xf4\x5d\x7d\x98\x78\x49\xb6\x23\x7f\x07\x38\xaf\x8b\x8c\xe4\x89\x1c\xe5\x94\x5d\x16\x59\x2a\xe8\x3f\x49\x22\x47\xeb\xac\x10\x70\x33\x38\x4b\x81\xd1\x73\x3b\xb4\x6a\xcd\xea\xa7\xd1\xee\x72\x65\x13\xef\xb7\xc9\xd3\xb4\xb4\xd7\x83\x28\x7f\x57\x8b\xf8\x43\x12\xfe\x57\x39\xfa\x4a\xfb\xb2\xa5\x51\xd9\xa5\xa5\xe0\x6c\x1c\x6a\xd5\x0b\x3b\x18\xe8\xbf\xa3\x74\xb5\x98\xb4\x40\x40\x3b\x6f\xea\x60\x30\x34\x76\xd2\x32\x76\xb2\x63\xec\x64\x8b\xc6\x6e\x84\x40\x2d\x9b\x8e\x07\x83\xd8\xfd\xae\xf4\xe2\xef\x62\x7b\xbb\x7e\xa9\xe0\xa8\x76\x1d\x80\x1a\xdc\xe2\xe9\x0e\xb0\x0f\x01\x77\x15\xb0\xcf\xe2\xa3\x93\xc4\x7a\x94\x79\xfa\x5f\x6f\x9f\xbe\x78\x72\xfe\xea\xf5\xcb\xb7\x2f\xdf\xfe\xfc\xea\xe9\x1b\xfb\x18\xde\xc8\x30\x10\x84\x06\x83\xd8\x82\x9b\x73\xc5\x5a\xce\xa8\xc1\x55\xc7\x27\xfe\x3e\x18\x6b\x99\x2d\x6e\x34\xe1\x2f\x5d\xb8\x11\xaf\x84\x6d\xe6\xae\x45\xb3\xbe\x5b\x5d\xff\x21\xb1\xb4\x07\x66\xc1\x46\xc0\x43\xf8\xbd\x55\xfa\xce\x7a\xd8\xff\xd4\x72\x69\x4f\x28\x51\x15\xe6\x57\x2f\x28\xdf\x3b\x02\xa6\xf6\x07\x4f\x8e\x4e\x2d\x2a\x3e\x05\xd3\x04\x4d\xc5\x4c\x62\x9a\x90\xe9\xc9\x0c\xc3\x8d\xe6\x6d\x00\x45\x68\x1c\x33\x9d\xa7\x8a\x9c\xce\xb0\x98\x46\x26\x78\xdc\xf1\x1c\x42\xd6\xcc\x06\x83\x98\x27\xcd\x64\x84\x4f\x8f\x92\x44\x5f\x0c\x19\x4f\x65\x0c\xde\x76\x69\x12\xe8\x03\xf3\x09\x1d\xb3\x61\xd4\x8f\x86\xb4\xfb\x46\x79\x7b\xfc\x7b\xdd\xaa\x0a\x25\x51\x81\x59\xb5\xe4\x77\x2f\x85\xbd\xbd\x76\xcc\xde\x3f\xee\x77\x2d\x49\x15\x2b\x74\x69\x0a\x9c\xbf\x36\xf5\x05\x3f\xd9\xca\xe9\x5b\xc1\x47\x1a\xd5\xd3\x4f\xbc\xab\xce\x00\x79\x29\x99\x73\x03\x07\xe9\xa9\x4b\x8f\x4b\x87\xaf\xd8\xaf\xef\x1b\x4d\xec\x40\xfa\xad\x17\x45\x65\xc8\xac\xd5\xa8\xe2\xce\xe5\xfc\xec\xc2\xd5\x5b\x3d\xea\x7c\x3c\x9d\xde\xfb\xc3\x3d\x1c\xa9\x7e\xa6\xf7\xf2\x3f\xdc\xa3\xf6\xf7\xdf\xe2\xf4\xc3\x46\x92\x5c\x22\xaa\x93\xff\x70\x4a\x74\x4e\xcc\xe7\x92\xaf\x37\xef\xa9\x40\x85\xcd\xa2\xf5\x1c\x5a\xcd\x80\x50\x70\x1b\x4d\xe8\x6d\x2e\x38\x2b\x72\x54\x6b\xf4\xa2\x40\xb6\xb1\xbc\x4c\x5b\x2e\xd3\x6c\x23\xf9\x2a\x95\x88\x9b\x5c\x6e\x73\xa7\x92\xce\x50\xb1\x32\xc9\xa9\x97\x98\x56\xd2\x72\x33\x01\xd7\xec\x64\x1c\x4f\xff\xb6\x9c\xa1\x25\xd9\xc4\xd3\x4c\xcc\xd0\xd2\x0e\xe6\x0f\xf7\xdf\xdb\x42\x57\xf4\x3d\xb1\xc9\xb6\xc3\xbf\xa5\x84\xf2\xe2\x66\xb6\xf9\x47\x81\x6e\xec\x04\x6d\x85\x0f\x9b\xf9\xd5\x26\xcf\x37\xf9\x55\x7d\x6a\xab\x54\x8a\xcd\x7b\x22\xe4\x86\xb2\x05\x8a\x27\x63\xfa\x61\x43\x3e\xd8\x52\x74\x4e\xec\x8a\xaf\x36\x19\xe2\x45\x4e\xca\x1c\x2f\x83\xce\x9b\xe9\xdc\xb5\x42\x98\x4b\x22\xcc\x26\xea\xee\xff\x51\xd0\x7f\xda\x94\x7f\xaa\xbe\x66\xd8\x42\xb3\xda\x7e\xbd\x38\xba\x68\x9e\x57\xab\x32\x44\xae\xdd\xee\x5f\xe7\x81\x25\x2e\x56\x3a\x31\x4e\x11\x4b\xb3\x9b\x4d\x7c\x81\xd2\x4d\xbc\x40\x34\xbd\x64\x7c\x13\xaf\x11\xe8\x62\x5e\x11\xf5\x53\x70\x48\xcb\xd1\x0d\xe3\xeb\x4d\x2c\xd1\x15\x41\x71\x4e\xf3\x4d\x4e\x5c\xbf\x39\x35\xbd\xfc\x2d\x55\xed\xb5\xe7\xc3\x0e\xbe\x27\x76\x74\x4b\xe2\x6d\x5b\x5e\x99\x84\x6c\x26\xc1\xae\x7b\x95\x03\xfb\x4b\x5d\xee\x8d\x59\x1b\x44\x44\x99\x08\xbf\xcd\xf6\x22\xfe\xbe\xcc\x50\xbf\x1b\x00\x41\x2a\xdd\xd7\xf7\x53\x6d\xb9\x05\xf8\x1c\xc5\x24\x47\x93\xca\x68\x79\xad\x7e\x9c\x5f\xf1\xfa\x8c\xe6\x82\xe6\xfa\xb8\xc6\x34\xdf\x94\xeb\x45\xdd\x69\x46\x1f\xa6\x94\xcc\x6c\xad\x0f\xb4\x71\x98\xe3\x22\xdf\x50\x5b\xaf\xc8\x5b\x0f\x6e\x63\x80\x00\x87\x84\xf9\xc3\x71\xd0\xae\xa0\xdb\x2e\xd9\x87\xf2\x38\xf8\xe9\xf4\x83\x07\xa7\xff\xac\x4d\x75\x91\xca\xf4\x22\xcd\xfd\xe9\xce\x30\x15\x82\x00\xfc\xbe\x4a\xa9\x50\x38\x2c\x52\xd4\x00\xa8\xf1\xaf\x09\x5f\x67\xb0\x9a\xd1\x2a\x55\x09\x2b\x7d\x32\xa2\xf9\x15\xcd\x16\x11\xd6\x7f\x85\x49\xcc\x15\xa3\xa8\xfe\xd5\x7b\x19\xad\xf8\x7b\xc5\x2f\xaa\x3f\x3a\x61\xce\xaf\x23\x1c\xbd\xa3\x4c\x37\xf9\x4f\xbe\xba\xa0\xaa\x84\xfe\x01\x67\xa9\x60\x40\xed\x40\x6c\x88\x69\x44\xfe\x51\xd0\xb5\x51\x57\xa1\x6c\xc9\xc5\x0a\x04\xa6\x11\x8e\x04\x9d\xeb\xb6\x19\xb9\x51\x9d\xae\xc9\x9c\x82\xf7\x89\x5c\xc3\x12\x8e\x96\x34\xbf\xfa\xff\xd9\xfb\xb7\xf6\x38\x8e\xaa\x51\x1c\xbf\xd7\xa7\x18\xf5\xe6\x3f\xee\x7a\xa7\xa6\x35\x63\x27\x40\x46\xee\x68\x3b\xb6\x43\xbc\x89\xe3\x6c\xdb\x84\xfd\x32\x19\xb4\x5b\x33\x35\x52\xe1\x56\xf5\x50\x5d\x23\x5b\xd1\xcc\xf3\x70\x48\xc2\x21\xc0\x0b\x31\x10\x0e\xb1\x81\x10\x20\xe1\x18\x03\x01\x1f\x48\x72\xe1\xf3\xbe\xc8\xfb\x19\xa4\x4b\xdf\xfc\xbf\xc2\xef\xa9\x63\x57\x1f\xe6\x20\x59\x4a\x02\xd8\x17\xd6\x9a\xea\x3a\xae\x5a\xb5\x6a\xd5\xaa\x55\x6b\xf1\xdf\x2b\x08\xf5\x1c\xe8\x7c\x01\x05\x7c\x2b\x70\x7a\x51\x28\x56\x7c\xfe\x6e\x68\xd2\x0e\xbf\xa3\x28\x35\x56\x30\x37\x48\xfc\x24\x98\xdb\x41\x22\xc2\x0d\x21\xcf\x1a\x70\x53\xc4\x1c\x61\xd1\x93\xd1\x59\x44\x0f\x07\x31\x72\x41\xcb\x9f\xad\x0d\xd3\x66\xe1\x56\x9d\x90\xf8\x35\x61\x47\xa1\x6a\x25\x07\xb1\x0c\xc2\xed\xb3\x26\x69\x41\xe4\x99\xa9\x6d\xd2\x66\x2d\x57\x35\xe5\xe2\x67\x3a\x53\x7d\x62\xa6\x63\x64\x0d\xd1\x18\x8d\xc8\x5b\x1b\x91\xb7\xa8\xf1\x5a\x2b\xf3\xb0\xd0\x45\x3e\x12\x97\x10\x36\x52\xfc\x14\x8a\x06\x03\x2c\x5e\x65\xa6\x69\xd6\xcf\x26\x88\x6c\x33\xd6\xfb\x51\x2a\x64\x08\xb3\x4f\x6b\x99\x43\x06\xdb\x35\xfc\x3b\x11\x53\x44\xba\xa9\xb3\xc1\x1b\xcd\x8e\x4a\x24\xda\xe4\x8a\x5d\x30\x9c\x11\x2e\x8e\xed\x1e\x03\x48\x45\x52\xba\x83\xea\x45\x16\x12\xca\x71\xf1\x78\xd6\x4d\xdd\x1e\x69\xd3\xb5\x74\xf8\xec\xd4\xfb\x2f\xe4\x2d\x76\x70\x9b\xf9\xca\x14\xc6\xb8\x10\xc0\x6d\x06\xb7\x1f\xe9\x48\x99\x9c\xa7\xd4\x15\xed\xa0\x87\x99\x14\xc6\x02\x7f\xee\xf3\xcf\xc6\xff\xf1\xb1\x39\x18\xfb\x73\x6e\xf3\xd9\xb3\x73\xd5\x56\xa5\xb9\x38\xf7\x6c\x5c\x6d\x01\xb7\x19\x54\x9f\x7b\xb6\xd3\xaa\x7c\x0c\xcc\xc1\xbe\xfa\xce\xbf\x54\x80\xdb\x3c\x54\xfd\x5c\x4b\x7d\xff\x0f\xfe\x3d\xf4\xe7\xd2\x69\x73\xc2\x1c\x2f\x35\xd0\x72\x79\xb6\x60\xe0\x99\xd7\x09\x20\x17\x52\x58\x5c\x3e\x2c\xd1\xe8\x6c\x8c\x68\xa9\x13\x21\x6d\x86\x22\x22\x02\x97\x0a\x6a\x34\x56\x28\xbd\x28\x5c\xef\xe2\x50\x44\xf1\x2e\xa1\xf8\xe1\x6a\xbc\x12\xac\x36\x4a\x2b\x8c\xf5\x1a\x73\x73\xcb\x98\x79\x38\x9a\x5b\x7f\xec\x33\xfb\xe9\xb2\x03\x66\xac\xf8\x5f\xfe\x86\x35\x85\x39\xb7\x16\xbd\x3e\x5d\xd6\xb3\xab\x9e\xe0\x15\x1d\xb4\xb3\xfa\xd3\x36\x2f\xf1\x99\x18\x75\xfc\xd9\x9a\x8e\xd6\x2e\x6a\x69\xa2\xd6\x60\xe0\x66\x52\xf4\x03\xe9\xa4\x66\x17\x01\x65\xe0\x56\xa4\x1b\x98\xa2\xb5\x5e\xae\xb5\x5e\xa6\x35\x53\xaf\x68\x6b\x08\x93\x91\xe6\x7d\x7b\x58\x0d\xd4\x53\xc3\xf1\xb1\x89\x46\xdf\x33\x09\x43\xd8\xc1\xf1\x68\x94\xea\xa2\xc6\x37\x8c\x29\x9b\xa4\x4c\x85\xe4\x34\xbe\xa6\x47\x97\x3d\x72\x3e\x70\xf1\xb3\x30\xe2\xbc\x19\xb7\x72\x66\x91\xa7\x06\xc1\x95\x34\x2b\x92\xef\xf6\x9a\x08\xb2\x0c\xab\x04\xc3\x84\x43\xdd\x4f\x3b\xba\x92\x71\x0d\xd9\xfc\xcc\x46\xc1\x34\x2d\xb9\x49\x5b\xb0\x89\xf2\x75\x27\xec\x74\xdb\xa3\xa0\xa9\xba\x79\xd7\x5b\xbc\x46\x33\x17\xa3\xef\x22\x52\xd3\x05\x17\x27\x97\x50\x1b\xbe\x8b\x0a\xa6\xc8\x4e\x32\xa3\xb1\xa6\x67\x6c\x4f\xb2\x04\xb7\x38\x4d\xa9\xc2\xde\xe8\x82\x85\xdd\x51\xbb\x13\xc7\xb7\x2c\x5b\x7c\x01\x06\x31\x6c\xc3\x0e\xec\xc1\x15\xd8\x85\xab\x9c\x05\xaf\xf8\xb3\x68\x30\x08\xb4\xe5\x09\xec\xfa\xa1\x81\x1d\x07\xae\x24\xde\x02\x70\xd7\x6d\xfb\x99\x09\x86\x6e\xc7\x8f\x3d\x74\x0e\xb5\x5d\x04\x06\x83\xbe\x06\x41\xb9\xec\x76\xb8\x08\xd1\xf3\x3b\xcd\xfd\x19\x29\x20\x45\x9e\xb6\x20\xd4\x6e\xa9\xf8\x10\xf9\x4f\xbd\x56\xd2\x11\x2e\x08\xad\xca\x00\x55\xbc\x4f\xca\xbd\xc7\x6a\xc5\xf9\x98\xa3\x1d\x3f\x94\xb0\x4f\x9b\xab\x2d\xd8\x2d\x97\x69\xb3\xd7\x12\x0a\xb3\xc8\xc5\x00\xae\xfa\x91\xbb\x0a\x80\xf0\xb5\x21\x2d\x48\xf8\x4e\x72\x12\x2d\x1f\x3d\xd7\x73\x57\xa1\x83\x1d\x00\x71\x12\x49\x6b\x3d\x91\xb2\xd6\x1f\xad\x95\xcb\x2e\xf1\x59\x73\xbd\x5a\x6f\xc1\x59\x77\xd5\x27\xcd\x5a\x0b\x68\x6c\x81\xf9\xf5\x6a\x15\xcc\xeb\x7b\x36\x9f\x08\x61\x42\x66\x82\xd8\x27\x52\xa0\xd2\xad\xae\x8a\x18\xaa\x70\x9c\xd9\xef\x58\x9d\xd2\xb6\x35\x55\xbb\x6d\xd2\x95\xd6\x1e\xe5\xee\x59\x0a\xf5\xd3\xa8\xc0\xec\x0b\xe7\x55\xf4\x2a\x52\xdd\x24\x7e\x5e\x50\x45\x66\xb1\x4d\x40\x69\x5e\x73\xf9\x01\x9a\x48\x66\x1c\x13\x3e\x21\x3a\xb0\x60\xff\xf0\x64\xa7\x5c\x04\xd4\x13\xf2\x27\x4e\x1f\x7f\xf2\xb1\x80\xc6\x0b\xe9\x9f\xe2\xa9\xc9\x63\x51\x9f\x74\x9e\xc8\x16\x10\x97\x84\x4b\xc5\x79\x8a\xb0\x13\x62\x82\xaa\xf1\xda\xb2\xd1\x0d\x27\x49\x05\x24\x67\x91\x9e\x29\x28\x71\xba\x8c\x08\xa2\x41\x58\xa0\x09\x46\x9e\xcc\x7c\x6a\x6d\xd9\xb6\x17\x25\xc6\x78\x4e\xe9\x78\x23\xc6\x70\x77\x5d\x78\x68\x0d\x2c\x8b\xf1\x65\xc4\x99\x62\x64\xa4\x61\x63\x3b\x1a\x94\xcb\x73\xcf\x7a\xf1\xda\xf2\xc7\xe6\xe4\x82\x14\x5a\xf2\x82\xa2\x2a\x04\x4b\x0d\x56\x1f\x02\xc0\xba\x3f\x34\xe6\xcd\x4f\x45\xa5\x53\xcf\x7c\xaa\xd4\xe5\xc8\x12\x36\xcc\x4e\x45\x38\xa2\x08\x64\xcf\x84\x99\xa2\x78\xf1\x0f\xdc\x00\x62\xe5\x6f\xc6\xaa\x47\x49\xd1\x2b\x6c\x35\x3c\x15\x74\x91\x1b\x8c\xc7\x74\x1a\x61\x23\x09\x10\x69\x94\x14\x90\x90\x8b\x06\x03\xc7\xb6\x89\xfb\xfc\xb3\x73\x73\xcb\x30\x95\x24\x53\x3c\x47\xfa\xfc\x34\x63\x18\x61\x67\xbc\x90\x30\x2a\xe7\xa0\x98\xfc\x7d\xfc\x8f\x8c\xb3\xee\x3b\xfb\x2a\xac\xb2\xcf\xd9\x07\x1a\x05\x36\xc8\x61\x14\x74\xaa\x98\x60\x66\x9e\x16\xe4\x9c\x09\x4c\x79\x8e\xd6\x86\x0d\x3a\xa8\x9e\xf2\x0c\x28\xfe\x9b\xad\xc9\xe7\x3c\x2c\x77\x1c\x40\x15\x47\x3a\x25\x94\xad\x95\x02\x52\xb2\x7a\xe3\x39\xda\xf7\xa0\x99\xb0\xc4\xa2\x84\x04\xab\x68\x30\x70\x25\xe0\x23\x1d\xac\xc7\x0b\x83\x98\x1d\xd3\xa6\x6a\x73\x0e\xa8\xd4\x01\x80\x74\x27\x86\x4a\x05\x96\xd2\xa9\xf8\xae\xb4\xe2\xcc\xa5\x70\xe7\x40\xac\x12\x95\x01\x7a\xe6\x6b\xe4\x37\x5b\x30\xe0\xff\xc5\xb6\xf3\x48\x57\xe1\xec\x0b\xb1\xb7\x88\x82\x33\x8b\x31\x42\xc2\xc1\x7b\x6d\xbe\x7f\xd0\x84\x83\xec\xeb\x70\x90\xa1\x1f\x37\xfb\xad\x19\xbe\x8c\xc2\xd4\x60\x09\xac\x81\x85\x48\x0a\x8e\x21\x68\xe4\x33\x60\x58\x03\xe5\x72\xa0\x73\x0c\xdd\x51\x03\xab\xcd\x93\x83\xd4\xe8\x2b\x84\x06\xc4\x1a\x89\xcb\x5c\x11\x38\x12\x0c\x81\x58\xdd\x70\x5b\xd5\x48\xcc\x1c\x2b\xaa\xce\x45\xb0\x68\xf9\xad\x06\x6d\x1a\xe9\xd0\xdd\x73\xd5\xa5\x3e\x0e\x3b\x55\xfd\x3c\x6f\x47\x94\x9a\x33\x8e\x45\x20\x1b\xf3\x56\xa5\x6b\x43\xc8\x79\x76\x10\xd9\x81\x39\x85\xef\x16\xe1\xb2\xd4\xd8\xc2\x29\x40\x56\xdc\xa5\xd1\x2a\xe7\xda\xbb\xb4\xf9\xc8\x45\x80\xbc\x76\x14\x86\x41\x2f\x46\x9f\x46\xeb\x31\x24\xbe\xf0\x10\x24\xfc\xb4\x43\xec\x23\xaf\x1b\x06\x8c\x21\x22\x3e\x46\x3e\xf2\x70\xfc\x64\xf0\xdc\x7a\x41\x6c\xd5\x31\x11\xb7\x83\x24\xe2\x76\xec\xd7\xe6\xe3\x83\x68\x3e\xae\x54\x40\xd0\x8c\xed\xc0\xc4\x71\x4b\x39\xb5\xc8\xb3\xb7\x0d\x4e\xd1\x0d\x94\x30\xee\x3a\x80\x6d\xe5\x53\xac\x91\xd8\xed\x56\xeb\xad\xe1\xd0\x0d\x00\x0c\xfd\xbe\xf6\x9a\xda\xf7\x74\x46\xd8\xf1\xa9\x1b\x02\xd8\x2b\xc4\x02\x26\xed\x68\x15\x93\xe5\xc3\x3a\x37\x31\xbe\x89\x0e\xd1\xe5\xd8\xdc\xfc\x6a\xfb\xd2\x22\x3b\x62\x5c\xb4\xb9\xa7\xfc\xab\xe9\xd0\x0e\x00\x0c\x1b\x2e\xf6\x37\x86\x50\x3c\x89\x12\x06\xa8\xcb\xa8\x50\x38\x10\x19\x46\xd4\xa1\xe2\x1a\x88\xe2\x71\xaa\xb8\xd9\x4c\xf5\x73\xb5\xc8\x17\x59\x81\x40\x87\xaa\x2e\x82\x4d\x69\x0d\x97\xc4\x29\x77\x93\xda\x79\xfd\x00\xe2\xa1\xbb\x91\xc5\x4d\xa3\x0d\x13\xcc\x14\x1a\xf7\x75\xd2\x51\xf7\x8c\x9d\xd7\x86\xb0\xa0\x3d\xc7\x1a\x08\x8a\x15\xd8\xa0\xf0\x0c\x5a\x6f\x30\xbe\x40\x33\x18\x2e\x45\x0b\x2e\xe6\x9d\x16\x73\x0e\x80\x17\xf7\xd4\xec\xd7\x20\x01\x0d\xe9\xd4\xaf\xc7\xa5\x03\x3c\x1c\x66\x9e\x68\xea\x85\x9c\x7e\x51\xc0\x5c\xec\x86\x00\xe8\xb1\xf2\x03\x85\x14\xc0\xc5\xea\x3f\xdc\xa7\x14\xa3\x8e\xf6\xbb\x33\x36\x34\x32\xcb\x27\x59\x46\x31\xa9\x46\xe5\xd2\xb5\x0c\x2e\xf8\x20\xe4\x7b\x11\xeb\x85\x83\xee\x12\x6b\x81\xb4\x1b\xe8\x89\x9c\x4b\x98\x82\x06\xc2\x8b\xc9\x9e\x48\xae\x33\xc8\x3b\x74\xf2\xe4\xa1\xff\x5c\x3c\x7a\xe8\xf0\x13\xbe\x8a\x0d\xe8\x40\x9d\xfa\xe4\xd1\xa7\x3e\x75\xfa\x09\xdf\x69\xb6\xf2\x0f\x4c\xd2\x3d\xd5\x6c\xa6\x7a\x06\x15\xbe\x5f\x4d\xe7\x46\xe7\x7a\x01\xe9\x54\xad\x70\xa3\x13\x46\x3f\xc1\xe2\x20\xad\x6f\x16\x4e\x07\xe5\x31\xca\x7a\x54\xa4\x1c\x06\xa2\x96\xf2\x0c\x9c\x31\x4a\x14\xe2\x86\x7e\xe4\xf0\x68\x1d\x64\x29\x00\xa5\x9f\x3b\xb9\x84\xcf\x64\xa7\xdf\x46\x6e\xd1\x0a\x61\x5e\x17\x87\x0c\x51\x37\x4f\x54\xd5\x7a\xca\xd7\x25\xb3\xe2\x83\x23\x4d\x29\x14\x0c\x45\xb8\x33\x17\x6b\x05\x6e\x52\x80\x5a\x33\xa6\x4b\x8a\x3a\x23\x61\x5f\x92\xcf\x28\x27\x11\x00\xc8\xb7\xf7\x68\xa1\xe9\x38\xad\x46\xf4\x68\x6d\xa1\x99\x70\xdc\xa8\x5a\x07\xad\x46\x16\x23\xf7\xb3\x15\x91\x5c\x24\xe1\xd1\xf4\x52\xe8\x5e\x67\x0c\x79\x6d\xe3\xf9\x8e\x7e\x67\x02\x89\xf5\xd8\xa4\x38\x34\xe0\x08\xaa\xa0\x3e\xd5\xb3\x62\x26\x43\x71\xb2\xc8\xd7\x61\xa5\x17\x48\x93\x24\xbb\x54\xa5\xde\x10\x2f\xd1\x4c\xb9\x34\xbb\x4c\xe2\xaa\x0e\x05\x93\xdf\xd0\x83\xeb\xf0\x6d\x58\xf2\xcc\xe3\x41\xaf\x41\x76\xe4\x8d\xdc\xde\xef\x3f\x8b\xd9\xca\xf1\xa0\x27\x2c\xe5\xc7\x1c\x50\x39\xa6\xbc\x54\x27\x26\xf1\x25\xcd\x81\xab\x7d\x12\x07\xdd\x42\xab\xa2\x09\x22\x58\x61\xae\x65\xc4\xaa\x62\x30\xa6\xde\xc2\x6c\x4a\x68\x11\xa4\xa3\x73\xee\xba\x69\xcd\x4c\xca\x28\xc9\xa2\x89\x0d\x1b\xc3\x23\x22\xed\x69\x19\xcb\x72\xc7\x65\x49\x5a\x0d\xcb\xe6\x65\x4a\x44\xef\x16\x86\x33\xcb\x6e\xfc\x2c\x4c\x81\xfe\x69\xa2\x68\xdf\x9f\x39\xd8\x48\xcc\x27\xa8\x35\xd8\x26\x85\xd8\xc6\xd3\x63\x5b\x88\x3d\x55\x71\x08\x2e\x3c\x2e\xec\x0c\x61\xd3\x20\x3d\x85\xd4\x6d\x6f\x87\xbb\x8b\x75\xab\xee\xb8\x48\x14\x32\x2c\xb6\xed\x1a\x63\x7d\xf9\xda\x1c\x46\xfe\x72\x46\x36\xb4\xa2\x96\xa1\x66\xd4\x12\xcf\xf4\x72\xd3\x2a\xa5\x46\x9c\x92\x1a\xc9\x50\x1c\xc2\xf9\xa9\x36\xb6\x05\xe4\x08\xcc\x24\x11\x78\xf5\x14\xf5\xc1\x50\x9f\x50\x3a\xf9\x13\x4a\x4f\x9d\x50\x3a\x00\xae\xf8\xb5\xf9\x95\x83\x9d\xf9\x95\x4a\x05\xf4\x9a\x2b\xf6\x09\x65\x45\x4a\x06\x5d\x15\xe0\x3b\xcf\x47\x81\xdb\x03\x70\xd5\xef\xa6\x79\x25\x5c\xf7\xbb\x9e\x64\xd9\x70\x99\x6f\x35\x4b\xfe\xc6\x70\x66\x75\x44\x90\x68\x1d\xb9\x82\xb6\x66\x88\x08\x06\x93\xde\xca\x2c\xd1\xc5\x4f\x44\x17\xb5\x8d\xf5\x9a\xeb\x4d\xd6\x12\x0e\xa9\xab\xf5\x59\xdf\xa7\x66\xab\xc7\xb6\x4c\x30\x18\x8c\xf8\xaa\x05\x81\xec\xf9\x13\x0d\xa5\x5f\x25\xb5\xbb\x15\x69\x8c\xf2\x9d\x5a\x70\xd4\xb4\x79\x4e\x05\x35\x1c\x12\x11\xa9\x17\x8b\x3d\xa7\xc2\x64\x85\x33\xcb\x52\x6f\x10\x01\x48\xca\x65\x77\xa9\xe9\xf0\xdd\xbb\x42\x2b\x8e\x09\x5f\xe9\xb4\xd4\xd5\x74\xb4\x24\xbc\xff\x52\x37\x82\x6d\xbe\x2b\x8a\xbe\xac\xf9\xc6\x3b\xeb\x12\xdc\x88\xc8\x31\x82\x99\xd2\x7c\x46\xc4\x75\x30\x49\xf9\x61\x07\x1b\xed\x24\xac\x87\x34\x09\x5d\xf4\xc7\x9d\x18\x32\x6f\x8e\x3f\xa0\xf3\xbd\x9b\x8e\xa4\xdf\xb3\x8e\x2c\xf9\x93\xab\x3c\x12\xfa\xc5\x0f\x64\xb0\xdf\x97\x4a\x4f\x30\x83\x07\x03\x17\x0b\xeb\xcd\x08\xf6\xf9\x49\x50\x9c\x11\xb5\x57\x05\x71\xfa\x74\x93\x47\x32\xc1\x60\x20\x34\xa7\xfa\x31\x17\x5f\x6e\x14\x26\x87\xb7\x64\x32\x15\xb6\xd3\x77\xec\xd2\xc5\x3b\x6f\x44\xe8\x4d\x91\xfd\xf4\x30\xf1\xa2\x2b\x5e\xcf\x96\xcb\xc8\x8b\x38\xbb\xb5\xa2\x44\x1c\x0d\x91\x34\xfd\xb1\x66\x2e\x48\x45\x73\x0e\xc0\x50\xae\xf0\x35\x88\xe0\x22\x3f\x3b\xae\xe6\x84\x6d\x15\xd5\x32\x4d\x9e\x46\xdc\xc7\xf2\x61\xbf\xa7\xfd\xc4\xba\xa0\x35\x8a\xeb\x50\xc5\x75\xb0\xe0\x3a\x88\x73\x1d\x32\x84\x1b\xd9\x43\x67\x3a\x5c\x08\xf1\x12\x1c\x41\x0c\xa0\x71\x7f\xe2\x12\x8b\x2d\x81\x61\xfa\xc0\xa7\x6b\x5c\x1c\x0e\x53\x76\x19\x9f\x45\xc1\x19\xce\x3e\xb4\xdf\xa8\x34\xd3\x36\xa1\x99\x57\x11\x0b\x60\x5f\xcd\xb2\x7e\xd7\xa7\xa6\x46\x7b\x5a\xd1\x6d\x27\x01\x62\x33\xeb\xcb\x62\x9a\x16\xfe\x2d\x87\x4a\x0a\x2f\xda\x57\xf1\x19\xb4\x2e\x9e\xba\x7b\x38\x56\xf3\x87\xc9\x32\xd0\x6e\x57\xe4\x94\xc9\xd8\x5c\x92\x62\x63\x75\x94\xa2\x62\xdc\xc1\x52\x88\x9e\x0c\x62\x76\x12\x91\x0e\xa2\xa8\xa3\x19\x60\xf1\x57\x57\xbb\x7d\x57\x83\x4a\x1b\x86\xc8\xc5\x4d\x20\xd3\x1c\x6c\x38\xda\xd9\xf6\xb0\xc8\x24\x3c\xb3\x2b\x4b\x8d\xc0\x36\xf6\xf9\x69\x45\x2c\xf5\x79\x4f\xad\xe4\x59\xa1\x5a\x03\xb8\x89\xf5\xfc\x84\xe1\x67\x8e\xe0\xd5\x10\xc7\x85\xfe\x85\xc6\x1f\xdc\xf7\xdc\x8f\x84\x7d\xec\xce\x9f\xb7\x6d\x1f\x24\x8a\x89\xa6\x57\xb9\xf0\x16\xd8\x6c\x4d\x54\x11\xe7\x14\x12\x1f\xe4\x3d\x61\xde\x19\x42\xc6\xe1\x54\x72\x04\x15\x2f\x9a\xe8\x50\xb9\xad\x92\x4b\x5b\xf6\x3d\x61\x4e\x13\x86\x5a\x74\x7a\x9a\x38\xef\x63\x64\xfe\xbd\x9c\xf4\xec\x69\xbc\x58\xe5\xa2\x75\x20\xe2\xcd\xba\x71\x39\x50\x92\x8e\x5e\x95\xd7\x6c\x88\xa6\xa2\x83\xb4\x18\x3e\x09\x2b\xd8\x3a\x25\x4c\xef\x00\x58\x86\x6d\xc8\x0e\x4d\x6f\xe9\xc8\x5b\xec\xa0\x1e\x67\x88\x84\x71\xf1\x72\xc6\x76\xa0\x83\x15\xe7\x4b\xdc\x20\x61\x48\xc1\x70\x9c\xc2\xab\x84\x66\x94\x65\x10\xca\x3a\xd0\x00\x1b\xc5\x9a\x10\x69\x8e\xba\xb3\x97\xfa\xa3\xe8\x9b\x71\xfa\x26\x6e\x5a\xc9\xcf\x74\x94\xae\x94\x92\x5f\x28\xe2\xf4\x65\x31\x75\x31\xcf\x26\x74\x5b\x52\x97\x4e\x25\x20\x83\x27\xc7\x3a\x25\x16\x29\x26\x46\x0a\x9b\x34\xd1\x79\x55\xc3\xf4\xa7\xbc\x0f\xc0\x79\x4e\xf1\x55\xcb\xa3\xb5\xc2\x47\xf4\x35\xfb\x11\x7d\xad\xd5\xd8\x18\xc2\xec\x19\x0b\x65\x2e\xd4\xf9\xf9\x60\x81\x36\x90\x27\xc6\x38\x35\xb2\x76\x71\x49\x7c\x54\xf0\x84\x8c\xc0\x43\x7c\x85\x0e\x71\x33\xc6\xe5\x9e\x22\x26\x44\xc0\x02\xf1\x16\x97\x11\x63\x48\x45\x11\xa4\x10\x83\x46\x6e\xfd\x91\x05\xd2\xd0\x11\x72\x1f\x0b\x03\x72\x86\x97\xa4\x8d\x44\x50\x54\x4f\xb4\xc7\x22\x1e\x17\xab\x21\x3e\x30\xd3\x95\x94\x68\xcf\xd2\xdb\x4e\x36\x84\xc1\x84\xa1\x84\xc1\x73\xeb\x7b\x20\x6b\xfd\x1b\xab\xb3\xa0\xbc\xac\x15\x8d\x4c\x85\xfc\x3d\x12\x78\xd3\x33\xfb\xd1\x96\x7a\x55\xc4\xe3\xc9\x43\xa7\xc1\xd9\x5d\xe6\x5f\x23\x0b\xe8\xa0\x55\x70\x03\x91\xfe\x2a\x12\xc1\x67\x1a\xb3\x35\x4e\x07\x8d\xfc\xa5\x81\x21\xa0\x22\xf7\x0e\xe9\x31\x18\xd7\x89\xd2\xad\xec\x74\x57\x73\x23\xb5\x8c\x7b\x29\xfb\xe6\x18\x78\xbd\x90\x81\xd7\x6d\x06\x5e\x6f\x35\x9a\x42\x56\x18\x27\xfa\x64\x9e\x77\x5b\xd7\x6e\xa9\x5b\x34\xad\x51\xc3\x89\xe7\x91\xb8\x17\x62\xe6\x3a\x9e\x03\x60\xe0\x47\xcd\xc8\x92\x4f\x88\x2f\x0c\xd2\x12\x51\x73\xc3\x01\x0b\x81\x17\xf7\x97\x64\x4f\xdc\x3a\x0c\x4c\x76\xa0\x6b\x82\x0e\x68\x34\x83\x96\x72\x72\x55\xd0\x15\xa5\x9e\x93\x57\x55\x42\xda\x5b\x40\xbe\xe3\x34\xb0\xb0\x4b\x4d\xec\x95\x6a\x10\x57\x85\x81\x52\xf1\x35\x96\xe5\x67\x41\x5c\x0b\x12\xd3\x10\x12\x21\xfb\xb4\x2c\x08\x94\xe7\xa3\xf4\xb5\x7c\x4d\x94\x50\xb7\x5a\xb1\x9f\xee\x5b\xc3\x4d\x52\x38\xe2\x60\x3d\x95\xbb\x22\x4c\x61\x1b\x71\xc5\x77\x36\x9c\x0a\x51\xce\xdc\xa0\x03\x2a\xce\xd0\xd1\x3a\x12\xbd\x1b\x22\xb0\x10\x37\x90\x88\x1e\x31\xf1\xba\x89\x2f\xc6\x0f\xcf\x72\xb3\x28\xb0\x8f\xd1\x9c\x8e\x0f\xeb\x9c\x19\x06\x0a\x3a\x53\x9c\x2a\xce\x52\xe9\x5f\xf5\x9f\x9e\xff\x98\x81\x4c\x71\xbd\xfb\x41\x89\x8c\x28\x51\x9e\x6e\xa4\x06\x68\xdf\xdf\x19\x27\x54\xa4\x5c\x76\x0b\xa3\xa4\x93\x54\x94\x74\xea\x12\x20\xd6\x56\x8c\xd8\x82\xb4\xd5\x11\x70\x23\x63\xb7\x93\xb8\x30\x1e\x11\x95\x11\xc0\xac\xab\x24\x0c\x86\xca\x9e\xf1\x5f\xc6\x43\x59\x9e\x6a\x22\x3e\x7c\x43\x04\x5c\xee\x08\xe2\x6d\x50\x4d\xf1\x1d\xf0\x9e\x72\x86\x02\xcb\xb8\xfc\x2e\x06\x89\x6f\x79\xa2\xad\xcd\xe3\x83\x74\x1e\x57\x2a\x80\x34\xb1\x7d\xef\x84\x13\xc5\x4f\xb1\xaf\x54\x92\xbf\x20\xb0\xef\x26\x72\xcd\xea\xab\x0a\xc6\xf7\x92\xda\x3c\x39\xc8\xe4\xeb\xd1\x26\xb1\x9b\x25\x96\x3d\x44\x12\x0d\x9d\x0a\x9d\x75\x91\x61\x52\x76\x92\xda\x41\x88\x48\x27\xa0\xe9\x79\x92\xd9\x92\x09\x2b\x9e\xda\xbd\xf1\x41\x9e\x5f\x67\xb9\xcb\xb5\xdc\x1d\x8f\xfd\xf8\x25\xb3\x6a\x4a\x98\xa8\xc7\x85\x56\xc6\x22\x63\x1f\x61\x5e\x32\xcb\xe5\x8b\xd9\x3a\x34\xd6\x21\x8c\xae\x9b\x49\x0a\x60\xec\xa3\x66\xa6\xfe\x96\x0b\xe6\x67\x5d\xe2\xbb\x81\x1f\x7b\x44\x78\x7e\x04\x5e\x27\x22\x48\xc6\x91\x16\xfb\x74\xa0\x7c\xaa\xc2\x59\x36\x18\x68\xc3\xd8\x59\xdf\x67\x60\x9e\x37\x09\xe6\x95\x1b\x48\x04\x36\x30\xef\x42\xe4\xa3\x61\x17\x93\x20\x0c\xd7\x85\xd3\xc8\x59\x52\x2e\xc7\x9e\xec\x7b\x02\xb9\xc0\x64\x12\xba\x16\x69\x62\x1d\x59\x5e\x1a\xc5\xf0\x66\x0a\xfc\x30\xbb\xce\x31\xb2\x16\x84\xb8\x53\xe2\x27\x92\xd5\x1e\x2b\xb1\xa8\x24\x2e\x02\xfa\x6d\xd6\xa7\xa8\x44\x22\x52\x15\x23\x5c\x0a\x93\xd3\xa3\x23\xa2\xae\xce\x4c\xe3\xe7\xe5\xbe\x04\xc2\x8d\xa1\x8c\x01\x31\x18\x08\x2f\x53\xaa\xec\x81\x22\x87\xd2\x69\xba\x6e\x94\xf4\xb0\x9e\xea\xf3\xe4\x52\xd4\x2d\x99\x9a\x61\x29\x60\xa5\xd5\x28\x66\xa5\x03\x8e\xd6\x58\x71\x02\x38\x20\x03\x06\xd7\x64\xc0\xe0\xba\x0c\x18\xbc\xbf\x05\xfb\x99\xe7\xbd\x14\xa4\xbd\x30\xba\x7d\x68\xa2\xb0\xa7\xf9\xbd\x70\x39\x28\x97\x95\x1b\xc0\xb0\xf0\x12\x23\xbb\xa2\x3a\x7d\xaa\x1e\xcf\x7f\xe8\xeb\x70\x1b\x8e\x7c\x2c\x5e\xa7\x07\xa0\xf7\xc4\xe4\xd4\xfb\xe1\xdc\xcf\x0a\xd3\xdb\xc9\x78\x97\x5e\x0b\x3e\x02\x58\x7f\xc0\xfd\xfe\xd5\xb8\x1f\xc7\xef\x7e\x2e\x33\x08\xc7\x0b\x91\xf0\xd5\x20\x18\x5b\xa4\xdd\x2b\xa7\xe3\x0b\x49\x8b\x07\x9e\x23\x28\x97\x83\x6c\xa8\xf2\x82\x24\xd7\x69\x47\xa4\x8b\x97\x1b\x88\xac\x61\x1a\x11\x41\xb5\xea\x0a\x22\xf6\x03\x8f\xa2\x38\x0a\xd7\xd0\xe4\x22\x33\xb1\x30\x3a\x4d\xb4\x9a\xb1\x5e\x04\x5e\xd4\x67\xbd\x3e\x7b\x5c\xae\x12\x2e\x52\x14\x31\x3c\x2c\xa2\x28\xaf\x06\xcc\x8d\xa6\x5b\x74\x34\x5a\xad\x92\xe8\xec\x47\x60\xd9\x4d\xc5\xec\xe4\x7c\xa6\x8f\xd8\xc8\xda\xd3\x5c\xe1\xc9\x35\xea\xb9\xe9\x97\x6a\x1f\x01\x2b\x15\x04\x80\xf8\xf1\x54\x74\x56\x04\xf5\x9f\x3c\x37\x2b\xfd\xd5\x80\xe4\x7c\xcc\x3d\x60\x89\x0f\x58\xe2\x5e\xb1\xc4\xfc\x43\xe1\xf8\x88\x12\x26\x5c\x2c\xfc\xb7\xfb\x79\x31\x43\xf8\x51\xc4\x9e\xa6\xd6\x29\x19\x4f\x18\x71\xc1\xec\x01\x69\x3f\x20\xed\x8f\x0c\x69\x67\x77\x52\x4e\xd5\x92\x4c\xa7\xa4\x69\x4d\xbf\x1f\x3a\x4d\xef\xec\xdc\xf0\x11\xd9\x25\xa7\xc1\x34\x8b\x1e\x08\x2d\x1f\x94\xd0\xc2\xa2\xe9\x45\x16\xf6\xdc\x47\x60\x4e\x1e\x70\xf4\x7f\x23\x8e\x9e\x3b\xfe\xb0\xe7\xc6\x72\xeb\xe4\x2a\x3e\xa3\x12\xdf\x9b\x4b\xb0\x94\x7b\x12\x6d\x53\xac\x54\x64\xea\xfe\x8e\x88\xca\x63\x44\xd7\xc4\xcb\x5d\xed\xd6\xeb\x18\x61\x88\xae\x05\x61\x63\xb6\x0e\x97\xc3\x68\x29\x08\x0f\x85\x61\x74\x56\x46\xb5\xce\x58\xe1\x2f\x45\x51\xe8\xea\x73\xe2\xe2\xa2\x3c\x58\x2e\x2e\x7a\x81\x29\xe1\x00\xa8\xfc\xbb\xc5\x9f\xca\x56\x26\x42\x64\xf3\x6d\xee\x04\x3d\x8d\x57\xd1\xe7\x22\x82\xa4\xe1\x6f\x27\x67\xeb\xac\x9a\xd0\xc2\x9b\xfe\xcd\x54\xb1\x94\x09\xb4\xf4\x4b\x84\x54\x27\x85\x1d\xba\x82\x0b\xdf\x40\x2b\xcb\x7c\xe6\x61\x35\xf0\x99\xe4\x10\x2c\x5f\xa7\x64\x10\x23\xc2\xde\x4b\x0b\xeb\x10\x05\xa2\xeb\xd4\x95\x2f\x23\x94\x4b\x28\x99\x4f\x7c\xf0\x63\xc4\x38\x10\xf5\x99\x7d\xed\x28\x9b\xa0\x7d\x52\x70\x17\x49\xd3\x9d\x57\xf1\x2d\x8e\x11\xe6\x12\x58\xaf\x89\x07\xdf\x50\xc4\x9c\x3c\x2e\xa7\xb3\xf8\xd9\xaa\x44\x95\x18\x98\xc6\x92\x89\x78\x9c\x0c\x4d\xf1\xc9\x24\xa0\x97\x4f\xb5\x8b\x7b\x9e\x09\x43\x47\xa1\x1c\x40\xe1\x27\x29\xf5\xc9\x60\x1f\x40\x2a\xb4\xb4\x22\xab\xba\xe2\x56\x02\x0c\x05\x02\x33\xc8\x63\xcf\xa9\x0f\xec\x39\x97\x00\x61\xc6\x99\xa0\xcf\xbe\x9e\x34\xa9\x1c\x65\x79\x84\x02\x11\x3f\x93\xd1\x68\x3d\xe7\x7a\x2e\x35\x1d\xca\xa7\x57\x9f\xd3\x7f\xf1\x1d\x9d\x08\xf6\x3b\x76\xad\xe2\xb8\x1a\x74\x19\xa2\x85\x37\x58\x85\xcb\x3a\xfd\x51\x7a\x8c\x91\x59\xb4\x61\xcd\x1e\x0a\x02\xf9\x70\xad\x9a\xee\x47\x3a\xce\xd7\x04\x23\xe8\xa4\x47\x51\x1b\xc7\x38\x22\xd2\x65\xa9\x24\xa0\xc8\x22\xa0\x99\x89\x48\x9d\xc9\x68\xb5\x32\x64\xc6\xf7\x1f\x7d\xb9\xd5\xe7\x1b\x56\x68\x59\x4b\xd7\x7d\xdf\x8f\x17\x42\x65\xd7\xd0\xac\xb5\x40\x63\x3f\x4f\x2a\x97\xdd\xbe\x95\x08\x4d\x8e\x7a\x0b\x00\xe8\x52\x1d\x1e\xd5\xac\x08\x37\xf0\x14\x7f\x90\x7d\x0c\x60\x1f\xc0\x0d\x39\x9e\x06\x86\x7a\x34\x8d\x68\x08\x00\xdf\x84\xf9\x14\xab\xac\x14\x86\xe6\x8e\x4e\xba\x39\x99\xcc\xd1\x71\x5c\x5d\x42\xdd\x88\x16\x5f\x74\x8e\xa1\x84\xb1\xa4\xb4\x77\x64\x42\xc7\x91\x09\x7b\x40\x26\x23\xc8\xe4\x31\x31\xc7\xf7\x4b\x27\xec\x2c\x42\xe4\xdf\x92\x50\x30\x69\x87\xfd\x18\xaf\x61\xb6\x2e\xa8\x45\x11\x4e\xb0\x7d\xc2\x89\x47\x13\x0e\xa7\x96\xe4\x89\x05\x0c\x0d\x1d\x71\xc1\x3a\x3c\xb8\x7f\x30\x08\x77\xe1\x16\x11\x9d\xeb\xa1\x36\x43\x9d\xd2\xfe\x52\x44\xcd\x5d\x62\xdb\x22\xd2\xf0\xd1\xfd\xe5\x72\x5b\x52\x60\xdf\x8b\x57\x70\x97\x8b\xd5\x85\x54\x18\xa7\xa9\x30\x86\xed\x84\x0a\xa3\x84\x0a\x03\x4d\x85\x82\x82\x0c\x19\x7e\x48\xe7\xb3\x7e\xf2\xd6\x91\x40\x3c\xfd\x02\x50\x71\x30\x27\x6e\xab\xff\xba\xcb\xe0\xdf\x86\x5f\x9e\x0a\x56\xd1\x09\xba\x0b\x9b\xab\xa6\x99\x07\x9b\xec\xbf\x0b\xd1\xec\xc6\x56\xcb\xa9\xe6\x01\xad\xfc\xab\xd3\xca\x7d\xd0\x88\xfc\x59\x0d\x3a\xc5\xef\x27\xf6\x88\x4c\xec\x87\x7b\xff\x24\xce\x08\xef\x87\x3c\x71\x8a\x3c\xf7\x50\xec\x33\xe4\xc9\x29\x13\xb6\x33\xe4\xd9\x5f\x68\x67\xc9\xb3\x5f\x2e\x3b\x44\x08\x77\x8e\x09\xf7\xc7\xd6\x7b\xe8\x44\x57\x66\x2a\x97\x13\x57\x19\xd9\xcf\xf5\x16\x50\x15\xaa\xee\xb6\x21\x9f\x4e\xd0\x70\xed\x55\x00\xf3\x59\x94\xe1\x7f\x1d\x80\x69\x85\xc1\x70\xb4\x30\x18\x74\x3a\x86\xfc\xdb\x86\xfc\xa7\x15\xc6\x14\xf9\x17\x1b\x7f\x7e\xb4\x58\xe5\x03\xbd\xfa\x3f\x9b\x5e\x7d\xfb\x2c\x43\x3f\x2e\xbe\x2f\x7b\xd1\x89\x7c\x04\xee\xbd\x45\x29\x1d\xcd\xa5\x46\xec\xce\x30\xd0\x46\xa8\xb1\x1f\x34\x6b\x2d\xd8\xf7\x83\x66\x9d\xef\xb1\x41\x73\x3f\xe7\x65\x69\x23\x54\x06\x66\x54\x30\x99\xb6\xae\xcd\xfc\x36\x1c\x55\xfa\x4f\xb2\x4d\x55\xdb\x30\x4c\x87\xc8\xb6\xd9\x0e\x55\x6c\xc7\x8d\x47\x6d\xb8\x89\x39\x6b\x1f\x76\xb6\xc3\x60\x3a\xb8\xdb\x7d\xc0\x5c\x1e\x30\x97\x0f\x93\xb9\xd8\xf7\x22\x69\x61\xb9\x1b\x46\x01\x1b\x29\x97\x6c\x87\xa5\xec\x9f\x4d\xa2\xcb\xde\x37\x53\x11\x6e\xd1\x97\x50\x69\xbf\x33\x85\xe8\xa3\x2e\x29\x43\xbf\xcf\x99\x47\xdb\xef\xdb\x66\x27\xa3\x04\x0c\x77\xa4\x96\xc9\xe3\x2b\xd6\x0d\x75\x48\xf9\xa9\xd7\xf9\x36\xac\xd7\x3f\xfc\x83\x55\xda\xf5\x8c\x76\x65\xa4\x68\x00\xfb\x74\xbb\xb2\x69\x34\xfa\x66\xad\xe0\x1d\xc3\xfe\x5d\xdb\x75\x34\x81\x04\x7e\xa4\x27\xf6\x23\x6d\x8f\x3f\x7a\x0b\x0a\xbc\x45\x6c\x28\x92\x24\x14\x89\x87\x20\x31\xf1\x2b\x0c\x85\x5f\x4c\x8f\x45\x56\xfd\x1f\xad\x9d\x67\x2c\xa1\xaa\xdf\xd2\xea\x7a\xb4\x0f\x30\x75\x5a\x48\xe5\x9e\xf6\x32\x7c\x3a\xe5\x82\x59\x13\xdb\x3e\xaf\x8d\x5e\x13\x30\x48\xe9\xe5\x83\xdd\x54\xc9\xeb\x95\xf1\x90\x61\x9d\xcd\x96\xd6\x59\x14\xf7\x27\x83\x3d\x43\xa2\xb1\x7d\x96\xab\x73\xf1\x53\xdf\x7f\xe3\x58\x18\x30\xb8\x21\x58\xe0\x47\xc9\x60\xa1\x6f\xa9\x36\x1a\xc1\xa3\xfb\xcb\x65\xd7\x94\xde\xdf\x02\xd0\xfe\x0e\x1a\x7d\x1d\x85\xa1\xf0\x08\x18\xa5\x8f\x80\x11\xb4\x64\xb2\xf4\xba\xd0\x26\xf7\xe6\x14\xd8\xdf\x0e\xc3\x2e\xb6\xc0\xff\x27\x5a\x22\xdb\xd9\xf5\x57\x70\x07\x9d\xea\x77\xbb\xf8\xdc\x9e\x11\xf5\x48\xce\x96\x9b\xd0\x0f\x8f\xfd\x8e\x62\xb0\xe9\xf7\x01\xdb\x20\xa0\x7f\x7d\xe2\x49\x39\xed\x34\x87\x83\xec\x9c\x2d\xa0\x46\x0e\xdb\x22\x94\x98\x30\x1b\x23\x46\xef\x23\xe4\x4b\x45\x7d\xf1\xf6\xa9\xaf\x3f\x89\xfa\x8a\x18\x4a\x5f\x4b\x06\x38\x99\xff\x20\x99\xff\x78\xa8\x1e\x88\x7c\xd8\x77\x8a\xd1\xb6\x14\x57\x71\x7f\x89\xd1\xa0\xfd\x81\xee\xf0\x0f\x94\xb7\x0f\x94\xb7\xbb\xa4\xbc\xd5\xe4\x7b\xff\x1a\x5c\x16\x55\x3b\x01\xfb\x77\xb9\xeb\xe2\x1b\xf9\xd3\x14\xf1\x8d\x7c\xaf\x2e\xbb\xc6\xb0\x52\x7d\x41\xe5\x8e\xbe\x97\x62\xd1\x87\xcd\x47\x11\xd8\xe9\x5d\x58\xd1\xeb\x86\x7f\x45\x4a\x4a\xd3\xd1\x03\x81\x30\x2f\x10\xda\x6f\x2f\xa6\x26\x9e\x7f\x7d\xc2\xf9\xf7\x10\x06\x3f\x7c\x16\xb6\x2d\x51\x70\x6a\xeb\xec\xbd\x72\x2b\x34\xda\xee\x7a\x6a\xd3\xfc\x29\xa7\x7c\xb2\x01\x7f\x6e\xc2\x71\x9a\xd9\xe0\x8f\x02\xb3\xa1\x09\xc1\x91\xe1\x34\x3a\xbd\x29\xdf\xdc\x7d\xf8\x1c\x24\xab\x79\x1b\x3b\xa3\x29\xe7\x74\xf9\x29\xcd\x2b\x74\x49\x74\xd6\x05\xd3\xe0\xab\x4f\xf0\xb9\x0f\x1d\x61\x0f\x6e\xd6\xfe\x75\x6e\xd6\x8a\x9f\xc6\xd5\x41\xb3\x96\xbe\x6a\x1a\x7b\x53\x36\x3d\xa1\x73\xfa\x15\x2e\xff\x47\x93\xba\x7a\xb7\x36\xf6\xf1\xf3\xae\x32\xfc\xd4\xed\xfe\x93\xd1\xf2\x32\xa2\xde\xd9\x80\x92\x99\xec\xa3\xbb\x53\xb2\x67\x1a\x87\x32\xf1\xe8\x1a\x22\x0c\x75\xe0\xc6\x62\xc2\xfa\xfa\x61\x08\xb5\xf8\x95\xc0\x27\x7a\xbc\xc3\x71\x63\x63\x08\x53\x8a\x69\x99\x27\x79\x64\xd7\x18\xed\xd4\x52\x3a\xd3\x2e\x72\x2d\xe3\x75\x83\x36\x8b\xe8\xfa\xe3\x11\x2d\xf6\x03\x23\xa3\x64\x0f\x06\x1b\xc3\x3c\x7b\x42\xc9\x94\xf1\x0c\x29\x97\x99\x09\x47\xcf\x74\xcb\x59\x4c\x1e\xe9\x6d\x14\x7b\xa2\xcc\xd2\x45\x52\x02\x0c\x61\x9c\xf2\xed\x08\x89\x60\x18\x09\xa5\xb0\xe7\x40\xaa\x96\xb8\xa0\x16\x48\x00\x24\x33\xd4\x75\x9a\x36\x05\xb5\xf4\x5a\x41\x1d\xbe\x5a\x62\xc4\x4a\xbc\xc4\x73\x11\x41\xb0\xb4\xd4\x67\x25\x2d\xd7\xaa\xc4\x12\x8e\x4b\x24\x62\x3c\x63\xbf\xe7\x39\xc2\x49\x68\x8c\xd8\x93\x72\x02\xed\x05\x22\x1f\xa3\x89\x0b\x1b\xf9\x55\x84\xc9\xef\xf7\xf8\x31\xbd\x20\xfb\xfd\x1a\xbe\x14\x34\x07\x19\x18\x42\x3b\xa9\x60\x01\xef\xbc\xc1\xa2\x38\x3a\x02\xe7\x7a\x7f\x47\x19\x52\xa6\x43\xfb\x7d\xb9\x8d\x08\x71\xff\x2a\xdf\xea\x31\x8a\xf9\x9a\x72\xd5\x8b\x43\xf5\x12\xd4\x81\x48\x12\x81\x7e\x21\x3a\x0a\xd3\xfa\xbb\xc0\x75\x3a\x29\x55\x24\x4b\x26\x09\x95\xa0\x6c\x47\x58\xfa\x51\xaa\xec\x0a\x8e\x73\xcf\x2e\x0b\x5c\x1a\xe8\x5c\xa2\x37\xab\x99\x02\x26\x4a\x4f\xf1\x93\x7b\x8b\x63\x5a\xc6\x44\x59\x5c\x3b\xe6\x2d\xac\xf5\x0c\x73\xd4\x25\x76\xe2\x05\xb5\xf8\x95\x26\x01\x00\xe2\xec\x2b\x4d\x2c\x5e\x69\x8e\xe6\xc0\xc5\x67\xba\x0f\xc1\xbb\xaf\x49\xa2\x8a\x3d\xcc\xd2\xc1\x80\x96\xcb\x35\xdf\xf7\xe9\x6e\x99\x64\xd8\x17\x8c\x21\x0a\x62\x56\xaa\x1b\x1f\x82\x54\x9f\xec\x92\x77\xcf\x83\x01\x69\x3a\xe2\x67\x15\x89\x77\xd0\xad\x24\xfe\xc7\xac\x08\xf1\xca\xd9\x39\x87\x06\x03\x37\xaf\x43\xc8\x3e\xbc\x76\x40\xd6\xed\x32\x06\x62\xa8\x91\x0e\x24\xc2\xdc\x7d\xe9\xd1\x04\xa4\x24\x5a\x2e\x09\x34\x96\x5c\xb1\x7d\x94\x8c\xb3\x5b\x58\x8a\x68\xc9\x71\x40\xe9\x6c\x10\x97\x7a\x41\x1c\x4b\x36\x68\xd7\x51\x92\x73\xbb\xcf\x04\xe3\x40\xa3\x5e\xd2\xa6\xe2\x09\x58\x7b\x63\x8e\x74\x7a\xd1\x59\x44\xab\x31\x0a\x51\x5b\xba\x63\x10\xc1\xc5\xe2\x39\x3b\xbd\xba\xda\x0f\x19\xee\x15\xbb\x1b\x4e\x55\xc0\xd9\x77\x18\x30\x14\x4f\x51\x55\x51\x79\x49\xc1\xc6\xfb\x6c\x57\xc5\xcd\xae\xe2\x6e\x35\x71\x0a\xbc\x77\xc7\x88\x4c\x88\x35\x23\x74\x85\xc1\x7a\xd4\x67\x8d\xc4\x5e\x43\x71\x24\x93\x33\xf3\x9e\xd7\x29\x1c\xf2\x9c\x2a\xe5\x00\x28\x5f\xce\x28\x6e\x3c\xaa\x16\x4e\x1f\x00\x4a\xcd\x21\x22\x01\x43\x9d\xd3\xaa\x59\x2e\x11\xe4\xb6\x75\x66\x7d\x2c\x88\x40\xd6\x2c\xc0\xb7\xe9\x5a\x55\x77\x2d\x2d\x3c\x72\xf2\x4f\xd7\x0b\x38\x4f\x92\x81\x7f\x46\x64\xe0\xf8\x94\xee\xc9\x4b\x0e\x10\x3b\x72\x28\x96\x69\xb6\xbf\xc5\xa2\x47\xb3\x95\x13\x30\x92\x98\xe1\x1c\x21\xbe\xef\xb3\xc1\xc0\x78\x8b\x66\x0b\xcd\x96\x8c\x82\xae\x2b\x3e\x1d\x2c\x1d\x23\x1d\x74\x2e\x8f\x9f\x60\x49\xb8\x6b\x77\xa0\x13\xa3\x80\xb6\x57\x8e\x12\x2e\x7c\x77\x38\xc3\xce\x4c\x67\x0a\x7d\xb2\xf1\x09\x53\xca\xbb\x92\x43\x88\xa9\x0e\x94\xcb\xb3\x22\x86\x92\xc9\x92\xee\x01\x58\x70\xaa\x75\xa7\x61\xd5\xa0\xfb\x2a\x62\xf6\xb5\x95\xfc\xb9\x12\x90\x0e\xdf\xc3\x11\x19\xe9\x37\x41\x16\x8f\x48\xd4\x43\x44\x9a\x3a\x51\xde\x36\xe7\xbb\x22\xab\x62\x4e\xb3\x75\x29\xa4\x74\xa3\x76\x3f\x3e\x46\x7a\x7d\xe6\x82\x21\x94\xf5\x3f\xce\xd3\x26\x36\x20\x4a\x3a\x60\x86\x96\xcb\xb2\x66\x38\xb2\xc2\x4f\xa3\xf5\x4e\x74\x76\x72\x9f\xcf\xc8\x7c\x96\xef\x83\x54\xd7\x17\x5c\xe6\xc5\x2c\xea\xf1\x25\x1d\x2c\x4b\x7f\x4d\x00\xce\xd6\x41\xa3\x7e\x80\xa3\xdf\x3b\x83\xd6\x0f\x47\x1d\x61\xd6\x85\x63\x8e\xa5\xe2\x12\x89\x1b\x7f\x6f\x05\x2f\xaf\x84\x78\x79\x85\xa1\xce\x02\xf2\x34\xa5\x96\xcb\x22\x62\x41\x92\x90\xb8\xf9\xb7\x4b\x80\x05\x17\x79\x6a\x6e\xbc\x76\x18\xc5\xc8\x65\xb2\x3f\x76\xfa\x4a\xc4\x3f\xa4\x0a\xc2\x82\x6c\x56\x71\xd0\x90\x3d\x1c\x42\x11\x91\xe3\x94\xe8\x04\x8e\xb2\xf8\x4b\x9c\x63\xf3\x51\xaa\x9e\x0e\x06\xcd\x16\xd0\xc1\x0c\xb8\xf4\x51\xad\x6b\xff\xd8\x5a\x47\x84\x2b\x15\x80\xbb\xae\xb1\x9b\xf9\x62\x3f\x08\x5d\xda\xc4\x2d\x88\x00\xd8\x20\x3e\x9e\x59\xa2\x28\x38\xa3\x77\x18\xf2\x68\xb5\xbe\x40\x45\xa4\x85\x36\x72\x09\xac\x83\x86\x09\x7a\x05\xe9\x70\x08\x93\x19\x2f\x90\xa7\xf8\xec\x22\x19\x94\xd2\xfb\x62\x1f\xd1\x75\x39\x1a\xbe\xd3\x7b\x05\xec\x48\x2d\x9c\x84\x2d\x61\x5e\xaf\x03\x66\xc4\xa4\x8a\x96\x8a\x2d\xce\xb6\xb5\x8b\x99\x45\xbb\x7b\xbb\x99\xa9\x72\x2f\x0e\xb8\x31\x0a\xbb\xde\x59\x4c\x3a\xd1\xd9\x72\xd9\xfa\xe1\x91\x60\x0d\x2f\x0b\x2f\xf4\x85\xa9\x5e\x3f\x46\xf4\xd0\x32\xdf\x58\x1c\x47\x48\xa2\x26\xac\xc6\xf1\x53\xc7\x8e\x96\x1c\xf0\x68\xb5\x3e\x18\x58\xc9\xa7\x29\xee\x70\x41\x52\x7c\x81\xd8\x9f\x9d\x4d\xb5\xed\x44\x84\x45\xfd\xf6\x4a\xcc\x02\xca\x1c\x4c\x4a\xd6\xd7\xdc\xa1\x3b\xbf\x8b\xb2\x60\xf9\xa9\x60\x15\xf1\xce\xe4\x37\x54\x74\x8e\x1d\x47\x41\xdc\xa7\x88\x8e\x72\x87\xb3\x18\x06\x31\x3b\x26\x56\x76\x63\xb6\x0e\x3b\xb8\x73\x8c\xc4\x88\x32\x15\xf5\xb4\x98\xfc\xa6\xd4\xe3\xb2\x14\x6f\xe6\x73\xeb\x80\x19\xe5\xeb\xa4\xd7\x67\x7e\x27\x6a\x8b\xec\x3c\x87\x6a\xef\xb1\xf5\x63\x9d\x22\xfa\x1b\x41\xc5\x55\xa7\x22\xd4\x28\x5f\xec\xa3\x63\x1d\x3d\xb5\x49\x0b\x0b\x6a\xf6\x96\x11\xd3\xc1\x77\x4e\xb1\xf5\x10\xb9\x49\x16\x20\x14\x0e\x56\xaf\x1e\x8f\x08\xf3\xe9\x02\xf5\xba\x11\x61\x22\x77\xc5\x29\x39\x15\xf9\xfb\x99\x80\xe2\x80\x30\x2b\xe5\xb3\x88\xf3\x1f\x2b\xe1\x14\x7e\x0e\x55\x9c\x39\xfe\x33\xc4\x04\x3d\x91\xfd\xfe\x78\xb0\x8a\xc3\x75\xd9\xaa\x54\x1d\x6e\x07\x0d\x66\xf8\x91\x14\x73\xd2\x08\x80\x56\x34\x64\x4b\x13\xcf\x02\xba\x8c\x44\xf5\x87\x18\xa3\x78\xa9\xcf\x90\xeb\x74\x02\x16\x54\x35\x8b\xab\xaa\x8d\x51\xec\x6d\x60\xa3\x88\xc3\x0b\x23\x89\x35\x44\xd8\x11\x49\x5d\xae\xd6\x7c\xa2\xf4\x04\x8b\xb0\x35\xba\x5e\xa5\xc2\x24\x26\x01\x52\x30\x43\xb2\x8c\x1c\x73\xd9\x1a\x97\xcb\xc4\x0b\x3a\x1d\xa1\x42\x7a\x12\xc7\x0c\x11\x71\x3a\x4d\xd6\x06\x8c\x00\x2c\xca\xb2\x1a\xf5\x63\x24\x36\x39\x18\x81\x21\x27\xe1\x93\xa8\x8d\xf0\x1a\xe2\xa3\x8d\x47\x30\x50\xb9\x3d\xea\x9d\x40\xaa\x7a\x74\x0c\xd9\x38\xfd\x0d\xe6\xa9\x18\xcc\xe8\xed\xb0\x5c\x9e\x65\x06\x34\xfe\x8e\xbc\xb8\xbd\x82\x38\xeb\x39\x41\xda\xc8\x75\xd4\x78\x1d\x28\x4e\x27\xcc\x8c\x5f\x0a\x2c\xd0\x71\xc0\x50\x4b\xbf\xc7\xd5\x04\x0b\xe6\x2f\xc8\x2f\x27\x73\xc9\x4e\xa8\xc2\xa7\xd1\x39\xa6\x76\x21\x21\x83\xa9\x4f\x6a\x8f\xd5\x1f\xc6\xe0\xc0\x2c\x4c\xb3\x7f\x8d\xe9\x7f\xb2\xb9\x52\xd4\x8b\x62\xcc\x61\x2e\x9b\x26\xbb\x7c\x2d\xbd\xc9\xab\x63\xa9\xd2\xfe\xd4\x52\x82\xb0\x59\x6e\xe5\xb2\x6b\xb3\x0a\x9b\x6d\x39\xc0\x3b\x8b\x3b\x6c\xc5\x45\xd6\x78\x61\xba\xb8\x39\x34\xca\x00\xc7\xde\x0a\x5b\x0d\x4f\x05\x5d\x11\xc5\xb9\xc3\x56\x1a\x25\xa7\xe2\xb2\xca\xfe\x87\x41\xc5\xe9\x71\xe1\x2f\xa5\x49\x1b\x55\xa6\x5e\xab\xfd\xff\xe6\x85\xa4\xb8\x1a\xac\x2f\xa1\xa7\xc3\xa0\x8d\x56\xa2\xb0\x63\x38\x69\x32\x1f\xbd\xe4\xdb\x74\x53\x80\xbb\x2e\x01\x96\xf8\x3d\x33\x72\x4e\xcc\x89\x34\x8d\x60\x4b\x59\x99\xac\x2c\x47\xb5\x04\x16\x1c\x5b\xea\xb5\x7b\x07\x06\x03\xc7\xb1\x85\xdf\x88\x64\x84\x0c\xa3\xa8\xb3\x65\xc8\x63\x4a\x60\x60\x4a\x74\x64\x2e\x02\x83\x41\xbe\xbb\x86\x38\xb8\xa0\x2c\x74\x42\x11\xc9\xcb\xa9\xd9\x16\x2c\x95\x8f\x63\xf2\x1b\x44\x3a\x00\x72\x16\x66\x3e\x88\xfb\x44\xf9\x29\x23\x88\x27\xf7\x29\x85\x12\x2d\xcf\xfd\x49\xdf\x97\xa1\x12\xb9\x48\x2b\xe6\xa1\x28\x6f\x26\xf0\x93\x66\x9f\xf2\x32\x44\x47\xe3\x49\x58\x5a\x93\x64\x27\x3b\x09\x0a\xca\x67\xda\x5a\xed\x3c\x97\x75\xc6\x4b\x8b\xa2\x0e\x70\x31\xe4\xab\x09\xc0\x5c\xf8\x7a\x0c\x48\x86\x69\xb8\xd8\x0a\x63\x1d\xe5\x0e\x41\x8f\x63\x14\x76\x1c\x9b\xd7\xaa\x62\xb6\x6b\xb3\x08\x80\x21\xc9\x4d\xda\x50\x84\xfc\x72\x0d\x9e\x1e\xf5\x1f\xfa\x24\x97\x14\xd5\xcf\x83\xfe\x23\xb5\xc1\xe0\xc0\xfe\x14\x2a\xf9\xf7\x1c\x22\x87\x43\x98\xde\x07\x8a\x0f\xa0\xc8\x93\x11\x8b\x0e\xb1\x85\x04\x74\x19\x68\xd8\x2a\x79\xb6\x63\x09\xf5\xfe\x05\xd2\xfb\xd0\xaa\x8c\x29\xb9\x4c\xa3\x7e\xaf\x2a\x60\x93\xad\x1d\x91\x76\x9f\x52\x44\xda\xd9\x50\xd5\x85\xa1\x1d\x8d\xa1\x66\x94\x42\x28\x4b\xd4\x09\x69\xbd\x81\xc9\x1f\xa4\xe2\x54\xb3\x48\xdc\x48\x2e\x18\xc8\x05\x0d\xb4\x6d\x6b\x4c\x65\xff\xa8\x8a\x05\x71\x8c\x97\xc9\x60\x60\x2f\xfb\x69\x42\x00\x3d\x5a\x5f\x60\xd5\x7a\x43\x1c\xb3\xea\x76\x28\xa0\x6a\x3d\x13\x0c\x48\xd7\x56\x70\x12\xd3\xb1\x78\x9b\x58\xac\xc3\x08\x98\xab\x50\xdd\xbd\x33\x68\x3d\x76\x23\x00\x63\xbf\x36\x1f\x1f\xd4\xd1\xef\xe6\x63\x5d\xb8\xef\x07\xcd\xb8\x35\x83\x9a\xfd\x96\x1f\x35\xfb\x2d\x73\x3b\x89\x86\xb0\xef\x6f\x28\xe1\xab\xd1\x6c\x41\x8a\xe2\x7e\xc8\x6c\xf0\x70\xd4\x27\xac\x51\x4b\x74\x34\x4a\xe1\x6d\x1d\x56\x75\x52\xb2\xa5\x49\xf9\x3d\x66\xa7\x44\x0a\xea\x98\xb4\x28\xe8\x60\xb2\xcc\x45\x73\x1c\x1f\x6a\x33\xbc\x86\x38\xbc\x88\xce\xf5\xb0\xb8\xe6\x3c\x65\x57\x31\x9c\xe2\xc0\x90\x3f\x25\x24\x27\x88\x94\x02\x25\xa3\x38\x9b\xad\xf1\xad\x90\xb5\x57\x94\xbe\xec\xb3\x62\x9f\xcc\xe7\x51\x52\xe2\xa9\x36\x8d\xc2\x30\xfb\xbd\xae\xea\x40\x34\xab\x96\xd3\xe0\x71\xf9\x19\xe8\x91\x1f\x47\x71\x1c\x2c\x67\x7d\xfb\x39\x4f\xca\xaf\x25\x35\x13\x9e\xe7\x39\x00\x92\x48\x96\x8e\x47\x14\x7a\x2a\x2a\xa9\x39\x2a\x75\xa3\x3e\xe9\x38\x40\x8d\x78\x44\xfe\xd3\xeb\x3d\x24\x2f\xcd\x78\x26\x07\x40\xa1\x51\x38\x41\x24\xcb\x2e\x18\xbb\xfa\xf1\x84\x35\xd3\x23\x86\x69\x65\x01\x50\xb8\x89\x9a\x4a\x6f\x39\x95\x8a\x33\xa5\x55\x9b\x93\x45\xf4\x79\xc1\x01\x30\xda\x4e\xe9\xa4\x98\xe0\x57\xd3\x15\x4a\x9d\x58\x44\x39\x27\x51\x59\x1e\x63\x68\x75\xfc\x20\xb7\xa3\x07\xb6\xd4\xbf\xa9\xa9\x9c\xae\xb0\x2c\x52\x5d\x95\x65\x1c\x00\x2d\x61\x69\xca\xa1\xda\xd2\x55\x56\xb7\x34\xd1\x39\x38\x1a\x02\xb8\xa8\x46\x70\x5a\x2d\xc3\x4c\x6b\x1d\xbc\xe6\x00\xb8\x28\x82\x3e\x13\x36\x36\x53\xaf\xbf\x14\xe2\xf6\xa1\xa7\x8f\x35\xfa\x10\x13\xbc\xe3\xb3\xbb\x72\x2a\x6a\xaa\x3b\x24\x05\x04\x7f\x43\xa2\xcb\xae\x76\x57\xa3\xba\xc5\x88\x68\x57\x1f\x08\x36\x95\x20\xe3\x18\x47\x77\x14\x80\x61\xc2\x44\x3f\xa8\x5e\x98\x06\x33\x1d\x91\xf3\xff\xc1\xe1\x42\x08\x22\xe9\x2e\xc8\xd3\xf3\x07\xd5\x05\xd9\x5a\x16\x0b\x82\xcb\x9f\x8e\xf6\xa8\x13\xc5\xe7\xd1\xf4\x3d\x72\xd3\x11\xec\xf3\x24\x22\xe2\xfc\x85\xa0\xec\x39\x74\x74\xdf\xd2\x5d\x1e\x0e\xe1\x59\x1c\x86\x47\x46\x38\xd7\x9d\x62\x5d\x50\xb4\x1a\xad\xa1\x13\xea\x71\x6a\x7c\x8c\x28\x76\xec\x8e\xcc\x70\x4a\xb1\x3e\xa5\x32\xb1\x4f\x7a\x54\x84\x2c\x42\xf4\xd0\xd3\xc7\x94\x46\x56\x32\xc1\x21\xc4\xe4\x34\x8a\x19\xdf\xfb\x27\x85\x75\x75\x18\x8a\x59\xf2\x04\x24\x63\x0a\x33\x75\x6c\x24\xcf\xfa\xb5\xed\x2b\x26\x71\x8e\x1d\x73\xcb\xc4\xca\x65\xe6\xb1\x15\x44\x16\x92\xb1\x2f\x4a\x13\x09\x8d\x9d\xd3\x41\x7c\xc6\x01\x5e\x0f\xd1\x6e\x44\x57\x93\x03\xc0\x18\x75\x84\x98\x20\x51\xa1\x5d\x15\x8e\x88\xb8\x3a\x19\x0e\xcd\x66\xb7\xf3\x7b\x32\x48\x93\x31\xf0\x73\xe6\x02\x6b\xb8\x63\x06\xa3\x68\x61\x17\xc6\xa2\x6a\x12\x23\x01\xc9\x50\x94\x7c\x54\xa0\x14\x4a\x8e\x7d\xd0\x51\x42\xd6\x18\xc5\x8f\x7d\xea\x36\xb9\xd3\x87\x47\xc8\x7c\xe4\xa9\x6f\x90\xfa\x5a\x03\x23\xbe\x5a\xb7\x49\x4c\x04\x55\x4e\x8b\x6f\x0b\x69\x5b\x26\x8d\x40\xd7\x3e\xd2\x51\x00\x09\x18\x66\x7c\x14\x98\x9c\xfc\x97\xbc\x81\x2c\xbe\xa9\x45\x93\xee\x6a\x1d\xb3\x7f\x79\x5a\x72\x9e\xf6\x02\x77\xcc\xbd\x6d\x41\xa5\xc9\xed\xed\x38\xbd\x75\x35\x50\xb9\xa1\x38\xac\x8d\xba\xe7\xcd\x8c\xf8\x08\x8d\x7a\x9d\xe8\x2c\x19\x35\xe4\x8e\xfd\xfd\xbe\xc6\xac\x6b\xda\x95\x41\xeb\xca\x46\x8e\x3a\xdd\x6f\x31\xec\xd5\x7e\xcc\x4e\xad\x44\x67\x4f\xa5\x24\xf2\x9c\xae\xcd\x74\x65\x43\x1d\x10\xac\x43\x54\xea\x04\x36\x34\xe4\x6c\x00\x55\xe9\x58\x75\xa8\x69\xc0\x68\xdf\x66\x91\xa7\x9a\x92\xb6\x36\x28\xaf\x79\x2d\x97\x67\x67\xb3\x1a\x18\x71\x3f\x9d\x4b\xd5\x5d\x00\xba\xae\x54\x97\x13\x2c\x3c\x15\xa9\x9c\xf9\x39\x37\x83\xb2\x71\x91\x39\x3a\xa6\x30\xa1\x8f\x52\xc3\xfb\x1e\xb8\x5d\x6b\xb9\xec\x16\x8c\x79\x30\x40\x5e\xb6\x33\xda\xf2\xae\x96\xba\x77\xb7\x76\xbe\x46\xc6\x58\xdf\xa8\x08\x63\x77\x63\x08\x0b\xbb\x08\x11\x98\x31\x7a\x74\x99\xcf\xe8\xa6\x47\xc8\xaf\x6a\x7b\x4e\x1b\xf4\x6d\x24\x42\x33\xd3\x9b\xc5\xb1\x4e\xa3\x88\xa8\x8b\x6e\x5c\x86\xa9\x3b\xa7\x82\x1d\x5d\xdc\xe4\x73\xfe\x0d\x23\xb2\x63\x1b\x83\x62\x0c\xa4\xec\x0e\x74\x54\x06\x5e\x1c\x93\x65\x71\x43\xe2\x33\xe8\xe8\xeb\xff\x59\xdf\x67\xe2\x71\xe8\x60\x70\xe0\x93\xb3\xa9\x8b\xfd\x87\x6a\xf6\xef\xc1\x20\x7f\xd1\xa3\x30\x47\x51\x8c\xec\x83\xab\x2b\x14\xbc\x87\xc3\x94\x10\x3a\x62\x58\xe2\xe4\xbc\x5b\xe3\x52\xc7\x44\x6b\xdf\x67\x01\x43\xee\x46\x5e\xc3\x32\x14\x5d\x1c\xa5\xe3\x4e\xab\x76\x61\xba\xc7\xea\x96\x1c\x92\xe2\x35\x02\xb1\x89\x38\xa4\xc6\xe3\x62\x3e\x24\x48\x20\x02\x60\x30\xc8\x29\x5e\xf3\x3a\xdd\x05\xdc\x60\xc5\x47\x1a\x04\x36\x90\xbe\x4d\x52\x26\xc9\x2a\x3a\x47\xc7\xd1\x9a\xf7\x91\x23\x47\xc3\x82\xe3\x49\xe1\xb4\xd8\x4b\x3e\x63\xba\x90\x5c\x2b\xa4\x55\xfd\x11\x91\x46\xa7\x0e\xe0\x3b\xb4\x30\xc0\xcd\x9e\x0a\x8d\xf5\xa9\xd1\xa0\x83\x05\x2d\x18\xc7\x48\x71\x06\x17\x34\xf2\xcc\x43\x65\x53\x52\x93\xca\x88\x54\x4e\x9d\xfc\x38\x0e\x19\xa2\xca\xfe\x35\xca\xd3\x1e\xee\xba\xb3\x36\x67\x32\x72\x34\xe7\xb9\x42\x72\x6b\x87\x18\x11\xf6\x9f\xe5\x72\x8e\xb2\x0a\x92\x92\xdc\xc7\x03\xb6\xe2\x05\x4b\x71\x9e\x20\x75\x9e\xaa\x81\xc0\xc1\xfd\x60\x3c\xbe\x4d\x14\x94\xe9\x6f\x07\xa4\x11\x31\xb0\x18\x62\x4a\x1f\xe5\x80\x05\x97\x16\xdb\xce\xa8\xc5\xc0\xd7\x82\x92\xa1\x76\x6a\x3e\x24\x8c\x4e\x85\xd9\xd5\x98\xe5\x2b\xb6\x06\xaf\xcd\x68\xf8\x69\xb4\x2e\x2e\x48\x57\x11\x0b\x04\xec\xb2\xf4\xb5\x02\x4b\x5f\x2b\xc8\x99\xc6\xf1\x53\xfd\xd5\x5e\xd0\xf9\x34\x5a\x17\xf8\x75\x19\x58\x10\x43\xc8\x89\x4d\xa7\xd7\x7b\x98\x2c\xe7\xa5\x6d\x71\x3d\x61\xea\x56\x74\x65\x0c\xa7\x4e\xf5\x82\x36\xc7\x8d\x22\x2c\x1a\xf5\x99\xb6\xa7\x72\x99\x08\x3c\x33\xcd\xbd\x55\x31\x7a\x98\x42\x0f\x1b\x81\x1e\xc4\xd1\x53\xd0\x2e\x2a\x3c\x4d\xcb\xfd\x50\x58\x84\x68\x2b\x81\x72\xb9\xa0\x27\x76\x0b\xf6\x04\x9a\x33\xb0\xbe\xd9\x4f\xb4\xe6\xb9\xc3\x79\xa4\x0e\xe7\xf8\xd1\xfa\x02\x96\x3a\xf8\xc0\xaf\xcf\x07\x07\xf1\x7c\x50\xa9\x80\xa8\x19\xa4\x75\xf0\x41\xcb\x22\xe2\xd4\x89\x1c\x41\x66\xce\xdc\x1f\xde\xd3\x4a\x30\x94\x37\x12\x29\xec\x4d\x63\x63\x51\x68\x5a\xc1\xf1\x17\xeb\xcb\x01\xb7\x06\x89\x36\xf0\x91\xe7\x34\xe0\x32\x2d\x1d\x71\xd1\x04\x77\x5d\x61\xee\xd6\x97\x25\x42\x3f\x4e\x5b\x6a\x1d\x0a\x43\xd7\x69\x0a\x13\x0c\xd9\x9a\x34\xc0\x68\x39\xc0\xc3\x0c\xad\xba\x7d\x51\x45\x28\x4b\xb7\xfd\xd0\x8b\xba\xdd\x18\xb1\xd3\x51\xaf\x1a\x27\x30\xec\xf8\xed\x8a\xfe\x26\x0d\x4d\x66\x3a\x8f\xc6\xa9\x84\x4a\xec\x69\x22\xe8\x2d\x58\xb0\xdf\xa9\xa6\x33\x36\xda\x07\xad\xcf\xc2\xb5\x53\x92\xb9\x0d\x86\xfc\x5f\xc2\x3f\x8a\xec\x19\x95\x78\x45\x3a\xf2\x54\xbb\x16\x30\xe4\xe4\xe5\xa3\x8c\x95\xe3\x28\x26\xc2\xdb\xca\x36\x32\xae\x09\x56\xd8\x04\xe7\xe8\x23\x17\xa2\x35\x9c\xc7\xc2\x3e\x1d\x3d\x9a\x0e\x1a\x3b\x9e\xa5\xb0\x4f\xa7\x19\x4e\xa6\x91\xf1\x4d\xb0\xa2\x26\x26\x0c\x47\x57\x61\x6b\x36\xa6\xd3\x3b\x38\x31\x62\xc7\xcc\x89\x71\xb6\x26\xc2\x4f\xed\x5a\x75\x75\x2e\xff\xe6\x38\x76\xc3\xad\x41\xec\xb1\x20\x3e\x03\x5c\x8a\x96\x11\x91\x2f\x13\x4f\xf6\x09\xc3\xab\xc8\x5b\x0d\xe8\x19\xc3\x3d\x4a\xc8\xd8\x33\xc1\x08\x06\x30\x86\x7d\xc3\x01\xf2\x45\xcf\xd2\xa0\xe7\x66\x6f\x1e\xe7\xe7\x41\x7c\x16\x8b\xf7\x8a\x42\xc0\xf5\x91\x78\xf7\x08\x36\xda\x41\x8c\x4a\xb5\x86\x09\x0d\x56\x8c\xdf\x28\xd9\x4e\xe0\xc8\x5d\xaa\x5c\x76\xa3\xaa\xff\xd0\x27\x39\xe7\xa4\x5e\xd1\x25\x5d\x45\xd9\x9b\x70\x46\x75\x78\x25\xa0\xbc\x3e\x37\x2a\x12\x66\x0b\xaf\xf8\x82\x21\x80\xb1\xec\x61\x57\xca\x41\xd4\x53\xec\x0a\x06\x7c\xde\x60\x2a\xb4\xb9\xb6\x08\x79\xb4\x66\x3d\x7a\x72\x15\xff\x92\xe5\x0e\x31\x61\xd8\x0d\xdc\x18\xd6\x80\x7c\xfc\xa9\xed\x7c\x13\x61\xc2\x88\x97\x6e\x5f\x15\xe3\x72\x88\x25\xbb\x28\x46\x61\x7f\x06\x8d\x9c\x6c\x63\x7f\x85\x12\xfd\xfe\x23\x50\x92\x81\x8c\x84\x06\xdc\x3a\x3a\x00\x66\xc4\x94\x3c\xd2\x98\x12\x29\x8e\x33\x54\x45\xea\xb5\x06\xff\xeb\x20\xd2\x71\x1a\x29\x6b\x10\x61\x8d\x20\x67\x0e\x0c\x81\xd0\x8a\xb2\x80\x32\x5e\x93\x0b\x60\x81\x26\x72\x87\xd4\xb9\x47\x54\xa9\x90\xb5\x1f\x32\x39\xd0\xfd\x0d\xa9\x8f\x23\xac\x50\xfd\xe9\x52\x85\x90\x87\xee\x0b\x1f\x96\x32\xf3\xa3\x85\x0e\x66\x1e\xf7\x46\x5d\x75\x49\x20\xf6\xff\xa7\x69\x74\x6e\x5d\x89\x57\xa9\x21\xb8\x4c\x09\xcc\xf2\x1a\xcd\x01\x45\x2b\xce\xdc\xb5\xcb\xf7\x2b\xa2\xfd\xfd\x9a\x4e\x1f\xd6\xa8\x7f\xb8\x10\xf5\xba\x1d\x8d\xf8\x4f\x24\xe8\x16\xf5\x7c\x62\x5c\x7b\x75\xd1\x5e\x17\x13\x1c\xaf\xb8\x9f\xd8\x0e\x2d\xc3\x66\x73\x3f\x84\x9f\x80\xf5\x5a\xab\x55\x30\x8f\x52\xe2\x3d\x14\xaf\x93\xb6\x5a\x2f\x3b\x98\x4a\xed\x3a\x16\xc3\x68\xcf\xa8\x5b\x7c\xac\x4d\x9e\x13\x31\x15\x0f\x41\xaa\xa9\x1b\xeb\xa9\x88\xfc\xc0\xc5\x45\x93\xaa\xed\x33\x22\xb8\x48\x03\xa5\x5c\x3c\xa9\xd2\x70\xde\xe4\x22\xad\x39\x6b\x08\x46\xd9\xe6\xa0\x9a\x60\xc0\x5b\x49\x4d\xdc\x08\xd5\x88\xee\x6c\xfd\x80\x34\xfd\x37\x93\xaa\x06\x5b\xaf\x41\xe4\xb1\x9a\x8f\x3c\xf9\x88\xbe\x56\x48\x91\xf9\xee\xd9\x6d\xab\x3a\x0f\x64\xf0\x58\x3f\x00\x1d\x3d\x13\x89\xba\x81\x7a\x6d\xbe\x60\xc2\x72\x59\x43\xae\x45\x75\x75\xcd\x75\xeb\x1f\x9f\x8e\xec\x6a\xb0\x5e\x83\xf5\x03\xb0\xfe\xf1\x42\xca\xb3\x04\x80\xbc\xc8\x93\x1a\xa3\x31\x6b\x11\x7a\x0b\xb9\xab\x15\x1e\x4b\x73\x2f\x79\xf7\x17\xbe\xe4\xdd\xdf\x2a\x97\xed\x5f\x49\x20\x5b\xa2\xf6\x4c\x33\x95\x68\x30\x68\xb6\x20\xb3\x0e\xd4\xa9\x3b\x16\x7e\x96\x32\x2f\x9a\xf5\x23\xdf\xdc\x60\xc6\xdd\x07\x8a\xf7\xa7\xe5\x32\xf2\x82\x4e\x47\x67\xe0\x49\xf6\x6f\xd7\x69\xb6\xec\xdb\x9f\x34\xef\x3d\x44\x3a\x8a\x5a\xf5\xed\xa2\xf2\x8a\xdb\x51\x19\x7c\xfd\x9e\x77\x54\x39\x11\xf3\x1b\x66\x36\x88\x69\x86\x91\xdc\x5a\x1a\x8b\x48\xe3\xfa\x67\xa7\xa3\xd2\x75\x8a\x8a\xb2\x23\xd2\x1f\xb3\x43\x4a\x15\x12\x3e\xec\x50\xea\xd9\x97\x25\xa6\x59\x76\xb2\x79\x4a\x33\x37\x9a\x08\xe6\xf4\x65\xd9\x05\x3c\xce\x6a\x3c\x25\xd9\x5b\xe9\x79\xd3\x1e\x71\x1a\xd7\x6a\x42\xbf\x60\x51\xb2\x05\x26\x14\x5c\x13\x94\x99\x94\x77\x71\xd4\x04\x67\xb5\x05\xb3\xd9\x57\xb6\x38\x56\xb7\xdd\x42\x09\x66\x5e\xe2\x8b\xb7\x46\xba\x77\xda\x07\x7c\x4a\x1f\x07\x94\x30\x9c\xea\x97\xbe\x51\x35\x9c\x72\x0a\x9e\xc9\xd2\x3c\x53\x1a\xae\x8e\xd2\x8c\xd9\x1e\x80\xb4\x0a\x91\x5a\x77\x2e\x60\x81\x35\x6c\x09\x98\xc1\xd4\xd7\x99\xa2\x4e\x53\xc3\xf1\x73\xdd\x9f\x96\xd1\x0f\xa9\x31\xf3\x1f\xa5\x0d\x1f\x66\x05\x49\x41\xb1\x05\x9a\xd1\x82\xb9\x19\xa5\xd9\x35\x44\xcb\xe7\x4b\x90\x81\xa5\x45\x9d\x92\x4a\xf5\x11\x61\x26\xf9\x5a\x28\x19\x38\x40\xed\x0c\x87\xc2\xd0\x1d\xb7\x99\xa2\x29\x2c\x17\x27\xa1\x17\x65\xd0\x0b\xd3\x0a\xde\x51\x8a\x37\x3d\xe9\xe3\xc6\x29\x2e\x87\x46\x76\x9e\xd9\x9d\x47\xf9\xbe\xa3\x29\xc8\x79\xf4\xbe\x9f\x8c\x23\x3b\x45\x05\x6a\x3b\x63\x58\x58\x44\xb3\x76\x2f\x87\x22\xac\x8a\xd0\x00\x4b\xcb\x72\xfe\x9f\x30\x41\x00\x93\xe7\x54\xeb\x45\x11\x4c\xdb\x8c\x73\x89\x69\x0c\x9e\xa2\x9d\xa0\x26\x1a\x87\x1a\xde\x76\xa9\x68\xa8\xf9\x86\x24\xa5\x5b\x0a\xd2\x22\x47\x14\x07\x52\xf6\xfc\x83\xc1\x43\x35\xfb\x77\x56\xeb\xfb\x99\xde\x11\xa9\x68\x95\x4f\x5b\x47\xe6\x3b\x4a\xe4\xfd\x42\xe3\x91\x71\xb9\x4e\x07\x4b\x3c\xcf\xfe\x4f\x8c\xad\xea\xd4\x61\x9e\x49\x3f\x3d\xcd\xf6\x65\x2c\x6d\xd8\x2c\x51\xf8\x82\x91\xdc\x07\x6c\xa0\xdc\xfd\x1c\x2c\x30\xbe\x57\x7a\xaa\x0c\x4a\xea\x0d\xf1\x04\x51\x4c\x5c\xd0\x59\xe3\x8b\x5d\xf2\x2a\x2e\xb6\xe5\x35\x99\x2c\xf5\xc2\x96\x5a\x57\xae\x96\x4a\x00\x0b\x97\x22\x79\x5d\x00\x56\x13\xce\xf2\xcf\x42\x32\xc8\xde\x09\x1e\x2c\xd9\x2f\xd5\x4b\x60\x9c\x94\x64\x1e\x99\xa5\xc7\x82\x00\x9c\xad\xdb\x1d\x11\x77\x02\x7b\xd1\x91\x82\xe9\xda\x6e\xdf\x4e\x07\x4b\x79\x81\x2d\xc7\xfc\xd2\x37\x3f\x19\x34\x9f\x3a\xbc\xb3\x1a\x46\x09\xb7\x79\xc3\xb9\x8c\x5c\xaa\x2f\x39\x32\xc9\x5e\xba\xc2\xa9\x85\xdf\xa2\xae\xe8\x5d\x76\x74\x5f\x4e\xa5\xa5\xc1\x5c\xfa\x74\xbd\x49\x0b\xad\x43\x98\xd3\xfc\x15\xf1\x26\xeb\xf9\xcc\x23\x1f\x4f\x3d\x9f\xa9\xd7\x1e\x36\xf2\x38\x0b\x0a\xbc\x8e\x69\xdb\xfd\xc4\x7b\x4f\x32\x49\x70\xac\x49\x44\xfa\xf2\x27\x63\x89\x60\x0c\xb6\xa8\xab\xac\xe3\x76\xf4\x9e\x26\x6b\x50\x7e\xdf\xcf\x6b\xb2\x15\xee\x95\xff\xca\x9d\xbc\xa0\x0e\xfa\x2c\x12\x77\x09\x8d\xd9\xda\xd8\xb7\xd1\x92\x5e\x26\x1a\x8f\x8a\x79\x31\x95\x3a\xfa\x2a\x30\xed\xe0\xc1\xb2\x4f\xbd\xcf\x96\x32\x0e\x31\xa6\x78\xa0\x9a\x10\x7f\xf1\xcb\x3e\xfb\xc5\xaa\xf5\x8a\x70\xba\xdb\xd2\x4f\x9b\xdb\x52\x7e\x4c\xd1\x2f\x09\x13\x6b\x0f\xdc\x75\xd3\x5b\xb3\xcd\xa8\x72\x5d\x31\x5c\x6a\xa4\xbf\x04\x51\x58\x3e\x35\x4f\x5f\x02\xa6\xbd\x26\xec\x2b\xf2\x9a\xa0\x9e\x06\x88\xd2\xcd\x80\xe2\xa0\xda\x8e\x08\xa3\x51\x18\xfb\xce\xbe\x4a\xd2\xad\x10\xc7\x6c\x29\x3a\x77\xac\xe3\x80\xca\x3e\xa7\xb5\x0f\x58\x8f\x53\xc7\xe0\xdb\x36\x59\x4e\x0a\x40\x47\xd1\xc5\x8e\x17\xe7\xee\xad\xca\xbd\x59\x8e\x29\x5f\x59\xe6\x3c\x3c\xab\xcf\xc3\xda\xde\x34\x16\xfa\x04\x05\xfb\xc8\x5b\x8d\xd5\xcb\x1e\x3d\x69\x83\x01\xf2\x56\xa3\xe7\x0a\x52\xcf\xa2\xa5\x33\x98\x65\x3e\x00\x58\xd8\x98\x20\xa1\x98\x89\xc6\x14\xec\x17\xbf\x58\xe3\x73\x34\xcf\xca\x65\x41\xb4\x1e\x89\x3a\xe8\xf4\x7a\x0f\xcd\x2b\x37\x7d\xaa\xa3\xd6\x1b\x54\x36\xc3\x7c\xe6\xf5\x02\x8a\x08\x7b\x2a\xea\xa0\xa1\x6d\x26\x0d\x86\xae\x72\x4c\xa0\xd6\xb7\xd7\xa3\x11\x8b\x78\xb7\xa6\x61\x58\x38\x3e\x1d\xf5\xdb\x2b\x47\xd0\x1a\x6e\xa3\xc6\x36\xdc\x49\x14\x78\x88\xd0\xbc\xaf\x1f\x3a\x30\xd0\xce\x01\x1e\xc3\x84\x9f\xcb\xe2\x46\xd3\xa1\x91\xf0\x2a\x95\x5a\x00\x4e\x0b\xf2\xe4\x86\xa6\x7d\x67\x5a\xaf\x11\x53\x05\x9a\x73\xe4\x83\xa1\x94\x86\x47\xf4\xc2\x68\x2e\x12\x17\x07\x76\x54\x33\x65\xca\xa5\xa6\x71\xc4\xed\x3a\xef\x02\x29\x97\x67\x89\x95\x4f\x8c\x4d\x9b\x57\xf9\x8c\xf6\x51\xcb\xb1\x9e\xf9\x16\x78\x4d\xb0\x2b\x75\xc0\x0c\x73\x91\xb7\x28\xd3\x1e\xa7\xd1\xaa\xb8\x4f\x73\xb1\x50\x1e\x26\xf1\x3a\xb5\xc3\x96\x11\xee\x0b\xfa\x3d\xcb\x38\x33\x65\x07\x6d\x73\xbf\x8c\xdc\x28\x15\x94\x8a\xe3\x4c\x68\x20\x5a\x4b\x99\x83\x4f\x6e\x22\x79\xf8\x62\xb7\x22\x4d\xaa\x6c\x02\x34\x9b\xd8\x62\xd0\xe9\x88\x74\xd1\x7c\xec\x4e\x9e\x4a\x5a\xf8\xe4\x3d\x7f\x92\xa0\x29\xb9\x9a\xf3\xfb\x0c\x41\x8e\x72\x91\xa0\xad\x37\x8a\x5c\x4f\x8d\xb1\xd5\x76\x2a\xd9\x7e\x25\x35\x71\x4c\x64\x46\x5a\x4c\xed\x30\x21\xd4\x12\x73\xf9\xb1\x6d\x25\x88\x8f\x47\x6b\xa8\xe3\xcf\xd6\x20\xd2\xf3\xc5\x45\x43\x3d\x75\x52\x1a\x2d\x72\x80\xc1\xd3\x1d\xc8\x80\x72\x83\x39\x7a\xae\x6d\x77\x19\x56\xb7\xd0\xa4\x22\xa6\x81\x89\xd4\x24\xb2\x23\x62\xe3\x34\xef\x6a\x64\xf2\x2a\xa4\x40\x70\xce\x82\xa3\xac\x46\x13\xb0\x31\x56\x4f\x14\x17\x7c\xb1\x4f\x5e\x94\xe3\xd7\x4d\xd1\x8a\x25\xea\xa1\xc5\x10\x66\x3f\x35\x8a\xf7\x04\x24\x1c\x38\x31\xd7\xf1\x32\x56\x57\xe6\xd1\x64\xb3\x17\xd0\x18\x1d\x23\xcc\x65\xcd\x5a\x0b\xd6\x6b\xa0\xa5\xdf\x35\x6b\xab\x26\xf1\xfe\xc9\x37\xb7\xf8\x76\x09\x22\x4b\x24\xa6\x4e\x3b\x15\x0a\x52\x0e\x2a\xee\x5b\x30\xb0\x6b\xfb\xa0\x65\xf5\x31\x8f\x97\x77\x8c\x9c\xfc\x63\xd5\x5d\xc0\x51\xbe\xd2\x8f\x10\xaa\xa0\xde\xed\x32\x7c\x53\x38\x3a\x8e\x5d\xc9\xb6\xbd\xc4\xe2\x58\xbe\xfd\x15\x85\xc7\x15\x30\xb9\x9c\xa2\xa0\x06\x53\x4d\x46\xe6\x41\xee\xfd\x4f\x44\xa6\xc2\x8f\xd0\x24\x70\x14\xcd\xec\x00\x45\xbb\xe6\x67\x6d\x6f\xdc\xab\xdd\x27\x65\x9a\x33\x65\x3b\x44\x01\xcd\x3d\x0c\x29\xf2\x4b\x35\xee\xb0\x2a\xcc\x8e\xe4\x73\x01\x7b\x6b\x14\x67\x4c\x21\x6e\xeb\xb3\xe7\x70\x22\x73\xd5\x41\x04\x0a\xe4\x06\x1c\x4f\xc9\x38\xf2\x9e\x3f\xc6\xe2\xde\xc8\x0f\x74\xb4\x43\x7a\x11\xcc\x05\xc7\x9f\xe2\x75\x02\x97\xee\x28\x8a\x9a\xe8\xe9\xd3\xbc\xa3\xf2\xbc\x74\x4c\x56\xe7\xd3\x07\xb1\x0d\xfe\xd9\x62\x1b\xc8\x35\xf7\x84\xa0\x55\x4f\x92\xac\x88\x6f\xb4\x73\xca\xd6\x17\x90\x53\xfa\xbc\xb6\x64\x5e\xa3\x03\xa2\x32\x74\x37\xf1\x85\x14\x84\x7d\xd6\xac\x5b\x7e\xa2\x7d\xdf\xc7\x83\x81\x72\x43\x8b\x53\xda\xa0\xb4\xdd\x01\xb6\xac\xc5\x23\xbf\x36\x1f\x1d\xc4\x5a\x8a\x8a\x8a\xfc\x6f\xe2\x66\xd4\x82\xc4\xe8\x97\xb4\xf3\xb1\xd9\x7a\xda\x03\x98\xce\x4e\x20\xde\xa5\xd5\x63\x0c\x19\x98\xba\x85\x79\xb0\x80\xfe\xa9\x17\x10\xdb\xf9\x02\x62\xb4\x8f\xaa\xf2\xe5\x57\x15\x77\xab\x3d\x8a\xe2\x4c\x18\x8f\xa9\xd7\x92\xa2\xde\x59\xaa\x77\x80\x72\xd9\xe1\xd5\x3b\xbb\x41\xb4\xa7\x69\x1f\x49\xd3\xe4\x63\xdd\xa7\x65\x27\x1f\x50\xef\xbf\x07\xf5\x6e\xc7\xbd\xfc\x54\x64\x8b\xbc\x84\xee\xa4\xae\x23\xd3\xbd\xd3\xc7\x9f\x7c\x2c\xa0\xb1\xa7\x5b\x76\x37\x70\xa7\xe1\x3c\x5e\x09\x96\xf7\xaf\x92\x87\x1d\xb8\x14\x46\xed\x33\x8d\x7d\x1b\x4e\x2c\x66\x36\x76\x1a\x4d\x75\xa6\x4e\xdc\x02\xc2\x82\x94\xb2\x6a\x87\x83\x98\xac\x21\x2a\xa2\x3d\x39\x31\x0b\x98\xd0\x66\xf0\x8a\x9a\x0f\x41\x07\x77\x1d\xd8\x6c\xee\xdf\x0f\x3f\xde\x6a\x49\x97\x9c\x1b\xf9\x4c\x69\x0f\x70\x22\x57\x53\xf9\x1a\xc9\xfa\x5f\x72\xa0\x8c\x81\x70\x98\xcb\xac\x4a\x5b\x7a\x04\xc5\x6d\x8a\x97\x50\xe7\xb1\x75\x95\xa2\x26\x58\xfd\x7a\x32\x58\x42\xa1\x0d\x87\x2a\x6b\xb1\x8b\x27\xfe\x21\xfd\x1e\x10\x3a\xed\x20\x6c\xf7\x39\xfe\x9e\x56\x9e\x38\x79\x9a\x72\x04\x90\x7e\x19\x08\x8b\x6c\xd3\x78\x62\xcc\x30\x09\x54\xd1\x0e\xa6\x8e\xf5\xce\x14\xe6\x9c\x0b\xa0\x73\x8c\x06\x8e\xd2\xea\xd9\x3d\x5b\x89\x28\x7e\x2e\x22\x2c\x08\xad\x9e\x60\x82\x19\xe6\x6b\xe1\x44\x0f\x49\x57\x78\x69\x8f\x5e\xb6\x97\x0a\x27\xe7\x58\xcc\x81\x4e\xd6\x9b\x17\x9f\x72\xf9\x10\x06\x26\xcf\x50\xa1\x79\x5b\x0c\xcd\xb3\x1f\x68\x5e\xef\x42\xeb\x89\x1e\xd4\x8f\xab\xa1\xd1\xcf\x18\xc8\x1e\x4c\xda\x9b\x67\x91\x43\x28\x9e\x6c\x3b\x39\x73\x60\xea\xaa\x95\xff\x22\x1d\x44\x8f\x11\xe1\x34\x54\xfc\xfe\x62\x1f\x53\x81\x03\xf3\x20\x2f\xe7\x9c\x20\x71\x9c\x9f\x76\xe5\x91\x71\x5d\xa0\x7e\x3f\x5d\xe0\x73\x54\x15\x2e\x70\xb3\xe5\x40\xdb\x51\xbf\x3a\x6e\x59\x2e\xfa\xd5\x04\xe7\x3d\xf6\xeb\xa4\x63\xbc\xea\x35\x44\x19\x6e\x5b\x93\xdc\xe2\xab\xc8\x78\xe0\xc9\x91\x6c\xab\x05\xd5\xe7\x64\x71\x24\x69\x99\x35\x92\xfa\xa0\x97\x4a\x2a\x51\xae\x98\x7c\x52\x98\x2e\x3f\x62\xfd\x88\xef\x0f\x43\x75\xd3\xc9\xd7\x7f\xfd\x11\x58\x83\xcd\x56\x2b\xb7\xb2\x24\x4f\xd0\xf5\xe5\x57\x99\x69\x4a\x2e\x36\xeb\xa7\xbd\xe6\x4c\x72\xc1\xd2\xb3\xbe\x25\x2b\x30\x49\xc4\xd4\xfe\xa1\xd6\x63\x92\x92\x5a\x96\x26\x59\xae\x4e\xf3\x33\xb3\x48\x4d\x7a\xc1\x5a\x35\xdf\xb2\x4b\xd6\x7c\xc8\xac\x5c\x93\xae\x17\x70\x3a\x21\xb5\x8e\xcd\xa7\xdc\x72\x36\x5f\xd4\xaa\xb6\x7e\xab\xc5\x6d\xa7\x88\x35\x3e\x6e\x12\xad\x38\x0b\x99\x19\xd4\xdc\x60\x72\x69\x7d\x41\x9d\x94\x1f\x9b\x9d\xa3\x29\xdb\x96\xbe\x35\xcd\x24\x14\xcc\x44\x4a\x8f\x5a\x90\x58\x54\x24\xc5\x76\xf4\x78\x28\x0a\x3a\x11\x09\xd7\x1d\xbd\x1c\x6d\x6e\xd4\x6a\xa5\x3b\x98\xe6\x4d\xad\x24\x59\xb1\x28\x93\x92\xb8\xcf\x32\x29\xca\x21\x5b\xfa\xb7\xe6\x5b\x99\x64\xc9\xbe\x32\x89\xb9\xa9\xcf\x33\x33\xeb\x93\xe2\x69\xb9\x94\x34\x6b\x4b\x96\x5f\x26\x56\x49\xf2\x45\x33\x3c\x2b\x6b\xb1\x53\x21\x83\xd2\x76\xc2\x02\x15\x4e\x73\xbc\x91\x23\xb6\xd9\x4c\xf8\xaa\x61\x86\x49\x4a\xab\x95\x74\xc1\xf0\x51\x93\x94\x67\xa7\x3c\x7b\x56\x12\xa9\x41\xa7\x54\x2a\x95\x78\xf5\xf5\x3a\x7c\x58\x52\xe1\x01\x41\x85\x1c\x7a\x88\x43\x1c\xae\x41\xe7\xd9\x67\xc5\x5a\x76\x7a\x01\x0d\x56\x11\x43\x94\x57\x70\x00\x3e\xd4\x1a\x4e\xa8\xf5\xe3\x63\xca\xb7\x86\x05\x49\x0f\xe4\xa5\x07\xf2\xd2\x03\x79\xe9\x81\xbc\xf4\x40\x5e\x7a\x20\x2f\x3d\x90\x97\x1e\xc8\x4b\x1f\x75\x79\xa9\x6e\xe4\xa5\xfd\x93\xe4\xa5\x3a\xdc\xdf\x1a\x4a\x0a\x28\x16\x85\x56\x82\xf8\xe8\x5a\x10\x3a\x8d\x6e\x10\xc6\x68\xb8\x0f\xae\x22\x16\x34\x36\x56\x85\xba\x4b\x5e\x63\xde\x97\x92\xcd\x5b\x59\x8a\x9d\x89\xb7\x91\x3b\x88\xa2\xb5\xa7\xca\xbb\xf8\xc0\x81\xfe\x73\x15\x54\x1f\xa9\xbc\xe3\x12\x4e\xe7\x9c\xad\xa4\xcb\x69\xe6\x3e\x0e\x9d\x7e\x28\x26\xae\xc6\x33\x3b\xb0\xb9\xff\xe3\x70\x7c\x84\x45\xe3\xaa\x27\x45\xf2\x0e\x74\x8c\xbd\x96\x22\xaa\x47\x12\x51\x6f\x8a\xfa\x78\x27\x3e\x61\x11\x09\xe4\x02\x2e\x0a\xb8\xf4\xd1\xcc\x34\x64\x2d\xbb\x11\xba\x44\x8b\x22\x3f\x0e\x9d\x10\xeb\x11\xaa\xfe\x4c\x3b\xc8\x92\x23\x97\x9a\x54\x5e\x4a\xa2\x4e\xed\x76\x53\xd4\x51\xad\x26\x05\x14\x8d\xb7\x8a\x86\xda\x27\x21\x12\x7d\xcb\x0c\xd6\x6a\x6e\xfc\x60\xad\x01\xc7\xbd\x40\x54\xfb\x08\xd4\xc6\xa4\x4b\x7d\xc6\x22\x9d\x26\x0c\xf9\x42\x25\xdc\x4b\x03\xb8\x92\x32\x3e\x73\xa6\x9f\x37\x59\xb0\xba\xc4\x88\xc6\x6e\x51\x78\xab\x84\x03\x68\x16\x9f\x8c\xbc\x64\xfe\x5d\x7f\xc5\xfa\xc9\xab\xfb\xe4\xd8\xe3\x91\xae\x2a\xd1\x2b\x8f\xe3\xbd\xd3\xa1\xad\x3e\x8a\xab\x8e\xae\xb6\x99\x57\x91\x0b\x0e\x9b\xd9\xef\x34\x33\x4c\xed\xd8\xb9\x0d\x51\x57\xd0\xb2\xa8\x44\xb0\xbb\xf1\x98\x98\x34\xaa\x3a\x3f\xb8\x5a\xfc\x38\xd3\xd6\xf8\x53\x28\xb4\x17\xd2\xb8\x29\x91\x1c\xbc\xe0\x84\xaa\xa6\x87\x8b\x28\xa4\x63\xc6\x9a\x13\x2b\x1e\xe6\x47\x29\x1b\xe5\xe9\x5d\x5b\xa3\xc4\xfe\x33\x7a\xe4\xf9\x45\x30\x86\x9c\xd3\x96\x75\x82\x38\xeb\xb0\x59\xff\x64\xfa\x90\x95\x4c\xc5\x34\x84\x59\x88\xc9\x2c\xad\x16\x8d\x70\x02\x1f\x53\x22\xa2\x18\x12\x5b\xef\x25\x27\xad\xc9\xc3\x1c\x11\x90\x52\xd5\x95\x9c\xbb\x6a\x9a\x45\xf4\x59\xc4\x97\x42\x88\x98\x38\xb6\x76\xbb\xa9\x0f\x94\xaa\xfb\xa0\x74\x7a\xd0\xc3\x2c\x08\xf1\x73\xe9\x22\x71\x0f\x85\x61\x7b\x05\xb5\xcf\x38\xd0\x11\x78\x9c\x6a\xc3\x19\x15\x7d\x70\xd2\xb6\xc3\x2b\x16\x37\x8d\xb9\x9c\xc9\xeb\x5e\x27\x59\x8c\x3c\x7b\xda\xb2\x59\x4e\x7f\xf2\xc8\x24\x95\x35\x66\xeb\xe2\x52\x8e\x67\x19\x19\x3e\x2e\x5d\x24\x6d\x0a\xca\x0b\x66\xc3\x9b\xa5\xf3\x27\xea\x8d\xd1\x5b\x81\x9d\xdf\x68\x12\x46\x1e\x05\x74\x38\x31\x5d\x2c\x55\x58\x1e\x47\x64\xc7\xf4\xaf\x4c\x96\xc7\x84\x46\x43\xe5\x10\x3f\x52\x19\x12\xfa\x91\x68\x49\xc4\xcd\x54\x2d\x46\xcb\x31\xa6\x9f\xd9\xd3\x8d\xb5\x67\x4c\xb7\x25\x7c\x32\xb5\xaf\x4e\xcd\x06\xf8\xb2\xeb\xc7\x55\xdc\x96\x9b\xa4\x6c\xef\x03\x90\x3c\xb5\xa4\xb8\x4b\x12\xe8\xde\x0a\x9c\xe1\xd3\x9f\x3c\xfa\xe9\xff\xf3\xcc\x73\xc5\x02\xa7\xf1\x66\x6e\x5d\x13\x33\x44\x57\xe5\xef\xe4\xc7\xb4\x37\xc6\x4b\x41\x8c\xdb\x89\x8f\x74\xa3\xde\x14\xb3\xc8\x51\x1f\x8f\x52\xeb\x15\x29\x1d\xd3\x7a\xc4\xbc\xe2\xaf\x48\xbb\x97\xd5\xa0\x29\xc7\xcb\x02\x3a\x21\xd5\x74\xe3\x95\x6a\xb9\xe3\x93\xbd\x86\x0b\x24\x85\x44\x63\x23\xc7\x37\x49\x66\x28\x54\x94\x4c\xa5\x1a\x2a\xaa\x2d\xad\xe8\x19\xdf\x72\x5e\x0d\x33\x3e\x7f\x91\xd2\x65\x7c\x89\xac\x1e\x61\xa2\xbe\x43\xcf\xce\x14\x19\x33\x4a\x91\x11\xf9\x52\x2a\x8a\xb1\x7d\xcd\x2a\x2c\xc6\xe7\x2e\x3a\x54\x8f\x2d\x90\x3b\x02\x8c\x38\x84\x27\x87\x89\x94\x14\xab\xce\x2d\xc6\xf4\x58\x4a\xae\xea\x60\x90\x28\x5a\xef\xeb\x46\x80\x27\x9c\x4c\x54\xc8\x9a\xd3\x8a\x82\x62\x1e\x4f\x4b\x79\x45\x70\xf8\x23\x5a\xd7\xfd\xb8\xd1\x85\xcb\x1d\x26\xa3\xa9\x28\xc2\x85\x1a\xc5\x49\xde\xfb\x49\x78\xcb\x84\x79\x9a\x98\x3f\xaf\xef\x9d\x9c\x3f\x51\x03\x4f\xce\xab\xb5\xc3\x53\xe6\x0c\xa7\xea\x84\xa5\x15\x1b\x9f\x71\x74\x54\x8f\x89\x45\x6d\xcd\x90\xce\x69\x87\x00\x1e\xb3\xd4\xd2\xbe\xaf\xa7\x59\x9c\xb6\xb7\xdb\x6d\xe4\x4f\x8b\x25\xc5\xc3\xb0\xb4\x5e\x23\xd7\x51\x76\xf5\x8c\xd5\xac\xa5\xae\xd4\x72\x97\x5f\xfa\x32\x2a\x11\x25\x0b\x2e\x98\x0a\x56\x81\x16\xd7\xa6\xbc\xe8\x49\x07\x70\x1d\x7f\x4f\x93\xd1\xa0\x64\xce\xb4\xa3\x16\x5d\xea\x72\x64\x3c\x8e\xb3\xf7\x14\x13\xb2\xeb\x1b\x81\xf1\xb9\x4c\x90\x88\x89\x39\x73\xb7\x00\x53\x10\xd0\xd4\x94\x96\x27\xb1\x69\x84\xed\x11\xdb\x5b\xea\x08\x3c\x75\xde\xbc\x5e\x63\x6c\x4f\x0a\x97\x5d\x81\xea\xa1\xf0\xb8\x3d\x36\xb7\xd6\x9d\x4f\xe8\xb9\x71\x95\x31\x9d\xfa\x63\x94\xf2\x66\x8c\xd6\x39\xb9\x51\x97\x63\x7f\xc8\xe8\x9d\x1f\x9e\xa4\x77\x7e\x08\x3e\x3c\xfa\xc8\xae\x7b\x3b\x71\x5f\xd5\xfe\x4d\x15\x4b\xc8\x84\x0d\x34\x9b\xa1\xd1\xbd\x67\x33\x8c\x94\xc7\xc6\x04\x25\x9a\x06\x31\x63\x95\x5a\x23\x6f\x20\xc5\x18\x8a\x18\x57\xc2\x94\xc6\xf1\x9b\x02\x6e\x36\x15\x0f\x1b\x7d\x63\x3c\x9a\x2b\xdd\x27\xef\x98\x7a\xed\xee\xd9\xd2\xda\x75\x76\xb4\xe7\x5c\x66\xc4\xf8\x9e\xde\x4e\x33\x79\x96\x50\xa4\xea\xcc\x2a\xcc\x0a\x43\x55\x4d\xa1\xdc\x9d\xa0\xda\x2d\x0a\x5f\xaa\x57\x41\xde\xaa\x61\x3c\x3d\x66\xef\x0f\x77\x05\x0f\xd3\x19\x02\x15\x20\x2a\x89\x66\x35\x1a\x4b\xb6\x5d\xf6\x27\xa6\xd5\x93\xd7\xe1\x27\xee\xa7\x7f\x05\x77\xec\x53\xdf\x6b\xc8\xab\xaa\xf1\x9a\x1c\xeb\x3a\x29\xb9\xfe\xd0\x5e\x33\x46\x5c\x3f\xa4\xee\x89\xa6\xa9\xbe\x34\xf2\x4b\xb5\x4a\xa2\xaa\xf2\x4d\x62\x3d\x81\xb5\xfa\xa2\x94\x23\x23\xba\x62\x28\xb6\xfe\xc9\x02\xf3\xa2\x2c\x7d\xa4\x4b\x7d\x32\x97\x5e\x94\xba\x2d\xbd\xf5\x74\xd3\x9b\x5f\x59\x05\x26\x05\x2d\xa3\xbc\xc9\xda\x69\x1d\x53\xca\xe7\x9c\x6c\x2c\x8e\x8f\x63\x2d\xa1\x72\x76\x5e\xc9\x22\x1d\x47\x1c\x53\x4a\xa3\xce\xa8\x8c\xe3\xc5\xcc\xfb\x90\x5f\x2d\xaf\x63\x8e\xf2\x08\x38\x6d\xed\xd3\x33\xed\x9c\xdd\xcd\x0e\x38\xd5\x14\x6c\x42\x09\x64\xfb\x8d\x40\x76\x60\x92\x40\xb6\x1f\x1e\x48\x09\x5e\xa3\xc8\x75\xe2\x5d\xd5\x48\x8e\x3f\xca\x0a\x4c\x31\x7c\x75\x3c\x52\x74\x30\x8a\xd1\x4f\x2f\xd5\x66\x08\x6a\x4a\x06\x5f\xb8\x18\xeb\xd6\x87\x3d\xd2\x4a\xef\x92\x12\x7a\x8c\xb7\xba\xdd\xd7\x49\x9f\x3b\x7c\xfc\x91\x7a\xfd\xe9\xff\x2c\xd4\x49\x8f\x79\x88\xb4\xdd\x4b\x38\xb5\x45\x74\xf0\xda\x14\x97\x09\xe6\x52\x2e\xcd\xe1\xa7\xbc\xc6\xdb\xfb\xbb\xb7\x64\x33\x6a\x47\xab\x4b\x91\xda\x19\xa7\x19\x54\x72\x6f\xb8\xb7\xd7\x6c\xf9\x3b\xb3\x02\x49\xb3\xf8\x12\x4c\xde\x52\x65\xe4\x78\x99\xa5\x3b\xf9\xaa\x6b\x69\xfc\x55\xd7\x2e\xde\x62\x4d\x6f\xe8\xb0\x77\x2b\x3e\xb3\x54\x77\x8b\x01\x7c\x20\x2b\x7f\x69\xf5\xb3\x4f\xb6\xd7\x8f\x3d\x32\xd6\xfc\x49\x49\x16\xe6\x42\x6a\xb4\x25\x54\x91\x2d\x49\x22\x93\x4c\x23\x43\x8f\x11\x0c\xa6\x32\x50\xba\x5f\xc1\x53\xb5\x3d\x8d\xd4\xa9\xe4\xcb\x6c\x6f\xef\xd3\xca\xc1\x32\xcb\x49\x19\x6e\x25\x06\xa7\x13\x71\xf8\x70\xe1\xd8\x2d\x67\x1f\x59\x6b\x9a\xd1\x35\xe6\x37\xff\x02\xb9\xa7\xa9\x52\x6d\xe5\xe8\xe8\xdd\x7f\x67\x96\x3c\xd3\xca\x06\xf7\x27\x59\x27\x62\xb2\x19\x48\x4a\xb8\x9e\x46\x78\xd6\x52\xb9\xde\x1c\x12\xc5\x55\x21\x22\x72\x13\xbb\x3d\x8c\x48\xfd\x56\x7a\x76\x12\xab\x58\x23\x39\x3a\xde\x04\x25\xc7\x5e\xcb\xbf\xb9\x53\x81\xa6\x98\x71\xa7\xcf\x69\x04\xe4\x87\x52\x2f\x8b\xa6\xb7\xcc\x3a\x30\x69\x09\x4e\x6f\x27\xb6\x6d\x06\xe4\xd8\x7b\xb9\xe5\xa7\x64\xff\xc7\xc7\x2e\x5f\x2b\xe7\x08\x63\xb4\x02\xb3\xce\xc4\x9e\x27\xe5\x2f\x52\x6d\xbd\xdb\xf1\xfc\x50\x60\xbb\x59\x60\x0b\x23\xe5\x93\x3e\xa5\xb2\x50\x32\xa4\x2f\x8e\xeb\xf6\x4a\xea\xd1\x44\xb6\xe7\x79\x3f\x79\xaa\x62\xce\x7f\x6d\x92\xb7\x4d\xa5\xa7\xd4\x17\xa4\xc9\x68\x82\x81\xdf\x74\x96\x95\x13\x6c\xb3\xf7\x4a\x0c\xd9\x65\xf9\x63\x84\xf3\xbd\xdd\x97\x41\x8e\xd4\x50\x2f\x9a\x3b\xcd\x76\x72\xfa\x28\xd2\xcd\x8e\x3d\x7b\x7c\xa8\x06\x8d\x7b\x35\xf3\x56\xa7\x76\x6d\xf6\xc7\x7a\x17\xdc\x7d\x22\x78\xee\xd4\xff\x5a\xfa\xdf\xcf\x1d\x5f\x2d\x16\x44\xc7\xda\xde\x4f\xc3\x77\xb5\x2b\xc3\xdd\x61\x84\x23\x0c\x4a\x34\x1b\x9c\xc4\x76\xb6\x45\x8a\xd2\xe9\x1a\x11\x97\x5c\x29\x4a\x4c\xbc\x16\x16\xd1\xa1\x61\x6c\xf5\xd4\x7d\xc0\x5e\xda\xe3\x15\xd0\xcc\x6e\x51\xe3\x68\xf7\x8a\xbb\x4f\x89\x0f\x9f\x3e\xfd\xcc\x17\x1f\xf9\xc2\xe7\xa6\x63\x47\x7b\xa0\x50\xdf\xd5\xf3\x4c\xce\x8f\xe4\x14\x9b\xa2\xa5\x3c\xcf\x5c\xc7\xe4\x34\xe7\xd9\xcd\x70\x8f\x29\x2c\x3d\x9a\xdd\xa2\xae\x0f\xe4\xa1\x51\xbf\x7b\xfc\xa1\x23\x4f\x7c\xee\xe4\x76\x19\xdc\x88\x23\xf5\xe4\xe7\x3b\xbb\xf1\xae\x63\x6f\xdf\x74\x4c\x92\x5c\x3f\x90\x47\x1e\xdb\xb3\x70\x36\xef\x72\x18\x5a\x35\xfc\xb8\xce\xc5\xc6\xd1\xa3\x29\x12\x27\x27\x08\x90\x70\xf4\xb3\x8f\xec\x1b\xeb\xdc\xab\x8f\x51\x4f\x9e\xa6\x7b\xf9\xb1\x2d\x74\x08\x5f\xa7\xf6\xe3\xa5\x88\x4c\x63\xd0\xd6\x96\xbd\x2f\xb2\xa3\xb7\xdd\x80\x6f\xaf\xbc\x62\x61\xd7\x5f\xd9\x86\x42\x70\x2a\x12\x19\xbb\x06\x46\xde\xf7\x37\x33\xb2\xe9\x08\x81\x75\x2a\xd2\xbd\x6f\x1b\xfc\x54\xe5\x7b\xc5\x9b\xb7\x65\x84\x2f\x1d\xca\xea\x97\xbc\xd5\x6e\x10\x86\x4b\x41\xfb\x0c\x97\xb3\xfa\x44\x96\x9b\xd6\x71\xe7\x7d\x38\xfa\x2d\x08\x7f\x94\x71\xc8\xbf\xb1\x8c\x52\x41\x21\xb4\x7b\xc0\x21\x8c\xed\x0f\x22\xa0\x83\xfa\x66\x9c\x83\xd2\x05\xd4\x10\xbe\xcf\xa7\x41\x85\xed\x5b\xf7\x7e\x9c\x2c\xa2\x72\x79\xd6\x0a\xa4\x89\x6c\x39\x11\xe4\xbe\x19\x87\xef\xc3\x22\x97\xbd\xda\xf1\x68\xc9\x8a\xaa\x4c\x64\xa8\x4e\x02\xac\xb8\x20\x33\xda\xad\x21\xf6\x6b\xf3\xf8\x60\xd2\x02\x49\x22\xb9\xcf\xe3\x4a\x05\xa8\xf8\x7d\xc4\x8b\xc4\x9c\x1d\x62\x0b\x09\xe8\x62\xd0\x20\x4d\xdc\x9a\x61\x6e\x04\x16\x90\x9b\xd4\x12\x59\xfd\x04\x0d\x5a\xa9\x0c\x87\x22\x04\x68\xd2\x67\x22\x02\x0c\x2a\x27\xfb\x45\xbd\xc6\xb2\xd7\xb8\xb0\xd7\xd2\x25\x6b\xd2\x1e\xb6\x7a\x1d\xe9\x5e\x07\x3e\x4e\x7a\x9d\x80\x6e\x04\x1a\xb8\x19\x09\xaf\xb0\xcc\x0d\x54\x7c\x88\xd8\xb7\xfb\x1f\xd8\xfd\xe7\x19\xe3\x47\xab\x75\xdd\x93\x58\xc4\x9a\xe3\xbd\x0b\x38\xc9\x98\x0e\xce\x10\x3e\x4e\xf9\xab\x5a\xe7\x03\x4e\x86\x8b\x27\x0e\x17\x46\x6a\xc0\x83\x01\x3d\x58\x53\x95\x6e\x18\xef\xe9\xb3\x75\x15\x4e\x54\x47\xf8\x33\xb8\x08\xfc\x1a\x8c\xfd\x62\x5c\x90\x83\x3e\x2d\x97\x83\x83\xf1\xbc\x6c\xbb\x3f\x02\x25\x01\x47\x49\xa0\x50\xd2\x57\x28\x09\x53\x28\xe9\x5b\x28\x81\xd1\x60\x60\x93\x65\xdf\xda\xbb\x24\xbe\x42\x8d\x95\xd0\x20\x8b\x58\xc8\x4a\xc6\x35\xae\x26\x3d\xe2\xfe\x50\xa0\x36\x90\x64\x04\x67\xeb\x60\x30\x18\x83\x99\x04\xeb\x11\xc7\x3a\x24\x89\x2b\x5f\x9c\x8f\xec\x7c\xa0\x30\xb2\xf3\x81\x54\x64\xe7\x03\x2d\x18\x28\x0c\x1f\x72\x41\x0a\xdb\x28\xc1\x36\xec\xfb\xb5\xf9\xfe\xc1\x78\xbe\xaf\x29\x30\xf4\x51\x82\xee\x04\x74\xfb\xa0\x81\x9a\x7d\x81\x6e\x3e\xdf\xd6\xf8\xc3\x14\x26\xc5\x74\x84\x6a\x3a\xda\x7e\xe4\xa6\x32\x26\xd3\x41\x21\x81\x18\x24\x5e\x8c\x79\x86\x76\xd2\xb1\x47\x6b\xb2\x86\x8e\xbf\x91\x78\xd7\x0f\x13\x1f\xfa\x26\x50\x6d\x7b\x38\x13\x7a\x2b\x41\x7c\xe2\x2c\x31\x5c\xd9\xea\x4f\xb9\xec\x76\x8c\xab\x7e\x3f\x34\x20\x80\x81\x74\x75\xda\x01\x43\x19\x87\x91\xb8\x21\xa4\xe0\x51\xbf\x56\x2e\xab\x4f\x21\xd0\x9e\x49\x83\x64\x7e\x02\x17\x41\xc6\x09\x3f\xa1\x65\xce\xcb\x60\xec\x1f\x0f\xd8\x8a\xb7\x8a\x89\x2b\x81\xe0\x9c\x2b\xdd\xb5\x56\x22\x58\x03\x30\xa8\xd6\x39\xb6\xf9\xa2\x8a\x01\x0c\xfd\xbe\xe9\x0a\x6c\xfb\x7d\x15\xdf\x62\xbe\x5d\x2e\x87\xf3\x7a\xe4\x22\x6f\xc5\x8f\xc0\x4c\xe8\x77\xec\xec\x1d\x95\x5d\x77\xaf\x9d\x74\x2f\x4e\xb8\xb4\xeb\x38\x15\x04\x3c\x8a\x84\x30\xe0\xce\x35\x3f\xff\x6c\xbf\x56\xab\xd5\xaa\xfc\xcf\x27\x8e\xb6\xe6\x96\x61\xc1\xce\xd4\x6f\xa2\xd6\x60\x80\x86\x3b\xf2\xf5\xac\x1c\xad\xfb\x0c\xa2\x54\xe0\x53\x9f\xf2\x8f\xa4\x83\xce\x9d\xe8\xca\x24\x9f\x40\xa4\x46\x71\x88\x09\xb5\xaa\x8f\x45\xb8\x75\x2b\x02\xb9\x1f\x25\x9b\xa8\xe5\xee\xc6\xcf\x47\x51\x43\x26\x24\x27\xf5\x51\x2a\x58\xa4\x8c\x80\x2f\x85\x64\x18\xf9\x74\x30\xc0\x33\xd9\x1d\x34\x1a\x0c\xaa\x75\xdf\xf7\xf9\x06\x1b\x81\x85\x80\xff\x81\x75\xd0\x88\x86\x10\x8d\x0a\x03\xea\x07\x22\xaa\x28\xc5\xbd\x23\x38\x68\x53\xcc\x70\x3b\xf6\xe3\xa4\xbf\x2a\x46\xba\x9f\x76\xdc\xab\xb9\xb1\x8b\x80\xc7\xa2\xcf\xf4\x7a\x88\x1e\x0e\x62\xe4\x02\x8d\x1c\x37\x76\x59\xe6\x13\x18\xce\x48\x36\xb8\xe1\x6c\xbd\xfc\x37\xa7\xe1\x1c\x72\xa0\xf3\xff\xff\xc7\x2f\x14\x74\xfd\x4b\x1a\xf8\xb2\x06\xbe\xa2\x80\xcd\xab\xbf\x36\xd0\xeb\x06\xfa\xad\x81\xde\xd0\x05\xbe\xaa\x80\x1b\xba\xae\x1b\x49\x15\x6f\x19\xe8\x8f\x06\xfa\xab\x81\xfe\xac\xa0\x3b\xba\xa5\xdb\x3f\xd7\x95\x3e\xaf\x53\x2e\x9a\xdc\xaf\xe9\x6f\x2f\xe8\x6f\x57\x35\xf0\x6d\x5d\x91\xee\xc2\x9d\xa4\x0b\x3f\x37\xd0\xef\x0d\xa4\x11\xb1\x79\xd9\xf4\x59\x37\x78\x47\x57\xba\x75\xe9\x4f\x0a\xba\xf7\xaa\xe8\xa8\x68\xfb\x45\x0e\x1d\xe5\x6d\xfe\xc3\x40\xaf\x69\xe8\xde\xab\x62\x6c\x27\x04\x28\xda\xf8\x8c\x00\x2f\x73\xf0\x19\x01\x5e\x4d\x40\x51\xc1\x7f\xf2\x96\x5e\xfe\xbb\xd3\x70\x1e\x13\x13\xf3\x9a\x82\x36\x2f\x7f\xc5\x40\xcf\x1b\xe8\x45\x05\xdd\xfd\xaa\x02\x6e\xe9\x5c\xb7\xbe\xac\x80\xad\x97\x79\x6b\x87\x45\x65\xbf\x54\xd0\x8d\x17\x35\xf0\x75\x0d\x7c\x53\x03\xdf\x52\xc0\xf5\xaf\x29\x60\xf3\xb2\xce\x74\x4b\x27\xdd\xb9\xa6\x80\x7b\xaf\xbe\xab\xa0\xad\x97\xaf\x38\x0d\xe7\x88\x68\xe6\x75\x05\x6d\x5e\xfe\xa6\x82\x6e\x7c\xc7\x24\x7d\xcb\x40\xdf\x35\xd0\xcb\x06\xd2\xf9\x6e\xe8\x8f\xb7\x5e\xd2\x80\xae\xeb\xd6\x37\x14\x70\xef\x82\x6e\xf2\xf6\x25\x0e\x7c\x8e\x43\xcf\x1b\x88\xcf\xd1\x91\xe7\x38\xf4\x82\x86\xb6\x5e\xe6\xe8\x3e\x2a\x3a\xf9\x2b\x05\x5d\xff\xba\x06\xbe\xa1\x81\x6f\x2a\x60\xf3\xda\x97\x34\x74\xf5\x5d\x93\xf6\xbc\x81\xbe\x62\xbe\xfe\x43\x41\x37\x5e\xd6\x49\x97\xbf\x6f\xa0\x1f\xea\x8f\x3a\xe9\x86\x4e\xb9\xfe\x92\xa9\x41\x77\xec\xc6\x4f\x14\x70\x47\xb7\x73\xe7\x45\x93\xe9\xb2\x69\x5a\xa7\xdd\x79\xc3\x34\xf3\xaa\xae\xe1\x47\x26\x29\x81\x74\xad\xb7\xbe\xab\x81\xef\x28\x60\xeb\x65\x3e\x99\x8f\x0b\x9c\xfc\x5a\x41\x9b\x97\x2f\x2a\xe8\xd6\xf7\x14\x70\xef\x82\xce\xb6\xf5\x32\x1f\xed\xa7\x44\x81\xdf\x28\xe8\xf6\x5f\x15\x70\xe3\x55\x05\x6c\x5e\xfe\xb9\x4e\xba\xa8\x01\x9d\x72\xfb\xd7\x3a\xe5\x35\x9d\xf2\xba\x02\x6e\x9d\x57\xc0\xbd\x8b\x3a\xf7\xbd\x0b\xef\x18\xe8\x5d\x05\x6d\xbd\xcc\xd3\x9e\x10\x7d\x78\x43\x41\x37\x5e\x57\xc0\xe6\xe5\xd7\x0c\xf4\x6b\x05\xdd\xb9\x68\x92\x92\x6c\x6f\x18\xe8\xb7\xba\x0e\x9d\x7f\xeb\xd2\x6f\x0c\xf4\xb6\x82\xee\x5d\xfc\xb6\x4e\x7b\x99\x77\xe4\x98\x68\xfe\x4d\x05\x5d\xff\x96\x06\xbe\xad\x81\xef\x28\xe0\xc6\x1b\x1a\xf8\xad\x06\x7e\xaf\x81\xb7\x74\xe6\xff\x52\xc0\xe6\xe5\x3f\x6a\xe8\xda\xd7\x15\x74\x5b\x7f\xbc\xa3\x53\xee\x7c\xd3\x64\xd2\xd0\x0d\x53\xee\xb2\xae\xfd\xd6\x2b\x0a\xd8\x7a\xf9\x3d\xa7\xe1\xfc\x2f\xd1\xe1\xdf\x2a\xe8\xc6\x5f\x15\x70\xf7\xeb\x0a\xd8\x3a\xcf\xe9\xfd\xd3\x22\xd7\xef\x14\xb4\x79\xf9\x2d\x05\xdd\x7e\xc3\x24\xfd\x59\x41\x37\xfe\x66\x92\xfe\xaa\xa0\x5b\x3f\x52\xc0\xd6\xa5\x37\x15\x74\xef\xc2\x97\x0c\xf4\x15\x03\x3d\xaf\xa1\x8b\xaf\xe9\x12\xe7\x39\xcf\x7a\x52\x34\xff\x7b\x05\xdd\x78\x4f\x03\x57\x34\xf0\x8e\x02\x36\x2f\xff\xcd\x40\x97\xf5\xc7\x6b\x26\xe9\x1f\x06\xba\xaa\xa0\x9b\xba\xfa\x3b\xba\x8a\xad\x4b\xaf\x19\xe8\xe7\x0a\xba\x77\xe1\xeb\x06\x7a\x51\x43\x17\xbf\xa4\xa0\xdb\x9c\x05\x3e\xc9\x91\x75\x5b\x64\xfb\x82\xe8\x37\x1f\xd5\x71\xd1\xef\x3f\x28\x68\xf3\xf2\xbb\x1a\xba\xf2\x25\x03\xe9\x7c\x5b\x97\xfe\xa8\xa0\x5b\xaf\xea\xa4\xf3\x9c\x85\x3f\x25\x2a\xf9\xa3\x82\x6e\x5f\x56\xc0\x4d\xfd\xed\xfa\xf7\x14\xb0\x79\xe5\x79\xfd\xed\x6b\x26\xe9\x45\x9d\xf4\x82\x49\xfa\xa6\x81\xbe\xae\xa0\x3b\x3f\x57\xc0\xad\x0b\x0a\xb8\x77\xf1\xbb\x06\x7a\x5d\x37\x2d\x0a\x8a\x71\x72\x1e\xf5\x94\x1c\x27\x6f\xf3\x84\xe8\xe2\x9f\x14\x74\xfd\x65\x0d\x9c\xd7\xc0\xf7\x15\xb0\x79\xed\x65\x03\x7d\xd7\x40\x3f\x34\x90\xce\x77\xfd\x07\x3a\xe9\xca\xb7\x14\x74\xe7\xf7\x26\xe9\x3b\x0a\xba\xf9\x2d\x93\x64\x2a\xbb\xa2\x1b\xb8\xa9\x73\xdd\xf9\xa3\x06\xde\xd2\xb5\xeb\x06\xef\xfc\xd6\xb4\x6c\xea\xd4\x35\xdd\xfe\x9e\xce\x64\x7a\xa0\xf3\xdc\xfa\xb9\x29\xf6\xaa\x81\x7e\x62\xa0\xe4\xeb\x45\x03\xbd\x66\x20\xd3\xe7\x6b\x3f\xd2\x2d\xe9\x5e\xdc\xd6\x43\xbc\x6e\x3e\xbd\xab\x9b\x7c\x51\x03\x3f\x53\xc0\xbd\x0b\xdf\x34\x90\xae\xf3\x96\x68\xe6\x98\x48\x13\x9d\x15\xdd\x16\x89\x9f\x11\x93\xc5\x89\xe0\x69\x31\x59\x6f\x29\x68\xf3\xca\xf7\x0d\xf4\x43\x05\xdd\x7a\x5d\x01\x5b\x97\x7e\xa9\xa0\x7b\x17\xbe\x6b\xa0\x97\x0d\xa4\x8b\x6e\x9d\xe7\xdd\xfb\xdf\xa2\xe2\x4b\x0a\xba\x77\xe1\x87\x06\xfa\x91\x82\xee\x7e\x53\x01\x5b\xe7\x39\x85\x9e\x14\x05\xfe\xac\xa0\x9b\xdf\x57\xc0\xe6\x95\x1f\xe9\x24\x0d\xdc\xf9\xae\x06\x5e\x36\x99\x7e\x62\xa0\x57\x75\xf6\x1f\x9a\xa4\x8b\x0a\xba\xfb\x2d\x05\x6c\x5d\x7a\x5d\x41\xf7\x2e\xe8\x92\xf7\x2e\xfe\xda\x40\x5f\xd1\xf9\xce\xf3\x45\x71\x4a\xf4\xec\x2f\x0a\xda\xbc\x7a\x51\x41\x37\x7f\xa2\x93\xae\xbc\xae\x93\x5e\x35\x49\x3f\xd7\x49\x3f\x37\x49\xbf\x36\xd0\x6b\x06\x7a\x43\x41\x77\x7e\xa4\xf3\xeb\xea\xb7\x2e\xbd\xab\xa0\x7b\x17\xdf\x30\xd0\xf3\xfa\xeb\x79\x2e\x8d\x9c\x16\x5d\xfb\xab\x82\x36\xaf\xfc\x56\x41\x37\x5f\x37\x49\xbf\x57\xd0\x9d\x9f\xe8\x6f\xaf\x99\x6f\x6f\x19\xe8\x8f\xfa\xe3\xaf\x15\x70\x4b\x97\xbb\xa5\x3f\xdd\x79\x57\x01\xf7\x2e\xbe\xa8\xa1\x57\x79\xc7\x4e\x7f\x4e\xf4\x87\x4f\xe7\x67\x44\x7f\xde\x56\xd0\xf5\x1f\x6b\xe0\x27\x1a\xf8\xa9\x02\x6e\xbe\xa1\x80\xcd\x2b\x97\x75\xd2\x6f\x4d\xd2\x55\x9d\xf4\x7b\x5d\xee\x55\x05\xdc\xd6\x15\xdc\x7e\x45\x03\x3f\xd0\x80\x6e\x6d\xf3\xda\xaf\x75\xf9\x3f\x6a\xe0\x2d\x9d\xe9\xbc\x02\xee\x7c\x5f\x03\x3f\x54\xc0\xad\x3f\x99\xf2\xa6\x27\xd7\x4c\x37\xaf\xfd\xd1\x40\xbf\x37\xd0\x5b\x06\x7a\xdd\xf4\xfd\xcf\xba\xc9\x3f\x9b\xa4\xbf\x19\xe8\xaf\x0a\xba\xfb\xbc\x02\xb6\xce\x73\xee\xf9\x8c\x40\xdb\xdf\x14\xb4\x79\xe5\x1f\x06\x7a\x57\x41\xb7\xfe\xac\x80\x7b\x17\x2e\x2a\xe8\xee\x0b\x26\x89\x93\xd8\x33\xe2\x60\x70\x9e\x93\xf8\x67\x45\x75\x7f\x57\xd0\xe6\xd5\x2f\x19\xe8\x2b\x0a\xba\xf9\x57\x93\xf4\xa2\x81\x9e\x37\xd0\xd7\x15\xb4\x75\xe9\xcf\x1a\x3a\xcf\x85\x96\xff\x23\x2a\xbe\xac\xa0\xcd\xab\xdf\x34\xd0\xb7\x14\xb4\x75\x9e\xb3\x9a\xff\x14\xf9\xae\x28\x68\xf3\xda\x9f\x15\x74\xfd\x82\x02\x6e\xfe\xcd\x7c\xbb\xac\xa0\x3b\x3a\xd3\xe6\x55\x5d\xc5\xcd\xcb\x26\x57\x92\xff\xaf\x0a\xba\xf5\x17\x05\xdc\xfd\x8e\xf9\xf6\xae\x82\xb6\xce\x73\x79\xe8\x73\xa2\x17\x57\x15\x74\xf3\x8a\x02\x36\xaf\x7e\x57\x27\x5d\xd3\xc0\x3b\xe6\xdb\xcb\x06\xfa\xbe\x82\x6e\xbd\xad\x80\x3b\xaf\x2b\x60\xeb\xd2\x7b\x06\xfa\x9d\x82\xee\x5d\x78\x4d\xa7\x9d\xe7\xf5\x07\xbc\xf1\x77\xbe\xac\xa0\xcd\xab\x3f\x51\xd0\xf5\x9f\x6b\xe0\x17\x1a\x78\xcd\x64\xfa\x8d\x81\x7e\x65\xa0\xdf\x19\xe8\x4d\x5d\xe0\x97\x0a\xb8\xa1\xab\xbf\xf1\x55\x93\xe9\x92\x81\xfe\x64\xa0\xb7\x0d\xf4\x17\x05\xdd\xd1\x2d\xdd\x36\xbd\x78\x5d\xa7\xfc\xcc\xe4\xd6\xed\x5c\xd7\xbd\xb9\x7d\x4d\x03\xdf\xd1\x15\xe9\x2e\xdc\x49\xba\xf0\x0b\x03\xfd\xc1\x40\x7f\xd7\xd0\x65\xd3\xe7\x17\x14\xb0\x75\x49\x57\x7f\x57\x23\xee\xde\xab\xa2\xa3\xa2\x6d\xbe\x96\x03\xc4\xdb\x7c\xc7\x40\xbf\xd4\xd0\xbd\x57\xc5\xd8\x22\x01\x8a\x36\xfa\x02\xe4\x73\x1d\xac\x09\xf0\x5a\x02\x8a\x0a\xd6\xc5\x14\xf1\xfd\x7c\x49\x4c\xd1\x57\x14\xb4\x79\xf9\xab\x06\x7a\xc1\x40\x5f\x53\xd0\xad\x2f\x69\x40\xe7\xba\x7b\x5e\x01\x5b\xe7\x39\xcd\xb4\x45\x65\x5f\x55\xd0\x8d\xaf\x69\xe0\x1b\x1a\x78\x49\x03\xdf\x56\xc0\xf5\xdf\x28\x60\xf3\xb2\xce\x74\xeb\xeb\x0a\xb8\xf3\x0f\x05\xdc\x7b\xf5\x3d\x05\x6d\xbd\xf8\xbc\x86\xce\xf3\xa6\x3b\xa2\xc1\xe7\x15\xb4\x79\xf9\x25\x05\xdd\xf8\x2f\x93\xf4\x6d\x03\x7d\xcf\x40\xe7\x0d\xa4\xf3\xdd\xd0\x1f\x6f\x7d\x4b\x01\x77\x7f\xa8\x81\x57\x14\x70\xef\xc2\x55\x05\xdd\xe6\x33\xd3\x11\xa7\xe6\x17\x35\xb4\x75\x9e\xaf\x15\x24\x3a\xf4\x82\x82\xae\xbf\xa1\x81\x37\x35\xf0\x5b\x05\x6c\x5e\xfb\xb2\x86\xae\xbe\x67\xd2\x5e\x30\xd0\x57\xcd\xd7\x77\x14\x74\xe3\xbc\x4e\xba\xfc\x03\x03\xbd\xa2\x3f\xea\xa4\x1b\x3a\xe5\xfa\xef\x4c\x0d\xd7\xf4\xb7\x9f\x2a\xe0\x8e\x6e\xe7\xce\xd7\x4c\xa6\x2b\xa6\x69\x9d\x76\xe7\x4d\xd3\xcc\x05\x5d\xc3\x8f\x4d\x52\x02\xe9\x5a\xef\xea\x82\x77\x75\xca\x6d\x5d\x6e\xeb\x3c\xef\x5f\x57\x20\xe7\x45\x05\x6d\x5e\xfe\x99\x82\x6e\xbd\xac\x80\x7b\x17\xfe\xa1\xa0\xad\xf3\x1c\xfd\xcb\xa2\xc0\xd7\x14\x74\xfb\x6d\x05\xdc\xb8\xa0\x80\xcd\xcb\xbf\xd0\x49\x3f\xd3\x80\x4e\xb9\xfd\x1b\x9d\xf2\x4b\x9d\xf2\x2b\x05\xdc\xfd\xb9\x02\xee\x5d\xd4\xb9\x37\xdf\xbe\xa2\xd3\x2e\xbc\xa7\xa0\xad\xf3\x1c\x97\x2b\xa2\x0f\x5f\x57\xd0\x8d\x5f\x29\x60\xf3\xf2\x2f\x0d\xf4\x1b\x05\xdd\xf9\x99\x49\x4a\xb2\xbd\x69\xa0\xdf\x69\xe8\xea\x0f\x75\x6d\xba\xe4\xd6\xa5\x37\x0c\xf4\x37\x05\xdd\xd5\x75\xdc\xe2\xb8\x5b\x59\x13\x3d\xe2\x02\x12\x16\x3d\xfa\x86\x82\xae\xff\x5e\x03\x7f\xd0\xc0\x1f\x15\x70\xe3\x4d\x0d\xfc\x4e\x03\x26\xcf\x9f\x14\xb0\x79\xd9\x40\xd7\x74\x95\xb7\xbf\xab\x80\x3b\x3a\xe5\xce\x4b\x26\x93\x86\x6e\x24\x35\xe8\x4a\xef\xbe\xa1\xbf\x5d\x52\xc0\xd6\x79\x4e\x26\x5f\x10\x1d\xfe\xa6\x82\x6e\xbc\xad\x80\xdb\x6f\x29\xe0\xee\x37\x14\xb0\x75\x9e\xef\x10\x67\x44\xf6\x97\x14\xb4\x79\xf9\x92\x82\x6e\xbf\x69\x92\xfe\xa2\xa0\x1b\x7f\x37\x49\x6f\x2b\xe8\xd6\x8f\x15\xb0\x75\xe9\xb7\x0a\xba\x77\xe1\xcb\x06\xfa\xaa\x81\x5e\xd0\xd0\xc5\x5f\xea\x12\xe7\x39\xe1\x86\xa2\xf9\x6f\x29\xe8\xe6\x97\x14\x70\xe3\xaa\x06\xde\x55\xc0\xe6\xe5\xbf\x1b\xe8\x8a\xfe\xf8\x0f\x93\xf4\x8e\x81\xae\xe9\xba\xde\xd3\xc0\x57\x14\x70\xeb\x27\x0a\xb8\xfb\x3b\x05\x6c\x5d\xfa\x85\x82\xee\x5d\xf8\x86\x86\x2e\x7e\xd9\xa4\x7d\x4d\x41\xb7\xc5\x47\x89\x34\x2e\x17\xae\x8a\x5e\x7f\x5b\x41\x9b\x97\xdf\xd3\xd0\x95\x2f\x1b\xe8\xab\x0a\xba\x7b\x49\x03\x7f\x52\xc0\xd6\x79\xbe\xa4\x88\xa8\xe3\x3b\x0a\xba\x7d\x45\x01\x37\x9f\x57\xc0\xf5\x4b\x0a\xd8\xbc\xf2\x82\xfe\xf6\x75\x93\xf4\x35\x9d\xf4\xa2\x49\x7a\xc9\x40\xdf\x50\xd0\xad\x8b\x0a\xb8\xfb\x67\x9d\x5d\x7f\xba\x77\xf1\x7b\x06\xfa\x95\xee\x03\x9f\x06\x22\x47\xc9\x4b\x46\xa2\x87\xff\xa5\xa0\xeb\x7f\xd6\xc0\x5f\x34\xf0\x57\x05\x6c\x5e\x3b\x6f\xa0\xef\x19\xe8\x15\x03\xfd\x40\x17\x78\x5b\x27\x5d\xf9\xb6\x82\xee\xfc\xc1\x24\xe9\x86\x6e\x7e\xdb\x24\x99\xca\xae\xe8\x06\x6e\xea\x5c\x77\xfe\xa4\x81\x4b\xba\xf6\xbf\xe9\x94\xdf\x99\x96\x4d\x9d\xba\xa6\xdb\x2f\xeb\x4c\xa6\x07\x3a\xcf\xad\x5f\x98\x62\x17\x0c\xf4\x53\x03\x25\x5f\x7f\x66\xa0\x5f\x1a\xc8\xf4\xf9\xda\x8f\x75\x4b\xba\x17\xb7\xf5\x10\xaf\x5f\xd6\x29\xef\x29\xe0\xee\xf7\x15\x70\xef\xc2\x4b\x06\xd2\x55\xdd\xd5\xd8\xba\x25\x9a\x11\x9c\x41\x40\x42\xe0\xb8\x20\xba\x1d\x89\xc9\xe2\x1d\xea\x89\xc9\xfa\xae\x82\x36\xaf\xfc\xc0\x40\xaf\x28\xe8\xd6\xaf\x74\xd2\xdb\xef\x28\xe8\xde\x85\xef\x19\xe8\xbc\x81\x74\xd1\xad\xf3\x9c\x75\x7f\x51\x54\xfc\x3d\x05\xdd\x7d\x49\x01\xf7\x2e\xbc\x62\xa0\x1f\x2b\x68\xeb\x3c\x47\x12\x15\x05\x5e\x56\xd0\xcd\x1f\x28\x60\xf3\xca\x8f\x75\x92\x06\xee\x7c\x4f\x03\xe7\x4d\xa6\x9f\x1a\xe8\x82\xce\xfe\x8a\x49\xfa\x99\x82\xee\x7e\x5b\x03\xef\x28\xe0\xde\x05\x5d\xf0\xde\xc5\xdf\x18\xe8\xab\x0a\xda\x3a\xcf\x25\xde\x58\x74\xec\xbc\x82\xae\xff\x4c\x01\x37\x7f\xaa\x80\xcd\x2b\xbf\xd2\x49\x17\x4c\xd2\x2f\x74\xd2\x2f\x4c\xd2\x6f\x0c\xf4\x4b\x03\xbd\xa9\xa0\x3b\x3f\xd6\xf9\x75\xf5\x77\xde\x53\xc0\xbd\x8b\x6f\x1a\xe8\x05\x5d\xf0\xaa\x6e\x7c\xeb\x3c\xaf\x8c\x89\x2e\x7e\x5f\x41\x9b\x57\x7e\xa7\xa1\xab\xaf\x28\xe8\xe6\xaf\xcc\xc7\x3f\x28\xe8\xce\x4f\xf5\xb7\x5f\x9a\x6f\x97\x0c\xf4\x27\xfd\xf1\x37\x0a\xb8\xa5\xcb\xfd\xbf\xaf\x2b\x60\xeb\xd2\xaf\x15\x74\xef\xe2\xd7\x34\xf4\x2a\xef\x2d\x93\xc2\x16\x97\xd4\xfb\xa2\x6b\x3f\x50\xd0\xf5\x2b\x1a\xb8\xaa\x81\x6b\x0a\xb8\xf9\xa6\x02\x36\xaf\xe8\x4c\x37\x7f\x67\x92\x4c\xae\x3f\xe8\x72\xff\x50\xc0\xed\x57\x35\xf0\x23\x0d\xfc\x50\x03\x3f\xd1\xe5\xaf\xfd\x46\x97\xff\x93\x06\x2e\xe9\x4c\xdf\x57\xc0\x1d\xdd\xc9\x3b\xaf\x28\xe0\xd6\x5b\xa6\xbc\xe9\xc9\x35\xd3\xcd\x6b\x7f\x32\xd0\x1f\x0c\x74\xc9\x40\xbf\x32\x7d\xff\x8b\x6e\xf2\x2f\x26\xe9\xef\x06\x7a\x5b\x41\xff\xef\x1b\x0a\xd8\x3a\xcf\x4b\xae\x09\xb4\xfd\x50\x41\x9b\x57\xde\x31\xd0\x7b\x0a\xfa\x7f\x2f\x29\xe0\xde\x85\x9f\xe9\xa4\x6f\x99\x24\x4e\x76\x6b\xf2\x04\xc1\x27\xe9\xac\xa8\xee\x15\x05\x6d\x5e\xfd\xb2\x81\xbe\xaa\xa0\x9b\x6f\x9b\xa4\xaf\x19\xe8\x05\x03\xfd\xc8\x40\xdf\x50\xd0\xd6\xa5\xbf\x68\xe8\x3c\xc7\xee\x39\xd1\xc4\x8f\x14\xb4\x79\xf5\x25\x03\x7d\x5b\x41\x5b\xe7\xb9\xec\xb1\x2e\xf2\xfd\x58\x41\x9b\xd7\xfe\xa2\xa0\xeb\xef\x28\xe0\xe6\xdf\xcd\xb7\x2b\x0a\xba\xa3\x33\x6d\x5e\xfd\x2f\x9d\xfd\x3d\x93\xcb\xe4\xbf\x9a\xd4\xfa\xb6\x82\x6e\xfd\x55\x01\x77\xff\xcb\x7c\xd3\x25\xb7\xce\xf3\xb9\x7c\x4e\xf4\xe7\x27\x0a\xba\x79\x55\x01\x9b\x57\xbf\xa7\x93\xfe\xa1\x81\x77\xcd\xb7\xf3\x06\xfa\x81\x82\x6e\xfd\x4d\x01\x77\x7e\xa5\x80\xbb\x5f\x52\xc0\xd6\xa5\xdf\x2b\xe8\xde\x85\x5f\x2a\xe8\x7d\xbe\x01\xbf\xff\x3d\x0e\xf1\xe5\xf4\xfe\x0f\x38\xc4\x51\xfb\xfe\x2b\x1c\xe2\x72\xd8\xfb\x3f\xe6\xd0\x6f\x0d\xc4\x27\xf7\xfd\x9f\x71\x88\xef\xfe\xef\xff\x8a\x43\xbf\x33\x10\x1f\xde\xfb\x6f\x72\x88\x37\xf6\xfe\x25\x0e\x71\xb2\x7c\xff\x6d\x0e\x71\x69\xf3\xfd\xbf\x73\x88\x13\xed\xfb\x57\x1c\xe8\xfc\xf7\x37\x35\xf4\xfe\x77\x4d\x9a\x68\xe3\x3d\x0e\xf1\x49\xfb\xef\x17\x38\xf4\x92\x86\xde\x7f\xcb\xa4\xf1\x9e\xfe\xf7\x37\x38\xc4\xa5\xa4\xff\xfe\xaa\x93\x37\xb2\xa3\x28\x8e\xc2\x35\x44\xe7\xba\x28\x60\x7d\x8a\x62\x07\x36\x2d\x73\xba\xb4\x35\xdd\xe8\xd2\xfa\xbd\x59\x2e\x40\xbe\xc9\xa1\x81\x78\x4e\xd8\x65\xe2\xf6\xf8\xe0\xf8\xdb\xb6\xde\x18\x59\xc0\xf8\x00\xde\x40\xa4\xbf\x2a\x43\xec\x36\x66\x6b\xb0\xd8\x66\x91\x69\x0b\x88\x22\xe3\xcc\xdc\x60\xfe\xfd\x46\x6c\x06\x33\xd7\x8e\x08\x0b\x30\x41\xb4\xda\x41\x4b\xfd\xe5\x6a\xd0\x09\x7a\x6c\xbb\x28\x99\xd3\x3e\x58\xc7\x20\xc6\x36\xba\x84\x2c\xb1\xe9\x63\x9e\x70\x7e\xe4\x12\x74\xb6\x74\x12\x2d\x1f\x3d\xd7\x73\x9d\xcf\xcf\x2d\x38\x15\x5a\x71\xe6\x5c\xaf\x02\xe6\x9c\x0a\xaa\x38\x1f\x53\xf6\x71\xa4\x1f\x86\xb3\xbe\x9f\xd8\x64\x36\xeb\xad\x6d\x1b\x09\xcd\xc8\xa6\xa5\xcd\xd7\x61\x8d\x81\x23\x1c\x01\x87\xe4\xf8\xad\x70\xcd\xc4\x43\xe7\x18\x22\x1d\x77\x63\x51\xda\x0d\x9f\x14\x6e\x7e\xe9\x7a\x43\xd8\x96\x63\x82\x53\xf3\xc1\x56\x70\xec\x2d\xc6\xfd\x1e\xa2\x5e\xd0\xeb\x85\xeb\x2e\x4f\x81\xc6\x26\x0e\x40\x99\x23\x5d\xd7\x60\xe0\x16\x25\xfb\x1c\x2b\xcc\x3b\x9e\x4a\x04\x43\xd8\x0e\xc8\xe1\x80\x05\x61\xb4\x7c\x94\x30\x8a\x51\xfc\xd8\xfa\xe9\xf5\x1e\x6a\xe4\x4d\xa9\x9c\xd5\xa8\x83\x42\xc7\xf7\x7d\x34\x18\x4c\xec\x1b\xaf\x79\x42\xb5\xda\xe2\x8c\xf9\x45\x1d\xf6\x12\xd3\xea\xd8\x05\x90\x58\xc6\x7f\x58\x16\x20\xfc\x53\x2f\x68\x23\x95\xf5\x69\x8a\xba\xf8\x1c\x8c\xfc\x1a\x0c\x7c\xa6\x8c\x0b\xe7\xa3\x83\x41\x62\x8f\x1a\xfb\x4c\x99\x9d\x56\xeb\xb3\xbe\x1f\x1b\x3b\x25\x04\xb4\x75\x26\x27\xaa\x18\x66\x1a\xe8\x45\x9d\xe3\x56\x1b\x83\x01\x06\x33\xfd\xc1\xc0\xed\xfb\xb1\x17\xf7\x42\xcc\x5c\x54\x71\xe2\x39\x07\x78\xbd\xa8\xe7\x02\x00\x89\x17\x74\x3a\x2a\xec\x79\x1f\x98\x90\xe0\x64\x9b\x6b\x6a\x32\x1b\x55\x26\xe1\x3c\x7f\xb5\x1b\xb4\x59\x44\xd7\x47\x65\x5a\x0d\xce\xa0\x6a\x07\x0b\xfc\x07\x74\x3d\xb3\xc8\xf8\x3a\x2a\x5e\x66\x62\xb2\x24\xf6\x83\x38\x46\x94\xb9\xce\xff\xb5\x31\xfe\x7f\x4b\xab\xfd\x98\x95\x96\x50\xc9\x98\xa0\x8f\x99\x1f\xa0\xc2\xcc\x8b\x2c\x5d\x4c\x14\x62\xf9\x3c\xbb\x48\x2c\xcc\x64\x41\x0b\xb2\x10\x6f\xe0\xdb\xec\x88\x5c\x44\x47\x05\x22\x5c\x0a\x65\x5e\x63\xf4\x46\x40\x12\x66\x5d\x85\x58\x2f\x1d\x3d\xd7\x13\x86\x72\x25\x16\x95\x78\x4b\x8d\xd2\x3e\xa7\x82\xbc\x6e\x3f\x0c\x79\x73\x15\x67\x5f\xe9\x2c\x66\x2b\x98\xf0\x74\xca\x7f\x2e\xf5\x59\x69\x39\x62\xa5\x7d\xc6\x9c\x7e\x9f\x57\x3a\x82\x3b\xa5\xf5\xa8\x5f\xea\x46\x74\x19\x89\x48\xed\xfb\xe4\x74\x94\xd4\xc2\xce\x56\xb3\xe0\x00\x6d\x94\x27\x86\x10\xaf\x44\xfd\xb0\xf3\x59\x1a\xf4\x8e\x49\x2f\x9a\x8f\xcb\x89\x72\x09\x14\x51\xea\x89\xef\xd6\xa0\x61\xbb\xc0\x25\x9c\x80\x86\x76\x0d\x72\xa5\xb9\x68\x47\x56\x8c\xe9\x35\xaf\x02\xeb\xc3\xc4\xe0\x5e\x7a\x71\xfe\x42\xec\x21\xb9\x54\xcb\x65\x37\x97\x66\xe5\x5a\x44\xc1\x99\xc5\x18\x21\x22\x67\x12\xfb\xb9\x16\x2c\x1e\x66\x99\x57\x33\xb0\xe1\xa6\xb9\x3a\xee\xba\xb3\x6e\x12\xde\x3e\xea\x96\x18\x00\x85\xd1\xf2\x0f\x07\x84\x44\xac\xd4\x0e\xc2\xb0\x14\x94\x04\xb5\x97\x82\xb8\x14\x18\xf3\x6d\x07\x0c\x81\x64\x41\x48\xb3\x45\xdd\x73\x36\x18\xe4\x86\xa3\x91\x8b\xbc\x1e\x8d\x58\xc4\xd6\x7b\xc8\xe6\x37\x7e\x7e\x57\x54\x78\x3f\x83\xd6\x63\x37\x55\x3f\x18\x42\xbb\x96\x95\x20\x2e\x7a\x20\xc1\x47\x59\x4a\x95\x4b\x17\x5b\x46\x85\xef\x2a\x54\xc7\xf9\xc4\x43\x34\x74\x01\x8c\x14\x1b\x3c\x25\x1e\xd8\xc2\xc0\x8f\x3c\x4e\xaa\x34\x6e\x47\x14\xc1\xd8\x8f\x3c\xc9\x3a\xba\xeb\xb0\xef\x47\x5e\x27\x88\x57\x10\xc5\xcf\x21\x18\x26\x06\xd3\xb0\xad\x60\xb5\xa4\x4e\x2a\x36\x61\x76\x27\xc5\x37\x4e\xb0\x15\x44\x1b\x04\xf6\x02\x1a\xcb\x27\x2e\x76\x0f\xf9\xe4\x71\xf2\x41\x9e\xf8\xde\xe1\x19\xf4\x56\x8a\x66\x24\x5f\x57\xa4\x46\x35\x40\x34\x20\xcc\x58\x05\xdf\x74\xfe\xa7\x23\x16\xb2\xb3\x82\xc2\x1e\xa2\x8d\xff\xa9\x5c\xd4\x56\xe5\x6f\x67\xd6\xf7\x51\xb9\xbc\xdf\xf7\x7d\xac\x38\xba\x7e\x0f\x81\x9b\xb5\x96\xae\xa4\x21\x2b\xe1\xd9\x22\x9d\x8d\xf9\x51\xb3\xde\x82\xd4\x8f\x9a\xb5\x16\x24\x3e\x6e\xd6\x5b\x33\xc2\x12\x5e\xbd\x4c\x68\xd6\x53\xe5\x99\xa8\x11\x52\x3f\x90\xf9\x03\x2e\x0f\x38\xfa\x05\x0f\xdf\xf7\x68\xb9\xcc\x47\xcc\xbc\x30\x88\xa5\x91\xef\x89\xae\xeb\x58\x2f\x7b\x1c\x58\x93\xeb\x39\x95\x58\x21\x90\xf9\xcc\x8b\x43\xdc\x46\x6e\xbd\x0e\x80\x34\xd0\xa6\xbe\x6b\xa1\xa1\xe1\x00\x60\xf5\x53\xee\x45\x04\xb6\xfd\x50\x92\xb5\x63\xb8\xa9\x61\x2e\x1b\x09\xe2\xb9\x34\xa7\xd9\x5a\x03\xc1\x9e\xe0\xb4\x0d\xa6\xf6\x69\xf9\xd3\xdd\xe0\x94\xd6\xa0\x43\x00\x25\x60\x4a\x7c\x16\xb3\x95\xa8\x2f\xfc\xe4\x37\xfa\x90\x37\xd4\x20\x90\x46\x11\x6b\xb4\xa1\xa2\x85\xe3\x88\xad\x44\xb2\x29\x47\x25\x39\x95\xd8\xa5\x60\x38\xd4\x59\x4e\x2b\x4c\x71\x8a\x09\xfb\x54\x38\x04\xeb\xf0\x3a\x63\x29\xde\x14\x89\x3c\x7c\x4b\x3a\x1d\x49\x62\x6e\x14\xda\x16\x8f\xd9\x49\x2a\xce\xff\x74\x2a\xac\xe2\x34\x9c\x21\x1c\xc5\x62\xf3\xf2\xed\x6c\x7d\x38\x4e\xd2\x72\x15\xfb\x90\x0d\x3d\x16\xc4\xa8\xa3\xd7\x87\x3f\x5b\xdb\xb6\xc4\x85\x35\x37\x22\x11\x5d\x15\x28\x39\x1c\xb4\x57\x10\x67\xf8\x34\x61\xf8\x2a\x53\x06\x6d\x7e\x51\xe2\x60\x30\x4d\x51\xaf\x1d\x91\x2e\x5e\xd6\x3d\x2b\xfe\xca\xa9\x94\xff\x75\x74\x1f\x3b\xa8\x47\x51\x3b\x60\xa8\xf3\x74\x5a\xde\xf1\x39\xd2\xcc\x08\x0a\x64\xc3\x52\xd1\x20\x85\xe5\xbd\x3b\xe2\x8b\x9f\x49\xe7\x12\xd8\x10\x2e\x16\x37\xa2\xad\xe2\xad\xd5\x6a\x0e\x2b\xea\x0d\x49\x7d\x41\x71\x10\xbe\x50\x59\xb3\xd6\x5a\xe0\xff\x71\xe2\xa8\x30\xbe\xd0\xcd\xb3\x81\xc5\xb9\x65\xe8\x54\x1d\xd0\x30\xdf\xfb\x6e\x3a\xc7\xb3\x1e\xcf\x32\xe7\x00\xd0\x40\xc3\x84\x96\x47\x0e\x3b\x83\x5d\x6b\xd8\xf9\x2f\x3e\x97\x13\x1d\x30\x84\xbd\xa8\x23\x88\xeb\xc9\x28\x3a\xd3\xef\xf1\x15\x28\x51\x9d\x59\x05\x4a\x56\xf2\x0a\x96\xaa\x42\x41\x8a\x43\x31\x8f\x2f\x6d\xbe\x81\xfb\x34\x19\xd0\xe7\x13\x6e\xf4\xec\xdc\x1c\x74\x1c\x00\x20\xaa\x38\x73\xf2\x64\xe4\x54\x64\xa9\xa4\x4f\x89\x44\x56\x30\x0b\x93\x24\xe3\x31\x0b\x36\x25\x14\x8d\x42\x80\xcb\x20\xb2\xf0\x63\xde\x87\xc6\xc7\xc8\xa9\xfe\x52\x07\xd3\x5d\xee\x13\xee\xba\xac\xe2\x3b\xd6\x03\x4d\xc7\x7e\xb2\x2a\x76\x38\x8e\x9e\xc1\xc0\xc6\xe3\x9c\xc7\x50\xcc\x5c\x54\x34\x31\x00\x6c\x63\x9c\x8a\x79\x1e\x25\xcb\x98\x14\x13\x7d\x41\x0b\x15\x67\x0e\x89\x02\x8e\xe8\x7e\xd1\xe9\x69\x25\x88\x5d\x96\xee\x49\xb1\x24\xcd\x92\x4e\x9c\x8c\xfa\x0c\x1d\x0f\x7a\xd3\x76\x03\x52\x9f\x55\x9c\x39\xca\x8b\xc5\xe3\xbb\x42\xc1\x34\x42\xbd\x59\xd6\xe9\xd3\xc6\xe9\x15\x54\x12\x8d\x94\x56\x83\x1e\x17\xc3\x4b\x82\xef\x97\x24\xd3\xe7\x07\x8f\xb3\x34\xe8\xf5\x50\xa7\xb4\xb4\x5e\xda\x27\xc2\x40\x88\xa1\xc4\xfb\x4a\xd2\xc9\x60\x49\xca\xeb\x98\x2c\x7b\x0e\x24\x1e\x8e\xf5\x48\xb9\x9c\x3d\x84\xab\x01\x26\x63\x69\x1e\xa9\x2d\x54\xac\x16\x49\x0e\x42\x66\xe1\x05\x25\x85\x14\x91\x81\xc6\xfd\x10\xea\x47\x34\xc5\x6d\x58\xb2\xa8\x69\x24\xcd\x3e\x5c\xd9\x26\x50\xed\x17\x34\x36\xd4\x7b\xfe\xc4\xc5\x31\x72\x41\x9a\x2c\x4d\xd9\x5a\xc5\x91\x99\x9c\x56\xb9\xec\x66\xab\xc9\xe5\x01\x90\x0d\x61\x22\x42\x4b\x6a\x7f\x3a\x60\x0c\x51\x12\x37\x32\xef\x83\x73\x9b\x72\x33\xb5\x54\x12\x3c\xc1\x54\x7a\x9e\x17\xa8\xbd\x3a\x35\x7f\x32\x2d\x87\xf2\xd6\x10\x78\x14\x05\x9d\x13\x24\x5c\x77\x01\x4c\x9f\x3c\x33\x5c\x57\x6b\x26\xd4\x29\x75\x19\x31\xd7\x19\x35\x36\x07\xd8\x62\x6d\x0d\x46\x3e\xd5\xaa\x07\x7c\x30\x4a\x1e\xf0\x06\x3e\x6d\xe2\x96\xc7\x8f\x30\xfa\xa0\xc2\x69\x28\x28\x97\xdd\x40\x36\xd3\x5e\x89\xa2\x18\x59\xc7\xe1\x00\x22\x00\x60\x50\x2e\x8f\x5c\x56\x81\x14\x37\x03\x00\xb5\xac\xb7\x18\x46\xcb\xb2\x83\xfc\x74\x09\x03\x00\x13\x05\xd7\x70\x08\xb3\x6d\x14\x6f\x37\xbc\x7b\xc4\x0f\xd4\x79\x1c\xcd\xfa\x3e\x19\xd3\x09\x7e\x86\x1d\xf9\x91\x8c\x38\xd1\x1d\x5a\x5d\xc2\xcb\xfd\xa8\x1f\x97\x64\xa1\x92\x20\x2d\x79\x42\xe7\x27\xf1\x80\x74\x38\x4c\x2a\xce\x3e\x29\xdb\x8f\x69\x3e\x39\x76\x8c\xcb\x47\x40\xf2\x4c\x58\x1f\x5c\x93\x3d\x7f\xae\xea\x36\x3f\xff\xec\x5c\xeb\x3f\xc0\xc7\xe6\xa0\x33\xb7\xf8\xb1\xfa\x84\x66\xb1\xa9\x4e\x12\xb7\x11\x9e\xdc\x7d\x12\xbd\xb1\xe6\x4f\xe2\xe4\x2a\x55\x83\xa5\xe4\xb0\x16\x7b\xa5\x43\x8c\xef\xdd\x4a\x41\x11\x8a\x49\x2b\x39\xfb\x2a\xa8\xb2\xcf\x29\x9d\x5d\xc1\xed\x95\xd2\xd9\x20\x16\xc5\xbb\x51\x9f\x74\xbc\xd2\xd3\x21\x0a\xf8\xc9\x01\x71\x64\xf1\xac\x98\x67\x65\x91\x29\xc5\x8f\xd2\x28\xe8\x78\xfb\xe0\x6c\x1d\x0a\x07\x2a\x69\x4d\x90\x75\x58\xec\x54\xe5\xa0\x62\x07\xf6\x09\xc3\x61\xc3\x39\xe0\xd5\xbc\x9a\x33\x04\x10\xcf\xc8\x21\xd1\x3e\x39\x46\x84\x2e\xd3\x5e\xb1\xc9\x61\xcd\x96\x38\xe6\x9a\x41\xf5\xb9\x56\xa5\x79\xa8\xfa\xb9\x56\x45\xef\x8e\x00\x6c\x50\x6f\xb1\x1d\xac\xa2\xf0\x70\x10\xa3\x27\x44\xa9\xcf\x06\x94\xc8\x53\x4b\xec\x8f\xfd\x3a\x18\x34\x5b\x33\xb3\xee\xd8\x3c\x46\x81\x97\x88\x48\xe0\xd1\x6a\x1d\x94\xcb\xb4\x70\xd6\xfa\xbc\x53\x5c\x3e\x1a\x5b\xa9\x78\x2e\x6b\xd5\x08\x25\x3e\xce\x06\x94\xb8\xfb\x46\xcc\x5a\x92\x7d\xe4\xf4\x1d\x23\xa5\x1e\x45\x6b\x98\x53\xfd\x1a\xa2\x31\x8e\x48\x5c\x8a\xba\xa5\xf4\x1c\xc1\x52\x50\x5a\xea\x2f\x97\xce\x0a\xe2\x59\x09\xd6\x50\xa9\x1d\xf4\x63\xde\xde\x0a\xd2\xab\x25\x60\xbc\x4d\x3e\x1a\x45\x01\x4b\x9c\x2c\x38\x39\xa2\x8e\xd8\x21\x39\xdd\x96\xc4\x10\x4b\x6d\x4e\x33\x72\xc6\xc4\x2a\xf3\x4a\xa7\xf9\xc7\x95\x20\x2e\x2d\x21\x44\x4a\x5d\x7c\x0e\x75\xbc\xd2\x67\x62\x24\x5a\x30\x3a\x83\x8e\xc8\xcd\x2b\x57\x5d\xb3\x3b\xc0\x56\x02\x66\x77\x51\xd4\x64\x7a\x80\x0b\x46\x3a\x9a\x28\x45\x37\x79\x2f\xd5\xa1\x5f\xf8\xed\xca\xd3\x25\x18\x0e\xc1\x10\x4a\x8c\xcb\x58\x69\xf2\xcd\xf9\x88\x2d\xcf\xa8\x2d\x38\x1b\xb3\x37\xba\x8c\xd2\x91\xc1\xd9\x1a\x3f\x7a\x18\xc6\xd9\xc8\xaa\x45\xcd\xa3\xee\xa3\x4f\x3d\xe3\x3d\x79\xe2\x53\x8b\xc7\x4f\x1c\xf9\xcc\x93\x47\x17\x4f\x1e\x3d\x75\xe2\xc9\x67\x8e\x9e\x1c\x0c\x98\xc7\x8f\xcb\xe2\x9b\x4e\xd4\xf2\x4e\xa2\xf1\x58\x70\x9a\x5b\xaf\x9e\x6f\x39\x0d\xa7\x59\x6a\x39\x33\xc4\x12\xeb\xf5\x29\xe6\xe3\xb5\x05\xc7\x73\x1a\x9c\x57\x1e\xa2\x34\x58\x77\x3f\x5e\xab\xe6\x72\x01\xef\x0b\x11\x26\xae\xe3\x39\x00\xd2\xc1\xc0\x55\xbb\x54\x0e\x31\x5c\xfe\x53\x94\xfb\x64\x24\x9c\x8c\x60\xd2\x8d\x5c\x0c\x93\x1a\x21\x81\xe2\x08\x7f\x86\x44\x67\xc9\xe3\x11\xbd\x5f\x1d\x7d\xf6\x6c\x2a\x37\x44\x36\x62\x43\x64\x4d\xdc\x82\xea\x98\xcb\x68\x40\x62\x7e\x8c\x39\x1d\x99\x6b\x94\xc7\xfb\x61\x48\xc4\x04\xc2\x00\xcc\xc4\x7c\xab\x6b\xc6\x2d\x9f\x4f\x97\xd9\xd2\xe0\xb8\x82\x23\x77\xb7\xb4\x4a\x04\x0d\x79\xdf\xc5\x59\x08\x62\x5f\xc8\x58\xa2\xd7\x9a\xb7\x10\x20\x2e\x14\xf4\x4f\xf9\xcc\x5f\xbc\xb4\x2e\x97\x03\xa9\x10\x12\xe3\xab\x6a\x15\x55\xb9\x6c\xce\xa5\x44\x01\x15\xa3\xbe\xd2\x9b\x95\x3c\x9b\x2a\xb5\x50\x54\xd1\x19\xf9\x50\xe5\x55\x05\x2d\x94\x04\x85\x10\xa8\xe9\x59\xaa\xa3\xcc\x63\x6b\x60\x35\xac\xbd\x2b\x2c\xa4\x1b\xd2\xc9\x40\xbb\x6a\x80\x85\xb2\x78\xc1\xa2\x32\xba\x48\xe9\x09\x49\xfc\x37\x5b\x4b\x96\x16\x6f\x5b\x4d\xbd\x14\x18\x0d\x21\x40\x36\x1c\x82\x99\xb6\x47\x51\xd4\x43\x52\x3d\xe3\x6e\x14\x28\x58\xb2\x8e\x66\xda\xa3\xaf\x4a\x0a\xaf\x3d\x3e\x78\xc7\x37\x1b\x6d\x8a\x02\x66\xd1\x99\x51\x5c\x39\x46\x33\xed\xfb\x9c\xc8\x38\x9b\x57\x0a\xd6\x05\x0d\xb8\x0c\x34\xd0\x70\x38\xe6\x12\xbe\xf8\xe2\xe6\x83\x1b\xa8\x9c\x7b\xe4\xab\xba\xe4\x68\xc5\xcd\xa9\x99\x77\xe4\x2d\xf2\xae\xf9\x82\x1e\x3a\x28\x44\x0c\xe9\x34\x88\xf2\x43\x63\xe8\x1c\xab\xae\xa2\x20\xee\x53\x44\xe7\x62\x44\xd7\x70\x1b\xc5\x73\xa9\xe4\xbd\x1f\xa0\x52\xa2\xcb\xd6\x8d\xde\x7b\x87\x17\xb0\xed\x80\xac\x05\xb1\xdf\x89\xda\x22\x59\x61\xe9\x68\x28\x3c\x62\xb9\x8e\xfc\xac\x95\x6c\x6d\x76\xce\xb7\x4a\xf1\xb3\x05\x67\x5b\xe8\x1c\x73\x9d\xfd\x1d\x07\x0c\xe1\x59\xdc\x61\x2b\x05\xeb\x2f\xe7\x36\xa5\x5e\xe8\x36\xa5\xde\x5a\xb0\x7f\x08\x3d\xab\xb5\x46\x5d\xdd\x0b\xaf\x1b\x11\xe6\xb3\xa4\x5b\x9e\x42\xff\x69\xde\x17\x04\x3c\xd1\x8f\x21\x0c\x31\x41\x71\x21\x23\xcd\x75\x68\x7f\x61\x87\xf6\xdb\x1d\xda\xaf\x3b\x94\xeb\x09\x05\xc6\x9d\x0e\x31\xaa\xbe\xb9\x67\xc9\x1c\xdf\x45\x0c\x73\x94\x5e\x87\x88\xb9\xdc\x4d\x36\x13\xa2\x2e\x76\x1d\x87\xb7\x9e\xec\x5c\xb1\x1f\x68\xbd\x61\x49\x3a\x88\x81\xa1\x5f\x9b\x0f\x0f\xea\x6e\x57\xeb\xf3\xa1\xae\xa6\xed\x17\x62\x23\x6e\x86\xad\x0a\x2f\x2e\x91\x32\xef\xf6\x2b\x7e\x1b\x3c\xca\xd1\x89\x2b\x15\xd8\xf7\xdb\x60\x28\x7d\x9c\x8c\x2c\x6e\x17\xed\xd8\x45\x3b\xc9\xed\x30\x1e\xc2\x2e\x66\xbc\xc8\xa9\xb4\xbe\x71\x57\x70\x0e\x95\xee\x45\xf4\x43\xf8\x42\xd2\x17\xe9\x7a\x0e\x94\xfd\xc4\xdc\xb3\x9d\xca\x1c\x68\xd6\x5a\x9a\x6c\x84\x03\x98\x6e\x18\x45\xd4\x15\x42\xd5\xe3\x61\x14\x30\x17\x83\xff\x60\x73\x04\x14\xdd\x68\x33\xda\x67\x2b\x4a\x98\x8b\xe7\xf4\x5f\xe9\x8f\x2f\x77\x95\x9d\xce\x2c\x39\x9e\x4c\x6b\x47\x64\x0d\x51\x36\xbd\x35\x88\x7d\x72\xaf\x41\x4e\x46\x8a\x4e\xe8\x41\x32\x4f\x2b\x15\x80\xbb\xee\x6c\xdd\xf7\x33\xf7\xad\xa8\x49\x5b\xc9\x21\xb2\x49\xcd\xc0\x51\x13\x19\x22\xd9\xbe\x6d\x08\x44\x5e\x40\x3a\xc2\x57\x4c\xc6\xd7\xa5\x18\xab\x27\x87\xec\xd2\x69\xf1\x87\xbe\xd8\x0f\xc2\xfb\x70\x73\x56\x42\xcd\x5a\xcb\xf7\x7d\xb4\x13\x43\x17\x88\x3c\xd1\xbe\xf0\x85\x33\x6e\x38\x6c\xda\xe1\x2c\x4f\x1b\x32\xde\x1e\x4b\xb2\x12\x90\xbc\x2d\xe3\x83\x49\x2e\x03\xba\x11\x6d\xa3\xa7\xfa\xbc\xd5\x72\xd9\x75\x88\x80\x9c\x59\xbd\x03\x53\xa1\x19\x97\xdf\x5d\x0a\x00\xcc\xe5\x20\x42\x9f\xa2\x72\x10\x00\x00\xa4\x8f\x92\x9d\x20\x6b\x99\xed\x26\xa6\xa6\x75\xde\xfb\x61\xa3\xca\xdf\x21\xae\xd0\xee\x21\x0b\xc7\xd5\x80\x1f\x9d\x76\xb4\x50\x92\xe3\x4e\x4d\xb8\x5e\x52\xec\x83\x1d\xa4\xf3\xcc\x62\x1f\xb2\x83\x38\x96\x67\x34\xd4\x64\x86\x7d\xcc\xd6\x15\x86\x67\x6b\x3b\x73\x38\x25\xaa\xdc\x55\x6c\xec\x9c\x6d\x28\xb9\xdf\x45\x70\x3f\x3f\x20\x31\x4e\x46\xd8\x67\x16\x19\x69\x44\x1c\xe5\x6d\xb8\x04\xe2\x1d\xba\xd9\x3a\x2a\x59\x8b\x32\x0d\xca\x5b\x5f\xe4\xec\x46\x04\x9a\x92\x19\x48\xab\x00\x4f\x09\x0f\xc1\x1e\x66\x88\x06\x2c\xa2\x25\xac\xcd\x37\xac\x8c\x45\x9b\x6b\x93\xaf\x92\x59\x7e\x56\x9f\xad\xc3\x48\x9d\xdc\x67\x18\x5d\x4f\x9c\xa3\xc1\xd8\x47\xcd\x4c\xfd\x2d\x17\xcc\xcf\xba\xc4\x77\x03\x3f\xf6\x08\xdf\xf0\x01\xf0\x3a\x11\x41\x52\xd1\x24\x94\x49\x81\x27\x46\x0c\xe0\x2c\x1b\x0c\xb4\x82\x78\xd6\xf7\x19\x98\xe7\x4d\x82\xf9\x61\x5b\xec\xbd\x08\x6c\x60\xde\x85\xc8\x47\xc3\x2e\x26\x41\x18\xae\x6f\xf0\x0e\xcc\x92\x72\x39\xf6\x64\xdf\x13\xc8\x05\x26\x13\xe6\xe7\x52\xa9\x69\x8d\x8c\x40\x41\x87\x62\x78\x33\x85\x1a\x58\x15\x3e\xbe\x14\x48\x7d\x56\x89\x45\xa5\x0e\x8a\x19\xed\xb7\x59\x9f\xa2\x12\x89\x48\x55\x8c\x70\x29\x4c\x4c\x74\x1c\x30\x1c\xba\x60\x66\x97\x88\x33\xfc\x27\xd9\x01\x0e\xee\x88\xab\x85\xd3\xed\x00\x33\xd3\x61\xea\x9f\x64\x07\x38\xb8\xb3\x1d\x20\xdc\xcd\x1d\x80\x44\xec\x3e\x98\x9e\x25\x2b\xcd\xee\x5c\x56\x22\x11\x13\x3c\x4d\x0e\x61\x57\xc7\xf6\x51\x90\xa1\x6b\x63\x65\xe8\xfb\xdc\x04\x49\xc4\x76\x4f\x68\x8e\x0a\x0d\xd0\x3f\x5a\xf8\xda\xdd\x33\x47\x44\x77\x0f\x7b\xe7\x3e\x00\xf4\xa9\xad\x2c\x83\x9d\x5a\x0b\xcc\xe6\x71\x56\x6f\xed\x48\xc0\x38\xb7\x1b\x38\x29\x1a\xe6\x07\xaa\x72\x54\xb6\x08\xe5\x72\xca\xf5\x2d\x8e\x4f\xf3\x2e\xad\x1b\x9b\x28\x67\x29\x8a\x42\x14\x58\x8a\x47\xb6\xc0\x1a\x19\x91\x15\x2c\xd4\x66\xfd\x62\x1f\xba\x8d\xd9\xd9\x02\xbd\xdd\xd9\x88\xae\xae\x44\x21\xb2\x1d\x99\xa7\xbf\x14\x11\x8a\x29\x55\xe8\x08\x3d\x5b\x3e\x5b\x48\x62\xbc\x13\xad\x4e\x32\x55\xbf\xcf\x57\x1b\xaa\x43\x10\xfb\x69\x3b\x05\x63\x6d\x1b\x2d\xc5\x88\xae\x21\x6a\x5c\x10\xd3\x3e\x29\x7c\xd7\x11\x06\xeb\x51\x9f\x35\x0c\xcd\x42\x16\x35\xb0\x17\x84\x38\x88\x5d\x87\x4b\x57\x98\x04\x7c\x14\x4a\x39\x78\xac\xe3\x70\x3c\xe7\x93\x1b\x4a\x9b\x9a\xfd\xd2\xc0\x23\xaa\x81\x0e\x45\xa4\x83\xe8\x31\x22\xc2\x94\x3a\x30\x7d\x61\x9b\x98\x31\xa4\xb3\x65\x0d\x84\x64\x7d\x33\x52\xe9\x9b\x14\x2a\xee\xb9\xe1\x58\x0b\xe2\xda\xa7\x8b\x49\x47\x7d\x7d\x6c\xfd\x58\x07\xa8\xab\xf3\x4e\xb4\x0a\x11\x10\x03\x1a\x02\x98\x6a\xbe\x31\x5b\xdf\xf1\xa3\x97\x4e\xb4\x2a\x6f\x9b\x96\x11\x3b\x72\xe2\xb8\x6c\x4d\x7f\xd4\x14\xf4\x04\x0a\x3a\x4f\x45\x1d\x35\x14\x5e\x46\x29\x67\x4f\xa3\x73\x8c\x7f\x70\x1d\x27\x5b\xe6\x74\x80\xc3\x69\xcb\x74\x70\xe7\x18\x89\x11\x65\xc2\x40\xf2\x2c\x0e\xc3\x93\x62\x7c\x8d\x9c\x02\x9d\xe7\x9f\x99\x7a\x6c\xba\x5a\x63\x3e\x69\x35\x54\x83\x81\x17\xb7\x57\x10\x27\x6a\x57\x06\x95\x96\x8d\x66\xe7\x7c\x96\x1f\xac\x8e\x70\x89\x3e\x5a\x47\x1d\x91\x84\xcc\x14\xfb\x28\x8f\x25\xaf\x17\x50\x44\xc4\x18\xe1\x6c\x92\x35\xff\xb0\xe2\xf4\x0a\x2a\xad\xa0\xa0\x53\x22\x51\x07\x95\xa2\x6e\x29\x28\xe9\xba\xcc\x53\x90\x80\xb1\x80\xf7\x92\x1f\x2b\xd8\x0a\x2a\x1d\x39\x71\xdc\xe1\x07\x87\xc5\xa0\xd7\x43\xa4\x73\x3a\x3a\x92\xd0\x94\x0b\x86\x43\x00\x24\x02\x55\x87\x35\xbd\xef\x12\x22\xfd\xd9\xfa\x8c\x7d\x8d\x99\x1d\x3a\xa4\x7e\x31\x15\xcc\xd8\xc8\xa6\x79\x3c\x23\x6f\x91\xa2\xd5\x68\x0d\x9d\x0c\xc8\x32\x12\x11\x0d\x86\x60\x08\x17\xad\x15\x73\x04\x77\x0e\xaf\xf0\xaf\x8d\xa8\x68\x25\xa5\xaa\x1b\xb7\xe4\x1c\xbe\x21\x16\x77\xdf\x9a\xb9\x72\xb9\xa8\xc7\xd2\x84\xbc\x08\xf7\x0e\xdf\xf6\x8a\x3e\x14\xa3\x7e\x74\xe7\x84\x27\xf5\xf4\x0d\xfc\x38\xde\xc1\x99\x52\x9e\xb2\xd2\x1b\x40\xa9\x1b\xe0\x50\x92\x90\x1c\x48\x09\x13\x16\x95\xf6\xfd\x0f\x61\xfe\xb7\xaf\xb4\x84\x84\x61\x84\xa0\x2f\x45\xac\x25\x2c\x2d\x2e\xc4\x6b\x0b\x4d\x75\xdb\x6e\x46\xbd\x41\x48\x35\x50\x34\x0e\x61\xe0\x11\xcb\x37\x41\x81\x34\xee\x11\x8f\x86\x4a\x11\x2d\x75\x83\x30\x5e\x2f\x89\x3d\xc7\x73\xe4\xf5\x00\x31\x1c\xeb\x50\x9b\xe1\x35\x7d\x45\x04\x5c\xa0\x28\x5a\x4e\x83\x24\x25\x34\x82\x97\x8d\x60\x57\xfa\x31\xce\xc8\x16\x48\xb9\x8c\xa5\x21\x17\xf1\x44\x30\x6a\x97\xd3\xa9\xd5\x62\xce\xec\x81\xcb\xb5\xf3\x6c\x1e\x20\x0f\x8b\x45\xf4\x98\xb0\xa5\x74\x99\xb8\xfa\x05\x90\xf9\x6c\xd6\xf7\xe9\x02\xb5\xa8\xcf\xeb\x62\x1a\xb3\xc3\x2b\x38\x94\x5b\xd8\x10\xda\xcb\xa3\xf8\x3a\x7e\xa6\x13\x29\x53\x09\xea\x69\xa3\x91\x53\x78\x29\xc4\x64\x59\xbc\x06\x4b\x11\x77\xea\xa7\x27\xeb\x16\xcd\xb9\x14\x40\xea\xfb\x3e\x02\x60\x89\xa2\xe0\xcc\x0c\xf5\xc9\xf0\xec\x0a\x0e\x91\x78\xa4\x90\x17\xee\xb6\x27\x9a\xec\x65\x8c\xab\xe8\x91\xd5\x43\x87\x8f\x1f\xfe\xe2\x76\x63\x5c\xa9\xf0\x3a\x7d\xb2\x14\xf5\xad\x50\x47\x39\x8a\xb1\x42\x43\xe9\xa8\x39\x2a\xc2\xdd\xa4\x1a\x34\x71\xe5\x6a\xd8\x4e\x40\x9c\xed\x20\x7a\x64\x18\x9c\x02\x99\xf0\xfe\xf4\xbb\xcd\x96\x50\xf0\x26\xf4\x3a\x4f\xe7\x01\x93\xca\x3a\x41\x4a\x54\xa8\xf2\x34\x21\x1a\x5b\xde\x9d\xa8\xb7\x33\xab\x31\xaf\xdf\x74\x92\xe8\x3d\x46\x68\xd7\xd7\xc9\x0b\x1c\xef\x0d\x73\xb9\x1c\xd8\x35\x0d\x45\x88\x81\x94\xd8\x65\x7b\xe8\xa7\x6a\xd3\x5f\x46\xcc\x16\xcc\xcc\xc5\x7d\x3a\xdd\x4d\xdd\xc0\x72\x74\x41\xac\x74\xa0\xf3\xe6\xc2\x55\xd4\xe8\x62\x9f\x78\xf1\x0a\xee\x0a\x4d\x27\x1f\x1e\x63\x14\x2f\xf5\x19\x2a\x97\x71\xea\xb7\xeb\xe0\x8e\x03\xec\x10\x2d\x78\x86\xd7\x8d\x81\x27\x43\x30\xbb\x04\x0c\x87\x12\x47\x47\x4e\x1c\x1f\x11\x0a\x81\xf3\x64\x44\xc5\x06\xc3\x84\x44\xa6\x6d\xab\xe8\x02\x3f\x41\x36\x90\x67\xde\x9e\xcb\xbb\x62\x69\xff\xea\x28\xeb\x82\x46\x55\x63\x4f\xee\x3b\x38\xe9\x0b\xb3\x72\xeb\x76\x78\xf6\x55\x07\x0c\xf9\x0e\x25\x5a\x2b\x97\xe5\x5f\x4f\x57\x63\x84\xe6\x74\xf2\xc4\x7d\xa6\x6d\xcc\x41\x97\x11\x93\x7b\xd3\x50\xa9\xbc\xcd\x49\xec\xc4\x59\x82\x68\x8e\xfc\x3b\x01\x0b\xe6\xaa\x3d\x8a\xd7\x02\x56\x78\xd0\xc2\xa4\x1b\xa2\x36\xe3\xc7\x75\xbb\x88\xb2\xbd\xdb\xce\x53\x5f\xeb\xed\xd5\x63\xda\xe0\x63\xa3\x47\xa3\x55\x1c\x23\x75\x8a\x3c\x79\xea\x99\xa7\xbd\xa7\x65\x92\xa7\x6c\x55\x44\xc1\x61\x26\xdc\x4e\x52\xd5\x13\xf7\x53\x55\x64\xe9\xe5\x32\x52\x09\x53\x2b\xd3\x65\xd6\x61\x56\x4a\x3b\x6a\x13\x77\x00\x68\xa2\x96\x16\x13\xed\x17\xea\x76\x10\x14\x25\xe3\xe8\xda\x90\xaa\xed\xf1\xa3\x87\x4e\x7f\xe6\xe4\xd1\x53\xc0\xc3\xf1\x51\x22\xe2\x95\xa8\x9a\x90\x5d\x93\x1d\xae\x84\x0f\x9a\x49\x6d\xbf\x30\xce\x8a\x28\x5e\xc6\x24\x08\x9f\xe1\x29\x0b\x6e\x62\x21\x13\xe8\x45\x12\x37\x99\x30\xac\x6f\x41\xe4\xc5\xfc\x18\xe9\xf4\x14\x5f\xf9\x6c\x10\x9f\x44\x31\x62\x0e\x94\x39\x00\x68\xa8\xaa\x67\x45\xd5\x61\x47\xd4\x5a\x2e\xeb\x82\x4b\xa8\x1d\xad\xa2\x23\x98\xb2\x75\x87\xb3\x9e\x7e\xaf\x13\x30\x74\x12\xb5\x23\xda\x11\x27\x7f\xbe\xeb\x9b\xde\xf6\x93\x65\xb6\x31\x34\xaf\x34\x13\x26\xc0\xa5\x28\x04\xa8\x8f\x9a\xa4\x05\x59\x93\xb4\x7c\x5a\x2e\x3b\x32\x84\x4e\xc2\xa8\xe8\x42\xdf\xa5\xa0\x41\x13\x1e\x69\x1a\x08\x33\xe6\xf4\x42\x2c\x03\xa8\x49\x5b\x3e\xb3\x55\x5e\x49\x89\xb6\x35\xd5\xa1\xdb\x77\x9f\x01\xd0\x8e\xe1\xd4\xe1\x9f\x91\x34\x16\xc4\x3c\xe5\xb4\x90\xa9\x39\x4a\x3b\x5e\x1c\xac\x89\x90\x45\x1a\x19\x98\xac\x45\x67\xd0\x93\xb8\x8b\xda\xeb\xed\x10\x1d\x56\xd1\xd2\x52\x71\xbb\x7a\xbc\xc2\xe4\xe7\x8a\x5e\x1e\x2e\xf2\x43\x97\x2d\xa4\xed\x9e\x18\x68\x6c\x0c\x21\x02\x40\xc9\x20\xa7\xf8\x76\x2c\x74\xbb\x62\x63\xe6\x9b\x9e\x4f\xb3\xe8\x43\xd9\x68\x3e\x04\x94\xcb\x8e\x55\x81\x23\xa5\x32\xc7\xd4\xa1\x13\xb2\x88\xe6\xd3\x50\x2e\xbb\xfc\x8f\xbf\x22\xfe\x40\x04\x69\xc5\xf1\x9c\x0a\x01\xa0\x00\x99\xdd\x5c\x84\x36\xf9\xd2\x32\x79\x16\x9c\x0a\x90\xb5\x9a\xc4\x30\x53\x94\xa0\xaf\x91\xcc\x13\x28\xe4\x9d\x41\xeb\x62\xef\x3f\x1e\x90\x75\xf9\xf4\xe5\x0c\x26\x1d\x71\x55\xc0\xbc\x18\x93\xe5\x7e\x18\x88\x9a\xbb\x2e\x15\x37\x02\x49\xfd\xeb\x12\xb9\x90\xc8\x56\xb0\x4f\x06\x83\x66\xcb\x28\x59\xc4\xca\x85\x0e\x45\xa1\x10\xb2\xe3\x15\xdc\x8b\xd5\xb1\x22\x4a\x38\xb6\x34\xf6\x89\xa4\xd2\xca\x13\x2e\x29\x84\x89\xb6\x0a\xb5\xe3\x66\x77\x10\xe1\x16\x04\xb1\xe0\xf1\x88\x26\xbb\xb5\x5c\x4c\x2a\x5e\x4f\xac\x95\xd5\xc4\xc3\x84\x33\x4c\x34\x18\x70\x49\xd2\xfc\x1c\x1a\xdc\x06\x7c\x7f\xe3\x22\x82\x62\x02\x18\x06\x82\xdc\xf8\x41\x54\xd8\x22\x96\xcb\xbc\xf6\xe4\xb7\x18\x2f\x06\x10\x27\x58\x58\xbe\x6f\x8b\x2e\x47\x79\x16\x29\xf1\xe1\x04\x72\xa6\xc5\x09\xc6\x91\xc7\x08\x1c\xab\x0c\x62\x17\xe2\x82\xa8\xb2\x5e\xe6\x3f\xad\x07\x28\xda\xf6\x0b\xf1\xf4\xd8\x47\x83\x41\x73\x83\x61\x16\xa2\xa4\x05\x51\xc4\x81\x1d\xc4\x02\x1c\x36\xd8\xb0\x95\x8c\x63\x69\x0c\x53\xf6\xdd\xdc\xd0\x6a\x85\x43\xab\xd9\x43\xab\xb5\x1a\x1b\x43\xe0\xa9\x30\xb5\x26\xac\x91\xdc\x0e\x92\x86\xd7\xec\xd3\x83\x69\x59\x90\x15\xb2\x46\x47\x21\x19\x0c\x18\x18\x1a\x22\x4e\x5e\xdb\x67\xcc\x19\xad\x77\xf8\x00\xea\x57\xf0\xfe\x92\x10\x03\x93\x66\x17\xd3\xca\xa9\x8f\xb5\x23\x22\x2f\x4b\x23\x6a\xf3\xd4\xb3\x69\x31\x33\x8b\x07\x48\x7d\xa9\x81\x65\x8f\xd6\x17\x58\xb5\xde\xa8\x01\x48\xfc\xfa\x3c\x39\xc8\xe6\x49\xa5\x02\x68\x93\x54\xeb\x2d\x0b\x43\xa4\x95\x8d\x54\x67\xc5\x53\x54\x64\xa8\x9f\xd9\xdb\x58\x3a\x9a\xba\xfe\xf3\xd4\x35\xb1\xfd\x8e\x83\xb9\x60\x30\x70\x29\x1f\xcf\x52\xdc\xa6\x78\x09\x51\xdd\x4b\xbf\x06\x12\xa2\xb7\x70\x70\xce\x8a\x99\xe8\x66\xb4\xd0\x46\xd3\xe4\x80\xc1\xa0\xf8\x1b\x26\xcb\x0e\xb0\x70\x75\x22\xfb\xda\x4a\xdf\x7c\x40\x62\x6c\xaa\x21\x4e\x02\x91\xf1\x39\x86\x91\xb4\x34\x0d\xfc\xda\x7c\x70\x10\xcf\x07\xf2\x86\x05\x35\x83\x16\xdf\x13\x9b\x41\x0b\x6c\x44\x7e\x30\x23\x0e\x81\x43\x9e\x55\xda\x69\x93\x59\xf1\x7e\xdf\x8d\x7c\xac\xed\xab\x6b\xb0\xef\xd7\x2c\x4f\x40\x56\x10\xb4\xd0\xc7\xd5\x08\xb6\xfd\xfa\x7c\xfb\xa0\x8f\xe7\xdb\xba\x11\x5a\x6d\xcb\x66\x48\xb5\xdd\x02\x1b\xa1\xdf\xae\xd6\x55\x53\xb1\x4f\xaa\x61\x35\x82\x7d\x9f\xf2\xbf\xea\x0a\x7e\x43\x1d\x30\xf8\xf1\x57\x78\x0c\x68\x44\x30\xe8\x74\x50\xe7\x70\xd4\x27\xac\x11\x43\x79\x84\x55\x3f\xfb\xd6\x04\x1e\x4a\xf8\x44\x9a\x1b\xa7\x45\xc5\x05\x96\x91\x1d\x33\x02\xb1\x30\xc5\xb6\x7e\x03\x28\x0c\xb5\xa5\xd0\xab\x1e\xc9\x97\xcb\x5c\xae\xce\x24\xb9\xd9\xa4\x9c\x55\x70\x22\x2c\x31\x90\xae\xb0\x48\x46\x82\xcc\xa3\xe2\xd9\x00\xa2\x79\xfb\x62\xfd\x8d\xae\x0f\x06\xcc\x5b\xb4\x7e\x24\x66\xc6\xba\x74\x51\xe5\x00\x5a\x52\xc7\x29\x8b\x33\x1d\x56\xaf\xd0\xc5\xdf\xe4\x05\xb9\x97\xa2\xc3\xa7\xa5\x54\x81\x09\x43\x94\x04\xe1\x71\xbe\xa9\x1c\xc1\x9d\x23\x68\x35\x60\x88\x62\x69\x78\xcf\x19\xfd\xa2\xda\x11\x8e\xc5\xa7\xd6\x49\xdb\x05\x7c\x37\x56\x4a\x88\x43\x61\x78\xcc\x2e\x1f\x3f\x4e\xa3\xd5\x13\x67\x89\x28\x67\xb2\x1c\x0e\x48\x44\x70\x3b\x18\x95\xd7\xea\xd4\x19\xbd\x5b\x42\x11\x97\xd2\xa0\xc1\xbc\x90\x3f\x89\xe2\x5e\x44\x62\xa1\x74\x54\xb9\x92\xd2\x87\xb3\xae\xb1\x62\x3d\x10\x9a\x8b\x17\x27\xaf\xf1\x91\x95\xe5\xf1\x48\xde\xf8\x6b\x17\x59\x16\xef\x26\x83\x81\x4b\xfc\x0d\xf5\x66\x20\xa7\x33\x32\x3c\x63\x08\x20\x49\xba\x73\x32\x19\x8c\x76\xdf\xa1\xdd\x39\x61\xe0\x49\x41\xcd\x75\x24\x3f\x3e\x45\x82\x5e\xbc\x12\x31\x47\xbe\xba\x10\x5b\xbc\xec\x10\x8c\x25\x27\xeb\x70\xe1\x83\xcb\xf2\x90\xc0\x08\xc0\xbe\xef\x1c\x39\xd5\x28\x3d\x11\x90\x4e\x88\x4a\x6a\xeb\xfa\x1f\x3a\x5f\x29\xea\x6a\xbf\x3c\x4e\xca\x63\x50\x9c\x57\x3f\x2a\x97\x65\xa6\x8d\xe4\x41\x93\x39\xa0\x43\xf9\xb2\xea\x6c\x20\x1e\x36\xad\x97\x42\x7c\x06\x85\xeb\xa5\xa0\xb4\x8a\x63\x16\x9c\x49\xbc\x73\x94\x74\x88\xca\xc2\x23\x4e\x0c\xfb\x00\xba\xb1\x7f\xd4\x8d\xe1\x59\xf7\x1c\x64\x00\x80\xff\x8f\xbd\x3f\xed\x72\x1b\xb7\x16\x85\xe1\xef\xfa\x15\x2a\xde\x5c\x85\xb8\x05\xcb\xaa\xce\x39\x6b\x9d\x2b\x9b\xa9\xe5\xf6\x90\x76\xe2\xa1\x63\xbb\xd3\x49\x14\x9d\xba\xb4\x08\x55\xa1\xad\x22\x15\x10\xb2\x5d\x29\xf1\xbf\xbf\x0b\x1b\xf3\x40\x4a\xe5\x76\xe7\xe4\x5d\x79\xbe\xd8\x25\x12\xc4\xb0\xb1\xb1\xb1\xe7\x3d\xe5\x57\xa4\xb6\x14\xda\xb0\x49\x1f\xf2\xc7\x39\xc7\xe0\xb0\x2b\xd7\x0c\x04\x30\xd3\x93\x74\x93\x21\x5c\x80\xfe\x82\xa2\x4e\xb5\x11\x70\x79\x2a\xb7\x6a\xbc\x2d\x6f\x36\x4d\x59\x09\x78\x64\xa7\xcc\xc1\x95\x97\xf1\xe6\xf8\x60\x17\xdb\xb0\x25\xe4\xc3\xa3\xcd\x46\xee\x42\x39\xbd\xf0\xf7\x2a\xa7\x62\x1b\xe4\xe6\x88\x56\x1c\x37\xb8\x96\x85\x21\xfb\xf6\xe6\xd1\x66\x23\xa7\xd2\xe8\xe9\xef\x86\x00\xb6\xc3\x1b\x84\xf3\x5d\xf1\x34\xdf\xdd\x0d\x60\x8d\x07\xb0\x47\x9b\x4d\x0a\x5e\x98\x83\xb1\xe0\x07\x10\x97\xd4\x32\xcb\x03\x40\xd4\x8b\xf8\xd5\xad\xe1\x42\x3b\x57\xb4\xf8\xc9\x21\x43\xea\x1e\x22\xfb\xbd\x41\x3f\xb2\xdf\x67\xc0\x40\x4b\x05\x4f\xd6\x02\x6b\xee\x70\xfb\xe7\x64\x9e\x65\xa7\x0e\x3b\xff\xce\xde\x08\xa9\x78\x0c\x4f\xca\x22\x48\x08\x58\x85\xeb\x58\xe0\x50\xc8\x27\x92\xe0\x55\xf2\x5a\x76\xd9\x97\x57\x3e\xdb\x60\xa2\x2b\x35\xcc\x20\x6d\x1a\x03\xba\x27\x48\xe9\x8a\xe4\x0c\x9f\x21\x88\xa0\x33\x7d\x3c\x0f\xaf\xf5\xa4\x5b\xc4\xad\x98\x9b\x20\xf5\x56\x36\x9d\x96\x55\x95\x7b\xbc\xde\x33\x4f\x89\x50\xe7\x24\xd8\x72\x37\x7a\xfe\x92\x70\x29\xe8\xe6\x70\x1f\x38\x13\x7a\x61\x05\x0f\x37\x8d\x13\x9b\x7a\xb2\x06\x9a\xae\x1b\xf6\xb4\x5c\x5d\xd9\xee\x9d\xf3\x70\xe1\xb5\x15\x84\xa4\x51\x61\xc0\xfb\xbd\x4f\x04\xdd\x73\x14\x0c\xb1\xa8\x97\xd3\xaa\xe4\xa5\x27\xd4\x28\xd3\x54\x59\xd0\x05\xb7\x02\xcd\x72\x54\xee\xf7\x79\xf8\xd0\x15\x95\x40\x24\xc3\x99\xba\x92\x5e\x96\xdb\x0c\x69\xce\xa6\x14\x6c\xa3\x47\xeb\x26\x93\xbc\x55\xb1\xba\x5a\xac\x11\x87\xbb\x86\x08\xf3\x93\xd6\x9f\xca\xae\x90\x91\xfe\xa3\xc8\xd1\xb2\x41\x2e\x8f\x34\x7b\xb0\x79\xa8\xd3\x2d\x3d\x38\x3d\xdd\xe8\x18\x0a\xb8\x28\xbd\xfb\xad\x61\x79\xb3\xd8\x2c\x65\x16\x03\x59\x9e\x5a\xfc\xa4\x15\xc8\x77\xab\xc9\x64\x15\x00\x58\x06\xeb\x1a\x87\xa2\x59\x67\x92\xf7\xc8\x38\x8b\xf4\x10\x6e\xff\xd0\xb9\x42\x8e\x6a\x32\xa9\xd2\x03\x74\x6a\xcf\x28\xae\x91\x89\xd3\x0f\x36\x8d\x2e\x47\x52\xde\xa4\x48\x39\x73\xe2\x93\x33\xb0\x29\x18\x0c\xfb\x87\x8b\x89\x93\x09\x99\x4a\x3c\x2b\x0a\x75\x52\xcf\x89\x0e\xb7\x63\x85\x49\xc7\x49\xeb\x31\x3b\x37\xe1\x92\x73\x06\xb0\xff\x4e\x5f\x8c\x02\xde\xdf\xb3\xe6\xf3\x8d\x76\x2e\x90\xcf\x15\x5d\x84\x37\x2f\xe9\x67\x5a\xe3\x5b\x50\xbc\xfb\x9e\x0b\x90\xe9\xa0\xcd\xb5\x0e\x0c\x24\x60\xb0\xf4\x7d\xab\xba\x97\xd3\x3a\xa6\x7f\x84\xff\x5e\x7c\xe7\xa4\x06\x13\xe4\x2f\x95\x35\x14\x12\xdd\x11\x0e\xca\x2b\xd1\x83\x4a\x02\x08\x36\x40\xa3\x8a\x9b\xca\xef\x73\x24\x45\xcf\x0e\x4b\x0a\x26\xcf\xed\xbc\xd1\x2c\x80\xfc\x9d\x21\xdc\xd4\xe2\x61\x53\xc3\x9f\x44\xfe\x4d\x32\x84\x55\xd5\x7c\xf1\x40\xfd\x29\x5a\xac\xd7\xd0\x62\xbd\xce\x10\xbe\x2a\x5b\xf1\xe3\xaa\x6c\x61\xdd\x3f\x1c\x00\xeb\xd3\x8f\xa4\xe6\xa4\xc2\xb7\x9a\xcb\x94\x37\x16\x6b\x23\x0e\x47\xca\x80\x61\x33\xf5\x16\xec\x5d\xc7\x74\xd0\xd4\xa0\xac\x2b\xaf\x89\x72\xc3\xcd\x30\x31\x02\xb9\x7d\xf9\x27\xfd\x4a\x74\x2d\xe5\xf4\x6f\x6f\x8c\x76\x1d\xac\x2c\x87\x52\x6b\x28\x79\xe1\x65\x09\xb9\x67\x54\x90\xa7\xd1\xc6\x2a\xe4\x03\x35\x62\x62\x57\x4d\xce\x4d\x69\x93\x91\x33\x78\xd6\xb0\x54\xfe\x92\x50\xff\x9a\x9c\x6e\x26\x4f\x27\x41\x1d\x56\x72\x7e\x98\x1c\x64\x7a\x5d\x6e\xbf\xbd\xb1\x38\x83\x33\xd5\x30\x43\x58\x3d\x3b\x76\xcd\x8f\xe0\x26\xd8\xd5\x10\xdd\xac\xb5\x3f\x7d\xe1\xe2\x66\x6d\x4e\xb8\xb8\x71\x6f\xbf\xde\xf2\x9b\x9c\x23\x79\x55\xf3\x0e\xab\x47\xe1\xd4\xeb\x86\xe7\xc6\x8f\xca\xcd\x36\x52\x56\x55\xd2\xf8\x19\xc2\x4c\xf5\x9b\x19\x83\x70\x55\x41\x73\xcc\x26\x93\x93\xde\xc6\x2a\xfd\x86\x3a\x09\x21\x62\x81\x99\x37\x1a\x5f\x7b\x42\x08\x2e\xe6\x35\x7b\x0c\xe8\xf0\x52\xed\x48\x6e\x51\xd1\x64\x31\x6d\x73\xae\x83\xc9\x8f\xdd\xe2\xe0\x63\x99\x40\xa6\xe1\x74\x7d\xa3\xf7\x42\xca\xc5\x80\x0d\xc9\x89\x0c\xa7\x65\x71\x77\xcc\xe4\x87\xbd\x2e\x3f\x10\xa5\x61\x81\xc0\x41\x13\x49\xaf\x4d\x58\xe8\x40\x0c\x21\x6e\x0b\x29\x00\x08\x24\xd4\xa8\x87\x4b\x34\xa2\x8b\x66\x59\xb4\xfb\xfd\xad\x51\xdc\xcf\x89\x46\xe2\x79\xe9\x06\xf1\x49\x71\xcf\x43\xb4\xde\xbd\x33\x2e\x3e\xf2\xa3\x9c\xc4\x50\x3e\xb0\xcf\x92\x46\x20\x64\x6c\xed\x51\x9a\xc6\xde\x0e\xbd\x03\xc0\x88\xd8\x2a\xb1\x6a\xb3\xc0\x0c\x13\xa4\x72\x81\xb4\x91\x5d\x05\xdf\x01\x21\xa4\x8a\x3e\x27\xc3\x58\x30\xf0\xd2\x9c\xaa\xae\xc3\xab\x0d\x29\x3d\x17\xab\xc3\xc0\x85\x4f\x74\xae\xbc\x7e\xf8\x45\x3d\x1f\x01\x3d\x12\x1d\xe2\x1e\x20\x60\x6e\x53\x18\x8f\x48\xcc\x6c\x82\xbd\xd6\x58\xa0\xc1\x72\x6c\xa6\x9d\x68\xad\x2e\x92\xde\x03\x25\xfd\xe1\xa2\x5b\xcf\xa6\x1c\x85\xce\xad\xc2\x54\x40\x56\x5c\x9a\x31\x65\x3f\x09\xc8\x60\x78\xf6\xc4\xe5\x80\xff\x54\x40\xf8\x34\x2d\x37\x60\xd4\x98\x67\xbb\x7a\xd5\x5c\x5f\x53\xce\x49\x95\x61\xda\x82\x4d\x6a\x7e\x32\xc3\xce\xf3\xf9\x6d\x45\xab\xb7\x84\x1b\xd2\xdc\x62\xc1\x1d\xd0\xfa\xf2\x49\xc9\x4b\x77\x1f\x3a\x1c\x9a\xc4\x02\xd2\x00\x56\x16\xb9\xfa\xca\xc0\xbd\xcd\xd1\x7e\xaf\xad\x41\xac\xd9\x6c\x48\xf5\x6d\xb9\xfa\x00\xe9\xf7\x76\xed\x15\xa9\xfc\x61\x40\x26\x92\x16\xb3\x44\x4f\x78\x68\x08\xdf\x20\x25\x16\x61\xed\x51\x1d\x76\xac\x72\xfe\xa2\x3e\xd1\xcd\xe6\x31\x40\x23\x98\x85\xdf\x1f\xad\x9f\x41\xfd\xff\x0c\x52\xb5\x89\xde\x15\xc3\x14\x90\x74\x21\x94\xf1\x86\x81\x4f\x9a\x6d\x25\x33\x2b\xda\xe5\x0f\x0e\x95\x98\xba\xbd\x4a\x0e\x4c\xd2\x5c\x37\x62\xac\xf7\xf1\x48\xfa\x71\x00\x55\x75\x1c\x5f\x94\x5c\x9c\x49\x71\x69\xde\xc0\x31\xd7\xab\x9e\xdf\xd2\xf6\x6d\xf9\x91\xd6\x97\x02\x7d\x22\x8c\xe9\x05\x6e\x6a\x8b\xc5\xf3\x5d\xed\x40\x70\x9b\xdc\x03\xd1\xac\xa2\xd5\x11\x5b\x73\xb4\xcd\x51\x65\x25\x13\xd3\x84\xe4\x70\x5f\x04\xda\x63\x4c\x9b\xaa\x5f\xd0\x68\x0d\xf6\xea\x1e\xd0\x78\x1f\x9c\x5e\xc4\x2d\x00\xfb\x21\x67\x7a\x4b\x5b\x20\x99\xf3\x93\x33\x95\xef\x21\xc2\xc6\x7e\x1b\xad\x37\x68\x17\xee\x66\x78\xa6\xe5\x7d\x06\x93\x50\x2c\xc1\x33\xd6\x5c\x5b\xef\x12\x65\x15\xc7\x8a\x63\x81\x13\x0a\xad\xe1\x58\x02\xc4\x1d\x1a\x9f\x0f\x40\x5d\xec\xf8\x9d\x31\xa9\xf7\xf8\x02\x69\x75\xa7\xad\x31\xbd\xf7\x54\xf7\x9d\xce\xa3\x7a\xf2\x0f\x6d\xef\x91\xc2\x0e\x2c\x8e\xc7\x0c\xd8\xf8\x24\xb2\x45\x7d\xc4\xf8\x63\x85\x1b\xd4\x75\x1d\xfe\xb1\x58\xe5\xb7\xe6\x0c\xcc\x95\xb4\x07\xf7\xc3\x2b\xf2\x49\xba\xe6\xff\x38\x55\x88\x36\xb5\x40\x29\x8e\x41\x2d\x43\xb3\x7e\x74\xb1\xec\x4b\x7b\x01\x61\xfc\x2f\xc1\x7c\xe5\xe5\x50\x65\x30\x4d\x77\x10\xf7\x1c\x14\x15\xb6\x6b\x88\x5e\x84\x53\x7b\x1f\x4e\xec\x4f\xc9\x26\x3d\x6e\xce\x77\x84\x85\x45\xe4\x41\x58\x28\x7c\x52\xab\x9d\x0e\x13\x8a\x8a\x56\x2f\x9a\x32\x35\x58\x70\x63\x17\xde\xd9\xf9\x8b\x01\x91\x83\x95\xc7\xcc\xca\x2c\x4d\xf4\x20\x4f\xd0\xd4\x25\xe9\xc5\x16\xff\xa5\x7f\x6f\xee\x4e\xa3\x00\x11\xfe\x50\x5c\xe5\xb7\x5a\xe8\x3b\x39\xc3\xb4\x7d\x21\x19\x15\xfb\x83\x54\xf2\x6f\xc5\xe8\x88\x3f\xf5\xad\x05\x8f\x65\xe7\xf2\x07\x20\xbb\xf8\x43\x11\xd2\x59\x92\x00\x44\x97\x95\x3b\xf9\x21\x8e\x48\xbc\x25\x30\x55\x3b\xe7\x59\x9a\xb5\x52\x84\xf6\x42\xbd\x54\xda\x1f\xf0\x69\x89\xa1\x0f\xf6\xdb\x0e\xcb\x8d\x48\xf0\x4e\xc9\xfd\x52\x67\xfc\x00\x16\x19\x1a\xd5\xcb\x98\xdd\x89\xe4\x19\xa4\x1c\xe0\x2f\xd4\x8a\x04\x8c\xcc\x66\xce\x30\xf9\x1c\x51\xf3\x10\x38\xd2\xb1\xf9\x9f\x34\x51\x4c\xa6\x82\x13\xd9\x90\xb2\x96\x46\xaa\x03\x37\xfc\xd0\x1d\x8e\xeb\x86\x3f\x6b\x76\xf5\x30\xf5\x27\x52\xba\xe9\xf4\x46\xcf\x03\xc6\x5e\x2e\xc5\xc1\xfa\x1e\xd4\x12\x58\x08\x6d\xe7\xb7\x2d\xe1\xbb\x6d\x30\x68\x9a\x99\x9e\x4c\xc8\x54\x59\xe1\x9e\xd0\x0a\xce\x52\x1e\xf3\x09\x6d\xef\x95\x9c\xbc\xc3\x53\x57\x5c\x8a\xb6\x1d\xcd\x90\xeb\xaf\xbf\x06\x63\xfe\x73\x59\xa8\x01\x0a\x91\x60\x61\xc5\xe3\x18\x0b\xd0\x6d\xa7\x55\xb1\xd5\xfc\x47\xac\x96\x37\xff\x8b\x9e\x5d\x84\x03\x9e\x70\xe7\x5c\x90\xaa\x79\xe6\x12\xbc\x99\x87\x2a\x8e\x24\x98\xc2\x8a\xa4\xc3\xa2\x2f\x33\x7e\x89\xd0\xf4\x15\x04\x92\xbb\xa1\x1c\x80\x3f\xb9\xb3\xe2\xcd\x17\x09\x63\x77\x16\x95\xfe\x67\x04\x9d\x5f\x4c\x02\xf9\x42\x81\xe9\x20\x5b\xaa\x89\x94\x73\x75\xa7\x30\x53\xca\x22\x42\xfe\x78\x2e\xed\x67\x6f\x5c\x23\x51\xfe\xa5\x7c\x72\x45\x2b\x79\x52\xc4\x64\x52\xd7\x83\xdc\x1b\x09\x81\x3b\x6c\x21\x1c\xe9\xa4\xc8\xf6\xff\x17\x22\x57\xff\xd9\xe9\x83\xc1\xbf\xb2\x08\xd5\x1d\x85\x1c\x10\x27\xaf\x45\xa2\xa2\x28\xf8\x79\x0a\x1d\xe0\xbd\x40\x87\x79\xe2\xad\x74\x60\x38\x02\x95\xb4\x6f\x03\x6b\xc0\xd1\xe6\x77\x45\xbf\x49\x05\x92\x17\xc8\xd7\x1c\x62\xe0\x2e\x27\x13\x78\xf6\xbb\xe9\xc5\xaa\x5c\x5d\x91\xf2\xfd\x86\x4c\x26\xb9\xfb\xb3\x38\x39\x43\x2a\x8a\x18\xdc\x6b\x12\x26\xa8\x43\xb6\xa7\xc5\xb2\xeb\xfc\xbc\xbd\xa4\x5c\x5d\x3d\x56\x13\x34\xbe\xbc\xe6\x3b\x9d\xa9\x97\x4d\x69\xeb\x1e\x4d\x74\xcb\xa6\x1f\xc8\x4d\xc1\x47\xe0\x22\x90\x5f\xe7\x0c\x29\x3b\xee\x2d\xe4\x88\xe5\xf8\x03\xad\xab\x39\x03\x47\xe6\x0e\x94\x99\xc4\xcf\x15\xff\xab\x2f\x81\xce\xaf\x7c\xe8\xfc\x2a\x0d\x1d\xe5\xba\xe9\xaa\x86\x8f\x5f\x32\x78\x34\xd4\xc1\x7a\x27\x93\xbc\x86\x05\x33\x4c\x8a\xeb\xbc\x46\x98\x4f\x69\xbd\xda\xec\x2a\xd2\xe6\x44\x9c\x51\xb9\x78\xc1\x7c\x20\xcc\xfd\x95\xfe\x71\x60\xa5\xae\xb2\xfb\x65\xb9\xd5\x26\xc4\xaf\xbb\x47\xd2\x5d\x2d\xd6\x41\xdf\x7e\x20\x37\x73\xe9\x7d\x0e\xbb\x25\xdd\xce\x65\x21\xa3\xeb\x9c\x20\xac\x7c\xb9\xe7\x44\x7b\x75\xcb\x3a\x46\xd2\xd5\x1b\x4b\x77\x7b\xe0\x51\x74\xb0\x2c\x14\xb0\xf0\xa7\x31\x3f\x99\x75\x5d\xce\xd0\xa8\x06\x47\x82\x42\xa0\x0a\x5c\x78\x3c\xe7\xb8\x4e\x61\xc6\x5f\x43\x78\x65\xab\x1d\xb3\x9e\xfd\xf8\xa0\x99\x34\x70\x63\x98\xba\x9f\x8b\x73\xea\x8d\xf6\x67\xcf\x78\xdf\x63\xc0\xf6\x3b\x94\x89\x04\x80\xf9\x94\x7f\x5e\x5c\x48\x47\xb6\x57\x4d\xfd\xd4\x16\x03\x0d\xcd\x0a\x0b\x09\xb7\x65\x01\x4e\x42\x90\x50\xba\x61\x32\xf2\xc4\x1a\x3f\xff\xea\x88\xc1\x7f\xb5\x4c\xde\x5f\xf1\x55\x29\xaf\x52\xcb\x57\x85\x16\x5b\x0f\x4c\x53\x75\xf3\x7a\x91\xd0\x2e\x52\x49\x1f\x82\xd4\x17\x02\x85\x0d\xcb\xf3\x57\x87\xeb\xfc\xab\x92\xb2\xff\x6a\x84\xec\xbf\x3a\x7c\xaa\x78\x2a\xd9\x13\x90\xc2\xdf\x90\x8d\x23\xcd\xab\xe4\x0b\xee\x78\xf3\x3f\x4c\x41\x2a\x52\x06\xf0\x01\xfb\xb3\x3c\x24\x3f\x44\x87\x83\x24\x5c\x06\x12\xfb\x1f\xc5\x82\x9b\xb0\x1e\xdf\xa0\x3b\xd4\x4c\xd9\xb3\x62\x64\x2d\x9d\xa8\x00\x85\x17\xda\xe3\xb3\xbf\xa4\x53\x80\x9e\xbe\xd7\x1f\xb2\x3e\xa3\xd2\xe6\xd4\xfc\xfe\xed\xeb\x57\x7d\x16\x76\x29\x02\xf9\x5e\xa6\xd9\x3d\xed\x0d\x83\x4c\x0c\xfe\xf0\x90\xd6\x79\xcf\x8e\xcd\x54\x29\x9d\xb2\x52\x75\xc5\x94\x58\x6d\x7e\xc8\x7b\xd1\xfc\x94\x97\xa8\xf9\x29\x91\x46\xfe\xf4\x99\x15\xe7\x91\x03\x36\x87\xd5\x50\x60\xac\x43\x91\x6f\x00\x86\xb0\x57\x10\xd3\x80\x5d\x9e\xe1\xd8\x2d\xf0\xf8\x0c\xd2\x2b\x40\x6a\x47\x15\xff\x63\xb7\x2d\xc8\xd5\xd2\x03\x30\x21\x3d\xba\x33\xf0\xbf\x92\x96\x0c\xc1\x29\xc1\xf0\x69\xf9\x53\x0d\xef\x84\x05\xe8\xfa\x24\xfe\x84\xdc\xaf\x73\x59\x00\xcc\xb1\x67\x52\xd2\x26\xac\xe8\xef\xc9\x25\xad\x7d\x8b\x67\x9b\x5b\xff\x47\xa7\xec\x60\xd2\xf1\x90\x83\x57\xe4\x80\xad\x99\x6b\x9b\x37\xa9\xab\x68\x98\x0e\xaf\x42\xad\x45\x9f\x37\x54\x88\xc8\xb1\xb6\xc3\x4a\xa6\xe9\xde\x52\xdd\xa4\x84\xd6\x0e\x07\xfe\xb8\xc7\x4e\x29\x38\x5b\xe2\x04\xcb\x10\xb1\xa7\xe2\x6e\x69\x83\x34\x10\x3d\x8e\x3e\x92\x24\x09\x84\xe8\x39\xf9\xa3\xde\x78\xd2\xe4\xf9\x90\x98\x15\x78\x7a\xda\x75\x74\x90\x61\x23\x76\x44\x73\xf2\x83\xdc\x69\x3c\xed\x92\xd6\x37\x20\x91\x03\x6a\x97\xb3\xf4\x12\x17\x44\x26\x9f\xd6\x6f\x9d\xe4\x4b\xae\xdf\x4a\x14\x0e\x54\x3b\x1e\x2a\xec\xde\x19\xc2\xb4\x38\x7b\x40\x1f\x32\x28\x93\x50\x2f\xa8\x1f\x0c\x44\x97\x23\xee\x5a\x02\x6a\xd4\x1d\x4c\x85\xd2\xe1\x92\x73\x16\x8a\x5d\x9b\xa6\xbe\x6c\x8f\x27\x3a\x8c\xac\x09\x23\xf5\x0a\x9c\x46\x33\xf3\xb9\x94\x4a\x55\x34\xe0\x97\xf5\xa5\x43\x09\xa1\xa7\x96\xf0\xe7\xd5\xdc\xcf\xb9\x04\x21\xe4\xd1\x85\x17\xd1\x54\xfe\xbc\x72\xb2\x1c\x49\x87\x0e\x84\x2f\xa0\x14\xf9\xf3\x7a\xdd\xc4\x98\xb2\x10\xad\x96\x58\xc5\xbe\x2e\x96\x23\xc3\xc0\x5a\x69\xd7\xe7\x5c\x6d\xa1\x2e\xa8\x0f\x83\x4c\x22\xa9\x85\x94\x24\x32\x7b\x26\x33\xad\x9e\x17\x24\x8c\x60\xf2\x79\x5b\xd6\x95\xe0\x2f\x97\x11\xbb\xec\x72\xa0\xae\x37\x88\x75\x3e\x5e\x50\xe0\x76\x97\x23\xe3\xcf\xdb\x40\x24\x93\x79\x01\x99\x4b\x5d\x99\x86\x2a\xb6\xd7\xce\xa1\x71\xe6\x80\x10\x6e\xb4\x10\x80\x99\xfe\xab\x43\x7e\x1f\xd9\xb3\x4d\x79\xe9\x2f\x64\x91\x69\x2e\x2f\x83\x20\xd0\x80\xcb\xcb\x70\xa6\x99\xb1\x4c\x86\x7d\x29\x6d\x60\xa6\xd8\x2d\xf8\xeb\x15\xf9\x04\xff\x4b\x3e\x65\xd9\x21\x7c\xab\x4d\x19\xb0\x51\xb7\x4a\x5a\x81\xf2\xb3\xce\x45\x70\x32\xc3\x97\xac\xd9\x6d\xdb\x79\x2d\xd6\x22\xc8\xd3\x47\xe2\xbc\x67\x42\xcc\x96\x04\xfd\x5b\x8d\xa0\x4a\xc3\x1c\xf1\xb7\xfd\x6e\x33\xe1\x8e\x84\xaa\x5c\xc8\x97\x6e\x43\xff\xe2\x1d\x94\x37\xbb\xeb\x41\x7c\x94\xbf\xa4\xdb\x69\x10\x04\xfb\xed\x4d\xe0\x39\x69\x1d\xb8\x7b\xcf\x9c\x3b\x45\xc7\xdf\x5b\x65\x8f\x01\x4e\x0c\x69\x68\x7d\x27\x8f\xe0\xa3\xaa\xba\x33\xa4\xcc\xde\x1f\x03\x26\x7b\xac\x64\x44\x27\xea\xc9\xdb\xf6\x67\xeb\xa4\x84\xb3\xaa\xe4\x65\x86\x6f\x2f\xc9\xb1\x77\xda\x85\xf8\x42\x88\x6a\x7f\xf6\xeb\x8d\xd0\x56\x0a\x44\x27\x33\x6c\xfc\xe9\x25\xfb\x26\x06\x7a\xd6\xb0\x81\x5d\x4f\x3b\x6b\x0e\x6d\x92\x09\x9e\x9c\x4c\xdc\x58\x1a\xe9\xa0\x6e\x76\xf0\x65\xb9\x3d\xec\xcb\x9a\x88\xf5\x10\x52\x4f\x0a\x07\x06\x1c\x4b\x9d\x28\x01\x1b\x19\x70\x52\x14\x6c\x41\x96\x3a\xba\x5a\xfc\xed\xa5\xc6\x3b\x72\xad\x74\x9d\x9f\xd4\x6e\x27\x85\xa9\x10\xa3\xb2\x12\xd5\x41\xac\xf5\x98\x4e\x26\x2a\x26\x86\x6a\xfc\x3c\xcf\xfd\x4f\xd1\x9c\xd9\x3a\xb1\x6b\x5a\x57\xcf\x3d\x3c\xd6\x3e\xa3\xcf\x87\x01\x21\x3d\xfe\xe2\x1d\x96\x89\x91\xc5\xcc\x4d\x6a\x12\x33\x5f\x55\x28\x21\x0a\x1b\x97\x95\x28\xf4\x4a\x54\xe0\xa8\xbb\x84\xa8\x27\x9d\x44\x1a\x97\x3a\x88\x93\xae\x73\xdb\xbc\xb1\x9f\x9a\xd4\x82\x02\xa6\x83\x14\xa0\x41\x40\xf4\x65\x29\xeb\xda\xd1\x66\x80\xe6\x07\x4e\x8d\xfb\xd4\x89\x91\x57\xd1\x21\x37\x3a\x40\x9a\x98\x42\x46\x6d\x50\x9c\xc8\x2c\x60\x57\xb4\x51\x64\x3d\x37\xe9\x57\x22\x10\xf1\x64\x64\xfd\x98\x04\xe1\xf4\x67\x45\x51\xec\x4c\xad\xa4\xbc\x2d\x76\x08\x37\x45\xbb\x98\x2d\xe5\xbd\x55\xca\xbf\x41\x21\xa7\xf4\x3f\xaa\x64\x35\xdc\x4c\x8d\xd4\x01\x95\x9d\x4f\x67\xdb\xf9\xef\xbc\xdf\x50\x96\xea\xa0\xac\x7e\xab\xd9\x97\xc5\xd2\xe1\x8b\x16\xcb\xee\xae\x7a\xad\x50\xa9\x35\x99\x90\x85\x54\x2a\x2e\x2d\xc3\x20\x64\x72\x39\x49\x5d\x1b\xfb\x57\x38\xb1\xd5\xf3\x3f\xe2\x35\x25\x9b\xea\xf0\xf4\x7f\xbe\x3e\x2e\x9c\xf7\xb9\xd6\x78\xc9\xc9\xa3\x39\xa4\x0d\xb5\x19\x7e\xf4\x6b\xc7\x4d\x38\xa1\x6c\x38\x70\x8f\x1e\x47\x5f\x22\xaf\x57\x2f\xca\x5f\x16\x2f\x73\xef\x6c\x09\xd3\x5e\xaf\xf1\xe4\xa0\x6a\x1f\xa0\x8c\xe7\xec\x41\xfd\xd0\x54\xef\xac\xb5\x5f\x38\x2d\xd8\xa2\x5e\x8e\xcc\xb0\x14\x75\x42\x72\xe6\x84\x5d\xd3\xda\x33\x03\x25\x46\xd7\x91\x74\x1f\xc8\x0d\x08\xa3\xa0\xb6\x54\x75\x57\x9c\x8b\x99\x61\x13\x62\x37\xa6\xe7\x0e\x87\x0d\xe4\x45\x7c\x14\x3c\xac\xcf\xb3\xa6\x26\xef\x9a\xd7\x35\xc9\xe6\xd9\x75\x59\xdf\xe8\xbf\x93\xcd\x80\xc7\xd6\xed\xd4\x8f\x64\xc3\x57\x8d\xd3\x21\xfc\x90\x02\x44\x5a\x8f\xf7\x0b\xa1\xa3\x83\x6d\x39\x03\x92\x20\xb3\xac\x48\xb4\x44\x09\x74\x03\xad\xc8\xba\x61\xd7\x9e\x60\xfe\x15\x66\xdb\x2b\x0b\xa8\xba\x97\xf6\xb0\xc8\xab\x3d\x79\x10\xfa\xd8\xa4\x10\x21\x2d\xa0\xef\x86\xfc\xef\x12\xab\x3f\x30\x54\x12\x60\x47\x8f\xda\x69\xcf\xf2\x56\x65\x1d\x98\x4c\x8e\xe0\xe5\x4c\x12\x82\x0c\xdf\xca\xd2\xf3\x3b\xa9\x7e\x3e\x99\x61\x62\x95\xd1\x27\x67\x78\x80\xdd\x93\x5a\x44\xd3\x95\x98\x4a\x99\x67\x55\x7b\x4f\x2b\x46\xee\x39\x74\x69\x32\xd1\x5c\x60\x7e\x1b\x29\x4e\x7c\x03\x9e\x4c\x19\x99\xe0\x27\xed\xa6\xa8\xf8\x8b\x16\xd2\x5a\xa4\xda\x6e\xca\x96\x3f\x5a\x7d\xa8\x9b\x4f\x1b\x52\x5d\x12\x99\x9d\x49\x79\xc8\xc3\x75\xfa\xfb\xe2\xfe\x7f\xff\xed\xfe\xb9\x60\x51\xff\x76\x3f\xb7\x3d\xef\xfd\x48\xd4\xbf\xdd\xcf\xa7\xff\x07\xdd\xc7\x84\xd8\xf6\xf7\x31\x27\x45\xf6\xbe\x6c\x49\x36\xba\xec\xcd\x65\xe2\x66\x7a\x71\xb2\x9a\x5c\xda\xac\x26\x97\x72\x26\x8c\x14\x1f\xf3\x4b\x0c\xb9\x5c\x95\x62\x78\x2c\x23\x40\x54\xa1\x51\x69\xbf\x34\x29\x30\x29\x87\x98\x77\x6b\x59\xaf\x13\x1d\xd8\x84\x34\x9c\x5e\x93\x6a\xdc\xec\x78\x86\x30\x1d\x6c\x29\x7a\x2d\xdf\x37\x4c\x3a\x01\x34\x83\x6d\x69\x3b\xde\xd5\xe5\x8e\x5f\x35\x50\x9f\x34\x43\xb8\x3c\xd4\x7e\xdd\xb0\xf7\xb4\xaa\x48\x9d\x21\xdc\x26\x1a\xdb\x9c\x6c\x82\x99\x84\x95\x33\xd2\x36\x3b\xb6\x22\x19\xc2\xbb\xc1\xee\x55\xde\xd0\x6a\x07\x45\x52\xcb\xb1\xc0\xe9\x0d\x5d\x89\x35\x6f\xee\xf4\xa1\xd4\x74\x8c\xc1\xba\x90\x21\xbc\xd2\x94\xe9\x35\xab\x08\x23\xd5\x5b\xc2\x47\x17\x6a\x87\x13\xc5\x51\x6a\xf2\x69\x2c\xa3\x29\xf3\x8b\x5e\xc4\x58\xb9\x59\x6e\x90\x2b\x9b\x15\x17\xd8\xf9\x2c\x91\xde\xa6\x58\x11\xaf\x45\x59\x55\x3f\x52\x7e\x05\xe9\x4c\x8a\x01\xe1\x63\x47\x2b\x13\x9c\xc5\x55\xd1\xcd\x96\xd4\x2b\xf2\x96\x70\x7d\x05\x6e\x68\xcb\x81\x0b\x87\xdc\x12\x0b\x66\x64\x11\xf1\x77\x71\x32\xc3\x46\xe5\xc1\xf7\x7b\xc5\x6e\xf3\x73\xaa\x75\x16\x73\xaa\xc3\xd0\x39\x9e\x61\x1d\x41\xd4\xd2\x7f\x90\xd3\xe2\x4c\x86\x98\x02\xb6\x57\x1e\xdc\xf4\x9f\x63\x12\x45\xaa\x3f\x60\x0f\x4d\xb5\x52\xa6\x19\x80\x5a\x66\x2b\xab\xa7\x96\x48\x15\xee\x8f\xfd\xfe\xe4\x0c\xd7\x53\x97\xa4\x89\xa9\x67\x60\x2f\xcb\x68\x2d\x0b\x65\x4c\x3f\x31\xca\xd5\x3b\x84\xfb\xf2\x48\xd6\x92\x53\xb0\x45\xe1\xdc\x6b\x47\x90\x62\x2b\x58\x92\x9c\x3b\xd4\x95\x21\x5c\xc3\x33\x5c\x43\xc1\xcd\x1c\xe1\xed\xc0\xaa\xbd\x3c\x5c\x9a\x5f\x9f\x96\xed\x4d\xbd\xc2\x8d\xf3\x64\xdb\x6c\x6e\xae\x1b\xb6\xbd\xa2\xab\x91\x92\x8a\xc4\xee\xb6\xa0\xb7\xbc\x30\x05\x10\x65\x56\x93\x97\xf1\x3b\x20\xd7\x85\x22\x97\x1f\xc8\x4d\x21\x17\xe8\xf2\x3f\x7f\x00\x63\xb5\x7a\xe2\x90\xd3\x82\x63\x9d\xcf\x4a\x4c\xab\x30\xa8\x40\xf7\x7b\xaa\x5f\x7d\x6f\xe7\x67\x1b\x34\xfb\x7d\x83\x55\x50\x9b\xa5\xab\x2f\x09\x2f\x8b\x3a\x1c\xfa\x59\xc3\x9e\x5f\x0b\x1c\xa2\xbc\x88\xe7\x60\xa5\xa7\x53\xbd\x02\xac\x10\xb7\xfe\xe0\x3a\x84\x62\x23\x32\x3a\x3f\xaf\xca\x16\x9c\xad\x4f\xce\xcc\x6f\xa9\x3e\x33\x4f\x2e\x74\x4a\x19\x98\x9c\x8e\x11\x37\x7a\x46\x7b\x2a\x4d\xe6\x19\x09\x8b\xa4\xde\x7b\xea\x76\xa6\xf2\x31\x7b\x81\xfd\xbc\x20\xfe\x56\x47\xb9\x60\xf8\x7e\x0f\x59\x45\x53\x23\xbf\xfd\xc5\x06\x3e\x29\x0a\x3e\x99\x9c\x04\x23\x0f\xe6\xe3\x49\x4f\x64\x14\x6c\xae\xba\xb1\xd7\x0d\x7b\xb4\xd1\xd8\xe9\x09\xb2\x61\x62\x07\x95\x57\xce\xf6\x80\xf4\xdf\x51\x42\xa0\x60\x82\x92\x19\xf3\xa6\x9f\xfc\xae\x88\x34\x6c\x0a\xbf\x75\xb0\xa2\xf4\xc0\xf2\x12\x04\xe9\xfc\x40\x9a\xc0\xa9\xbc\xc7\xc9\x64\x42\xb6\x6d\x30\x1f\xe9\x5a\x09\x78\x16\x4d\x01\xf0\x96\xf8\xed\xc1\x6f\xca\x23\x20\x8a\x4c\x92\xc2\x25\x04\x40\xc2\x1f\x98\x0a\xd6\xb3\x07\x26\x73\xeb\x62\xa6\x74\xea\x89\x15\x09\x61\x38\x08\xe7\x0d\xa9\x88\xec\x98\x85\x1d\xd7\x05\x0b\x3a\x4e\xc3\x41\x67\x96\xb5\x0b\x1a\x4e\xd4\x54\x84\x26\x06\xbd\x3e\x2f\x76\x34\xb0\x5e\x26\xbd\x55\x93\x63\x0e\x67\x7e\x8a\x06\x8f\x80\xe1\xcd\x62\xbd\xd9\xb5\x57\xa6\x47\xe9\xe0\x95\x1c\xd8\x1f\x2c\x91\x5e\x17\x0e\x4d\x2a\x18\xd5\x32\xdd\xc9\xed\x23\x11\xba\x97\x55\xd5\x3b\x9a\xaf\x8e\xeb\x1b\x2f\xea\x42\xba\x18\xba\x24\x82\x9f\x9e\x26\xc6\xed\x81\x6d\xd1\xa7\x07\x10\xb7\x3c\x71\x6f\x79\x3b\xc4\x39\x57\x51\xef\x3d\x48\x05\xa6\x63\x76\xca\xd1\xfc\x88\x86\xc7\xce\xb4\x48\x29\xcf\x43\x04\xb8\x2a\xa5\xfb\x56\x9e\x7e\x0d\x99\x02\x34\xff\x43\xf8\x6e\x9b\xf0\x52\x15\x34\x61\x00\x81\xcc\xc7\xdf\xc9\x6b\x2b\x87\xba\xf8\xee\x0a\xfa\x3a\x2e\x5c\x92\xaa\xcb\x8d\x38\x34\x54\x6f\x7e\x40\x6c\x71\x5d\x30\x58\x57\xd8\x1e\xd3\xc2\xb1\x8c\x38\x2f\x1e\xe4\xb5\xf2\x23\xf0\x6e\x7e\x34\x99\xd0\x81\xbd\x88\x4f\x2e\xea\x40\x7b\x6a\x92\xfb\x50\xc5\x01\x78\x3e\xbd\xb8\x2c\x9a\x45\x3f\xb7\xa0\x33\xf4\x0c\xb6\x01\x56\x88\xe4\x96\x15\xc2\xdc\xb0\x42\xf8\x56\x3b\xad\xdd\xc2\x9d\x38\x77\x6f\x83\x4e\xfa\xb6\x49\xbe\xd9\x28\x73\x3b\x84\x70\x79\xc7\x95\xa6\xe8\xc2\x57\x3f\x31\x83\x94\x38\x38\x34\x07\xdb\x26\x49\xd9\xcf\x3e\x3a\xba\xe2\xf4\x71\x97\x67\xc8\x26\x1e\x5e\xa6\xe3\x1a\x2e\x73\x30\xa6\xb1\x6a\x08\x5b\x26\x93\x2f\xf9\x6a\x18\xa0\x09\x94\x38\xfe\x16\x09\x29\x72\xe1\x2b\xc1\xbc\x7b\x12\x0e\xb2\x21\x50\xd7\x96\x2e\x19\x61\x11\x3e\x72\x1d\x6f\xe4\xcd\xe9\x2e\x14\x8c\x90\x4e\x3b\x77\x03\x52\xac\x5a\x48\x20\xe2\x3b\x24\xb1\xfe\x79\xde\x77\xe4\x87\xc0\x2c\x56\xf6\x05\x9f\xfd\x02\x14\xe0\x4b\xa6\x71\x14\x60\x8e\x66\x72\x8e\xb8\x2b\x12\x5c\x43\x8a\xef\xec\x3f\xa1\x5f\x70\x30\xff\xa5\xce\xe3\x61\x68\x1f\x04\x98\xb3\x84\x64\x69\x84\x23\x0e\xc4\x08\xd2\xbd\x0e\x40\x34\x75\x65\x1c\x33\x2f\x8f\x6b\x0d\xf7\x33\xc8\xf7\xf2\x65\x5c\xf3\x41\x32\xfb\x35\x60\x32\x7c\x0f\x1c\x09\x9c\xc1\x4e\x62\x28\x45\x17\x54\x00\xae\xa3\xd9\xfb\xc7\xcd\xf5\x56\x7c\xb9\xb9\x49\x42\xc5\x93\x8c\xfb\xd8\xb2\x64\x32\x49\xed\x8b\xeb\x3b\x27\x3b\x4b\x31\xba\x23\x5f\xd7\x57\x23\x2f\xed\x20\x5f\xd0\x25\xba\xad\x0f\xcb\xd8\xa9\xe5\x08\xf8\x8b\x6b\x60\x41\x97\xc5\xc9\xac\xeb\x3c\xf5\x93\x91\x20\x6a\x94\xd6\x41\x45\x0d\x8c\x94\x2d\x9b\x4b\x71\x2a\x60\x8e\x3c\x3d\x81\xb7\x6f\xd6\xb9\x34\x0d\x2d\x50\x1c\x86\x52\x71\x4a\x91\x18\xb6\x11\xac\x51\x02\x8a\x62\xd5\xe2\xc2\x91\x8b\xc7\x24\xaf\x91\x15\x98\x65\x02\xab\x7e\xa1\x39\x91\xd9\xaa\xbf\xb1\x4c\x79\xe5\x4f\xa0\x14\x13\x68\xe5\x04\x5a\x35\x81\x12\xf5\xb0\x92\xe1\xa6\xdd\x1d\xdf\xbf\x12\xd5\xf0\x8f\x4d\x8f\xa6\xca\x85\xbd\xc4\xa8\x4f\x74\xb3\x01\xd5\xd6\xc9\xd9\x28\xa8\x0f\x14\xb1\xbd\x90\xb3\x14\x5c\xd8\x72\x24\x68\x88\x54\x43\x0b\x96\xd5\x57\x8e\xf6\xc8\xf0\xcd\xf6\x26\x77\x8b\xec\xcc\x1e\xd4\x56\xdd\x5c\x9f\x9e\xa2\x90\x75\xca\xf9\xa2\x0e\xd9\xe1\x04\x75\x88\xd4\x07\x7a\x4d\x9a\x1b\xb3\x6b\x9c\x39\x6a\xd9\xe9\x85\x06\xaa\x3d\x9d\x10\xef\x20\x13\x42\x25\xf5\x47\x2f\x68\xfd\x21\xc5\x74\x6f\xc4\x73\xd2\xa7\x1b\xd5\x42\x9b\xb7\xa3\x69\xe7\x6b\xc5\x1a\x85\x8b\xa6\x75\xe5\x0f\x6d\x05\x4d\x67\x38\xaf\x9c\xa5\xf3\xdc\xad\x68\xb9\x26\x7c\x75\x25\xfa\x0a\xac\xbd\xee\xac\x09\x1e\xc8\x34\x1b\x6a\x20\x24\x60\x62\xbd\x8e\xca\x76\x1c\x9f\x07\x9f\x6d\x52\xf4\x4b\x1a\xa9\xb5\x9f\x39\x09\xc6\x18\xe4\x97\xfd\xcc\x1a\x81\xc0\xae\x46\x8a\x67\xa1\x95\xd3\x24\xf5\x89\x52\x53\xa7\x3e\x52\xaf\x82\xcf\xc4\x49\x48\x6a\x7c\x4e\xce\x70\x2d\x8e\x16\x54\xa2\xba\x26\xbc\x54\x3a\x59\xab\x8e\x54\xcf\x1d\x4d\x0f\x81\x2c\xb9\x50\x54\x44\x23\xac\x6c\x0e\x30\x93\x6f\x31\x47\x50\x39\x9c\xd6\x1f\x5a\xc1\xa7\xc1\x1f\x53\xe5\xd2\xa1\x6f\x27\x77\xfe\xed\x27\xca\x57\x57\xb9\x4e\xaf\x8c\x6e\x57\x65\x4b\x74\x91\x95\xb9\xde\xdc\x11\x3c\x55\xc9\x98\xd5\xd3\xdb\x2b\x46\xd6\x73\x62\x4c\x32\x90\x00\x22\x0f\x87\x1c\xd1\xc9\x84\x4e\x45\x53\xfd\xbf\xae\xd7\x28\xda\x41\x8e\x75\x7f\x31\x80\x83\xb2\xa5\x58\x4c\xc7\xce\xf3\x5e\xf4\x70\x77\x45\x3c\x45\xf3\xda\x5a\xa3\x9d\x37\x67\x49\xdc\xf4\x11\x20\x44\x12\x15\x04\x52\x04\x01\xb8\x39\xc1\x0b\x08\xbb\xcb\x5c\xed\x7e\x16\xda\xe6\xbd\xfb\x3e\x32\x69\x68\xda\x0b\x0e\x65\xfd\x2c\x88\x43\x93\x8c\xb3\x24\x4f\xd9\x6f\xa4\x97\xc5\x88\x0c\xd4\x8c\xf1\x9c\xe5\xc2\xf1\xba\x84\xd5\x85\x74\x9e\x3b\xa9\xfb\xae\xeb\xb0\x04\x81\x15\xc0\x22\x00\xb8\x1f\xf7\xd8\x8e\xba\x6e\x89\x30\xe9\x72\x84\xaf\xc8\x40\x0c\xdf\xcb\x1d\xd8\x07\xe1\x76\xc3\x41\x58\xdf\x17\xd6\xc9\xa5\xa1\xc1\x49\x17\xf8\x90\xbf\xb6\x69\x0b\x96\xf9\x4b\xda\x5c\x53\xb6\xb6\xf8\x11\x58\x41\xa3\x4d\x2b\xa2\x27\x6e\x9f\x6e\x90\x9d\xb8\x72\x13\xec\xaf\xc4\x69\x79\x4c\x1f\xf1\xbe\xd8\x32\xb7\x23\x15\x8b\x61\x55\x54\xb6\x5e\x9b\x9b\x23\x1c\xfb\xe3\xc4\x01\x02\x27\xc7\x57\xb1\x41\xfb\xbd\xfb\x53\x0c\xff\x59\x5d\xa2\xde\x2c\xf5\x60\x32\xbe\x93\xc5\x73\x4f\x95\x31\x32\xe6\x40\xc3\x78\xdc\x3b\x83\xd2\x62\x3a\x3b\x3b\x41\x1d\x1a\xf1\x82\xeb\x9a\x7a\x4c\xc7\x25\xbc\xce\xa3\x01\x30\x47\x23\x5d\xd6\x61\x1a\x16\x27\xd1\x02\x78\x29\x30\xf0\xb1\xcc\xf3\xf9\x23\xdd\x6c\xd4\xdd\x1c\x7f\x80\xeb\xa9\x5b\xc0\x04\xd7\x53\x5b\xdc\xc4\x52\x2e\x93\xbd\x13\x73\x93\x84\x35\xde\x7e\xa5\x16\x71\xc7\x36\xa5\x73\xef\x3c\x34\x99\x4c\xdc\x07\x62\xe3\x22\x44\x9c\x7a\xee\xef\x2a\x54\x20\x47\x32\xa1\x86\x3c\xc7\x6f\xc8\x16\x0a\x55\xbb\x17\x1b\x78\x7f\xed\xf7\x39\x2b\x16\x4b\x14\xcf\xd9\x81\x17\x34\xee\x5f\xb1\x72\x5d\x70\x8e\xaf\xbf\x53\x0b\x82\xf9\xd2\xee\x69\x12\x9e\x51\x9f\xde\x68\x69\x58\x7a\xd3\x32\x59\x63\x7d\xfe\x65\x9e\x16\x7e\x66\x0f\xb8\x65\x88\xb9\x16\x2f\x52\x78\x6c\x70\x73\xc1\x35\x73\x1c\x00\x15\x2a\x07\x74\x32\x39\x71\xef\xe0\xc0\x47\x98\xeb\x05\x8a\xd9\x1c\x58\x73\x38\x8a\x74\x0c\xe9\x30\xeb\xd9\x4a\x79\x52\x94\x77\x36\x20\x4a\x5e\x27\xc6\x68\xc1\xcb\x84\x60\x72\xaa\x11\x5b\x95\x53\xb7\xf8\x94\xa1\xa4\xd5\x4d\x88\x6e\x98\x29\xfc\x4b\x7d\x14\xad\x3f\x67\xd3\xeb\x72\x9b\xa6\x01\xbe\xc7\x59\x87\xd4\xda\x86\xb2\xb2\x7b\x38\xaf\xa3\xdd\xc2\x80\x3d\x57\x48\xc2\x5c\x56\xed\x80\xa8\x10\x81\x42\xff\x4b\xb4\x1d\x67\xa7\x91\x13\xa1\xb8\x0f\x85\xf8\xeb\x14\xee\xd0\xf9\x64\x4d\x55\x17\xf1\x6d\x86\x30\x1f\x08\xb0\x73\x0a\x6d\x04\x63\xaa\x26\xe6\xa9\x2d\xde\x11\x57\x94\x64\x82\x31\xf7\x12\xca\xc7\x97\x45\xb8\x02\xe0\x39\x9c\x25\x44\x6b\xab\x0b\x2d\xeb\xab\x8b\x83\xd9\x6b\x1d\x13\x5f\x82\x10\x3c\xb0\xbc\xd7\xf3\x1a\xe1\xba\xeb\x10\x5e\xff\x5b\x3a\x1e\x5d\xfb\xaa\x39\xb3\x6c\x9e\x07\xf5\x31\xfc\x83\x2e\x1d\x47\x6c\x55\x9e\x37\x3a\x52\x50\x95\xe7\x11\x40\x1e\x5f\x95\x6d\xfd\x6b\x3e\x7e\x4f\x48\x3d\x56\x49\xa9\x68\x4b\xaa\xf1\xbd\x31\x30\x43\x39\xf2\x5a\xac\xca\xcd\x86\x54\x06\x6b\x4e\xf8\x7e\xaf\x59\xfe\x13\x13\xa1\x39\x99\xd8\xb8\x4d\xfb\xf4\x9c\xcc\x79\x27\x91\xc1\xad\x2b\xa7\x57\x60\xb6\xbe\x99\x1a\x47\x6a\xc1\x1f\x16\x54\xc6\x60\x34\xc1\x6d\x2f\xd8\x9b\x26\x60\xa2\x68\xca\xcd\x0a\x37\xd3\x8b\x6b\x8d\xef\x92\x33\x6b\xa6\x17\x8c\x80\xbf\x6b\xf5\x32\x7a\x93\x4a\x4f\x87\x9b\x68\x17\x35\x84\x53\x4b\x95\xc1\x38\xc0\x2a\x59\xe8\x8b\xc5\x28\xc0\xbf\x15\x90\x1d\x93\xcf\x5b\x46\xda\x16\x4a\x45\xee\x5a\x3e\x26\x94\x5f\x11\x36\x7e\x4f\x40\x20\x1a\x37\x6c\x5c\x9a\xe1\x30\xb8\x54\x66\xa7\x26\x08\x76\x44\x7a\x5d\x13\x41\x1b\x6b\xf1\xe9\xd6\x71\x3d\x9c\xab\x4a\xca\x24\xf0\x0f\xd6\x18\x3d\x3f\x99\xe1\xc0\x93\x58\x9c\x3a\x71\x51\xa8\x31\x5a\xc8\x75\x24\xbb\x7e\xbd\x3e\x4f\x3e\x05\xd8\xcc\xc9\xf4\xe2\x02\x66\x71\x71\x51\x70\xd4\xe5\x1c\xfc\x09\x5d\x4f\x28\x25\xb6\xf9\xe0\x1e\x88\xfb\x0f\x76\xe6\x1c\x56\x9a\x7a\x23\x2f\x75\x37\xb1\xfa\x40\x33\x53\x5f\x03\xca\xc1\xa6\xda\x15\x7f\x8f\x68\x23\x31\xb5\x13\x78\xd7\xd3\x7b\xe7\x2d\x56\xdf\x64\x71\xaa\x2b\x97\xa0\xa5\xec\x04\xf1\x17\x4e\x92\x71\x35\xb4\xc1\x6f\xcd\x71\xda\x27\xb6\x2a\x51\xd8\xb6\x50\x75\xe7\xe1\xa9\x3f\x77\x0d\xd7\x00\x5e\xb6\xc0\x91\xb7\xb6\x94\x27\x14\xf7\x17\x63\x9b\x24\x0a\x66\xba\xd3\x0f\x67\x0f\x5b\x04\xe5\x56\x64\x86\x87\xbb\xf9\x7f\x58\xab\x6a\xd2\x88\x0d\xe6\x55\x1b\xba\x77\x9e\x10\x2a\x6c\x59\xa6\x19\xd6\x06\xf7\xa0\x85\x0a\x46\x3a\xce\x37\xc5\xa7\x7c\x28\x58\xd2\x41\x1f\xb7\x00\xac\x3d\xed\x13\x30\x56\xea\xfa\x18\x3f\xcc\x93\x98\x22\x06\x2d\x07\xf1\xa7\xc7\xaa\x65\x3a\xeb\x1b\x04\xd4\x4e\xf0\x2e\x2d\x3d\x44\x5b\x7e\x77\xfb\xf9\x90\x01\x3e\xd8\x0e\x25\xb3\x1b\xec\x8b\x79\xe9\x7c\xc1\x97\xf1\xbe\xdd\xc9\x6c\xe5\xb0\xc9\x6c\x34\x84\x9c\x93\x49\x1e\x14\x15\x4c\xa1\x9f\xad\x29\x86\x70\xfd\xdb\x7b\x67\xea\x0c\xa5\xd1\xb8\xc6\x67\xe8\xae\x06\xb7\x61\x94\xfd\x02\x8f\xbc\x2f\x70\xe8\x8b\x48\xde\xb0\x43\x5f\x7a\xf1\xb3\xe4\x4b\x23\xb8\x25\x36\xb4\xdf\x16\xc3\x53\xcb\x88\xda\x7b\x07\x71\x94\x72\xce\x0c\xf7\xf0\x81\xae\x08\x37\x48\x8b\xce\x90\x1b\x58\x6b\x8f\x24\x04\xd1\x5a\x37\xf4\xa4\x04\xa9\xc7\xa0\x42\xa4\x0f\xa5\x3b\x2a\x65\x48\x7e\x94\x19\xe8\x20\xf1\x0e\x34\x4f\x68\xc0\xee\xe2\x16\xce\x48\x5e\x9c\x07\x4f\x54\xe2\xf0\x43\x5d\xbd\x63\xba\x4a\x92\x81\x23\x69\x9a\x43\x1f\xef\xfa\x69\x8a\x1c\x0e\x9c\xb0\x2f\x3b\x58\xc7\x9d\x27\xbb\x69\xde\x41\x8a\x67\xa8\x77\x39\x7a\x61\x6c\xc0\x3e\x93\x77\x08\x12\x45\xa8\x40\x50\xac\x33\x31\xd4\x0f\xae\x66\xe2\x23\xb3\x5a\x1d\xcf\x19\x30\x9a\x49\x3d\xc1\x82\x2f\x43\x50\x1e\x69\xf6\xb1\x66\xb8\x94\x85\xcd\xcd\xef\x60\xec\x6b\x98\x44\xfc\x89\x54\x0d\xf4\xd9\x4d\xed\x8e\x17\x44\x25\x59\xd1\xb9\x40\x90\xd1\xec\x07\x0c\x98\xb5\xd1\x85\x9c\x99\xea\xe0\x7b\x52\xcb\xac\xe2\x9e\xe1\x2e\x68\x3c\x1a\xea\xe1\x8d\x8a\x59\xcb\x90\x8e\xc5\x74\x72\x94\x70\xd4\x7d\x4c\xd6\xb3\x37\x66\x19\xc9\x42\x39\x26\xc1\xb9\x63\x8a\xb8\x68\x57\x57\xa4\xda\x6d\xc8\x33\xf1\x1e\x8a\xce\xfa\xdb\x3a\x94\x33\x48\xe1\x63\x4a\x66\xc8\x59\x9a\x8b\xf5\xb7\xc3\xb7\x08\xc6\xdb\xf2\x85\x25\xd6\x17\x4b\x1c\x6a\xa3\xd5\x95\x04\x59\x70\x70\x9d\xf0\xaa\x81\x78\x1e\xb0\xe0\xa1\x03\x55\x3d\xb9\x74\x44\x06\x8b\xb8\x49\xd8\x94\x13\x34\x4a\x97\x30\xaa\x8d\x5b\xb3\x9b\x86\x46\x69\xad\x06\x1c\x55\x73\x66\xcd\xe8\xb4\x98\xe1\xc6\xce\x84\x3e\x6c\x20\x79\x92\x72\x7c\x20\x90\x34\xe9\x50\x87\x79\x69\xeb\x9d\xf5\xb5\x90\x71\xdf\xdc\x37\x95\x3e\x97\x1a\x88\x01\x3f\x7b\xba\xce\x4f\xc4\xf5\xe5\x17\xd2\x24\x68\x32\x91\x96\x4e\x75\x9d\x1f\xa1\x64\x25\x0b\xbe\x1c\xe0\xbf\xd8\xb0\x73\x38\x0b\x9c\x2d\xdc\x67\xbd\x0e\xe3\x82\xb6\x27\x2e\xf6\x1e\xff\x06\xde\xc8\xc5\x45\x37\xb2\x3e\x5e\x3d\xae\x49\x71\x78\xef\x9a\xd6\x95\x22\x5b\x09\x1f\x2c\xeb\x65\x90\x0e\xf2\x0a\x8f\xa5\x23\x97\x0b\x48\xbd\xb6\xc5\x00\x95\xa8\x06\xb4\xc3\x31\x48\x73\x65\x90\x36\x69\xdb\xdf\x97\xab\x0f\xef\x77\xac\x26\x6c\xfa\x53\x43\xbd\x13\x7f\xd0\xfe\x2f\x45\xad\x40\x42\xb4\x34\xea\x64\xa6\x72\x8c\xba\x9e\x94\xde\x17\x5d\x40\xa7\x05\x70\xe4\x95\x90\xa0\x0a\x09\x62\xed\x52\xac\x1e\x58\x4b\x40\xf7\x93\x33\x4d\x6d\xbd\x22\xff\x11\xb9\x85\xa5\x84\xb3\x4d\x89\x49\x11\x53\x76\xf4\xb5\x15\x74\x6e\xec\x79\x3d\x90\xd0\xa4\xce\x63\x38\x5d\xf9\x52\x9f\xad\x03\x17\x84\x71\x7b\x50\xf7\x85\xdd\x01\x7d\x63\x68\x07\x95\x81\x3c\x72\xfe\x67\x9d\xf3\xa1\x79\x38\x78\x69\x88\xeb\xcc\xb5\x64\x46\x1b\xc2\x53\x1b\xc2\x53\xba\x8f\xc0\x23\x24\x48\x97\xa3\x90\x5e\x10\xe4\x37\x2a\x16\xfa\x79\x45\x6a\x4e\xd7\x54\xe7\x2d\xc5\x82\xa4\x9f\x6b\xe2\x91\xa4\x82\x82\xd5\x81\x06\x87\xce\x07\x0b\x36\x35\xe1\x8f\x90\x70\x57\x70\x38\xc2\x91\x63\x62\x75\x64\x0b\x30\x17\x1d\x52\x27\xb9\x42\x4e\xa8\x11\x1b\x31\xc8\x3f\x11\xf6\x90\x52\xb8\xa2\x0e\xaf\x49\xce\x8d\xc7\x84\xdf\x64\xd0\x67\x20\xd2\xc3\x69\x9f\x03\x33\xd3\xe1\xcf\x4d\x33\x53\xed\xd0\x2e\xf1\x8a\x18\x4d\xa0\x4f\xc1\x53\x8a\x21\x95\x26\xd8\xa2\x80\x97\x99\x66\x2e\xcf\x93\x71\x49\x4f\x79\x6b\x78\x8a\x70\x84\x65\x6d\xef\x79\x82\x80\x43\xc9\x62\x75\x1d\xf1\x12\x7b\x5a\x71\xed\x04\xef\x3c\xea\x10\xd6\x0a\xea\x3e\x26\xbf\x4f\x40\x89\x76\x2f\xad\x48\x47\x11\x7a\x80\xcf\x06\xef\x72\xb1\x90\x9b\x7f\x2f\x7b\x86\x1f\x85\xcd\x70\x03\x81\xdb\x14\xc4\x86\x46\xeb\xf0\x7c\xbd\x96\x32\x46\x04\x6c\xc2\xff\x67\x8a\xf8\x85\x4c\x11\x40\x73\xfb\x22\x2b\x88\x09\x62\x0c\x63\x36\xf5\x51\x8c\x37\xd0\xb8\x47\xf4\x46\x2e\xc4\xdf\x24\x83\x40\xd2\xee\x6a\x11\xdf\x7c\x30\x9a\xcb\x5d\x46\x5f\xa8\x58\x52\xbd\xed\xad\x64\x28\x26\xca\xff\x6c\xd8\xf5\x3e\xcd\xf5\x1f\xb3\x08\x4d\x99\x06\x03\x36\xaf\x13\xcf\x92\xc7\x2c\xc5\x8b\x93\xc3\x41\x9f\x77\xb7\x43\x1c\xb4\x42\x7c\x75\xc8\x87\x12\xc6\xdd\xcd\x13\x77\x36\x4e\xdc\xd9\x36\x71\xe0\x24\xa4\x93\x8f\x86\xf8\xf3\x4b\xa8\x6a\x93\x20\x54\x0e\x33\x89\x37\x8e\x21\x24\x89\x66\xce\x97\xfd\xd4\x7e\x70\xc9\x47\xac\x39\x11\xae\x72\x64\x84\x4b\xa4\x0c\xec\x9d\xe4\x9d\x34\xc3\x03\x74\x31\xf5\xca\xba\xe3\x9d\x24\x60\xac\x8f\x48\xea\x4b\xcd\xc7\x84\xc7\x67\x00\xe2\x29\x76\x6d\x78\x03\x8e\xd3\x5d\x1f\x6f\xaf\x1a\x8c\xf6\xfc\xca\x57\x4a\x1a\x04\x83\x91\xa9\x89\xe3\x70\x24\x6e\xb6\x5a\x86\x8c\x2d\xfa\x36\xaa\xec\x92\xf0\xc9\x44\x89\xc1\xda\x4e\xaf\xdc\xda\xc2\xbb\x38\xe7\xe7\x3c\x70\xd3\x9a\xc7\xaa\xd6\x23\x8c\x04\x7d\x26\x82\x03\xe7\xf2\xee\x16\x84\xbb\xc1\xeb\x9f\xa2\xde\xff\x42\xb2\x93\x52\x3d\x84\xad\x8e\x52\x3e\x44\x5d\xf7\x28\x20\xee\x66\x48\x1d\xbe\x55\x07\x88\xf5\xcf\x31\x81\xfe\xab\x19\x40\xed\xaa\xfa\xd4\x5a\x89\x1c\x67\xbd\x48\x71\xee\x6a\x2c\x44\x17\xdf\xde\x1c\x4b\x6b\xe6\x8e\xd7\xa2\xb6\x2a\x30\xd2\x36\x9b\x8f\x3a\xcd\xf2\x57\xd0\x62\x1a\x44\xfa\xba\x7a\x4c\x59\x27\x33\x8c\xe8\x86\x7a\x4e\x3d\x1a\xb2\x43\x61\xa1\xae\x3e\x8c\x07\xfa\x30\x7e\xb4\x3e\xec\xcb\xd4\x61\x29\x6d\x58\x8e\x70\xa2\x7e\x83\x75\x63\x1a\x46\x88\xe4\x85\xed\x78\xff\x43\xe6\xef\x0e\x75\x36\x89\x73\x3f\x9e\x84\x39\x91\x59\x7f\x5b\x77\x08\xa3\x4c\x3c\x64\x65\x0b\x83\xd0\x7a\x6c\x52\x77\x65\x4f\xae\xca\x56\x4e\xe5\x38\x88\x18\xcf\xe0\x78\x23\xbe\xb2\x06\xb1\x5f\x81\xd8\x23\x34\x68\x45\x62\xaf\xdc\x28\x55\x88\x52\x57\x73\xf9\x6f\xe9\x71\xfb\xbe\x77\xd5\xa9\x4b\x4e\xcb\x8c\x5a\xdf\xf4\x0f\x52\xf9\x2e\x7e\xa9\x9c\xf3\x89\xac\x74\x57\x65\x9b\xa8\xd5\x76\x72\x32\xd8\xf9\x82\x2c\xa3\xa8\xeb\xa7\xe5\xea\xaa\x27\x3b\x55\x6f\x3f\xba\x7a\xc0\x07\x72\x23\x6e\xcf\x44\xe6\x5a\x74\x0b\x5a\x73\xc8\x28\x13\xc4\xc5\x5d\xba\xf5\xc8\x8f\x1b\x0f\xb3\x82\x2f\xc8\x52\x27\xb3\xf4\x00\xaa\x12\xc9\xfb\x31\xf1\x84\xeb\x7c\xec\x87\xd3\xe7\x53\x45\x65\x54\xd6\xf8\xda\xa9\x17\x6c\x3f\xfc\xbe\xbc\x11\x47\xb4\x55\x5d\x5b\x3f\xf4\x7a\x4a\x2b\x70\x46\x87\x19\x46\x1e\x0a\x6e\x88\x03\xa6\x32\x16\x2f\xd2\xc9\x59\x5e\xd7\x4f\xde\x7e\x92\x73\x93\xab\x9f\x9b\xcc\xf5\x9d\xe4\x57\x68\x41\xa6\xae\xf0\x0c\x9a\x60\x40\x6b\x86\x10\xa6\xe0\x03\x46\x55\xc5\x50\x53\xea\x05\x3a\x82\x94\xd6\x35\xf9\x34\xbe\x86\xf2\x5d\xb8\xc6\x1c\xcd\xc5\xef\x1b\xfb\xbb\xcb\x6b\x4c\xb1\x82\x05\xc2\xcd\x64\xa2\xac\xc4\x0d\x3e\x99\x19\x84\x64\x1d\xbe\x74\x82\x15\xa5\xd2\xf9\xf8\x28\x3d\x1b\x9b\xf7\xf1\xdf\x92\x72\x5c\x0c\x50\x0e\x7b\x2a\x70\x5c\xbb\xe8\xb7\x67\x49\x7f\x83\x33\xd7\xdf\xe0\x6c\x39\xbf\x55\x89\x1b\x9c\x3c\xca\xc9\x1c\x0a\xb2\x91\xb1\x20\x1c\xa4\x47\xe1\x07\xcf\xab\xa1\x66\x0a\xf7\x8e\xed\x55\x35\x1f\xee\x33\x20\xa9\xca\xc3\x8d\x78\x3c\x80\xe2\xeb\x80\x01\xab\x71\xdd\x97\x52\xdc\x4d\xb7\xe7\x00\x4a\x1c\x66\x87\x98\x60\xeb\x1d\x41\xab\x82\x88\x43\xaf\x54\xa4\x60\x48\x7b\x2d\xcf\x6d\xc1\x82\x07\x9a\xd6\x43\x55\x9d\x82\xe9\xbf\x94\xea\x51\x13\x91\xc2\xa9\x14\xa1\x16\x18\x55\x2c\x2b\xea\x64\x15\xb3\xc4\xcd\x20\xd6\x10\xba\x41\x38\x29\xb6\xed\x12\x7d\xc7\x1f\x6f\xe9\x23\x6b\x00\x70\xd2\x5a\xe7\x19\xc0\x7b\xfc\x6b\x1d\x8e\x44\xeb\x76\x4b\x56\x3c\x77\x40\x8d\x4e\xb3\x5f\x8f\xaf\xca\x76\x5c\x37\x63\xd3\xe5\x58\x90\xa1\x4a\x7c\x47\xc4\x6b\x79\xa8\xaa\x69\x16\xa6\xbc\xb2\xab\x8d\xc9\x87\x4e\x28\xbf\xd5\x0e\x71\xce\x42\x82\xec\x99\x11\xec\xdc\x53\x66\x32\x69\x26\xb1\xab\xf0\x6e\xb6\xf4\x56\x20\x55\xde\x8e\x87\x1e\x38\xea\x0e\x02\x62\x44\x16\x74\x59\x44\x73\x8e\xfa\x5a\xd0\xa5\xdd\x44\x7f\x19\xe6\x78\xa5\x79\xbd\xc9\x84\x0b\x2c\x74\x2e\x17\xf5\x47\xb2\xf0\x89\x20\x47\x16\x07\xdc\x93\xeb\x63\x81\xfb\x46\x05\xf3\x9e\xf4\x7c\xeb\x1d\xe8\x9e\x5e\x42\xee\x03\xfa\xd3\xce\xc9\x61\xb6\xf7\x44\xa6\x1a\x84\xf6\x7b\xa7\x58\x02\x44\xce\x46\x71\xe9\x50\x2a\xe3\xab\x20\xac\x19\x69\xec\x0e\xd2\x8b\xbd\xc6\x6c\xe7\x51\x8a\x4c\x65\x77\xc8\x10\xa6\xfe\x8b\x94\x1c\x90\xc1\xe5\x9a\x97\x05\x9d\x4c\x4e\xe8\xd4\x54\xee\xca\xd1\x39\x3b\xb7\x5f\x53\x59\xeb\x6f\x4e\xa3\xc2\x81\x73\x95\x07\xe7\x3c\xb9\x81\x85\xb2\xf5\xf6\x6f\x49\x51\xe2\xd2\x47\x3c\x45\x81\x87\xd0\xae\xfd\x32\xbc\xb3\xb4\xdd\xc7\x17\xfb\x3c\x8d\x73\xa9\x2b\x24\xd9\xc3\x57\xc1\x37\xcd\x2c\xfd\xd2\xd8\xa6\xc6\xf9\x65\x70\x4d\xa9\x2e\x0d\x7a\x2d\x96\x98\x26\xfd\x00\x89\x8b\x73\xfb\x7d\xce\xce\x4b\xe5\x0f\x38\xa5\x15\x9a\x9b\x1f\x21\xde\x21\xd4\x21\x8b\x76\xde\x0e\x1a\xa4\xeb\xd9\x95\x18\xe5\xbc\xbb\x39\xe5\x5c\x2b\xa1\x97\xaa\x65\x16\xf5\x93\xce\x8e\x9a\xec\x2a\x51\x3d\xce\xcf\xc7\x92\x4a\x1c\xed\xc7\xf7\x42\x5f\xa9\xf2\xba\xfe\x15\xef\x96\xeb\x55\x32\x78\x87\x3f\x3a\xbc\x33\x3f\x94\xdf\xe2\x22\x91\xe0\x02\xea\xab\x59\x2e\xfa\x53\x12\x74\x5e\x1a\xf8\x20\xcb\x7b\x37\xfa\xe4\x5a\xe4\x3d\xa3\xfb\x27\x22\x13\xf8\x3f\x4d\xf6\x1a\xd7\x2a\x90\x29\x83\xe1\x25\x74\xc6\x23\xa6\x86\x56\x42\x8c\xa9\xba\x07\xf9\xd3\x7e\x3f\x80\x4f\xfd\xd5\x12\x9e\x12\xfc\x94\x0c\xd7\x4b\xf8\x14\x34\xa1\xbd\xea\x9e\x0b\x5a\x75\x7e\x5b\x46\xae\x1b\x4e\x20\x90\x34\xfa\x26\xa3\xa0\x43\xe1\x37\x59\xf0\x51\x90\x7c\x27\x55\x7b\xd5\xd1\x75\x6a\x1d\x67\xe4\xbe\xec\x72\xa1\x12\x9b\x8c\x4f\x6e\x30\x20\x08\x2d\xfd\x6a\xda\x41\x35\xd4\xa0\x46\xce\x1f\x66\x48\x53\x66\x55\xac\xaa\x07\xb3\xe9\x66\xa3\xc3\x59\x0f\x3a\xb8\xc3\x92\x9c\x82\xdd\xe7\x24\xd0\x88\xa9\xb8\x79\x40\xc7\xcf\x24\x12\xb2\x0f\x23\x64\xf2\xf6\xd3\x95\x0f\x00\x09\x59\x3a\xdf\x8d\xca\xd5\x02\x29\x68\x0a\xae\xce\xbb\x71\x26\xea\x1e\xe4\x9f\xbf\x08\x93\x3f\x13\xfc\xf9\x30\x26\x7f\x3e\x16\x3b\xc7\xfd\x8b\x94\x6a\xcd\x4c\xfc\x9b\xcd\x05\x0f\xd1\xf9\xdd\xd2\xbe\x4d\x49\xf7\x96\x62\x61\xcc\xbe\x4d\x26\xa2\xbf\x60\x80\x4d\xa0\xb6\x3f\x6e\xc6\x41\x27\xd7\xc4\xcf\xa2\x74\xb8\x13\xf1\x45\xd0\xc9\xd7\x3b\xaa\x29\xc7\x55\xc1\xae\xb4\xbc\xac\x57\xa4\x59\x8f\xff\x7c\x9e\xcb\xca\x48\xcd\x47\xc2\xae\xca\xdd\xe6\x9e\x29\xbd\xdb\x42\xca\x03\x82\xe6\xac\x08\x8e\x3a\xe6\x3d\x6b\x19\x50\xbe\x06\xd7\x02\xc2\x90\x89\xe1\xf3\x20\xc1\xf8\x0a\x9b\xac\xfd\x8b\xd0\x39\x49\x10\x92\xcf\x43\x84\x24\x32\xdb\x08\xa4\xd4\x46\x00\x8b\xe4\x39\x3a\x1f\x98\xa1\x3b\xa6\xc4\xed\xbb\xf6\xd0\x6b\x25\xe1\x8e\x99\x44\x11\xa6\x0e\xcd\x55\x79\x90\xf0\x48\x1e\x5c\xdc\x10\x8a\xf6\x54\xbf\x4e\x4e\x40\xd2\xbe\xd7\x5f\x42\xfb\x12\x4c\xd8\x57\xa1\x7c\xaf\xbf\x88\xf2\xbd\x26\xf8\xf5\x61\xca\xf7\xfa\x6e\x94\x2f\xb1\xc4\x90\xee\xb5\x59\xe7\xf7\x3a\x44\x97\xfa\xfa\x0b\xba\xa0\x55\x4a\x51\xd1\xdb\xc3\x75\x18\xab\xd1\x9f\x6a\x86\x56\xe2\x18\xbf\x3e\x96\x04\xa6\x47\x13\x04\xf0\xf5\x2f\x49\x00\xc9\x68\x80\xc8\x29\x9d\xdc\xc9\x6c\xa4\xbd\x64\x4d\x5d\x76\xa0\x21\x2a\xcd\x60\x5d\xe4\x4c\x25\x1d\x44\xa6\x2c\x29\x5b\xcc\x96\x32\xd3\xe0\xc0\x00\x68\xe8\xe5\x7e\x0f\x39\xff\x90\x2a\x82\x6b\x05\xd2\x1a\xd1\xa2\x37\xc7\x4f\x40\x90\xa3\x8c\x3f\x23\xaf\x74\x81\xd7\x76\xa4\xe5\xaf\x47\x79\x03\x1b\xfb\xed\x4d\x9e\xf9\xdf\x67\x4e\x0c\x41\x6a\xc7\x82\x3c\x94\x54\x5c\x08\xc9\x9d\x75\xa3\x53\xfc\xc3\x44\xa3\xec\x91\xd2\x15\x3a\x28\x78\x9d\xe8\xd5\x11\x25\x6d\xfd\xa0\xbb\x63\x34\xf9\x48\xd8\x4d\x02\xb4\x27\xb3\xa2\x28\xdc\x8b\x23\x9a\xfb\x20\x5f\x7b\xe1\xdc\x38\xfd\xb3\xd1\x70\x51\xd7\xd0\xeb\x63\xf9\x59\xb7\xf7\xc4\x01\x38\x3c\xa0\x62\x53\x53\x6d\x6c\x98\x4c\x1e\xae\x78\xd8\x1c\x9d\xea\xcc\x64\x90\x02\xb4\x7e\xf4\x6f\x69\x34\x79\xab\xd3\x38\x96\x6d\x4b\x2f\xeb\xfd\x5e\xfe\xba\x26\xec\x92\xe0\xef\xd3\x6a\xdd\x0f\xe9\xc7\x8f\xd3\x8f\xdf\x90\xe2\x0c\xbf\x14\xff\xfc\x74\xb0\x8a\x9b\xb6\x08\xc8\x0c\x7a\x0b\x39\x97\xdf\xfd\xf0\xfc\xc9\xc5\x1f\x9e\xfe\x65\x59\xbc\x21\xa7\xa7\xa7\x99\xa6\x02\xf7\x40\x20\xce\x9c\x34\xc0\xfa\x22\x76\x4c\x01\xc9\xf0\x54\xc7\xff\xea\x42\x9b\x34\xec\x13\x27\x16\xc9\x24\x9b\x54\x65\xff\x6d\xb5\x33\xda\xfe\xb0\xad\x4a\x4e\xeb\x4b\x37\x91\xb3\xfb\xde\xf5\xbd\xa5\xf5\xa5\x7d\xa5\x63\x71\x2b\x35\x8c\x33\x36\x23\xad\x65\xc5\xc4\x5e\x29\x45\x37\x94\x82\x2f\x6a\x13\xda\x61\xb4\x15\xee\xbc\x2f\x2a\x41\xb1\x19\xa9\xde\x31\x7a\x79\x09\xd5\xeb\x9c\x97\xcc\x9d\xa6\xb7\x7e\x4d\xe6\x63\xa8\x18\xfe\x24\xe8\xc9\x35\x3d\xb9\x6f\x92\x05\x06\xdc\x16\xef\xd7\xed\xf3\xaa\x48\xd6\x85\xa3\xed\x77\x50\xdd\xf2\x19\x6b\xae\x3d\x90\xf6\x53\x99\x00\xc2\xa6\x9e\x8e\xd9\xbe\xfd\x3e\x63\x4d\xc3\x55\x3a\xee\x6a\xda\x96\x1f\x89\xe5\x8e\xfd\xac\x78\xe2\x5f\x81\x32\xa6\x97\xa7\xd7\x5b\x7e\x13\x66\xe6\x56\x8f\xfb\x26\xe5\xa7\x7d\x90\x6d\xc3\x0e\x54\x30\xdc\x91\x5d\xa8\xd6\xa9\x4e\x48\x2f\xb1\x4b\xf4\x41\xaa\x48\x2b\xfd\x84\x32\x7e\x93\x36\xeb\xf4\x76\x16\x7f\x16\xce\xec\x6d\xf9\xf1\xf8\xd5\xc9\xc6\x61\x17\x4a\x7f\x7a\x64\x1f\xaa\x75\xd8\xc9\x2b\xf2\xe9\xc8\x0e\x5e\x91\x4f\xe1\xc7\x7f\x2a\x37\xfd\xaa\xae\xe0\x73\x68\x1b\xe4\x21\x16\x20\x1a\xe2\xb0\xbd\x2e\x4c\xeb\xc8\xb1\x23\xf4\x77\x53\x41\xd8\xee\x11\xd5\x3e\xdb\xf1\x71\xd0\xfc\xe8\x6d\x14\x0c\x17\xba\xf4\x5e\xd1\x16\x53\x1d\xdd\x56\x61\x77\x72\xf3\x68\xba\x58\x91\xc2\xb9\x4b\x17\xb1\xb2\xd3\x3a\x6f\xa0\x04\x6c\x97\xe4\x56\x6d\x9e\x89\xb7\x44\x46\x04\xf9\x25\x98\xcf\xfd\x9f\x39\xc7\x8f\x9c\xaa\x33\x08\xcd\xb9\xad\x9a\xec\x7a\x69\x99\x87\x3e\x69\x77\x5a\xc8\x20\xbf\x52\xc8\x45\x37\x29\xad\xb2\x0e\x9e\xd2\x84\x96\x4b\x4a\xfa\x24\x20\xac\xd6\x52\xec\x0e\x14\xd6\x14\x68\x53\x0e\x8b\x3d\x97\x0e\x14\xae\x57\x84\x41\x5f\x14\x00\xc1\xa2\x27\xc5\xf0\x1f\xa6\x44\x10\x17\x4d\x79\x1d\x5b\xaf\x47\x90\xeb\x67\x1b\x7a\x79\xc5\x1f\x25\x5f\xcb\x4b\x05\x98\x3b\x3f\x2c\xd5\x09\x1a\x19\x5e\x81\xb9\xa0\x12\xd7\xdd\xcc\xdb\x85\x30\x7a\x51\xfd\xf4\x6e\x0a\xfd\x2e\x55\x20\x21\x71\x3f\xa2\x70\xda\x82\x0e\xf4\xcc\xb7\x25\x75\x95\x67\x6e\x93\xd0\x5a\x2e\xee\x86\x84\x34\x27\x53\x79\x0a\x0c\xd1\xa9\x43\xb9\x74\x22\x71\x38\x5b\xb8\x77\x73\x8e\x12\x8e\xb3\xfa\xae\x7f\x5b\x2a\xce\x17\x33\x81\xef\x50\xd2\x5a\x26\xca\xf0\xe6\xc0\x4b\xc6\xc1\x59\x2b\xbe\x23\x62\x34\x99\x19\x85\xc4\x1b\xb5\x19\xe6\xdc\xe4\x2e\xe8\x71\xe6\x7c\x06\xa1\xd4\x51\x45\x02\xda\x5e\x1d\x3d\xec\xd9\x17\x0e\x1b\x26\x74\x8f\xf9\x75\x05\x37\x1f\x06\x39\x1a\x25\xf2\xb9\xc2\x86\xc8\x1e\xc6\xcd\x5a\xed\xca\xc8\x29\x23\x1d\x7b\x44\xe7\x7e\x58\x92\xc4\x08\xd9\x85\xc2\x08\x99\x47\x66\xc0\xcf\xb7\xa2\xd5\xe3\x0d\x29\x6b\x69\x9f\x44\x98\x74\xd8\x77\x89\x67\xcd\x27\xd9\x4c\xb6\x00\x37\x66\x1c\xcf\x78\xa5\x62\x81\xf0\x58\xa2\xfa\x78\xbd\x29\x2f\xa1\x66\x3d\xad\xcb\xcd\xe6\xc6\xcf\xca\x10\xed\x0f\xa4\x73\x4a\x56\x11\x09\x40\x7c\x51\x51\x46\x56\x7c\x23\x8f\x19\xe9\x2d\x6b\xa9\x35\x6d\x8b\xe5\x28\xa0\x6b\xae\x49\x37\x32\x77\x82\xc6\x8c\x14\xc4\x64\x76\xf6\x6a\x92\x60\x96\x2e\xd3\x02\x39\x21\x82\x79\x96\x9b\xcd\xd1\x53\xc4\xaa\xa4\xc9\x4b\x72\x7a\x0a\xa9\x53\x54\xf1\x12\xee\x64\x65\x94\x7c\x26\x7b\xc0\xe3\x9a\xab\x7c\xda\x5e\xd1\x35\xcf\x21\x78\x56\x7c\x57\xbb\x09\x58\xea\x03\x30\xcb\x11\x96\x35\x6b\xa8\x96\x00\x4f\x4f\x1b\x9d\xa1\x85\x2e\x9a\xe5\xa8\x54\xa3\x3f\x64\x10\xb4\x0f\x43\x94\x08\x97\x66\x52\x56\x6c\x0b\xa0\xb0\xab\x2d\x2e\x26\x8e\xa0\xc3\xd5\xe6\x0e\x4d\x73\xbf\xca\x0c\x71\x8d\x28\x78\x2e\x03\xcf\x4d\x69\x83\x50\x08\x99\x4c\x54\xea\x7e\xb6\x33\xd9\xcb\xde\xec\xea\x17\x4d\xb3\xed\x13\x5b\x6c\x7b\x27\xa9\x88\x6e\x25\x88\x2d\x34\x93\xf2\x19\xce\x2e\x56\x57\x64\xf5\xe1\x59\xc3\x5e\xb3\xed\x55\x59\x87\x80\xcd\x50\x48\xcf\xaf\xca\xf6\x6d\x38\x64\x74\x28\x95\x87\x6e\x34\xb9\xc0\x85\xa9\xac\x57\x64\x93\xe8\x64\x40\x56\x73\xa0\x01\x5f\xe7\xe9\x81\xd0\x90\x50\x97\xac\x4e\x11\x16\x9f\xee\x99\x83\xcd\x43\x67\xa7\x6e\x42\xff\x87\x61\x69\x4a\xfc\xba\x38\xe3\x3f\xb1\xe2\x92\x93\x59\xd4\x3b\x92\xc3\x43\x1c\x09\xc4\x83\x02\x6f\x3c\xc5\x8b\x95\xa0\xb0\xbb\x6d\xdf\xd2\xc2\x69\x0e\xb5\xee\x31\xd3\xf4\x92\x9b\x1c\x5c\x98\xbd\x04\x09\xe9\x5c\x46\xa7\xa7\xdc\xcd\x65\xa4\xaf\x3c\xe5\xa2\x73\xc2\x12\x49\x4d\x12\x8f\xdd\x7c\x61\x27\x67\x9d\x56\xed\x75\x39\x41\xe8\xb8\x81\x47\xcc\x87\xa0\x93\xe2\xa3\xbb\x93\x2b\x87\x4b\xf6\xad\x76\xe1\x18\xaf\x8e\x44\x8e\x13\x87\xff\xf1\x45\x0d\x33\x53\x8f\x58\x1f\xb8\x65\xbc\xf9\x39\xeb\x43\x29\x75\xcd\xec\x78\x47\x98\x81\x25\x0f\xf9\xc4\x58\xff\xf0\x5e\x37\x16\xa7\x37\xc7\x9b\x3c\x2c\x84\x04\x61\xee\xe9\x82\x46\x49\xd8\x51\x41\xe4\x09\xfd\xe8\xc5\xc4\x43\xb2\x02\x5f\x8a\xd1\x6e\xb5\x98\x78\x96\x28\x93\x5c\x46\x17\x08\x08\x98\x38\x5d\x8f\x40\x3b\x55\xfe\x81\xdc\xb4\xb9\xeb\x44\x8a\x10\x7e\xab\xb4\xb7\x20\x39\x60\xef\xa5\xb2\x6f\xed\x04\xa3\x02\x93\x42\x11\x9b\xe8\x89\x03\x17\x5e\xcd\x2c\x4a\xda\x3c\x04\xb4\xef\x21\x95\x02\x36\x24\x73\x73\x1c\x80\x42\x05\x35\xad\x2f\x7b\xe0\x0b\x37\xa7\xd3\x24\x4b\x7e\x2f\x57\xd2\x23\x4b\xd8\x06\xa1\x24\x51\x37\xfc\x59\xb3\xab\xfb\x84\x10\xfd\x3a\xfc\xcc\xc2\xae\xe7\x43\xdb\x20\xfc\x54\x06\x45\x0f\xf9\xe9\xaa\xa3\x12\x8b\x83\x8a\x20\x9a\x07\x38\x7c\x90\xb8\xc8\xae\xca\x76\x70\x30\x27\xcc\xcc\x24\xba\x71\x7a\x9c\x4c\x62\xaf\x60\xd7\xfd\xd8\xf0\x6c\xa9\x02\x50\x83\x03\x07\x75\xfd\x13\x1e\xde\x81\x4b\x32\x31\xf5\x21\x5d\x10\xd4\xc5\x0c\x53\xeb\x8f\x5c\x3f\xa4\x50\xd2\x4e\x5b\xaa\x16\xf5\x12\x97\x05\x01\x66\x6f\x31\x5b\x16\x45\x51\x2e\xce\x96\x93\x89\x94\x2e\xc7\x6c\xd1\x2c\xbb\x2f\x72\xa1\x76\xce\x16\x8f\x67\xc5\x8a\xbe\x4d\xc4\x75\xf1\x96\xe4\x8e\x77\x34\x43\x98\x23\x4c\x93\xea\xf8\xc6\x03\x40\x8d\x70\x59\xcc\x70\x5b\x34\x7a\xb5\xe5\xc3\xf6\x41\xa9\x57\xbb\x2b\x9a\x45\xb9\x1c\xd1\xc5\x6e\x59\x2c\xc8\x62\xb7\xc4\xf5\x62\xb7\x5c\x6a\x06\x96\x86\x35\x96\x41\x09\x04\x75\x63\x9a\xeb\x6b\xca\x7b\x10\xf9\x93\x69\x10\xb9\xac\xcb\x1e\x9e\xd0\x0a\xb4\x8c\x3d\xdf\xbf\x27\xab\xe6\x9a\x40\x8b\x6c\x40\x65\x10\x92\xdb\x3a\xcc\x33\xda\x53\xf1\xc5\x84\x3b\x2e\xc8\x52\x33\x25\xbb\xfa\xaa\xac\xab\x0d\xa9\xa0\x8c\x15\xc4\xf5\x70\x84\x45\x0b\x1d\x9b\x9c\xaa\x72\xe7\x26\x7e\x4b\xbb\x1a\xf4\x91\xc7\x44\xe2\x38\xf9\x59\x6a\x98\xfe\xb8\x70\xeb\x60\x38\x3c\x50\x14\x24\x1e\xdf\x7b\xa9\x1a\x87\x31\x65\x1d\x1e\x26\xa8\x90\x18\xd2\x5c\xd6\x6c\x36\x42\x94\x48\x9f\x13\x79\x46\x82\xdb\x2b\x22\x07\x39\xa4\x1e\x4e\xc4\x1d\x44\x77\x55\x48\xe3\xb4\x16\xd2\x16\x4e\x51\xca\xcd\x0c\x59\x35\xd7\x90\x3e\x2d\xd0\x0e\x18\x26\x5c\xd7\xd8\xbc\x32\x39\x24\x9c\x0c\x20\xbe\x02\xcc\xa4\x1d\x52\x6a\xe5\xfc\xe0\xd0\x26\x4d\x11\x68\x33\x9a\xcd\x86\x54\xdf\x96\xab\x0f\x19\x14\x8e\x22\x4e\x42\xd5\x03\xb7\x6f\xb8\x17\x9c\x95\x75\x4b\xc5\xcc\xbc\x88\x09\xad\x16\x4b\xdc\xc6\x1f\x08\x9c\x97\x1c\xfe\x2f\xde\xe6\x04\x2d\x66\x4b\xd4\x39\x34\xd6\x53\x23\xd7\x05\xb3\x46\x97\xd3\xec\xde\x6f\xb3\x53\x32\xaa\x9a\x5b\x36\x25\x9f\x29\x9f\x4c\xe4\xff\x8a\x51\x64\x05\x53\xbe\x33\xf0\x71\xf7\xe9\x8a\x6e\x48\x7e\xc2\xa0\x24\x93\xeb\x93\x10\xbb\xcd\xe3\x56\xff\xb1\x2b\xbe\x27\x8b\x1a\x9c\xd8\x77\x88\x16\x3b\xc9\x81\xb5\xb8\x29\x76\x53\x22\x58\x2d\x41\x63\x77\x72\x52\xd2\x35\x81\x42\xa9\x93\x62\xb1\x84\x31\x36\xb0\x28\x50\x16\x48\x9a\xb9\x09\x69\x66\xce\x0a\xb6\xd8\x2c\xca\xe5\x12\xc9\x1e\x27\x93\x46\x6a\x00\x18\xc2\x4c\x8e\x37\x99\x50\xfd\x68\x04\xf3\x29\x6e\xe5\x3c\xe6\x14\xcb\x59\xcc\x1b\x0c\x73\x98\xb3\xae\xb3\x83\x45\x04\x5a\x50\x66\x39\x8a\xca\x1d\xb8\xd6\x0a\x6d\x4f\x51\xcc\x8e\x56\xd7\xb9\x9f\x65\x98\xe9\x9b\x81\x86\x03\x53\x31\x30\xcc\x59\x0d\x7c\x24\x05\x0e\x88\x68\x4f\x70\x67\xf6\x88\x73\x72\xbd\xe5\xa4\x1a\xf3\x66\x2c\x3f\x18\x13\xf1\xc1\xf8\xff\x65\xa7\xfc\x34\xfb\x7f\xe3\x4c\xc7\x53\x9d\x16\x59\x53\x8f\xb3\xd3\xb7\x50\xe4\x52\xce\xe6\x34\x1b\x03\x76\x8c\x69\x3d\x06\x30\x8e\x33\x5c\x9f\x16\xc4\x45\xb6\xe9\x38\xb3\x25\x3a\xd9\x64\x92\x8b\x9e\x1e\x43\x42\xba\xf1\x27\xca\xaf\xc6\x61\xc8\x01\x43\xa7\xd9\x34\x43\x38\x0c\x51\xa8\xa3\x53\x03\x06\x82\xa8\x94\xad\xbd\xe3\xc3\xd8\x43\xcc\x0b\x9d\x47\x57\x97\xe9\x95\xe9\x87\x17\x6c\xe9\xc4\x22\xb2\xe5\xe8\xcc\xe8\x6e\x42\x3b\xaf\xae\x83\xa1\xeb\x68\xba\x15\x71\xe3\x14\x12\xe1\xae\xf4\xd8\x38\x02\x9f\x17\x1f\x89\x12\x5c\x4b\xf0\xb9\xe1\x60\x14\x76\xb1\x82\x6b\xe8\x28\xfe\x8a\x84\xfc\x95\x29\xff\x88\xc5\xb1\x40\x23\x62\x4a\x3c\x26\xcb\x35\xf7\x11\xd1\x9f\x91\x5f\x7a\x32\xf1\x6a\x1f\x1e\xaf\x04\x65\x43\x49\x9e\x72\x84\xa5\xbf\x8e\x20\x6a\x3a\x55\xbb\x9f\xea\x33\x69\x38\x1f\x69\x23\x4e\xbf\x55\xfd\x88\xc0\x71\xcf\x39\xe5\xb8\x59\xd6\x76\x96\x49\x59\xbf\x17\xdc\x77\x96\xe7\xbf\x17\x52\x9f\xab\xe0\xff\x3a\xa0\x20\x09\x50\x70\x74\xfb\xbd\xac\xe1\x17\xae\x6a\x2b\xb5\xf2\x91\xa8\xe8\xb8\xf3\x1d\xea\xdc\xc0\xd9\xb2\x10\x04\x33\x34\xe2\xae\x2e\xe0\x9a\xf0\xf2\x59\xc3\x8c\x23\x0f\x43\xd2\xb0\x62\x56\x72\xce\xa7\x17\x5b\x6d\x91\x70\x73\x57\xe3\x1a\xcd\xb9\x94\x0c\x04\x59\xa8\x23\x3d\x7f\xe2\xab\x7e\x5e\x77\x60\x4a\x04\xc1\xbd\x2c\x3a\x1d\xb9\x51\xee\x4c\x46\xb9\xcb\x5d\x50\x83\xe9\xac\xd6\x82\x7a\xd7\xba\x7e\x93\x7a\x67\x73\xc5\xc8\xb7\xe9\xe9\x7e\x97\x88\x8c\x13\xa7\xc9\x96\x15\x17\xf4\x56\x55\x6d\x30\xb5\x11\x69\x31\x7b\x40\xad\x07\x16\x75\x25\x33\xba\x1c\xd5\x0b\xba\xd4\x9a\x8c\x46\xa0\x36\x97\xb7\xc3\x6b\xf6\x6a\x27\x36\xe7\x79\xcd\x1b\x9f\x28\x36\x82\xad\x4e\xa1\xae\x8c\x61\x3b\x98\xf5\xb7\x6f\x79\xdf\x26\x23\x4e\xed\x4d\x77\xa7\x49\x72\x40\xa7\xfe\x49\x46\xb9\xbb\xa2\x59\x1d\x37\x50\x52\x49\xa6\xab\x48\x5b\x23\xfe\x7e\x9f\xd5\xd0\x81\xf3\xec\xbc\x57\x77\xf5\xac\x61\xcf\x2b\xb0\xf4\xcf\xc3\x57\xe7\xe1\x83\x79\x68\x15\x89\xf8\x8a\x1e\x55\xa3\xe3\xe0\xf4\xb2\xac\xcb\x4b\xc2\xd4\x23\x5b\x2f\x34\x71\xfd\x09\xb8\x25\xaa\x83\xd3\xca\xb8\x8e\x29\x96\x59\xaa\x6e\xab\x0c\x49\xcf\x05\xef\x5d\xab\xde\x45\x5a\x24\x6d\x09\x8c\x07\x90\xc6\x7d\x12\x78\x97\xc5\x26\xdd\x70\x1c\x87\x65\xbf\xd5\x9e\x18\x27\x33\xdf\xff\x22\xaa\xeb\xee\x49\x26\x11\xf8\x42\x3f\x83\xd0\xd7\xed\xae\xb3\x39\xf3\x67\xa3\xf2\x13\xf5\xc8\xf9\xa1\xa2\xc0\xcd\x34\xfa\xcb\xa8\x41\x31\x29\x12\x9a\xcb\x40\x78\xf3\x6e\x67\x4f\x23\x8a\x46\xbe\x16\xb4\x4f\x3a\x03\x01\x2c\x50\x98\xa2\xde\xd6\x0e\xf8\x95\xab\x82\x06\xcd\x90\x86\x03\x87\x88\x78\x58\xab\x5a\x56\x12\x23\x5f\x92\xb6\x2d\x2f\xc9\xbb\xa6\x4f\x3d\x1e\xf8\x38\x3b\x21\x22\x38\x03\x8c\x69\x33\x04\x55\xba\x12\xba\x02\xc9\x66\xb8\xe3\x00\xbd\x4c\x8c\x74\xec\x38\xb2\xc7\x48\x4a\x05\x3e\xc5\x1d\xc7\x23\x0e\xc7\x75\x6d\x8a\xe7\x04\x2a\x4e\xe8\x36\xc1\x4d\x1e\xd3\xab\xce\x38\xa3\xa4\x08\xe5\x4b\x18\xce\xde\x9e\x82\xe7\xf5\x47\x21\xee\x97\x3c\xe5\x82\xa2\x54\x1e\x20\xde\x09\xa9\x86\x20\x12\x16\x7f\x30\xbc\x7f\xff\xf6\x02\x5b\x6d\x2a\x18\x1b\x45\x5a\x79\x4d\xd4\xe0\x99\x31\x65\x96\x1f\xc9\x8f\xa5\xa9\x47\x13\x82\xc6\xce\xba\x87\xb4\xb9\x7d\x2b\x05\x8a\x39\x63\xf2\x78\x91\x23\x87\x0a\xdf\xc7\x9b\x11\xeb\x79\x12\x27\x11\xea\xbd\x18\xde\xdf\x31\xad\x25\x74\xac\x20\x81\xb9\xde\xdd\xb6\x66\xf3\x82\x2c\xd8\x72\x29\x88\x93\xfc\xab\x57\x1f\x2b\x5f\xeb\xeb\xba\xe7\xb0\x47\xe6\x56\x43\x63\x12\x28\xb0\x58\xca\x9a\x35\x5e\xa8\xdc\x70\xd2\x80\x40\xcd\xdd\x16\xa5\x96\x38\x77\xc5\x80\xf6\x0c\x6f\x5c\x7c\xdb\x4d\x26\xf9\x26\x02\x93\x90\x54\xdf\x92\xbc\x3f\x9f\x0c\x84\x9f\xc8\x46\x6c\x80\x40\xd6\xc5\xec\x41\xfd\xb0\x05\xe1\x8f\x16\x64\xd1\x14\xe5\xa2\x5e\x2e\xa5\x1c\xb2\x73\x64\xb4\xcd\xa2\x59\x6a\xcf\x74\xda\x3e\xfd\xfb\xae\xdc\xe4\x6c\xd1\x2c\x31\x85\x5a\x11\x32\x93\x92\xf5\xc9\x0b\x64\xf2\x46\xb2\x3c\x89\x28\xe4\x87\xd2\x6f\xc8\x5e\x1a\xa7\xd9\x5c\x3d\xa2\xd5\x69\xf6\xdb\x2c\x24\x6b\xca\x1d\xda\x37\xfe\x05\xec\xb5\x75\xa8\x5e\xf0\xa5\x9b\x4e\xab\x2e\xfa\xf8\x37\x8e\x46\x4e\x5a\x0e\x21\x84\x9d\x33\xe0\x7d\x3f\x13\xe7\x26\x94\x8e\x14\x35\x9a\xbb\x9c\xb9\xb8\x2c\x65\xdb\xd7\xa9\xb6\xc6\x6f\xce\x99\x53\xc1\x9c\x84\x53\x8f\x9c\xa0\x79\x2b\x18\x1c\xa8\xd3\x60\xda\xd9\x42\x0d\xd6\x23\xdd\xbd\xba\xfd\xa2\x0a\xd6\xd1\x12\x99\xd2\x10\x07\x03\xf5\xdd\xc8\x7c\xec\x26\xc6\x32\xce\xe9\x7d\x9f\x7b\xfe\x2e\xc1\x37\x4e\x99\x85\xc0\xd1\x9d\x7c\x1a\x3f\x8d\x20\x89\x50\xda\x2f\xde\x4c\xc9\x73\xaf\x3f\x6a\x42\xde\x17\xd6\xd1\xdf\x73\xd3\xbf\xd0\x87\xcb\x8c\xef\xbd\x77\x00\x62\x42\xb5\x8e\x83\x85\x6e\xee\x80\xc1\x44\x01\x24\x8e\x35\x8a\x62\x05\xec\xc2\x43\xc5\xcf\x71\x8b\x0f\xbf\x72\x22\x1d\x42\x3d\xd4\x62\x89\xfa\x02\x1c\xec\x2c\x2c\x71\x3a\x6e\x7c\xd7\x1a\x19\x9b\x20\x87\x60\xe0\x34\xeb\x70\xeb\x0e\xa5\xef\x3f\xaf\x27\x0f\x45\x9c\x73\x7f\x2c\x8e\x38\x9f\xb8\x48\xe2\xa9\x3f\xc8\xa7\xf1\x7b\x25\xdc\xa0\x64\x90\x86\x9d\x43\x4c\x86\x8f\x9b\x48\xfc\x9d\x9d\x4d\xe2\x82\x1b\x82\x5f\xdc\xbc\x17\x8e\x89\x9e\x1d\x78\x56\x60\xb8\x3f\x0a\xdb\x64\x70\xa4\xf3\x6b\x70\x86\xa2\x41\xef\x9c\xe0\x6b\x67\x16\x49\x95\xd4\x91\x40\x4d\x7d\xea\xc0\x35\xa9\xec\x1a\x04\x6d\xea\x0b\x33\x55\xd7\x1d\x69\x38\x35\x8a\x6d\x68\x3e\x36\x42\x60\xcf\xa7\x27\x5e\x54\x82\x49\xa2\xa2\x42\x5a\xb5\x65\xef\x9e\x39\x19\x60\x54\xfb\xc9\xf3\xb8\x28\x5b\xfe\x68\xf5\xa1\x6e\x3e\x6d\x48\x75\x49\xaa\x3f\xf9\x11\x8c\x4e\x3c\xaf\xcd\x64\x14\x23\xc8\x79\x3f\x53\xb6\x9c\x5b\xee\x64\x41\x96\x4a\xef\xf8\xee\xdf\x32\xec\xef\xc9\xa1\x2c\xab\x71\x08\x1d\xad\xde\x35\x52\x45\xd4\xcf\xf8\x5d\x4b\xb7\xbb\xc5\x52\xff\x26\xbc\xb4\x51\x06\x89\xa8\xaf\x30\x7b\x69\x90\x52\x46\x8d\x18\x25\x5a\x1d\x4c\xd7\x3a\xf0\x5d\x4b\x78\x32\xfb\x8e\xfb\x45\xc1\x23\x89\x39\xfc\xc6\x1a\x65\xcd\x77\x7c\x59\x10\x1f\x0a\x26\xe5\x4c\x42\x34\x0e\x3a\x54\x9e\x23\x71\x9f\x5e\x4d\x2f\xd5\xad\xae\x26\x4c\x82\x8a\xc5\xfa\xbd\x53\xaa\x38\x10\x96\x65\x78\x4c\x0a\x72\xd0\x51\xcf\x28\x09\x89\xbb\xcf\xaf\x52\x7e\x3b\x0a\x70\x61\x34\x54\x10\x12\xdc\x27\x5d\x1f\xe6\x5c\xeb\x62\x7d\xdc\xc1\xef\x1c\x46\x55\x76\x70\x04\x93\xaa\x2d\x3e\xb6\x12\x99\x74\x36\x3e\xe2\x4b\xfb\x89\x9a\xc7\x81\x8f\x54\x2b\xcb\x11\xeb\xe9\xa7\x08\xf6\x30\xfb\xeb\xa4\x43\x93\x89\xd0\x3c\x0d\xed\xcb\x72\x0b\x0a\xfa\x31\x85\xb4\x67\x42\x6a\x20\x6c\x5c\x7e\x2c\xe9\x46\x90\x90\x0c\xd9\x0c\x56\xaf\xfa\x4e\xb9\xad\x20\xbd\x3d\x36\x43\x32\x23\x9c\x51\x92\x8c\x91\x31\x7d\x2d\x88\x09\x20\xb0\x62\xb3\xe3\x5a\x28\x9b\x00\xc3\xf2\x44\x90\x1a\x08\x8f\x18\xc4\xae\xd0\xcc\x78\x5d\x6e\x53\x2e\x5c\x31\x71\x26\x0b\x41\x98\x97\xc6\x92\xd5\x49\x88\x3c\xff\xb7\xa4\xf6\xcf\x0e\xe0\x81\xf8\xee\xe8\x54\xd9\x97\x11\x0d\x75\x88\x14\xf4\x24\x84\x5e\x6b\x5e\x5f\x90\x25\x72\x3c\xaa\x16\xfc\x00\x4d\x0e\x0c\x24\xd0\x23\xa6\x45\x2d\x90\xcb\x60\x15\x85\x94\xcd\xe2\x59\x9a\x21\xa2\x52\xce\x4d\x04\x88\x1d\x9a\xbb\x37\x71\xc7\xa9\x4f\xcf\x5c\xc0\xf3\xc5\xa1\xdb\x53\xb0\xdf\xcf\xeb\x75\xa3\x2f\xcf\xcd\x55\x7b\xb1\x55\x39\xaf\x01\xfd\x9f\xa9\x17\xcc\x7d\x41\xc0\x1e\xb8\xde\x90\xcf\xf4\xa3\xb2\xa6\xb8\x1f\xce\xdd\x0f\x2f\xb6\xb2\xe0\xb4\xce\xa4\x5d\x2c\x96\xc7\x6c\x16\x18\xab\x5d\xba\x05\xae\xa3\xaa\x78\x75\x6e\x5d\xaa\x5f\x7c\xf7\x16\x2c\x98\xf1\x2c\x94\x71\x93\x2b\x8b\x1f\x4b\xbd\x8a\x1d\x5b\x83\x49\x98\x58\xff\x70\x19\xf2\xd2\x5c\xa8\x46\x4b\x94\x8a\x90\xe9\x49\xda\x73\xf7\x95\xc8\xbd\xed\x5b\x8c\xf3\x36\xd0\xd5\x41\xa7\xfd\x78\xa4\x37\x1f\x4c\xa9\xb4\x7d\x4b\x36\x6b\xa5\x30\xe0\xb4\xd4\x99\x9f\x40\xc7\x95\x73\xb0\xad\x8a\x49\xb9\xf2\x1a\xa8\x48\x26\x93\x1c\xda\xd4\xfb\x3d\x31\xad\xde\x97\x2d\x79\xa9\x39\xb3\xfd\x5e\xde\xff\xf0\xc6\xf0\x6b\xee\xd5\x1d\x4f\xfc\xcd\x57\x9d\x38\x3b\x6a\xe2\xac\x77\xe2\xec\xd8\x89\xbb\x7b\x1b\x38\xa6\xcc\x0c\xe7\x12\xa2\x92\x32\x18\x87\x57\x48\xd8\x4c\xf1\x4b\xb3\xf4\xb9\x32\x66\xe7\xe1\x40\x8c\xc5\x6c\x89\x6b\xf9\xd7\xd9\x12\x53\xf9\xd7\x37\x4b\xdc\xc8\xbf\x7e\xb3\xc4\x65\x71\x2b\xd8\x81\xf9\x2d\xad\xe6\xb5\xac\x3e\xca\xba\xce\xf5\x4e\x53\x7f\x68\x05\x2c\x5e\x79\xce\x8e\x0a\x95\x19\xa6\xe8\x3c\x57\x5a\xb6\xe8\x5c\x8a\x83\xa5\xf5\xbb\xee\x4b\xac\x94\xb8\x2e\x82\xe3\x95\xde\xf5\x2b\xcf\x0b\xe1\x39\xe8\x16\xd1\x5c\x0f\x12\x9d\x70\x77\x10\x96\x18\x64\x93\x1a\x64\x93\x1c\xc4\x7a\x61\x35\x2a\x83\x91\x46\x44\x59\xed\x49\x7a\xa6\xd4\xb8\xc5\x1b\x84\xc1\x61\x4f\x8c\x8e\x1b\x7d\xbc\xb7\xcd\x76\xb7\x01\xe3\xbc\x6c\xd9\xe0\x12\x6f\xf0\x2a\x0c\x7e\x09\xdb\x25\xa8\x11\x98\x08\x40\x6f\x4d\xd7\x79\x50\xe1\x5c\x3e\x47\x4e\x99\xf6\x07\xf4\xa1\x7c\x6a\xd1\xc1\x54\x4e\x95\x2f\x4c\xb1\xf6\x8b\xb2\xaa\xde\x35\x7a\x82\x1c\x37\x30\x5e\x67\x52\x1f\x95\xea\x83\x74\xeb\x52\xb6\x0e\xc3\x25\x9d\x46\xe9\xb5\x9c\x78\x07\xda\xbd\x57\xf6\x7b\x35\x73\x5a\x9d\x40\x1d\x84\x4a\x27\xda\x56\x46\x2d\x95\xae\x4c\xbc\xc0\x8d\xb8\x68\xa9\x9c\x5f\x73\xee\x83\xa5\x41\xe7\x8d\xce\x66\x0b\x00\x9a\x2b\xa7\x42\xdb\x01\x26\x68\x5e\x9f\xc7\x8f\xe5\x49\x58\xc8\xef\x96\x5d\xfa\xcb\x70\xd1\x1e\x4e\xf4\x71\x0c\x93\x09\x97\xb3\x95\xb9\xa9\xc2\xad\xac\xc3\x5d\xac\x13\x1b\x58\xdb\xbd\x8b\x3c\xcd\x72\x82\xc1\x5d\x44\x6c\xdf\xb8\xbf\x4d\x1d\x79\x6a\xc7\xcd\x7a\x96\x90\xd8\x05\x5a\xd4\x93\x49\xad\xd6\x35\x99\x04\x6b\xa2\xe8\x5c\xbe\x2b\xe8\x74\x4d\x37\x9c\xb0\x74\xbd\x78\xd8\x6f\x92\x04\xb6\xdc\x0f\x69\xa8\x47\x1d\x7e\xee\x88\x5a\xe9\x83\x1b\x89\x2c\x2e\x81\xd5\x48\x17\x5e\x6b\x2f\x09\x2f\x47\x7e\x6c\x08\x99\x4c\x3c\x63\x06\xb8\x19\x39\x1a\xd3\x2f\x1e\x3b\xbc\x99\x8e\x1f\x5b\xcb\x4e\xff\x38\xc8\xe3\x79\x99\x80\x2f\x56\xe5\xea\xaa\x27\x0b\xbe\xd2\x48\xc1\xae\xbf\x68\x9a\x0f\xbb\xed\x63\x68\x2c\xf9\xb9\x63\xd9\x36\xd7\x84\x04\x46\x67\xbb\x3a\x7d\x59\x09\x46\x07\x9f\x9c\x99\x44\x04\x80\x36\x8a\x29\x8b\x30\x32\xc1\x96\xb9\x83\x8c\x98\x1f\xa7\xc3\x12\x6e\x6f\xf6\xc8\x0c\x4d\x89\xe2\x93\x19\x1a\x35\xc6\x17\x5a\x0c\x45\x31\x83\x5c\xfd\x87\x19\x3c\x97\x43\xd1\x15\x6b\x2e\x42\xf3\x12\x41\x23\x2f\x5d\x77\xba\x4a\x4d\x34\x7f\xa7\xde\x35\x3b\xb0\x82\x33\xb5\x02\x39\x43\xb9\x86\x38\xde\xbe\xa7\x8b\xa1\xbd\x0c\x3e\x11\xd8\x0b\xcb\x1e\xa9\x82\x5e\x27\x45\x51\x9b\x52\x08\x16\xd3\x16\x35\x9c\xaf\x0f\xe4\x46\x8b\xdc\x27\x74\x32\x61\x46\xfd\xa9\x2b\xff\x24\x57\x54\xa3\x39\xed\x12\xd9\x66\xfc\x69\x0c\x30\x8a\x31\x32\xfb\x5b\x83\xf5\x6d\xa2\x57\x62\xee\x79\x5d\x1e\x68\x4c\x4d\x81\x20\x77\x1b\x71\xe9\xf8\x57\x34\x3d\x1b\x09\x46\xd5\x52\xd5\x1a\x34\xb2\x25\x50\x35\x70\x37\x84\x53\x67\x8a\x9c\xb5\x45\xe3\x15\xf5\x91\xdc\x4b\xa9\x0c\xaf\x86\xdd\x3a\x29\x8a\x9d\x2e\x18\x34\x99\x48\x13\xb4\xfe\x3d\xdd\xda\x0a\xee\x78\x55\xec\xa4\x83\xa4\x98\x45\x2b\xe1\x52\x15\xb7\x6a\x37\xe6\xca\x86\x8c\x7d\xa6\x7c\xbe\x20\x4b\x1c\x71\xf0\x73\x82\x53\xbc\xff\x9c\x47\x8f\x05\xfd\x9a\xef\xe0\xb1\x5f\x62\x7e\x83\x99\x1a\x38\xcb\x30\x0b\xc6\x5c\xe2\x88\xf7\x9e\xaf\x70\x8a\x6b\xd7\x5f\x47\x63\x82\x5f\x12\x8b\x86\x3d\x39\xc3\x57\x65\xab\x6e\x32\xf1\x2b\x12\x17\xe4\x43\xc3\x76\xcc\x4f\xce\xba\x51\xb4\x55\x15\xc2\x55\x27\x00\xb8\x2d\x5a\x28\xae\x84\xaf\x9c\xfd\x6f\x0f\xd6\x9c\xda\x22\xbc\x2e\xae\x64\xb3\xeb\x62\x5d\x14\xc5\x4a\x6c\x8b\xc6\xbe\x35\xe6\x68\xbf\x97\x7f\xaf\xf0\x16\xe9\xdb\x30\xa7\xb1\x34\x55\x14\xc5\xfa\x9c\x06\xb2\xd4\x9c\x06\x32\x0a\x32\xd9\x85\xed\x22\x28\xc2\x14\x16\x71\x63\xb1\x60\x7d\x17\x2c\x58\x7f\x45\x2c\x58\xc1\xc0\xdb\x9f\x83\x0a\xdb\x34\x26\x5c\x25\xd0\xc0\x1c\x9d\xab\xe0\xe8\x5c\x25\x8f\x8e\x8b\x32\xb3\x04\xca\x5c\x7b\x18\x73\x3d\x99\x08\x31\x73\x1b\xe0\xcd\x1a\x73\x7c\xe3\xc2\xdf\xfc\x58\xe1\xad\xf8\x71\x13\x4a\xbd\x83\xc4\x30\xa1\xcf\x24\x9a\xb4\x62\x56\x90\xa9\x82\xac\x21\x70\x92\xfc\x2a\xd7\x0e\x99\x87\xd3\xae\x4b\x2d\x5f\x7e\xe5\xc1\xca\x71\x67\xc9\xfd\xae\xd8\x12\xf9\xd5\x37\xf4\x08\x45\x8d\xeb\x51\x4c\xf9\xb9\xd4\xa0\xbe\x10\xac\xc8\xc8\xcb\x07\xea\xce\x23\xf7\x87\x28\x00\x4b\x25\x6b\xf3\xdd\xbf\xa5\x12\xf4\xdb\xc1\x55\xcb\x15\x47\x91\x22\xdf\x24\x23\x45\xbe\x71\x2b\x83\x7d\xe3\x54\x06\x6b\x55\xb4\x7a\x22\x97\x22\x30\xeb\x46\x1f\x28\x03\x5b\x54\x19\x66\x65\xce\x30\x49\xc7\x6e\xb6\x6e\xc2\x45\xc8\x54\xcc\x7f\x4e\x7d\xac\x14\x87\x69\x67\x7a\x20\x70\xdb\x34\x3c\x0f\x7e\xcf\xf3\x70\xcd\xd1\x72\xa7\x17\xbc\xfc\xe0\x14\x39\xc1\xc1\x17\xa8\xc3\xdf\xdd\xa9\x68\x87\x68\x61\x2c\x2c\x00\xa7\x78\x4c\x00\x29\x74\x85\x1c\x53\xc8\xdf\xb5\xe3\x26\x34\xfa\x9e\x35\x9f\x6f\xa6\xe4\x33\x27\x75\xa5\x02\xa7\x21\x26\x8d\x54\xf8\x56\x90\x8b\x79\x14\xd4\x02\x79\xb5\x75\x80\x92\x60\x45\x0d\x02\x98\x08\x4c\xa7\xa0\xb6\x4a\xd8\x26\x7f\xed\xf7\x6e\x95\x7a\x9d\xba\xd1\xfb\x05\x67\x46\x3d\xd1\x79\x45\x8d\xff\xb5\x94\x33\xec\x9f\xb2\x3f\x05\xcb\x9d\x6a\xed\x66\x36\xed\x30\x23\xdb\x4d\xb9\x22\x83\x46\xa5\x77\x57\x64\xcc\x48\xbb\xdb\xf0\x71\xb3\x1e\x97\xe3\x96\xb0\x8f\x84\x8d\xff\xbe\x23\xec\x66\x9c\xaf\x1b\x36\x2e\x37\x9b\x71\xec\x21\x37\x06\x3d\x39\x1a\xd3\x76\x4c\xaf\xaf\x77\x70\x88\xa7\xe3\x77\xcd\xf8\xba\xa9\xe8\xfa\x66\xac\x56\xdd\xe2\xf1\x4e\xc8\xc8\x3a\x97\x71\x86\x3a\xa9\xf5\xd2\x71\xea\x90\x9d\xb9\xca\x33\xd3\x75\x86\x87\x5c\xc0\x44\x0b\x2f\xc2\xa0\xcf\xb7\x4c\xc9\xb1\x53\x46\xca\xea\x75\xbd\xb9\xc9\x11\x96\x39\x08\x1f\xf1\xc7\xaa\xe4\x6e\x4c\xf2\xc3\xd0\x5f\x53\x19\x7d\xaa\xbf\xb5\xc4\x76\x0c\x5a\x06\xc7\xef\xb7\xc3\xd2\x39\x3b\x2d\x94\x8a\x7b\x22\x8e\x2c\xd6\xbb\x9c\x05\xb4\x3f\xd8\xcf\x91\xc5\x2d\xe7\x1b\xac\x53\x71\x6b\xc3\x9a\x1c\x3f\xef\x49\x20\x96\x44\x12\x4c\x52\xd9\x68\xf6\xfb\xf0\x31\xa9\xe4\xd3\x78\x0e\x67\xa8\xf3\x53\xde\x45\xe3\x70\xcc\x3b\x7c\x11\x03\x27\x5d\xfd\xe4\x91\x2a\xb3\xed\xf8\xf0\xdf\xca\x48\x9a\xf9\xc9\x4c\x88\x5a\x50\x85\xd7\x8f\xc3\x99\xf7\xbb\x92\xbb\x9b\x28\x3e\x94\x77\x8c\x8c\x74\xbe\x48\x94\x93\x3f\xb6\x2f\xf9\xa9\xdb\x5b\x5b\x7e\xec\xd9\x7b\x9d\xaf\xce\x71\xdb\x77\xd3\x08\x3a\x2b\xf5\x12\x0a\xea\x1a\xde\xba\xf0\xb8\x90\x5f\x9a\x0f\x24\xcf\xc4\xb7\xe2\x9e\xe8\xcf\x51\xd7\x81\xe0\x83\xd3\xa3\xaa\x46\xce\x73\x5b\x09\xeb\xbb\xa8\x44\x35\xd4\xbe\xb8\xa8\x68\xdb\x36\x2b\x5a\x72\xa2\xea\xa1\xab\xfc\xdb\x3d\xc8\xae\x65\xda\xdc\x81\x58\x2a\x16\x4f\x49\x93\x81\x47\xe3\x88\x4d\x26\xcc\x58\x5e\x40\xbe\xbe\xd8\xd5\x8c\x5c\xd2\x96\x13\x26\x26\xa0\x42\x7b\x22\x02\x7d\xad\x42\x7e\x6c\x6b\x67\x95\x3a\xf0\xe7\x13\xdd\xe8\x1c\x44\x31\x85\x4f\x8e\x63\xee\xac\x3e\x30\xe4\x4e\xf2\xd2\x00\x55\xb0\x9b\x55\xc0\xbe\xd6\xce\x0b\x33\x73\x1d\xf6\x5f\x2d\x1d\xbe\xf0\xd3\xe0\xcc\x13\xce\x32\x82\xa6\x7f\xab\xd2\xe0\x58\xf0\x0b\xb6\x21\x43\x10\x91\xe4\xdd\xc2\x89\x73\xd8\x8f\xeb\xbd\x15\x15\xc2\xf2\x65\x1d\xea\x3a\x84\x7f\x20\xc5\xdf\x89\xbe\x56\x7f\xd6\x45\x2a\x15\x99\xcf\xd4\xc7\x99\xb3\xae\xe0\x0d\x4a\xdf\xae\x27\xb3\x2f\xbb\x04\x57\x1b\x4a\x6a\x7e\xaf\xa5\x15\x19\xcb\x91\xc6\x39\x84\x98\x87\xb7\x60\x70\xff\x65\xc8\x10\xba\x67\xf0\xd9\xbc\x37\x0e\x05\x47\x24\xb7\xf7\xbd\xa4\xbd\xe1\x6b\x85\xea\x99\x8e\x4c\x94\x03\x3a\xfb\x6f\xa9\x4a\xf8\x69\x08\x3c\x73\x75\xa9\x49\xcb\xf6\xcd\x7b\xc9\x0b\xc4\xdb\x10\x2d\x8a\xed\xea\x69\x53\xaf\x5c\xec\xf3\xc0\x20\x10\x03\xe1\x3f\x1d\xc6\x8b\x04\xfb\xe4\x53\x11\x0d\x87\x47\xd6\x19\xfa\x20\x2a\x01\x2f\x53\xd8\x3f\x5d\xce\x69\x43\xeb\x0f\xed\x57\x63\x97\xee\x88\x23\x31\xf1\x0c\x77\x0a\xae\x45\x41\xea\xa3\x37\x30\xa2\xa5\xdb\x64\x7a\x01\x4f\xa2\xf0\x37\xac\x88\xde\x45\x18\x1a\xea\x5e\x74\xc6\x05\x2e\x20\xd9\x2d\xe1\xf6\x86\x33\xe7\xd2\x0f\xf7\x93\x47\x4d\x4a\xf2\x9a\x2d\x98\x9f\x9c\x61\x41\x79\xe6\xef\x72\x0e\x92\x0b\xc2\x00\x68\xf8\x0d\x7f\x09\x7c\x78\x9e\x2b\xb7\x7a\x9c\xc2\xa2\x4c\xe5\x09\xc8\x70\x56\xd1\x4a\x8c\x92\x01\x75\xf9\xf1\x90\x46\x5e\x29\xe4\x1d\xbf\x7d\x2f\xe1\xa1\x93\xcc\x3f\x4e\xf0\x7f\x21\x51\x9d\x54\x5e\xa4\x69\xbf\x3a\x7f\x03\x11\x88\x47\x35\x55\x16\xe5\x81\x16\x4a\x8a\xfb\x5e\x59\x29\xfd\x39\xa4\x1d\x3b\x82\xd0\xd6\x44\x04\x6b\x10\x35\xd9\x97\x73\x07\xfa\xf9\xb1\x8c\x32\xca\xdf\xb1\x9f\x74\xb3\xa4\x72\xc5\xe0\x28\x68\x50\x88\x01\xd0\x9b\x28\x80\xf7\xd9\x66\xd7\x5e\x01\x07\x3b\xdc\xa4\x38\x99\x79\x9e\x92\xaa\x35\xa4\xcc\xc8\x19\xb8\x02\x2d\xf8\x72\xbf\x5f\x2c\x8d\xfe\x4e\xa7\x41\x11\xa8\x67\x73\x96\x96\x30\xd9\x56\xe5\x2c\xe5\xd6\xaf\x24\xb2\x46\xc2\xd3\x3e\x3f\x48\x3d\xfe\xc1\xfd\x1f\x99\xf0\x2e\xa3\x75\x91\x11\x7e\x4e\x0c\x3c\x59\xb0\x25\x0e\xac\x95\x4e\xd0\x3b\x58\x2b\x9b\xc3\x10\x3a\xc3\x4d\x6f\x8d\x05\x48\x4f\x64\xc2\xa8\x74\xb6\x8f\xe4\x91\x58\xb0\xa5\x31\xa1\x96\x72\xb9\xa9\x66\x42\x2e\x63\x08\xb7\xc5\xec\x41\xfb\xd0\x58\xc9\xdb\xd3\x53\x04\x9f\xb8\x57\x84\xcb\xa7\x95\x8b\x76\x09\x8a\x9d\x91\xcc\x3e\x96\x3e\x6b\x0b\xb6\x1c\xed\x94\xab\x80\xec\xe9\x85\xdf\x22\xdf\x81\xda\xc7\x49\xf7\xe1\xe2\xe1\x90\x3b\xaa\x55\x7e\x91\x05\x5f\x82\x23\x8c\xc7\xa0\xca\xcc\xc6\x89\xdd\x10\xdb\x30\x4d\x8a\x15\xb9\x00\xd9\x28\xec\xc7\xf8\x25\xe6\x3c\xc4\xad\xe4\x92\xd2\xc9\x2b\xfd\x87\x76\xf2\x0b\x31\xf5\xc5\xf2\x40\xae\x04\x5c\x16\x43\x38\x01\x49\x87\x7c\xf6\xbc\xdc\xef\x1b\x5b\x1a\x63\xbf\x87\x28\xc2\x9c\x40\xa1\x5b\x8d\x3f\x18\xa2\x50\xc1\xbb\x13\x2a\x52\x39\xcf\x0d\x63\x8f\x3a\xe6\x6c\x8e\x38\xdf\x91\x64\x27\xd0\xa7\xf6\x1b\x25\xa1\x5b\xa3\x2e\xe1\xa3\xd5\x83\x60\x03\xa9\x26\xdc\xcc\x1d\x11\x9f\x84\x4d\x26\x28\x5c\x16\xb3\x07\xe5\x43\x66\x92\x22\x69\x90\xb6\x05\x83\x54\x79\xeb\xfc\x44\x90\x9d\x76\xf0\xb0\xd5\xb9\x17\x38\x8c\xc0\x67\xa3\x0d\x50\x44\x82\x16\x89\x4b\x99\xd6\x3b\x32\x52\x79\xa3\x5a\x01\x49\xbf\xa5\x84\xb7\x74\x4a\x08\xdf\x19\x98\x1b\xfb\x6b\x8b\x3a\x7a\x10\xfa\x14\xe1\xe6\x08\xe8\x37\x51\xc4\xee\x4d\xbd\x1a\x46\x5d\xa5\x5b\x2e\x8a\x44\xf0\xae\x22\x62\x3a\x05\xa4\xd6\xb9\xa7\x12\x01\x00\x89\xe1\x51\xa1\x66\xad\x4b\x2d\x0a\x7f\x47\xf5\x73\x19\x90\xb9\xdf\x9f\x50\xbb\xf9\x8d\xa2\x33\x1f\x69\x4b\xdf\x6f\x82\x25\x7e\x0b\xa5\x39\xc4\x48\x50\xf5\x59\x52\xb4\xc6\xa5\x68\x26\x53\x62\xbb\xc4\x9b\x62\x17\x1c\x19\xc0\x86\x8d\xda\xcc\xc9\x24\xdf\xa8\xdd\xc2\xaa\x14\xf4\x0e\xa1\x2e\xbd\x05\x65\x9a\x30\x48\xa4\x1e\x32\x29\x0f\x80\x6b\xea\xba\xe8\xf7\x51\x61\x22\x9d\x8e\xc2\x54\xf2\x15\x30\x79\xe4\xd1\x66\xd3\xeb\x03\x1e\x51\x6a\xb2\x1c\x71\x2f\xe3\x18\x8e\x74\x48\x7e\xda\x55\xbf\x83\x30\xcb\xee\xa1\xb1\xc4\xd5\x85\x94\x70\x10\x23\x22\x64\x20\xb1\x45\xe7\xd8\x11\xdb\x4e\xd0\x48\x8d\x27\xaf\xed\x00\x4c\x7d\xdc\xa0\x0c\x23\x49\xc7\x23\x0f\x8d\x57\xa4\xef\xa9\xe1\x5d\x25\x48\xc7\x2c\x60\x45\xf9\x67\x0f\x6a\x4b\xf4\x4d\xea\x52\x0a\xa9\x4b\x25\x42\xd2\x41\xf2\xa4\x68\x39\x45\x4e\xa0\xb0\x5f\x31\x22\x79\xe3\xf7\x47\xf2\x24\x39\x09\xc8\x16\x38\xf8\xbe\x58\x84\x1e\xc0\xd1\x2e\x24\x89\xcb\xdf\x89\x51\x66\x5d\x3b\xb6\x76\x25\xde\xcc\xb5\x20\xc9\x81\x23\xc4\x51\x7d\x1c\x57\xb4\x51\xc2\x36\xbc\xb6\xea\x4e\xdf\x03\x8b\xa3\xc9\xe4\x39\x64\xe8\xc1\x2c\x35\xdd\x67\xf1\xea\x7a\x8e\xef\x0f\x76\xe2\x20\xd4\xcd\x19\x1e\x5a\x40\x62\xee\xee\x7c\xb1\x7f\x8d\xcd\x79\xa0\xaf\x35\xfa\xae\x78\x7e\x79\x2d\x33\x9c\xd6\xa9\xf5\x3c\xea\x17\x57\x12\xde\x88\x5e\xc9\xc8\x24\xfc\x18\x3a\x7f\x9e\x33\x4c\x8b\x3f\xa5\xf7\x4d\x82\x82\x47\xcb\x67\x87\xd6\x7f\x50\x46\xad\x03\x19\xb5\x36\x32\x2a\x9a\xdf\x79\x3a\x07\x66\xd3\x1d\x23\xed\xe9\x83\x87\x69\x28\xa6\xf5\x6e\x55\xda\x1d\xbe\x8f\x29\xe7\xd6\x83\x21\xba\x03\x92\x6e\x62\x49\x85\xea\xb0\x5c\x87\x59\xf1\x2a\x3f\x30\x0b\x0c\xa9\xc6\x5e\xe5\x87\x41\x22\x68\x36\x5c\xda\x93\xc9\x49\xe0\x09\x15\x91\x5d\xbe\x1c\xd1\xc9\x84\xc8\x00\x11\x2f\xaa\x2e\xd1\x34\xb8\x5d\x1d\xe5\x70\x5a\xae\x1b\xc5\xfc\x4a\x6a\x7d\x69\x7d\x77\xc4\xb0\xbb\xf4\x5d\xcb\x20\x1e\xfd\x96\x39\x11\x0b\xa6\xab\xab\xc8\xa4\x88\x86\x20\xe7\xa4\x87\x6c\xf2\xa5\x9d\xc1\x13\xd4\x21\x1c\x4f\x3b\x04\xc6\xe0\x94\x49\x12\x78\x89\x44\xfc\x83\x78\x6d\x67\x94\xd0\xc1\xcc\x8e\x2b\x29\xe0\x2b\x73\x66\xf8\x48\x09\xde\xd9\x58\xa4\x3c\x20\xfe\x32\xe8\x0b\x70\x47\xcd\x51\xf3\xa9\x26\x26\x95\x97\xf2\x0a\x55\xf6\xfa\x8b\xba\xbc\x26\xed\xb6\x5c\x91\xb6\xb8\x55\xf0\x99\xa7\xf4\x40\xad\xae\xd6\x92\x7c\xdd\xdd\x39\x0e\xcb\x19\x58\xf1\x45\x90\x2b\xd7\xc4\x61\xa9\xd0\xd2\xba\xd0\xee\x6a\xd4\x78\xf6\xc9\xaa\xeb\xcf\x20\xbb\xa9\x4e\x7f\xbd\xa6\x75\xf5\x5c\xbd\xc9\xf5\x4a\xd7\xa5\x0c\xea\x96\x4c\x08\xe6\xc8\x60\x27\x9d\x4c\xa4\xda\x85\x3a\xd6\x0f\xaa\x95\x9a\x2e\xa0\x10\xc2\x2c\x8a\x08\xf3\x7a\x4e\x27\xa4\x53\xb0\x94\xb9\x52\x16\x59\xb9\xdd\x6e\xe8\xaa\x74\x6c\x05\xca\x45\x14\xd4\x9a\xba\x31\xc2\xd9\xbd\x9f\xda\xa6\xbe\x57\x6e\x69\xb6\x9c\xa7\x3e\xf3\xda\x63\x2e\xbd\xcc\xb2\x8a\xac\xcb\xdd\x86\xbf\x35\x9b\x04\x5d\xa9\xa7\x59\x34\x7b\x07\x58\x45\x9f\x84\x9e\xd8\xa5\x23\xf2\xce\xcb\x8d\x6c\x9c\x8d\x6c\xe4\x46\x96\x6a\x23\x1b\xdc\x26\x36\xb2\x04\x0a\xda\xba\x5f\x15\x2d\x6e\x43\x9d\x96\xf3\x49\x3f\x2b\x07\xd8\x3e\xdd\x80\xe7\x67\xa4\x05\x54\x27\x57\xba\x37\xa7\x69\x5d\x1c\xbb\x29\xa4\x3c\xe3\x65\xf4\xb0\xb6\x9e\x46\x10\x46\xb3\x60\x4b\x20\xea\xb4\xb7\xb4\xc9\xb1\xe4\x02\x1e\xba\x33\xcc\xc3\x4d\xd0\xee\x34\xe8\x98\xb6\xf6\xc8\x1e\x41\xd2\x06\x92\x10\x3d\xd6\x55\x0b\x35\xce\xc0\x78\x99\xa2\x54\x7f\xd0\xa6\x81\x8b\x6f\x4d\x91\x25\xfc\x3b\xfd\xf0\xe9\xab\x3f\xe1\x5f\x91\x84\xe9\x18\xff\x51\x3f\x7d\x4b\xd8\x47\xba\xfa\xd9\x56\xb9\x0b\x5b\xe3\x09\xbc\xcf\xfe\x40\xf2\x45\x56\x37\xec\x3a\x72\xac\x6b\x33\x9c\x09\xe1\x2b\x7c\xa6\xcb\x98\x65\x4b\x93\x94\x28\x54\x55\x42\xcf\x3f\x92\xdc\x29\x59\x69\xcb\xbc\x54\xa4\xe6\x94\xdf\xbc\x2c\xb7\xd0\xec\x55\x10\x08\xf9\xb6\xfc\x48\x6c\xe2\x01\xea\xc2\x12\xda\xff\x85\xe4\x8f\x9c\xb2\x33\x5e\xac\xbe\xaa\x08\xf9\xf8\x80\x0b\xbf\xe7\x87\xfa\xbd\x1b\xce\xf9\x0f\xe2\x55\xb4\x49\x4e\x49\x72\x5a\x95\x9f\xcd\xc3\xbc\x95\xc5\x3d\x82\xf2\x45\xe1\xb7\x7d\xaf\xd5\x78\xcf\x08\x5f\x69\xff\xd9\x97\xe5\xf6\x47\xca\xaf\x9e\x48\x1a\x65\xf8\x58\x45\xb3\x20\xb7\x46\x6c\x09\x5e\x2c\x3b\x0b\xef\x83\x10\xec\x74\x9e\xc7\xb9\x43\x56\xed\x4d\x16\x58\x99\x64\x22\x90\x8a\x6c\x19\x59\x95\x9c\xdc\x83\x2d\xbe\x67\x5a\x7b\x06\x2d\x4f\xc6\x8d\x6c\xcd\xf6\xe4\x41\x76\x43\xb5\x24\x25\x94\x44\xee\x45\x86\x98\x1f\x34\xb9\x99\x6b\xc2\x13\x92\xd4\x53\x55\xc1\x07\x61\x57\x02\x9d\xa7\xee\xdf\xb5\xcc\xa2\xeb\x94\xe3\xe0\x68\xbf\x4f\x29\xff\x75\x42\xb3\x57\x4d\x4d\xf2\x7a\x4a\x2b\x04\xfa\x52\x5a\x99\x28\x8f\x9a\xb0\x92\x93\xe7\x15\xc4\xdc\x21\x0c\xef\x7e\x92\x4d\x3d\xc7\xd0\xf7\x3b\xba\xf1\xb1\x43\x7c\x01\xcd\xa8\x53\xca\x46\xe5\xb5\x6c\x0a\xea\x68\x1f\x6b\x7b\x6d\xc7\xf5\x9e\x82\x05\x6a\x57\xc8\x1a\x62\xa3\x69\x7f\x2e\xda\xef\x64\xf5\xfb\xfc\x64\x26\x60\xd6\x74\xd8\x59\x4c\x12\x6a\x31\xac\x47\xd6\xb7\x53\xec\x92\xfe\xfa\x59\xa3\x04\x91\xf3\xe4\x53\x55\x0d\x08\x73\xe5\x07\x86\xdd\x9a\x9f\x9e\xf7\x84\x5f\x31\x14\xbc\xb8\x9c\x34\x14\x41\xd3\x20\x43\x05\x16\x77\xfc\x3c\x2d\xc3\xaf\x5d\x4f\x31\x29\x04\xd5\xfa\xcb\x1a\x14\xd5\xf6\xc1\x40\x17\x0e\x47\x16\x65\xd2\xad\x55\x54\x05\x2b\xd8\x7e\x7f\xdb\x61\x19\xed\x67\x52\xf4\xd8\x46\x28\xd0\xc2\xd4\xd5\xb7\x37\x3e\x9a\x50\xcc\xcc\x6c\x9f\xe5\xb6\x9d\x9a\xb0\x78\x2d\x9d\x89\xde\x8a\xf3\xfa\xbf\xec\xab\x71\x76\x5a\x9f\x66\x32\x5d\x3e\xad\xe6\xe3\xec\x54\x2c\xed\xa2\x67\x6d\x32\x87\xbc\xaa\xf9\xe9\xcf\x4a\xf3\xee\x40\xbd\x64\xc0\x88\xb2\xc0\x84\x27\x9f\x23\xad\x10\x76\x11\xc5\x71\xfd\x33\x71\x4f\xd3\xf6\xaa\xd9\x6d\x54\xc5\x4c\x17\x31\x74\x1c\x78\x62\xd4\x39\x28\xc6\x38\x14\x33\xbc\x64\xcd\xae\x56\x9f\x9f\xff\x0a\x8a\xf9\x36\x1b\xc8\x3f\x3a\xcf\xf3\xb8\xc9\x7e\xaf\x47\xfc\x36\x78\xe3\x8f\xad\xb3\x74\x26\x46\xc7\xde\x28\x1a\x92\xc1\x6e\x25\x1c\x17\x23\x8f\xe5\xb3\xa4\xc7\xf2\x99\xeb\xb1\x7c\x26\x3d\x96\x75\xe2\xf3\xc9\xc4\xcb\x81\x9e\x9b\x17\x49\xc4\x00\xdb\x8f\x8f\x43\x30\xff\x3e\x24\x21\x9e\xef\xa8\x83\x2e\x44\x90\x27\xb5\xce\xb8\xd3\x79\xd2\xde\x45\xac\xf1\xa9\x7f\x1f\x9d\xb2\xe9\x39\x3a\x27\x61\xf1\xff\xb9\x07\x69\x79\x1a\xbf\xbd\x79\x5e\x85\x6e\x11\x96\x57\x4f\x65\x21\x57\x87\x54\x16\x03\x35\xec\x6b\x23\x44\x76\xc1\x5d\x27\x0e\xbe\x60\xdb\x0d\xa5\xcd\x1d\x96\xad\xdc\x6c\x72\xa6\x3c\xfa\x94\x2e\xc9\x71\xe2\xb3\x20\x85\x49\xca\x6a\xb7\xe2\xe4\xe9\x22\xb2\x99\xc4\x16\xb1\xfe\x81\x5b\xc9\x55\xcf\xc4\x87\xc8\xd2\x80\x50\x7f\x87\x29\xb6\xf5\x4d\xc3\x03\xd9\x20\xa8\x0f\x62\x7b\xde\x15\xc4\x5d\xb5\xec\xa1\x44\x78\x23\xdd\x20\xbf\x93\xd5\x3c\xd4\x55\xed\xe2\x49\xb3\x1e\xff\x3a\x3b\x6d\x4f\xb3\x5f\x5b\x14\xf9\x35\xac\xf3\xd7\x99\x9e\xda\x2e\xe5\x22\xa9\x77\x72\x87\x37\x08\xe7\xbb\xe2\x69\xbe\xc3\x9f\xf2\xcf\x82\xf6\x85\x4e\x92\x26\xd6\xef\x43\xfe\x38\xe7\x98\x60\xc1\xc8\x60\x86\x29\xae\x81\x3b\x35\x45\x54\x0d\xf5\x96\x6c\x19\x18\xb9\x7c\xbf\x08\xd6\x7c\x1a\x53\x53\xe8\x2d\x47\x98\x5a\xc4\x14\xf7\xa2\x7f\x5d\x60\xa2\x8a\x00\x3f\xfd\xcc\x59\xb9\xe2\x63\x15\x1d\xef\xac\x3a\x43\x9d\xc0\x11\xb8\xbb\x64\x38\x13\x81\x28\x68\xb8\x2f\x7c\x24\x7f\x59\xd6\x37\xf3\xb4\x6c\x65\x11\x95\x18\x44\x4d\xa4\xb4\x85\xda\x22\xc9\xe3\x23\x4d\xd5\x72\xf5\xbf\x52\xfe\xa7\xd1\x04\x62\xc2\x1e\x9d\x31\xe4\xe8\x8e\xbc\x17\x86\xb4\xd3\x0a\xd7\x1e\x52\xd2\xb8\xa2\x76\x06\xc3\xd1\xfa\x52\x62\xfc\xaf\x5d\xea\xc1\xc4\xd9\xbb\x0d\x32\xc7\x63\x85\x0d\x6c\x4e\xb1\x8a\x3f\x9a\xf3\x0e\x0b\xcc\x55\x4e\xad\x96\xc9\x74\xaa\xff\xe5\x25\xc2\xb3\x22\x48\x23\x01\x63\x4f\x5b\xfa\x0f\xd2\xe3\x2a\xb2\x06\x95\x68\x5d\x81\xa2\xc0\x28\x9b\xc0\x2f\xe4\xd1\x66\xf3\xbd\xd3\x0b\x09\x05\x03\xd9\x37\x58\x2c\x91\x31\x8f\x97\x1d\x4e\x7f\x1c\x49\x6b\x87\xea\xba\xe6\x89\xc1\xb4\xfe\xcd\xf1\x69\x71\x47\x79\xd6\xb0\x77\x10\x0e\x1e\x4b\x31\xf2\x7b\xe5\xaf\x00\xa4\xa6\xe7\xe3\x90\x7e\x6a\xad\x1a\xb3\xb7\x55\x33\x75\x09\x55\x1e\xb8\x0d\x61\xa2\xa3\xc6\xd0\xc8\x9c\x6c\x66\x8e\x38\x47\x9d\xe9\x33\xa2\xd1\x29\xa9\xad\x2e\x66\xb8\x71\xeb\xcc\x34\x56\x9f\x52\x16\x64\x51\x2f\x71\x5b\xac\x16\xe5\x94\x56\x4a\xb3\x02\x7f\x16\x25\x6e\xd1\x6d\x1b\x4f\xa0\x44\xb2\x20\x93\xb4\xf7\x2e\x96\x78\x53\xcc\x70\x65\x95\x17\x9b\x87\xd5\x83\x8d\x1e\x60\x5b\xf0\xc5\x66\x39\x62\x8b\xad\xe8\x73\xbf\xdf\xc9\x8d\xde\xa2\x6e\xa7\xda\x4f\x26\x34\xdf\x39\x6b\xa2\x51\xfc\x15\x1c\x91\x3e\xcd\x08\x5b\xe2\xa6\x58\x2d\x28\xcc\x1e\x62\x93\x9d\x09\x0b\x60\xe4\x7c\xbf\x77\x1c\x18\x9f\x7e\xde\x42\x12\x6d\x20\xac\x54\x1c\x27\xde\x8c\xdf\x93\xf1\x96\x91\x96\xd4\x5c\x26\x55\x24\x63\x75\x2b\x8c\xb7\xac\xf9\x48\x2b\x52\x69\x62\x85\xc7\xef\x77\x7c\x4c\xf9\xf8\x53\xd9\x8e\xeb\x86\x8f\xd7\x82\xf4\x4d\x21\xc8\xc6\x37\xa4\x83\x5b\x89\x73\xb9\x70\x71\x4b\x9c\x9c\x94\x70\x33\x08\xea\x35\x99\x94\xd3\x55\x53\x6e\x48\xbb\x22\xcf\x80\xee\xfe\x7d\x47\x5a\xde\xc2\xf5\xa1\x34\xe1\x1b\x87\x98\xed\x10\x5e\x25\x37\xb8\x2a\x66\x0f\xaa\x87\xbb\x07\x95\x05\x3a\x59\x54\x4b\x7c\x55\x6c\x7d\xcc\x1a\x6d\x16\xd5\xb2\xb8\xc2\xab\xc5\x15\xec\xf0\xb6\x03\x7d\x98\x81\xf5\xda\x1f\xed\xba\x98\x3d\xb8\x7e\xb8\x7b\x70\x7d\x7a\x8a\xd6\x8b\xeb\x65\xb1\x59\x5c\x2f\x23\x39\xd4\xf8\x6c\xdd\x14\xe5\x54\x30\x7d\x5b\xe5\x13\xfe\xac\x61\xcf\xd4\x52\x25\xe7\xb7\x46\xf8\xb2\x98\xe1\xf7\xc5\x8d\xde\xcd\xcb\x87\xef\x1f\x5c\xba\x0e\x47\x1f\x8b\x9b\xc5\xe5\x12\x5f\xc0\x7f\x1a\x08\x9f\x9c\x69\x5d\x20\xfc\xd4\xff\xf9\xb9\x98\x3d\xf8\xfc\xf0\xe2\xc1\x67\xbd\xfa\xd7\xc5\xc7\xc5\xe7\x65\x20\x31\x8c\x9e\x2e\x3e\x2f\x8b\xd7\xf8\x13\xfc\x37\xa5\x95\x58\xfa\xc5\x6f\xcf\x90\xe7\xd8\xfd\x26\x2f\x71\x83\x39\xfe\x84\x49\x78\x6d\x72\x74\x5b\x83\xe5\xbc\x43\xd3\x55\xc9\x03\x23\x81\x44\xda\x0e\x75\x28\x7f\x2a\x6d\xeb\x63\xba\xce\x05\x27\xfd\x49\x5f\x41\xb7\x2c\x5f\x2d\x9e\x2e\x66\x4b\x01\x7a\xd4\x75\xd2\x4f\x45\x2f\xfc\x51\x31\x7b\xf0\xe8\xe1\xee\xc1\x23\xc1\x3a\xe5\x64\xf1\x68\x89\x3a\x0c\xd2\xa9\xca\x35\xdc\x2b\x64\xfb\xb1\x27\x09\x31\x89\x61\x8e\xa6\x61\xc6\x66\xbc\x25\xe4\xc3\x01\xf1\xdd\xeb\x39\x10\xab\x44\xa7\xe7\xc3\x43\x3a\x9e\x3d\x4a\x08\xbd\x60\xa4\x57\xb4\xa4\xd5\x28\xf6\x8c\x0c\x19\x34\x1e\xac\x36\xb8\xb7\x51\x87\xfd\x69\x0e\x69\x26\x7e\x92\x6e\x33\x89\x35\x28\xb7\x3d\x75\x33\xe9\xd8\xd2\x13\xd0\xbe\x6a\x5b\xaa\x90\x7e\x59\xef\x40\x87\xb6\x84\x04\xf0\xe9\x70\xa2\x55\x72\xf2\x3f\x39\xe2\x5f\xda\x09\x02\x72\x13\x59\x19\xf0\xbc\x4e\x95\x90\xcf\xd1\x79\x5e\xbb\xa5\xd8\x4d\x84\x47\x42\x87\x42\x84\xcc\x36\xaf\xe7\x83\x0d\xc2\x25\xf4\x57\x28\x89\xa4\xfd\x01\xb5\xa2\x4d\x95\x91\x18\x41\xdf\xfe\x89\xfc\xc4\x4e\x9a\x99\xea\x65\xb9\xb5\xa5\x16\xd2\xa3\xe8\x74\x16\x0e\x23\xa6\xe4\x32\x4d\xac\xbf\x1a\xab\xd9\x27\x3c\xf6\xf0\x9c\xa2\xb9\x2a\x10\xd5\xa3\x25\x39\x46\x13\x10\x8b\x33\x36\xe1\x47\x48\xcf\x71\x59\xa8\x7a\x5d\xa2\x37\x0a\x6c\xb8\xb8\xba\xa4\x48\xa3\xcb\x5d\x71\xdc\x40\x37\x78\xd7\x2b\xd3\xa8\xa6\x8a\xbd\x67\xae\x00\xfc\xeb\xb1\xbc\x7e\xa1\x73\x57\xb8\x69\x87\x84\x9b\x16\xef\xc4\x44\x9e\xe6\xad\x96\x6d\x70\x6e\x7f\xb2\x58\xd4\x31\x30\xd2\xa2\x8e\x5e\x8d\xca\x28\x05\xd2\xa5\x33\xd5\x4c\x70\xd3\x5a\xdc\xb1\x0a\xc1\x46\x06\x1f\x4b\x2f\x09\xdc\xb8\xb1\x65\x69\x51\x26\x5a\xab\x4a\xb0\xe3\xaf\xd9\x91\x75\x14\x7e\x83\x78\xab\x0b\x20\xfc\x4b\x6c\xb7\xad\x60\x76\xc4\x86\x9b\xc6\x52\x3a\xf7\xa0\x30\x16\xd2\x8a\xec\xfd\x7f\x78\xaf\xcd\x2c\x33\x47\x51\x56\x95\xbc\x3c\xb7\x3b\xaf\xee\xab\xc1\x7d\xee\x5f\x60\xbc\xb1\xd2\x57\xe6\xb8\x1b\x5c\x86\xb1\x30\x29\xf2\xc6\x1f\x0e\x60\x82\xa3\x57\xe9\xc7\x00\x67\xb3\xa1\xb6\xa9\xf2\x48\x22\x32\x34\x48\xab\xcf\x7e\x73\x9e\xd3\x82\xee\xf7\x3c\x55\x4f\xec\xa0\xfb\x93\xcc\x8d\x57\x16\xaa\x53\x83\x3b\x68\x1e\x3c\x43\x2a\x35\x4d\x0a\xa3\x64\x48\x11\x00\xba\xd1\x0b\x2b\x87\x50\x46\xc8\x2b\x38\x2f\x8b\xa7\x79\xd9\xa7\xfb\x28\xb5\x93\xb2\x46\x12\x26\xf0\xa3\xc1\xa5\xda\x6a\x15\x54\x84\x77\x86\x0a\xb4\x16\xa8\xe7\x74\x1a\x07\x11\xe5\x3b\xdc\xa2\x39\x2d\xbe\x1c\x50\x58\xf4\x80\xe9\x01\x6c\x93\xd0\x10\x02\x7f\x80\x5c\x1a\xbb\x0e\x99\x62\xe8\x80\xb6\xab\x8e\xf0\xc5\x38\x18\x79\xd8\xd2\xe8\xdd\x33\x8a\x2d\x2a\x37\xba\x77\xff\xac\x5e\x2b\x3b\x65\x86\x9e\x0e\xed\x62\x83\x4b\x84\xf3\xa6\x78\x9a\x37\x7d\xbb\x58\x87\x1a\x2c\xd8\x45\x8a\x6b\x77\x17\x87\xb4\x58\x87\x21\x6d\xf4\xb6\x02\xde\xd4\xc0\x3b\x9c\x89\x13\x0b\x7a\x4e\x62\x86\x17\x29\x9a\xfe\x68\x13\x2a\x72\xfb\x0e\x3f\xa8\x05\x1e\x6d\x36\xba\x60\x90\xe0\xd2\xe1\x27\x92\xf4\x40\xbf\x4f\x76\xf7\xc5\x69\x3b\x52\xf6\x04\xb8\x0a\xfb\xb9\x4c\x9d\xd7\x7b\xda\xd2\x7a\x05\x21\x4c\x2c\x30\x6b\xf4\x7b\x3b\xcf\x10\xa6\xf9\x4b\x8b\xc6\x8d\x40\x63\xe5\xbf\xc1\xa7\x41\xa8\xaf\x8b\xa6\x9e\x3d\x43\xc7\xc9\xe3\x12\x9d\xe7\x77\x1c\x4c\x59\x39\x58\x6c\xe5\xa0\xb9\xa3\x17\xe7\x08\xcd\xf3\x3c\x6e\xd5\x6f\xe8\x70\x26\x85\x26\x93\xe1\x69\x85\x93\xc2\xe1\xd8\x32\xee\xdc\xfa\x9b\xc7\x7c\x6e\x82\xe6\x78\x5f\x80\x48\xd4\xdb\x85\x87\x79\xd1\x67\x0a\xf5\x12\xc6\x96\x08\x6d\x13\xd3\x88\x3d\xd8\x81\x9d\x95\x8c\x76\xd8\x2d\x5d\xe7\xb3\xa2\x88\xf0\x17\x45\x2e\x0f\x5a\xff\x66\xbd\xd7\xd5\x6c\xfa\x30\x95\x23\x27\xf5\xf9\x3a\x08\x49\x56\xb7\xe9\xef\xc8\xf4\xe9\xab\x47\xdf\xbe\x78\x7a\xf1\xe4\xed\xc5\xb3\xe7\x2f\xde\x3d\x7d\xa3\xbc\xc2\xe2\x72\x62\xbf\x49\x4c\x13\xb7\x1e\x44\xca\xf3\xda\x89\xb5\xcd\x5b\xcc\xd1\xfc\x9b\xc4\x67\x50\xb1\x8a\x8b\x63\x56\x9e\xf7\x41\xb1\xd7\x71\x3a\x6f\x31\xb3\xf9\x9a\xef\xf8\xa1\x10\x20\xeb\xfd\xde\x41\xb6\x46\x20\x5f\xdd\x97\x4d\xc1\xe3\x78\xb5\x21\x06\x82\xc2\x81\xae\xb7\xc8\xc8\xc2\xcf\xb5\xa7\x71\xbf\x38\x1c\xe8\x11\xa4\x6a\x5f\xcb\xf1\x6f\xbd\x14\x12\x1e\xb7\x13\x99\x41\x19\x1a\x11\xa9\x67\x4e\xd5\x6f\x33\x05\xfa\x7e\xa4\x9b\x8d\x2c\x21\x99\x27\xfc\x52\xa4\x7c\x79\xab\x53\xf1\xcc\x6b\xab\x3b\xe7\x5d\x3a\x2e\xd7\xea\xb7\xbf\xb7\xfd\x20\xa5\xb5\x76\x1e\xf5\xe5\xe6\x74\x47\x6f\x21\xe7\x32\x1a\xa5\xfc\x65\xdc\x7a\x11\x90\x81\x4b\x07\xe8\x3d\x64\x32\x48\x4f\xc7\x45\xf2\x25\xa6\x45\x6d\x52\x19\xe1\xa6\xa8\x8d\x0e\x14\x94\xfe\xfe\xb9\xd0\xae\x71\x0e\xb1\x2f\x1d\x19\xc2\x64\x60\x1e\x65\xac\x69\xb8\xf2\x0e\xa8\xa6\x6d\xf9\x91\x54\x99\xb8\x48\xbc\xc2\xfa\xb6\x9e\xfc\x79\xbe\x2b\xca\x29\x6d\x5f\x91\x4f\x39\x3a\xcf\x5c\x07\x91\x6c\x5e\x82\x6e\x1e\x7a\x12\x2f\x5d\x97\x83\x6c\x9e\xb9\x45\x3d\x33\x6c\x34\xb8\xbd\x5c\x49\x1d\x2e\x49\x2c\xd9\x8a\xee\x70\x8b\x18\xbe\x05\xac\x73\x42\xbc\x86\x3c\xc2\x90\xf5\x50\x72\x0d\x8d\x31\xc8\x69\x2e\xa0\xac\xab\xb1\x2c\x1d\x3a\x2e\xdf\x37\x3b\x2e\xee\x7f\x6b\x62\xa4\x4d\x2d\x11\x9e\x5a\x09\xe6\x57\xae\xc4\xb2\x19\x90\x58\x68\xcc\xc6\x38\x14\xd8\xf5\x2b\x9b\xfe\xd4\x50\xef\x14\x4a\x5e\x47\x91\xa0\xd6\x30\xec\x93\x49\x9e\x0b\x16\x68\x07\x12\x0e\x01\x3f\x17\x71\x8d\xe8\x74\x57\xd5\x64\xa2\x79\x1e\x9b\xd8\x16\xeb\x97\xf3\xc6\xb4\xeb\x64\x88\xa3\xac\x56\xc8\xa7\x15\xad\x04\x06\x1a\xcf\x07\xf9\x71\x0b\x19\x0c\xa8\x6f\x01\xa4\xeb\x9c\x8c\xb5\x87\x54\xb3\x1e\x33\x53\x9a\x71\x37\x25\x12\xa6\xb2\x7c\x68\x6e\xa7\x88\x46\xdc\x46\x5b\xab\x9a\x9b\xe0\x5f\xa1\x92\x09\xdb\x97\x52\x61\x4f\x31\x90\x77\xd6\x7c\x1a\x93\x0e\x6f\x50\x97\xcb\x23\x88\x77\x00\xd3\xb9\xc5\x16\x41\xe2\xbd\xc9\x27\x99\x24\x9d\x4c\x5c\x92\x5f\xb5\x6a\xa6\x13\xc5\xa9\x22\xd7\x95\x1b\xd5\xd4\x12\xbe\xdb\x7a\xfe\x6a\xcf\x1a\xe6\x68\xc6\x70\x5c\xc8\x37\x67\x86\x24\xda\x55\x06\xd3\x49\x17\x3e\x85\x5b\xd2\x07\xc1\xc0\x77\x12\x44\xdc\xe4\xaf\xe8\x51\x1a\x26\xed\x8c\x3f\xe5\x5c\x7a\x46\xc9\x04\xab\x82\x1d\x92\x89\x21\x20\x3d\xa9\xd2\xa3\x91\xcf\xb4\x15\x1c\xcb\xf3\x94\xf7\x0d\xed\xbf\x77\x5d\xad\x84\x72\x7b\x26\x02\x50\x50\x67\x3a\xa7\x62\xab\xe2\xaf\xfa\x99\x13\x97\x05\xd0\x15\x58\x64\x06\x23\xc8\x8b\x94\x64\x51\x94\xf8\xcf\xfa\xfd\x87\xb8\x54\xf2\xe1\xba\x50\xdc\xa0\x47\xd8\x94\x25\xdb\xcb\xba\xb8\x93\x25\x96\x09\xc2\x75\xef\x9d\x1d\x56\xdb\x66\xfd\xb7\x74\x90\x75\x20\x97\x91\x53\x86\x74\xbd\xa4\x9f\x69\x9d\x58\x9c\x76\x3f\x34\xc8\x0c\x4e\x45\x6b\xe9\xbd\xf9\xac\xb1\x0a\x02\xe7\x59\x9e\x5d\x43\x6f\xd9\xa9\xe0\x54\x64\x26\xed\x15\x94\x93\x84\x63\x07\x39\x88\xa4\x37\xb3\xf2\x02\xf5\x3e\x10\xec\xbd\x26\xbe\x7f\xd6\x3e\xb4\x0c\x8d\xe8\x94\x91\x66\x4b\x6a\x28\x4c\x99\xdf\x5e\x5c\xd0\x56\x4e\xfa\x64\x86\x2f\x2e\x64\x07\xac\x13\x54\x45\x47\xcf\xa8\x44\x67\xa2\x5b\x6c\x03\xeb\x00\x40\xae\x0f\xaa\xf2\x33\xc4\x1a\x14\xc7\x70\xa1\x4e\x2a\x34\xe4\x40\x31\xf1\x69\xec\xf3\xea\xeb\x4f\xb8\x04\xcd\xb9\xfa\x7f\xce\x4d\x77\xa6\xf5\x51\xbd\x82\xd3\xa8\x0a\x3c\x38\x91\x3e\x02\xba\x08\x50\x3c\x38\xda\xef\x73\xbf\x13\x85\x01\x10\x43\x7e\xc2\x91\x93\x8b\x45\x7a\x3d\x4b\x83\xe6\x2b\x48\x39\x47\x36\x60\x91\x04\x6b\xe4\x78\xdd\xb0\xf1\xaf\xb3\x53\xa9\x65\x54\xbe\x06\x0a\x69\x1c\x94\xb0\xcb\x1b\x39\x9a\xac\xc2\xf9\x7b\xbf\x27\x7d\xfe\xc1\x61\x68\xe7\x61\xf0\xac\xa5\x9f\xbb\x9a\x87\x3d\x56\xce\x84\x98\x8f\xb0\x0a\x51\x38\x9a\xb3\x18\x39\xcd\xcb\x0e\x8b\x3b\xae\x77\x3f\x54\x98\xd7\x28\x4a\x82\xcf\x91\x73\xff\xf6\x66\x78\x72\x8d\x34\x90\x13\x42\xd7\x2e\x44\x4e\x96\x48\x8b\x37\xbe\x4d\x67\x60\x62\x3e\xe6\x1e\xb8\xfd\x81\x82\xab\xdb\x3a\x2e\x77\x2c\x4f\xa7\xe0\x16\x65\xe4\x04\x0b\x23\x27\x78\x22\xae\x3a\x67\x10\x47\xd5\x5b\xe5\xe1\x96\x16\x5e\x69\x07\x9d\xa6\xda\xd8\x3b\xa8\x34\xfc\xca\x28\x2d\x39\x4e\xb3\xa8\x97\x45\x72\x30\x55\x0c\xc2\x89\xdc\x6a\x3a\x07\x7e\x90\xb5\x15\x54\xb0\xe2\xd7\x7c\xa0\x0b\x99\x0b\xed\xaa\x6c\x5f\xf6\x9f\xee\x00\xc3\x88\xc4\x3c\x97\x18\x9e\x9f\x9c\xf0\x24\xaa\x11\x34\x17\xaf\xfa\x90\x8d\x24\xb3\xef\x05\x86\x4c\x50\x71\x7b\x11\xda\x60\x5a\x0a\x2d\x97\xfd\x4c\x05\x87\x0a\xf9\x32\x63\x51\x4f\x9b\xf0\x96\xd7\x4a\x1e\x3e\x0d\x4a\xa5\x7e\x63\xfd\x79\x12\x9e\xf5\xc6\xba\x66\x3c\x32\x1d\x44\xb4\x3e\x3e\x7d\xf1\x0d\x56\x1c\x4a\x4c\x15\x25\x17\xe0\x0a\x45\x51\x45\x9a\xc4\x0c\xb1\xae\xfb\x8e\x93\x7e\x20\xc5\x37\xe8\x96\x17\x3c\xed\x57\xfe\x42\x39\x41\x2f\xd8\x52\xfc\x73\x7a\xb6\x14\xb2\xa6\xee\xa1\x98\x49\xc2\xa1\x6c\x80\x03\xbc\xa2\x39\x71\x32\xae\xfe\xb6\x2e\xb8\xf2\x3a\x97\x57\x90\x8a\x4b\x37\x71\x30\x60\x47\x51\xec\x6c\x5d\x10\x9c\x8c\x22\x22\xc1\x07\x5e\x10\x16\xea\x14\x0a\xd3\x75\x2e\x03\x06\xc4\x4c\x95\x8e\xf2\x9e\x0a\x98\x71\x52\xbe\x3b\xeb\x90\x6b\xae\xd1\x28\xf9\xb4\xc3\x66\x2f\x87\x4c\xe3\x89\x05\x31\x6b\x2b\x77\x34\xc2\x56\x33\x67\xfa\xcd\xa9\xd4\x54\xc6\x66\xe2\x1e\xbb\xef\x00\x8b\x69\xbc\xa0\x6b\x20\x3c\x3f\x41\xd0\x1d\x56\x5e\xc4\x03\x7e\x0f\x5a\x49\x59\x56\xd2\xff\x1b\xd7\x1d\x1e\x18\xa7\xdf\x13\xbf\xdf\xc2\xce\x7d\xc7\xfc\xa4\x89\x5d\x88\x18\x81\x8d\x9d\x15\xd2\x65\x87\x75\xf8\x08\x00\xf9\x77\x44\xca\xee\x2e\xcd\x4b\x01\x1f\x79\x94\x9e\x30\xe4\x3d\x9d\x7c\xa0\xc6\x6c\xde\x7b\xa9\x0e\x33\xfc\x58\x4a\x1c\x20\xe8\x89\xfe\x94\x7f\x80\x55\x38\x1c\xc5\xcd\x79\x91\x37\x51\x44\x62\x87\x3d\xfc\xfc\xd2\x1e\x6d\x27\xb2\x53\x49\xf8\x75\x10\x4d\x9f\x3c\xe2\x07\xc3\xa8\x8f\x6c\x58\x64\xef\x77\xfe\x91\x22\x87\x52\x71\x1e\x8e\x46\x4b\x86\x4b\xd9\xe4\x7e\x89\x6d\x37\xd1\x83\xa9\xf8\xa6\xf0\xad\xd1\xd6\xe6\x36\x67\x9f\x4b\xce\x41\x50\xea\x63\x70\xce\xcc\xd5\x93\x0a\xf9\xb2\x09\xc8\x0e\x72\x40\xbc\xe7\x5a\x4a\x44\xd7\x71\xcc\x95\x57\xe7\x0f\x89\x31\x25\xf3\xd0\xfb\x7a\xe8\x6e\x4a\x2d\x01\xf7\x28\xe6\xa0\x96\xab\x54\x4c\x96\x75\x53\xd3\x55\xb9\xc9\xd1\xc8\xbd\x77\x54\x77\xfd\x5c\x44\x04\xbb\xe4\xbd\x7d\xd7\xec\x6d\x3f\xa4\xfa\x0a\x41\xd2\x97\x23\xb1\x17\x26\xd1\x85\xdd\x0f\x94\x0b\x95\xd2\xf0\x49\x50\xc0\x3e\x04\x8f\x58\xde\x1b\xd2\x36\x3b\xb6\x22\xcf\x41\xf4\x5f\x53\x12\xea\x41\x84\x4c\xe5\x85\x8e\x85\x71\x3e\x29\x89\xdf\xa9\x27\xd5\x3b\x4e\x18\x01\x91\x1a\xe8\x60\x58\x44\x94\x7b\x86\x01\x73\x6c\x4e\x6d\x3c\xac\x18\xcc\xcf\x6d\xd0\x75\x08\xff\x55\x07\xe8\xbd\xd2\x21\xb7\x26\x88\xf1\x4f\x4f\xdf\xbc\x7d\xfe\xfa\xd5\x9c\xe1\x1a\x4a\x97\x3c\x79\x9b\x75\x3a\x9a\x6e\x43\xdf\xb3\x92\x51\xd2\x6a\x14\x31\x0f\x8c\x24\xfe\xb8\x61\xe4\x05\x3c\xbd\xc9\x33\x68\x34\x7e\x02\xf5\x7d\xff\x4a\xa6\xaa\x6b\x79\xf9\xfe\x59\x4f\x01\xa4\x51\x33\x3c\xdc\x47\x3f\xbc\x79\x31\x4f\xf9\x1a\xb4\x9f\x28\x5f\x5d\xe5\x35\xba\x5d\x95\x2d\x71\xc3\x0a\xe6\xee\x1e\xed\xd8\x46\x79\x89\x1a\x8b\xb2\xb8\x2b\x46\xe6\xa3\x47\x9b\x4d\xdf\x17\x60\xa7\x32\x8d\xa5\xe5\x3e\xd1\xf4\x8f\x60\x85\x01\x2d\xa2\x6d\xd8\x3f\x97\x3f\x3a\xe6\x6d\xfb\x91\xf6\x02\xeb\x9b\x8b\x72\x89\xf2\xe7\xae\x9d\x8a\x7a\xbe\xb1\x9e\x54\xfe\x67\xd6\x3f\xa5\xe7\x43\xd7\x27\xc7\x7e\xea\xeb\xdb\xe3\x2f\x1f\x3b\xef\x1d\xb8\x79\xaa\xf7\xc4\x67\x3f\x38\xef\xbd\xf1\x7c\x15\x7e\xfc\xe1\x13\x37\xaa\x50\x7d\xa8\x62\x54\xe7\x31\x5f\xf3\xc3\x9b\x17\xd2\x14\xa4\x39\xc7\x10\xb1\x22\x96\x1c\xd2\xfa\x85\xb1\xab\x57\x4d\xcb\x33\x63\xb9\xde\xb1\xcd\xf7\x8c\xac\xe9\xe7\xdc\x0a\x83\x52\xed\x0b\xa6\xf5\x92\x6b\x97\xfd\x9c\x20\x34\x99\xa8\x14\x7d\x0c\x61\x6e\x7e\x90\x7a\xd5\x54\xe4\x87\x37\xcf\x1f\x37\xd7\xdb\xa6\x26\xb5\xe0\xfc\x10\x6e\x44\x83\x9d\xb8\x06\xd6\x10\xfe\x53\x17\xb5\xbc\xb6\xb2\xfb\x19\xc2\x27\x74\x32\xa9\x27\x93\xec\x7e\x76\x52\x14\xf5\x74\x75\x55\xb2\x47\x3c\x9f\x41\x58\x6b\x91\xdd\xcf\x4e\x6b\xe0\x48\x43\xe4\x3f\x82\xfd\x13\x60\x02\x1f\x64\xec\x9d\x83\x21\xef\x53\x0b\x5e\xf3\xd5\x1f\x13\xde\x48\x3d\x63\xf9\xdf\x24\xd5\xea\x87\xbe\x7c\x16\x7b\x50\x0e\x2e\xcf\xfb\xb0\xcf\xf5\xf1\x38\xd0\xf4\xfb\xd2\x1d\xfe\xfe\x71\x7f\x80\xf3\x21\xf8\xba\x67\xe6\x0b\x46\x7e\x92\x0e\xd5\x3d\xea\x73\x89\xef\xc9\x93\xd3\x73\x56\xea\xe8\x85\x49\xee\x20\xd3\x04\x32\x8d\xc9\x6c\xbf\xcf\x59\x91\x41\x36\x75\x39\x8d\xfb\xff\xfd\xb7\xfb\x7f\xbb\x7f\x7f\xca\x49\xcb\x21\xfd\xe5\xfd\x2b\xce\xb7\x79\x8b\xce\xe7\xde\x8b\x73\x32\xcf\xee\xcb\xea\x82\xe6\x30\x9c\x67\xd9\x29\x3b\x25\x73\x7e\x2a\x4e\x04\x51\x12\xf5\x62\xe9\x88\x55\xd4\x1c\xc8\xda\xfc\xa8\x11\xa6\xf6\xa8\x75\xd8\x39\xc5\x11\x23\xaa\xd7\x2c\x73\x4e\x4c\x57\xe5\x35\x01\x09\xd5\x55\xf4\x6e\x37\x3b\x26\xe5\x56\x06\xd9\x95\x7f\x4f\x8a\xec\x6f\xec\x6f\x75\x86\x09\x2f\xfe\x91\xd4\x09\x6a\xa7\x1a\x58\x4f\xdd\x54\x44\x0c\x7e\x4e\x54\x15\xa8\x2e\xcf\x64\xad\x8c\xac\x28\x04\xb3\xd1\xac\xc7\x97\x9b\xe6\x7d\xb9\x99\x4c\xe4\xff\x08\xed\xf7\xff\x88\x1b\xb5\x64\xb3\x9e\x4c\xc4\xbf\xe9\xf7\x9f\x68\x5d\x35\x9f\x26\x13\xf9\x3f\x92\x31\x2d\x3a\xa7\x59\x9e\x39\x78\x91\x21\xc1\xbf\xeb\x8c\xd9\xe2\x4e\x57\xf2\x8c\x49\x7e\x71\x49\xb8\x74\x0d\x68\x13\xc9\x0f\x6e\x25\x37\x01\x86\xdc\x0c\x57\xa4\x5d\xcd\x33\xf1\x67\x87\xcd\x9b\x97\x4d\x25\x58\x96\x4a\xbf\x36\xbf\x9d\x36\x8f\x37\xa4\xac\x75\x03\xf9\xa3\x5b\x76\xb8\x22\x9c\xac\x92\xf9\xfb\xc9\x49\x51\xfc\x79\x32\xf9\xf3\x54\x36\x81\xf3\xb4\x6a\x36\xbb\xeb\xba\xed\xdb\x60\x5e\x98\xd9\x9a\xb9\x3c\xaf\xb2\x6e\xa9\xf3\xa9\x38\x8a\x56\x2f\x0d\x66\x69\x5c\x05\x52\x75\x19\x88\xe0\x60\x04\xe6\x9f\x9e\xfe\xb6\x9e\x9a\xb6\x2f\xe8\x35\xd5\x6a\xdf\x93\x33\xa5\x10\x0d\x30\x6c\x4b\xb9\xc4\x26\xef\xf9\xae\xae\x08\x6b\x57\x0d\x23\x39\x45\x53\x95\x66\x3d\xcf\x2e\x32\x9c\x8d\x33\x84\x46\x2a\xe9\xb0\x5c\x0b\x95\x0b\x69\xc0\xe0\xca\x55\x10\xc8\xca\xaf\x35\xa1\xf9\xd2\xd0\xa7\xe4\xe1\x37\x56\x61\x7c\x51\x91\xf7\xbb\x4b\x93\x56\xe5\x0f\xe4\xc6\x31\xe3\xd4\x05\x9b\x5e\x43\x14\xcb\x7d\xa9\xdc\xcc\xa7\xff\x07\xdd\x47\x23\x5d\x6a\x71\x32\xc9\x79\x51\x2f\xce\x96\x36\xe9\x12\x90\x1c\x29\x34\xcb\xa4\xec\xc6\x39\x8d\x23\x67\x96\x8f\x61\xcb\x20\xb3\x46\xdb\x23\x1a\xaa\xdd\xb9\xa5\xd5\xdc\xdb\x15\x5a\x65\xa8\xb3\xa1\x89\xa4\x5c\x5d\x19\x9f\x0e\x2f\x7e\x55\xed\x0d\xef\xdd\x9b\x7a\x41\x97\x5e\xe2\x53\x2a\x80\x59\x3b\xd3\xfc\x03\xb9\xf9\x14\xc0\xd4\xe0\xd4\xd2\x94\x21\x79\x94\x2f\xc4\xac\x96\xe8\xe0\xac\x2c\x1e\x33\x2d\x9d\x75\x08\xb3\x18\xb9\x1c\x1a\x2e\x1b\xba\xd3\x64\x28\xdc\x74\x79\x4e\x13\xe0\x94\x9d\xdc\xc2\x31\x9d\x9b\x6a\x35\xe2\xa0\x22\x6c\x4f\xa8\x7e\x73\x55\xb6\x4f\x28\xe3\x37\x8f\x1c\xc4\x9f\x4c\x4e\xa2\xef\xe0\xa0\xce\x4f\x06\xbe\xea\xfc\xbd\x4e\xaa\x5e\xb2\xf7\x9b\x72\xf5\x21\x1b\xb9\x56\x14\x33\xca\x39\x2f\xb2\x4b\x46\x48\x9d\x0d\x4f\x2e\x87\x7e\x76\x90\xfd\xbf\xc3\xaa\x18\xc3\x80\x61\xdf\xe6\x1f\xac\xfd\xdd\xc3\x9a\x96\xa5\x06\x5a\x0a\xd1\xf3\xe0\x9e\xd6\x76\x4f\x9d\x84\x23\xa3\x3a\x51\x4b\x55\xfb\x6b\xb8\x0a\x8c\x9c\x4e\x3f\xb1\x72\xab\x99\x6f\x84\x3a\x25\xa6\x95\x55\xf5\x5a\x57\x99\x20\xb2\xa2\xb7\x42\x1f\xe7\x73\x25\xe3\xab\x7a\x3b\x5e\xeb\xce\xa9\x3d\xe4\x52\xf2\x04\x4d\xb3\x74\x56\x96\x29\xe9\xc4\xc2\x41\x34\x2e\xfe\x8c\x89\x34\x26\xb6\xc5\x0f\x98\x4c\xc1\xc3\xab\xf8\x23\xc1\x64\xfa\xe4\x6d\xf1\x57\xf1\xff\x7b\xcd\x48\x25\x53\xad\x85\x6a\xf2\xe8\xee\x22\xe7\x39\x2b\x88\x69\x80\xe6\x82\x07\xc7\x75\x41\x10\xce\x5a\x20\x91\xb6\x2d\x94\xc5\x2b\xd6\x79\x8d\x34\xa8\x6f\xa1\x5e\x56\x0d\x45\x11\xad\xfa\x65\x7e\x32\x33\xc1\xcd\x3a\x01\xc8\x07\x5a\x57\xf3\xcc\x4c\x36\x53\x82\xb1\x62\x03\xc7\xe2\xc9\x07\x72\x23\x7d\x73\xfd\x7b\xc1\x24\xca\xb9\xf5\xea\xae\xb9\xa7\xfa\xaa\x6c\x5f\x7f\xaa\x4d\x55\xbe\xcc\xc9\xd9\x83\xe3\xb7\xe4\xfa\x3d\xa9\x2a\x52\x65\x56\xd1\xe6\x26\xf3\x49\x67\x8c\xf1\xac\x87\xad\x37\x11\x87\xef\x34\xdc\x07\x97\x54\x5a\xa6\x66\x9a\x4c\x38\xf8\x17\xa5\x82\xf2\xfa\x13\xd4\xc8\xe1\x94\x0f\x76\xce\xd1\x9c\xdf\xed\x7b\x5f\x1f\xcd\x83\xef\x94\xe7\xc3\x17\x76\xf6\xa5\x90\xeb\xa4\x77\x72\x4e\x21\x2b\x9b\x0a\xbd\x09\x10\x37\x46\x51\x80\x25\xc1\x44\xe3\x28\x06\xbb\xd2\x6d\x17\x63\xa8\x68\x2a\x8d\x8a\xda\xb6\x2e\x31\x94\xd8\x60\xfb\x04\xae\x4a\xdc\xd4\x95\xb6\x15\x66\x7e\x57\xb6\x63\xf9\xfb\x4b\xf1\xf2\x0b\x40\xd4\xa6\xb1\xab\xd7\xec\x91\xee\xcf\x1a\xf0\x95\x83\x2d\x06\x72\x16\x44\x47\xf4\x5a\xd6\xbd\x8b\xdf\x1f\x2f\x43\x1d\x12\xbd\x79\x13\xd6\x9b\x2a\xf3\xb2\x7e\xab\x04\x1f\xd0\x48\x15\x7f\x16\x24\x4a\xfb\x85\x16\x17\xe2\x97\xe2\x78\x81\xaa\x15\x97\x98\x4c\x95\x87\x95\x7c\xc0\x44\x93\x1f\xea\x72\xc7\xaf\x1a\x46\xff\x41\xd4\xe3\x46\x3c\x7e\xd6\xb0\xf7\x90\x11\x5a\x3e\x2b\xc5\xb3\x57\x2a\xc3\x85\x7c\xd4\x8a\x47\x8f\x9b\x7a\xbd\xa1\xca\xbf\xad\xd8\xc1\x0c\x80\x32\xcb\x07\x1b\xf1\xe0\x1d\xbd\x26\xcd\x4e\x35\xa9\x61\x5a\xef\x1b\xa6\x7e\x53\xf1\x9b\x00\xd5\xfd\xae\x6c\xaf\xde\x35\x7d\x19\x65\xad\x48\xa4\x95\x90\xdf\xcb\x50\x75\x50\x00\xfb\x79\x04\x93\xec\x46\x98\xdc\xff\xba\xfc\x40\x94\xb1\x7f\xc1\x96\x68\xa0\xa8\x46\xa6\xa0\x36\x36\x97\x63\x86\xcb\x22\xbb\x5f\x95\xbc\xbc\x6f\x79\xe8\xfb\x10\xdb\x21\x08\x92\x38\x1a\xce\x67\x4f\x9a\x15\xb0\xa7\xf6\x2b\x41\x0e\x15\xb3\xcb\x29\xdf\x90\x79\x23\x24\x82\x92\x6e\xe6\x82\x65\xc3\x52\x27\x3a\xbf\xdd\x36\x80\x11\xf3\xb2\x93\x15\xb5\x20\x77\xb8\x04\x16\xcc\xfc\x5d\x23\x60\x96\x00\xd6\x6d\x37\x04\x2c\x92\xbc\x17\x21\x73\x87\x1c\x59\x34\x91\x7f\x4d\xd5\x14\x2c\x3f\xed\x3f\x57\xdc\xf3\xef\xd1\x88\x9d\xb3\x82\x2d\xbe\x59\xce\xef\x9d\x9d\x14\x71\xbb\x96\x94\x6c\x75\x95\x13\xc8\x7a\xcf\x0a\x4e\x94\xb7\x21\x44\x84\x2e\x18\x94\x63\xc1\xe2\x0f\xc5\x62\x4c\x25\x3c\xf6\x7b\x32\x05\x08\x21\x0b\x00\x63\x63\xb5\xd5\x9a\xd7\xb2\x7e\xe1\x6b\xc8\xbd\xfa\x08\x2b\x2b\xdc\x77\x65\x6b\x76\xec\x35\x7b\x13\x54\x36\xae\xa2\x14\xeb\x07\x45\xa4\xab\xb2\xd5\xc5\x44\xdd\x42\x5c\xbd\x45\xa9\x9d\xf6\x62\xe2\xab\x86\x80\xaa\xbb\xf8\x09\x93\xe9\xb6\x64\x2d\x79\x43\xda\x6d\x53\xb7\xe4\x3b\x52\x0a\xd1\x28\xb1\x93\x29\x8b\x3e\x14\xca\x31\x4a\xfe\x91\x53\xa5\x64\xda\x6e\x37\x94\xe7\xbf\x27\x5a\xf7\xce\xbc\xbc\xef\xba\x25\x2d\xd8\xa2\x5e\xe2\xa6\x98\xe1\xb2\x38\x39\x7b\xd0\x3c\xa4\x6e\xce\x22\xba\xce\xff\xf3\xbf\x20\x2d\xfc\xea\xaa\x64\x8f\x9b\x8a\x3c\xe2\x79\x83\xd0\x6d\x59\x9c\xcc\x46\xef\x19\x29\x3f\x74\x50\xd9\xe2\xa4\x28\x4c\x28\x19\x9d\xb6\xbb\xf7\xf2\x8e\xc8\x67\xb8\x41\x53\xce\xe8\x75\x8e\xf0\xce\x7b\xd3\x9c\x9e\x61\x3d\x96\x6e\x32\xda\x01\x22\xb4\xcb\x62\xe7\x88\x59\x02\x60\x52\x53\x50\x10\xf0\x50\x6c\x9f\xd6\xe5\xfb\x0d\xa9\x8a\x12\x93\xe9\x9b\xa6\x91\xfe\x89\xc5\x1f\x80\xaa\x39\x74\xb3\xf8\x49\x11\xa6\x44\x1e\xcd\xe2\x2f\xe2\x9d\xba\xe7\x25\xa5\xf9\x6e\x64\x1e\x48\x58\x17\xdf\xda\x26\xe2\x52\x92\xcd\xfe\x2e\x06\x75\x52\x5e\xff\x1d\x88\x64\x22\xff\xf6\x0f\x0e\xdd\x4d\xe6\x44\xff\x93\x68\x60\x3b\xbe\x22\x7e\xcf\x3a\xf9\xe5\x8f\xf2\xb9\x45\xab\x02\xd2\x00\x3d\x11\xd2\xac\xea\xbe\xe0\x02\x30\x15\x5d\xaf\x65\x57\xaf\x83\x2f\x74\x5c\xb7\xee\xf2\x1f\x61\x97\x26\x6b\xe5\x0b\xf7\xea\x70\x27\xfb\x2d\xe9\xad\xc6\x9c\x5d\x5c\x10\x21\x60\xed\x36\x24\xc3\xb7\x50\xcf\x59\x56\xe6\x44\x58\xb6\x95\xdc\x1f\xbb\x27\xc9\xa4\xb6\x59\x2f\x32\xf2\x79\xdb\x30\xde\x66\x4b\xcf\x89\x3a\xdb\xb5\x64\x2c\xb0\x64\xc5\xb3\xd1\x5d\xc7\x14\x60\x90\x4a\x75\x45\xdc\x55\x07\x5a\xd3\x13\xa5\xec\x9d\xdb\x84\xbd\x6e\x02\x3e\xb0\x19\xeb\x50\x35\xf8\x21\x23\x4f\xed\x9f\x6e\xc3\x44\xc2\x41\xf9\xa2\x2f\xeb\x65\xec\xf4\x02\x4a\x03\x2f\x89\x24\x74\xe0\x9a\x23\xe4\x13\x2f\x71\x21\x3c\x49\xe5\x4c\x11\x1c\x96\x09\xd5\x97\x73\x4c\x67\x22\x49\x4e\x0c\x52\x2f\xc7\xb9\xf2\x92\x6d\x4f\xce\xfc\xa6\x7d\xea\xf7\x13\x6d\xfd\xd3\xcd\xd3\x39\xf1\xd2\xdf\xce\xfa\x3e\xea\x1d\x6d\xd6\x1d\x40\xc0\xf6\xbe\xbc\x3f\x5d\x44\xc4\x6e\xbb\x7b\x5b\x46\x3f\x96\x9c\x78\xe8\x09\xbc\xf2\xcf\x42\xd0\xde\x0f\x5c\x16\x2d\xc3\xb7\xb6\x72\xba\xd8\xcb\x9e\xea\xd7\x1e\x5f\xd7\x0d\xf5\xee\xf2\x7b\x47\xf7\xee\x7e\x34\xd8\x7b\xc4\x3b\x1e\x3d\x44\xf4\xe5\xe0\x38\x3e\x33\x7a\xf4\x20\xfe\x67\x83\x23\x78\xac\xed\xd1\x03\x78\x5f\x0d\xf6\xef\xf1\xc9\x47\xf7\xef\x7d\x35\xd8\xbf\xc3\x74\x1f\xdd\xbb\xf3\xcd\x60\xdf\x2e\xff\x7e\x74\xe7\xee\x47\x83\xbd\x5b\x59\xe0\x78\xec\x37\x9f\x0c\xf6\x1c\x49\x15\x47\x0f\x10\x7d\x79\xc4\x38\x0e\x43\x7e\xc7\x71\x9c\x2f\x0f\x53\x2f\x9b\x5a\xb9\x87\x7e\x99\x96\x8c\xb4\xbc\x87\xb4\xe9\xa7\xb4\x5e\x6f\xc8\x8a\x37\x2c\x20\x76\x32\xc8\xec\x67\x11\x3c\xad\x1f\xd4\xf7\xf2\xe0\x55\x6c\x17\x55\xfe\x54\x7e\x7e\xad\xd4\x07\x03\xe9\x1e\x86\x7c\xc2\x46\xb5\x2e\xb5\x2f\x18\x7c\xc8\xa1\xec\xfc\x2e\x5c\x0f\xd3\xfb\x1f\xeb\x6a\x5a\x6e\xe9\xa9\x98\x40\xa6\xe7\x5c\x4f\xdf\x93\x75\xc3\xc8\x5b\x52\x57\xd6\xb3\xd3\x3e\x2b\x7c\x47\x67\x50\x1f\xc1\xf5\x2b\xb9\xf8\x3c\x7b\xb4\x5a\x91\xad\x80\x7d\xff\x50\x98\x4e\x26\x14\x6c\x3b\x75\xd7\x73\x93\x9f\xa5\x92\xee\x60\x2e\x1d\x4b\xe8\x3a\xcf\x67\x98\x59\xae\x18\x81\x7f\x2c\xbd\xde\xb2\xe6\x23\xa9\xee\x09\x38\x82\x6a\x5b\x82\xeb\xaa\x6c\x1f\xef\x5a\xde\x5c\x0b\x7a\xfb\xe8\xa7\xf2\x73\x1e\x38\x09\x0d\xc1\xd3\xe6\x72\x9b\x5a\x4b\xab\x9b\x40\x14\x53\x6c\x5d\x43\x82\x7c\xd9\x62\xac\x06\x67\xbf\x7b\xfa\x2e\x53\x21\x74\xb7\x2a\xfe\xf8\x96\x56\x73\xed\x2e\x80\x33\x50\xc5\x0e\xdb\x31\xb9\x6f\x65\xaa\xca\xf6\x8a\x30\xcf\x90\x99\xcf\x70\x6d\x4d\x99\xc8\x89\x08\x4b\x99\x91\xeb\x7f\x3e\x18\xa9\x90\xcc\x43\x9f\x67\xee\x07\x89\xa9\x57\xcf\x6b\x0e\x24\x21\xa7\xb0\xe7\xb7\x2a\xf0\xe1\x79\x65\x8f\xd7\xe0\xa6\x40\xac\x1b\xf6\x1d\x5b\xd2\x7b\xf3\xfd\xa3\x77\x8f\xbf\xd3\xbb\x43\x75\x64\x81\xbf\xd0\x14\xf9\xd2\x7d\x9c\x14\x32\xa3\xa6\x2a\x6e\x20\x1e\xa9\x44\x94\xce\x69\x4e\x34\x52\x6f\xba\x0e\x3d\x38\x6a\x13\x74\x94\x55\x7e\x7b\x4d\xf8\x55\x23\x99\x6e\x38\x2d\x09\x8d\xa0\xbf\x70\xb0\x51\x33\xd9\x18\xcc\xd4\x6a\xd1\xf3\x83\xdb\xd6\x61\x01\x96\x9e\xa1\x74\xa6\x36\xa7\x67\xe5\xf4\xdb\x0a\x21\xdd\x1e\x0a\x27\x52\xc6\x45\x7f\xe6\xa2\x3f\x7c\x11\xce\x9a\xdb\xb8\x6f\x55\x8d\xac\x50\x19\x61\x1b\xf1\x48\xc7\x3a\x97\x8e\xc6\xa7\x0e\x7d\xf0\x87\xd1\xab\xc4\x14\x37\x21\x7a\xe1\xb2\x3b\x16\xaf\x3b\x7c\x25\x95\x17\x29\x18\xf9\x21\xdf\x03\xbd\xec\xf7\xb7\x8e\xc9\x53\x12\xd0\x01\x52\x8d\x09\x78\x69\x4b\xa8\x37\xbf\x07\xaf\x1c\x81\xa6\x62\x45\x5f\x30\xba\x1d\xd9\xbf\x39\xc8\xb1\x37\x07\x26\x9d\x27\x84\xd2\x03\xb7\xb8\xbc\x9b\x87\x6f\xf0\xa3\xc4\x12\x71\x2f\x7a\xf7\xb4\x7e\x39\x76\x2e\x0b\x99\x52\x44\x47\xfc\xb2\x9b\xdb\xb2\x20\xd3\x2b\x48\x53\xa3\x15\x50\x39\x87\x08\xf6\x5d\x8b\xe1\x28\xa6\x94\x53\x28\x87\xb8\xae\x47\x9b\x4d\xf0\x22\x47\x08\xc6\xe9\x64\x3e\x48\xab\x48\x6b\x74\xea\x51\x62\x22\x1c\xcb\xc9\xa4\x9c\xd2\xd6\x95\x5f\xce\x4d\xb3\x12\xcd\xcb\x20\x01\xaa\x9b\xb2\xc9\x46\x9f\x50\xc9\x39\xbd\xbb\x62\xcd\xa7\xda\x8d\xbc\x86\x0e\x51\x53\x78\x0d\x4c\x1e\xca\x8c\x4b\xa6\x34\x03\xdd\x16\x27\x9f\x41\x85\xb4\x6b\x91\x0c\xe8\x62\x1e\xd3\x6a\xbf\x2a\x05\xbb\x19\x7e\xb3\xdf\x83\xe9\x49\x41\xcd\xf4\x60\x59\x53\xf9\xbd\x80\x76\xf3\xd5\xa1\xad\xb4\x87\x30\x8e\xd3\x27\x53\x7f\xbe\x23\x9f\x39\xda\xef\x3d\x20\xe0\xda\xd9\x9f\xa6\x20\x9d\x09\x40\xfb\x22\xce\x2e\x95\xbb\x08\x12\x0e\x04\xec\x1e\xf3\x6d\x14\x38\xc9\xfe\xc9\xd3\xd0\x36\x8c\xc3\x41\xfe\xbe\x64\xe5\x75\xca\x23\x21\x2a\x16\xa4\x75\x0b\xe0\xd1\xf1\xf0\x1b\x93\x67\x7a\x64\x75\xfd\xb7\x1d\x14\x51\x12\x9d\xe7\x3a\x41\x3b\x03\x2d\x67\xbd\xa0\x8b\x66\xb9\x2c\x88\xfc\xdf\x90\xcf\x61\x7e\x2c\xc9\x48\x7c\x25\x8e\xec\xd6\xb9\xd4\x35\x75\x13\x14\x5c\x15\xc0\x21\x18\xec\x6b\x1c\x0b\xc6\x09\x9b\x5c\x1d\x14\x3b\xd7\xcf\xdc\xf5\x31\xee\xc2\xc0\xe0\xf2\x03\x51\xeb\xc9\x1b\xd4\x7d\xb4\x45\xbb\x87\xf9\x3a\xcd\x3d\xe8\x94\x19\xd0\x5a\x39\x14\x27\x58\x8a\xd2\x63\xf7\xda\xae\x27\xfb\x93\x97\x8d\x2d\xee\xf6\x6b\xc1\xb3\x3c\x0c\x4f\xc8\xdd\xf4\xae\xf9\x40\xea\x79\xad\x14\x7e\x8d\x81\x6f\x9b\x02\xf0\xa3\xcd\x66\x10\xba\xa5\x84\x6e\x3b\x04\x5d\x48\x43\x81\x4d\x77\x36\x88\x6c\x32\xc9\x1b\x99\x4f\xaa\xa8\x95\xf1\x17\xe0\xda\x7a\x70\x6d\xba\x64\x42\xbd\xaf\xc4\xd5\x7a\x85\x15\x07\x40\xa7\xd4\xa3\x3e\x84\xa4\x13\xfa\x10\x7c\xa8\x84\xcf\x20\x03\x2b\xe0\xe3\xa6\xa3\xc3\xb5\xdf\x61\x40\x2f\xc0\x5f\x22\xf5\x22\xaf\x91\x0b\x45\x5f\x18\xa9\xbb\x81\xc4\x71\xff\x32\xb0\x3c\xe2\x3c\x7f\x01\x44\x75\xa2\x99\x5f\x0c\xae\xbf\xac\xfc\x7a\x3c\xb5\x6c\x1d\x72\x99\x3c\xce\xc0\xa3\x7f\x2d\x6a\xd9\x27\x05\xfb\x64\xf1\x16\xa6\xd5\x75\x43\xb9\x6d\xff\x69\x90\x32\x77\x09\xc7\x3b\xb6\x01\x14\x74\xbc\x36\x12\x00\xd3\x31\x1d\xc7\xc1\x4c\x88\xa2\x6d\xe1\x00\xcb\x90\xba\x30\x40\x41\x66\x82\xb3\x00\x6e\x71\x89\x79\x90\x9b\xd6\x45\xba\x5a\xc2\x74\x38\x67\xec\xbf\x2e\x18\x6d\x8c\xcb\x3f\x11\x90\x4e\xe2\xd7\x34\x28\x7b\x6b\x9a\xfd\x93\xe9\xa1\x97\x8d\xcc\x81\x9c\x17\xe2\x73\x14\x4d\xbc\xed\x20\x0b\x6b\xbf\xda\x05\x1f\xbc\xa9\x6b\xec\x8f\x6b\xf3\xdc\x25\x64\xea\x26\xa5\xb2\xf1\x6f\xf2\xef\x5f\xbf\xf5\xaf\xf2\x5f\x5a\x4f\xf5\x73\xa1\xee\x69\x26\x8e\x84\xfa\x5d\x55\x5d\x00\x37\x9d\x02\xb3\x56\xd8\xde\xbb\x2f\xe5\x31\xfa\x2d\x01\xea\x1f\x7c\x48\xf7\xd4\x80\xfb\x97\x81\xb4\x17\x52\x76\x14\xa4\x05\xa8\xe2\xa5\xf7\x43\xae\x11\x90\xf3\x86\x41\x38\x7b\xf2\xf4\xc5\xd3\x77\x4f\x33\x48\x58\xc1\x19\xdd\x3e\x7f\xf2\x8c\x35\xd7\x7d\x01\x68\xfd\x9d\x03\x95\xe2\x48\xb9\xa2\x40\x24\x58\x5d\xb0\x85\xf6\x44\xb9\x77\xb6\x04\x89\xcc\xce\xb8\x22\x51\x70\x59\x8d\x84\xb8\x7d\xee\x7d\x55\x64\x59\xd2\xe6\x9b\xe9\x87\xd9\x89\x76\x4d\x54\x1a\x62\xab\x6e\x24\x75\xd5\xfe\x48\xf9\xd5\xb9\x72\x4e\xa2\x75\x45\x3e\xbf\x5e\x43\xea\x2b\x35\x80\x89\x5a\x9d\xdb\xe6\x39\x87\x34\xc3\xd9\x39\xad\x8a\xec\x94\x82\xeb\x92\x37\xa5\xda\x73\x7a\xd1\xbe\x63\xf7\xa8\x69\x02\x1e\x7c\x4e\x9c\xce\x75\xf9\xf9\x87\x37\x2f\x5e\xc0\xdb\xf9\x37\xb3\xff\xf8\xaf\x23\x0d\xf4\xae\x6f\xf7\xcf\x28\xe6\x29\xef\x09\x9d\xc2\xc2\x9d\xcc\x88\x27\xab\x7e\x9b\x44\x83\x3e\x4a\xc8\x94\x14\xd2\xfb\x89\xaa\xa2\x45\x1c\x19\xdd\x80\x13\xbe\x94\xe8\x15\x33\x74\xeb\xfd\xb4\x72\xe0\x0c\x97\xe9\xc1\x16\xb3\xa5\x20\xd2\x8b\x85\x15\xd4\x13\x13\xb6\x2a\xd9\x38\x5e\x11\x72\x9c\xa9\x7d\x39\xa5\x23\x9d\xd0\xe7\xb4\x39\xe5\xbf\x2d\x18\x38\xec\xcd\xb0\x0a\x29\x5f\x2c\x11\xc2\xcd\xa9\x4a\x70\x52\x17\xad\xd9\xcf\x51\xbb\xa8\x97\x4e\x64\x43\xdb\x21\x48\xff\x9c\x4d\x68\xd5\xfe\xef\xff\xfc\xf6\x7f\xff\xe7\x93\x22\x33\xfe\x4d\x03\xee\xe7\x8d\xed\x44\x96\xc4\xf4\x35\x44\x69\x0e\x06\x76\x8d\xb6\x6f\x77\xab\x15\x69\x5b\x45\xb2\x4c\x06\xa6\x91\x6d\xa1\x13\x0a\x06\x2d\x40\x45\xe5\x5a\xf7\xf3\x5a\xd9\x20\x3d\x83\x82\x71\xb0\xf3\x15\x4c\xb2\x33\xac\x98\x60\xed\xfc\x52\x3d\x01\x47\x3d\x52\xbd\x24\x6d\x5b\x5e\x12\x33\xe1\x91\x0a\x7e\x26\x32\xf8\x79\xfc\x1f\xb3\xb3\xb9\x37\x91\xc8\x07\x00\x92\x5e\x8f\x54\xe3\xdf\xf8\x8d\x7d\x5b\xbe\xd7\xf2\x3f\xfc\x96\x9e\x51\xde\x6b\xf8\x7f\xfd\x86\x9e\x75\x5d\x36\xd4\x91\xb9\x74\x9d\x93\xdf\x16\xff\x39\x9b\xf9\xa0\x73\x2c\xe6\xd0\xbe\xf3\xde\xba\x4a\x4d\xf9\x1a\x9b\xbd\xea\x0b\x60\x24\xbf\x2d\xbe\x99\xcd\x26\x13\xf2\xf0\x37\xb3\xd9\x7e\xff\x9b\xd9\x7f\x14\x45\x41\xc4\x87\xa9\x6c\x89\xce\x87\xff\xf1\xcd\x37\xb2\x65\xe9\x59\x67\x1c\x53\xa9\xdc\x27\xdc\x16\xb7\x82\x19\x25\x58\x1a\x4d\xe6\xdc\x1a\x0a\xc8\xa7\x71\x63\x71\xb3\xc1\x3b\xf9\xe1\xa6\x28\x5d\xfb\x8c\xea\x73\xb4\x99\xb6\x72\x2d\x45\x6a\x34\x5a\xd4\x79\x89\x19\xd4\xd1\x1b\xd9\x74\x0c\x40\xfa\x80\x81\x6a\x30\x45\x1d\xde\x48\x7c\x4b\x76\x51\x17\x34\x2f\x45\x07\xf8\xd6\xea\x59\xe7\x1c\x3b\x5a\xcc\x39\xeb\xd2\xbd\xef\x20\xab\x4f\x39\xbd\x10\x13\xd7\xf7\xe3\x06\xa9\x4a\x7b\x6f\x9e\xbe\x7d\xa7\xf3\xb1\x8b\x06\xe3\xec\x94\x9f\x66\x63\xde\x8c\x55\x32\x2b\xe7\x2b\x4f\xef\x28\x87\xfa\x95\xbc\x4f\x45\xcb\xc3\xf6\x69\x08\xc1\x18\xd5\x82\x17\x2f\x08\xae\xc1\x58\x53\x70\x2c\x6b\x2b\x48\x3b\x82\x34\x61\x28\xb3\xf4\x67\x15\x0c\x26\x1b\x4c\x26\xc0\x85\x9f\xc8\xa8\x86\x01\xcb\xb5\xe8\xe3\xc1\x78\x75\x55\xb2\x96\xf0\x62\xc7\xd7\xf7\xfe\x2b\x53\x7d\x14\xbf\x7f\xfb\xfa\xd5\x54\xde\x4a\x74\x7d\x93\xd7\x2a\x97\x99\xb2\x40\x46\x01\xb0\x52\xaf\x6c\x99\x27\x93\x46\x8b\xc2\x14\x7a\x0c\xdf\xae\x32\x96\x26\x48\x9d\xef\xee\x16\x98\xc8\x39\xa6\x0b\xbe\x94\xb4\xaf\xee\x70\xac\xcd\x4e\x99\xd9\xc0\x74\xa1\x8d\xc0\xbf\x92\x2a\x70\xb1\x54\xb1\x31\x46\xb5\xed\xf8\x8f\xa6\xc9\x58\xdf\x81\x62\x93\x49\x14\x0d\x01\x39\x8d\x24\x81\x3c\xd7\x7f\xcc\x17\xb7\x52\x77\x3f\xcf\xb2\x53\x82\xa5\xfb\x76\xf6\xee\x8a\x8c\xdf\x97\xab\x0f\xa4\xae\xc6\x52\x0d\x5f\x91\x4a\x56\x28\x2c\xeb\x31\x91\xee\x2d\xca\xc5\x3b\xcb\x4e\x59\xb7\xec\x70\x1f\x05\x8d\x32\x49\xe8\x13\x66\xf2\x70\xf3\x05\xd4\x89\x27\x35\xbf\x27\x30\x23\x5b\xee\xf7\x19\x64\xe9\x1c\x7b\x8f\x47\xb4\xc8\x04\x82\xdd\xbf\xe2\xd7\x9b\xac\x28\x8a\x46\xac\x47\x27\xc5\xff\xcf\xd9\x79\xb6\x78\x7d\x4d\x39\x27\xd5\x58\x32\x01\x37\xe3\xef\xde\xbd\x7c\xb1\xcc\xe6\xba\x46\xc1\xc2\xc9\x88\x31\x56\x5b\x38\xce\x4e\x73\xa8\x01\x73\xd5\x54\xa7\xd9\x38\x3b\x05\x5c\x47\xa7\xd9\x58\x7e\x43\xaa\x71\x29\xce\x15\xce\x94\x7b\xe9\x38\xcf\x4e\x9b\xd3\x0c\x65\x98\x2e\x15\x2f\xf4\xb7\x5a\x30\x43\x56\xe1\x9b\xd8\xee\x5b\x30\x88\x92\x28\xf3\xdf\x08\xdc\xc6\xf5\xaf\x82\x21\x67\xc7\xef\x6c\xb7\x2e\x8f\xb1\x5b\x87\x8d\xee\x6a\xb7\x2e\x8d\xdd\xfa\x08\x53\xb2\xb4\xf2\x32\x6d\xe5\xad\x5d\x2b\x2f\x0d\x4c\xcd\xa6\x0e\xc5\x08\x22\xbf\x20\x99\xa9\x49\xbb\x57\x16\x3c\xcc\x5d\xe6\x0b\xbc\xb7\x9d\xbe\xa1\xa9\x4a\x4f\x12\xe6\xaa\x8e\x05\xb4\x16\x12\x9b\x84\xbe\x08\xe0\x11\x9e\xca\xa3\xd1\xdb\x85\xf7\x8d\x9b\x15\x25\xb6\x30\xc4\x6d\x21\x19\x0a\x99\x5a\xad\xbd\x4c\x01\xdd\x08\xc2\x8b\x94\xe2\xdc\x7d\x0d\x79\x9d\xdd\x4e\x54\x92\x94\x38\x0f\x4a\x8f\xfe\xb3\x49\xeb\x3f\x1b\x14\xf5\x6c\x13\xa4\xb4\x05\x68\xf8\xc0\x17\xa0\x53\x4d\x34\x77\xa1\x93\x57\x6b\xcc\x6d\x3b\x3c\xe8\xd1\xa0\x19\x29\x77\xf3\x93\x5b\xa6\x04\x22\xd0\x2d\xf4\xe7\x35\x01\x81\xb8\x3f\x7b\x89\x16\x04\xd5\xec\xe0\x3e\xd2\x39\x19\x86\x30\x97\x5b\xef\x07\x40\x5b\x5a\xb5\x80\xb1\x4e\x42\x76\xfb\xa3\x05\x85\x8c\x8b\xcc\xad\x41\x66\xb5\x5c\x08\x3c\x83\x62\x73\xaa\x67\xa6\x7e\xd2\x0a\x97\x4e\x42\x9d\x28\x37\x4e\xbf\x12\xc7\x30\x83\xfd\x28\x70\x5c\x47\xf0\x4f\x29\x58\x9d\x81\xbc\x38\x3d\x6a\x62\x3b\x09\x2f\x3b\x4e\x2a\xf1\xcd\x47\x28\x2d\xda\xdf\x19\xc3\x54\x74\xe6\x0e\x6a\x55\x80\x44\xfc\x8d\x77\x7e\x72\xe1\xfe\x6e\xf0\x01\x57\x8e\x20\xd6\x4e\x46\x2c\x6b\xd6\xc1\x7a\x63\xa4\xf3\x57\xdf\x6a\xe6\x13\xc4\xce\x00\xd7\x73\x82\x40\x5f\xca\x6d\xd6\x1c\xe7\x8d\x1a\x43\xbe\x8d\xe6\x27\x5a\x80\x66\x07\x5e\xfb\xf4\x55\xf0\x05\xc7\xb8\x89\xb8\x57\x8e\xcc\x8c\x55\x10\x35\x49\xcc\x25\x1f\x07\xa0\xe4\x11\x0b\xc7\x7d\x16\x8e\x28\x16\x2e\xd7\x3c\x9c\xee\xe6\x3c\xe7\x77\xe4\xe4\x78\x92\x93\xd3\x59\x69\xe7\xea\xb5\xfa\x6d\xca\x28\x2b\xf0\x44\x8c\x9c\xbc\x32\x8f\x60\xe4\xd8\xdd\x19\x39\x66\x18\x39\x48\x0f\x6d\xd5\x53\xfd\x59\x0f\x3c\xcd\x58\xb8\x2f\x62\x47\x4b\xbb\x01\xad\x02\xfe\xae\xd0\x38\x54\x02\xb2\xb4\x7d\x62\x0c\xc1\x0d\xba\x65\xb1\xac\xc2\xdc\xda\xe5\x35\xd4\xdd\x62\x78\x97\x96\x26\x08\x08\x6f\x2c\x96\x55\x0c\x33\x56\x16\x14\xb2\x39\xed\x3c\x59\x85\x79\xb2\x4a\xdd\x23\xab\x48\xd1\x90\xfb\xb2\x0a\x4b\xc9\x2a\x2e\x34\xc7\xd9\x69\x09\xec\x56\x8b\x7c\x5f\xa3\xb2\xc7\xd7\x88\xf3\x63\xa3\x6d\x8c\xcb\x0d\xf7\x13\xfb\x8c\x29\xd4\xec\xb6\x21\x70\xe7\xde\xaf\x05\x5f\xce\x75\x1b\x5a\x3f\xdb\xd0\xcb\x2b\xfe\xc8\x6b\x1b\x3f\x15\xdf\x90\xe9\x05\xa4\x41\xe6\xcb\x3b\xfb\x9e\x38\xcb\x76\x77\x25\x15\xc8\x2c\x63\xed\x4d\x1c\xb3\x0e\x8e\x57\x1a\x1d\x1d\xaa\x4c\x6d\x84\xa0\x17\x49\x7f\x74\xfc\xb1\xeb\x94\xec\x57\xda\x0d\xf3\x11\x0c\x83\x76\xbf\xef\x07\xa5\x7d\x27\xe0\xd6\xe5\x35\x26\xe8\x9c\xc3\x7f\x91\x34\x03\x6e\x87\x5a\x21\x6a\xa0\x61\xfc\x72\x40\x3b\x68\x7c\x56\xbd\xa7\xca\x35\x4e\x5e\x6d\xbe\xdb\x6a\x5d\xf8\x4d\xad\xaf\x8c\x94\x21\x19\xe4\x5d\x0a\x62\xa9\xd9\x00\x70\x30\x2d\xe4\xfc\x4d\x51\x21\xa3\x30\x34\x72\xa7\x8b\x69\x64\x59\x30\xc1\x3f\x08\x30\xd4\x49\x6c\x4b\x3e\x5d\x90\xe5\xbc\x56\xd8\x46\x96\xc9\x38\xfa\x96\xd4\x55\x9e\x55\xb4\x7a\x4b\xb8\x46\xc0\x4c\xa5\xef\x21\xb8\xd9\x54\x52\x9f\x4a\x71\xc3\xe8\x25\xad\xcb\x8d\xfc\xdd\x60\x89\x94\x0c\x62\xb4\x4d\x58\x76\x0d\x67\x33\x71\x1a\x41\xe1\x7c\x38\xe6\xc8\x7b\x0a\x69\xa3\xef\xad\x74\x20\xa3\xff\x92\xd6\x94\x4b\xce\xfa\x1e\x88\x0c\xf7\x5a\xc2\x3e\xd2\x55\xd0\x05\x67\x65\xdd\xae\x1b\x76\xdd\xda\x3f\x7b\x5b\xd4\x3b\xf1\xb8\xf7\x75\x15\x4d\xd0\x79\xa9\x92\x03\xf4\xbd\x7e\xdf\x34\x32\x0f\xd2\x41\x3f\xc7\x44\xa0\xc3\x91\xd1\x0d\x6e\x0e\xdb\xf4\xf3\xbe\x4e\xc3\x16\xfd\x6f\x87\x46\x6d\xef\xeb\x64\x17\xf7\x64\xc2\xd9\xf6\x1e\x54\x7e\x08\x16\x00\x64\xf9\x88\xf8\x0b\x70\xcb\x2d\x71\x8b\x77\x78\x83\x57\xb8\xc2\x5b\x7c\x85\xd7\xf8\x1a\xdf\xe0\xcb\x80\x7e\xd3\x75\x7e\x67\x42\x2a\xe9\x9a\x4a\x70\xa9\x73\x20\xfd\xf7\xd9\xdf\xa6\xf9\x62\x76\xef\xff\x2e\xf7\x67\x8b\xd9\xbd\x6f\x96\xe8\x6f\xd3\xfb\xa8\xaf\xe2\x82\xa3\x1a\x10\x77\x39\x65\xa4\x1d\x97\x7c\xbc\x21\x65\xcb\x65\xcb\xf1\xd9\xf4\xec\x37\xd3\x99\x2c\x16\x7f\xd3\xec\xc6\x57\xe5\x47\x32\xce\x4e\xbd\xc1\x4f\xb3\xe9\xf8\x7b\xf1\x11\x19\xef\xb6\x97\xac\xac\x88\x68\xca\xc6\x1f\x09\x6b\x55\xad\x21\x68\x8f\xc7\xfc\x8a\xd4\xa6\x8d\x1d\x7d\x9a\xa1\x11\x9f\x3e\x79\xab\x32\xb6\x70\xf9\x3f\x86\x47\x5e\xa8\x2f\xf7\x7e\x7a\x0d\x54\xe8\x2f\xf7\x7f\x7b\x4d\x6c\xc8\x2e\x8f\x1e\xc9\x86\x32\xfc\x98\xcb\xff\xe5\x23\x1b\xa7\xcc\xed\xdf\xf2\x95\xc0\x84\xe2\x52\xd3\x55\xf9\x4c\xa5\x9f\xe1\xea\x0f\xf9\xd0\x8f\x6e\xe6\xfe\x6f\xd9\xc4\x64\x7d\xe0\xe6\x4f\xf9\x42\x47\x0a\x6f\xfc\x71\xbc\xbc\x10\x7e\x38\xa1\x1e\xd3\xc9\x13\xe1\x47\x04\xca\x06\x5e\x52\x07\x3f\xdc\x4b\x0d\x61\x73\x3c\xb8\x11\x5b\xf2\x65\x9c\x74\x22\x11\x12\x28\x9b\x06\x89\x28\xc2\xa8\x3e\xd9\xc8\xcf\x4c\x11\x04\xe6\xc9\x26\x7e\xa6\x8a\x20\xb6\x4e\x41\xd1\xc9\x5c\xe1\x85\xc7\xc9\xd7\x71\x96\x8a\x44\xa4\x98\xdb\xd4\xcd\xd1\x90\x08\xf6\x32\x83\x2a\x02\x52\x6c\xfd\x4d\xf2\x43\xbd\xbd\x9f\x0a\xb9\x9c\x40\x6d\xee\xfe\x52\x90\x4b\x44\xa7\xf3\xd4\x53\x0f\x27\x92\x31\xeb\x7c\xe8\xad\x42\x7e\xe7\x78\x04\xe7\x22\x11\xdd\xce\x13\x0f\x55\x63\xcb\xff\x16\x95\x06\x88\x3c\xdf\x7e\xba\x13\x1e\xb8\x16\x9b\xaf\x1d\x88\x5e\xfb\x10\x15\xe2\x94\xf3\x76\x1d\xbf\x7d\xf4\xfd\x73\x3d\xf8\x2a\xf9\xd6\xf9\xfc\xca\x6f\xf0\x4e\x5f\x77\x05\x0d\xf6\xb1\xe4\xc4\xbe\x2c\xfd\x97\xd2\x54\x6d\x5f\xb7\xfe\xeb\x57\x70\x27\xdb\xd7\x8d\xff\xfa\x5b\x79\xaf\xda\xf7\xbb\x80\x9e\xa8\x1b\x49\xd9\x97\x25\xe0\x6e\xfc\x36\x36\xa9\x15\xb7\x7f\xcb\x57\x3a\x69\x10\xd7\x7f\xe9\xfd\x74\xb2\x12\x70\xef\xa7\x6c\x20\x2b\x5e\x98\x14\x0c\x05\xf3\x47\xbc\xb0\xcc\x0b\x90\xea\xb7\x92\x75\x29\x6a\xd3\x2c\x7d\x9d\x89\x8f\x71\x16\xa7\xff\x88\xe2\x2d\x3f\x31\xca\xe5\xdf\x67\x78\xd5\xd4\x6b\x7a\xb9\x63\xfa\xb7\xbc\x03\x79\x22\x8b\x48\x6f\x8c\x27\x57\x89\x28\x84\x80\x96\xe1\x5b\xbf\xc7\xfe\xe8\xce\x27\x6f\x7d\x41\x0d\x9e\xf4\x70\x87\x7d\xcc\xdc\x2f\x9d\x2d\xc1\xed\x33\x27\x53\x99\xc2\xff\x9c\xcc\x65\xe4\x0b\xec\x1e\x52\x4f\x21\xd5\x97\x98\xd5\x5c\x25\x3e\xec\x61\x75\x41\xaf\xf4\x2f\x13\x5e\x6f\xb2\x3c\x1c\x19\x92\x0b\xd8\xd0\x1b\x86\xcb\xfc\x3c\xfb\xff\x22\x6b\x74\x32\xbd\x1d\xb9\x4a\xf3\xc5\x60\x60\xb3\xc9\xd2\x75\x64\xaf\xaa\x7d\x2f\xf4\x5c\x0e\xfd\x7f\x24\x0d\x88\x53\xc1\x47\x19\x03\x83\x74\x1d\x52\xb9\xdb\x53\x1b\xc6\xd8\x99\x0e\xaf\xaf\x5f\x16\xf8\xe7\xac\xdb\x4f\x51\x9f\x5e\x50\x32\xa4\x5a\x1b\xfb\x3d\x9f\x33\x5d\xc3\xd2\xbf\x4c\x9c\x32\xb0\xd2\x68\x45\xc0\x06\xff\x81\xdc\x80\x0a\xd6\xf1\x7c\x4d\x5b\x5c\x9d\xcc\x81\x05\xa8\x28\xa5\x86\xb7\x6c\xcd\x15\xab\x06\x92\xf6\x36\x48\xac\x9c\x55\xa4\xef\xab\x27\xf6\x4d\xf8\x9d\xcc\xe5\x27\x27\x66\xf3\x5b\x12\xac\x4b\x12\x7a\x4b\xdf\xef\x89\x53\x54\xa5\x3f\x75\xb6\x4e\x1f\xfb\x41\x26\x94\x55\x8e\x33\x66\xee\x72\xf0\xb7\x5b\xb2\x82\x04\xa4\x79\x8d\x50\x02\xcc\xa6\x7e\xb3\xf2\xc8\x72\x57\xff\xdc\xac\xa0\x36\xa9\xdc\xfb\xa1\x53\x4b\xad\xa9\x39\xd8\x79\x0d\x21\x34\x54\xa7\x67\x92\x83\x5f\x12\xfe\xb2\xdc\x6e\x49\xf5\x07\x72\x93\xc3\xdc\xb1\x2a\x10\x39\x6a\xa1\xf4\xe3\x07\x72\xa3\x40\x1a\xef\xe3\x64\x92\xab\x7e\xe2\x77\xaa\x33\x36\xfd\x40\xeb\x0a\xbb\x49\x21\x11\x2e\xcf\x65\x76\xa7\x12\x2a\xb3\x4e\x95\x8e\x6d\xba\x6d\xfe\x7f\xd4\x7d\x6d\x6f\xdb\xb8\x96\xff\x7b\x7f\x8a\xd8\xf8\xc3\x10\x51\xc6\x93\xdc\x8b\x3f\xb0\x70\x4a\x04\xbd\x3b\x33\xd8\xc1\xee\x4c\x07\xdb\xbd\xaf\x0c\x6f\xaf\x6a\x2b\x09\x51\x59\x34\x28\xb9\x9d\xa0\xd6\x77\x5f\xf0\xf0\xe9\x50\x26\x25\x39\x4d\xda\x99\x37\x33\xa9\x4c\x91\xd4\x39\x87\xe4\xe1\x79\xfa\x95\x8f\x3b\x21\xf7\x0f\x7c\x63\x86\x74\x6f\xfd\xee\x7f\xd2\x75\xe9\x35\xc4\xff\x12\xba\x81\xf2\x80\x90\x5c\x27\x2c\x6a\x8a\x7b\xd1\x8a\xa8\xc7\x06\x30\xd8\x40\x80\xc2\x95\x6a\x94\xe0\x2d\xa6\x26\x7c\x9e\xc7\x7e\xea\xa1\x23\x1f\x43\x47\xfe\x14\x3a\x56\x8a\x8e\x1c\x82\x0e\x5d\xf9\xa0\x68\x8c\xb1\xae\x91\x6a\x3f\xf3\x67\x21\x0b\x7e\x5f\xa9\x99\x16\xb4\xa2\x92\xaa\x4e\xc8\xd7\x32\x82\x1b\x46\xf8\xa5\x92\xaa\x51\xff\x6c\x0b\xe5\xc2\xbe\x9d\x5a\x25\x61\xe4\xed\x77\xe1\x11\x10\xc6\x55\xdb\xcc\x2a\x0a\x5e\x60\x28\x8b\xa5\xf3\x41\x87\x56\xf1\x6d\x42\xa2\x2d\x4c\x86\xa6\xc7\x32\x46\x87\x37\x15\x94\xb4\xf3\x7d\x9d\x2c\x0f\xd3\xc9\x9b\x1a\xb5\x76\xe8\x59\xfd\xcd\xfa\x8e\x8e\xee\xce\xaa\xe9\x13\x54\x86\xe5\x88\x28\x7a\x2d\x4d\x9a\x55\xb5\x76\x15\x8a\x39\x49\x54\xc8\xfc\xc2\xb7\xe0\x44\xd7\x41\xd3\x08\x5e\x0b\x52\x67\x92\x74\xea\x3d\xe9\x7a\x24\xa3\x1a\x23\x19\xd5\xd3\x24\xc3\x01\xdf\xd8\xc0\x1f\xc7\x3c\xc4\x5d\xe0\x44\xb2\x41\x47\x23\xc1\x95\xff\x2c\x75\x1b\xbd\x53\xf9\xe2\xcf\x00\x59\xe7\xd1\x79\x2a\x87\xce\xa3\x93\x61\x2b\x5c\xf9\xcf\xba\xc7\x56\x62\x4d\x6b\x96\xa7\x37\x9a\xc9\xd0\x46\x93\xd3\x86\xd6\x84\xf2\x95\x58\xb3\xda\xba\xa0\x79\x4b\x53\xaf\x44\x82\x9e\xf8\x5d\x86\x54\x5b\xcd\x18\x5e\x6d\xed\x2a\xd7\x2c\x5b\xf0\xea\x53\x21\xeb\x42\x07\xb8\x28\xea\x7b\x8d\x04\x9f\x80\x82\xf1\x45\x65\x50\xd1\x5d\x83\xbe\xec\x84\x08\x77\x05\xe5\x86\xb3\x58\x0d\x21\x93\x7c\x3e\xd7\x81\x14\x17\xd5\x2a\x5f\xb7\x6d\x4b\x1f\xf2\xda\x7e\xe2\x9b\xf2\x73\xfe\x68\xd6\x64\x0a\x48\x2e\x6f\x1a\xe9\xd5\x15\xa7\x7c\xcd\xe7\xb3\x1c\xde\x86\x4a\x10\x0b\xab\x52\x42\xf7\xf1\x0d\x24\x35\x40\x62\x3e\x99\x07\x86\x4e\x4c\xe1\x78\x94\xf3\xf9\xcc\xe8\xb0\x9a\x07\xee\xcb\xc3\x79\xfc\x32\x34\x87\xe4\x47\x66\x33\xbe\x35\x9f\xe8\xfa\x3e\x1e\x67\x7c\xdb\x79\x46\x4e\x06\x0c\x77\xbc\xa7\x0d\x7c\x99\x57\xdb\x4b\x25\x49\xd1\x29\xb8\x5f\x4f\xe7\x92\x3e\xc3\xce\x9a\xc8\x34\x83\xfa\xd5\x78\x5c\xcf\x6a\xa2\xbf\x39\xa5\xdb\x7e\x0b\x76\x23\x51\x6f\x29\x7a\x2d\x35\xb6\x46\x28\x54\xed\x66\x01\xad\x9b\x55\x0a\x85\x64\x7d\x3c\x36\xab\x62\x4d\x00\x9c\x32\x76\xd3\x48\x06\x44\x36\x08\xd8\x42\x42\xf9\xfa\x60\xbd\x22\xdf\xbf\x20\x5f\x8a\xde\x5b\x82\x24\x4a\x1e\xec\x8d\x97\x31\x26\x60\xa9\xcf\xe7\xfc\xe4\xfe\xe3\x11\xab\xa4\xae\x55\x1f\xee\x52\xe9\x17\x31\x62\x95\x7e\xd5\xc4\xbf\x26\x46\x48\x7e\xb7\x0f\xe1\x95\x74\x06\xe8\xc4\x61\x69\x6a\x08\x6f\x5e\xe8\x42\xc3\x66\x0f\xb4\x47\x45\x80\x5d\xec\x8e\x82\x9c\x5d\xdd\xe4\xbe\x08\x6c\x6e\x8f\x82\x9a\xf1\x55\xbe\xa6\x26\x06\xe9\xbd\x8f\xa8\x75\x0c\x42\xe4\x56\xda\x65\x4d\x68\xc9\x0e\x30\x34\xdd\xb0\x83\x83\x6b\x86\x0a\x0d\xee\x5f\xcc\xff\x09\x75\x7f\xfd\x3f\x75\x56\x44\x49\xe8\x46\x4f\x60\x7b\x93\xe1\xd6\x3a\xd5\xc4\x78\xaa\xb7\x74\x43\x5a\xb1\xca\xd7\x00\xa1\x51\x3a\x25\xa1\x84\x83\xa1\x85\xdc\xa8\x3d\xb3\x89\x5f\x26\x14\xa3\xee\x23\x1a\xdd\xc3\x4d\x21\xc5\xb6\xe7\xe4\x07\xce\x25\x1d\x26\x2b\x57\x2c\x12\x9a\xac\x35\x13\x4f\x24\x6b\x4e\x68\xad\x47\x3e\xdc\x64\x87\x14\x59\x0f\xb4\xd6\x79\x65\x25\x73\xa9\xca\xcb\xdc\x51\x37\x37\xd4\x1d\x45\xcf\x12\xe8\xd9\xfb\x7d\x29\x4d\x4d\x47\xb2\x36\xf1\x5b\x4a\xa6\x2e\x14\x5a\x63\xb3\xca\x80\x83\xe3\xad\x50\x39\x9f\xf0\x7c\xaf\x48\x80\xcf\x2b\x21\x8c\x0f\xb2\x34\x62\x76\xf2\x9e\x62\xb6\x71\x97\xf2\xa9\x35\xd0\xfb\x77\xcf\xf0\x37\x27\x2b\xfd\x3c\x57\x4d\x3e\x79\x52\x93\xcf\x73\xc8\x96\x2a\xff\x8f\xa2\xdc\x77\x10\x5c\x95\x3a\xe6\xa2\x6c\x8c\xc8\x2b\x16\xbc\xbd\x73\x71\x69\xfa\xff\x5d\xa9\xb6\x18\x8f\xba\x4f\xdb\xd8\x5d\xe9\x12\xc0\xeb\x76\xc3\x6a\xd0\x86\x15\x40\xb1\xab\xb3\xec\xea\x46\xbe\x0e\x1e\xde\x48\xbb\x75\x55\x26\x3a\x6e\x25\xd7\x13\x5d\x65\xbc\x77\x56\x15\x69\xed\xec\xdb\xc8\xa4\xdc\x4a\xc1\x45\xb4\xdd\xc4\x8c\x2a\xed\x9b\x45\x74\x6a\xff\xa3\x56\xae\xfb\xa7\x93\x3b\x0c\xa2\xda\x61\x7e\xd5\x6a\x8a\x6e\xad\x73\xab\x54\x17\x78\x85\xe1\x95\xf5\x63\xde\xe4\x71\x3e\x42\xae\x62\x27\x6c\xdd\xc2\x6a\x2b\x96\x5e\x3e\x08\xf1\xb1\x9e\x91\xe0\x60\x77\xba\xf1\xcf\x52\xec\x4c\x68\xbf\x36\x0a\xe8\x95\x68\x55\x8b\x58\x3b\xb8\x13\x98\x05\xdb\x4c\xbd\xdd\xce\x07\xec\xff\x9a\x78\x4b\x23\xe0\x48\x62\x6e\x68\xac\xd1\xf7\x68\xfb\xaf\x31\x03\xc6\xe9\x84\xc9\x1d\xd1\x65\x7c\xb1\xa9\xf1\xc4\x1a\x49\xa8\x09\xca\xa0\x1d\x9a\xfb\x2c\xd5\xd9\x8c\x3e\x89\x8e\x34\xda\xe1\x7f\x16\x8f\x33\x6b\xa0\x18\x35\xaf\x74\x37\x50\x9c\x1e\xdd\xb0\xd4\xcc\x2c\xf2\x2c\x82\xa6\x55\xc2\x8d\x20\x84\x6c\xe3\x9d\x6f\x19\xd6\x24\x89\xdd\xd6\xc2\xdd\xbc\x20\xb0\x7c\x87\xd1\xec\x3b\x0b\x2f\xdc\xf1\xd4\xc0\x29\x9e\xf7\x60\xcf\x17\x16\xa2\x6f\xe2\xfe\xea\x48\x5b\x2c\xf7\x48\x07\xf9\x74\x30\x4c\x52\x13\x93\x18\xb5\x1e\xc1\x50\x9e\xf6\x7d\x7e\xd9\xbb\x96\x1a\x95\xc7\x87\xce\x25\x49\x47\x2b\x54\x6b\x10\x41\x8f\xd5\xf3\x79\x1f\x82\x94\x3d\x7a\x4e\xad\xf0\x9d\xcb\xb4\x0b\x5a\xc6\x7d\xaf\xf8\x5a\x1d\xfa\xab\x62\xdd\x7d\x6c\x34\x68\x33\xff\x84\x62\x31\xe6\xf0\x82\x72\x7f\xf1\xe3\x2b\xb6\xa5\xba\x83\x8a\x7e\xb7\xf3\x2b\x3a\x2d\x7c\x8e\x9d\xb0\x37\x81\xf3\xdd\xcf\xe1\x40\xab\xb3\x4c\x8e\xdf\xb3\x0a\x9f\xc9\x2d\x63\x06\x94\x22\x61\x40\xe1\x77\x19\x62\x7b\x30\xe0\x4a\xac\x5d\x3a\xeb\xc9\x2f\x13\x90\x08\x00\x74\xec\x7e\x5e\x96\x83\x7f\x1a\x5d\xae\x3a\x35\x65\x0d\x74\xe0\x79\x47\x61\xcf\xae\x0d\x3b\x7c\x63\xb6\x47\xde\xbf\x8b\x36\xe1\xc9\x64\x62\x5e\xcf\xd8\xc9\x25\xe3\x84\xca\x20\xb3\x63\x60\xac\x96\x26\x1a\x44\xb2\x35\xb2\x2b\xda\x2c\x6a\x5e\xdd\x1f\xca\x5c\x42\x21\x5d\xa0\xd2\x69\xc4\x04\x01\x10\x37\xba\x77\x9d\xa9\xae\xdd\xaf\xa9\x9e\x51\x81\xde\x02\x6f\x6a\x1d\xe6\x84\x7b\x4b\x98\x98\xfe\x4f\x35\xbb\x1f\x8b\x4d\x99\xcb\x62\xfb\x6b\xbe\xdf\xf3\xea\x5e\xbd\x85\x5e\x21\xf4\x44\x74\x47\xf6\x11\xbc\xe5\xb0\xad\xb8\xc9\x5e\x31\xd2\xf4\x0b\x24\xd7\x13\x53\xcb\x03\xbb\x49\xad\xa3\x84\x50\x3f\x99\xe0\x55\xbf\xc9\xea\x66\xc1\x78\x41\xcb\x60\xbd\x6a\x60\xe8\xb0\xcc\x87\xda\xd5\x5d\xf0\x8f\x6a\x21\x03\x0a\xe8\xfb\x9b\x6c\xad\x57\xd6\xc7\xba\x47\x3d\xdb\xc9\xf2\xca\x67\x78\x75\xfb\x3a\x49\xc1\x62\xe0\x73\xb9\xe7\xb8\xa2\xfc\x49\x5a\x19\xb7\x38\xd7\x6e\x99\x06\x52\x9a\x21\x9f\x42\x50\x05\x21\x21\xd5\x61\x7b\x3e\x85\xac\xda\xce\xd2\xfd\x3d\xf1\x2a\x01\xb7\x92\x30\xaa\x16\x3f\x63\x1c\x67\xe4\x02\xb5\x97\x23\xce\x3a\xa2\xc6\x99\x8b\xcd\x14\x26\x3b\xd4\xba\xd1\xde\x6f\xf2\xca\x99\x30\x33\x49\xc2\x25\x17\x1c\xb4\x2e\x73\x42\xb0\x02\x1e\x2b\x55\x47\x1b\x32\x0c\xb5\x5c\xb0\x37\x94\x1c\x46\xc5\x7d\x32\x41\x2b\x7b\x89\x0f\xaa\xa8\x75\xdc\x30\xce\x05\x93\x6b\xbf\x7e\x96\x27\x9c\x4b\x5d\xbf\x0a\xd6\x07\xf2\x35\x13\xed\x68\xf7\x3d\xef\x78\x25\x43\x82\x70\x57\xf1\x0b\x3b\x82\x79\x78\x5a\x09\x45\xb4\x60\x01\x77\x8f\x29\x47\xba\xe8\x67\xf3\xe0\xb3\x79\xf7\xb3\x83\x13\x8d\x07\x91\x3e\x01\x15\x26\xda\x58\x07\x5a\x35\xbf\xcb\x4c\x9e\xd3\xe1\x49\xeb\xe5\x30\xb0\x5e\x44\x77\xbd\x94\xfd\x72\x1c\xb4\x3f\x4c\x19\x2b\xcf\x5a\x2f\x07\x56\x9a\xf5\x72\x38\x63\x9c\xda\x64\xf8\x1c\x28\xdf\x2e\xc5\x82\x6f\xdb\xb6\xab\x3e\xe4\x6b\x66\x2b\x94\xb6\xed\x48\x3f\xb6\x91\x18\x2a\xd8\xec\xbd\x46\xa6\x79\xd7\x79\x6d\x96\x22\xf6\xe6\xa1\xd8\x7c\xbc\xd4\x2f\x5d\xba\xc1\x2e\xc3\x88\x32\xa2\x81\xe3\x12\x5d\x6b\xf7\xfe\x4a\xac\x95\x22\x45\x25\xf1\xa6\x05\xeb\xfc\xeb\x48\x67\x3e\x5e\x3a\xa3\x11\x22\x3c\x88\x0e\xe1\x4f\x8b\x0c\xe1\x28\x90\x2c\x14\x5a\xab\x22\x1f\x90\x8a\xec\xb5\xe3\x92\x5d\xdd\x94\xaf\x9d\x62\x5c\x5a\xc5\x78\xc3\xf2\x55\xb9\xa6\xdb\x27\x09\xf7\x76\x40\xb8\x37\x5d\xe1\xde\xf7\x0b\x5d\xd0\x7e\x3b\x65\x6c\x7f\x96\x70\x6f\xd9\xde\x08\xf7\xf6\x8c\x71\x0e\xab\x72\x6d\xe4\x7b\xab\xe4\x7b\x13\x95\xef\xda\xca\xf7\x41\xc9\xb7\x2e\x56\x30\x8a\x4a\x41\xa5\xfd\x84\xa6\xfb\x7c\x5a\xe3\x09\x0f\x46\xaa\x8d\x83\x8a\x72\xaa\xf4\x43\x42\x0f\xee\x00\x14\x24\x5a\xe1\x71\x13\x8c\x4d\x8d\x9b\x60\x6d\x67\xdc\x44\xab\x51\xe5\xe5\x4f\xed\xca\x89\x00\xd5\x54\xaa\xd4\xd8\x22\xf3\x4f\x32\x3c\xdb\x88\x84\xbc\xae\xf9\x7d\x65\xf1\x13\x77\x85\xbc\x2f\x68\x0c\x28\x66\x2f\xf9\x2e\x97\x8f\x8a\x93\x00\x5f\x0d\x2d\xb7\x66\x34\x5e\xd4\xcb\x95\x71\x33\xae\x69\x47\x0f\xee\xbb\xd9\x26\xc1\x1d\x43\x68\x73\xd7\x59\xb1\x8d\xd9\x33\x4c\x3d\x2e\x7f\x69\x5d\x15\x6b\x7f\xf3\xed\xe8\x42\x50\xd3\xcc\xa0\xc5\xaa\x86\x10\xc4\x8f\x10\xe0\x56\xc5\x9a\xe6\x5e\x45\xd2\x99\xd4\x63\x6c\x47\xae\x32\x04\x47\xe5\x10\x62\x85\x0c\x5c\x67\x3f\xbb\x06\xb6\xdb\x84\x65\xa8\xbf\x30\x42\x9f\x1d\xaa\xaf\xc3\x68\xb9\x86\x60\x72\xa8\xde\xfd\x50\x47\xa8\x4e\x42\xb2\x3b\xd7\x66\x6c\xa7\xae\x1c\x43\xb2\x4b\xd3\x62\x6c\x87\x03\xbd\x8d\xed\xca\xd4\xab\xe8\x63\xc2\x70\x27\xb1\x62\x21\x9d\xbe\xfe\x1d\x35\x19\xd3\x65\xac\x80\x48\xa7\xcb\x1f\x51\x93\x31\x5d\xc6\x4a\x96\x74\xba\xfc\x27\x6a\xd2\xdf\x65\x8b\x56\xd2\xa9\xf0\x47\xd7\x54\x74\xc4\x77\xbc\xba\xf7\xd5\xf9\x52\x48\x28\xe3\xec\xb3\xcf\x3c\x56\x67\xd9\x8c\x1f\x07\x14\xae\xb3\x86\x39\x59\x4e\x2f\xfa\x51\x9d\x95\xf6\x92\x1f\xf6\x2d\xc6\x09\x96\xe9\x4b\x0d\x12\x5b\xbf\x67\x30\x29\xff\x34\x9e\x45\xb1\x75\xfd\x42\x43\xc5\xd6\xfb\x0b\x0d\x85\x1b\xbf\x98\x74\x87\xcd\x07\x87\x39\x75\x24\x21\xff\xd1\xf4\x0a\xf7\x1c\x48\xcb\x57\x76\x7c\x7d\x8e\x0f\x4b\xdf\x44\x4d\xf1\x7f\x80\xb6\x30\x8e\xea\xe5\x6a\xdd\x5a\x77\xb7\x31\x6b\xfe\x5a\x34\xb9\x0d\xec\xe6\x77\x59\x3d\x9f\x67\x39\xd4\x4f\x60\x35\xa1\xce\x76\x11\x52\x18\xca\xc6\x26\x62\x8b\x72\xed\xf0\x28\xe9\x06\x7a\x72\x2e\xf2\x8d\xbe\x5b\x39\x57\xcc\x16\xdd\x33\xa5\xbb\x67\xee\xd9\x15\x7d\x60\x0e\x28\x7b\xff\xfa\xe1\x66\x6f\xef\x9a\x77\x4c\xae\xf6\x6b\xba\x3b\x9d\xcc\x1d\xa1\x8f\x6c\xa7\x27\x73\xcf\x76\x41\x44\xce\xbd\x7e\xf9\xc3\x4d\xf6\x81\xe5\xf1\x20\x9b\x0f\xf4\x9e\xb4\xdb\xd5\x7e\xcd\x1e\x5b\x33\xfd\xad\xc3\x48\x4a\xdb\xc4\xb5\x2a\x0b\x66\x1e\x1c\x5a\x37\xca\xae\x4d\x68\xca\x03\xd6\x2c\x4a\x5e\x7d\xac\xc9\x68\x0b\xb9\x6e\x4e\x07\xac\xe2\x05\xae\xd5\xfd\x02\xa6\x70\x3a\xc6\x06\x8e\x8d\xe0\x6e\x92\x11\xaa\x56\xcc\x06\x28\xfa\xca\x98\xfe\x06\x32\x23\x6b\x0f\x31\x28\x1d\x90\x3b\xc9\x2a\x72\xa6\xef\xd4\xd4\x70\xe4\x0c\xe3\x9d\xa5\xdd\xa6\xd5\x08\x97\x29\x45\xd7\x90\x6a\x3d\x9f\x67\x1c\xfc\xa4\xab\x0a\x9c\xa3\x7c\xc8\x39\x6a\x1c\x61\xfa\xe3\x79\xfd\x9b\xa8\x8a\xae\xa3\xbe\xc7\x7b\xda\x80\xd9\x98\x6f\x75\x51\xc6\x2d\xeb\xd0\x47\x3d\x23\xae\x88\x8c\x77\xe5\x3b\x47\xbf\x0e\xd2\xd6\x4e\xaa\xf9\x7c\x0a\xaf\x8f\x05\xef\x57\xe4\x27\x89\x82\xed\x69\x1f\x5e\x8f\x6f\x2e\xf0\xe1\x89\x71\x3e\xbc\xb8\x07\xa0\xcf\x79\xc7\x99\x20\xd4\x14\x1a\xe3\x26\xea\x62\x44\x38\x4b\xc7\x69\x68\xdd\xbb\x6a\x09\x76\x89\x6e\x17\xa0\x97\x79\x94\xc8\x33\xc6\x89\x93\x5a\x79\x66\xe1\x3d\xdd\x9d\x3c\xd2\x7b\xac\x8b\x10\x7d\x85\x13\x79\x95\xaf\x6d\x04\xab\xae\x0f\x0c\x8f\x26\x27\x29\x05\xba\x2b\x52\x33\x1e\x0b\x34\xbc\x75\xae\xe5\x04\xfd\x32\x53\x9c\xf0\x40\xbf\x7c\x2c\x1e\x97\x05\x95\x36\xae\x28\xaf\x1f\x96\x4d\xb0\x9f\xa9\x53\x6f\xc9\x5b\xb2\x8c\xfb\xab\x6d\x4f\x3e\x30\x0e\x47\x23\x73\x13\x54\x3c\x0d\x96\xe9\x81\x90\x2f\x35\x3a\xd4\x0e\xf6\x50\x73\xa6\xd5\x92\x5d\xc1\x59\x69\x8d\xa8\xaf\x37\xde\x90\xba\x65\x87\x55\xb9\x9e\xd4\xab\x32\xe5\x43\x37\x73\xda\x92\xb6\x15\xde\x58\xae\xcd\xa2\x96\x37\xff\xc5\xab\x8f\x8e\x27\x66\x31\xc3\xf9\x30\x9f\x23\x9f\x3e\x3c\x59\xed\x0d\x53\x1e\xd0\x93\x1b\x5f\xba\x13\x1e\xb1\x2f\x40\xb4\x62\xbb\x7c\x68\x5b\x61\xa3\x3e\x84\x89\xf3\x38\xcb\x89\x2d\x13\xc6\xc7\xc0\xba\x32\x52\x84\x2d\x7a\x62\xca\x00\x3e\x28\xd8\xc5\x94\xb1\xac\x3a\x4b\xa4\x09\x26\xa1\xde\xda\x1b\xbb\xb5\x1b\x14\x8b\x0b\xb3\xcd\x63\x65\x39\x72\x6a\xf7\xa0\x09\xf8\xe3\xce\x04\xed\xe3\x43\xca\x9b\xd8\x25\x71\x11\xe4\x17\xbc\xba\x90\xa4\x62\xd1\x44\x3b\x41\x8b\xe0\x40\x82\xc0\x9d\xa4\xd1\x6d\xf1\x90\xd7\x99\x20\xdd\x9c\x2a\x7f\xd6\x09\x62\x4b\x15\x99\xb7\x03\x0d\xe1\x1f\x8f\x50\xfe\x21\xd5\x4d\x98\xbc\x43\x08\x55\x7b\x75\x05\x54\xac\xd6\x30\x37\x4f\x45\xbe\x26\x3a\xf3\xca\x7f\xcb\x93\x88\x36\xf1\xe5\xa4\xe5\xaa\x50\x1f\xaf\x98\xbe\x2a\xd6\x44\x67\x95\x65\x15\xab\x74\x86\xd6\xcc\xd4\xcc\x72\x45\xda\xd4\xcc\x0a\x56\x11\x02\xe8\xa6\xd8\x17\x99\x84\x42\x3e\x99\x87\x4d\x2a\x69\x8e\xc7\xa9\x92\x95\xe3\x71\x7a\x6d\xec\x93\x38\x71\xe7\xfd\xee\x50\x37\x4f\xef\x5e\x69\x9d\x0d\x7c\xdd\x14\x50\x30\x3b\xbd\xc7\xdd\x57\xbd\x67\x4d\xc2\x9b\x46\xb1\x69\x3c\xd5\xa6\xaf\x03\x94\xdd\x38\x6e\x52\x36\xf4\x0a\x46\xdc\x16\x4d\x21\x77\xbc\x0a\xb6\x09\x50\x12\x64\x90\x66\x66\x88\x6e\x30\x61\x02\xda\x66\x0d\x31\x45\xa5\x43\xef\x72\x03\xf9\x26\xbb\xbc\x7a\xfc\x1f\xa1\xf6\x72\xb5\xc9\x57\xc7\xa3\x79\x62\xb7\xfd\x6a\x20\x6a\xc2\xe1\x79\xe8\x6a\xd9\x8a\x2d\x0b\x97\xa8\x97\x52\x8d\xbc\xf3\x91\x6f\x67\x26\xdb\xd6\xd7\x69\xde\x82\x73\xb1\x4f\x15\x46\x69\xeb\x02\xea\xfc\x4e\x04\x28\x9d\xbd\xea\xb3\xda\xc1\x87\xf4\x5d\x60\x00\xca\x6e\xc6\x2a\x2f\xd7\x7c\x24\xb4\x6f\xa3\xd5\x9e\x8a\x48\xce\xe0\x2d\xea\x15\xe7\x86\x73\x2a\xc9\x12\x9f\xb3\xd2\x9c\xb3\xa8\xbd\x97\x24\xae\x67\xc0\x11\x4f\x6c\x59\xeb\xee\xad\x98\x93\x2f\xf0\x67\x40\xdb\x4c\x3d\x27\x23\x43\x36\xd2\x51\x1a\x38\x98\x83\x7e\xbb\x80\x8c\xd8\xfe\x7c\x46\x98\xc6\x99\xb1\x19\xdd\x8c\xf1\x90\x0c\x3e\xd7\x3b\x28\x79\x40\x95\x32\x0c\x79\xf0\x22\xf6\x49\x95\xfb\x24\xc1\xe0\x20\x48\xbb\xb3\x45\xf2\x1c\xa9\xd2\x51\x18\x34\x50\xce\x38\xb9\x6d\x56\x42\xa7\xc9\x2f\xe1\x2f\xfe\x35\x49\xf7\x83\x21\x0a\x28\xcc\x67\x5c\x88\xc2\xc9\xc6\xf0\xec\x21\x0a\x55\x2c\x44\xc1\xa7\xc4\x77\x63\x15\xbe\x53\x1c\x02\xd5\xd5\x29\x82\x20\x90\x0e\x0f\xb0\x4f\xd7\x5d\x7f\x40\xa1\x8f\xd4\x5f\x95\x48\x6d\x93\x60\xd7\xf2\x22\xad\xfe\xe5\x71\xaf\x40\xf7\xd0\x0f\x69\xe5\x2f\x6b\xba\xf8\x5f\x2f\x58\x2e\x02\x8b\x3d\x29\x7d\x0b\x38\x00\xba\xda\x1c\xe8\x1b\xc0\xea\x93\xea\x73\xc4\x63\xff\xd0\x11\x66\x1f\x80\xfe\x69\x06\x02\xbc\x1b\x26\x86\x03\xbc\x9b\x29\x63\x05\x22\x51\xb5\x6a\x5c\x70\xb7\xfa\x9b\xba\x5c\x6a\x28\x2c\x6d\x06\x4d\x68\xd6\xdd\x71\x3b\x6a\xf5\xd7\x0d\x0d\x37\x8e\x51\x91\x93\xc5\x39\x11\x92\xae\xb1\xba\x3a\x25\xfb\xc3\xfb\x77\xf4\xe4\x07\xb6\xde\x17\xcd\xdb\xcf\x55\x21\x09\xec\x92\xbe\x54\x97\x7b\x7b\x39\x7b\xe5\x6d\x06\x55\x0a\xb3\xe2\x79\xc3\x40\xd2\xf7\xae\xef\x14\xb4\xd1\x12\x3a\xac\x08\xe1\xef\x45\xea\x50\x52\x43\xe4\xdb\x89\xbe\x4b\xc8\x35\xab\xc8\xd9\x01\x1a\xba\x94\xec\x5f\x37\x67\x50\x8b\x70\x72\x9f\x8c\xe8\xf8\xb1\x15\x4a\x5e\xcd\x20\x9b\x29\x65\xf2\xee\xf6\xe1\x5a\xa9\x2d\xac\x6b\xaf\x56\xcf\x56\x72\x9d\x78\x0c\x66\xb1\x87\xa0\xb2\x4c\xe0\xe0\x80\xbd\xb1\x37\xd5\x9c\x5a\x23\xc8\x6a\x1d\xba\x37\x72\x9c\x7f\xda\x10\x28\x5a\xdf\x4d\x56\x0a\x0b\x8a\xef\xf2\x8f\x85\x71\x44\xc4\x4b\xee\xeb\xdb\x26\x47\x2e\x9a\xc0\x04\xb5\x11\xd2\xa0\xbb\x01\x72\x03\x3d\x28\x0e\xe5\x4d\x4e\x4b\x94\xd6\x0b\xa1\xa0\x3a\xbb\x04\x92\x92\x0e\x84\x96\x26\x86\xee\x26\xdb\xa0\x34\xe2\xc0\x35\xb1\x81\xac\x5d\xc0\xa4\xeb\x19\xfc\x44\xe1\xf5\x4e\x20\x41\x6b\xc6\x21\x0f\x0c\x02\xc0\xc6\x5b\x73\x39\x51\xf7\x17\x38\xe8\xbf\x3e\x7e\x75\xc8\xbe\x8b\x43\x57\x87\x4c\xae\x26\x6a\xb5\x8b\xf9\x19\xdb\xc3\x60\x08\x72\x96\x3d\xf8\x24\xc2\x75\x68\x3a\x9d\xac\xba\x03\x01\x35\xbc\x2b\x72\x07\x2d\x87\x3b\xdf\xcc\xdd\xc0\x72\xe4\xca\xaa\xed\x05\x79\xd0\xd3\x07\x05\xa9\xad\x96\x96\xf2\xf4\x1d\x92\x9e\xbe\x83\xd2\xce\xb4\x9b\xef\x80\x0d\x94\x21\xfe\x04\xdd\xb0\x2b\xba\x65\xa5\xb5\x58\x6e\x5e\x6f\x6f\x36\xd6\x62\xb9\x67\xe5\x6a\xb3\xa6\x0f\x6c\x4f\xef\xd8\xf4\x7a\x32\x7b\xaf\xee\x6c\xfb\xc5\xe6\x21\x97\x6f\x9a\xec\x4a\x11\xe2\x8e\x4d\xaf\x54\x0b\x83\xcc\x99\x5d\x1b\xf7\xc3\xae\x9f\xb6\x0f\xa0\x8d\x5a\x72\xe5\x6a\x03\x56\xbb\x55\xb6\x33\x2a\xec\x23\x9b\xde\x19\xae\xf2\xfa\x77\x7d\xb3\x35\xda\xf9\x8e\x36\x84\xde\x83\xa7\x50\xf5\x61\xf2\x76\xef\x41\x17\x9c\x3e\x1e\x8f\x61\x82\xd8\xbd\xe9\xf0\x43\x37\xa1\xcb\xa4\x88\xd1\x1d\xbd\xa7\x7b\x42\x3f\xb1\x0f\x7a\x45\xbf\x67\x1f\x82\x15\xfd\x5e\xbf\xff\xf9\x26\xfb\xcc\xea\xf8\x12\xfe\x4c\xdf\x93\x96\xdf\x65\x39\xf9\xd4\x03\x92\xf9\x38\x9f\xc3\xaa\xf2\x8e\x03\xc0\xc8\x54\x1a\xf6\xe4\x71\x3e\x9f\xf2\xf9\x7c\xaa\x31\x55\x8e\xc7\xe6\xb6\x36\x90\x23\xcb\xba\x53\x55\xa0\x20\xad\xb7\x59\x3f\x12\xd3\xee\x93\x7b\xf4\x49\x8f\xf7\xd3\x4d\xf6\x53\x6a\xbe\x3f\xd1\x4f\xa4\x6d\x9d\x55\xe1\x8f\x2e\x69\x62\x5b\xdf\x3d\xdd\xd3\x06\x36\x74\x42\xdf\xb2\x3f\x34\xad\xde\xb0\x3f\x02\x5a\x99\xc9\xbc\xa5\x6f\xf4\x24\xde\xdd\x64\xef\x52\x93\x78\x47\xdf\x10\x88\x94\xf5\xa8\x4c\x01\xa7\x93\xea\x1c\xde\xfa\xd5\x55\x79\x38\x05\x35\x7a\x8a\xb8\x25\xc1\x2f\x78\x75\xd1\x04\x25\x22\x52\x52\xcb\x13\x52\x2b\xd0\xc5\xcb\xcd\x4e\xc4\x0e\xa6\x1c\x07\x16\x77\xcf\x26\x30\x8b\xf6\x48\x10\x76\x89\xe7\xb4\xa0\x1c\x10\x66\x35\x2b\x04\x6b\x3a\x65\x2a\xfc\x41\x54\x79\x37\x7f\x6f\x21\x0a\xa1\x0e\xa2\xb6\x7d\xae\x84\xdc\x97\xcb\x80\x4b\xd9\xe8\x42\x13\x67\x3a\xb5\x69\x84\x45\xa9\x22\x5f\x8a\x55\x6f\x8c\x38\x2e\x5f\x65\xd2\x45\xb1\xe9\xa9\x3a\x2b\x53\xef\x22\x55\xad\x67\xcc\x25\x19\x69\xca\x26\x13\x94\x06\x66\xa2\xae\x85\x43\x50\xed\x4f\x0e\x6b\xc6\xd5\x81\x71\x47\x90\x89\x88\x9a\x9a\xe2\xd5\x3d\x45\xd0\xd7\x52\xd0\x4c\xbc\x62\x5a\xd7\x24\x53\xc6\xf2\xc0\x86\xd0\x99\x0f\x0b\x6f\x15\xd1\x36\x70\xe4\x8a\x8e\xc9\xa7\x26\xb7\x60\xe7\x02\x93\xcf\x58\x8d\x45\xbf\xd2\xf4\xa6\x25\xa0\x1d\x80\x2c\xa1\x7d\x9c\x3d\xb8\xdd\xd9\xbe\xdf\x30\xc1\x45\x2e\xb0\x2f\x13\x9c\xb1\x5d\x6f\x66\xcc\x98\x45\xeb\x3e\x46\x73\x7a\x72\x27\x57\xc7\x14\xba\x92\x8b\x55\xbd\xf6\x36\x0d\x87\xe8\xfd\x94\x64\xdd\x03\x74\x46\x7b\x74\x3c\x98\xd3\x41\xe9\x1c\xbd\xbb\xec\xc1\x29\xef\x4a\x11\xdc\xbc\x98\x22\x58\xb2\x0d\x01\x13\x66\x63\x0a\x19\xb5\xc8\xc7\xdf\xa0\x54\xd3\xd4\x44\xd5\xf7\x92\xb6\x1d\xbd\xeb\xfc\xa5\x93\x42\x7a\x76\xa8\xef\x9f\x1b\x92\x92\x88\x73\x06\x56\xed\x47\x8c\xac\x9a\x45\xd2\x52\x7a\x48\x18\xcd\x4b\x39\x69\x1f\x4f\x4c\x39\x69\xf6\x27\xcf\x88\xe9\x40\x28\x9d\x09\xc0\x14\x2b\xf3\xf4\x5c\xc8\x41\x4f\x47\x3a\xfa\xb6\x98\x4d\x43\xd0\x44\x2f\x04\x46\x80\xff\x51\x2c\x64\x71\xcf\xeb\xa6\x90\x19\x54\x1a\xbb\x34\xc4\x59\xee\x72\x0e\x30\x8c\x18\x1b\x85\xb4\x6a\x2f\xa1\xa9\xf7\xbd\x65\xd4\x81\x52\x39\xa4\x0f\x35\x99\x58\x4b\x4d\xc6\xc3\x50\x33\xcb\x8c\x7a\xa8\xa1\xa5\xbc\x43\xe5\x21\x6d\x77\xca\x9f\x0c\xaa\x2a\xaf\x14\x39\x8f\x47\xfb\x17\x17\xd5\xa4\x59\x6c\xf2\xb2\x54\x34\x55\x92\x2d\x45\x59\x82\x08\x68\x58\x06\xda\x85\x69\xa0\xbe\xb9\x14\x07\x90\x87\xe1\x96\x98\xca\xe9\x17\xa2\xb3\xae\x99\xff\x68\x03\x95\xfc\xb3\x90\x6a\xdf\x50\x5f\x21\x82\x27\x93\xda\x8d\x88\x73\xd2\xbe\xd4\x10\x20\xdd\x88\x6a\x39\xbd\x6e\x09\xf5\xad\xdc\x94\xba\x4d\x30\xa1\x7d\x57\xcb\x4b\x87\xff\x50\xc5\x99\x82\xdb\xea\x95\xc6\xe3\x0d\xad\xc8\x99\x56\xf9\x40\x2b\xbf\xa8\xc5\xf0\xc0\xbe\xb1\xf4\x8d\xe3\x8e\x81\xc5\x43\x5e\xdf\xc2\x7f\xb3\x86\x2c\xe1\x8f\xff\x86\x3e\x65\x6e\x4c\x87\xad\xa1\x26\x66\x94\xa2\x7c\x30\x34\xfa\x91\x1a\xc0\x2c\xe0\x66\x02\xd3\xc3\xb4\xfc\x93\xe0\x5d\x9c\x8b\xe9\x01\x9f\x97\x44\x6d\x40\xc0\x78\x89\xef\x8b\xa2\xe8\xfd\x49\xbf\xd5\xb4\x1f\xfe\x5a\x04\xca\xf7\xfd\x3e\x1b\x83\xe3\x74\x1d\x0c\xe8\x9a\x30\x10\xad\x5c\x10\x1b\x88\xb4\xc8\xcb\x52\x7c\xfe\xed\x50\x96\x27\x85\xc6\xa4\x43\x06\x35\xca\xfc\xcc\x7e\x3f\x63\x4c\xde\x16\x4b\x1f\x8f\xc5\xe4\xed\x0f\xff\x9b\x35\xf2\x50\x1c\x9b\xe3\x35\xf9\x7f\x3f\xf0\x45\xa3\xf1\x84\x97\x33\xb3\xc7\xeb\x90\x88\x6b\xc6\x58\x31\x78\xfb\x1f\x9c\xeb\x2d\xdc\x17\x0d\x96\x93\x5e\x84\x83\xcc\xd3\x47\xd2\xf7\xe3\x9c\xfe\xa8\x1f\xf3\xa6\x60\xfe\xcf\xe3\xf1\x4b\x8b\x7e\x59\xec\x73\x59\x17\x2c\xa2\xba\xfb\x5f\x41\x5f\x3f\x5f\x0c\x5c\x65\x42\xcb\x53\x7e\x97\x21\x06\x3a\x4b\x9b\x3a\x36\xb7\xc5\x1f\x6f\xef\xb2\xd9\x2b\x17\xbe\x76\x79\xad\x4b\xe7\x15\xc6\xc8\x7c\xf9\x77\xe0\x79\x55\x7c\x86\x89\x65\xc5\xab\xd9\xf2\xea\x6a\x46\x96\x27\x0d\xff\x3f\x34\xcc\xe4\x2b\xf6\x77\xea\x9b\x2f\xea\x92\x6f\x8a\xec\x8a\x4a\xf2\x6a\xb6\x9c\xbd\xb2\x0f\x24\x21\x64\xe9\x9b\x59\xf3\x3b\x92\xa1\x06\x0d\x4a\xc0\x9a\xae\x24\xea\x78\xd4\xd7\x61\xf5\xf7\xad\x06\xa5\x89\x0b\x99\x3f\x16\x2e\x78\x55\x37\x79\xb5\x51\xc4\x50\xdd\xcd\xe7\x53\x5e\xff\x96\xff\x96\x15\xe4\xb6\x58\x34\xe2\x97\x77\x6f\xf5\x45\x29\xd3\xc3\x8c\x11\x31\xab\xce\x3c\x9b\x90\xd9\x9f\x2e\x24\x9e\x3a\xb8\xe4\x95\xd2\x7f\xfd\xc3\x95\xfe\xe3\xf2\xfa\x87\xab\xaf\x81\x06\x3e\x57\x88\xc2\xc8\x4d\xbb\x5c\x7f\xda\xed\xd5\x80\x44\xaf\xce\xac\x61\x1a\x8b\x0d\x8a\x68\x67\x0d\xb9\x6d\x96\xa6\x7c\xec\xcb\x75\xad\x98\x34\xe9\x67\x92\x55\x25\xff\x4a\x7b\x78\x6a\x67\xd4\xe4\x30\x72\x9a\x2a\x18\x35\xf6\xe5\x11\x02\x1e\x3d\xf9\xbf\x21\x1c\x55\x07\x77\x0a\x13\x0b\xd6\x68\xe2\x0b\x0c\x30\xea\xcb\x4f\x7a\xf6\xb7\xc5\xf5\xbf\x2d\xfe\x36\x43\xd3\xd8\x89\x5d\x51\x35\x31\x38\x63\xf3\x4b\xc9\x3f\x8c\xdf\x04\x4c\xc0\x94\x97\x1b\x5e\xff\x0a\xdd\xc0\x31\x19\x79\x2c\x91\x81\x9f\xd7\xff\x00\x40\xfb\x4c\x92\xdb\xcb\xeb\xa5\x7a\xf0\x2e\xdf\xc1\x3f\xaf\x96\xd7\x13\x04\x5a\xab\xe1\x6a\xdf\x58\xbb\xd7\xc5\x5e\x8a\x4f\x7c\x5b\x6c\x2f\x1a\x71\xf1\xaf\x8d\xd8\xed\x73\x59\xfc\xeb\x22\x97\xc5\x45\x25\x9a\x0b\xfd\x21\x17\xda\x02\x59\xcf\xc8\xf9\x3b\x91\x9f\xb8\xb7\x62\x98\x61\x98\x44\xbf\xc6\x9e\xa1\x37\x4a\x51\xa1\xc3\x33\xb0\xa8\xd9\x4b\x82\x8e\xfa\x89\x1e\xa0\xa7\x4c\x53\xac\x79\x71\x99\xa9\x8b\xf2\x6e\xa1\x07\x6c\xc9\xe4\xff\x02\x00\x00\xff\xff\x78\xe8\xa4\x64\x3e\x3a\x11\x00") func distAssetsVendorBa9b921906f8503d3378ceb83aece15bJsBytes() ([]byte, error) { @@ -345,7 +345,7 @@ func distImagesNomadLogoSvg() (*asset, error) { return a, nil } -var _distIndexHtml = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x8c\x94\x5f\x6f\xb3\x36\x14\xc6\xef\xfb\x29\x18\x52\xee\x46\x01\xf3\x5f\x82\x48\x59\x93\x4d\x93\xa6\x36\xea\xd2\xe9\xdd\xd5\x74\xb0\x0f\xc1\x9b\xb1\x99\x6d\xd2\xe6\xdb\x4f\x40\xc8\x78\xb7\x6a\xda\x15\xc1\x7e\x9e\x9f\x8f\x9f\x9c\x43\xf9\xcd\xfe\xe5\xe9\xf4\xeb\xf1\xe0\xb4\xb6\x13\xdb\x87\x72\x7e\x38\x4e\xd9\x22\xb0\xf1\x87\xe3\x94\x1d\x5a\x70\x68\x0b\xda\xa0\xad\xdc\xc1\x36\x5e\xee\xae\xb7\x5a\x6b\x7b\x0f\xff\x1c\xf8\xa5\x72\xbf\x78\x6f\x3b\xef\x49\x75\x3d\x58\x5e\x0b\x74\x1d\xaa\xa4\x45\x69\x2b\xf7\xc7\x43\x85\xec\x8c\x8b\xd3\x72\x2b\x70\xfb\xac\x3a\x60\xa5\x3f\xbf\xac\x90\x12\x3a\xac\x5c\x86\x86\x6a\xde\x5b\xae\xe4\x0a\xe4\xfe\x5b\x78\xe1\xf8\xde\x2b\x6d\x57\xaa\x77\xce\x6c\x5b\x31\xbc\x70\x8a\xde\xf4\xf2\xad\xc3\x25\xb7\x1c\x84\x67\x28\x08\xac\x42\x77\xfb\x30\x91\x1e\xd6\x28\x39\x56\xe4\x0d\xdc\xa7\x4a\x36\xfc\xec\xa3\xbc\x70\xad\x64\x87\x72\x4d\xdf\x64\xdf\x6d\x08\xe9\x14\x1b\x04\x1e\x35\x36\xfc\x63\x43\xc8\x26\xda\x6d\x08\x59\x00\xe3\x02\x79\xda\x10\xb2\x22\xdc\x45\xbd\x56\x6c\xa0\xe3\xc5\xee\x32\xad\x94\x7d\x7b\xfd\xe9\x2e\xf1\x07\xee\xdf\x37\x85\xa2\x30\xaa\x4f\xd7\x1e\xef\x0a\x18\xac\xba\x2b\x0e\x5d\x8d\xfa\xf0\xfc\xcb\x6d\x77\xaa\xef\xfb\xc3\xee\xf4\xf6\x7a\xf8\x79\xbd\x86\xa3\xce\xd3\x6a\xb0\x5c\x9e\xa7\x27\x6a\xcf\xa0\x1e\x73\x9a\x75\x56\x0f\xb8\xc9\xf6\x37\xec\x97\xd3\xe1\x79\xff\xdb\xf1\xf5\xe5\xf4\x32\xf6\xc9\x57\xac\x3d\xd8\x9b\xa7\x01\x61\x26\xd3\xe2\xdb\x1d\x8f\x7f\x2b\x97\xc5\xf9\x6c\x2a\xb8\xd7\x71\x0d\x67\x5c\xb3\x06\xc3\xe5\xf9\xa8\xd5\xc7\x75\x55\xc5\xe4\x1a\x0c\xee\xb1\x81\x41\xd8\x23\x18\x63\x5b\xad\x86\x73\x6b\x3e\xa9\x15\x3f\xc6\x1e\xd8\xf5\xbd\xe0\x73\x5a\x3f\x08\x55\x83\xf8\xba\x42\xd7\xf1\x6f\x7f\x7b\x29\xb8\xfc\xc3\xd1\x28\x2a\xd7\xd8\xab\x40\xd3\x22\x5a\xd7\x69\x35\x36\x95\x3b\xa6\x0f\xc6\xa0\x35\xfe\x05\x25\x53\xda\x63\x71\xc8\x72\xca\x8a\xbc\x09\x82\x9a\x04\x31\x16\x79\x10\x14\x45\x8e\xb4\xc9\x63\x92\xe1\x23\x35\x66\x69\xcd\xff\x49\x5e\x5a\xc5\x03\x96\xd5\x41\x91\xc4\x45\x12\x90\x34\x8b\xd3\x38\x85\x26\x88\x9a\x38\x64\x21\x4b\x49\x13\x7e\xce\xe6\x74\x9c\x0b\x7b\xed\xb1\x72\x79\x07\x67\xf4\x7b\x79\x5e\x1f\xe3\x37\x70\x19\x45\x5e\x48\x49\x42\x32\xc8\x20\xc8\x58\x18\x05\x48\x6b\x68\x28\x66\x09\xc6\x69\x98\x40\x5a\x3c\x4e\xc6\x25\x98\x71\xfc\xfd\x65\xfe\xcb\x5a\xb1\xeb\x7c\xf4\x2d\xb6\x79\x26\x1d\xa3\xe9\x67\x31\xd5\x50\xd4\x05\x09\x8b\x20\x6d\xf2\x24\x88\x58\x14\x65\x39\xc5\x3a\x8f\x00\x29\x86\x49\xfd\xf8\xbb\x71\xb7\xa5\x3f\x43\xb6\xff\x49\xbc\xc7\x93\xa7\x90\x42\x9c\x07\x24\x82\x9c\x86\xb4\x88\x68\x46\x48\x16\x36\x21\xc9\xa3\x24\x09\xe0\x1f\xcc\x19\xca\xf8\xc5\xe1\xac\x72\xe7\xa6\xab\xc1\x70\xea\x31\xad\x7a\xa6\xde\xa5\xf7\xae\x74\xd7\x2a\x81\xa3\x8d\xf1\xcb\x74\x51\x7f\xbe\x69\xe9\xcf\xdf\xc0\xbf\x02\x00\x00\xff\xff\x5c\x26\x4f\xaf\x1b\x05\x00\x00") +var _distIndexHtml = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x8c\x94\x5f\x6f\xb3\x36\x14\xc6\xef\xfb\x29\x18\x52\xee\x46\x01\xf3\x5f\x82\x48\x59\x93\x4d\x93\xa6\x36\xea\xd2\xe9\xdd\xd5\x64\xec\x63\xf0\x66\x6c\x66\x1b\xda\x7c\xfb\x09\x08\x19\xef\x56\x4d\xbb\x22\xd8\xcf\xf3\xf3\xf1\x93\x73\x28\xbf\x39\xbe\x3c\x5d\x7e\x3d\x9f\x9c\xd6\x76\x62\xff\x50\x2e\x0f\xc7\x29\x5b\xc0\x74\xfa\xe1\x38\x65\x07\x16\x3b\xa4\xc5\xda\x80\xad\xdc\xc1\x32\x2f\x77\xb7\x5b\xad\xb5\xbd\x07\x7f\x0e\x7c\xac\xdc\x2f\xde\xdb\xc1\x7b\x52\x5d\x8f\x2d\xaf\x05\xb8\x0e\x51\xd2\x82\xb4\x95\xfb\xe3\xa9\x02\xda\xc0\xea\xb4\xdc\x0a\xd8\x3f\xab\x0e\xd3\xd2\x5f\x5e\x36\x48\x89\x3b\xa8\x5c\x0a\x86\x68\xde\x5b\xae\xe4\x06\xe4\xfe\x5b\x38\x72\x78\xef\x95\xb6\x1b\xd5\x3b\xa7\xb6\xad\x28\x8c\x9c\x80\x37\xbf\x7c\xeb\x70\xc9\x2d\xc7\xc2\x33\x04\x0b\xa8\x42\x77\xff\x30\x93\x1e\xb6\x28\x39\x55\xe4\x0d\xdc\x27\x4a\x32\xde\xf8\x20\x47\xae\x95\xec\x40\x6e\xe9\xbb\xec\xbb\x1d\x42\x9d\xa2\x83\x80\xb3\x06\xc6\x3f\x76\x08\xed\xa2\xc3\x0e\xa1\x15\x30\x2d\xa0\xa7\x1d\x42\x1b\xc2\x5d\xd4\x6b\x45\x07\x32\x5d\xec\x2e\xd3\x4a\xd9\xb7\xd7\x9f\xee\x12\x7f\xe0\xfe\x7d\x53\x28\x82\x27\xf5\xe5\xda\xc3\x5d\x81\x07\xab\xee\x8a\x53\x57\x83\x3e\x3d\xff\x72\xdb\x9d\xeb\xfb\xfe\x74\xb8\xbc\xbd\x9e\x7e\xde\xae\xc1\xa4\xf3\xb4\x1a\x2c\x97\xcd\xfc\x04\xed\x19\xd0\x53\x4e\x8b\xce\xea\x01\x76\xd9\xf1\x86\xfd\x72\x39\x3d\x1f\x7f\x3b\xbf\xbe\x5c\x5e\xa6\x3e\xf9\x8a\x75\xc4\xf6\xe6\x61\x58\x98\xd9\xb4\xfa\x0e\xe7\xf3\xdf\xca\x75\x71\x39\x9b\x08\xee\x75\x5c\xe3\x06\xb6\xac\xc1\x70\xd9\x9c\xb5\xfa\xb8\x6e\xaa\x98\x5d\x83\x81\x23\x30\x3c\x08\x7b\xc6\xc6\xd8\x56\xab\xa1\x69\xcd\x27\xb5\xc2\xc7\xd4\x03\x87\xbe\x17\x7c\x49\xeb\x07\xa1\x6a\x2c\xbe\xae\xd0\x75\xfc\xdb\xdf\x5e\x0a\x2e\xff\x70\x34\x88\xca\x35\xf6\x2a\xc0\xb4\x00\xd6\x75\x5a\x0d\xac\x72\xa7\xf4\xb1\x31\x60\x8d\x3f\x82\xa4\x4a\x7b\x34\x0e\x69\x4e\x68\x91\xb3\x20\xa8\x51\x10\x43\x91\x07\x41\x51\xe4\x40\x58\x1e\xa3\x0c\x1e\x89\x31\x6b\x6b\xfe\x4f\xf2\xda\x2a\x1e\xa6\x59\x1d\x14\x49\x5c\x24\x01\x4a\xb3\x38\x8d\x53\xcc\x82\x88\xc5\x21\x0d\x69\x8a\x58\xf8\x39\x9b\x93\x69\x2e\xec\xb5\x87\xca\xe5\x1d\x6e\xc0\xef\x65\xb3\x3d\xc6\x67\x78\x9c\x44\x5e\x48\x50\x82\x32\x9c\xe1\x20\xa3\x61\x14\x00\xa9\x31\x23\x90\x25\x10\xa7\x61\x82\xd3\xe2\x71\x36\xae\xc1\x4c\xe3\xef\xaf\xf3\x5f\xd6\x8a\x5e\x97\xa3\x6f\xb1\x2d\x33\xe9\x18\x4d\x3e\x8b\xa9\xc6\x45\x5d\xa0\xb0\x08\x52\x96\x27\x41\x44\xa3\x28\xcb\x09\xd4\x79\x84\x81\x40\x98\xd4\x8f\xbf\x1b\x77\x5f\xfa\x0b\x64\xff\x9f\xc4\x7b\x3c\x34\x86\xb4\x88\x70\x8e\x68\x51\xd7\x49\x40\xa2\x3a\x8d\x51\x5e\x30\x96\xa1\x1c\x65\x00\xff\x60\x2e\x50\xca\x47\x87\xd3\xca\x5d\x9a\xae\xc6\x86\x13\x8f\x6a\xd5\x53\xf5\x2e\xbd\x77\xa5\xbb\x56\x09\x98\x6c\x94\x8f\xf3\x45\xfd\xe5\xa6\xa5\xbf\x7c\x03\xff\x0a\x00\x00\xff\xff\x29\x75\x6a\x4a\x1b\x05\x00\x00") func distIndexHtmlBytes() ([]byte, error) { return bindataRead( @@ -437,8 +437,8 @@ func AssetNames() []string { // _bindata is a table, holding each asset generator, mapped to its name. var _bindata = map[string]func() (*asset, error){ - "dist/assets/nomad-ui-86a6a48023a8c1c93c72271f1283550a.js": distAssetsNomadUi86a6a48023a8c1c93c72271f1283550aJs, "dist/assets/nomad-ui-ad7b09549502674646af03f41d1d62f1.css": distAssetsNomadUiAd7b09549502674646af03f41d1d62f1Css, + "dist/assets/nomad-ui-d4e693a82d9bb50c3b64289ff72827ee.js": distAssetsNomadUiD4e693a82d9bb50c3b64289ff72827eeJs, "dist/assets/vendor-ba9b921906f8503d3378ceb83aece15b.js": distAssetsVendorBa9b921906f8503d3378ceb83aece15bJs, "dist/assets/vendor-d41d8cd98f00b204e9800998ecf8427e.css": distAssetsVendorD41d8cd98f00b204e9800998ecf8427eCss, "dist/crossdomain.xml": distCrossdomainXml, @@ -496,8 +496,8 @@ type bintree struct { var _bintree = &bintree{nil, map[string]*bintree{ "dist": &bintree{nil, map[string]*bintree{ "assets": &bintree{nil, map[string]*bintree{ - "nomad-ui-86a6a48023a8c1c93c72271f1283550a.js": &bintree{distAssetsNomadUi86a6a48023a8c1c93c72271f1283550aJs, map[string]*bintree{}}, "nomad-ui-ad7b09549502674646af03f41d1d62f1.css": &bintree{distAssetsNomadUiAd7b09549502674646af03f41d1d62f1Css, map[string]*bintree{}}, + "nomad-ui-d4e693a82d9bb50c3b64289ff72827ee.js": &bintree{distAssetsNomadUiD4e693a82d9bb50c3b64289ff72827eeJs, map[string]*bintree{}}, "vendor-ba9b921906f8503d3378ceb83aece15b.js": &bintree{distAssetsVendorBa9b921906f8503d3378ceb83aece15bJs, map[string]*bintree{}}, "vendor-d41d8cd98f00b204e9800998ecf8427e.css": &bintree{distAssetsVendorD41d8cd98f00b204e9800998ecf8427eCss, map[string]*bintree{}}, }}, diff --git a/command/agent/command.go b/command/agent/command.go index 9b9fb9ad4..3a3e041d4 100644 --- a/command/agent/command.go +++ b/command/agent/command.go @@ -730,7 +730,7 @@ func (c *Command) handleReload() { newConf.LogLevel = c.agent.GetConfig().LogLevel } - shouldReloadAgent, shouldReloadHTTP, shouldReloadRPC := c.agent.ShouldReload(newConf) + shouldReloadAgent, shouldReloadHTTP := c.agent.ShouldReload(newConf) if shouldReloadAgent { c.agent.logger.Printf("[DEBUG] agent: starting reload of agent config") err := c.agent.Reload(newConf) @@ -740,32 +740,30 @@ func (c *Command) handleReload() { } } - if shouldReloadRPC { - if s := c.agent.Server(); s != nil { - sconf, err := convertServerConfig(newConf, c.logOutput) - c.agent.logger.Printf("[DEBUG] agent: starting reload of server config") - if err != nil { - c.agent.logger.Printf("[ERR] agent: failed to convert server config: %v", err) + if s := c.agent.Server(); s != nil { + c.agent.logger.Printf("[DEBUG] agent: starting reload of server config") + sconf, err := convertServerConfig(newConf, c.logOutput) + if err != nil { + c.agent.logger.Printf("[ERR] agent: failed to convert server config: %v", err) + return + } else { + if err := s.Reload(sconf); err != nil { + c.agent.logger.Printf("[ERR] agent: reloading server config failed: %v", err) return - } else { - if err := s.Reload(sconf); err != nil { - c.agent.logger.Printf("[ERR] agent: reloading server config failed: %v", err) - return - } } } + } - if s := c.agent.Client(); s != nil { - clientConfig, err := c.agent.clientConfig() - c.agent.logger.Printf("[DEBUG] agent: starting reload of client config") - if err != nil { - c.agent.logger.Printf("[ERR] agent: reloading client config failed: %v", err) - return - } - if err := c.agent.Client().Reload(clientConfig); err != nil { - c.agent.logger.Printf("[ERR] agent: reloading client config failed: %v", err) - return - } + if s := c.agent.Client(); s != nil { + clientConfig, err := c.agent.clientConfig() + c.agent.logger.Printf("[DEBUG] agent: starting reload of client config") + if err != nil { + c.agent.logger.Printf("[ERR] agent: reloading client config failed: %v", err) + return + } + if err := c.agent.Client().Reload(clientConfig); err != nil { + c.agent.logger.Printf("[ERR] agent: reloading client config failed: %v", err) + return } } diff --git a/command/agent/consul/int_test.go b/command/agent/consul/int_test.go index 230b97bb8..fb8c06cd9 100644 --- a/command/agent/consul/int_test.go +++ b/command/agent/consul/int_test.go @@ -2,7 +2,6 @@ package consul_test import ( "io/ioutil" - "log" "os" "path/filepath" "testing" @@ -11,23 +10,17 @@ import ( "github.com/boltdb/bolt" consulapi "github.com/hashicorp/consul/api" "github.com/hashicorp/consul/testutil" - "github.com/hashicorp/nomad/client" "github.com/hashicorp/nomad/client/allocdir" + "github.com/hashicorp/nomad/client/allocrunner/taskrunner" "github.com/hashicorp/nomad/client/config" "github.com/hashicorp/nomad/client/vaultclient" "github.com/hashicorp/nomad/command/agent/consul" + "github.com/hashicorp/nomad/helper/testlog" "github.com/hashicorp/nomad/nomad/mock" "github.com/hashicorp/nomad/nomad/structs" "github.com/stretchr/testify/assert" ) -func testLogger() *log.Logger { - if testing.Verbose() { - return log.New(os.Stderr, "", log.LstdFlags) - } - return log.New(ioutil.Discard, "", 0) -} - // TestConsul_Integration asserts TaskRunner properly registers and deregisters // services and checks with Consul using an embedded Consul agent. func TestConsul_Integration(t *testing.T) { @@ -129,7 +122,7 @@ func TestConsul_Integration(t *testing.T) { }, } - logger := testLogger() + logger := testlog.Logger(t) logUpdate := func(name, state string, event *structs.TaskEvent, lazySync bool) { logger.Printf("[TEST] test.updater: name=%q state=%q event=%v", name, state, event) } @@ -149,7 +142,7 @@ func TestConsul_Integration(t *testing.T) { serviceClient.Run() close(consulRan) }() - tr := client.NewTaskRunner(logger, conf, db, logUpdate, taskDir, alloc, task, vclient, serviceClient) + tr := taskrunner.NewTaskRunner(logger, conf, db, logUpdate, taskDir, alloc, task, vclient, serviceClient) tr.MarkReceived() go tr.Run() defer func() { diff --git a/command/agent/retry_join_test.go b/command/agent/retry_join_test.go index 596f7b046..153eed04f 100644 --- a/command/agent/retry_join_test.go +++ b/command/agent/retry_join_test.go @@ -2,12 +2,12 @@ package agent import ( "fmt" - "io/ioutil" "log" "os" "testing" "time" + "github.com/hashicorp/nomad/helper/testlog" "github.com/hashicorp/nomad/testutil" "github.com/mitchellh/cli" "github.com/stretchr/testify/require" @@ -92,7 +92,7 @@ func TestRetryJoin_Server_NonCloud(t *testing.T) { discover: &MockDiscover{}, serverJoin: mockJoin, serverEnabled: true, - logger: log.New(ioutil.Discard, "", 0), + logger: testlog.Logger(t), errCh: make(chan struct{}), } @@ -123,7 +123,7 @@ func TestRetryJoin_Server_Cloud(t *testing.T) { discover: mockDiscover, serverJoin: mockJoin, serverEnabled: true, - logger: log.New(ioutil.Discard, "", 0), + logger: testlog.Logger(t), errCh: make(chan struct{}), } @@ -155,7 +155,7 @@ func TestRetryJoin_Server_MixedProvider(t *testing.T) { discover: mockDiscover, serverJoin: mockJoin, serverEnabled: true, - logger: log.New(ioutil.Discard, "", 0), + logger: testlog.Logger(t), errCh: make(chan struct{}), } @@ -186,7 +186,7 @@ func TestRetryJoin_Client(t *testing.T) { discover: &MockDiscover{}, clientJoin: mockJoin, clientEnabled: true, - logger: log.New(ioutil.Discard, "", 0), + logger: testlog.Logger(t), errCh: make(chan struct{}), } diff --git a/command/alloc_status.go b/command/alloc_status.go index 677200da9..773791c59 100644 --- a/command/alloc_status.go +++ b/command/alloc_status.go @@ -12,7 +12,7 @@ import ( "github.com/hashicorp/nomad/api" "github.com/hashicorp/nomad/api/contexts" - "github.com/hashicorp/nomad/client" + "github.com/hashicorp/nomad/client/allocrunner/taskrunner/restarts" "github.com/posener/complete" ) @@ -425,7 +425,7 @@ func buildDisplayMessage(event *api.TaskEvent) string { desc = strings.Join(parts, ", ") case api.TaskRestarting: in := fmt.Sprintf("Task restarting in %v", time.Duration(event.StartDelay)) - if event.RestartReason != "" && event.RestartReason != client.ReasonWithinPolicy { + if event.RestartReason != "" && event.RestartReason != restarts.ReasonWithinPolicy { desc = fmt.Sprintf("%s - %s", event.RestartReason, in) } else { desc = in diff --git a/command/node.go b/command/node.go index 7654030b7..7c73120c4 100644 --- a/command/node.go +++ b/command/node.go @@ -25,7 +25,7 @@ Usage: nomad node [options] [args] Mark a node as ineligible for running workloads. This is useful when the node is expected to be removed or upgraded so new allocations aren't placed on it: - $ nomad node eligibility -disabled + $ nomad node eligibility -disable Mark a node to be drained, allowing batch jobs four hours to finished before forcing them off the node: diff --git a/command/node_drain_test.go b/command/node_drain_test.go index 793cc47aa..6d7cc89d9 100644 --- a/command/node_drain_test.go +++ b/command/node_drain_test.go @@ -237,11 +237,11 @@ func TestNodeDrainCommand_Monitor(t *testing.T) { require.Contains(out, fmt.Sprintf("Alloc %q marked for migration", a.ID)) require.Contains(out, fmt.Sprintf("Alloc %q draining", a.ID)) } - } - expected := fmt.Sprintf("All allocations on node %q have stopped.\n", nodeID) - if !strings.HasSuffix(out, expected) { - t.Fatalf("expected output to end with:\n%s", expected) + expected := fmt.Sprintf("All allocations on node %q have stopped.\n", nodeID) + if !strings.HasSuffix(out, expected) { + t.Fatalf("expected output to end with:\n%s", expected) + } } // Test -monitor flag @@ -254,7 +254,6 @@ func TestNodeDrainCommand_Monitor(t *testing.T) { out = outBuf.String() t.Logf("Output:\n%s", out) - require.Contains(out, "No drain strategy set") } @@ -262,7 +261,7 @@ func TestNodeDrainCommand_Monitor_NoDrainStrategy(t *testing.T) { t.Parallel() require := require.New(t) server, client, url := testServer(t, true, func(c *agent.Config) { - c.NodeName = "drain_monitor_node" + c.NodeName = "drain_monitor_node2" }) defer server.Shutdown() diff --git a/helper/tlsutil/config.go b/helper/tlsutil/config.go index 91d2cfb66..016ecbb1c 100644 --- a/helper/tlsutil/config.go +++ b/helper/tlsutil/config.go @@ -42,9 +42,17 @@ var supportedTLSCiphers = map[string]uint16{ } // defaultTLSCiphers are the TLS Ciphers that are supported by default -var defaultTLSCiphers = []string{"TLS_ECDHE_ECDSA_WITH_CHACHA20_POLY1305", - "TLS_ECDHE_ECDSA_WITH_AES_128_GCM_SHA256", +var defaultTLSCiphers = []string{ "TLS_ECDHE_ECDSA_WITH_AES_256_GCM_SHA384", + "TLS_ECDHE_RSA_WITH_AES_256_GCM_SHA384", + "TLS_ECDHE_ECDSA_WITH_CHACHA20_POLY1305", + "TLS_ECDHE_RSA_WITH_CHACHA20_POLY1305", + "TLS_ECDHE_ECDSA_WITH_AES_128_GCM_SHA256", + "TLS_ECDHE_RSA_WITH_AES_128_GCM_SHA256", + "TLS_ECDHE_ECDSA_WITH_AES_256_GCM_SHA384", + "TLS_ECDHE_RSA_WITH_AES_256_GCM_SHA384", + "TLS_ECDHE_ECDSA_WITH_AES_128_GCM_SHA256", + "TLS_ECDHE_RSA_WITH_AES_128_GCM_SHA256", } // RegionSpecificWrapper is used to invoke a static Region and turns a @@ -413,3 +421,27 @@ func ParseMinVersion(version string) (uint16, error) { return vers, nil } + +// ShouldReloadRPCConnections compares two TLS Configurations and determines +// whether they differ such that RPC connections should be reloaded +func ShouldReloadRPCConnections(old, new *config.TLSConfig) (bool, error) { + var certificateInfoEqual bool + var rpcInfoEqual bool + + // If already configured with TLS, compare with the new TLS configuration + if new != nil { + var err error + certificateInfoEqual, err = new.CertificateInfoIsEqual(old) + if err != nil { + return false, err + } + } else if new == nil && old == nil { + certificateInfoEqual = true + } + + if new != nil && old != nil && new.EnableRPC == old.EnableRPC { + rpcInfoEqual = true + } + + return (!rpcInfoEqual || !certificateInfoEqual), nil +} diff --git a/helper/tlsutil/config_test.go b/helper/tlsutil/config_test.go index f8eca41aa..8b408d763 100644 --- a/helper/tlsutil/config_test.go +++ b/helper/tlsutil/config_test.go @@ -696,9 +696,16 @@ func TestConfig_ParseCiphers_Default(t *testing.T) { require := require.New(t) expectedCiphers := []uint16{ - tls.TLS_ECDHE_ECDSA_WITH_CHACHA20_POLY1305, - tls.TLS_ECDHE_ECDSA_WITH_AES_128_GCM_SHA256, tls.TLS_ECDHE_ECDSA_WITH_AES_256_GCM_SHA384, + tls.TLS_ECDHE_RSA_WITH_AES_256_GCM_SHA384, + tls.TLS_ECDHE_ECDSA_WITH_CHACHA20_POLY1305, + tls.TLS_ECDHE_RSA_WITH_CHACHA20_POLY1305, + tls.TLS_ECDHE_ECDSA_WITH_AES_128_GCM_SHA256, + tls.TLS_ECDHE_RSA_WITH_AES_128_GCM_SHA256, + tls.TLS_ECDHE_ECDSA_WITH_AES_256_GCM_SHA384, + tls.TLS_ECDHE_RSA_WITH_AES_256_GCM_SHA384, + tls.TLS_ECDHE_ECDSA_WITH_AES_128_GCM_SHA256, + tls.TLS_ECDHE_RSA_WITH_AES_128_GCM_SHA256, } parsedCiphers, err := ParseCiphers("") @@ -709,11 +716,9 @@ func TestConfig_ParseCiphers_Default(t *testing.T) { func TestConfig_ParseCiphers_Invalid(t *testing.T) { require := require.New(t) - invalidCiphers := []string{"TLS_RSA_WITH_3DES_EDE_CBC_SHA", - "TLS_ECDHE_RSA_WITH_3DES_EDE_CBC_SHA", - "TLS_RSA_WITH_RC4_128_SHA", - "TLS_ECDHE_RSA_WITH_RC4_128_SHA", - "TLS_ECDHE_ECDSA_WITH_RC4_128_SHA", + invalidCiphers := []string{ + "TLS_RSA_RSA_WITH_RC4_128_SHA", + "INVALID_CIPHER", } for _, cipher := range invalidCiphers { @@ -778,3 +783,89 @@ func TestConfig_NewTLSConfiguration(t *testing.T) { } require.Equal(tlsConf.CipherSuites, expectedCiphers) } + +func TestConfig_ShouldReloadRPCConnections(t *testing.T) { + require := require.New(t) + + type shouldReloadTestInput struct { + old *config.TLSConfig + new *config.TLSConfig + shouldReload bool + errorStr string + } + + testInput := []*shouldReloadTestInput{ + { + old: &config.TLSConfig{ + CAFile: cacert, + CertFile: badcert, + KeyFile: badkey, + }, + new: &config.TLSConfig{ + CAFile: cacert, + CertFile: badcert, + KeyFile: badkey, + }, + shouldReload: false, + errorStr: "Same TLS Configuration should not reload", + }, + { + old: &config.TLSConfig{ + CAFile: cacert, + CertFile: badcert, + KeyFile: badkey, + }, + new: &config.TLSConfig{ + CAFile: cacert, + CertFile: foocert, + KeyFile: fookey, + }, + shouldReload: true, + errorStr: "Different TLS Configuration should reload", + }, + { + old: &config.TLSConfig{ + CAFile: cacert, + CertFile: badcert, + KeyFile: badkey, + EnableRPC: true, + }, + new: &config.TLSConfig{ + CAFile: cacert, + CertFile: badcert, + KeyFile: badkey, + EnableRPC: false, + }, + shouldReload: true, + errorStr: "Downgrading RPC connections should force reload", + }, + { + old: nil, + new: &config.TLSConfig{ + CAFile: cacert, + CertFile: badcert, + KeyFile: badkey, + EnableRPC: true, + }, + shouldReload: true, + errorStr: "Upgrading RPC connections should force reload", + }, + { + old: &config.TLSConfig{ + CAFile: cacert, + CertFile: badcert, + KeyFile: badkey, + EnableRPC: true, + }, + new: nil, + shouldReload: true, + errorStr: "Downgrading RPC connections should force reload", + }, + } + + for _, testCase := range testInput { + shouldReload, err := ShouldReloadRPCConnections(testCase.old, testCase.new) + require.NoError(err) + require.Equal(shouldReload, testCase.shouldReload, testCase.errorStr) + } +} diff --git a/nomad/deploymentwatcher/deployments_watcher_test.go b/nomad/deploymentwatcher/deployments_watcher_test.go index 1221a7a04..b86ef0ca5 100644 --- a/nomad/deploymentwatcher/deployments_watcher_test.go +++ b/nomad/deploymentwatcher/deployments_watcher_test.go @@ -7,6 +7,7 @@ import ( memdb "github.com/hashicorp/go-memdb" "github.com/hashicorp/nomad/helper" + "github.com/hashicorp/nomad/helper/testlog" "github.com/hashicorp/nomad/helper/uuid" "github.com/hashicorp/nomad/nomad/mock" "github.com/hashicorp/nomad/nomad/structs" @@ -18,7 +19,7 @@ import ( func testDeploymentWatcher(t *testing.T, qps float64, batchDur time.Duration) (*Watcher, *mockBackend) { m := newMockBackend(t) - w := NewDeploymentsWatcher(testLogger(), m, qps, batchDur) + w := NewDeploymentsWatcher(testlog.Logger(t), m, qps, batchDur) return w, m } diff --git a/nomad/deploymentwatcher/testutil_test.go b/nomad/deploymentwatcher/testutil_test.go index 96753a758..73ea07ae0 100644 --- a/nomad/deploymentwatcher/testutil_test.go +++ b/nomad/deploymentwatcher/testutil_test.go @@ -1,8 +1,6 @@ package deploymentwatcher import ( - "log" - "os" "reflect" "strings" "sync" @@ -13,10 +11,6 @@ import ( mocker "github.com/stretchr/testify/mock" ) -func testLogger() *log.Logger { - return log.New(os.Stderr, "", log.LstdFlags|log.Lmicroseconds) -} - type mockBackend struct { mocker.Mock index uint64 @@ -125,17 +119,14 @@ type matchDeploymentStatusUpdateConfig struct { func matchDeploymentStatusUpdateRequest(c *matchDeploymentStatusUpdateConfig) func(args *structs.DeploymentStatusUpdateRequest) bool { return func(args *structs.DeploymentStatusUpdateRequest) bool { if args.DeploymentUpdate.DeploymentID != c.DeploymentID { - testLogger().Printf("deployment ids dont match") return false } if args.DeploymentUpdate.Status != c.Status && args.DeploymentUpdate.StatusDescription != c.StatusDescription { - testLogger().Printf("status's dont match") return false } if c.Eval && args.Eval == nil || !c.Eval && args.Eval != nil { - testLogger().Printf("evals dont match") return false } diff --git a/nomad/fsm.go b/nomad/fsm.go index d507ebf9b..0ef79d909 100644 --- a/nomad/fsm.go +++ b/nomad/fsm.go @@ -135,7 +135,7 @@ func NewFSM(config *FSMConfig) (*nomadFSM, error) { evalBroker: config.EvalBroker, periodicDispatcher: config.Periodic, blockedEvals: config.Blocked, - logger: log.New(config.LogOutput, "", log.LstdFlags), + logger: log.New(config.LogOutput, "", log.LstdFlags|log.Lmicroseconds), config: config, state: state, timetable: NewTimeTable(timeTableGranularity, timeTableLimit), diff --git a/nomad/fsm_test.go b/nomad/fsm_test.go index 418fd7842..f2fa2d1cf 100644 --- a/nomad/fsm_test.go +++ b/nomad/fsm_test.go @@ -47,7 +47,7 @@ func testStateStore(t *testing.T) *state.StateStore { func testFSM(t *testing.T) *nomadFSM { broker := testBroker(t, 0) - dispatcher, _ := testPeriodicDispatcher() + dispatcher, _ := testPeriodicDispatcher(t) fsmConfig := &FSMConfig{ EvalBroker: broker, Periodic: dispatcher, diff --git a/nomad/job_endpoint.go b/nomad/job_endpoint.go index 164899e58..d1e2af642 100644 --- a/nomad/job_endpoint.go +++ b/nomad/job_endpoint.go @@ -124,10 +124,8 @@ func (j *Job) Register(args *structs.JobRegisterRequest, reply *structs.JobRegis } // Validate job transitions if its an update - if existingJob != nil { - if err := validateJobUpdate(existingJob, args.Job); err != nil { - return err - } + if err := validateJobUpdate(existingJob, args.Job); err != nil { + return err } // Ensure that the job has permissions for the requested Vault tokens @@ -1327,6 +1325,14 @@ func validateJob(job *structs.Job) (invalid, warnings error) { // validateJobUpdate ensures updates to a job are valid. func validateJobUpdate(old, new *structs.Job) error { + // Validate Dispatch not set on new Jobs + if old == nil { + if new.Dispatched { + return fmt.Errorf("job can't be submitted with 'Dispatched' set") + } + return nil + } + // Type transitions are disallowed if old.Type != new.Type { return fmt.Errorf("cannot update job from type %q to %q", old.Type, new.Type) @@ -1348,6 +1354,10 @@ func validateJobUpdate(old, new *structs.Job) error { return fmt.Errorf("cannot update parameterized job to being non-parameterized") } + if old.Dispatched != new.Dispatched { + return fmt.Errorf("field 'Dispatched' is read-only") + } + return nil } @@ -1398,11 +1408,11 @@ func (j *Job) Dispatch(args *structs.JobDispatchRequest, reply *structs.JobDispa // Derive the child job and commit it via Raft dispatchJob := parameterizedJob.Copy() - dispatchJob.ParameterizedJob = nil dispatchJob.ID = structs.DispatchedID(parameterizedJob.ID, time.Now()) dispatchJob.ParentID = parameterizedJob.ID dispatchJob.Name = dispatchJob.ID dispatchJob.SetSubmitTime() + dispatchJob.Dispatched = true // Merge in the meta data for k, v := range args.Meta { diff --git a/nomad/job_endpoint_test.go b/nomad/job_endpoint_test.go index fe51fbabe..3d70d281c 100644 --- a/nomad/job_endpoint_test.go +++ b/nomad/job_endpoint_test.go @@ -458,6 +458,33 @@ func TestJobEndpoint_Register_ParameterizedJob(t *testing.T) { } } +func TestJobEndpoint_Register_Dispatched(t *testing.T) { + t.Parallel() + require := require.New(t) + s1 := TestServer(t, func(c *Config) { + c.NumSchedulers = 0 // Prevent automatic dequeue + }) + defer s1.Shutdown() + codec := rpcClient(t, s1) + testutil.WaitForLeader(t, s1.RPC) + + // Create the register request with a job with 'Dispatch' set to true + job := mock.Job() + job.Dispatched = true + req := &structs.JobRegisterRequest{ + Job: job, + WriteRequest: structs.WriteRequest{ + Region: "global", + Namespace: job.Namespace, + }, + } + + // Fetch the response + var resp structs.JobRegisterResponse + err := msgpackrpc.CallWithCodec(codec, "Job.Register", req, &resp) + require.Error(err) + require.Contains(err.Error(), "job can't be submitted with 'Dispatched'") +} func TestJobEndpoint_Register_EnforceIndex(t *testing.T) { t.Parallel() s1 := TestServer(t, func(c *Config) { @@ -3959,6 +3986,7 @@ func TestJobEndpoint_ValidateJob_KillSignal(t *testing.T) { func TestJobEndpoint_ValidateJobUpdate(t *testing.T) { t.Parallel() + require := require.New(t) old := mock.Job() new := mock.Job() @@ -3988,6 +4016,16 @@ func TestJobEndpoint_ValidateJobUpdate(t *testing.T) { } else { t.Log(err) } + + new = mock.Job() + new.Dispatched = true + require.Error(validateJobUpdate(old, new), + "expected err when setting new job to dispatched") + require.Error(validateJobUpdate(nil, new), + "expected err when setting new job to dispatched") + require.Error(validateJobUpdate(new, old), + "expected err when setting dispatched to false") + require.NoError(validateJobUpdate(nil, old)) } func TestJobEndpoint_ValidateJobUpdate_ACL(t *testing.T) { @@ -4343,6 +4381,15 @@ func TestJobEndpoint_Dispatch(t *testing.T) { if out.ParentID != tc.parameterizedJob.ID { t.Fatalf("bad parent ID") } + if !out.Dispatched { + t.Fatal("expected dispatched job") + } + if out.IsParameterized() { + t.Fatal("dispatched job should not be parameterized") + } + if out.ParameterizedJob == nil { + t.Fatal("parameter job config should exist") + } if tc.noEval { return diff --git a/nomad/periodic_test.go b/nomad/periodic_test.go index f2c9b8a52..a4f56cb56 100644 --- a/nomad/periodic_test.go +++ b/nomad/periodic_test.go @@ -2,9 +2,7 @@ package nomad import ( "fmt" - "log" "math/rand" - "os" "reflect" "sort" "strconv" @@ -13,6 +11,7 @@ import ( "testing" "time" + "github.com/hashicorp/nomad/helper/testlog" "github.com/hashicorp/nomad/nomad/mock" "github.com/hashicorp/nomad/nomad/structs" "github.com/hashicorp/nomad/testutil" @@ -78,8 +77,8 @@ func (t times) Less(i, j int) bool { return t[i].Before(t[j]) } // testPeriodicDispatcher returns an enabled PeriodicDispatcher which uses the // MockJobEvalDispatcher. -func testPeriodicDispatcher() (*PeriodicDispatch, *MockJobEvalDispatcher) { - logger := log.New(os.Stderr, "", log.LstdFlags) +func testPeriodicDispatcher(t *testing.T) (*PeriodicDispatch, *MockJobEvalDispatcher) { + logger := testlog.Logger(t) m := NewMockJobEvalDispatcher() d := NewPeriodicDispatch(logger, m) d.SetEnabled(true) @@ -105,7 +104,7 @@ func testPeriodicJob(times ...time.Time) *structs.Job { // This tests the reported issue: https://github.com/hashicorp/nomad/issues/2829 func TestPeriodicDispatch_SetEnabled(t *testing.T) { t.Parallel() - p, _ := testPeriodicDispatcher() + p, _ := testPeriodicDispatcher(t) // SetEnabled has been called once but do it again. p.SetEnabled(true) @@ -128,7 +127,7 @@ func TestPeriodicDispatch_SetEnabled(t *testing.T) { func TestPeriodicDispatch_Add_NonPeriodic(t *testing.T) { t.Parallel() - p, _ := testPeriodicDispatcher() + p, _ := testPeriodicDispatcher(t) job := mock.Job() if err := p.Add(job); err != nil { t.Fatalf("Add of non-periodic job failed: %v; expect no-op", err) @@ -142,7 +141,7 @@ func TestPeriodicDispatch_Add_NonPeriodic(t *testing.T) { func TestPeriodicDispatch_Add_Periodic_Parameterized(t *testing.T) { t.Parallel() - p, _ := testPeriodicDispatcher() + p, _ := testPeriodicDispatcher(t) job := mock.PeriodicJob() job.ParameterizedJob = &structs.ParameterizedJobConfig{} if err := p.Add(job); err != nil { @@ -157,7 +156,7 @@ func TestPeriodicDispatch_Add_Periodic_Parameterized(t *testing.T) { func TestPeriodicDispatch_Add_Periodic_Stopped(t *testing.T) { t.Parallel() - p, _ := testPeriodicDispatcher() + p, _ := testPeriodicDispatcher(t) job := mock.PeriodicJob() job.Stop = true if err := p.Add(job); err != nil { @@ -172,7 +171,7 @@ func TestPeriodicDispatch_Add_Periodic_Stopped(t *testing.T) { func TestPeriodicDispatch_Add_UpdateJob(t *testing.T) { t.Parallel() - p, _ := testPeriodicDispatcher() + p, _ := testPeriodicDispatcher(t) job := mock.PeriodicJob() if err := p.Add(job); err != nil { t.Fatalf("Add failed %v", err) @@ -202,7 +201,7 @@ func TestPeriodicDispatch_Add_UpdateJob(t *testing.T) { func TestPeriodicDispatch_Add_Remove_Namespaced(t *testing.T) { assert := assert.New(t) t.Parallel() - p, _ := testPeriodicDispatcher() + p, _ := testPeriodicDispatcher(t) job := mock.PeriodicJob() job2 := mock.PeriodicJob() job2.Namespace = "test" @@ -219,7 +218,7 @@ func TestPeriodicDispatch_Add_Remove_Namespaced(t *testing.T) { func TestPeriodicDispatch_Add_RemoveJob(t *testing.T) { t.Parallel() - p, _ := testPeriodicDispatcher() + p, _ := testPeriodicDispatcher(t) job := mock.PeriodicJob() if err := p.Add(job); err != nil { t.Fatalf("Add failed %v", err) @@ -244,7 +243,7 @@ func TestPeriodicDispatch_Add_RemoveJob(t *testing.T) { func TestPeriodicDispatch_Add_TriggersUpdate(t *testing.T) { t.Parallel() - p, m := testPeriodicDispatcher() + p, m := testPeriodicDispatcher(t) // Create a job that won't be evaluated for a while. job := testPeriodicJob(time.Now().Add(10 * time.Second)) @@ -287,7 +286,7 @@ func TestPeriodicDispatch_Add_TriggersUpdate(t *testing.T) { func TestPeriodicDispatch_Remove_Untracked(t *testing.T) { t.Parallel() - p, _ := testPeriodicDispatcher() + p, _ := testPeriodicDispatcher(t) if err := p.Remove("ns", "foo"); err != nil { t.Fatalf("Remove failed %v; expected a no-op", err) } @@ -295,7 +294,7 @@ func TestPeriodicDispatch_Remove_Untracked(t *testing.T) { func TestPeriodicDispatch_Remove_Tracked(t *testing.T) { t.Parallel() - p, _ := testPeriodicDispatcher() + p, _ := testPeriodicDispatcher(t) job := mock.PeriodicJob() if err := p.Add(job); err != nil { @@ -319,7 +318,7 @@ func TestPeriodicDispatch_Remove_Tracked(t *testing.T) { func TestPeriodicDispatch_Remove_TriggersUpdate(t *testing.T) { t.Parallel() - p, _ := testPeriodicDispatcher() + p, _ := testPeriodicDispatcher(t) // Create a job that will be evaluated soon. job := testPeriodicJob(time.Now().Add(1 * time.Second)) @@ -349,7 +348,7 @@ func TestPeriodicDispatch_Remove_TriggersUpdate(t *testing.T) { func TestPeriodicDispatch_ForceRun_Untracked(t *testing.T) { t.Parallel() - p, _ := testPeriodicDispatcher() + p, _ := testPeriodicDispatcher(t) if _, err := p.ForceRun("ns", "foo"); err == nil { t.Fatal("ForceRun of untracked job should fail") @@ -358,7 +357,7 @@ func TestPeriodicDispatch_ForceRun_Untracked(t *testing.T) { func TestPeriodicDispatch_ForceRun_Tracked(t *testing.T) { t.Parallel() - p, m := testPeriodicDispatcher() + p, m := testPeriodicDispatcher(t) // Create a job that won't be evaluated for a while. job := testPeriodicJob(time.Now().Add(10 * time.Second)) @@ -387,7 +386,7 @@ func TestPeriodicDispatch_ForceRun_Tracked(t *testing.T) { func TestPeriodicDispatch_Run_DisallowOverlaps(t *testing.T) { t.Parallel() - p, m := testPeriodicDispatcher() + p, m := testPeriodicDispatcher(t) // Create a job that will trigger two launches but disallows overlapping. launch1 := time.Now().Round(1 * time.Second).Add(1 * time.Second) @@ -417,7 +416,7 @@ func TestPeriodicDispatch_Run_DisallowOverlaps(t *testing.T) { func TestPeriodicDispatch_Run_Multiple(t *testing.T) { t.Parallel() - p, m := testPeriodicDispatcher() + p, m := testPeriodicDispatcher(t) // Create a job that will be launched twice. launch1 := time.Now().Round(1 * time.Second).Add(1 * time.Second) @@ -449,7 +448,7 @@ func TestPeriodicDispatch_Run_Multiple(t *testing.T) { func TestPeriodicDispatch_Run_SameTime(t *testing.T) { t.Parallel() - p, m := testPeriodicDispatcher() + p, m := testPeriodicDispatcher(t) // Create two job that will be launched at the same time. launch := time.Now().Round(1 * time.Second).Add(1 * time.Second) @@ -487,7 +486,7 @@ func TestPeriodicDispatch_Run_SameTime(t *testing.T) { func TestPeriodicDispatch_Run_SameID_Different_Namespace(t *testing.T) { t.Parallel() - p, m := testPeriodicDispatcher() + p, m := testPeriodicDispatcher(t) // Create two job that will be launched at the same time. launch := time.Now().Round(1 * time.Second).Add(1 * time.Second) @@ -534,7 +533,7 @@ func TestPeriodicDispatch_Run_SameID_Different_Namespace(t *testing.T) { // behavior. func TestPeriodicDispatch_Complex(t *testing.T) { t.Parallel() - p, m := testPeriodicDispatcher() + p, m := testPeriodicDispatcher(t) // Create some jobs launching at different times. now := time.Now().Round(1 * time.Second) diff --git a/nomad/server.go b/nomad/server.go index 777ff24af..ff1733dfe 100644 --- a/nomad/server.go +++ b/nomad/server.go @@ -678,13 +678,12 @@ func (s *Server) Reload(newConfig *Config) error { } } - tlsInfoEqual, err := newConfig.TLSConfig.CertificateInfoIsEqual(s.config.TLSConfig) + shouldReloadTLS, err := tlsutil.ShouldReloadRPCConnections(s.config.TLSConfig, newConfig.TLSConfig) if err != nil { - s.logger.Printf("[ERR] nomad: error parsing server TLS configuration: %s", err) - return err + s.logger.Printf("[ERR] nomad: error checking whether to reload TLS configuration: %s", err) } - if !tlsInfoEqual || newConfig.TLSConfig.EnableRPC != s.config.TLSConfig.EnableRPC { + if shouldReloadTLS { if err := s.reloadTLSConnections(newConfig.TLSConfig); err != nil { s.logger.Printf("[ERR] nomad: error reloading server TLS configuration: %s", err) multierror.Append(&mErr, err) diff --git a/nomad/server_test.go b/nomad/server_test.go index ef1439047..30633b9e8 100644 --- a/nomad/server_test.go +++ b/nomad/server_test.go @@ -219,7 +219,7 @@ func TestServer_Reload_Vault(t *testing.T) { } tr := true - config := s1.config + config := DefaultConfig() config.VaultConfig.Enabled = &tr config.VaultConfig.Token = uuid.Generate() diff --git a/nomad/state/state_store.go b/nomad/state/state_store.go index ac88328b9..a1e25b8f8 100644 --- a/nomad/state/state_store.go +++ b/nomad/state/state_store.go @@ -69,7 +69,7 @@ func NewStateStore(config *StateStoreConfig) (*StateStore, error) { // Create the state store s := &StateStore{ - logger: log.New(config.LogOutput, "", log.LstdFlags), + logger: log.New(config.LogOutput, "", log.LstdFlags|log.Lmicroseconds), db: db, config: config, abandonCh: make(chan struct{}), diff --git a/nomad/structs/config/vault.go b/nomad/structs/config/vault.go index 42115c1a9..bfb515623 100644 --- a/nomad/structs/config/vault.go +++ b/nomad/structs/config/vault.go @@ -181,3 +181,55 @@ func (c *VaultConfig) Copy() *VaultConfig { *nc = *c return nc } + +// IsEqual compares two Vault configurations and returns a boolean indicating +// if they are equal. +func (a *VaultConfig) IsEqual(b *VaultConfig) bool { + if a == nil && b != nil { + return false + } + if a != nil && b == nil { + return false + } + + if a.Token != b.Token { + return false + } + if a.Role != b.Role { + return false + } + if a.TaskTokenTTL != b.TaskTokenTTL { + return false + } + if a.Addr != b.Addr { + return false + } + if a.ConnectionRetryIntv.Nanoseconds() != b.ConnectionRetryIntv.Nanoseconds() { + return false + } + if a.TLSCaFile != b.TLSCaFile { + return false + } + if a.TLSCaPath != b.TLSCaPath { + return false + } + if a.TLSCertFile != b.TLSCertFile { + return false + } + if a.TLSKeyFile != b.TLSKeyFile { + return false + } + if a.TLSServerName != b.TLSServerName { + return false + } + if a.AllowUnauthenticated != b.AllowUnauthenticated { + return false + } + if a.TLSSkipVerify != b.TLSSkipVerify { + return false + } + if a.Enabled != b.Enabled { + return false + } + return true +} diff --git a/nomad/structs/config/vault_test.go b/nomad/structs/config/vault_test.go index f92f1dde7..e48b6ef02 100644 --- a/nomad/structs/config/vault_test.go +++ b/nomad/structs/config/vault_test.go @@ -3,6 +3,8 @@ package config import ( "reflect" "testing" + + "github.com/stretchr/testify/require" ) func TestVaultConfig_Merge(t *testing.T) { @@ -57,3 +59,71 @@ func TestVaultConfig_Merge(t *testing.T) { t.Fatalf("bad:\n%#v\n%#v", result, e) } } + +func TestVaultConfig_IsEqual(t *testing.T) { + require := require.New(t) + + trueValue, falseValue := true, false + c1 := &VaultConfig{ + Enabled: &falseValue, + Token: "1", + Role: "1", + AllowUnauthenticated: &trueValue, + TaskTokenTTL: "1", + Addr: "1", + TLSCaFile: "1", + TLSCaPath: "1", + TLSCertFile: "1", + TLSKeyFile: "1", + TLSSkipVerify: &trueValue, + TLSServerName: "1", + } + + c2 := &VaultConfig{ + Enabled: &falseValue, + Token: "1", + Role: "1", + AllowUnauthenticated: &trueValue, + TaskTokenTTL: "1", + Addr: "1", + TLSCaFile: "1", + TLSCaPath: "1", + TLSCertFile: "1", + TLSKeyFile: "1", + TLSSkipVerify: &trueValue, + TLSServerName: "1", + } + + require.True(c1.IsEqual(c2)) + + c3 := &VaultConfig{ + Enabled: &trueValue, + Token: "1", + Role: "1", + AllowUnauthenticated: &trueValue, + TaskTokenTTL: "1", + Addr: "1", + TLSCaFile: "1", + TLSCaPath: "1", + TLSCertFile: "1", + TLSKeyFile: "1", + TLSSkipVerify: &trueValue, + TLSServerName: "1", + } + + c4 := &VaultConfig{ + Enabled: &falseValue, + Token: "1", + Role: "1", + AllowUnauthenticated: &trueValue, + TaskTokenTTL: "1", + Addr: "1", + TLSCaFile: "1", + TLSCaPath: "1", + TLSCertFile: "1", + TLSKeyFile: "1", + TLSSkipVerify: &trueValue, + TLSServerName: "1", + } + require.False(c3.IsEqual(c4)) +} diff --git a/nomad/structs/diff_test.go b/nomad/structs/diff_test.go index 879522ecd..30a59c7bd 100644 --- a/nomad/structs/diff_test.go +++ b/nomad/structs/diff_test.go @@ -150,6 +150,12 @@ func TestJobDiff(t *testing.T) { Old: "true", New: "", }, + { + Type: DiffTypeDeleted, + Name: "Dispatched", + Old: "false", + New: "", + }, { Type: DiffTypeDeleted, Name: "Meta[foo]", @@ -213,6 +219,12 @@ func TestJobDiff(t *testing.T) { Old: "", New: "true", }, + { + Type: DiffTypeAdded, + Name: "Dispatched", + Old: "", + New: "false", + }, { Type: DiffTypeAdded, Name: "Meta[foo]", diff --git a/nomad/structs/structs.go b/nomad/structs/structs.go index 93ad1bdbf..969f11338 100644 --- a/nomad/structs/structs.go +++ b/nomad/structs/structs.go @@ -2018,6 +2018,10 @@ type Job struct { // for dispatching. ParameterizedJob *ParameterizedJobConfig + // Dispatched is used to identify if the Job has been dispatched from a + // parameterized job. + Dispatched bool + // Payload is the payload supplied when the job was dispatched. Payload []byte @@ -2328,7 +2332,7 @@ func (j *Job) IsPeriodicActive() bool { // IsParameterized returns whether a job is parameterized job. func (j *Job) IsParameterized() bool { - return j.ParameterizedJob != nil + return j.ParameterizedJob != nil && !j.Dispatched } // VaultPolicies returns the set of Vault policies per task group, per task diff --git a/nomad/testing.go b/nomad/testing.go index 2859dfb63..9b81f458d 100644 --- a/nomad/testing.go +++ b/nomad/testing.go @@ -2,7 +2,6 @@ package nomad import ( "fmt" - "log" "math/rand" "net" "sync/atomic" @@ -77,7 +76,7 @@ func TestServer(t testing.T, cb func(*Config)) *Server { // Enable raft as leader if we have bootstrap on config.RaftConfig.StartAsLeader = !config.DevDisableBootstrap - logger := log.New(config.LogOutput, fmt.Sprintf("[%s] ", config.NodeName), log.LstdFlags) + logger := testlog.WithPrefix(t, fmt.Sprintf("[%s] ", config.NodeName)) catalog := consul.NewMockCatalog(logger) for i := 10; i >= 0; i-- { diff --git a/nomad/vault.go b/nomad/vault.go index ca1486ebf..fc60075fb 100644 --- a/nomad/vault.go +++ b/nomad/vault.go @@ -316,6 +316,11 @@ func (v *vaultClient) SetConfig(config *config.VaultConfig) error { v.l.Lock() defer v.l.Unlock() + // If reloading the same config, no-op + if v.config.IsEqual(config) { + return nil + } + // Kill any background routines if v.running { // Stop accepting any new request diff --git a/nomad/vault_test.go b/nomad/vault_test.go index 687395a0d..c6368b981 100644 --- a/nomad/vault_test.go +++ b/nomad/vault_test.go @@ -4,9 +4,7 @@ import ( "context" "encoding/json" "fmt" - "log" "math/rand" - "os" "reflect" "strings" "testing" @@ -15,6 +13,7 @@ import ( "golang.org/x/time/rate" "github.com/hashicorp/nomad/helper" + "github.com/hashicorp/nomad/helper/testlog" "github.com/hashicorp/nomad/helper/uuid" "github.com/hashicorp/nomad/nomad/mock" "github.com/hashicorp/nomad/nomad/structs" @@ -150,7 +149,7 @@ func testVaultRoleAndToken(v *testutil.TestVault, t *testing.T, vaultPolicies ma func TestVaultClient_BadConfig(t *testing.T) { t.Parallel() conf := &config.VaultConfig{} - logger := log.New(os.Stderr, "", log.LstdFlags) + logger := testlog.Logger(t) // Should be no error since Vault is not enabled _, err := NewVaultClient(nil, logger, nil) @@ -179,7 +178,7 @@ func TestVaultClient_EstablishConnection(t *testing.T) { t.Parallel() for i := 10; i >= 0; i-- { v := testutil.NewTestVaultDelayed(t) - logger := log.New(os.Stderr, "", log.LstdFlags) + logger := testlog.Logger(t) v.Config.ConnectionRetryIntv = 100 * time.Millisecond client, err := NewVaultClient(v.Config, logger, nil) if err != nil { @@ -247,7 +246,7 @@ func TestVaultClient_ValidateRole(t *testing.T) { } v.Config.Token = testVaultRoleAndToken(v, t, vaultPolicies, data, nil) - logger := log.New(os.Stderr, "", log.LstdFlags) + logger := testlog.Logger(t) v.Config.ConnectionRetryIntv = 100 * time.Millisecond client, err := NewVaultClient(v.Config, logger, nil) if err != nil { @@ -286,7 +285,7 @@ func TestVaultClient_ValidateRole_NonExistant(t *testing.T) { v.Config.Token = defaultTestVaultWhitelistRoleAndToken(v, t, 5) v.Config.Token = v.RootToken - logger := log.New(os.Stderr, "", log.LstdFlags) + logger := testlog.Logger(t) v.Config.ConnectionRetryIntv = 100 * time.Millisecond v.Config.Role = "test-nonexistent" client, err := NewVaultClient(v.Config, logger, nil) @@ -335,7 +334,7 @@ func TestVaultClient_ValidateToken(t *testing.T) { } v.Config.Token = testVaultRoleAndToken(v, t, vaultPolicies, data, []string{"token-lookup", "nomad-role-create"}) - logger := log.New(os.Stderr, "", log.LstdFlags) + logger := testlog.Logger(t) v.Config.ConnectionRetryIntv = 100 * time.Millisecond client, err := NewVaultClient(v.Config, logger, nil) if err != nil { @@ -378,7 +377,7 @@ func TestVaultClient_SetActive(t *testing.T) { v := testutil.NewTestVault(t) defer v.Stop() - logger := log.New(os.Stderr, "", log.LstdFlags) + logger := testlog.Logger(t) client, err := NewVaultClient(v.Config, logger, nil) if err != nil { t.Fatalf("failed to build vault client: %v", err) @@ -414,7 +413,7 @@ func TestVaultClient_SetConfig(t *testing.T) { // Set the configs token in a new test role v2.Config.Token = defaultTestVaultWhitelistRoleAndToken(v2, t, 20) - logger := log.New(os.Stderr, "", log.LstdFlags) + logger := testlog.Logger(t) client, err := NewVaultClient(v.Config, logger, nil) if err != nil { t.Fatalf("failed to build vault client: %v", err) @@ -437,6 +436,31 @@ func TestVaultClient_SetConfig(t *testing.T) { if client.tokenData == nil || len(client.tokenData.Policies) != 3 { t.Fatalf("unexpected token: %v", client.tokenData) } + + // Test that when SetConfig is called with the same configuration, it is a + // no-op + failCh := make(chan struct{}, 1) + go func() { + tomb := client.tomb + select { + case <-tomb.Dying(): + close(failCh) + case <-time.After(1 * time.Second): + return + } + }() + + // Update the config + if err := client.SetConfig(v2.Config); err != nil { + t.Fatalf("SetConfig failed: %v", err) + } + + select { + case <-failCh: + t.Fatalf("Tomb shouldn't have exited") + case <-time.After(1 * time.Second): + return + } } // Test that we can disable vault @@ -445,7 +469,7 @@ func TestVaultClient_SetConfig_Disable(t *testing.T) { v := testutil.NewTestVault(t) defer v.Stop() - logger := log.New(os.Stderr, "", log.LstdFlags) + logger := testlog.Logger(t) client, err := NewVaultClient(v.Config, logger, nil) if err != nil { t.Fatalf("failed to build vault client: %v", err) @@ -483,7 +507,7 @@ func TestVaultClient_RenewalLoop(t *testing.T) { v.Config.Token = defaultTestVaultWhitelistRoleAndToken(v, t, 5) // Start the client - logger := log.New(os.Stderr, "", log.LstdFlags) + logger := testlog.Logger(t) client, err := NewVaultClient(v.Config, logger, nil) if err != nil { t.Fatalf("failed to build vault client: %v", err) @@ -541,7 +565,7 @@ func TestVaultClient_LookupToken_Invalid(t *testing.T) { } // Enable vault but use a bad address so it never establishes a conn - logger := log.New(os.Stderr, "", log.LstdFlags) + logger := testlog.Logger(t) client, err := NewVaultClient(conf, logger, nil) if err != nil { t.Fatalf("failed to build vault client: %v", err) @@ -560,7 +584,7 @@ func TestVaultClient_LookupToken_Root(t *testing.T) { v := testutil.NewTestVault(t) defer v.Stop() - logger := log.New(os.Stderr, "", log.LstdFlags) + logger := testlog.Logger(t) client, err := NewVaultClient(v.Config, logger, nil) if err != nil { t.Fatalf("failed to build vault client: %v", err) @@ -625,7 +649,7 @@ func TestVaultClient_LookupToken_Role(t *testing.T) { // Set the configs token in a new test role v.Config.Token = defaultTestVaultWhitelistRoleAndToken(v, t, 5) - logger := log.New(os.Stderr, "", log.LstdFlags) + logger := testlog.Logger(t) client, err := NewVaultClient(v.Config, logger, nil) if err != nil { t.Fatalf("failed to build vault client: %v", err) @@ -687,7 +711,7 @@ func TestVaultClient_LookupToken_RateLimit(t *testing.T) { v := testutil.NewTestVault(t) defer v.Stop() - logger := log.New(os.Stderr, "", log.LstdFlags) + logger := testlog.Logger(t) client, err := NewVaultClient(v.Config, logger, nil) if err != nil { t.Fatalf("failed to build vault client: %v", err) @@ -747,7 +771,7 @@ func TestVaultClient_CreateToken_Root(t *testing.T) { v := testutil.NewTestVault(t) defer v.Stop() - logger := log.New(os.Stderr, "", log.LstdFlags) + logger := testlog.Logger(t) client, err := NewVaultClient(v.Config, logger, nil) if err != nil { t.Fatalf("failed to build vault client: %v", err) @@ -795,7 +819,7 @@ func TestVaultClient_CreateToken_Whitelist_Role(t *testing.T) { v.Config.Token = defaultTestVaultWhitelistRoleAndToken(v, t, 5) // Start the client - logger := log.New(os.Stderr, "", log.LstdFlags) + logger := testlog.Logger(t) client, err := NewVaultClient(v.Config, logger, nil) if err != nil { t.Fatalf("failed to build vault client: %v", err) @@ -846,7 +870,7 @@ func TestVaultClient_CreateToken_Root_Target_Role(t *testing.T) { v.Config.Role = "test" // Start the client - logger := log.New(os.Stderr, "", log.LstdFlags) + logger := testlog.Logger(t) client, err := NewVaultClient(v.Config, logger, nil) if err != nil { t.Fatalf("failed to build vault client: %v", err) @@ -905,7 +929,7 @@ func TestVaultClient_CreateToken_Blacklist_Role(t *testing.T) { v.Config.Role = "test" // Start the client - logger := log.New(os.Stderr, "", log.LstdFlags) + logger := testlog.Logger(t) client, err := NewVaultClient(v.Config, logger, nil) if err != nil { t.Fatalf("failed to build vault client: %v", err) @@ -954,7 +978,7 @@ func TestVaultClient_CreateToken_Role_InvalidToken(t *testing.T) { v.Config.Token = "foo-bar" // Start the client - logger := log.New(os.Stderr, "", log.LstdFlags) + logger := testlog.Logger(t) client, err := NewVaultClient(v.Config, logger, nil) if err != nil { t.Fatalf("failed to build vault client: %v", err) @@ -992,7 +1016,7 @@ func TestVaultClient_CreateToken_Role_Unrecoverable(t *testing.T) { v.Config.Token = defaultTestVaultWhitelistRoleAndToken(v, t, 5) // Start the client - logger := log.New(os.Stderr, "", log.LstdFlags) + logger := testlog.Logger(t) client, err := NewVaultClient(v.Config, logger, nil) if err != nil { t.Fatalf("failed to build vault client: %v", err) @@ -1026,7 +1050,7 @@ func TestVaultClient_CreateToken_Prestart(t *testing.T) { Addr: "http://127.0.0.1:0", } - logger := log.New(os.Stderr, "", log.LstdFlags) + logger := testlog.Logger(t) client, err := NewVaultClient(vconfig, logger, nil) if err != nil { t.Fatalf("failed to build vault client: %v", err) @@ -1058,7 +1082,7 @@ func TestVaultClient_RevokeTokens_PreEstablishs(t *testing.T) { Token: uuid.Generate(), Addr: "http://127.0.0.1:0", } - logger := log.New(os.Stderr, "", log.LstdFlags) + logger := testlog.Logger(t) client, err := NewVaultClient(vconfig, logger, nil) if err != nil { t.Fatalf("failed to build vault client: %v", err) @@ -1106,7 +1130,7 @@ func TestVaultClient_RevokeTokens_Root(t *testing.T) { return nil } - logger := log.New(os.Stderr, "", log.LstdFlags) + logger := testlog.Logger(t) client, err := NewVaultClient(v.Config, logger, purge) if err != nil { t.Fatalf("failed to build vault client: %v", err) @@ -1174,7 +1198,7 @@ func TestVaultClient_RevokeTokens_Role(t *testing.T) { return nil } - logger := log.New(os.Stderr, "", log.LstdFlags) + logger := testlog.Logger(t) client, err := NewVaultClient(v.Config, logger, purge) if err != nil { t.Fatalf("failed to build vault client: %v", err) diff --git a/scheduler/context_test.go b/scheduler/context_test.go index 4de024bbf..b499ff281 100644 --- a/scheduler/context_test.go +++ b/scheduler/context_test.go @@ -1,11 +1,10 @@ package scheduler import ( - "log" - "os" "reflect" "testing" + "github.com/hashicorp/nomad/helper/testlog" "github.com/hashicorp/nomad/helper/uuid" "github.com/hashicorp/nomad/nomad/mock" "github.com/hashicorp/nomad/nomad/state" @@ -19,7 +18,7 @@ func testContext(t testing.TB) (*state.StateStore, *EvalContext) { NodeAllocation: make(map[string][]*structs.Allocation), } - logger := log.New(os.Stderr, "", log.LstdFlags) + logger := testlog.Logger(t) ctx := NewEvalContext(state, plan, logger) return state, ctx diff --git a/scheduler/reconcile_test.go b/scheduler/reconcile_test.go index 5e039a7a9..84fbeb0ff 100644 --- a/scheduler/reconcile_test.go +++ b/scheduler/reconcile_test.go @@ -2,8 +2,6 @@ package scheduler import ( "fmt" - "log" - "os" "reflect" "regexp" "strconv" @@ -11,6 +9,7 @@ import ( "time" "github.com/hashicorp/nomad/helper" + "github.com/hashicorp/nomad/helper/testlog" "github.com/hashicorp/nomad/helper/uuid" "github.com/hashicorp/nomad/nomad/mock" "github.com/hashicorp/nomad/nomad/structs" @@ -38,10 +37,6 @@ var ( } ) -func testLogger() *log.Logger { - return log.New(os.Stderr, "", log.LstdFlags) -} - func allocUpdateFnIgnore(*structs.Allocation, *structs.Job, *structs.TaskGroup) (bool, bool, *structs.Allocation) { return true, false, nil } @@ -283,7 +278,7 @@ func assertResults(t *testing.T, r *reconcileResults, exp *resultExpectation) { // existing allocations func TestReconciler_Place_NoExisting(t *testing.T) { job := mock.Job() - reconciler := NewAllocReconciler(testLogger(), allocUpdateFnIgnore, false, job.ID, job, nil, nil, nil, "") + reconciler := NewAllocReconciler(testlog.Logger(t), allocUpdateFnIgnore, false, job.ID, job, nil, nil, nil, "") r := reconciler.Compute() // Assert the correct results @@ -319,7 +314,7 @@ func TestReconciler_Place_Existing(t *testing.T) { allocs = append(allocs, alloc) } - reconciler := NewAllocReconciler(testLogger(), allocUpdateFnIgnore, false, job.ID, job, nil, allocs, nil, "") + reconciler := NewAllocReconciler(testlog.Logger(t), allocUpdateFnIgnore, false, job.ID, job, nil, allocs, nil, "") r := reconciler.Compute() // Assert the correct results @@ -357,7 +352,7 @@ func TestReconciler_ScaleDown_Partial(t *testing.T) { allocs = append(allocs, alloc) } - reconciler := NewAllocReconciler(testLogger(), allocUpdateFnIgnore, false, job.ID, job, nil, allocs, nil, "") + reconciler := NewAllocReconciler(testlog.Logger(t), allocUpdateFnIgnore, false, job.ID, job, nil, allocs, nil, "") r := reconciler.Compute() // Assert the correct results @@ -396,7 +391,7 @@ func TestReconciler_ScaleDown_Zero(t *testing.T) { allocs = append(allocs, alloc) } - reconciler := NewAllocReconciler(testLogger(), allocUpdateFnIgnore, false, job.ID, job, nil, allocs, nil, "") + reconciler := NewAllocReconciler(testlog.Logger(t), allocUpdateFnIgnore, false, job.ID, job, nil, allocs, nil, "") r := reconciler.Compute() // Assert the correct results @@ -436,7 +431,7 @@ func TestReconciler_ScaleDown_Zero_DuplicateNames(t *testing.T) { expectedStopped = append(expectedStopped, i%2) } - reconciler := NewAllocReconciler(testLogger(), allocUpdateFnIgnore, false, job.ID, job, nil, allocs, nil, "") + reconciler := NewAllocReconciler(testlog.Logger(t), allocUpdateFnIgnore, false, job.ID, job, nil, allocs, nil, "") r := reconciler.Compute() // Assert the correct results @@ -471,7 +466,7 @@ func TestReconciler_Inplace(t *testing.T) { allocs = append(allocs, alloc) } - reconciler := NewAllocReconciler(testLogger(), allocUpdateFnInplace, false, job.ID, job, nil, allocs, nil, "") + reconciler := NewAllocReconciler(testlog.Logger(t), allocUpdateFnInplace, false, job.ID, job, nil, allocs, nil, "") r := reconciler.Compute() // Assert the correct results @@ -509,7 +504,7 @@ func TestReconciler_Inplace_ScaleUp(t *testing.T) { allocs = append(allocs, alloc) } - reconciler := NewAllocReconciler(testLogger(), allocUpdateFnInplace, false, job.ID, job, nil, allocs, nil, "") + reconciler := NewAllocReconciler(testlog.Logger(t), allocUpdateFnInplace, false, job.ID, job, nil, allocs, nil, "") r := reconciler.Compute() // Assert the correct results @@ -549,7 +544,7 @@ func TestReconciler_Inplace_ScaleDown(t *testing.T) { allocs = append(allocs, alloc) } - reconciler := NewAllocReconciler(testLogger(), allocUpdateFnInplace, false, job.ID, job, nil, allocs, nil, "") + reconciler := NewAllocReconciler(testlog.Logger(t), allocUpdateFnInplace, false, job.ID, job, nil, allocs, nil, "") r := reconciler.Compute() // Assert the correct results @@ -586,7 +581,7 @@ func TestReconciler_Destructive(t *testing.T) { allocs = append(allocs, alloc) } - reconciler := NewAllocReconciler(testLogger(), allocUpdateFnDestructive, false, job.ID, job, nil, allocs, nil, "") + reconciler := NewAllocReconciler(testlog.Logger(t), allocUpdateFnDestructive, false, job.ID, job, nil, allocs, nil, "") r := reconciler.Compute() // Assert the correct results @@ -622,7 +617,7 @@ func TestReconciler_Destructive_ScaleUp(t *testing.T) { allocs = append(allocs, alloc) } - reconciler := NewAllocReconciler(testLogger(), allocUpdateFnDestructive, false, job.ID, job, nil, allocs, nil, "") + reconciler := NewAllocReconciler(testlog.Logger(t), allocUpdateFnDestructive, false, job.ID, job, nil, allocs, nil, "") r := reconciler.Compute() // Assert the correct results @@ -661,7 +656,7 @@ func TestReconciler_Destructive_ScaleDown(t *testing.T) { allocs = append(allocs, alloc) } - reconciler := NewAllocReconciler(testLogger(), allocUpdateFnDestructive, false, job.ID, job, nil, allocs, nil, "") + reconciler := NewAllocReconciler(testlog.Logger(t), allocUpdateFnDestructive, false, job.ID, job, nil, allocs, nil, "") r := reconciler.Compute() // Assert the correct results @@ -706,7 +701,7 @@ func TestReconciler_LostNode(t *testing.T) { tainted[n.ID] = n } - reconciler := NewAllocReconciler(testLogger(), allocUpdateFnIgnore, false, job.ID, job, nil, allocs, tainted, "") + reconciler := NewAllocReconciler(testlog.Logger(t), allocUpdateFnIgnore, false, job.ID, job, nil, allocs, tainted, "") r := reconciler.Compute() // Assert the correct results @@ -756,7 +751,7 @@ func TestReconciler_LostNode_ScaleUp(t *testing.T) { tainted[n.ID] = n } - reconciler := NewAllocReconciler(testLogger(), allocUpdateFnIgnore, false, job.ID, job, nil, allocs, tainted, "") + reconciler := NewAllocReconciler(testlog.Logger(t), allocUpdateFnIgnore, false, job.ID, job, nil, allocs, tainted, "") r := reconciler.Compute() // Assert the correct results @@ -806,7 +801,7 @@ func TestReconciler_LostNode_ScaleDown(t *testing.T) { tainted[n.ID] = n } - reconciler := NewAllocReconciler(testLogger(), allocUpdateFnIgnore, false, job.ID, job, nil, allocs, tainted, "") + reconciler := NewAllocReconciler(testlog.Logger(t), allocUpdateFnIgnore, false, job.ID, job, nil, allocs, tainted, "") r := reconciler.Compute() // Assert the correct results @@ -852,7 +847,7 @@ func TestReconciler_DrainNode(t *testing.T) { tainted[n.ID] = n } - reconciler := NewAllocReconciler(testLogger(), allocUpdateFnIgnore, false, job.ID, job, nil, allocs, tainted, "") + reconciler := NewAllocReconciler(testlog.Logger(t), allocUpdateFnIgnore, false, job.ID, job, nil, allocs, tainted, "") r := reconciler.Compute() // Assert the correct results @@ -905,7 +900,7 @@ func TestReconciler_DrainNode_ScaleUp(t *testing.T) { tainted[n.ID] = n } - reconciler := NewAllocReconciler(testLogger(), allocUpdateFnIgnore, false, job.ID, job, nil, allocs, tainted, "") + reconciler := NewAllocReconciler(testlog.Logger(t), allocUpdateFnIgnore, false, job.ID, job, nil, allocs, tainted, "") r := reconciler.Compute() // Assert the correct results @@ -959,7 +954,7 @@ func TestReconciler_DrainNode_ScaleDown(t *testing.T) { tainted[n.ID] = n } - reconciler := NewAllocReconciler(testLogger(), allocUpdateFnIgnore, false, job.ID, job, nil, allocs, tainted, "") + reconciler := NewAllocReconciler(testlog.Logger(t), allocUpdateFnIgnore, false, job.ID, job, nil, allocs, tainted, "") r := reconciler.Compute() // Assert the correct results @@ -1004,7 +999,7 @@ func TestReconciler_RemovedTG(t *testing.T) { newName := "different" job.TaskGroups[0].Name = newName - reconciler := NewAllocReconciler(testLogger(), allocUpdateFnIgnore, false, job.ID, job, nil, allocs, nil, "") + reconciler := NewAllocReconciler(testlog.Logger(t), allocUpdateFnIgnore, false, job.ID, job, nil, allocs, nil, "") r := reconciler.Compute() // Assert the correct results @@ -1066,7 +1061,7 @@ func TestReconciler_JobStopped(t *testing.T) { allocs = append(allocs, alloc) } - reconciler := NewAllocReconciler(testLogger(), allocUpdateFnIgnore, false, c.jobID, c.job, nil, allocs, nil, "") + reconciler := NewAllocReconciler(testlog.Logger(t), allocUpdateFnIgnore, false, c.jobID, c.job, nil, allocs, nil, "") r := reconciler.Compute() // Assert the correct results @@ -1106,7 +1101,7 @@ func TestReconciler_MultiTG(t *testing.T) { allocs = append(allocs, alloc) } - reconciler := NewAllocReconciler(testLogger(), allocUpdateFnIgnore, false, job.ID, job, nil, allocs, nil, "") + reconciler := NewAllocReconciler(testlog.Logger(t), allocUpdateFnIgnore, false, job.ID, job, nil, allocs, nil, "") r := reconciler.Compute() // Assert the correct results @@ -1158,7 +1153,7 @@ func TestReconciler_MultiTG_SingleUpdateStanza(t *testing.T) { DesiredTotal: 10, } - reconciler := NewAllocReconciler(testLogger(), allocUpdateFnIgnore, false, job.ID, job, d, allocs, nil, "") + reconciler := NewAllocReconciler(testlog.Logger(t), allocUpdateFnIgnore, false, job.ID, job, d, allocs, nil, "") r := reconciler.Compute() // Assert the correct results @@ -1234,7 +1229,7 @@ func TestReconciler_RescheduleLater_Batch(t *testing.T) { // Mark one as complete allocs[5].ClientStatus = structs.AllocClientStatusComplete - reconciler := NewAllocReconciler(testLogger(), allocUpdateFnIgnore, true, job.ID, job, nil, allocs, nil, uuid.Generate()) + reconciler := NewAllocReconciler(testlog.Logger(t), allocUpdateFnIgnore, true, job.ID, job, nil, allocs, nil, uuid.Generate()) r := reconciler.Compute() // Two reschedule attempts were already made, one more can be made at a future time @@ -1313,7 +1308,7 @@ func TestReconciler_RescheduleLaterWithBatchedEvals_Batch(t *testing.T) { FinishedAt: now.Add(10 * time.Second)}} } - reconciler := NewAllocReconciler(testLogger(), allocUpdateFnIgnore, true, job.ID, job, nil, allocs, nil, uuid.Generate()) + reconciler := NewAllocReconciler(testlog.Logger(t), allocUpdateFnIgnore, true, job.ID, job, nil, allocs, nil, uuid.Generate()) r := reconciler.Compute() // Verify that two follow up evals were created @@ -1406,7 +1401,7 @@ func TestReconciler_RescheduleNow_Batch(t *testing.T) { // Mark one as complete allocs[5].ClientStatus = structs.AllocClientStatusComplete - reconciler := NewAllocReconciler(testLogger(), allocUpdateFnIgnore, true, job.ID, job, nil, allocs, nil, "") + reconciler := NewAllocReconciler(testlog.Logger(t), allocUpdateFnIgnore, true, job.ID, job, nil, allocs, nil, "") reconciler.now = now r := reconciler.Compute() @@ -1480,7 +1475,7 @@ func TestReconciler_RescheduleLater_Service(t *testing.T) { // Mark one as desired state stop allocs[4].DesiredStatus = structs.AllocDesiredStatusStop - reconciler := NewAllocReconciler(testLogger(), allocUpdateFnIgnore, false, job.ID, job, nil, allocs, nil, uuid.Generate()) + reconciler := NewAllocReconciler(testlog.Logger(t), allocUpdateFnIgnore, false, job.ID, job, nil, allocs, nil, uuid.Generate()) r := reconciler.Compute() // Should place a new placement and create a follow up eval for the delayed reschedule @@ -1548,7 +1543,7 @@ func TestReconciler_Service_ClientStatusComplete(t *testing.T) { // Mark one as client status complete allocs[4].ClientStatus = structs.AllocClientStatusComplete - reconciler := NewAllocReconciler(testLogger(), allocUpdateFnIgnore, false, job.ID, job, nil, allocs, nil, "") + reconciler := NewAllocReconciler(testlog.Logger(t), allocUpdateFnIgnore, false, job.ID, job, nil, allocs, nil, "") r := reconciler.Compute() // Should place a new placement for the alloc that was marked complete @@ -1604,7 +1599,7 @@ func TestReconciler_Service_DesiredStop_ClientStatusComplete(t *testing.T) { allocs[4].ClientStatus = structs.AllocClientStatusFailed allocs[4].DesiredStatus = structs.AllocDesiredStatusStop - reconciler := NewAllocReconciler(testLogger(), allocUpdateFnIgnore, false, job.ID, job, nil, allocs, nil, "") + reconciler := NewAllocReconciler(testlog.Logger(t), allocUpdateFnIgnore, false, job.ID, job, nil, allocs, nil, "") r := reconciler.Compute() // Should place a new placement for the alloc that was marked stopped @@ -1681,7 +1676,7 @@ func TestReconciler_RescheduleNow_Service(t *testing.T) { // Mark one as desired state stop allocs[4].DesiredStatus = structs.AllocDesiredStatusStop - reconciler := NewAllocReconciler(testLogger(), allocUpdateFnIgnore, false, job.ID, job, nil, allocs, nil, "") + reconciler := NewAllocReconciler(testlog.Logger(t), allocUpdateFnIgnore, false, job.ID, job, nil, allocs, nil, "") r := reconciler.Compute() // Verify that no follow up evals were created @@ -1758,7 +1753,7 @@ func TestReconciler_RescheduleNow_WithinAllowedTimeWindow(t *testing.T) { FinishedAt: now.Add(-4 * time.Second)}} allocs[1].ClientStatus = structs.AllocClientStatusFailed - reconciler := NewAllocReconciler(testLogger(), allocUpdateFnIgnore, false, job.ID, job, nil, allocs, nil, "") + reconciler := NewAllocReconciler(testlog.Logger(t), allocUpdateFnIgnore, false, job.ID, job, nil, allocs, nil, "") reconciler.now = now r := reconciler.Compute() @@ -1838,7 +1833,7 @@ func TestReconciler_RescheduleNow_EvalIDMatch(t *testing.T) { allocs[1].ClientStatus = structs.AllocClientStatusFailed allocs[1].FollowupEvalID = evalID - reconciler := NewAllocReconciler(testLogger(), allocUpdateFnIgnore, false, job.ID, job, nil, allocs, nil, evalID) + reconciler := NewAllocReconciler(testlog.Logger(t), allocUpdateFnIgnore, false, job.ID, job, nil, allocs, nil, evalID) reconciler.now = now.Add(-30 * time.Second) r := reconciler.Compute() @@ -1946,7 +1941,7 @@ func TestReconciler_RescheduleNow_Service_WithCanaries(t *testing.T) { allocs = append(allocs, alloc) } - reconciler := NewAllocReconciler(testLogger(), allocUpdateFnIgnore, false, job.ID, job2, d, allocs, nil, "") + reconciler := NewAllocReconciler(testlog.Logger(t), allocUpdateFnIgnore, false, job.ID, job2, d, allocs, nil, "") r := reconciler.Compute() // Verify that no follow up evals were created @@ -2068,7 +2063,7 @@ func TestReconciler_RescheduleNow_Service_Canaries(t *testing.T) { allocs = append(allocs, alloc) } - reconciler := NewAllocReconciler(testLogger(), allocUpdateFnIgnore, false, job.ID, job2, d, allocs, nil, "") + reconciler := NewAllocReconciler(testlog.Logger(t), allocUpdateFnIgnore, false, job.ID, job2, d, allocs, nil, "") reconciler.now = now r := reconciler.Compute() @@ -2194,7 +2189,7 @@ func TestReconciler_RescheduleNow_Service_Canaries_Limit(t *testing.T) { allocs = append(allocs, alloc) } - reconciler := NewAllocReconciler(testLogger(), allocUpdateFnIgnore, false, job.ID, job2, d, allocs, nil, "") + reconciler := NewAllocReconciler(testlog.Logger(t), allocUpdateFnIgnore, false, job.ID, job2, d, allocs, nil, "") reconciler.now = now r := reconciler.Compute() @@ -2258,7 +2253,7 @@ func TestReconciler_DontReschedule_PreviouslyRescheduled(t *testing.T) { // Mark one as desired state stop allocs[4].DesiredStatus = structs.AllocDesiredStatusStop - reconciler := NewAllocReconciler(testLogger(), allocUpdateFnIgnore, false, job.ID, job, nil, allocs, nil, "") + reconciler := NewAllocReconciler(testlog.Logger(t), allocUpdateFnIgnore, false, job.ID, job, nil, allocs, nil, "") r := reconciler.Compute() // Should place 1 - one is a new placement to make up the desired count of 5 @@ -2345,7 +2340,7 @@ func TestReconciler_CancelDeployment_JobStop(t *testing.T) { allocs = append(allocs, alloc) } - reconciler := NewAllocReconciler(testLogger(), allocUpdateFnIgnore, false, c.jobID, c.job, c.deployment, allocs, nil, "") + reconciler := NewAllocReconciler(testlog.Logger(t), allocUpdateFnIgnore, false, c.jobID, c.job, c.deployment, allocs, nil, "") r := reconciler.Compute() var updates []*structs.DeploymentStatusUpdate @@ -2422,7 +2417,7 @@ func TestReconciler_CancelDeployment_JobUpdate(t *testing.T) { allocs = append(allocs, alloc) } - reconciler := NewAllocReconciler(testLogger(), allocUpdateFnIgnore, false, job.ID, job, c.deployment, allocs, nil, "") + reconciler := NewAllocReconciler(testlog.Logger(t), allocUpdateFnIgnore, false, job.ID, job, c.deployment, allocs, nil, "") r := reconciler.Compute() var updates []*structs.DeploymentStatusUpdate @@ -2471,7 +2466,7 @@ func TestReconciler_CreateDeployment_RollingUpgrade_Destructive(t *testing.T) { allocs = append(allocs, alloc) } - reconciler := NewAllocReconciler(testLogger(), allocUpdateFnDestructive, false, job.ID, job, nil, allocs, nil, "") + reconciler := NewAllocReconciler(testlog.Logger(t), allocUpdateFnDestructive, false, job.ID, job, nil, allocs, nil, "") r := reconciler.Compute() d := structs.NewDeployment(job) @@ -2514,7 +2509,7 @@ func TestReconciler_CreateDeployment_RollingUpgrade_Inplace(t *testing.T) { allocs = append(allocs, alloc) } - reconciler := NewAllocReconciler(testLogger(), allocUpdateFnInplace, false, job.ID, job, nil, allocs, nil, "") + reconciler := NewAllocReconciler(testlog.Logger(t), allocUpdateFnInplace, false, job.ID, job, nil, allocs, nil, "") r := reconciler.Compute() d := structs.NewDeployment(job) @@ -2556,7 +2551,7 @@ func TestReconciler_CreateDeployment_NewerCreateIndex(t *testing.T) { allocs = append(allocs, alloc) } - reconciler := NewAllocReconciler(testLogger(), allocUpdateFnIgnore, false, job.ID, job, nil, allocs, nil, "") + reconciler := NewAllocReconciler(testlog.Logger(t), allocUpdateFnIgnore, false, job.ID, job, nil, allocs, nil, "") r := reconciler.Compute() d := structs.NewDeployment(job) @@ -2600,7 +2595,7 @@ func TestReconciler_DontCreateDeployment_NoChanges(t *testing.T) { allocs = append(allocs, alloc) } - reconciler := NewAllocReconciler(testLogger(), allocUpdateFnIgnore, false, job.ID, job, nil, allocs, nil, "") + reconciler := NewAllocReconciler(testlog.Logger(t), allocUpdateFnIgnore, false, job.ID, job, nil, allocs, nil, "") r := reconciler.Compute() // Assert the correct results @@ -2678,7 +2673,7 @@ func TestReconciler_PausedOrFailedDeployment_NoMoreCanaries(t *testing.T) { d.TaskGroups[canary.TaskGroup].PlacedCanaries = []string{canary.ID} mockUpdateFn := allocUpdateFnMock(map[string]allocUpdateType{canary.ID: allocUpdateFnIgnore}, allocUpdateFnDestructive) - reconciler := NewAllocReconciler(testLogger(), mockUpdateFn, false, job.ID, job, d, allocs, nil, "") + reconciler := NewAllocReconciler(testlog.Logger(t), mockUpdateFn, false, job.ID, job, d, allocs, nil, "") r := reconciler.Compute() // Assert the correct results @@ -2743,7 +2738,7 @@ func TestReconciler_PausedOrFailedDeployment_NoMorePlacements(t *testing.T) { allocs = append(allocs, alloc) } - reconciler := NewAllocReconciler(testLogger(), allocUpdateFnIgnore, false, job.ID, job, d, allocs, nil, "") + reconciler := NewAllocReconciler(testlog.Logger(t), allocUpdateFnIgnore, false, job.ID, job, d, allocs, nil, "") r := reconciler.Compute() // Assert the correct results @@ -2817,7 +2812,7 @@ func TestReconciler_PausedOrFailedDeployment_NoMoreDestructiveUpdates(t *testing allocs = append(allocs, newAlloc) mockUpdateFn := allocUpdateFnMock(map[string]allocUpdateType{newAlloc.ID: allocUpdateFnIgnore}, allocUpdateFnDestructive) - reconciler := NewAllocReconciler(testLogger(), mockUpdateFn, false, job.ID, job, d, allocs, nil, "") + reconciler := NewAllocReconciler(testlog.Logger(t), mockUpdateFn, false, job.ID, job, d, allocs, nil, "") r := reconciler.Compute() // Assert the correct results @@ -2905,7 +2900,7 @@ func TestReconciler_PausedOrFailedDeployment_Migrations(t *testing.T) { tainted[n.ID] = n } - reconciler := NewAllocReconciler(testLogger(), allocUpdateFnIgnore, false, job.ID, job, d, allocs, tainted, "") + reconciler := NewAllocReconciler(testlog.Logger(t), allocUpdateFnIgnore, false, job.ID, job, d, allocs, tainted, "") r := reconciler.Compute() // Assert the correct results @@ -2979,7 +2974,7 @@ func TestReconciler_DrainNode_Canary(t *testing.T) { tainted[n.ID] = n mockUpdateFn := allocUpdateFnMock(handled, allocUpdateFnDestructive) - reconciler := NewAllocReconciler(testLogger(), mockUpdateFn, false, job.ID, job, d, allocs, tainted, "") + reconciler := NewAllocReconciler(testlog.Logger(t), mockUpdateFn, false, job.ID, job, d, allocs, tainted, "") r := reconciler.Compute() // Assert the correct results @@ -3051,7 +3046,7 @@ func TestReconciler_LostNode_Canary(t *testing.T) { tainted[n.ID] = n mockUpdateFn := allocUpdateFnMock(handled, allocUpdateFnDestructive) - reconciler := NewAllocReconciler(testLogger(), mockUpdateFn, false, job.ID, job, d, allocs, tainted, "") + reconciler := NewAllocReconciler(testlog.Logger(t), mockUpdateFn, false, job.ID, job, d, allocs, tainted, "") r := reconciler.Compute() // Assert the correct results @@ -3117,7 +3112,7 @@ func TestReconciler_StopOldCanaries(t *testing.T) { allocs = append(allocs, canary) } - reconciler := NewAllocReconciler(testLogger(), allocUpdateFnDestructive, false, job.ID, job, d, allocs, nil, "") + reconciler := NewAllocReconciler(testlog.Logger(t), allocUpdateFnDestructive, false, job.ID, job, d, allocs, nil, "") r := reconciler.Compute() newD := structs.NewDeployment(job) @@ -3170,7 +3165,7 @@ func TestReconciler_NewCanaries(t *testing.T) { allocs = append(allocs, alloc) } - reconciler := NewAllocReconciler(testLogger(), allocUpdateFnDestructive, false, job.ID, job, nil, allocs, nil, "") + reconciler := NewAllocReconciler(testlog.Logger(t), allocUpdateFnDestructive, false, job.ID, job, nil, allocs, nil, "") r := reconciler.Compute() newD := structs.NewDeployment(job) @@ -3218,7 +3213,7 @@ func TestReconciler_NewCanaries_CountGreater(t *testing.T) { allocs = append(allocs, alloc) } - reconciler := NewAllocReconciler(testLogger(), allocUpdateFnDestructive, false, job.ID, job, nil, allocs, nil, "") + reconciler := NewAllocReconciler(testlog.Logger(t), allocUpdateFnDestructive, false, job.ID, job, nil, allocs, nil, "") r := reconciler.Compute() newD := structs.NewDeployment(job) @@ -3269,7 +3264,7 @@ func TestReconciler_NewCanaries_MultiTG(t *testing.T) { } } - reconciler := NewAllocReconciler(testLogger(), allocUpdateFnDestructive, false, job.ID, job, nil, allocs, nil, "") + reconciler := NewAllocReconciler(testlog.Logger(t), allocUpdateFnDestructive, false, job.ID, job, nil, allocs, nil, "") r := reconciler.Compute() newD := structs.NewDeployment(job) @@ -3322,7 +3317,7 @@ func TestReconciler_NewCanaries_ScaleUp(t *testing.T) { allocs = append(allocs, alloc) } - reconciler := NewAllocReconciler(testLogger(), allocUpdateFnDestructive, false, job.ID, job, nil, allocs, nil, "") + reconciler := NewAllocReconciler(testlog.Logger(t), allocUpdateFnDestructive, false, job.ID, job, nil, allocs, nil, "") r := reconciler.Compute() newD := structs.NewDeployment(job) @@ -3370,7 +3365,7 @@ func TestReconciler_NewCanaries_ScaleDown(t *testing.T) { allocs = append(allocs, alloc) } - reconciler := NewAllocReconciler(testLogger(), allocUpdateFnDestructive, false, job.ID, job, nil, allocs, nil, "") + reconciler := NewAllocReconciler(testlog.Logger(t), allocUpdateFnDestructive, false, job.ID, job, nil, allocs, nil, "") r := reconciler.Compute() newD := structs.NewDeployment(job) @@ -3447,7 +3442,7 @@ func TestReconciler_NewCanaries_FillNames(t *testing.T) { allocs = append(allocs, canary) } - reconciler := NewAllocReconciler(testLogger(), allocUpdateFnDestructive, false, job.ID, job, d, allocs, nil, "") + reconciler := NewAllocReconciler(testlog.Logger(t), allocUpdateFnDestructive, false, job.ID, job, d, allocs, nil, "") r := reconciler.Compute() // Assert the correct results @@ -3516,7 +3511,7 @@ func TestReconciler_PromoteCanaries_Unblock(t *testing.T) { } mockUpdateFn := allocUpdateFnMock(handled, allocUpdateFnDestructive) - reconciler := NewAllocReconciler(testLogger(), mockUpdateFn, false, job.ID, job, d, allocs, nil, "") + reconciler := NewAllocReconciler(testlog.Logger(t), mockUpdateFn, false, job.ID, job, d, allocs, nil, "") r := reconciler.Compute() // Assert the correct results @@ -3590,7 +3585,7 @@ func TestReconciler_PromoteCanaries_CanariesEqualCount(t *testing.T) { } mockUpdateFn := allocUpdateFnMock(handled, allocUpdateFnDestructive) - reconciler := NewAllocReconciler(testLogger(), mockUpdateFn, false, job.ID, job, d, allocs, nil, "") + reconciler := NewAllocReconciler(testlog.Logger(t), mockUpdateFn, false, job.ID, job, d, allocs, nil, "") r := reconciler.Compute() updates := []*structs.DeploymentStatusUpdate{ @@ -3689,7 +3684,7 @@ func TestReconciler_DeploymentLimit_HealthAccounting(t *testing.T) { } mockUpdateFn := allocUpdateFnMock(handled, allocUpdateFnDestructive) - reconciler := NewAllocReconciler(testLogger(), mockUpdateFn, false, job.ID, job, d, allocs, nil, "") + reconciler := NewAllocReconciler(testlog.Logger(t), mockUpdateFn, false, job.ID, job, d, allocs, nil, "") r := reconciler.Compute() // Assert the correct results @@ -3770,7 +3765,7 @@ func TestReconciler_TaintedNode_RollingUpgrade(t *testing.T) { } mockUpdateFn := allocUpdateFnMock(handled, allocUpdateFnDestructive) - reconciler := NewAllocReconciler(testLogger(), mockUpdateFn, false, job.ID, job, d, allocs, tainted, "") + reconciler := NewAllocReconciler(testlog.Logger(t), mockUpdateFn, false, job.ID, job, d, allocs, tainted, "") r := reconciler.Compute() // Assert the correct results @@ -3855,7 +3850,7 @@ func TestReconciler_FailedDeployment_PlacementLost(t *testing.T) { } mockUpdateFn := allocUpdateFnMock(handled, allocUpdateFnDestructive) - reconciler := NewAllocReconciler(testLogger(), mockUpdateFn, false, job.ID, job, d, allocs, tainted, "") + reconciler := NewAllocReconciler(testlog.Logger(t), mockUpdateFn, false, job.ID, job, d, allocs, tainted, "") r := reconciler.Compute() // Assert the correct results @@ -3910,7 +3905,7 @@ func TestReconciler_CompleteDeployment(t *testing.T) { allocs = append(allocs, alloc) } - reconciler := NewAllocReconciler(testLogger(), allocUpdateFnIgnore, false, job.ID, job, d, allocs, nil, "") + reconciler := NewAllocReconciler(testlog.Logger(t), allocUpdateFnIgnore, false, job.ID, job, d, allocs, nil, "") r := reconciler.Compute() // Assert the correct results @@ -3965,7 +3960,7 @@ func TestReconciler_MarkDeploymentComplete_FailedAllocations(t *testing.T) { allocs = append(allocs, alloc) } - reconciler := NewAllocReconciler(testLogger(), allocUpdateFnIgnore, false, job.ID, job, d, allocs, nil, "") + reconciler := NewAllocReconciler(testlog.Logger(t), allocUpdateFnIgnore, false, job.ID, job, d, allocs, nil, "") r := reconciler.Compute() updates := []*structs.DeploymentStatusUpdate{ @@ -4060,7 +4055,7 @@ func TestReconciler_FailedDeployment_CancelCanaries(t *testing.T) { } mockUpdateFn := allocUpdateFnMock(handled, allocUpdateFnDestructive) - reconciler := NewAllocReconciler(testLogger(), mockUpdateFn, false, job.ID, job, d, allocs, nil, "") + reconciler := NewAllocReconciler(testlog.Logger(t), mockUpdateFn, false, job.ID, job, d, allocs, nil, "") r := reconciler.Compute() // Assert the correct results @@ -4129,7 +4124,7 @@ func TestReconciler_FailedDeployment_NewJob(t *testing.T) { jobNew := job.Copy() jobNew.Version += 100 - reconciler := NewAllocReconciler(testLogger(), allocUpdateFnDestructive, false, job.ID, jobNew, d, allocs, nil, "") + reconciler := NewAllocReconciler(testlog.Logger(t), allocUpdateFnDestructive, false, job.ID, jobNew, d, allocs, nil, "") r := reconciler.Compute() dnew := structs.NewDeployment(jobNew) @@ -4182,7 +4177,7 @@ func TestReconciler_MarkDeploymentComplete(t *testing.T) { allocs = append(allocs, alloc) } - reconciler := NewAllocReconciler(testLogger(), allocUpdateFnIgnore, false, job.ID, job, d, allocs, nil, "") + reconciler := NewAllocReconciler(testlog.Logger(t), allocUpdateFnIgnore, false, job.ID, job, d, allocs, nil, "") r := reconciler.Compute() updates := []*structs.DeploymentStatusUpdate{ @@ -4251,7 +4246,7 @@ func TestReconciler_JobChange_ScaleUp_SecondEval(t *testing.T) { } mockUpdateFn := allocUpdateFnMock(handled, allocUpdateFnDestructive) - reconciler := NewAllocReconciler(testLogger(), mockUpdateFn, false, job.ID, job, d, allocs, nil, "") + reconciler := NewAllocReconciler(testlog.Logger(t), mockUpdateFn, false, job.ID, job, d, allocs, nil, "") r := reconciler.Compute() // Assert the correct results @@ -4286,7 +4281,7 @@ func TestReconciler_RollingUpgrade_MissingAllocs(t *testing.T) { allocs = append(allocs, alloc) } - reconciler := NewAllocReconciler(testLogger(), allocUpdateFnDestructive, false, job.ID, job, nil, allocs, nil, "") + reconciler := NewAllocReconciler(testlog.Logger(t), allocUpdateFnDestructive, false, job.ID, job, nil, allocs, nil, "") r := reconciler.Compute() d := structs.NewDeployment(job) @@ -4338,7 +4333,7 @@ func TestReconciler_Batch_Rerun(t *testing.T) { job2 := job.Copy() job2.CreateIndex++ - reconciler := NewAllocReconciler(testLogger(), allocUpdateFnIgnore, true, job2.ID, job2, nil, allocs, nil, "") + reconciler := NewAllocReconciler(testlog.Logger(t), allocUpdateFnIgnore, true, job2.ID, job2, nil, allocs, nil, "") r := reconciler.Compute() // Assert the correct results @@ -4399,7 +4394,7 @@ func TestReconciler_FailedDeployment_DontReschedule(t *testing.T) { StartedAt: now.Add(-1 * time.Hour), FinishedAt: now.Add(-10 * time.Second)}} - reconciler := NewAllocReconciler(testLogger(), allocUpdateFnDestructive, false, job.ID, job, d, allocs, nil, "") + reconciler := NewAllocReconciler(testlog.Logger(t), allocUpdateFnDestructive, false, job.ID, job, d, allocs, nil, "") r := reconciler.Compute() // Assert that no rescheduled placements were created @@ -4454,7 +4449,7 @@ func TestReconciler_DeploymentWithFailedAllocs_DontReschedule(t *testing.T) { allocs[i].DesiredTransition.Reschedule = helper.BoolToPtr(true) } - reconciler := NewAllocReconciler(testLogger(), allocUpdateFnDestructive, false, job.ID, job, d, allocs, nil, "") + reconciler := NewAllocReconciler(testlog.Logger(t), allocUpdateFnDestructive, false, job.ID, job, d, allocs, nil, "") r := reconciler.Compute() // Assert that no rescheduled placements were created @@ -4537,7 +4532,7 @@ func TestReconciler_FailedDeployment_AutoRevert_CancelCanaries(t *testing.T) { allocs = append(allocs, new) } - reconciler := NewAllocReconciler(testLogger(), allocUpdateFnIgnore, false, job.ID, jobv2, d, allocs, nil, "") + reconciler := NewAllocReconciler(testlog.Logger(t), allocUpdateFnIgnore, false, job.ID, jobv2, d, allocs, nil, "") r := reconciler.Compute() updates := []*structs.DeploymentStatusUpdate{ @@ -4599,7 +4594,7 @@ func TestReconciler_SuccessfulDeploymentWithFailedAllocs_Reschedule(t *testing.T allocs = append(allocs, alloc) } - reconciler := NewAllocReconciler(testLogger(), allocUpdateFnDestructive, false, job.ID, job, d, allocs, nil, "") + reconciler := NewAllocReconciler(testlog.Logger(t), allocUpdateFnDestructive, false, job.ID, job, d, allocs, nil, "") r := reconciler.Compute() // Assert that rescheduled placements were created @@ -4661,7 +4656,7 @@ func TestReconciler_ForceReschedule_Service(t *testing.T) { // Mark DesiredTransition ForceReschedule allocs[0].DesiredTransition = structs.DesiredTransition{ForceReschedule: helper.BoolToPtr(true)} - reconciler := NewAllocReconciler(testLogger(), allocUpdateFnIgnore, false, job.ID, job, nil, allocs, nil, "") + reconciler := NewAllocReconciler(testlog.Logger(t), allocUpdateFnIgnore, false, job.ID, job, nil, allocs, nil, "") r := reconciler.Compute() // Verify that no follow up evals were created diff --git a/scheduler/util_test.go b/scheduler/util_test.go index 345691a5f..3ce672ca7 100644 --- a/scheduler/util_test.go +++ b/scheduler/util_test.go @@ -2,12 +2,11 @@ package scheduler import ( "fmt" - "log" - "os" "reflect" "testing" "github.com/hashicorp/nomad/helper" + "github.com/hashicorp/nomad/helper/testlog" "github.com/hashicorp/nomad/helper/uuid" "github.com/hashicorp/nomad/nomad/mock" "github.com/hashicorp/nomad/nomad/state" @@ -623,7 +622,7 @@ func TestEvictAndPlace_LimitEqualToAllocs(t *testing.T) { func TestSetStatus(t *testing.T) { h := NewHarness(t) - logger := log.New(os.Stderr, "", log.LstdFlags) + logger := testlog.Logger(t) eval := mock.Eval() status := "a" desc := "b" @@ -1080,7 +1079,7 @@ func TestDesiredUpdates(t *testing.T) { } func TestUtil_AdjustQueuedAllocations(t *testing.T) { - logger := log.New(os.Stderr, "", log.LstdFlags) + logger := testlog.Logger(t) alloc1 := mock.Alloc() alloc2 := mock.Alloc() alloc2.CreateIndex = 4 diff --git a/scripts/travis-vault.sh b/scripts/travis-vault.sh index 6d491fe43..d19c4a9ed 100755 --- a/scripts/travis-vault.sh +++ b/scripts/travis-vault.sh @@ -2,7 +2,7 @@ set -o errexit -VERSION=0.8.3 +VERSION=0.10.2 OS="linux" if [[ "$TRAVIS_OS_NAME" == "osx" ]]; then OS="darwin" diff --git a/scripts/vagrant-linux-priv-ui.sh b/scripts/vagrant-linux-priv-ui.sh index 3bcabc4fb..b6af330b9 100755 --- a/scripts/vagrant-linux-priv-ui.sh +++ b/scripts/vagrant-linux-priv-ui.sh @@ -1,7 +1,7 @@ #!/usr/bin/env bash # Install NVM for simple node.js version management -wget -qO- https://raw.githubusercontent.com/creationix/nvm/v0.33.2/install.sh | bash +wget -qO- https://raw.githubusercontent.com/creationix/nvm/v0.33.11/install.sh | bash # This enables NVM without a logout/login export NVM_DIR="/home/vagrant/.nvm" @@ -9,10 +9,15 @@ export NVM_DIR="/home/vagrant/.nvm" [ -s "$NVM_DIR/nvm.sh" ] && . "$NVM_DIR/nvm.sh" # This loads nvm # Install Node, Ember CLI, and Phantom for UI development -nvm install 6.11.0 -nvm alias default 6.11.0 -npm install -g ember-cli phantomjs-prebuilt +nvm install 8.11.2 +nvm alias default 8.11.2 +npm install -g ember-cli # Install Yarn for front-end dependency management -curl -o- -L https://yarnpkg.com/install.sh | bash -s -- --version 0.24.6 -export PATH="$HOME/.yarn/bin:\$PATH" +curl -o- -L https://yarnpkg.com/install.sh | bash -s -- --version 1.7.0 + +# Install Chrome for running tests (in headless mode) +wget -qO- - https://dl-ssl.google.com/linux/linux_signing_key.pub | sudo apt-key add - +sudo sh -c 'echo "deb https://dl.google.com/linux/chrome/deb/ stable main" >> /etc/apt/sources.list.d/google.list' +sudo apt-get update +sudo apt-get install -y google-chrome-stable diff --git a/scripts/vagrant-linux-priv-vault.sh b/scripts/vagrant-linux-priv-vault.sh index 77dff1bf0..e0f72fa23 100755 --- a/scripts/vagrant-linux-priv-vault.sh +++ b/scripts/vagrant-linux-priv-vault.sh @@ -2,7 +2,7 @@ set -o errexit -VERSION=0.10.0 +VERSION=0.10.2 DOWNLOAD=https://releases.hashicorp.com/vault/${VERSION}/vault_${VERSION}_linux_amd64.zip function install_vault() { diff --git a/ui/app/components/allocation-row.js b/ui/app/components/allocation-row.js index 5a0e92f39..d2a743302 100644 --- a/ui/app/components/allocation-row.js +++ b/ui/app/components/allocation-row.js @@ -33,29 +33,6 @@ export default Component.extend({ }, didReceiveAttrs() { - // TODO: Use this code again once the temporary workaround below - // is resolved. - - // If the job for this allocation is incomplete, reload it to get - // detailed information. - // const allocation = this.get('allocation'); - // if ( - // allocation && - // allocation.get('job') && - // !allocation.get('job.isPending') && - // !allocation.get('taskGroup') - // ) { - // const job = allocation.get('job.content'); - // job && job.reload(); - // } - - // TEMPORARY: https://github.com/emberjs/data/issues/5209 - // Ember Data doesn't like it when relationships aren't reflective, - // which means the allocation's job will be null if it hasn't been - // resolved through the allocation (allocation.get('job')) before - // being resolved through the store (store.findAll('job')). The - // workaround is to persist the jobID as a string on the allocation - // and manually re-link the two records here. const allocation = this.get('allocation'); if (allocation) { @@ -87,28 +64,17 @@ function qualifyAllocation() { const allocation = this.get('allocation'); return allocation.reload().then(() => { this.get('fetchStats').perform(allocation); - run.scheduleOnce('afterRender', this, qualifyJob); + + // Make sure that the job record in the store for this allocation + // is complete and not a partial from the list endpoint + if ( + allocation && + allocation.get('job') && + !allocation.get('job.isPending') && + !allocation.get('taskGroup') + ) { + const job = allocation.get('job.content'); + job && job.reload(); + } }); } - -function qualifyJob() { - const allocation = this.get('allocation'); - if (allocation.get('originalJobId')) { - const job = this.get('store').peekRecord('job', allocation.get('originalJobId')); - if (job) { - allocation.setProperties({ - job, - originalJobId: null, - }); - if (job.get('isPartial')) { - job.reload(); - } - } else { - this.get('store') - .findRecord('job', allocation.get('originalJobId')) - .then(job => { - allocation.set('job', job); - }); - } - } -} diff --git a/ui/app/models/allocation.js b/ui/app/models/allocation.js index f4dbad07d..d1ffe385e 100644 --- a/ui/app/models/allocation.js +++ b/ui/app/models/allocation.js @@ -29,9 +29,6 @@ export default Model.extend({ modifyTime: attr('date'), jobVersion: attr('number'), - // TEMPORARY: https://github.com/emberjs/data/issues/5209 - originalJobId: attr('string'), - clientStatus: attr('string'), desiredStatus: attr('string'), statusIndex: computed('clientStatus', function() { diff --git a/ui/app/models/evaluation.js b/ui/app/models/evaluation.js index 3cd0f6064..5cd407bbf 100644 --- a/ui/app/models/evaluation.js +++ b/ui/app/models/evaluation.js @@ -17,9 +17,6 @@ export default Model.extend({ hasPlacementFailures: bool('failedTGAllocs.length'), isBlocked: equal('status', 'blocked'), - // TEMPORARY: https://github.com/emberjs/data/issues/5209 - originalJobId: attr('string'), - job: belongsTo('job'), modifyIndex: attr('number'), diff --git a/ui/app/models/task-group-deployment-summary.js b/ui/app/models/task-group-deployment-summary.js index 843679646..21f795f87 100644 --- a/ui/app/models/task-group-deployment-summary.js +++ b/ui/app/models/task-group-deployment-summary.js @@ -22,4 +22,6 @@ export default Fragment.extend({ placedAllocs: attr('number'), healthyAllocs: attr('number'), unhealthyAllocs: attr('number'), + + requireProgressBy: attr('date'), }); diff --git a/ui/app/serializers/allocation.js b/ui/app/serializers/allocation.js index 84825bfdd..7cbd76a18 100644 --- a/ui/app/serializers/allocation.js +++ b/ui/app/serializers/allocation.js @@ -31,9 +31,6 @@ export default ApplicationSerializer.extend({ 'default'; hash.JobID = JSON.stringify([hash.JobID, hash.Namespace]); - // TEMPORARY: https://github.com/emberjs/data/issues/5209 - hash.OriginalJobId = hash.JobID; - hash.ModifyTimeNanos = hash.ModifyTime % 1000000; hash.ModifyTime = Math.floor(hash.ModifyTime / 1000000); diff --git a/ui/app/serializers/evaluation.js b/ui/app/serializers/evaluation.js index e5faad410..4330bdeea 100644 --- a/ui/app/serializers/evaluation.js +++ b/ui/app/serializers/evaluation.js @@ -19,9 +19,6 @@ export default ApplicationSerializer.extend({ 'default'; hash.JobID = JSON.stringify([hash.JobID, hash.Namespace]); - // TEMPORARY: https://github.com/emberjs/data/issues/5209 - hash.OriginalJobId = hash.JobID; - return this._super(typeHash, hash); }, }); diff --git a/ui/app/templates/allocations/allocation/index.hbs b/ui/app/templates/allocations/allocation/index.hbs index 9de41da3a..7abb77bfc 100644 --- a/ui/app/templates/allocations/allocation/index.hbs +++ b/ui/app/templates/allocations/allocation/index.hbs @@ -60,7 +60,7 @@ {{/if}} - {{#link-to "allocations.allocation.task" row.model.allocation row.model}} + {{#link-to "allocations.allocation.task" row.model.allocation row.model class="is-primary"}} {{row.model.name}} {{/link-to}} diff --git a/ui/app/templates/components/job-deployment/task-groups.hbs b/ui/app/templates/components/job-deployment/task-groups.hbs index cee10994c..a25bffd3d 100644 --- a/ui/app/templates/components/job-deployment/task-groups.hbs +++ b/ui/app/templates/components/job-deployment/task-groups.hbs @@ -15,6 +15,9 @@ Allocs Healthy Allocs Unhealthy Allocs + {{#if inProgress}} + Progress Deadline + {{/if}} {{/t.head}} {{#t.body as |row|}} @@ -31,6 +34,11 @@ {{row.model.placedAllocs}} / {{row.model.desiredTotal}} {{row.model.healthyAllocs}} {{row.model.unhealthyAllocs}} + {{#if inProgress}} + + {{moment-format row.model.requireProgressBy "MM/DD/YY HH:mm:ss"}} + + {{/if}} {{/t.body}} {{/list-table}} diff --git a/ui/app/templates/components/job-page/parts/running-deployment.hbs b/ui/app/templates/components/job-page/parts/running-deployment.hbs index c42bb866d..c04d33c92 100644 --- a/ui/app/templates/components/job-page/parts/running-deployment.hbs +++ b/ui/app/templates/components/job-page/parts/running-deployment.hbs @@ -19,7 +19,7 @@ {{#job-deployment-details deployment=job.runningDeployment as |d|}} {{d.metrics}} {{#if isShowingDeploymentDetails}} - {{d.taskGroups}} + {{d.taskGroups inProgress=true}} {{d.allocations}} {{/if}} {{/job-deployment-details}} diff --git a/ui/mirage/factories/deployment-task-group-summary.js b/ui/mirage/factories/deployment-task-group-summary.js index 5858c66fc..addc4c8aa 100644 --- a/ui/mirage/factories/deployment-task-group-summary.js +++ b/ui/mirage/factories/deployment-task-group-summary.js @@ -1,11 +1,15 @@ import { Factory, faker } from 'ember-cli-mirage'; +const REF_TIME = new Date(); + export default Factory.extend({ name: '', autoRevert: () => Math.random() > 0.5, promoted: () => Math.random() > 0.5, + requireProgressBy: () => faker.date.past(0.5 / 365, REF_TIME), + desiredTotal: faker.random.number({ min: 1, max: 10 }), desiredCanaries() { diff --git a/ui/mirage/factories/task.js b/ui/mirage/factories/task.js index 49733e938..c11ebeb1c 100644 --- a/ui/mirage/factories/task.js +++ b/ui/mirage/factories/task.js @@ -9,7 +9,7 @@ export default Factory.extend({ JobID: '', - name: id => `task-${faker.hacker.noun()}-${id}`, + name: id => `task-${faker.hacker.noun().dasherize()}-${id}`, driver: faker.list.random(...DRIVERS), Resources: generateResources, diff --git a/ui/tests/acceptance/allocation-detail-test.js b/ui/tests/acceptance/allocation-detail-test.js index 0720fffa9..11c2f61d6 100644 --- a/ui/tests/acceptance/allocation-detail-test.js +++ b/ui/tests/acceptance/allocation-detail-test.js @@ -14,7 +14,7 @@ moduleForAcceptance('Acceptance | allocation detail', { server.create('agent'); node = server.create('node'); - job = server.create('job', { groupCount: 0, createAllocations: false }); + job = server.create('job', { groupsCount: 1, createAllocations: false }); allocation = server.create('allocation', 'withTaskWithPorts'); // Make sure the node has an unhealthy driver diff --git a/ui/tests/integration/job-page/parts/running-deployment-test.js b/ui/tests/integration/job-page/parts/running-deployment-test.js index e6cb09bbd..426de1210 100644 --- a/ui/tests/integration/job-page/parts/running-deployment-test.js +++ b/ui/tests/integration/job-page/parts/running-deployment-test.js @@ -139,3 +139,34 @@ test('the active deployment section can be expanded to show task groups and allo }); }); }); + +test('each task group in the expanded task group section shows task group details', function(assert) { + this.server.create('node'); + this.server.create('job', { type: 'service', activeDeployment: true }); + + this.store.findAll('job'); + + return wait().then(() => { + const job = this.store.peekAll('job').get('firstObject'); + + this.set('job', job); + this.render(hbs` + {{job-page/parts/running-deployment job=job}} + `); + + return wait() + .then(() => { + click('[data-test-deployment-toggle-details]'); + return wait(); + }) + .then(() => { + const task = job.get('runningDeployment.taskGroupSummaries.firstObject'); + const findForTaskGroup = selector => find(`[data-test-deployment-task-group-${selector}]`); + assert.equal(findForTaskGroup('name').textContent.trim(), task.get('name')); + assert.equal( + findForTaskGroup('progress-deadline').textContent.trim(), + moment(task.get('requireProgressBy')).format('MM/DD/YY HH:mm:ss') + ); + }); + }); +}); diff --git a/version/version.go b/version/version.go index 85b7f4ebb..f155c3bd3 100644 --- a/version/version.go +++ b/version/version.go @@ -11,12 +11,12 @@ var ( GitDescribe string // The main version number that is being run at the moment. - Version = "0.8.4" + Version = "0.9.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 // such as "dev" (in development), "beta", "rc1", etc. - VersionPrerelease = "rc1" + VersionPrerelease = "dev" // VersionMetadata is metadata further describing the build type. VersionMetadata = "" diff --git a/website/config.rb b/website/config.rb index e18602fc7..eb743a3ac 100644 --- a/website/config.rb +++ b/website/config.rb @@ -2,7 +2,7 @@ set :base_url, "https://www.nomadproject.io/" activate :hashicorp do |h| h.name = "nomad" - h.version = "0.8.3" + h.version = "0.8.4" h.github_slug = "hashicorp/nomad" end diff --git a/website/source/api/search.html.md b/website/source/api/search.html.md index 7e6632aec..4333ead3b 100644 --- a/website/source/api/search.html.md +++ b/website/source/api/search.html.md @@ -15,7 +15,7 @@ Additionally, a prefix can be searched for within every context. | Method | Path | Produces | | ------- | ---------------------------- | -------------------------- | -| `POST` | `/v1/search | `application/json` | +| `POST` | `/v1/search` | `application/json` | The table below shows this endpoint's support for [blocking queries](/api/index.html#blocking-queries) and diff --git a/website/source/docs/agent/configuration/autopilot.html.md b/website/source/docs/agent/configuration/autopilot.html.md index 276f74a22..6cf637c9e 100644 --- a/website/source/docs/agent/configuration/autopilot.html.md +++ b/website/source/docs/agent/configuration/autopilot.html.md @@ -18,7 +18,7 @@ description: |- The `autopilot` stanza configures the Nomad agent to configure Autopilot behavior. -For more information about Autopilot, see the [Autopilot Guide](/guides/cluster/autopilot.html). +For more information about Autopilot, see the [Autopilot Guide](/guides/autopilot.html). ```hcl autopilot { diff --git a/website/source/docs/agent/configuration/server.html.md b/website/source/docs/agent/configuration/server.html.md index 6da8ab88e..1b3466be5 100644 --- a/website/source/docs/agent/configuration/server.html.md +++ b/website/source/docs/agent/configuration/server.html.md @@ -127,7 +127,7 @@ server { - `redundancy_zone` `(string: "")` - (Enterprise-only) Specifies the redundancy zone that this server will be a part of for Autopilot management. For more - information, see the [Autopilot Guide](/guides/cluster/autopilot.html). + information, see the [Autopilot Guide](/guides/autopilot.html). - `rejoin_after_leave` `(bool: false)` - Specifies if Nomad will ignore a previous leave and attempt to rejoin the cluster when starting. By default, @@ -142,7 +142,7 @@ server { - `upgrade_version` `(string: "")` - A custom version of the format X.Y.Z to use in place of the Nomad version when custom upgrades are enabled in Autopilot. - For more information, see the [Autopilot Guide](/guides/cluster/autopilot.html). + For more information, see the [Autopilot Guide](/guides/autopilot.html). ### Deprecated Parameters diff --git a/website/source/docs/agent/configuration/tls.html.md b/website/source/docs/agent/configuration/tls.html.md index a5f049bea..b79a1ac7e 100644 --- a/website/source/docs/agent/configuration/tls.html.md +++ b/website/source/docs/agent/configuration/tls.html.md @@ -61,9 +61,16 @@ the [Agent's Gossip and RPC Encryption](/docs/agent/encryption.html). - `tls_cipher_suites` `(array: [])` - Specifies the TLS cipher suites that will be used by the agent. Known insecure ciphers are disabled (3DES and RC4). By default, an agent is configured to use + TLS_ECDHE_ECDSA_WITH_AES_256_GCM_SHA384, + TLS_ECDHE_RSA_WITH_AES_256_GCM_SHA384, TLS_ECDHE_ECDSA_WITH_CHACHA20_POLY1305, - TLS_ECDHE_ECDSA_WITH_AES_128_GCM_SHA256, and - TLS_ECDHE_ECDSA_WITH_AES_256_GCM_SHA384. + TLS_ECDHE_RSA_WITH_CHACHA20_POLY1305, + TLS_ECDHE_ECDSA_WITH_AES_128_GCM_SHA256, + TLS_ECDHE_RSA_WITH_AES_128_GCM_SHA256, + TLS_ECDHE_ECDSA_WITH_AES_256_GCM_SHA384, + TLS_ECDHE_RSA_WITH_AES_256_GCM_SHA384, + TLS_ECDHE_ECDSA_WITH_AES_128_GCM_SHA256 and + TLS_ECDHE_RSA_WITH_AES_128_GCM_SHA256. - `tls_min_version` `(string: "tls12")`- Specifies the minimum supported version of TLS. Accepted values are "tls10", "tls11", "tls12". diff --git a/website/source/docs/commands/operator/autopilot-get-config.html.md.erb b/website/source/docs/commands/operator/autopilot-get-config.html.md.erb index 3e8d06186..37a4435f2 100644 --- a/website/source/docs/commands/operator/autopilot-get-config.html.md.erb +++ b/website/source/docs/commands/operator/autopilot-get-config.html.md.erb @@ -9,7 +9,7 @@ description: > # Command: operator autopilot get-config The Autopilot operator command is used to view the current Autopilot configuration. See the -[Autopilot Guide](/guides/cluster/autopilot.html) for more information about Autopilot. +[Autopilot Guide](/guides/autopilot.html) for more information about Autopilot. ## Usage diff --git a/website/source/docs/commands/operator/autopilot-set-config.html.md.erb b/website/source/docs/commands/operator/autopilot-set-config.html.md.erb index 77a4a9cd7..4980e9688 100644 --- a/website/source/docs/commands/operator/autopilot-set-config.html.md.erb +++ b/website/source/docs/commands/operator/autopilot-set-config.html.md.erb @@ -9,7 +9,7 @@ description: > # Command: operator autopilot set-config The Autopilot operator command is used to set the current Autopilot configuration. See the -[Autopilot Guide](/guides/cluster/autopilot.html) for more information about Autopilot. +[Autopilot Guide](/guides/autopilot.html) for more information about Autopilot. ## Usage diff --git a/website/source/docs/enterprise/autopilot/index.html.md b/website/source/docs/enterprise/autopilot/index.html.md index 77dc8c866..f8806662e 100644 --- a/website/source/docs/enterprise/autopilot/index.html.md +++ b/website/source/docs/enterprise/autopilot/index.html.md @@ -38,5 +38,5 @@ completely lost, only one voter will be lost, so the cluster remains available. If a voter is lost in an availability zone, Autopilot will promote the non-voter to voter automatically, putting the hot standby server into service quickly. -See the [Nomad Autopilot Guide](https://www.nomadproject.io/guides/cluster/autopilot.html) +See the [Nomad Autopilot Guide](/guides/autopilot.html) for a comprehensive overview of Nomad's open source and enterprise Autopilot features. diff --git a/website/source/docs/job-specification/restart.html.md b/website/source/docs/job-specification/restart.html.md index 967fd033b..e3c109727 100644 --- a/website/source/docs/job-specification/restart.html.md +++ b/website/source/docs/job-specification/restart.html.md @@ -47,7 +47,7 @@ job "docs" { controlled by `mode`. This is specified using a label suffix like "30s" or "1h". Defaults vary by job type, see below for more information. -- `mode` `(string: "delay")` - Controls the behavior when the task fails more +- `mode` `(string: "fail")` - Controls the behavior when the task fails more than `attempts` times in an interval. For a detailed explanation of these values and their behavior, please see the [mode values section](#mode-values). @@ -95,4 +95,5 @@ restart { - `"fail"` - Instructs the scheduler to not attempt to restart the task on failure. This mode is useful for non-idempotent jobs which are unlikely to - succeed after a few failures. + succeed after a few failures. Failed jobs will be restarted according to + the [`reschedule`](/docs/job-specification/reschedule.html) stanza. diff --git a/website/source/docs/upgrade/upgrade-specific.html.md b/website/source/docs/upgrade/upgrade-specific.html.md index 03bdec996..41897bce7 100644 --- a/website/source/docs/upgrade/upgrade-specific.html.md +++ b/website/source/docs/upgrade/upgrade-specific.html.md @@ -50,7 +50,7 @@ Raft Protocol versions supported by each Nomad version: -In order to enable all [Autopilot](/guides/cluster/autopilot.html) features, all servers +In order to enable all [Autopilot](/guides/autopilot.html) features, all servers in a Nomad cluster must be running with Raft protocol version 3 or later. #### Upgrading to Raft Protocol 3 @@ -61,7 +61,7 @@ Please note that the Raft protocol is different from Nomad's internal protocol a The easiest way to upgrade servers is to have each server leave the cluster, upgrade its `raft_protocol` version in the `server` stanza, and then add it back. Make sure the new server joins successfully and that the cluster is stable before rolling the upgrade forward to the next server. It's also possible to stand up a new set of servers, and then slowly stand down each of the older servers in a similar fashion. -When using Raft protocol version 3, servers are identified by their `node-id` instead of their IP address when Nomad makes changes to its internal Raft quorum configuration. This means that once a cluster has been upgraded with servers all running Raft protocol version 3, it will no longer allow servers running any older Raft protocol versions to be added. If running a single Nomad server, restarting it in-place will result in that server not being able to elect itself as a leader. To avoid this, either set the Raft protocol back to 2, or use [Manual Recovery Using peers.json](/docs/guides/outage.html#manual-recovery-using-peers-json) to map the server to its node ID in the Raft quorum configuration. +When using Raft protocol version 3, servers are identified by their `node-id` instead of their IP address when Nomad makes changes to its internal Raft quorum configuration. This means that once a cluster has been upgraded with servers all running Raft protocol version 3, it will no longer allow servers running any older Raft protocol versions to be added. If running a single Nomad server, restarting it in-place will result in that server not being able to elect itself as a leader. To avoid this, either set the Raft protocol back to 2, or use [Manual Recovery Using peers.json](/guides/outage.html#manual-recovery-using-peers-json) to map the server to its node ID in the Raft quorum configuration. ### Node Draining Improvements diff --git a/website/source/guides/cluster/autopilot.html.md b/website/source/guides/autopilot.html.md similarity index 99% rename from website/source/guides/cluster/autopilot.html.md rename to website/source/guides/autopilot.html.md index fac13b5ed..fc5f5b434 100644 --- a/website/source/guides/cluster/autopilot.html.md +++ b/website/source/guides/autopilot.html.md @@ -1,7 +1,7 @@ --- layout: "guides" page_title: "Autopilot" -sidebar_current: "guides-cluster-autopilot" +sidebar_current: "guides-autopilot" description: |- This guide covers how to configure and use Autopilot features. --- diff --git a/website/source/guides/outage.html.markdown b/website/source/guides/outage.html.markdown index e698d0dc5..22b9267e2 100644 --- a/website/source/guides/outage.html.markdown +++ b/website/source/guides/outage.html.markdown @@ -220,5 +220,5 @@ Nomad server in the cluster, like this: server's RPC port used for cluster communications. - `non_voter` `(bool: )` - This controls whether the server is a non-voter, which is used - in some advanced [Autopilot](/guides/cluster/autopilot.html) configurations. If omitted, it will + in some advanced [Autopilot](/guides/autopilot.html) configurations. If omitted, it will default to false, which is typical for most clusters. diff --git a/website/source/layouts/guides.erb b/website/source/layouts/guides.erb index d747e0007..0707e652c 100644 --- a/website/source/layouts/guides.erb +++ b/website/source/layouts/guides.erb @@ -5,6 +5,9 @@ > ACLs + > + Autopilot + > Apache Spark Integration @@ -42,9 +45,6 @@ > Automatic - > - Autopilot - > Manual