From 1abfe4e05f2c936ab43c8188003a33213b245a56 Mon Sep 17 00:00:00 2001 From: Unknwon Date: Wed, 2 Sep 2015 05:09:12 -0400 Subject: [PATCH] PR: nothing to commit and has pull request check --- conf/locale/locale_en-US.ini | 2 + models/error.go | 19 +++-- models/issue.go | 102 ++++++++++++++++--------- models/models.go | 2 +- modules/bindata/bindata.go | 4 +- modules/middleware/repo.go | 1 + routers/repo/pull.go | 71 +++++++++++------ templates/repo/issue/view_content.tmpl | 6 +- templates/repo/pulls/compare.tmpl | 12 ++- 9 files changed, 144 insertions(+), 75 deletions(-) diff --git a/conf/locale/locale_en-US.ini b/conf/locale/locale_en-US.ini index 3a02825e4..cd9824edc 100644 --- a/conf/locale/locale_en-US.ini +++ b/conf/locale/locale_en-US.ini @@ -466,6 +466,8 @@ pulls.compare_base = base pulls.compare_compare = compare pulls.filter_branch = Filter branch pulls.no_results = No results found. +pulls.nothing_to_compare = There is nothing to compare because base and head branches are even. +pulls.has_pull_request = `There is already a pull request between these two targets: %[2]s#%[3]d` pulls.create = Create Pull Request pulls.title_desc = wants to merge %[1]d commits from %[2]s into %[3]s pulls.tab_conversation = Conversation diff --git a/models/error.go b/models/error.go index 92cc187b4..1986c5902 100644 --- a/models/error.go +++ b/models/error.go @@ -308,18 +308,23 @@ func (err ErrIssueNotExist) Error() string { // |____| |____/|____/____/____|_ /\___ >__ |____/ \___ >____ > |__| // \/ \/ |__| \/ \/ -type ErrPullRepoNotExist struct { - ID int64 - PullID int64 +type ErrPullRequestNotExist struct { + ID int64 + PullID int64 + HeadRepoID int64 + BaseRepoID int64 + HeadBarcnh string + BaseBranch string } -func IsErrPullRepoNotExist(err error) bool { - _, ok := err.(ErrPullRepoNotExist) +func IsErrPullRequestNotExist(err error) bool { + _, ok := err.(ErrPullRequestNotExist) return ok } -func (err ErrPullRepoNotExist) Error() string { - return fmt.Sprintf("pull repo does not exist [id: %d, pull_id: %d]", err.ID, err.PullID) +func (err ErrPullRequestNotExist) Error() string { + return fmt.Sprintf("pull request does not exist [id: %d, pull_id: %d, head_repo_id: %d, base_repo_id: %d, head_branch: %s, base_branch: %s]", + err.ID, err.PullID, err.HeadRepoID, err.BaseRepoID, err.HeadBarcnh, err.BaseBranch) } // _________ __ diff --git a/models/issue.go b/models/issue.go index f48d3206a..9f0cb3c9e 100644 --- a/models/issue.go +++ b/models/issue.go @@ -46,10 +46,10 @@ type Issue struct { MilestoneID int64 Milestone *Milestone `xorm:"-"` AssigneeID int64 - Assignee *User `xorm:"-"` - IsRead bool `xorm:"-"` - IsPull bool // Indicates whether is a pull request or not. - PullRepo *PullRepo `xorm:"-"` + Assignee *User `xorm:"-"` + IsRead bool `xorm:"-"` + IsPull bool // Indicates whether is a pull request or not. + *PullRequest `xorm:"-"` IsClosed bool Content string `xorm:"TEXT"` RenderedContent string `xorm:"-"` @@ -96,9 +96,13 @@ func (i *Issue) AfterSet(colName string, _ xorm.Cell) { log.Error(3, "GetUserByID[%d]: %v", i.ID, err) } case "is_pull": - i.PullRepo, err = GetPullRepoByPullID(i.ID) + if !i.IsPull { + return + } + + i.PullRequest, err = GetPullRequestByPullID(i.ID) if err != nil { - log.Error(3, "GetPullRepoByPullID[%d]: %v", i.ID, err) + log.Error(3, "GetPullRequestByPullID[%d]: %v", i.ID, err) } case "created": i.Created = regulateTimeZone(i.Created) @@ -844,23 +848,25 @@ const ( PLLL_ERQUEST_GIT ) -// PullRepo represents relation between pull request and repositories. -type PullRepo struct { - ID int64 `xorm:"pk autoincr"` - PullID int64 `xorm:"INDEX"` - HeadRepoID int64 `xorm:"UNIQUE(s)"` - HeadRepo *Repository `xorm:"-"` - BaseRepoID int64 `xorm:"UNIQUE(s)"` - HeadUserName string - HeadBarcnh string `xorm:"UNIQUE(s)"` - BaseBranch string `xorm:"UNIQUE(s)"` - MergeBase string `xorm:"VARCHAR(40)"` - Type PullRequestType - CanAutoMerge bool - HasMerged bool -} - -func (pr *PullRepo) AfterSet(colName string, _ xorm.Cell) { +// PullRequest represents relation between pull request and repositories. +type PullRequest struct { + ID int64 `xorm:"pk autoincr"` + PullID int64 `xorm:"INDEX"` + PullIndex int64 + HeadRepoID int64 `xorm:"UNIQUE(s)"` + HeadRepo *Repository `xorm:"-"` + BaseRepoID int64 `xorm:"UNIQUE(s)"` + HeadUserName string + HeadBarcnh string `xorm:"UNIQUE(s)"` + BaseBranch string `xorm:"UNIQUE(s)"` + MergeBase string `xorm:"VARCHAR(40)"` + MergedCommitID string `xorm:"VARCHAR(40)"` + Type PullRequestType + CanAutoMerge bool + HasMerged bool +} + +func (pr *PullRequest) AfterSet(colName string, _ xorm.Cell) { var err error switch colName { case "head_repo_id": @@ -872,24 +878,24 @@ func (pr *PullRepo) AfterSet(colName string, _ xorm.Cell) { } // NewPullRequest creates new pull request with labels for repository. -func NewPullRequest(repo *Repository, pr *Issue, labelIDs []int64, uuids []string, pullRepo *PullRepo, patch []byte) (err error) { +func NewPullRequest(repo *Repository, pull *Issue, labelIDs []int64, uuids []string, pr *PullRequest, patch []byte) (err error) { sess := x.NewSession() defer sessionRelease(sess) if err = sess.Begin(); err != nil { return err } - if err = newIssue(sess, repo, pr, labelIDs, uuids); err != nil { + if err = newIssue(sess, repo, pull, labelIDs, uuids); err != nil { return fmt.Errorf("newIssue: %v", err) } // Notify watchers. act := &Action{ - ActUserID: pr.Poster.Id, - ActUserName: pr.Poster.Name, - ActEmail: pr.Poster.Email, + ActUserID: pull.Poster.Id, + ActUserName: pull.Poster.Name, + ActEmail: pull.Poster.Email, OpType: PULL_REQUEST, - Content: fmt.Sprintf("%d|%s", pr.Index, pr.Name), + Content: fmt.Sprintf("%d|%s", pull.Index, pull.Name), RepoID: repo.ID, RepoUserName: repo.Owner.Name, RepoName: repo.Name, @@ -920,26 +926,46 @@ func NewPullRequest(repo *Repository, pr *Issue, labelIDs []int64, uuids []strin return fmt.Errorf("git apply --check: %v - %s", err, stderr) } } - pullRepo.CanAutoMerge = !strings.Contains(stdout, "error: patch failed:") + pr.CanAutoMerge = !strings.Contains(stdout, "error: patch failed:") - pullRepo.PullID = pr.ID - if _, err = sess.Insert(pullRepo); err != nil { + pr.PullID = pull.ID + pr.PullIndex = pull.Index + if _, err = sess.Insert(pr); err != nil { return fmt.Errorf("insert pull repo: %v", err) } return sess.Commit() } -// GetPullRepoByPullID returns pull repo by given pull ID. -func GetPullRepoByPullID(pullID int64) (*PullRepo, error) { - pullRepo := new(PullRepo) - has, err := x.Where("pull_id=?", pullID).Get(pullRepo) +// GetPullRequest returnss a pull request by given info. +func GetPullRequest(headRepoID, baseRepoID int64, headBranch, baseBranch string) (*PullRequest, error) { + pr := &PullRequest{ + HeadRepoID: headRepoID, + BaseRepoID: baseRepoID, + HeadBarcnh: headBranch, + BaseBranch: baseBranch, + } + + has, err := x.Get(pr) + if err != nil { + return nil, err + } else if !has { + return nil, ErrPullRequestNotExist{0, 0, headRepoID, baseRepoID, headBranch, baseBranch} + } + + return pr, nil +} + +// GetPullRequestByPullID returns pull repo by given pull ID. +func GetPullRequestByPullID(pullID int64) (*PullRequest, error) { + pr := new(PullRequest) + has, err := x.Where("pull_id=?", pullID).Get(pr) if err != nil { return nil, err } else if !has { - return nil, ErrPullRepoNotExist{0, pullID} + return nil, ErrPullRequestNotExist{0, pullID, 0, 0, "", ""} } - return pullRepo, nil + return pr, nil } // .____ ___. .__ diff --git a/models/models.go b/models/models.go index 791018f8e..9412c18de 100644 --- a/models/models.go +++ b/models/models.go @@ -79,7 +79,7 @@ func init() { new(User), new(PublicKey), new(Oauth2), new(AccessToken), new(Repository), new(DeployKey), new(Collaboration), new(Access), new(Watch), new(Star), new(Follow), new(Action), - new(Issue), new(PullRepo), new(Comment), new(Attachment), new(IssueUser), + new(Issue), new(PullRequest), new(Comment), new(Attachment), new(IssueUser), new(Label), new(IssueLabel), new(Milestone), new(Mirror), new(Release), new(LoginSource), new(Webhook), new(UpdateTask), new(HookTask), diff --git a/modules/bindata/bindata.go b/modules/bindata/bindata.go index fdddb3caf..fb41a4a42 100644 --- a/modules/bindata/bindata.go +++ b/modules/bindata/bindata.go @@ -4364,7 +4364,7 @@ func confLocaleLocale_deDeIni() (*asset, error) { return a, nil } -var _confLocaleLocale_enUsIni = []byte("\x1f\x8b\x08\x00\x00\x09\x6e\x88\x00\xff\xc4\x7d\xfd\x72\xdc\x48\x8e\xe7\xff\x7c\x0a\xb6\x37\x7c\xee\x8e\x90\xcb\xd1\xdd\x71\x1f\xd1\x61\xbb\x4f\x96\xda\x1f\xbb\x96\xa5\xb1\xe4\x99\x9b\x73\x38\xd8\xac\x22\xab\x8a\xe3\x2a\xb2\x9a\x64\xb9\xac\xd9\xd8\x88\x7b\x8d\x7b\xbd\x7b\x92\x03\x7e\x00\xf2\x83\x64\xc9\xf6\xec\xc6\xdd\x3f\x12\x2b\x13\xf9\x85\x44\x22\x01\x24\x12\x99\xef\x76\x59\x51\x76\x8b\xf4\x49\x7a\x9a\xee\xf2\xaa\xde\x94\x5d\x97\x76\xe5\x66\xf9\x70\xdd\x74\x7d\x59\xa4\x2f\xaa\x9e\x7e\xb7\x9f\xaa\x45\x99\x24\xeb\x66\x5b\x12\xe8\x4b\xfa\x97\x14\x79\xb7\x9e\x37\x79\x5b\x50\xc2\xb9\x7d\x27\xe5\xe7\xdd\xa6\x69\x19\xe8\x37\xf9\x4a\xd6\xe5\x66\xc7\x65\xe8\x5f\xd2\x55\xab\x3a\xab\x6a\xfa\x79\x4d\x5f\xe9\xab\x3a\xe9\x9a\x45\x95\x6f\xb2\x20\x03\x09\x96\xff\x4b\xfa\x53\x5d\xa4\xd7\x7d\xb9\x4b\x1f\x77\xdb\x7c\xb3\x79\x9a\x77\x28\xd2\x97\x69\xbe\x58\x34\xfb\xba\x7f\xfc\x48\x32\xa4\xf2\x66\xdf\x5b\xed\x97\xfb\x5e\xd2\xf6\x3b\x4b\x7a\xb7\x4b\xda\x72\x55\xd1\xc0\x5a\x4a\x7a\xab\x9f\xc9\xa1\x9c\x77\x55\xcf\x9d\xfe\x8b\x7c\x25\x9f\xca\xb6\xab\x1a\xee\xcf\x9f\xe5\x2b\xd9\xe5\x2b\x06\xb8\xa2\x7f\x49\x5f\x6e\x77\x9b\x1c\x05\x6e\xf4\x33\xd9\xe4\xf5\x6a\x2f\x30\xaf\xf5\x33\x59\xb4\x25\x65\x65\x75\x79\xa0\xd4\x33\xfc\x48\xe9\xc7\x6c\x36\x4b\xf6\x84\xd3\x6c\xd7\x36\xcb\x6a\x53\x66\x79\x5d\x64\x5b\xc1\xda\x3b\x4a\x4f\x35\x3d\xa5\xf4\x94\xd3\x31\x8c\xb2\x20\x04\x65\x79\xa7\x63\xa1\xa9\x21\x7c\xe5\x5d\x82\xaa\xea\x7c\x6b\xa5\xf9\x33\x29\xb7\x79\xb5\xe1\x49\x78\xc8\x1f\xd4\xf9\xae\x3b\x34\x98\xaa\x2b\xfd\x24\x44\x64\xfd\xed\xae\x04\x1e\x1e\xde\xd0\x57\xb2\xc8\x77\xfd\x62\x9d\x73\x5f\xe5\x2b\x21\xa0\x5d\x43\x08\x69\xda\x5b\xc0\xd9\x8f\xa4\x69\x57\x79\x5d\xfd\x3d\xef\x05\x49\x97\xc1\xcf\x64\x5b\xb5\x6d\xc3\xf8\xbd\xc0\x47\x42\x23\xce\xb8\x1e\x4a\x79\x43\x98\x08\x6a\xe1\x9c\x6d\xb5\x6a\x05\x95\x9c\x79\x81\x5f\x5c\x0b\xe7\x2d\x9b\xf6\xa3\x66\x3c\xe7\xcf\x41\x51\xea\x84\xe6\xc6\xed\xe7\x35\x21\x5f\x73\x2f\xf0\x23\x02\xe8\x92\xbc\xd8\x12\x2a\x77\x79\x5d\x32\x8e\x4e\xf9\x17\xe1\x85\x7e\x25\x4a\x53\x59\x57\xf6\x7d\x55\xaf\x18\xd9\xa7\x92\x94\x5e\x6b\x52\x12\xe4\xb9\xb4\xdb\x66\xef\xa6\x93\xd2\xff\x4a\x3f\xd3\x2b\xf9\x29\x79\x41\x21\x64\xba\x92\x3c\x92\x2e\x5b\x96\x65\x21\x63\xe9\xd2\xe7\xf4\x9d\xec\xf6\x9b\x0d\x61\xed\x8f\x7d\xd9\xf5\x5c\xe8\x8a\x7e\xd3\xf8\xe5\x77\x52\x75\x1d\x7d\x50\xf2\x2b\x7c\x24\x34\x75\xf5\x02\x83\x39\xc3\x47\x92\xbc\xef\xca\xbc\x5d\xac\x3f\x24\xf2\x1f\x7d\xe5\x0f\xa6\xbd\x63\x93\xca\x84\xa4\x44\x24\x2d\x58\x03\xc9\xa2\x29\xf8\xc7\x19\xfd\xa3\xaa\xab\xba\xeb\x69\xc5\x7d\x48\xf4\x83\xc1\xe4\x4b\x26\xa0\xaf\x7a\x60\x41\x13\xb1\x7c\x3b\x9e\xc1\xf4\x79\xd5\x76\xfd\xc3\xbe\x22\x62\x7d\xbb\xaf\x13\x1e\x1f\xad\xb6\xac\x98\x1b\x13\x7a\xd1\x10\x8a\x90\xdc\xd2\xf8\x2e\x6e\xaf\xff\xf4\xfa\x24\xbd\x22\x4e\xb4\x6a\x4b\xfa\x4e\xa9\x0e\xfa\x47\x65\x7e\x9e\x25\x54\xca\x5a\x3a\xcf\xfb\x7c\x9e\x77\xa5\x47\x2b\x67\x0a\x75\xbb\x3c\xd0\x38\x73\x35\x70\xb0\xae\x8f\xc6\x3b\xb5\x42\xa8\x0e\x5d\x57\xae\x8e\x37\xbc\xb8\x28\x9d\x99\x1a\x0a\x5f\x6d\x4a\x4e\xa7\xaa\xd2\x57\x6f\xde\x5c\x9e\x3f\x4b\xcb\x7a\x55\xd5\x65\x7a\xa8\xfa\x75\xba\xef\x97\xff\x2d\x5b\x95\x75\xd9\x12\x8f\x5b\x54\x29\xad\xa9\x96\x28\x21\x25\xc2\x96\xc1\xcd\x92\xae\xdb\xd0\xda\x07\x7a\xaf\xaf\x5f\xa7\x17\x8c\xe2\x5d\xde\xaf\xd1\x91\x7e\x9d\x74\x7f\x6c\x18\x45\xae\xc1\x9b\x75\x99\x82\xca\x00\xd4\x2c\x0d\x1f\x69\xa1\x7d\x9c\x25\x65\xdb\x66\xc4\x96\xfa\xdb\x4c\x0b\x6b\x7d\x43\x48\xa9\x82\x48\xa7\x6e\xfa\x74\x5e\xa6\x28\x33\x4b\x12\xeb\xb0\x61\xf7\x74\xb7\xdb\x54\x0b\x59\xeb\x2f\x24\xcf\x23\x9a\x77\x10\xc5\x52\x08\x07\x44\x59\x5e\x80\x2e\x62\xcf\xbc\x1e\xd2\x88\x81\xa0\xfc\xba\x24\x06\xb8\xde\xaf\x84\xed\x6d\x9a\x7d\xf1\x1d\x28\xd5\x7a\xef\x09\x35\x7d\xdb\x50\x87\x81\x1d\x07\xe0\x9b\x38\x25\x8a\xe3\x4d\xab\x2d\xb7\x0d\xf1\x15\x47\xec\x15\x11\xd4\xa1\xa2\x4c\x1a\x69\x97\x7f\xa2\xf5\xd6\x37\x69\xbf\xae\xba\xb4\x20\x62\x5b\x70\xc5\xb4\x34\xf6\xb4\x5d\x08\x59\x10\x81\x0a\x69\x58\x5a\x3c\x07\x80\xda\xee\x89\x9a\xd6\x54\x19\x6f\x46\xbc\x73\x52\x95\x53\xfd\xc4\x90\xa8\x1e\xd0\x37\x51\x6e\x43\x5c\x99\xf9\xe6\x39\x3e\xf4\x77\x58\x3f\xf5\x2a\x5f\x2e\xa9\x57\x1d\x51\xc5\xcb\x74\xb1\x69\x88\xa4\xde\xbd\x7d\xdd\x31\xc1\xac\xb3\x5d\xd3\x62\x9b\xa3\xac\x2b\xfa\x74\x69\x01\xa2\x19\xa2\xde\x6f\xe7\xf4\xeb\xb0\xae\x88\x03\x00\xed\x5c\x82\x77\x73\x4a\xa5\x26\xf6\x1d\x4d\xe1\x49\x4a\x24\x4c\x23\x20\x94\x81\x00\x78\x0c\x45\xd5\xe5\x73\x9a\x7b\x06\x5f\xd2\xb6\xb5\x6f\x89\xac\xd6\x7d\xbf\xb3\x96\x5f\xde\xdc\x5c\x49\xd3\x2e\xf5\xae\xb6\xf3\x80\x32\x30\x07\x1b\xde\x78\xeb\xb4\xa9\x67\x20\x92\x7d\xbb\x19\xd0\x0f\x8d\xd5\x72\x8e\xe0\x85\xbb\xf0\x88\xff\x5c\x7b\xf4\x00\xcf\x1d\x49\x27\x07\x50\x13\xe1\xb8\xc4\x06\x48\x44\xdd\xec\xb8\xde\x80\xaa\x2f\x35\xc1\x93\x32\x36\x4d\x97\x2f\x5b\x27\xe5\x42\xf6\x09\xd8\xff\x96\x06\xac\x6c\xe4\xfa\x82\xd0\x00\x5e\x82\xd4\x65\xdb\x6c\x29\xf5\x39\xfd\xf3\x09\xbe\xfb\x17\x5c\x1f\x60\xf2\xa2\x20\xfe\xd6\x9d\xa4\x6f\x9f\x9f\xa5\xff\xf9\xe7\x9f\x7e\x9a\xa5\xaf\x7a\x5e\x89\x4c\x9c\x7f\x63\xa2\xa2\x4f\xd9\xc3\x1d\x28\xb1\x8c\x9e\xe8\xee\x1e\xaf\xac\x7b\xe9\x63\xe4\xfe\xf7\xf2\x73\x4e\xf2\x47\x39\x5b\x34\xdb\xa7\xcc\x55\xb6\x79\x3f\x4b\x38\x87\xc8\x55\xe9\xf8\xba\xac\x0b\xfa\x50\x49\x40\xf3\x02\x76\xa7\xf9\x81\x5c\x20\x52\x51\xb6\x68\xea\x65\xd5\xf2\x80\x7e\xab\x41\x0d\x26\x2f\xd1\x3e\x80\x1c\xdb\x6e\x09\x69\xc4\x41\xaa\xe5\xad\x07\xc5\x50\xdf\x70\xa2\x4e\x68\x22\x54\x97\xa9\x28\xe9\xb0\x7c\x2d\xc4\xc8\xf3\x76\x49\xc3\x6b\x0d\xdf\x9d\x47\x78\xb3\x5c\x6e\x88\xa3\x1a\x97\xd4\x16\x2e\x25\x55\x18\x66\x08\x42\xc4\xb8\x83\xc4\x77\xae\x44\x7c\x76\xfe\x26\x2d\x3f\x11\xb5\x11\x39\xd0\x16\x5d\xec\x17\xa0\x30\x86\x3d\x49\x79\x7f\x22\xfc\xd2\xda\x58\x08\x5f\x0d\x98\x04\x77\x8d\x39\xd1\x82\x80\x88\x37\xe8\xa2\xc8\x48\x42\xf9\x44\x1c\xb4\x0d\x9a\x78\x61\x49\xda\xfb\x11\xec\xa8\x53\xae\x04\x8f\x7c\x41\x33\x4e\x54\x21\xbd\xe8\xa4\x53\x92\x4d\xe4\x4e\x74\xbc\x27\x49\x3a\x2f\xa8\x2f\xf3\x5b\xf0\x9d\x8e\x89\xa1\x28\x97\xf9\x7e\xd3\xfb\x7e\xc9\xc4\xb5\x26\x93\x59\x4b\xd7\x2c\xcc\x87\x79\x93\x05\x46\x1d\x04\xf5\x74\xc3\xb2\x44\x86\xf5\xe6\x36\x85\x00\x05\x7a\x15\x11\xd7\x64\xf1\x6e\x96\xe8\xe6\x6d\x12\x7d\xf6\xa9\x82\xf4\xeb\x48\x08\xb9\x26\xde\x33\xaf\xf9\x33\x03\xb0\x58\xdd\x4d\x96\x75\x1d\xbb\xe4\x86\x3b\x27\xf9\x0a\x1e\xb8\x0b\x68\x81\xc5\x73\xc2\xdc\xa7\x0a\xac\x57\x27\x11\x7d\xa5\x99\x44\xd3\xd4\x54\x57\x96\xa8\x81\xca\x3f\xa2\x3a\x51\x66\xa6\xd2\xa0\x0a\x68\x26\x88\x90\x90\x96\x16\x4d\xca\x3b\x23\xf8\x3b\x95\xb6\xa1\xd6\x3a\x7c\x1d\x73\xda\x56\xab\x35\xf1\xbb\xe6\x70\x22\x48\x3b\xac\x9b\x92\x69\xfa\xd5\xf9\x93\x1f\xa5\x1f\x2b\xe6\xf6\xae\x10\xef\x13\xf9\x9e\x26\x9c\x30\xaa\xa4\x25\x5d\x70\xfb\x2d\x20\x47\x72\xa7\x00\x0d\x25\x7d\x93\x65\xc7\xe2\x8b\xae\xdf\x30\x4f\x17\xae\x87\x91\xd2\x03\x6d\x41\xc5\xba\x6c\xd5\x40\x5e\x35\x31\x8e\xf7\x2e\x52\x7d\xba\x3e\x5b\x55\x7d\xb6\x64\x46\xc2\x75\x3e\xe7\xb2\xbc\x95\x52\x4e\xfa\x80\xb2\x1e\xa4\xc4\x8d\x48\x08\x2f\x7e\x49\xef\x7f\x52\xf9\xe5\x67\xe6\x10\x19\xd1\x74\xb5\xc1\x64\xa8\x14\xdc\x96\x22\x3e\x99\xba\x55\x34\xb4\xfe\x18\xe7\xdd\x7e\x87\x9d\x46\x45\x96\x93\x74\x27\x80\x45\x73\xa8\x79\x2d\x80\x15\xd2\xaa\xaf\xa0\x2c\xce\xab\x3a\xa7\xed\xd6\x6a\x01\x8b\xbd\x4f\xd4\xf0\xe6\xf2\x06\x80\xab\x66\xbe\xaf\x36\x85\x01\xcc\x68\x84\x9f\xf2\x4d\x55\xb0\xe0\xa9\xf3\x1e\x0a\x79\x96\x54\x49\x5f\x16\x4d\xcb\xf2\x01\x46\x63\x05\x8f\x08\x26\x2d\x6f\xf8\x48\xa6\xb2\x0a\x8b\x72\x4e\x86\x60\x34\xd0\xc4\x43\x22\x67\x09\x03\x14\x53\x75\xf5\x83\x1e\x3d\x5d\xec\xa9\x2d\x9a\x74\x4e\xa6\x82\x5d\xfa\xf0\x29\xfd\x4d\x58\x5e\x11\x7e\xbc\x1a\x23\x9e\x33\x53\xc9\xdc\xcb\x2a\x8d\xba\x1a\x91\xb7\xa3\x2e\x23\xde\x60\xac\x61\x7f\x8d\x04\xba\xbd\xd0\x2b\x6b\xc6\x1b\x9a\xd6\xf2\x3b\xfa\x78\x40\x0b\x78\xb5\xc1\x24\xe4\x10\xe7\x48\xae\x6d\x08\x6f\x4c\x20\x27\xb2\x5c\x96\x34\x34\xe6\x6c\x7d\xfe\x91\xfa\x96\xb3\xf8\x90\xbc\x67\xeb\xc1\x87\x64\x2f\x12\x61\xb3\x29\x9c\xf4\x0d\x9a\x6e\xda\xa1\xb6\xea\x81\x1c\xbd\x76\x24\x56\x2f\xd6\x99\xb3\x3d\x30\x52\xfa\xf2\x33\xf6\x62\x64\x79\x53\x04\x13\x3b\x67\x25\xdb\x5b\x4c\x17\x0f\xe2\xe2\xd6\xcf\x16\xc9\x83\xb4\x44\x48\x67\x99\x37\x8c\xb5\x4f\xa5\x83\x3a\x0b\x53\xe3\x02\x54\x17\x49\xae\x5a\x55\xac\x54\x52\x96\x68\xbe\x9a\x2b\xda\x6f\x97\x80\x89\xa9\xe1\x04\xbc\x8e\xe6\x53\x15\xb8\x19\x4d\x0c\xb4\x43\x6b\x99\x38\xe2\xad\xac\x8b\xa0\xcd\xe4\xbd\x1a\x55\x3e\x24\x06\xf7\x36\xce\x27\x6e\x42\x9a\x9e\xb7\x36\x64\x36\xbb\xce\xea\xc0\x4a\xb2\x32\x14\xbf\xc1\xaf\xcb\x1d\xcb\x02\xdb\x0e\x64\xb1\x21\xc8\xe2\x56\xa5\x59\x47\x20\xbf\x0a\xab\x26\x8a\x21\x06\xf7\x9d\x99\x6b\xbe\xb1\x8a\x67\x15\x91\x02\xca\xc7\x5b\x8f\x98\x40\x48\xe8\x84\xdd\xa7\x6d\x6f\x4f\xd2\x68\x13\x5b\xe7\x1d\xb1\x6f\xda\xb9\xb5\x58\x31\x33\x7d\x8b\xa7\x3d\x5f\xc8\x9a\x81\xe9\x06\x54\x2e\x25\x9b\x76\xb8\x27\x72\x0f\x85\xc3\x69\x2b\x4e\x92\x81\x9c\x12\x8a\x33\x13\x6d\x12\xc2\xb6\x25\x0b\xb3\xd9\x56\xac\x25\xf2\x2b\xbd\x28\x13\x92\xb8\x56\xb4\xa0\x8d\x60\x9f\xb0\x92\xbb\x82\xcc\xaf\xf4\xca\x00\x65\x1f\xb2\x60\x85\xb0\x94\x5f\xcd\x44\x45\x9c\xe1\x00\x0b\x00\xad\xed\x11\xfa\x69\xb3\xa2\xec\x99\xb1\x74\xd9\xb1\x21\x78\x75\xc4\x2d\x3c\x12\x4f\xd9\xbc\x94\x86\x50\x2a\x00\xfb\x61\x71\x01\xe6\x1a\x8f\xe7\x4f\xef\x77\x8f\x1f\xcd\x9f\x3a\xde\xba\x58\x97\x8b\x8f\x42\x7f\x55\x3d\x6f\x3e\x43\x85\xa5\x89\x67\x1c\xd7\xbc\xc6\xee\x17\xe9\x9a\x72\xa1\xe5\x10\x2f\xa0\x62\x84\x78\xce\x8d\x26\x8d\x3a\xc3\x2c\x63\x66\xc6\x3e\xb7\xbb\x18\x21\x51\x69\x34\x22\x3d\x4b\x68\x1a\x79\xf1\x61\x1d\x78\xba\x3d\xe5\x54\xa6\x5c\xec\x13\x9e\x74\x31\xde\x4d\xb5\xad\xfa\x11\xe9\x30\x23\xca\x95\x04\xd5\x72\x62\xb8\x44\x5d\xc0\x06\xfa\x42\xec\x9c\xaa\xa1\x8d\xd7\xc8\xe9\x90\x93\xf6\xf3\x73\x4a\x24\xb4\xa7\x6d\x8c\xc7\x44\xdd\x24\x7e\x9e\xf3\xce\x4d\x9a\x4f\xde\x65\xfb\x5a\xd1\x5a\x16\x46\x4c\x2f\x2b\xec\x32\xdc\xae\x91\x7c\x00\x65\x98\x57\x01\x3e\xfd\xde\x61\xfc\x07\x92\xf6\x97\xae\x18\xb3\x7e\xee\x50\xc5\xc2\x66\x3e\x39\x79\xc4\x1a\xeb\x52\x14\x56\x60\x80\xe1\x78\xa2\x49\xeb\xf1\xb3\x47\xaa\xd3\x47\x4a\xc1\x84\xcc\xf7\x7d\xdf\xb0\x32\xb1\x61\xaa\x91\x32\xd6\xeb\x33\x00\x42\x3f\xf2\xf5\x61\x42\x42\x3c\xc9\xdc\x94\x26\xdc\x67\xde\xec\xaa\x6a\xd8\x60\x74\xba\x57\x3a\xb0\x42\x0c\x20\x79\x7d\x6b\xa4\x4c\x04\xc1\xbd\xe0\x06\xfb\xe9\xbe\x7c\xdf\x96\x3f\xf8\xde\xb8\x35\x83\x12\xd6\x23\x29\x1e\xac\xa7\xb7\xc8\x15\x83\x9b\xad\x3a\xdb\xfa\xd4\x6c\xe5\xe9\xa3\x8d\xd1\x8b\x7c\x5e\x19\xc4\x60\x49\xee\x2c\x80\x68\x1a\x05\x4a\xcf\x06\x6d\x79\x3d\x6e\x8c\xc1\x3e\xee\xb2\xdf\xc1\xfa\xa6\xc9\xba\xb5\xe8\xcc\xd6\x3d\xd2\xb7\xeb\x55\x64\x78\x81\xd1\x1d\x44\xf7\x5f\x78\x9f\x24\xcd\x24\xdf\x7c\x48\x6e\x61\xe1\xfb\x2b\x71\xf8\x1a\xb6\xd3\x26\xa1\x0c\xd1\xb2\x2e\xf0\x41\xa0\xac\xf2\x7d\x48\x78\x0f\x7d\x33\x90\x0b\x79\x8b\xd0\xb4\x40\x40\x41\xd6\x6f\x91\xb8\x67\x53\x98\x5c\x4d\xc8\x90\x6f\x4b\x6f\x23\xc6\x97\x1b\xe2\xf5\xf5\xcb\x1b\xd3\xe1\xae\x5f\xa6\x1f\x4b\xad\xfc\x65\xdf\xef\xba\x77\xd0\xe7\x45\x39\x67\x4d\xfe\x2a\xbf\x65\xa9\x4d\x92\xf5\x07\x32\x6e\xca\x7c\xab\xbd\xe4\x4f\xa9\xe2\x94\xb6\x33\x4d\xe4\x4f\xda\xe5\x02\x3b\x51\x02\xf9\xc5\x86\x20\xc2\x8c\xca\x0d\x4e\x7f\x28\xd5\x00\xfd\xfb\xc8\xb8\xf5\x7b\x92\x6f\x76\xeb\x1c\x02\x44\x00\x06\x3b\x0e\x01\x61\xe2\x53\x80\x80\x16\xf6\xdb\xb2\xad\x16\xd0\xb6\xa8\xc0\xf7\x0f\xb3\x1f\x60\xc2\xa3\x85\x42\x92\x64\x5c\x59\x41\x8b\xe4\x1f\xaa\x90\xbf\x59\xca\x0c\xeb\xed\xaa\xbf\xdb\x28\xa2\xea\x38\x9d\x78\x0e\x41\x40\xa6\xf3\x50\x0e\x08\x1b\x23\xcb\x77\x3d\x9b\x75\x28\x81\x64\xc8\xa8\xea\x6d\xfe\xf9\x4b\x05\xb7\xcd\x44\x39\x61\x05\xbe\x90\x2d\x78\x1d\x62\xcc\x0e\x08\x9e\x0d\x37\x47\xa1\x69\xea\x19\xa4\xfe\x48\xbb\x5a\xed\xc0\xde\xc9\xef\x14\xbf\x7f\xb1\xe3\x08\xda\x42\x54\x02\x4f\xdd\xc1\x04\x6d\xce\x05\xf3\x4d\x48\xd2\x33\xbf\xdc\x42\xe9\xda\x91\x33\x34\x6c\x55\x7c\x1c\xe3\x60\xb5\x1a\x8a\x06\x91\xd4\xcc\x9f\xa1\x64\xbc\x47\x66\x2c\xb5\xd6\xa1\x6c\xea\x76\x4f\xdb\x5f\x00\x21\x96\xf4\x6c\x5c\x6e\xb0\xe0\x8e\x16\x27\x51\x60\xa2\xf4\xe5\xd8\x34\x7a\xa4\x7c\x4f\x4b\x66\xa2\x02\xb7\x92\x8e\x16\x94\xc9\x44\x21\x1a\x79\x31\xe2\x05\xe3\x82\x0c\x46\x7a\xd3\x66\x53\xae\xd8\x86\x66\x0d\x47\xad\x29\x09\xd1\x66\x20\x60\x21\x01\x79\x0c\xbb\xc9\x0a\xe7\x35\xd4\x02\xdc\x1c\xc5\xfa\x17\xf5\x9a\xe4\x79\xfa\xe4\x92\x81\x16\xa6\xdd\xd0\x9d\x7c\xcb\x0a\x47\xb7\x67\xd6\xcc\xca\x89\x48\x27\xf1\x6c\xf0\xc6\x8b\xaa\x4a\x34\x71\xbc\x7a\xa2\x45\xd6\xd8\xbe\x54\x3f\xc0\xbe\xb1\xea\x50\x5f\x1f\x57\xac\x95\x3b\xa0\x63\xd5\x3a\x8d\xb2\xfc\x5c\xc1\x1e\xf9\xa2\x62\x3b\x17\x74\x4a\xa7\x4a\x23\x6f\x96\x6c\x88\x19\xb0\xee\x22\xa3\x12\x39\xb6\xf9\xc4\xaa\x1f\xb7\xc7\xb9\x52\x4e\xec\x93\x3a\x28\x9e\x67\xd5\x4e\x49\x1b\x6c\x0e\x65\x71\x42\x5b\x3c\x97\xa0\x7e\x82\x6d\xe4\x9b\x43\x7e\xdb\xc1\xc8\x62\x1c\x87\x6d\xb1\x52\x9c\xd9\x09\x09\x00\x2b\xf4\x2a\xb4\xf8\xd3\x8a\x33\x4c\xb0\xe9\x9a\x37\x0f\xb7\x4d\x1f\xa0\x5f\x82\x5b\xa8\xd9\x86\xd4\x76\xde\xf6\x9c\x01\x9b\xc0\x59\x37\x66\x4d\x92\x65\x7c\xc9\x0e\x2a\xc2\x21\x92\x72\xfe\x89\xb2\x27\x2c\x1e\x51\x33\x2c\xac\x10\x3f\x16\x5c\x93\xfc\x47\x98\x45\x97\x02\x63\xc3\x9e\xea\x7f\x28\x72\x71\x45\x38\x64\x3d\xcb\xeb\xdf\xbc\x37\xd1\xac\x98\xc5\x5a\xd2\xa1\x3d\x27\x5d\x4f\x4b\x80\x31\x6d\x07\x9f\x7f\x15\xf9\x4a\x75\x6e\xce\xc5\x12\x03\x9a\xba\x75\xb5\x4b\x1b\x58\x41\x43\x14\x7a\xb2\x0d\x44\x4c\xb6\xcd\x97\x90\xbb\xd9\x1c\xdc\xe6\x75\xb7\x2c\x61\x17\xde\xa6\x4b\x3e\x5b\x9b\x69\xd3\x2c\xb1\xca\x01\xe8\x91\x96\x45\x87\x41\xd3\xe1\x6e\x81\xb9\x0b\x26\x2a\x6e\x5a\x0e\x0a\x60\x7b\x44\x1f\x80\x55\x5f\x53\x67\x7d\x60\x32\x1b\xa1\x00\x52\x63\x74\xec\x63\xbd\xf9\x54\x86\x88\x58\xfe\xa3\x23\x0f\xb0\xae\xa6\x6f\x39\x2f\x88\xa7\x49\x1a\x85\xb9\x03\xa7\x76\xf3\xdb\x78\xf4\x5c\xd4\x51\x00\x9f\x21\x7d\x2a\xb5\x15\x5e\x18\xbc\x56\x06\x15\xc2\xcc\xe1\x75\x85\xa4\xcf\xa1\xf2\xcd\xa9\x8b\x8b\x75\xb4\x3a\x6f\x90\x93\x4a\xce\x68\x81\x26\xef\xb9\x69\x52\xe3\xd7\x79\xbd\x2a\x33\x67\x63\x3e\xc3\x6f\x95\xd0\xd5\x66\xdc\xa7\x66\x58\x66\xcb\xbf\x15\x11\x33\xf2\x9d\x25\xab\xda\x2c\x3e\x5d\xf2\xb7\x86\x64\x08\x98\x8a\xff\x99\xbe\x58\xfa\xad\x93\xe8\xb4\x6c\x60\x67\x80\x7a\x50\xf5\xb7\x38\xc6\x9b\x93\x0c\x2c\x4a\x1a\xa5\x90\x9a\x0b\xee\x00\xd3\xc7\x73\xfb\xa6\xf9\xc8\x99\xe9\xf1\xd2\x96\x2f\x85\x13\x3b\xd4\x73\xfb\x4e\x58\x4b\xde\xce\xb0\x39\xb0\x30\x0d\xab\x7b\xb0\x25\x3c\xb8\xdf\x3d\xe0\x09\xb3\xbc\x59\x00\xbf\xcb\x7b\x62\x8b\xb5\xa8\x28\xc2\xa1\xc2\xa2\x9a\xed\xaa\x00\x57\x11\xb0\x19\xce\xc8\x05\x15\x1f\x12\x7f\x74\x6f\xa7\xf6\x53\x16\x55\x65\x31\x9d\xca\xbc\xff\x42\x9f\x6a\x11\x49\x9d\xe3\x8a\xaa\xaa\x38\x18\xb5\xd3\xac\x2e\x3e\xdc\xea\x12\xb5\x21\xc5\x06\x24\x25\xef\x27\xe9\xb9\x7c\x98\xd2\xbb\xaf\x30\xa6\xaa\x48\x92\x1d\xf0\x1e\x38\x1a\xe8\x44\xb8\x4e\xab\x43\x89\x37\x62\xb7\xc3\x9d\x9d\xb0\x20\xb5\x80\x70\xed\xac\x03\x52\x00\x9f\x4a\x07\x0a\x1b\x5b\x67\xa1\xc9\xd5\xc1\x39\x0e\x9f\x4e\xb0\xfe\x49\x60\x87\x72\x9e\xb2\xbd\x94\x08\x87\xf4\x22\x1d\xe8\x36\x27\x95\xea\x53\x95\x3b\xcb\x0c\xcd\x16\xbb\x32\xe8\x2e\xfa\x9c\xdd\x18\x70\x36\x3c\xf6\xb9\xe1\x83\x16\x3d\xbb\x78\xad\x9f\xc9\x7e\x57\xb0\x4d\xcb\x0f\xf8\x1d\x12\xdc\x80\xe3\xfc\xc0\x5c\x89\xa1\x5b\x31\x27\xcd\x08\x78\x91\x2a\x1c\xf7\xec\x76\x66\xcb\x67\xc2\x8f\x46\x97\x50\x31\x04\x09\x4f\x09\x24\x4b\x95\x56\x03\x98\x09\xef\x01\x7a\xe5\xc0\x12\x08\xa1\xbd\x32\x5d\x37\x87\x74\x53\xd5\x1f\x3b\xc5\xaf\xb3\x87\x98\x9e\x9c\x9e\x23\x81\x80\xc5\x52\xc3\x62\x55\x55\xef\xcb\x5f\x13\xfb\x12\x4b\x3e\x3e\xc7\x9e\x1f\xa5\xec\x8a\x43\x66\xa0\x07\x30\x67\x72\xd4\x74\x8a\xe4\x49\x58\xaf\xe7\x6a\x11\x9c\x91\x07\x87\xc2\xcb\x92\x05\x6c\xb0\x43\x3b\xc5\x22\xfc\x34\x4d\xa7\xb6\x47\xcf\x7e\x38\x0d\x86\x0a\x85\xd2\xd9\x72\x10\x3a\x99\xa7\x76\x76\x86\xd5\x98\xd8\x69\x97\xf5\x07\x6b\x3b\xab\xb6\xe2\x5c\xf5\xce\xce\xc2\x30\xb3\x4e\xaf\x40\xf6\x8c\x34\xe5\xc1\x60\xc2\x23\x87\x37\x8d\x9d\xb4\x19\x1f\xb5\xcc\x13\x13\x17\x04\x21\xd8\xec\xa3\xce\x0e\x29\x4b\x2b\x30\xeb\xf9\x17\x08\xcc\xc8\x27\x3c\x89\x11\xde\xec\x58\x4b\xb3\x89\x84\xc2\x33\x3d\x07\x70\xf9\x8c\xd9\x20\xff\x0d\xce\xcc\x86\xd6\x86\x48\x53\xd2\x1a\x8e\x4a\xd3\x83\x3e\x8d\xd6\x8e\x95\x3b\xd0\xd8\xc2\xe1\x18\xc1\xcf\x84\xfa\x73\x58\x86\xe5\x58\x0d\xfe\x04\x42\x2f\x35\xce\xe4\xa4\x0a\x42\x00\x14\x8e\xce\xeb\x19\xa7\xc2\x8d\xd8\xa2\x2e\xde\x5a\x0e\x40\x1d\xb6\x62\x7d\xb2\xb4\xc3\xf9\x90\xb1\xed\x5a\x9a\x74\xda\x78\x07\x96\xa8\x11\x4b\x8b\xd8\x17\xb8\x57\x83\x93\x66\xcf\xb5\x48\x83\xd4\xba\x98\xff\xe3\xcb\x52\xbc\xf5\xb2\x64\xeb\x96\x35\xaa\xcc\xda\xe5\x0a\xcb\x4e\xa8\x0f\x58\x03\xa5\x33\x4f\x14\xc0\x44\xdc\x45\x80\x85\x20\x66\x09\xb5\xe4\x2c\xb2\xf3\xc2\x62\xfb\xff\xcd\xb6\x1b\x35\xe8\x6c\xbb\xbe\xab\x03\xb2\xe1\x3e\x0e\x76\x9c\x11\x01\x51\x06\xf6\x5f\x9d\xfa\x60\x57\xd5\xc9\x77\x9b\x2b\x37\x23\x32\x3d\xa3\x89\x92\xb0\x05\x2b\x11\x80\xc3\xb2\x80\x07\x6f\x12\xb8\x42\x89\x80\xdf\x8d\xcc\x90\x31\x7f\x3d\x85\x06\x43\x58\x11\x58\x96\x07\x78\x43\x13\xe9\x4f\x35\xa2\x2d\x23\x42\xce\x6d\x9d\x67\xcf\xe8\x68\xe6\x44\xd5\x86\x75\xb5\x5a\xd3\xb8\xaa\x2d\x9f\x59\x82\x6b\xdb\xc1\x98\xd7\xea\xf8\x17\x2d\xbc\x66\x55\xb3\x0d\x87\x5b\x10\x57\x1e\xc7\x6d\x1f\x77\x7d\xdb\xd4\xab\xa7\xe7\x0d\xab\x5b\x6c\x09\xe1\xad\xe2\xd7\xc7\x8f\x34\x9d\x58\x06\xcf\x21\x3b\xb8\xbe\xa8\xfa\x97\xfb\xf9\x83\x2e\x5d\x91\x6c\x80\x0d\xe4\x71\x9e\xae\xdb\x72\xf9\xe4\xde\xfd\xee\xde\x53\x3d\xa8\x16\x3f\xab\x43\xed\xd0\xf2\xf8\x51\xfe\x94\xa5\xe7\xae\xd9\x90\x50\x1b\x17\x69\xb6\x5b\x99\x5f\x62\x7f\x5b\x81\x44\xff\x71\xb6\x5d\xd6\xc0\x5c\xd9\x2a\x7e\xa8\xc2\x99\xa3\x75\x3f\x3f\x3a\x6d\x26\x26\x45\xf6\x05\x15\x54\x18\x18\x47\x76\x75\x1f\x30\x4d\xb6\x2d\xa4\xae\x18\x36\xd8\x71\x31\x4c\x24\x9b\x6b\xbc\x69\xc3\x8c\x13\x90\xa0\x51\x87\x95\xa7\xa2\xd4\x13\x91\x34\x38\xcd\xda\x94\x8d\x93\xbe\x8c\xb4\x02\xfa\x65\x9e\x6a\xa6\x4c\x08\x8c\xde\x08\xc2\x04\x1b\xd1\xf0\x77\xc6\x00\x64\xf4\xba\xfc\x6d\x04\xc8\x13\x49\x46\x71\x22\x10\xf0\x83\x19\xc0\x18\x35\xab\xd0\x07\xe6\x69\xbd\x00\x2b\x53\x1d\x44\x1c\x55\x44\x20\x13\x92\x24\x09\x9d\xd9\xdb\x57\xca\x0e\xa3\x76\xfd\xc0\xad\x39\x7f\xf4\x85\xbe\x0c\x47\xcc\x18\xc3\x98\x4e\x81\x0e\x1a\x0b\x6c\x0a\x3a\x53\xaf\xd5\x82\x80\x0c\xda\x86\x03\x6d\xe1\x4d\xa3\x27\x2e\xa9\x25\x62\x4e\x48\x3d\xe8\xcb\x68\x31\x73\x27\xe0\x96\x26\x2e\x1e\x30\x4a\xfc\xd7\xb4\xc8\x89\x13\xf4\xcd\x47\x22\xa6\x71\x11\xa4\x1f\x2b\xe4\x38\x8c\xc9\xe8\xca\x5f\x4e\x3d\x7b\x18\x4a\xed\x7a\xc0\x79\x94\xc5\x04\x9c\x45\x6b\x75\xae\x2f\x62\x51\x29\x21\x1b\xcf\xab\xba\x10\x4e\xa2\x8c\x40\x7d\x49\x1c\x07\x20\xf9\xa2\x66\x20\x98\x3d\xf9\x43\x7f\x87\xd3\x12\xd5\x1f\x2c\x17\x62\xe0\xfb\x3a\x60\xa0\x42\x0e\x99\xa0\xc2\x0d\xf2\x8a\x54\x30\xf8\xb7\x9d\x4a\x85\x37\x9c\xdd\xa9\x73\xa7\x9e\x13\x5b\x91\x17\x9a\x88\x35\x00\x40\x41\x78\xe7\x10\x81\x5f\x5e\x1b\xb7\x5a\xd4\x07\x40\x3d\xd7\x30\x07\x44\x75\xc6\x32\xd7\xe2\x13\x90\x9e\x5e\xbd\xa2\x3d\xc3\x35\x68\x95\xfe\x96\x93\x1c\x29\x5d\x38\x38\x4b\x00\x13\xdb\x90\xe7\xba\x13\x24\x29\x6e\x86\x47\x94\xc4\x12\x77\x83\x1a\x0d\x48\x06\x13\xe7\x0b\x8e\xcb\x2e\xb0\x8e\x48\x6b\xe8\xc9\x70\xb7\x72\x43\xfd\x8e\x30\xeb\x6c\x74\xbc\xb4\x76\xb7\xcc\xff\x03\xf7\x9f\x5c\x30\x74\x00\x07\x1f\xf8\x1d\x11\x24\x2c\x04\x29\x2f\xe1\xd6\xf1\x0f\xeb\xb0\x09\x10\xc1\x54\x86\x6c\x64\x72\x32\x3d\x53\x99\x2c\x36\xc5\x59\x76\x56\x4f\x3c\xe6\x2f\xf1\x19\x26\x7c\xaf\xbf\xde\xc1\x65\xc2\x51\x05\xa4\x7c\x35\xd9\xac\xa3\x68\x69\x7a\xc0\x6f\x52\xd9\x08\xe5\x04\x9d\x5b\x11\xd9\x5a\x29\x22\x70\x15\xa5\x5a\x0e\xe5\x86\x7d\x3c\xb5\x75\x7f\x8a\xac\x43\x8f\xce\x90\x15\xc8\x9d\x1e\xb3\x33\xaf\x13\x05\x05\x15\xa1\x79\xcb\x2a\x23\x08\x5a\x6e\x38\x36\x16\x15\xd8\xf6\xeb\xb3\xd3\x37\x6f\x2e\x6f\xfc\x36\xcd\xeb\xa0\x2e\x48\x98\xf8\xce\x79\x60\x8d\xfa\x65\x7e\x58\x6e\x02\x63\x08\xef\x09\xa6\x25\x8e\xc1\x85\x6c\xca\x6a\xa7\xcf\x55\x03\xde\xd3\x70\x5f\x8c\x97\x47\xfd\x2f\x8e\xcd\x5f\xf2\x9e\xe5\x9b\x0f\x89\x19\x89\x2f\xf9\x7f\x12\xda\xd9\x83\xb3\x0d\x2c\x3d\x7f\x04\xe2\x3d\xb0\xa9\x03\x4d\x31\xb2\xbb\x83\x49\xef\x73\xa8\x10\x84\xfb\x06\x7b\xc5\x32\xc5\xf1\xe8\x09\x9b\x11\x9b\x16\x0b\x86\x91\xbb\xaf\xab\x3f\xf6\x10\xd0\x58\x81\x20\xe6\xc1\x8e\x7d\xf3\x6a\x23\x1b\xca\x9f\xdd\x0f\x49\xe7\xaf\x81\x97\x70\xd0\x38\xfd\x7a\xdc\xed\xd8\x57\x91\xf6\x86\xee\xc9\xbd\x7d\x95\xb2\x55\x8a\x7d\x83\xee\x3d\x25\x71\x9f\xdd\x0c\x68\xfa\x08\xe2\x69\x50\x1d\xdf\x3d\xf1\x75\x7e\xaf\xfa\x1a\xf5\x17\xeb\xe8\x53\xbe\xd9\x97\x91\x7a\xcf\xeb\x86\xcb\x74\x3f\x24\x28\xaa\x56\xcf\xe1\xbd\x15\xe4\x99\x9f\x30\xe7\xc1\x59\x18\xa9\x13\x43\x51\x0d\x4b\xcc\x56\xbd\xd8\x3b\xd3\x00\x15\xbc\x2e\xd1\x6a\x19\xa2\x5b\xcf\xa5\xdc\xf2\xef\x16\x6d\x05\x67\x67\x49\xe7\x9b\x4a\x69\x70\x4b\xc9\x25\xfa\x76\xaf\x89\x68\x68\x4c\xb3\x55\xd5\x93\x5e\xc7\x37\x93\xe0\x1a\x9b\xd0\x9a\xa3\x6d\x00\x77\x9c\xe4\xcb\x52\x46\x45\x79\xc7\x14\x58\xd8\x69\x58\x4e\x53\xf2\xe1\x0f\xfd\x3d\x51\x4a\x01\xed\x86\x15\x9b\xdc\x1b\xd2\x6b\x2b\x5e\x35\xaf\xe8\x1f\xed\x88\x22\x3f\xc7\x73\xdc\xa1\xbc\x5a\x05\x44\xc9\x73\x55\xa8\x5f\x94\x4e\x88\x3a\x44\x05\x53\xa2\x8e\xb4\x6a\xb1\x05\xc6\x90\x90\x3e\x43\x82\xde\x67\xa2\x4e\xd0\x04\x7c\x12\x31\x42\x6e\x38\xbd\xb2\x94\xef\x59\x75\xfa\xe1\x88\x1d\x73\x78\x18\xf8\xed\xe6\xcc\x61\x0d\x77\x5b\x35\xd9\x53\x24\x63\x1b\x75\xaa\xde\x44\xd1\x19\x7a\xa2\xf7\xad\xec\x76\x8c\xbb\x70\x25\xd7\x63\xc2\xdc\xe3\x2b\xca\x54\xec\x3c\x5e\x58\x70\xc4\x9b\xd3\xc2\xb8\xf7\x54\x70\x66\xab\xca\x6a\xd5\x29\xb8\xd0\x2b\x5f\xc1\x1c\x28\xc4\x0c\x9e\xfc\x99\x69\x8e\xec\x6a\xc1\x5a\x99\x5a\x0b\xa6\xa1\x22\x26\xa8\x82\x48\x1e\xdc\x0e\x78\xf4\xe2\xd5\x0d\xee\x06\xd0\x8c\xc1\x97\xdb\x2e\x40\xb0\x9f\xe6\xcc\xd5\x69\xe7\x51\x00\x31\xd7\xce\x57\x92\xa8\xe5\x38\x11\x2a\x5f\x6c\xba\x37\xaf\x91\x3c\xbc\x48\x92\xc8\xaa\xb4\xa5\xae\x6b\x74\xe9\x16\x3b\x6e\x06\xb0\x7b\x75\xbc\xca\x71\xe3\x2d\xc0\x74\xe8\xd3\xc4\x3c\xb9\xe0\x4d\x65\x77\x9b\xb1\x01\x11\xfb\xc8\xee\x36\x81\xe7\x0f\x6d\xb9\x19\x24\x12\x49\x04\x57\xdf\x54\x3b\xb9\x94\x49\x19\x55\x29\xfe\xbf\xf8\xb8\xfc\x97\x44\x50\xe8\x66\x18\x84\x82\x9b\x9a\x9c\x41\xbb\xc7\xaf\x60\xb2\x3d\x6b\x89\x72\xa0\xf1\xe4\x5e\x36\x27\x26\xf1\xf1\x5e\xa0\x35\xf2\x9d\x4e\x56\x15\xbf\x23\xe1\xf5\xa0\xc7\xee\xef\xe4\x2b\xb1\xdf\x7f\xc1\xaf\x3d\xfb\x93\xca\x19\x3f\x7f\x24\xfa\x8b\xcf\x05\x12\xbd\xe5\xc7\xdc\x30\x61\xcd\x41\xe7\x93\xb4\x86\x90\x75\xfd\xb1\xe7\x51\x8a\xc2\xfb\x24\xfd\x13\xff\x4a\x5f\xf0\x2f\x1d\x0a\x73\x04\xb7\xc6\x41\x35\x03\x1e\x11\xfa\x47\x82\xe5\xa9\x97\xb2\xe7\x09\xe2\x54\x15\x60\x5f\xbd\xa9\x0c\x90\xaf\x18\x24\xbb\x3d\x7b\x8e\xf0\xbc\x5b\x6b\x57\x94\x82\xfb\x1a\x9c\xc8\x1b\x6f\x50\x83\x3b\x34\x8a\xea\x48\x1c\xab\x51\x16\xd3\xb7\x25\x24\x5a\xfa\xa7\x79\xb8\x13\xda\xe7\x38\x26\x10\x20\x22\xb9\xff\x94\xde\x50\x8a\x42\x94\x61\x56\xa2\xa0\xc8\x1f\xde\x0e\xdc\xe4\xf3\x12\xb6\xb5\xd7\xf8\x20\x92\x27\x1e\xd9\x13\x8a\x60\x72\x71\x3f\x12\xee\x63\xd5\x8b\x07\x2c\xbe\x12\xf5\xcf\x96\xa3\x20\xf9\x4c\x60\x68\x6f\x73\x76\x56\x7c\x9b\x1f\xe4\x27\x61\x5a\xaf\x13\xbe\x94\x2f\x49\x86\xeb\xab\x80\xc2\xf3\xd5\xc1\x43\x18\x51\x1a\xbe\xb2\xef\xc4\x3a\x30\x1b\x77\xc4\x72\x06\xb7\x19\xd3\xc5\x20\x7f\x29\x2a\xd5\x73\x56\xa8\x2c\x2d\x07\xff\x4b\xcd\x99\xc8\xa5\x6f\x89\x79\x88\x4d\xf9\x42\xbe\x5c\x4e\x21\x7e\x6e\xe7\xd8\x3d\x34\xcd\x5c\x91\x2f\xf9\xbf\x4b\x25\x82\xd1\xf5\x43\xff\x9d\x5b\xaf\x5c\xf8\x65\x5d\x4a\xae\x4f\xfa\xe4\xd9\x70\x2e\x82\xac\x9a\x77\xe1\x39\x6c\xf9\x44\xfb\xc8\x0f\xb3\x17\x84\xff\x36\x73\xe5\xcf\xf8\x67\xba\x19\xd5\xe2\x26\x37\x9c\xdb\x41\x33\x21\x0c\x35\x35\x09\x26\xcd\x85\x90\xd2\xe2\x76\x0a\x98\xe4\xe7\x3a\x82\xbd\xa4\x84\x90\xb4\xa2\x8a\x59\xf2\x1b\xd4\x0c\x61\x70\x1a\x9e\xb6\x16\xbe\xf4\x01\x71\x58\x3f\xc7\xfd\x0c\x80\xa4\x9b\xf9\x04\x28\x5b\x25\x3c\x1c\x0d\x7c\x08\xa4\x86\x33\xc7\x10\x86\xb3\xe7\xe7\x87\xa6\x76\x38\x41\x92\x99\x91\xcc\xb1\x28\x9d\xe3\x3a\x80\xb0\x6b\xf3\xc5\xdb\xa8\x19\x57\x99\x36\x16\xd5\x07\x84\xf6\xf9\x9c\xb2\xef\x17\xc0\xa6\x2b\xcc\xb8\xf2\x59\x82\x3a\xcb\xa4\xc5\xc5\xce\xce\x56\x73\x54\x65\x98\x47\x02\x46\x26\x22\x93\x20\xc2\x89\x4f\x9b\x89\x12\x77\x52\xd4\x10\xe6\x68\xcd\x23\xba\xd1\x92\x77\x4c\xaf\x87\xe0\x1b\xb5\xc7\xab\x3e\x52\x4e\x25\x1c\xc8\x35\xe3\x9c\x19\x5f\x6f\x70\x9c\xf2\x14\x3e\x01\xe0\x96\x53\xa0\x9d\x5e\xc0\xa7\x4d\x96\x77\x64\xd7\xd5\x42\x4d\x14\x53\x85\x64\x96\x8b\x6c\x7e\xab\x65\x64\x9e\x71\x89\xeb\x48\x91\x2d\xbb\x15\x60\xfb\xd5\x22\x17\x2e\x61\xa2\x48\xa7\x97\x40\xf9\x16\xe6\x38\x67\xc6\xb2\x2f\xdc\x0e\x98\x37\x75\x93\x20\x4c\xa5\x00\xb9\xc4\xc7\x14\x88\x18\xee\x54\xf5\xe6\x5d\x40\x3c\xa7\xed\xa0\x6b\xb2\x61\xf6\xa5\x70\x25\x5e\xc3\xb3\xa2\xfd\x8a\x72\xec\x76\xc8\x7c\x55\xec\xb4\x17\x0d\x9c\x12\xf1\xf3\x8e\x76\x7c\x01\x69\x68\x54\x82\x57\x12\x66\x81\x40\xe4\x3b\xbd\xff\xfe\xc7\x0f\x1d\x4f\x83\x37\x81\xbf\xff\xe9\x03\xc9\x33\xf7\xdf\xff\xfc\x01\xb6\xef\x51\xe1\x6c\xc9\xa6\x9f\x71\x0d\x28\x68\xd0\xbb\xb6\xfc\x54\x35\x7b\x18\x3c\xf4\xd3\xf3\x87\xcf\x32\x15\x9f\xfb\x78\x89\xbb\xcb\xa8\x83\x15\x5e\xb8\xac\x78\x85\xd7\xfb\x6d\xa6\x63\xec\x84\x03\xd8\x2f\x57\xdc\x30\x90\xe5\xdc\xe4\xef\xee\x37\x0f\xb7\x2a\x78\xb0\xd4\x79\x13\xe3\xfe\x49\x7e\x3d\xc5\x40\x78\xe8\xbf\xbb\x96\x9a\xc0\x6a\x7e\x23\xf7\x69\x59\xea\x75\xf6\xfb\xdb\xb2\x9f\xc5\x5c\xc9\x82\x06\xa0\xcb\x71\x96\xf6\x22\x06\x51\xd7\x4c\xe4\x18\x78\x5b\x02\x31\x06\xf7\x16\x3f\x07\x99\xc3\xca\x04\x68\xaa\x36\x65\xb5\x9e\x4a\xce\x06\xf9\x82\x6b\xc5\x94\x6c\x43\xdf\x86\x26\xe9\x92\xab\xc3\x7e\x7e\x63\x2d\x22\x4f\x90\x44\xb9\x74\xf5\x2c\x09\xe3\xf5\x02\x16\x56\x18\xa1\x79\xa8\xea\x9c\x27\xd0\xdf\xd8\xc4\xae\xd1\xb0\x27\x57\xf8\xb0\x64\xb9\x96\xa8\x9e\xd4\x8e\x36\x23\xf3\x8f\x26\xda\x45\x15\x92\xd7\x49\x7d\x01\xc7\xb6\xcb\x29\x7c\x0e\xc1\x49\x11\x68\x55\x67\xe6\x90\xad\x22\x3d\x31\x4b\x76\x3a\x92\x11\x11\x19\xf1\x7d\x3c\xb5\x28\x1e\xbd\x3b\x14\x1d\x53\x05\x57\x48\x74\x4a\xc3\xd5\x5a\x16\x30\x13\xfc\x46\xff\x1c\x5e\x07\xde\x11\xd6\x3f\x6e\x85\xba\x4f\xff\x2c\x49\xf6\x45\x5b\x74\x7e\xdf\x8e\xf3\x17\xcd\xa6\xf1\xfb\x3a\x7e\x0d\x01\xc4\xc2\x77\xbf\x18\xc8\x66\x92\xed\x69\x5b\x57\x2f\x08\x37\xde\x79\x04\x72\x62\x30\x92\x31\x70\x13\x8a\x33\xdd\x0d\x01\xe9\x20\xee\x09\xd8\x0d\xec\x71\x2d\xea\x6c\x03\x50\x67\x62\x9c\x04\x9b\xb2\x25\x8b\x94\x11\xda\x8e\x59\x66\xaf\x6a\xb9\x86\xce\x75\xf3\xe9\x69\x60\x4e\xd6\x9a\x8f\x5b\x8f\xa7\x9b\xf6\x66\x64\xe9\xe9\x17\x8e\xa9\x10\x3a\x05\x2b\x6a\x97\x13\xe9\x89\xb7\x82\xea\x12\x9c\xa2\xae\x17\xdd\x34\x9c\x0d\xd4\x80\xfb\x43\x93\x3a\x7d\x0b\xf1\x78\x78\x23\xc8\x53\x2e\x6c\xb7\x8c\x40\xfe\x5a\x7e\x36\xa8\x16\x17\x4a\x9f\xc0\x4f\x6a\xd8\xa0\xb6\xf0\x24\xd5\x2f\xcd\xd7\x2d\xce\xa9\x88\xcf\xf1\x5b\x3b\xa1\x30\xc4\x9b\xdb\xb2\xdb\x6f\xb0\x07\xe0\x78\x4d\x7e\x2c\xe5\x60\x48\x1b\x1a\x48\xb3\x61\x08\x19\x05\x01\xb9\xdb\x90\x79\x3e\x70\xe6\xb2\x2d\x49\xe1\xc7\x1e\x57\x98\x82\x25\x9c\xe7\x31\x5f\x98\x31\xd6\x82\x6f\x9a\x62\x3e\x7d\xd6\xf4\x9f\x5d\xba\xd5\x9f\xcf\xb3\x70\x9d\x03\xb1\xfe\x67\x04\x35\x54\xf9\x7c\x9e\xd8\xf4\x80\x89\xb2\x33\xf7\x13\xcd\xd7\x1d\x81\x04\x33\xe9\xb5\xf3\xa7\x96\x0c\x3d\xf5\x08\x27\x8b\xfa\x4b\xea\x27\x13\xa9\x0e\xd4\x19\xff\x1d\xe2\xf2\x3a\x83\xdd\x11\xf9\x91\xaf\x17\x71\x26\x2b\xcc\x10\x0f\x07\x35\x88\xc5\x60\xd0\x62\x50\x2d\xec\x7a\xc7\x6a\x7e\xd0\xdf\x5d\xf7\xbc\x5c\xe4\xec\xb1\x2a\xde\xd7\x4c\x3a\x7c\xbe\xb0\xa9\x38\x18\xc6\xbc\xec\x0f\xbc\x24\x4c\x2f\x3d\xda\xe4\x54\xe0\x1a\x39\xfc\x17\xdb\x04\xa1\xa7\x91\x5b\xc5\x70\x12\xa8\x5c\xef\xa5\x78\x18\x96\x08\xf2\x29\x77\x31\x22\xac\xc0\xba\x10\xe8\xc1\x5e\x6f\x08\xb2\x27\x94\x9c\x20\x77\x5a\xd1\x19\x02\x14\x5e\x7d\xbc\xdf\x45\x6d\x37\x59\xb1\x27\x14\x6b\x6c\xa9\x26\xa5\x5f\x29\x7e\x0d\xbb\x60\xe2\xd7\xb0\x6a\x27\xc8\xc4\x23\x22\x7e\x34\x5f\xd3\x5e\x25\x57\xc1\x64\x69\x05\x16\x15\x42\x9d\x3a\x39\xeb\x01\x92\x32\xb5\xa8\xfa\xc1\xca\x9c\xc4\x8e\x6d\x45\xb8\x65\x15\x66\x4c\xd8\xf5\xc3\x5c\x3f\xe8\x73\x1a\x31\xdb\x30\xd2\xef\x2d\xf8\xc9\x0f\xf1\x20\x4b\xf1\xd3\xe3\xff\x61\x86\xbb\x1d\xaf\x55\x65\xc2\xd1\xb5\x46\x54\xae\x29\xfe\xd6\xf8\x89\xbb\xa3\xf4\xe0\x96\xaa\x7b\xb8\xdd\x3e\x2c\x8a\x07\x13\xa3\x0e\xd8\xb9\x1b\xf6\xc0\xdd\x42\x35\xa7\x01\x5f\x0f\x6a\x0a\xf6\xc6\x69\xdc\x31\x40\x34\x4f\xef\xd8\xd3\xbb\x64\xb3\x79\x5a\x78\xbc\x81\x71\x07\x73\xd7\x31\x6b\x68\x76\x84\x76\x77\x84\xcb\x4b\x4c\xee\xbe\x84\x23\x19\x48\x15\x41\xd6\xe0\x8a\xde\x9d\xdd\x33\x3c\xe8\x86\xc4\xa7\x39\xdb\x23\x28\x91\x80\x45\x47\x11\x12\xec\xe6\x1e\xa9\x6e\x47\x9f\x00\x9c\xda\xcf\x7d\xdb\xff\x91\x7b\xfa\x54\xe3\x53\x24\xf0\xa5\x5d\x7d\x2a\xea\x9a\xa5\xcd\x84\xbe\xe1\x52\x2d\x5f\x3e\x2b\xb8\xe2\xaf\xfb\x4f\xf0\xdb\x83\xad\x9b\xe6\xa3\x84\x39\x98\xe3\xd3\xe7\xac\xaa\xde\x32\x39\xac\xd4\xcb\x38\x97\x36\xf6\x6a\x11\x46\x77\x7b\xc6\x09\x13\x5d\x2c\x78\x8e\xdb\xec\xef\x62\x47\x39\xc7\xaf\xf4\x7f\x32\x61\x38\x10\xf5\x87\xbe\xb4\xb0\x16\xd7\xec\x15\xed\x72\xd5\x1f\x35\x68\x4a\xdd\x67\xc7\x6d\xa9\x6b\x27\xdb\xa1\xe5\x58\xc9\x9f\x75\x57\xb6\x81\x46\x87\x97\x53\x3e\xc9\xf1\xd5\xa9\x99\xaf\xdd\x5d\xbe\x60\x83\xb5\x7e\x5e\xda\xfd\x8d\x31\x98\x3b\x9f\xf1\x77\x36\xe2\xd3\x24\x76\x18\xa9\xc5\x25\x13\xf7\x36\xf8\x7e\x07\x27\xc5\x97\x45\x88\xee\x5c\x1c\x2b\xd5\x12\xa0\xb9\xc0\xfd\xa2\x0b\xba\x87\xc8\x80\xb8\xb9\xc5\x97\x60\x3a\x39\x8d\xd3\x1b\x28\xe2\x8d\x2c\xda\x4d\xee\x34\x8e\x0e\xe7\x8e\xc1\xe9\x56\xe8\x68\xe6\x43\x0e\x88\x3b\xb3\x75\x15\x79\xc1\xf4\x0e\x9c\xf7\x81\xe9\xe0\x80\x6b\x00\x68\x48\xb9\x24\xfe\x21\xfe\x41\x52\x2c\x8f\x2e\xbf\xf4\x81\xd6\x2d\x67\xfa\xf3\x7c\xf1\xd1\xf5\x88\xd9\x53\xd9\xf6\xb8\x76\x32\x46\x3b\xbb\xbd\xd2\x02\xca\x7e\xa4\x66\x1e\x42\xc6\x90\xc8\x5b\x18\x84\xac\xbf\x6a\x19\xe0\x03\x6e\x4e\xec\xb6\xf4\xa9\x2a\xf6\x44\x7d\x3c\x17\x77\xd5\xfb\x53\x5c\x2f\xad\x78\x9c\xab\x1d\xad\x7b\x30\x9f\x2c\x4b\x57\xb8\x05\xcf\xd7\xbd\x70\xef\x68\xe9\xaf\xd3\x75\x53\x2d\x33\x13\x72\x1a\x9a\xe2\x00\xd7\xe2\x52\x7f\xaf\x24\x64\x55\xc2\x87\xe0\x68\x21\xbe\x90\x26\x4a\xfd\x92\x8e\xe6\x23\xc6\x96\xdc\x55\x72\x92\xd7\x17\x5d\x3d\x46\x84\x30\xc0\xd2\xa0\x3e\x20\x2c\x70\xc8\xb0\xd9\xe7\xe1\x73\xe8\xa0\x5b\xf6\xcd\x5d\x39\x67\x83\x90\x24\xaa\x7a\xb1\xd9\xc3\xb5\x8c\x99\x11\x47\xf2\x3b\x51\x1e\x7c\xe2\x2c\x41\x72\x43\x23\xf0\xdd\xf1\x3c\xb0\x89\x30\x3b\xe8\x2b\x0e\x26\x05\x01\xaf\x46\x4d\xfb\x8b\x23\x27\xde\xd7\xc1\x9d\x04\xb3\x6c\xca\x2e\x1e\x75\x51\xee\x38\x9e\x18\xfb\xfa\x2d\x65\xb7\x15\x9e\xff\x85\x56\x7f\xba\xab\x55\x71\xd1\x98\x6a\xd6\x1c\x87\xf4\x26\x26\x16\x2d\x47\x97\xfc\x42\x6b\x3f\x5b\x6b\xe1\x96\xf5\xb1\x2c\x77\x41\x13\x71\xf7\x03\x47\x6a\x30\xcf\xd8\x07\x63\x82\xa3\xe9\x1d\x1b\xbb\x94\x77\x84\x89\x07\x3b\x61\x70\xc8\x6f\xbb\xd9\x17\x6e\x15\x8c\x17\x88\x99\x6d\x10\x12\x15\xa6\x1b\x07\xc3\x6a\x6b\x16\x70\x6e\xb8\xb2\x19\x4b\x9e\xa8\x4a\x5c\xe4\x06\xde\x07\xfe\x96\x9e\xeb\x9a\x15\x68\x8f\x77\x2f\xf6\x82\x4a\x27\xbc\x9f\x1c\x28\xbb\x98\x86\xc4\x9a\x8a\x63\x31\x8f\xe7\x2c\x48\x3e\x5e\x60\xe0\xce\x1b\xd5\x15\xbb\xf3\x06\x1d\x14\x2a\x3a\x56\xcf\xd9\x64\x1d\x4a\x79\xe1\xd4\xf2\x65\xdc\x0a\xd7\x2e\x33\x8d\x10\xa3\xe1\x7c\x87\xf7\x1e\x35\xf7\xb0\x6e\x82\xf8\x04\xe2\x63\x8c\xbd\x28\xec\xc8\x2c\x1e\xeb\x41\xc4\x13\xc5\x8b\x0a\x2b\x03\x29\xc6\xf6\x16\x13\x65\xa0\x2a\x6e\xf7\xb4\x75\x6e\x2a\x9a\x74\x48\x2c\x1a\xc0\xf1\xf2\xfa\x06\xa1\xf1\x68\x01\xd0\x3e\xba\x62\xbe\x9b\xfe\x65\x5d\xd6\x88\x5f\xc6\x71\x14\x95\x11\x2d\x16\x7c\x35\xa0\xaa\x35\xc4\xd3\xa1\x34\x87\xcd\xba\xd8\x08\xdb\x0a\x2f\x59\x98\xf4\x20\x8e\x03\x29\x62\x25\xf2\x4a\xeb\x76\xe5\x82\x64\xe2\x19\x9b\xea\xdb\x1a\x91\x8d\x53\xb3\x06\xde\xe9\x67\xe0\x46\x82\x03\x7f\x36\xf9\x05\x68\x51\x94\x84\x16\x2d\xdd\x83\x47\xe8\x19\x82\x4e\x49\xc1\x86\xe1\xbb\x64\x60\xf0\x57\xf1\x13\xac\x98\x5d\xa7\x7a\xfe\x7d\x97\xfb\xf5\xd1\x3e\x84\x21\xb6\xa4\xe9\x2f\x88\xc2\xc3\xaa\x66\x5e\x1f\x37\x25\x7c\x02\xa4\xdb\x35\xe2\xb9\xf5\x56\x3f\xc7\x40\xa2\x2d\x71\x4f\x5e\xca\xd7\x18\x64\xa7\xb1\x3b\x5c\x14\x8f\x31\xc8\xbc\x29\x58\xff\x79\x46\xff\xc6\x42\xb4\x8b\xf3\x6b\x92\x34\x88\x73\xc7\xf7\x45\xe5\x64\x8c\x33\x08\xdd\xe5\x66\x29\x77\x7f\xd9\xe2\x02\x75\x4f\x8c\x40\xec\x2f\x28\xa1\xe1\xd8\x5f\x05\x15\xe8\x2d\x16\x38\x68\x23\xe0\x4d\x68\xe1\xd1\xfb\x5e\xe1\x55\x9f\x61\x9f\x60\x69\xb5\x7e\xbd\x12\x19\x04\xd3\x00\xe5\x56\xa2\x13\x9d\xf0\xd6\xc2\x7a\xa1\x9d\x7d\xd8\x06\xb4\x93\x88\x44\x7c\xf7\x80\x88\x1a\xd7\xe9\x0d\x44\x64\x58\x09\xa9\x1a\xb8\x0b\xda\x2d\x3a\x10\x1b\x10\x36\xee\x91\xba\x5a\x32\x82\xc4\xc9\x72\x04\xe1\x4f\x66\x00\x64\x97\x1a\x86\xfb\x8c\x82\x7b\x5d\xe1\x65\xb4\x1e\x02\x8e\x12\x05\x60\x46\x47\x35\xce\x90\xd8\xf6\x98\x53\x98\xc9\x2f\x30\xa4\x31\xae\xd8\xb5\x2a\x58\xdd\xbc\x4d\x93\x70\x24\x52\x74\x5b\xae\xf2\xb6\xb0\x20\x03\xca\x69\xd8\x61\x1c\x1c\x25\xbc\x43\x96\x6f\x48\xf9\xd6\x2a\x88\x33\x12\xc8\x47\x76\xe5\xa0\xf9\x66\x19\xc7\xec\x0d\x2c\x2d\x16\xc2\xc6\xf8\x7a\x0e\x31\x97\xfd\x8e\xf9\x8d\x30\x2f\x6b\x07\x43\xfe\xfe\x9f\xaf\x2f\xdf\x9c\xa4\x9f\x1f\x1e\x0e\x87\x87\x5c\xfc\xe1\xbe\xdd\xf0\x45\x96\x82\x83\x18\xfc\x8f\x8b\xd7\x27\x69\xd9\x2f\x7e\x98\x91\xa2\x0e\x36\xe4\x57\xb7\xfa\x90\xc1\x96\xca\xd4\xc5\xa2\xe3\x3f\xce\x9e\x74\xc5\x68\x88\xdb\x30\xf6\x4d\xb8\x41\xf2\xec\xd9\x81\xb5\x4e\xa6\x1c\x5c\x7b\xe5\xb0\x5c\xb4\x25\xce\x7b\xf1\x11\x64\x6c\x48\x27\x98\xba\xbc\x3a\x04\xa9\xa8\x1d\xed\xc6\xab\x85\x86\xd8\x1d\x80\xd8\xf1\xc6\x19\x0e\x36\x5c\x26\x26\xce\x6d\x2b\x1c\xa7\xa8\x5b\x37\xfb\x4d\x11\x73\x4c\xc2\x99\x4e\x44\x59\xfc\x3a\x2c\x0c\xb7\x29\xc4\xe3\x7c\x92\xfe\x33\x5b\x8a\x78\xa2\x84\xb6\x38\xcb\x68\x0b\xc0\xb3\x61\x61\x04\x8e\x0a\x04\x63\x1a\x80\x04\xc4\x32\xc1\xdc\xe7\x39\xe1\x7c\x54\x89\xea\x6f\x7c\x50\xdc\xa7\x5b\xa7\xcf\x81\xd6\xa4\xba\x71\x91\xd8\x4e\x37\x9d\x6d\x78\x11\x57\x2c\x89\xd3\x9b\xaf\xcc\x88\x35\x85\x87\x54\x7c\xc6\x26\x51\x14\xf0\x47\x80\x32\x17\x09\x9d\xd8\xfc\xda\x05\x63\x4a\x35\x52\x5a\x39\xcc\xf0\x86\xde\xf3\xb2\xc7\xd5\xca\xa9\xb5\x28\x1a\xb5\x9b\x35\xbf\x7a\x8c\xbf\xe9\x0e\x27\x92\x89\x78\xd9\x47\xdc\x03\xac\x23\x96\xb9\x0e\xc3\x5d\x6c\x28\x6e\x29\x6f\xf2\xa2\x8c\xf2\xa6\xd1\x76\xad\x80\x83\x36\x46\xbb\xa4\x4a\xc7\x63\x99\xdf\xb7\x70\x4c\x20\x10\xb7\x84\x4c\x47\x69\x31\x0f\x70\x55\xe9\xdc\xa5\xc5\xe2\x95\xad\x52\xf0\xdd\x78\x89\x32\x42\x64\x1d\x85\x1c\x95\x05\xb5\xf8\x10\x93\x41\x70\xc3\x8e\x5d\x8a\xcd\xfd\x76\x74\xbf\x30\x14\xa1\xa5\x56\xbb\x2b\x22\x77\x5a\x06\x99\xc3\x98\xe2\xc3\x95\x4d\xb2\x9a\x3c\x77\x70\x26\x5f\x21\xb6\x76\x9b\xe6\xd6\xae\x60\x9e\xe3\x97\xc6\x36\x08\x47\xe6\xc1\x74\x50\x1e\x32\x30\xbe\x34\x59\x5c\xdd\x5f\x83\x28\x77\x2a\xe2\xd6\xac\xef\xa2\x28\xc1\x84\x6a\x4c\x64\xf0\x9e\xe8\xde\xc4\x2d\x3e\x07\x35\xbc\x6f\x78\xee\x5a\x38\x72\xdf\x30\x2e\x1a\xde\x39\x0c\x8a\x7e\xc5\x9d\xc3\x18\x49\xe3\x1b\x85\x7e\xa8\x5f\x71\xa9\x70\x6a\xd0\x63\xb9\x76\x0a\xf1\x13\x05\xa6\xa4\xdb\x22\x1c\xdb\x57\x5c\x2e\x1c\x68\xb6\x5f\x23\xe0\x4e\xf5\xc4\xa3\x24\x40\xee\x97\x2c\xbe\x45\xb5\x5c\xce\xe6\x6d\x73\xe8\xf8\x06\x1f\x02\x74\x33\x97\xe5\xdf\xe9\x35\x7e\x0b\x08\x9f\x9d\x82\x28\xe4\x43\x12\xd5\x45\xe2\x89\x9e\x88\x49\x22\x8b\x12\xa3\x40\xc4\xe7\x94\x83\xd8\xbf\x1c\xaf\x9c\x63\x11\x48\xce\x4c\x8a\xd0\x46\x77\xc8\xf8\x0b\x77\x0f\x61\x7d\x66\x63\x29\x0a\x5d\x73\x8a\x82\xf1\xa7\x21\xdc\x76\x25\x78\xe7\x68\x74\x08\x88\xaf\xde\x72\x04\xc2\x32\x38\x02\x23\x62\xa8\x20\x9f\x7a\x90\xf0\x8e\x11\x41\x18\x2e\x3d\x84\x22\x08\x8b\xfe\xd9\xab\x37\xf2\x13\x2e\xb7\x1a\x2b\x03\x3e\xb7\x7c\x68\x9a\x98\x23\xef\x6c\xca\xa1\xd7\xf2\xc4\x31\x5a\xcc\x1c\xf6\x54\x0b\x7e\x39\x88\xa2\xcd\x97\x38\x06\xe2\xff\x2e\x95\x64\x60\x5f\xec\xaa\x2d\x1f\x0e\x8b\x11\x72\x04\xd5\xd7\xf8\x70\xe9\x7a\x8c\xc3\xff\x5c\x5a\xce\x4a\x48\x80\xc3\xfb\x85\xc7\x88\x9d\x11\x13\xdd\xdd\xef\xd2\xae\x62\xdb\xa9\x12\xe8\xa0\x41\x50\x87\x0f\xff\x08\xda\xc1\xe3\x25\x06\x41\x3b\xb4\xbb\x46\x48\x9b\x75\x2d\x37\x99\x2c\x0f\x6a\xab\xc5\xeb\x89\xca\xf8\x18\x90\x66\x0d\xf6\x6e\xdf\x94\x8f\xdd\x7f\x11\x7a\x93\xb3\x28\xc0\x17\xab\xd9\x1c\xd4\xad\x67\xc3\x89\x70\xe6\x4c\xc5\x59\x8a\xdf\x0e\xca\x24\x43\x26\x97\x6c\x5b\x04\xc2\xa1\x10\x50\xb8\xad\x5c\xe4\xed\x47\x0e\x8f\x0d\x8f\x18\xab\xe0\xd0\x6a\x8c\x15\xfe\x1f\xce\x98\x86\x65\xbf\x92\xaf\x51\x83\xb1\x17\x2b\x4a\xc3\x1e\x60\xcc\xd4\x15\x60\x69\x56\x44\xb2\xd7\xf2\x25\x0f\xcc\x0c\x29\x63\x7c\xa1\x96\xf2\x1e\x0e\xe7\x2d\x80\x77\x88\xfe\x4b\xf9\x7f\xfe\xd7\xff\x66\x73\x69\x43\xbb\x25\x6e\xbf\x6b\xe0\x35\x3f\xef\x76\x07\xc6\x07\xf7\x7f\x08\x1e\x1d\x74\x44\xd0\x9f\xea\x85\x72\xfa\x1a\xd1\x28\x47\xd8\x36\xfa\x66\xbf\xa0\x01\x91\x43\x49\xf4\x64\x8e\xa3\xc7\x61\x1d\x46\x54\x99\xee\x11\x2e\xf0\x93\x4d\x2e\x26\x4d\xc2\xa9\x28\xd1\x4d\x6f\x29\xc9\xfb\xa6\x5d\x7d\xf0\xe1\x01\xdd\x44\x44\xa1\x01\xa1\x19\x7a\x18\x43\xd8\x0b\x26\xbf\xf1\xfb\x2a\xa2\x69\x4b\x2c\x52\xf8\xb1\xd8\x7d\x3b\x09\xd7\x25\xc1\x1c\x5c\x25\x61\x43\x0f\x3a\x8b\xe8\xa0\x61\x6a\x11\x33\x61\x22\xac\x46\x18\x2a\x82\x14\x6d\x15\x8f\x25\x0c\x99\x9e\x74\x47\x0f\x35\xe1\x16\x86\xd9\x36\x4d\x0c\x2c\x12\x3d\x82\xe5\x9b\x01\xfc\xc1\x91\xe2\xf8\x11\x1b\x26\x3f\x39\x3c\x7b\x85\x04\x5a\xd7\x48\x40\x14\x44\xdc\x7d\xe0\xff\x09\x62\x4f\xa9\x01\x8e\x53\xf5\x4b\xd3\x07\xf1\xad\xa2\x38\xdb\xc1\xfd\x10\xc4\xbd\x8b\x82\x67\x73\xe5\x40\xd4\xc4\xe9\xfb\x28\x1a\x22\x66\x06\xa9\x77\x41\x47\xd7\xfc\x1e\x6c\x70\xe2\xa2\xc1\x53\x60\xc7\x66\x47\x9c\x5a\x64\x43\x90\x0c\x62\xf1\xd5\x91\xdf\x5c\x37\xf3\xcd\x04\x4b\x66\x2d\x47\xf3\xbe\x18\x1e\x94\x98\xd3\xe2\xf9\x55\xe0\xf9\xec\xa1\xea\xba\x40\x48\x40\x19\x9f\x9c\x6e\x48\x41\xd8\x44\x6a\x1e\x2a\x62\x51\xee\xd7\x23\x17\xdd\xc6\x71\x2b\xbf\xfd\xaa\xdb\xb8\x8e\xbb\x2f\xbb\xfd\xa3\xa7\xc2\xd3\x31\xa9\x42\x5b\xd6\x20\x38\x95\xcb\x9a\x8a\x52\xf5\xef\x38\xa3\x25\x92\xd2\x6e\x8c\xd6\xb6\x0b\x3e\x75\xa4\x8c\x3b\x43\x3c\x1e\x2f\xd4\x85\xea\x19\x45\xa3\x3a\x76\xe2\x1b\x45\x69\xfc\x0a\x69\x2f\x1e\x71\x20\xe8\x45\xbd\x72\x08\x61\x3b\x5f\x7c\xbd\xfe\x98\xf6\xe6\x05\xd7\x88\x67\x0c\x75\xbc\xd1\x5d\x6f\x8c\xf4\xce\x22\xf1\xcd\xef\xb0\x9b\xce\xaa\x17\x1c\xcd\xa9\xa1\x5f\xee\x7c\x8b\xa9\xfa\xcb\x17\xbf\x8f\x9c\x7d\xdc\x75\x03\x7c\xd8\x4b\xe6\x35\xce\x3b\x3c\xec\xe4\x9d\x25\xc2\x6d\x36\x3e\x3e\xff\xf7\xdc\x0a\x9f\x3e\x5f\x60\x1d\xf0\x60\xa6\x2f\x6c\xca\x86\x3f\x6f\x50\x60\x1d\xc2\xf0\x25\x4a\x86\x67\xb8\x1e\x73\x7b\xbc\x40\xd4\x0f\x3b\xcd\x11\x2e\x84\x7b\xcf\xf4\x38\xcd\x02\xc2\x0c\xd2\x3d\xeb\x83\x77\xa6\x1e\x18\x7a\x20\xf9\x0d\x71\x67\x32\x67\x58\x3e\x6e\x23\x76\x86\xb6\x54\x77\xc4\x73\x81\x0f\x97\x4e\x58\x5b\x94\xb8\x25\x7c\x26\x5f\x2e\x47\x75\x2d\x8d\xbc\xea\x3b\x21\x51\x35\x71\x81\x21\x48\xd5\x5d\x4f\x71\xcd\x17\x25\x69\x52\x6e\x77\x3c\x85\xb9\x0b\x33\xc7\xd3\x24\x80\x2a\x6e\x6a\xaf\x20\x21\xff\x32\xac\x4b\x5e\x18\xd0\xdd\xf3\x4d\x73\x48\x64\xeb\x9c\xc1\x27\x5b\xa2\x40\x6a\x4a\xdc\x25\x49\x63\x19\x45\x43\x8d\xa4\x72\x8f\x5b\x83\x51\x8c\xf3\x07\x37\x87\xb1\x73\xb8\x3b\xc3\x16\xd4\x95\x05\x50\x48\x0d\xb8\xac\xc9\x72\x7d\x48\x1c\x33\xad\x15\x02\xac\x6f\x56\x24\xd1\xa8\xdd\x10\xe2\x6b\x1a\xe6\x7e\x8e\x9a\x3b\x31\xfb\x16\x62\x7c\xa9\xe1\x4d\x82\x34\x49\x2b\xf2\x8a\x8a\xeb\x87\x7b\xa2\xc7\xf7\x23\x84\xf8\x9a\x7e\x70\x2b\x8f\xe0\x27\xca\x93\x78\x57\x7f\x48\x39\xd4\x90\x65\xd1\x41\xfe\xb0\x8b\xfe\xea\xec\x4d\xb0\x5f\xc3\x79\xa4\x18\xc8\x1f\x6c\x4e\x1e\x6f\x9c\x92\x23\x87\xbc\x13\x22\x82\xf8\xf8\x4c\x46\x69\xf9\xf2\x12\xe7\x99\x46\x49\x07\x1a\x78\xef\x78\xb0\xa9\x5d\x48\xfb\xe5\x45\x3a\xc8\x58\x17\x2a\xd7\x49\xe6\x97\x37\x5e\x81\xb3\xf8\x24\x22\xdf\x85\x5b\x06\x04\x3c\x9b\xc9\x42\x22\x5c\xbb\x35\xce\xac\x2e\x68\x75\x5c\x99\x63\xd5\x80\x72\x2c\x7a\x0c\x67\xbc\x33\x94\xce\x02\x63\x2b\x33\xe5\x13\x93\x59\x9d\x6b\x01\xa0\xb6\xf9\x6d\xe4\xbc\x03\x1f\xdd\x6d\xfc\xc0\xe1\x1d\x3b\xf6\xb8\x2b\x7e\xaf\x96\xb0\xd1\x8e\x60\x8e\x1a\x65\x66\xe1\x52\x1f\x13\x88\x27\xbb\x55\x0b\x5f\x72\x9b\x6b\x66\x16\x01\x29\xa0\xc2\x5f\xdc\x28\xdd\x1b\x5e\x9e\x1b\xe0\xf4\x98\x2a\x7a\x70\x17\x53\xf8\x86\x0e\x80\x6d\xdc\xdd\x03\xb0\x05\xb9\x5f\x43\xdd\x08\x58\xc0\x5d\x1d\xd1\xc7\xb7\xbe\xbe\x23\xe0\x1b\x5f\xd9\x91\x13\xeb\x85\x86\x5c\x2d\x8a\xc9\xf5\x7f\x57\xff\x06\xea\x0e\x88\x33\x8a\xe9\x3b\x20\xf8\xe8\x65\x58\x47\xf4\x81\x1b\x9b\x55\x0b\x87\x09\x75\xab\xd3\xed\xcc\x57\x55\xd3\x14\x42\x95\xad\xfb\xd0\xf5\x2e\x0e\x6b\xc0\x5e\x5f\x7d\x7b\xab\x22\x09\x0f\x2e\x8e\xaa\xe0\x3d\x6e\x44\x09\xc3\x11\xb0\xc4\x79\x7e\x0f\xb4\x7f\x38\xf2\x02\xb5\x3c\x0c\x27\xc7\x60\x5d\xf4\x50\xf1\x38\xe4\xee\x9d\xe1\x8e\xe3\x30\xcf\xc3\x78\xdf\x9d\x44\xf7\x59\x99\x2c\x67\x6f\x6f\x25\xea\x69\xc4\x8c\xf5\x96\x70\xb0\xc5\x33\x88\x0b\x8e\x74\xd9\xd4\x95\xf8\xb4\x5c\xc8\x17\x8d\x3d\x61\x53\x8c\xda\x61\x38\x42\x96\xbf\x25\xe8\x47\x07\xe3\x22\xdb\x98\x54\x10\x90\xef\x20\x3f\x08\xbf\x0b\x57\xf6\xd6\x02\x0a\xfb\x1a\xd0\x13\x98\x30\xf7\x41\xcf\xb4\x1f\xa8\x74\xdf\x4d\xb5\x98\xf1\xc1\x68\xaa\xc7\xc2\xee\xdd\x58\x66\x12\x1c\x63\xb2\xe0\x18\x93\xf2\x12\xdf\x49\x90\x10\xe1\x3c\xcc\xd8\xb9\x68\x7e\x51\x72\xbc\xf1\xf9\x74\x84\x90\x88\x93\x38\x6e\x44\x94\x90\x2f\x46\xad\x98\x01\x3b\x4c\x33\x17\x39\x9f\x62\xce\x72\x51\xed\x71\x44\xb7\x30\x4b\x3c\x0c\xa3\x24\x7d\xed\x2b\x1e\x89\xd8\x54\xc3\xb4\x4d\xb3\xe2\xa8\xdb\xf6\xb6\x63\x30\x3c\x95\x9d\xe3\x3a\xcd\x5b\x3a\xaa\x02\x37\xc9\xc2\x14\x9c\x6b\xf5\x79\x17\x97\xc6\x12\x0c\x13\xf4\x16\xee\x08\x90\x74\xea\x7c\xb1\xc6\xf8\x67\x53\x84\x64\xaa\xb1\x23\x26\x7d\xf8\x78\x02\x52\x5e\x64\x4b\xed\xfd\xb5\x49\x18\x7e\xf9\x16\xcf\xdd\x05\xb9\x7c\xfb\xa0\xce\x34\xe8\x5d\xa3\xf1\x6a\xf8\x2a\x82\x0b\x70\x97\x5e\x62\xc5\x75\x77\x16\x0a\x76\x31\xbe\xc3\xad\x41\xf5\xb4\xa4\x48\x1c\x77\x6c\x67\xbe\x66\xdd\x18\xd5\xe1\x23\xf7\xba\x5a\xe7\xe5\x04\x96\x6e\xcc\x23\xc4\x11\xc9\x57\xd5\x31\xe8\xa5\x87\x70\xd5\x7c\x7b\x57\x61\x3d\xe3\x20\x18\xb0\xc8\x45\x9d\x8c\xd8\x9a\x81\x7c\xa1\x86\x41\x17\x27\xab\xf8\x86\x4e\xf2\x13\x91\xab\x85\x7b\xd8\xee\x9c\x83\xa9\xb6\x73\x0e\xb7\xc1\x7b\x58\xb9\xb0\xdb\x52\x91\x05\x6e\xba\xf8\x5d\x3d\x43\x87\x58\xe7\x9e\xaa\xfe\x58\xdf\xda\xb2\xbb\xad\x17\x19\xde\x37\xec\xd6\x7a\x50\xf9\xb6\x14\x5b\xf9\x83\x19\xa5\x3d\xca\x35\x66\x52\x89\x23\xbd\xee\x81\x44\x9b\xfe\x7e\x41\xe9\xf0\x1f\xa6\x2d\xee\x21\x78\x22\x4a\x9b\x00\x47\xe2\x59\xff\xc3\x9d\x0d\x0d\xc6\x12\x30\xc4\x00\xb7\x2d\xba\xc2\xef\x23\x7f\xc5\x08\x82\x43\xf2\x70\x18\x4c\x06\xba\xfa\xc1\x2b\xc2\x67\x15\x18\x71\xdf\xb3\xc3\x03\x87\xc7\x65\x6f\x0e\xf5\x92\xd2\x0d\xcd\xde\xaf\x54\xe3\xd1\x91\x01\x85\xed\xde\x31\x43\x0f\xa2\x5e\x7c\x79\x8c\xe1\x26\x24\x2f\x06\xef\x77\x78\x2f\xde\x3d\x15\xfc\x0e\xbf\x43\xa6\x20\x91\xae\xb3\x55\xd3\x36\x34\x3d\x12\x51\x44\xa3\x5f\xbf\xb0\xb4\x6e\xa2\x00\x4c\xe0\xb7\xd9\x5e\xa3\xc0\x58\x99\x0b\x24\x93\xfc\xc0\x21\x61\x7c\xa9\xbe\xe9\xf3\x8d\x95\x61\x0b\xe4\x42\xed\xd6\x37\x9c\x61\xa5\x4e\x2d\x23\x28\xa9\x65\x9a\x39\xbb\xea\xa3\x88\x02\x5f\x6a\x4a\x00\x8b\x63\x0e\x0e\xd3\x41\xe8\xda\xef\x32\x1e\x2a\xe2\x09\x48\x72\xfa\x1a\xc9\xe9\x0d\x27\x8f\x5b\xb0\x5e\xb9\x62\x83\x4e\x1d\x2b\xc7\x57\xb7\x87\x65\x9e\xf3\x0d\xef\x21\xbc\x61\x6e\x5d\xe6\xbb\x11\xde\x5e\x52\xe2\x08\x6b\x80\x1c\x23\x00\xb0\xc7\xb1\x10\x96\xaa\x0a\x28\x56\x61\x89\x57\x94\x74\x0c\x1a\x1e\x00\x43\x78\xbc\xe4\x7e\xa4\x84\xee\xd9\xc3\x5e\xe9\x99\xcd\xa8\x57\xcd\xfc\x6f\x78\x7e\x5c\xa1\x2f\xe5\x67\x00\x35\x6f\x9a\x9e\x1f\x43\xdc\xb1\xb8\x05\xcf\x2c\x41\xd3\x33\x4b\x67\x71\x6b\xf1\x71\x84\x29\x81\x1e\xa3\x4a\xa0\x8f\xe3\x6a\xcb\x31\xd6\xa8\xad\x76\xbf\xe0\x77\xda\x3b\xd7\xe0\xc5\x35\xc7\x66\xbb\x76\x19\xa3\x16\x47\x25\x43\x0a\x1d\x16\x9e\x6a\x79\x41\x42\x44\x39\xd9\xf4\x19\xe7\xdc\xd9\xf6\xa8\x6c\xd8\xf8\xa8\xf8\xd4\x4a\xc1\xe3\x0e\x6c\x74\x9e\xef\x17\x1f\xcb\x9e\xaf\xfb\xac\x33\x9c\x30\x87\x75\x5d\x19\x58\xfa\x0c\x60\xe9\x4b\x02\x4b\x6f\xe4\x0d\xf1\x71\xad\xb4\xe9\x6c\xcb\x3e\x87\xa7\x40\x50\xcb\x8b\x33\x9a\x01\x4e\x2e\xf2\xa9\x52\xb0\xce\x64\x2a\x65\xeb\x2a\x64\xc1\x27\xa8\x41\x5f\x37\x17\xc1\xfb\xd4\x81\x4c\xd5\xc6\x6a\x80\xec\x7e\x8b\xdb\x85\xbc\x5c\xc0\x8a\x01\xf5\xe1\xad\xa4\x04\xb0\x08\xc1\x4c\xb0\xc6\x23\x71\x28\x8e\x58\xcc\x04\x7e\x13\x33\x4a\xe1\x60\x1e\x58\x18\x17\xc1\x5d\xf1\xbd\xe2\x29\xc0\x5d\x2e\x8b\xe9\x28\xa4\x35\x6f\x80\xd6\xf2\x10\x4e\x1b\xed\x04\x95\xc2\x56\x44\x53\x13\xbf\x79\x8d\x64\x4c\x34\x07\x1f\x25\xb8\xcd\x5b\x1c\x63\x4e\x53\xd8\x2f\xbe\x6d\xab\x60\x22\xbd\x42\x66\x95\x14\x93\xb7\xf0\x6e\x93\x7d\x5b\x5e\x14\x01\x43\xd2\xa2\x87\x76\x35\xcd\xae\xa5\xba\x48\x3e\x9a\x1e\x46\x6a\xd0\x1a\x21\x98\x9a\xcb\x4a\xfc\x86\xa1\x7a\xae\x08\xa0\xc4\x15\x94\x93\xa4\x4d\x58\x18\x4a\x83\x49\xe1\x71\x05\xaf\xa1\x4f\x04\x63\x3b\xfa\x06\x8a\x45\x8f\xfd\xca\x67\x50\xfc\x68\x02\x1c\xe3\xa0\x3b\xc6\x6e\xd5\x65\x21\x3a\x87\xc1\x67\xf3\x01\x7a\x19\x5c\x31\x1c\x81\xe2\xe4\x3b\x7c\xb5\x37\x38\x7e\x34\x94\xe3\xa0\x0f\xcf\x8d\xab\x23\xdf\xa8\x86\xa0\x4c\xf0\x46\x3b\xbb\x4f\xca\x35\xce\x29\x14\x79\xeb\xa0\x61\xc8\x3d\x27\x03\xe8\x3b\x8f\x96\x62\x5c\x4c\xbf\x72\xf5\xff\xe4\xa1\xaf\xb0\x03\xfe\xb9\xaf\x23\xed\xff\x87\x3c\xf7\x35\xb4\xcc\xba\xf7\xbe\xf0\x9e\xd1\x0c\x17\x5f\xe2\x75\x1c\x1d\x5c\x45\xeb\x19\x25\xc2\x75\x8a\x84\xf8\x28\x1f\x49\xde\xec\x6b\x16\x5f\xb1\xda\x60\x89\x0e\xdb\x0b\xee\x2a\x45\xad\x49\x89\x71\x50\xe3\xb8\x0b\x92\x32\x3e\x2d\x92\x74\xb5\x46\xa4\x1a\xd2\xb2\x54\xeb\xd1\x0c\x26\x09\x3d\xa2\xb1\xb4\x61\x04\x46\x18\x93\x74\x69\x0f\xba\x1c\x2f\xee\xa8\xd7\x52\x48\x82\x28\xd8\x35\xa8\x49\x66\xa2\x80\xc1\x50\x24\x25\x8c\x80\x26\x29\xf2\xbe\x0d\x1e\x7c\x94\x2f\x4d\x1f\x7b\x61\x04\x3d\xd6\x6a\xe2\xa6\x83\x4a\x01\x34\xc9\xab\x82\xbe\x0c\xfd\x53\x25\x15\x77\x83\xd8\x99\xb6\xeb\x35\x65\xa7\x8f\xe5\x72\x54\x33\x49\x81\xb2\x5f\xc0\xcb\x8d\x75\xfb\xf3\x37\x61\x7a\xf0\x26\x0e\x72\xdd\xa3\x38\x3a\x2e\xde\x5c\x34\x06\x0b\x36\x15\x8d\x1b\xf9\x8c\xfd\x76\xb4\xf7\x7d\xdf\x56\xf3\x3d\x9f\x8f\xa9\x3f\x00\x13\xb5\x1c\xa4\xbb\xbc\x11\x6c\xb7\x37\x77\xfb\x6b\xfd\x3a\x0e\x3b\x78\x6e\x77\x00\x27\xf1\x5e\xac\x7f\x12\xed\xc5\xaa\x80\x79\xd9\x01\xc8\xa1\x53\x04\xb1\x65\xe6\x9a\x75\x39\x2f\x0f\xe2\x4d\x45\x7a\x7d\xaa\x39\xdd\xb6\xdf\x59\x18\xe0\xeb\x8b\x9b\xab\xe3\xd3\xc7\x90\x3a\x0f\x00\x0c\x26\x83\xb3\x74\x42\x90\x15\xcc\x8a\x3e\x1d\xd5\xcb\xab\x3e\xf2\x6c\xd2\xcd\xeb\x6b\xfa\x5c\xb4\xb7\x72\xd2\xa4\x75\x7c\xac\x76\x0c\xa6\xef\x34\x72\x55\x94\x02\xd8\x3f\x23\xc5\x26\x9e\x8f\x24\x48\xc5\xab\x16\x6e\x26\xae\x4e\x2f\xa0\xf5\x51\x52\x48\x4a\xda\x34\xa2\x9a\xd8\x03\xef\xbe\x13\x34\xce\x46\x1f\x78\x57\x8b\xac\x2e\x06\x7e\xa0\x90\xbd\x8b\x77\x9d\xd5\x13\x84\x91\x18\xac\x2b\x7d\x8a\x4a\xa7\x61\xb4\xdb\xc5\xa6\x61\xec\x64\x6e\xd7\x0b\x17\x54\xb8\x19\x47\x0d\x7c\xe5\xc3\x51\x61\x5d\xc1\xae\x75\x47\x5f\x27\xef\xa1\xc7\x11\xa0\x43\xc0\x4c\x16\xb8\x85\x9b\x8f\x2a\xf6\xaf\x0b\x8c\x0a\x44\x71\xe7\xa3\x42\xd3\x7e\x06\x77\x45\x9c\x17\xab\x83\x69\xfb\xce\xa8\xae\xda\x7e\x6c\x5b\x57\xd8\x7c\xb7\x73\xfc\x26\x78\x08\x00\x24\x12\x80\x7c\x92\x55\x13\x40\x10\xc1\x75\x83\x7a\xe4\x42\x4c\x08\xc4\xf7\x62\x14\x60\xc8\xb4\x34\xb9\x59\x2e\x39\x56\x0e\x47\xdb\xd2\x80\x0d\x08\x9d\x73\xc1\x1e\xa6\x56\x52\xae\x79\x65\x6c\x7e\x80\x3a\xcf\x63\x3a\xd7\xbb\x5f\x6f\x91\xc8\x92\x9c\x81\xb7\x7b\xf7\x68\xe5\xdb\x3d\xb4\xd5\x36\xcc\xd2\x86\x38\x2b\x6c\x04\x5b\x60\x4b\x7a\xa5\xc5\xab\x0e\xf6\xbf\xb7\x94\x4c\xdc\xb0\x5f\x3b\x04\xb3\x4d\x7f\x91\x49\xf8\xde\xa0\x0c\x4e\x14\x16\xf0\x13\x1e\x17\xa2\x7e\x8f\x4b\x50\xbf\x8f\x80\xcb\x29\xb3\x6d\x18\xd7\xf8\x25\xac\xc6\xf5\x98\x7d\xd7\x94\x8a\x6c\xc0\x92\x36\x7c\x4f\x35\xc4\x41\x31\xf7\x84\x71\x6e\xa7\x10\x93\xa4\x41\x90\xe1\xae\xe7\x53\xc3\x9d\xc6\xa7\x86\x7b\xa6\x4f\xd5\x8e\x0d\x7a\xd0\x75\x1b\x9b\x88\xeb\xeb\xd7\xf1\x6c\xfb\xdc\xe0\xcd\x00\x76\x7e\xb9\xc7\x61\xf7\x56\xa4\xc2\xde\x4b\xf9\xf6\xd3\x0f\x41\x09\xc5\x66\x88\x3f\x4d\x1d\xd6\xd1\xfd\xb1\xa9\xfa\xf2\xe7\x41\x15\xc6\x2c\xa3\x25\x53\x2d\x8e\x20\xc6\x18\x65\xfc\xc2\x58\x2a\x77\x46\xab\xb6\xb4\xed\xe9\x2c\x70\xe2\x1c\x11\xb3\x67\xb6\x8e\x94\x43\x46\x6b\x1d\x63\x9f\xf9\x36\xc8\x20\x0d\xbd\xef\xe5\x39\x24\xf6\x3b\x7b\x6b\xd5\x3c\x43\xb2\xef\xa1\x04\x0b\xb4\xe0\x81\xea\xa2\x6c\xfd\x43\xec\xbf\x57\x35\xbc\xda\xad\x08\x86\x02\x47\x54\x84\xdc\xe1\xfe\xbf\x09\xdc\x52\x0d\xcc\x9e\x39\x84\xc9\x61\xf4\x22\x22\x6c\x0d\xfa\x20\xa2\x31\x06\xb9\x43\xc5\x0e\xe4\xd9\x46\xed\xeb\x72\xcf\x0a\x6e\xe4\xe9\x6b\x18\xd4\x5d\xbf\x89\x9b\xfb\x77\xf4\xa2\x42\x6f\x39\xcf\x3f\x45\x3e\x2e\x6c\xd7\x2f\xdd\x24\xda\xf5\xa6\xc9\x49\xfc\x63\x5f\xee\xa9\xf2\xb2\x5e\x81\x74\xfe\xc4\x3f\xd3\xd7\xf8\xe9\xe6\x4a\xee\x2d\x41\xdd\x66\x6f\xe9\x27\x76\x93\x09\x5a\x37\xa5\xb8\x59\xfa\xe2\xbe\x1c\x20\x39\xe4\xcc\x17\xf8\x3d\xdd\x41\x85\x1d\x8b\x99\x71\xbe\x11\x14\xd1\x79\x13\x10\xd3\xcb\xdf\x5e\x5f\x0e\x20\x27\x16\xa8\xe6\x4c\x2c\x68\xcd\x99\x58\xbe\x72\x56\xe4\x86\x80\xf3\xa1\xe9\x11\x08\xe4\xd1\x01\x08\x0d\xf9\xa3\x5f\x10\xcf\x64\x45\x4a\x6d\x45\xbe\x93\x15\xa3\x74\x26\xbf\x63\xa0\xe0\x69\x09\x81\xb2\x97\x25\x46\xad\xd6\x61\x9b\xb5\x9c\x73\x78\x7e\x20\x3e\x08\x01\x3f\x10\x5f\xde\xc9\xee\x19\x34\xe9\xc4\x9f\xaa\x42\x1f\xe1\x10\xf8\x2b\x4d\x32\x50\x03\xf1\x35\x1b\x84\x56\xed\xba\x49\x84\x5b\x39\xe9\xed\x0c\xbf\xa2\xa9\xd3\x85\xc8\xeb\x45\x60\xfd\x32\xe4\xf7\x15\xa5\x84\x01\xaf\x16\x0e\x31\x66\xb1\x7a\x71\xe6\x1f\xdd\x80\x71\x6b\x30\x98\x4d\xb5\x2c\x9d\x29\x4c\x47\xf3\x9a\xd2\x22\xe0\x75\xdf\xef\x3a\xbb\x8b\x8a\x27\x22\xd2\x4b\xfa\x31\x18\x44\x58\x95\x8e\x64\x54\xd3\xae\x82\x79\x32\xc0\x8b\x24\x4c\x63\xdc\xa0\x95\x6f\x07\xe0\xca\xb8\x87\xec\xd6\xde\x78\x0e\x56\x88\x7f\x70\xd5\xef\xcf\xae\x75\xde\x97\x27\x5b\x66\x28\xdd\xb9\x18\x06\x3b\x97\xb9\x23\xcc\x16\xad\xc4\xc5\xe2\x7f\x37\x7c\x50\xec\x72\xc2\xb5\x67\x69\x1d\xd1\x5e\xb1\x97\xdb\x3c\xfa\xe9\xe1\xbd\xfb\x82\xa0\xc9\x32\x26\x02\x23\xc7\x00\xe5\xe7\x72\xb1\x0f\xce\x2d\x7e\x93\xdf\x6a\x28\xf4\xd5\x34\xe6\x7d\xb8\xaf\x11\x14\xfb\x4a\x52\x02\x98\xa9\xe0\x78\xd6\x75\xf8\x50\x9a\x2f\xe5\xd1\xf6\x5d\xf3\x50\x93\x18\xca\x5c\x3a\xcc\x8d\x42\x7e\x66\x1b\xb9\xdc\x31\xf0\xf2\x30\xd8\x50\x0a\x09\xd3\x10\x60\x27\xf0\xa8\xb1\xbc\x89\x8e\x5b\x56\xb3\x63\x96\xb5\x9b\x05\xb0\x10\xc5\x83\xa7\xe2\xa4\x0f\x92\xff\x25\x1f\xae\xe4\xbd\x38\x4d\x7c\x18\xbc\x8c\x63\xf6\xcd\xc0\x4f\x27\xba\x60\x74\xbf\xd3\xab\x45\x75\x10\x53\x4b\x7e\x15\xa3\x37\x2f\x2c\x24\xe8\x8f\x3e\x54\x68\xf4\x4c\xe5\x30\xe0\xb6\x0b\x80\x8c\x5a\xd9\xf1\x49\x82\xab\x07\x3d\x78\xd4\xb5\x8b\x47\xf7\xc3\xd8\xc6\x6c\xc8\x0a\xaa\xfc\x71\x50\xa5\x8c\xce\x82\x44\xff\xae\x81\x99\xe5\x77\x58\xaf\x58\x6b\xa4\xea\xee\x9f\x82\xc8\xc9\xc3\x38\xd3\x41\x2c\xed\xa6\xfe\x96\x8a\x5c\x58\x1d\x1d\x9f\xfd\x1e\x60\x5b\x70\x36\x8d\x30\x3f\x01\xb8\x27\xce\x17\x88\x3c\x9e\xe8\xc7\xdd\x88\x8a\x71\x3f\x44\x94\x46\xa4\xfd\x29\x88\xc2\x8a\xbb\x83\x92\x51\x75\x1a\x29\x51\x1e\x4d\xfd\xc9\x3d\xba\x91\xbc\xe7\x60\xa1\x1f\x92\x7c\xc5\x63\xa2\xbf\x09\x5e\xb5\x11\x37\x63\x50\x01\x7d\x26\xf2\x93\xbf\x7e\xe4\x8a\x7f\x24\xdd\x77\xc1\xd1\x46\xef\x77\xc9\x8f\x5b\x24\x6c\x49\x13\xa4\xc5\xce\x09\x6b\x24\xf0\x73\x4a\xf8\x59\xe0\x67\x91\xdf\xe2\xd7\x01\xbf\x0e\x65\xf9\x51\x0a\x83\x6f\x51\x71\xd2\x25\xd7\x48\xb9\xc5\x6f\x8e\x3f\xc9\x3f\xa5\x1d\x8d\xb3\x6c\x3f\x10\x24\x94\x9b\xd3\x74\xfb\x41\xe9\xf2\xfe\xed\x13\xff\x14\xee\x7d\x3e\xd6\xbb\xd5\x24\x7c\x51\x0a\x37\xaf\x49\xf2\x79\x1f\xcc\x87\x34\x64\xad\x50\xbe\x29\x95\xfb\xa1\x89\xf2\x49\x69\x6d\x7e\xc8\x7c\xbf\xf4\x0b\xa9\xbe\x57\xfa\x45\xe8\x2d\xda\x66\xc7\x01\x03\x3f\xb8\x37\xaa\xfc\x9b\x25\xe7\x94\xa7\x41\x51\x10\x25\x8e\x2f\x1e\xf2\x43\x40\xf2\x52\x1e\x5f\xcb\x9b\x25\x16\xc8\xb3\xaa\x77\x7b\xa7\x95\xf9\x68\xb3\x02\xe6\x23\xab\x88\xaf\x29\x3f\x44\x20\xaf\xb4\xd0\xec\x66\x73\xec\x2c\xd0\xf6\xba\xea\xef\xe5\xf7\xff\xfa\xaf\x00\xa7\xcf\x7f\xfb\xb7\xf4\xe2\xd9\x0f\x69\xf9\x99\xe3\x44\xf1\xc3\xef\x9f\xab\xed\x7e\x6b\x50\xf4\xf3\x79\x04\xc8\x97\xf1\xe0\x35\xa8\x16\x78\x7d\x2c\x13\x66\xf7\xff\x1b\x00\x00\xff\xff\xac\xf8\xb5\x51\x86\xa2\x00\x00") +var _confLocaleLocale_enUsIni = []byte("\x1f\x8b\x08\x00\x00\x09\x6e\x88\x00\xff\xc4\x7d\xfd\x72\xdc\x48\x8e\xe7\xff\x7c\x0a\xb6\x37\x7c\xee\x8e\x90\xcb\xd1\xdd\x71\x1f\xd1\x61\xbb\x4f\x96\xda\x1f\xbb\x96\xa5\xb1\xe4\x99\x9b\x73\x38\xd8\xac\x22\xab\x8a\xe3\x2a\xb2\x9a\x64\xb9\xac\xd9\xd8\x88\x7b\x8d\x7b\xbd\x7b\x92\x03\x7e\x00\xf2\x83\x64\xc9\xf6\xec\xc6\xdd\x3f\x12\x2b\x13\xf9\x85\x44\x22\x01\x24\x12\x99\xef\x76\x59\x51\x76\x8b\xf4\x49\x7a\x9a\xee\xf2\xaa\xde\x94\x5d\x97\x76\xe5\x66\xf9\x70\xdd\x74\x7d\x59\xa4\x2f\xaa\x9e\x7e\xb7\x9f\xaa\x45\x99\x24\xeb\x66\x5b\x12\xe8\x4b\xfa\x97\x14\x79\xb7\x9e\x37\x79\x5b\x50\xc2\xb9\x7d\x27\xe5\xe7\xdd\xa6\x69\x19\xe8\x37\xf9\x4a\xd6\xe5\x66\xc7\x65\xe8\x5f\xd2\x55\xab\x3a\xab\x6a\xfa\x79\x4d\x5f\xe9\xab\x3a\xe9\x9a\x45\x95\x6f\xb2\x20\x03\x09\x96\xff\x4b\xfa\x53\x5d\xa4\xd7\x7d\xb9\x4b\x1f\x77\xdb\x7c\xb3\x79\x9a\x77\x28\xd2\x97\x69\xbe\x58\x34\xfb\xba\x7f\xfc\x48\x32\xa4\xf2\x66\xdf\x5b\xed\x97\xfb\x5e\xd2\xf6\x3b\x4b\x7a\xb7\x4b\xda\x72\x55\xd1\xc0\x5a\x4a\x7a\xab\x9f\xc9\xa1\x9c\x77\x55\xcf\x9d\xfe\x8b\x7c\x25\x9f\xca\xb6\xab\x1a\xee\xcf\x9f\xe5\x2b\xd9\xe5\x2b\x06\xb8\xa2\x7f\x49\x5f\x6e\x77\x9b\x1c\x05\x6e\xf4\x33\xd9\xe4\xf5\x6a\x2f\x30\xaf\xf5\x33\x59\xb4\x25\x65\x65\x75\x79\xa0\xd4\x33\xfc\x48\xe9\xc7\x6c\x36\x4b\xf6\x84\xd3\x6c\xd7\x36\xcb\x6a\x53\x66\x79\x5d\x64\x5b\xc1\xda\x3b\x4a\x4f\x35\x3d\xa5\xf4\x94\xd3\x31\x8c\xb2\x20\x04\x65\x79\xa7\x63\xa1\xa9\x21\x7c\xe5\x5d\x82\xaa\xea\x7c\x6b\xa5\xf9\x33\x29\xb7\x79\xb5\xe1\x49\x78\xc8\x1f\xd4\xf9\xae\x3b\x34\x98\xaa\x2b\xfd\x24\x44\x64\xfd\xed\xae\x04\x1e\x1e\xde\xd0\x57\xb2\xc8\x77\xfd\x62\x9d\x73\x5f\xe5\x2b\x21\xa0\x5d\x43\x08\x69\xda\x5b\xc0\xd9\x8f\xa4\x69\x57\x79\x5d\xfd\x3d\xef\x05\x49\x97\xc1\xcf\x64\x5b\xb5\x6d\xc3\xf8\xbd\xc0\x47\x42\x23\xce\xb8\x1e\x4a\x79\x43\x98\x08\x6a\xe1\x9c\x6d\xb5\x6a\x05\x95\x9c\x79\x81\x5f\x5c\x0b\xe7\x2d\x9b\xf6\xa3\x66\x3c\xe7\xcf\x41\x51\xea\x84\xe6\xc6\xed\xe7\x35\x21\x5f\x73\x2f\xf0\x23\x02\xe8\x92\xbc\xd8\x12\x2a\x77\x79\x5d\x32\x8e\x4e\xf9\x17\xe1\x85\x7e\x25\x4a\x53\x59\x57\xf6\x7d\x55\xaf\x18\xd9\xa7\x92\x94\x5e\x6b\x52\x12\xe4\xb9\xb4\xdb\x66\xef\xa6\x93\xd2\xff\x4a\x3f\xd3\x2b\xf9\x29\x79\x41\x21\x64\xba\x92\x3c\x92\x2e\x5b\x96\x65\x21\x63\xe9\xd2\xe7\xf4\x9d\xec\xf6\x9b\x0d\x61\xed\x8f\x7d\xd9\xf5\x5c\xe8\x8a\x7e\xd3\xf8\xe5\x77\x52\x75\x1d\x7d\x50\xf2\x2b\x7c\x24\x34\x75\xf5\x02\x83\x39\xc3\x47\x92\xbc\xef\xca\xbc\x5d\xac\x3f\x24\xf2\x1f\x7d\xe5\x0f\xa6\xbd\x63\x93\xca\x84\xa4\x44\x24\x2d\x58\x03\xc9\xa2\x29\xf8\xc7\x19\xfd\xa3\xaa\xab\xba\xeb\x69\xc5\x7d\x48\xf4\x83\xc1\xe4\x4b\x26\xa0\xaf\x7a\x60\x41\x13\xb1\x7c\x3b\x9e\xc1\xf4\x79\xd5\x76\xfd\xc3\xbe\x22\x62\x7d\xbb\xaf\x13\x1e\x1f\xad\xb6\xac\x98\x1b\x13\x7a\xd1\x10\x8a\x90\xdc\xd2\xf8\x2e\x6e\xaf\xff\xf4\xfa\x24\xbd\x22\x4e\xb4\x6a\x4b\xfa\x4e\xa9\x0e\xfa\x47\x65\x7e\x9e\x25\x54\xca\x5a\x3a\xcf\xfb\x7c\x9e\x77\xa5\x47\x2b\x67\x0a\x75\xbb\x3c\xd0\x38\x73\x35\x70\xb0\xae\x8f\xc6\x3b\xb5\x42\xa8\x0e\x5d\x57\xae\x8e\x37\xbc\xb8\x28\x9d\x99\x1a\x0a\x5f\x6d\x4a\x4e\xa7\xaa\xd2\x57\x6f\xde\x5c\x9e\x3f\x4b\xcb\x7a\x55\xd5\x65\x7a\xa8\xfa\x75\xba\xef\x97\xff\x2d\x5b\x95\x75\xd9\x12\x8f\x5b\x54\x29\xad\xa9\x96\x28\x21\x25\xc2\x96\xc1\xcd\x92\xae\xdb\xd0\xda\x07\x7a\xaf\xaf\x5f\xa7\x17\x8c\xe2\x5d\xde\xaf\xd1\x91\x7e\x9d\x74\x7f\x6c\x18\x45\xae\xc1\x9b\x75\x99\x82\xca\x00\xd4\x2c\x0d\x1f\x69\xa1\x7d\x9c\x25\x65\xdb\x66\xc4\x96\xfa\xdb\x4c\x0b\x6b\x7d\x43\x48\xa9\x82\x48\xa7\x6e\xfa\x74\x5e\xa6\x28\x33\x4b\x12\xeb\xb0\x61\xf7\x74\xb7\xdb\x54\x0b\x59\xeb\x2f\x24\xcf\x23\x9a\x77\x10\xc5\x52\x08\x07\x44\x59\x5e\x80\x2e\x62\xcf\xbc\x1e\xd2\x88\x81\xa0\xfc\xba\x24\x06\xb8\xde\xaf\x84\xed\x6d\x9a\x7d\xf1\x1d\x28\xd5\x7a\xef\x09\x35\x7d\xdb\x50\x87\x81\x1d\x07\xe0\x9b\x38\x25\x8a\xe3\x4d\xab\x2d\xb7\x0d\xf1\x15\x47\xec\x15\x11\xd4\xa1\xa2\x4c\x1a\x69\x97\x7f\xa2\xf5\xd6\x37\x69\xbf\xae\xba\xb4\x20\x62\x5b\x70\xc5\xb4\x34\xf6\xb4\x5d\x08\x59\x10\x81\x0a\x69\x58\x5a\x3c\x07\x80\xda\xee\x89\x9a\xd6\x54\x19\x6f\x46\xbc\x73\x52\x95\x53\xfd\xc4\x90\xa8\x1e\xd0\x37\x51\x6e\x43\x5c\x99\xf9\xe6\x39\x3e\xf4\x77\x58\x3f\xf5\x2a\x5f\x2e\xa9\x57\x1d\x51\xc5\xcb\x74\xb1\x69\x88\xa4\xde\xbd\x7d\xdd\x31\xc1\xac\xb3\x5d\xd3\x62\x9b\xa3\xac\x2b\xfa\x74\x69\x01\xa2\x19\xa2\xde\x6f\xe7\xf4\xeb\xb0\xae\x88\x03\x00\xed\x5c\x82\x77\x73\x4a\xa5\x26\xf6\x1d\x4d\xe1\x49\x4a\x24\x4c\x23\x20\x94\x81\x00\x78\x0c\x45\xd5\xe5\x73\x9a\x7b\x06\x5f\xd2\xb6\xb5\x6f\x89\xac\xd6\x7d\xbf\xb3\x96\x5f\xde\xdc\x5c\x49\xd3\x2e\xf5\xae\xb6\xf3\x80\x32\x30\x07\x1b\xde\x78\xeb\xb4\xa9\x67\x20\x92\x7d\xbb\x19\xd0\x0f\x8d\xd5\x72\x8e\xe0\x85\xbb\xf0\x88\xff\x5c\x7b\xf4\x00\xcf\x1d\x49\x27\x07\x50\x13\xe1\xb8\xc4\x06\x48\x44\xdd\xec\xb8\xde\x80\xaa\x2f\x35\xc1\x93\x32\x36\x4d\x97\x2f\x5b\x27\xe5\x42\xf6\x09\xd8\xff\x96\x06\xac\x6c\xe4\xfa\x82\xd0\x00\x5e\x82\xd4\x65\xdb\x6c\x29\xf5\x39\xfd\xf3\x09\xbe\xfb\x17\x5c\x1f\x60\xf2\xa2\x20\xfe\xd6\x9d\xa4\x6f\x9f\x9f\xa5\xff\xf9\xe7\x9f\x7e\x9a\xa5\xaf\x7a\x5e\x89\x4c\x9c\x7f\x63\xa2\xa2\x4f\xd9\xc3\x1d\x28\xb1\x8c\x9e\xe8\xee\x1e\xaf\xac\x7b\xe9\x63\xe4\xfe\xf7\xf2\x73\x4e\xf2\x47\x39\x5b\x34\xdb\xa7\xcc\x55\xb6\x79\x3f\x4b\x38\x87\xc8\x55\xe9\xf8\xba\xac\x0b\xfa\x50\x49\x40\xf3\x02\x76\xa7\xf9\x81\x5c\x20\x52\x51\xb6\x68\xea\x65\xd5\xf2\x80\x7e\xab\x41\x0d\x26\x2f\xd1\x3e\x80\x1c\xdb\x6e\x09\x69\xc4\x41\xaa\xe5\xad\x07\xc5\x50\xdf\x70\xa2\x4e\x68\x22\x54\x97\xa9\x28\xe9\xb0\x7c\x2d\xc4\xc8\xf3\x76\x49\xc3\x6b\x0d\xdf\x9d\x47\x78\xb3\x5c\x6e\x88\xa3\x1a\x97\xd4\x16\x2e\x25\x55\x18\x66\x08\x42\xc4\xb8\x83\xc4\x77\xae\x44\x7c\x76\xfe\x26\x2d\x3f\x11\xb5\x11\x39\xd0\x16\x5d\xec\x17\xa0\x30\x86\x3d\x49\x79\x7f\x22\xfc\xd2\xda\x58\x08\x5f\x0d\x98\x04\x77\x8d\x39\xd1\x82\x80\x88\x37\xe8\xa2\xc8\x48\x42\xf9\x44\x1c\xb4\x0d\x9a\x78\x61\x49\xda\xfb\x11\xec\xa8\x53\xae\x04\x8f\x7c\x41\x33\x4e\x54\x21\xbd\xe8\xa4\x53\x92\x4d\xe4\x4e\x74\xbc\x27\x49\x3a\x2f\xa8\x2f\xf3\x5b\xf0\x9d\x8e\x89\xa1\x28\x97\xf9\x7e\xd3\xfb\x7e\xc9\xc4\xb5\x26\x93\x59\x4b\xd7\x2c\xcc\x87\x79\x93\x05\x46\x1d\x04\xf5\x74\xc3\xb2\x44\x86\xf5\xe6\x36\x85\x00\x05\x7a\x15\x11\xd7\x64\xf1\x6e\x96\xe8\xe6\x6d\x12\x7d\xf6\xa9\x82\xf4\xeb\x48\x08\xb9\x26\xde\x33\xaf\xf9\x33\x03\xb0\x58\xdd\x4d\x96\x75\x1d\xbb\xe4\x86\x3b\x27\xf9\x0a\x1e\xb8\x0b\x68\x81\xc5\x73\xc2\xdc\xa7\x0a\xac\x57\x27\x11\x7d\xa5\x99\x44\xd3\xd4\x54\x57\x96\xa8\x81\xca\x3f\xa2\x3a\x51\x66\xa6\xd2\xa0\x0a\x68\x26\x88\x90\x90\x96\x16\x4d\xca\x3b\x23\xf8\x3b\x95\xb6\xa1\xd6\x3a\x7c\x1d\x73\xda\x56\xab\x35\xf1\xbb\xe6\x70\x22\x48\x3b\xac\x9b\x92\x69\xfa\xd5\xf9\x93\x1f\xa5\x1f\x2b\xe6\xf6\xae\x10\xef\x13\xf9\x9e\x26\x9c\x30\xaa\xa4\x25\x5d\x70\xfb\x2d\x20\x47\x72\xa7\x00\x0d\x25\x7d\x93\x65\xc7\xe2\x8b\xae\xdf\x30\x4f\x17\xae\x87\x91\xd2\x03\x6d\x41\xc5\xba\x6c\xd5\x40\x5e\x35\x31\x8e\xf7\x2e\x52\x7d\xba\x3e\x5b\x55\x7d\xb6\x64\x46\xc2\x75\x3e\xe7\xb2\xbc\x95\x52\x4e\xfa\x80\xb2\x1e\xa4\xc4\x8d\x48\x08\x2f\x7e\x49\xef\x7f\x52\xf9\xe5\x67\xe6\x10\x19\xd1\x74\xb5\xc1\x64\xa8\x14\xdc\x96\x22\x3e\x99\xba\x55\x34\xb4\xfe\x18\xe7\xdd\x7e\x87\x9d\x46\x45\x96\x93\x74\x27\x80\x45\x73\xa8\x79\x2d\x80\x15\xd2\xaa\xaf\xa0\x2c\xce\xab\x3a\xa7\xed\xd6\x6a\x01\x8b\xbd\x4f\xd4\xf0\xe6\xf2\x06\x80\xab\x66\xbe\xaf\x36\x85\x01\xcc\x68\x84\x9f\xf2\x4d\x55\xb0\xe0\xa9\xf3\x1e\x0a\x79\x96\x54\x49\x5f\x16\x4d\xcb\xf2\x01\x46\x63\x05\x8f\x08\x26\x2d\x6f\xf8\x48\xa6\xb2\x0a\x8b\x72\x4e\x86\x60\x34\xd0\xc4\x43\x22\x67\x09\x03\x14\x53\x75\xf5\x83\x1e\x3d\x5d\xec\xa9\x2d\x9a\x74\x4e\xa6\x82\x5d\xfa\xf0\x29\xfd\x4d\x58\x5e\x11\x7e\xbc\x1a\x23\x9e\x33\x53\xc9\xdc\xcb\x2a\x8d\xba\x1a\x91\xb7\xa3\x2e\x23\xde\x60\xac\x61\x7f\x8d\x04\xba\xbd\xd0\x2b\x6b\xc6\x1b\x9a\xd6\xf2\x3b\xfa\x78\x40\x0b\x78\xb5\xc1\x24\xe4\x10\xe7\x48\xae\x6d\x08\x6f\x4c\x20\x27\xb2\x5c\x96\x34\x34\xe6\x6c\x7d\xfe\x91\xfa\x96\xb3\xf8\x90\xbc\x67\xeb\xc1\x87\x64\x2f\x12\x61\xb3\x29\x9c\xf4\x0d\x9a\x6e\xda\xa1\xb6\xea\x81\x1c\xbd\x76\x24\x56\x2f\xd6\x99\xb3\x3d\x30\x52\xfa\xf2\x33\xf6\x62\x64\x79\x53\x04\x13\x3b\x67\x25\xdb\x5b\x4c\x17\x0f\xe2\xe2\xd6\xcf\x16\xc9\x83\xb4\x44\x48\x67\x99\x37\x8c\xb5\x4f\xa5\x83\x3a\x0b\x53\xe3\x02\x54\x17\x49\xae\x5a\x55\xac\x54\x52\x96\x68\xbe\x9a\x2b\xda\x6f\x97\x80\x89\xa9\xe1\x04\xbc\x8e\xe6\x53\x15\xb8\x19\x4d\x0c\xb4\x43\x6b\x99\x38\xe2\xad\xac\x8b\xa0\xcd\xe4\xbd\x1a\x55\x3e\x24\x06\xf7\x36\xce\x27\x6e\x42\x9a\x9e\xb7\x36\x64\x36\xbb\xce\xea\xc0\x4a\xb2\x32\x14\xbf\xc1\xaf\xcb\x1d\xcb\x02\xdb\x0e\x64\xb1\x21\xc8\xe2\x56\xa5\x59\x47\x20\xbf\x0a\xab\x26\x8a\x21\x06\xf7\x9d\x99\x6b\xbe\xb1\x8a\x67\x15\x91\x02\xca\xc7\x5b\x8f\x98\x40\x48\xe8\x84\xdd\xa7\x6d\x6f\x4f\xd2\x68\x13\x5b\xe7\x1d\xb1\x6f\xda\xb9\xb5\x58\x31\x33\x7d\x8b\xa7\x3d\x5f\xc8\x9a\x81\xe9\x06\x54\x2e\x25\x9b\x76\xb8\x27\x72\x0f\x85\xc3\x69\x2b\x4e\x92\x81\x9c\x12\x8a\x33\x13\x6d\x12\xc2\xb6\x25\x0b\xb3\xd9\x56\xac\x25\xf2\x2b\xbd\x28\x13\x92\xb8\x56\xb4\xa0\x8d\x60\x9f\xb0\x92\xbb\x82\xcc\xaf\xf4\xca\x00\x65\x1f\xb2\x60\x85\xb0\x94\x5f\xcd\x44\x45\x9c\xe1\x00\x0b\x00\xad\xed\x11\xfa\x69\xb3\xa2\xec\x99\xb1\x74\xd9\xb1\x21\x78\x75\xc4\x2d\x3c\x12\x4f\xd9\xbc\x94\x86\x50\x2a\x00\xfb\x61\x71\x01\xe6\x1a\x8f\xe7\x4f\xef\x77\x8f\x1f\xcd\x9f\x3a\xde\xba\x58\x97\x8b\x8f\x42\x7f\x55\x3d\x6f\x3e\x43\x85\xa5\x89\x67\x1c\xd7\xbc\xc6\xee\x17\xe9\x9a\x72\xa1\xe5\x10\x2f\xa0\x62\x84\x78\xce\x8d\x26\x8d\x3a\xc3\x2c\x63\x66\xc6\x3e\xb7\xbb\x18\x21\x51\x69\x34\x22\x3d\x4b\x68\x1a\x79\xf1\x61\x1d\x78\xba\x3d\xe5\x54\xa6\x5c\xec\x13\x9e\x74\x31\xde\x4d\xb5\xad\xfa\x11\xe9\x30\x23\xca\x95\x04\xd5\x72\x62\xb8\x44\x5d\xc0\x06\xfa\x42\xec\x9c\xaa\xa1\x8d\xd7\xc8\xe9\x90\x93\xf6\xf3\x73\x4a\x24\xb4\xa7\x6d\x8c\xc7\x44\xdd\x24\x7e\x9e\xf3\xce\x4d\x9a\x4f\xde\x65\xfb\x5a\xd1\x5a\x16\x46\x4c\x2f\x2b\xec\x32\xdc\xae\x91\x7c\x00\x65\x98\x57\x01\x3e\xfd\xde\x61\xfc\x07\x92\xf6\x97\xae\x18\xb3\x7e\xee\x50\xc5\xc2\x66\x3e\x39\x79\xc4\x1a\xeb\x52\x14\x56\x60\x80\xe1\x78\xa2\x49\xeb\xf1\xb3\x47\xaa\xd3\x47\x4a\xc1\x84\xcc\xf7\x7d\xdf\xb0\x32\xb1\x61\xaa\x91\x32\xd6\xeb\x33\x00\x42\x3f\xf2\xf5\x61\x42\x42\x3c\xc9\xdc\x94\x26\xdc\x67\xde\xec\xaa\x6a\xd8\x60\x74\xba\x57\x3a\xb0\x42\x0c\x20\x79\x7d\x6b\xa4\x4c\x04\xc1\xbd\xe0\x06\xfb\xe9\xbe\x7c\xdf\x96\x3f\xf8\xde\xb8\x35\x83\x12\xd6\x23\x29\x1e\xac\xa7\xb7\xc8\x15\x83\x9b\xad\x3a\xdb\xfa\xd4\x6c\xe5\xe9\xa3\x8d\xd1\x8b\x7c\x5e\x19\xc4\x60\x49\xee\x2c\x80\x68\x1a\x05\x4a\xcf\x06\x6d\x79\x3d\x6e\x8c\xc1\x3e\xee\xb2\xdf\xc1\xfa\xa6\xc9\xba\xb5\xe8\xcc\xd6\x3d\xd2\xb7\xeb\x55\x64\x78\x81\xd1\x1d\x44\xf7\x5f\x78\x9f\x24\xcd\x24\xdf\x7c\x48\x6e\x61\xe1\xfb\x2b\x71\xf8\x1a\xb6\xd3\x26\xa1\x0c\xd1\xb2\x2e\xf0\x41\xa0\xac\xf2\x7d\x48\x78\x0f\x7d\x33\x90\x0b\x79\x8b\xd0\xb4\x40\x40\x41\xd6\x6f\x91\xb8\x67\x53\x98\x5c\x4d\xc8\x90\x6f\x4b\x6f\x23\xc6\x97\x1b\xe2\xf5\xf5\xcb\x1b\xd3\xe1\xae\x5f\xa6\x1f\x4b\xad\xfc\x65\xdf\xef\xba\x77\xd0\xe7\x45\x39\x67\x4d\xfe\x2a\xbf\x65\xa9\x4d\x92\xf5\x07\x32\x6e\xca\x7c\xab\xbd\xe4\x4f\xa9\xe2\x94\xb6\x33\x4d\xe4\x4f\xda\xe5\x02\x3b\x51\x02\xf9\xc5\x86\x20\xc2\x8c\xca\x0d\x4e\x7f\x28\xd5\x00\xfd\xfb\xc8\xb8\xf5\x7b\x92\x6f\x76\xeb\x1c\x02\x44\x00\x06\x3b\x0e\x01\x61\xe2\x53\x80\x80\x16\xf6\xdb\xb2\xad\x16\xd0\xb6\xa8\xc0\xf7\x0f\xb3\x1f\x60\xc2\xa3\x85\x42\x92\x64\x5c\x59\x41\x8b\xe4\x1f\xaa\x90\xbf\x59\xca\x0c\xeb\xed\xaa\xbf\xdb\x28\xa2\xea\x38\x9d\x78\x0e\x41\x40\xa6\xf3\x50\x0e\x08\x1b\x23\xcb\x77\x3d\x9b\x75\x28\x81\x64\xc8\xa8\xea\x6d\xfe\xf9\x4b\x05\xb7\xcd\x44\x39\x61\x05\xbe\x90\x2d\x78\x1d\x62\xcc\x0e\x08\x9e\x0d\x37\x47\xa1\x69\xea\x19\xa4\xfe\x48\xbb\x5a\xed\xc0\xde\xc9\xef\x14\xbf\x7f\xb1\xe3\x08\xda\x42\x54\x02\x4f\xdd\xc1\x04\x6d\xce\x05\xf3\x4d\x48\xd2\x33\xbf\xdc\x42\xe9\xda\x91\x33\x34\x6c\x55\x7c\x1c\xe3\x60\xb5\x1a\x8a\x06\x91\xd4\xcc\x9f\xa1\x64\xbc\x47\x66\x2c\xb5\xd6\xa1\x6c\xea\x76\x4f\xdb\x5f\x00\x21\x96\xf4\x6c\x5c\x6e\xb0\xe0\x8e\x16\x27\x51\x60\xa2\xf4\xe5\xd8\x34\x7a\xa4\x7c\x4f\x4b\x66\xa2\x02\xb7\x92\x8e\x16\x94\xc9\x44\x21\x1a\x79\x31\xe2\x05\xe3\x82\x0c\x46\x7a\xd3\x66\x53\xae\xd8\x86\x66\x0d\x47\xad\x29\x09\xd1\x66\x20\x60\x21\x01\x79\x0c\xbb\xc9\x0a\xe7\x35\xd4\x02\xdc\x1c\xc5\xfa\x17\xf5\x9a\xe4\x79\xfa\xe4\x92\x81\x16\xa6\xdd\xd0\x9d\x7c\xcb\x0a\x47\xb7\x67\xd6\xcc\xca\x89\x48\x27\xf1\x6c\xf0\xc6\x8b\xaa\x4a\x34\x71\xbc\x7a\xa2\x45\xd6\xd8\xbe\x54\x3f\xc0\xbe\xb1\xea\x50\x5f\x1f\x57\xac\x95\x3b\xa0\x63\xd5\x3a\x8d\xb2\xfc\x5c\xc1\x1e\xf9\xa2\x62\x3b\x17\x74\x4a\xa7\x4a\x23\x6f\x96\x6c\x88\x19\xb0\xee\x22\xa3\x12\x39\xb6\xf9\xc4\xaa\x1f\xb7\xc7\xb9\x52\x4e\xec\x93\x3a\x28\x9e\x67\xd5\x4e\x49\x1b\x6c\x0e\x65\x71\x42\x5b\x3c\x97\xa0\x7e\x82\x6d\xe4\x9b\x43\x7e\xdb\xc1\xc8\x62\x1c\x87\x6d\xb1\x52\x9c\xd9\x09\x09\x00\x2b\xf4\x2a\xb4\xf8\xd3\x8a\x33\x4c\xb0\xe9\x9a\x37\x0f\xb7\x4d\x1f\xa0\x5f\x82\x5b\xa8\xd9\x86\xd4\x76\xde\xf6\x9c\x01\x9b\xc0\x59\x37\x66\x4d\x92\x65\x7c\xc9\x0e\x2a\xc2\x21\x92\x72\xfe\x89\xb2\x27\x2c\x1e\x51\x33\x2c\xac\x10\x3f\x16\x5c\x93\xfc\x47\x98\x45\x97\x02\x63\xc3\x9e\xea\x7f\x28\x72\x71\x45\x38\x64\x3d\xcb\xeb\xdf\xbc\x37\xd1\xac\x98\xc5\x5a\xd2\xa1\x3d\x27\x5d\x4f\x4b\x80\x31\x6d\x07\x9f\x7f\x15\xf9\x4a\x75\x6e\xce\xc5\x12\x03\x9a\xba\x75\xb5\x4b\x1b\x58\x41\x43\x14\x7a\xb2\x0d\x44\x4c\xb6\xcd\x97\x90\xbb\xd9\x1c\xdc\xe6\x75\xb7\x2c\x61\x17\xde\xa6\x4b\x3e\x5b\x9b\x69\xd3\x2c\xb1\xca\x01\xe8\x91\x96\x45\x87\x41\xd3\xe1\x6e\x81\xb9\x0b\x26\x2a\x6e\x5a\x0e\x0a\x60\x7b\x44\x1f\x80\x55\x5f\x53\x67\x7d\x60\x32\x1b\xa1\x00\x52\x63\x74\xec\x63\xbd\xf9\x54\x86\x88\x58\xfe\xa3\x23\x0f\xb0\xae\xa6\x6f\x39\x2f\x88\xa7\x49\x1a\x85\xb9\x03\xa7\x76\xf3\xdb\x78\xf4\x5c\xd4\x51\x00\x9f\x21\x7d\x2a\xb5\x15\x5e\x18\xbc\x56\x06\x15\xc2\xcc\xe1\x75\x85\xa4\xcf\xa1\xf2\xcd\xa9\x8b\x8b\x75\xb4\x3a\x6f\x90\x93\x4a\xce\x68\x81\x26\xef\xb9\x69\x52\xe3\xd7\x79\xbd\x2a\x33\x67\x63\x3e\xc3\x6f\x95\xd0\xd5\x66\xdc\xa7\x66\x58\x66\xcb\xbf\x15\x11\x33\xf2\x9d\x25\xab\xda\x2c\x3e\x5d\xf2\xb7\x86\x64\x08\x98\x8a\xff\x99\xbe\x58\xfa\xad\x93\xe8\xb4\x6c\x60\x67\x80\x7a\x50\xf5\xb7\x38\xc6\x9b\x93\x0c\x2c\x4a\x1a\xa5\x90\x9a\x0b\xee\x00\xd3\xc7\x73\xfb\xa6\xf9\xc8\x99\xe9\xf1\xd2\x96\x2f\x85\x13\x3b\xd4\x73\xfb\x4e\x58\x4b\xde\xce\xb0\x39\xb0\x30\x0d\xab\x7b\xb0\x25\x3c\xb8\xdf\x3d\xe0\x09\xb3\xbc\x59\x00\xbf\xcb\x7b\x62\x8b\xb5\xa8\x28\xc2\xa1\xc2\xa2\x9a\xed\xaa\x00\x57\x11\xb0\x19\xce\xc8\x05\x15\x1f\x12\x7f\x74\x6f\xa7\xf6\x53\x16\x55\x65\x31\x9d\xca\xbc\xff\x42\x9f\x6a\x11\x49\x9d\xe3\x8a\xaa\xaa\x38\x18\xb5\xd3\xac\x2e\x3e\xdc\xea\x12\xb5\x21\xc5\x06\x24\x25\xef\x27\xe9\xb9\x7c\x98\xd2\xbb\xaf\x30\xa6\xaa\x48\x92\x1d\xf0\x1e\x38\x1a\xe8\x44\xb8\x4e\xab\x43\x89\x37\x62\xb7\xc3\x9d\x9d\xb0\x20\xb5\x80\x70\xed\xac\x03\x52\x00\x9f\x4a\x07\x0a\x1b\x5b\x67\xa1\xc9\xd5\xc1\x39\x0e\x9f\x4e\xb0\xfe\x49\x60\x87\x72\x9e\xb2\xbd\x94\x08\x87\xf4\x22\x1d\xe8\x36\x27\x95\xea\x53\x95\x3b\xcb\x0c\xcd\x16\xbb\x32\xe8\x2e\xfa\x9c\xdd\x18\x70\x36\x3c\xf6\xb9\xe1\x83\x16\x3d\xbb\x78\xad\x9f\xc9\x7e\x57\xb0\x4d\xcb\x0f\xf8\x1d\x12\xdc\x80\xe3\xfc\xc0\x5c\x89\xa1\x5b\x31\x27\xcd\x08\x78\x91\x2a\x1c\xf7\xec\x76\x66\xcb\x67\xc2\x8f\x46\x97\x50\x31\x04\x09\x4f\x09\x24\x4b\x95\x56\x03\x98\x09\xef\x01\x7a\xe5\xc0\x12\x08\xa1\xbd\x32\x5d\x37\x87\x74\x53\xd5\x1f\x3b\xc5\xaf\xb3\x87\x98\x9e\x9c\x9e\x23\x81\x80\xc5\x52\xc3\x62\x55\x55\xef\xcb\x5f\x13\xfb\x12\x4b\x3e\x3e\xc7\x9e\x1f\xa5\xec\x8a\x43\x66\xa0\x07\x30\x67\x72\xd4\x74\x8a\xe4\x49\x58\xaf\xe7\x6a\x11\x9c\x91\x07\x87\xc2\xcb\x92\x05\x6c\xb0\x43\x3b\xc5\x22\xfc\x34\x4d\xa7\xb6\x47\xcf\x7e\x38\x0d\x86\x0a\x85\xd2\xd9\x72\x10\x3a\x99\xa7\x76\x76\x86\xd5\x98\xd8\x69\x97\xf5\x07\x6b\x3b\xab\xb6\xe2\x5c\xf5\xce\xce\xc2\x30\xb3\x4e\xaf\x40\xf6\x8c\x34\xe5\xc1\x60\xc2\x23\x87\x37\x8d\x9d\xb4\x19\x1f\xb5\xcc\x13\x13\x17\x04\x21\xd8\xec\xa3\xce\x0e\x29\x4b\x2b\x30\xeb\xf9\x17\x08\xcc\xc8\x27\x3c\x89\x11\xde\xec\x58\x4b\xb3\x89\x84\xc2\x33\x3d\x07\x70\xf9\x8c\xd9\x20\xff\x0d\xce\xcc\x86\xd6\x86\x48\x53\xd2\x1a\x8e\x4a\xd3\x83\x3e\x8d\xd6\x8e\x95\x3b\xd0\xd8\xc2\xe1\x18\xc1\xcf\x84\xfa\x73\x58\x86\xe5\x58\x0d\xfe\x04\x42\x2f\x35\xce\xe4\xa4\x0a\x42\x00\x14\x8e\xce\xeb\x19\xa7\xc2\x8d\xd8\xa2\x2e\xde\x5a\x0e\x40\x1d\xb6\x62\x7d\xb2\xb4\xc3\xf9\x90\xb1\xed\x5a\x9a\x74\xda\x78\x07\x96\xa8\x11\x4b\x8b\xd8\x17\xb8\x57\x83\x93\x66\xcf\xb5\x48\x83\xd4\xba\x98\xff\xe3\xcb\x52\xbc\xf5\xb2\x64\xeb\x96\x35\xaa\xcc\xda\xe5\x0a\xcb\x4e\xa8\x0f\x58\x03\xa5\x33\x4f\x14\xc0\x44\xdc\x45\x80\x85\x20\x66\x09\xb5\xe4\x2c\xb2\xf3\xc2\x62\xfb\xff\xcd\xb6\x1b\x35\xe8\x6c\xbb\xbe\xab\x03\xb2\xe1\x3e\x0e\x76\x9c\x11\x01\x51\x06\xf6\x5f\x9d\xfa\x60\x57\xd5\xc9\x77\x9b\x2b\x37\x23\x32\x3d\xa3\x89\x92\xb0\x05\x2b\x11\x80\xc3\xb2\x80\x07\x6f\x12\xb8\x42\x89\x80\xdf\x8d\xcc\x90\x31\x7f\x3d\x85\x06\x43\x58\x11\x58\x96\x07\x78\x43\x13\xe9\x4f\x35\xa2\x2d\x23\x42\xce\x6d\x9d\x67\xcf\xe8\x68\xe6\x44\xd5\x86\x75\xb5\x5a\xd3\xb8\xaa\x2d\x9f\x59\x82\x6b\xdb\xc1\x98\xd7\xea\xf8\x17\x2d\xbc\x66\x55\xb3\x0d\x87\x5b\x10\x57\x1e\xc7\x6d\x1f\x77\x7d\xdb\xd4\xab\xa7\xe7\x0d\xab\x5b\x6c\x09\xe1\xad\xe2\xd7\xc7\x8f\x34\x9d\x58\x06\xcf\x21\x3b\xb8\xbe\xa8\xfa\x97\xfb\xf9\x83\x2e\x5d\x91\x6c\x80\x0d\xe4\x71\x9e\xae\xdb\x72\xf9\xe4\xde\xfd\xee\xde\x53\x3d\xa8\x16\x3f\xab\x43\xed\xd0\xf2\xf8\x51\xfe\x94\xa5\xe7\xae\xd9\x90\x50\x1b\x17\x69\xb6\x5b\x99\x5f\x62\x7f\x5b\x81\x44\xff\x71\xb6\x5d\xd6\xc0\x5c\xd9\x2a\x7e\xa8\xc2\x99\xa3\x75\x3f\x3f\x3a\x6d\x26\x26\x45\xf6\x05\x15\x54\x18\x18\x47\x76\x75\x1f\x30\x4d\xb6\x2d\xa4\xae\x18\x36\xd8\x71\x31\x4c\x24\x9b\x6b\xbc\x69\xc3\x8c\x13\x90\xa0\x51\x87\x95\xa7\xa2\xd4\x13\x91\x34\x38\xcd\xda\x94\x8d\x93\xbe\x8c\xb4\x02\xfa\x65\x9e\x6a\xa6\x4c\x08\x8c\xde\x08\xc2\x04\x1b\xd1\xf0\x77\xc6\x00\x64\xf4\xba\xfc\x6d\x04\xc8\x13\x49\x46\x71\x22\x10\xf0\x83\x19\xc0\x18\x35\xab\xd0\x07\xe6\x69\xbd\x00\x2b\x53\x1d\x44\x1c\x55\x44\x20\x13\x92\x24\x09\x9d\xd9\xdb\x57\xca\x0e\xa3\x76\xfd\xc0\xad\x39\x7f\xf4\x85\xbe\x0c\x47\xcc\x18\xc3\x98\x4e\x81\x0e\x1a\x0b\x6c\x0a\x3a\x53\xaf\xd5\x82\x80\x0c\xda\x86\x03\x6d\xe1\x4d\xa3\x27\x2e\xa9\x25\x62\x4e\x48\x3d\xe8\xcb\x68\x31\x73\x27\xe0\x96\x26\x2e\x1e\x30\x4a\xfc\xd7\xb4\xc8\x89\x13\xf4\xcd\x47\x22\xa6\x71\x11\xa4\x1f\x2b\xe4\x38\x8c\xc9\xe8\xca\x5f\x4e\x3d\x7b\x18\x4a\xed\x7a\xc0\x79\x94\xc5\x04\x9c\x45\x6b\x75\xae\x2f\x62\x51\x29\x21\x1b\xcf\xab\xba\x10\x4e\xa2\x8c\x40\x7d\x49\x1c\x07\x20\xf9\xa2\x66\x20\x98\x3d\xf9\x43\x7f\x87\xd3\x12\xd5\x1f\x2c\x17\x62\xe0\xfb\x3a\x60\xa0\x42\x0e\x99\xa0\xc2\x0d\xf2\x8a\x54\x30\xf8\xb7\x9d\x4a\x85\x37\x9c\xdd\xa9\x73\xa7\x9e\x13\x5b\x91\x17\x9a\x88\x35\x00\x40\x41\x78\xe7\x10\x81\x5f\x5e\x1b\xb7\x5a\xd4\x07\x40\x3d\xd7\x30\x07\x44\x75\xc6\x32\xd7\xe2\x13\x90\x9e\x5e\xbd\xa2\x3d\xc3\x35\x68\x95\xfe\x96\x93\x1c\x29\x5d\x38\x38\x4b\x00\x13\xdb\x90\xe7\xba\x13\x24\x29\x6e\x86\x47\x94\xc4\x12\x77\x83\x1a\x0d\x48\x06\x13\xe7\x0b\x8e\xcb\x2e\xb0\x8e\x48\x6b\xe8\xc9\x70\xb7\x72\x43\xfd\x8e\x30\xeb\x6c\x74\xbc\xb4\x76\xb7\xcc\xff\x03\xf7\x9f\x5c\x30\x74\x00\x07\x1f\xf8\x1d\x11\x24\x2c\x04\x29\x2f\xe1\xd6\xf1\x0f\xeb\xb0\x09\x10\xc1\x54\x86\x6c\x64\x72\x32\x3d\x53\x99\x2c\x36\xc5\x59\x76\x56\x4f\x3c\xe6\x2f\xf1\x19\x26\x7c\xaf\xbf\xde\xc1\x65\xc2\x51\x05\xa4\x7c\x35\xd9\xac\xa3\x68\x69\x7a\xc0\x6f\x52\xd9\x08\xe5\x04\x9d\x5b\x11\xd9\x5a\x29\x22\x70\x15\xa5\x5a\x0e\xe5\x86\x7d\x3c\xb5\x75\x7f\x8a\xac\x43\x8f\xce\x90\x15\xc8\x9d\x1e\xb3\x33\xaf\x13\x05\x05\x15\xa1\x79\xcb\x2a\x23\x08\x5a\x6e\x38\x36\x16\x15\xd8\xf6\xeb\xb3\xd3\x37\x6f\x2e\x6f\xfc\x36\xcd\xeb\xa0\x2e\x48\x98\xf8\xce\x79\x60\x8d\xfa\x65\x7e\x58\x6e\x02\x63\x08\xef\x09\xa6\x25\x8e\xc1\x85\x6c\xca\x6a\xa7\xcf\x55\x03\xde\xd3\x70\x5f\x8c\x97\x47\xfd\x2f\x8e\xcd\x5f\xf2\x9e\xe5\x9b\x0f\x89\x19\x89\x2f\xf9\x7f\x12\xda\xd9\x83\xb3\x0d\x2c\x3d\x7f\x04\xe2\x3d\xb0\xa9\x03\x4d\x31\xb2\xbb\x83\x49\xef\x73\xa8\x10\x84\xfb\x06\x7b\xc5\x32\xc5\xf1\xe8\x09\x9b\x11\x9b\x16\x0b\x86\x91\xbb\xaf\xab\x3f\xf6\x10\xd0\x58\x81\x20\xe6\xc1\x8e\x7d\xf3\x6a\x23\x1b\xca\x9f\xdd\x0f\x49\xe7\xaf\x81\x97\x70\xd0\x38\xfd\x7a\xdc\xed\xd8\x57\x91\xf6\x86\xee\xc9\xbd\x7d\x95\xb2\x55\x8a\x7d\x83\xee\x3d\x25\x71\x9f\xdd\x0c\x68\xfa\x08\xe2\x69\x50\x1d\xdf\x3d\xf1\x75\x7e\xaf\xfa\x1a\xf5\x17\xeb\xe8\x53\xbe\xd9\x97\x91\x7a\xcf\xeb\x86\xcb\x74\x3f\x24\x28\xaa\x56\xcf\xe1\xbd\x15\xe4\x99\x9f\x30\xe7\xc1\x59\x18\xa9\x13\x43\x51\x0d\x4b\xcc\x56\xbd\xd8\x3b\xd3\x00\x15\xbc\x2e\xd1\x6a\x19\xa2\x5b\xcf\xa5\xdc\xf2\xef\x16\x6d\x05\x67\x67\x49\xe7\x9b\x4a\x69\x70\x4b\xc9\x25\xfa\x76\xaf\x89\x68\x68\x4c\xb3\x55\xd5\x93\x5e\xc7\x37\x93\xe0\x1a\x9b\xd0\x9a\xa3\x6d\x00\x77\x9c\xe4\xcb\x52\x46\x45\x79\xc7\x14\x58\xd8\x69\x58\x4e\x53\xf2\xe1\x0f\xfd\x3d\x51\x4a\x01\xed\x86\x15\x9b\xdc\x1b\xd2\x6b\x2b\x5e\x35\xaf\xe8\x1f\xed\x88\x22\x3f\xc7\x73\xdc\xa1\xbc\x5a\x05\x44\xc9\x73\x55\xa8\x5f\x94\x4e\x88\x3a\x44\x05\x53\xa2\x8e\xb4\x6a\xb1\x05\xc6\x90\x90\x3e\x43\x82\xde\x67\xa2\x4e\xd0\x04\x7c\x12\x31\x42\x6e\x38\xbd\xb2\x94\xef\x59\x75\xfa\xe1\x88\x1d\x73\x78\x18\xf8\xed\xe6\xcc\x61\x0d\x77\x5b\x35\xd9\x53\x24\x63\x1b\x75\xaa\xde\x44\xd1\x19\x7a\xa2\xf7\xad\xec\x76\x8c\xbb\x70\x25\xd7\x63\xc2\xdc\xe3\x2b\xca\x54\xec\x3c\x5e\x58\x70\xc4\x9b\xd3\xc2\xb8\xf7\x54\x70\x66\xab\xca\x6a\xd5\x29\xb8\xd0\x2b\x5f\xc1\x1c\x28\xc4\x0c\x9e\xfc\x99\x69\x8e\xec\x6a\xc1\x5a\x99\x5a\x0b\xa6\xa1\x22\x26\xa8\x82\x48\x1e\xdc\x0e\x78\xf4\xe2\xd5\x0d\xee\x06\xd0\x8c\xc1\x97\xdb\x2e\x40\xb0\x9f\xe6\xcc\xd5\x69\xe7\x51\x00\x31\xd7\xce\x57\x92\xa8\xe5\x38\x11\x2a\x5f\x6c\xba\x37\xaf\x91\x3c\xbc\x48\x92\xc8\xaa\xb4\xa5\xae\x6b\x74\xe9\x16\x3b\x6e\x06\xb0\x7b\x75\xbc\xca\x71\xe3\x2d\xc0\x74\xe8\xd3\xc4\x3c\xb9\xe0\x4d\x65\x77\x9b\xb1\x01\x11\xfb\xc8\xee\x36\x81\xe7\x0f\x6d\xb9\x19\x24\x12\x49\x04\x57\xdf\x54\x3b\xb9\x94\x49\x19\x55\x29\xfe\xbf\xf8\xb8\xfc\x97\x44\x50\xe8\x66\x18\x84\x82\x9b\x9a\x9c\x41\xbb\xc7\xaf\x60\xb2\x3d\x6b\x89\x72\xa0\xf1\xe4\x5e\x36\x27\x26\xf1\xf1\x5e\xa0\x35\xf2\x9d\x4e\x56\x15\xbf\x23\xe1\xf5\xa0\xc7\xee\xef\xe4\x2b\xb1\xdf\x7f\xc1\xaf\x3d\xfb\x93\xca\x19\x3f\x7f\x24\xfa\x8b\xcf\x05\x12\xbd\xe5\xc7\xdc\x30\x61\xcd\x41\xe7\x93\xb4\x86\x90\x75\xfd\xb1\xe7\x51\x8a\xc2\xfb\x24\xfd\x13\xff\x4a\x5f\xf0\x2f\x1d\x0a\x73\x04\xb7\xc6\x41\x35\x03\x1e\x11\xfa\x47\x82\xe5\xa9\x97\xb2\xe7\x09\xe2\x54\x15\x60\x5f\xbd\xa9\x0c\x90\xaf\x18\x24\xbb\x3d\x7b\x8e\xf0\xbc\x5b\x6b\x57\x94\x82\xfb\x1a\x9c\xc8\x1b\x6f\x50\x83\x3b\x34\x8a\xea\x48\x1c\xab\x51\x16\xd3\xb7\x25\x24\x5a\xfa\xa7\x79\xb8\x13\xda\xe7\x38\x26\x10\x20\x22\xb9\xff\x94\xde\x50\x8a\x42\x94\x61\x56\xa2\xa0\xc8\x1f\xde\x0e\xdc\xe4\xf3\x12\xb6\xb5\xd7\xf8\x20\x92\x27\x1e\xd9\x13\x8a\x60\x72\x71\x3f\x12\xee\x63\xd5\x8b\x07\x2c\xbe\x12\xf5\xcf\x96\xa3\x20\xf9\x4c\x60\x68\x6f\x73\x76\x56\x7c\x9b\x1f\xe4\x27\x61\x5a\xaf\x13\xbe\x94\x2f\x49\x86\xeb\xab\x80\xc2\xf3\xd5\xc1\x43\x18\x51\x1a\xbe\xb2\xef\xc4\x3a\x30\x1b\x77\xc4\x72\x06\xb7\x19\xd3\xc5\x20\x7f\x29\x2a\xd5\x73\x56\xa8\x2c\x2d\x07\xff\x4b\xcd\x99\xc8\xa5\x6f\x89\x79\x88\x4d\xf9\x42\xbe\x5c\x4e\x21\x7e\x6e\xe7\xd8\x3d\x34\xcd\x5c\x91\x2f\xf9\xbf\x4b\x25\x82\xd1\xf5\x43\xff\x9d\x5b\xaf\x5c\xf8\x65\x5d\x4a\xae\x4f\xfa\xe4\xd9\x70\x2e\x82\xac\x9a\x77\xe1\x39\x6c\xf9\x44\xfb\xc8\x0f\xb3\x17\x84\xff\x36\x73\xe5\xcf\xf8\x67\xba\x19\xd5\xe2\x26\x37\x9c\xdb\x41\x33\x21\x0c\x35\x35\x09\x26\xcd\x85\x90\xd2\xe2\x76\x0a\x98\xe4\xe7\x3a\x82\xbd\xa4\x84\x90\xb4\xa2\x8a\x59\xf2\x1b\xd4\x0c\x61\x70\x1a\x9e\xb6\x16\xbe\xf4\x01\x71\x58\x3f\xc7\xfd\x0c\x80\xa4\x9b\xf9\x04\x28\x5b\x25\x3c\x1c\x0d\x7c\x08\xa4\x86\x33\xc7\x10\x86\xb3\xe7\xe7\x87\xa6\x76\x38\x41\x92\x99\x91\xcc\xb1\x28\x9d\xe3\x3a\x80\xb0\x6b\xf3\xc5\xdb\xa8\x19\x57\x99\x36\x16\xd5\x07\x84\xf6\xf9\x9c\xb2\xef\x17\xc0\xa6\x2b\xcc\xb8\xf2\x59\x82\x3a\xcb\xa4\xc5\xc5\xce\xce\x56\x73\x54\x65\x98\x47\x02\x46\x26\x22\x93\x20\xc2\x89\x4f\x9b\x89\x12\x77\x52\xd4\x10\xe6\x68\xcd\x23\xba\xd1\x92\x77\x4c\xaf\x87\xe0\x1b\xb5\xc7\xab\x3e\x52\x4e\x25\x1c\xc8\x35\xe3\x9c\x19\x5f\x6f\x70\x9c\xf2\x14\x3e\x01\xe0\x96\x53\xa0\x9d\x5e\xc0\xa7\x4d\x96\x77\x64\xd7\xd5\x42\x4d\x14\x53\x85\x64\x96\x8b\x6c\x7e\xab\x65\x64\x9e\x71\x89\xeb\x48\x91\x2d\xbb\x15\x60\xfb\xd5\x22\x17\x2e\x61\xa2\x48\xa7\x97\x40\xf9\x16\xe6\x38\x67\xc6\xb2\x2f\xdc\x0e\x98\x37\x75\x93\x20\x4c\xa5\x00\xb9\xc4\xc7\x14\x88\x18\xee\x54\xf5\xe6\x5d\x40\x3c\xa7\xed\xa0\x6b\xb2\x61\xf6\xa5\x70\x25\x5e\xc3\xb3\xa2\xfd\x8a\x72\xec\x76\xc8\x7c\x55\xec\xb4\x17\x0d\x9c\x12\xf1\xf3\x8e\x76\x7c\x01\x69\x68\x54\x82\x57\x12\x66\x81\x40\xe4\x3b\xbd\xff\xfe\xc7\x0f\x1d\x4f\x83\x37\x81\xbf\xff\xe9\x03\xc9\x33\xf7\xdf\xff\xfc\x01\xb6\xef\x51\xe1\x6c\xc9\xa6\x9f\x71\x0d\x28\x68\xd0\xbb\xb6\xfc\x54\x35\x7b\x18\x3c\xf4\xd3\xf3\x87\xcf\x32\x15\x9f\xfb\x78\x89\xbb\xcb\xa8\x83\x15\x5e\xb8\xac\x78\x85\xd7\xfb\x6d\xa6\x63\xec\x84\x03\xd8\x2f\x57\xdc\x30\x90\xe5\xdc\xe4\xef\xee\x37\x0f\xb7\x2a\x78\xb0\xd4\x79\x13\xe3\xfe\x49\x7e\x3d\xc5\x40\x78\xe8\xbf\xbb\x96\x9a\xc0\x6a\x7e\x23\xf7\x69\x59\xea\x75\xf6\xfb\xdb\xb2\x9f\xc5\x5c\xc9\x82\x06\xa0\xcb\x71\x96\xf6\x22\x06\x51\xd7\x4c\xe4\x18\x78\x5b\x02\x31\x06\xf7\x16\x3f\x07\x99\xc3\xca\x04\x68\xaa\x36\x65\xb5\x9e\x4a\xce\x06\xf9\x82\x6b\xc5\x94\x6c\x43\xdf\x86\x26\xe9\x92\xab\xc3\x7e\x7e\x63\x2d\x22\x4f\x90\x44\xb9\x74\xf5\x2c\x09\xe3\xf5\x02\x16\x56\x18\xa1\x79\xa8\xea\x9c\x27\xd0\xdf\xd8\xc4\xae\xd1\xb0\x27\x57\xf8\xb0\x64\xb9\x96\xa8\x9e\xd4\x8e\x36\x23\xf3\x8f\x26\xda\x45\x15\x92\xd7\x49\x7d\x01\xc7\xb6\xcb\x29\x7c\x0e\xc1\x49\x11\x68\x55\x67\xe6\x90\xad\x22\x3d\x31\x4b\x76\x3a\x92\x11\x11\x19\xf1\x7d\x3c\xb5\x28\x1e\xbd\x3b\x14\x1d\x53\x05\x57\x48\x74\x4a\xc3\xd5\x5a\x16\x30\x13\xfc\x46\xff\x1c\x5e\x07\xde\x11\xd6\x3f\x6e\x85\xba\x4f\xff\x2c\x49\xf6\x45\x5b\x74\x7e\xdf\x8e\xf3\x17\xcd\xa6\xf1\xfb\x3a\x7e\x0d\x01\xc4\xc2\x77\xbf\x18\xc8\x66\x92\xed\x69\x5b\x57\x2f\x08\x37\xde\x79\x04\x72\x62\x30\x92\x31\x70\x13\x8a\x33\xdd\x0d\x01\xe9\x20\xee\x09\xd8\x0d\xec\x71\x2d\xea\x6c\x03\x50\x67\x62\x9c\x04\x9b\xb2\x25\x8b\x94\x11\xda\x8e\x59\x66\xaf\x6a\xb9\x86\xce\x75\xf3\xe9\x69\x60\x4e\xd6\x9a\x8f\x5b\x8f\xa7\x9b\xf6\x66\x64\xe9\xe9\x17\x8e\xa9\x10\x3a\x05\x2b\x6a\x97\x13\xe9\x89\xb7\x82\xea\x12\x9c\xa2\xae\x17\xdd\x34\x9c\x0d\xd4\x80\xfb\x43\x93\x3a\x7d\x0b\xf1\x78\x78\x23\xc8\x53\x2e\x6c\xb7\x8c\x40\xfe\x5a\x7e\x36\xa8\x16\x17\x4a\x9f\xc0\x4f\x6a\xd8\xa0\xb6\xf0\x24\xd5\x2f\xcd\xd7\x2d\xce\xa9\x88\xcf\xf1\x5b\x3b\xa1\x30\xc4\x9b\xdb\xb2\xdb\x6f\xb0\x07\xe0\x78\x4d\x7e\x2c\xe5\x60\xc8\x80\xf8\x88\x7f\x25\x96\x01\x6b\x2b\x60\xe4\xc8\xb5\xf3\x7e\xce\x9d\x97\x8b\x1c\x2e\x91\xb9\xb2\xe6\x35\x2d\xc9\x60\xf4\x04\xc2\xf7\xe8\xad\x7e\xf6\x31\x0d\xc3\xd4\x30\xdb\x72\xd5\x9b\xd1\x62\x80\xa9\x79\xd9\x1f\x78\xea\xe4\xfc\x9d\x91\x2b\xd6\x85\xee\x97\x70\x33\x26\x0e\xf6\x08\x6d\x3c\xe2\x1d\xb9\x50\x6e\xf6\x4f\xf8\x21\x3c\x4d\x51\x39\x90\xd7\xc3\x20\x39\x0a\x82\x05\x6d\x93\xca\x14\x87\x53\xa5\x6d\x49\x8d\x62\x17\x2f\x4c\x85\x14\xde\xfa\x98\xaf\x04\x19\xf3\xc4\x37\x11\x31\x9f\xaf\x6b\xfa\xcf\x2e\xdd\xea\xcf\xe7\x59\xc8\xc9\x40\x3a\xfe\x67\x04\x35\x54\x6a\x7d\x9e\x58\x2d\x31\xd7\x65\x67\x0e\x36\x9a\xaf\x7b\x1e\xcd\xa2\xf4\xda\x79\x8c\x4b\x86\x9e\xeb\x84\x48\xa6\xfe\x92\x82\xcd\xcb\x50\x07\xea\x8e\x37\x1c\x75\xe6\x75\x06\xcb\x2a\xf2\x23\x6f\x36\xe2\xbd\x56\x98\x21\x1e\x0e\x6a\x10\x9b\xc8\xa0\xc5\xa0\x5a\x58\x2e\x8f\xd5\xfc\xa0\xbf\xbb\x6e\x23\x40\xf1\x2f\x67\x7a\xe3\x13\x94\x4d\xc5\xe1\x3e\x8c\x72\x4c\xf3\x3e\xda\xe4\x54\x68\x1e\x71\x6f\x10\xeb\x0b\xa1\xa7\x91\x7b\xd3\x70\x83\xa8\x5c\xef\xa5\xf8\x80\xa2\x2f\xd0\xc5\x88\xb0\x02\xfb\x49\xa0\xe9\x7b\xcd\x28\xc8\x9e\x50\xe3\x82\xdc\x69\x55\x6e\x08\x50\x78\x05\xf9\x7e\x17\xb5\xdd\x64\xc5\x9e\x50\xac\xd1\xb3\x9a\x94\x7e\xa5\xf8\x35\xec\x82\x09\x98\xc3\xaa\x9d\xa8\x16\x8f\x88\x38\xee\x9c\x97\xbe\x5c\x76\x93\xa5\x15\xd8\x8c\x08\x75\xea\xc6\xad\x47\x64\xca\xb6\xa3\xea\x07\x2b\x73\x12\x3b\xb6\xd9\xe2\x1e\x59\x98\x31\x71\x72\x11\xe6\xfa\x41\x9f\xd3\x88\xd9\x4a\x93\x7e\x6f\xe1\x5d\x7e\x88\x07\x59\x8a\x27\x22\xff\x0f\x33\xdc\xfd\x7f\xad\x2a\x93\x3d\x4b\x6b\x44\xe5\x9a\xe2\xef\xc5\x9f\xb8\x5b\x58\x0f\x6e\xa9\xba\x87\xdb\xed\xc3\xa2\x78\x30\x31\xea\x60\xc3\x72\xc3\x1e\x38\x94\xa8\x6e\x38\xd8\xb9\x82\x9a\x82\xdd\x7f\x1a\x77\x0c\x10\xcd\xd3\x3b\x66\xdc\x25\x1f\x0c\xa4\x85\xc7\x1b\xb6\xa6\x60\xee\x3a\x66\x0d\xcd\x8e\xd0\xee\x0e\xa9\x79\x89\xc9\xed\x9e\x70\x24\x03\xb9\x29\xc8\x1a\x5c\x42\xbc\xb3\x7b\x86\x07\xdd\x72\xf9\xbc\x6a\x7b\x04\x25\x12\x92\xe9\x28\x42\x02\x79\xc5\x23\xd5\xc9\x2c\x13\x80\x53\x12\x8b\x6f\xfb\x3f\x52\x6a\x99\x6a\x7c\x8a\x04\xbe\x24\xb7\x4c\xc5\x95\xb3\xb4\x99\xd0\x37\x9c\xc6\xe5\xcb\x67\x05\x41\x0c\x74\xff\x09\x7e\x7b\xb0\x75\xd3\x7c\x94\x40\x0e\x73\x7c\xfa\x9c\x55\xd5\x5b\x26\x07\xce\x7a\x19\xe7\x92\x34\x50\x2d\xc2\xf8\x75\xcf\x38\x61\xa2\x8b\x05\xcf\x71\x9b\xfd\x5d\x2c\x45\xe7\xf8\x95\xfe\x4f\x26\x0c\x07\xa2\x1e\xdf\x97\x16\xb8\xe3\x9a\xfd\xbe\x5d\xae\x7a\xdc\x06\x4d\xa9\x83\xf0\xb8\x2d\x75\x5e\x65\x4b\xbb\x1c\x9c\xf9\xd3\xfc\xca\x36\xd0\xe8\x78\x76\xca\xeb\x3a\xbe\x1c\x36\xf3\xb5\xbb\xeb\x25\x6c\x92\xd7\xcf\x4b\xbb\xa1\x32\x06\x73\x27\x50\xfe\x56\x4a\x7c\x5e\xc6\x2e\x31\xb5\x38\x9d\xe2\x66\x0a\xdf\x60\xe1\xa4\xf8\x3a\x0c\xd1\x9d\x8b\xd4\xa5\x7a\x10\x74\x33\x38\x98\x74\x41\xf7\x10\xfb\x10\x77\xd3\x58\x04\xeb\xe4\xbc\x51\xef\xd8\x88\xbf\xb5\xe8\x6f\xb9\xd3\xa9\x3a\x9c\xac\x06\xe7\x77\xa1\x2b\x9d\x0f\xaa\x20\x0e\xdb\xd6\x55\xe4\x05\xd3\x3b\xb8\x9e\x00\x4c\x07\x47\x78\x03\x40\x43\xca\x25\xf1\x0f\xf1\x80\x92\x62\x79\x74\xbd\xa7\x0f\xec\x0a\xe2\xb5\x30\xcf\x17\x1f\x5d\x8f\x98\x3d\x95\x6d\x8f\x8b\x35\x63\xb4\xb3\x63\x2f\x2d\xa0\xec\x47\x6a\xe6\x21\x64\x0c\x89\x2d\x86\x41\xc8\xfa\xab\x96\x01\x3e\xe0\xc8\xc5\x8e\x59\x9f\xaa\x62\x4f\xd4\xc7\x73\x71\x57\xbd\x3f\xc5\xf5\xd2\x8a\xc7\xc9\xe1\xd1\xba\x07\xf3\xc9\x12\x74\x85\x7b\xfe\x7c\xa1\x0d\x37\xab\x96\xfe\xc2\x60\x37\xd5\x32\x33\x21\xa7\x83\x2a\x0e\x70\xf1\x2f\xf5\x37\x67\x42\x56\x25\x7c\x08\xae\x24\xe2\xed\x69\xa2\xd4\x2f\xe9\x68\x3e\x62\x6c\xc9\x6d\x2c\x27\x79\x7d\xd1\x99\x65\x44\x08\x03\x2c\x0d\xea\x03\xc2\x02\x97\x13\x9b\x7d\x1e\x3e\x07\x47\xba\x15\xe5\xc3\xdc\x29\x42\x92\xa8\xea\xc5\x66\x0f\xe7\x39\x66\x46\x1c\xab\xf0\x44\x79\xf0\x89\xb3\x75\xc9\x1d\x94\xc0\x3b\xc9\xf3\xc0\x26\xc2\xec\xa0\xaf\x38\x7a\x15\x04\xbc\x1a\x35\xed\xaf\xc6\x9c\x78\x6f\x0e\x77\xd6\xcd\xb2\x29\x3b\xb1\xd4\x45\xb9\xe3\x88\x69\xec\xcd\xb8\x94\xdd\x56\x78\xfe\x17\x5a\xfd\xe9\xae\x56\xc5\x09\x65\xaa\x59\x73\x8d\xd2\xbb\xa6\x58\xb4\x1c\x3f\xf3\x0b\xad\xfd\x6c\xad\x85\x5b\xd6\xc7\xb2\xdc\x05\x4d\xc4\xdd\x0f\x5c\xc5\xc1\x3c\x63\x2f\x93\x09\x8e\xa6\xb7\x88\xec\xda\xe1\x11\x26\x1e\xec\x84\x81\x1b\x83\xed\x66\x5f\xb8\x37\x31\x5e\x20\x66\x98\x42\xd0\x57\x18\xa7\x1c\x0c\x2b\xe6\x59\xc0\xb9\xe1\xac\x67\x2c\x79\xa2\x2a\x71\x02\x1c\xf8\x57\xf8\x7b\x88\xae\x6b\x56\xa0\x3d\xde\xbd\xd8\xcf\x2b\x9d\xf0\xef\x72\xa0\xec\x44\x1b\x12\x6b\x2a\xae\xd3\x3c\x9e\xb3\x20\xf9\x78\x81\x81\xc3\x72\x54\x57\xec\xb0\x1c\x74\x50\xa8\xe8\x58\x3d\x67\x93\x75\x28\xe5\x85\x53\xcb\xd7\x8d\x2b\x5c\x2c\xcd\x34\x06\x8e\x06\x2c\x1e\xde\xec\xd4\xdc\xc3\xba\x09\x22\x30\x88\x17\x35\xf6\xa2\xb0\x23\xb3\x78\xac\x07\x11\x4f\x14\x2f\x2a\xac\x0c\xa4\x18\xdb\x5b\x4c\x94\x81\xaa\xb8\xdd\xd3\xd6\xb9\xa9\x3e\xc2\x7e\x41\x84\x29\x21\x2a\x2f\xaf\x6f\x60\xb4\xa0\x05\x40\xfb\xe8\x8a\xf9\x6e\xfa\x97\x75\x59\x23\x42\x1b\x47\x8a\x54\x46\xb4\x58\xf0\xe5\x87\xaa\xd6\x20\x56\x87\xd2\x5c\x52\xeb\x62\x23\x6c\x2b\xbc\x46\x62\xd2\x83\x18\x2f\x52\x44\x83\xe4\x95\xd6\xed\xca\x05\xc9\xc4\x33\x3e\x8c\x68\x6b\xc4\x6e\x4e\xcd\xde\x79\xa7\x27\x85\x1b\x09\x5c\x1a\xd8\xc6\x11\xa0\x45\x51\x12\xda\xec\x74\x0f\x1e\xa1\x67\x08\x3a\x25\x05\x1b\x86\xef\x92\x81\xc1\x5f\xc5\x13\xb2\x62\x76\x9d\xea\x09\xff\x5d\x0e\xe6\x47\xfb\x10\x06\x11\x93\xa6\xbf\x20\x0a\x0f\xab\x9a\x79\x7d\xdc\x94\xf0\x09\x90\x6e\xd7\x88\x6f\xda\x5b\xfd\x1c\x03\x89\xb6\xc4\x3d\x79\x29\x5f\x63\x90\x9d\x46\x27\x71\x71\x4a\xc6\x20\xf3\xa6\x60\xfd\xe7\x19\xfd\x1b\x0b\xd1\x2e\x92\xb1\x49\xd2\x20\xce\x1d\xdf\x88\x95\xb3\x3f\xce\x20\x74\x97\x9b\xa5\xdc\x6e\x66\x8b\x0b\xd4\x3d\x31\x02\xb1\x47\xa4\x04\xbf\x63\x8f\x1c\x54\xa0\xf7\x74\xe0\x82\x8e\x90\x3e\xa1\x85\x47\x6f\xb4\x85\x97\x99\x86\x7d\x82\x2d\xd9\xfa\xf5\x4a\x64\x10\x4c\x03\x94\x5b\x89\xbf\x74\xc2\x5b\x0b\xeb\x85\x76\xba\x63\x1b\xd0\x4e\x62\x2e\xf1\xed\x0a\x22\x6a\x04\x0c\x30\x10\x91\x61\x25\x68\x6c\xe0\x10\x69\xf7\x04\x41\x6c\x40\xd8\xb8\x47\xea\x4c\xca\x08\x12\x37\xd2\x11\x84\x3f\x7b\x02\x90\x5d\xdb\x18\xee\x33\x0a\xee\x75\x85\x97\xd1\x7a\x08\x38\x4a\x14\x62\x1a\x1d\xd5\x48\x4a\x62\xdb\x63\x4e\x61\x26\xbf\xc0\x90\xc6\xb8\x62\xe7\xb1\x60\x75\xf3\x36\x4d\xc2\x91\x48\xd1\x6d\xb9\xca\xdb\xc2\xc2\x28\x28\xa7\x61\x97\x78\x70\x94\xf0\x96\x5c\xbe\x21\xe5\x5b\xab\x20\xce\x48\x20\x1f\xd9\x59\x85\xe6\x9b\x65\x1c\xb3\x37\xb0\xb4\x58\x08\x1b\xe3\x0b\x48\xc4\x5c\xf6\x3b\xe6\x37\xc2\xbc\xac\x1d\x0c\xf9\xfb\x7f\xbe\xbe\x7c\x73\x92\x7e\x7e\x78\x38\x1c\x1e\x72\xf1\x87\xfb\x76\xc3\x57\x75\x0a\x0e\xd3\xf0\x3f\x2e\x5e\x9f\xa4\x65\xbf\xf8\x61\x46\x8a\x3a\xd8\x90\x5f\xdd\xea\x25\x07\x6b\x31\x53\x17\x8b\x8e\xff\x38\x7b\xd2\x15\xa3\x41\x7c\xc3\xe8\x3e\xe1\x06\xc9\xb3\x67\x47\xf2\x3a\x99\x72\x34\xef\x95\xc3\x72\xd1\x96\x38\xd1\xc6\x47\x90\xb1\x21\x9d\x60\xea\x7a\xee\x10\xa4\xa2\x76\xb4\x1b\xaf\x16\x1a\x44\x78\x00\x62\x07\x38\x67\x38\xba\x71\x99\x98\x38\xb7\xad\x70\x24\xa6\x6e\xdd\xec\x37\x45\xcc\x31\x09\x67\x3a\x11\x65\xf1\xeb\xb0\x30\x1c\xc3\x10\x71\xf4\x49\xfa\xcf\x6c\x29\xe2\x89\x12\xda\xe2\x2c\xa3\x2d\x00\xcf\x86\x85\x11\x1a\x2b\x10\x8c\x69\x00\x12\xf2\xcb\x04\x73\x9f\xe7\x84\xf3\x51\x25\xaa\xbf\xf1\x51\x78\x9f\x6e\x9d\x3e\x07\x5a\x93\xea\xc6\x45\x62\x3b\xdd\x74\xb6\xe1\x45\x9c\xcd\x24\x12\x71\xbe\x32\x23\xd6\x14\x1e\x52\xf1\x8a\x9b\x44\x51\xc0\x1f\x01\xca\x5c\x24\x74\xd3\xf3\x6b\x17\x8c\x29\xd5\x58\x70\xe5\x30\xc3\x1b\x7a\xcf\xcb\x1e\x97\x47\xa7\xd6\xa2\x68\xd4\x6e\xd6\xfc\xea\x31\xfe\xa6\x3b\x9c\x48\x26\x72\x8f\x20\xe2\x1e\x60\x1d\xb1\xcc\x75\x18\xee\x62\x43\x71\x4b\x79\x93\x17\x65\x94\x37\x8d\xb6\x6b\x05\x1c\xb4\x31\xda\x25\x55\x3a\x1e\xcb\xfc\xbe\x85\x63\x02\x81\x38\x5e\x64\x3a\x4a\x8b\xea\x80\xcb\x58\xe7\x2e\x2d\x16\xaf\x6c\x95\x82\xef\xc6\x4b\x94\x11\x22\xeb\x28\xe4\xa8\x2c\xa8\xc5\xc7\xb4\x0c\x82\x3b\x84\xec\x34\x6d\x0e\xc6\xa3\x1b\x94\xa1\x08\x2d\xb5\xda\x6d\x18\xb9\xb5\x33\xc8\x1c\x46\x4d\x1f\xae\x6c\x92\xd5\xe4\x41\x87\x33\xf9\x0a\xb1\xb5\xdb\x34\xb7\x76\xc9\xf4\x1c\xbf\x34\x7a\x43\x38\x32\x0f\xa6\x83\xf2\x90\x81\xf1\xa5\xc9\xe2\xea\xfe\x1a\xc4\xf1\x53\x11\xb7\x66\x7d\x17\x45\x09\x26\x54\x63\x22\x83\xf7\x44\xf7\x26\xee\x29\x3a\xa8\xe1\x8d\xca\x73\xd7\xc2\x91\x1b\x95\x71\xd1\xf0\x56\x65\x50\xf4\x2b\x6e\x55\xc6\x48\x1a\xdf\x99\xf4\x43\xfd\x8a\x6b\x93\x53\x83\x1e\xcb\xb5\x53\x88\x9f\x28\x30\x25\xdd\x16\xe1\xd8\xbe\xe2\xfa\xe4\x40\xb3\xfd\x1a\x01\x77\xaa\x27\x1e\x25\x01\x72\xbf\x64\xf1\x2d\xaa\xe5\x72\x36\x6f\x9b\x43\xc7\x77\x14\x11\x82\x9c\xb9\x2c\xff\x4e\xaf\xf1\x5b\x40\xf8\x74\x16\x44\x21\x1f\x92\xa8\x4e\x20\x4f\xf4\x44\x4c\x12\x59\x94\x18\x85\x5a\x3e\xa7\x1c\x44\x37\xe6\x88\xec\x1c\x6d\x41\x72\x66\x52\x84\x36\xba\x43\xc6\x5f\xb8\x5d\x09\xeb\x33\x1b\x4b\x51\xe8\x9a\x53\x14\x8c\x3f\x0d\xe1\xb6\x2b\xc1\xff\x48\xe3\x5f\x40\x7c\xf5\x96\x23\x10\x96\xc1\x11\x18\x11\x43\x05\xf9\xd4\x83\x84\xb7\xa8\x08\xc2\x70\xe9\x21\x14\x41\x58\xf4\xcf\x5e\xbd\x91\x9f\x70\x2a\xd6\x68\x20\xf0\x2a\xe6\x43\xd3\xc4\x5c\x95\x67\x53\x2e\xcb\x96\x27\xae\xdf\x62\xe6\xb0\xc7\x68\xf0\xcb\x41\x14\x6d\xbe\xc4\x31\x10\xff\x77\xa9\x24\x03\xfb\x62\x57\x6d\xf9\x70\x58\x8c\x90\x23\xa8\xbe\xc6\x87\x4b\xd7\x63\x1c\xfe\xe7\xd2\x72\x9c\xaa\x3f\x09\x46\xee\x31\x62\x67\xc4\x44\x77\xf7\xbb\xb4\xab\xd8\x76\xaa\x04\x3a\x68\x10\xd4\xe1\x03\x5c\x82\x76\xf0\x3c\x8b\x41\xd0\x0e\xed\x2e\x4a\xd2\x66\x5d\xcb\x5d\x2d\xcb\x83\xda\x6a\x11\x89\xa2\x32\x3e\xca\xa5\x59\x83\xbd\x63\x3b\xe5\x63\xf7\x5f\x84\xfe\xf2\x2c\x0a\xf0\xd5\x71\x36\x07\x75\xeb\xd9\x70\x22\x9c\x39\x53\x71\x96\xe2\xb7\x83\x32\xc9\x90\xc9\x25\xdb\x16\x81\x70\x28\x04\x14\x6e\x2b\x17\x79\xfb\x91\x03\x80\xc3\xe7\xc7\x2a\x38\xb4\x1a\x45\x86\xff\x87\x33\xa6\x81\xe7\xaf\xe4\x6b\xd4\x60\xec\xa7\x8b\xd2\xb0\x07\x18\x33\x75\x05\x58\x9a\x15\x91\xec\xb5\x7c\xc9\x13\x3a\x43\xca\x18\x5f\x19\xa6\xbc\x87\xc3\x79\x0b\xe0\x1d\xa2\xff\x52\xfe\x9f\xff\xf5\xbf\xd9\x5c\xda\xd0\x6e\x89\xfb\xfd\x1a\x5a\xce\xcf\xbb\xdd\xf2\xf1\xcf\x17\x3c\x04\x8f\x0e\x3a\x22\xe8\x4f\xf5\xca\x3c\x7d\x8d\x68\x94\x63\x88\x1b\x7d\xb3\xe7\xd3\x80\xc8\xa1\x24\x7a\x32\xc7\xd1\xe3\xb0\x0e\x23\xaa\x4c\xf7\x08\x17\xda\xca\x26\x17\x93\x26\x01\x63\x94\xe8\xa6\xb7\x94\xe4\x7d\xd3\xae\x3e\xf8\x00\x88\x6e\x22\xa2\xe0\x87\xd0\x0c\x3d\x8c\x21\xec\x05\x93\xdf\xf8\x05\x19\xd1\xb4\x25\xda\x2a\x3c\x75\xec\x46\xa1\x04\x24\x93\x70\x15\xae\x92\xb0\xa1\x07\x9d\xc5\xac\xd0\x40\xbc\x88\x0a\x31\x11\x38\x24\x0c\x86\x41\x8a\xb6\x8a\xc7\x12\x68\x4d\x4f\xba\xa3\xa7\xa8\x70\xcf\xc4\x6c\x9b\x26\x06\x16\x89\x1e\xc1\xf2\xdd\x07\xfe\xe0\x58\x78\xfc\x4c\x0f\x93\x9f\x1c\x9e\xbd\x42\x02\xad\x6b\x24\x20\xce\x23\x6e\x77\xf0\xff\x04\xd1\xb5\xd4\x00\xc7\xa9\xfa\xa5\xe9\x83\x08\x5e\x51\x24\xf1\xe0\x06\x0c\x22\xfb\x45\xe1\xc1\xb9\x72\x20\x6a\xe2\xf4\x7d\x14\xef\x11\x33\x83\xd4\xbb\xa0\xa3\x8b\x8c\x0f\x36\x38\x71\xd1\xf0\x30\xb0\x63\xb3\x23\x4e\x2d\xb2\x21\x48\x06\xd1\x06\xeb\xc8\x33\xb0\x9b\xf9\x66\x82\x25\xb3\x96\xa3\x79\x5f\x0c\x4f\x66\xcc\x69\xf1\xfc\x2a\xf0\x7c\xf6\x50\x75\x5d\x20\x24\xa0\x8c\x4f\x4e\x37\xa4\x20\x6c\x22\x35\x0f\x15\xb1\x28\xf7\xeb\x91\xab\x7c\xe3\xc8\x9c\xdf\x7e\x99\x6f\x5c\xc7\xdd\xd7\xf9\xfe\xd1\x53\xe1\xe9\xa8\x5b\xa1\x2d\x6b\x10\x7e\xcb\x65\x4d\xc5\xe1\xfa\x77\x9c\xd1\x12\x49\x69\x37\x46\x6b\xdb\x85\xd7\x3a\x52\xc6\x9d\x21\x1e\x8f\x88\xea\x82\x11\x8d\xe2\x6d\x1d\x3b\xf1\x8d\xe2\x50\x7e\x85\xb4\x17\x8f\x38\x10\xf4\xa2\x5e\x39\x84\xb0\x9d\x2f\x0e\x20\x70\x4c\x7b\xf3\x82\x6b\xc4\x33\x86\x3a\xde\xe8\x36\x3b\x46\x7a\x67\x91\xf8\x6e\x7b\xd8\x4d\x67\xd5\x0b\x8e\xe6\xd4\xd0\x2f\xb7\xda\xc5\x54\xfd\xe5\xab\xed\x47\xce\x3e\xee\xba\xe3\x3e\xec\x25\xf3\x1a\xe7\xff\x1e\x76\xf2\xce\x12\xe1\x36\x1b\x1f\x9f\xff\x7b\xee\xbd\x4f\x9f\x2f\xb0\x0e\x78\x30\xd3\x17\x36\x65\xc3\x9f\x37\x28\xb0\x0e\x61\xf8\x12\x25\xc3\x33\x5c\x8f\xb9\x3d\xde\x58\xea\x87\x9d\xe6\x18\x1e\xc2\xbd\x67\x7a\x9c\x66\x21\x6f\x06\xe9\x9e\xf5\xc1\xff\x54\x0f\x0c\x3d\x90\xfc\x86\xb8\x33\x99\x33\x2c\x1f\xb7\x11\xbb\x7b\x5b\xaa\x3b\xe2\xb9\xc0\x87\x4b\x27\xac\x2d\x4a\xdc\x83\x3e\x93\x2f\x97\xa3\xba\x96\xc6\x96\xf5\x9d\x90\xb8\xa1\xb8\xa2\x11\xa4\xea\xae\xa7\xb8\xe6\xab\xa0\x34\x29\xb7\x3b\x9e\xc2\xdc\x05\xd2\xe3\x69\x12\x40\x15\x37\xb5\x57\x90\x90\x7f\x19\xd6\x25\x6f\x28\xe8\xee\xf9\xa6\x39\x24\xb2\x75\xce\xe0\x75\x2e\x71\x2e\x35\x25\xee\x92\xa4\xb1\x8c\xa2\xc1\x54\x52\xb9\xa9\xae\xe1\x36\xc6\xf9\x83\xbb\xd1\xd8\x39\xdc\xad\x68\x0b\x5b\xcb\x02\x28\xa4\x06\x5c\x47\x65\xb9\x3e\x24\x8e\x99\xd6\x0a\x01\xd6\x37\x2b\x92\x68\xd4\x6e\x08\xf1\x35\x0d\x73\x3f\x47\xcd\x9d\x98\x7d\x0b\x51\xcc\xd4\xf0\x26\x61\xa8\xa4\x15\x79\x27\xc6\xf5\xc3\x3d\x42\xe4\xfb\x11\x42\x7c\x4d\x3f\xb8\x15\xf8\xf1\x62\x12\xef\xea\x0f\x29\x87\x1a\x94\x2d\x3a\xc8\x1f\x76\xd1\x5f\x0e\xbe\x09\xf6\x6b\x38\x8f\x14\x03\xf9\x83\xcd\xc9\xe3\x8d\x53\x72\xe4\x90\x77\x42\x44\x10\x1f\x9f\xc9\x38\x34\x5f\x5e\xe2\x70\x98\xe6\x92\x0e\x34\xf0\xde\xf1\x60\x53\xbb\x90\xf6\xcb\x8b\x74\x90\xb1\x2e\x54\xae\x93\xcc\x2f\x6f\xbc\x02\x67\x11\x58\x44\xbe\x0b\xb7\x0c\x08\x78\x36\x93\x85\xc4\xf0\x76\x6b\x9c\x59\x5d\xd0\xea\xb8\x32\xc7\xaa\x01\xe5\x58\xf4\x18\xce\x78\x67\x28\x9d\x05\xc6\x56\x66\xca\x27\x26\xb3\x3a\xd7\x02\x40\x6d\xf3\xdb\xc8\x79\x07\x3e\xba\xdb\xf8\x09\xc7\x3b\x76\xec\x71\x57\xfc\x5e\x2d\x81\xb1\x1d\xc1\x1c\x35\xca\xcc\xc2\xa5\x3e\x26\x10\x4f\x76\xab\x16\xbe\xe4\x36\xd7\xcc\x2c\x02\x52\x40\x85\xbf\xb8\x51\xba\x57\xca\x3c\x37\xc0\xe9\x31\x55\xf4\xe0\x2e\xa6\xf0\x0d\x1d\x00\xdb\xb8\xbb\x07\x60\x0b\x72\x83\x88\xba\x11\xb0\x80\xbb\x3a\xa2\xcf\x8b\x7d\x7d\x47\xc0\x37\xbe\xb2\x23\x27\xd6\x0b\x0d\x2a\x5b\x14\x93\xeb\xff\xae\xfe\x0d\xd4\x1d\x10\x67\x14\xb5\x78\x40\xf0\xd1\xdb\xb7\x8e\xe8\x03\x37\x36\xab\x16\x0e\x13\xea\x56\xa7\xdb\x99\xaf\xaa\xa6\x29\x84\x2a\x5b\xf7\xa1\xeb\x5d\x1c\xb8\x81\xbd\xbe\xfa\xf6\x56\x45\x12\x1e\x5c\x1c\x37\xc2\x7b\xdc\x88\x12\x86\x23\x60\x89\x64\xfd\x1e\x68\xff\x70\xe4\x8d\x6d\x79\xfa\x4e\x8e\xc1\xba\xe8\x29\xe6\x71\x50\xe1\x3b\x03\x3a\xc7\x81\xac\x87\x11\xcd\x3b\x89\x5f\xb4\x32\x59\xce\x5e\x17\x4b\xd4\xd3\x88\x19\xeb\x2d\xe1\x60\x8b\x87\x1e\x17\x1c\xcb\xb3\xa9\x2b\xf1\x69\xb9\x90\x2f\x1a\x7b\xc2\xa6\x18\xb5\xc3\x70\x0c\x30\x7f\x0f\xd2\x8f\x0e\xc6\x45\xb6\x31\xa9\x20\x20\xdf\x41\x7e\x10\x60\x18\xae\xec\xad\x85\x4c\xf6\x35\xa0\x27\x30\x61\xee\x83\x9e\x69\x3f\x50\xe9\xbe\x9b\x6a\x31\xe3\x83\xd1\x54\x8f\x85\xdd\xcb\xb8\xcc\x24\x38\x8a\x66\xc1\x51\x34\xe5\xad\xc1\x93\x20\x21\xc2\x79\x98\xb1\x73\xf1\x0a\xa3\xe4\x78\xe3\xf3\xe9\x08\x92\x11\x27\x71\x64\x8c\x28\x21\x5f\x8c\x5a\x31\x03\x76\x98\x66\x2e\x72\x3e\xc5\x9c\xe5\xa2\xda\xe3\x98\x75\x61\x96\x78\x18\x46\x49\xfa\x9e\x59\x3c\x12\xb1\xa9\x86\x69\x9b\x66\xc5\x71\xc5\xed\xf5\xca\x60\x78\x2a\x3b\xc7\x75\x9a\xb7\x74\x54\x05\xee\xca\x85\x29\x38\xd7\xea\xf3\x2e\x2e\x8d\x25\x18\x26\xe8\x3d\xe3\x11\x20\xe9\xd4\xf9\x62\x8d\xf1\xcf\xa6\x08\xc9\x54\x63\x47\x4c\xfa\xb4\xf3\x04\xa4\xbc\x39\x97\xda\x0b\x73\x93\x30\xfc\xb6\x2f\x1e\xf4\x0b\x72\xf9\xf6\x41\x9d\x69\x58\xbf\x46\x23\xf2\xf0\x55\x04\x17\xc2\x2f\xbd\xc4\x8a\xeb\xee\x2c\x14\xec\x62\x7c\x4b\x5d\xc3\x06\x6a\x49\x91\x38\xee\xd8\xce\x7c\xcd\xba\x31\xaa\xc3\x47\xee\x75\xb5\xce\xcb\x09\x2c\xdd\x98\x47\x88\x23\x92\xaf\xaa\x63\xd0\x4b\x0f\xe1\xaa\xf9\xf6\xae\xc2\x7a\xc6\x61\x3e\x60\x91\x8b\x3a\x19\xb1\x35\x03\xf9\x42\x0d\x83\x2e\x4e\x56\xf1\x0d\x9d\xe4\x47\x30\x57\x0b\xf7\x74\xdf\x39\x87\x8b\x6d\xe7\x1c\x50\x84\xf7\xb0\x72\x61\xb7\xa5\x22\x0b\xdc\x74\xf1\xbb\x7a\x86\x0e\xb1\xce\x3d\x55\xfd\xb1\xbe\xb5\x65\x77\x5b\x2f\x32\xbc\xe0\xd8\xad\xf5\xa0\xf2\x6d\x29\xb6\xf2\x07\x33\x4a\x7b\x94\x6b\x54\xa8\x12\x47\x7a\xdd\x03\x89\xa7\xfd\xfd\x82\xd2\xe1\x3f\x4c\x5b\xdc\x43\xf0\x44\x94\x36\x01\x8e\xc4\xb3\xfe\x87\x3b\x1b\x1a\x8c\x25\x60\x88\x01\x6e\x5b\x74\x85\x5f\x80\xfe\x8a\x11\x04\x87\xe4\xe1\x30\x98\x0c\x74\xf5\x83\x57\x84\x0f\x47\x30\xe2\xbe\x67\x87\x07\x0e\x00\xcc\xde\x1c\xea\x25\xa5\x1b\x9a\xbd\xd0\xa9\xc6\xa3\x23\x03\x0a\xdb\xbd\x63\x86\x1e\x44\xbd\xf8\xf2\x18\xc3\x4d\x48\xde\x44\xde\xef\xf0\x22\xbe\x7b\x0c\xf9\x1d\x7e\x87\x4c\x41\x62\x79\x67\xab\xa6\x6d\x68\x7a\x24\x66\x8a\xc6\xf7\x7e\x61\x69\xdd\x44\x01\x98\xc0\x6f\xb3\xbd\xc6\xb9\xb1\x32\x17\x48\x26\xf9\x81\x83\xde\xf8\x52\x7d\xd3\xe7\x1b\x2b\xc3\x16\xc8\x85\xda\xad\x6f\x38\xc3\x4a\x9d\x5a\x46\x50\x52\xcb\x34\x73\x76\xd5\x47\x11\x05\xbe\xd4\x94\x00\x16\xc7\x1c\x1c\x88\x84\xd0\xb5\xdf\x65\x3c\x54\x44\x4c\x90\xe4\xf4\x35\x92\xd3\x1b\x4e\x1e\xb7\x60\xbd\x72\xc5\x06\x9d\x3a\x56\x8e\x2f\xa7\x0f\xcb\x3c\xe7\x3b\xec\x43\x78\xc3\xdc\xba\xcc\x77\x23\xbc\xbd\xa4\xc4\x11\xd6\x00\x39\x46\x00\x60\x8f\x63\x21\x2c\x55\x15\x50\xac\xc2\x12\xaf\x28\xe9\x18\x34\x3c\x00\x86\xf0\x78\xab\xfe\x48\x09\xdd\xb3\x87\xbd\xd2\x33\x9b\x51\xaf\x9a\xf9\xdf\xf0\xc0\xba\x42\x5f\xca\xcf\x00\x6a\xde\x34\x3d\x3f\xf7\xb8\x63\x71\x0b\x9e\x59\x82\xa6\x67\x96\xce\xe2\xd6\xe2\xe3\x08\x53\x02\x3d\x46\x95\x40\x1f\xc7\xd5\x96\xa3\xc8\x51\x5b\xed\x7e\xc1\x2f\xd1\x77\xae\xc1\x8b\x6b\x8e\x3e\x77\xed\x32\x46\x2d\x8e\x4a\x86\x14\x3a\x2c\x3c\xd5\xf2\x82\x84\x88\x72\xb2\xe9\x33\xce\xb9\xb3\xed\x51\xd9\xb0\xf1\x51\xf1\xa9\x95\x82\xe7\x2b\xd8\xe8\x3c\xdf\x2f\x3e\x96\x3d\x5f\xf7\x59\x67\x38\x61\x0e\xeb\xba\x32\xb0\xf4\x19\xc0\xd2\x97\x04\x96\xde\xc8\x2b\xe9\xe3\x5a\x69\xd3\xd9\x96\x7d\x0e\x4f\x81\xa0\x96\x17\x67\x34\x03\x9c\x5c\xe4\x53\xa5\x60\x9d\xc9\x54\xca\xd6\x55\xc8\x82\x4f\x50\x83\xbe\xdf\x2e\x82\xf7\xa9\x03\x99\xaa\x8d\xd5\x00\xd9\xfd\x16\xb7\x0b\x79\x9b\x81\x15\x03\xea\xc3\x5b\x49\x09\x60\x11\x64\x9a\x60\x8d\x47\xe2\x50\x1c\xd1\xa6\x09\xfc\x26\x66\x94\xc2\xc1\x3c\xb0\x30\x2e\x82\xbb\xe2\x7b\xc5\x53\x80\xbb\x5c\x16\xd3\x51\x48\x6b\xde\x00\xad\xe5\x21\x9c\x36\xda\x09\x2a\x85\xad\x88\xa6\x26\x7e\xf3\x1a\xab\x99\x68\x0e\x3e\x4a\x70\x9b\xb7\x48\xcd\x9c\xa6\xb0\x5f\x7c\xbd\x57\xc1\x44\x7a\x85\xcc\x2a\x29\x26\x6f\xe1\x65\x2a\xfb\xb6\xbc\x28\xc6\x87\xa4\x45\x4f\x09\x6b\x9a\x5d\x4b\x75\xb1\x8a\x34\x3d\x8c\x45\xa1\x35\x42\x30\x35\x97\x95\xf8\x95\x46\xf5\x5c\x11\x40\x89\x9c\x28\x27\x49\x9b\xb0\x30\x94\x06\x93\xc2\xe3\x0a\x5e\x43\x9f\x08\xc6\x76\xf4\x95\x17\x8b\x8f\xfb\x95\x0f\xbd\xf8\xd1\x04\x38\xc6\x41\x77\x8c\xdd\xaa\xcb\x42\x74\x0e\xc3\xeb\xe6\x03\xf4\x32\xb8\x62\x38\x02\xc5\xc9\x77\xf8\x2e\x71\x70\xfc\x68\x28\xc7\x41\x1f\x1e\x54\x57\x47\xbe\x51\x0d\x41\x99\xe0\x15\x7a\x76\x9f\x94\x6b\x9c\x53\x28\xf2\xd6\x41\xc3\x90\x7b\x30\x07\xd0\x77\x1e\x2d\xc5\xb8\x98\x7e\xc7\xeb\xff\xc9\x53\x66\x61\x07\xfc\x83\x66\x47\xda\xff\x0f\x79\xd0\x6c\x68\x99\x75\x2f\x9a\xe1\xc5\xa6\x19\x2e\xbe\xc4\xeb\x38\x3a\xb8\x8a\xd6\x33\x4a\x84\xeb\x14\x09\xf1\x51\x3e\x92\xbc\xd9\xd7\x2c\xbe\x62\xb5\xc1\x12\x1d\xb6\x17\xdc\x55\x8a\x5a\x93\x12\xe3\xb0\xcd\x71\x17\x24\x65\x7c\x5a\x24\xe9\x6a\x8d\x48\x35\x68\x67\xa9\xd6\xa3\x19\x4c\x12\x7a\x44\x63\x69\xc3\x18\x93\x30\x26\xe9\xd2\x1e\x74\x39\x5e\xdc\x51\xaf\xa5\x90\x04\x51\xb0\x6b\x50\x93\xcc\x44\x01\x83\xa1\x48\x4a\x18\xe3\x4d\x52\xe4\x05\x1f\x3c\x69\x29\x5f\x9a\x3e\xf6\xc2\x08\x7a\xac\xd5\xc4\x4d\x07\x95\x02\x68\x92\x57\x05\x7d\x19\xfa\xa7\x4a\x2a\xee\x06\xb1\x33\x6d\xd7\x6b\xca\x4e\x9f\x03\xe6\xb8\x6d\x92\x02\x65\xbf\x80\x97\x1b\xeb\xf6\xe7\x6f\xc2\xf4\xe0\xd5\x1f\xe4\xba\x67\x7f\x74\x5c\xbc\xb9\x68\x94\x19\x6c\x2a\x1a\x19\xf3\x19\xfb\xed\x68\xef\xfb\xbe\xad\xe6\x7b\x3e\x1f\x53\x7f\x00\x26\x6a\x39\x48\x77\x79\x23\xd8\x6e\x6f\xee\xf6\xd7\xfa\x75\x1c\x76\xf0\xa0\xf0\x00\x4e\x22\xda\x58\xff\x24\x9e\x8d\x55\x01\xf3\xb2\x03\x90\x43\xa7\x08\x62\xcb\xcc\x35\xeb\x72\x5e\x1e\xc4\x9b\x8a\xf4\xfa\x54\x73\xba\x6d\xbf\xb3\x40\xc7\xd7\x17\x37\x57\xc7\xa7\x8f\x21\x75\x1e\x00\x18\x4c\x06\x67\xe9\x84\x20\x2b\x98\x15\x7d\x1c\xab\x97\x77\x8b\xe4\x61\xa8\x9b\xd7\xd7\xf4\xb9\x68\x6f\xe5\xa4\x49\xeb\xf8\x58\xed\x18\x4c\x5f\xa2\xe4\xaa\x28\x05\xb0\x7f\x46\x8a\x4d\x3c\x1f\x49\x90\x8a\x57\x2d\xdc\x4c\x5c\x9d\x5e\x40\xeb\xa3\xa4\x90\x94\xb4\x69\x44\x35\xb1\x27\xec\x7d\x27\x68\x9c\x8d\x3e\x61\xaf\x16\x59\x5d\x0c\xfc\x04\x23\x7b\x17\xef\x3a\xab\x27\x08\x23\x31\x58\x57\xfa\xd8\x96\x4e\xc3\x68\xb7\x8b\x4d\xc3\xd8\xc9\xdc\xae\x17\x2e\xa8\x70\x33\x8e\x1a\xf8\xca\xa7\xb1\xc2\xba\x82\x5d\xeb\x8e\xbe\x4e\xde\x43\x8f\x63\x5c\x87\x80\x99\x2c\x70\x0b\xa8\x1f\x55\xec\xdf\x4f\x18\x15\x88\x22\xeb\x47\x85\xa6\xfd\x0c\xee\x8a\xa9\x2f\x56\x07\xd3\xf6\x9d\x51\x5d\xb5\xfd\xd8\xb6\xae\xb0\xf9\x6e\xe7\xf8\x4d\xf0\xd4\x01\x48\x24\x00\xf9\x24\xab\x26\x80\x20\x82\xeb\x06\xf5\xc8\x85\x98\x10\x88\xef\xc5\x28\xc0\x90\x69\x69\x72\xb3\x5c\x72\xac\x1c\x8e\x27\xa6\x01\x1b\x10\x3a\xe7\x82\x3d\x4c\xad\xa4\x5c\xf3\xca\xd8\xfc\x00\x75\x9e\xc7\x74\xae\x77\xbf\xde\x22\x91\x25\x39\x03\x6f\xf7\xee\x59\xce\xb7\x7b\x68\xab\x6d\x98\xa5\x0d\x71\x56\xd8\x08\xb6\xc0\x96\xf4\x4a\x8b\xc8\x1d\xec\x7f\x6f\x29\x99\xb8\x61\xbf\x76\x08\x66\x9b\xfe\x22\x93\x00\xc5\x41\x19\x9c\x28\x2c\xe0\x27\x3c\x2e\x44\xfd\x1e\x97\xa0\x7e\x1f\x01\x97\x53\x66\xdb\x30\xae\xf1\x4b\x58\x8d\xeb\x31\xfb\xae\x29\x15\xd9\x80\x25\x6d\xf8\x62\x6c\x88\x83\x62\xee\x09\xe3\xdc\x4e\x21\x26\x49\x83\x20\xc3\x5d\xcf\xa7\x86\x3b\x8d\x4f\x0d\xf7\x4c\x9f\xaa\x1d\x1b\xf4\xa0\xeb\x36\x36\x11\xd7\xd7\xaf\xe3\xd9\xf6\xb9\xc1\xab\x08\xec\xfc\x72\x8f\x03\x0b\xae\x48\x85\xbd\x97\xf2\xed\xa7\x1f\x82\x12\x8a\xcd\x10\x7f\x9a\x3a\xac\xa3\xfb\x63\x53\xf5\xe5\xcf\x83\x2a\x8c\x59\x46\x4b\xa6\x5a\x1c\x41\x8c\x31\xca\xf8\x0d\xb5\x54\xee\x8c\x56\x6d\x69\xdb\xd3\x59\xe0\xc4\x39\x22\x66\xcf\x6c\x1d\x29\x87\x8c\xd6\x3a\xc6\x3e\xf3\x6d\x90\x41\x1a\x7a\xdf\xcb\x83\x4f\xec\x77\xf6\xd6\xaa\x79\x86\x64\xdf\x43\x09\x87\x68\xe1\x11\xd5\x45\xd9\xfa\x87\xe8\x86\xaf\x6a\x78\xb5\x5b\x11\x0c\x05\x8e\xa8\x08\xb9\xc3\xfd\x7f\x13\xb8\xa5\x1a\x98\x3d\xe4\x08\x93\xc3\xe8\xcd\x47\xd8\x1a\xf4\xc9\x47\x63\x0c\x72\x87\x8a\x1d\xc8\xb3\x8d\xda\xd7\xe5\x9e\x15\xdc\xc8\xd3\xd7\x30\xa8\xbb\x7e\x13\x37\xf7\x2f\x05\x46\x85\xde\x72\x9e\x7f\x6c\x7d\x5c\xd8\xae\x5f\xba\x49\xb4\xeb\x4d\x93\x93\xf8\xc7\xbe\xdc\x53\xe5\x65\xbd\x02\xe9\xfc\x89\x7f\xa6\xaf\xf1\xd3\xcd\x95\xdc\x5b\x82\xba\xcd\xde\xd2\x4f\xec\x26\x13\xb4\x6e\x4a\x71\xb3\xf4\xc5\x7d\x39\x40\x72\xc8\x99\x2f\xf0\x7b\xba\x83\x0a\x3b\x16\x33\xe3\x7c\x23\x28\xa2\xf3\x26\x20\xa6\x97\xbf\xbd\xbe\x1c\x40\x4e\x2c\x50\xcd\x99\x58\xd0\x9a\x33\xb1\x7c\xe5\xac\xc8\x0d\x01\xe7\x43\xd3\x23\x10\xc8\xa3\x03\x10\x1a\xf2\x47\xbf\x20\x9e\xc9\x8a\x94\xda\x8a\x7c\x27\x2b\x46\xe9\x4c\x7e\xc7\x40\xc1\xe3\x19\x02\x65\x6f\x67\x8c\x5a\xad\xc3\x36\x6b\x39\xe7\xf0\xfc\x40\x7c\x10\x02\x7e\x20\xbe\xbc\x93\xdd\x33\x68\xd2\x89\x3f\x55\x85\x3e\x33\x22\xf0\x57\x9a\x64\xa0\x06\xe2\x6b\x36\x08\xad\xda\x75\x93\x08\xb7\x72\xd2\xdb\x19\x7e\x45\x53\xa7\x0b\x91\xd7\x8b\xc0\xfa\x65\xc8\x2f\x48\x4a\x09\x03\x5e\x2d\x1c\x62\xcc\x62\xf5\xe2\xcc\x3f\x2b\x02\xe3\xd6\x60\x30\x9b\x6a\x59\x3a\x53\x98\x8e\xe6\x35\xa5\x45\xc0\xeb\xbe\xdf\x75\x76\x17\x15\x8f\x60\xa4\x97\xf4\x63\x30\x88\xb0\x2a\x1d\xc9\xa8\xa6\x5d\x05\xf3\x64\x80\x17\x49\x98\xc6\xb8\x41\x2b\xdf\x0e\xc0\x95\x71\x0f\xd9\xad\xbd\x62\x1d\xac\x10\xff\xa4\xac\xdf\x9f\x5d\xeb\xbc\x2f\x4f\xb6\xcc\x50\xba\x73\x31\x0c\x76\x2e\x73\x47\x98\x2d\x5a\x89\x8b\xc5\xff\x6e\xf8\xa0\xd8\xe5\x84\x6b\xcf\xd2\x3a\xa2\xbd\x62\x2f\xb7\x79\xf4\xd3\xc3\x7b\xf7\x05\x41\x93\x65\x4c\x84\x7e\x8e\x01\xca\xcf\xe5\x62\x1f\x9c\x5b\xfc\x26\xbf\xd5\x50\xe8\xab\x69\xcc\xfb\x70\x5f\x23\xec\xf7\x95\xa4\x04\x30\x53\xc1\xf1\xac\xeb\xf0\xa1\x34\x5f\xca\xa3\xed\xbb\xe6\xa1\x26\x31\x94\xb9\x74\x98\x1b\x85\xfc\xcc\x36\x72\xb9\x63\xe0\xe5\x61\xb0\xa1\x14\x12\xa6\x21\xc0\x4e\xe0\x51\x63\x79\x13\x1d\xb7\xac\x66\xc7\x2c\x6b\x37\x0b\x60\x21\x8a\x07\x8f\xe1\x49\x1f\x24\xff\x4b\x3e\x5c\xc9\x7b\x71\x9a\xf8\x30\x78\xfb\xc7\xec\x9b\x81\x9f\x4e\x74\xc1\xe8\x7e\xa7\x57\x8b\xea\x20\xa6\x96\xfc\x2a\x46\xaf\x7a\x58\x48\xd0\x1f\x7d\xa8\xd0\xe8\x21\xce\x61\x48\x71\x17\xe2\x19\xb5\xb2\xe3\x93\x84\x8f\x0f\x7a\xf0\xa8\x6b\x17\x8f\xee\x87\xd1\x9b\xd9\x90\x15\x07\x46\x8d\xaa\x94\xd1\x59\x18\xec\xdf\x35\xf4\xb4\xfc\x0e\xeb\x15\x6b\x8d\x54\xcd\x71\x54\x5d\x6c\xe8\x61\x24\xed\x20\x5a\x78\x53\x7f\x4b\x45\x2e\xac\x8e\x8e\xcf\x7e\x0f\xb0\x2d\x38\x9b\x46\x98\x9f\x00\xdc\x13\xe7\x0b\x44\x1e\x4f\xf4\xe3\x6e\x44\xc5\xb8\x1f\x22\x4a\x63\xee\xfe\x14\x44\x61\xc5\xdd\x41\xc9\xa8\x3a\x8d\x94\x28\x61\x69\x7f\x72\xcf\x8a\x24\xef\x39\x58\xe8\x87\x24\x5f\xf1\x98\xe8\x6f\x82\x77\x7b\xc4\xcd\x18\x54\x40\x9f\x89\xfc\xe4\xaf\x1f\xb9\xe2\x1f\x49\xf7\x5d\x70\xb4\xd1\xfb\x5d\xf2\xe3\x16\x09\x5b\xd2\x04\x69\xb1\x73\xc2\x1a\x09\xfc\x60\x14\x7e\x16\xf8\x59\xe4\xb7\xf8\x75\xc0\xaf\x43\x59\x7e\x94\xc2\xe0\x5b\x54\x9c\x74\xc9\x35\x52\x6e\xf1\x9b\xe3\x4f\xf2\x4f\x69\x47\x23\x49\xdb\x0f\x04\x09\xe5\xe6\x34\xdd\x7e\x50\xba\xbc\xf0\xfb\xc4\x3f\xf6\x7b\x9f\x8f\xf5\x6e\x35\x09\x5f\x94\xc2\xcd\x6b\x92\x7c\xde\x07\xf3\x21\x0d\x59\x2b\x94\x6f\x4a\xe5\x7e\x68\xa2\x7c\x52\x5a\x9b\x1f\x32\xdf\x2f\xfd\x42\xaa\xef\x95\x7e\x11\x7a\x8b\xb6\xd9\x71\xc0\xc0\x0f\xee\x15\x2e\xff\x2a\xcb\x39\xe5\x69\x50\x14\x44\x89\xe3\x8b\x87\xfc\xd4\x91\xbc\x05\xc8\xd7\xf2\x66\x89\x05\xf2\xac\xea\xdd\xde\x69\x65\x3e\xda\xac\x80\xf9\xc8\x2a\xe2\x6b\xca\x4f\x2d\xc8\x3b\x34\x34\xbb\xd9\x1c\x3b\x0b\xb4\xbd\xae\xfa\x7b\xf9\xfd\xbf\xfe\x2b\xc0\xe9\xf3\xdf\xfe\x2d\xbd\x78\xf6\x43\x5a\x7e\xe6\x38\x51\xfc\xb4\xfd\xe7\x6a\xbb\xdf\x1a\x14\xfd\x7c\x1e\x01\xf2\x65\x3c\x78\x0d\xaa\x05\x5e\x9f\x03\x85\xd9\xfd\xff\x06\x00\x00\xff\xff\x76\x9c\x09\x9e\x68\xa3\x00\x00") func confLocaleLocale_enUsIniBytes() ([]byte, error) { return bindataRead( @@ -4379,7 +4379,7 @@ func confLocaleLocale_enUsIni() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "conf/locale/locale_en-US.ini", size: 41606, mode: os.FileMode(420), modTime: time.Unix(1441178979, 0)} + info := bindataFileInfo{name: "conf/locale/locale_en-US.ini", size: 41832, mode: os.FileMode(420), modTime: time.Unix(1441184579, 0)} a := &asset{bytes: bytes, info: info} return a, nil } diff --git a/modules/middleware/repo.go b/modules/middleware/repo.go index 5b337a6ba..33e2a5da3 100644 --- a/modules/middleware/repo.go +++ b/modules/middleware/repo.go @@ -317,6 +317,7 @@ func RepoAssignment(redirect bool, args ...bool) macaron.Handler { return } ctx.Data["RepoLink"] = ctx.Repo.RepoLink + ctx.Data["RepoRelPath"] = ctx.Repo.Owner.Name + "/" + ctx.Repo.Repository.Name tags, err := ctx.Repo.GitRepo.GetTags() if err != nil { diff --git a/routers/repo/pull.go b/routers/repo/pull.go index 9fd51ffb9..149c2f929 100644 --- a/routers/repo/pull.go +++ b/routers/repo/pull.go @@ -170,12 +170,12 @@ func checkPullInfo(ctx *middleware.Context) *models.Issue { func PrepareViewPullInfo(ctx *middleware.Context, pull *models.Issue) *git.PullRequestInfo { repo := ctx.Repo.Repository - ctx.Data["HeadTarget"] = pull.PullRepo.HeadUserName + "/" + pull.PullRepo.HeadBarcnh - ctx.Data["BaseTarget"] = ctx.Repo.Owner.Name + "/" + pull.PullRepo.BaseBranch + ctx.Data["HeadTarget"] = pull.HeadUserName + "/" + pull.HeadBarcnh + ctx.Data["BaseTarget"] = ctx.Repo.Owner.Name + "/" + pull.BaseBranch - headRepoPath, err := pull.PullRepo.HeadRepo.RepoPath() + headRepoPath, err := pull.HeadRepo.RepoPath() if err != nil { - ctx.Handle(500, "PullRepo.HeadRepo.RepoPath", err) + ctx.Handle(500, "HeadRepo.RepoPath", err) return nil } @@ -186,7 +186,7 @@ func PrepareViewPullInfo(ctx *middleware.Context, pull *models.Issue) *git.PullR } prInfo, err := headGitRepo.GetPullRequestInfo(models.RepoPath(repo.Owner.Name, repo.Name), - pull.PullRepo.BaseBranch, pull.PullRepo.HeadBarcnh) + pull.BaseBranch, pull.HeadBarcnh) if err != nil { ctx.Handle(500, "GetPullRequestInfo", err) return nil @@ -210,7 +210,10 @@ func ViewPullCommits(ctx *middleware.Context) { } prInfo.Commits = models.ValidateCommitsWithEmails(prInfo.Commits) ctx.Data["Commits"] = prInfo.Commits + ctx.Data["CommitCount"] = prInfo.Commits.Len() + ctx.Data["Username"] = pull.HeadUserName + ctx.Data["Reponame"] = pull.HeadRepo.Name ctx.HTML(200, PULL_COMMITS) } @@ -226,9 +229,8 @@ func ViewPullFiles(ctx *middleware.Context) { if ctx.Written() { return } - _ = prInfo - headRepoPath := models.RepoPath(pull.PullRepo.HeadUserName, pull.PullRepo.HeadRepo.Name) + headRepoPath := models.RepoPath(pull.HeadUserName, pull.HeadRepo.Name) headGitRepo, err := git.OpenRepository(headRepoPath) if err != nil { @@ -236,7 +238,7 @@ func ViewPullFiles(ctx *middleware.Context) { return } - headCommitID, err := headGitRepo.GetCommitIdOfBranch(pull.PullRepo.HeadBarcnh) + headCommitID, err := headGitRepo.GetCommitIdOfBranch(pull.HeadBarcnh) if err != nil { ctx.Handle(500, "GetCommitIdOfBranch", err) return @@ -257,9 +259,9 @@ func ViewPullFiles(ctx *middleware.Context) { return } - headTarget := path.Join(pull.PullRepo.HeadUserName, pull.PullRepo.HeadRepo.Name) - ctx.Data["Username"] = pull.PullRepo.HeadUserName - ctx.Data["Reponame"] = pull.PullRepo.HeadRepo.Name + headTarget := path.Join(pull.HeadUserName, pull.HeadRepo.Name) + ctx.Data["Username"] = pull.HeadUserName + ctx.Data["Reponame"] = pull.HeadRepo.Name ctx.Data["IsImageFile"] = headCommit.IsImageFile ctx.Data["SourcePath"] = setting.AppSubUrl + "/" + path.Join(headTarget, "src", headCommitID) ctx.Data["BeforeSourcePath"] = setting.AppSubUrl + "/" + path.Join(headTarget, "src", prInfo.MergeBase) @@ -348,7 +350,7 @@ func PrepareCompareDiff( headRepo *models.Repository, headGitRepo *git.Repository, prInfo *git.PullRequestInfo, - baseBranch, headBranch string) { + baseBranch, headBranch string) bool { var ( repo = ctx.Repo.Repository @@ -359,21 +361,26 @@ func PrepareCompareDiff( ctx.Data["CommitRepoLink"], err = headRepo.RepoLink() if err != nil { ctx.Handle(500, "RepoLink", err) - return + return false } headCommitID, err := headGitRepo.GetCommitIdOfBranch(headBranch) if err != nil { ctx.Handle(500, "GetCommitIdOfBranch", err) - return + return false } ctx.Data["AfterCommitID"] = headCommitID + if headCommitID == prInfo.MergeBase { + ctx.Data["IsNothingToCompare"] = true + return true + } + diff, err := models.GetDiffRange(models.RepoPath(headUser.Name, headRepo.Name), prInfo.MergeBase, headCommitID, setting.Git.MaxGitDiffLines) if err != nil { ctx.Handle(500, "GetDiffRange", err) - return + return false } ctx.Data["Diff"] = diff ctx.Data["DiffNotAvailable"] = diff.NumFiles() == 0 @@ -381,7 +388,7 @@ func PrepareCompareDiff( headCommit, err := headGitRepo.GetCommit(headCommitID) if err != nil { ctx.Handle(500, "GetCommit", err) - return + return false } prInfo.Commits = models.ValidateCommitsWithEmails(prInfo.Commits) @@ -395,6 +402,7 @@ func PrepareCompareDiff( ctx.Data["SourcePath"] = setting.AppSubUrl + "/" + path.Join(headTarget, "src", headCommitID) ctx.Data["BeforeSourcePath"] = setting.AppSubUrl + "/" + path.Join(headTarget, "src", prInfo.MergeBase) ctx.Data["RawPath"] = setting.AppSubUrl + "/" + path.Join(headTarget, "raw", headCommitID) + return false } func CompareAndPullRequest(ctx *middleware.Context) { @@ -408,17 +416,32 @@ func CompareAndPullRequest(ctx *middleware.Context) { return } - PrepareCompareDiff(ctx, headUser, headRepo, headGitRepo, prInfo, baseBranch, headBranch) - if ctx.Written() { + pr, err := models.GetPullRequest(headRepo.ID, ctx.Repo.Repository.ID, headBranch, baseBranch) + if err != nil { + if !models.IsErrPullRequestNotExist(err) { + ctx.Handle(500, "HasPullRequest", err) + return + } + } else { + ctx.Data["HasPullRequest"] = true + ctx.Data["PullRequest"] = pr + ctx.HTML(200, COMPARE_PULL) return } - // Setup information for new form. - RetrieveRepoMetas(ctx, ctx.Repo.Repository) + nothingToCompare := PrepareCompareDiff(ctx, headUser, headRepo, headGitRepo, prInfo, baseBranch, headBranch) if ctx.Written() { return } + if !nothingToCompare { + // Setup information for new form. + RetrieveRepoMetas(ctx, ctx.Repo.Repository) + if ctx.Written() { + return + } + } + ctx.HTML(200, COMPARE_PULL) } @@ -458,7 +481,7 @@ func CompareAndPullRequestPost(ctx *middleware.Context, form auth.CreateIssueFor return } - pr := &models.Issue{ + pull := &models.Issue{ RepoID: repo.ID, Index: int64(repo.NumIssues) + 1, Name: form.Title, @@ -469,7 +492,7 @@ func CompareAndPullRequestPost(ctx *middleware.Context, form auth.CreateIssueFor IsPull: true, Content: form.Content, } - if err := models.NewPullRequest(repo, pr, labelIDs, attachments, &models.PullRepo{ + if err := models.NewPullRequest(repo, pull, labelIDs, attachments, &models.PullRequest{ HeadRepoID: headRepo.ID, BaseRepoID: repo.ID, HeadUserName: headUser.Name, @@ -482,6 +505,6 @@ func CompareAndPullRequestPost(ctx *middleware.Context, form auth.CreateIssueFor return } - log.Trace("Pull request created: %d/%d", repo.ID, pr.ID) - ctx.Redirect(ctx.Repo.RepoLink + "/pulls/" + com.ToStr(pr.Index)) + log.Trace("Pull request created: %d/%d", repo.ID, pull.ID) + ctx.Redirect(ctx.Repo.RepoLink + "/pulls/" + com.ToStr(pull.Index)) } diff --git a/templates/repo/issue/view_content.tmpl b/templates/repo/issue/view_content.tmpl index 25811522b..68838a12f 100644 --- a/templates/repo/issue/view_content.tmpl +++ b/templates/repo/issue/view_content.tmpl @@ -133,7 +133,7 @@ {{if .Issue.IsPull}}
- +
@@ -142,17 +142,19 @@
{{$.i18n.Tr "repo.pulls.reopen_to_merge"}}
- {{else if .Issue.PullRepo.CanAutoMerge}} + {{else if .Issue.CanAutoMerge}}
{{$.i18n.Tr "repo.pulls.can_auto_merge_desc"}}
+ {{if .IsRepositoryAdmin}}
+ {{end}} {{else}}
diff --git a/templates/repo/pulls/compare.tmpl b/templates/repo/pulls/compare.tmpl index 79f15730c..d176ac36a 100644 --- a/templates/repo/pulls/compare.tmpl +++ b/templates/repo/pulls/compare.tmpl @@ -45,10 +45,20 @@
- {{template "repo/issue/new_form" .}} + {{if .IsNothingToCompare}} +
+ {{.i18n.Tr "repo.pulls.nothing_to_compare"}} +
+ {{else if .HasPullRequest}} +
+ {{.i18n.Tr "repo.pulls.has_pull_request" $.RepoLink $.RepoRelPath .PullRequest.PullIndex | Safe}} +
+ {{else}} + {{template "repo/issue/new_form" .}} {{template "repo/commits_table" .}} {{template "repo/diff_box" .}} + {{end}}