From 6f0a41b8b28ba33382ab8d655c0d015324be7647 Mon Sep 17 00:00:00 2001 From: Unknwon Date: Tue, 3 Nov 2015 18:40:52 -0500 Subject: #1511 Allow local import only for admin users --- models/error.go | 44 ++++++++++++++++++++++++++++++-------------- 1 file changed, 30 insertions(+), 14 deletions(-) (limited to 'models/error.go') diff --git a/models/error.go b/models/error.go index f6973258..7c893731 100644 --- a/models/error.go +++ b/models/error.go @@ -18,7 +18,7 @@ func IsErrNameReserved(err error) bool { } func (err ErrNameReserved) Error() string { - return fmt.Sprintf("name is reserved: [name: %s]", err.Name) + return fmt.Sprintf("name is reserved [name: %s]", err.Name) } type ErrNamePatternNotAllowed struct { @@ -31,7 +31,7 @@ func IsErrNamePatternNotAllowed(err error) bool { } func (err ErrNamePatternNotAllowed) Error() string { - return fmt.Sprintf("name pattern is not allowed: [pattern: %s]", err.Pattern) + return fmt.Sprintf("name pattern is not allowed [pattern: %s]", err.Pattern) } // ____ ___ @@ -51,7 +51,7 @@ func IsErrUserAlreadyExist(err error) bool { } func (err ErrUserAlreadyExist) Error() string { - return fmt.Sprintf("user already exists: [name: %s]", err.Name) + return fmt.Sprintf("user already exists [name: %s]", err.Name) } type ErrUserNotExist struct { @@ -65,7 +65,7 @@ func IsErrUserNotExist(err error) bool { } func (err ErrUserNotExist) Error() string { - return fmt.Sprintf("user does not exist: [uid: %d, name: %s]", err.UID, err.Name) + return fmt.Sprintf("user does not exist [uid: %d, name: %s]", err.UID, err.Name) } type ErrEmailAlreadyUsed struct { @@ -78,7 +78,7 @@ func IsErrEmailAlreadyUsed(err error) bool { } func (err ErrEmailAlreadyUsed) Error() string { - return fmt.Sprintf("e-mail has been used: [email: %s]", err.Email) + return fmt.Sprintf("e-mail has been used [email: %s]", err.Email) } type ErrUserOwnRepos struct { @@ -91,7 +91,7 @@ func IsErrUserOwnRepos(err error) bool { } func (err ErrUserOwnRepos) Error() string { - return fmt.Sprintf("user still has ownership of repositories: [uid: %d]", err.UID) + return fmt.Sprintf("user still has ownership of repositories [uid: %d]", err.UID) } type ErrUserHasOrgs struct { @@ -104,7 +104,7 @@ func IsErrUserHasOrgs(err error) bool { } func (err ErrUserHasOrgs) Error() string { - return fmt.Sprintf("user still has membership of organizations: [uid: %d]", err.UID) + return fmt.Sprintf("user still has membership of organizations [uid: %d]", err.UID) } // __________ ___. .__ .__ ____ __. @@ -124,7 +124,7 @@ func IsErrKeyNotExist(err error) bool { } func (err ErrKeyNotExist) Error() string { - return fmt.Sprintf("public key does not exist: [id: %d]", err.ID) + return fmt.Sprintf("public key does not exist [id: %d]", err.ID) } type ErrKeyAlreadyExist struct { @@ -138,7 +138,7 @@ func IsErrKeyAlreadyExist(err error) bool { } func (err ErrKeyAlreadyExist) Error() string { - return fmt.Sprintf("public key already exists: [owner_id: %d, content: %s]", err.OwnerID, err.Content) + return fmt.Sprintf("public key already exists [owner_id: %d, content: %s]", err.OwnerID, err.Content) } type ErrKeyNameAlreadyUsed struct { @@ -152,7 +152,7 @@ func IsErrKeyNameAlreadyUsed(err error) bool { } func (err ErrKeyNameAlreadyUsed) Error() string { - return fmt.Sprintf("public key already exists: [owner_id: %d, name: %s]", err.OwnerID, err.Name) + return fmt.Sprintf("public key already exists [owner_id: %d, name: %s]", err.OwnerID, err.Name) } type ErrDeployKeyAlreadyExist struct { @@ -166,7 +166,7 @@ func IsErrDeployKeyAlreadyExist(err error) bool { } func (err ErrDeployKeyAlreadyExist) Error() string { - return fmt.Sprintf("public key already exists: [key_id: %d, repo_id: %d]", err.KeyID, err.RepoID) + return fmt.Sprintf("public key already exists [key_id: %d, repo_id: %d]", err.KeyID, err.RepoID) } type ErrDeployKeyNameAlreadyUsed struct { @@ -180,7 +180,7 @@ func IsErrDeployKeyNameAlreadyUsed(err error) bool { } func (err ErrDeployKeyNameAlreadyUsed) Error() string { - return fmt.Sprintf("public key already exists: [repo_id: %d, name: %s]", err.RepoID, err.Name) + return fmt.Sprintf("public key already exists [repo_id: %d, name: %s]", err.RepoID, err.Name) } // _____ ___________ __ @@ -200,7 +200,7 @@ func IsErrAccessTokenNotExist(err error) bool { } func (err ErrAccessTokenNotExist) Error() string { - return fmt.Sprintf("access token does not exist: [sha: %s]", err.SHA) + return fmt.Sprintf("access token does not exist [sha: %s]", err.SHA) } // ________ .__ __ .__ @@ -220,7 +220,7 @@ func IsErrLastOrgOwner(err error) bool { } func (err ErrLastOrgOwner) Error() string { - return fmt.Sprintf("user is the last member of owner team: [uid: %d]", err.UID) + return fmt.Sprintf("user is the last member of owner team [uid: %d]", err.UID) } // __________ .__ __ @@ -259,6 +259,22 @@ func (err ErrRepoAlreadyExist) Error() string { return fmt.Sprintf("repository already exists [uname: %s, name: %s]", err.Uname, err.Name) } +type ErrInvalidCloneAddr struct { + IsURLError bool + IsInvalidPath bool + IsPermissionDenied bool +} + +func IsErrInvalidCloneAddr(err error) bool { + _, ok := err.(ErrInvalidCloneAddr) + return ok +} + +func (err ErrInvalidCloneAddr) Error() string { + return fmt.Sprintf("invalid clone address [is_url_error: %v, is_invalid_path: %v, is_permission_denied: %v]", + err.IsURLError, err.IsInvalidPath, err.IsPermissionDenied) +} + // __ __ ___. .__ __ // / \ / \ ____\_ |__ | |__ ____ ____ | | __ // \ \/\/ // __ \| __ \| | \ / _ \ / _ \| |/ / -- cgit v1.2.3 From f255b1e86dae17dc0221b537d85f25bfa72a7912 Mon Sep 17 00:00:00 2001 From: Unknwon Date: Wed, 4 Nov 2015 21:57:10 -0500 Subject: #1896 fatal when no needed update task --- README.md | 6 ++-- README_ZH.md | 6 ++-- cmd/serve.go | 70 ++++++++++++++++++++++++++--------------------- cmd/update.go | 4 +-- gogs.go | 2 +- models/error.go | 13 +++++++++ models/update.go | 3 +- models/user.go | 4 +-- modules/auth/ldap/ldap.go | 2 +- templates/.VERSION | 2 +- 10 files changed, 66 insertions(+), 46 deletions(-) (limited to 'models/error.go') diff --git a/README.md b/README.md index cc163860..216a9b7d 100644 --- a/README.md +++ b/README.md @@ -5,7 +5,7 @@ Gogs - Go Git Service [![Build Status](https://travis-ci.org/gogits/gogs.svg?bra ![](public/img/gogs-large-resize.png) -##### Current version: 0.6.25 Beta +##### Current version: 0.6.26 Beta @@ -42,7 +42,7 @@ The goal of this project is to make the easiest, fastest, and most painless way ## Overview -- Please see the [Documentation](http://gogs.io/docs/intro) for project design, known issues, and change log. +- Please see the [Documentation](http://gogs.io/docs/intro) for common usages and change log. - See the [Trello Board](https://trello.com/b/uxAoeLUl/gogs-go-git-service) to follow the develop team. - Want to try it before doing anything else? Do it [online](https://try.gogs.io/gogs/gogs) or go down to the **Installation -> Install from binary** section! - Having trouble? Get help with [Troubleshooting](http://gogs.io/docs/intro/troubleshooting.html). @@ -63,7 +63,7 @@ The goal of this project is to make the easiest, fastest, and most painless way - Mail service - Administration panel - CI integration: [Drone](https://github.com/drone/drone) -- Supports MySQL, PostgreSQL, SQLite3 and [TiDB](https://github.com/pingcap/tidb) +- Supports MySQL, PostgreSQL, SQLite3 and [TiDB](https://github.com/pingcap/tidb) (experimental) - Multi-language support ([14 languages](https://crowdin.com/project/gogs)) ## System Requirements diff --git a/README_ZH.md b/README_ZH.md index 71858ebc..606fb220 100644 --- a/README_ZH.md +++ b/README_ZH.md @@ -1,7 +1,7 @@ Gogs - Go Git Service [![Build Status](https://travis-ci.org/gogits/gogs.svg?branch=master)](https://travis-ci.org/gogits/gogs) ===================== -Gogs (Go Git Service) 是一款可轻易搭建的自助 Git 服务。 +Gogs (Go Git Service) 是一款极易搭建的自助 Git 服务。 ## 开发目的 @@ -9,7 +9,7 @@ Gogs 的目标是打造一个最简单、最快速和最轻松的方式搭建自 ## 项目概览 -- 有关项目设计、已知问题和变更日志,请通过 [使用手册](http://gogs.io/docs/intro/) 查看。 +- 有关基本用法和变更日志,请通过 [使用手册](http://gogs.io/docs/intro/) 查看。 - 您可以到 [Trello Board](https://trello.com/b/uxAoeLUl/gogs-go-git-service) 跟随开发团队的脚步。 - 想要先睹为快?通过 [在线体验](https://try.gogs.io/gogs/gogs) 或查看 **安装部署 -> 二进制安装** 小节。 - 使用过程中遇到问题?尝试从 [故障排查](http://gogs.io/docs/intro/troubleshooting.html) 页面获取帮助。 @@ -30,7 +30,7 @@ Gogs 的目标是打造一个最简单、最快速和最轻松的方式搭建自 - 支持邮件服务 - 支持后台管理面板 - 支持 CI 集成:[Drone](https://github.com/drone/drone) -- 支持 MySQL、PostgreSQL、SQLite3 和 [TiDB](https://github.com/pingcap/tidb) 数据库 +- 支持 MySQL、PostgreSQL、SQLite3 和 [TiDB](https://github.com/pingcap/tidb)(实验性支持) 数据库 - 支持多语言本地化([14 种语言]([more](https://crowdin.com/project/gogs))) ## 系统要求 diff --git a/cmd/serve.go b/cmd/serve.go index b99ab8fc..c3c66318 100644 --- a/cmd/serve.go +++ b/cmd/serve.go @@ -77,6 +77,43 @@ func fail(userMessage, logMessage string, args ...interface{}) { log.GitLogger.Fatal(3, logMessage, args...) } +func handleUpdateTask(uuid string, user *models.User, repoUserName, repoName string) { + task, err := models.GetUpdateTaskByUUID(uuid) + if err != nil { + if models.IsErrUpdateTaskNotExist(err) { + log.GitLogger.Trace("No update task is presented: %s", uuid) + return + } + log.GitLogger.Fatal(2, "GetUpdateTaskByUUID: %v", err) + } + + if err = models.Update(task.RefName, task.OldCommitID, task.NewCommitID, + user.Name, repoUserName, repoName, user.Id); err != nil { + log.GitLogger.Error(2, "Update: %v", err) + } + + if err = models.DeleteUpdateTaskByUUID(uuid); err != nil { + log.GitLogger.Fatal(2, "DeleteUpdateTaskByUUID: %v", err) + } + + // Ask for running deliver hook and test pull request tasks. + reqURL := setting.AppUrl + repoUserName + "/" + repoName + "/tasks/trigger?branch=" + + strings.TrimPrefix(task.RefName, "refs/heads/") + log.GitLogger.Trace("Trigger task: %s", reqURL) + + resp, err := httplib.Head(reqURL).SetTLSClientConfig(&tls.Config{ + InsecureSkipVerify: true, + }).Response() + if err == nil { + resp.Body.Close() + if resp.StatusCode/100 != 2 { + log.GitLogger.Error(2, "Fail to trigger task: not 2xx response code") + } + } else { + log.GitLogger.Error(2, "Fail to trigger task: %v", err) + } +} + func runServ(c *cli.Context) { if c.IsSet("config") { setting.CustomConf = c.String("config") @@ -162,7 +199,7 @@ func runServ(c *cli.Context) { fail("Internal error", "UpdateDeployKey: %v", err) } } else { - user, err = models.GetUserByKeyId(key.ID) + user, err = models.GetUserByKeyID(key.ID) if err != nil { fail("internal error", "Failed to get user by key ID(%d): %v", keyID, err) } @@ -201,36 +238,7 @@ func runServ(c *cli.Context) { } if requestedMode == models.ACCESS_MODE_WRITE { - task, err := models.GetUpdateTaskByUUID(uuid) - if err != nil { - log.GitLogger.Fatal(2, "GetUpdateTaskByUUID: %v", err) - } - - if err = models.Update(task.RefName, task.OldCommitID, task.NewCommitID, - user.Name, repoUserName, repoName, user.Id); err != nil { - log.GitLogger.Error(2, "Update: %v", err) - } - - if err = models.DeleteUpdateTaskByUUID(uuid); err != nil { - log.GitLogger.Fatal(2, "DeleteUpdateTaskByUUID: %v", err) - } - - // Ask for running deliver hook and test pull request tasks. - reqURL := setting.AppUrl + repoUserName + "/" + repoName + "/tasks/trigger?branch=" + - strings.TrimPrefix(task.RefName, "refs/heads/") - log.GitLogger.Trace("Trigger task: %s", reqURL) - - resp, err := httplib.Head(reqURL).SetTLSClientConfig(&tls.Config{ - InsecureSkipVerify: true, - }).Response() - if err == nil { - resp.Body.Close() - if resp.StatusCode/100 != 2 { - log.GitLogger.Error(2, "Fail to trigger task: not 2xx response code") - } - } else { - log.GitLogger.Error(2, "Fail to trigger task: %v", err) - } + handleUpdateTask(uuid, user, repoUserName, repoName) } // Update user key activity. diff --git a/cmd/update.go b/cmd/update.go index 64093b81..289aedbf 100644 --- a/cmd/update.go +++ b/cmd/update.go @@ -42,10 +42,8 @@ func runUpdate(c *cli.Context) { log.GitLogger.Fatal(2, "refName is empty, shouldn't use") } - uuid := os.Getenv("uuid") - task := models.UpdateTask{ - UUID: uuid, + UUID: os.Getenv("uuid"), RefName: args[0], OldCommitID: args[1], NewCommitID: args[2], diff --git a/gogs.go b/gogs.go index 8fe723fb..cdf761c8 100644 --- a/gogs.go +++ b/gogs.go @@ -17,7 +17,7 @@ import ( "github.com/gogits/gogs/modules/setting" ) -const APP_VER = "0.6.25.1104 Beta" +const APP_VER = "0.6.26.1104 Beta" func init() { runtime.GOMAXPROCS(runtime.NumCPU()) diff --git a/models/error.go b/models/error.go index 7c893731..8f508598 100644 --- a/models/error.go +++ b/models/error.go @@ -275,6 +275,19 @@ func (err ErrInvalidCloneAddr) Error() string { err.IsURLError, err.IsInvalidPath, err.IsPermissionDenied) } +type ErrUpdateTaskNotExist struct { + UUID string +} + +func IsErrUpdateTaskNotExist(err error) bool { + _, ok := err.(ErrUpdateTaskNotExist) + return ok +} + +func (err ErrUpdateTaskNotExist) Error() string { + return fmt.Sprintf("update task does not exist [uuid: %s]", err.UUID) +} + // __ __ ___. .__ __ // / \ / \ ____\_ |__ | |__ ____ ____ | | __ // \ \/\/ // __ \| __ \| | \ / _ \ / _ \| |/ / diff --git a/models/update.go b/models/update.go index 9e8e5c91..0ca20221 100644 --- a/models/update.go +++ b/models/update.go @@ -28,6 +28,7 @@ func AddUpdateTask(task *UpdateTask) error { return err } +// GetUpdateTaskByUUID returns update task by given UUID. func GetUpdateTaskByUUID(uuid string) (*UpdateTask, error) { task := &UpdateTask{ UUID: uuid, @@ -36,7 +37,7 @@ func GetUpdateTaskByUUID(uuid string) (*UpdateTask, error) { if err != nil { return nil, err } else if !has { - return nil, fmt.Errorf("task does not exist: %s", uuid) + return nil, ErrUpdateTaskNotExist{uuid} } return task, nil } diff --git a/models/user.go b/models/user.go index 516c4249..4f9095ed 100644 --- a/models/user.go +++ b/models/user.go @@ -728,9 +728,9 @@ func UserPath(userName string) string { return filepath.Join(setting.RepoRootPath, strings.ToLower(userName)) } -func GetUserByKeyId(keyId int64) (*User, error) { +func GetUserByKeyID(keyID int64) (*User, error) { user := new(User) - has, err := x.Sql("SELECT a.* FROM `user` AS a, public_key AS b WHERE a.id = b.owner_id AND b.id=?", keyId).Get(user) + has, err := x.Sql("SELECT a.* FROM `user` AS a, public_key AS b WHERE a.id = b.owner_id AND b.id=?", keyID).Get(user) if err != nil { return nil, err } else if !has { diff --git a/modules/auth/ldap/ldap.go b/modules/auth/ldap/ldap.go index 74a36d5e..a00bcf85 100644 --- a/modules/auth/ldap/ldap.go +++ b/modules/auth/ldap/ldap.go @@ -130,7 +130,7 @@ func (ls *Source) SearchEntry(name, passwd string, directBind bool) (string, str l, err := ldapDial(ls) if err != nil { - log.Error(4, "LDAP Connect error, %s:%v", ls.Host, err) + log.Error(4, "LDAP Connect error (%s): %v", ls.Host, err) ls.Enabled = false return "", "", "", false, false } diff --git a/templates/.VERSION b/templates/.VERSION index f116ce5c..59a9512a 100644 --- a/templates/.VERSION +++ b/templates/.VERSION @@ -1 +1 @@ -0.6.25.1104 Beta \ No newline at end of file +0.6.26.1104 Beta \ No newline at end of file -- cgit v1.2.3 From 18de67380c5049d6a4d10cc3f6f8fd80a9ac7a89 Mon Sep 17 00:00:00 2001 From: Unknwon Date: Sun, 15 Nov 2015 23:52:46 -0500 Subject: fix #1958 --- README.md | 2 +- conf/locale/locale_en-US.ini | 14 ++-- gogs.go | 2 +- models/error.go | 26 +++++++ models/release.go | 34 ++++----- models/repo.go | 2 +- modules/auth/repo_form.go | 10 +-- modules/bindata/bindata.go | 4 +- public/css/gogs.css | 79 +++++++++++++++++++++ public/less/_repository.less | 96 +++++++++++++++++++++++++ routers/repo/release.go | 71 +++++++------------ templates/.VERSION | 2 +- templates/repo/release/edit.tmpl | 59 ---------------- templates/repo/release/list.tmpl | 147 ++++++++++++++++++++------------------- templates/repo/release/new.tmpl | 145 +++++++++++++++++++++----------------- 15 files changed, 416 insertions(+), 277 deletions(-) delete mode 100644 templates/repo/release/edit.tmpl (limited to 'models/error.go') diff --git a/README.md b/README.md index 73e35c4b..8be1adc6 100644 --- a/README.md +++ b/README.md @@ -5,7 +5,7 @@ Gogs - Go Git Service [![Build Status](https://travis-ci.org/gogits/gogs.svg?bra ![](public/img/gogs-large-resize.png) -##### Current version: 0.7.11 Beta +##### Current version: 0.7.12 Beta
diff --git a/conf/locale/locale_en-US.ini b/conf/locale/locale_en-US.ini index 93180daa..04e01457 100644 --- a/conf/locale/locale_en-US.ini +++ b/conf/locale/locale_en-US.ini @@ -368,9 +368,7 @@ fork_from_self = You cannot fork repository you already owned! copy_link = Copy copy_link_success = Copied! copy_link_error = Press ⌘-C or Ctrl-C to copy -click_to_copy = Copy to clipboard copied = Copied OK -clone_helper = Need help cloning? Visit Help! unwatch = Unwatch watch = Watch unstar = Unstar @@ -634,21 +632,21 @@ release.stable = Stable release.edit = edit release.ahead = %d commits to %s since this release release.source_code = Source Code +release.new_subheader = Publish releases to iterate product. +release.edit_subheader = Detailed change log can help users understand what has been improved. release.tag_name = Tag name release.target = Target release.tag_helper = Choose an existing tag, or create a new tag on publish. -release.release_title = Release title -release.content_with_md = Content with Markdown -release.write = Write -release.preview = Preview -release.content_placeholder = Write some content -release.loading = Loading... +release.title = Title +release.content = Content release.prerelease_desc = This is a pre-release release.prerelease_helper = We’ll point out that this release is not production-ready. +release.cancel = Cancel release.publish = Publish Release release.save_draft = Save Draft release.edit_release = Edit Release release.tag_name_already_exist = Release with this tag name has already existed. +release.downloads = Downloads [org] org_name_holder = Organization Name diff --git a/gogs.go b/gogs.go index 04e1cf65..a2ff0b5e 100644 --- a/gogs.go +++ b/gogs.go @@ -17,7 +17,7 @@ import ( "github.com/gogits/gogs/modules/setting" ) -const APP_VER = "0.7.11.1115 Beta" +const APP_VER = "0.7.12.1115 Beta" func init() { runtime.GOMAXPROCS(runtime.NumCPU()) diff --git a/models/error.go b/models/error.go index 8f508598..f8fea6f5 100644 --- a/models/error.go +++ b/models/error.go @@ -288,6 +288,32 @@ func (err ErrUpdateTaskNotExist) Error() string { return fmt.Sprintf("update task does not exist [uuid: %s]", err.UUID) } +type ErrReleaseAlreadyExist struct { + TagName string +} + +func IsErrReleaseAlreadyExist(err error) bool { + _, ok := err.(ErrReleaseAlreadyExist) + return ok +} + +func (err ErrReleaseAlreadyExist) Error() string { + return fmt.Sprintf("Release tag already exist [tag_name: %s]", err.TagName) +} + +type ErrReleaseNotExist struct { + TagName string +} + +func IsErrReleaseNotExist(err error) bool { + _, ok := err.(ErrReleaseNotExist) + return ok +} + +func (err ErrReleaseNotExist) Error() string { + return fmt.Sprintf("Release tag does not exist [tag_name: %s]", err.TagName) +} + // __ __ ___. .__ __ // / \ / \ ____\_ |__ | |__ ____ ____ | | __ // \ \/\/ // __ \| __ \| | \ / _ \ / _ \| |/ / diff --git a/models/release.go b/models/release.go index 38f3e4f4..1c9c7d60 100644 --- a/models/release.go +++ b/models/release.go @@ -5,7 +5,6 @@ package models import ( - "errors" "sort" "strings" "time" @@ -15,16 +14,11 @@ import ( "github.com/gogits/gogs/modules/git" ) -var ( - ErrReleaseAlreadyExist = errors.New("Release already exist") - ErrReleaseNotExist = errors.New("Release does not exist") -) - // Release represents a release of repository. type Release struct { - Id int64 - RepoId int64 - PublisherId int64 + ID int64 `xorm:"pk autoincr"` + RepoID int64 + PublisherID int64 Publisher *User `xorm:"-"` TagName string LowerTagName string @@ -47,12 +41,12 @@ func (r *Release) AfterSet(colName string, _ xorm.Cell) { } // IsReleaseExist returns true if release with given tag name already exists. -func IsReleaseExist(repoId int64, tagName string) (bool, error) { +func IsReleaseExist(repoID int64, tagName string) (bool, error) { if len(tagName) == 0 { return false, nil } - return x.Get(&Release{RepoId: repoId, LowerTagName: strings.ToLower(tagName)}) + return x.Get(&Release{RepoID: repoID, LowerTagName: strings.ToLower(tagName)}) } func createTag(gitRepo *git.Repository, rel *Release) error { @@ -84,11 +78,11 @@ func createTag(gitRepo *git.Repository, rel *Release) error { // CreateRelease creates a new release of repository. func CreateRelease(gitRepo *git.Repository, rel *Release) error { - isExist, err := IsReleaseExist(rel.RepoId, rel.TagName) + isExist, err := IsReleaseExist(rel.RepoID, rel.TagName) if err != nil { return err } else if isExist { - return ErrReleaseAlreadyExist + return ErrReleaseAlreadyExist{rel.TagName} } if err = createTag(gitRepo, rel); err != nil { @@ -100,22 +94,22 @@ func CreateRelease(gitRepo *git.Repository, rel *Release) error { } // GetRelease returns release by given ID. -func GetRelease(repoId int64, tagName string) (*Release, error) { - isExist, err := IsReleaseExist(repoId, tagName) +func GetRelease(repoID int64, tagName string) (*Release, error) { + isExist, err := IsReleaseExist(repoID, tagName) if err != nil { return nil, err } else if !isExist { - return nil, ErrReleaseNotExist + return nil, ErrReleaseNotExist{tagName} } - rel := &Release{RepoId: repoId, LowerTagName: strings.ToLower(tagName)} + rel := &Release{RepoID: repoID, LowerTagName: strings.ToLower(tagName)} _, err = x.Get(rel) return rel, err } // GetReleasesByRepoId returns a list of releases of repository. -func GetReleasesByRepoId(repoId int64) (rels []*Release, err error) { - err = x.Desc("created").Find(&rels, Release{RepoId: repoId}) +func GetReleasesByRepoId(repoID int64) (rels []*Release, err error) { + err = x.Desc("created").Find(&rels, Release{RepoID: repoID}) return rels, err } @@ -150,6 +144,6 @@ func UpdateRelease(gitRepo *git.Repository, rel *Release) (err error) { if err = createTag(gitRepo, rel); err != nil { return err } - _, err = x.Id(rel.Id).AllCols().Update(rel) + _, err = x.Id(rel.ID).AllCols().Update(rel) return err } diff --git a/models/repo.go b/models/repo.go index bbd978ff..9b2c7bc6 100644 --- a/models/repo.go +++ b/models/repo.go @@ -1116,7 +1116,7 @@ func DeleteRepository(uid, repoID int64) error { return err } else if _, err = sess.Delete(&Milestone{RepoID: repoID}); err != nil { return err - } else if _, err = sess.Delete(&Release{RepoId: repoID}); err != nil { + } else if _, err = sess.Delete(&Release{RepoID: repoID}); err != nil { return err } else if _, err = sess.Delete(&Collaboration{RepoID: repoID}); err != nil { return err diff --git a/modules/auth/repo_form.go b/modules/auth/repo_form.go index 766f540f..8e10dc24 100644 --- a/modules/auth/repo_form.go +++ b/modules/auth/repo_form.go @@ -215,12 +215,12 @@ func (f *CreateLabelForm) Validate(ctx *macaron.Context, errs binding.Errors) bi // \/ \/ \/ \/ \/ \/ type NewReleaseForm struct { - TagName string `form:"tag_name" binding:"Required"` + TagName string `binding:"Required"` Target string `form:"tag_target" binding:"Required"` - Title string `form:"title" binding:"Required"` - Content string `form:"content" binding:"Required"` - Draft string `form:"draft"` - Prerelease bool `form:"prerelease"` + Title string `binding:"Required"` + Content string + Draft string + Prerelease bool } func (f *NewReleaseForm) Validate(ctx *macaron.Context, errs binding.Errors) binding.Errors { diff --git a/modules/bindata/bindata.go b/modules/bindata/bindata.go index d5e9ded5..ac30952b 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\xbc\x7d\xeb\x72\xdc\x48\xae\xe6\x7f\x3e\x05\xdb\x27\x1c\xb6\x23\xe4\x72\x74\xf7\xde\xa2\xa3\xed\x5e\x59\x6a\x5f\xe6\x58\x96\xc6\x52\xcf\x6c\xaf\xc3\xc1\x66\x15\x59\x55\x1c\x57\x91\xd5\x24\xcb\xb2\xe6\xc4\x89\xd8\x07\xd8\x07\xd8\x7d\xbd\xf3\x24\x0b\x7c\x00\xf2\x42\xb2\x24\xbb\x67\x62\xfd\xc3\x62\x65\x22\x6f\x48\x24\x12\x89\x04\x90\xf9\x6e\x97\x15\x65\xb7\x48\x9f\xa6\xc7\xe9\x2e\xaf\xea\x4d\xd9\x75\x69\x57\x6e\x96\x8f\xd7\x4d\xd7\x97\x45\xfa\xb2\xea\xe9\x77\xfb\xa9\x5a\x94\x49\xb2\x6e\xb6\x25\x81\xbe\xa2\x3f\x49\x91\x77\xeb\x79\x93\xb7\x05\x25\x9c\xda\x77\x52\x7e\xde\x6d\x9a\x96\x81\x7e\x96\xaf\x64\x5d\x6e\x76\x5c\x86\xfe\x24\x5d\xb5\xaa\xb3\xaa\xa6\x9f\x97\xf4\x95\xbe\xae\x25\xa5\xd9\xf7\x96\x74\xbe\xef\x25\x6d\xbf\xb3\xa4\x5f\x76\x49\x5b\xae\x2a\xea\x4d\x4b\x49\xef\xf4\x33\xb9\x2e\xe7\x5d\xd5\x73\x4b\x7f\x95\xaf\xe4\x53\xd9\x76\x55\xc3\xb5\xff\x45\xbe\x92\x5d\xbe\x62\x80\x0b\xfa\x93\xf4\xe5\x76\xb7\xc9\x51\xe0\x4a\x3f\x93\x4d\x5e\xaf\xf6\x02\xf3\x46\x3f\x93\x45\x5b\x52\x56\x56\x97\xd7\x94\x7a\x82\x1f\xb3\xd9\x2c\xd9\x13\x12\xb2\x5d\xdb\x2c\xab\x4d\x99\xe5\x75\x91\x6d\x65\x98\xbf\x50\x7a\xaa\xe9\x29\xa5\xa7\x9c\x8e\x21\x94\x05\x0d\x35\xcb\x3b\x1d\x07\xe1\x92\x46\x9e\x77\x09\xaa\xaa\xf3\xad\x95\xe6\xcf\xa4\xdc\xe6\xd5\x86\xb1\xf6\x98\x3f\xa8\xe3\x5d\x77\xdd\x00\xb7\x17\xfa\x49\x48\xc8\xfa\x9b\x5d\x09\x1c\x3c\xbe\xa2\xaf\x64\x91\xef\xfa\xc5\x3a\xe7\x7e\xca\x57\x42\x40\xbb\x86\x90\xd1\xb4\x37\x80\xb3\x1f\x49\xd3\xae\xf2\xba\xfa\x7b\xde\x0b\x82\xce\x83\x9f\xc9\xb6\x6a\xdb\x86\x71\x7b\x86\x8f\x84\x86\x9e\x71\x3d\x94\xf2\x96\xb0\x10\xd4\xc2\x39\xdb\x6a\xd5\x0a\x1a\x39\xf3\x0c\xbf\xb8\x16\xce\x5b\x36\xed\x47\xcd\x78\xc1\x9f\x83\xa2\xd4\x09\xcd\x8d\xdb\xcf\x6b\x42\xbc\xe6\x9e\xe1\x47\x04\xd0\x25\x79\xb1\x25\x54\xee\xf2\xba\x64\x1c\x1d\xf3\x2f\xc2\x0b\xfd\x4a\xf2\xc5\xa2\xd9\xd7\x7d\xd6\x95\x7d\x5f\xd5\x2b\x46\xf6\xb1\x24\xa5\x97\x9a\x94\x04\x79\x2e\xed\xa6\xd9\xbb\xe9\xa4\xf4\x5f\xe9\x67\x7a\x21\x3f\x25\x2f\x28\x84\x4c\x57\x92\x47\xd2\x65\xcb\xb2\x2c\x64\x2c\x5d\xfa\x82\xbe\x93\xdd\x7e\xb3\x21\xac\xfd\xbe\x2f\xbb\x9e\x0b\x5d\xd0\x6f\x1a\xbf\xfc\x4e\xaa\xae\xa3\x0f\x4a\x7e\x8d\x8f\x84\xa6\xae\x5e\x60\x30\x27\xf8\x48\x92\xf7\x5d\x99\xb7\x8b\xf5\x87\x44\xfe\xa2\xaf\xfc\xc1\xb4\x77\x68\x52\x99\x90\x94\x88\xa4\x05\x6b\x20\x59\x34\x05\xff\x38\xa1\x3f\x54\x75\x55\x77\x7d\xbe\xd9\x7c\x48\xf4\x83\xc1\xe4\x4b\x26\xa0\xaf\x7a\x60\x41\x13\xd3\xcb\xbe\xdc\x75\x3c\x83\xe9\x8b\xaa\xed\xfa\xc7\x7d\x45\xc4\xfa\x6e\x5f\x27\x45\xb3\xf8\x48\xcb\x80\x97\x34\x5a\x7e\xbd\x4c\x09\x59\x0f\x68\x21\xb4\xfb\xba\x26\xf4\xa4\x2f\x1b\x42\x19\x35\x53\x51\xfb\xa7\x80\x3e\x4a\x77\x9b\x32\xef\x08\xa4\xcc\x8b\xf4\xc7\x3c\xed\xf3\x76\x55\xf6\x4f\xef\x65\x73\x5a\x7e\x1f\xef\xa5\xeb\xb6\x5c\x3e\xbd\x77\xbf\xbb\xf7\xec\xe5\x9e\x8a\x6d\xaa\xba\xec\x7e\x7c\x92\x3f\x4b\x17\x39\xe5\x10\x1a\x6f\xd2\x79\xb9\xe4\xd5\x46\x6d\xa5\x44\xe5\xf5\x8a\x57\xda\x4d\xbf\xe6\x06\x89\x12\xe8\xa3\x4b\x79\xa9\x7f\x93\xf0\x04\x10\x2b\xc8\x8a\xb9\xb1\x35\x74\x08\xc9\x2d\x4d\xc0\xd9\xcd\xe5\x9f\xdf\x1c\xa5\x17\xc4\xdb\x56\x6d\x89\x6f\xfa\x8f\x4a\x7c\x9f\xd2\x68\xaf\xaa\xd3\xe7\xb3\x84\xca\x1a\x42\x4e\xf3\x3e\x9f\x73\xdf\xdd\xec\x73\xa6\x2c\x42\x97\x87\xa5\xc8\xdc\x12\x9c\xb1\xeb\xa3\x69\x99\x5a\xc8\x54\x87\x2e\x7f\x57\xc7\x5b\xe6\x01\x94\xee\x30\x7b\x21\x38\xa3\xaa\xd2\xd7\x6f\xdf\x9e\x9f\x3e\x4f\xcb\x7a\x45\x98\x49\xaf\xab\x7e\x9d\xee\xfb\xe5\x7f\xcb\x56\x65\x5d\xb6\xf9\x26\x5b\x54\x8c\x94\x96\x08\x36\x25\x2c\xc9\x10\x67\x49\xd7\x6d\x88\x45\x81\x0a\x2e\x2f\xdf\xa4\x67\x4c\x09\xbb\xbc\x5f\xa3\x23\xfd\x3a\xe9\x7e\xdf\x30\xa2\x5c\x83\x57\xeb\x32\xc5\x62\x00\x50\xb3\x1c\xe2\x25\x2d\xb4\xaf\xb3\xa4\x6c\xdb\x8c\x38\x68\x7f\xc3\x68\xd6\x3a\x0f\x41\x4b\x75\x44\xed\x75\xd3\xd3\x34\xa6\x28\x27\x55\x54\xf5\xa7\x7c\x53\x15\x84\x6c\x8f\x90\xb8\x2c\x12\x8b\x86\xe6\x8d\x4b\x13\x65\x36\xd7\x18\x6a\xbe\xa0\x0d\xa0\x4b\xef\xcd\xee\x81\xe3\xde\x7b\x7c\x6f\x96\xd4\x4d\x26\x5c\x82\x79\x73\x51\x75\xf9\x9c\xf8\xb4\xec\x1b\xad\x71\xbd\x5f\x99\x7e\xa4\x2b\x0a\x91\x46\x10\x8c\x5b\xde\x8b\xb0\x05\x30\x71\xe5\xc4\xb0\xc1\x6c\x94\xcd\x84\x63\x37\x9e\xe4\xe6\x57\xd8\x92\x4b\x18\x8d\x39\xb1\x09\x33\xea\x3a\xde\xed\x36\xd5\x42\x9a\x7e\x29\x79\x9e\xd0\x78\x67\x56\xa4\x84\x70\x20\x14\xcb\x0b\xc8\x85\x7a\xcd\x6c\x2b\x8d\xf8\x3c\xca\xaf\x4b\x5a\x39\xeb\xfd\x4a\x76\xa7\x4d\xb3\x2f\xbe\x01\x43\xb1\x99\xf3\xfc\x24\x7d\xd7\x50\x87\x41\x1d\x0e\xc0\x37\x71\x4c\x8c\x81\x85\x81\xb6\xdc\x36\x3d\x23\x4e\x8b\x55\x34\x3d\xd7\x15\x65\xd2\x48\xbb\xfc\x13\xb1\xc5\xbe\x91\x25\x59\xd0\x92\x5b\x70\xc5\xc4\xc1\xf6\xb4\xa3\xcb\xb2\x20\x3e\x22\x4b\xc3\xd2\x62\x1a\x04\xd4\x76\x4f\xab\x69\x4d\x95\x31\xe2\x59\x22\xa1\x2a\xa7\xfa\x89\x21\x51\x3d\x58\xe5\xb4\x72\x1b\xda\x3c\x79\xa2\x4f\xf1\xa1\xbf\xc3\xfa\xa9\x57\xf9\x72\x49\xbd\xea\x68\x55\xbc\x4a\x17\x9b\x86\x96\xd4\x2f\xef\xde\x74\xbc\x60\xd6\xd9\xae\x69\x21\x89\x50\xd6\x05\x7d\xba\xb4\x00\xd1\x0c\x51\xef\xb7\x73\xfa\x75\xbd\xae\x88\x51\x03\xed\x5c\x82\xa5\x24\x4a\xa5\x26\xf6\x1d\x4d\xe1\x51\x4a\x4b\x98\x46\x40\x28\x03\x01\xf0\x18\x8c\xea\x18\x7c\x49\x34\xb6\x6f\x69\x39\xad\xfb\x7e\x67\x2d\xbf\xba\xba\xba\x90\xa6\x5d\xea\x6d\x6d\xe7\x01\x65\x60\x0e\x36\x2c\x1b\xd5\x69\x53\xcf\x40\x24\xfb\x76\x33\xa0\x1f\x1a\xab\xe5\x1c\xc0\x0b\x77\xe1\x09\xff\x77\xe9\xd1\x03\x3c\x77\x24\xf5\x5d\x83\x9a\x08\xc7\x25\xe4\x14\x22\xea\x66\xc7\xf5\x06\x54\x7d\xae\x09\x9e\x94\x21\xdb\xb8\x7c\x91\x70\x28\x17\x32\x65\xb0\x4b\x6f\x69\xc0\xca\x46\x2f\xcf\x08\x0d\xe0\xa5\x48\x5d\xb6\xcd\x96\x52\x5f\xd0\x1f\x9f\xe0\xbb\x7f\xc6\xf5\x01\x26\x2f\x0a\xe2\xf2\xdd\x51\xfa\xee\xc5\x49\xfa\x9f\xbf\xff\xee\xbb\x59\xfa\xba\xe7\x95\xc8\xc4\xf9\x37\x26\x2a\xfa\x14\x51\xcb\x81\x12\xc7\xea\x89\xee\xee\xf1\xca\xba\x97\xfe\x88\xdc\xff\x5e\x7e\xce\x49\x44\x2c\x67\x8b\x66\xfb\x8c\xb9\xea\x36\xa7\xb5\xcf\x39\x44\xae\x4a\xc7\x97\x65\x5d\xd0\x87\x0a\x6c\x9a\x17\xb0\x03\xcd\x0f\xc4\x37\x11\x5c\xb3\x45\x53\x2f\xab\x96\x07\xf4\x73\x0d\x6a\x30\x91\x96\xb6\x6b\xe4\x98\x54\x44\x48\x23\x0e\x52\x2d\x6f\x3c\x28\x86\xfa\x96\x13\x75\x42\x13\xa1\xba\x4c\x45\x74\x87\xe5\x4b\x21\x46\x9e\xb7\x73\x1a\x5e\x6b\xf8\xee\x3c\xc2\x9b\xe5\x92\xf7\x5a\xdb\x25\xb4\x85\x73\x49\x95\x0d\x23\x04\x21\x62\xdc\x41\x28\x3f\x55\x22\x3e\x39\x7d\x9b\x96\x9f\x88\xda\x98\xeb\xb5\x4d\xb1\x5f\x80\xc2\x18\xf6\x88\x99\x35\xb1\x88\x8e\xd6\xc6\x42\xf6\x95\x80\x49\x70\xd7\x98\x13\x2d\x08\x88\x78\x83\x31\x6b\x12\x24\x3f\x11\xe7\x6f\x83\x26\x5e\x5a\x92\xf6\x7e\x04\x3b\xea\x94\x2b\xc1\x23\x5f\xd0\x8c\x13\x55\x48\x2f\x3a\xe9\x94\x64\x13\xb9\x13\x1d\xef\xe9\x84\x92\x17\xd4\x97\xf9\x0d\xf8\x4e\xc7\xc4\x50\x94\xcb\x7c\xbf\xe9\x7d\xbf\x06\x9b\x88\xb5\x74\xc9\x87\xa4\x30\x6f\xb2\xc0\xa8\x83\xa0\x9e\x6e\x58\x96\xc8\xb0\x26\x39\x47\x36\x1b\xa6\x57\x39\x85\xd8\xbe\x43\xec\xa9\xc4\xf4\x64\x5e\xe4\xd7\xf9\x32\xc9\x3f\xce\x77\xcd\xbe\x13\xc9\x27\xc5\x56\xcb\x35\x5a\x05\x2c\x2a\x4c\xf7\x65\x96\xa8\xb8\x94\xe9\x71\x2d\xfb\x54\xe1\x30\xe4\xc8\x55\xaa\xd4\x23\x1c\xf3\xb5\xbf\x30\x00\x9f\xb2\xba\xc9\xb2\xae\x37\xe7\x3c\xc8\xce\x1d\x86\x04\xe7\x3c\x5c\xb4\xc0\x22\x1c\xcd\xd2\xa7\x0a\x6c\x5e\x09\x06\x78\x21\xaa\x41\xd3\xd4\x54\x57\x96\xa8\x81\xca\x3f\xa1\x3a\x51\x66\xa6\x07\x04\x95\xd9\x4d\xf4\xe3\xed\xbe\x68\x20\x3b\x60\x2f\xa1\xd2\x86\xd6\xc1\xbe\x9e\xb6\xd5\x6a\x4d\xbc\xb5\xb9\x3e\x12\xa4\x5c\xaf\x9b\x92\xd7\xcf\xeb\xd3\xa7\xdf\x4a\x3f\x56\xbc\xb3\xb8\x42\xbc\x27\xe5\x7b\x22\x2e\xc2\x98\x92\xb1\x74\xc1\xed\xed\x80\x1c\x1d\x45\x04\x68\x78\xf8\x1b\x89\x12\x8e\x69\x28\xaf\x08\xf3\x94\x49\x78\x18\x29\x6d\x07\x48\x69\x58\xb9\x92\xca\xfb\xd9\xaa\xc1\x41\xc6\xe4\x7b\xde\x2d\xe9\x3c\xdc\xf5\xd9\xaa\xea\xb3\x25\xb3\x2e\xae\xf9\x05\xd7\xc0\x9b\x37\xe5\xa4\x0f\x28\xeb\x41\x4a\xfc\x8f\x4e\x67\xc5\x0f\xe9\xfd\x4f\x2a\x31\x7e\xcf\x3c\x29\xa3\x55\x54\x6d\x30\x25\x7a\x3c\x6a\x4b\x11\x58\xed\x0c\xee\xa4\xb6\x6e\xbf\xc3\xde\xa6\x02\xa2\x3b\x0d\x14\xcd\x75\xcd\xab\x0f\xcc\x97\xf8\x4c\xb5\xa8\x68\xcf\x98\x57\x75\x4e\x1b\xbc\xd5\x02\xa6\x7e\x9f\x68\xe2\xed\xf9\x15\x00\x57\xcd\x7c\x5f\x6d\x0a\x03\x98\x25\x26\x44\x92\x08\xa9\xb3\x1f\x8a\xd5\x96\x54\x49\x5f\x16\x4d\xcb\x12\x09\x46\x63\x05\x0f\x88\x42\x2d\x8b\x18\x48\xae\xf8\x3c\x03\x58\x94\x73\x52\x0b\xa3\x81\xa6\x1f\x47\x35\x96\x69\x40\x37\x55\x57\x3f\xe8\xd1\xd3\xc5\x9e\xda\xa2\xa9\xe7\x64\x2a\xd8\xa5\x8f\x9f\xd1\xff\x09\x4b\x48\xb2\x03\xac\xc6\x88\xe7\xcc\x54\x32\xf7\xb2\x16\xa3\xae\x46\x44\xee\xa6\xda\x48\x38\x18\x6b\xd8\x5f\x23\x81\x6e\x2f\x54\xcb\xea\x92\x0d\x4d\x6b\xf9\x0d\x7d\xf0\xc9\x6d\xb5\xc1\x24\xe4\xbd\x1e\xaf\x1a\xc2\x1b\x13\xc8\x91\x2c\x9a\x25\x0d\x8d\x79\x69\x9f\x7f\x2c\x71\x22\xa3\x3d\xff\x3d\xeb\x81\x3e\x24\x7b\x91\x41\x9b\x4d\xe1\xce\x3b\xa0\xec\xa6\x1d\xaa\x31\x3c\x90\xa3\xda\x8e\x84\xed\xc5\x3a\x73\x5a\x24\x46\x4a\x5f\x7e\xc6\xee\x8f\x2c\xaf\x54\x62\x92\xe7\xac\x64\x7b\x83\xe9\xe2\x41\x9c\xdd\xf8\xd9\x22\x09\x94\x16\x0a\x1d\x66\xe7\x0d\x63\xed\x53\xe9\xa0\x4e\xc2\xd4\xb8\x00\xd5\x45\xb2\xb2\x56\x15\x6b\x1b\x28\x4b\x54\x22\x9a\x2b\x6a\x91\x2e\x01\x2b\x53\x15\x18\x38\x1e\xcd\xa7\x9e\xec\x67\x34\x31\x50\x1b\x58\xcb\xc4\x17\x6f\x64\x5d\x04\x6d\x26\xef\x55\x3d\xf6\x21\x31\xb8\x77\x71\x3e\xf1\x94\xf5\x87\x40\x05\x95\xd9\xec\x9a\x2a\x0a\xda\x13\x65\x2b\x5e\xa4\x58\x97\x3b\x96\x3e\xb6\x1d\xc8\x62\xc3\x27\xed\x1b\x95\x9f\x1d\x81\xfc\x24\x0c\x9b\x28\x86\xd8\xdc\x37\x49\xd7\xf0\x82\xcb\xbe\xb2\x8a\xe7\x15\x91\x02\xca\xc7\x9b\x9d\xe8\xc6\x48\xcc\xe5\xe9\xa3\x55\x76\x73\x14\x9f\xac\xd6\x79\x47\x4c\x9c\x64\x05\x2d\x56\xcc\xec\x84\xcb\xd3\x4e\xe7\x39\xac\x19\xe8\xf3\x40\xe5\x52\xb2\x69\x87\xbb\x30\xf7\x50\xf8\x9c\xb6\xe2\x64\x27\x48\x46\xa1\x00\x35\xd1\x26\x21\x6c\x5b\xb2\xf8\x9c\x6d\x45\x8d\x26\xbf\xd2\xb3\x32\xa1\xed\x70\x45\x0b\xda\x08\xf6\x29\x6b\x3f\x56\x38\x65\x28\xbd\x32\x40\xd9\x87\x8c\x58\x21\x2c\xe5\x27\xd3\x5b\x12\x67\xb8\x86\x6a\x88\xd6\xf6\x08\xfd\xb4\x65\x51\xf6\xcc\x18\xbb\xc8\x08\x10\xf5\x3a\xe2\x16\x1e\x89\xc7\x29\x2b\x20\x43\x28\x15\xb9\xfd\xb0\xb8\x00\x73\x8d\x1f\xe7\xcf\xee\x77\x3f\x3e\x99\x3f\x73\xbc\x75\xb1\x2e\x17\x1f\x85\xfe\xaa\x7a\xde\x7c\xc6\xc1\x16\x8a\x12\x3a\x53\xf3\x1a\xbb\x5f\xa4\x74\xd0\x6d\x71\xae\x22\x5e\x40\xc5\x08\xf1\x9c\x1b\x4d\x1a\x75\x86\x59\x06\x6d\x6d\x0b\xac\x2a\x10\xb8\x27\xc8\x63\x4e\x65\x92\xc4\x06\xe0\x69\x12\x03\xd9\x54\xdb\xaa\x1f\xd1\x04\x73\x98\x5c\x69\x4b\x75\x65\x86\x24\xd4\x85\x61\x62\x94\xc4\xa7\xa9\x1a\xda\x57\x8d\x4e\xae\x73\x3a\x48\x7d\x9f\x12\x6d\xec\x69\x7f\xe2\xce\xd2\x78\x88\x51\xe7\xbc\x31\xd3\x21\x2a\xef\xb2\x7d\xad\xf8\x2a\x0b\xa3\x92\x57\x15\xb6\x0f\x6e\xd7\x68\x39\x80\x32\x94\xea\x59\x20\x7d\xe8\x50\xf9\x68\xa6\xba\x2d\x14\x63\x9e\xce\x1d\xaa\x58\x6e\xcd\x27\x67\x85\x78\x5e\x5d\xca\xd9\x17\x18\x60\x38\x9e\x41\x3a\x40\xf9\x69\xa1\x53\xd8\x47\x4a\x01\xa6\xe7\xfb\xbe\x6f\xf8\x5c\xb2\x61\x72\x90\x32\xd6\xeb\x13\x00\xe2\xa8\xe5\xeb\xc3\x74\x86\x78\x12\x16\x5b\xda\x39\x21\x23\x3a\xe4\x35\x2d\x1a\x6e\x3e\xd1\x0d\x46\xa7\x9b\xa0\x03\x2b\x44\x97\x94\xd7\x37\x5e\xbd\x81\x5e\x70\x83\xfd\x74\x5f\x1e\xb6\xe5\x23\xdf\x1b\xb7\x18\x50\xc2\x7a\x24\xc5\x83\x85\xf2\x0e\xb9\xa2\x62\xb5\xe5\x64\x7b\x9a\x2a\x2a\x3d\x7d\xb4\x31\x7a\x91\xcf\x24\x4f\x9c\x93\xc4\xca\x02\x88\xa6\x51\xa0\xf4\x6c\xd0\x96\x3f\x12\x8e\x31\xd8\xc7\x5d\xf6\x5b\x53\xdf\x34\x59\xb7\x96\xe3\xb7\x75\x8f\x8e\xee\xf5\x2a\xd2\x5b\xe1\x5e\x04\x44\xf7\x5f\x78\x03\xe4\x81\x7e\x48\x74\x36\xca\x60\x51\x28\xb5\x5a\x8e\xcd\x9a\xac\x0d\x07\x6f\xc2\xda\x5f\xca\x96\x8f\x77\x00\x8a\x67\xeb\x10\x16\xe3\x41\x38\xa6\xe8\x77\x77\xc7\x10\x35\xe9\xc8\xf6\x7b\xee\x75\x53\xe4\xd4\xed\x1b\x68\xa2\x7f\xa5\x0d\xa7\x86\x8e\xbf\x49\x28\x43\x8e\x99\x67\xf8\x20\x50\x3e\xf3\x7e\x48\x78\x4b\x7f\x3b\x10\x56\x79\xc7\xd2\xb4\x40\x5e\x42\xd6\xcf\xd1\x25\x86\x1b\xca\xc5\x84\x60\xfb\xae\xf4\x77\x19\xf8\x72\x63\xba\xbc\x7c\x75\x65\x87\xd8\xcb\x57\xe9\xc7\x52\x2b\x7f\xd5\xf7\xbb\xee\x17\x28\x34\x44\x3b\xc1\xaa\x8c\x8b\xfc\x86\x85\x48\x49\xd6\x1f\xc8\xb8\x2a\xf3\xad\xf6\x92\x3f\xa5\x8a\x63\xda\x5d\x35\x91\x3f\x69\xd3\x0d\x14\x65\x09\xc4\xa9\x9f\xa7\xc4\x68\x77\xa8\x29\xf5\xa2\xe4\xb7\x91\x76\xef\xb7\x24\xdf\xec\xe8\xdc\xc5\xf2\x4c\x00\x06\x45\xd6\x5c\x8f\x5f\x29\x40\x40\xc1\xfb\x2d\xcd\xfc\x02\xc7\x4d\x2a\xf0\xf0\x71\xf6\x28\x50\x6c\xc6\x95\x15\xb4\xb4\xff\x50\x85\xfc\xcd\x42\x6f\x58\x6f\x57\xfd\xdd\x46\x11\x55\xc7\xe9\xc4\x29\x09\x02\x22\xa6\x87\x72\x40\xd8\xa7\x59\xdc\xec\x59\xaf\x45\x09\x24\xd2\x46\x55\x6f\xf3\xcf\x77\x15\xdc\x36\x13\xe5\x84\x81\xf9\x42\xc6\xa6\x74\x88\xf1\xb2\x20\x78\xd6\x5c\x1d\x84\xa6\xa9\x27\x90\xaa\x5e\x6c\xf6\xc5\xc1\x9e\x74\xfb\x39\xed\x71\x2c\x2b\x3f\xb8\xdf\x3d\xe0\x2a\xeb\x8f\xb4\x29\xd7\x0e\xfe\x17\xf9\x9d\xe2\xf7\x0f\x76\xcd\x46\xa7\x59\x3d\x40\xa4\xee\xc2\x8d\x64\x8b\x82\x77\x07\x1c\x04\x66\x9e\xa9\x84\x87\x03\x47\xfe\x50\x49\xe8\xe9\xcd\x2d\x6c\xd6\x43\xe0\x9c\x44\x24\x38\xf3\x77\x83\x19\x6f\xf1\x19\x0b\xdd\x75\x28\x5a\xbb\xcd\xdf\x76\x51\x40\xc8\x0d\x51\x36\x2e\x37\x58\xa0\x07\x8b\x93\x24\x33\x51\xfa\x7c\xac\x4b\x3e\x50\xbe\xa7\x25\x36\x51\x81\x5b\x79\x07\x0b\xca\xe4\xa3\x10\x8d\xbc\x18\xf1\x8e\x71\x41\x06\xa3\x63\xdf\x66\x53\xae\x58\xe9\x68\x0d\x47\xad\xe9\x44\xd3\x96\x27\x60\x21\xc1\x79\x0c\xbb\xc9\x0a\xe7\x35\x3c\xc4\xb8\x39\x8a\x8f\x8f\xac\x8b\xa1\xaa\x5a\xdc\xef\x06\x87\x48\xed\x86\xee\x00\x5b\x3e\x2f\x75\x7b\xde\x80\xf8\x6c\x25\xc2\x55\x3c\x1b\x2c\x5e\xa0\xaa\x12\x4d\x1c\xae\x9e\x68\x91\x0f\x9c\x77\xd5\x0f\xb0\xaf\xac\x3a\x54\x3a\x8c\x2b\xd6\xca\x1d\xd0\xa1\x6a\xdd\x81\xb8\xfc\x5c\x41\x81\xfb\xb2\x62\xc5\x20\x8e\xc4\x4e\x13\x80\xbc\x59\xb2\x21\xe6\xc1\x47\x2f\x19\x95\x88\xe1\xcd\x27\x5e\x8d\xdc\x1e\xe7\x4a\x39\x51\xe8\xea\xa0\x78\x9e\xf5\x70\x8d\x6b\xa0\xb2\x38\x22\x41\x86\x4b\x50\x3f\xb1\xb8\xf3\xcd\x75\x7e\xd3\x41\x53\x64\x1c\x8a\x95\xd7\x52\x9c\xd9\x0f\x89\x39\x2b\xf4\x2a\xbc\x22\xa1\x15\x67\x98\x60\x5d\x3f\x6f\x36\x4e\x18\xb9\xc6\xf1\x18\xdc\x45\x75\x4f\x9f\x82\xed\x5a\xf7\x26\x3e\xda\xf3\x41\x98\x8f\x28\x92\x1d\x54\x84\xbb\x47\xdd\x29\x26\xca\x1e\xb1\x10\x48\xcd\xb0\x48\x46\xfc\x5b\x70\x4d\x52\x2e\x61\x16\x5d\x0a\x74\x25\x7b\xaa\xff\xb1\x88\xf5\x15\xe1\x90\x8f\x89\x5e\x7d\xc0\x7b\x19\xcd\x8a\xa9\xf8\x25\x1d\x87\xff\xa4\xeb\x69\x09\x30\xa6\xed\x42\xff\xd7\x40\x1e\x49\x91\x8b\x25\x06\x34\x75\xeb\x6a\x97\x36\x50\x1b\x87\x28\xf4\x64\x1b\x08\xd2\x7c\x99\x51\xe2\xd8\xc0\xfa\xf3\x36\xaf\xbb\x65\x09\x45\xfa\x36\x5d\xf2\x9d\xf1\x4c\x9b\x66\xb9\x5c\x2e\xf6\x0f\xb4\x2c\x47\x30\x34\x1d\xee\x2e\x98\xbb\x60\xa2\xe2\xa6\xe5\x66\x05\xca\x5a\xf4\x01\x58\xf5\x35\x75\xd6\x07\x26\xb3\x11\x0a\x20\x1b\x47\xf7\x64\xd6\x9b\x4f\x65\x88\x88\xe5\x1f\x1d\x79\x80\x75\xbd\x2b\x90\x0b\x96\x78\x9a\xa4\x51\x68\x6b\x70\xcd\x3b\xbf\x89\x47\xcf\x45\x83\xbb\x73\x5a\x23\xa5\xb6\xc2\x0b\x83\xd7\xca\xa0\x42\x68\x69\xfc\x89\x28\x91\x7b\xf6\x6c\x4e\x5d\x5c\xac\xa3\xd5\x79\x85\x9c\x54\x72\x46\x0b\x34\x79\xcf\x4d\x7f\x48\xe4\xa6\x3d\x73\x4a\xf9\x13\xb9\x79\x17\x89\x56\x95\xec\x7d\x6a\x9a\x78\xbe\x2a\xb1\x22\xa2\x77\xbf\xb5\x24\x6f\xc3\xa6\x14\xfd\x5b\x43\x32\x07\x74\xeb\x7f\xa2\x2f\x96\xf1\xeb\x24\xba\x5e\x1c\xa8\x49\x20\x46\x57\x3d\xaf\xb0\x0b\x5a\x18\x24\xf6\x1c\x6b\x0a\x9d\xd2\xc1\x1d\xa0\xb9\x79\x61\xdf\x34\x1f\x39\x33\x3d\x5e\xda\xf2\xa5\x70\xa2\x46\x7b\x61\xdf\x09\x1f\xf2\xb7\x33\x6c\x0e\x2c\x7e\xe3\x9a\x22\xd8\x12\x58\x5a\xe0\x09\xb3\xbc\x59\x00\xbf\xcb\x7b\x62\x8b\xb5\x1c\xc4\x84\x43\x85\x45\x35\xdb\x55\xe1\xee\xb3\xb9\x16\xb6\xfd\x10\x54\x7c\x48\xbc\x49\x8a\x59\xa3\x4c\xa9\x85\x95\xc5\x74\x2a\x23\xff\x2b\x7d\xaa\x42\x07\xec\x0b\x1f\x7a\x20\xc7\x4d\xb2\x5d\xff\xc1\x3c\x26\xf8\x99\xa8\x0a\x2c\xd6\x7f\x29\x79\x3f\x4d\x4f\xe5\xc3\x8e\xf6\xfb\x0a\x63\xaa\x8a\x24\xd9\x01\xef\x81\x01\x8d\x4e\x84\xeb\xb4\x1a\x4a\x79\x4d\x7c\x3b\xdc\xd9\xd9\x66\x43\x0a\x31\xe1\xda\xe5\x10\xa4\x00\xbe\x9b\x08\x8e\xa5\xac\x5c\xc6\x79\xb5\x0e\x2e\xbe\xf8\x3a\x87\x4f\xd9\x04\x76\x5d\xce\x53\x56\xf7\x12\xe1\xd0\xe9\x4f\x07\xba\xcd\xe9\xe0\xf8\xa9\xca\x9d\x62\x89\x66\x8b\x4d\x74\x74\x17\x7d\xc1\xe6\x39\xb8\x4c\x1f\xdb\x91\xf1\xcd\x94\x5e\xf6\xbc\xd1\xcf\x64\xbf\xe3\xdb\x93\x60\xc0\xbf\x20\xc1\x0d\x38\xce\x0f\xce\x63\x18\xba\x15\x73\xd2\x8c\x80\x17\x76\x48\x83\x95\xcb\xcc\x96\xcf\x84\x7d\x98\x2e\xa1\x62\x08\xe2\x35\x2c\x60\x31\x6a\x1c\x03\x64\xca\x7d\x2e\x86\x4f\x3b\x63\xba\x6e\xae\xd3\x4d\x55\x7f\xec\x14\x9b\xcc\xc7\xc2\xc3\x29\x54\x52\x44\x84\x7b\xb1\x1b\x92\xcf\xb1\x99\x92\x5d\x33\x0d\x56\xb8\x5d\x46\xc9\x85\xdb\x31\x92\x27\x61\xfd\x11\xdd\x2e\xc4\x96\x25\x8b\xc9\x60\x6a\x76\x79\x47\xa3\x6c\x9a\x4e\x15\xa0\x9e\x89\x70\x1a\x94\x2a\x0a\xa5\x38\x77\x10\x3a\x25\xc7\x76\x65\x88\x35\x95\xd8\x25\x9f\x75\x00\x2b\x34\xab\xb6\x62\xf6\xf7\x8b\x5d\x01\x62\x7e\xdc\x69\x02\xd9\x30\x2a\x89\x7b\x1f\xde\x7b\xbc\x6d\xec\x82\xd1\xb8\xa1\x65\x1e\xd9\xa6\x2f\x18\xc0\x96\x1d\x75\x76\x48\x1f\x5a\x81\xa9\xf0\xef\x20\x13\x23\x82\xf0\x52\x48\x26\xde\x31\x88\x66\x13\x89\x76\x27\x7a\x19\xe1\xf2\x19\xb3\x41\xfe\x5b\x5c\xdf\x39\xa5\x02\x1f\xc8\xb3\x01\x88\x1e\xd8\x23\xc8\x49\x09\xda\xda\x3a\x28\x3d\x0f\x7a\x3f\x5a\x2b\x56\xee\x9a\xb0\x10\x0e\x5c\xa9\xbb\x98\x99\x1d\x0f\x6b\x52\xe5\x2e\x10\x06\x17\x62\x74\x52\xe3\x22\x51\xaa\x20\x54\xe1\x80\xd1\xf9\x73\xc5\xb1\x70\x1f\xbe\x00\x10\xab\x43\x07\xa0\x86\x87\xf1\x79\xb3\x34\xeb\x85\x90\x91\xed\x5a\x22\x0f\xda\x68\x07\xfa\xb5\x11\x0b\x8b\xd8\x15\xb8\x55\x83\xab\x78\xcf\xa5\xe8\xc4\xa8\x75\x31\xbf\xc7\x97\xa5\x38\x1d\x11\xd1\x31\x8b\xba\x9a\xac\xcc\xd9\xe5\x0a\x8b\x76\x9d\xa4\x1f\xc2\xb8\x74\xb8\xa7\x9a\x32\x00\xb0\xe1\x28\x83\xef\x27\xb4\x85\x18\x8d\x8a\x1d\xc6\x7f\xab\x5a\x4c\x21\xdc\xd5\x5c\xc4\x40\xd2\x53\x70\x14\x9a\x37\xd1\x4b\x1b\x3f\xf9\x69\xd8\xb8\x9f\xf0\x9f\x07\x2a\x6d\x19\x5c\x4c\xef\xdf\x24\xd4\x25\x50\xa3\xbf\xe2\x2c\x30\xcd\x03\x8d\x19\x83\x85\x20\xaa\x8e\x74\xc9\x59\xa4\x73\x87\xf6\xfc\xab\xf4\xec\xbc\x77\xff\x13\x54\xec\x51\x5b\x5e\xc5\xee\x7a\x39\x58\x0e\xdc\xbd\xc1\xce\x39\x5a\x18\x94\x01\x39\x42\x49\x3a\x90\x0e\x94\xa8\x9d\x90\xc0\xcd\xc8\xd9\x84\x31\x44\x49\x10\x25\x94\x1a\xb0\x85\xb0\xa0\x0a\x33\x22\xd8\x00\xca\x41\xa5\x1b\x29\x8d\xe3\x89\x3f\xc6\x49\x8c\xb0\x22\xb0\xb0\xd3\xa3\x8d\x59\xa4\x58\x3d\xd9\x6d\x19\x11\x72\x89\xee\x4c\xba\x46\x37\x64\x47\x7a\xfc\x59\x57\xab\x35\x8d\xab\xda\xf2\xd5\x31\xc8\xc9\xee\x27\xfd\xe9\x94\x7f\x11\x43\x69\x56\x35\xeb\xae\xb8\x05\xb1\xe1\x72\x1b\xcc\x8f\x5d\xdf\x36\xf5\xea\xd9\x69\xc3\xc7\x46\xd6\xe8\xf0\x26\xf8\xd3\x8f\x4f\x34\x9d\x98\x26\xcf\x21\x1b\xfc\xbd\xac\xfa\x57\xfb\xf9\x83\x2e\x5d\xb1\x05\x2a\x2e\x55\xf2\xc0\x2e\x55\xad\x06\xc4\xc0\xee\xba\x76\x68\x81\x95\x2a\x2d\xf4\xae\xd9\xd0\x2a\x89\x8b\x34\xdb\xad\xcc\x2f\x6d\x00\x5b\x81\x44\xff\x61\x68\x50\xd6\xc0\x5c\xd9\x2a\x7e\xa8\xc2\x99\x23\x73\x3f\x3f\x3a\x6d\x26\xee\x45\x7a\x12\x15\xb8\x18\x18\x37\xa7\x75\x1f\x6c\x1b\xac\x23\x49\x5d\x31\x08\x0a\xe3\x62\x98\x48\x56\x3b\x79\x15\x8d\x29\x59\x70\x12\x40\x1d\x56\x9e\x8a\x52\x4f\x44\x62\xe2\x34\x6b\x53\x64\x85\x92\x95\xdb\x42\x5a\x01\xfd\xf2\x5e\x61\x2a\x5c\x08\xbe\x5e\x99\xc3\x04\x3b\x58\xe5\xca\xd8\x64\xf4\xca\xd6\x6c\x04\x01\x63\x53\x9c\x78\xce\x36\x84\x99\xe2\x6d\xd6\x8b\x90\xa9\x89\x85\x92\x30\x36\x21\x49\x3a\x69\x30\xdb\xfe\x42\xa6\x36\x6a\xd7\x0f\xdc\x9a\xfb\x02\xbe\x86\x31\x1d\x03\x1d\x34\x16\xe8\x46\x74\xa6\xde\xa8\x26\x04\x19\x6c\xdd\xea\x4f\x3d\x6f\x1b\xbd\x1f\x4b\x2d\x11\x73\x42\xc7\x9c\xbe\x8c\x16\x33\x77\x02\xf6\x88\x62\x6f\x03\xe5\xca\x7f\x4d\x8b\x9c\x38\x41\xdf\x7c\x24\x62\x1a\x17\x41\xfa\xa1\x42\x8e\xc3\xd8\x59\x43\xf9\xcb\xb1\x67\x0f\xc3\xd3\x87\xde\x33\x1f\x64\x31\x01\x67\xd1\x5a\x9d\xcd\x93\x68\x86\x60\xeb\xcd\x86\x21\x85\x70\x12\x65\x04\x6a\xd8\xe3\x38\x00\x49\x58\x35\x03\x41\x7d\xcb\x1f\xfa\x3b\x9c\x96\xa8\xfe\x60\xb9\x10\x03\xdf\xd7\x01\x03\x15\x72\xc8\x04\x15\x6e\x90\x17\x74\x94\x84\x61\xe3\xb1\x54\x78\xc5\xd9\x9d\x5a\xf5\xea\x75\xbd\x15\x79\xa9\x89\x58\x03\x00\x14\x84\x77\x0e\x11\xf8\xe5\xb5\x0a\x56\x8b\x9a\x62\xa8\xc9\x22\xe6\x80\xa8\xce\x58\xe6\x5a\x4c\x33\xd2\xe3\x8b\xd7\xb4\x67\xb8\x06\xad\xd2\x9f\x73\x92\xa4\xa5\x0b\xd7\x4e\xa3\xc1\xc4\x36\xe4\xb9\x4e\xe6\x97\xe2\xa6\x40\x45\x49\x2c\x71\x37\xa8\xd1\x80\x64\x30\x71\xbe\xe0\xb8\xec\x02\x2d\x8f\xb4\x86\x9e\x0c\x77\x2b\x37\xd4\x6f\x08\xb3\x4e\xd7\xc8\x4b\x6b\x77\xc3\xfc\x3f\xb0\xc5\xca\x05\x43\xd7\xe0\xe0\x03\x23\x30\x82\x84\xa6\x23\xe5\x25\xdc\x3a\xfe\x61\x1d\x56\x0e\x12\x4e\x65\xc8\x46\x26\x27\xd3\x33\x95\xc9\x62\x53\x9c\x65\x67\xf5\xc4\x63\xbe\x8b\xcf\x30\xe1\xfb\x73\xf8\x2d\x5c\x26\x1c\x55\x40\xca\x17\x93\xcd\x3a\x8a\x96\xa6\x07\xfc\x26\x95\x8d\x50\x0c\x19\xb8\x15\x39\x5d\x28\x45\x04\x36\xc2\x54\xcb\x75\xb9\x61\xe3\x5e\x6d\xdd\x5f\x6f\xea\xd0\xa3\x1b\x7f\x05\x0a\x4e\xa2\xa5\x17\x71\x05\x15\xa1\x9a\xce\x2a\x23\x08\x5a\x6e\xb8\xe4\x97\xa3\xbc\xed\xd7\x27\xc7\x6f\xdf\x9e\x5f\xf9\x6d\x9a\xd7\x41\x5d\x90\x30\xf1\x8d\x33\x87\x1b\xf5\xcb\x8c\xe2\xdc\x04\xc6\x10\xde\x2c\x4f\x4b\x1c\x82\x0b\xd9\x94\xd5\x4e\x9f\xab\x06\xbc\xa7\xe1\xbe\x18\x2f\x8f\xfa\x5f\x1c\x9a\xbf\xe4\x3d\xcb\x37\x1f\x12\x53\x76\x9f\xf3\xdf\x24\xbc\x2f\x08\xee\x68\xb0\xf4\xfc\x55\x8e\x37\xbd\xa7\x0e\x34\xc5\xe8\xfe\x00\x4c\x7a\x9f\xe3\x68\x44\xb8\x6f\xb0\x57\x2c\x53\x5c\x66\x1f\xb1\x3a\xb4\x69\xb1\x60\x18\xb9\xfb\xba\xfa\x7d\x0f\x01\x8d\x0f\x46\xc4\x3c\xd8\xca\x72\x5e\x6d\x64\x43\xf9\x8b\xfb\x21\xe9\xfc\x35\x30\x0f\x0f\x1a\xa7\x5f\x3f\x76\x3b\x36\x52\xa5\xbd\xa1\x7b\x7a\x6f\x5f\xa5\xac\x5d\x63\x13\xad\x7b\xcf\xe8\x18\xc3\x57\xdc\x34\x7d\x04\xf1\x6c\x54\x1d\xbb\x88\x2d\x44\x15\xe7\x8c\x7d\x40\xb7\x9a\xce\xab\x85\x45\xde\x48\xff\x27\x88\xff\x03\x6d\xb2\x3f\x9a\x1f\xc7\x43\x3d\x25\x13\x8e\xb0\x76\x3f\xe5\x9b\x7d\xac\x2c\xe1\xd6\xb9\x4c\xf7\x28\x41\x51\xd5\x18\x0f\x7d\xd9\x90\x67\x46\xe9\x9c\x07\xcb\x74\xa4\x4e\xa0\x2f\xf0\x3a\xc9\x37\xbd\xe8\x8a\xd3\x00\xfd\xcc\x0b\xd0\x6a\x19\x4e\xb1\xde\xe9\x39\x96\xd3\x2d\xda\x0a\x96\xf5\x92\xce\x9e\x8b\x69\xe0\xb5\xe8\x12\x7d\xbb\x97\x44\xa8\x34\xa6\xd9\xaa\xea\xe9\x8c\xcc\xfe\x53\xb0\xc3\x4e\x68\x9d\xd3\xd6\x03\x9f\x47\xf9\xb2\x94\x51\x51\xde\xa5\x05\x16\x3a\x2e\x96\x0d\x95\x64\xf9\x43\x7f\x4f\x94\x52\x40\xf3\xb8\xe4\xeb\x8a\x26\xab\xea\x8a\x57\xea\x6b\xfa\x43\xbb\xb0\xc8\xec\x31\x5d\x89\x40\x8a\x4a\x54\x21\x23\xa7\x66\x57\x8f\xda\xc5\xe9\xac\xa8\x41\x5c\x30\x2f\x6a\xba\xad\x2a\x6f\xa0\x0d\x09\xe9\x73\x24\xa8\xa3\x23\xf5\x84\x66\xe1\x93\xc8\x2f\xe2\xfa\xf8\xda\x52\x1e\xf2\x99\xed\xd1\x01\x45\xf0\xf0\x36\xf5\xeb\xf5\xc1\xc3\x1a\x6e\x57\x0b\xb3\x41\x51\xc6\x4a\xfe\x54\xad\xc9\x22\xa3\x85\x44\x1d\x31\xcd\x1f\xcd\x79\x62\x8a\x43\x5a\x98\x7b\x78\x29\x9b\xce\x22\x8f\x57\x17\x0c\x31\xe7\xb4\x3a\xee\x3d\x13\x9c\xd9\xd2\xb2\x5a\x75\x0a\xce\xd4\x17\x34\x98\x03\x85\x98\xc1\x77\x24\xb3\x23\x2b\x5b\xe4\xf0\x71\x50\xd5\x2f\xd3\x50\x11\xf7\x55\x09\x28\x0f\xfc\x51\x9e\xbc\x7c\x7d\x05\x6f\x14\x9a\x31\x78\x0f\x98\xcb\x0d\xdb\xe9\xce\x5c\x9d\xcc\x98\xab\xae\x93\x0d\xbb\xae\x80\x78\x5e\x83\x76\xd3\x6e\xd3\x41\x5c\x45\x0e\x98\x5a\x59\xc8\x72\x7c\x6d\x76\x3d\x08\x18\x33\x14\x7e\x2d\x89\x5a\x90\x13\x71\x72\x8d\x6f\x52\xcc\x54\x29\x0f\x1d\xa1\x12\x59\xe8\xc6\x3d\x74\xd9\x2f\x1d\xff\x80\x67\x0b\x9b\xe4\xc7\x8c\x03\x8e\xb5\xc1\xbc\x85\x86\x74\xbc\xb5\x14\xbc\x37\xee\x6e\x32\xd6\xf0\x62\x3b\xdc\xdd\xf8\x84\x40\x6e\xa0\x8c\x2a\x02\x76\x36\x0f\x17\x98\xa7\xff\xf8\xdf\xff\xe7\xf1\x09\x77\xfc\xa4\x6f\x37\xf4\xa5\x62\x59\x02\xd3\x35\x92\x42\x32\x08\x69\xd2\x00\x32\x37\xd5\x4e\x1c\xbf\x17\xa8\xd9\x35\x91\x9e\xff\x6b\x22\x93\xeb\x68\x0f\x24\x0c\x6f\x70\xce\xa0\x0d\xf5\x27\xec\x3b\xfd\xed\x3e\xa1\xec\x37\xce\xa7\xe7\x6f\x48\x9e\xbf\x56\x8b\x8a\x5f\xe4\x2b\xb1\xdf\x7f\xc5\xaf\x3d\x5b\x3a\x8b\xf9\x06\x7f\x24\xfa\x8b\xaf\x7c\x12\x75\x4c\x66\x66\x9d\xf0\x61\x4a\x29\x8d\x0e\x52\x21\x67\xfd\x7d\xcf\xa3\x14\x1d\xc0\xd3\xf4\xcf\xfc\x2b\x85\x4f\xaa\x0e\x85\x19\x96\xe3\x3e\xa0\xe7\x01\x0b\x0b\x2d\x77\xc1\x91\xd5\x7e\xde\x73\xab\x3c\xde\xdd\x6e\xcc\x1c\xd0\x00\xd9\xdd\x26\xd9\xed\xd9\x88\x88\x69\xc8\x5a\xbb\xa0\x14\xf8\x2e\x71\x22\xcb\x22\x41\x0d\xee\x3e\x30\xaa\x03\xcd\x53\x77\xc5\xf7\x6c\x72\x13\x47\x96\xd7\x68\xb1\x61\xf3\x3c\xa7\x21\xab\x40\x9d\x24\x8e\x8f\x2a\xff\xec\xdb\x12\xe7\x04\xfa\x93\x10\x7b\x66\xc3\x33\xbd\x5d\x64\xa7\xcb\x3e\xc7\x6d\x1a\xd2\xed\x6e\x91\xaf\x48\xf3\x95\x56\x84\x03\xc2\x73\xfd\x4c\x28\x9d\x7f\x5f\xd1\x9f\x91\x7b\x34\x3b\x53\x8f\x9d\xa8\x37\xf9\xbc\x44\xf2\x1b\x7c\xd0\x12\xa5\x1d\xa2\xa7\x69\x80\xa6\xcb\xfd\x48\x18\x0f\x55\x2f\xe4\x8e\xaf\x44\xbd\x13\xe4\x26\x51\x3e\x13\xdc\xd3\xb4\x39\x9b\xea\xbe\xcb\xaf\xe5\x27\xe1\x48\xbd\xac\x5f\xc9\x97\x24\xc3\xf0\x5b\x40\x61\xf7\xed\xe0\x21\x03\xea\x9a\xbb\xb0\xef\xc4\x3a\x30\x1b\x77\xc4\x72\x06\x4e\xde\xe9\x62\x90\xbf\x94\x93\xec\x0b\x3e\xc7\x5a\x5a\x0e\xee\x9f\x9a\xed\x9a\x4b\xdf\xd2\xc2\x95\xcb\x8c\x33\xf9\x72\x39\x85\x18\x83\x9e\x62\xef\xd4\x34\x33\xc4\x3f\xe7\xbf\x2e\x95\x88\x52\xd7\x28\xfd\x75\x46\xed\x12\x03\x81\x8f\xb0\xe2\x55\xee\x93\x67\xc3\xb9\x08\xb2\x6a\x16\x44\xe6\xb8\x35\xa2\xf5\x85\xfc\x30\x7b\x41\xf8\x6f\x33\x57\xfe\x84\x7f\xa6\x9b\x51\x2d\x6e\x72\xc3\xb9\x1d\x34\x13\xc2\x50\x53\x93\x60\xd2\x5c\x08\x29\x2d\x6e\xa7\x80\xe9\xd8\x52\x47\xb0\xe7\x94\x10\x92\x56\x54\x31\x0b\xdc\x83\x9a\x21\x83\x4f\xc3\xd3\xc6\xca\x8e\x4f\x38\x85\xe8\xe7\xb8\x9f\x01\x90\x74\x33\x9f\x00\x65\x65\x90\x87\xa3\x81\x0f\x81\x54\x5f\xe9\x98\xce\x70\xf6\xfc\xfc\xd0\xd4\x0e\x27\x48\x32\x33\x92\xb8\x16\xa5\x73\xdb\x00\x10\x64\x16\x8e\x47\x10\x35\xe3\x2a\xd3\xc6\xa2\xfa\x80\xd0\x3e\x9f\x53\xf6\xfd\x02\xd8\x74\x85\x19\x57\x3e\x4b\x50\x67\x99\xca\x5c\xac\xe6\xa8\xca\x30\x8f\xc4\xab\x4c\x04\x46\x41\x84\x13\x1e\x37\x13\x25\x6e\xa5\xa8\x21\xcc\xc1\x9a\x47\x74\xa3\x25\x6f\x99\x5e\x0f\xc1\x1e\xfc\x87\xab\x3e\x50\x4e\xe5\x3b\x48\x75\xe3\x9c\x19\x3b\xf7\x38\xfe\x79\x0c\x93\x12\xf0\xd0\x29\xd0\x4e\xe3\x92\xd0\x46\xce\x12\x84\xeb\x6a\xa1\x9a\xa1\xa9\x42\x32\xcb\x45\x36\xbf\xd1\x32\x32\xcf\x70\x9a\x3c\x50\x64\xcb\x56\x29\xd8\xe2\xb5\xc8\x99\x4b\x98\x28\xd2\xa9\xd3\x35\x7b\x3d\x8f\x73\x66\xbc\x1b\xc1\x6a\x85\x79\x53\x37\x09\xc2\x54\x0a\x90\x73\x7c\x4c\x81\x88\xbe\x54\x35\x1e\xbc\x0b\x88\x7b\x81\xdd\xb0\x4e\x36\xcc\xa6\x38\xae\xc4\x1b\x18\xe6\xb4\x5f\x50\x8e\xad\x5c\x99\xaf\x8a\x7a\xfc\xac\x81\xe5\x29\x7e\xde\xd2\x8e\x2f\x20\x0d\x8d\x4a\xf0\x4a\xc2\x2c\x10\x88\x7c\xa7\xf7\xdf\x7f\xfb\xa1\xe3\x69\xf0\x37\x0f\xef\xbf\xfb\x40\x32\xd3\xfd\xf7\xdf\x7f\xc0\x95\xc3\xa8\x70\xb6\x64\x8d\xdb\xb8\x06\x14\x34\xe8\x5d\x5b\x7e\xaa\x9a\x7d\x27\x52\x21\x3e\x3d\x7f\xf8\x2c\x53\xf1\xb9\x8f\x97\xb8\x73\xfe\x1e\xac\xf0\xc2\x65\xc5\x2b\xbc\xde\x6f\x33\x1d\x63\x27\x1c\xc0\x7e\xb9\xe2\x86\x81\x2c\xe7\x26\x7f\x73\xbf\x79\xb8\x55\xc1\x83\xa5\xce\x9b\xa8\xf8\x2f\xf2\xeb\x19\x06\xc2\x43\xff\xcd\xb5\xd4\x04\x97\x15\x57\xe2\xbf\xce\x52\xba\xbb\x36\xb9\x29\xfb\x59\xcc\x95\x2c\x96\x0a\xba\x1c\x67\x69\x2f\x3c\x88\xce\x1b\x6c\x7b\x43\xf0\xb6\x04\x62\x0c\xee\x1d\x7e\x0e\x32\x6f\xab\xac\x8d\x0a\x28\xab\xf5\x54\xa2\xa0\x03\x5c\x2b\xa6\x64\x1b\xfa\x3a\x34\x49\x7b\xae\x0e\xfb\xf9\x95\xb5\x88\x3c\x41\x52\xeb\xd2\xd5\xb3\x24\x8c\xd7\x0b\x28\xb6\xa1\xfb\xe7\xa1\xaa\x6d\xa7\x40\x7f\x65\x13\xbb\x46\x23\x41\x5d\xe0\xc3\x92\x45\x93\xa4\x86\xfb\x8e\x36\x23\xad\x9b\x26\x9a\x9b\x16\x9d\x09\xe8\xb8\x05\x8e\x6d\xae\x59\x7c\xfd\xc3\x49\x11\x68\x55\x67\x66\xff\xaf\xc7\x06\x62\x96\x6c\xb3\x26\x23\x22\x32\x62\x6f\x54\x55\xe4\x1e\xf4\x9c\x8b\x6e\x07\xcd\x13\x4f\xee\x86\x79\x22\xc3\xd5\x5a\x16\xd0\x94\xfc\x4c\x7f\x1c\x5e\x07\x76\x38\xd6\x3f\x6e\x85\xba\x4f\x7f\x2c\x49\xf6\x45\x5b\x74\x7e\xdf\x8e\xf3\x17\xcd\xa6\xf1\xfb\x3a\x7e\x0d\x01\x44\xb1\x7a\xbf\x18\xc8\x66\x92\xed\x69\x5b\x57\x2f\x27\x0c\x76\x1e\x81\x9c\x18\x8c\x64\x0c\xac\xcc\xe2\x4c\xe7\x90\x22\x1d\x84\x5b\x8a\x45\x3c\x18\xd7\xa2\xb6\x5a\x00\x75\x9a\xdd\x49\xb0\x29\x15\xbe\x48\x19\xa1\xca\x9e\x65\xf6\xd0\xd6\x81\x2f\xad\x03\x2d\xbe\xd6\x7c\x58\x69\x3f\xdd\xb4\x3f\x85\x4b\x4f\xef\xb8\x1d\x94\x43\x10\xaf\xa8\x5d\x4e\xa4\x27\xc6\x2f\x7a\x96\xe0\x14\xb5\xf9\xe9\xa6\xe1\x6c\xa0\x06\xdc\x5f\x37\xa9\x3b\x85\x21\x4c\x19\x6f\x04\x79\xca\x85\xcd\x15\x0f\xe4\xaf\xe5\x67\x83\x6a\xe1\x4e\xfd\x14\x66\x76\xc3\x06\xb5\x85\xa7\xa9\x7e\x69\x7e\x74\x40\x1c\x1e\x0c\x15\x86\x78\x73\x5b\x76\xfb\x0d\xf6\x00\xdc\x6a\xca\x8f\xa5\xdc\xc7\x19\x10\x22\x3d\x89\xf6\xc1\xda\x0a\x18\xb9\xc4\x81\x52\x33\x0b\xce\x9d\x97\x8b\x1c\x16\xb5\xf0\xc4\xaa\x59\xe9\x90\x17\xc1\xe8\x09\x84\xe3\x56\x58\xfd\x6c\xa2\x1c\x46\xef\x62\xb6\xe5\xaa\x37\x25\xcb\x00\x53\xf3\xb2\xbf\xe6\xa9\x13\xb3\x07\x46\xae\x68\x30\xba\x1f\xc2\xcd\x98\x38\xd8\x13\xb4\xf1\x84\x77\xe4\x42\xb9\xd9\xbf\xe0\x87\xf0\x34\x45\xe5\x40\x5e\x0f\x8f\xbd\x0a\x82\x05\x6d\x93\xca\x14\x07\xad\xf8\xb6\xa4\x46\xb1\x8b\x17\x76\x84\x14\xde\xfa\x23\xfb\xcd\x19\xf3\xc4\x37\x11\x31\x9b\x35\x68\xfa\xf7\x2e\x5d\xeb\x47\x4d\xba\x59\x5b\x33\x92\xf6\x8f\x55\x4f\xa5\xff\xd3\x07\xa3\x51\x92\xf6\xb3\x90\x5d\x82\x3e\xfd\xcf\x08\x6a\x78\x72\xf6\x79\xa2\x18\x06\x41\x95\x66\xf2\x58\x68\xbe\x6e\xac\x44\x2a\x82\x1a\xe7\xd5\x20\x19\x7a\x67\x17\xce\x24\xf5\x9a\x4e\xf1\xbc\xd6\x15\x9b\xee\xea\x6a\x16\xa1\x06\x52\x6c\xeb\x5b\x62\xaa\x71\x39\x57\xa3\x6a\xdd\xe2\x56\x98\x78\x6d\x4b\x15\x1c\xe7\x8a\xd6\x87\x5d\x58\xd2\x2f\x77\x35\x31\x5d\x97\xc2\x16\x7b\x6f\x85\xce\x58\xa4\x42\xd0\x6f\x05\x2c\xcb\xfa\x5e\x75\x19\x2c\x95\xc4\xd2\xf9\x4a\xcd\x8f\x36\xd5\xa2\x4f\x5d\x3a\x35\xa7\xb6\xe8\xb0\x57\x59\x49\x58\x1c\x67\x78\x4e\xfb\x61\xb7\x46\x9c\x0d\x06\x58\xd2\x89\x71\xdb\x40\x50\x73\x2c\x22\xaf\x33\x68\xf8\x31\xd4\x30\xf8\x06\xeb\x70\x0d\xb9\x0c\xf1\x78\x80\x61\x51\x7e\x0d\x86\x1b\x54\x0b\xe5\xf9\xa1\x9a\x1f\xf4\xb7\xd7\x6d\x5c\x40\x7c\x44\x78\xd1\xdb\xd0\x3b\xb7\x7c\x4d\xfd\x71\xb0\xc9\xa9\x78\x6c\xa1\x9a\x8d\xe6\xa1\x91\xd0\x0d\x30\x01\xaa\xfa\x88\x68\x86\x6c\x05\x04\x34\xb5\xba\x41\xb4\xfb\x5a\x17\x21\x4a\x41\xd3\xc7\x64\xfe\xdb\x78\xbc\x4a\xcc\x87\xc6\x1a\xb2\xad\x5a\x76\xe6\x88\x9e\x1e\xfe\xcb\xfd\xe2\x91\x2c\x64\x98\xff\x8c\xae\x60\x38\x51\xd0\x19\xee\x82\x3c\xe6\xaa\x83\x23\x36\x93\x0d\x6f\x16\x0c\x44\xdf\xb3\xdf\x92\x40\x19\x17\xa8\x8d\xfc\x31\x3b\xc8\x9e\xd0\x09\x04\xb9\xd3\x7a\x81\x21\x40\xe1\xb5\x2d\xf7\xbb\xa8\xed\x26\xa3\xe5\x91\xe9\xa1\x8d\xb6\x14\x5e\x2c\xf8\x35\xec\x82\x9d\x56\x86\x55\x3b\xb9\x3f\x1e\x11\x6d\xdf\x73\xde\x47\xc4\xbd\x58\xf8\x74\xa0\x80\x24\x12\x50\x97\x12\xbd\xe6\x56\x19\x20\xaa\x7e\xc0\xe6\x27\xb1\x63\x92\x1b\x7c\x60\xc3\x8c\x89\x9b\xc0\x30\xd7\x0f\xfa\x94\x46\xcc\x2a\xbf\xf4\xa1\xc5\xe6\x7a\x14\x0f\xb2\x14\x7b\x6a\xfe\x1b\x66\xb8\x50\x2a\x5a\x55\x26\x53\xaf\x35\xa2\x72\x4d\xf1\x21\x46\x8e\x9c\x07\xe9\x83\x1b\xfa\xf7\x78\xbb\x7d\x5c\x14\x0f\x26\x46\x1d\x48\x3f\x6e\xd8\x03\xa3\x30\x55\x34\x0c\x58\x65\x50\x53\x20\x4a\x4e\xe3\x8e\x01\xa2\x79\xfa\x85\xa5\x80\x92\xef\xd8\xd2\xc2\xe3\x4d\x48\xd7\xcf\x5d\xc7\x5b\x40\x43\x0c\xcf\x1b\x9a\x30\xab\x10\x4f\xc3\x70\x24\x03\x21\x3c\xc8\x1a\x38\x50\xdf\xda\x3d\x77\x17\xa3\x12\x1d\xb1\xef\xed\x01\x94\x48\x3c\xbd\x83\x08\x09\x84\x5f\x8f\x54\x27\x00\x4f\x00\x4e\x89\xbf\xbe\xed\x7f\xa6\x08\x3c\xd5\xf8\x14\x09\xdc\x25\x04\x4f\xc5\x6e\xb5\xb4\x99\xd0\x37\x1c\x58\xe4\xcb\x67\x05\xf1\x60\x54\xce\x08\x7e\x7b\xb0\x75\xd3\x7c\x94\x98\x38\x73\x7c\xfa\x9c\x15\xc7\x82\x94\x4c\x8e\x7a\xf8\x2a\xce\x25\xd1\xb2\x5a\x84\x31\x62\x9f\x73\xc2\x44\x17\x0b\x9e\xe3\x36\xfb\xbb\xa8\x1d\x4f\xf1\x2b\xfd\x9f\x4c\x18\x0e\x44\xbd\x4f\xce\x2d\x06\x12\x1b\x46\xf8\x5c\xf5\x1b\x08\x9a\x52\x37\x87\x71\x5b\x6a\x58\xcf\xec\xfc\xcb\x7c\x43\xa6\x7c\x42\x62\x47\xd5\x99\xaf\xdd\xb9\xba\xf1\x05\x90\x7e\x9e\x9b\xb7\xdc\x18\xcc\x5d\xe6\x7a\x0f\xb9\xf8\x02\x8a\xcd\xda\x6a\x31\x88\x87\x97\x1c\x5f\x15\x35\xd8\xb0\x42\xd7\x3c\xa2\x3b\x17\x66\x51\x0f\xd5\x38\xe8\xc3\x48\xac\x0b\xba\x87\xf8\xc2\xf0\x93\x65\xc9\xac\x93\xab\x7b\xf5\xf7\x13\xaf\x11\x51\x06\xe4\xee\x80\xde\xc1\x52\x61\x62\xeb\x83\x9a\xdb\xc5\xa7\x11\xb7\x13\xeb\x2a\xf2\x82\xe9\x1d\xb8\x4a\x01\xd3\xc1\x6d\xf8\x00\xd0\x90\x72\x4e\xfc\x43\xac\x18\xa5\x58\x1e\xb9\x1a\xf6\x81\x92\x4a\x2c\x8f\xf8\x5a\xce\xf5\x88\xd9\x53\xd9\xf6\x70\xf2\x1b\xa3\x9d\x9d\x0e\x68\x01\x65\xdf\x52\x33\x8f\x21\x2b\x49\x60\x48\x0c\x42\xd6\x5f\xb5\x0c\xf0\x01\x63\x4c\x36\xae\xfc\x54\x15\x7b\xa2\x3e\x9e\x8b\xdb\xea\xfd\x2e\xae\x97\x56\x3c\x2e\xe1\x0f\xd6\x3d\x98\x4f\x08\x11\x2e\x6a\x30\xbc\x3c\x97\xde\x79\xb9\x9b\x6a\x99\x99\x90\x53\x68\x28\x0e\xe0\x84\x9c\x7a\x2f\xbe\x90\x55\x09\x1f\x82\x39\x98\x58\x6c\x9b\x98\xf4\x43\x3a\x9a\x8f\x18\x5b\xe2\x19\xea\xa4\xaa\x3b\x0d\xd2\x46\x84\x30\xc0\xd2\xa0\x3e\x20\x2c\x30\x1b\xb3\xd9\xe7\xe1\x73\xb4\x39\x8d\x68\x6c\x67\x80\x90\x24\x24\xa2\x01\x02\x2c\xb3\x9d\x01\x1d\x15\x8e\x94\x07\x1f\x39\xc5\xa9\xf8\xc3\x05\x16\x86\x9e\x07\x36\x11\x66\x07\x7d\x85\xdd\x81\x20\xe0\xf5\xa8\x69\xef\xa6\x77\xe4\xad\xa3\x9c\xd9\x08\xcb\x9d\x6c\x88\x56\x17\xe5\x8e\xc3\x5d\xb2\xee\x72\x29\xbb\xad\xf0\xfc\x3b\x5a\xfd\xee\xb6\x56\xc5\xa8\x6b\xaa\x59\x33\x6f\x54\xbf\x77\x2c\x5a\x8e\x51\x7d\x47\x6b\xdf\x5b\x6b\xe1\x96\xf5\xb1\x2c\x77\x41\x13\x71\xf7\x03\x77\x0f\x30\xcf\xd8\x6a\x6b\x82\xa3\xa9\x47\xa3\xb9\x40\x1f\x60\xe2\x51\xb8\x16\x6f\x09\xa0\xbb\xd9\x1d\xde\x5f\xe3\x05\x62\x5a\x4e\x04\x56\x87\xa6\xd3\xc1\xb0\x96\x27\x0b\x38\x37\x0c\x6e\x8d\x25\x4f\x54\x25\x86\xbc\x03\x53\x25\xef\x13\xed\xba\x66\x05\xda\xc3\xdd\x8b\x6d\x35\xd3\x09\x1b\x4d\x07\xca\x86\xf0\x21\xb1\xa6\xe2\xfe\xc0\xe3\x39\x09\x92\x0f\x17\x18\x38\x1d\x44\x75\xc5\x4e\x07\x41\x07\x85\x8a\x0e\xd5\x73\x32\x59\x87\x52\x5e\x38\xb5\x1c\xfa\xa0\x82\x93\x7b\xa6\xe1\xc4\xf4\x51\x80\xa1\x97\xb9\xe6\x5e\xaf\x9b\x20\x7a\x8c\x78\x42\x60\x2f\x0a\x3b\x32\x8b\xc7\x7a\x2d\xe2\x89\xe2\x45\x85\x95\x81\x14\x63\x7b\x8b\x89\x32\x38\xf2\x6e\xf7\xb4\x75\x6e\xaa\x8f\x50\x86\x11\x61\x4a\x7c\xe1\xf3\xcb\x2b\x68\xc0\x68\x01\xd0\x3e\xba\x62\xbe\x9b\xfe\x75\x5d\xd6\x08\x79\xc9\x61\x7e\x95\x11\x2d\x16\xec\xc0\x54\xd5\x1a\x0f\xf0\xba\x34\xb3\xf2\xba\xd8\x08\xdb\x0a\x5d\xdc\x4c\x7a\x10\x4d\x58\x8a\x50\xbe\xbc\xd2\xba\x5d\xb9\x20\x99\x78\xc6\x37\x5b\x6d\x8d\xf7\x11\x5c\xd4\xf6\x5b\x4d\x7f\xdc\x48\x60\x83\xc3\x0a\xb3\x00\x2d\x8a\x92\x50\x01\xac\x7b\xf0\x08\x3d\x43\xd0\x29\x29\xd8\x30\x7c\x9b\x0c\x0c\xfe\x2a\xd6\xcc\x15\xb3\xeb\x54\xcd\x45\x6e\x73\x12\x39\xd8\x87\x30\x1e\xa3\x34\x7d\x87\x28\x3c\xac\x6a\xe6\xf5\x0a\xa6\x4c\x98\x00\xe9\x76\x8d\xd8\x7a\xbe\xd3\xcf\x31\x90\x9c\x96\xb8\x27\xaf\xe4\x6b\x0c\xb2\xd3\xc8\x4a\x2e\xc6\xd2\x18\x64\xde\x14\x7c\xfe\x79\x4e\x7f\xc6\x42\xb4\x0b\xc6\x6f\x92\x34\x88\x73\xc7\xde\xf9\x72\x91\xcc\x19\x84\xee\x72\xb3\x94\x48\x0b\xac\x39\xc2\x71\x4f\x94\x7d\x6c\xd5\x2c\x71\x44\xd9\x84\x0c\x15\xa8\xaf\x1d\xdc\x48\x10\x44\x2d\xd4\xe4\xa9\x5f\x6e\xe8\x68\x39\xec\x13\x2e\x26\xac\x5f\xaf\x45\x06\xc1\x34\xe0\x70\x2b\x11\xef\x8e\x78\x6b\xe1\x73\xa1\x5d\x15\xda\x06\xb4\x93\x28\x77\xec\x21\x45\x44\x8d\xe0\x25\x06\x22\x32\xac\x58\x5d\x05\x06\xc6\x16\xf9\x1b\xc4\x06\x84\x8d\x7b\xa4\x06\xe1\x8c\x20\x31\x05\x1f\x41\xf8\x8b\x4c\x00\x99\xeb\xd5\x70\x9f\x51\x70\x7f\x56\x78\x15\xad\x87\x80\xa3\x44\xaf\x24\xa0\xa3\x1a\xbb\x4e\x34\xb9\xcc\x29\x4c\x91\x1b\x28\x4c\x19\x57\x6c\x87\x19\xac\x6e\xde\xa6\x49\x38\x12\x29\xba\x2d\x57\x79\x5b\x58\x48\x17\xe5\x34\xec\xd6\x02\x8e\x12\x7a\xf0\xe6\x1b\x3a\x7c\x6b\x15\xc4\x19\x09\xe4\x23\x5b\x3e\xd1\x7c\xb3\x8c\x63\xfa\x06\x96\x16\x0b\x61\x63\xec\x44\x48\xcc\x65\xbf\x63\x7e\x23\xcc\xcb\xda\xc1\x90\x1f\xfe\xe9\xf2\xfc\xed\x51\xfa\xf9\xf1\xf5\xf5\xf5\x63\x2e\xfe\x78\xdf\x6e\xd8\xdd\xae\xe0\x90\x31\xff\xe3\xec\xcd\x51\x5a\xf6\x8b\x47\x33\x3a\xa8\xb7\xb1\x7a\x4b\x0d\x4e\x71\xf5\xc0\xd4\xc5\xa2\xe3\x1f\x67\x4f\xba\x62\x34\x02\x7b\x18\x99\x2c\xdc\x20\x79\xf6\xcc\xbe\x43\x27\x53\xec\x3c\xfc\xe1\xb0\x5c\xb4\x25\xcc\x23\xf0\x11\x64\x6c\xe8\x4c\x30\x15\x2a\x60\x08\x52\x51\x3b\xda\x8d\xd7\x0b\x8d\x00\x3f\x00\xb1\xdb\xc0\x13\xdc\x03\xba\x4c\x4c\x9c\xdb\x56\x38\xf6\x5d\xb7\x6e\xf6\x9b\x22\xe6\x98\x84\x33\x9d\x88\xb2\xf8\x69\x58\x18\x96\x8c\x08\xe1\xfc\x34\xfd\x13\x6b\x8a\x78\xa2\x84\xb6\x38\xcb\x68\x0b\xc0\xb3\x61\x61\x04\x23\x0c\x04\x63\x1a\x80\x04\x59\x34\xc1\xdc\xe7\x39\xe1\x7c\x54\x89\x9e\xdf\xd8\xae\xa2\x4f\xb7\xee\x3c\x07\x5a\x93\xea\xc6\x45\x62\x3d\xdd\x74\xb6\xe1\x45\xec\x19\x8f\xd4\xd2\xd1\x94\x58\x53\x78\x48\xc5\x8c\x73\x12\x45\x01\x7f\x04\x28\x73\x91\xd0\xae\xd4\xaf\x5d\x30\xa6\x54\xa3\x6f\x96\xc3\x8c\x20\xbc\x42\xd9\xc3\xb1\x7d\x6a\x2d\xca\x89\xda\xcd\x9a\x5f\x3d\xc6\xdf\x74\x87\x13\xc9\x44\x7c\x81\x22\xee\x01\xd6\x11\xcb\x5c\xd7\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\x48\x20\x10\x2b\x9e\x4c\x47\x69\x11\x66\xe0\x50\x79\xea\xd2\x62\xf1\xca\x56\x29\xf8\x6e\xbc\x44\x19\x21\xb2\x8e\x42\x8e\xca\x82\x5a\x7c\xe7\xcf\x20\xf0\x03\x66\xff\x03\xb3\xd5\x1f\x79\x41\x87\x22\xb4\xd4\x6a\x1e\x6d\xe2\x79\x37\xc8\x1c\x3e\x79\x31\x5c\xd9\x24\xab\xc9\xa3\x49\x27\xf2\x15\x62\x6b\xb7\x69\x6e\xcc\x51\xfc\x14\xbf\x34\x92\x4c\x38\x32\x0f\xa6\x83\xf2\x90\x81\xf2\xa5\xc9\xe2\xea\x7e\x0d\x22\xa7\xaa\x88\x5b\xf3\x79\x17\x45\x09\x26\x3c\xc6\x44\x0a\xef\x89\xee\x4d\xf8\x1a\x3b\xa8\xa1\x57\xf4\xa9\x6b\xe1\x80\x57\x74\x5c\x34\xf4\x8c\x0e\x8a\x7e\x81\x67\x74\x8c\xa4\xb1\xdf\xb3\x1f\xea\x17\xb8\x3e\x4f\x0d\x7a\x2c\xd7\x4e\x21\x7e\xa2\xc0\x94\x74\x5b\x84\x63\xfb\x02\x17\xe8\xc1\xc9\xf6\x4b\x04\xdc\xa9\x9e\x78\x94\x04\xc8\xbd\x4b\xe3\x5b\x54\xcb\xe5\x6c\xde\x36\xd7\x1d\xfb\x19\xe3\xfd\x08\xe6\xb2\xfc\x3b\xbd\xc4\x6f\x01\xe1\xab\x7e\x10\x85\x7c\x48\xa2\x5a\x14\x3d\xd5\x9b\x3d\x49\xc4\x3d\xeb\x30\x6a\xfd\x29\xe5\xc8\x9d\xeb\x5b\x3a\x89\x1d\x5b\xce\x4c\x8a\xd0\x46\x77\x9d\xf1\x17\x3c\xa4\xa1\x7d\x66\x65\x29\x0a\x5d\x72\x8a\x82\xf1\xa7\x21\xdc\x76\x25\x18\xb3\xc9\xad\xb4\x88\xaf\x5e\x73\x04\xc2\x32\x38\x02\x23\x62\xa8\x20\x9f\x7a\x90\xd0\x13\x92\x20\x0c\x97\x1e\x42\x11\x84\x45\xff\xfc\xf5\x5b\xf9\x09\x0b\x75\x8d\x4c\x04\x13\x75\xbe\x1c\x4f\xcc\xee\x7d\x36\x65\xff\x6e\x79\xe2\xab\x20\x6a\x0e\x7b\xf0\x0d\xbf\x1c\x44\xd1\xe6\x4b\x5c\x03\xf1\x5f\x97\x4a\x32\xb0\x2f\x76\xd1\x96\x8f\x87\xc5\x08\x39\x82\xea\x4b\x7c\xb8\x74\xbd\xc6\xe1\x3f\x2e\x2d\x87\x89\xc6\xd3\x60\xe4\x1e\x23\x66\x0b\x40\x74\x77\xbf\x4b\xbb\x8a\x75\xa7\x4a\xa0\x83\x06\x41\x1d\x3e\xa4\x30\x68\x07\x4f\xa0\x19\x04\xed\xd0\xce\xd9\x99\x36\xeb\x5a\xfc\x2d\x2d\x0f\xc7\x56\x8b\x8e\x16\x95\xf1\x71\x85\x4d\x1b\xec\x3d\x31\x28\x1f\xbb\xff\x22\x74\xf0\x60\x51\x80\xc3\x3f\xb0\x3a\xa8\x5b\xcf\x86\x13\xe1\xd4\x99\x8a\xb3\x14\xbf\x1d\x94\x49\x86\x4c\x2e\xd9\xb6\x08\x84\x43\x21\xa0\x70\x5b\x39\xcb\xdb\x8f\xfc\x96\x02\x0c\xc8\xac\x82\xeb\x56\x23\x5a\xf1\xdf\x70\xc6\xf4\x25\x8f\x0b\xf9\x1a\x35\x18\x1b\x7d\xa3\x34\xf4\x01\xc6\x4c\x5d\x01\x96\x66\x45\x24\x7b\x23\x5f\xf2\x4c\xdd\x90\x32\xc6\x6e\xff\x94\xf7\x78\x38\x6f\x01\xbc\x43\xf4\x5f\xcb\xff\xf8\x5f\xff\x97\xd5\xa5\x0d\xed\x96\x88\xd1\xa1\x61\x2e\xfd\xbc\x9b\xc3\x9c\x7f\x7b\xe6\x31\x78\x74\xd0\x11\x41\x7f\xaa\x61\x2f\xe8\x6b\x44\xa3\xfc\x1c\x83\xd1\x37\x9b\xd1\x0d\x88\x1c\x87\x44\x4f\xe6\xb8\x7a\x1c\xd6\x61\x44\x95\xe9\x1e\xe1\xc2\xec\xd9\xe4\x62\xd2\xd0\xf3\x5e\x89\x6e\x7a\x4b\x49\xde\x37\xed\xea\x83\x0f\xc6\xea\x26\x22\x0a\xc4\x8a\x93\x21\xc3\xb8\x70\x66\x07\x00\x7d\x88\x33\x5f\xa3\xa1\xf7\x25\x13\xeb\xf8\xb1\x30\x39\x97\x4b\x34\x6c\x18\x89\x99\x0f\xf1\xcc\x3c\x9b\x24\x96\xa3\x5e\x60\x47\xaf\x38\xc2\xe1\xc8\x54\x96\x26\xdd\x15\x89\xde\xac\xb2\x7f\x0c\x7f\x70\xb8\x4d\x7e\x77\x8e\xa9\x4a\xee\xc4\x5e\x23\x81\x96\x2b\x12\x10\x4a\x16\x7e\x41\xfc\x37\x41\x00\x3f\xd5\xab\x71\xaa\x7e\x69\xfa\x20\x48\x60\xf4\xd6\x42\xe0\x89\x85\xe0\xa1\xd1\x03\x0a\x5c\x39\xb0\x32\x71\xa9\x3e\x0a\x29\x0b\x14\x22\xf5\x36\xe8\xc8\xdf\xf7\xc1\x06\x17\x29\x1a\x91\x0a\xea\x69\x36\xd6\xaa\x45\xe4\x03\x25\x20\xa0\x69\x1d\x59\x8f\x76\x33\xdf\x4c\xb0\x12\xd6\x72\xe3\xee\x8b\xe1\x19\xa3\x39\xad\x89\x9f\x04\x3e\x72\x78\xd4\xc3\x5a\x2e\x0e\xf6\x92\x9c\x6e\x48\xee\xdf\x44\xa7\x37\x54\xc4\x12\xda\x4f\x07\x9c\x5d\xc7\xc1\x7f\xbf\xde\xdd\x75\x5c\xc7\xed\x0e\xaf\x7f\xf4\xb2\x77\x3a\xb0\x5f\xa8\xa2\x1a\x44\xf8\x73\x59\x53\xa1\xfe\xfe\xc8\xd5\x6b\x0c\x1a\x08\x3e\x11\x0a\x5c\x4d\x5f\xaa\xe2\xd7\x1b\x5d\xa2\xd4\x7f\xec\x42\x37\x0e\x79\x3b\xec\xf5\x28\x26\x5d\xd4\xe9\xaf\x8b\x4d\x77\xf0\x66\x34\xe2\x15\xc3\x23\xdb\x28\xc0\x04\x06\x78\x6b\x91\x38\xdc\x44\xd8\x61\xa7\xa4\x0b\x6e\xda\x54\x6f\x2f\x81\x26\x44\xf3\x7c\x77\xb4\x89\x03\x57\x19\xb7\x85\x9d\x18\xf6\x92\x79\x8c\xf3\x8d\x08\x3b\x79\x6b\x89\x70\xd7\x8c\x6f\xc3\xff\x91\x50\x14\xd3\xd7\x05\x7c\xa4\xbb\x36\x4d\x16\xf6\x58\xc3\x9f\xd7\x0f\xf0\x91\xc0\xf0\x25\x67\x06\xcf\x68\x3d\xe6\xf6\x78\xef\xae\x1f\x76\x9a\xc3\xea\x08\xd7\x9e\xe9\xed\x98\x45\xa1\x1a\xa4\x7b\x96\x07\xdb\x64\xbd\xff\xf3\x40\xf2\x1b\xd2\xcb\x64\xce\xb0\x7c\xdc\x46\xec\x0a\x60\xa9\xee\xc6\xe6\x0c\x1f\x2e\x9d\xb0\xb6\x28\x11\x21\xe0\x44\xbe\x5c\x8e\x1e\x9d\x34\x6c\xb5\xef\x84\x84\x24\x86\xfb\x4e\x90\xaa\xbb\x9d\xe2\x9a\x5d\x91\x69\x52\x6e\x76\x3c\x85\x79\xea\x94\x77\xec\x89\x2e\xbb\xa0\x48\x8f\xda\x2b\x08\xbc\x3f\x0c\xeb\x92\xd7\x65\x74\xd7\x7c\xdb\x5c\x27\xb2\x65\xce\xe0\x91\x20\x21\x74\x35\x25\xee\x92\xa4\xb1\xc8\xa1\xf1\x8d\x52\x09\xe4\xa0\x11\x70\xc6\xf9\x83\xa8\x01\xd8\x31\x5c\xbc\x00\x8b\x88\xcd\xf2\xa4\xfa\xbe\xd4\x72\x63\x12\xbb\xd1\x4b\xad\x90\x47\x7d\xb3\x22\x58\x46\xed\x86\x10\x5f\xd2\x30\x1e\x13\x1e\x36\x77\x64\xea\x2a\x04\x4c\x54\x3d\x9a\x44\x86\x93\x56\xf4\x85\x58\xeb\x87\x7b\xa4\xcd\xf7\x23\x84\xf8\x92\x7e\x70\x2b\xb0\xf1\xc6\x24\xde\xd6\x1f\x3a\xeb\x69\xfc\xc7\xe8\x5e\x7e\xd8\x45\xef\x9c\x7e\x15\xec\xd3\xb0\x05\x29\x06\x72\x07\x6b\x87\xc7\x1b\xa6\xe4\xc8\x9d\xed\x84\x68\x20\x26\x3b\x93\xa1\xa1\xee\x5e\xe2\x30\xa6\xe7\x92\x0e\x34\x30\xc6\xf1\x60\x93\xbb\x8e\xf4\xcb\x8b\x72\x90\xad\xce\x54\x9e\x93\xcc\xbb\x37\x5c\x81\xb3\xa0\x48\x22\xd7\x85\x5b\x06\x04\x3b\x9b\xc9\x42\x9e\x07\x70\x6b\x9c\x59\x5d\xd0\xea\xb8\x32\xc7\xaa\x01\xe5\x58\xf4\x18\xce\x78\x67\x28\x95\x05\xba\x53\x66\xca\x47\x26\xab\x3a\x4b\x01\x40\x6d\xf3\x9b\xc8\x16\x07\xa6\xc3\xdb\xf8\x39\xdd\x5b\xd4\x2d\xe3\xae\xf8\x5d\x5b\x62\xee\x3b\x82\x39\xa8\x63\x99\x85\x4b\x7d\x4c\x20\x9e\xec\x56\x2d\xfc\x0c\x6c\xae\x99\x59\x04\xa4\x80\x0a\x7f\x70\xa3\x74\xaf\x38\x7a\x6e\x80\xcb\x60\xaa\xe8\xc1\x6d\x4c\xe1\x2b\x3a\x00\xb6\x71\x7b\x0f\xc0\x16\xc4\xbb\x8c\xba\x11\xb0\x80\xdb\x3a\xa2\xcf\x2f\x7e\x79\x47\xc0\x37\xbe\xb0\x23\x47\xd6\x0b\x8d\x57\x5d\x14\x93\xeb\xff\xb6\xfe\x0d\x8e\x39\x20\xce\x28\x20\xfa\x80\xe0\xa3\xe7\xe2\x1d\xd1\x07\x56\x69\x56\x2d\xec\x1f\xd4\x4a\x4e\xb7\x33\x5f\x55\x4d\x53\x88\x93\x69\xdd\x87\x96\x74\x71\x10\x12\x36\xe2\xea\xdb\x1b\x15\x49\x78\x70\x71\x0c\x14\x6f\x40\x23\x87\x2f\xdc\xe8\x4a\x90\xfc\xf7\x40\xfb\x87\xc4\xbd\x00\xc8\x4b\xd9\xbe\x13\x79\x1a\x54\x6e\xb5\x10\xa6\xdc\xc7\x27\x4f\x87\xf1\xca\x6f\x8d\x15\x1f\xc7\xc8\x1f\x3e\x96\xd0\x49\x48\xb1\x95\xc9\x72\xf6\xee\x62\xa2\x86\x43\xcc\x58\x6f\x08\x07\x5b\x3c\xba\xbb\xe0\xb0\xc1\x4d\x5d\x89\x89\xca\x99\x7c\xd1\xd8\x13\x8c\x29\xdb\x49\x14\x06\xbc\x99\x2f\xa1\x1c\x35\x85\x43\x39\x26\x7d\xd3\x43\xa0\xb8\xe2\xbf\x3f\xa4\xf7\x8b\xc4\x0f\x1d\x8a\x44\xd6\x27\xa9\x94\x20\xdf\x41\x7e\x10\xd8\x1c\x66\xeb\xad\x85\x6a\xf7\x35\xa0\x9b\x50\x57\xee\x83\x6e\x6b\x27\x51\xe9\xbe\x9b\x6a\x31\xe3\x4b\xd0\x54\xaf\x80\xdd\xd3\xeb\xcc\x41\xf8\x35\xb4\x82\x5f\x43\x93\x87\x5a\x8f\x82\x84\x68\x42\xc2\x8c\x9d\x8b\x2f\x1a\x25\xc7\xbb\xa2\x4f\x47\x04\x97\x38\x89\xc3\xb6\x44\x09\xf9\x62\xd4\x8a\x29\xab\xc3\x34\x33\x87\xf3\x29\x66\x18\x17\xd5\x1e\xc7\x98\x0c\xb3\xc4\x9a\x30\x4a\xd2\x67\x20\xe3\x91\x88\xfe\x34\x4c\xdb\x34\x2b\x7e\xcf\xc0\x9e\x19\x0e\x86\xa7\x82\x75\x5c\xa7\x59\x46\x47\x55\xc0\xc9\x32\x4c\xc1\x1d\x56\x9f\x77\x71\x69\xac\xcf\x30\x41\x1d\xd4\x47\x80\x74\xd0\xce\x17\x6b\x75\xd4\x99\x20\x24\x3b\x2f\x3b\x62\x92\x43\xf3\x14\xa4\x3c\xd5\x99\xda\xc3\x9c\x93\x30\xfc\x08\x3b\xde\x41\x0d\x72\xd9\xd3\x80\xdd\x5a\x10\x86\xb3\xd1\x40\x56\xec\x76\xe0\x42\x6e\xa6\xe7\x58\x8e\xdd\xad\x85\x82\x2d\x8e\xc3\x1b\x68\x98\x4f\x2d\x29\xe2\xc8\x2d\x7b\x9d\xaf\x59\x77\x4d\x35\xee\x08\x9e\x6d\xeb\xbc\x10\x91\xc3\x0d\x4a\x2f\x59\x2d\xfb\x8b\xea\x18\xf4\xd2\x43\xb8\x6a\xbe\xbe\xab\x50\xa9\x71\x7c\x18\xea\xcd\xa0\x93\x11\xcf\x33\x90\x3b\x6a\x18\x74\x71\xb2\x8a\xaf\xe8\x24\xbf\x1d\xbc\x5a\xb8\x17\x4f\x4f\x39\xbc\x73\x3b\x67\x8e\xc7\x1b\x5c\xb9\x30\x0f\xaf\x48\x2d\x37\x5d\xfc\xb6\x9e\xa1\x43\x7c\x20\x9f\xaa\xfe\x50\xdf\xda\xb2\xbb\xa9\x17\x19\x1e\xbe\xed\xd6\x7a\x29\xf9\xae\x14\xbd\xf8\x83\x19\xa5\x3d\xc9\x35\x98\x5a\x89\xeb\xbb\xee\x81\xbc\x00\xf0\x70\x41\xe9\xb0\x15\xa6\xfd\xef\x31\x78\x22\x4a\x9b\x74\x47\xb2\x5b\xff\xe8\xd6\x86\x06\x63\x09\x18\x62\x80\xdb\x16\x5d\xe1\xa7\xfa\xbf\x60\x04\xc1\x85\x78\x38\x0c\x26\x03\x5d\xfd\xe0\x15\xe1\x83\x35\x8c\xb8\x87\x6c\xdc\xc0\x01\xbb\xd9\x72\x43\x2d\xa2\x74\xb7\xb3\x87\x8d\xf5\x9a\xea\xc0\x80\xc2\x76\x6f\x99\xa1\x07\x51\x2f\xee\x1e\x63\xb8\x09\xc9\xe3\xf5\xfb\x1d\x5b\xef\xa6\xee\xd5\xfa\x5f\xf0\x3b\x64\x0a\xf2\xa6\x40\xb6\x6a\xda\x86\xa6\x47\x82\xed\xe8\x3b\x03\x2f\x2d\xad\x9b\x28\x00\x05\xf6\x4d\xb6\xd7\x00\x49\x56\xe6\x0c\xc9\x24\x5c\x70\xb4\x24\x5f\x0a\x5b\xb4\x95\x61\xb5\xe4\x42\x95\xd9\xd8\xb3\xad\xd4\xb1\x65\x04\x25\xb5\x4c\x33\x67\xb3\x7c\x75\x16\x05\xf0\xb9\xa6\x04\xb0\xb8\xd2\xe0\x08\x36\x84\xae\xfd\x2e\xe3\xa1\x22\xd4\x86\x24\xa7\x6f\x90\x9c\x5e\x71\xf2\xb8\x05\xeb\x95\x2b\x36\xe8\xd4\xa1\x72\x1c\xd5\x60\x58\xe6\x05\x07\x3f\x18\xc2\x1b\xe6\xd6\x65\xbe\x1b\xe1\xed\x15\x25\x8e\xb0\x06\xc8\x31\x02\x00\x7b\x18\x0b\x61\xa9\xaa\xc0\xa9\x2b\x2c\xf1\x9a\x92\x0e\x41\xe3\xb6\x7f\x08\x5f\xb3\xa8\x78\xa0\x84\xee\xd9\xc3\x5e\xe9\xfd\xcc\xa8\x57\xcd\xfc\x6f\xe5\xa2\xef\x0c\xfa\x5c\x7e\x06\x50\xf3\xa6\xe9\xf9\x95\xdc\x1d\x8b\x5b\xb0\xc2\x12\x34\x3d\xb7\x74\x16\xb7\x16\x1f\x47\x98\x12\xe8\x31\xaa\x04\xfa\x30\xae\xb6\x1c\x7c\x91\xda\x6a\xf7\x8b\x7e\x4f\x0b\xd4\x35\x78\x76\xc9\x41\x1b\x2f\x5d\xc6\xa8\xc5\x51\xc9\x90\x42\x87\x85\xa7\x5a\x5e\x90\x10\x51\x4e\x36\x7d\xc2\x39\xb7\xb6\x3d\x2a\x1b\x36\x3e\x2a\x3e\xb5\x52\xf0\x6c\x0e\x2b\xd4\xe7\xfb\xc5\xc7\xb2\x67\xd7\x9e\x75\x86\xdb\xe4\xb0\xae\x0b\x03\x4b\x9f\x03\x2c\x7d\x45\x60\xe9\x15\x54\x34\x13\xb5\xd2\xa6\xb3\x2d\xfb\x1c\x56\x01\x41\x2d\x2f\x4f\x68\x06\x38\xb9\xc8\xa7\x4a\x41\x75\x93\xa9\x94\xad\xab\x90\x05\x9f\xa0\x86\x73\x68\x77\x54\xf0\x3e\x76\x20\x53\xb5\x71\x1c\x1d\xd9\xfd\x16\x37\x0b\x79\x4d\x86\x23\xeb\x50\x1f\xde\x49\x4a\x00\x8b\x93\x04\xc1\x1a\x8f\xc4\x05\x38\xa2\xc3\x13\xf8\x55\xcc\x28\x85\x83\x79\x60\x61\x5c\x04\x77\xc1\xfe\xc1\x53\x80\xbb\x5c\x16\xd3\x41\x48\x6b\xde\x00\xad\xe5\x21\x9c\x36\xda\x09\x2a\x85\xad\xc8\x31\x4e\x6c\xe4\x35\xb6\x3a\xd1\x1c\xec\x91\x60\x22\x6f\x91\xd5\x39\x4d\x61\xef\x7c\xf4\x5c\xc1\x44\x7a\x85\xcc\x2a\x29\x26\x6f\xe1\x45\x3c\xfb\xb6\xbc\x28\x38\x8c\xa4\x45\x2f\xb0\x6b\x9a\xb9\xa0\xba\x20\x57\x9a\xae\xcf\x22\xeb\x63\xbb\x30\x7a\xc7\x43\x81\x6c\x2b\xfb\x2e\x7c\x32\xfb\x6d\x68\x0f\x7f\xd5\x60\x94\xc1\xc0\x62\x1b\x21\x1b\xe6\xdd\x6e\xb0\x33\xad\x23\x0c\xa6\xa2\x23\x83\x80\x6c\x66\x32\x83\x97\x00\xd5\x5c\x46\x20\x25\x56\xa9\xdc\x73\x6d\xc2\xd2\x38\xbd\xd8\x71\x60\x50\xc3\x1b\x9c\x6c\x02\x2c\x8f\x9f\x5a\x86\x76\x99\x0f\xf6\x62\xf3\x0c\xdd\x2c\x6c\xd2\xf6\xb5\x3d\xd8\x63\x64\x70\xe8\x8d\x2c\x8b\xca\xfd\x85\xcf\x64\x79\x5c\x04\x94\x82\xab\xf9\x98\x46\xaa\x2e\x0b\x89\x62\x18\xd4\x3b\x1f\x10\x09\x83\x2b\x9d\x44\xa0\xb8\xab\x0f\x1f\xa5\x0f\x6e\x56\x8d\x70\x70\x87\xc9\x76\xd7\x99\x9a\x1e\x8e\x6a\x08\xca\x40\xa5\x27\x84\xcd\x06\x9f\xe2\x78\x1a\xd6\x23\x61\x69\x33\x9b\xb1\xbb\xea\x3a\x18\xc5\x76\x12\xef\x5e\xab\x6a\x68\x77\x6f\x98\x01\xfa\xd6\x2b\xb9\x18\xc1\xd3\x4f\x2b\xfe\x7f\x79\x5d\x32\xec\x80\x7f\x63\xf2\x40\xfb\xff\x94\x37\x26\x87\x1a\xed\x2e\xee\xca\x84\xd1\xdb\xf1\xf0\xa1\x89\x03\x16\x6f\xfc\x08\xdf\x0c\xfe\x43\x31\x8b\x8c\x2e\x0c\x23\x56\x89\x12\x21\x0b\x44\x42\x6c\x3a\x81\x24\xaf\x6e\x37\x4d\xbb\x68\xcb\xc0\xfd\x86\xed\x05\x2e\x5f\x51\x6b\x52\x62\x1c\xc1\x3e\xee\x82\xa4\x8c\x6f\xe9\x24\x5d\x15\x3d\xa9\x06\xeb\x2d\x55\x6b\x37\x83\xb6\x47\xaf\xc6\x2c\x6d\x18\x0d\x16\x4a\x3c\x65\x56\x83\x2e\x0f\xd8\x55\xd4\x6d\x29\x25\xc1\x28\xcc\x9d\x4c\x39\xa2\x66\x05\xbd\x97\x94\x30\xd4\xa2\xa4\xc8\x0b\x6e\x78\x98\x58\xbe\x34\x7d\x6c\xe8\x12\x74\x52\xab\x19\x74\x2e\xa8\x15\x50\xd3\x1c\x37\xe8\xcd\xd0\xb6\x57\x52\xe1\x57\xc5\x86\xc8\x5d\xaf\x29\x3b\x7d\xbc\x9e\x03\x28\x4a\x0a\x94\x27\x05\x2c\x04\x59\x57\x72\xfa\x36\x4c\x0f\x1e\x75\x43\xae\x7b\xce\x6d\x02\x26\x30\x43\xc9\x5b\x8e\xdf\xf8\x83\xc6\xba\x09\x1e\x77\x63\x1f\x28\x79\x2a\x66\xb7\xe1\xfe\x72\xf0\x70\x5c\x61\xb0\x16\x98\x65\x86\x1c\xef\x39\xe1\x42\x97\xd8\xcc\x4a\x8c\x4d\xe5\xfd\x11\x45\x26\xcb\x07\x1a\x61\x0a\x72\x81\x46\xc5\x7d\xce\x66\x56\x01\x48\x61\x6f\x61\xfb\x11\xe5\x7d\xdf\x56\xf3\x3d\xdf\x8b\xaa\xfd\x07\x2f\x4a\x31\x36\x71\x79\x23\xd8\x6e\x6f\x5e\x13\x97\xfa\x75\x18\x76\xf0\xa6\xfd\x00\x4e\xa2\x5c\x59\xb7\x24\xc6\x95\x55\x81\x6b\x05\x07\x20\x97\x8d\x11\xc4\x96\x77\x9c\xac\xcb\x79\x79\x12\x6f\x2d\xd2\xcb\x63\xcd\xe9\xb6\xfd\xce\x42\xbf\x5f\x9e\x5d\x5d\xdc\x42\x4b\x0c\xaa\x34\x01\xc8\x80\x30\x38\x4b\x89\x03\x59\x01\x85\xa8\xd1\x8d\xda\x8f\xeb\xb1\x1e\x66\x3b\x42\x6c\xdd\x34\xdc\x6d\xdb\xbe\x3c\xc7\xc3\x2f\xab\xf3\x23\x00\x6c\xee\x2d\x65\x66\xe9\xd9\x7e\xd3\x57\x6c\x05\x66\xad\xa9\x25\x12\x3f\x3c\x5f\xee\xf2\xd6\xc2\x89\x22\xb2\x4e\xfa\xe0\xe8\xc1\x2c\x5a\x7d\x59\x2f\x2f\xf8\xc9\x63\x8a\x57\x6f\x2e\xe9\x73\xd1\xde\xc8\x45\xa8\x8e\xf4\x63\xb5\x63\x30\x7d\x83\x99\x07\x4c\x29\x80\xfd\x0b\x52\x6c\xa9\xf0\x8d\x59\xd9\x7e\xaa\x16\x8e\x60\x2e\x8e\xcf\xa0\x77\xa0\xa4\x70\xf1\x69\xd3\x88\x05\x64\x92\x9f\xef\x04\x4d\x47\x13\x49\x7e\xc6\x40\xf8\xf1\x61\xb6\x65\xdf\x19\x02\xc3\xa0\x25\x43\xf1\x4c\x5f\xa8\x54\x4c\x8f\x44\x95\x18\x3a\x90\x58\x3c\x6b\x1b\x4a\x94\x71\x91\xbb\x2c\xcf\x67\x11\x33\x0b\x77\xae\xc1\x53\xc5\x5f\x66\xfb\x13\x56\x16\x48\x19\xb7\x0d\x7a\x32\x7e\x42\x5c\x22\x82\xcc\x84\xbf\xda\x6b\x2e\x71\xd5\xfe\xf5\x9e\x51\x89\xe8\x5d\x97\x11\x5e\x27\x6c\x6a\x6e\xb1\xa3\x09\x6a\x1f\xec\xf7\x71\xc5\x77\x6d\xfb\xa2\x8b\x33\x1d\x98\xbb\x87\x52\x1d\x58\x7c\x1d\xa5\xb0\xf9\x6e\xe7\xb6\x8d\xe0\xc1\x1e\x90\x6d\x00\xf2\x49\x18\x4e\x00\x41\x8b\xa0\x1b\xd4\x23\x2e\x61\x21\x10\x7b\x86\x29\xc0\x70\xeb\xd1\xe4\x66\xb9\xe4\xa8\x57\x1c\x9e\x51\x43\x96\x20\x08\xd6\x19\xdb\x58\x5b\x49\x71\x74\xcc\x58\x29\x07\x25\x17\x8f\xc9\xde\x7a\x7d\x87\x44\x3e\x55\x18\x78\xbb\x77\x8f\x64\xbf\xdb\xd7\x72\x5e\x0a\xb2\xb4\x21\xce\x0a\x1b\x81\xf4\xd2\x36\x4d\x6f\x0f\x32\x04\xa2\xcb\x3b\x4a\xa6\x3d\xad\x5f\x3b\x04\xf3\x4d\xd7\x22\x93\x78\xef\x41\x19\xdc\xb3\x2d\x60\x29\x3f\x2e\x44\xfd\x1e\x97\xa0\x7e\x1f\x00\x17\xc3\x0c\xdb\xf8\x2f\xf1\x4b\x98\xb4\xeb\x31\x9b\x79\x2a\x35\xda\x80\x25\x6d\x48\x37\x21\x0e\x8a\xb9\x27\x8c\x53\xbb\x9b\x9b\x24\x0d\x82\x0c\xa5\x17\x9f\x1a\xca\x0b\x3e\x35\x94\x7d\x7c\xaa\x76\x6c\xd0\x83\xae\xdb\xd8\x44\x5c\x5e\xbe\x89\x67\xdb\xe7\x06\xef\xec\xb0\xbd\xd8\x3d\x8e\xd3\xca\xb1\xe4\xee\xa5\xec\xff\xf7\x28\x28\xa1\xd8\x0c\xf1\xa7\xa9\xc3\x3a\xba\xdf\x37\x55\x5f\x7e\x7f\x0f\x57\xe7\xf7\xfa\xaa\x98\xdf\x7b\x14\xae\x9b\x0a\xe6\xfe\xc1\xc2\xa9\x16\x07\xd0\xe3\x0e\xef\xd1\x53\xa0\xa9\xf8\x4e\x57\x6d\x69\xfb\xfb\x49\xf0\x3a\xe7\x88\xa4\xfd\x36\xe0\x08\x3a\xdc\x02\xac\x63\xec\x3b\xd2\x06\x19\x19\xc9\x0b\xbd\x3c\x5e\xc8\x06\x9a\xef\xac\x9a\xe7\x48\xf6\x3d\x94\x18\xb3\x16\x73\x56\x4d\xf5\xad\x7f\x08\x19\xfb\xba\x86\x77\x87\x15\xb1\x07\x96\xa1\x67\x1b\xbd\xc5\x0c\x05\x9b\x3e\xc5\xac\x05\x30\x76\xa7\xbe\x38\xe3\x01\x87\x1a\x8b\xe1\x80\xe1\xd6\x54\xfd\xbd\x94\x18\x82\xc1\xb0\xcf\xe8\x30\xbc\xdd\x6f\xf1\x10\xe3\x25\x87\x3c\xc3\x53\x9a\xa3\x6e\xed\x48\xd2\xcf\xc3\x1e\x21\xc1\x31\x21\xf1\x58\x64\x77\x8d\x6c\xa3\x37\x5c\xe2\xd5\x08\xa7\x8d\xf4\x0d\xae\xb4\x1c\x76\x68\x13\xf2\x62\x69\x54\xe8\x1d\xe7\x39\x31\x76\xa2\xb0\x39\x3b\x3b\x52\x31\x67\xc2\x49\x52\xf9\x7d\x5f\xee\xa9\xf2\xb2\x5e\x81\x4c\xff\xcc\x3f\x49\xdc\xe1\x9f\x0e\x41\xe2\x25\x08\x85\x17\xfb\x26\x3c\x35\xbf\x41\xe8\xbd\x28\xc5\xd1\xc2\x9d\x72\x49\x30\x33\xe1\x2e\x70\x86\xdf\xd3\x1d\x54\xd8\xf1\xd1\x24\xce\xb7\x59\xa4\x35\xd5\x04\x73\xf7\xea\xe7\x37\xe7\x03\xc8\x09\x66\xa0\x39\x13\xcc\x43\x73\x26\x58\x85\xdc\xd6\xba\x21\xe0\x86\x76\x7a\x04\x02\x79\x70\x00\x42\xd0\xde\x32\x03\x94\x3c\x59\x91\x92\x7e\x41\x94\x25\xfe\x39\x42\xf4\xf2\x3b\x06\x0a\x5e\x7d\x12\x28\x7b\xf4\x69\xd4\x6a\x1d\xb6\x59\xcb\x4d\xa3\xe7\x3a\x62\x22\x14\x70\x1d\x31\xb1\x9f\xec\x9e\x41\xef\xda\xe6\x53\x55\xe8\x23\x59\x02\x7f\xa1\x49\x06\x6a\x20\xbe\x66\x83\xd0\xaa\x5d\x37\x89\x70\x2b\x27\xbd\x9e\xe0\x57\x34\x75\xba\xfc\x78\xbd\x08\xac\x5f\x81\xfc\x96\xb4\x94\x30\xe0\xd5\xc2\x21\xc6\x74\xc6\x2f\x4f\xfc\x7b\x58\x50\x2f\x0f\x06\xb3\xa9\x96\xa5\x53\x46\xeb\x68\xde\x50\x5a\x04\xbc\xee\xfb\x5d\x67\x9e\xdf\x78\xbd\x29\x3d\xa7\x1f\x83\x41\x84\x55\xe9\x48\x46\x35\xed\x2a\x5c\x10\x04\x78\x91\x84\x69\x8c\x1b\xb4\xee\x0e\x01\xb8\x6e\x0f\x43\x1e\xb7\x6a\x1d\xe3\xb4\x15\xe2\x9f\xa1\xf7\xb2\x80\x6b\x9d\x65\x80\xc9\x96\x19\x4a\x77\x49\x86\xc1\x2e\x69\xd6\x42\xb3\x45\x2b\x51\xe8\xf8\xcf\x15\x9b\x6a\xb8\x9c\x70\xed\x59\x5a\x47\xb4\x57\xec\xc5\x77\x4e\x3f\x3d\xbc\x8f\xc0\x2f\x68\xb2\x8c\x89\xa8\xfd\x31\x40\xf9\xb9\x5c\xec\x83\x9b\xc3\x9f\xe5\xb7\xaa\xea\x7d\x35\x8d\x19\x07\xef\x6b\xbc\xd8\x70\x21\x29\x01\xcc\x54\x28\x4a\xeb\x3a\x4c\x9c\xcd\xd4\xf9\x60\xfb\xae\x79\x1c\x66\x19\xca\x2c\xae\xcc\x90\x49\x7e\x66\x1b\x71\xa5\x1a\x18\x61\x19\x6c\x28\xf1\x84\x69\x08\x67\x15\x18\xbc\x59\xde\x44\xc7\x2d\xab\xd9\x31\xcb\xda\xcd\x02\x58\x1c\x1f\x82\xe7\x63\xa5\x0f\x92\x7f\x97\x89\x65\xf2\x5e\xcc\x96\x3e\x0c\x1e\xad\x33\xed\x7e\x60\x46\x17\xb9\xf3\xdd\xef\xd4\x91\xaf\x0e\x22\xd8\xc9\xaf\x62\xf4\xe8\x93\x85\x5b\xfe\xd6\x87\x5b\x8e\x9e\xae\x1e\xbe\x06\xe1\xa2\xf3\xa3\x56\xb6\x4b\x94\x97\x3f\x82\x1e\x3c\xe9\xda\xc5\x93\xfb\x61\xe0\x7d\xd6\x97\xc6\x31\xad\xa3\x2a\x65\x74\xf6\x82\xc1\x6f\xfa\x6a\x80\xfc\x0e\xeb\x15\xa5\x9e\x54\xcd\x21\xb0\x5d\x58\x7f\xad\x61\x18\x81\xdb\x10\x15\x45\xae\x0d\x2b\xd4\xc0\xda\xe3\xfa\x06\x8f\x2a\x04\x0f\x47\x34\xf5\xd7\x74\x6c\x32\x84\xef\x6f\x1a\xcf\xf9\xab\xbb\xe5\x42\x6c\x29\xf6\xed\xf7\x80\x16\x64\x46\xa7\xa7\xd3\x93\x07\x62\x46\xc8\x7b\x5b\x36\x8b\xf4\xe3\xf6\x69\x8c\x29\x63\x38\x8d\x1a\xcc\xfd\xbb\x20\xf2\x36\xfc\x88\x25\xa3\xea\x34\x6a\xaa\xc4\x3b\xff\xce\xbd\x57\x95\xbc\xe7\x00\xc8\x1f\x92\x7c\xc5\x63\xa2\xff\x13\x3c\x60\x27\x3e\x0a\xa0\x51\xfa\x4c\xe4\x27\x7f\x7d\xcb\x15\x7f\x9b\x76\x25\x31\x4d\x84\xee\xfd\x76\x8b\x84\x2d\x1d\xad\x89\x15\x71\xc2\x1a\x09\xfc\x0e\x23\x7e\x16\xf8\x59\xe4\x37\xf8\x75\x8d\x5f\xd7\x65\xf9\x51\x0a\x83\xab\x52\x71\x3a\x9c\xaf\x91\x72\x83\xdf\x37\x1c\xe2\xf6\x3e\xfb\x67\x71\x3b\xfa\x44\x81\xfd\x40\xc0\x60\x6e\x4e\xd3\xed\x07\xa5\xcb\x8b\xfd\x4f\xfd\xe3\xfd\xf7\xf9\xda\xff\x46\x93\xf0\x45\x29\xdc\xbc\x26\xc9\xe7\x7d\xb0\xc6\x7e\x6d\x15\xca\x37\xa5\x72\x3f\x34\x51\x3e\x29\xad\xcd\xaf\x33\xdf\x2f\xfd\x42\xaa\xef\x95\x7e\x11\x7a\x8b\xb6\xd9\x71\xf0\xd0\x0f\xee\x71\x4b\xff\xdc\xd7\x29\xe5\x69\x80\x24\x44\x8c\x64\x27\x64\x7e\xa7\x4f\xde\xf6\x65\x17\xdd\x59\x62\x41\x7d\xab\x7a\xb7\x77\xe7\x53\x1f\x51\x5a\xc0\x7c\x94\x25\x31\x54\xe7\x37\x7c\xe4\x81\x33\x9a\xdd\x6c\x5e\xe9\xbb\x6e\x65\xca\x87\x81\x87\xff\xf6\x6f\x00\xa7\xcf\x7f\xff\xf7\xf4\xec\xf9\xa3\xb4\xfc\xcc\x31\xe3\xba\x74\x9b\x7f\xc6\xa9\x40\xa1\xe8\xe7\x8b\x08\x90\x1d\x73\x61\x72\xac\xd7\x50\xfa\xbc\x37\xee\x9e\xfe\x5f\x00\x00\x00\xff\xff\x1e\x79\x55\x67\x89\xae\x00\x00") +var _confLocaleLocale_enUsIni = []byte("\x1f\x8b\x08\x00\x00\x09\x6e\x88\x00\xff\xbc\x7d\xeb\x72\xdc\x48\xae\xe6\x7f\x3e\x05\xdb\x27\x1c\xb6\x23\xe4\x72\x74\xf7\xde\xa2\xa3\xed\x5e\x59\x6a\x5f\xe6\x58\x96\xc6\x52\xcf\x6c\xaf\xc3\xc1\x66\x15\x59\x55\x1c\x57\x91\xd5\x24\xcb\xb2\xe6\xc4\x89\xd8\x07\xd8\x07\xd8\x7d\xbd\xf3\x24\x0b\x7c\x00\xf2\x42\xb2\x24\xbb\x67\x62\xfd\xc3\x62\x65\x22\x6f\x48\x24\x12\x89\x04\x90\xf9\x6e\x97\x15\x65\xb7\x48\x9f\xa6\xc7\xe9\x2e\xaf\xea\x4d\xd9\x75\x69\x57\x6e\x96\x8f\xd7\x4d\xd7\x97\x45\xfa\xb2\xea\xe9\x77\xfb\xa9\x5a\x94\x49\xb2\x6e\xb6\x25\x81\xbe\xa2\x3f\x49\x91\x77\xeb\x79\x93\xb7\x05\x25\x9c\xda\x77\x52\x7e\xde\x6d\x9a\x96\x81\x7e\x96\xaf\x64\x5d\x6e\x76\x5c\x86\xfe\x24\x5d\xb5\xaa\xb3\xaa\xa6\x9f\x97\xf4\x95\xbe\xae\x25\xa5\xd9\xf7\x96\x74\xbe\xef\x25\x6d\xbf\xb3\xa4\x5f\x76\x49\x5b\xae\x2a\xea\x4d\x4b\x49\xef\xf4\x33\xb9\x2e\xe7\x5d\xd5\x73\x4b\x7f\x95\xaf\xe4\x53\xd9\x76\x55\xc3\xb5\xff\x45\xbe\x92\x5d\xbe\x62\x80\x0b\xfa\x93\xf4\xe5\x76\xb7\xc9\x51\xe0\x4a\x3f\x93\x4d\x5e\xaf\xf6\x02\xf3\x46\x3f\x93\x45\x5b\x52\x56\x56\x97\xd7\x94\x7a\x82\x1f\xb3\xd9\x2c\xd9\x13\x12\xb2\x5d\xdb\x2c\xab\x4d\x99\xe5\x75\x91\x6d\x65\x98\xbf\x50\x7a\xaa\xe9\x29\xa5\xa7\x9c\x8e\x21\x94\x05\x0d\x35\xcb\x3b\x1d\x07\xe1\x92\x46\x9e\x77\x09\xaa\xaa\xf3\xad\x95\xe6\xcf\xa4\xdc\xe6\xd5\x86\xb1\xf6\x98\x3f\xa8\xe3\x5d\x77\xdd\x00\xb7\x17\xfa\x49\x48\xc8\xfa\x9b\x5d\x09\x1c\x3c\xbe\xa2\xaf\x64\x91\xef\xfa\xc5\x3a\xe7\x7e\xca\x57\x42\x40\xbb\x86\x90\xd1\xb4\x37\x80\xb3\x1f\x49\xd3\xae\xf2\xba\xfa\x7b\xde\x0b\x82\xce\x83\x9f\xc9\xb6\x6a\xdb\x86\x71\x7b\x86\x8f\x84\x86\x9e\x71\x3d\x94\xf2\x96\xb0\x10\xd4\xc2\x39\xdb\x6a\xd5\x0a\x1a\x39\xf3\x0c\xbf\xb8\x16\xce\x5b\x36\xed\x47\xcd\x78\xc1\x9f\x83\xa2\xd4\x09\xcd\x8d\xdb\xcf\x6b\x42\xbc\xe6\x9e\xe1\x47\x04\xd0\x25\x79\xb1\x25\x54\xee\xf2\xba\x64\x1c\x1d\xf3\x2f\xc2\x0b\xfd\x4a\xf2\xc5\xa2\xd9\xd7\x7d\xd6\x95\x7d\x5f\xd5\x2b\x46\xf6\xb1\x24\xa5\x97\x9a\x94\x04\x79\x2e\xed\xa6\xd9\xbb\xe9\xa4\xf4\x5f\xe9\x67\x7a\x21\x3f\x25\x2f\x28\x84\x4c\x57\x92\x47\xd2\x65\xcb\xb2\x2c\x64\x2c\x5d\xfa\x82\xbe\x93\xdd\x7e\xb3\x21\xac\xfd\xbe\x2f\xbb\x9e\x0b\x5d\xd0\x6f\x1a\xbf\xfc\x4e\xaa\xae\xa3\x0f\x4a\x7e\x8d\x8f\x84\xa6\xae\x5e\x60\x30\x27\xf8\x48\x92\xf7\x5d\x99\xb7\x8b\xf5\x87\x44\xfe\xa2\xaf\xfc\xc1\xb4\x77\x68\x52\x99\x90\x94\x88\xa4\x05\x6b\x20\x59\x34\x05\xff\x38\xa1\x3f\x54\x75\x55\x77\x7d\xbe\xd9\x7c\x48\xf4\x83\xc1\xe4\x4b\x26\xa0\xaf\x7a\x60\x41\x13\xd3\xcb\xbe\xdc\x75\x3c\x83\xe9\x8b\xaa\xed\xfa\xc7\x7d\x45\xc4\xfa\x6e\x5f\x27\x45\xb3\xf8\x48\xcb\x80\x97\x34\x5a\x7e\xbd\x4c\x09\x59\x0f\x68\x21\xb4\xfb\xba\x26\xf4\xa4\x2f\x1b\x42\x19\x35\x53\x51\xfb\xa7\x80\x3e\x4a\x77\x9b\x32\xef\x08\xa4\xcc\x8b\xf4\xc7\x3c\xed\xf3\x76\x55\xf6\x4f\xef\x65\x73\x5a\x7e\x1f\xef\xa5\xeb\xb6\x5c\x3e\xbd\x77\xbf\xbb\xf7\xec\xe5\x9e\x8a\x6d\xaa\xba\xec\x7e\x7c\x92\x3f\x4b\x17\x39\xe5\x10\x1a\x6f\xd2\x79\xb9\xe4\xd5\x46\x6d\xa5\x44\xe5\xf5\x8a\x57\xda\x4d\xbf\xe6\x06\x89\x12\xe8\xa3\x4b\x79\xa9\x7f\x93\xf0\x04\x10\x2b\xc8\x8a\xb9\xb1\x35\x74\x08\xc9\x2d\x4d\xc0\xd9\xcd\xe5\x9f\xdf\x1c\xa5\x17\xc4\xdb\x56\x6d\x89\x6f\xfa\x8f\x4a\x7c\x9f\xd2\x68\xaf\xaa\xd3\xe7\xb3\x84\xca\x1a\x42\x4e\xf3\x3e\x9f\x73\xdf\xdd\xec\x73\xa6\x2c\x42\x97\x87\xa5\xc8\xdc\x12\x9c\xb1\xeb\xa3\x69\x99\x5a\xc8\x54\x87\x2e\x7f\x57\xc7\x5b\xe6\x01\x94\xee\x30\x7b\x21\x38\xa3\xaa\xd2\xd7\x6f\xdf\x9e\x9f\x3e\x4f\xcb\x7a\x45\x98\x49\xaf\xab\x7e\x9d\xee\xfb\xe5\x7f\xcb\x56\x65\x5d\xb6\xf9\x26\x5b\x54\x8c\x94\x96\x08\x36\x25\x2c\xc9\x10\x67\x49\xd7\x6d\x88\x45\x81\x0a\x2e\x2f\xdf\xa4\x67\x4c\x09\xbb\xbc\x5f\xa3\x23\xfd\x3a\xe9\x7e\xdf\x30\xa2\x5c\x83\x57\xeb\x32\xc5\x62\x00\x50\xb3\x1c\xe2\x25\x2d\xb4\xaf\xb3\xa4\x6c\xdb\x8c\x38\x68\x7f\xc3\x68\xd6\x3a\x0f\x41\x4b\x75\x44\xed\x75\xd3\xd3\x34\xa6\x28\x27\x55\x54\xf5\xa7\x7c\x53\x15\x84\x6c\x8f\x90\xb8\x2c\x12\x8b\x86\xe6\x8d\x4b\x13\x65\x36\xd7\x18\x6a\xbe\xa0\x0d\xa0\x4b\xef\xcd\xee\x81\xe3\xde\x7b\x7c\x6f\x96\xd4\x4d\x26\x5c\x82\x79\x73\x51\x75\xf9\x9c\xf8\xb4\xec\x1b\xad\x71\xbd\x5f\x99\x7e\xa4\x2b\x0a\x91\x46\x10\x8c\x5b\xde\x8b\xb0\x05\x30\x71\xe5\xc4\xb0\xc1\x6c\x94\xcd\x84\x63\x37\x9e\xe4\xe6\x57\xd8\x92\x4b\x18\x8d\x39\xb1\x09\x33\xea\x3a\xde\xed\x36\xd5\x42\x9a\x7e\x29\x79\x9e\xd0\x78\x67\x56\xa4\x84\x70\x20\x14\xcb\x0b\xc8\x85\x7a\xcd\x6c\x2b\x8d\xf8\x3c\xca\xaf\x4b\x5a\x39\xeb\xfd\x4a\x76\xa7\x4d\xb3\x2f\xbe\x01\x43\xb1\x99\xf3\xfc\x24\x7d\xd7\x50\x87\x41\x1d\x0e\xc0\x37\x71\x4c\x8c\x81\x85\x81\xb6\xdc\x36\x3d\x23\x4e\x8b\x55\x34\x3d\xd7\x15\x65\xd2\x48\xbb\xfc\x13\xb1\xc5\xbe\x91\x25\x59\xd0\x92\x5b\x70\xc5\xc4\xc1\xf6\xb4\xa3\xcb\xb2\x20\x3e\x22\x4b\xc3\xd2\x62\x1a\x04\xd4\x76\x4f\xab\x69\x4d\x95\x31\xe2\x59\x22\xa1\x2a\xa7\xfa\x89\x21\x51\x3d\x58\xe5\xb4\x72\x1b\xda\x3c\x79\xa2\x4f\xf1\xa1\xbf\xc3\xfa\xa9\x57\xf9\x72\x49\xbd\xea\x68\x55\xbc\x4a\x17\x9b\x86\x96\xd4\x2f\xef\xde\x74\xbc\x60\xd6\xd9\xae\x69\x21\x89\x50\xd6\x05\x7d\xba\xb4\x00\xd1\x0c\x51\xef\xb7\x73\xfa\x75\xbd\xae\x88\x51\x03\xed\x5c\x82\xa5\x24\x4a\xa5\x26\xf6\x1d\x4d\xe1\x51\x4a\x4b\x98\x46\x40\x28\x03\x01\xf0\x18\x8c\xea\x18\x7c\x49\x34\xb6\x6f\x69\x39\xad\xfb\x7e\x67\x2d\xbf\xba\xba\xba\x90\xa6\x5d\xea\x6d\x6d\xe7\x01\x65\x60\x0e\x36\x2c\x1b\xd5\x69\x53\xcf\x40\x24\xfb\x76\x33\xa0\x1f\x1a\xab\xe5\x1c\xc0\x0b\x77\xe1\x09\xff\x77\xe9\xd1\x03\x3c\x77\x24\xf5\x5d\x83\x9a\x08\xc7\x25\xe4\x14\x22\xea\x66\xc7\xf5\x06\x54\x7d\xae\x09\x9e\x94\x21\xdb\xb8\x7c\x91\x70\x28\x17\x32\x65\xb0\x4b\x6f\x69\xc0\xca\x46\x2f\xcf\x08\x0d\xe0\xa5\x48\x5d\xb6\xcd\x96\x52\x5f\xd0\x1f\x9f\xe0\xbb\x7f\xc6\xf5\x01\x26\x2f\x0a\xe2\xf2\xdd\x51\xfa\xee\xc5\x49\xfa\x9f\xbf\xff\xee\xbb\x59\xfa\xba\xe7\x95\xc8\xc4\xf9\x37\x26\x2a\xfa\x14\x51\xcb\x81\x12\xc7\xea\x89\xee\xee\xf1\xca\xba\x97\xfe\x88\xdc\xff\x5e\x7e\xce\x49\x44\x2c\x67\x8b\x66\xfb\x8c\xb9\xea\x36\xa7\xb5\xcf\x39\x44\xae\x4a\xc7\x97\x65\x5d\xd0\x87\x0a\x6c\x9a\x17\xb0\x03\xcd\x0f\xc4\x37\x11\x5c\xb3\x45\x53\x2f\xab\x96\x07\xf4\x73\x0d\x6a\x30\x91\x96\xb6\x6b\xe4\x98\x54\x44\x48\x23\x0e\x52\x2d\x6f\x3c\x28\x86\xfa\x96\x13\x75\x42\x13\xa1\xba\x4c\x45\x74\x87\xe5\x4b\x21\x46\x9e\xb7\x73\x1a\x5e\x6b\xf8\xee\x3c\xc2\x9b\xe5\x92\xf7\x5a\xdb\x25\xb4\x85\x73\x49\x95\x0d\x23\x04\x21\x62\xdc\x41\x28\x3f\x55\x22\x3e\x39\x7d\x9b\x96\x9f\x88\xda\x98\xeb\xb5\x4d\xb1\x5f\x80\xc2\x18\xf6\x88\x99\x35\xb1\x88\x8e\xd6\xc6\x42\xf6\x95\x80\x49\x70\xd7\x98\x13\x2d\x08\x88\x78\x83\x31\x6b\x12\x24\x3f\x11\xe7\x6f\x83\x26\x5e\x5a\x92\xf6\x7e\x04\x3b\xea\x94\x2b\xc1\x23\x5f\xd0\x8c\x13\x55\x48\x2f\x3a\xe9\x94\x64\x13\xb9\x13\x1d\xef\xe9\x84\x92\x17\xd4\x97\xf9\x0d\xf8\x4e\xc7\xc4\x50\x94\xcb\x7c\xbf\xe9\x7d\xbf\x06\x9b\x88\xb5\x74\xc9\x87\xa4\x30\x6f\xb2\xc0\xa8\x83\xa0\x9e\x6e\x58\x96\xc8\xb0\x26\x39\x47\x36\x1b\xa6\x57\x39\x85\xd8\xbe\x43\xec\xa9\xc4\xf4\x64\x5e\xe4\xd7\xf9\x32\xc9\x3f\xce\x77\xcd\xbe\x13\xc9\x27\xc5\x56\xcb\x35\x5a\x05\x2c\x2a\x4c\xf7\x65\x96\xa8\xb8\x94\xe9\x71\x2d\xfb\x54\xe1\x30\xe4\xc8\x55\xaa\xd4\x23\x1c\xf3\xb5\xbf\x30\x00\x9f\xb2\xba\xc9\xb2\xae\x37\xe7\x3c\xc8\xce\x1d\x86\x04\xe7\x3c\x5c\xb4\xc0\x22\x1c\xcd\xd2\xa7\x0a\x6c\x5e\x09\x06\x78\x21\xaa\x41\xd3\xd4\x54\x57\x96\xa8\x81\xca\x3f\xa1\x3a\x51\x66\xa6\x07\x04\x95\xd9\x4d\xf4\xe3\xed\xbe\x68\x20\x3b\x60\x2f\xa1\xd2\x86\xd6\xc1\xbe\x9e\xb6\xd5\x6a\x4d\xbc\xb5\xb9\x3e\x12\xa4\x5c\xaf\x9b\x92\xd7\xcf\xeb\xd3\xa7\xdf\x4a\x3f\x56\xbc\xb3\xb8\x42\xbc\x27\xe5\x7b\x22\x2e\xc2\x98\x92\xb1\x74\xc1\xed\xed\x80\x1c\x1d\x45\x04\x68\x78\xf8\x1b\x89\x12\x8e\x69\x28\xaf\x08\xf3\x94\x49\x78\x18\x29\x6d\x07\x48\x69\x58\xb9\x92\xca\xfb\xd9\xaa\xc1\x41\xc6\xe4\x7b\xde\x2d\xe9\x3c\xdc\xf5\xd9\xaa\xea\xb3\x25\xb3\x2e\xae\xf9\x05\xd7\xc0\x9b\x37\xe5\xa4\x0f\x28\xeb\x41\x4a\xfc\x8f\x4e\x67\xc5\x0f\xe9\xfd\x4f\x2a\x31\x7e\xcf\x3c\x29\xa3\x55\x54\x6d\x30\x25\x7a\x3c\x6a\x4b\x11\x58\xed\x0c\xee\xa4\xb6\x6e\xbf\xc3\xde\xa6\x02\xa2\x3b\x0d\x14\xcd\x75\xcd\xab\x0f\xcc\x97\xf8\x4c\xb5\xa8\x68\xcf\x98\x57\x75\x4e\x1b\xbc\xd5\x02\xa6\x7e\x9f\x68\xe2\xed\xf9\x15\x00\x57\xcd\x7c\x5f\x6d\x0a\x03\x98\x25\x26\x44\x92\x08\xa9\xb3\x1f\x8a\xd5\x96\x54\x49\x5f\x16\x4d\xcb\x12\x09\x46\x63\x05\x0f\x88\x42\x2d\x8b\x18\x48\xae\xf8\x3c\x03\x58\x94\x73\x52\x0b\xa3\x81\xa6\x1f\x47\x35\x96\x69\x40\x37\x55\x57\x3f\xe8\xd1\xd3\xc5\x9e\xda\xa2\xa9\xe7\x64\x2a\xd8\xa5\x8f\x9f\xd1\xff\x09\x4b\x48\xb2\x03\xac\xc6\x88\xe7\xcc\x54\x32\xf7\xb2\x16\xa3\xae\x46\x44\xee\xa6\xda\x48\x38\x18\x6b\xd8\x5f\x23\x81\x6e\x2f\x54\xcb\xea\x92\x0d\x4d\x6b\xf9\x0d\x7d\xf0\xc9\x6d\xb5\xc1\x24\xe4\xbd\x1e\xaf\x1a\xc2\x1b\x13\xc8\x91\x2c\x9a\x25\x0d\x8d\x79\x69\x9f\x7f\x2c\x71\x22\xa3\x3d\xff\x3d\xeb\x81\x3e\x24\x7b\x91\x41\x9b\x4d\xe1\xce\x3b\xa0\xec\xa6\x1d\xaa\x31\x3c\x90\xa3\xda\x8e\x84\xed\xc5\x3a\x73\x5a\x24\x46\x4a\x5f\x7e\xc6\xee\x8f\x2c\xaf\x54\x62\x92\xe7\xac\x64\x7b\x83\xe9\xe2\x41\x9c\xdd\xf8\xd9\x22\x09\x94\x16\x0a\x1d\x66\xe7\x0d\x63\xed\x53\xe9\xa0\x4e\xc2\xd4\xb8\x00\xd5\x45\xb2\xb2\x56\x15\x6b\x1b\x28\x4b\x54\x22\x9a\x2b\x6a\x91\x2e\x01\x2b\x53\x15\x18\x38\x1e\xcd\xa7\x9e\xec\x67\x34\x31\x50\x1b\x58\xcb\xc4\x17\x6f\x64\x5d\x04\x6d\x26\xef\x55\x3d\xf6\x21\x31\xb8\x77\x71\x3e\xf1\x94\xf5\x87\x40\x05\x95\xd9\xec\x9a\x2a\x0a\xda\x13\x65\x2b\x5e\xa4\x58\x97\x3b\x96\x3e\xb6\x1d\xc8\x62\xc3\x27\xed\x1b\x95\x9f\x1d\x81\xfc\x24\x0c\x9b\x28\x86\xd8\xdc\x37\x49\xd7\xf0\x82\xcb\xbe\xb2\x8a\xe7\x15\x91\x02\xca\xc7\x9b\x9d\xe8\xc6\x48\xcc\xe5\xe9\xa3\x55\x76\x73\x14\x9f\xac\xd6\x79\x47\x4c\x9c\x64\x05\x2d\x56\xcc\xec\x84\xcb\xd3\x4e\xe7\x39\xac\x19\xe8\xf3\x40\xe5\x52\xb2\x69\x87\xbb\x30\xf7\x50\xf8\x9c\xb6\xe2\x64\x27\x48\x46\xa1\x00\x35\xd1\x26\x21\x6c\x5b\xb2\xf8\x9c\x6d\x45\x8d\x26\xbf\xd2\xb3\x32\xa1\xed\x70\x45\x0b\xda\x08\xf6\x29\x6b\x3f\x56\x38\x65\x28\xbd\x32\x40\xd9\x87\x8c\x58\x21\x2c\xe5\x27\xd3\x5b\x12\x67\xb8\x86\x6a\x88\xd6\xf6\x08\xfd\xb4\x65\x51\xf6\xcc\x18\xbb\xc8\x08\x10\xf5\x3a\xe2\x16\x1e\x89\xc7\x29\x2b\x20\x43\x28\x15\xb9\xfd\xb0\xb8\x00\x73\x8d\x1f\xe7\xcf\xee\x77\x3f\x3e\x99\x3f\x73\xbc\x75\xb1\x2e\x17\x1f\x85\xfe\xaa\x7a\xde\x7c\xc6\xc1\x16\x8a\x12\x3a\x53\xf3\x1a\xbb\x5f\xa4\x74\xd0\x6d\x71\xae\x22\x5e\x40\xc5\x08\xf1\x9c\x1b\x4d\x1a\x75\x86\x59\x06\x6d\x6d\x0b\xac\x2a\x10\xb8\x27\xc8\x63\x4e\x65\x92\xc4\x06\xe0\x69\x12\x03\xd9\x54\xdb\xaa\x1f\xd1\x04\x73\x98\x5c\x69\x4b\x75\x65\x86\x24\xd4\x85\x61\x62\x94\xc4\xa7\xa9\x1a\xda\x57\x8d\x4e\xae\x73\x3a\x48\x7d\x9f\x12\x6d\xec\x69\x7f\xe2\xce\xd2\x78\x88\x51\xe7\xbc\x31\xd3\x21\x2a\xef\xb2\x7d\xad\xf8\x2a\x0b\xa3\x92\x57\x15\xb6\x0f\x6e\xd7\x68\x39\x80\x32\x94\xea\x59\x20\x7d\xe8\x50\xf9\x68\xa6\xba\x2d\x14\x63\x9e\xce\x1d\xaa\x58\x6e\xcd\x27\x67\x85\x78\x5e\x5d\xca\xd9\x17\x18\x60\x38\x9e\x41\x3a\x40\xf9\x69\xa1\x53\xd8\x47\x4a\x01\xa6\xe7\xfb\xbe\x6f\xf8\x5c\xb2\x61\x72\x90\x32\xd6\xeb\x13\x00\xe2\xa8\xe5\xeb\xc3\x74\x86\x78\x12\x16\x5b\xda\x39\x21\x23\x3a\xe4\x35\x2d\x1a\x6e\x3e\xd1\x0d\x46\xa7\x9b\xa0\x03\x2b\x44\x97\x94\xd7\x37\x5e\xbd\x81\x5e\x70\x83\xfd\x74\x5f\x1e\xb6\xe5\x23\xdf\x1b\xb7\x18\x50\xc2\x7a\x24\xc5\x83\x85\xf2\x0e\xb9\xa2\x62\xb5\xe5\x64\x7b\x9a\x2a\x2a\x3d\x7d\xb4\x31\x7a\x91\xcf\x24\x4f\x9c\x93\xc4\xca\x02\x88\xa6\x51\xa0\xf4\x6c\xd0\x96\x3f\x12\x8e\x31\xd8\xc7\x5d\xf6\x5b\x53\xdf\x34\x59\xb7\x96\xe3\xb7\x75\x8f\x8e\xee\xf5\x2a\xd2\x5b\xe1\x5e\x04\x44\xf7\x5f\x78\x03\xe4\x81\x7e\x48\x74\x36\xca\x60\x51\x28\xb5\x5a\x8e\xcd\x9a\xac\x0d\x07\x6f\xc2\xda\x5f\xca\x96\x8f\x77\x00\x8a\x67\xeb\x10\x16\xe3\x41\x38\xa6\xe8\x77\x77\xc7\x10\x35\xe9\xc8\xf6\x7b\xee\x75\x53\xe4\xd4\xed\x1b\x68\xa2\x7f\xa5\x0d\xa7\x86\x8e\xbf\x49\x28\x43\x8e\x99\x67\xf8\x20\x50\x3e\xf3\x7e\x48\x78\x4b\x7f\x3b\x10\x56\x79\xc7\xd2\xb4\x40\x5e\x42\xd6\xcf\xd1\x25\x86\x1b\xca\xc5\x84\x60\xfb\xae\xf4\x77\x19\xf8\x72\x63\xba\xbc\x7c\x75\x65\x87\xd8\xcb\x57\xe9\xc7\x52\x2b\x7f\xd5\xf7\xbb\xee\x17\x28\x34\x44\x3b\xc1\xaa\x8c\x8b\xfc\x86\x85\x48\x49\xd6\x1f\xc8\xb8\x2a\xf3\xad\xf6\x92\x3f\xa5\x8a\x63\xda\x5d\x35\x91\x3f\x69\xd3\x0d\x14\x65\x09\xc4\xa9\x9f\xa7\xc4\x68\x77\xa8\x29\xf5\xa2\xe4\xb7\x91\x76\xef\xb7\x24\xdf\xec\xe8\xdc\xc5\xf2\x4c\x00\x06\x45\xd6\x5c\x8f\x5f\x29\x40\x40\xc1\xfb\x2d\xcd\xfc\x02\xc7\x4d\x2a\xf0\xf0\x71\xf6\x28\x50\x6c\xc6\x95\x15\xb4\xb4\xff\x50\x85\xfc\xcd\x42\x6f\x58\x6f\x57\xfd\xdd\x46\x11\x55\xc7\xe9\xc4\x29\x09\x02\x22\xa6\x87\x72\x40\xd8\xa7\x59\xdc\xec\x59\xaf\x45\x09\x24\xd2\x46\x55\x6f\xf3\xcf\x77\x15\xdc\x36\x13\xe5\x84\x81\xf9\x42\xc6\xa6\x74\x88\xf1\xb2\x20\x78\xd6\x5c\x1d\x84\xa6\xa9\x27\x90\xaa\x5e\x6c\xf6\xc5\xc1\x9e\x74\xfb\x39\xed\x71\x2c\x2b\x3f\xb8\xdf\x3d\xe0\x2a\xeb\x8f\xb4\x29\xd7\x0e\xfe\x17\xf9\x9d\xe2\xf7\x0f\x76\xcd\x46\xa7\x59\x3d\x40\xa4\xee\xc2\x8d\x64\x8b\x82\x77\x07\x1c\x04\x66\x9e\xa9\x84\x87\x03\x47\xfe\x50\x49\xe8\xe9\xcd\x2d\x6c\xd6\x43\xe0\x9c\x44\x24\x38\xf3\x77\x83\x19\x6f\xf1\x19\x0b\xdd\x75\x28\x5a\xbb\xcd\xdf\x76\x51\x40\xc8\x0d\x51\x36\x2e\x37\x58\xa0\x07\x8b\x93\x24\x33\x51\xfa\x7c\xac\x4b\x3e\x50\xbe\xa7\x25\x36\x51\x81\x5b\x79\x07\x0b\xca\xe4\xa3\x10\x8d\xbc\x18\xf1\x8e\x71\x41\x06\xa3\x63\xdf\x66\x53\xae\x58\xe9\x68\x0d\x47\xad\xe9\x44\xd3\x96\x27\x60\x21\xc1\x79\x0c\xbb\xc9\x0a\xe7\x35\x3c\xc4\xb8\x39\x8a\x8f\x8f\xac\x8b\xa1\xaa\x5a\xdc\xef\x06\x87\x48\xed\x86\xee\x00\x5b\x3e\x2f\x75\x7b\xde\x80\xf8\x6c\x25\xc2\x55\x3c\x1b\x2c\x5e\xa0\xaa\x12\x4d\x1c\xae\x9e\x68\x91\x0f\x9c\x77\xd5\x0f\xb0\xaf\xac\x3a\x54\x3a\x8c\x2b\xd6\xca\x1d\xd0\xa1\x6a\xdd\x81\xb8\xfc\x5c\x41\x81\xfb\xb2\x62\xc5\x20\x8e\xc4\x4e\x13\x80\xbc\x59\xb2\x21\xe6\xc1\x47\x2f\x19\x95\x88\xe1\xcd\x27\x5e\x8d\xdc\x1e\xe7\x4a\x39\x51\xe8\xea\xa0\x78\x9e\xf5\x70\x8d\x6b\xa0\xb2\x38\x22\x41\x86\x4b\x50\x3f\xb1\xb8\xf3\xcd\x75\x7e\xd3\x41\x53\x64\x1c\x8a\x95\xd7\x52\x9c\xd9\x0f\x89\x39\x2b\xf4\x2a\xbc\x22\xa1\x15\x67\x98\x60\x5d\x3f\x6f\x36\x4e\x18\xb9\xc6\xf1\x18\xdc\x45\x75\x4f\x9f\x82\xed\x5a\xf7\x26\x3e\xda\xf3\x41\x98\x8f\x28\x92\x1d\x54\x84\xbb\x47\xdd\x29\x26\xca\x1e\xb1\x10\x48\xcd\xb0\x48\x46\xfc\x5b\x70\x4d\x52\x2e\x61\x16\x5d\x0a\x74\x25\x7b\xaa\xff\xb1\x88\xf5\x15\xe1\x90\x8f\x89\x5e\x7d\xc0\x7b\x19\xcd\x8a\xa9\xf8\x25\x1d\x87\xff\xa4\xeb\x69\x09\x30\xa6\xed\x42\xff\xd7\x40\x1e\x49\x91\x8b\x25\x06\x34\x75\xeb\x6a\x97\x36\x50\x1b\x87\x28\xf4\x64\x1b\x08\xd2\x7c\x99\x51\xe2\xd8\xc0\xfa\xf3\x36\xaf\xbb\x65\x09\x45\xfa\x36\x5d\xf2\x9d\xf1\x4c\x9b\x66\xb9\x5c\x2e\xf6\x0f\xb4\x2c\x47\x30\x34\x1d\xee\x2e\x98\xbb\x60\xa2\xe2\xa6\xe5\x66\x05\xca\x5a\xf4\x01\x58\xf5\x35\x75\xd6\x07\x26\xb3\x11\x0a\x20\x1b\x47\xf7\x64\xd6\x9b\x4f\x65\x88\x88\xe5\x1f\x1d\x79\x80\x75\xbd\x2b\x90\x0b\x96\x78\x9a\xa4\x51\x68\x6b\x70\xcd\x3b\xbf\x89\x47\xcf\x45\x83\xbb\x73\x5a\x23\xa5\xb6\xc2\x0b\x83\xd7\xca\xa0\x42\x68\x69\xfc\x89\x28\x91\x7b\xf6\x6c\x4e\x5d\x5c\xac\xa3\xd5\x79\x85\x9c\x54\x72\x46\x0b\x34\x79\xcf\x4d\x7f\x48\xe4\xa6\x3d\x73\x4a\xf9\x13\xb9\x79\x17\x89\x56\x95\xec\x7d\x6a\x9a\x78\xbe\x2a\xb1\x22\xa2\x77\xbf\xb5\x24\x6f\xc3\xa6\x14\xfd\x5b\x43\x32\x07\x74\xeb\x7f\xa2\x2f\x96\xf1\xeb\x24\xba\x5e\x1c\xa8\x49\x20\x46\x57\x3d\xaf\xb0\x0b\x5a\x18\x24\xf6\x1c\x6b\x0a\x9d\xd2\xc1\x1d\xa0\xb9\x79\x61\xdf\x34\x1f\x39\x33\x3d\x5e\xda\xf2\xa5\x70\xa2\x46\x7b\x61\xdf\x09\x1f\xf2\xb7\x33\x6c\x0e\x2c\x7e\xe3\x9a\x22\xd8\x12\x58\x5a\xe0\x09\xb3\xbc\x59\x00\xbf\xcb\x7b\x62\x8b\xb5\x1c\xc4\x84\x43\x85\x45\x35\xdb\x55\xe1\xee\xb3\xb9\x16\xb6\xfd\x10\x54\x7c\x48\xbc\x49\x8a\x59\xa3\x4c\xa9\x85\x95\xc5\x74\x2a\x23\xff\x2b\x7d\xaa\x42\x07\xec\x0b\x1f\x7a\x20\xc7\x4d\xb2\x5d\xff\xc1\x3c\x26\xf8\x99\xa8\x0a\x2c\xd6\x7f\x29\x79\x3f\x4d\x4f\xe5\xc3\x8e\xf6\xfb\x0a\x63\xaa\x8a\x24\xd9\x01\xef\x81\x01\x8d\x4e\x84\xeb\xb4\x1a\x4a\x79\x4d\x7c\x3b\xdc\xd9\xd9\x66\x43\x0a\x31\xe1\xda\xe5\x10\xa4\x00\xbe\x9b\x08\x8e\xa5\xac\x5c\xc6\x79\xb5\x0e\x2e\xbe\xf8\x3a\x87\x4f\xd9\x04\x76\x5d\xce\x53\x56\xf7\x12\xe1\xd0\xe9\x4f\x07\xba\xcd\xe9\xe0\xf8\xa9\xca\x9d\x62\x89\x66\x8b\x4d\x74\x74\x17\x7d\xc1\xe6\x39\xb8\x4c\x1f\xdb\x91\xf1\xcd\x94\x5e\xf6\xbc\xd1\xcf\x64\xbf\xe3\xdb\x93\x60\xc0\xbf\x20\xc1\x0d\x38\xce\x0f\xce\x63\x18\xba\x15\x73\xd2\x8c\x80\x17\x76\x48\x83\x95\xcb\xcc\x96\xcf\x84\x7d\x98\x2e\xa1\x62\x08\xe2\x35\x2c\x60\x31\x6a\x1c\x03\x64\xca\x7d\x2e\x86\x4f\x3b\x63\xba\x6e\xae\xd3\x4d\x55\x7f\xec\x14\x9b\xcc\xc7\xc2\xc3\x29\x54\x52\x44\x84\x7b\xb1\x1b\x92\xcf\xb1\x99\x92\x5d\x33\x0d\x56\xb8\x5d\x46\xc9\x85\xdb\x31\x92\x27\x61\xfd\x11\xdd\x2e\xc4\x96\x25\x8b\xc9\x60\x6a\x76\x79\x47\xa3\x6c\x9a\x4e\x15\xa0\x9e\x89\x70\x1a\x94\x2a\x0a\xa5\x38\x77\x10\x3a\x25\xc7\x76\x65\x88\x35\x95\xd8\x25\x9f\x75\x00\x2b\x34\xab\xb6\x62\xf6\xf7\x8b\x5d\x01\x62\x7e\xdc\x69\x02\xd9\x30\x2a\x89\x7b\x1f\xde\x7b\xbc\x6d\xec\x82\xd1\xb8\xa1\x65\x1e\xd9\xa6\x2f\x18\xc0\x96\x1d\x75\x76\x48\x1f\x5a\x81\xa9\xf0\xef\x20\x13\x23\x82\xf0\x52\x48\x26\xde\x31\x88\x66\x13\x89\x76\x27\x7a\x19\xe1\xf2\x19\xb3\x41\xfe\x5b\x5c\xdf\x39\xa5\x02\x1f\xc8\xb3\x01\x88\x1e\xd8\x23\xc8\x49\x09\xda\xda\x3a\x28\x3d\x0f\x7a\x3f\x5a\x2b\x56\xee\x9a\xb0\x10\x0e\x5c\xa9\xbb\x98\x99\x1d\x0f\x6b\x52\xe5\x2e\x10\x06\x17\x62\x74\x52\xe3\x22\x51\xaa\x20\x54\xe1\x80\xd1\xf9\x73\xc5\xb1\x70\x1f\xbe\x00\x10\xab\x43\x07\xa0\x86\x87\xf1\x79\xb3\x34\xeb\x85\x90\x91\xed\x5a\x22\x0f\xda\x68\x07\xfa\xb5\x11\x0b\x8b\xd8\x15\xb8\x55\x83\xab\x78\xcf\xa5\xe8\xc4\xa8\x75\x31\xbf\xc7\x97\xa5\x38\x1d\x11\xd1\x31\x8b\xba\x9a\xac\xcc\xd9\xe5\x0a\x8b\x76\x9d\xa4\x1f\xc2\xb8\x74\xb8\xa7\x9a\x32\x00\xb0\xe1\x28\x83\xef\x27\xb4\x85\x18\x8d\x8a\x1d\xc6\x7f\xab\x5a\x4c\x21\xdc\xd5\x5c\xc4\x40\xd2\x53\x70\x14\x9a\x37\xd1\x4b\x1b\x3f\xf9\x69\xd8\xb8\x9f\xf0\x9f\x07\x2a\x6d\x19\x5c\x4c\xef\xdf\x24\xd4\x25\x50\xa3\xbf\xe2\x2c\x30\xcd\x03\x8d\x19\x83\x85\x20\xaa\x8e\x74\xc9\x59\xa4\x73\x87\xf6\xfc\xab\xf4\xec\xbc\x77\xff\x13\x54\xec\x51\x5b\x5e\xc5\xee\x7a\x39\x58\x0e\xdc\xbd\xc1\xce\x39\x5a\x18\x94\x01\x39\x42\x49\x3a\x90\x0e\x94\xa8\x9d\x90\xc0\xcd\xc8\xd9\x84\x31\x44\x49\x10\x25\x94\x1a\xb0\x85\xb0\xa0\x0a\x33\x22\xd8\x00\xca\x41\xa5\x1b\x29\x8d\xe3\x89\x3f\xc6\x49\x8c\xb0\x22\xb0\xb0\xd3\xa3\x8d\x59\xa4\x58\x3d\xd9\x6d\x19\x11\x72\x89\xee\x4c\xba\x46\x37\x64\x47\x7a\xfc\x59\x57\xab\x35\x8d\xab\xda\xf2\xd5\x31\xc8\xc9\xee\x27\xfd\xe9\x94\x7f\x11\x43\x69\x56\x35\xeb\xae\xb8\x05\xb1\xe1\x72\x1b\xcc\x8f\x5d\xdf\x36\xf5\xea\xd9\x69\xc3\xc7\x46\xd6\xe8\xf0\x26\xf8\xd3\x8f\x4f\x34\x9d\x98\x26\xcf\x21\x1b\xfc\xbd\xac\xfa\x57\xfb\xf9\x83\x2e\x5d\xb1\x05\x2a\x2e\x55\xf2\xc0\x2e\x55\xad\x06\xc4\xc0\xee\xba\x76\x68\x81\x95\x2a\x2d\xf4\xae\xd9\xd0\x2a\x89\x8b\x34\xdb\xad\xcc\x2f\x6d\x00\x5b\x81\x44\xff\x61\x68\x50\xd6\xc0\x5c\xd9\x2a\x7e\xa8\xc2\x99\x23\x73\x3f\x3f\x3a\x6d\x26\xee\x45\x7a\x12\x15\xb8\x18\x18\x37\xa7\x75\x1f\x6c\x1b\xac\x23\x49\x5d\x31\x08\x0a\xe3\x62\x98\x48\x56\x3b\x79\x15\x8d\x29\x59\x70\x12\x40\x1d\x56\x9e\x8a\x52\x4f\x44\x62\xe2\x34\x6b\x53\x64\x85\x92\x95\xdb\x42\x5a\x01\xfd\xf2\x5e\x61\x2a\x5c\x08\xbe\x5e\x99\xc3\x04\x3b\x58\xe5\xca\xd8\x64\xf4\xca\xd6\x6c\x04\x01\x63\x53\x9c\x78\xce\x36\x84\x99\xe2\x6d\xd6\x8b\x90\xa9\x89\x85\x92\x30\x36\x21\x49\x3a\x69\x30\xdb\xfe\x42\xa6\x36\x6a\xd7\x0f\xdc\x9a\xfb\x02\xbe\x86\x31\x1d\x03\x1d\x34\x16\xe8\x46\x74\xa6\xde\xa8\x26\x04\x19\x6c\xdd\xea\x4f\x3d\x6f\x1b\xbd\x1f\x4b\x2d\x11\x73\x42\xc7\x9c\xbe\x8c\x16\x33\x77\x02\xf6\x88\x62\x6f\x03\xe5\xca\x7f\x4d\x8b\x9c\x38\x41\xdf\x7c\x24\x62\x1a\x17\x41\xfa\xa1\x42\x8e\xc3\xd8\x59\x43\xf9\xcb\xb1\x67\x0f\xc3\xd3\x87\xde\x33\x1f\x64\x31\x01\x67\xd1\x5a\x9d\xcd\x93\x68\x86\x60\xeb\xcd\x86\x21\x85\x70\x12\x65\x04\x6a\xd8\xe3\x38\x00\x49\x58\x35\x03\x41\x7d\xcb\x1f\xfa\x3b\x9c\x96\xa8\xfe\x60\xb9\x10\x03\xdf\xd7\x01\x03\x15\x72\xc8\x04\x15\x6e\x90\x17\x74\x94\x84\x61\xe3\xb1\x54\x78\xc5\xd9\x9d\x5a\xf5\xea\x75\xbd\x15\x79\xa9\x89\x58\x03\x00\x14\x84\x77\x0e\x11\xf8\xe5\xb5\x0a\x56\x8b\x9a\x62\xa8\xc9\x22\xe6\x80\xa8\xce\x58\xe6\x5a\x4c\x33\xd2\xe3\x8b\xd7\xb4\x67\xb8\x06\xad\xd2\x9f\x73\x92\xa4\xa5\x0b\xd7\x4e\xa3\xc1\xc4\x36\xe4\xb9\x4e\xe6\x97\xe2\xa6\x40\x45\x49\x2c\x71\x37\xa8\xd1\x80\x64\x30\x71\xbe\xe0\xb8\xec\x02\x2d\x8f\xb4\x86\x9e\x0c\x77\x2b\x37\xd4\x6f\x08\xb3\x4e\xd7\xc8\x4b\x6b\x77\xc3\xfc\x3f\xb0\xc5\xca\x05\x43\xd7\xe0\xe0\x03\x23\x30\x82\x84\xa6\x23\xe5\x25\xdc\x3a\xfe\x61\x1d\x56\x0e\x12\x4e\x65\xc8\x46\x26\x27\xd3\x33\x95\xc9\x62\x53\x9c\x65\x67\xf5\xc4\x63\xbe\x8b\xcf\x30\xe1\xfb\x73\xf8\x2d\x5c\x26\x1c\x55\x40\xca\x17\x93\xcd\x3a\x8a\x96\xa6\x07\xfc\x26\x95\x8d\x50\x0c\x19\xb8\x15\x39\x5d\x28\x45\x04\x36\xc2\x54\xcb\x75\xb9\x61\xe3\x5e\x6d\xdd\x5f\x6f\xea\xd0\xa3\x1b\x7f\x05\x0a\x4e\xa2\xa5\x17\x71\x05\x15\xa1\x9a\xce\x2a\x23\x08\x5a\x6e\xb8\xe4\x97\xa3\xbc\xed\xd7\x27\xc7\x6f\xdf\x9e\x5f\xf9\x6d\x9a\xd7\x41\x5d\x90\x30\xf1\x8d\x33\x87\x1b\xf5\xcb\x8c\xe2\xdc\x04\xc6\x10\xde\x2c\x4f\x4b\x1c\x82\x0b\xd9\x94\xd5\x4e\x9f\xab\x06\xbc\xa7\xe1\xbe\x18\x2f\x8f\xfa\x5f\x1c\x9a\xbf\xe4\x3d\xcb\x37\x1f\x12\x53\x76\x9f\xf3\xdf\x24\xbc\x2f\x08\xee\x68\xb0\xf4\xfc\x55\x8e\x37\xbd\xa7\x0e\x34\xc5\xe8\xfe\x00\x4c\x7a\x9f\xe3\x68\x44\xb8\x6f\xb0\x57\x2c\x53\x5c\x66\x1f\xb1\x3a\xb4\x69\xb1\x60\x18\xb9\xfb\xba\xfa\x7d\x0f\x01\x8d\x0f\x46\xc4\x3c\xd8\xca\x72\x5e\x6d\x64\x43\xf9\x8b\xfb\x21\xe9\xfc\x35\x30\x0f\x0f\x1a\xa7\x5f\x3f\x76\x3b\x36\x52\xa5\xbd\xa1\x7b\x7a\x6f\x5f\xa5\xac\x5d\x63\x13\xad\x7b\xcf\xe8\x18\xc3\x57\xdc\x34\x7d\x04\xf1\x6c\x54\x1d\xbb\x88\x2d\x44\x15\xe7\x8c\x7d\x40\xb7\x9a\xce\xab\x85\x45\xde\x48\xff\x27\x88\xff\x03\x6d\xb2\x3f\x9a\x1f\xc7\x43\x3d\x25\x13\x8e\xb0\x76\x3f\xe5\x9b\x7d\xac\x2c\xe1\xd6\xb9\x4c\xf7\x28\x41\x51\xd5\x18\x0f\x7d\xd9\x90\x67\x46\xe9\x9c\x07\xcb\x74\xa4\x4e\xa0\x2f\xf0\x3a\xc9\x37\xbd\xe8\x8a\xd3\x00\xfd\xcc\x0b\xd0\x6a\x19\x4e\xb1\xde\xe9\x39\x96\xd3\x2d\xda\x0a\x96\xf5\x92\xce\x9e\x8b\x69\xe0\xb5\xe8\x12\x7d\xbb\x97\x44\xa8\x34\xa6\xd9\xaa\xea\xe9\x8c\xcc\xfe\x53\xb0\xc3\x4e\x68\x9d\xd3\xd6\x03\x9f\x47\xf9\xb2\x94\x51\x51\xde\xa5\x05\x16\x3a\x2e\x96\x0d\x95\x64\xf9\x43\x7f\x4f\x94\x52\x40\xf3\xb8\xe4\xeb\x8a\x26\xab\xea\x8a\x57\xea\x6b\xfa\x43\xbb\xb0\xc8\xec\x31\x5d\x89\x40\x8a\x4a\x54\x21\x23\xa7\x66\x57\x8f\xda\xc5\xe9\xac\xa8\x41\x5c\x30\x2f\x6a\xba\xad\x2a\x6f\xa0\x0d\x09\xe9\x73\x24\xa8\xa3\x23\xf5\x84\x66\xe1\x93\xc8\x2f\xe2\xfa\xf8\xda\x52\x1e\xf2\x99\xed\xd1\x01\x45\xf0\xf0\x36\xf5\xeb\xf5\xc1\xc3\x1a\x6e\x57\x0b\xb3\x41\x51\xc6\x4a\xfe\x54\xad\xc9\x22\xa3\x85\x44\x1d\x31\xcd\x1f\xcd\x79\x62\x8a\x43\x5a\x98\x7b\x78\x29\x9b\xce\x22\x8f\x57\x17\x0c\x31\xe7\xb4\x3a\xee\x3d\x13\x9c\xd9\xd2\xb2\x5a\x75\x0a\xce\xd4\x17\x34\x98\x03\x85\x98\xc1\x77\x24\xb3\x23\x2b\x5b\xe4\xf0\x71\x50\xd5\x2f\xd3\x50\x11\xf7\x55\x09\x28\x0f\xfc\x51\x9e\xbc\x7c\x7d\x05\x6f\x14\x9a\x31\x78\x0f\x98\xcb\x0d\xdb\xe9\xce\x5c\x9d\xcc\x98\xab\xae\x93\x0d\xbb\xae\x80\x78\x5e\x83\x76\xd3\x6e\xd3\x41\x5c\x45\x0e\x98\x5a\x59\xc8\x72\x7c\x6d\x76\x3d\x08\x18\x33\x14\x7e\x2d\x89\x5a\x90\x13\x71\x72\x8d\x6f\x52\xcc\x54\x29\x0f\x1d\xa1\x12\x59\xe8\xc6\x3d\x74\xd9\x2f\x1d\xff\x80\x67\x0b\x9b\xe4\xc7\x8c\x03\x8e\xb5\xc1\xbc\x85\x86\x74\xbc\xb5\x14\xbc\x37\xee\x6e\x32\xd6\xf0\x62\x3b\xdc\xdd\xf8\x84\x40\x6e\xa0\x8c\x2a\x02\x76\x36\x0f\x17\x98\xa7\xff\xf8\xdf\xff\xe7\xf1\x09\x77\xfc\xa4\x6f\x37\xf4\xa5\x62\x19\xc3\x0b\x22\xa5\x82\xf4\xfc\x5f\x49\xbc\xbe\x56\x03\x87\x5f\xe4\x2b\xb1\xdf\x7f\xc5\xaf\x3d\x1b\x1e\x8b\x35\x05\x7f\x24\xfa\x8b\x6f\x60\x12\xf5\x13\x66\xde\x99\xf0\xd9\x46\x27\x9e\xce\x35\x21\xa3\xfb\x7d\x5f\x2d\x3e\x66\x72\x24\x7f\x9a\xfe\x99\x7f\xa5\x70\x11\x4d\x84\x6c\x98\x7f\x38\x66\x00\xf2\x1a\x70\x94\xd0\x90\x16\x0c\x52\xcd\xd9\x3d\xf3\xc8\xe3\xcd\xe6\xc6\xac\xf3\x0c\x90\xbd\x5f\x92\xdd\x9e\x6d\x7a\x78\x4a\xad\xb5\x0b\x4a\x81\x2b\x11\x27\xb2\x68\x10\xd4\xe0\xae\xe7\xa2\x3a\xd0\x3c\x75\x57\x5c\xc1\x26\xf7\x54\x64\x79\x05\x13\xdb\x19\xcf\x73\x1a\xb2\xca\xb7\x49\xe2\xd8\x9a\xb2\xb3\xbe\x2d\x21\xb6\xd3\x9f\x84\xb8\x25\xdb\x81\xe9\x65\x1f\xfb\x40\xf6\x39\x2e\xb7\x90\x6e\x57\x7d\x7c\x63\x99\xaf\xb4\x22\xc8\xeb\xcf\xf5\x33\xa1\x74\xfe\x7d\x45\x7f\x46\xde\xca\xec\xdb\x3c\xf6\x69\xde\xe4\xf3\x12\xc9\x6f\xf0\x41\x2b\x86\x18\x76\x4f\xd3\x00\xc5\x93\xfb\x91\x30\x1e\xaa\x5e\xa8\x0f\x5f\x89\x3a\x0b\xc8\xc5\x9e\x7c\x26\xb8\x36\x69\x73\xb6\x9c\x7d\x97\x5f\xcb\x4f\xc2\x91\x3a\x3d\xbf\x92\x2f\x49\x86\x1d\xb6\x80\xc2\x0c\xdb\xc1\x43\x24\xd3\x25\x70\x61\xdf\x89\x75\x60\x36\xee\x88\xe5\x0c\x7c\xae\xd3\xc5\x20\x7f\x29\x07\xcb\x17\x7c\xac\xb4\xb4\x1c\xcc\x38\x35\x53\x32\x97\xbe\xa5\x75\x24\x77\x0b\x67\xf2\xe5\x72\x0a\xb1\xcd\x3c\xc5\x56\xa6\x69\x66\x17\x7f\xce\x7f\x5d\x2a\x11\x25\x52\xdf\xf2\x5f\x67\x63\x2e\x21\x09\xf8\x44\x29\x4e\xde\x3e\x79\x36\x9c\x8b\x20\xab\x66\xb9\x60\x8e\x4b\x1c\x5a\x5f\xc8\x0f\xb3\x17\x84\xff\x36\x73\xe5\x4f\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\x4e\x11\x75\x04\x7b\x4e\x09\x21\x69\x45\x15\xb3\xfc\x3b\xa8\x19\x22\xf1\x34\x3c\xed\x73\xec\x87\x84\x43\x81\x7e\x8e\xfb\x19\x00\x49\x37\xf3\x09\x50\xd6\xcd\x78\x38\x1a\xf8\x10\x48\xd5\x87\x8e\xe9\x0c\x67\xcf\xcf\x0f\x4d\xed\x70\x82\x24\x33\x23\x01\x68\x51\x3a\x2f\x0a\x00\x41\x84\xe0\xf0\x00\x51\x33\xae\x32\x6d\x2c\xaa\x0f\x08\xed\xf3\x39\x65\xdf\x2f\x80\x4d\x57\x98\x71\xe5\xb3\x04\x75\x96\xa9\xcc\xc5\x6a\x8e\xaa\x0c\xf3\x48\xda\xc9\x44\x7e\x13\x44\x38\x59\x6e\x33\x51\xe2\x56\x8a\x1a\xc2\x1c\xac\x79\x44\x37\x5a\xf2\x96\xe9\xf5\x10\xec\x50\x7f\xb8\xea\x03\xe5\x54\xdc\x82\x90\x35\xce\x99\xb1\xaf\x8d\xe3\x9f\xc7\xb0\xf0\x00\x0f\x9d\x02\xed\x34\x4c\x08\x49\xc7\xbc\xa1\xbb\xae\x16\xaa\xa8\x99\x2a\x24\xb3\x5c\x64\xf3\x1b\x2d\x23\xf3\x0c\x1f\xc6\x03\x45\xb6\x6c\x24\xd2\x70\x78\x06\x2d\x72\xe6\x12\x26\x8a\x74\xea\x03\xcd\x4e\xc8\xe3\x9c\x19\xef\x46\x30\x22\x61\xde\xd4\x4d\x82\x30\x95\x02\xe4\x1c\x1f\x53\x20\xa2\xbe\x54\x05\x04\xef\x02\x62\xed\x6f\x17\x9e\x93\x0d\xb3\x65\x8c\x2b\xf1\x06\x76\x32\xed\x17\x94\x63\xa3\x53\xe6\xab\xa2\xad\x3e\x6b\x60\x08\x8a\x9f\xb7\xb4\xe3\x0b\x48\x43\xa3\x12\xbc\x92\x30\x0b\x04\x22\xdf\xe9\xfd\xf7\xdf\x7e\xe8\x78\x1a\xfc\x45\xc0\xfb\xef\x3e\x74\xf7\x9e\xdd\x7f\xff\xfd\x07\xdc\x00\x8c\x0a\x67\x4b\x56\x80\x8d\x6b\x40\x41\x83\xde\xb5\xe5\xa7\xaa\xd9\x77\x22\xa4\xe1\xd3\xf3\x87\xcf\x32\x15\x9f\xfb\x78\x89\x3b\x5f\xec\xc1\x0a\x2f\x5c\x56\xbc\xc2\xeb\xfd\x36\xd3\x31\x76\xc2\x01\xec\x97\x2b\x6e\x18\xc8\x72\x6e\xf2\x37\xf7\x9b\x87\x5b\x15\x3c\x58\xea\xbc\x45\xf3\xf8\x17\xf9\xf5\x0c\x03\xe1\xa1\xff\xe6\x5a\x6a\x82\xbb\x83\x2b\x71\x27\x67\xa1\xd9\xdd\x62\xdc\x94\xfd\x2c\xe6\x4a\x16\xda\x04\x5d\x8e\xb3\xb4\x17\x1e\x44\xe7\x0d\xa6\xb6\x21\x78\x5b\x02\x31\x06\xf7\x0e\x3f\x07\x99\xb7\x55\xd6\x46\x05\x94\xd5\x7a\x2a\x51\xd0\x01\xae\x15\x53\xb2\x0d\x7d\x1d\x9a\xa4\x3d\x57\x87\xfd\xfc\xca\x5a\x44\x9e\x20\xa9\x75\xe9\xea\x59\x12\xc6\xeb\x05\xf4\xcc\x50\xc5\xf3\x50\xd5\xd4\x52\xa0\xbf\xb2\x89\x5d\xa3\x81\x99\x2e\xf0\x61\xc9\xa2\xd8\x51\x3b\x7a\x47\x9b\x91\x12\x4c\x13\xcd\x6b\x8a\xce\x04\x74\xfa\x01\xc7\x36\x4f\x29\xbe\x8d\xe1\xa4\x08\xb4\xaa\x33\x33\xc7\xd7\x63\x03\x31\x4b\x36\x21\x93\x11\x11\x19\xb1\x73\xa8\xea\x55\x0f\x3a\xb2\x45\x97\x75\xe6\x18\x27\x57\xb5\x3c\x91\xe1\x6a\x2d\x0b\x28\x2e\x7e\xa6\x3f\x0e\xaf\x03\xb3\x18\xeb\x1f\xb7\x42\xdd\xa7\x3f\x96\x24\xfb\xa2\x2d\x3a\xbf\x6f\xc7\xf9\x8b\x66\xd3\xf8\x7d\x1d\xbf\x86\x00\xa2\xe7\xbc\x5f\x0c\x64\x33\xc9\xf6\xb4\xad\xab\x97\x13\x06\x3b\x8f\x40\x4e\x0c\x46\x32\x06\x46\x5f\x71\xa6\xf3\x0f\x91\x0e\xc2\x4b\xc4\x02\x10\x8c\x6b\x51\xd3\x29\x80\x3a\x45\xeb\x24\xd8\x94\x46\x5d\xa4\x8c\x50\x83\xce\x32\x7b\x68\x7a\xc0\x77\xc8\x81\x52\x5d\x6b\x3e\xac\x43\x9f\x6e\xda\x1f\x8a\xa5\xa7\x77\x5c\xd6\xc9\x21\x88\x57\xd4\x2e\x27\xd2\x13\x5b\x14\x3d\x4b\x70\x8a\x9a\xe0\x74\xd3\x70\x36\x50\x03\xee\xaf\x9b\xd4\x9d\xc2\x10\x35\x8c\x37\x82\x3c\xe5\xc2\xe6\x19\x07\xf2\xd7\xf2\xb3\x41\xb5\xf0\x6e\x7e\x0a\xab\xb7\x61\x83\xda\xc2\xd3\x54\xbf\x34\x3f\x3a\x20\x0e\x0f\x86\x0a\x43\xbc\xb9\x2d\xbb\xfd\x06\x7b\x00\x2e\x19\xe5\xc7\x52\xae\xc7\x0c\x08\x81\x97\x58\x68\xf1\x6d\x05\x8c\x5c\xc2\x32\xa9\xd5\x03\xe7\xce\xcb\x45\x0e\x03\x57\x38\x46\xd1\x58\xd7\x1c\x08\xca\x8f\x9e\x40\x38\x8c\x84\xd5\xcf\x16\xc3\x61\x30\x2d\x66\x5b\xae\x7a\xd3\x79\x0c\x30\x35\x2f\xfb\x6b\x9e\x3a\xb1\x42\x60\xe4\x8a\xf1\x6b\xf7\x43\xb8\x19\x13\x07\x7b\x82\x36\x9e\xf0\x8e\x5c\x28\x37\xfb\x17\xfc\x10\x9e\xa6\xa8\x1c\xc8\xeb\xe1\xb1\x57\x41\xb0\xa0\x6d\x52\x99\xe2\xa0\xa4\xde\x96\xd4\x28\x76\xf1\xc2\x8e\x90\xc2\x5b\x7f\x64\x37\x36\x63\x9e\xf8\x26\x22\x66\x2b\x03\x4d\xff\xde\xa5\x6b\xfd\xa8\x49\x37\x6b\x6b\x46\xd2\xfe\xb1\xea\xa9\xf4\x7f\xfa\x60\x34\x4a\xd2\x7e\x16\xb2\x4b\xd0\xa7\xff\x19\x41\x0d\x4f\xce\x3e\x4f\xf4\xb4\x20\xa8\xd2\x2c\x10\x0b\xcd\xd7\x8d\x95\x48\x45\x50\xe3\x9c\x0c\x24\x43\xaf\xd0\xc2\x99\xa4\x5e\xd3\x29\x9e\xd7\xba\x62\xd3\xdd\x24\xcd\x22\xd4\x40\x8a\x6d\x7d\x4b\x4c\x35\x2e\xe7\x6a\x54\xad\x5b\xdc\x0a\x13\xaf\x6d\xa9\x82\xc3\x4e\xd1\xfa\xb0\xfb\x43\xfa\xe5\x6e\x0a\xa6\xeb\x52\xd8\x62\xef\x8d\xc2\x19\x8b\x54\x08\xfa\xad\x80\x65\x59\xdf\xab\x2e\x83\xe1\x90\x18\x1e\x5f\xa9\x35\xd0\xa6\x5a\xf4\xa9\x4b\xa7\xe6\xd4\x34\x1c\xe6\x23\x2b\x89\x52\xe3\xec\xc0\x69\x3f\xec\xd6\x08\x7b\xc1\x00\x4b\x3a\x31\x6e\x1b\x08\x6a\x8e\x45\xe4\x75\x06\x85\x3b\x86\x1a\xc6\xc2\x60\x95\xaa\x21\x97\x21\x1e\x0f\x30\x2c\xca\xaf\xc1\x70\x83\x6a\xa1\xcb\x3e\x54\xf3\x83\xfe\xf6\xba\x8d\x0b\x88\xcb\x06\x2f\x7a\x1b\x7a\xe7\x96\xaf\xa9\x3f\x0e\x36\x39\x15\x1e\x2d\x54\xb3\xd1\x3c\x34\x12\x49\x01\x16\x39\x55\x1f\x11\xcd\x90\xad\x80\x80\xa6\x56\x37\x88\x76\x5f\xeb\x22\x44\x29\x68\xfa\x98\xcc\x7f\x1b\x8f\x57\x89\xf9\xd0\x58\x43\xb6\x55\xcb\xce\x1c\xd1\xd3\xc3\x7f\xb9\x5f\x3c\x92\x85\x0c\x6b\x9c\xd1\x8d\x08\x27\x0a\x3a\xc3\x5d\x90\xc7\x5c\x75\xf0\x8b\x66\xb2\xe1\xcd\x82\x81\xe8\x7b\xf6\x5b\x12\x28\xe3\x02\xb5\x91\x3f\x66\x07\xd9\x13\x3a\x81\x20\x77\x5a\x2f\x30\x04\x28\xbc\xb6\xe5\x7e\x17\xb5\xdd\x64\xb4\x3c\x32\x3d\xb4\xd1\x96\xc2\x8b\x05\xbf\x86\x5d\xb0\xd3\xca\xb0\x6a\x27\xf7\xc7\x23\xa2\xed\x7b\xce\xfb\x88\x78\xfb\x0a\x9f\x0e\x14\x90\x44\x02\xea\xe1\xa1\xb7\xce\x2a\x03\x44\xd5\x0f\xd8\xfc\x24\x76\x4c\x72\x83\x4b\x6a\x98\x31\x71\x31\x17\xe6\xfa\x41\x9f\xd2\x88\x59\xe5\x97\x3e\xb4\x50\x59\x8f\xe2\x41\x96\x62\xde\xcc\x7f\xc3\x0c\x17\xd9\x44\xab\xca\x64\xea\xb5\x46\x54\xae\x29\x3e\xe2\xc7\x91\x73\xe8\x7c\x70\x43\xff\x1e\x6f\xb7\x8f\x8b\xe2\xc1\xc4\xa8\x03\xe9\xc7\x0d\x7b\x60\xa3\xa5\x8a\x86\x01\xab\x0c\x6a\x0a\x44\xc9\x69\xdc\x31\x40\x34\x4f\xbf\xb0\x14\x50\xf2\x95\x57\x5a\x78\xbc\x09\xe9\xfa\xb9\xeb\x78\x0b\x68\x88\xe1\x79\xbb\x0f\x66\x15\xe2\xf8\x17\x8e\x64\x20\x84\x07\x59\x03\x7f\xe6\x5b\xbb\xe7\xae\x46\x54\xa2\x23\xf6\xbd\x3d\x80\x12\x09\x6f\x77\x10\x21\x81\xf0\xeb\x91\xea\x04\xe0\x09\xc0\x29\xf1\xd7\xb7\xfd\xcf\x14\x81\xa7\x1a\x9f\x22\x81\xbb\x84\xe0\xa9\x50\xaa\x96\x36\x13\xfa\x86\x3f\x89\x7c\xf9\xac\x20\x3c\x8b\xca\x19\xc1\x6f\x0f\xb6\x6e\x9a\x8f\x12\xa2\x66\x8e\x4f\x9f\xb3\xe2\xd0\x8c\x92\xc9\x41\x08\x5f\xc5\xb9\x24\x5a\x56\x8b\x30\x64\xeb\x73\x4e\x98\xe8\x62\xc1\x73\xdc\x66\x7f\x17\xb5\xe3\x29\x7e\xa5\xff\x93\x09\xc3\x81\xa8\x33\xc8\xb9\x85\x24\x62\x3b\x05\x9f\xab\x66\xfc\x41\x53\xea\x75\x30\x6e\x4b\xed\xdc\x99\x9d\x7f\x99\xab\xc6\x94\x8b\x46\xec\x37\x3a\xf3\xb5\x3b\xcf\x33\xbe\x00\xd2\xcf\x73\x73\x5e\x1b\x83\xb9\xbb\x55\xef\xb0\x16\x5f\x40\xb1\x95\x59\x2d\xf6\xe9\x70\x5a\xe3\xab\xa2\x06\x1b\x56\xe8\x29\x47\x74\xe7\xa2\x1e\xea\xa1\x1a\x07\x7d\xd8\x6c\x75\x41\xf7\x10\xee\x17\x6e\xab\x2c\x99\x75\x72\x93\xae\xee\x77\xe2\xc4\x21\xca\x80\xdc\x1d\xd0\x3b\x18\x0e\x4c\x6c\x7d\x50\x73\xbb\x70\x31\xe2\x05\x62\x5d\x45\x5e\x30\xbd\x03\xcf\x25\x60\x3a\xb8\x9c\x1e\x00\x1a\x52\xce\x89\x7f\x88\x51\xa1\x14\xcb\x23\xcf\xbf\x3e\x50\x52\x89\x21\x10\x5f\xcb\xb9\x1e\x31\x7b\x2a\xdb\x1e\x3e\x77\x63\xb4\xb3\x0f\x00\x2d\xa0\xec\x5b\x6a\xe6\x31\x64\x25\x89\xd3\x88\x41\xc8\xfa\xab\x96\x01\x3e\x60\x1b\xc9\xb6\x8e\x9f\xaa\x62\x4f\xd4\xc7\x73\x71\x5b\xbd\xdf\xc5\xf5\xd2\x8a\xc7\x9d\xf8\xc1\xba\x07\xf3\x09\x21\xc2\x05\xf1\x85\xd3\xe5\xd2\xfb\x12\x77\x53\x2d\x33\x13\x72\x0a\x0d\xc5\x01\x7c\x82\x53\xef\x54\x17\xb2\x2a\xe1\x43\xb0\xce\x12\x03\x6a\x13\x93\x7e\x48\x47\xf3\x11\x63\x4b\x1c\x35\x9d\x54\x75\xa7\x7d\xd8\x88\x10\x06\x58\x1a\xd4\x07\x84\x05\x56\x5c\x36\xfb\x3c\x7c\x0e\xfe\xa6\x01\x86\xed\x0c\x10\x92\x84\x04\x18\x40\xbc\x63\xbe\xf6\xa7\xa3\xc2\x91\xf2\xe0\x23\xa7\x38\x15\xf7\xb4\xc0\xe0\xcf\xf3\xc0\x26\xc2\xec\xa0\xaf\x30\x03\x10\x04\xbc\x1e\x35\xed\xbd\xe6\x8e\xbc\xb1\x92\xb3\xe2\x60\xb9\x93\xed\xc2\xea\xa2\xdc\x71\xf4\x49\xd6\x5d\x2e\x65\xb7\x15\x9e\x7f\x47\xab\xdf\xdd\xd6\xaa\xd8\x58\x4d\x35\x6b\xd6\x86\xea\x86\x8e\x45\xcb\x21\xa3\xef\x68\xed\x7b\x6b\x2d\xdc\xb2\x3e\x96\xe5\x2e\x68\x22\xee\x7e\xe0\x7d\x01\xe6\x19\x1b\x51\x4d\x70\x34\x75\x30\x34\x8f\xe4\x03\x4c\x3c\x8a\x9e\xe2\x2d\x01\x74\x37\xbb\xc3\x19\x6b\xbc\x40\x4c\xcb\x89\x38\xe7\xd0\x74\x3a\x18\xd6\xf2\x64\x01\xe7\x86\xfd\xab\xb1\xe4\x89\xaa\xc4\xae\x76\x60\x39\xe4\x5d\x94\x5d\xd7\xac\x40\x7b\xb8\x7b\xb1\xe9\x64\x3a\x61\x32\xe9\x40\xd9\x2e\x3d\x24\xd6\x54\xbc\x11\x78\x3c\x27\x41\xf2\xe1\x02\x03\x1f\x80\xa8\xae\xd8\x07\x20\xe8\xa0\x50\xd1\xa1\x7a\x4e\x26\xeb\x50\xca\x0b\xa7\x96\x23\x11\x54\xf0\x39\xcf\x34\xba\x97\xc6\xe8\x1f\x3a\x7d\x6b\xee\xf5\xba\x09\x82\xb9\x88\x63\x02\xf6\xa2\xb0\x23\xb3\x78\xac\xd7\x22\x9e\x28\x5e\x54\x58\x19\x48\x31\xb6\xb7\x98\x28\x83\x23\xef\x76\x4f\x5b\xe7\xa6\xfa\x08\x65\x18\x11\xa6\x84\xfb\x3d\xbf\xbc\x82\x06\x8c\x16\x00\xed\xa3\x2b\xe6\xbb\xe9\x5f\xd7\x65\x8d\x08\x94\x1c\x75\x57\x19\xd1\x62\xc1\xfe\x44\x55\xad\xe1\xf9\xae\x4b\xb3\xf2\xae\x8b\x8d\xb0\xad\xd0\xe3\xcc\xa4\x07\xd1\x84\xa5\x88\xac\xcb\x2b\xad\xdb\x95\x0b\x92\x89\x67\x7c\xb3\xd5\xd6\x78\xae\xc0\x05\x51\xbf\x35\x3a\xbb\x1b\x09\x6c\x70\x58\x61\x16\xa0\x45\x51\x12\x2a\x80\x75\x0f\x1e\xa1\x67\x08\x3a\x25\x05\x1b\x86\x6f\x93\x81\xc1\x5f\xc5\xb8\xb8\x62\x76\x9d\xaa\xb9\xc8\x6d\x3e\x1b\x07\xfb\x10\x86\x47\x94\xa6\xef\x10\x85\x87\x55\xcd\xbc\x5e\xc1\x94\x09\x13\x20\xdd\xae\x11\xd3\xcb\x77\xfa\x39\x06\x92\xd3\x12\xf7\xe4\x95\x7c\x8d\x41\x76\x1a\xe8\xc8\x85\x3c\x1a\x83\xcc\x9b\x82\xcf\x3f\xcf\xe9\xcf\x58\x88\x76\xb1\xf1\x4d\x92\x06\x71\xee\xd8\x59\x5e\x2e\x92\x39\x83\xd0\x5d\x6e\x96\x12\xf8\x80\x35\x47\x38\xee\x89\xb2\x8f\x8d\x8c\x25\xac\x67\xc9\x5e\x6e\x5c\x81\xba\xbe\xc1\xab\x03\x31\xcd\x42\x4d\x9e\xba\xc9\x86\x7e\x8f\xc3\x3e\xe1\x62\xc2\xfa\xf5\x5a\x64\x10\x4c\x03\x0e\xb7\x12\x80\xee\x88\xb7\x16\x3e\x17\xda\x55\xa1\x6d\x40\x3b\x09\x3a\xc7\x0e\x4b\x44\xd4\x88\x25\x62\x20\x22\xc3\x8a\xd5\x55\x60\xef\x6b\x81\xb8\x41\x6c\x40\xd8\xb8\x47\x6a\x9f\xcd\x08\x12\xcb\xec\x11\x84\xbf\xc8\x04\x90\x79\x42\x0d\xf7\x19\x05\xf7\x67\x85\x57\xd1\x7a\x08\x38\x4a\xf4\x68\x01\x3a\xaa\xa1\xe4\x44\x93\xcb\x9c\xc2\x14\xb9\x81\xc2\x94\x71\xc5\x66\x91\xc1\xea\xe6\x6d\x9a\x84\x23\x91\xa2\xdb\x72\x95\xb7\x85\x45\x58\x51\x4e\xc3\x5e\x26\xe0\x28\xa1\x43\x6d\xbe\xa1\xc3\xb7\x56\x41\x9c\x91\x40\x3e\xb2\xe5\x13\xcd\x37\xcb\x38\xa6\x6f\x60\x69\xb1\x10\x36\xc6\x3e\x7d\xc4\x5c\xf6\x3b\xe6\x37\xc2\xbc\xac\x1d\x0c\xf9\xe1\x9f\x2e\xcf\xdf\x1e\xa5\x9f\x1f\x5f\x5f\x5f\x3f\xe6\xe2\x8f\xf7\xed\x86\xbd\xdf\x0a\x8e\xe0\xf2\x3f\xce\xde\x1c\xa5\x65\xbf\x78\x34\xa3\x83\x7a\x1b\xab\xb7\xd4\xfe\x13\x57\x0f\x4c\x5d\x2c\x3a\xfe\x71\xf6\xa4\x2b\x46\x03\xa2\x87\x81\xc2\xc2\x0d\x92\x67\xcf\xec\x3b\x74\x32\xc5\xce\xc3\x1f\x0e\xcb\x45\x5b\xc2\x3c\x02\x1f\x41\xc6\x86\xce\x04\x53\x9e\xfb\x43\x90\x8a\xda\xd1\x6e\xbc\x5e\x68\x40\xf6\x01\x88\xdd\x06\x9e\xe0\x1e\xd0\x65\x62\xe2\xdc\xb6\xc2\xa1\xe8\xba\x75\xb3\xdf\x14\x31\xc7\x24\x9c\xe9\x44\x94\xc5\x4f\xc3\xc2\xb0\x64\x44\x44\xe5\xa7\xe9\x9f\x58\x53\xc4\x13\x25\xb4\xc5\x59\x46\x5b\x00\x9e\x0d\x0b\x23\x36\x60\x20\x18\xd3\x00\x24\xe6\xa1\x09\xe6\x3e\xcf\x09\xe7\xa3\x4a\xf4\xfc\xc6\x76\x15\x7d\xba\x75\xe7\x39\xd0\x9a\x54\x37\x2e\x12\xeb\xe9\xa6\xb3\x0d\x2f\x62\xcf\x78\xa4\x96\x8e\xa6\xc4\x9a\xc2\x43\x2a\x66\x9c\x93\x28\x0a\xf8\x23\x40\x99\x8b\x84\x76\xa5\x7e\xed\x82\x31\xa5\x1a\x0c\xb3\x1c\x66\x04\xd1\x0e\xca\x1e\x7e\xe6\x53\x6b\x51\x4e\xd4\x6e\xd6\xfc\xea\x31\xfe\xa6\x3b\x9c\x48\x26\xe2\x9a\x13\x71\x0f\xb0\x8e\x58\xe6\xba\x1e\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\x43\x02\x81\x58\xf1\x64\x3a\x4a\x0b\xf8\x02\xff\xc6\x53\x97\x16\x8b\x57\xb6\x4a\xc1\x77\xe3\x25\xca\x08\x91\x75\x14\x72\x54\x16\xd4\xe2\x3b\x7f\x06\x81\x5b\x2e\xbb\x03\x98\xe9\xfc\xc8\x29\x39\x14\xa1\xa5\x56\x73\x30\x13\x47\xb8\x41\xe6\xf0\x05\x8a\xe1\xca\x26\x59\x4d\xde\x30\x3a\x91\xaf\x10\x5b\xbb\x4d\x73\x63\x7e\xdb\xa7\xf8\xa5\x81\x5d\xc2\x91\x79\x30\x1d\x94\x87\x0c\x94\x2f\x4d\x16\x57\xf7\x6b\x10\xc8\x54\x45\xdc\x9a\xcf\xbb\x28\x4a\x30\xe1\x31\x26\x52\x78\x4f\x74\x6f\xc2\xf5\xd7\x41\x0d\x9d\x94\x4f\x5d\x0b\x07\x9c\x94\xe3\xa2\xa1\xa3\x72\x50\xf4\x0b\x1c\x95\x63\x24\x8d\xdd\x90\xfd\x50\xbf\xc0\x13\x79\x6a\xd0\x63\xb9\x76\x0a\xf1\x13\x05\xa6\xa4\xdb\x22\x1c\xdb\x17\x78\x24\x0f\x4e\xb6\x5f\x22\xe0\x4e\xf5\xc4\xa3\x24\x40\xee\x5d\x1a\xdf\xa2\x5a\x2e\x67\xf3\xb6\xb9\xee\xd8\xed\x17\xcf\x39\x30\x97\xe5\xdf\xe9\x25\x7e\x0b\x08\x5f\xf5\x83\x28\xe4\x43\x12\xd5\xa2\xe8\xa9\xde\xec\x49\x22\xee\x59\x87\x41\xe4\x4f\x29\x47\xee\x5c\xdf\xd2\x49\xec\xd8\x72\x66\x52\x84\x36\xba\xeb\x8c\xbf\xe0\xb0\x0c\xed\x33\x2b\x4b\x51\xe8\x92\x53\x14\x8c\x3f\x0d\xe1\xb6\x2b\xc1\x98\x4d\x6e\xa5\x45\x7c\xf5\x9a\x23\x10\x96\xc1\x11\x18\x11\x43\x05\xf9\xd4\x83\x84\x8e\x89\x04\x61\xb8\xf4\x10\x8a\x20\x2c\xfa\xe7\xaf\xdf\xca\x4f\x58\xa8\x6b\xa0\x20\x98\xa8\xf3\xe5\x78\x62\x76\xef\xb3\x29\xfb\x77\xcb\x13\x5f\x05\x51\x73\xd8\xfb\x6b\xf8\xe5\x20\x8a\x36\x5f\xe2\x1a\x88\xff\xba\x54\x92\x81\x7d\xb1\x8b\xb6\x7c\x3c\x2c\x46\xc8\x11\x54\x5f\xe2\xc3\xa5\xeb\x35\x0e\xff\x71\x69\x39\x4c\x34\x9e\x06\x23\xf7\x18\x31\x5b\x00\xa2\xbb\xfb\x5d\xda\x55\xac\x3b\x55\x02\x1d\x34\x08\xea\xf0\x11\x7e\x41\x3b\x78\x91\x2c\x1c\x6b\x78\x3f\x84\xe0\x04\xdd\x3a\x75\xf8\x61\x17\x9d\x5e\xfc\x8e\xf5\x85\x91\x59\xd4\xef\xa8\xb4\x6c\xb1\xa5\xcd\x76\xba\x69\x56\x90\x22\xf1\x00\xa1\x3c\x35\xb1\xe7\x27\x59\x08\x11\x1c\x70\x8a\x25\x0e\x47\xfc\xd5\x96\xea\xff\x24\x21\xc2\xa5\x7a\x92\x1e\x9c\x5f\x34\x09\x12\xb5\xb8\x66\x5a\x1e\x8e\xd4\x16\x48\x2d\x2a\xe3\x43\x10\x9b\xa6\xda\x7b\x89\x50\x3e\x24\x93\x45\xe8\x7c\xc2\x62\x0a\x47\x8a\x90\xb1\x07\x1d\x88\x18\xb1\xa5\x8e\x99\xef\x98\x00\xc6\xce\xf6\x94\xf7\x78\x38\x3d\x01\xbc\xeb\xf3\x5f\xcb\xff\xf8\x5f\xff\x97\xb5\xa2\x0d\x6d\x8a\x88\x8c\xa1\xc1\x25\xfd\xf4\x9a\x9b\x9a\x7f\xf1\xe5\x31\x58\xb1\xef\xf8\xf0\x5e\xce\x35\xa8\xb3\xeb\xe7\x79\x44\xa2\xfc\x38\x82\x91\x37\x5b\xd1\x0d\x68\x1c\x53\xee\xa9\x1c\x37\x8f\xc3\x3a\x6c\xde\x32\xdd\x22\x5c\xd0\x3b\x05\x94\x45\x8f\x11\xf5\x3a\xaf\xd3\x3b\x8a\x5b\x6e\xfa\x50\x05\xf8\xa6\x7d\x27\xc9\xfb\xa6\x5d\x7d\xf0\x81\x53\x9d\x69\x7e\x14\x34\x15\xc7\x46\x86\x71\xa1\xc7\x0e\x00\xfa\x70\x64\xbe\x46\x9b\x94\x97\x4c\x2d\xe3\x87\xbd\xe4\xd0\x2e\x91\xab\x61\x41\x66\xfe\xbe\x33\x73\x7b\x92\xb8\x8b\x7a\xbb\x1d\xbd\xb8\x08\x6f\x24\xd3\x67\x9a\xe8\x57\x24\x7a\xed\xca\xce\x33\xfc\xc1\xa1\x31\xf9\x8d\x38\x56\x41\xc9\x85\xd9\x6b\x24\xd0\x5a\x46\x02\xc2\xbe\xc2\x69\x88\xff\x26\x08\xb6\xa7\x4a\x37\x4e\xd5\x2f\x4d\x1f\x04\xf4\x8b\xde\x45\x08\xdc\xb4\x10\xe8\x33\x7a\xec\x80\x2b\x07\x56\x26\x6e\xdc\x47\xe1\x5f\x81\x42\xa4\xde\x06\x1d\xf9\xe6\x3e\xd8\xe0\x96\x45\xa3\x47\x41\x77\xcd\x96\x5c\xb5\xc8\x83\xa0\x13\x04\x1f\xad\x23\xd3\xd2\x6e\xe6\x9b\x09\xd6\xcf\x5a\xae\xe3\x7d\x31\x3c\x39\x34\xa7\x95\xf4\x93\xc0\x47\xce\x89\x7a\x92\xcb\xc5\x19\x5e\x92\xd3\x0d\x1d\x0a\x36\xd1\xd1\x0e\x15\xb1\xf8\xf6\xd3\x01\xc7\xd4\x71\xa0\xde\xaf\x77\x4d\x1d\xd7\x71\xbb\x73\xea\x1f\xbd\x09\x9e\x0e\xc2\x17\xea\xaf\x06\xd1\xf8\x5c\xd6\x54\x58\xbe\x3f\x72\x2f\x1b\x83\x06\x52\x51\x84\x02\x57\xd3\x97\xea\xff\xf5\xba\x97\x28\xf5\x1f\xbb\xed\x8d\xc3\xd3\x0e\x7b\x3d\x8a\x1f\x17\x75\xfa\xeb\xe2\xc8\x1d\xbc\x36\x8d\x78\xc5\xf0\x3c\x37\x0a\x06\x81\x01\xde\x5a\x24\x0e\x0d\x11\x76\xd8\x69\xf0\x82\x6b\x38\x55\xea\x4b\x50\x08\x51\x4b\xdf\x1d\x19\xe2\xc0\x3d\xc7\x6d\x21\x22\x86\xbd\x64\x1e\xe3\x1c\x27\xc2\x4e\xde\x5a\x22\xdc\x6b\xe3\xab\xf2\x7f\x24\x6c\xc4\xf4\x5d\x02\x9f\xf7\xae\x4d\xcd\x85\x9d\xd9\xf0\xe7\x95\x07\x7c\x5e\x30\x7c\xc9\x81\xc2\x33\x5a\x8f\x39\x08\x42\x82\xdc\x41\x38\x64\xe5\xda\x33\xbd\x3a\xb3\x88\x51\x83\x74\xcf\xf2\x60\xb8\xac\x97\x83\x1e\x48\x7e\x43\x12\x9d\xcc\x19\x96\x8f\xdb\x88\xfd\x04\x2c\xd5\x5d\xe7\x9c\xe1\xc3\xa5\x13\xd6\x16\x25\xbc\xf9\x4f\xe4\xcb\xe5\xe8\xb9\x4a\x43\x4c\xfb\x4e\x48\xf8\x60\xf8\xf6\x04\xa9\xba\xdb\x29\xae\xd9\x4f\x99\x26\xe5\x66\xc7\x53\x98\xa7\x4e\xb3\xc7\x22\xa9\xec\x82\x22\xbe\x69\xaf\x20\x0d\xff\x30\xac\x4b\x5e\x82\xd1\x5d\xf3\x6d\x73\x9d\xc8\x96\x39\x83\xbb\x82\x84\xbb\xd5\x94\xb8\x4b\x92\xc6\x02\x89\xc6\x22\x4a\x25\xe8\x82\x46\xab\x19\xe7\x0f\x3c\xfc\xb1\x63\x38\xdf\x7e\x8b\x5e\xcd\x07\x11\x75\x8c\xa9\xe5\x3a\x25\x76\x79\x97\x5a\xaf\xdb\xaa\x2f\x7d\xb3\x7f\xe5\x9f\x71\xbb\x21\xc4\x97\x34\x8c\x87\x7f\x87\xcd\x1d\x99\x2e\x0b\xc1\x0d\x55\xc9\x26\x51\xdc\xa4\x15\x7d\xcd\xd5\xfa\xe1\x1e\x54\xf3\xfd\x08\x21\xbe\xa4\x1f\xdc\x0a\x0c\xc0\xe5\x5c\x71\x4b\x7f\xe8\x20\xa8\xb1\x1a\xa3\x4b\xfb\x61\x17\xbd\xe7\xfa\x55\xb0\x4f\xc3\x50\xa4\x18\xc8\x1d\xac\x3a\x1e\x6f\x98\x92\x23\x17\xba\x13\xa2\x81\xd8\xf3\x4c\x86\x71\xba\x7b\x89\xc3\xd2\x9e\x4b\x3a\xd0\xc0\x52\xc7\x83\x4d\xee\x3a\xd2\x2f\x2f\xca\x41\xb6\x3a\x53\x79\x4e\x32\xef\xde\x70\x05\xce\x02\x18\x89\x5c\x17\x6e\x19\x10\xec\x6c\x26\x0b\x09\xe5\xef\xd6\x38\xb3\xba\xa0\xd5\x71\x65\x8e\x55\x03\xca\xb1\xe8\x31\x9c\xf1\xce\x50\x2a\x0b\x14\xab\xcc\x94\x8f\x4c\x56\x75\x66\x04\x80\xda\xe6\x37\x91\xa1\x0e\xec\x8a\xb7\xf1\xd3\xb7\xb7\xe8\x62\xc6\x5d\xf1\xbb\xb6\xc4\xc7\x77\x04\x73\x50\x01\x33\x0b\x97\xfa\x98\x40\x3c\xd9\xad\x5a\x38\x21\xd8\x5c\x33\xb3\x08\x48\x01\x15\xfe\xe0\x46\xe9\x5e\x5c\xf4\xdc\x00\x37\xc5\x54\xd1\x83\xdb\x98\xc2\x57\x74\x00\x6c\xe3\xf6\x1e\x80\x2d\x88\xeb\x19\x75\x23\x60\x01\xb7\x75\x44\x9f\x4a\xfc\xf2\x8e\x80\x6f\x7c\x61\x47\x8e\xac\x17\x1a\x5b\xba\x28\x26\xd7\xff\x6d\xfd\x1b\x1c\x73\x40\x9c\x51\xf0\xf2\x01\xc1\x47\x4f\xbb\x3b\xa2\x0f\x4c\xd6\xac\x5a\x18\x47\xa8\x09\x9d\x6e\x67\xbe\xaa\x9a\xa6\x10\xe7\xd6\xba\x0f\xcd\xec\xe2\x80\x21\x6c\xe1\xd5\xb7\x37\x2a\x92\xf0\xe0\xe2\x78\x25\xde\xba\x46\x0e\x5f\xb8\xee\x95\x80\xf6\xef\x81\xf6\x0f\x89\x7b\xad\x8f\x97\xb2\x7d\x27\xa2\x5b\x91\x2b\x2f\x84\x14\xf7\xb1\xc4\xd3\x61\x6c\xf1\x5b\xe3\xba\xc7\xf1\xec\x87\x0f\x1b\x74\x12\xfe\x6b\x65\xb2\x9c\xbd\x91\x98\xa8\x55\x11\x33\xd6\x1b\xc2\xc1\x16\x0f\xe4\x2e\x38\xc4\x6f\x53\x57\x62\xbf\x72\x26\x5f\x34\xf6\x04\x63\xca\x76\x12\xa2\x01\xef\xdb\x4b\xd8\x45\x4d\xe1\xb0\x8b\x49\xdf\xf4\x10\x28\xae\xf8\xef\x0f\xe9\xfd\x22\xf1\x43\x87\x96\x91\x15\x3a\x2a\x25\xc8\x77\x90\x1f\x04\x21\x87\x4d\x7b\x6b\x61\xd5\x7d\x0d\xe8\x26\x74\x99\xfb\xa0\xdb\xda\x49\x54\xba\xef\xa6\x5a\xcc\xf8\x86\x34\xd5\xfb\x61\xf7\x4c\x3a\x73\x10\x7e\xb9\xac\xe0\x97\xcb\x44\xd3\x75\x14\x24\x44\x13\x12\x66\xec\x5c\x2c\xd0\x28\x39\xde\x15\x7d\x3a\xc2\xbb\xc4\x49\x1c\xd3\x25\x4a\xc8\x17\xa3\x56\x4c\x93\x1d\xa6\x99\xad\x9c\x4f\x31\xab\xb9\xa8\xf6\x38\x1e\x64\x98\x25\xa6\x86\x51\x92\x3e\xd9\x18\x8f\x44\xf4\x88\x61\xda\xa6\x59\xf1\xdb\x03\xf6\x24\x70\x30\x3c\x15\xac\xe3\x3a\xcd\x6c\x3a\xaa\x02\x1e\x98\x61\x0a\x2e\xb8\xfa\xbc\x8b\x4b\x63\x7d\x86\x09\xea\xbd\x3e\x02\xa4\x83\x76\xbe\x58\xab\x17\xcf\x04\x21\xd9\x79\xd9\x11\x93\x1c\x9a\xa7\x20\xe5\x59\xcd\xd4\x1e\xd1\x9c\x84\xe1\x07\xd3\xf1\x66\x69\x90\xcb\x6e\x08\xec\xf3\x82\x90\x99\x8d\x06\x9d\x62\x9f\x04\x17\x1e\x33\x3d\xc7\x72\xec\x6e\x2d\x14\x6c\x71\x1c\xfb\x40\x43\x72\x6a\x49\x11\x47\x6e\xd9\xeb\x7c\xcd\xba\x6b\xaa\xe5\x47\xf0\xc4\x5a\xe7\x85\x88\x1c\x3e\x52\x7a\x03\x6b\xd9\x5f\x54\xc7\xa0\x97\x1e\xc2\x55\xf3\xf5\x5d\x85\x4a\x8d\x83\xc7\x50\x6f\x06\x9d\x8c\x78\x9e\x81\xdc\x51\xc3\xa0\x8b\x93\x55\x7c\x45\x27\xf9\x9d\xdf\xd5\xc2\xbd\x4e\x7a\xca\xa1\x98\xdb\x39\x73\x3c\xde\xe0\xca\x85\xb9\x7f\x45\x6a\xb9\xe9\xe2\xb7\xf5\x0c\x1d\xe2\x03\xf9\x54\xf5\x87\xfa\xd6\x96\xdd\x4d\xbd\xc8\xf0\x48\x6d\xb7\xd6\x1b\xcb\x77\x25\x44\x8e\xf4\xc1\x8c\xd2\x9e\xe4\x1a\xf8\xac\xc4\xdd\x5e\xf7\x40\xa2\xf5\x3f\x5c\x50\x3a\x0c\x89\x69\xff\x7b\x0c\x9e\x88\xd2\x26\xdd\x91\xec\xd6\x3f\xba\xb5\xa1\xc1\x58\x02\x86\x18\xe0\xb6\x45\x57\xf8\x59\xfd\x2f\x18\x41\x70\x5b\x1e\x0e\x83\xc9\x40\x57\x3f\x78\x45\xf8\xb8\x0c\x23\xee\x21\x5b\x3e\x70\x70\x6d\x36\xeb\x50\x73\x29\xdd\xed\xec\x11\x62\xbd\xc3\x3a\x30\xa0\xb0\xdd\x5b\x66\xe8\x41\xd4\x8b\xbb\xc7\x18\x6e\x42\xf2\xd0\xfc\x7e\xc7\xa6\xbd\xa9\x7b\x61\xfe\x17\xfc\x0e\x99\x82\xc4\xff\xcf\x56\x4d\xdb\xd0\xf4\x48\x24\x1e\x7d\x13\xe0\xa5\xa5\x75\x13\x05\xa0\xc0\xbe\xc9\xf6\x1a\x3d\xc9\xca\x9c\x21\x99\x84\x0b\x0e\xa5\xe4\x4b\x61\x8b\xb6\x32\xac\x96\x5c\xa8\x32\x1b\x7b\xb6\x95\x3a\xb6\x8c\xa0\xa4\x96\x69\xe6\x6c\xb3\xaf\x9e\xa4\x00\x3e\xd7\x94\x00\x16\x17\x21\x1c\xde\x86\xd0\xb5\xdf\x65\x3c\x54\xc4\xe1\x90\xe4\xf4\x0d\x92\xd3\x2b\x4e\x1e\xb7\x60\xbd\x72\xc5\x06\x9d\x3a\x54\x8e\x43\x1e\x0c\xcb\xbc\xe0\xc8\x08\x43\x78\xc3\xdc\xba\xcc\x77\x23\xbc\xbd\xa2\xc4\x11\xd6\x00\x39\x46\x00\x60\x0f\x63\x21\x2c\x55\x15\x38\x75\x85\x25\x5e\x53\xd2\x21\x68\x98\x02\x0c\xe1\x6b\x16\x15\x0f\x94\xd0\x3d\x7b\xd8\x2b\xbd\xbd\x19\xf5\xaa\x99\xff\xad\x5c\xf4\x9d\x41\x9f\xcb\xcf\x00\x6a\xde\x34\x3d\xbf\x68\xbb\x63\x71\x0b\x26\x5a\x82\xa6\xe7\x96\xce\xe2\xd6\xe2\xe3\x08\x53\x02\x3d\x46\x95\x40\x1f\xc6\xd5\x96\x03\x25\x52\x5b\xed\x7e\xd1\xef\x69\x81\xba\x06\xcf\x2e\x39\xc0\xe2\xa5\xcb\x18\xb5\x38\x2a\x19\x52\xe8\xb0\xf0\x54\xcb\x0b\x12\x22\xca\xc9\xa6\x4f\x38\xe7\xd6\xb6\x47\x65\xc3\xc6\x47\xc5\xa7\x56\x0a\x9e\xb8\x61\x85\xfa\x7c\xbf\xf8\x58\xf6\xec\xf7\xb3\xce\x70\xd5\x1c\xd6\x75\x61\x60\xe9\x73\x80\xa5\xaf\x08\x2c\xbd\x82\x8a\x66\xa2\x56\xda\x74\xb6\x65\x9f\xc3\x64\x20\xa8\xe5\xe5\x09\xcd\x00\x27\x17\xf9\x54\x29\xa8\x6e\x32\x95\xb2\x75\x15\xb2\xe0\x13\xd4\x70\x0e\xed\x8e\x0a\xde\xc7\x0e\x64\xaa\x36\x0e\xb2\x23\xbb\xdf\xe2\x66\x21\x2f\xbf\x70\xd8\x1d\xea\xc3\x3b\x49\x09\x60\x71\x92\x20\x58\xe3\x91\xb8\x1d\x47\x24\x77\x02\xbf\x8a\x19\xa5\x70\x30\x0f\x2c\x8c\x8b\xe0\x2e\xd8\x79\x78\x0a\x70\x97\xcb\x62\x3a\x08\x69\xcd\x1b\xa0\xb5\x3c\x84\xd3\x46\x3b\x41\xa5\xb0\x15\x39\xc6\x89\x01\xbd\xc6\x41\x27\x9a\xc3\x45\x2e\xec\xe7\x2d\x0a\x3a\xa7\x29\xec\x9d\x0f\x94\x2b\x98\x48\xaf\x90\x59\x25\xc5\xe4\x2d\xbc\x5e\x67\xdf\x96\x17\x45\x8e\x91\xb4\xe8\xb5\x74\x4d\x33\xff\x54\x17\x01\x4b\xd3\xf5\x09\x63\x7d\x18\x17\x16\xf1\x78\xd4\x8f\x0d\x69\xdf\x85\xcf\x5b\xbf\x0d\x8d\xe5\xaf\x1a\x8c\x32\x18\x58\x6c\x40\x64\xc3\xbc\xdb\x47\x76\xa6\x75\x84\x91\x56\x74\x64\x10\x90\xcd\x86\x66\xf0\x6a\x9f\xda\xd2\x08\xa4\xc4\x15\x95\x7b\xae\x4d\x58\x1a\xa7\x17\x3b\x0e\x0c\x6a\x78\x83\x93\x4d\x80\xe5\xf1\xb3\xc8\xd0\x2e\xf3\xc1\x5e\x0c\xa2\xa1\x9b\x85\xc1\xda\xbe\xb6\xc7\x75\x8c\x0c\x0e\xbd\x67\x65\x11\xb4\xbf\xf0\x49\x2b\x8f\x8b\x80\x52\x70\x71\x1f\xd3\x48\xd5\x65\x21\x51\x0c\x03\x70\xe7\x03\x22\x61\x70\xa5\x93\x08\x14\x37\xf9\xe1\x03\xf2\xc1\xcd\xaa\x11\x0e\xee\x30\xd9\x28\x3b\x53\xbb\xc4\x51\x0d\x41\x19\xa8\xf4\x84\xb0\xd9\x1a\x54\xbc\x52\xc3\x7a\x24\x84\x6c\x66\x33\x76\x57\x5d\x07\x23\xce\x4e\xe2\xdd\x6b\x55\x0d\xed\xee\xbd\x31\x40\xdf\x7a\x25\x17\x23\x78\xfa\x19\xc4\xff\x2f\x2f\x41\x86\x1d\xf0\xef\x41\x1e\x68\xff\x9f\xf2\x1e\xe4\x50\xa3\xdd\xc5\x5d\x99\xb0\x88\x3b\x1e\x3e\x0a\x71\xc0\x1c\x8e\x1f\xcc\x9b\xc1\xb9\x28\x66\x91\xd1\x85\x61\xc4\x2a\x51\x22\x64\x81\x48\x88\x4d\x27\x90\xe4\xd5\xed\xa6\x69\x17\x6d\x19\xb8\xdf\xb0\xbd\xc0\x1f\x2c\x6a\x4d\x4a\x8c\xa3\xcd\xc7\x5d\x90\x94\xf1\x2d\x9d\xa4\xab\xa2\x27\xd5\x48\xbe\xa5\x6a\xed\x66\xd0\xf6\xe8\xd5\x98\xa5\x0d\x43\xc5\x42\x89\xa7\xcc\x6a\xd0\xe5\x01\xbb\x8a\xba\x2d\xa5\x24\x52\x85\xf9\x9a\x29\x47\xd4\xac\xa0\xf7\x92\x12\xc6\x61\x94\x14\x79\x6d\x0d\x8f\x08\xcb\x97\xa6\x8f\x0d\x5d\x82\x4e\x6a\x35\x83\xce\x05\xb5\x02\x6a\x9a\xe3\x06\xbd\x19\x1a\xfe\x4a\x2a\x9c\xae\xd8\x4a\xb9\xeb\x35\x65\xa7\x0f\xcd\x73\x74\x45\x49\x81\xf2\xa4\x80\xf9\x20\xeb\x4a\x4e\xdf\x86\xe9\xc1\x03\x6c\xc8\x75\x4f\xaf\x4d\xc0\x04\x66\x28\x79\xcb\xc1\x1d\x7f\xd0\x40\x38\xc1\x43\x6c\xec\x20\x25\xcf\xba\xec\x36\xdc\x5f\x0e\xf4\x8d\x2b\x0c\xd6\x02\xb3\xcc\x90\xe3\xed\x25\x5c\xe8\x12\x9b\x59\x89\x25\xaa\xbc\x15\xa2\xc8\x64\xf9\x40\xc3\x4f\x41\x2e\xd0\x90\xb9\xcf\xd9\x08\x2b\x00\x29\xec\xdd\x6a\x3f\xa2\xbc\xef\xdb\x6a\xbe\xe7\x7b\x51\xb5\xff\xe0\x45\x29\xc6\x26\x2e\x6f\x04\xdb\xed\xcd\xa5\xe2\x52\xbf\x0e\xc3\x0e\xde\x9f\x1f\xc0\x49\x08\x2c\xeb\x96\x04\xc0\xb2\x2a\x70\xad\xe0\x00\xe4\xb2\x31\x82\xd8\xf2\x8e\x93\x75\x39\x2f\x4f\xe2\xad\x45\x7a\x79\xac\x39\xdd\xb6\xdf\x59\x98\xf6\xcb\xb3\xab\x8b\x5b\x68\x89\x41\x95\x26\x00\x19\x10\x06\x67\x29\x71\x20\x2b\xa0\x10\x35\xba\x51\xe3\x72\x3d\xd6\xc3\x6c\x47\x88\xad\x9b\x86\xbb\x6d\xdb\x97\xa7\x73\xf8\x15\x74\x0e\xd8\xcf\xb6\xe0\x52\x66\x96\x9e\xed\x37\x7d\xc5\x56\x60\xd6\x9a\x5a\x22\xf1\x23\xf1\xe5\x2e\x6f\x2d\xd6\x28\xc2\xee\xa4\x0f\x8e\x1e\xcc\xa2\xd5\x97\xf5\xf2\xda\x9e\x3c\x7c\x78\xf5\xe6\x92\x3e\x17\xed\x8d\x5c\x84\xea\x48\x3f\x56\x3b\x06\xd3\xf7\x92\x79\xc0\x94\x02\xd8\xbf\x20\xc5\x96\x0a\xdf\x98\x95\xed\xa7\x6a\xe1\x08\xe6\xe2\xf8\x0c\x7a\x07\x4a\x0a\x17\x9f\x36\x8d\x40\x41\x26\xf9\xf9\x4e\xd0\x74\x34\x91\xe4\x67\x0c\x84\x1f\x0a\x66\xfb\xca\x9d\x21\x30\x8c\x68\x32\x14\xcf\xf4\x35\x49\xc5\xf4\x48\x54\x89\xa1\x03\x89\xc5\xb3\xb6\xa1\x44\x19\x17\xb9\xcb\x2c\x7d\x16\x31\xb3\x70\xe7\x1a\x3c\x2b\xfc\x65\xb6\x3f\x61\x65\x81\x94\x71\xdb\xa0\x27\x83\x2b\xc4\x25\x22\xc8\x4c\xf8\xab\xbd\xbc\x12\x57\xed\x5f\xda\x19\x95\x88\xde\x60\x19\xe1\x75\xc2\xa6\xe6\x16\x3b\x9a\xa0\xf6\xc1\x7e\x1f\x57\x7c\xd7\xb6\x2f\xba\x38\xd3\x81\xb9\x7b\x28\xd5\x81\xc5\xd7\x51\x0a\x9b\xef\x76\x6e\xdb\x08\x1e\xd7\x01\xd9\x06\x20\x9f\x84\xe1\x04\x10\xb4\x08\xba\x41\x3d\xe2\x2f\x16\x02\xb1\xdb\x98\x02\x0c\xb7\x1e\x4d\x6e\x96\x4b\x0e\x89\xc5\xb1\x1b\x35\x9e\x09\x22\x64\x9d\xb1\x01\xb6\x95\x14\x2f\xc8\x8c\x95\x72\x50\x72\xf1\x98\xec\x5d\xd6\x77\x48\xe4\x53\x85\x81\xb7\x7b\xf7\xa0\xf5\xbb\x7d\x2d\xe7\xa5\x20\x4b\x1b\xe2\xac\xb0\x11\x48\x2f\x6d\xd3\xf4\xf6\x78\x42\x20\xba\xbc\xa3\x64\xda\xd3\xfa\xb5\x43\x30\xdf\x74\x2d\x32\x09\x06\x1f\x94\xc1\x3d\xdb\x02\x66\xf4\xe3\x42\xd4\xef\x71\x09\xea\xf7\x01\x70\x31\xcc\xb0\x8d\xff\x12\xbf\x84\x49\xbb\x1e\xb3\x99\xa7\x52\xa3\x0d\x58\xd2\x86\x74\x13\xe2\xa0\x98\x7b\xc2\x38\xb5\xbb\xb9\x49\xd2\x20\xc8\x50\x7a\xf1\xa9\xa1\xbc\xe0\x53\x43\xd9\xc7\xa7\x6a\xc7\x06\x3d\xe8\xba\x8d\x4d\xc4\xe5\xe5\x9b\x78\xb6\x7d\x6e\xf0\x26\x0e\xdb\x8b\xdd\xe3\x20\xae\x1c\x68\xee\x5e\xca\xce\x81\x8f\x82\x12\x8a\xcd\x10\x7f\x9a\x3a\xac\xa3\xfb\x7d\x53\xf5\xe5\xf7\xf7\x70\x75\x7e\xaf\xaf\x8a\xf9\xbd\x47\xe1\xba\xa9\xe0\x0b\x10\x2c\x9c\x6a\x71\x00\x3d\xee\xf0\x1e\x3d\xdb\x99\x8a\x63\x75\xd5\x96\xb6\xbf\x9f\x04\x2f\x69\x8e\x48\xda\x6f\x03\x8e\xa0\xc3\x2d\xc0\x3a\xc6\x8e\x25\x6d\x90\x91\x91\xbc\xd0\xcb\x43\x83\x6c\xa0\xf9\xce\xaa\x79\x8e\x64\xdf\x43\x09\x40\x6b\x01\x69\x61\x4c\xe1\xfb\x87\x78\xb2\xaf\x6b\xb8\x7e\x58\x11\x7b\x0c\x19\x7a\xb6\xd1\xbb\xc9\x50\xb0\xe9\xb3\xc9\x5a\x00\x63\x77\xea\x8b\x33\x1e\x70\xa8\xb1\x18\x0e\x18\x3e\x4f\xd5\xdf\x4b\x09\x30\x18\x0c\xfb\x8c\x0e\xc3\xdb\xfd\x16\x8f\x26\x5e\x72\x3c\x34\x3c\x7b\x39\xea\xd6\x8e\x24\xfd\x3c\xec\x11\x12\x1c\x13\x12\x77\x46\xf6\xe5\xc8\x36\x7a\xc3\x25\x2e\x8f\xf0\xe8\x48\xdf\xe0\x4a\xcb\x61\x87\x36\x21\x2f\x96\x46\x85\xde\x71\x9e\x13\x63\x27\x0a\x9b\x27\xb4\x23\x15\xf3\x34\x9c\x24\x95\xdf\xf7\xe5\x9e\x2a\x2f\xeb\x15\xc8\xf4\xcf\xfc\x93\xc4\x1d\xfe\xe9\x10\x24\x2e\x84\x50\x78\xb1\x47\xc3\x53\x73\x2a\x84\xde\x8b\x52\x1c\x2d\xdc\x29\x97\x04\x33\x13\xee\x02\x67\xf8\x3d\xdd\x41\x85\x1d\x1f\x4d\xe2\x7c\x9b\x45\x5a\x53\x4d\x30\x77\xaf\x7e\x7e\x73\x3e\x80\x9c\x60\x06\x9a\x33\xc1\x3c\x34\x67\x82\x55\xc8\x6d\xad\x1b\x02\x6e\x68\xa7\x47\x20\x90\x07\x07\x20\x04\xed\x2d\x33\x40\xc9\x93\x15\x29\xe9\x17\x44\x59\xe2\x20\x23\x44\x2f\xbf\x63\xa0\xe0\x85\x26\x81\xb2\x07\x9a\x46\xad\xd6\x61\x9b\xb5\xdc\x34\x7a\xae\x23\x26\x42\x01\xd7\x11\x13\xfb\xc9\xee\x19\x34\x3b\x02\x55\x85\x3e\x68\x25\xf0\x17\x9a\x64\xa0\x06\xe2\x6b\x36\x08\xad\xda\x75\x93\x08\xb7\x72\xd2\xeb\x09\x7e\x45\x53\xa7\xcb\x8f\xd7\x8b\xc0\xfa\x15\xc8\xef\x3e\x4b\x09\x03\x5e\x2d\x1c\x62\x4c\x67\xfc\xf2\xc4\xbf\x5d\x05\xf5\xf2\x60\x30\x9b\x6a\x59\x3a\x65\xb4\x8e\xe6\x0d\xa5\x45\xc0\xeb\xbe\xdf\x75\xe6\x16\x8e\x97\x96\xd2\x73\xfa\x31\x18\x44\x58\x95\x8e\x64\x54\xd3\xae\xc2\x05\x41\x80\x17\x49\x98\xc6\xb8\x41\xeb\xee\x10\x80\xeb\xf6\x30\xe4\x71\xab\xd6\x31\x4e\x5b\x21\xfe\xc9\x78\x2f\x0b\xb8\xd6\x59\x06\x98\x6c\x99\xa1\x74\x97\x64\x18\xec\x92\x66\x2d\x34\x5b\xb4\x12\xa2\x8e\xff\x5c\xb1\xa9\x86\xcb\x09\xd7\x9e\xa5\x75\x44\x7b\xc5\x5e\x1c\xeb\xf4\xd3\xc3\xfb\xf0\xfc\x82\x26\xcb\x98\x08\xe9\x1f\x03\x94\x9f\xcb\xc5\x3e\xb8\x39\xfc\x59\x7e\xab\xaa\xde\x57\xd3\x98\x71\xf0\xbe\xc6\x73\x0e\x17\x92\x12\xc0\x4c\xc5\xa9\xb4\xae\xc3\xc4\xd9\x4c\x9d\x0f\xb6\xef\x9a\xc7\x61\x96\xa1\xcc\xe2\xca\x0c\x99\xe4\x67\xb6\x11\x47\xab\x81\x11\x96\xc1\x86\x12\x4f\x98\x86\x58\x57\x81\xc1\x9b\xe5\x4d\x74\xdc\xb2\x9a\x1d\xb3\xac\xdd\x2c\x80\xc5\xf1\x21\x78\xea\x55\xfa\x20\xf9\x77\x99\x58\x26\xef\xc5\x6c\xe9\xc3\xe0\x81\x39\xd3\xee\x07\x66\x74\x91\x0b\xf9\x7d\x79\xd4\xa1\x2d\xeb\x20\xbc\x9d\xfc\x2a\x46\x2f\x42\x59\x2c\xe6\x6f\x7d\x2c\xe6\xe8\x99\xe9\xe1\x53\x11\x2e\x74\x3f\x6a\x65\xbb\x44\x79\x16\x24\xe8\xc1\x93\xae\x5d\x3c\xb9\x1f\x46\xe5\x67\x7d\x69\x1c\xf0\x3a\xaa\x52\x46\x67\xcf\x1b\xfc\xa6\x4f\x0a\xc8\xef\xb0\x5e\x51\xea\x49\xd5\x1c\x1f\xdb\xc5\xfc\xd7\x1a\x86\xe1\xb9\x0d\x51\x51\x58\xdb\xb0\x42\x8d\xba\x3d\xae\x6f\xf0\xe2\x42\xf0\xaa\x44\x53\x7f\x4d\xc7\x26\xe3\xfb\xfe\xa6\xc1\x9e\xbf\xba\x5b\x2e\xfe\x96\x62\xdf\x7e\x0f\x68\x41\x66\x74\x7a\x3a\x3d\x79\x20\xa0\x84\x3c\xc6\x65\xb3\x48\x3f\x6e\x9f\xc6\x98\x32\x86\xd3\xa8\x91\xde\xbf\x0b\xc2\x72\xc3\xc9\x58\x32\xaa\x4e\x43\xaa\x4a\x30\xf4\xef\xdc\x63\x56\xc9\x7b\x8e\x8e\xfc\x21\xc9\x57\x3c\x26\xfa\x3f\xc1\x63\x73\xe2\xa3\x00\x1a\xa5\xcf\x44\x7e\xf2\xd7\xb7\x5c\xf1\xb7\x69\x57\x12\xd3\x44\x5c\xdf\x6f\xb7\x48\xd8\xd2\xd1\x9a\x58\x11\x27\xac\x91\xc0\x6f\x26\xe2\x67\x81\x9f\x45\x7e\x83\x5f\xd7\xf8\x75\x5d\x96\x1f\xa5\x30\xb8\x2a\x15\xa7\xc3\xf9\x1a\x29\x37\xf8\x7d\xc3\xf1\x6f\xef\xb3\x7f\x16\xb7\xa3\xef\x17\xd8\x0f\x44\x13\xe6\xe6\x34\xdd\x7e\x50\xba\xbc\xae\xff\xd4\x3f\xb4\x7f\x9f\xaf\xfd\x6f\x34\x09\x5f\x94\xc2\xcd\x6b\x92\x7c\xde\x07\x6b\xec\xd7\x56\xa1\x7c\x53\x2a\xf7\x43\x13\xe5\x93\xd2\xda\xfc\x3a\xf3\xfd\xd2\x2f\xa4\xfa\x5e\xe9\x17\xa1\xb7\x68\x9b\x1d\x47\x16\xfd\xe0\x1e\xa2\xf4\x6f\x81\x9d\x52\x9e\x46\x4f\x42\x38\x49\xf6\x02\xde\xf0\x83\x76\x78\x87\x97\x7d\x4a\x67\x89\x45\xfc\xad\xea\xdd\xde\x9d\x4f\x7d\xb8\x69\x01\xf3\x21\x98\xc4\x50\x9d\x1f\xf8\x91\xd7\xcf\x68\x76\xb3\x79\xa5\x8f\xbe\x95\x29\x1f\x06\x1e\xfe\xdb\xbf\x01\x9c\x3e\xff\xfd\xdf\xd3\xb3\xe7\x8f\xd2\xf2\x33\x07\x94\xeb\xd2\x6d\xfe\x19\xa7\x02\x85\xa2\x9f\x2f\x22\x40\xf6\x7f\x85\xc9\xb1\x5e\x43\xe9\x53\xdc\xb8\x7b\xfa\x7f\x01\x00\x00\xff\xff\x28\xac\x01\xc4\x35\xae\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: 44681, mode: os.FileMode(420), modTime: time.Unix(1447476053, 0)} + info := bindataFileInfo{name: "conf/locale/locale_en-US.ini", size: 44597, mode: os.FileMode(420), modTime: time.Unix(1447648800, 0)} a := &asset{bytes: bytes, info: info} return a, nil } diff --git a/public/css/gogs.css b/public/css/gogs.css index 5ade64d9..b4f4782d 100755 --- a/public/css/gogs.css +++ b/public/css/gogs.css @@ -2393,6 +2393,85 @@ footer .container .links > *:first-child { padding: 5px 10px; font-size: 1.2em; } +.repository.release #release-list { + border-top: 1px solid #DDD; + margin-top: 20px; + padding-top: 15px; +} +.repository.release #release-list > li { + list-style: none; +} +.repository.release #release-list > li .meta, +.repository.release #release-list > li .detail { + padding-top: 30px; + padding-bottom: 40px; +} +.repository.release #release-list > li .meta { + text-align: right; + position: relative; +} +.repository.release #release-list > li .meta .tag:not(.icon) { + display: block; + margin-top: 15px; +} +.repository.release #release-list > li .meta .commit { + display: block; + margin-top: 10px; +} +.repository.release #release-list > li .detail { + border-left: 1px solid #DDD; +} +.repository.release #release-list > li .detail .author img { + margin-bottom: -3px; +} +.repository.release #release-list > li .detail .download { + margin-top: 20px; +} +.repository.release #release-list > li .detail .download > a .octicon { + margin-left: 5px; + margin-right: 5px; +} +.repository.release #release-list > li .detail .download .list { + padding-left: 0; + border-top: 1px solid #eee; +} +.repository.release #release-list > li .detail .download .list li { + list-style: none; + display: block; + padding-top: 8px; + padding-bottom: 8px; + border-bottom: 1px solid #eee; +} +.repository.release #release-list > li .detail .dot { + width: 9px; + height: 9px; + background-color: #ccc; + z-index: 999; + position: absolute; + display: block; + left: -5px; + top: 40px; + border-radius: 6px; + border: 1px solid #FFF; +} +.repository.new.release .target { + min-width: 500px; +} +.repository.new.release .target .at { + margin-left: -5px; + margin-right: 5px; +} +.repository.new.release .target .dropdown.icon { + margin: 0; + padding-top: 3px; +} +.repository.new.release .target .selection.dropdown { + padding-top: 10px; + padding-bottom: 10px; +} +.repository.new.release .prerelease.field { + margin-bottom: 0; +} .issue.list { list-style: none; padding-top: 15px; diff --git a/public/less/_repository.less b/public/less/_repository.less index e73d78c4..004e7233 100644 --- a/public/less/_repository.less +++ b/public/less/_repository.less @@ -794,6 +794,102 @@ } } } + + &.release { + #release-list { + border-top: 1px solid #DDD; + margin-top: 20px; + padding-top: 15px; + + >li { + list-style: none; + + .meta, + .detail { + padding-top: 30px; + padding-bottom: 40px; + } + .meta { + text-align: right; + position: relative; + + .tag:not(.icon) { + display: block; + margin-top: 15px; + } + .commit { + display: block; + margin-top: 10px; + } + } + .detail { + border-left: 1px solid #DDD; + + .author { + img { + margin-bottom: -3px; + } + } + .download { + margin-top: 20px; + + >a { + .octicon { + margin-left: 5px; + margin-right: 5px; + } + } + + .list { + padding-left: 0; + border-top: 1px solid #eee; + + li { + list-style: none; + display: block; + padding-top: 8px; + padding-bottom: 8px; + border-bottom: 1px solid #eee; + } + } + } + .dot { + width: 9px; + height: 9px; + background-color: #ccc; + z-index: 999; + position: absolute; + display: block; + left: -5px; + top: 40px; + border-radius: 6px; + border: 1px solid #FFF; + } + } + } + } + } + &.new.release { + .target { + min-width: 500px; + + .at { + margin-left: -5px; + margin-right: 5px; + } + .dropdown.icon { + margin: 0; + padding-top: 3px; + } + .selection.dropdown { + padding-top: 10px; + padding-bottom: 10px; + } + } + .prerelease.field { + margin-bottom: 0; + } + } } // End of .repository diff --git a/routers/repo/release.go b/routers/repo/release.go index 680ecd1b..e2a8d6f6 100644 --- a/routers/repo/release.go +++ b/routers/repo/release.go @@ -13,15 +13,12 @@ import ( ) const ( - RELEASES base.TplName = "repo/release/list" - RELEASE_NEW base.TplName = "repo/release/new" - RELEASE_EDIT base.TplName = "repo/release/edit" + RELEASES base.TplName = "repo/release/list" + RELEASE_NEW base.TplName = "repo/release/new" ) func Releases(ctx *middleware.Context) { ctx.Data["Title"] = ctx.Tr("repo.release.releases") - ctx.Data["IsRepoToolbarReleases"] = true - ctx.Data["IsRepoReleaseNew"] = false rawTags, err := ctx.Repo.GitRepo.GetTags() if err != nil { @@ -45,7 +42,7 @@ func Releases(ctx *middleware.Context) { continue } if rel.TagName == rawTag { - rel.Publisher, err = models.GetUserByID(rel.PublisherId) + rel.Publisher, err = models.GetUserByID(rel.PublisherID) if err != nil { ctx.Handle(500, "GetUserById", err) return @@ -105,7 +102,7 @@ func Releases(ctx *middleware.Context) { continue } - rel.Publisher, err = models.GetUserByID(rel.PublisherId) + rel.Publisher, err = models.GetUserByID(rel.PublisherID) if err != nil { ctx.Handle(500, "GetUserById", err) return @@ -140,27 +137,13 @@ func Releases(ctx *middleware.Context) { } func NewRelease(ctx *middleware.Context) { - if !ctx.Repo.IsOwner() { - ctx.Handle(403, "release.ReleasesNew", nil) - return - } - ctx.Data["Title"] = ctx.Tr("repo.release.new_release") ctx.Data["tag_target"] = ctx.Repo.Repository.DefaultBranch - ctx.Data["IsRepoToolbarReleases"] = true - ctx.Data["IsRepoReleaseNew"] = true ctx.HTML(200, RELEASE_NEW) } func NewReleasePost(ctx *middleware.Context, form auth.NewReleaseForm) { - if !ctx.Repo.IsOwner() { - ctx.Handle(403, "release.ReleasesNew", nil) - return - } - ctx.Data["Title"] = ctx.Tr("repo.release.new_release") - ctx.Data["IsRepoToolbarReleases"] = true - ctx.Data["IsRepoReleaseNew"] = true if ctx.HasError() { ctx.HTML(200, RELEASE_NEW) @@ -185,8 +168,8 @@ func NewReleasePost(ctx *middleware.Context, form auth.NewReleaseForm) { } rel := &models.Release{ - RepoId: ctx.Repo.Repository.ID, - PublisherId: ctx.User.Id, + RepoID: ctx.Repo.Repository.ID, + PublisherID: ctx.User.Id, Title: form.Title, TagName: form.TagName, Target: form.Target, @@ -198,67 +181,67 @@ func NewReleasePost(ctx *middleware.Context, form auth.NewReleaseForm) { } if err = models.CreateRelease(ctx.Repo.GitRepo, rel); err != nil { - if err == models.ErrReleaseAlreadyExist { + if models.IsErrReleaseAlreadyExist(err) { + ctx.Data["Err_TagName"] = true ctx.RenderWithErr(ctx.Tr("repo.release.tag_name_already_exist"), RELEASE_NEW, &form) } else { ctx.Handle(500, "CreateRelease", err) } return } - log.Trace("%s Release created: %s/%s:%s", ctx.Req.RequestURI, ctx.User.LowerName, ctx.Repo.Repository.Name, form.TagName) + log.Trace("Release created: %s/%s:%s", ctx.User.LowerName, ctx.Repo.Repository.Name, form.TagName) ctx.Redirect(ctx.Repo.RepoLink + "/releases") } func EditRelease(ctx *middleware.Context) { - if !ctx.Repo.IsOwner() { - ctx.Handle(403, "release.ReleasesEdit", nil) - return - } + ctx.Data["Title"] = ctx.Tr("repo.release.edit_release") + ctx.Data["PageIsEditRelease"] = true tagName := ctx.Params(":tagname") rel, err := models.GetRelease(ctx.Repo.Repository.ID, tagName) if err != nil { - if err == models.ErrReleaseNotExist { + if models.IsErrReleaseNotExist(err) { ctx.Handle(404, "GetRelease", err) } else { ctx.Handle(500, "GetRelease", err) } return } - ctx.Data["Release"] = rel + ctx.Data["tag_name"] = rel.TagName + ctx.Data["tag_target"] = rel.Target + ctx.Data["title"] = rel.Title + ctx.Data["content"] = rel.Note + ctx.Data["prerelease"] = rel.IsPrerelease - ctx.Data["Title"] = ctx.Tr("repo.release.edit_release") - ctx.Data["IsRepoToolbarReleases"] = true - ctx.HTML(200, RELEASE_EDIT) + ctx.HTML(200, RELEASE_NEW) } func EditReleasePost(ctx *middleware.Context, form auth.EditReleaseForm) { - if !ctx.Repo.IsOwner() { - ctx.Handle(403, "release.EditReleasePost", nil) - return - } + ctx.Data["Title"] = ctx.Tr("repo.release.edit_release") + ctx.Data["PageIsEditRelease"] = true tagName := ctx.Params(":tagname") rel, err := models.GetRelease(ctx.Repo.Repository.ID, tagName) if err != nil { - if err == models.ErrReleaseNotExist { + if models.IsErrReleaseNotExist(err) { ctx.Handle(404, "GetRelease", err) } else { ctx.Handle(500, "GetRelease", err) } return } - ctx.Data["Release"] = rel + ctx.Data["tag_name"] = rel.TagName + ctx.Data["tag_target"] = rel.Target + ctx.Data["title"] = rel.Title + ctx.Data["content"] = rel.Note + ctx.Data["prerelease"] = rel.IsPrerelease if ctx.HasError() { - ctx.HTML(200, RELEASE_EDIT) + ctx.HTML(200, RELEASE_NEW) return } - ctx.Data["Title"] = ctx.Tr("repo.release.edit_release") - ctx.Data["IsRepoToolbarReleases"] = true - rel.Title = form.Title rel.Note = form.Content rel.IsDraft = len(form.Draft) > 0 diff --git a/templates/.VERSION b/templates/.VERSION index 7b98f0fd..21364203 100644 --- a/templates/.VERSION +++ b/templates/.VERSION @@ -1 +1 @@ -0.7.11.1115 Beta \ No newline at end of file +0.7.12.1115 Beta \ No newline at end of file diff --git a/templates/repo/release/edit.tmpl b/templates/repo/release/edit.tmpl deleted file mode 100644 index 062884e2..00000000 --- a/templates/repo/release/edit.tmpl +++ /dev/null @@ -1,59 +0,0 @@ -{{template "ng/base/head" .}} -{{template "ng/base/header" .}} -
- {{template "repo/header_old" .}} -
-
- {{template "ng/base/alert" .}} -
-

{{.i18n.Tr "repo.release.edit_release"}}

-
- {{.CsrfTokenHtml}} -
- {{.Release.TagName}} - @ - {{.Repository.DefaultBranch}} -
-
- -
-
-
-
- {{.i18n.Tr "repo.release.content_with_md" "https://help.github.com/articles/markdown-basics" | Str2html}} -
-
-
    -
  • - -
  • -
  • - -
  • -
-
-
-
- -
-
-
{{.i18n.Tr "repo.release.loading"}}
-
-
-
- - {{.i18n.Tr "repo.release.prerelease_desc"}} -

{{.i18n.Tr "repo.release.prerelease_helper"}}

- - {{if .Release.IsDraft}} - - {{end}} -
-
- -
-
- {{template "repo/sidebar" .}} -
-
-{{template "ng/base/footer" .}} \ No newline at end of file diff --git a/templates/repo/release/list.tmpl b/templates/repo/release/list.tmpl index eb3ba91d..5fb23bda 100644 --- a/templates/repo/release/list.tmpl +++ b/templates/repo/release/list.tmpl @@ -1,73 +1,80 @@ -{{template "ng/base/head" .}} -{{template "ng/base/header" .}} -
- {{template "repo/header_old" .}} -
-
-
-

- {{.i18n.Tr "repo.release.releases"}} - - {{if .IsRepositoryAdmin}} - - - - {{end}} -

- +{{template "base/head" .}} +
+ {{template "repo/header" .}} +
+ {{template "repo/sidebar" .}} +

+ {{.i18n.Tr "repo.release.releases"}} + {{if .IsRepositoryAdmin}} + + {{end}} +

+
+ + {{end}} + +
-{{template "ng/base/footer" .}} \ No newline at end of file +{{template "base/footer" .}} \ No newline at end of file diff --git a/templates/repo/release/new.tmpl b/templates/repo/release/new.tmpl index d8909142..8514b2c8 100644 --- a/templates/repo/release/new.tmpl +++ b/templates/repo/release/new.tmpl @@ -1,68 +1,83 @@ -{{template "ng/base/head" .}} -{{template "ng/base/header" .}} -
- {{template "repo/header_old" .}} -
-
- {{template "ng/base/alert" .}} -
-

{{.i18n.Tr "repo.release.new_release"}}

-
- {{.CsrfTokenHtml}} -
- - @ -
- - -
- -
-

{{.i18n.Tr "repo.release.tag_helper"}}

-
- -
-
-
-
- {{.i18n.Tr "repo.release.content_with_md" "https://help.github.com/articles/markdown-basics" | Str2html}} -
-
-
    -
  • - -
  • -
  • - -
  • -
-
-
-
- -
-
-
{{.i18n.Tr "repo.release.loading"}}
-
-
- - {{.i18n.Tr "repo.release.prerelease_desc"}} -

{{.i18n.Tr "repo.release.prerelease_helper"}}

- - -
-
- +{{template "base/head" .}} +
+ {{template "repo/header" .}} +
+ {{template "repo/sidebar" .}} +

+ {{if .PageIsEditRelease}} + {{.i18n.Tr "repo.release.edit_release"}} +
{{.i18n.Tr "repo.release.edit_subheader"}}
+ {{else}} + {{.i18n.Tr "repo.release.new_release"}} +
{{.i18n.Tr "repo.release.new_subheader"}}
+ {{end}} +

+ {{template "base/alert" .}} +
+ {{.CsrfTokenHtml}} +
+
+ {{if .PageIsEditRelease}} + {{.tag_name}}@{{.tag_target}} + {{else}} + + @ + + {{.i18n.Tr "repo.release.tag_helper"}} + {{end}} +
+
+
+
+ + +
+
+ + +
+
+
+
+
+
+
+ + +
+
+ {{.i18n.Tr "repo.release.prerelease_helper"}} +
+ {{if .PageIsEditRelease}} + + {{.i18n.Tr "repo.release.cancel"}} + + + {{else}} + + + {{end}} +
- {{template "repo/sidebar" .}} -
+
+ +
-{{template "ng/base/footer" .}} \ No newline at end of file +{{template "base/footer" .}} \ No newline at end of file -- cgit v1.2.3 From f455125d4de8c788143a24edefb8c6b2cef0f524 Mon Sep 17 00:00:00 2001 From: Unknwon Date: Wed, 18 Nov 2015 21:21:47 -0500 Subject: fix #878 --- README.md | 2 +- cmd/web.go | 7 +++ gogs.go | 2 +- models/error.go | 28 +++++++++++ models/publickey.go | 76 ++++++++++++++++++---------- models/webhook.go | 4 +- routers/api/v1/repo_hooks.go | 10 ++-- routers/api/v1/repo_keys.go | 115 +++++++++++++++++++++++++++++++++++++++++++ routers/repo/setting.go | 11 +++-- routers/user/setting.go | 2 +- templates/.VERSION | 2 +- 11 files changed, 220 insertions(+), 39 deletions(-) create mode 100644 routers/api/v1/repo_keys.go (limited to 'models/error.go') diff --git a/README.md b/README.md index 437ac802..e004847c 100644 --- a/README.md +++ b/README.md @@ -5,7 +5,7 @@ Gogs - Go Git Service [![Build Status](https://travis-ci.org/gogits/gogs.svg?bra ![](public/img/gogs-large-resize.png) -##### Current version: 0.7.17 Beta +##### Current version: 0.7.18 Beta
diff --git a/cmd/web.go b/cmd/web.go index cb14b7c9..a5a7db5f 100644 --- a/cmd/web.go +++ b/cmd/web.go @@ -238,6 +238,13 @@ func runWeb(ctx *cli.Context) { m.Patch("/hooks/:id:int", bind(api.EditHookOption{}), v1.EditRepoHook) m.Get("/raw/*", middleware.RepoRef(), v1.GetRepoRawFile) m.Get("/archive/*", v1.GetRepoArchive) + + m.Group("/keys", func() { + m.Combo("").Get(v1.ListRepoDeployKeys). + Post(bind(api.CreateDeployKeyOption{}), v1.CreateRepoDeployKey) + m.Combo("/:id").Get(v1.GetRepoDeployKey). + Delete(v1.DeleteRepoDeploykey) + }) }, middleware.ApiRepoAssignment()) }, middleware.ApiReqToken()) diff --git a/gogs.go b/gogs.go index a9601bfb..af403e00 100644 --- a/gogs.go +++ b/gogs.go @@ -17,7 +17,7 @@ import ( "github.com/gogits/gogs/modules/setting" ) -const APP_VER = "0.7.17.1118 Beta" +const APP_VER = "0.7.18.1118 Beta" func init() { runtime.GOMAXPROCS(runtime.NumCPU()) diff --git a/models/error.go b/models/error.go index f8fea6f5..7693e14e 100644 --- a/models/error.go +++ b/models/error.go @@ -114,6 +114,19 @@ func (err ErrUserHasOrgs) Error() string { // |____| |____/|___ /____/__|\___ > |____|__ \___ > ____| // \/ \/ \/ \/\/ +type ErrKeyUnableVerify struct { + Result string +} + +func IsErrKeyUnableVerify(err error) bool { + _, ok := err.(ErrKeyUnableVerify) + return ok +} + +func (err ErrKeyUnableVerify) Error() string { + return fmt.Sprintf("Unable to verify key content [result: %s]", err.Result) +} + type ErrKeyNotExist struct { ID int64 } @@ -155,6 +168,21 @@ func (err ErrKeyNameAlreadyUsed) Error() string { return fmt.Sprintf("public key already exists [owner_id: %d, name: %s]", err.OwnerID, err.Name) } +type ErrDeployKeyNotExist struct { + ID int64 + KeyID int64 + RepoID int64 +} + +func IsErrDeployKeyNotExist(err error) bool { + _, ok := err.(ErrDeployKeyNotExist) + return ok +} + +func (err ErrDeployKeyNotExist) Error() string { + return fmt.Sprintf("Deploy key does not exist [id: %d, key_id: %d, repo_id: %d]", err.ID, err.KeyID, err.RepoID) +} + type ErrDeployKeyAlreadyExist struct { KeyID int64 RepoID int64 diff --git a/models/publickey.go b/models/publickey.go index 0f041c09..b5646a55 100644 --- a/models/publickey.go +++ b/models/publickey.go @@ -32,10 +32,6 @@ const ( _TPL_PUBLICK_KEY = `command="%s serv key-%d --config='%s'",no-port-forwarding,no-X11-forwarding,no-agent-forwarding,no-pty %s` + "\n" ) -var ( - ErrKeyUnableVerify = errors.New("Unable to verify public key") -) - var sshOpLocker = sync.Mutex{} var SSHPath string // SSH directory. @@ -211,7 +207,7 @@ func CheckPublicKeyString(content string) (_ string, err error) { sshKeygenOutput := strings.Split(stdout, " ") if len(sshKeygenOutput) < 4 { - return content, ErrKeyUnableVerify + return content, ErrKeyUnableVerify{stdout} } // Check if key type and key size match. @@ -523,6 +519,7 @@ type DeployKey struct { RepoID int64 `xorm:"UNIQUE(s) INDEX"` Name string Fingerprint string + Content string `xorm:"-"` Created time.Time `xorm:"CREATED"` Updated time.Time // Note: Updated must below Created for AfterSet. HasRecentActivity bool `xorm:"-"` @@ -537,6 +534,16 @@ func (k *DeployKey) AfterSet(colName string, _ xorm.Cell) { } } +// GetContent gets associated public key content. +func (k *DeployKey) GetContent() error { + pkey, err := GetPublicKeyByID(k.KeyID) + if err != nil { + return err + } + k.Content = pkey.Content + return nil +} + func checkDeployKey(e Engine, keyID, repoID int64, name string) error { // Note: We want error detail, not just true or false here. has, err := e.Where("key_id=? AND repo_id=?", keyID, repoID).Get(new(DeployKey)) @@ -557,18 +564,19 @@ func checkDeployKey(e Engine, keyID, repoID int64, name string) error { } // addDeployKey adds new key-repo relation. -func addDeployKey(e *xorm.Session, keyID, repoID int64, name, fingerprint string) (err error) { - if err = checkDeployKey(e, keyID, repoID, name); err != nil { - return err +func addDeployKey(e *xorm.Session, keyID, repoID int64, name, fingerprint string) (*DeployKey, error) { + if err := checkDeployKey(e, keyID, repoID, name); err != nil { + return nil, err } - _, err = e.Insert(&DeployKey{ + key := &DeployKey{ KeyID: keyID, RepoID: repoID, Name: name, Fingerprint: fingerprint, - }) - return err + } + _, err := e.Insert(key) + return key, err } // HasDeployKey returns true if public key is a deploy key of given repository. @@ -578,39 +586,52 @@ func HasDeployKey(keyID, repoID int64) bool { } // AddDeployKey add new deploy key to database and authorized_keys file. -func AddDeployKey(repoID int64, name, content string) (err error) { - if err = checkKeyContent(content); err != nil { - return err +func AddDeployKey(repoID int64, name, content string) (*DeployKey, error) { + if err := checkKeyContent(content); err != nil { + return nil, err } - key := &PublicKey{ + pkey := &PublicKey{ Content: content, Mode: ACCESS_MODE_READ, Type: KEY_TYPE_DEPLOY, } - has, err := x.Get(key) + has, err := x.Get(pkey) if err != nil { - return err + return nil, err } sess := x.NewSession() defer sessionRelease(sess) if err = sess.Begin(); err != nil { - return err + return nil, err } // First time use this deploy key. if !has { - if err = addKey(sess, key); err != nil { - return nil + if err = addKey(sess, pkey); err != nil { + return nil, fmt.Errorf("addKey: %v", err) } } - if err = addDeployKey(sess, key.ID, repoID, name, key.Fingerprint); err != nil { - return err + key, err := addDeployKey(sess, pkey.ID, repoID, name, pkey.Fingerprint) + if err != nil { + return nil, fmt.Errorf("addDeployKey: %v", err) } - return sess.Commit() + return key, sess.Commit() +} + +// GetDeployKeyByID returns deploy key by given ID. +func GetDeployKeyByID(id int64) (*DeployKey, error) { + key := new(DeployKey) + has, err := x.Id(id).Get(key) + if err != nil { + return nil, err + } else if !has { + return nil, ErrDeployKeyNotExist{id, 0, 0} + } + return key, nil } // GetDeployKeyByRepo returns deploy key by given public key ID and repository ID. @@ -619,8 +640,13 @@ func GetDeployKeyByRepo(keyID, repoID int64) (*DeployKey, error) { KeyID: keyID, RepoID: repoID, } - _, err := x.Get(key) - return key, err + has, err := x.Get(key) + if err != nil { + return nil, err + } else if !has { + return nil, ErrDeployKeyNotExist{0, keyID, repoID} + } + return key, nil } // UpdateDeployKey updates deploy key information. diff --git a/models/webhook.go b/models/webhook.go index b4d7dc9c..cbc874a9 100644 --- a/models/webhook.go +++ b/models/webhook.go @@ -178,8 +178,8 @@ func GetActiveWebhooksByRepoID(repoID int64) (ws []*Webhook, err error) { return ws, err } -// GetWebhooksByRepoId returns all webhooks of repository. -func GetWebhooksByRepoId(repoID int64) (ws []*Webhook, err error) { +// GetWebhooksByRepoID returns all webhooks of repository. +func GetWebhooksByRepoID(repoID int64) (ws []*Webhook, err error) { err = x.Find(&ws, &Webhook{RepoID: repoID}) return ws, err } diff --git a/routers/api/v1/repo_hooks.go b/routers/api/v1/repo_hooks.go index 91547cf1..77c2ba66 100644 --- a/routers/api/v1/repo_hooks.go +++ b/routers/api/v1/repo_hooks.go @@ -44,9 +44,9 @@ func ToApiHook(repoLink string, w *models.Webhook) *api.Hook { // https://github.com/gogits/go-gogs-client/wiki/Repositories#list-hooks func ListRepoHooks(ctx *middleware.Context) { - hooks, err := models.GetWebhooksByRepoId(ctx.Repo.Repository.ID) + hooks, err := models.GetWebhooksByRepoID(ctx.Repo.Repository.ID) if err != nil { - ctx.APIError(500, "GetWebhooksByRepoId", err) + ctx.APIError(500, "GetWebhooksByRepoID", err) return } @@ -127,7 +127,11 @@ func CreateRepoHook(ctx *middleware.Context, form api.CreateHookOption) { func EditRepoHook(ctx *middleware.Context, form api.EditHookOption) { w, err := models.GetWebhookByID(ctx.ParamsInt64(":id")) if err != nil { - ctx.APIError(500, "GetWebhookById", err) + if models.IsErrWebhookNotExist(err) { + ctx.Error(404) + } else { + ctx.APIError(500, "GetWebhookById", err) + } return } diff --git a/routers/api/v1/repo_keys.go b/routers/api/v1/repo_keys.go new file mode 100644 index 00000000..7016c55e --- /dev/null +++ b/routers/api/v1/repo_keys.go @@ -0,0 +1,115 @@ +// Copyright 2015 The Gogs Authors. All rights reserved. +// Use of this source code is governed by a MIT-style +// license that can be found in the LICENSE file. + +package v1 + +import ( + "fmt" + + "github.com/Unknwon/com" + + api "github.com/gogits/go-gogs-client" + + "github.com/gogits/gogs/models" + "github.com/gogits/gogs/modules/middleware" + "github.com/gogits/gogs/modules/setting" +) + +func ToApiDeployKey(apiLink string, key *models.DeployKey) *api.DeployKey { + return &api.DeployKey{ + ID: key.ID, + Key: key.Content, + URL: apiLink + com.ToStr(key.ID), + Title: key.Name, + Created: key.Created, + ReadOnly: true, // All deploy keys are read-only. + } +} + +func composeDeployKeysAPILink(repoPath string) string { + return setting.AppUrl + "api/v1/repos/" + repoPath + "/keys/" +} + +// https://github.com/gogits/go-gogs-client/wiki/Repositories---Deploy-Keys#list-deploy-keys +func ListRepoDeployKeys(ctx *middleware.Context) { + keys, err := models.ListDeployKeys(ctx.Repo.Repository.ID) + if err != nil { + ctx.Handle(500, "ListDeployKeys", err) + return + } + + apiLink := composeDeployKeysAPILink(ctx.Repo.Owner.Name + "/" + ctx.Repo.Repository.Name) + apiKeys := make([]*api.DeployKey, len(keys)) + for i := range keys { + if err = keys[i].GetContent(); err != nil { + ctx.APIError(500, "GetContent", err) + return + } + apiKeys[i] = ToApiDeployKey(apiLink, keys[i]) + } + + ctx.JSON(200, &apiKeys) +} + +// https://github.com/gogits/go-gogs-client/wiki/Repositories---Deploy-Keys#get-a-deploy-key +func GetRepoDeployKey(ctx *middleware.Context) { + key, err := models.GetDeployKeyByID(ctx.ParamsInt64(":id")) + if err != nil { + if models.IsErrDeployKeyNotExist(err) { + ctx.Error(404) + } else { + ctx.Handle(500, "GetDeployKeyByID", err) + } + return + } + + if err = key.GetContent(); err != nil { + ctx.APIError(500, "GetContent", err) + return + } + + apiLink := composeDeployKeysAPILink(ctx.Repo.Owner.Name + "/" + ctx.Repo.Repository.Name) + ctx.JSON(200, ToApiDeployKey(apiLink, key)) +} + +// https://github.com/gogits/go-gogs-client/wiki/Repositories---Deploy-Keys#add-a-new-deploy-key +func CreateRepoDeployKey(ctx *middleware.Context, form api.CreateDeployKeyOption) { + content, err := models.CheckPublicKeyString(form.Key) + if err != nil { + if models.IsErrKeyUnableVerify(err) { + ctx.APIError(422, "", "Unable to verify key content") + } else { + ctx.APIError(422, "", fmt.Errorf("Invalid key content: %v", err)) + } + return + } + + key, err := models.AddDeployKey(ctx.Repo.Repository.ID, form.Title, content) + if err != nil { + ctx.Data["HasError"] = true + switch { + case models.IsErrKeyAlreadyExist(err): + ctx.APIError(422, "", "Key content has been used as non-deploy key") + case models.IsErrKeyNameAlreadyUsed(err): + ctx.APIError(422, "", "Key title has been used") + default: + ctx.APIError(500, "AddDeployKey", err) + } + return + } + + key.Content = content + apiLink := composeDeployKeysAPILink(ctx.Repo.Owner.Name + "/" + ctx.Repo.Repository.Name) + ctx.JSON(201, ToApiDeployKey(apiLink, key)) +} + +// https://github.com/gogits/go-gogs-client/wiki/Repositories---Deploy-Keys#remove-a-deploy-key +func DeleteRepoDeploykey(ctx *middleware.Context) { + if err := models.DeleteDeployKey(ctx.ParamsInt64(":id")); err != nil { + ctx.APIError(500, "DeleteDeployKey", err) + return + } + + ctx.Status(204) +} diff --git a/routers/repo/setting.go b/routers/repo/setting.go index 019949b7..2d686cdd 100644 --- a/routers/repo/setting.go +++ b/routers/repo/setting.go @@ -259,9 +259,9 @@ func Webhooks(ctx *middleware.Context) { ctx.Data["BaseLink"] = ctx.Repo.RepoLink ctx.Data["Description"] = ctx.Tr("repo.settings.hooks_desc", "https://github.com/gogits/go-gogs-client/wiki/Repositories---Webhooks") - ws, err := models.GetWebhooksByRepoId(ctx.Repo.Repository.ID) + ws, err := models.GetWebhooksByRepoID(ctx.Repo.Repository.ID) if err != nil { - ctx.Handle(500, "GetWebhooksByRepoId", err) + ctx.Handle(500, "GetWebhooksByRepoID", err) return } ctx.Data["Webhooks"] = ws @@ -684,7 +684,7 @@ func DeployKeysPost(ctx *middleware.Context, form auth.AddSSHKeyForm) { content, err := models.CheckPublicKeyString(form.Content) if err != nil { - if err == models.ErrKeyUnableVerify { + if models.IsErrKeyUnableVerify(err) { ctx.Flash.Info(ctx.Tr("form.unable_verify_ssh_key")) } else { ctx.Data["HasError"] = true @@ -695,7 +695,8 @@ func DeployKeysPost(ctx *middleware.Context, form auth.AddSSHKeyForm) { } } - if err = models.AddDeployKey(ctx.Repo.Repository.ID, form.Title, content); err != nil { + key, err := models.AddDeployKey(ctx.Repo.Repository.ID, form.Title, content) + if err != nil { ctx.Data["HasError"] = true switch { case models.IsErrKeyAlreadyExist(err): @@ -711,7 +712,7 @@ func DeployKeysPost(ctx *middleware.Context, form auth.AddSSHKeyForm) { } log.Trace("Deploy key added: %d", ctx.Repo.Repository.ID) - ctx.Flash.Success(ctx.Tr("repo.settings.add_key_success", form.Title)) + ctx.Flash.Success(ctx.Tr("repo.settings.add_key_success", key.Name)) ctx.Redirect(ctx.Repo.RepoLink + "/settings/keys") } diff --git a/routers/user/setting.go b/routers/user/setting.go index 9be567a4..53b7fdf9 100644 --- a/routers/user/setting.go +++ b/routers/user/setting.go @@ -286,7 +286,7 @@ func SettingsSSHKeysPost(ctx *middleware.Context, form auth.AddSSHKeyForm) { content, err := models.CheckPublicKeyString(form.Content) if err != nil { - if err == models.ErrKeyUnableVerify { + if models.IsErrKeyUnableVerify(err) { ctx.Flash.Info(ctx.Tr("form.unable_verify_ssh_key")) } else { ctx.Flash.Error(ctx.Tr("form.invalid_ssh_key", err.Error())) diff --git a/templates/.VERSION b/templates/.VERSION index 9233e6e7..a2ed39f2 100644 --- a/templates/.VERSION +++ b/templates/.VERSION @@ -1 +1 @@ -0.7.17.1118 Beta \ No newline at end of file +0.7.18.1118 Beta \ No newline at end of file -- cgit v1.2.3 From 987dcc5372998adaafb68e00a9a460e955d018e5 Mon Sep 17 00:00:00 2001 From: Unknwon Date: Fri, 20 Nov 2015 02:38:41 -0500 Subject: fix #1383 --- README.md | 2 +- cmd/web.go | 1 + conf/locale/locale_en-US.ini | 4 ++++ gogs.go | 2 +- models/error.go | 3 ++- models/issue.go | 4 ++-- models/release.go | 51 +++++++++++++++++++++++++++++++++++++--- modules/bindata/bindata.go | 4 ++-- modules/git/repo.go | 3 +++ routers/repo/release.go | 17 ++++++++++++-- templates/.VERSION | 2 +- templates/repo/release/list.tmpl | 1 + templates/repo/release/new.tmpl | 16 +++++++++++++ 13 files changed, 97 insertions(+), 13 deletions(-) (limited to 'models/error.go') diff --git a/README.md b/README.md index e004847c..e9321e1b 100644 --- a/README.md +++ b/README.md @@ -5,7 +5,7 @@ Gogs - Go Git Service [![Build Status](https://travis-ci.org/gogits/gogs.svg?bra ![](public/img/gogs-large-resize.png) -##### Current version: 0.7.18 Beta +##### Current version: 0.7.19 Beta
diff --git a/cmd/web.go b/cmd/web.go index a5a7db5f..0ca9f4f5 100644 --- a/cmd/web.go +++ b/cmd/web.go @@ -514,6 +514,7 @@ func runWeb(ctx *cli.Context) { m.Post("/new", bindIgnErr(auth.NewReleaseForm{}), repo.NewReleasePost) m.Get("/edit/:tagname", repo.EditRelease) m.Post("/edit/:tagname", bindIgnErr(auth.EditReleaseForm{}), repo.EditReleasePost) + m.Post("/delete", repo.DeleteRelease) }, reqRepoAdmin, middleware.RepoRef()) m.Combo("/compare/*").Get(repo.CompareAndPullRequest). diff --git a/conf/locale/locale_en-US.ini b/conf/locale/locale_en-US.ini index b6573e6f..3906cdb5 100644 --- a/conf/locale/locale_en-US.ini +++ b/conf/locale/locale_en-US.ini @@ -655,6 +655,10 @@ release.cancel = Cancel release.publish = Publish Release release.save_draft = Save Draft release.edit_release = Edit Release +release.delete_release = Delete This Release +release.deletion = Release Deletion +release.deletion_desc = Delete this release will delete corresponding Git tag. Do you want to continue? +release.deletion_success = Release has been deleted successfully! release.tag_name_already_exist = Release with this tag name has already existed. release.downloads = Downloads diff --git a/gogs.go b/gogs.go index 4e3cf117..8059086b 100644 --- a/gogs.go +++ b/gogs.go @@ -17,7 +17,7 @@ import ( "github.com/gogits/gogs/modules/setting" ) -const APP_VER = "0.7.18.1119 Beta" +const APP_VER = "0.7.19.1120 Beta" func init() { runtime.GOMAXPROCS(runtime.NumCPU()) diff --git a/models/error.go b/models/error.go index 7693e14e..069346be 100644 --- a/models/error.go +++ b/models/error.go @@ -330,6 +330,7 @@ func (err ErrReleaseAlreadyExist) Error() string { } type ErrReleaseNotExist struct { + ID int64 TagName string } @@ -339,7 +340,7 @@ func IsErrReleaseNotExist(err error) bool { } func (err ErrReleaseNotExist) Error() string { - return fmt.Sprintf("Release tag does not exist [tag_name: %s]", err.TagName) + return fmt.Sprintf("Release tag does not exist [id: %d, tag_name: %s]", err.ID, err.TagName) } // __ __ ___. .__ __ diff --git a/models/issue.go b/models/issue.go index 077e945c..9329f9b5 100644 --- a/models/issue.go +++ b/models/issue.go @@ -1375,8 +1375,8 @@ func ChangeMilestoneAssign(oldMid int64, issue *Issue) (err error) { } // DeleteMilestoneByID deletes a milestone by given ID. -func DeleteMilestoneByID(mid int64) error { - m, err := GetMilestoneByID(mid) +func DeleteMilestoneByID(id int64) error { + m, err := GetMilestoneByID(id) if err != nil { if IsErrMilestoneNotExist(err) { return nil diff --git a/models/release.go b/models/release.go index 1c9c7d60..8b98f0b8 100644 --- a/models/release.go +++ b/models/release.go @@ -5,6 +5,7 @@ package models import ( + "fmt" "sort" "strings" "time" @@ -12,6 +13,7 @@ import ( "github.com/go-xorm/xorm" "github.com/gogits/gogs/modules/git" + "github.com/gogits/gogs/modules/process" ) // Release represents a release of repository. @@ -99,7 +101,7 @@ func GetRelease(repoID int64, tagName string) (*Release, error) { if err != nil { return nil, err } else if !isExist { - return nil, ErrReleaseNotExist{tagName} + return nil, ErrReleaseNotExist{0, tagName} } rel := &Release{RepoID: repoID, LowerTagName: strings.ToLower(tagName)} @@ -107,8 +109,21 @@ func GetRelease(repoID int64, tagName string) (*Release, error) { return rel, err } -// GetReleasesByRepoId returns a list of releases of repository. -func GetReleasesByRepoId(repoID int64) (rels []*Release, err error) { +// GetReleaseByID returns release with given ID. +func GetReleaseByID(id int64) (*Release, error) { + rel := new(Release) + has, err := x.Id(id).Get(rel) + if err != nil { + return nil, err + } else if !has { + return nil, ErrReleaseNotExist{id, ""} + } + + return rel, nil +} + +// GetReleasesByRepoID returns a list of releases of repository. +func GetReleasesByRepoID(repoID int64) (rels []*Release, err error) { err = x.Desc("created").Find(&rels, Release{RepoID: repoID}) return rels, err } @@ -147,3 +162,33 @@ func UpdateRelease(gitRepo *git.Repository, rel *Release) (err error) { _, err = x.Id(rel.ID).AllCols().Update(rel) return err } + +// DeleteReleaseByID deletes a release and corresponding Git tag by given ID. +func DeleteReleaseByID(id int64) error { + rel, err := GetReleaseByID(id) + if err != nil { + return fmt.Errorf("GetReleaseByID: %v", err) + } + + repo, err := GetRepositoryByID(rel.RepoID) + if err != nil { + return fmt.Errorf("GetRepositoryByID: %v", err) + } + + repoPath, err := repo.RepoPath() + if err != nil { + return fmt.Errorf("RepoPath: %v", err) + } + + _, stderr, err := process.ExecDir(-1, repoPath, fmt.Sprintf("Delete release [%d]", rel.ID), + "git", "tag", "-d", rel.TagName) + if err != nil && !strings.Contains(stderr, "not found") { + return fmt.Errorf("git tag -d: %v - %s", err, stderr) + } + + if _, err = x.Id(rel.ID).Delete(new(Release)); err != nil { + return fmt.Errorf("Delete: %v", err) + } + + return nil +} diff --git a/modules/bindata/bindata.go b/modules/bindata/bindata.go index e75df322..ea4732a5 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\xbc\x7d\xeb\x72\xdc\x48\xae\xe6\x7f\x3e\x05\xdb\x13\x0e\xdb\x11\x72\x39\xba\xfb\xec\x25\x3a\xda\xee\x95\xa5\xf6\x65\x8e\x65\x69\x2c\xf5\xcc\xce\x3a\x1c\x6c\x56\x91\xaa\xe2\xb8\x8a\xac\x26\x59\x2e\x6b\x4e\x9c\x88\x7d\x80\x7d\x80\xdd\xd7\x3b\x4f\xb2\xc0\x07\x20\x2f\x24\x4b\xb2\x7b\x26\x8e\x7f\x58\xac\x4c\xe4\x0d\x89\x44\x22\x91\x00\x32\xdf\x6e\xb3\xa2\xec\x16\xe9\xd3\xf4\x38\xdd\xe6\x55\xbd\x2e\xbb\x2e\xed\xca\xf5\xf5\xe3\x55\xd3\xf5\x65\x91\xbe\xac\x7a\xfa\xdd\x7e\xaa\x16\x65\x92\xac\x9a\x4d\x49\xa0\xaf\xe8\x4f\x52\xe4\xdd\x6a\xde\xe4\x6d\x41\x09\xa7\xf6\x9d\x94\x9f\xb7\xeb\xa6\x65\xa0\x9f\xe5\x2b\x59\x95\xeb\x2d\x97\xa1\x3f\x49\x57\x2d\xeb\xac\xaa\xe9\xe7\x25\x7d\xa5\xaf\x6b\x49\x69\x76\xbd\x25\x9d\xef\x7a\x49\xdb\x6d\x2d\xe9\x97\x6d\xd2\x96\xcb\x8a\x7a\xd3\x52\xd2\x3b\xfd\x4c\xf6\xe5\xbc\xab\x7a\x6e\xe9\x2f\xf2\x95\x7c\x2a\xdb\xae\x6a\xb8\xf6\x3f\xcb\x57\xb2\xcd\x97\x0c\x70\x41\x7f\x92\xbe\xdc\x6c\xd7\x39\x0a\x5c\xe9\x67\xb2\xce\xeb\xe5\x4e\x60\xde\xe8\x67\xb2\x68\x4b\xca\xca\xea\x72\x4f\xa9\x27\xf8\x31\x9b\xcd\x92\x1d\x21\x21\xdb\xb6\xcd\x75\xb5\x2e\xb3\xbc\x2e\xb2\x8d\x0c\xf3\x17\x4a\x4f\x35\x3d\xa5\xf4\x94\xd3\x31\x84\xb2\xa0\xa1\x66\x79\xa7\xe3\x20\x5c\xd2\xc8\xf3\x2e\x41\x55\x75\xbe\xb1\xd2\xfc\x99\x94\x9b\xbc\x5a\x33\xd6\x1e\xf3\x07\x75\xbc\xeb\xf6\x0d\x70\x7b\xa1\x9f\x84\x84\xac\xbf\xd9\x96\xc0\xc1\xe3\x2b\xfa\x4a\x16\xf9\xb6\x5f\xac\x72\xee\xa7\x7c\x25\x04\xb4\x6d\x08\x19\x4d\x7b\x03\x38\xfb\x91\x34\xed\x32\xaf\xab\xbf\xe7\xbd\x20\xe8\x3c\xf8\x99\x6c\xaa\xb6\x6d\x18\xb7\x67\xf8\x48\x68\xe8\x19\xd7\x43\x29\x6f\x09\x0b\x41\x2d\x9c\xb3\xa9\x96\xad\xa0\x91\x33\xcf\xf0\x8b\x6b\xe1\xbc\xeb\xa6\xfd\xa8\x19\x2f\xf8\x73\x50\x94\x3a\xa1\xb9\x71\xfb\x79\x4d\x88\xd7\xdc\x33\xfc\x88\x00\xba\x24\x2f\x36\x84\xca\x6d\x5e\x97\x8c\xa3\x63\xfe\x45\x78\xa1\x5f\x49\xbe\x58\x34\xbb\xba\xcf\xba\xb2\xef\xab\x7a\xc9\xc8\x3e\x96\xa4\xf4\x52\x93\x92\x20\xcf\xa5\xdd\x34\x3b\x37\x9d\x94\xfe\x57\xfa\x99\x5e\xc8\x4f\xc9\x0b\x0a\x21\xd3\x95\xe4\x91\x74\xd9\x75\x59\x16\x32\x96\x2e\x7d\x41\xdf\xc9\x76\xb7\x5e\x13\xd6\x7e\xdb\x95\x5d\xcf\x85\x2e\xe8\x37\x8d\x5f\x7e\x27\x55\xd7\xd1\x07\x25\xbf\xc6\x47\x42\x53\x57\x2f\x30\x98\x13\x7c\x24\xc9\xfb\xae\xcc\xdb\xc5\xea\x43\x22\x7f\xd1\x57\xfe\x60\xda\x3b\x34\xa9\x4c\x48\x4a\x44\xd2\x82\x35\x90\x2c\x9a\x82\x7f\x9c\xd0\x1f\xaa\xba\xaa\xbb\x3e\x5f\xaf\x3f\x24\xfa\xc1\x60\xf2\x25\x13\xd0\x57\x3d\xb0\xa0\x89\xe9\x65\x5f\x6e\x3b\x9e\xc1\xf4\x45\xd5\x76\xfd\xe3\xbe\x22\x62\x7d\xb7\xab\x93\xa2\x59\x7c\xa4\x65\xc0\x4b\x1a\x2d\xbf\xbe\x4e\x09\x59\x0f\x68\x21\xb4\xbb\xba\x26\xf4\xa4\x2f\x1b\x42\x19\x35\x53\x51\xfb\xa7\x80\x3e\x4a\xb7\xeb\x32\xef\x08\xa4\xcc\x8b\xf4\xc7\x3c\xed\xf3\x76\x59\xf6\x4f\xef\x65\x73\x5a\x7e\x1f\xef\xa5\xab\xb6\xbc\x7e\x7a\xef\x7e\x77\xef\xd9\xcb\x1d\x15\x5b\x57\x75\xd9\xfd\xf8\x24\x7f\x96\x2e\x72\xca\x21\x34\xde\xa4\xf3\xf2\x9a\x57\x1b\xb5\x95\x12\x95\xd7\x4b\x5e\x69\x37\xfd\x8a\x1b\x24\x4a\xa0\x8f\x2e\xe5\xa5\xfe\x4d\xc2\x13\x40\xac\x20\x2b\xe6\xc6\xd6\xd0\x21\x24\xb7\x34\x01\x67\x37\x97\x7f\x7a\x73\x94\x5e\x10\x6f\x5b\xb6\x25\xbe\xe9\x3f\x2a\xf1\x7d\x4a\xa3\xbd\xaa\x4e\x9f\xcf\x12\x2a\x6b\x08\x39\xcd\xfb\x7c\xce\x7d\x77\xb3\xcf\x99\xb2\x08\x5d\x1e\x96\x22\x73\x4b\x70\xc6\xae\x8f\xa6\x65\x6a\x21\x53\x1d\xba\xfc\x5d\x1d\x6f\x99\x07\x50\xba\xc3\xec\x85\xe0\x8c\xaa\x4a\x5f\xbf\x7d\x7b\x7e\xfa\x3c\x2d\xeb\x25\x61\x26\xdd\x57\xfd\x2a\xdd\xf5\xd7\xff\x3d\x5b\x96\x75\xd9\xe6\xeb\x6c\x51\x31\x52\x5a\x22\xd8\x94\xb0\x24\x43\x9c\x25\x5d\xb7\x26\x16\x05\x2a\xb8\xbc\x7c\x93\x9e\x31\x25\x6c\xf3\x7e\x85\x8e\xf4\xab\xa4\xfb\x6d\xcd\x88\x72\x0d\x5e\xad\xca\x14\x8b\x01\x40\xcd\xf5\x10\x2f\x69\xa1\x7d\x9d\x25\x65\xdb\x66\xc4\x41\xfb\x1b\x46\xb3\xd6\x79\x08\x5a\xaa\x23\x6a\xaf\x9b\x9e\xa6\x31\x45\x39\xa9\xa2\xaa\x3f\xe5\xeb\xaa\x20\x64\x7b\x84\xc4\x65\x91\x58\x34\x34\x6f\x5c\x9a\x28\xb3\xd9\x63\xa8\xf9\x82\x36\x80\x2e\xbd\x37\xbb\x07\x8e\x7b\xef\xf1\xbd\x59\x52\x37\x99\x70\x09\xe6\xcd\x45\xd5\xe5\x73\xe2\xd3\xb2\x6f\xb4\xc6\xf5\xfe\xca\xf4\x23\x5d\x51\x88\x34\x82\x60\xdc\xf2\x5e\x84\x2d\x80\x89\x2b\x27\x86\x0d\x66\xa3\x6c\x26\x1c\xbb\xf1\x24\x37\xbf\xc2\x96\x5c\xc2\x68\xcc\x89\x4d\x98\x51\xd7\xf1\x76\xbb\xae\x16\xd2\xf4\x4b\xc9\xf3\x84\xc6\x3b\xb3\x22\x25\x84\x03\xa1\x58\x5e\x40\x2e\xd4\x6b\x66\x5b\x69\xc4\xe7\x51\x7e\x55\xd2\xca\x59\xed\x96\xb2\x3b\xad\x9b\x5d\xf1\x0d\x18\x8a\xcd\x9c\xe7\x27\xe9\xbb\x86\x3a\x0c\xea\x70\x00\xbe\x89\x63\x62\x0c\x2c\x0c\xb4\xe5\xa6\xe9\x19\x71\x5a\xac\xa2\xe9\xd9\x57\x94\x49\x23\xed\xf2\x4f\xc4\x16\xfb\x46\x96\x64\x41\x4b\x6e\xc1\x15\x13\x07\xdb\xd1\x8e\x2e\xcb\x82\xf8\x88\x2c\x0d\x4b\x8b\x69\x10\x50\x9b\x1d\xad\xa6\x15\x55\xc6\x88\x67\x89\x84\xaa\x9c\xea\x27\x86\x44\xf5\x60\x95\xd3\xca\x6d\x68\xf3\xe4\x89\x3e\xc5\x87\xfe\x0e\xeb\xa7\x5e\xe5\xd7\xd7\xd4\xab\x8e\x56\xc5\xab\x74\xb1\x6e\x68\x49\xfd\xf2\xee\x4d\xc7\x0b\x66\x95\x6d\x9b\x16\x92\x08\x65\x5d\xd0\xa7\x4b\x0b\x10\xcd\x10\xf5\x6e\x33\xa7\x5f\xfb\x55\x45\x8c\x1a\x68\xe7\x12\x2c\x25\x51\x2a\x35\xb1\xeb\x68\x0a\x8f\x52\x5a\xc2\x34\x02\x42\x19\x08\x80\xc7\x60\x54\xc7\xe0\xd7\x44\x63\xbb\x96\x96\xd3\xaa\xef\xb7\xd6\xf2\xab\xab\xab\x0b\x69\xda\xa5\xde\xd6\x76\x1e\x50\x06\xe6\x60\xcd\xb2\x51\x9d\x36\xf5\x0c\x44\xb2\x6b\xd7\x03\xfa\xa1\xb1\x5a\xce\x01\xbc\x70\x17\x9e\xf0\x7f\x97\x1e\x3d\xc0\x73\x47\x52\xdf\x1e\xd4\x44\x38\x2e\x21\xa7\x10\x51\x37\x5b\xae\x37\xa0\xea\x73\x4d\xf0\xa4\x0c\xd9\xc6\xe5\x8b\x84\x43\xb9\x90\x29\x83\x5d\x7a\x43\x03\x56\x36\x7a\x79\x46\x68\x00\x2f\x45\xea\x75\xdb\x6c\x28\xf5\x05\xfd\xf1\x09\xbe\xfb\x67\x5c\x1f\x60\xf2\xa2\x20\x2e\xdf\x1d\xa5\xef\x5e\x9c\xa4\xff\xe5\xfb\xef\xbe\x9b\xa5\xaf\x7b\x5e\x89\x4c\x9c\x7f\x63\xa2\xa2\x4f\x11\xb5\x1c\x28\x71\xac\x9e\xe8\xee\x1e\xaf\xac\x7b\xe9\x8f\xc8\xfd\x1f\xe5\xe7\x9c\x44\xc4\x72\xb6\x68\x36\xcf\x98\xab\x6e\x72\x5a\xfb\x9c\x43\xe4\xaa\x74\x7c\x59\xd6\x05\x7d\xa8\xc0\xa6\x79\x01\x3b\xd0\xfc\x40\x7c\x13\xc1\x35\x5b\x34\xf5\x75\xd5\xf2\x80\x7e\xae\x41\x0d\x26\xd2\xd2\x76\x8d\x1c\x93\x8a\x08\x69\xc4\x41\xaa\xeb\x1b\x0f\x8a\xa1\xbe\xe5\x44\x9d\xd0\x44\xa8\x2e\x53\x11\xdd\x61\xf9\x52\x88\x91\xe7\xed\x9c\x86\xd7\x1a\xbe\x3b\x8f\xf0\xe6\xfa\x9a\xf7\x5a\xdb\x25\xb4\x85\x73\x49\x95\x0d\x23\x04\x21\x62\xdc\x42\x28\x3f\x55\x22\x3e\x39\x7d\x9b\x96\x9f\x88\xda\x98\xeb\xb5\x4d\xb1\x5b\x80\xc2\x18\xf6\x88\x99\x35\xb1\x88\x8e\xd6\xc6\x42\xf6\x95\x80\x49\x70\xd7\x98\x13\x2d\x08\x88\x78\x83\x31\x6b\x12\x24\x3f\x11\xe7\x6f\x83\x26\x5e\x5a\x92\xf6\x7e\x04\x3b\xea\x94\x2b\xc1\x23\x5f\xd0\x8c\x13\x55\x48\x2f\x3a\xe9\x94\x64\x13\xb9\x13\x1d\xef\xe8\x84\x92\x17\xd4\x97\xf9\x0d\xf8\x4e\xc7\xc4\x50\x94\xd7\xf9\x6e\xdd\xfb\x7e\x0d\x36\x11\x6b\xe9\x92\x0f\x49\x61\xde\x64\x81\x51\x07\x41\x3d\xdd\xb0\x2c\x91\x61\x4d\x72\x8e\x6c\x36\x4c\xaf\x72\x0a\xb1\x7d\x87\xd8\x53\x89\xe9\xc9\xbc\xc8\xaf\xf3\x65\x92\x7f\x9c\xef\x9a\x7d\x27\x92\x4f\x8a\xad\x96\x6b\xb4\x0a\x58\x54\x98\xee\xcb\x2c\x51\x71\x29\xd3\xe3\x5a\xf6\xa9\xc2\x61\xc8\x91\xab\x54\xa9\x47\x38\xe6\x6b\x7f\x66\x00\x3e\x65\x75\x93\x65\x5d\x6f\xce\x79\x90\x9d\x3b\x0c\x09\xce\x79\xb8\x68\x81\x45\x38\x9a\xa5\x4f\x15\xd8\xbc\x12\x0c\xf0\x42\x54\x83\xa6\xa9\xa9\xae\x2c\x51\x03\x95\x7f\x42\x75\xa2\xcc\x4c\x0f\x08\x2a\xb3\x9b\xe8\xc7\xdb\x7d\xd1\x40\x76\xc0\x5e\x42\xa5\x0d\xad\x83\x7d\x3d\x6d\xab\xe5\x8a\x78\x6b\xb3\x3f\x12\xa4\xec\x57\x4d\xc9\xeb\xe7\xf5\xe9\xd3\x6f\xa5\x1f\x4b\xde\x59\x5c\x21\xde\x93\xf2\x1d\x11\x17\x61\x4c\xc9\x58\xba\xe0\xf6\x76\x40\x8e\x8e\x22\x02\x34\x3c\xfc\x8d\x44\x09\xc7\x34\x94\x57\x84\x79\xca\x24\x3c\x8c\x94\xb6\x03\xa4\x34\xac\x5c\x49\xe5\xfd\x6c\xd9\xe0\x20\x63\xf2\x3d\xef\x96\x74\x1e\xee\xfa\x6c\x59\xf5\xd9\x35\xb3\x2e\xae\xf9\x05\xd7\xc0\x9b\x37\xe5\xa4\x0f\x28\xeb\x41\x4a\xfc\x8f\x4e\x67\xc5\x0f\xe9\xfd\x4f\x2a\x31\x7e\xcf\x3c\x29\xa3\x55\x54\xad\x31\x25\x7a\x3c\x6a\x4b\x11\x58\xed\x0c\xee\xa4\xb6\x6e\xb7\xc5\xde\xa6\x02\xa2\x3b\x0d\x14\xcd\xbe\xe6\xd5\x07\xe6\x4b\x7c\xa6\x5a\x54\xb4\x67\xcc\xab\x3a\xa7\x0d\xde\x6a\x01\x53\xbf\x4f\x34\xf1\xf6\xfc\x0a\x80\xcb\x66\xbe\xab\xd6\x85\x01\xcc\x12\x13\x22\x49\x84\xd4\xd9\x0f\xc5\x6a\x4b\xaa\xa4\x2f\x8b\xa6\x65\x89\x04\xa3\xb1\x82\x07\x44\xa1\x96\x45\x0c\x24\x57\x7c\x9e\x01\x2c\xca\x39\xa9\x85\xd1\x40\xd3\x8f\xa3\x1a\xcb\x34\xa0\x9b\xaa\xab\x1f\xf4\xe8\xe9\x62\x47\x6d\xd1\xd4\x73\x32\x15\xec\xd2\xc7\xcf\xe8\xff\x84\x25\x24\xd9\x01\x96\x63\xc4\x73\x66\x2a\x99\x3b\x59\x8b\x51\x57\x23\x22\x77\x53\x6d\x24\x1c\x8c\x35\xec\xaf\x91\x40\xb7\x13\xaa\x65\x75\xc9\x9a\xa6\xb5\xfc\x86\x3e\xf8\xe4\xb6\x5c\x63\x12\xf2\x5e\x8f\x57\x0d\xe1\x8d\x09\xe4\x48\x16\xcd\x35\x0d\x8d\x79\x69\x9f\x7f\x2c\x71\x22\xa3\x3d\xff\x3d\xeb\x81\x3e\x24\x3b\x91\x41\x9b\x75\xe1\xce\x3b\xa0\xec\xa6\x1d\xaa\x31\x3c\x90\xa3\xda\x8e\x84\xed\xc5\x2a\x73\x5a\x24\x46\x4a\x5f\x7e\xc6\xee\x8f\x2c\xaf\x54\x62\x92\xe7\xac\x64\x73\x83\xe9\xe2\x41\x9c\xdd\xf8\xd9\x22\x09\x94\x16\x0a\x1d\x66\xe7\x0d\x63\xed\x53\xe9\xa0\x4e\xc2\xd4\xb8\x00\xd5\x45\xb2\xb2\x56\x15\x6b\x1b\x28\x4b\x54\x22\x9a\x2b\x6a\x91\x2e\x01\x2b\x53\x15\x18\x38\x1e\xcd\xa7\x9e\xec\x67\x34\x31\x50\x1b\x58\xcb\xc4\x17\x6f\x64\x5d\x04\x6d\x26\xef\x55\x3d\xf6\x21\x31\xb8\x77\x71\x3e\xf1\x94\xd5\x87\x40\x05\x95\xd9\xec\x9a\x2a\x0a\xda\x13\x65\x2b\x5e\xa4\x58\x95\x5b\x96\x3e\x36\x1d\xc8\x62\xcd\x27\xed\x1b\x95\x9f\x1d\x81\xfc\x24\x0c\x9b\x28\x86\xd8\xdc\x37\x49\xd7\xf0\x82\xcb\xbe\xb2\x8a\xe7\x15\x91\x02\xca\xc7\x9b\x9d\xe8\xc6\x48\xcc\xe5\xe9\xa3\x55\x76\x73\x14\x9f\xac\x56\x79\x47\x4c\x9c\x64\x05\x2d\x56\xcc\xec\x84\xcb\xd3\x4e\xe7\x39\xac\x19\xe8\xf3\x40\xe5\x52\xb2\x69\x87\xbb\x30\xf7\x50\xf8\x9c\xb6\xe2\x64\x27\x48\x46\xa1\x00\x35\xd1\x26\x21\x6c\x53\xb2\xf8\x9c\x6d\x44\x8d\x26\xbf\xd2\xb3\x32\xa1\xed\x70\x49\x0b\xda\x08\xf6\x29\x6b\x3f\x96\x38\x65\x28\xbd\x32\x40\xd9\x87\x8c\x58\x21\x2c\xe5\x27\xd3\x5b\x12\x67\xd8\x43\x35\x44\x6b\x7b\x84\x7e\xda\xb2\x28\x7b\x66\x8c\x5d\x64\x04\x88\x7a\x1d\x71\x0b\x8f\xc4\xe3\x94\x15\x90\x21\x94\x8a\xdc\x7e\x58\x5c\x80\xb9\xc6\x8f\xf3\x67\xf7\xbb\x1f\x9f\xcc\x9f\x39\xde\xba\x58\x95\x8b\x8f\x42\x7f\x55\x3d\x6f\x3e\xe3\x60\x0b\x45\x09\x9d\xa9\x79\x8d\xdd\x2f\x52\x3a\xe8\xb6\x38\x57\x11\x2f\xa0\x62\x84\x78\xce\x8d\x26\x8d\x3a\xc3\x2c\x83\xb6\xb6\x05\x56\x15\x08\xdc\x13\xe4\x31\xa7\x32\x49\x62\x03\xf0\x34\x89\x81\xac\xab\x4d\xd5\x8f\x68\x82\x39\x4c\xae\xb4\xa5\xba\x32\x43\x12\xea\xc2\x30\x31\x4a\xe2\xd3\x54\x0d\xed\xab\x46\x27\xfb\x9c\x0e\x52\xdf\xa7\x44\x1b\x3b\xda\x9f\xb8\xb3\x34\x1e\x62\xd4\x39\x6f\xcc\x74\x88\xca\xbb\x6c\x57\x2b\xbe\xca\xc2\xa8\xe4\x55\x85\xed\x83\xdb\x35\x5a\x0e\xa0\x0c\xa5\x7a\x16\x48\x1f\x3a\x54\x3e\x9a\xa9\x6e\x0b\xc5\x98\xa7\x73\x87\x2a\x96\x5b\xf3\xc9\x59\x21\x9e\x57\x97\x72\xf6\x05\x06\x18\x8e\x67\x90\x0e\x50\x7e\x5a\xe8\x14\xf6\x91\x52\x80\xe9\xf9\xae\xef\x1b\x3e\x97\xac\x99\x1c\xa4\x8c\xf5\xfa\x04\x80\x38\x6a\xf9\xfa\x30\x9d\x21\x9e\x84\xc5\x96\x76\x4e\xc8\x88\x0e\x79\x4d\x8b\x86\x9b\x4f\x74\x83\xd1\xe9\x26\xe8\xc0\x0a\xd1\x25\xe5\xf5\x8d\x57\x6f\xa0\x17\xdc\x60\x3f\xdd\x97\x87\x6d\xf9\xc8\xf7\xc6\x2d\x06\x94\xb0\x1e\x49\xf1\x60\xa1\xbc\x43\xae\xa8\x58\x6d\x39\xd9\x9e\xa6\x8a\x4a\x4f\x1f\x6d\x8c\x5e\xe4\x33\xc9\x13\xe7\x24\xb1\xb2\x00\xa2\x69\x14\x28\x3d\x1b\xb4\xe5\x8f\x84\x63\x0c\xf6\x71\x97\xfd\xd6\xd4\x37\x4d\xd6\xad\xe4\xf8\x6d\xdd\xa3\xa3\x7b\xbd\x8c\xf4\x56\xb8\x17\x01\xd1\xfd\x57\xde\x00\x79\xa0\x1f\x12\x9d\x8d\x32\x58\x14\x4a\xad\x96\x63\xb3\x26\x6b\xc3\xc1\x9b\xb0\xf6\xe7\xb2\xe5\xe3\x1d\x80\xe2\xd9\x3a\x84\xc5\x78\x10\x8e\x29\xfa\xdd\xdd\x31\x44\x4d\x3a\xb2\xfd\xde\x03\xbb\x43\xa5\xe6\x30\x49\xca\xed\x0d\x0d\xac\x29\x72\x1a\xd9\x0d\x94\xd5\x7f\xa5\x3d\xa9\xc6\x35\x40\x93\x50\x86\x14\x3a\xc3\x07\x81\xf2\xb1\xf8\x43\xc2\xbb\xfe\xdb\x81\x3c\xcb\x9b\x9a\xa6\x05\x22\x15\xb2\x7e\x8e\xee\x39\xdc\x68\x2f\x26\x64\xdf\x77\xa5\xbf\xee\xc0\x97\x1b\xf6\xe5\xe5\xab\x2b\x3b\xe7\x5e\xbe\x4a\x3f\x96\x5a\xf9\xab\xbe\xdf\x76\xbf\x40\xe7\x21\x0a\x0c\xd6\x76\x5c\xe4\x37\x2c\x67\x4a\xb2\xfe\x40\xc6\x55\x99\x6f\xb4\x97\xfc\x29\x55\x1c\xd3\x06\xac\x89\xfc\x49\xfb\x72\xa0\x4b\x4b\x20\x71\xfd\x3c\x25\x69\xbb\x73\x4f\xa9\x77\x29\xbf\x8e\x14\x80\xbf\x26\xf9\x7a\x4b\x47\x33\x16\x79\x02\x30\xe8\xba\xe6\x7a\x42\x4b\x01\x02\x22\xdf\x6d\x88\x38\x16\x38\x91\x52\x81\x87\x8f\xb3\x47\x81\xee\x33\xae\xac\xa0\xd5\xff\xbb\x2a\xe4\x6f\x96\x8b\xc3\x7a\xbb\xea\xef\x36\x8a\xa8\x3a\x4e\x27\x66\x4a\x10\x90\x42\x3d\x94\x03\xc2\x56\xce\x12\x69\xcf\xaa\x2f\x4a\x20\xa9\x37\xaa\x7a\x93\x7f\xbe\xab\xe0\xa6\x99\x28\x27\x3c\xce\x17\x32\x4e\xa6\x43\x8c\x57\x0e\xc1\xb3\x72\xeb\x20\x34\x4d\x3d\x81\x54\xf5\x62\xbd\x2b\x0e\xf6\xa4\xdb\xcd\x69\x1b\x64\x71\xfa\xc1\xfd\xee\x01\x57\x59\x7f\xa4\x7d\xbb\x76\xf0\xbf\xc8\xef\x14\xbf\x7f\xb0\x9b\x38\x3a\xf0\xea\x19\x23\x75\x77\x72\x24\x7e\x14\xbc\x81\xe0\xac\x30\xf3\x7c\x27\x3c\x3f\x38\xf2\x87\xd6\x42\x0f\x78\x6e\xed\xb3\xaa\x02\x47\x29\x22\xc1\x99\xbf\x3e\xcc\x58\x0a\xc8\x58\x2e\xaf\x43\xe9\xdb\xc9\x07\xb6\xd1\x02\x42\x2e\x91\xb2\x71\xb9\xc1\x02\x3d\x58\x9c\x84\x9d\x89\xd2\xe7\x63\x75\xf3\x81\xf2\x3d\x2d\xb1\x89\x0a\xdc\xca\x3b\x58\x50\x26\x1f\x85\x68\xe4\xc5\x88\x77\x8c\x0b\x32\x18\x9d\x0c\xd7\xeb\x72\xc9\x7a\x49\x6b\x38\x6a\x4d\x27\x9a\x76\x45\x01\x0b\x09\xce\x63\xd8\x4d\x56\x38\xaf\xe1\x39\xc7\xcd\x51\x7c\xc2\x64\x75\x0d\x55\xd5\xe2\x0a\x38\x38\x67\x6a\x37\x74\x93\xd8\xf0\x91\xaa\xdb\xf1\x1e\xc5\xc7\x2f\x91\xbf\xe2\xd9\x60\x09\x04\x55\x95\x68\xe2\x70\xf5\x44\x8b\xcc\xd9\xef\xaa\x1f\x60\x5f\x59\x75\xa8\x97\x18\x57\xac\x95\x3b\xa0\x43\xd5\xba\x33\x73\xf9\xb9\x82\x8e\xf7\x65\xc5\xba\x43\x9c\x9a\x9d\xb2\x00\x79\xb3\x64\x4d\xcc\x83\x4f\x67\x32\x2a\x91\xd4\x9b\x4f\xbc\x1a\xb9\x3d\xce\x95\x72\xa2\xf3\xd5\x41\xf1\x3c\xeb\xf9\x1b\x37\x45\x65\x71\x44\xb2\x0e\x97\xa0\x7e\x62\x71\xe7\xeb\x7d\x7e\xd3\x41\x99\x64\x1c\x8a\xf5\xdb\x52\x9c\xd9\x0f\x49\x42\x4b\xf4\x2a\xbc\x45\xa1\x15\x67\x98\xe0\xeb\x00\xde\x6c\x9c\xbc\xb2\xc7\x09\x1a\xdc\x45\xd5\x53\x9f\x82\x1d\x5d\xf7\x26\x3e\xfd\xf3\x59\x99\x4f\x31\x92\x1d\x54\x84\xeb\x49\xdd\x29\x26\xca\x1e\xb1\x9c\x48\xcd\xb0\xd4\x46\xfc\x5b\x70\x4d\x82\x30\x61\x16\x5d\x0a\xd4\x29\x3b\xaa\xff\xb1\x48\xfe\x15\xe1\x90\x4f\x92\x5e\xc3\xc0\x7b\x19\xcd\x8a\xdd\x02\x48\x3a\xf4\x03\x49\xd7\xd3\x12\x60\x4c\xdb\x9d\xff\x5f\x03\x91\x25\x45\x2e\x96\x18\xd0\xd4\xad\xaa\x6d\xda\x40\xb3\x1c\xa2\xd0\x93\x6d\x20\x6b\xf3\x7d\x47\x89\x93\x05\xab\xd8\xdb\xbc\xee\xae\x4b\xe8\xda\x37\xe9\x35\x5f\x2b\xcf\xb4\x69\x16\xdd\xe5\xee\xff\x40\xcb\x72\x4a\x43\xd3\xe1\xee\x82\xb9\x0b\x26\x2a\x6e\x5a\x2e\x5f\xa0\xcf\x45\x1f\x80\x55\x5f\x53\x67\x7d\x60\x32\x1b\xa1\x00\xe2\x73\x74\x95\x66\xbd\xf9\x54\x86\x88\xb8\xfe\xbd\x23\x0f\xb0\xae\xd7\x09\x72\x07\x13\x4f\x93\x34\x0a\x85\x0e\x6e\x82\xe7\x37\xf1\xe8\xb9\x68\x70\xbd\x4e\x6b\xa4\xd4\x56\x78\x61\xf0\x5a\x19\x54\x08\x45\x8e\x3f\x34\x25\x72\x15\x9f\xcd\xa9\x8b\x8b\x55\xb4\x3a\xaf\x90\x93\x4a\xce\x68\x81\x26\xef\xb9\xe9\x0f\x89\x5c\xc6\x67\x4e\x6f\x7f\x22\x97\xf3\x22\xf4\xaa\x1e\xbe\x4f\x4d\x59\xcf\xb7\x29\x56\x44\x54\xf3\xb7\x96\xe4\x6d\xd8\xf4\xa6\x7f\x6b\x48\xe6\x80\xfa\xfd\x8f\xf4\xc5\xc7\x80\x3a\x89\x6e\x20\x07\x9a\x14\x48\xda\x55\xcf\x2b\xec\x82\x16\x06\x89\x3d\xc7\x9a\x42\x07\x79\x70\x07\x28\x77\x5e\xd8\x37\xcd\x47\xce\x4c\x8f\x97\xb6\x7c\x29\x9c\x68\xda\x5e\xd8\x77\xc2\x7a\x80\xcd\x0c\x9b\x03\x4b\xe8\xb8\xc9\x08\xb6\x04\x96\x16\x78\xc2\x2c\x6f\x16\xc0\x6f\xf3\x9e\xd8\x62\x2d\x67\x35\xe1\x50\x61\x51\xcd\x76\x55\xb8\x2b\x6f\xae\x85\xcd\x43\x04\x15\x1f\x12\x6f\xb5\x62\x06\x2b\x53\x9a\x63\x65\x31\x9d\xca\xc8\xff\x4a\x9f\xaa\xf3\x01\xfb\xc2\x87\x9e\xd9\x71\xd9\x6c\x37\x84\xb0\xa0\x09\x7e\x26\xaa\x25\x8b\x55\x64\x4a\xde\x4f\xd3\x53\xf9\xb0\xd3\xff\xae\xc2\x98\x2a\x3a\x4a\x6c\x81\xf7\xc0\xc6\x46\x27\xc2\x75\x5a\x6d\xa9\xbc\xb2\xbe\x1d\xee\xec\x6c\xd6\x21\x85\x98\x70\xed\xfe\x08\x52\x00\x5f\x5f\x04\x27\x57\xd6\x3f\xe3\x48\x5b\x07\x77\x63\x7c\xe3\xc3\x07\x71\x02\xdb\x97\xf3\x94\x35\xc2\x44\x38\x74\x40\xd4\x81\x6e\x72\x3a\x5b\x7e\xaa\x72\xa7\x7b\xa2\xd9\x62\x2b\x1e\xdd\x45\x5f\xb0\x05\x0f\xee\xdb\xc7\xa6\x66\x7c\x79\xa5\xf7\x41\x6f\xf4\x33\xd9\x6d\xf9\x82\x25\x18\xf0\x2f\x48\x70\x03\x8e\xf3\x83\x23\x1b\x86\x6e\xc5\x9c\x34\x23\xe0\x85\x9d\xe3\x60\x08\x33\xb3\xe5\x33\x61\x42\xa6\x4b\xa8\x18\x82\x78\x25\x0c\x58\x8c\xda\xcf\x00\x99\x72\xe5\x8b\xe1\xd3\xce\x98\xae\x9a\x7d\xba\xae\xea\x8f\x9d\x62\x93\xf9\x58\x78\x7e\x85\xd6\x8a\x88\x70\x27\xa6\x45\xf2\x39\xb6\x64\xb2\x9b\xa8\xc1\x0a\xb7\xfb\x2a\xb9\x93\x3b\x46\xf2\x24\xac\x3f\xc5\xdb\x9d\xd9\x75\xc9\x62\x32\x98\x9a\xdd\xef\xd1\x28\x9b\xa6\x53\x1d\xa9\x67\x22\x9c\x06\xbd\x8b\x42\x29\xce\x1d\x84\x4e\xc9\xb1\xdd\x2a\x62\x4d\x25\x76\x0f\x68\x1d\xc0\x0a\xcd\xaa\x8d\x58\x06\xfe\x62\xb7\x84\x98\x1f\x77\x9a\x40\x36\xec\x4e\xe2\xde\x87\x57\x23\x6f\x1b\xbb\x83\x34\x6e\x68\x99\x47\xb6\xe9\x0b\x06\xb0\x65\x47\x9d\x1d\xd2\x87\x56\x60\x5a\xfe\x3b\xc8\xc4\x88\x20\xbc\x37\x92\x89\x77\x0c\xa2\x59\x47\xa2\xdd\x89\xde\x57\xb8\x7c\xc6\x6c\x90\xff\x16\x37\x7c\x4e\xef\xc0\x07\xf2\x6c\x00\xa2\x07\xf6\x08\x72\x52\x82\xb6\xb6\x0e\x4a\xcf\x83\xde\x8f\xd6\x8a\x95\xdb\x13\x16\xc2\x81\x2b\x75\x17\x33\x33\xf5\x61\x65\xab\x5c\x17\xc2\x26\x43\xec\x52\x6a\xdc\x35\x4a\x15\x84\x2a\x1c\x30\x3a\x7f\xae\x38\x16\xee\xc3\x77\x04\x62\x98\xe8\x00\xd4\x36\x31\x3e\x6f\x96\x66\xe0\x10\x32\xb2\x6d\x4b\xe4\x41\x1b\xed\x40\x05\x37\x62\x61\x11\xbb\x02\xb7\x6a\x70\x5b\xef\xb9\x14\x9d\x18\xb5\x2e\xe6\xf7\xf8\xb2\x14\xa7\x46\x22\x3a\x66\x51\x57\x93\x95\x39\xbb\x5c\x61\xd1\xae\x93\xf4\x43\x18\x97\x0e\xf7\x54\x53\x06\x00\x36\x1c\x65\xf0\xfd\x84\x42\x11\xa3\x51\xb1\xc3\xf8\x6f\x55\x8b\xb5\x84\xbb\xbd\x8b\x18\x48\x7a\x0a\x8e\x42\xf3\x26\xaa\x6b\xe3\x27\x3f\x0d\x1b\xf7\x13\xfe\xf3\x40\xeb\x2d\x83\x8b\xe9\xfd\x9b\x84\xba\x04\x6a\xf4\xb7\xa0\x05\xa6\x79\xa0\x54\x63\xb0\x10\x44\x35\x96\x2e\x39\x8b\xd4\xf2\x50\xb0\x7f\x95\x2a\x9e\xf7\xee\x7f\x82\x16\x3e\x6a\xcb\x6b\xe1\x5d\x2f\x07\xcb\x81\xbb\x37\xd8\x39\x47\x0b\x83\x32\x20\x47\x28\x49\x07\xd2\x81\x12\xb5\x13\x12\xb8\x19\x39\x9b\x30\x86\x28\x09\xa2\x84\x52\x03\xb6\x10\x16\x54\x61\x69\x04\x33\x41\x39\xa8\x74\x23\xbd\x72\x3c\xf1\xc7\x38\x89\x11\x56\x04\x16\xa6\x7c\xb4\x31\x8b\x14\xab\x27\xbb\x0d\x23\x42\xee\xd9\x9d\xd5\xd7\xe8\x12\xed\x48\x8f\x3f\xab\x6a\xb9\xa2\x71\x55\x1b\xbe\x5d\x06\x39\xd9\x15\xa6\x3f\x9d\xf2\x2f\x62\x28\xcd\xb2\x66\xdd\x15\xb7\x20\x66\x5e\x6e\x83\xf9\xb1\xeb\xdb\xa6\x5e\x3e\x3b\x6d\xf8\xd8\xc8\x1a\x1d\xde\x04\x7f\xfa\xf1\x89\xa6\x13\xd3\xe4\x39\x64\x9b\xc0\x97\x55\xff\x6a\x37\x7f\xd0\xa5\x4b\x36\x52\xc5\xbd\x4b\x1e\x98\xae\xaa\x61\x81\xd8\xe0\xed\x6b\x87\x16\x18\xb2\xd2\x42\xef\x9a\x35\xad\x92\xb8\x48\xb3\xd9\xc8\xfc\xd2\x06\xb0\x11\x48\xf4\x1f\xb6\x08\x65\x0d\xcc\x95\xad\xe2\x87\x2a\x9c\x39\x32\xf7\xf3\xa3\xd3\x66\xe2\x5e\xa4\x27\x51\x81\x8b\x81\x71\xb9\x5a\xf7\xc1\xb6\xc1\x3a\x92\xd4\x15\x83\xa0\x30\x2e\x86\x89\x64\xb5\x93\x57\xd1\x98\x92\x05\x27\x01\xd4\x61\xe5\xa9\x28\xf5\x44\x24\x26\x4e\xb3\x36\x45\x56\x28\x59\xff\x2d\xa4\x15\xd0\x2f\xef\x15\xa6\xc2\x85\xe0\xeb\x95\x39\x4c\xb0\x83\x55\xae\x8c\x4d\x46\xaf\x6c\xcd\x46\x10\x30\x36\xc5\x89\xe7\x6c\x43\x98\x29\xde\x66\xbd\x08\x99\x9a\x18\x31\x09\x63\x13\x92\xa4\x93\x06\xb3\xed\x2f\x64\x6a\xa3\x76\xfd\xc0\xad\xb9\x2f\xe0\x6b\x18\xd3\x31\xd0\x41\x63\x81\x6e\x44\x67\xea\x8d\x6a\x42\x90\xc1\x06\xb0\xfe\xd4\xf3\xb6\xd1\x2b\xb4\xd4\x12\x31\x27\x74\xcc\xe9\xcb\x68\x31\x73\x27\x60\xb2\x28\x26\x39\x50\xae\xfc\xb7\xb4\xc8\x89\x13\xf4\xcd\x47\x22\xa6\x71\x11\xa4\x1f\x2a\xe4\x38\x8c\x9d\x35\x94\xbf\x1c\x7b\xf6\x30\x3c\x7d\xe8\x55\xf4\x41\x16\x13\x70\x16\xad\xd5\x99\x45\x89\x66\x08\xe6\xe0\x6c\x3b\x52\x08\x27\x51\x46\xa0\xb6\x3f\x8e\x03\x90\x84\x55\x33\x10\xd4\xb7\xfc\xa1\xbf\xc3\x69\x89\xea\x0f\x96\x0b\x31\xf0\x5d\x1d\x30\x50\x21\x87\x4c\x50\xe1\x06\x79\x41\x47\x49\xd8\x3e\x1e\x4b\x85\x57\x9c\xdd\xa9\xe1\xaf\xde\xe8\x5b\x91\x97\x9a\x88\x35\x00\x40\x41\x78\xe7\x10\x81\x5f\x5e\xab\x60\xb5\xa8\xb5\x86\x5a\x35\x62\x0e\x88\xea\x8c\x65\xae\xc4\x7a\x23\x3d\xbe\x78\x4d\x7b\x86\x6b\xd0\x2a\xfd\x39\x27\x49\x5a\xba\xb0\x77\x1a\x0d\x26\xb6\x21\xcf\x75\x32\xbf\x14\x37\x05\x2a\x4a\x62\x89\xbb\x41\x8d\x06\x24\x83\x89\xf3\x05\xc7\x65\x17\x68\x79\xa4\x35\xf4\x64\xb8\x5b\xb9\xa1\x7e\x43\x98\x75\xba\x46\x5e\x5a\xdb\x1b\xe6\xff\x81\xb9\x56\x2e\x18\xda\x83\x83\x0f\xec\xc4\x08\x12\x9a\x8e\x94\x97\x70\xeb\xf8\x87\x75\x58\x39\x48\x38\x95\x21\x1b\x99\x9c\x4c\xcf\x54\x26\x8b\x4d\x71\x96\xad\xd5\x13\x8f\xf9\x2e\x3e\xc3\x84\xef\xcf\xe1\xb7\x70\x99\x70\x54\x01\x29\x5f\x4c\x36\xeb\x28\x5a\x9a\x1e\xf0\x9b\x54\x36\x42\xb1\x75\xe0\x56\xe4\x74\xa1\x14\x11\x98\x11\x53\x2d\xfb\x72\xcd\xf6\xbf\xda\xba\xbf\x01\xd5\xa1\x47\x46\x01\x0a\x14\x9c\x44\x4b\x2f\xe2\x0a\x2a\x42\x35\x9d\x55\x46\x10\xb4\xdc\x60\x07\x20\x47\x79\xdb\xaf\x4f\x8e\xdf\xbe\x3d\xbf\xf2\xdb\x34\xaf\x83\xba\x20\x61\xe2\x1b\x67\x31\x37\xea\x97\xd9\xcd\xb9\x09\x8c\x21\xbc\xe5\x9e\x96\x38\x04\x17\xb2\x29\xab\x9d\x3e\x97\x0d\x78\x4f\xc3\x7d\x31\x5e\x1e\xf5\xbf\x38\x34\x7f\xc9\x7b\x96\x6f\x3e\x24\xa6\xec\x3e\xe7\xbf\x49\x78\x5f\x10\xdc\xd1\x60\xe9\xf9\xab\x1c\x6f\x9d\x4f\x1d\x68\x8a\xd1\xfd\x01\x98\xf4\x2e\xc7\xd1\x88\x70\xdf\x60\xaf\xb8\x4e\x71\xdf\x7d\xc4\xea\xd0\xa6\xc5\x82\x61\xe4\xee\xea\xea\xb7\x1d\x04\x34\x3e\x18\x11\xf3\x60\x43\xcc\x79\xb5\x96\x0d\xe5\xcf\xee\x87\xa4\xf3\xd7\xc0\x82\x3c\x68\x9c\x7e\xfd\xd8\x6d\xd9\x8e\x95\xf6\x86\xee\xe9\xbd\x5d\x95\xb2\x76\x8d\xad\xb8\xee\x3d\xa3\x63\x0c\xdf\x82\xd3\xf4\x11\xc4\xb3\x51\x75\xec\x45\xb6\x10\x55\x9c\xb3\x07\x02\xdd\x6a\x3a\xaf\x16\x16\x79\x23\xfd\x9f\x20\xfe\x77\xb4\xc9\x2e\x6b\x7e\x1c\x0f\xf5\x94\x4c\x38\xc2\xda\xfd\x94\xaf\x77\xb1\xb2\x84\x5b\xe7\x32\xdd\xa3\x04\xe6\xf1\xbe\x2c\x0c\x7e\xe0\xed\xc8\x19\x44\x0d\x3f\x01\x69\xfd\xed\x3e\x4f\xec\x17\xc9\xa2\xdf\x37\x09\x7a\xa2\x0a\xe8\xa1\xf7\x1c\xf2\xcc\x0c\x9e\xf3\x60\x0b\x8f\xd4\x89\xd9\x08\xfc\x5c\xf2\x75\x2f\xaa\xe7\x34\x98\x4d\x66\x2d\x18\x44\x19\x52\x8c\x5e\x11\x3a\x0e\xd6\x2d\xda\x0a\xb6\xfc\x92\xce\xbe\x92\x69\xe0\x27\xe9\x12\x7d\xbb\x97\x44\xf7\x84\xa2\xd9\xb2\xea\xe9\xc8\xcd\x1e\x5b\xb0\xfc\x4e\x88\x6d\xd0\x4e\x06\x2f\x4b\xf9\xb2\x94\x51\x51\xde\xf4\x05\x16\x2a\x33\x16\x35\x75\x05\xf0\x87\xfe\x9e\x28\xa5\x80\xe6\xe3\xc9\xb7\x1f\x4d\x56\xd5\x15\x2f\xfc\xd7\xf4\x87\x36\x75\x39\x02\xc4\x64\x2a\xf2\x2d\x2a\x51\xfd\x8e\x1c\xc2\x5d\x3d\x6a\x89\xa7\xb3\xa2\x26\x78\xc1\xbc\xa8\xb1\xb8\x6a\xd0\x81\x36\x24\xa4\xcf\x91\xa0\xae\x95\xd4\x13\x9a\x85\x4f\x22\x0e\x89\xb3\xe5\x6b\x4b\x79\xc8\x47\xc0\x47\xc9\x9e\x6f\x82\x45\x29\xfd\x17\xfd\x84\x4e\x7a\x99\xff\x5d\x52\x2f\xdd\x0f\x4c\x7b\xa7\x84\xd0\x1d\xd0\x48\x0f\xaf\x75\xbf\x5e\x31\x3d\xac\xe1\x76\xfd\x34\x1b\x3f\x65\x7c\xdb\x60\x0b\x21\xb2\x9e\x48\xd4\x69\xd4\x7c\xe7\x9c\xd7\xa8\x38\xcf\x85\xb9\x87\x79\x8a\x29\x4f\xf2\x78\x99\xc3\x68\x74\x4e\xcb\xf4\xde\x33\xc1\xb6\xad\x71\xab\x55\x27\xef\x4c\xfd\x56\x83\xd9\x53\x88\x99\x2c\x64\x3b\x3b\xb3\xf5\x10\x9f\x4b\x55\x0f\x34\x0d\x15\x6d\x03\x2a\x8a\xe5\x81\xef\xcc\x93\x97\xaf\xaf\xe0\x39\x43\x73\x0d\x4f\x07\x73\x0f\x62\x9b\xe2\x99\xab\x93\x77\x88\xaa\xeb\x44\x72\xa8\x2b\x20\x9e\x57\xaf\x5d\xf9\xdb\x74\x10\x7b\x93\x93\xae\x56\x16\xf2\x3e\x5f\x9b\xdd\x53\x02\xc6\x8c\x9a\x5f\x4b\xa2\x16\xe4\x44\x1c\xa1\xe3\x2b\x1d\x33\xab\xca\x43\xa7\x2d\xab\xd6\xdd\x22\xfa\x69\x0b\x2f\x10\x85\x91\x18\x77\x52\xb6\x72\xed\xf8\x13\x7c\x75\xd8\xc9\x20\x66\x4c\x70\x15\x0e\x66\x37\x34\x0d\xe4\x9d\xb0\xe0\xad\x7c\x7b\x93\xb1\x42\x1a\xbb\xf7\xf6\xc6\x27\x04\x62\x0e\x65\x54\x11\xb0\x33\xd1\xb8\xc0\x6c\xfe\xc7\xff\xf9\xbf\x8f\x4f\x78\x78\x27\x7d\xbb\xa6\x2f\x95\x22\x19\x5e\xd0\x2d\x15\xa4\xe7\xff\x4a\xa7\x81\xbd\xda\x63\xfc\x22\x5f\x89\xfd\xc6\x92\xa4\xfc\x4e\xb5\xc8\xf8\x48\xf4\x17\xaf\xcc\x44\x3d\x9f\x79\x49\x26\x7c\x14\x53\xf2\xa0\x63\x58\xc8\x48\x7f\xdb\x55\x8b\x8f\x99\x68\x10\x9e\xa6\x7f\xe2\x5f\x29\x9c\x5e\x75\x2f\x61\xfe\xe4\x98\x0d\x88\x70\xc0\xb1\x42\xd3\x60\x30\x60\x35\xd0\xf7\xcc\x29\x8f\xf7\xc6\x1b\xb3\x37\x34\x40\xf6\xe7\x49\xb6\x3b\x36\x41\xe2\x89\xb7\xd6\x2e\x28\x05\xce\x51\x9c\xc8\x92\x4c\x50\x83\xbb\x4d\x8c\xea\x40\xf3\xd4\x5d\x71\x6e\x9b\x14\x01\x90\xe5\xf5\x61\x6c\x6a\x36\xcf\x69\xc8\x2a\x8e\x27\x8e\x6b\x2a\xb7\xec\xdb\x12\x87\x0c\xfa\x93\x10\x33\x66\x5b\x35\xbd\x9a\x64\xa7\xce\x3e\xc7\x55\x1c\xd2\xed\x62\x92\xef\x57\xf3\xa5\x56\x84\xd3\xc5\x73\xfd\x4c\x28\x9d\x7f\x5f\xd1\x9f\x91\xfb\x35\x3b\x6b\x8f\x9d\xb4\xd7\xf9\xbc\x44\xf2\x1b\x7c\x10\xfd\xd3\x7e\xd0\xd3\x2c\x40\x4d\xe6\x7e\x24\x8c\x86\xaa\x17\xe2\xc3\x57\xa2\xde\x0f\x72\x0d\x29\x9f\x09\x2e\x79\xda\x9c\x4d\x81\xdf\xe5\x7b\xf9\x49\x28\x52\x2f\xee\x57\xf2\x25\xc9\x30\x2c\x17\x50\xd8\x95\x3b\x78\x08\x90\xba\x02\x2e\xec\x3b\xb1\x0e\xcc\xc6\x1d\xb1\x9c\x81\x13\x79\xba\x18\xe4\x5f\xcb\x31\xf8\x05\x1f\x82\x2d\x2d\x07\xc7\x4e\xcd\xf0\xcd\xa5\x6f\x68\x19\xc9\x4d\xc8\x99\x7c\xb9\x9c\x42\x8c\x4d\x4f\xb1\x53\x6a\x9a\x19\xfa\x9f\xf3\x5f\x97\x4a\x34\xa9\x32\x12\xfd\x75\x46\xf3\x12\x63\x81\xcf\xbf\xe2\xb5\xee\x93\x67\xc3\xb9\x08\xb2\x6a\x16\x3b\xe6\xb8\x72\xa2\xe5\x85\xfc\x30\x7b\x41\xf8\x6f\x33\x57\xfe\x84\x7f\xa6\xeb\x51\x2d\x6e\x72\xc3\xb9\x1d\x34\x13\xc2\x50\x53\x93\x60\xd2\x5c\x08\x29\x2d\x6e\xa6\x80\xe9\xcc\x53\x47\xb0\xe7\x94\x10\x92\x56\x54\x31\x4b\xeb\x83\x9a\x21\xc0\x4f\xc3\xd3\x66\xc8\x8e\x55\x38\xc2\xe8\xe7\xb8\x9f\x01\x90\x74\x33\x9f\x00\x65\x4d\x92\x87\xa3\x81\x0f\x81\x54\xd9\xe9\x78\xce\x70\xf6\xfc\xfc\xd0\xd4\x0e\x27\x48\x32\x33\x92\xaf\x16\xa5\x73\x0b\x01\x10\xe4\x0c\x8e\x77\x10\x35\xe3\x2a\xd3\xc6\xa2\xfa\x80\xd0\x3e\x9f\x53\xf6\xfd\x02\xd8\x74\x85\x19\x57\x3e\x4b\x50\x67\x99\xca\x5c\xac\xe6\xa8\xca\x30\x8f\x44\xa2\x4c\xc4\x43\x41\x84\x13\x15\xd7\x13\x25\x6e\xa5\xa8\x21\xcc\xc1\x9a\x47\x74\xa3\x25\x6f\x99\x5e\x0f\xc1\x11\x02\x0e\x57\x7d\xa0\x9c\xca\x64\x90\xc4\xc6\x39\x33\x76\x1e\x72\xfc\xf3\x18\xf6\x28\xe0\xa1\x53\xa0\x9d\xc6\x3d\x21\xe1\x9b\xf7\x73\xd7\xd5\x42\xd5\x4a\x53\x85\x64\x96\x8b\x6c\x7e\xa3\x65\x64\x9e\xe1\x94\x79\xa0\xc8\x86\x4d\x5a\x70\xc4\xd2\x22\x67\x2e\x61\xa2\x48\xa7\x4e\xdd\xec\x55\x3d\xce\x99\xf1\x66\x04\x93\x17\xe6\x4d\xdd\x24\x08\x53\x29\x40\xce\xf1\x31\x05\x22\xca\x56\x55\x97\xf0\x2e\x20\xee\x0b\x76\x3d\x3b\xd9\x30\xdb\xf1\xb8\x12\x6f\x60\xd5\xd3\x7e\x41\x39\x36\x91\x65\xbe\x2a\xba\xf5\xb3\x06\x66\xab\xf8\x79\x4b\x3b\xbe\x80\x34\x34\x2a\xc1\x2b\x09\xb3\x40\x20\xf2\x9d\xde\x7f\xff\xed\x87\x8e\xa7\xc1\x5f\x5b\xbc\xff\xee\x03\x9d\x59\xef\xbf\xff\xfe\x03\xee\x2b\x46\x85\xb3\x6b\x56\xd7\x8d\x6b\x40\x41\x83\xde\xb6\xe5\xa7\xaa\xd9\x75\x22\xa3\xe1\xd3\xf3\x87\xcf\x32\x15\x9f\xfb\x78\x89\x3b\xe7\xf2\xc1\x0a\x2f\x5c\x56\xbc\xc2\xeb\xdd\x26\xd3\x31\x76\xc2\x01\xec\x97\x2b\x6e\x18\xc8\x72\x6e\xf2\x57\xf7\x9b\x87\x5b\x15\x3c\x58\xea\xbc\x1d\xd5\xff\x20\xbf\x9e\x61\x20\x3c\xf4\x5f\x5d\x4b\x4d\x70\xd3\x71\x25\xfe\xf1\x2c\x59\xbb\x3b\x97\x9b\xb2\x9f\xc5\x5c\xc9\x62\xb5\xa0\xcb\x71\x96\xf6\xc2\x83\xe8\xbc\xc1\x30\x38\x04\x6f\x4b\x20\xc6\xe0\xde\xe1\xe7\x20\xf3\xb6\xca\xda\xa8\x80\xb2\x5a\x4f\x25\x0a\x3a\xc0\xb5\x62\x4a\xb6\xa1\xaf\x43\x93\xb4\xe7\xea\xb0\x9f\x5f\x59\x8b\xc8\x13\x24\xb4\x5e\xbb\x7a\xae\x09\xe3\xf5\x02\x5a\x71\x5c\x1c\xf0\x50\xd5\x30\x54\xa0\xbf\xb2\x89\x6d\xa3\x91\xa6\x2e\xf0\x61\xc9\xa2\x86\x52\xab\x7f\x47\x9b\x91\xca\x4e\x13\xcd\x0d\x8c\x8e\x04\x74\xf8\x01\xc7\x36\xd7\x2f\xbe\x3b\xe2\xa4\x08\xb4\xaa\x33\x73\x1e\xd0\x53\x03\x31\x4b\x36\x78\x93\x11\x11\x19\xb1\xb7\xab\x6a\x81\x0f\x7a\xe6\x45\x57\x8b\xe6\xe9\x27\x17\xcb\x3c\x91\xe1\x6a\x2d\x0b\xe8\x45\x7e\xa6\x3f\x0e\xaf\x03\x23\x1e\xeb\x1f\xb7\x42\xdd\xa7\x3f\x96\x24\xfb\xa2\x2d\x3a\xbf\x6f\xc7\xf9\x8b\x66\xdd\xf8\x7d\x1d\xbf\x86\x00\xa2\x95\xbd\x5f\x0c\x64\x33\xc9\xf6\xb4\xad\xab\x97\x13\x06\x3b\x8f\x40\x4e\x0c\x46\x32\x06\x26\x6a\x71\xa6\xf3\x66\x91\x0e\xc2\xa7\xc5\x22\x2a\x8c\x6b\x51\x43\x2f\x80\x3a\xb5\xf0\x24\xd8\x94\xfe\x5f\xa4\x8c\x50\xdf\xcf\x32\x7b\x68\x28\xc1\x37\xde\xc1\x15\x80\xd6\x7c\x58\xe3\x3f\xdd\xb4\x3f\x13\x4b\x4f\xef\xb8\x5a\x94\x43\x50\x20\x83\x87\x87\x21\xcd\x64\x9d\x71\x4e\x74\x29\x66\x35\x7a\xd0\xe0\x14\xb5\x26\xea\xa6\xe1\x0c\x0b\x06\xdc\xef\x9b\xd4\x1d\xd1\x10\x23\x8d\x77\x89\x3c\xe5\xc2\xe6\x07\x88\xb5\xa1\xe5\x67\x83\x6a\xe1\xcb\xfd\x14\x06\x7c\xc3\x06\xb5\x85\xa7\xa9\x7e\x69\x7e\x74\x7a\x1c\x9e\x1a\x6d\xe4\x0d\x2b\xcc\x76\x6b\x6c\x10\xb8\x2f\x95\x1f\xd7\x72\xd3\x67\x40\x08\x33\xc5\x12\x8d\x6f\x2b\xe0\xf2\x12\x84\x4a\x0d\x38\x38\x77\x5e\x2e\x72\xd8\xea\xc2\x0d\xac\x66\x8d\x70\x5e\x04\xa3\x27\x10\x0e\x9a\x61\xf5\xb3\xf1\x73\x18\x3a\x8c\x79\x9a\xab\xde\xf4\x21\x03\x4c\xcd\xcb\x7e\xcf\xf3\x2a\x06\x15\x8c\x5c\x51\x2f\x77\x3f\x84\x3b\x35\xb1\xb7\x27\x68\xe3\x09\x6f\xd7\x85\xb2\xba\x3f\xe0\x87\x30\x3c\x45\xe5\x40\x98\x9f\x20\x03\xac\x76\x9b\x54\x26\x47\xe8\xdb\x37\x25\x35\x8a\x2d\xbe\xb0\xf3\xa5\x30\xde\x1f\xd9\x69\xcf\x38\x2b\xbe\x89\xc2\xd9\x60\x42\xd3\xbf\x77\xe9\x5a\x3f\x6a\xd2\x9d\xdc\x9a\x91\xb4\x7f\xac\x7a\x2a\xfd\x2f\x1f\x8c\x46\xe9\x28\x90\x85\xbc\x14\xf4\xe9\x7f\x46\x50\xc3\x63\xb5\xcf\x13\x1d\x31\x08\xaa\x34\x63\xca\x42\xf3\x75\xd7\x25\x52\x11\xd4\x38\x7f\x09\xc9\xd0\xdb\xc0\x70\x26\xa9\xd7\x74\xc4\x67\x46\xa0\xd8\x74\x97\x62\xb3\x08\x35\x10\x71\x5b\xdf\x12\x53\x8d\xcb\xb9\x1a\x55\xeb\x56\xbe\xc2\xc4\x0b\x5f\xaa\xe0\x20\x5b\xb4\x3e\xec\x2a\x94\x7e\xb9\x4b\x8f\xe9\xba\x14\xb6\xd8\x79\xfb\x76\xc6\x22\x15\x82\xee\x2b\xe0\x67\xd6\xf7\xaa\xcb\x60\x03\x25\x36\xd4\x57\x6a\xd8\xb4\xae\x16\x7d\xea\xd2\xa9\x39\xb5\x72\x87\x25\xcc\x52\x62\xf2\x38\x93\x76\xda\x2c\xbb\x15\x82\x7c\x30\xc0\x35\x71\xa9\x4d\x03\x29\xce\xb1\x88\xbc\xce\xa0\xec\xc7\x50\xc3\xc8\x1f\xac\x94\x35\xe4\x32\xc4\xe3\x01\x86\x45\x31\x36\x18\x6e\x50\x2d\xb4\xe1\x87\x6a\x7e\xd0\xdf\x5e\xb7\x71\x01\xf1\x3e\xe1\x45\x6f\x43\xef\xdc\xf2\x35\xdd\xc8\xc1\x26\xa7\x82\xc1\x85\x2a\x38\x9a\x87\x46\xe2\x46\xc0\xb8\xa8\xea\x23\xa2\x19\xb2\x15\x10\xd0\xd4\xea\x06\xd1\xee\x6a\x5d\x84\x28\x05\x2d\x20\x93\xf9\xaf\xe3\xf1\x2a\x31\x1f\x1a\x6b\xc8\xb6\x6a\xd9\xb6\x23\x7a\x7a\xf8\x87\xfb\xc5\x23\x59\xc8\x30\x2c\x1a\xdd\xc6\x70\xa2\xa0\x33\xdc\x22\x79\xcc\x55\x07\x2f\x70\x26\x1b\xde\x2c\x18\x88\xbe\x67\xbf\x26\x81\xa6\x2e\xd8\xcf\xfc\x19\x3c\xc8\x9e\x50\x18\x04\xb9\xd3\x4a\x83\x21\x40\xe1\x55\x31\xf7\xbb\xa8\xed\x26\xa3\xe5\x91\xe9\x89\x8e\xb6\x14\x5e\x2c\xf8\x35\xec\x82\x1d\x65\x86\x55\xbb\x43\x41\x3c\x22\xda\xdb\xe7\xbc\x8f\x88\x6f\xb3\xf0\xe9\x40\x3b\x49\x24\xa0\xce\x2a\x7a\x81\xae\x02\x42\x54\xfd\x80\xcd\x4f\x62\xc7\xc4\x3a\x78\xd7\x86\x19\x13\x97\x82\x61\xae\x1f\xf4\x29\x8d\x98\xf5\x81\xe9\x43\x0b\x0c\xf6\x28\x1e\x64\x29\x96\xda\xfc\x37\xcc\x70\x71\x5c\xb4\xaa\x4c\xa6\x5e\x6b\x44\xe5\x9a\xe2\xe3\x9b\x1c\x39\xdf\xd4\x07\x37\xf4\xef\xf1\x66\xf3\xb8\x28\x1e\x4c\x8c\x3a\x10\x8d\xdc\xb0\x07\xe6\x66\xaa\x85\x18\xb0\xca\xa0\xa6\x40\xce\x9c\xc6\x1d\x03\x44\xf3\xf4\x0b\x4b\x01\x25\x5f\x9a\xa5\x85\xc7\x9b\x90\xae\x9f\xbb\x8e\xb7\x80\x86\x18\x9e\x37\x61\x61\x56\x21\x3e\x8c\xe1\x48\x06\x12\x7a\x90\x35\x70\xcd\xbe\xb5\x7b\xee\xda\x44\x25\x3a\x62\xdf\x9b\x03\x28\x91\x60\x7e\x07\x11\x12\x48\xc6\x1e\xa9\x4e\x3a\x9e\x00\x9c\x92\x8d\x7d\xdb\xff\x4c\xf9\x78\xaa\xf1\x29\x12\xb8\x4b\x42\x9e\x0a\x1c\x6b\x69\x33\xa1\x6f\xb8\xc6\xc8\x97\xcf\x0a\x82\xd1\xa8\x9c\x11\xfc\xf6\x60\xab\xa6\xf9\x28\x01\x79\xe6\xf8\xf4\x39\x4b\x0e\x44\x29\x99\x1c\x72\xf1\x55\x9c\x4b\xa2\x65\xb5\x08\x03\xd4\x3e\xe7\x84\x89\x2e\x16\x3c\xc7\x6d\xf6\x77\xd1\x49\x9e\xe2\x57\xfa\xbf\x98\x30\x1c\x88\xfa\xb5\x9c\x5b\x00\x26\x36\xb9\xf0\xb9\xea\x91\x10\x34\xa5\x0e\x14\xe3\xb6\xd4\x64\x9f\xd9\xf9\x97\x79\x9d\x4c\x79\x9b\xc4\x2e\xb0\x33\x5f\xbb\x73\xa2\xe3\xdb\x21\xfd\x3c\x37\x3f\xbc\x31\x98\xbb\x9d\xf5\xbe\x77\xf1\xe5\x14\x1b\xcc\xd5\x62\x6a\x0f\xff\x3b\xbe\x47\x6a\xb0\x61\x85\x4e\x7f\x44\x77\x2e\xc6\xa3\x9e\xb8\xa1\x05\x80\xf9\x59\x17\x74\x0f\xc1\x8d\xe1\x81\xcb\x92\x59\x27\x77\xf1\xea\x49\x28\xfe\x28\xa2\x29\xc8\xdd\xe9\xbd\x83\xd1\xc2\xc4\xd6\x07\x1d\xb8\x0b\x8e\x23\x0e\x2d\xd6\x55\xe4\x05\xd3\x3b\x70\xc2\x02\xa6\x83\xeb\xed\x01\xa0\x21\xe5\x9c\xf8\x87\xd8\x47\x4a\xb1\x3c\x72\x62\xec\x03\x0d\x96\xd8\x34\xf1\x95\x9d\xeb\x11\xb3\xa7\xb2\xed\xe1\x3e\x38\x46\x3b\xbb\x33\xd0\x02\xca\xbe\xa5\x66\x1e\x43\x56\x92\xa8\x94\x18\x84\xac\xbf\xea\x3a\xc0\x07\xcc\x3c\xd9\x6c\xf3\x53\x55\xec\x88\xfa\x78\x2e\x6e\xab\xf7\xbb\xb8\x5e\x5a\xf1\xb8\x55\x3f\x58\xf7\x60\x3e\x21\x44\xb8\x90\xc5\xf0\x1f\xbd\xf6\x6e\xd1\xdd\x54\xcb\xcc\x84\x9c\xb6\x43\x71\x00\xf7\xe6\xd4\xfb\x07\x86\xac\x4a\xf8\x10\x0c\xcd\xc4\x16\xdc\xc4\xa4\x1f\xd2\xd1\x7c\xc4\xd8\x12\x9f\x53\x27\x55\xdd\x69\xea\x36\x22\x84\x01\x96\x06\xf5\x01\x61\x81\x41\x9a\xcd\x3e\x0f\x9f\x43\xdd\x69\x38\x65\x3b\x03\x84\x24\x21\xb1\x12\x10\xdd\x99\x0d\x07\xe8\xa8\x70\xa4\x3c\xf8\xc8\x69\x55\xc5\xd3\x2e\xb0\x5d\xf4\x3c\xb0\x89\x30\x3b\xe8\x2b\x4c\x04\x04\x01\xaf\x47\x4d\x7b\x07\xc0\x23\x6f\x77\xe5\xec\x40\x58\xee\x64\x13\xb7\xba\x28\xb7\x1c\x6b\x93\x15\x9b\xd7\xb2\xdb\x0a\xcf\xbf\xa3\xd5\xef\x6e\x6b\x55\xcc\xc5\xa6\x9a\x35\xc3\x49\xf5\xa8\xc7\xa2\xe5\x00\xd9\x77\xb4\xf6\xbd\xb5\x16\x6e\x59\x1f\xcb\x72\x1b\x34\x11\x77\x3f\x70\x24\x01\xf3\x8c\x0d\xb8\x26\x38\x9a\xfa\x4a\x9a\x73\xf5\x01\x26\x1e\xc5\x8a\xf1\x56\x02\xba\x9b\xdd\xe1\x57\x36\x5e\x20\xa6\x02\x45\x54\x77\xa8\x41\x1d\x0c\x6b\x79\xb2\x80\x73\xc3\x94\xd7\x58\xf2\x44\x55\x62\x22\x3c\xb0\x3d\xf2\xde\xd6\xae\x6b\x56\xa0\x3d\xdc\xbd\xd8\x0a\x34\x9d\xb0\xfe\x74\xa0\x6c\x62\x1f\x12\x6b\x2a\x8e\x15\x3c\x9e\x93\x20\xf9\x70\x81\x81\x3b\x43\x54\x57\xec\xce\x10\x74\x50\xa8\xe8\x50\x3d\x27\x93\x75\x28\xe5\x05\xb5\xc8\x35\xbf\xc4\x23\x8c\x2f\x54\xf5\xde\x1f\x0c\x75\x16\x12\x03\x83\x56\x70\xb8\xcf\x34\xfa\x99\xbe\x61\x30\xf4\x78\xd7\xdc\xfd\xaa\x09\x22\xd9\x88\x57\x06\x76\xaf\xb0\xeb\xb3\x18\x3b\x7b\x11\x68\x14\x93\x2a\xde\x0c\xe4\x1e\xdb\x8d\x4c\xf8\xc1\x21\x79\xb3\xa3\x3e\xaf\xab\x8f\x50\x9f\x11\x29\x4b\x38\xe4\xf3\xcb\x2b\xe8\xcc\x68\xc9\xd0\xce\xbb\x64\x4e\x9d\xfe\x65\x55\xd6\x88\xd0\xc9\x51\x89\x95\x75\x2d\x16\xec\x4c\x55\xd5\x1a\xbe\x70\x5f\x9a\x89\x7b\x5d\xac\x85\xd1\x85\xee\x76\x26\x6f\x88\xee\x2c\x45\xe4\x61\x5e\x9b\xdd\xb6\x5c\x90\x14\x3d\xe3\x8b\xb2\xb6\xc6\x73\x0e\x2e\xc8\xfc\xad\x96\x9c\x6e\x24\xb0\xe8\x61\x15\x5b\x80\x16\x45\x49\xa8\x4f\xd6\x5d\x7b\x84\x9e\x21\xe8\x94\xdc\x6c\x18\xbe\x4d\x6a\x06\x47\x16\xcb\xea\x8a\x19\x7c\xaa\xd6\x27\xb7\x39\xac\x1c\xec\x43\x18\x3e\x52\x9a\xbe\x43\x78\x1e\x56\x35\xf3\x9a\x08\x53\x3f\x4c\x80\x74\xdb\x46\x0c\x45\xdf\xe9\xe7\x18\x48\xce\x57\xdc\x93\x57\xf2\x35\x06\xd9\x6a\x94\x27\x17\xef\x69\x0c\x32\x6f\x0a\x3e\x31\x3d\xa7\x3f\x63\xb1\xdb\xbd\x1d\x60\xb2\x37\x88\x73\xcb\x91\x02\xe4\x5e\x9a\x33\x08\xdd\xe5\xfa\x5a\xa2\x3e\xb0\xae\x09\x07\x44\x51\x0f\xb2\x85\xb5\x84\x3d\x65\x8b\x60\x54\xa0\x7e\x7f\x70\x69\x41\xcc\xb7\x50\xf7\xa7\x3e\xc2\xa1\xd3\xe7\xb0\x4f\xb8\xe7\xb0\x7e\xbd\x16\xa9\x05\xd3\x80\xe3\xb0\x04\xe8\x3b\xe2\xcd\x88\x4f\x92\x76\xf3\x68\x5b\xd6\x56\x82\xf2\xb1\xb7\x16\x11\x35\x02\xa9\x18\x88\x48\xbd\x62\xc3\x15\x18\x3b\x5b\xa0\x72\x10\x1b\x10\x36\xee\x91\x1a\xa7\x33\x82\xc4\x2c\x7d\x04\xe1\xef\x45\x01\x64\x6e\x60\xc3\x9d\x49\xc1\xfd\xe9\xe2\x55\xb4\x1e\x02\x8e\x12\x3d\xea\x80\x8e\x6a\xa8\x3d\xd1\xfd\x32\xa7\x30\xd5\x6f\xa0\x62\x65\x5c\xb1\x29\x66\xb0\xba\x79\x63\x27\x71\x4a\xe4\xee\xb6\x5c\xe6\x6d\x61\xe1\x65\x94\xd3\xb0\x8b\x0d\x38\x4a\xe8\x4d\x9c\xaf\xe9\xb8\xae\x55\x10\x67\x24\x90\x8f\x6c\x48\x45\xf3\xcd\x52\x91\x69\x28\x58\xbe\x2c\x84\x8d\xb1\x43\x23\x31\x97\xdd\x96\xf9\x8d\x30\x2f\x6b\x07\x43\x7e\xf8\xc7\xcb\xf3\xb7\x47\xe9\xe7\xc7\xfb\xfd\xfe\x31\x17\x7f\xbc\x6b\xd7\xec\xfa\x57\x70\xf8\x9a\xff\x79\xf6\xe6\x28\x2d\xfb\xc5\xa3\x19\x1d\xed\xdb\x58\x21\xa6\x36\xa7\xb8\xac\x60\xea\x62\x61\xf3\xf7\xb3\x27\x5d\x31\x1a\x30\x3e\x8c\x92\x16\x6e\xa9\x3c\x7b\x66\x2e\xa2\x93\x29\x66\x23\xc1\x86\xb4\x68\x4b\x58\x5b\xe0\x23\xc8\xa0\xdd\xe9\xe3\x54\xd8\x82\x21\x48\x45\xed\x68\x37\x5e\x2f\x34\x60\xfd\x00\xc4\x2e\x17\x4f\x70\xad\xe8\x32\x31\x71\x6e\x5b\xe1\x50\x7d\xdd\xaa\xd9\xad\x8b\x98\x63\x12\xce\x74\x22\xca\xe2\xa7\x61\x61\xd8\x45\x22\xe2\xf4\xd3\xf4\x8f\xac\x5b\xe2\x89\x12\xda\xe2\x2c\xa3\x2d\x00\xcf\x86\x85\x11\x3b\x31\x10\xa5\x69\x00\x12\x13\xd2\x44\x79\x9f\xe7\xc4\xf9\x51\x25\x7a\xe2\x63\x33\x8d\x3e\xdd\xb8\x13\x20\x68\x4d\xaa\x1b\x17\x89\x35\x7b\xd3\xd9\x86\x17\x31\x8f\x3c\x52\xc3\x49\x53\x7b\x4d\xe1\x21\x15\xa3\xd0\x49\x14\x05\xfc\x11\xa0\xcc\x45\x42\x2b\x55\xbf\x76\xc1\x98\x52\x0d\x16\x5a\x0e\x33\x82\x50\x0f\x65\x0f\x27\xfb\xa9\xb5\x28\x67\x70\x37\x6b\x7e\xf5\x18\x7f\xd3\x1d\x4e\x24\x13\xf1\x4b\x8a\xb8\x07\x58\x47\x2c\xa5\xed\x87\xbb\xd8\x50\x40\x53\xde\xe4\x45\x19\xe5\x4d\xa3\xed\x5a\x01\x07\x6d\x8c\x76\x49\x95\xa7\xc7\xa7\x04\xdf\xc2\x21\x81\x40\x8c\x82\x32\x1d\xa5\x45\xbb\x81\x73\xe7\xa9\x4b\x8b\xc5\x2b\x5b\xa5\xe0\xbb\xf1\x12\x65\x84\xc8\x3a\x0a\x39\x2a\x0b\x6a\xb1\x09\x01\x83\xc0\x27\x99\x9d\x17\xcc\xee\x7b\xe4\x91\x1d\x0a\xdd\x52\xab\x79\xd7\x89\x17\xe0\x20\x73\xf8\x42\xc7\x70\x65\x93\xac\x26\x6f\x3c\x9d\xc8\x57\x88\xad\xed\xba\xb9\x31\xa7\xf5\x53\xfc\xd2\xa8\x36\xe1\xc8\x3c\x98\x0e\xca\x43\x06\xea\x9a\x26\x8b\xab\xfb\x6b\x10\xe8\x55\x45\xdc\x9a\x4f\xc8\x28\x4a\x30\xe1\xc1\x27\x52\x91\x4f\x74\x6f\xc2\xef\xd9\x41\x0d\x3d\xb4\x4f\x5d\x0b\x07\x3c\xb4\xe3\xa2\xa1\x97\x76\x50\xf4\x0b\xbc\xb4\x63\x24\x8d\x7d\xb0\xfd\x50\xbf\xc0\x0d\x7b\x6a\xd0\x63\xb9\x76\x0a\xf1\x13\x05\xa6\xa4\xdb\x22\x1c\xdb\x17\xb8\x63\x0f\xce\xc2\x5f\x22\xe0\x4e\xf5\xc4\xa3\x24\x40\xee\x5d\x3a\xe2\xa2\xba\xbe\x9e\xcd\xdb\x66\xdf\xb1\xcf\x33\x9e\xbb\x60\x2e\xcb\xbf\xd3\x4b\xfc\x16\x10\x36\x0e\x00\x51\xc8\x87\x24\xaa\x81\xd2\x53\xbd\x0b\x94\x44\xdc\xcc\x0e\x83\xec\x9f\x52\x8e\xdc\xd2\xbe\xa5\x93\xd8\xb1\xe5\xcc\xa4\x08\x6d\x74\xfb\x8c\xbf\xe0\xad\x0d\x7d\x35\xab\x57\x51\xe8\x92\x53\x14\x8c\x3f\x0d\xe1\xb6\x2b\xc1\x36\x4e\xee\xb1\x45\x7c\xf5\xba\x26\x10\x96\xc1\x11\x18\x11\x43\x05\xf9\xd4\x83\x84\x5e\x99\x04\x61\xb8\xf4\x10\x8a\x20\x2c\xfa\xe7\xaf\xdf\xca\x4f\x18\xbc\x6b\x94\x24\x58\xbc\xf3\x75\x7a\x62\x66\xf4\xb3\x29\x73\x7a\xcb\x13\xcf\x07\x51\x8c\xd8\xfb\x74\xf8\xe5\x20\x8a\x36\xbf\xc6\xc5\x11\xff\x75\xa9\x24\x03\xfb\x62\x17\x6d\xf9\x78\x58\x8c\x90\x23\xa8\xbe\xc4\x87\x4b\xd7\x8b\x1f\xfe\xe3\xd2\x72\x18\x75\x3c\x0d\x46\xee\x31\x62\xd6\x03\x44\x77\xf7\xbb\xb4\xab\x58\xdb\xaa\x04\x3a\x68\x10\xd4\xe1\x23\x20\x83\x76\xf0\x62\x5b\x38\xd6\xf0\x46\x09\x91\x19\xba\x55\xea\xf0\xc3\x6e\x41\xbd\x38\x5d\xeb\x0b\x2c\xb3\xa8\xdf\x51\x69\xd9\x62\x4b\x9b\xed\x74\xdd\x2c\x21\x45\xc2\x65\x51\x9e\xe2\xd8\xf1\x93\x35\x84\x08\x8e\xb6\xc5\x12\x87\x23\xfe\x6a\x43\xf5\x7f\x92\x10\xea\x52\x3d\x49\x0f\xce\x29\x9c\x04\x89\x5a\xfc\x52\x2d\x0f\x47\x6a\x8b\x22\x17\x95\xf1\x21\x9a\x4d\xb7\xed\x7d\x4e\x28\x1f\x92\xc9\x22\x74\x65\x61\x31\x85\xc3\x64\xc8\xd8\x83\x0e\x44\x8c\xd8\x52\xc7\xcc\xd7\x72\xf6\xad\x86\xf0\xe2\xbf\x21\x59\xe8\xeb\x26\x17\xf2\xe5\x72\x58\x02\x16\x31\xee\x8d\x7c\xc9\x4b\x7c\x43\x6a\x1a\x87\x2d\xa0\xbc\xc7\xc3\xb9\x0e\xe0\x1d\x02\xfe\x52\xfe\xc7\xff\xfe\x7f\xac\x94\x6d\x68\x87\x45\x8c\x11\x0d\xd3\xe9\x69\xc5\xfc\xec\xfc\xf3\x3a\x8f\xc1\xd7\x7d\x47\x86\xd7\x82\xae\x41\x25\x15\x4f\x34\x23\x7a\xe7\x97\x28\x6c\xad\xb0\x85\xdf\x60\xc1\x80\x7e\xfc\x92\xc1\xc5\xe7\xb0\x0e\x23\x82\x4c\xf7\x1b\x17\x3e\x50\x01\x85\x83\x60\x44\xbd\x12\xc9\xf4\xf6\xe4\xd6\xae\xbe\x0a\x02\x26\x6c\xdf\x49\xf2\xbe\x69\x97\x1f\x7c\x08\x5a\xa7\xe5\x8a\xc2\xcf\xe2\x0c\xca\x30\x2e\x88\xdb\x01\x40\x1f\xd8\xcd\xd7\x68\x93\xf2\x92\x49\x6f\xfc\x8a\x9a\x68\x00\x24\x4c\x38\x0c\xd8\xcc\x73\x7a\x66\x1e\x59\x12\xc1\x52\x2f\xd7\xa3\xe7\x2d\xe1\x28\x65\xea\x54\x93\x23\x8b\x44\x6f\x7d\xd9\xb1\x87\x3f\x38\xc8\x28\x3f\xc8\xc7\xfa\x2c\xb9\xaf\x7b\x8d\x04\x62\x0c\x48\x40\x00\x5d\x38\x34\xf1\xdf\x04\x61\x0b\x55\x83\xc7\xa9\xfa\xa5\xe9\x83\xd0\x88\xd1\x23\x14\x81\x07\x19\x42\xa6\x46\x2f\x4b\x70\xe5\xc0\xca\xc4\x85\xff\x28\x90\x2e\x50\x88\xd4\xdb\xa0\x23\xb7\xe4\x07\x6b\x5c\xf2\x68\x1c\x2e\xa8\xce\xd9\x90\xac\x16\xe1\x12\x74\x82\x30\xae\x75\x64\xf6\xda\xcd\x7c\x33\xc1\xfa\x59\x89\x35\x80\x2f\x86\xf7\x9d\xe6\xb4\x92\x7e\x12\xf8\xc8\xbb\x52\x8f\x85\xb9\x84\x15\x90\xe4\x74\x4d\x27\x8c\x75\x74\x4e\x44\x45\x2c\x0b\xfe\x74\xc0\xb3\x76\x1c\xf2\xf8\xeb\x7d\x6b\xc7\x75\xdc\xee\x5d\xfb\x7b\x2f\xa2\xa7\xc3\x19\x86\xca\xb0\x41\x5c\x43\x97\x35\x15\xe0\xf0\xf7\x5c\x0b\xc7\xa0\x81\x88\x15\xa1\xc0\xd5\xf4\xa5\xd7\x0f\x7a\xdb\x4c\x94\xfa\x8f\x5d\x36\xc7\x81\x7e\x87\xbd\x1e\x45\xe2\x8b\x3a\xfd\x75\x11\xf9\x0e\xde\xda\x46\xbc\x62\x78\x38\x1c\x85\xd5\xc0\x00\x6f\x2d\x12\x07\xd9\x08\x3b\xec\xd4\x81\xc1\x2d\xa0\xde\x29\x48\x78\x0d\xd1\x71\xdf\x1d\x63\xe3\xc0\x35\xcb\x6d\xc1\x36\x86\xbd\x64\x1e\xe3\x9c\x3a\xc2\x4e\xde\x5a\x22\xdc\x6b\xe3\x9b\xfa\x7f\x24\x00\xc7\xf4\xc5\x04\x1f\x1e\xf7\xa6\x33\xc3\xce\x6c\xf8\xf3\x9a\x08\x3e\x7c\x18\xbe\xe4\x74\xe2\x19\xad\xc7\x1c\xa4\x2a\x41\xee\x20\xb0\xb4\x72\xed\x99\xde\xdc\x59\xec\xad\x41\xba\x67\x79\xb0\x9b\xd6\xbb\x49\x0f\x24\xbf\x21\xc2\x4c\xe6\x0c\xcb\xc7\x6d\xc4\x3e\x0c\x96\xea\xee\x86\xce\xf0\xe1\xd2\x09\x6b\x8b\x12\x81\x0c\x4e\xe4\xcb\xe5\xe8\x21\x4d\x83\x75\xfb\x4e\x48\x20\x66\xf8\x1d\x05\xa9\xba\xdb\x29\xae\xd9\x85\x9a\x26\xe5\x66\xcb\x53\x98\xa7\x4e\x4d\xc8\xf2\xad\xec\x82\x22\x0b\x6a\xaf\x20\x5a\xff\x30\xac\x4b\x9e\xdd\xd1\x5d\xf3\x6d\xb3\x4f\x64\xcb\x9c\xc1\x95\x42\x02\x07\x6b\x4a\xdc\x25\x49\x63\x81\x44\xa3\x3a\xa5\x12\x6f\x42\xe3\xfe\x8c\xf3\x07\x21\x0a\xb0\x63\xb8\xe0\x04\x16\x07\x9c\x85\x4a\x75\xda\xa9\xe5\x6e\x26\xf6\xd9\x97\x5a\x21\x94\xfa\x66\x21\x9b\xc6\xed\x86\x10\x5f\xd2\x30\x5e\x59\x1e\x36\x77\x64\x8a\x31\x84\x89\x54\x8d\x9d\xc4\xc3\x93\x56\xf4\xe9\x5c\xeb\x87\x7b\xbd\xce\xf7\x23\x84\xf8\x92\x7e\x70\x2b\xb0\x3f\x97\x43\xca\x2d\xfd\xa1\x53\xa5\x46\xbd\x8c\x6c\x06\x86\x5d\xf4\x4e\xf5\x57\xc1\x3e\x0d\x3b\x95\x62\x20\x77\xb0\x1e\x7a\xbc\x61\x4a\x8e\xdc\x27\x4f\x88\x06\x62\x4e\x34\x19\x10\xeb\xee\x25\x0e\x43\x7f\x2e\xe9\x40\x03\x43\x21\x0f\x36\xb9\xeb\x48\xbf\xbc\x28\x07\xd9\xea\x4c\xe5\x39\xc9\xbc\x7b\xc3\x15\x38\x0b\x05\x25\x72\x5d\xb8\x65\x40\xb0\xb3\x99\x2c\xe4\x51\x04\xb7\xc6\x99\xd5\x05\xad\x8e\x2b\x73\xac\x1a\x50\x8e\x45\x8f\xe1\x8c\x77\x86\x52\x59\xa0\xa5\x65\xa6\x7c\x64\xb2\xaa\xb3\x62\x00\xd4\x26\xbf\x89\xec\x84\x60\xd6\xbc\x89\xdf\x19\xbe\x45\xb1\x33\xee\x8a\xdf\xb5\xe5\xa5\x01\x47\x30\x07\xb5\x39\xb3\x70\xa9\x8f\x09\xc4\x93\xdd\xb2\x85\x0f\x84\xcd\x35\x33\x8b\x80\x14\x50\xe1\x0f\x6e\x94\xee\x79\x4b\xcf\x0d\x70\xed\x4c\x15\x3d\xb8\x8d\x29\x7c\x45\x07\xc0\x36\x6e\xef\x01\xd8\x82\xb8\xc5\x51\x37\x02\x16\x70\x5b\x47\xf4\x5d\xca\x2f\xef\x08\xf8\xc6\x17\x76\xe4\xc8\x7a\xa1\x51\xba\x8b\x62\x72\xfd\xdf\xd6\xbf\xc1\x31\x07\xc4\x19\x85\x81\x1f\x10\x7c\xf4\x8e\xbe\x23\xfa\xc0\x62\xce\xaa\x85\x6d\x86\x5a\xf0\xe9\x76\xe6\xab\xaa\x69\x0a\x71\x6e\xad\xfb\xd0\xca\x2f\x8e\x65\xc2\x06\x66\x7d\x7b\xa3\x22\x09\x0f\x2e\x0e\xb8\xe2\x8d\x7b\xe4\xf0\x85\xbb\x63\x79\x1a\xe0\x3d\xd0\xfe\x21\x71\x4f\x23\xf2\x52\xb6\xef\x44\x14\x35\x72\x7f\x86\xe0\xec\x3e\x2a\x7b\x3a\x8c\xd2\x7e\x6b\x84\xfc\xf8\x65\x80\xe1\x13\x11\x9d\x04\x52\x5b\x9a\x2c\x67\x0f\x52\x26\x6a\xd4\xc4\x8c\xf5\x86\x70\xb0\xc1\x6b\xc4\x0b\x0e\x96\xdc\xd4\x95\x98\xcf\x9c\xc9\x17\x8d\x3d\xc1\x98\xb2\xad\x84\x8f\x78\xc1\x3f\x24\x80\xa5\xa6\x70\x00\xcb\xa4\x6f\x7a\x08\x14\x57\xfc\xf7\x87\xf4\x7e\x91\xf8\xa1\x43\x65\xc9\xda\x21\x95\x12\xe4\x3b\xc8\x0f\xc2\xb9\xc3\xa4\xbe\xb5\x00\xf5\xbe\x06\x74\x13\x8a\xd1\x5d\xd0\x6d\xed\x24\x2a\xdd\x75\x53\x2d\x66\x7c\xdd\x9a\xea\x65\xb3\x7b\x93\x9e\x39\x08\x3f\x13\x57\xf0\x33\x71\xa2\x36\x3b\x0a\x12\xa2\x09\x09\x33\xb6\x2e\xaa\x6a\x94\x1c\xef\x8a\x3e\x5d\xe2\x41\x45\x49\x1c\x6e\x26\x4a\xc8\x17\xa3\x56\x4c\x2d\x1e\xa6\x99\xa9\x9e\x4f\x31\xa3\xbd\xa8\xf6\x38\xb2\x66\x98\x25\x96\x8e\x51\x92\xbe\x8f\x19\x8f\x44\x94\x92\x61\xda\xba\x59\xf2\x2b\x0e\xf6\xfe\x72\x30\x3c\x15\xac\xe3\x3a\xcd\x6a\x3b\xaa\x02\xde\xa1\x61\x0a\x6e\xcb\xfa\xbc\x8b\x4b\x63\x7d\x86\x09\xea\x59\x3f\x02\xa4\x83\x76\xbe\x58\xa9\x13\xd1\x04\x21\xd9\x79\xd9\x11\x93\x1c\x9a\xa7\x20\xe5\x0d\xd3\xd4\x5e\x2c\x9d\x84\xe1\xd7\xe9\xf1\x40\x6c\x90\xcb\x5e\x10\xec\x72\x83\xe0\xa3\x8d\x46\xcd\x62\x97\x08\x17\x68\x34\x3d\xc7\x72\xec\x6e\x2d\x14\x6c\x71\x1c\x97\x41\x83\x9b\x6a\x49\x11\x47\x6e\xd9\xeb\x7c\xcd\xba\x6b\xaa\x19\x49\xf0\x9e\x5d\xe7\x85\x88\x1c\x2e\x5a\x7a\x9d\x6b\xd9\x5f\x54\xc7\xa0\x97\x1e\xc2\x55\xf3\xf5\x5d\x85\x4a\x8d\x0d\xdc\xa8\x37\x83\x4e\x46\x3c\xcf\x40\xee\xa8\x61\xd0\xc5\xc9\x2a\xbe\xbe\x93\xd8\x34\xeb\xa5\x7b\x12\x76\xaa\x93\x37\x88\x4e\xdb\x16\x7a\xc2\x5c\xb3\x11\xda\x4b\xb3\x23\xba\xa3\xca\x43\xbd\xbe\xb5\xce\xaf\x18\x06\xbf\x0d\xbd\x5c\xf8\xee\x73\x6c\xee\x76\xce\x8c\x9b\xf7\xe9\x72\x61\x4e\x74\x91\x76\x71\xba\xf8\x6d\x08\x46\x87\x58\xaf\x30\x55\xfd\xa1\xbe\xb5\x65\x77\x53\x2f\x32\x3c\x6c\xdc\xad\xf4\x16\xf7\x5d\x29\x3a\xfe\x07\x33\x4a\x7b\x92\x6b\x00\xba\x12\xf7\x9d\xdd\x03\x79\xbe\xe1\xe1\x82\xd2\x61\x8e\x4d\xdb\xf8\x63\xb0\x76\x94\x36\x21\x95\xb1\xf5\xe8\xd6\x86\x06\x63\x09\xf8\x7a\x80\xdb\x16\x5d\xe9\xcb\x2f\x1a\x41\x60\x41\x10\x0e\x83\x09\x45\x99\x18\x58\x5e\xf8\xda\x10\x23\xee\x21\x5b\x83\x70\xb4\x75\x36\x75\x51\x13\x32\xdd\xb4\xed\xe1\x6a\xbd\xd7\x3b\x30\xa0\xb0\xdd\x5b\x66\xe8\x41\xd4\x8b\xbb\xc7\x18\xee\xa5\x88\x79\x47\x0d\xb1\x81\x34\xce\x62\x88\x81\xf7\x0b\x7e\x87\xbc\x4d\x1e\x84\xc8\x96\x4d\xdb\xd0\xf4\x48\xb0\x23\x7d\x24\xe2\xa5\xa5\x75\x13\x05\xa0\x87\xbf\xc9\x76\x1a\xa0\xca\xca\x9c\x21\x99\x64\x24\x8e\x56\xe5\x4b\x41\xd2\xb0\x32\xac\x5d\x5d\xa8\x4e\x1e\xa2\x87\x95\x3a\xb6\x8c\xa0\xa4\x96\x69\xe6\xec\xf9\xa0\xfe\xb8\x00\x3e\xd7\x94\x00\x16\xf7\x39\x1c\x41\x88\xd0\xb5\xdb\x66\x3c\x54\x84\x3a\x91\xe4\xf4\x0d\x92\xd3\x2b\x4e\x1e\xb7\x60\xbd\x72\xc5\x06\x9d\x3a\x54\x8e\xa3\x4a\x0c\xcb\xbc\xe0\xe0\x13\x43\x78\xc3\xdc\xaa\xcc\xb7\x23\xbc\xbd\xa2\xc4\x11\xd6\x00\x39\x46\x00\x60\x0f\x63\x21\x2c\x55\x15\x38\x3c\x86\x25\x5e\x53\xd2\x21\x68\x98\x47\x0c\xe1\x6b\x96\x78\x0f\x94\x50\xd1\x63\xd8\x2b\xbd\x84\x1a\xf5\xaa\x99\xff\xad\x5c\xf4\x9d\x41\x9f\xcb\xcf\x00\x6a\xde\x34\x3d\xbf\x82\xbc\x65\xa9\x11\x66\x6b\x82\xa6\xe7\x96\xce\x52\xe3\xe2\xe3\x08\x53\x02\x3d\x46\x95\x40\x1f\xc6\xd5\x86\x03\x56\x52\x5b\xed\x6e\xd1\xef\x68\x81\xba\x06\xcf\x2e\x39\xd0\xe5\xa5\xcb\x18\xb5\x38\x2a\x19\x52\xe8\xb0\xf0\x54\xcb\x0b\x92\x85\xca\xc9\xa6\x4f\x38\xe7\xd6\xb6\x47\x65\xc3\xc6\x47\xc5\xa7\x56\x0a\xde\x3c\xe2\x0d\x6d\xbe\x5b\x7c\x2c\x7b\xf6\x9e\x5a\x65\xb8\x7e\x0f\xeb\xba\x30\xb0\xf4\x39\xc0\xd2\x57\x04\x96\x5e\x41\xd3\x34\x51\x2b\x6d\x3a\x9b\xb2\xcf\x61\x46\x11\xd4\xf2\xf2\x84\x66\x80\x93\x8b\x7c\xaa\x14\x34\x50\x99\x1e\x16\x74\x15\xb2\xfc\x16\xd4\x70\x0e\x25\x95\x9e\x1f\x8e\x1d\xc8\x54\x6d\x1c\xc7\x48\x76\xbf\xc5\xcd\x42\x9e\x02\xe2\xc8\x46\xd4\x87\x77\x92\x12\xc0\xe2\x40\x44\xb0\xc6\x23\x61\x31\x80\xd0\xfe\x04\x7e\x15\x33\x4a\xe1\x60\x1e\x58\x18\x17\xc1\x5d\xb0\x0b\xf6\x14\xe0\x36\x97\xc5\x74\x10\xd2\x9a\x37\x40\x6b\x79\x08\xa7\x8d\x76\x82\x4a\x61\x2b\x72\x1a\x15\xa7\x02\x0d\x8c\x4f\x34\x87\xfb\x68\xf8\x14\x58\x58\x7c\x4e\x53\xd8\x3b\x1f\xb5\x57\x30\x11\xc2\x21\x7a\x4b\x8a\x89\x8d\x78\xce\xd0\xbe\x2d\x2f\x0a\xce\x23\x69\xd1\x0b\xfb\x9a\x66\x5e\xbe\x2e\xc8\x98\xa6\xeb\xb3\xd7\xc3\xf7\x91\x2f\xd9\xb8\xf8\x5d\xf8\x24\xfa\xdb\xd0\x81\xe0\xaa\xc1\x28\x83\x81\xc5\x46\x55\x36\xcc\xbb\x3d\x8d\x67\x5a\x47\x18\xcc\x46\x47\x06\x39\xdf\xec\x8a\x06\xcf\x38\xaa\x7d\x91\x40\x4a\x7c\x57\xb9\xae\x5b\x87\xa5\x71\x08\xb3\x53\xcd\xa0\x86\x37\x38\xa0\x05\x58\x1e\x3f\xa5\x0d\x25\x39\xeb\x27\xc4\x48\x1c\x2a\x66\x18\xf1\xed\x6a\x7b\x6d\xc9\xc8\xe0\xd0\x03\x67\x16\x52\xfd\x0b\xdf\x38\xf3\xb8\x08\x28\x05\xf6\x07\x31\x8d\x54\x5d\x16\x12\xc5\x30\x22\x7b\x3e\x20\x12\x06\x57\x3a\x89\x40\x61\x90\xc0\x19\x32\xcd\xfc\xaa\xab\xd3\x78\x19\xe1\xe0\x2a\x96\x0d\xd5\x33\xb5\xd5\x1c\xd5\x10\x94\x81\x66\x52\x08\x9b\xe5\x6e\xf1\xed\x0d\xeb\x91\x50\xbe\x99\xcd\xd8\x5d\x75\x1d\x8c\xfc\x3b\x89\x77\xaf\x1c\x36\xb4\xbb\x07\xe8\x00\x7d\xeb\xcd\x62\x8c\xe0\xe9\x77\x31\xff\x53\x9e\x06\x0d\x3b\xe0\x1f\x08\x3d\xd0\xfe\x3f\xe5\x81\xd0\xa1\x62\xbe\x8b\xbb\x32\x61\x25\x78\x3c\x7c\x25\xe4\x80\x89\x20\xbf\xa0\x38\x83\xc3\x55\xcc\x22\xa3\x7b\xcf\x88\x55\xa2\x44\xc8\x02\x91\x10\x5b\x80\x20\xc9\xdf\x1a\xd8\x85\x81\x28\xfd\xc0\xfd\x86\xed\x05\x5e\x75\x51\x6b\x52\x62\xfc\xfc\x40\xdc\x05\x49\x19\x5f\x36\x4a\xba\xea\xab\x52\x0b\x5f\xae\xca\xc7\x19\x94\x56\x7a\xc3\x67\x69\xc3\x68\xbc\xd0\x45\x2a\xb3\x1a\x74\x79\xc0\xae\xa2\x6e\x4b\x29\x89\xf7\x61\x1e\x7b\xca\x11\x35\x2b\xe8\xbd\xa4\x84\xa1\x2e\x25\x45\x9e\xdf\xc3\xab\xd2\xf2\xa5\xe9\x63\x7b\x9d\xa0\x93\x5a\xcd\xa0\x73\x41\xad\x80\x9a\xe6\xb8\x41\x6f\x86\xc6\xd0\x92\x0a\x47\x34\xb6\xdc\xee\x7a\x4d\xd9\x4a\x00\xcb\x0b\x0e\x60\x29\x29\xd0\x01\x15\x30\xa9\x64\x95\xcf\xe9\xdb\x30\x3d\x78\x91\x0f\xb9\xee\x2d\xbe\x09\x98\xc0\x9a\x26\x6f\x39\x7e\xe6\x0f\x1a\x4e\x28\x78\x99\x8f\x9d\xc6\xe4\x9d\x9f\xed\x9a\xfb\xcb\x01\xd7\x71\x13\xc3\xca\x6c\x96\x19\x72\x3c\xc6\x85\x7b\x69\x62\x33\x4b\xb1\xce\x95\xc7\x63\x14\x99\x2c\x1f\x68\x10\x2f\xc8\x05\xea\x9d\xf8\x9c\x6d\xc9\x02\x90\xc2\x1e\x32\xf7\x23\xca\xfb\xbe\xad\xe6\x3b\xbe\xde\x55\x33\x16\x5e\x94\x62\x33\xe3\xf2\x46\xb0\xdd\xce\xdc\x4c\x2e\xf5\xeb\x30\xac\x3e\x07\x67\x0f\xa8\x0d\xe0\x24\x90\x98\x75\x4b\xc2\x88\x59\x15\xb8\x1d\x71\x00\x72\x67\x1a\x41\x6c\x78\xc7\xc9\xba\x9c\x97\x27\xf1\xd6\x22\xbd\x3c\xd6\x9c\x6e\xd3\x6f\x2d\x5c\xfe\xe5\xd9\xd5\xc5\x2d\xb4\xc4\xa0\x4a\x13\x80\x0c\x08\x83\xb3\x94\x38\x90\x15\x50\x88\xda\x0e\xa9\xc1\xbd\x1e\xeb\x61\x7d\x24\xc4\xd6\x4d\xc3\xdd\xb6\xed\xcb\x5b\x4a\xfc\x2c\x3e\x3f\xb9\xc0\xf6\xf1\x52\x66\x96\x9e\xed\xd6\x7d\xc5\xc6\x6c\xd6\x9a\x1a\x54\xcd\xcb\xb4\x2b\xb7\x79\x6b\xe1\x5c\x11\xbc\x28\x7d\x70\xf4\x60\x16\xad\xbe\xac\x97\xe7\x17\xe5\x25\xcc\xab\x37\x97\xf4\xb9\x68\x6f\xe4\x3e\x57\x47\xfa\xb1\xda\x32\x98\x3e\xa0\xcd\x03\xa6\x14\xc0\xfe\x19\x29\xb6\x54\xf8\xe2\xaf\x6c\x3f\x55\x0b\x47\x30\x17\xc7\x67\xd0\x3b\x50\x52\xb8\xf8\xb4\x69\x84\x5b\x32\xc9\xcf\x77\x82\xa6\xa3\x89\x24\x3f\x63\x20\xfc\x72\x34\xdb\x9c\x6e\x0d\x81\x61\x5c\x98\xa1\x78\xa6\xcf\x8b\x2a\xa6\x47\xa2\x4a\x0c\x1d\x48\x2c\x9e\xb5\x0d\x25\xca\xb8\xc8\x5d\xa6\xfa\xb3\x88\x99\x85\x3b\xd7\xe0\x9d\xe9\x2f\x33\x61\x0a\x2b\x0b\xa4\x8c\xdb\x06\x3d\x19\xa2\x22\x2e\x11\x41\x66\xc2\x5f\xed\x29\x9e\xb8\x6a\xff\xf4\xd2\xa8\x44\xf4\x28\xcf\x08\xaf\x13\xa6\x41\xb7\x98\x03\x05\xb5\x0f\xf6\xfb\xb8\xe2\xbb\xb6\x7d\xd1\xc5\x99\x0e\xcc\x5d\xa7\xa9\x0e\x2c\xbe\x55\x53\xd8\x7c\xbb\x75\xdb\x46\xf0\xda\x12\xc8\x36\x00\xf9\x24\x0c\x27\x80\xa0\x45\xd0\x0d\xea\x11\x1f\xba\x10\x88\x5d\xe9\x14\x60\xb8\xf5\x68\x72\x73\x7d\xcd\x81\xc5\x38\x3c\xa6\x46\x85\x41\x9c\xb1\x33\x36\x4a\xb7\x92\xe2\x19\x9a\xb1\x52\x0e\x4a\x2e\x1e\x93\x3d\xd4\xfb\x0e\x89\x7c\xaa\x30\xf0\x76\xe7\x5e\x38\x7f\xb7\xab\xe5\xbc\x14\x64\x69\x43\x9c\x15\x36\x02\xe9\xa5\x6d\x9a\xde\x1e\xb1\x08\x44\x97\x77\x94\x4c\x7b\x5a\xbf\x72\x08\xe6\x0b\xbb\x45\x26\xf1\xf6\x83\x32\xb8\x2e\x5c\xc0\xb5\x60\x5c\x88\xfa\x3d\x2e\x41\xfd\x3e\x00\x2e\xf6\x25\xb6\xf1\x5f\xe2\x97\x30\x69\xd7\x63\xb6\x56\x55\x6a\xb4\x01\x4b\xda\x90\x6e\x42\x1c\x14\x73\x4f\x18\xa7\x76\xc5\x38\x49\x1a\x04\x19\x4a\x2f\x3e\x35\x94\x17\x7c\x6a\x28\xfb\xf8\x54\xed\xd8\xa0\x07\x5d\xb7\xb6\x89\xb8\xbc\x7c\x13\xcf\xb6\xcf\x0d\x1e\x49\x62\xb3\xb7\x7b\x1c\x27\x97\xc3\xf5\xdd\x4b\xd9\x61\xf2\x51\x50\x42\xb1\x19\xe2\x4f\x53\x87\x75\x74\xbf\xad\xab\xbe\xfc\xfe\x1e\x2c\x00\xee\xf5\x55\x31\xbf\xf7\x28\x5c\x37\x15\xfc\x23\x82\x85\x53\x2d\x0e\xa0\xc7\x1d\xde\xa3\x77\x5c\x53\x71\x36\xaf\xda\xd2\xf6\xf7\x93\xe0\x69\xd5\x11\x49\xfb\x6d\xc0\x11\x74\xb8\x05\x58\xc7\xd8\xd9\xa6\x0d\x32\x32\x92\x17\x7a\x79\x79\x92\xed\x4c\xdf\x59\x35\xcf\x91\xec\x7b\x28\x31\x7e\x2d\xe6\xaf\xba\x1d\x58\xff\x10\xb2\xf7\x75\x0d\x77\x18\x2b\x62\xaf\x63\x43\xcf\x36\x7a\x48\x1b\x0a\x36\x7d\x47\x5b\x0b\x60\xec\x4e\x7d\x71\xc6\x03\x0e\x35\x16\xc3\x01\xc3\x0f\xac\xfa\x7b\x29\x61\x1a\x83\x61\x9f\xd1\x61\x78\xb3\xdb\xe0\x15\xcd\x4b\x8e\x2a\x87\x77\x50\x47\xdd\xda\x92\xa4\x9f\x87\x3d\x42\x82\x63\x42\xe2\xe2\xc9\xfe\x2d\xd9\x5a\x2f\xea\xc4\x0d\x14\x5e\x2e\xe9\x1b\xdc\xcc\x39\xec\xd0\x26\xe4\xc5\xd2\xa8\xd0\x3b\xce\x73\x62\xec\x44\x61\xf3\x0e\x77\xa4\x62\xde\x97\x93\xa4\xf2\xdb\xae\xdc\x51\xe5\x65\xbd\x04\x99\xfe\x89\x7f\x92\xb8\xc3\x3f\x1d\x82\xc4\xad\x12\x0a\x2f\x76\xcc\x78\x6a\x8e\x96\xd0\x7b\x51\x8a\xa3\x85\x3b\xe5\x92\x60\x66\xc2\x5d\xe0\x0c\xbf\xa7\x3b\xa8\xb0\xe3\xa3\x49\x9c\x6f\xb3\x48\x6b\xaa\x09\xe6\xee\xd5\xcf\x6f\xce\x07\x90\x13\xcc\x40\x73\x26\x98\x87\xe6\x4c\xb0\x0a\xb9\x74\x76\x43\xc0\x45\xf3\xf4\x08\x04\xf2\xe0\x00\x84\xa0\xbd\x81\x09\x28\x79\xb2\x22\x25\xfd\x82\x28\x4b\x9c\x86\x84\xe8\xe5\x77\x0c\x14\xbc\xb1\x25\x50\xf6\xc4\xd6\xa8\xd5\x3a\x6c\xb3\x96\x9b\x46\xcf\x75\xc4\xd2\x29\xe0\x3a\xe2\x29\x30\xd9\x3d\x83\x66\xe7\xa8\xca\x02\xaf\x08\xfc\x85\x26\x19\xa8\x81\xf8\x9a\x0d\x42\xab\x76\xdd\x24\xc2\xad\x9c\xf4\x7a\x82\x5f\xd1\xd4\xe9\xf2\xe3\xf5\x22\xb0\x7e\x05\xf2\x43\xe0\x52\xc2\x80\x97\x0b\x87\x18\xd3\x19\xbf\x3c\xf1\xaf\x8f\x41\xbd\x3c\x18\xcc\xba\xba\x2e\x9d\x32\x5a\x47\xf3\x86\xd2\x22\xe0\x55\xdf\x6f\x3b\x73\x95\xc7\x8b\x57\xe9\x39\xfd\x18\x0c\x22\xac\x4a\x47\x32\xaa\x69\x5b\xe1\x82\x20\xc0\x8b\x24\x4c\x63\xdc\xa0\x75\x77\x08\xc0\x75\x7b\x18\xf2\xb8\x65\xeb\x18\xa7\xad\x90\x97\x9a\x14\xca\x02\xae\x75\x96\x01\x26\x5b\x66\x28\xdd\x25\x19\x06\xbb\xa4\x19\x3d\xcd\x16\xad\x04\xfa\xe3\x3f\x57\x6c\x71\xe2\x72\xc2\xb5\x67\x69\x1d\xd1\x5e\xb1\x13\x67\x43\xfd\xf4\xf0\xfe\x05\x04\x41\x93\x65\x4c\xbc\x9a\x10\x03\x94\x9f\xcb\xc5\x2e\xb8\x39\xfc\x59\x7e\xab\xaa\xde\x57\xd3\x98\x8d\xf3\xae\xc6\x8b\x19\x17\x92\x12\xc0\x4c\x45\xfb\xb4\xae\xc3\x52\xdb\x2c\xb6\x0f\xb6\xef\x9a\xc7\x61\x96\xa1\xcc\x70\xcc\xec\xb1\xe4\x67\xb6\x16\x7f\xb1\x81\x2d\x99\xc1\x86\x12\x4f\x98\x86\x88\x61\x81\xdd\x9e\xe5\x4d\x74\xdc\xb2\x9a\x2d\xb3\xac\xed\x2c\x80\xc5\xf1\x21\x78\xfb\x57\xfa\x20\xf9\x77\x59\x8a\x26\xef\xc5\xfa\xea\xc3\xe0\x89\x40\xd3\xee\x07\xd6\x18\x91\x5b\xfd\x7d\x79\x37\xa3\x2d\xeb\x20\x48\xa0\xfc\x2a\x46\x6f\x6e\x59\x44\xeb\x6f\x7d\x44\xeb\xe8\xdd\xf1\xe1\x6b\x1c\xee\x75\x04\xd4\xca\xe6\x95\xf2\xf2\xca\x20\x2a\x78\xd7\x2e\x9e\x0c\xcb\xb2\xd6\x34\x06\xe3\xcc\x7f\xb1\x8a\x65\x8c\xf6\x8e\xc4\xaf\xfa\x76\x83\xfc\x0e\xc6\xf7\x44\x54\x7b\x4f\x64\xa4\x7f\x08\x1e\x57\xd0\x1a\x86\xa1\xce\x0d\x5d\x51\x88\xe0\xb0\x42\x8d\x60\x3e\xae\x6f\xf0\xb4\x45\xf0\x7c\x47\x53\x7f\x4d\xc7\x26\x63\x25\xff\xaa\x81\xb3\xbf\xba\x5b\x2e\x96\x99\xce\x81\xfd\x1e\x50\x84\xcc\xeb\xf4\xa4\x7a\x22\x41\xa8\x0d\x79\xf5\xcc\xe6\x92\x7e\x84\xdd\xc0\x4c\x86\xaf\x58\x8c\x67\x7b\x40\x1f\x88\x9a\xff\x5d\x10\xe2\x1c\xee\xd7\x92\x51\x75\x1a\x9e\x56\x02\xcb\x7f\xe7\x5e\x0d\x4b\xde\x73\xa4\xe9\x0f\x49\xbe\xe4\x31\xd1\xff\x09\x1e\xf5\x13\x87\x0b\x50\x2a\x7d\x26\xf2\x93\xbf\xbe\xe5\x8a\xbf\x4d\xbb\x92\x58\x27\x62\x24\x7f\xbb\x41\xc2\x86\x0e\xd8\xc4\x90\x38\x61\x85\x04\x7e\xfb\x12\x3f\x0b\xfc\x2c\xf2\x1b\xfc\xda\xe3\xd7\xbe\x2c\x3f\x4a\x61\xf0\x56\x2a\x4e\x47\xf4\x15\x52\x6e\xf0\xfb\x86\x63\x09\xdf\x67\x67\x33\x6e\x47\x1f\x8a\xb0\x1f\x88\xcc\xcc\xcd\x69\xba\xfd\xa0\x74\x6e\x55\x53\xe5\xf3\x3e\x5f\xfe\xdf\x68\x12\xbe\x28\x85\x9b\xd7\x24\xf9\xbc\x0f\x06\xd9\xaf\xac\x42\xf9\xa6\x54\xee\x87\x26\xca\x27\xa5\xb5\xf9\x3e\xf3\xfd\xd2\x2f\xa4\xfa\x5e\xe9\x17\xa1\xb7\x68\x9b\x2d\x47\x69\xfd\xe0\x1e\x14\xf5\x8f\xae\x9d\x52\x9e\xd9\x6e\x71\x68\x4e\xf6\x8f\x5e\xf3\xc3\x81\x78\x9e\x99\x1d\x64\x67\x89\x45\x4f\xae\xea\xed\xce\x9d\x52\x7d\xe8\x6e\x01\xf3\xc1\xa9\xc4\xea\x9e\x5f\x52\x92\x67\xe6\x68\x76\xb3\x79\xa5\xaf\xeb\x95\x29\x1f\x09\x1e\xfe\xdb\xbf\x01\x9c\x3e\xff\xfd\xdf\xd3\xb3\xe7\x8f\xd2\xf2\x33\x07\xe7\xeb\xd2\x4d\xfe\x19\x67\x03\x85\xa2\x9f\x2f\x22\x40\x76\xe6\x85\xfd\xb4\x5e\x46\xe9\x0b\xed\xb8\x81\xfa\xff\x01\x00\x00\xff\xff\x7a\xb2\x95\x36\x6f\xb0\x00\x00") +var _confLocaleLocale_enUsIni = []byte("\x1f\x8b\x08\x00\x00\x09\x6e\x88\x00\xff\xbc\x7d\xeb\x72\xdc\x48\xae\xe6\x7f\x3e\x05\xdb\x13\x0e\xdb\x11\x72\x39\xba\xfb\xec\x25\x3a\xda\xee\x95\xa5\xf6\x65\x8e\x65\x69\x2c\xf5\xcc\xce\x3a\x1c\x6c\x56\x91\xaa\xe2\xb8\x8a\xac\x26\x59\x2e\x6b\x4e\x9c\x88\x7d\x80\x7d\x80\xdd\xd7\x3b\x4f\xb2\xc0\x07\x20\x2f\x24\x4b\xb2\x7b\x26\x8e\x7f\x58\xac\x4c\xe4\x0d\x89\x44\x22\x91\x00\x32\xdf\x6e\xb3\xa2\xec\x16\xe9\xd3\xf4\x38\xdd\xe6\x55\xbd\x2e\xbb\x2e\xed\xca\xf5\xf5\xe3\x55\xd3\xf5\x65\x91\xbe\xac\x7a\xfa\xdd\x7e\xaa\x16\x65\x92\xac\x9a\x4d\x49\xa0\xaf\xe8\x4f\x52\xe4\xdd\x6a\xde\xe4\x6d\x41\x09\xa7\xf6\x9d\x94\x9f\xb7\xeb\xa6\x65\xa0\x9f\xe5\x2b\x59\x95\xeb\x2d\x97\xa1\x3f\x49\x57\x2d\xeb\xac\xaa\xe9\xe7\x25\x7d\xa5\xaf\x6b\x49\x69\x76\xbd\x25\x9d\xef\x7a\x49\xdb\x6d\x2d\xe9\x97\x6d\xd2\x96\xcb\x8a\x7a\xd3\x52\xd2\x3b\xfd\x4c\xf6\xe5\xbc\xab\x7a\x6e\xe9\x2f\xf2\x95\x7c\x2a\xdb\xae\x6a\xb8\xf6\x3f\xcb\x57\xb2\xcd\x97\x0c\x70\x41\x7f\x92\xbe\xdc\x6c\xd7\x39\x0a\x5c\xe9\x67\xb2\xce\xeb\xe5\x4e\x60\xde\xe8\x67\xb2\x68\x4b\xca\xca\xea\x72\x4f\xa9\x27\xf8\x31\x9b\xcd\x92\x1d\x21\x21\xdb\xb6\xcd\x75\xb5\x2e\xb3\xbc\x2e\xb2\x8d\x0c\xf3\x17\x4a\x4f\x35\x3d\xa5\xf4\x94\xd3\x31\x84\xb2\xa0\xa1\x66\x79\xa7\xe3\x20\x5c\xd2\xc8\xf3\x2e\x41\x55\x75\xbe\xb1\xd2\xfc\x99\x94\x9b\xbc\x5a\x33\xd6\x1e\xf3\x07\x75\xbc\xeb\xf6\x0d\x70\x7b\xa1\x9f\x84\x84\xac\xbf\xd9\x96\xc0\xc1\xe3\x2b\xfa\x4a\x16\xf9\xb6\x5f\xac\x72\xee\xa7\x7c\x25\x04\xb4\x6d\x08\x19\x4d\x7b\x03\x38\xfb\x91\x34\xed\x32\xaf\xab\xbf\xe7\xbd\x20\xe8\x3c\xf8\x99\x6c\xaa\xb6\x6d\x18\xb7\x67\xf8\x48\x68\xe8\x19\xd7\x43\x29\x6f\x09\x0b\x41\x2d\x9c\xb3\xa9\x96\xad\xa0\x91\x33\xcf\xf0\x8b\x6b\xe1\xbc\xeb\xa6\xfd\xa8\x19\x2f\xf8\x73\x50\x94\x3a\xa1\xb9\x71\xfb\x79\x4d\x88\xd7\xdc\x33\xfc\x88\x00\xba\x24\x2f\x36\x84\xca\x6d\x5e\x97\x8c\xa3\x63\xfe\x45\x78\xa1\x5f\x49\xbe\x58\x34\xbb\xba\xcf\xba\xb2\xef\xab\x7a\xc9\xc8\x3e\x96\xa4\xf4\x52\x93\x92\x20\xcf\xa5\xdd\x34\x3b\x37\x9d\x94\xfe\x57\xfa\x99\x5e\xc8\x4f\xc9\x0b\x0a\x21\xd3\x95\xe4\x91\x74\xd9\x75\x59\x16\x32\x96\x2e\x7d\x41\xdf\xc9\x76\xb7\x5e\x13\xd6\x7e\xdb\x95\x5d\xcf\x85\x2e\xe8\x37\x8d\x5f\x7e\x27\x55\xd7\xd1\x07\x25\xbf\xc6\x47\x42\x53\x57\x2f\x30\x98\x13\x7c\x24\xc9\xfb\xae\xcc\xdb\xc5\xea\x43\x22\x7f\xd1\x57\xfe\x60\xda\x3b\x34\xa9\x4c\x48\x4a\x44\xd2\x82\x35\x90\x2c\x9a\x82\x7f\x9c\xd0\x1f\xaa\xba\xaa\xbb\x3e\x5f\xaf\x3f\x24\xfa\xc1\x60\xf2\x25\x13\xd0\x57\x3d\xb0\xa0\x89\xe9\x65\x5f\x6e\x3b\x9e\xc1\xf4\x45\xd5\x76\xfd\xe3\xbe\x22\x62\x7d\xb7\xab\x93\xa2\x59\x7c\xa4\x65\xc0\x4b\x1a\x2d\xbf\xbe\x4e\x09\x59\x0f\x68\x21\xb4\xbb\xba\x26\xf4\xa4\x2f\x1b\x42\x19\x35\x53\x51\xfb\xa7\x80\x3e\x4a\xb7\xeb\x32\xef\x08\xa4\xcc\x8b\xf4\xc7\x3c\xed\xf3\x76\x59\xf6\x4f\xef\x65\x73\x5a\x7e\x1f\xef\xa5\xab\xb6\xbc\x7e\x7a\xef\x7e\x77\xef\xd9\xcb\x1d\x15\x5b\x57\x75\xd9\xfd\xf8\x24\x7f\x96\x2e\x72\xca\x21\x34\xde\xa4\xf3\xf2\x9a\x57\x1b\xb5\x95\x12\x95\xd7\x4b\x5e\x69\x37\xfd\x8a\x1b\x24\x4a\xa0\x8f\x2e\xe5\xa5\xfe\x4d\xc2\x13\x40\xac\x20\x2b\xe6\xc6\xd6\xd0\x21\x24\xb7\x34\x01\x67\x37\x97\x7f\x7a\x73\x94\x5e\x10\x6f\x5b\xb6\x25\xbe\xe9\x3f\x2a\xf1\x7d\x4a\xa3\xbd\xaa\x4e\x9f\xcf\x12\x2a\x6b\x08\x39\xcd\xfb\x7c\xce\x7d\x77\xb3\xcf\x99\xb2\x08\x5d\x1e\x96\x22\x73\x4b\x70\xc6\xae\x8f\xa6\x65\x6a\x21\x53\x1d\xba\xfc\x5d\x1d\x6f\x99\x07\x50\xba\xc3\xec\x85\xe0\x8c\xaa\x4a\x5f\xbf\x7d\x7b\x7e\xfa\x3c\x2d\xeb\x25\x61\x26\xdd\x57\xfd\x2a\xdd\xf5\xd7\xff\x3d\x5b\x96\x75\xd9\xe6\xeb\x6c\x51\x31\x52\x5a\x22\xd8\x94\xb0\x24\x43\x9c\x25\x5d\xb7\x26\x16\x05\x2a\xb8\xbc\x7c\x93\x9e\x31\x25\x6c\xf3\x7e\x85\x8e\xf4\xab\xa4\xfb\x6d\xcd\x88\x72\x0d\x5e\xad\xca\x14\x8b\x01\x40\xcd\xf5\x10\x2f\x69\xa1\x7d\x9d\x25\x65\xdb\x66\xc4\x41\xfb\x1b\x46\xb3\xd6\x79\x08\x5a\xaa\x23\x6a\xaf\x9b\x9e\xa6\x31\x45\x39\xa9\xa2\xaa\x3f\xe5\xeb\xaa\x20\x64\x7b\x84\xc4\x65\x91\x58\x34\x34\x6f\x5c\x9a\x28\xb3\xd9\x63\xa8\xf9\x82\x36\x80\x2e\xbd\x37\xbb\x07\x8e\x7b\xef\xf1\xbd\x59\x52\x37\x99\x70\x09\xe6\xcd\x45\xd5\xe5\x73\xe2\xd3\xb2\x6f\xb4\xc6\xf5\xfe\xca\xf4\x23\x5d\x51\x88\x34\x82\x60\xdc\xf2\x5e\x84\x2d\x80\x89\x2b\x27\x86\x0d\x66\xa3\x6c\x26\x1c\xbb\xf1\x24\x37\xbf\xc2\x96\x5c\xc2\x68\xcc\x89\x4d\x98\x51\xd7\xf1\x76\xbb\xae\x16\xd2\xf4\x4b\xc9\xf3\x84\xc6\x3b\xb3\x22\x25\x84\x03\xa1\x58\x5e\x40\x2e\xd4\x6b\x66\x5b\x69\xc4\xe7\x51\x7e\x55\xd2\xca\x59\xed\x96\xb2\x3b\xad\x9b\x5d\xf1\x0d\x18\x8a\xcd\x9c\xe7\x27\xe9\xbb\x86\x3a\x0c\xea\x70\x00\xbe\x89\x63\x62\x0c\x2c\x0c\xb4\xe5\xa6\xe9\x19\x71\x5a\xac\xa2\xe9\xd9\x57\x94\x49\x23\xed\xf2\x4f\xc4\x16\xfb\x46\x96\x64\x41\x4b\x6e\xc1\x15\x13\x07\xdb\xd1\x8e\x2e\xcb\x82\xf8\x88\x2c\x0d\x4b\x8b\x69\x10\x50\x9b\x1d\xad\xa6\x15\x55\xc6\x88\x67\x89\x84\xaa\x9c\xea\x27\x86\x44\xf5\x60\x95\xd3\xca\x6d\x68\xf3\xe4\x89\x3e\xc5\x87\xfe\x0e\xeb\xa7\x5e\xe5\xd7\xd7\xd4\xab\x8e\x56\xc5\xab\x74\xb1\x6e\x68\x49\xfd\xf2\xee\x4d\xc7\x0b\x66\x95\x6d\x9b\x16\x92\x08\x65\x5d\xd0\xa7\x4b\x0b\x10\xcd\x10\xf5\x6e\x33\xa7\x5f\xfb\x55\x45\x8c\x1a\x68\xe7\x12\x2c\x25\x51\x2a\x35\xb1\xeb\x68\x0a\x8f\x52\x5a\xc2\x34\x02\x42\x19\x08\x80\xc7\x60\x54\xc7\xe0\xd7\x44\x63\xbb\x96\x96\xd3\xaa\xef\xb7\xd6\xf2\xab\xab\xab\x0b\x69\xda\xa5\xde\xd6\x76\x1e\x50\x06\xe6\x60\xcd\xb2\x51\x9d\x36\xf5\x0c\x44\xb2\x6b\xd7\x03\xfa\xa1\xb1\x5a\xce\x01\xbc\x70\x17\x9e\xf0\x7f\x97\x1e\x3d\xc0\x73\x47\x52\xdf\x1e\xd4\x44\x38\x2e\x21\xa7\x10\x51\x37\x5b\xae\x37\xa0\xea\x73\x4d\xf0\xa4\x0c\xd9\xc6\xe5\x8b\x84\x43\xb9\x90\x29\x83\x5d\x7a\x43\x03\x56\x36\x7a\x79\x46\x68\x00\x2f\x45\xea\x75\xdb\x6c\x28\xf5\x05\xfd\xf1\x09\xbe\xfb\x67\x5c\x1f\x60\xf2\xa2\x20\x2e\xdf\x1d\xa5\xef\x5e\x9c\xa4\xff\xe5\xfb\xef\xbe\x9b\xa5\xaf\x7b\x5e\x89\x4c\x9c\x7f\x63\xa2\xa2\x4f\x11\xb5\x1c\x28\x71\xac\x9e\xe8\xee\x1e\xaf\xac\x7b\xe9\x8f\xc8\xfd\x1f\xe5\xe7\x9c\x44\xc4\x72\xb6\x68\x36\xcf\x98\xab\x6e\x72\x5a\xfb\x9c\x43\xe4\xaa\x74\x7c\x59\xd6\x05\x7d\xa8\xc0\xa6\x79\x01\x3b\xd0\xfc\x40\x7c\x13\xc1\x35\x5b\x34\xf5\x75\xd5\xf2\x80\x7e\xae\x41\x0d\x26\xd2\xd2\x76\x8d\x1c\x93\x8a\x08\x69\xc4\x41\xaa\xeb\x1b\x0f\x8a\xa1\xbe\xe5\x44\x9d\xd0\x44\xa8\x2e\x53\x11\xdd\x61\xf9\x52\x88\x91\xe7\xed\x9c\x86\xd7\x1a\xbe\x3b\x8f\xf0\xe6\xfa\x9a\xf7\x5a\xdb\x25\xb4\x85\x73\x49\x95\x0d\x23\x04\x21\x62\xdc\x42\x28\x3f\x55\x22\x3e\x39\x7d\x9b\x96\x9f\x88\xda\x98\xeb\xb5\x4d\xb1\x5b\x80\xc2\x18\xf6\x88\x99\x35\xb1\x88\x8e\xd6\xc6\x42\xf6\x95\x80\x49\x70\xd7\x98\x13\x2d\x08\x88\x78\x83\x31\x6b\x12\x24\x3f\x11\xe7\x6f\x83\x26\x5e\x5a\x92\xf6\x7e\x04\x3b\xea\x94\x2b\xc1\x23\x5f\xd0\x8c\x13\x55\x48\x2f\x3a\xe9\x94\x64\x13\xb9\x13\x1d\xef\xe8\x84\x92\x17\xd4\x97\xf9\x0d\xf8\x4e\xc7\xc4\x50\x94\xd7\xf9\x6e\xdd\xfb\x7e\x0d\x36\x11\x6b\xe9\x92\x0f\x49\x61\xde\x64\x81\x51\x07\x41\x3d\xdd\xb0\x2c\x91\x61\x4d\x72\x8e\x6c\x36\x4c\xaf\x72\x0a\xb1\x7d\x87\xd8\x53\x89\xe9\xc9\xbc\xc8\xaf\xf3\x65\x92\x7f\x9c\xef\x9a\x7d\x27\x92\x4f\x8a\xad\x96\x6b\xb4\x0a\x58\x54\x98\xee\xcb\x2c\x51\x71\x29\xd3\xe3\x5a\xf6\xa9\xc2\x61\xc8\x91\xab\x54\xa9\x47\x38\xe6\x6b\x7f\x66\x00\x3e\x65\x75\x93\x65\x5d\x6f\xce\x79\x90\x9d\x3b\x0c\x09\xce\x79\xb8\x68\x81\x45\x38\x9a\xa5\x4f\x15\xd8\xbc\x12\x0c\xf0\x42\x54\x83\xa6\xa9\xa9\xae\x2c\x51\x03\x95\x7f\x42\x75\xa2\xcc\x4c\x0f\x08\x2a\xb3\x9b\xe8\xc7\xdb\x7d\xd1\x40\x76\xc0\x5e\x42\xa5\x0d\xad\x83\x7d\x3d\x6d\xab\xe5\x8a\x78\x6b\xb3\x3f\x12\xa4\xec\x57\x4d\xc9\xeb\xe7\xf5\xe9\xd3\x6f\xa5\x1f\x4b\xde\x59\x5c\x21\xde\x93\xf2\x1d\x11\x17\x61\x4c\xc9\x58\xba\xe0\xf6\x76\x40\x8e\x8e\x22\x02\x34\x3c\xfc\x8d\x44\x09\xc7\x34\x94\x57\x84\x79\xca\x24\x3c\x8c\x94\xb6\x03\xa4\x34\xac\x5c\x49\xe5\xfd\x6c\xd9\xe0\x20\x63\xf2\x3d\xef\x96\x74\x1e\xee\xfa\x6c\x59\xf5\xd9\x35\xb3\x2e\xae\xf9\x05\xd7\xc0\x9b\x37\xe5\xa4\x0f\x28\xeb\x41\x4a\xfc\x8f\x4e\x67\xc5\x0f\xe9\xfd\x4f\x2a\x31\x7e\xcf\x3c\x29\xa3\x55\x54\xad\x31\x25\x7a\x3c\x6a\x4b\x11\x58\xed\x0c\xee\xa4\xb6\x6e\xb7\xc5\xde\xa6\x02\xa2\x3b\x0d\x14\xcd\xbe\xe6\xd5\x07\xe6\x4b\x7c\xa6\x5a\x54\xb4\x67\xcc\xab\x3a\xa7\x0d\xde\x6a\x01\x53\xbf\x4f\x34\xf1\xf6\xfc\x0a\x80\xcb\x66\xbe\xab\xd6\x85\x01\xcc\x12\x13\x22\x49\x84\xd4\xd9\x0f\xc5\x6a\x4b\xaa\xa4\x2f\x8b\xa6\x65\x89\x04\xa3\xb1\x82\x07\x44\xa1\x96\x45\x0c\x24\x57\x7c\x9e\x01\x2c\xca\x39\xa9\x85\xd1\x40\xd3\x8f\xa3\x1a\xcb\x34\xa0\x9b\xaa\xab\x1f\xf4\xe8\xe9\x62\x47\x6d\xd1\xd4\x73\x32\x15\xec\xd2\xc7\xcf\xe8\xff\x84\x25\x24\xd9\x01\x96\x63\xc4\x73\x66\x2a\x99\x3b\x59\x8b\x51\x57\x23\x22\x77\x53\x6d\x24\x1c\x8c\x35\xec\xaf\x91\x40\xb7\x13\xaa\x65\x75\xc9\x9a\xa6\xb5\xfc\x86\x3e\xf8\xe4\xb6\x5c\x63\x12\xf2\x5e\x8f\x57\x0d\xe1\x8d\x09\xe4\x48\x16\xcd\x35\x0d\x8d\x79\x69\x9f\x7f\x2c\x71\x22\xa3\x3d\xff\x3d\xeb\x81\x3e\x24\x3b\x91\x41\x9b\x75\xe1\xce\x3b\xa0\xec\xa6\x1d\xaa\x31\x3c\x90\xa3\xda\x8e\x84\xed\xc5\x2a\x73\x5a\x24\x46\x4a\x5f\x7e\xc6\xee\x8f\x2c\xaf\x54\x62\x92\xe7\xac\x64\x73\x83\xe9\xe2\x41\x9c\xdd\xf8\xd9\x22\x09\x94\x16\x0a\x1d\x66\xe7\x0d\x63\xed\x53\xe9\xa0\x4e\xc2\xd4\xb8\x00\xd5\x45\xb2\xb2\x56\x15\x6b\x1b\x28\x4b\x54\x22\x9a\x2b\x6a\x91\x2e\x01\x2b\x53\x15\x18\x38\x1e\xcd\xa7\x9e\xec\x67\x34\x31\x50\x1b\x58\xcb\xc4\x17\x6f\x64\x5d\x04\x6d\x26\xef\x55\x3d\xf6\x21\x31\xb8\x77\x71\x3e\xf1\x94\xd5\x87\x40\x05\x95\xd9\xec\x9a\x2a\x0a\xda\x13\x65\x2b\x5e\xa4\x58\x95\x5b\x96\x3e\x36\x1d\xc8\x62\xcd\x27\xed\x1b\x95\x9f\x1d\x81\xfc\x24\x0c\x9b\x28\x86\xd8\xdc\x37\x49\xd7\xf0\x82\xcb\xbe\xb2\x8a\xe7\x15\x91\x02\xca\xc7\x9b\x9d\xe8\xc6\x48\xcc\xe5\xe9\xa3\x55\x76\x73\x14\x9f\xac\x56\x79\x47\x4c\x9c\x64\x05\x2d\x56\xcc\xec\x84\xcb\xd3\x4e\xe7\x39\xac\x19\xe8\xf3\x40\xe5\x52\xb2\x69\x87\xbb\x30\xf7\x50\xf8\x9c\xb6\xe2\x64\x27\x48\x46\xa1\x00\x35\xd1\x26\x21\x6c\x53\xb2\xf8\x9c\x6d\x44\x8d\x26\xbf\xd2\xb3\x32\xa1\xed\x70\x49\x0b\xda\x08\xf6\x29\x6b\x3f\x96\x38\x65\x28\xbd\x32\x40\xd9\x87\x8c\x58\x21\x2c\xe5\x27\xd3\x5b\x12\x67\xd8\x43\x35\x44\x6b\x7b\x84\x7e\xda\xb2\x28\x7b\x66\x8c\x5d\x64\x04\x88\x7a\x1d\x71\x0b\x8f\xc4\xe3\x94\x15\x90\x21\x94\x8a\xdc\x7e\x58\x5c\x80\xb9\xc6\x8f\xf3\x67\xf7\xbb\x1f\x9f\xcc\x9f\x39\xde\xba\x58\x95\x8b\x8f\x42\x7f\x55\x3d\x6f\x3e\xe3\x60\x0b\x45\x09\x9d\xa9\x79\x8d\xdd\x2f\x52\x3a\xe8\xb6\x38\x57\x11\x2f\xa0\x62\x84\x78\xce\x8d\x26\x8d\x3a\xc3\x2c\x83\xb6\xb6\x05\x56\x15\x08\xdc\x13\xe4\x31\xa7\x32\x49\x62\x03\xf0\x34\x89\x81\xac\xab\x4d\xd5\x8f\x68\x82\x39\x4c\xae\xb4\xa5\xba\x32\x43\x12\xea\xc2\x30\x31\x4a\xe2\xd3\x54\x0d\xed\xab\x46\x27\xfb\x9c\x0e\x52\xdf\xa7\x44\x1b\x3b\xda\x9f\xb8\xb3\x34\x1e\x62\xd4\x39\x6f\xcc\x74\x88\xca\xbb\x6c\x57\x2b\xbe\xca\xc2\xa8\xe4\x55\x85\xed\x83\xdb\x35\x5a\x0e\xa0\x0c\xa5\x7a\x16\x48\x1f\x3a\x54\x3e\x9a\xa9\x6e\x0b\xc5\x98\xa7\x73\x87\x2a\x96\x5b\xf3\xc9\x59\x21\x9e\x57\x97\x72\xf6\x05\x06\x18\x8e\x67\x90\x0e\x50\x7e\x5a\xe8\x14\xf6\x91\x52\x80\xe9\xf9\xae\xef\x1b\x3e\x97\xac\x99\x1c\xa4\x8c\xf5\xfa\x04\x80\x38\x6a\xf9\xfa\x30\x9d\x21\x9e\x84\xc5\x96\x76\x4e\xc8\x88\x0e\x79\x4d\x8b\x86\x9b\x4f\x74\x83\xd1\xe9\x26\xe8\xc0\x0a\xd1\x25\xe5\xf5\x8d\x57\x6f\xa0\x17\xdc\x60\x3f\xdd\x97\x87\x6d\xf9\xc8\xf7\xc6\x2d\x06\x94\xb0\x1e\x49\xf1\x60\xa1\xbc\x43\xae\xa8\x58\x6d\x39\xd9\x9e\xa6\x8a\x4a\x4f\x1f\x6d\x8c\x5e\xe4\x33\xc9\x13\xe7\x24\xb1\xb2\x00\xa2\x69\x14\x28\x3d\x1b\xb4\xe5\x8f\x84\x63\x0c\xf6\x71\x97\xfd\xd6\xd4\x37\x4d\xd6\xad\xe4\xf8\x6d\xdd\xa3\xa3\x7b\xbd\x8c\xf4\x56\xb8\x17\x01\xd1\xfd\x57\xde\x00\x79\xa0\x1f\x12\x9d\x8d\x32\x58\x14\x4a\xad\x96\x63\xb3\x26\x6b\xc3\xc1\x9b\xb0\xf6\xe7\xb2\xe5\xe3\x1d\x80\xe2\xd9\x3a\x84\xc5\x78\x10\x8e\x29\xfa\xdd\xdd\x31\x44\x4d\x3a\xb2\xfd\xde\x03\xbb\x43\xa5\xe6\x30\x49\xca\xed\x0d\x0d\xac\x29\x72\x1a\xd9\x0d\x94\xd5\x7f\xa5\x3d\xa9\xc6\x35\x40\x93\x50\x86\x14\x3a\xc3\x07\x81\xf2\xb1\xf8\x43\xc2\xbb\xfe\xdb\x81\x3c\xcb\x9b\x9a\xa6\x05\x22\x15\xb2\x7e\x8e\xee\x39\xdc\x68\x2f\x26\x64\xdf\x77\xa5\xbf\xee\xc0\x97\x1b\xf6\xe5\xe5\xab\x2b\x3b\xe7\x5e\xbe\x4a\x3f\x96\x5a\xf9\xab\xbe\xdf\x76\xbf\x40\xe7\x21\x0a\x0c\xd6\x76\x5c\xe4\x37\x2c\x67\x4a\xb2\xfe\x40\xc6\x55\x99\x6f\xb4\x97\xfc\x29\x55\x1c\xd3\x06\xac\x89\xfc\x49\xfb\x72\xa0\x4b\x4b\x20\x71\xfd\x3c\x25\x69\xbb\x73\x4f\xa9\x77\x29\xbf\x8e\x14\x80\xbf\x26\xf9\x7a\x4b\x47\x33\x16\x79\x02\x30\xe8\xba\xe6\x7a\x42\x4b\x01\x02\x22\xdf\x6d\x88\x38\x16\x38\x91\x52\x81\x87\x8f\xb3\x47\x81\xee\x33\xae\xac\xa0\xd5\xff\xbb\x2a\xe4\x6f\x96\x8b\xc3\x7a\xbb\xea\xef\x36\x8a\xa8\x3a\x4e\x27\x66\x4a\x10\x90\x42\x3d\x94\x03\xc2\x56\xce\x12\x69\xcf\xaa\x2f\x4a\x20\xa9\x37\xaa\x7a\x93\x7f\xbe\xab\xe0\xa6\x99\x28\x27\x3c\xce\x17\x32\x4e\xa6\x43\x8c\x57\x0e\xc1\xb3\x72\xeb\x20\x34\x4d\x3d\x81\x54\xf5\x62\xbd\x2b\x0e\xf6\xa4\xdb\xcd\x69\x1b\x64\x71\xfa\xc1\xfd\xee\x01\x57\x59\x7f\xa4\x7d\xbb\x76\xf0\xbf\xc8\xef\x14\xbf\x7f\xb0\x9b\x38\x3a\xf0\xea\x19\x23\x75\x77\x72\x24\x7e\x14\xbc\x81\xe0\xac\x30\xf3\x7c\x27\x3c\x3f\x38\xf2\x87\xd6\x42\x0f\x78\x6e\xed\xb3\xaa\x02\x47\x29\x22\xc1\x99\xbf\x3e\xcc\x58\x0a\xc8\x58\x2e\xaf\x43\xe9\xdb\xc9\x07\xb6\xd1\x02\x42\x2e\x91\xb2\x71\xb9\xc1\x02\x3d\x58\x9c\x84\x9d\x89\xd2\xe7\x63\x75\xf3\x81\xf2\x3d\x2d\xb1\x89\x0a\xdc\xca\x3b\x58\x50\x26\x1f\x85\x68\xe4\xc5\x88\x77\x8c\x0b\x32\x18\x9d\x0c\xd7\xeb\x72\xc9\x7a\x49\x6b\x38\x6a\x4d\x27\x9a\x76\x45\x01\x0b\x09\xce\x63\xd8\x4d\x56\x38\xaf\xe1\x39\xc7\xcd\x51\x7c\xc2\x64\x75\x0d\x55\xd5\xe2\x0a\x38\x38\x67\x6a\x37\x74\x93\xd8\xf0\x91\xaa\xdb\xf1\x1e\xc5\xc7\x2f\x91\xbf\xe2\xd9\x60\x09\x04\x55\x95\x68\xe2\x70\xf5\x44\x8b\xcc\xd9\xef\xaa\x1f\x60\x5f\x59\x75\xa8\x97\x18\x57\xac\x95\x3b\xa0\x43\xd5\xba\x33\x73\xf9\xb9\x82\x8e\xf7\x65\xc5\xba\x43\x9c\x9a\x9d\xb2\x00\x79\xb3\x64\x4d\xcc\x83\x4f\x67\x32\x2a\x91\xd4\x9b\x4f\xbc\x1a\xb9\x3d\xce\x95\x72\xa2\xf3\xd5\x41\xf1\x3c\xeb\xf9\x1b\x37\x45\x65\x71\x44\xb2\x0e\x97\xa0\x7e\x62\x71\xe7\xeb\x7d\x7e\xd3\x41\x99\x64\x1c\x8a\xf5\xdb\x52\x9c\xd9\x0f\x49\x42\x4b\xf4\x2a\xbc\x45\xa1\x15\x67\x98\xe0\xeb\x00\xde\x6c\x9c\xbc\xb2\xc7\x09\x1a\xdc\x45\xd5\x53\x9f\x82\x1d\x5d\xf7\x26\x3e\xfd\xf3\x59\x99\x4f\x31\x92\x1d\x54\x84\xeb\x49\xdd\x29\x26\xca\x1e\xb1\x9c\x48\xcd\xb0\xd4\x46\xfc\x5b\x70\x4d\x82\x30\x61\x16\x5d\x0a\xd4\x29\x3b\xaa\xff\xb1\x48\xfe\x15\xe1\x90\x4f\x92\x5e\xc3\xc0\x7b\x19\xcd\x8a\xdd\x02\x48\x3a\xf4\x03\x49\xd7\xd3\x12\x60\x4c\xdb\x9d\xff\x5f\x03\x91\x25\x45\x2e\x96\x18\xd0\xd4\xad\xaa\x6d\xda\x40\xb3\x1c\xa2\xd0\x93\x6d\x20\x6b\xf3\x7d\x47\x89\x93\x05\xab\xd8\xdb\xbc\xee\xae\x4b\xe8\xda\x37\xe9\x35\x5f\x2b\xcf\xb4\x69\x16\xdd\xe5\xee\xff\x40\xcb\x72\x4a\x43\xd3\xe1\xee\x82\xb9\x0b\x26\x2a\x6e\x5a\x2e\x5f\xa0\xcf\x45\x1f\x80\x55\x5f\x53\x67\x7d\x60\x32\x1b\xa1\x00\xe2\x73\x74\x95\x66\xbd\xf9\x54\x86\x88\xb8\xfe\xbd\x23\x0f\xb0\xae\xd7\x09\x72\x07\x13\x4f\x93\x34\x0a\x85\x0e\x6e\x82\xe7\x37\xf1\xe8\xb9\x68\x70\xbd\x4e\x6b\xa4\xd4\x56\x78\x61\xf0\x5a\x19\x54\x08\x45\x8e\x3f\x34\x25\x72\x15\x9f\xcd\xa9\x8b\x8b\x55\xb4\x3a\xaf\x90\x93\x4a\xce\x68\x81\x26\xef\xb9\xe9\x0f\x89\x5c\xc6\x67\x4e\x6f\x7f\x22\x97\xf3\x22\xf4\xaa\x1e\xbe\x4f\x4d\x59\xcf\xb7\x29\x56\x44\x54\xf3\xb7\x96\xe4\x6d\xd8\xf4\xa6\x7f\x6b\x48\xe6\x80\xfa\xfd\x8f\xf4\xc5\xc7\x80\x3a\x89\x6e\x20\x07\x9a\x14\x48\xda\x55\xcf\x2b\xec\x82\x16\x06\x89\x3d\xc7\x9a\x42\x07\x79\x70\x07\x28\x77\x5e\xd8\x37\xcd\x47\xce\x4c\x8f\x97\xb6\x7c\x29\x9c\x68\xda\x5e\xd8\x77\xc2\x7a\x80\xcd\x0c\x9b\x03\x4b\xe8\xb8\xc9\x08\xb6\x04\x96\x16\x78\xc2\x2c\x6f\x16\xc0\x6f\xf3\x9e\xd8\x62\x2d\x67\x35\xe1\x50\x61\x51\xcd\x76\x55\xb8\x2b\x6f\xae\x85\xcd\x43\x04\x15\x1f\x12\x6f\xb5\x62\x06\x2b\x53\x9a\x63\x65\x31\x9d\xca\xc8\xff\x4a\x9f\xaa\xf3\x01\xfb\xc2\x87\x9e\xd9\x71\xd9\x6c\x37\x84\xb0\xa0\x09\x7e\x26\xaa\x25\x8b\x55\x64\x4a\xde\x4f\xd3\x53\xf9\xb0\xd3\xff\xae\xc2\x98\x2a\x3a\x4a\x6c\x81\xf7\xc0\xc6\x46\x27\xc2\x75\x5a\x6d\xa9\xbc\xb2\xbe\x1d\xee\xec\x6c\xd6\x21\x85\x98\x70\xed\xfe\x08\x52\x00\x5f\x5f\x04\x27\x57\xd6\x3f\xe3\x48\x5b\x07\x77\x63\x7c\xe3\xc3\x07\x71\x02\xdb\x97\xf3\x94\x35\xc2\x44\x38\x74\x40\xd4\x81\x6e\x72\x3a\x5b\x7e\xaa\x72\xa7\x7b\xa2\xd9\x62\x2b\x1e\xdd\x45\x5f\xb0\x05\x0f\xee\xdb\xc7\xa6\x66\x7c\x79\xa5\xf7\x41\x6f\xf4\x33\xd9\x6d\xf9\x82\x25\x18\xf0\x2f\x48\x70\x03\x8e\xf3\x83\x23\x1b\x86\x6e\xc5\x9c\x34\x23\xe0\x85\x9d\xe3\x60\x08\x33\xb3\xe5\x33\x61\x42\xa6\x4b\xa8\x18\x82\x78\x25\x0c\x58\x8c\xda\xcf\x00\x99\x72\xe5\x8b\xe1\xd3\xce\x98\xae\x9a\x7d\xba\xae\xea\x8f\x9d\x62\x93\xf9\x58\x78\x7e\x85\xd6\x8a\x88\x70\x27\xa6\x45\xf2\x39\xb6\x64\xb2\x9b\xa8\xc1\x0a\xb7\xfb\x2a\xb9\x93\x3b\x46\xf2\x24\xac\x3f\xc5\xdb\x9d\xd9\x75\xc9\x62\x32\x98\x9a\xdd\xef\xd1\x28\x9b\xa6\x53\x1d\xa9\x67\x22\x9c\x06\xbd\x8b\x42\x29\xce\x1d\x84\x4e\xc9\xb1\xdd\x2a\x62\x4d\x25\x76\x0f\x68\x1d\xc0\x0a\xcd\xaa\x8d\x58\x06\xfe\x62\xb7\x84\x98\x1f\x77\x9a\x40\x36\xec\x4e\xe2\xde\x87\x57\x23\x6f\x1b\xbb\x83\x34\x6e\x68\x99\x47\xb6\xe9\x0b\x06\xb0\x65\x47\x9d\x1d\xd2\x87\x56\x60\x5a\xfe\x3b\xc8\xc4\x88\x20\xbc\x37\x92\x89\x77\x0c\xa2\x59\x47\xa2\xdd\x89\xde\x57\xb8\x7c\xc6\x6c\x90\xff\x16\x37\x7c\x4e\xef\xc0\x07\xf2\x6c\x00\xa2\x07\xf6\x08\x72\x52\x82\xb6\xb6\x0e\x4a\xcf\x83\xde\x8f\xd6\x8a\x95\xdb\x13\x16\xc2\x81\x2b\x75\x17\x33\x33\xf5\x61\x65\xab\x5c\x17\xc2\x26\x43\xec\x52\x6a\xdc\x35\x4a\x15\x84\x2a\x1c\x30\x3a\x7f\xae\x38\x16\xee\xc3\x77\x04\x62\x98\xe8\x00\xd4\x36\x31\x3e\x6f\x96\x66\xe0\x10\x32\xb2\x6d\x4b\xe4\x41\x1b\xed\x40\x05\x37\x62\x61\x11\xbb\x02\xb7\x6a\x70\x5b\xef\xb9\x14\x9d\x18\xb5\x2e\xe6\xf7\xf8\xb2\x14\xa7\x46\x22\x3a\x66\x51\x57\x93\x95\x39\xbb\x5c\x61\xd1\xae\x93\xf4\x43\x18\x97\x0e\xf7\x54\x53\x06\x00\x36\x1c\x65\xf0\xfd\x84\x42\x11\xa3\x51\xb1\xc3\xf8\x6f\x55\x8b\xb5\x84\xbb\xbd\x8b\x18\x48\x7a\x0a\x8e\x42\xf3\x26\xaa\x6b\xe3\x27\x3f\x0d\x1b\xf7\x13\xfe\xf3\x40\xeb\x2d\x83\x8b\xe9\xfd\x9b\x84\xba\x04\x6a\xf4\xb7\xa0\x05\xa6\x79\xa0\x54\x63\xb0\x10\x44\x35\x96\x2e\x39\x8b\xd4\xf2\x50\xb0\x7f\x95\x2a\x9e\xf7\xee\x7f\x82\x16\x3e\x6a\xcb\x6b\xe1\x5d\x2f\x07\xcb\x81\xbb\x37\xd8\x39\x47\x0b\x83\x32\x20\x47\x28\x49\x07\xd2\x81\x12\xb5\x13\x12\xb8\x19\x39\x9b\x30\x86\x28\x09\xa2\x84\x52\x03\xb6\x10\x16\x54\x61\x69\x04\x33\x41\x39\xa8\x74\x23\xbd\x72\x3c\xf1\xc7\x38\x89\x11\x56\x04\x16\xa6\x7c\xb4\x31\x8b\x14\xab\x27\xbb\x0d\x23\x42\xee\xd9\x9d\xd5\xd7\xe8\x12\xed\x48\x8f\x3f\xab\x6a\xb9\xa2\x71\x55\x1b\xbe\x5d\x06\x39\xd9\x15\xa6\x3f\x9d\xf2\x2f\x62\x28\xcd\xb2\x66\xdd\x15\xb7\x20\x66\x5e\x6e\x83\xf9\xb1\xeb\xdb\xa6\x5e\x3e\x3b\x6d\xf8\xd8\xc8\x1a\x1d\xde\x04\x7f\xfa\xf1\x89\xa6\x13\xd3\xe4\x39\x64\x9b\xc0\x97\x55\xff\x6a\x37\x7f\xd0\xa5\x4b\x36\x52\xc5\xbd\x4b\x1e\x98\xae\xaa\x61\x81\xd8\xe0\xed\x6b\x87\x16\x18\xb2\xd2\x42\xef\x9a\x35\xad\x92\xb8\x48\xb3\xd9\xc8\xfc\xd2\x06\xb0\x11\x48\xf4\x1f\xb6\x08\x65\x0d\xcc\x95\xad\xe2\x87\x2a\x9c\x39\x32\xf7\xf3\xa3\xd3\x66\xe2\x5e\xa4\x27\x51\x81\x8b\x81\x71\xb9\x5a\xf7\xc1\xb6\xc1\x3a\x92\xd4\x15\x83\xa0\x30\x2e\x86\x89\x64\xb5\x93\x57\xd1\x98\x92\x05\x27\x01\xd4\x61\xe5\xa9\x28\xf5\x44\x24\x26\x4e\xb3\x36\x45\x56\x28\x59\xff\x2d\xa4\x15\xd0\x2f\xef\x15\xa6\xc2\x85\xe0\xeb\x95\x39\x4c\xb0\x83\x55\xae\x8c\x4d\x46\xaf\x6c\xcd\x46\x10\x30\x36\xc5\x89\xe7\x6c\x43\x98\x29\xde\x66\xbd\x08\x99\x9a\x18\x31\x09\x63\x13\x92\xa4\x93\x06\xb3\xed\x2f\x64\x6a\xa3\x76\xfd\xc0\xad\xb9\x2f\xe0\x6b\x18\xd3\x31\xd0\x41\x63\x81\x6e\x44\x67\xea\x8d\x6a\x42\x90\xc1\x06\xb0\xfe\xd4\xf3\xb6\xd1\x2b\xb4\xd4\x12\x31\x27\x74\xcc\xe9\xcb\x68\x31\x73\x27\x60\xb2\x28\x26\x39\x50\xae\xfc\xb7\xb4\xc8\x89\x13\xf4\xcd\x47\x22\xa6\x71\x11\xa4\x1f\x2a\xe4\x38\x8c\x9d\x35\x94\xbf\x1c\x7b\xf6\x30\x3c\x7d\xe8\x55\xf4\x41\x16\x13\x70\x16\xad\xd5\x99\x45\x89\x66\x08\xe6\xe0\x6c\x3b\x52\x08\x27\x51\x46\xa0\xb6\x3f\x8e\x03\x90\x84\x55\x33\x10\xd4\xb7\xfc\xa1\xbf\xc3\x69\x89\xea\x0f\x96\x0b\x31\xf0\x5d\x1d\x30\x50\x21\x87\x4c\x50\xe1\x06\x79\x41\x47\x49\xd8\x3e\x1e\x4b\x85\x57\x9c\xdd\xa9\xe1\xaf\xde\xe8\x5b\x91\x97\x9a\x88\x35\x00\x40\x41\x78\xe7\x10\x81\x5f\x5e\xab\x60\xb5\xa8\xb5\x86\x5a\x35\x62\x0e\x88\xea\x8c\x65\xae\xc4\x7a\x23\x3d\xbe\x78\x4d\x7b\x86\x6b\xd0\x2a\xfd\x39\x27\x49\x5a\xba\xb0\x77\x1a\x0d\x26\xb6\x21\xcf\x75\x32\xbf\x14\x37\x05\x2a\x4a\x62\x89\xbb\x41\x8d\x06\x24\x83\x89\xf3\x05\xc7\x65\x17\x68\x79\xa4\x35\xf4\x64\xb8\x5b\xb9\xa1\x7e\x43\x98\x75\xba\x46\x5e\x5a\xdb\x1b\xe6\xff\x81\xb9\x56\x2e\x18\xda\x83\x83\x0f\xec\xc4\x08\x12\x9a\x8e\x94\x97\x70\xeb\xf8\x87\x75\x58\x39\x48\x38\x95\x21\x1b\x99\x9c\x4c\xcf\x54\x26\x8b\x4d\x71\x96\xad\xd5\x13\x8f\xf9\x2e\x3e\xc3\x84\xef\xcf\xe1\xb7\x70\x99\x70\x54\x01\x29\x5f\x4c\x36\xeb\x28\x5a\x9a\x1e\xf0\x9b\x54\x36\x42\xb1\x75\xe0\x56\xe4\x74\xa1\x14\x11\x98\x11\x53\x2d\xfb\x72\xcd\xf6\xbf\xda\xba\xbf\x01\xd5\xa1\x47\x46\x01\x0a\x14\x9c\x44\x4b\x2f\xe2\x0a\x2a\x42\x35\x9d\x55\x46\x10\xb4\xdc\x60\x07\x20\x47\x79\xdb\xaf\x4f\x8e\xdf\xbe\x3d\xbf\xf2\xdb\x34\xaf\x83\xba\x20\x61\xe2\x1b\x67\x31\x37\xea\x97\xd9\xcd\xb9\x09\x8c\x21\xbc\xe5\x9e\x96\x38\x04\x17\xb2\x29\xab\x9d\x3e\x97\x0d\x78\x4f\xc3\x7d\x31\x5e\x1e\xf5\xbf\x38\x34\x7f\xc9\x7b\x96\x6f\x3e\x24\xa6\xec\x3e\xe7\xbf\x49\x78\x5f\x10\xdc\xd1\x60\xe9\xf9\xab\x1c\x6f\x9d\x4f\x1d\x68\x8a\xd1\xfd\x01\x98\xf4\x2e\xc7\xd1\x88\x70\xdf\x60\xaf\xb8\x4e\x71\xdf\x7d\xc4\xea\xd0\xa6\xc5\x82\x61\xe4\xee\xea\xea\xb7\x1d\x04\x34\x3e\x18\x11\xf3\x60\x43\xcc\x79\xb5\x96\x0d\xe5\xcf\xee\x87\xa4\xf3\xd7\xc0\x82\x3c\x68\x9c\x7e\xfd\xd8\x6d\xd9\x8e\x95\xf6\x86\xee\xe9\xbd\x5d\x95\xb2\x76\x8d\xad\xb8\xee\x3d\xa3\x63\x0c\xdf\x82\xd3\xf4\x11\xc4\xb3\x51\x75\xec\x45\xb6\x10\x55\x9c\xb3\x07\x02\xdd\x6a\x3a\xaf\x16\x16\x79\x23\xfd\x9f\x20\xfe\x77\xb4\xc9\x2e\x6b\x7e\x1c\x0f\xf5\x94\x4c\x38\xc2\xda\xfd\x94\xaf\x77\xb1\xb2\x84\x5b\xe7\x32\xdd\xa3\x04\xe6\xf1\xbe\x2c\x0c\x7e\xe0\xed\xc8\x19\x44\x0d\x3f\x01\x69\xfd\xed\x3e\x4f\xec\x17\xc9\xa2\xdf\x37\x09\x7a\xa2\x0a\xe8\xa1\xf7\x1c\xf2\xcc\x0c\x9e\xf3\x60\x0b\x8f\xd4\x89\xd9\x08\xfc\x5c\xf2\x75\x2f\xaa\xe7\x34\x98\x4d\x66\x2d\x18\x44\x19\x52\x8c\x5e\x11\x3a\x0e\xd6\x2d\xda\x0a\xb6\xfc\x92\xce\xbe\x92\x69\xe0\x27\xe9\x12\x7d\xbb\x97\x44\xf7\x84\xa2\xd9\xb2\xea\xe9\xc8\xcd\x1e\x5b\xb0\xfc\x4e\x88\x6d\xd0\x4e\x06\x2f\x4b\xf9\xb2\x94\x51\x51\xde\xf4\x05\x16\x2a\x33\x16\x35\x75\x05\xf0\x87\xfe\x9e\x28\xa5\x80\xe6\xe3\xc9\xb7\x1f\x4d\x56\xd5\x15\x2f\xfc\xd7\xf4\x87\x36\x75\x39\x02\xc4\x64\x2a\xf2\x2d\x2a\x51\xfd\x8e\x1c\xc2\x5d\x3d\x6a\x89\xa7\xb3\xa2\x26\x78\xc1\xbc\xa8\xb1\xb8\x6a\xd0\x81\x36\x24\xa4\xcf\x91\xa0\xae\x95\xd4\x13\x9a\x85\x4f\x22\x0e\x89\xb3\xe5\x6b\x4b\x79\xc8\x47\xc0\x47\xc9\x9e\x6f\x82\x45\x29\xfd\x17\xfd\x84\x4e\x7a\x99\xff\x5d\x52\x2f\xdd\x0f\x4c\x7b\xa7\x84\xd0\x1d\xd0\x48\x0f\xaf\x75\xbf\x5e\x31\x3d\xac\xe1\x76\xfd\x34\x1b\x3f\x65\x7c\xdb\x60\x0b\x21\xb2\x9e\x48\xd4\x69\xd4\x7c\xe7\x9c\xd7\xa8\x38\xcf\x85\xb9\x87\x79\x8a\x29\x4f\xf2\x78\x99\xc3\x68\x74\x4e\xcb\xf4\xde\x33\xc1\xb6\xad\x71\xab\x55\x27\xef\x4c\xfd\x56\x83\xd9\x53\x88\x99\x2c\x64\x3b\x3b\xb3\xf5\x10\x9f\x4b\x55\x0f\x34\x0d\x15\x6d\x03\x2a\x8a\xe5\x81\xef\xcc\x93\x97\xaf\xaf\xe0\x39\x43\x73\x0d\x4f\x07\x73\x0f\x62\x9b\xe2\x99\xab\x93\x77\x88\xaa\xeb\x44\x72\xa8\x2b\x20\x9e\x57\xaf\x5d\xf9\xdb\x74\x10\x7b\x93\x93\xae\x56\x16\xf2\x3e\x5f\x9b\xdd\x53\x02\xc6\x8c\x9a\x5f\x4b\xa2\x16\xe4\x44\x1c\xa1\xe3\x2b\x1d\x33\xab\xca\x43\xa7\x2d\xab\xd6\xdd\x22\xfa\x69\x0b\x2f\x10\x85\x91\x18\x77\x52\xb6\x72\xed\xf8\x13\x7c\x75\xd8\xc9\x20\x66\x4c\x70\x15\x0e\x66\x37\x34\x0d\xe4\x9d\xb0\xe0\xad\x7c\x7b\x93\xb1\x42\x1a\xbb\xf7\xf6\xc6\x27\x04\x62\x0e\x65\x54\x11\xb0\x33\xd1\xb8\xc0\x6c\xfe\xc7\xff\xf9\xbf\x8f\x4f\x78\x78\x27\x7d\xbb\xa6\x2f\x95\x22\x19\x5e\xd0\x2d\x15\xa4\xe7\xff\x4a\xa7\x81\xbd\xda\x63\xfc\x22\x5f\x89\xfd\xc6\x92\xa4\xfc\x4e\xb5\xc8\xf8\x48\xf4\x17\xaf\xcc\x44\x3d\x9f\x79\x49\x26\x7c\x14\x53\xf2\xa0\x63\x58\xc8\x48\x7f\xdb\x55\x8b\x8f\x99\x68\x10\x9e\xa6\x7f\xe2\x5f\x29\x9c\x5e\x75\x2f\x61\xfe\xe4\x98\x0d\x88\x70\xc0\xb1\x42\xd3\x60\x30\x60\x35\xd0\xf7\xcc\x29\x8f\xf7\xc6\x1b\xb3\x37\x34\x40\xf6\xe7\x49\xb6\x3b\x36\x41\xe2\x89\xb7\xd6\x2e\x28\x05\xce\x51\x9c\xc8\x92\x4c\x50\x83\xbb\x4d\x8c\xea\x40\xf3\xd4\x5d\x71\x6e\x9b\x14\x01\x90\xe5\xf5\x61\x6c\x6a\x36\xcf\x69\xc8\x2a\x8e\x27\x8e\x6b\x2a\xb7\xec\xdb\x12\x87\x0c\xfa\x93\x10\x33\x66\x5b\x35\xbd\x9a\x64\xa7\xce\x3e\xc7\x55\x1c\xd2\xed\x62\x92\xef\x57\xf3\xa5\x56\x84\xd3\xc5\x73\xfd\x4c\x28\x9d\x7f\x5f\xd1\x9f\x91\xfb\x35\x3b\x6b\x8f\x9d\xb4\xd7\xf9\xbc\x44\xf2\x1b\x7c\x10\xfd\xd3\x7e\xd0\xd3\x2c\x40\x4d\xe6\x7e\x24\x8c\x86\xaa\x17\xe2\xc3\x57\xa2\xde\x0f\x72\x0d\x29\x9f\x09\x2e\x79\xda\x9c\x4d\x81\xdf\xe5\x7b\xf9\x49\x28\x52\x2f\xee\x57\xf2\x25\xc9\x30\x2c\x17\x50\xd8\x95\x3b\x78\x08\x90\xba\x02\x2e\xec\x3b\xb1\x0e\xcc\xc6\x1d\xb1\x9c\x81\x13\x79\xba\x18\xe4\x5f\xcb\x31\xf8\x05\x1f\x82\x2d\x2d\x07\xc7\x4e\xcd\xf0\xcd\xa5\x6f\x68\x19\xc9\x4d\xc8\x99\x7c\xb9\x9c\x42\x8c\x4d\x4f\xb1\x53\x6a\x9a\x19\xfa\x9f\xf3\x5f\x97\x4a\x34\xa9\x32\x12\xfd\x75\x46\xf3\x12\x63\x81\xcf\xbf\xe2\xb5\xee\x93\x67\xc3\xb9\x08\xb2\x6a\x16\x3b\xe6\xb8\x72\xa2\xe5\x85\xfc\x30\x7b\x41\xf8\x6f\x33\x57\xfe\x84\x7f\xa6\xeb\x51\x2d\x6e\x72\xc3\xb9\x1d\x34\x13\xc2\x50\x53\x93\x60\xd2\x5c\x08\x29\x2d\x6e\xa6\x80\xe9\xcc\x53\x47\xb0\xe7\x94\x10\x92\x56\x54\x31\x4b\xeb\x83\x9a\x21\xc0\x4f\xc3\xd3\x66\xc8\x8e\x55\x38\xc2\xe8\xe7\xb8\x9f\x01\x90\x74\x33\x9f\x00\x65\x4d\x92\x87\xa3\x81\x0f\x81\x54\xd9\xe9\x78\xce\x70\xf6\xfc\xfc\xd0\xd4\x0e\x27\x48\x32\x33\x92\xaf\x16\xa5\x73\x0b\x01\x10\xe4\x0c\x8e\x77\x10\x35\xe3\x2a\xd3\xc6\xa2\xfa\x80\xd0\x3e\x9f\x53\xf6\xfd\x02\xd8\x74\x85\x19\x57\x3e\x4b\x50\x67\x99\xca\x5c\xac\xe6\xa8\xca\x30\x8f\x44\xa2\x4c\xc4\x43\x41\x84\x13\x15\xd7\x13\x25\x6e\xa5\xa8\x21\xcc\xc1\x9a\x47\x74\xa3\x25\x6f\x99\x5e\x0f\xc1\x11\x02\x0e\x57\x7d\xa0\x9c\xca\x64\x90\xc4\xc6\x39\x33\x76\x1e\x72\xfc\xf3\x18\xf6\x28\xe0\xa1\x53\xa0\x9d\xc6\x3d\x21\xe1\x9b\xf7\x73\xd7\xd5\x42\xd5\x4a\x53\x85\x64\x96\x8b\x6c\x7e\xa3\x65\x64\x9e\xe1\x94\x79\xa0\xc8\x86\x4d\x5a\x70\xc4\xd2\x22\x67\x2e\x61\xa2\x48\xa7\x4e\xdd\xec\x55\x3d\xce\x99\xf1\x66\x04\x93\x17\xe6\x4d\xdd\x24\x08\x53\x29\x40\xce\xf1\x31\x05\x22\xca\x56\x55\x97\xf0\x2e\x20\xee\x0b\x76\x3d\x3b\xd9\x30\xdb\xf1\xb8\x12\x6f\x60\xd5\xd3\x7e\x41\x39\x36\x91\x65\xbe\x2a\xba\xf5\xb3\x06\x66\xab\xf8\x79\x4b\x3b\xbe\x80\x34\x34\x2a\xc1\x2b\x09\xb3\x40\x20\xf2\x9d\xde\x7f\xff\xed\x87\x8e\xa7\xc1\x5f\x5b\xbc\xff\xee\x03\x9d\x59\xef\xbf\xff\xfe\x03\xee\x2b\x46\x85\xb3\x6b\x56\xd7\x8d\x6b\x40\x41\x83\xde\xb6\xe5\xa7\xaa\xd9\x75\x22\xa3\xe1\xd3\xf3\x87\xcf\x32\x15\x9f\xfb\x78\x89\x3b\xe7\xf2\xc1\x0a\x2f\x5c\x56\xbc\xc2\xeb\xdd\x26\xd3\x31\x76\xc2\x01\xec\x97\x2b\x6e\x18\xc8\x72\x6e\xf2\x57\xf7\x9b\x87\x5b\x15\x3c\x58\xea\xbc\x1d\xd5\xff\x20\xbf\x9e\x61\x20\x3c\xf4\x5f\x5d\x4b\x4d\x70\xd3\x71\x25\xfe\xf1\x2c\x59\xbb\x3b\x97\x9b\xb2\x9f\xc5\x5c\xc9\x62\xb5\xa0\xcb\x71\x96\xf6\xc2\x83\xe8\xbc\xc1\x30\x38\x04\x6f\x4b\x20\xc6\xe0\xde\xe1\xe7\x20\xf3\xb6\xca\xda\xa8\x80\xb2\x5a\x4f\x25\x0a\x3a\xc0\xb5\x62\x4a\xb6\xa1\xaf\x43\x93\xb4\xe7\xea\xb0\x9f\x5f\x59\x8b\xc8\x13\x24\xb4\x5e\xbb\x7a\xae\x09\xe3\xf5\x02\x5a\x71\x5c\x1c\xf0\x50\xd5\x30\x54\xa0\xbf\xb2\x89\x6d\xa3\x91\xa6\x2e\xf0\x61\xc9\xa2\x86\x52\xab\x7f\x47\x9b\x91\xca\x4e\x13\xcd\x0d\x8c\x8e\x04\x74\xf8\x01\xc7\x36\xd7\x2f\xbe\x3b\xe2\xa4\x08\xb4\xaa\x33\x73\x1e\xd0\x53\x03\x31\x4b\x36\x78\x93\x11\x11\x19\xb1\xb7\xab\x6a\x81\x0f\x7a\xe6\x45\x57\x8b\xe6\xe9\x27\x17\xcb\x3c\x91\xe1\x6a\x2d\x0b\xe8\x45\x7e\xa6\x3f\x0e\xaf\x03\x23\x1e\xeb\x1f\xb7\x42\xdd\xa7\x3f\x96\x24\xfb\xa2\x2d\x3a\xbf\x6f\xc7\xf9\x8b\x66\xdd\xf8\x7d\x1d\xbf\x86\x00\xa2\x95\xbd\x5f\x0c\x64\x33\xc9\xf6\xb4\xad\xab\x97\x13\x06\x3b\x8f\x40\x4e\x0c\x46\x32\x06\x26\x6a\x71\xa6\xf3\x66\x91\x0e\xc2\xa7\xc5\x22\x2a\x8c\x6b\x51\x43\x2f\x80\x3a\xb5\xf0\x24\xd8\x94\xfe\x5f\xa4\x8c\x50\xdf\xcf\x32\x7b\x68\x28\xc1\x37\xde\xc1\x15\x80\xd6\x7c\x58\xe3\x3f\xdd\xb4\x3f\x13\x4b\x4f\xef\xb8\x5a\x94\x43\x50\x20\x83\x87\x87\x21\xcd\x64\x9d\x71\x4e\x74\x29\x66\x35\x7a\xd0\xe0\x14\xb5\x26\xea\xa6\xe1\x0c\x0b\x06\xdc\xef\x9b\xd4\x1d\xd1\x10\x23\x8d\x77\x89\x3c\xe5\xc2\xe6\x07\x88\xb5\xa1\xe5\x67\x83\x6a\xe1\xcb\xfd\x14\x06\x7c\xc3\x06\xb5\x85\xa7\xa9\x7e\x69\x7e\x74\x7a\x1c\x9e\x1a\x6d\xe4\x0d\x2b\xcc\x76\x6b\x6c\x10\xb8\x2f\x95\x1f\xd7\x72\xd3\x67\x40\x08\x33\xc5\x12\x8d\x6f\x2b\xe0\xf2\x12\x84\x4a\x0d\x38\x38\x77\x5e\x2e\x72\xd8\xea\xc2\x0d\xac\x66\x8d\x70\x5e\x04\xa3\x27\x10\x0e\x9a\x61\xf5\xb3\xf1\x73\x18\x3a\x8c\x79\x9a\xab\xde\xf4\x21\x03\x4c\xcd\xcb\x7e\xcf\xf3\x2a\x06\x15\x8c\x5c\x51\x2f\x77\x3f\x84\x3b\x35\xb1\xb7\x27\x68\xe3\x09\x6f\xd7\x85\xb2\xba\x3f\xe0\x87\x30\x3c\x45\xe5\x40\x98\x9f\x20\x03\xac\x76\x9b\x54\x26\x47\xe8\xdb\x37\x25\x35\x8a\x2d\xbe\xb0\xf3\xa5\x30\xde\x1f\xd9\x69\xcf\x38\x2b\xbe\x89\xc2\xd9\x60\x42\xd3\xbf\x77\xe9\x5a\x3f\x6a\xd2\x9d\xdc\x9a\x91\xb4\x7f\xac\x7a\x2a\xfd\x2f\x1f\x8c\x46\xe9\x28\x90\x85\xbc\x14\xf4\xe9\x7f\x46\x50\xc3\x63\xb5\xcf\x13\x1d\x31\x08\xaa\x34\x63\xca\x42\xf3\x75\xd7\x25\x52\x11\xd4\x38\x7f\x09\xc9\xd0\xdb\xc0\x70\x26\xa9\xd7\x74\xc4\x67\x46\xa0\xd8\x74\x97\x62\xb3\x08\x35\x10\x71\x5b\xdf\x12\x53\x8d\xcb\xb9\x1a\x55\xeb\x56\xbe\xc2\xc4\x0b\x5f\xaa\xe0\x20\x5b\xb4\x3e\xec\x2a\x94\x7e\xb9\x4b\x8f\xe9\xba\x14\xb6\xd8\x79\xfb\x76\xc6\x22\x15\x82\xee\x2b\xe0\x67\xd6\xf7\xaa\xcb\x60\x03\x25\x36\xd4\x57\x6a\xd8\xb4\xae\x16\x7d\xea\xd2\xa9\x39\xb5\x72\x87\x25\xcc\x52\x62\xf2\x38\x93\x76\xda\x2c\xbb\x15\x82\x7c\x30\xc0\x35\x71\xa9\x4d\x03\x29\xce\xb1\x88\xbc\xce\xa0\xec\xc7\x50\xc3\xc8\x1f\xac\x94\x35\xe4\x32\xc4\xe3\x01\x86\x45\x31\x36\x18\x6e\x50\x2d\xb4\xe1\x87\x6a\x7e\xd0\xdf\x5e\xb7\x71\x01\xf1\x3e\xe1\x45\x6f\x43\xef\xdc\xf2\x35\xdd\xc8\xc1\x26\xa7\x82\xc1\x85\x2a\x38\x9a\x87\x46\xe2\x46\xc0\xb8\xa8\xea\x23\xa2\x19\xb2\x15\x10\xd0\xd4\xea\x06\xd1\xee\x6a\x5d\x84\x28\x05\x2d\x20\x93\xf9\xaf\xe3\xf1\x2a\x31\x1f\x1a\x6b\xc8\xb6\x6a\xd9\xb6\x23\x7a\x7a\xf8\x87\xfb\xc5\x23\x59\xc8\x30\x2c\x1a\xdd\xc6\x70\xa2\xa0\x33\xdc\x22\x79\xcc\x55\x07\x2f\x70\x26\x1b\xde\x2c\x18\x88\xbe\x67\xbf\x26\x81\xa6\x2e\xd8\xcf\xfc\x19\x3c\xc8\x9e\x50\x18\x04\xb9\xd3\x4a\x83\x21\x40\xe1\x55\x31\xf7\xbb\xa8\xed\x26\xa3\xe5\x91\xe9\x89\x8e\xb6\x14\x5e\x2c\xf8\x35\xec\x82\x1d\x65\x86\x55\xbb\x43\x41\x3c\x22\xda\xdb\xe7\xbc\x8f\x88\x6f\xb3\xf0\xe9\x40\x3b\x49\x24\xa0\xce\x2a\x7a\x81\xae\x02\x42\x54\xfd\x80\xcd\x4f\x62\xc7\xc4\x3a\x78\xd7\x86\x19\x13\x97\x82\x61\xae\x1f\xf4\x29\x8d\x98\xf5\x81\xe9\x43\x0b\x0c\xf6\x28\x1e\x64\x29\x96\xda\xfc\x37\xcc\x70\x71\x5c\xb4\xaa\x4c\xa6\x5e\x6b\x44\xe5\x9a\xe2\xe3\x9b\x1c\x39\xdf\xd4\x07\x37\xf4\xef\xf1\x66\xf3\xb8\x28\x1e\x4c\x8c\x3a\x10\x8d\xdc\xb0\x07\xe6\x66\xaa\x85\x18\xb0\xca\xa0\xa6\x40\xce\x9c\xc6\x1d\x03\x44\xf3\xf4\x0b\x4b\x01\x25\x5f\x9a\xa5\x85\xc7\x9b\x90\xae\x9f\xbb\x8e\xb7\x80\x86\x18\x9e\x37\x61\x61\x56\x21\x3e\x8c\xe1\x48\x06\x12\x7a\x90\x35\x70\xcd\xbe\xb5\x7b\xee\xda\x44\x25\x3a\x62\xdf\x9b\x03\x28\x91\x60\x7e\x07\x11\x12\x48\xc6\x1e\xa9\x4e\x3a\x9e\x00\x9c\x92\x8d\x7d\xdb\xff\x4c\xf9\x78\xaa\xf1\x29\x12\xb8\x4b\x42\x9e\x0a\x1c\x6b\x69\x33\xa1\x6f\xb8\xc6\xc8\x97\xcf\x0a\x82\xd1\xa8\x9c\x11\xfc\xf6\x60\xab\xa6\xf9\x28\x01\x79\xe6\xf8\xf4\x39\x4b\x0e\x44\x29\x99\x1c\x72\xf1\x55\x9c\x4b\xa2\x65\xb5\x08\x03\xd4\x3e\xe7\x84\x89\x2e\x16\x3c\xc7\x6d\xf6\x77\xd1\x49\x9e\xe2\x57\xfa\xbf\x98\x30\x1c\x88\xfa\xb5\x9c\x5b\x00\x26\x36\xb9\xf0\xb9\xea\x91\x10\x34\xa5\x0e\x14\xe3\xb6\xd4\x64\x9f\xd9\xf9\x97\x79\x9d\x4c\x79\x9b\xc4\x2e\xb0\x33\x5f\xbb\x73\xa2\xe3\xdb\x21\xfd\x3c\x37\x3f\xbc\x31\x98\xbb\x9d\xf5\xbe\x77\xf1\xe5\x14\x1b\xcc\xd5\x62\x6a\x0f\xff\x3b\xbe\x47\x6a\xb0\x61\x85\x4e\x7f\x44\x77\x2e\xc6\xa3\x9e\xb8\xa1\x05\x80\xf9\x59\x17\x74\x0f\xc1\x8d\xe1\x81\xcb\x92\x59\x27\x77\xf1\xea\x49\x28\xfe\x28\xa2\x29\xc8\xdd\xe9\xbd\x83\xd1\xc2\xc4\xd6\x07\x1d\xb8\x0b\x8e\x23\x0e\x2d\xd6\x55\xe4\x05\xd3\x3b\x70\xc2\x02\xa6\x83\xeb\xed\x01\xa0\x21\xe5\x9c\xf8\x87\xd8\x47\x4a\xb1\x3c\x72\x62\xec\x03\x0d\x96\xd8\x34\xf1\x95\x9d\xeb\x11\xb3\xa7\xb2\xed\xe1\x3e\x38\x46\x3b\xbb\x33\xd0\x02\xca\xbe\xa5\x66\x1e\x43\x56\x92\xa8\x94\x18\x84\xac\xbf\xea\x3a\xc0\x07\xcc\x3c\xd9\x6c\xf3\x53\x55\xec\x88\xfa\x78\x2e\x6e\xab\xf7\xbb\xb8\x5e\x5a\xf1\xb8\x55\x3f\x58\xf7\x60\x3e\x21\x44\xb8\x90\xc5\xf0\x1f\xbd\xf6\x6e\xd1\xdd\x54\xcb\xcc\x84\x9c\xb6\x43\x71\x00\xf7\xe6\xd4\xfb\x07\x86\xac\x4a\xf8\x10\x0c\xcd\xc4\x16\xdc\xc4\xa4\x1f\xd2\xd1\x7c\xc4\xd8\x12\x9f\x53\x27\x55\xdd\x69\xea\x36\x22\x84\x01\x96\x06\xf5\x01\x61\x81\x41\x9a\xcd\x3e\x0f\x9f\x43\xdd\x69\x38\x65\x3b\x03\x84\x24\x21\xb1\x12\x10\xdd\x99\x0d\x07\xe8\xa8\x70\xa4\x3c\xf8\xc8\x69\x55\xc5\xd3\x2e\xb0\x5d\xf4\x3c\xb0\x89\x30\x3b\xe8\x2b\x4c\x04\x04\x01\xaf\x47\x4d\x7b\x07\xc0\x23\x6f\x77\xe5\xec\x40\x58\xee\x64\x13\xb7\xba\x28\xb7\x1c\x6b\x93\x15\x9b\xd7\xb2\xdb\x0a\xcf\xbf\xa3\xd5\xef\x6e\x6b\x55\xcc\xc5\xa6\x9a\x35\xc3\x49\xf5\xa8\xc7\xa2\xe5\x00\xd9\x77\xb4\xf6\xbd\xb5\x16\x6e\x59\x1f\xcb\x72\x1b\x34\x11\x77\x3f\x70\x24\x01\xf3\x8c\x0d\xb8\x26\x38\x9a\xfa\x4a\x9a\x73\xf5\x01\x26\x1e\xc5\x8a\xf1\x56\x02\xba\x9b\xdd\xe1\x57\x36\x5e\x20\xa6\x02\x45\x54\x77\xa8\x41\x1d\x0c\x6b\x79\xb2\x80\x73\xc3\x94\xd7\x58\xf2\x44\x55\x62\x22\x3c\xb0\x3d\xf2\xde\xd6\xae\x6b\x56\xa0\x3d\xdc\xbd\xd8\x0a\x34\x9d\xb0\xfe\x74\xa0\x6c\x62\x1f\x12\x6b\x2a\x8e\x15\x3c\x9e\x93\x20\xf9\x70\x81\x81\x3b\x43\x54\x57\xec\xce\x10\x74\x50\xa8\xe8\x50\x3d\x27\x93\x75\x28\xe5\x05\xb5\xc8\x35\xbf\xc4\x23\x8c\x2f\x54\xf5\xde\x1f\x0c\x75\x16\x12\x03\x83\x56\x70\xb8\xcf\x34\xfa\x99\xbe\x61\x30\xf4\x78\xd7\xdc\xfd\xaa\x09\x22\xd9\x88\x57\x06\x76\xaf\xb0\xeb\xb3\x18\x3b\x7b\x11\x68\x14\x93\x2a\xde\x0c\xe4\x1e\xdb\x8d\x4c\xf8\xc1\x21\x79\xb3\xa3\x3e\xaf\xab\x8f\x50\x9f\x11\x29\x4b\x38\xe4\xf3\xcb\x2b\xe8\xcc\x68\xc9\xd0\xce\xbb\x64\x4e\x9d\xfe\x65\x55\xd6\x88\xd0\xc9\x51\x89\x95\x75\x2d\x16\xec\x4c\x55\xd5\x1a\xbe\x70\x5f\x9a\x89\x7b\x5d\xac\x85\xd1\x85\xee\x76\x26\x6f\x88\xee\x2c\x45\xe4\x61\x5e\x9b\xdd\xb6\x5c\x90\x14\x3d\xe3\x8b\xb2\xb6\xc6\x73\x0e\x2e\xc8\xfc\xad\x96\x9c\x6e\x24\xb0\xe8\x61\x15\x5b\x80\x16\x45\x49\xa8\x4f\xd6\x5d\x7b\x84\x9e\x21\xe8\x94\xdc\x6c\x18\xbe\x4d\x6a\x06\x47\x16\xcb\xea\x8a\x19\x7c\xaa\xd6\x27\xb7\x39\xac\x1c\xec\x43\x18\x3e\x52\x9a\xbe\x43\x78\x1e\x56\x35\xf3\x9a\x08\x53\x3f\x4c\x80\x74\xdb\x46\x0c\x45\xdf\xe9\xe7\x18\x48\xce\x57\xdc\x93\x57\xf2\x35\x06\xd9\x6a\x94\x27\x17\xef\x69\x0c\x32\x6f\x0a\x3e\x31\x3d\xa7\x3f\x63\xb1\xdb\xbd\x1d\x60\xb2\x37\x88\x73\xcb\x91\x02\xe4\x5e\x9a\x33\x08\xdd\xe5\xfa\x5a\xa2\x3e\xb0\xae\x09\x07\x44\x51\x0f\xb2\x85\xb5\x84\x3d\x65\x8b\x60\x54\xa0\x7e\x7f\x70\x69\x41\xcc\xb7\x50\xf7\xa7\x3e\xc2\xa1\xd3\xe7\xb0\x4f\xb8\xe7\xb0\x7e\xbd\x16\xa9\x05\xd3\x80\xe3\xb0\x04\xe8\x3b\xe2\xcd\x88\x4f\x92\x76\xf3\x68\x5b\xd6\x56\x82\xf2\xb1\xb7\x16\x11\x35\x02\xa9\x18\x88\x48\xbd\x62\xc3\x15\x18\x3b\x5b\xa0\x72\x10\x1b\x10\x36\xee\x91\x1a\xa7\x33\x82\xc4\x2c\x7d\x04\xe1\xef\x45\x01\x64\x6e\x60\xc3\x9d\x49\xc1\xfd\xe9\xe2\x55\xb4\x1e\x02\x8e\x12\x3d\xea\x80\x8e\x6a\xa8\x3d\xd1\xfd\x32\xa7\x30\xd5\x6f\xa0\x62\x65\x5c\xb1\x29\x66\xb0\xba\x79\x63\x27\x71\x4a\xe4\xee\xb6\x5c\xe6\x6d\x61\xe1\x65\x94\xd3\xb0\x8b\x0d\x38\x4a\xe8\x4d\x9c\xaf\xe9\xb8\xae\x55\x10\x67\x24\x90\x8f\x6c\x48\x45\xf3\xcd\x52\x91\x69\x28\x58\xbe\x2c\x84\x8d\xb1\x43\x23\x31\x97\xdd\x96\xf9\x8d\x30\x2f\x6b\x07\x43\x7e\xf8\xc7\xcb\xf3\xb7\x47\xe9\xe7\xc7\xfb\xfd\xfe\x31\x17\x7f\xbc\x6b\xd7\xec\xfa\x57\x70\xf8\x9a\xff\x79\xf6\xe6\x28\x2d\xfb\xc5\xa3\x19\x1d\xed\xdb\x58\x21\xa6\x36\xa7\xb8\xac\x60\xea\x62\x61\xf3\xf7\xb3\x27\x5d\x31\x1a\x30\x3e\x8c\x92\x16\x6e\xa9\x3c\x7b\x66\x2e\xa2\x93\x29\x66\x23\xc1\x86\xb4\x68\x4b\x58\x5b\xe0\x23\xc8\xa0\xdd\xe9\xe3\x54\xd8\x82\x21\x48\x45\xed\x68\x37\x5e\x2f\x34\x60\xfd\x00\xc4\x2e\x17\x4f\x70\xad\xe8\x32\x31\x71\x6e\x5b\xe1\x50\x7d\xdd\xaa\xd9\xad\x8b\x98\x63\x12\xce\x74\x22\xca\xe2\xa7\x61\x61\xd8\x45\x22\xe2\xf4\xd3\xf4\x8f\xac\x5b\xe2\x89\x12\xda\xe2\x2c\xa3\x2d\x00\xcf\x86\x85\x11\x3b\x31\x10\xa5\x69\x00\x12\x13\xd2\x44\x79\x9f\xe7\xc4\xf9\x51\x25\x7a\xe2\x63\x33\x8d\x3e\xdd\xb8\x13\x20\x68\x4d\xaa\x1b\x17\x89\x35\x7b\xd3\xd9\x86\x17\x31\x8f\x3c\x52\xc3\x49\x53\x7b\x4d\xe1\x21\x15\xa3\xd0\x49\x14\x05\xfc\x11\xa0\xcc\x45\x42\x2b\x55\xbf\x76\xc1\x98\x52\x0d\x16\x5a\x0e\x33\x82\x50\x0f\x65\x0f\x27\xfb\xa9\xb5\x28\x67\x70\x37\x6b\x7e\xf5\x18\x7f\xd3\x1d\x4e\x24\x13\xf1\x4b\x8a\xb8\x07\x58\x47\x2c\xa5\xed\x87\xbb\xd8\x50\x40\x53\xde\xe4\x45\x19\xe5\x4d\xa3\xed\x5a\x01\x07\x6d\x8c\x76\x49\x95\xa7\xc7\xa7\x04\xdf\xc2\x21\x81\x40\x8c\x82\x32\x1d\xa5\x45\xbb\x81\x73\xe7\xa9\x4b\x8b\xc5\x2b\x5b\xa5\xe0\xbb\xf1\x12\x65\x84\xc8\x3a\x0a\x39\x2a\x0b\x6a\xb1\x09\x01\x83\xc0\x27\x99\x9d\x17\xcc\xee\x7b\xe4\x91\x1d\x0a\xdd\x52\xab\x79\xd7\x89\x17\xe0\x20\x73\xf8\x42\xc7\x70\x65\x93\xac\x26\x6f\x3c\x9d\xc8\x57\x88\xad\xed\xba\xb9\x31\xa7\xf5\x53\xfc\xd2\xa8\x36\xe1\xc8\x3c\x98\x0e\xca\x43\x06\xea\x9a\x26\x8b\xab\xfb\x6b\x10\xe8\x55\x45\xdc\x9a\x4f\xc8\x28\x4a\x30\xe1\xc1\x27\x52\x91\x4f\x74\x6f\xc2\xef\xd9\x41\x0d\x3d\xb4\x4f\x5d\x0b\x07\x3c\xb4\xe3\xa2\xa1\x97\x76\x50\xf4\x0b\xbc\xb4\x63\x24\x8d\x7d\xb0\xfd\x50\xbf\xc0\x0d\x7b\x6a\xd0\x63\xb9\x76\x0a\xf1\x13\x05\xa6\xa4\xdb\x22\x1c\xdb\x17\xb8\x63\x0f\xce\xc2\x5f\x22\xe0\x4e\xf5\xc4\xa3\x24\x40\xee\x5d\x3a\xe2\xa2\xba\xbe\x9e\xcd\xdb\x66\xdf\xb1\xcf\x33\x9e\xbb\x60\x2e\xcb\xbf\xd3\x4b\xfc\x16\x10\x36\x0e\x00\x51\xc8\x87\x24\xaa\x81\xd2\x53\xbd\x0b\x94\x44\xdc\xcc\x0e\x83\xec\x9f\x52\x8e\xdc\xd2\xbe\xa5\x93\xd8\xb1\xe5\xcc\xa4\x08\x6d\x74\xfb\x8c\xbf\xe0\xad\x0d\x7d\x35\xab\x57\x51\xe8\x92\x53\x14\x8c\x3f\x0d\xe1\xb6\x2b\xc1\x36\x4e\xee\xb1\x45\x7c\xf5\xba\x26\x10\x96\xc1\x11\x18\x11\x43\x05\xf9\xd4\x83\x84\x5e\x99\x04\x61\xb8\xf4\x10\x8a\x20\x2c\xfa\xe7\xaf\xdf\xca\x4f\x18\xbc\x6b\x94\x24\x58\xbc\xf3\x75\x7a\x62\x66\xf4\xb3\x29\x73\x7a\xcb\x13\xcf\x07\x51\x8c\xd8\xfb\x74\xf8\xe5\x20\x8a\x36\xbf\xc6\xc5\x11\xff\x75\xa9\x24\x03\xfb\x62\x17\x6d\xf9\x78\x58\x8c\x90\x23\xa8\xbe\xc4\x87\x4b\xd7\x8b\x1f\xfe\xe3\xd2\x72\x18\x75\x3c\x0d\x46\xee\x31\x62\xd6\x03\x44\x77\xf7\xbb\xb4\xab\x58\xdb\xaa\x04\x3a\x68\x10\xd4\xe1\x23\x20\x83\x76\xf0\x62\x5b\x38\xd6\xf0\x46\x09\x91\x19\xba\x55\xea\xf0\xc3\x6e\x41\xbd\x38\x5d\xeb\x0b\x2c\xb3\xa8\xdf\x51\x69\xd9\x62\x4b\x9b\xed\x74\xdd\x2c\x21\x45\xc2\x65\x51\x9e\xe2\xd8\xf1\x93\x35\x84\x08\x8e\xb6\xc5\x12\x87\x23\xfe\x6a\x43\xf5\x7f\x92\x10\xea\x52\x3d\x49\x0f\xce\x29\x9c\x04\x89\x5a\xfc\x52\x2d\x0f\x47\x6a\x8b\x22\x17\x95\xf1\x21\x9a\x4d\xb7\xed\x7d\x4e\x28\x1f\x92\xc9\x22\x74\x65\x61\x31\x85\xc3\x64\xc8\xd8\x83\x0e\x44\x8c\xd8\x52\xc7\xcc\xd7\x72\xf6\xad\x86\xf0\xe2\xbf\x21\x59\xe8\xeb\x26\x17\xf2\xe5\x72\x58\x02\x16\x31\xee\x8d\x7c\xc9\x4b\x7c\x43\x6a\x1a\x87\x2d\xa0\xbc\xc7\xc3\xb9\x0e\xe0\x1d\x02\xfe\x52\xfe\xc7\xff\xfe\x7f\xac\x94\x6d\x68\x87\x45\x8c\x11\x0d\xd3\xe9\x69\xc5\xfc\xec\xfc\xf3\x3a\x8f\xc1\xd7\x7d\x47\x86\xd7\x82\xae\x41\x25\x15\x4f\x34\x23\x7a\xe7\x97\x28\x6c\xad\xb0\x85\xdf\x60\xc1\x80\x7e\xfc\x92\xc1\xc5\xe7\x68\xa9\x89\x08\xe3\xa1\xe2\x9b\x88\x09\x60\xd9\x22\x34\xcb\x6b\xe3\x86\x30\x53\xbb\x82\xb5\x12\xba\x8b\x23\x62\x14\x6b\x0a\x9c\x7a\x9a\xc8\xe5\x16\xfe\x3f\x6a\x27\x54\x86\x4a\xf5\x77\x30\xfc\x21\xfd\x67\xba\xd5\xba\xc8\x89\xef\x5c\x37\x89\x79\xa2\xe3\xbd\xae\x8f\xe9\x9d\xd9\x75\x49\x1f\x44\xc1\xfe\x63\xdf\x49\xf2\xbe\x69\x97\x1f\x7c\xf4\x5d\xa7\xe0\x8b\x22\xef\xe2\xf8\xcd\x30\x2e\x7e\xdd\x01\x40\x1f\xd3\xce\xd7\x68\xf4\xf8\x92\x57\xdd\xf8\x01\x39\x51\x7e\x48\x84\x74\xd8\xee\x99\xd3\xf8\xcc\x9c\xd1\x24\x78\xa7\xda\x15\x44\x2f\x7b\xc2\x47\xcc\x34\xc9\x26\x42\x17\x89\x5e\x78\xb3\x4f\x13\x7f\x70\x7c\x55\x7e\x8b\x90\x55\x79\x72\x55\xf9\x1a\x09\xc4\x13\x91\x80\xd8\xc1\xf0\xe5\xe2\xbf\x09\x22\x36\xaa\xf2\x92\x53\xf5\x4b\xd3\x07\x51\x21\xa3\xf7\x37\x02\xe7\x39\x44\x8b\x8d\x1e\xd5\xe0\xca\x81\x95\x09\x5b\x87\x51\x0c\x61\xa0\x10\xa9\xb7\x41\x47\x1e\xd9\x0f\xd6\xb8\xdf\xd2\x10\x64\xb8\x35\x60\x1b\xba\x5a\xe4\x6a\xd0\x09\x22\xd8\xd6\x91\xc5\x6f\x37\xf3\xcd\x04\xac\x63\x25\x86\x10\xbe\x18\x9e\xb6\x9a\x13\x13\xf9\x49\xe0\x23\xc7\x52\x3d\x11\xe7\x12\x51\x41\x92\xd3\x35\x1d\xae\xd6\xd1\x11\x19\x15\xb1\x18\xfc\xd3\x01\xa7\xe2\x71\xb4\xe7\xaf\x77\x2b\x1e\xd7\x71\xbb\x63\xf1\xef\xbd\x83\x9f\x8e\xe4\x18\xea\x01\x07\x21\x1d\x5d\xd6\x54\x6c\xc7\xdf\x73\x23\x1e\x83\x06\x9c\x26\x42\x81\xab\xe9\x4b\x6f\x5e\xf4\xa2\x9d\x28\xf5\x1f\xbb\x67\x8f\x63\x1c\x0f\x7b\x3d\x0a\x42\x18\x75\xfa\xeb\x82\x11\x1e\xbc\xb0\x8e\x78\xc5\xf0\x5c\x3c\x8a\x28\x82\x01\xde\x5a\x24\x8e\x2f\x12\x76\xd8\x69\x42\x83\x0b\x50\xbd\x4e\x91\xc8\x22\xa2\xde\xbf\x3b\xbc\xc8\x81\x1b\xa6\xdb\xe2\x8c\x0c\x7b\xc9\x3c\xc6\xf9\xb3\x84\x9d\xbc\xb5\x44\x28\x66\xc4\x46\x0a\xff\x48\xec\x91\xe9\x3b\x19\x3e\x37\xef\x4d\x5d\x08\xa1\xc4\xf0\xe7\x95\x30\x7c\xee\x32\x7c\xc9\xc1\xcc\x33\x5a\x8f\x39\x08\x94\x82\xdc\x41\x4c\x6d\xe5\xda\x33\xbd\xb4\xb4\xb0\x63\x83\x74\xcf\xf2\x60\x32\xae\xd7\xb2\x1e\x48\x7e\x43\x7a\x9b\xcc\x19\x96\x8f\xdb\x88\xdd\x37\x2c\xd5\x5d\x8b\x9d\xe1\xc3\xa5\x13\xd6\x16\x25\x62\x38\x9c\xc8\x97\xcb\xd1\xf3\xa9\xc6\x29\xf7\x9d\x90\x18\xd4\x70\xb9\x0a\x52\x75\xb7\x53\x5c\xb3\xf7\x38\x4d\xca\xcd\x96\xa7\x30\x4f\x9d\x86\x94\x45\x7b\xd9\x05\x45\x0c\xd6\x5e\xe1\x54\xf1\xc3\xb0\x2e\x79\x71\x48\x77\xcd\xb7\xcd\x3e\x91\x2d\x73\x06\x2f\x12\x89\x99\xac\x29\x71\x97\x24\x8d\x05\x12\x0d\x68\x95\x4a\xa8\x0d\x0d\x79\x34\xce\x1f\x44\x67\xc0\x8e\xe1\xe2\x32\x58\x08\x74\x96\xa7\xd5\x5f\xa9\x96\x6b\xa9\x38\x5c\x81\xd4\x0a\x79\xdc\x37\x0b\xb1\x3c\x6e\x37\x84\xf8\x92\x86\xf1\xc0\xf4\xb0\xb9\x23\xd3\x09\x22\x42\xa6\x2a\x2b\x25\x14\xa0\xb4\xa2\xaf\x06\x5b\x3f\xdc\xc3\x7d\xbe\x1f\x21\xc4\x97\xf4\x83\x5b\x81\xe9\xbd\x9c\xcf\x6e\xe9\x0f\x1d\xa8\x35\xe0\x67\x64\x2e\x31\xec\xa2\x8f\x27\x70\x15\xec\xd3\x30\xd1\x29\x06\x72\x07\xab\xe0\xc7\x1b\xa6\xe4\xc8\x55\xfa\x84\x68\x20\x96\x54\x93\xb1\xc0\xee\x5e\xe2\xf0\x71\xe0\x92\x0e\x34\xb0\x91\xf2\x60\x93\xbb\x8e\xf4\xcb\x8b\x72\x90\xad\xce\x54\x9e\x93\xcc\xbb\x37\x5c\x81\xb3\x28\x58\x22\xd7\x85\x5b\x06\x04\x3b\x9b\xc9\x42\xde\x83\x70\x6b\x9c\x59\x5d\xd0\xea\xb8\x32\xc7\xaa\x01\xe5\x58\xf4\x18\xce\x78\x67\x28\x95\x05\x0a\x6a\x66\xca\x47\x26\xab\x3a\x03\x0e\x40\x6d\xf2\x9b\xc8\x44\x0a\x16\xdd\x9b\xf8\x89\xe5\x5b\xce\x34\xe3\xae\xf8\x5d\x5b\x1e\x59\x70\x04\x73\xf0\x5c\x33\x0b\x97\xfa\x98\x40\x3c\xd9\x2d\x5b\xb8\x7f\xd8\x5c\x33\xb3\x08\x48\x01\x15\xfe\xe0\x46\xe9\x5e\xf6\xf4\xdc\x00\x37\xee\x54\xd1\x83\xdb\x98\xc2\x57\x74\x00\x6c\xe3\xf6\x1e\x80\x2d\x88\x47\x20\x75\x23\x60\x01\xb7\x75\x44\x9f\xe4\xfc\xf2\x8e\x80\x6f\x7c\x61\x47\x8e\xac\x17\x1a\xa0\xbc\x28\x26\xd7\xff\x6d\xfd\x1b\x1c\x73\x40\x9c\x51\x04\xfc\x01\xc1\x07\x96\x42\x01\xd1\x07\xc6\x82\x56\x2d\xcc\x52\xd4\x78\x51\xb7\x33\x5f\x55\x4d\x53\x88\x73\x6b\xdd\x87\x06\x8e\x71\x18\x17\xb6\xad\xeb\xdb\x1b\x15\x49\x78\x70\x71\xac\x19\x6f\xd7\x24\x87\x2f\x5c\x9b\xcb\xab\x08\xef\x81\xf6\x0f\x89\x7b\x15\x92\x97\xb2\x7d\x27\xa2\xa3\x92\xab\x43\xc4\xa5\xf7\x01\xe9\xd3\x61\x80\xfa\x5b\x1f\x07\x88\x1f\x45\x18\xbe\x8e\xd1\x49\x0c\xb9\xa5\xc9\x72\xf6\x16\x67\xa2\xf6\x5c\xcc\x58\x6f\x08\x07\x1b\x3c\xc4\xbc\xe0\x38\xd1\x4d\x5d\x89\xe5\xd0\x99\x7c\xd1\xd8\x13\x8c\x29\xdb\x4a\xe4\x8c\x17\xfc\x43\x62\x77\x6a\x0a\xc7\xee\x4c\xfa\xa6\x87\x40\x71\xc5\x7f\x7f\x48\xef\x17\x89\x1f\x3a\xb4\xb5\xac\x18\x53\x29\x41\xbe\x83\xfc\x20\x92\x3d\xbc\x09\x5a\x8b\xcd\xef\x6b\x40\x37\xa1\x13\xde\x05\xdd\xd6\x4e\xa2\xd2\x5d\x37\xd5\x62\xc6\x37\xcd\xa9\xde\xb3\xbb\xe7\xf8\x99\x83\xf0\x0b\x79\x05\xbf\x90\x27\x1a\xc3\xa3\x20\x21\x9a\x90\x30\x63\xeb\x02\xca\x46\xc9\xf1\xae\xe8\xd3\x25\x14\x56\x94\xc4\x91\x76\xa2\x84\x7c\x31\x6a\xc5\x6e\x04\xc2\x34\xb3\x52\xf4\x29\x66\xaf\x18\xd5\x1e\x07\x15\x0d\xb3\xc4\xc8\x33\x4a\xd2\xa7\x41\xe3\x91\x88\x3e\x36\x4c\x5b\x37\x4b\x7e\xc0\xc2\x9e\x9e\x0e\x86\xa7\x82\x75\x5c\xa7\x19\xac\x47\x55\xc0\x31\x36\x4c\xc1\x45\x61\x9f\x77\x71\x69\xac\xcf\x30\x41\x83\x0a\x8c\x00\xe9\xa0\x9d\x2f\x56\xea\x3f\x35\x41\x48\x76\x5e\x76\xc4\x24\x87\xe6\x29\x48\x79\xbe\x35\xb5\xc7\x5a\x27\x61\xf8\x61\x7e\xbc\x8d\x1b\xe4\xb2\x03\x08\x7b\x1b\x21\xee\x6a\xa3\x01\xc3\xd8\x1b\xc4\xc5\x58\x4d\xcf\xb1\x1c\xbb\x5b\x0b\x05\x5b\x1c\x87\xa4\xd0\xb8\xae\x5a\x52\xc4\x91\x5b\xf6\x3a\x5f\xb3\xee\x9a\x6a\x41\x13\x3c\xe5\xd7\x79\x21\x22\x87\x77\x9a\xde\x64\x5b\xf6\x17\xd5\x31\xe8\xa5\x87\x70\xd5\x7c\x7d\x57\xa1\x52\x63\xdb\x3e\xea\xcd\xa0\x93\x11\xcf\x33\x90\x3b\x6a\x18\x74\x71\xb2\x8a\xaf\xef\x24\x36\xcd\x7a\xe9\x5e\xc3\x9d\xea\xe4\x0d\x02\xf3\xb6\x85\x9e\x30\xd7\x6c\x7f\xf7\xd2\x4c\xa8\xee\xa8\xf2\x50\xaf\x6f\xad\xf3\x2b\x86\xc1\xcf\x62\x2f\x17\xbe\xfb\x1c\x96\xbc\x9d\x33\xe3\xe6\x7d\xba\x5c\x98\xff\x60\xa4\x5d\x9c\x2e\x7e\x1b\x82\xd1\x21\xd6\x2b\x4c\x55\x7f\xa8\x6f\x6d\xd9\xdd\xd4\x8b\x0c\x6f\x3a\x77\x2b\xbd\xc0\x7e\x57\xca\xf5\xc6\x83\x19\xa5\x3d\xc9\x35\xf6\x5e\x89\xab\xde\xee\x81\xbc\x5c\xf1\x70\x41\xe9\xb0\x44\xa7\x6d\xfc\x31\x58\x3b\x4a\x9b\x90\xca\xd8\x7a\x74\x6b\x43\x83\xb1\x04\x7c\x3d\xc0\x6d\x8b\xae\xf4\xe5\x17\x8d\x20\x30\x9e\x08\x87\xc1\x84\xa2\x4c\x0c\x2c\x2f\x7c\x68\x89\x11\xf7\x90\x0d\x61\x38\xd0\x3c\x5b\xf9\xa8\xf5\x9c\x6e\xda\xf6\x66\xb7\x5e\x69\x1e\x18\x50\xd8\xee\x2d\x33\xf4\x20\xea\xc5\xdd\x63\x0c\xf7\x52\x84\xfb\xa3\x86\xd8\x36\x1c\x67\x31\x84\xff\xfb\x05\xbf\x43\xde\x26\x6f\x61\x64\xcb\xa6\x6d\x68\x7a\x24\xce\x93\xbe\x8f\xf1\xd2\xd2\xba\x89\x02\xd0\xc3\xdf\x64\x3b\x8d\xcd\x65\x65\xce\x90\x4c\x32\x12\x07\xea\xf2\xa5\x20\x69\x58\x19\xd6\xae\x2e\x54\x27\x0f\xd1\xc3\x4a\x1d\x5b\x46\x50\x52\xcb\x34\x73\x76\xfa\x50\x57\x64\x00\x9f\x6b\x4a\x00\x8b\xab\x2c\x0e\x9e\x44\xe8\xda\x6d\x33\x1e\x2a\xa2\xbc\x48\x72\xfa\x06\xc9\xe9\x15\x27\x8f\x5b\xb0\x5e\xb9\x62\x83\x4e\x1d\x2a\xc7\x01\x35\x86\x65\x5e\x70\xdc\x8d\x21\xbc\x61\x6e\x55\xe6\xdb\x11\xde\x5e\x51\xe2\x08\x6b\x80\x1c\x23\x00\xb0\x87\xb1\x10\x96\xaa\x0a\x1c\x1e\xc3\x12\xaf\x29\xe9\x10\x34\x2c\x43\x86\xf0\x35\x4b\xbc\x07\x4a\xa8\xe8\x31\xec\x95\x5e\x42\x8d\x7a\xd5\xcc\xff\x56\x2e\xfa\xce\xa0\xcf\xe5\x67\x00\x35\x6f\x9a\x9e\x1f\x80\xde\xb2\xd4\x08\x8b\x3d\x41\xd3\x73\x4b\x67\xa9\x71\xf1\x71\x84\x29\x81\x1e\xa3\x4a\xa0\x0f\xe3\x6a\xc3\xb1\x3a\xa9\xad\x76\xb7\xe8\x77\xb4\x40\x5d\x83\x67\x97\x1c\xe3\xf3\xd2\x65\x8c\x5a\x1c\x95\x0c\x29\x74\x58\x78\xaa\xe5\x05\xc9\x42\xe5\x64\xd3\x27\x9c\x73\x6b\xdb\xa3\xb2\x61\xe3\xa3\xe2\x53\x2b\x05\xcf\x3d\xf1\x86\x36\xdf\x2d\x3e\x96\x3d\x3b\x8e\xad\x32\x58\x1e\x84\x75\x5d\x18\x58\xfa\x1c\x60\xe9\x2b\x02\x4b\xaf\xa0\x69\x9a\xa8\x95\x36\x9d\x4d\xd9\xe7\xb0\x20\x09\x6a\x79\x79\x42\x33\xc0\xc9\x45\x3e\x55\x0a\x1a\xa8\x4c\x0f\x0b\xba\x0a\x59\x7e\x0b\x6a\x38\x87\x92\x4a\xcf\x0f\xc7\x0e\x64\xaa\x36\x0e\xe1\x24\xbb\xdf\xe2\x66\x21\xaf\x20\x71\x50\x27\xea\xc3\x3b\x49\x09\x60\x71\x20\x22\x58\xe3\x91\x30\x96\xc0\xab\x06\x04\x7e\x15\x33\x4a\xe1\x60\x1e\x58\x18\x17\xc1\x5d\xb0\xf7\xf9\x14\xe0\x36\x97\xc5\x74\x10\xd2\x9a\x37\x40\x6b\x79\x08\xa7\x8d\x76\x82\x4a\x61\x2b\x72\x1a\x15\x7f\x0a\x7d\x13\x80\x68\x0e\x57\xf1\x70\xa7\xb0\x17\x01\x38\x4d\x61\xef\x7c\xcf\x5f\xc1\x44\x08\x87\xe8\x2d\x29\x26\x36\xe2\x25\x47\xfb\xb6\xbc\x28\x2e\x91\xa4\x99\xdc\x82\x53\xaf\xa6\x99\x83\xb3\x8b\xaf\xa6\xe9\xfa\xe2\xf7\xf0\x69\xe8\x4b\xb6\xab\x7e\x17\xbe\x06\xff\x36\xf4\x9d\xb8\x6a\x30\xca\x60\x60\xb1\x3d\x99\x0d\xf3\x6e\x27\xeb\x99\xd6\x11\xc6\xf1\xd1\x91\x41\xce\x37\x93\xaa\xc1\x0b\x96\x6a\x5a\x25\x90\x12\xda\x56\xae\xeb\xd6\x61\x69\x1c\xc2\xec\x54\x33\xa8\xe1\x0d\x0e\x68\x01\x96\xc7\xaf\x88\x43\x49\xce\xfa\x09\xb1\x8f\x87\x8a\x19\xf6\x8b\xbb\xda\x1e\x9a\x32\x32\x38\xf4\xb6\x9b\x45\x93\xff\xc2\xe7\xdd\x3c\x2e\x02\x4a\x81\xe9\x45\x4c\x23\x55\x97\x85\x44\x31\x0c\x46\x9f\x0f\x88\x84\xc1\x95\x4e\x22\x50\x18\x24\x70\x86\x4c\x33\x3f\x68\xeb\x34\x5e\x46\x38\xb8\x8a\x65\x1b\xfd\x4c\xcd\x54\x47\x35\x04\x65\xa0\x99\x14\xc2\x66\xb9\x5b\xdc\x9a\xc3\x7a\x24\x8a\x71\x66\x33\x76\x57\x5d\x07\x83\x1e\x4f\xe2\xdd\x2b\x87\x0d\xed\xee\xed\x3d\x40\xdf\x7a\xb3\x18\x23\x78\xfa\x49\xd0\xff\x94\x57\x51\xc3\x0e\xf8\xb7\x51\x0f\xb4\xff\x4f\x79\x1b\x75\xa8\x98\xef\xe2\xae\x4c\x18\xcb\x1c\x0f\x1f\x48\x39\x60\x1d\xc9\x8f\x47\xce\xe0\x6b\x16\xb3\xc8\xe8\xde\x33\x62\x95\x28\x11\xb2\x40\x24\xc4\x16\x20\x48\xf2\xb7\x06\x76\x61\x20\x4a\x3f\x70\xbf\x61\x7b\x81\x43\x61\xd4\x9a\x94\x18\xbf\xbc\x10\x77\x41\x52\xc6\x97\x8d\x92\xae\xfa\xaa\xd4\x22\xb7\xab\xf2\x71\x06\xa5\x95\xde\xf0\x59\xda\x30\x10\x31\x74\x91\xca\xac\x06\x5d\x1e\xb0\xab\xa8\xdb\x52\x4a\x42\x9d\x98\xb3\xa2\x72\x44\xcd\x0a\x7a\x2f\x29\x61\x94\x4f\x49\x91\x97\x07\xf1\xa0\xb6\x7c\x69\xfa\xd8\x5e\x27\xe8\xa4\x56\x33\xe8\x5c\x50\x2b\xa0\xa6\x39\x6e\xd0\x9b\xa1\x1d\xb8\xa4\xc2\x07\x8f\x8d\xd6\xbb\x5e\x53\xb6\x12\xbb\xf3\x82\x63\x77\x4a\x0a\x74\x40\x05\xac\x49\x59\xe5\x73\xfa\x36\x4c\x0f\x1e\x23\x44\xae\x7b\x86\x70\x02\x26\xb0\xa6\xc9\x5b\x0e\x1d\xfa\x83\x46\x52\x0a\x1e\x25\x64\x7f\x39\x79\xe2\x68\xbb\xe6\xfe\x72\xac\x79\xdc\xc4\xb0\x32\x9b\x65\x86\x1c\xef\x90\xe1\x5e\x9a\xd8\xcc\x52\x0c\x93\xe5\xdd\x1c\x45\x26\xcb\x07\x1a\xbf\x0c\x72\x81\x3a\x66\x3e\x67\xcb\xb8\x00\xa4\xb0\x37\xdc\xfd\x88\xf2\xbe\x6f\xab\xf9\x8e\xaf\x77\xd5\x8c\x85\x17\xa5\xd8\xcc\xb8\xbc\x11\x6c\xb7\x33\x0f\x9b\x4b\xfd\x3a\x0c\xab\x2f\xe1\xd9\xdb\x71\x03\x38\x89\xa1\x66\xdd\x92\x08\x6a\x56\x05\x6e\x47\x1c\x80\xdc\x99\x46\x10\x1b\xde\x71\xb2\x2e\xe7\xe5\x49\xbc\xb5\x48\x2f\x8f\x35\xa7\xdb\xf4\x5b\x7b\x29\xe0\xf2\xec\xea\xe2\x16\x5a\x62\x50\xa5\x09\x40\x06\x84\xc1\x59\x4a\x1c\xc8\x0a\x28\x44\x6d\x87\xd4\xd7\x40\x8f\xf5\xb0\x3e\x12\x62\xeb\xa6\xe1\x6e\xdb\xf6\xe5\x19\x29\xda\x23\x39\x76\x15\x5c\x03\xa4\xcc\x2c\x3d\xdb\xad\xfb\x8a\x8d\xd9\xac\x35\x35\xa8\x9a\x97\x69\x57\x6e\xf3\xd6\x22\xd9\x22\x6e\x53\xfa\xe0\xe8\xc1\x2c\x5a\x7d\x59\x2f\x2f\x4f\xca\x23\xa0\x57\x6f\x2e\xe9\x73\xd1\xde\xc8\x7d\xae\x8e\xf4\x63\xb5\x65\x30\x7d\x3b\x9c\x07\x4c\x29\x80\xfd\x33\x52\x6c\xa9\xf0\xc5\x5f\xd9\x7e\xaa\x16\x8e\x60\x2e\x8e\xcf\xa0\x77\xa0\xa4\x70\xf1\x69\xd3\x88\x34\x65\x92\x9f\xef\x04\x4d\x47\x13\x49\x7e\xc6\x40\xf8\xd1\x6c\x36\xb7\xdd\x1a\x02\xc3\x90\x38\x43\xf1\x4c\x5f\x56\x55\x4c\x8f\x44\x95\x18\x3a\x90\x58\x3c\x6b\x1b\x4a\x94\x71\x91\xbb\xbc\x14\x66\x11\x33\x0b\x77\xae\xc1\x13\xdb\x5f\x66\xc2\x14\x56\x16\x48\x19\xb7\x0d\x7a\x32\x3a\x47\x5c\x22\x82\xcc\x84\xbf\xda\x2b\x44\x71\xd5\xfe\xd5\xa9\x51\x89\xe8\x3d\xa2\x11\x5e\x27\x4c\x83\x6e\x31\x07\x0a\x6a\x1f\xec\xf7\x71\xc5\x77\x6d\xfb\xa2\x8b\x33\x1d\x98\xbb\x4e\x53\x1d\x58\x7c\xab\xa6\xb0\xf9\x76\xeb\xb6\x8d\xe0\xa1\x29\x90\x6d\x00\xf2\x49\x18\x4e\x00\x41\x8b\xa0\x1b\xd4\x23\xee\x83\x21\x10\x7b\x11\x2a\xc0\x70\xeb\xd1\xe4\xe6\xfa\x9a\x63\xaa\x71\x64\x50\x0d\x88\x83\x10\x6b\x67\x6c\x8f\x6f\x25\xc5\x29\x36\x63\xa5\x1c\x94\x5c\x3c\x26\x7b\xa3\xf8\x1d\x12\xf9\x54\x61\xe0\xed\xce\x3d\xee\xfe\x6e\x57\xcb\x79\x29\xc8\xd2\x86\x38\x2b\x6c\x04\xd2\x4b\xdb\x34\xbd\xbd\xdf\x11\x88\x2e\xef\x28\x99\xf6\xb4\x7e\xe5\x10\xcc\x17\x76\x8b\x4c\x9e\x1a\x08\xca\xe0\xba\x70\x01\xaf\x8a\x71\x21\xea\xf7\xb8\x04\xf5\xfb\x00\xb8\xd8\x97\xd8\xc6\x7f\x89\x5f\xc2\xa4\x5d\x8f\xd9\x5a\x55\xa9\xd1\x06\x2c\x69\x43\xba\x09\x71\x50\xcc\x3d\x61\x9c\xda\x15\xe3\x24\x69\x10\x64\x28\xbd\xf8\xd4\x50\x5e\xf0\xa9\xa1\xec\xe3\x53\xb5\x63\x83\x1e\x74\xdd\xda\x26\xe2\xf2\xf2\x4d\x3c\xdb\x3e\x37\x78\x1f\x8a\xcd\xde\xee\x71\x88\x60\x8e\x54\x78\x2f\x65\x5f\xd1\x47\x41\x09\xc5\x66\x88\x3f\x4d\x1d\xd6\xd1\xfd\xb6\xae\xfa\xf2\xfb\x7b\xb0\x00\xb8\xd7\x57\xc5\xfc\xde\xa3\x70\xdd\x54\x70\x0d\x09\x16\x4e\xb5\x38\x80\x1e\x77\x78\x8f\x9e\xb0\x4d\xc5\xcf\xbe\x6a\x4b\xdb\xdf\x4f\x82\x57\x65\x47\x24\xed\xb7\x01\x47\xd0\xe1\x16\x60\x1d\x63\x3f\xa3\x36\xc8\xc8\x48\x5e\xe8\xe5\xd1\x4d\xb6\x33\x7d\x67\xd5\x3c\x47\xb2\xef\xa1\x84\x37\xb6\x70\xc7\xea\x71\x61\xfd\x43\xb4\xe2\xd7\x35\x3c\x81\xac\x88\x3d\x0c\x0e\x3d\xdb\xe8\x0d\x71\x28\xd8\xf4\x09\x71\x2d\x80\xb1\x3b\xf5\xc5\x19\x0f\x38\xd4\x58\x0c\x07\x0c\x17\xb8\xea\xef\xa5\x44\xa8\x0c\x86\x7d\x46\x87\xe1\xcd\x6e\x83\x07\x44\x2f\x39\xa0\x1e\x9e\x80\x1d\x75\x6b\x4b\x92\x7e\x1e\xf6\x08\x09\x8e\x09\x89\x77\x2b\xbb\xf6\x64\x6b\xbd\xa8\x13\x0f\x58\x38\xf8\xa4\x6f\x70\x33\xe7\xb0\x43\x9b\x90\x17\x4b\xa3\x42\xef\x38\xcf\x89\xb1\x13\x85\xcd\x31\xde\x91\x8a\x39\x9e\x4e\x92\xca\x6f\xbb\x72\x47\x95\x97\xf5\x12\x64\xfa\x27\xfe\x49\xe2\x0e\xff\x74\x08\x12\x8f\x52\x28\xbc\xd8\x27\xe5\xa9\xf9\x98\x42\xef\x45\x29\x8e\x16\xee\x94\x4b\x82\x99\x09\x77\x81\x33\xfc\x9e\xee\xa0\xc2\x8e\x8f\x26\x71\xbe\xcd\x22\xad\xa9\x26\x98\xbb\x57\x3f\xbf\x39\x1f\x40\x4e\x30\x03\xcd\x99\x60\x1e\x9a\x33\xc1\x2a\xe4\xd2\xd9\x0d\x01\x17\xcd\xd3\x23\x10\xc8\x83\x03\x10\x82\xf6\x06\x26\xa0\xe4\xc9\x8a\x94\xf4\x0b\xa2\x2c\xf1\x97\x12\xa2\x97\xdf\x31\x50\xf0\xbc\x98\x40\xd9\xeb\x62\xa3\x56\xeb\xb0\xcd\x5a\x6e\x1a\x3d\xd7\x11\x4b\xa7\x80\xeb\x88\xa7\xc0\x64\xf7\x0c\x9a\xfd\xc2\x2a\x8b\x39\x23\xf0\x17\x9a\x64\xa0\x06\xe2\x6b\x36\x08\xad\xda\x75\x93\x08\xb7\x72\xd2\xeb\x09\x7e\x45\x53\xa7\xcb\x8f\xd7\x8b\xc0\xfa\x15\xc8\x6f\xa0\x4b\x09\x03\x5e\x2e\x1c\x62\x4c\x67\xfc\xf2\xc4\x3f\xbc\x06\xf5\xf2\x60\x30\xeb\xea\xba\x74\xca\x68\x1d\xcd\x1b\x4a\x8b\x80\x57\x7d\xbf\xed\x2c\x4a\x00\x1e\xfb\x4a\xcf\xe9\xc7\x60\x10\x61\x55\x3a\x92\x51\x4d\xdb\x0a\x17\x04\x01\x5e\x24\x61\x1a\xe3\x06\xad\xbb\x43\x00\xae\xdb\xc3\x90\xc7\x2d\x5b\xc7\x38\x6d\x85\xbc\xd4\xa4\x50\x16\x70\xad\xb3\x0c\x30\xd9\x32\x43\xe9\x2e\xc9\x30\xd8\x25\xcd\xe8\x69\xb6\x68\x25\xc6\x21\xff\xb9\x62\x8b\x13\x97\x13\xae\x3d\x4b\xeb\x88\xf6\x8a\x9d\xf8\x59\xea\xa7\x87\xf7\x8f\x3f\x08\x9a\x2c\x63\xe2\xc1\x88\x18\xa0\xfc\x5c\x2e\x76\xc1\xcd\xe1\xcf\xf2\x5b\x55\xf5\xbe\x9a\xc6\x6c\x9c\x77\x35\x1e\x0b\xb9\x90\x94\x00\x66\x2a\xd0\xa9\x75\x1d\x96\xda\x66\xb1\x7d\xb0\x7d\xd7\x3c\x0e\xb3\x0c\x65\x86\x63\x66\x8f\x25\x3f\xb3\xb5\xf8\x8b\x0d\x6c\xc9\x0c\x36\x94\x78\xc2\x34\x04\x4b\x0b\xec\xf6\x2c\x6f\xa2\xe3\x96\xd5\x6c\x99\x65\x6d\x67\x01\x2c\x8e\x0f\xc1\xb3\xc7\xd2\x07\xc9\xbf\xcb\x52\x34\x79\x2f\xd6\x57\x1f\x06\xaf\x23\x9a\x76\x3f\xb0\xc6\x88\x22\x0a\xdc\x97\x27\x43\xda\xb2\x0e\xe2\x23\xca\xaf\x62\xf4\xdc\x98\x05\xf3\xfe\xd6\x07\xf3\x8e\x9e\x5c\x1f\x3e\x44\xe2\x1e\x86\x40\xad\x6c\x5e\x29\x8f\xce\x0c\x02\xa2\x77\xed\xe2\xc9\xb0\x2c\x6b\x4d\x63\x30\xce\xfc\x17\xab\x58\xc6\x68\x4f\x68\xfc\xaa\xcf\x56\xc8\xef\x60\x7c\x4f\x44\xb5\xf7\x44\x46\xfa\x87\xe0\x5d\x09\xad\x61\x18\xe5\xdd\xd0\x15\x45\x47\x0e\x2b\xd4\xe0\xed\xe3\xfa\x06\xaf\x7a\x04\x2f\x97\x34\xf5\xd7\x74\x6c\x32\x4c\xf4\xaf\x1a\x33\xfc\xab\xbb\xe5\xc2\xb8\xe9\x1c\xd8\xef\x01\x45\xc8\xbc\x4e\x4f\xaa\x27\x12\x44\x19\x91\x07\xdf\x6c\x2e\xe9\x47\xd8\x0d\xcc\x64\xf8\x80\xc7\x78\xb6\x07\xf4\x81\x07\x03\xbe\x0b\xa2\xbb\xc3\xf3\x5c\x32\xaa\x4e\x23\xf3\x4a\x4c\xfd\xef\xdc\x83\x69\xc9\x7b\x0e\xb2\xfd\x21\xc9\x97\x3c\x26\xfa\x3f\xc1\x7b\x86\xe2\x70\x01\x4a\xa5\xcf\x44\x7e\xf2\xd7\xb7\x5c\xf1\xb7\x69\x57\x12\xeb\x44\x78\xe8\x6f\x37\x48\xd8\xd0\x01\x9b\x18\x12\x27\xac\x90\xc0\xcf\x7e\xe2\x67\x81\x9f\x45\x7e\x83\x5f\x7b\xfc\xda\x97\xe5\x47\x29\x0c\xde\x4a\xc5\xe9\x88\xbe\x42\xca\x0d\x7e\xdf\x70\x18\xe5\xfb\xec\x6c\xc6\xed\xe8\x1b\x19\xf6\x03\x41\xa9\xb9\x39\x4d\xb7\x1f\x94\xce\xad\x6a\xaa\x7c\xde\xe7\xcb\xff\x1b\x4d\xc2\x17\xa5\x70\xf3\x9a\x24\x9f\xf7\xc1\x20\xfb\x95\x55\x28\xdf\x94\xca\xfd\xd0\x44\xf9\xa4\xb4\x36\xdf\x67\xbe\x5f\xfa\x85\x54\xdf\x2b\xfd\x22\xf4\x16\x6d\xb3\xe5\x00\xb5\x1f\xdc\x5b\xaa\xfe\xbd\xb9\x53\xca\x33\xdb\x2d\x8e\x4a\xca\xae\xe1\x6b\x7e\x33\x11\x2f\x53\xb3\x83\xec\x2c\xb1\xc0\xd1\x55\xbd\xdd\xb9\x53\xaa\x8f\x5a\x2e\x60\x3e\x2e\x97\x58\xdd\xf3\x23\x52\xf2\xc2\x1e\xcd\x6e\x36\xaf\xf4\x61\xc1\x32\xe5\x23\xc1\xc3\x7f\xfb\x37\x80\xd3\xe7\xbf\xff\x7b\x7a\xf6\xfc\x51\x5a\x7e\xe6\xb8\x84\x5d\xba\xc9\x3f\xe3\x6c\xa0\x50\xf4\xf3\x45\x04\xc8\xce\xbc\xb0\x9f\xd6\xcb\x28\x7d\x9c\x1e\x37\x50\xff\x3f\x00\x00\xff\xff\xbd\xaa\xf5\x67\x6a\xb1\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: 45167, mode: os.FileMode(420), modTime: time.Unix(1447958597, 0)} + info := bindataFileInfo{name: "conf/locale/locale_en-US.ini", size: 45418, mode: os.FileMode(420), modTime: time.Unix(1448004807, 0)} a := &asset{bytes: bytes, info: info} return a, nil } diff --git a/modules/git/repo.go b/modules/git/repo.go index 14ac39a3..39fad97d 100644 --- a/modules/git/repo.go +++ b/modules/git/repo.go @@ -5,6 +5,7 @@ package git import ( + "errors" "path/filepath" ) @@ -21,6 +22,8 @@ func OpenRepository(repoPath string) (*Repository, error) { repoPath, err := filepath.Abs(repoPath) if err != nil { return nil, err + } else if !isDir(repoPath) { + return nil, errors.New("no such file or directory") } return &Repository{Path: repoPath}, nil diff --git a/routers/repo/release.go b/routers/repo/release.go index f06a8319..8fc1cb7d 100644 --- a/routers/repo/release.go +++ b/routers/repo/release.go @@ -27,9 +27,9 @@ func Releases(ctx *middleware.Context) { return } - rels, err := models.GetReleasesByRepoId(ctx.Repo.Repository.ID) + rels, err := models.GetReleasesByRepoID(ctx.Repo.Repository.ID) if err != nil { - ctx.Handle(500, "GetReleasesByRepoId", err) + ctx.Handle(500, "GetReleasesByRepoID", err) return } @@ -212,6 +212,7 @@ func EditRelease(ctx *middleware.Context) { } return } + ctx.Data["ID"] = rel.ID ctx.Data["tag_name"] = rel.TagName ctx.Data["tag_target"] = rel.Target ctx.Data["title"] = rel.Title @@ -257,3 +258,15 @@ func EditReleasePost(ctx *middleware.Context, form auth.EditReleaseForm) { } ctx.Redirect(ctx.Repo.RepoLink + "/releases") } + +func DeleteRelease(ctx *middleware.Context) { + if err := models.DeleteReleaseByID(ctx.QueryInt64("id")); err != nil { + ctx.Flash.Error("DeleteReleaseByID: " + err.Error()) + } else { + ctx.Flash.Success(ctx.Tr("repo.release.deletion_success")) + } + + ctx.JSON(200, map[string]interface{}{ + "redirect": ctx.Repo.RepoLink + "/releases", + }) +} diff --git a/templates/.VERSION b/templates/.VERSION index aa65a45b..8c46b68d 100644 --- a/templates/.VERSION +++ b/templates/.VERSION @@ -1 +1 @@ -0.7.18.1119 Beta \ No newline at end of file +0.7.19.1120 Beta \ No newline at end of file diff --git a/templates/repo/release/list.tmpl b/templates/repo/release/list.tmpl index 8ecf69ae..b8a8dff2 100644 --- a/templates/repo/release/list.tmpl +++ b/templates/repo/release/list.tmpl @@ -3,6 +3,7 @@ {{template "repo/header" .}}
{{template "repo/sidebar" .}} + {{template "base/alert" .}}

{{.i18n.Tr "repo.release.releases"}} {{if .IsRepositoryAdmin}} diff --git a/templates/repo/release/new.tmpl b/templates/repo/release/new.tmpl index 8514b2c8..b966eb6c 100644 --- a/templates/repo/release/new.tmpl +++ b/templates/repo/release/new.tmpl @@ -68,6 +68,9 @@ + + {{$.i18n.Tr "repo.release.delete_release"}} + {{else}}

+ +{{if .PageIsEditRelease}} + +{{end}} {{template "base/footer" .}} \ No newline at end of file -- cgit v1.2.3