From 16feb5b6552d33192c61f7959eafb4ef976acee5 Mon Sep 17 00:00:00 2001 From: Unknwon Date: Sat, 31 Oct 2015 12:04:04 -0400 Subject: minor fix on #1863 --- gogs.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'gogs.go') diff --git a/gogs.go b/gogs.go index 2dbf6eed..b66f70fd 100644 --- a/gogs.go +++ b/gogs.go @@ -17,7 +17,7 @@ import ( "github.com/gogits/gogs/modules/setting" ) -const APP_VER = "0.6.18.1029 Beta" +const APP_VER = "0.6.18.1031 Beta" func init() { runtime.GOMAXPROCS(runtime.NumCPU()) -- cgit v1.2.3 From fad31ca302e50af8fa2296b26606e3fd9469ebfc Mon Sep 17 00:00:00 2001 From: Unknwon Date: Sat, 31 Oct 2015 18:59:07 -0400 Subject: work on #1748 --- gogs.go | 4 ++-- models/action.go | 14 ++++++++------ routers/repo/issue.go | 4 ++-- templates/.VERSION | 2 +- 4 files changed, 13 insertions(+), 11 deletions(-) (limited to 'gogs.go') diff --git a/gogs.go b/gogs.go index b66f70fd..420bb3a6 100644 --- a/gogs.go +++ b/gogs.go @@ -4,7 +4,7 @@ // Use of this source code is governed by a MIT-style // license that can be found in the LICENSE file. -// Gogs(Go Git Service) is a painless self-hosted Git Service written in Go. +// Gogs (Go Git Service) is a painless self-hosted Git Service. package main import ( @@ -17,7 +17,7 @@ import ( "github.com/gogits/gogs/modules/setting" ) -const APP_VER = "0.6.18.1031 Beta" +const APP_VER = "0.6.19.1031 Beta" func init() { runtime.GOMAXPROCS(runtime.NumCPU()) diff --git a/models/action.go b/models/action.go index e38cf593..6e3587e0 100644 --- a/models/action.go +++ b/models/action.go @@ -337,6 +337,14 @@ func CommitRepoAction( return fmt.Errorf("GetOwner: %v", err) } + // Change repository bare status and update last updated time. + if repo.IsBare { + repo.IsBare = false + if err = UpdateRepository(repo, false); err != nil { + return fmt.Errorf("UpdateRepository: %v", err) + } + } + isNewBranch := false opType := COMMIT_REPO // Check it's tag push or branch. @@ -351,12 +359,6 @@ func CommitRepoAction( isNewBranch = true } - // Change repository bare status and update last updated time. - repo.IsBare = false - if err = UpdateRepository(repo, false); err != nil { - return fmt.Errorf("UpdateRepository: %v", err) - } - if err = updateIssuesCommit(u, repo, repoUserName, repoName, commit.Commits); err != nil { log.Error(4, "updateIssuesCommit: %v", err) } diff --git a/routers/repo/issue.go b/routers/repo/issue.go index 58382d18..fb64f6a3 100644 --- a/routers/repo/issue.go +++ b/routers/repo/issue.go @@ -781,8 +781,8 @@ func NewComment(ctx *middleware.Context, form auth.CreateCommentForm) { var comment *models.Comment defer func() { - // Check if issue owner/poster changes the status of issue. - if (ctx.Repo.IsOwner() || (ctx.IsSigned && issue.IsPoster(ctx.User.Id))) && + // Check if issue admin/poster changes the status of issue. + if (ctx.Repo.IsAdmin() || (ctx.IsSigned && issue.IsPoster(ctx.User.Id))) && (form.Status == "reopen" || form.Status == "close") && !(issue.IsPull && issue.HasMerged) { diff --git a/templates/.VERSION b/templates/.VERSION index 9c1af4fa..621edbbe 100644 --- a/templates/.VERSION +++ b/templates/.VERSION @@ -1 +1 @@ -0.6.18.1031 Beta \ No newline at end of file +0.6.19.1031 Beta \ No newline at end of file -- cgit v1.2.3 From cb100c7781699dec7987d349590411917d3dff44 Mon Sep 17 00:00:00 2001 From: Unknwon Date: Sat, 31 Oct 2015 23:18:58 -0400 Subject: work #1705 --- conf/locale/TRANSLATORS | 4 +++- gogs.go | 2 +- models/migrations/migrations.go | 43 +++++++++++++++++++++++++++++++++++++++++ templates/.VERSION | 2 +- 4 files changed, 48 insertions(+), 3 deletions(-) (limited to 'gogs.go') diff --git a/conf/locale/TRANSLATORS b/conf/locale/TRANSLATORS index 7c6eb0ba..8e6cbc2e 100644 --- a/conf/locale/TRANSLATORS +++ b/conf/locale/TRANSLATORS @@ -17,4 +17,6 @@ Luc Stepniewski Miguel de la Cruz Marc Schiller Morten Sørensen -Natan Albuquerque \ No newline at end of file +Natan Albuquerque +Odilon Junior +YJSoft \ No newline at end of file diff --git a/gogs.go b/gogs.go index 420bb3a6..3d46bb95 100644 --- a/gogs.go +++ b/gogs.go @@ -17,7 +17,7 @@ import ( "github.com/gogits/gogs/modules/setting" ) -const APP_VER = "0.6.19.1031 Beta" +const APP_VER = "0.6.20.1031 Beta" func init() { runtime.GOMAXPROCS(runtime.NumCPU()) diff --git a/models/migrations/migrations.go b/models/migrations/migrations.go index c3f7a59b..df1e4a2d 100644 --- a/models/migrations/migrations.go +++ b/models/migrations/migrations.go @@ -11,6 +11,7 @@ import ( "io/ioutil" "os" "path" + "path/filepath" "strings" "time" @@ -66,6 +67,7 @@ var migrations = []Migration{ NewMigration("generate issue-label from issue", issueToIssueLabel), // V6 -> V7:v0.6.4 NewMigration("refactor attachment table", attachmentRefactor), // V7 -> V8:v0.6.4 NewMigration("rename pull request fields", renamePullRequestFields), // V8 -> V9:v0.6.16 + NewMigration("clean up migrate repo info", cleanUpMigrateRepoInfo), // V9 -> V10:v0.6.20 } // Migrate database to current version @@ -653,3 +655,44 @@ func renamePullRequestFields(x *xorm.Engine) (err error) { return sess.Commit() } + +func cleanUpMigrateRepoInfo(x *xorm.Engine) (err error) { + type ( + User struct { + ID int64 `xorm:"pk autoincr"` + LowerName string + } + Repository struct { + ID int64 `xorm:"pk autoincr"` + OwnerID int64 + LowerName string + } + ) + + repos := make([]*Repository, 0, 25) + if err = x.Where("is_mirror=?", false).Find(&repos); err != nil { + return fmt.Errorf("select all non-mirror repositories: %v", err) + } + var user *User + for _, repo := range repos { + user = &User{ID: repo.OwnerID} + has, err := x.Get(user) + if err != nil { + return fmt.Errorf("get owner of repository[%d - %d]: %v", repo.ID, repo.OwnerID, err) + } else if !has { + continue + } + + configPath := filepath.Join(setting.RepoRootPath, user.LowerName, repo.LowerName+".git/config") + cfg, err := ini.Load(configPath) + if err != nil { + return fmt.Errorf("open config file: %v", err) + } + cfg.DeleteSection("remote \"origin\"") + if err = cfg.SaveToIndent(configPath, "\t"); err != nil { + return fmt.Errorf("save config file: %v", err) + } + } + + return nil +} diff --git a/templates/.VERSION b/templates/.VERSION index 621edbbe..51973bc4 100644 --- a/templates/.VERSION +++ b/templates/.VERSION @@ -1 +1 @@ -0.6.19.1031 Beta \ No newline at end of file +0.6.20.1031 Beta \ No newline at end of file -- cgit v1.2.3 From 75aab86a8dcc008f7da5fa76e4637c1839263fc2 Mon Sep 17 00:00:00 2001 From: Unknwon Date: Mon, 2 Nov 2015 14:01:19 -0500 Subject: fix problem with #1879 --- gogs.go | 2 +- models/publickey.go | 2 +- modules/bindata/bindata.go | 438 ++++++++++++++++++++++----------------------- modules/setting/setting.go | 1 + templates/.VERSION | 2 +- 5 files changed, 223 insertions(+), 222 deletions(-) (limited to 'gogs.go') diff --git a/gogs.go b/gogs.go index 3d46bb95..a35b6553 100644 --- a/gogs.go +++ b/gogs.go @@ -17,7 +17,7 @@ import ( "github.com/gogits/gogs/modules/setting" ) -const APP_VER = "0.6.20.1031 Beta" +const APP_VER = "0.6.20.1102 Beta" func init() { runtime.GOMAXPROCS(runtime.NumCPU()) diff --git a/models/publickey.go b/models/publickey.go index 04ae4c42..68e078ac 100644 --- a/models/publickey.go +++ b/models/publickey.go @@ -243,7 +243,7 @@ func CheckPublicKeyString(content string) (_ string, err error) { } keyType := strings.Trim(sshKeygenOutput[len(sshKeygenOutput)-1], " ()") if minimumKeySize := setting.Service.MinimumKeySizes[keyType]; minimumKeySize == 0 { - return "", errors.New("sorry, unrecognized public key type") + return "", fmt.Errorf("unrecognized public key type: %s", keyType) } else if keySize < minimumKeySize { return "", fmt.Errorf("the minimum accepted size of a public key %s is %d", keyType, minimumKeySize) } diff --git a/modules/bindata/bindata.go b/modules/bindata/bindata.go index 51d4cdd1..066c3bce 100644 --- a/modules/bindata/bindata.go +++ b/modules/bindata/bindata.go @@ -284,7 +284,7 @@ func (fi bindataFileInfo) Sys() interface{} { return nil } -var _confAppIni = []byte("\x1f\x8b\x08\x00\x00\x09\x6e\x88\x00\xff\xb4\x7a\x5d\x8f\xe3\x46\x76\xf6\x3d\x7f\x45\x59\x7e\xfd\x7a\x1c\x48\xea\x2f\xcf\x87\xdb\xee\xc4\x6a\x89\x52\x73\x47\x5f\x26\xa5\x19\x8f\x07\x0d\x36\x9b\x2c\x49\x74\x53\xa4\x86\x45\x76\xb7\x8c\x5c\xac\x91\x8b\x00\xb9\x4d\x90\xdc\x04\x41\x72\x11\x04\xd8\x7c\x20\x8b\xdc\xec\x26\xc8\x95\x91\xfb\x99\xff\xb0\xf0\x26\xff\x22\xcf\x39\x45\x4a\x54\x4f\xbb\x91\x05\x92\x5d\xa3\x45\x16\xab\x0e\xeb\x3c\x75\xce\x79\x9e\x2a\xce\x87\x62\x68\xbe\x30\x6d\xc1\x7f\x06\xa3\x8e\xd5\x7d\x25\x26\x67\x96\x23\xba\x56\xdf\x34\x3e\x14\xe3\xbe\xd9\x72\x4c\x31\x68\x3d\x37\x45\xfb\xac\x35\xec\x99\x8e\x18\x0d\x45\x7b\x64\xdb\xa6\x33\x1e\x0d\x3b\xd6\xb0\x27\xda\x53\x67\x32\x1a\xa0\x71\xd8\xb5\x7a\x7a\xa4\xf1\xb9\x68\xad\x56\x22\xf6\x96\x52\x64\x0b\x2f\x13\x6a\x91\xdc\x28\x91\xc4\x42\x5e\xcb\x74\x2d\x56\xde\x1c\x0f\xc2\x2c\x92\x46\x6b\x3c\x76\x87\xad\x81\x29\x4e\x44\x2f\x99\xab\x63\xfc\x15\xbd\x30\x13\x8e\x4c\xaf\x43\x5f\xc2\x52\x7b\xe1\xc5\xe8\x8e\xb6\x70\x26\xd6\x49\x2e\xd2\x3c\x16\x51\xe2\x7b\x51\xb4\x36\xec\xe9\xd0\x9d\x3a\x98\xfd\x89\x98\x87\x19\x7a\x9b\x61\xb6\x90\xa9\xa8\x05\xf2\xba\x56\x17\xb5\x55\x9a\x04\x35\x91\xa0\x21\x93\x2a\x43\x4b\x20\x67\x5e\x1e\xc1\x96\xd2\x7d\xd8\x02\x5c\xa7\x09\xe0\xde\x30\x5e\xa7\x72\x95\xa8\x30\x4b\xd2\xf5\xb9\x61\x8f\x46\x13\x71\x62\x38\x6d\xdb\x1a\x4f\xdc\xc9\xab\x31\x75\xbb\xf4\xd4\x02\x6f\xea\x14\x96\x5a\x43\xc7\x12\xfe\xc2\x4b\x95\xcc\x0c\xba\x71\x01\x95\xed\x98\x18\x28\xd0\xad\x9b\xa4\xbe\x2c\xfc\x8e\xe5\x8d\xd8\x9a\x17\x59\x22\x2e\xa5\x58\xa5\xe1\xb5\x97\x49\xa3\x3b\xb2\xdb\xa6\x3b\xb6\xad\x17\xad\x09\xbd\x66\xe6\x45\x8a\xfc\x1f\x7b\x99\xbf\x10\x34\x7d\xf1\x26\x97\xb9\x14\x91\x8c\xe7\xd9\xa2\x2e\x96\xde\x15\xc3\xe2\x29\x11\x79\x29\x20\xc2\x05\x6c\xab\xf0\x12\xb8\x8e\xa7\xfd\xbe\x6b\x9b\x5f\x4d\x4d\x67\xe2\xe2\xef\xd4\x74\xfb\xe6\xb0\x37\x39\x83\xe5\x83\x7d\xfc\x0f\x9e\xe6\xe1\x39\xec\x0f\xf3\xe5\x25\x10\x4b\x66\xdb\xa9\x85\x52\xe9\x75\xf3\x52\xc9\x6b\x27\x03\x11\xc6\x58\x3f\x38\x72\xbb\x8a\x12\xb4\xd2\x12\x1a\xe6\xd7\xe3\xfe\xc8\xc6\xa4\x5b\x3d\x44\x82\x3b\x9c\x0e\x60\xfd\x70\x7f\xc7\x68\xa8\x54\xfe\xd3\xe6\xd8\x8c\xe5\x38\xd3\x3b\x46\x0e\x76\x8d\x2c\xbd\xdb\x70\x99\x2f\x85\x9f\x2c\x97\x61\xa6\xee\x18\xf1\xfc\x2c\xbc\x0e\xb3\xb5\x98\x49\x19\x18\x5d\xd3\xec\xb8\x83\xd6\xd7\x6e\x7b\x34\x18\x58\x93\xc2\xe0\x63\xf6\xb7\xe9\x05\xcb\x30\xde\xf5\x3a\x57\x32\x7d\x78\x7e\x14\x60\xbb\xd3\x7b\xbc\xff\x3e\x70\x0f\x9a\xb0\xcd\xf1\xe8\x41\x13\x71\x92\x21\xdc\x1f\x36\x32\x1c\x4d\xac\xb6\xf9\xa0\x99\x24\x9d\x7b\x71\xf8\x9d\x97\x85\x48\xb6\x87\x6c\x8d\xec\xde\x7b\x86\x8c\xd7\x4b\x2f\xbd\x0a\x92\x1b\x46\xc8\x8c\x3d\x04\x92\x40\x60\x07\x22\x0a\x31\xee\x32\x95\xde\x15\x02\x20\x93\xb1\x82\x79\xc3\x1c\xb6\x4e\xfb\xa6\x8b\x60\xef\xb8\x7d\x6b\x68\xba\xa7\xb6\xd9\x7a\xbe\x89\x5c\xe3\x35\x80\x45\xd8\x9f\x1b\x63\x7b\x34\x19\xb5\x47\x7d\x3c\x5a\x64\xd9\xca\xe8\x8c\x06\x2d\x6b\x88\x3b\xce\xe2\x45\xa2\x32\x4e\x34\x77\x6a\x53\x97\x8f\x1e\x95\xfd\x3f\x51\xc7\x7b\x7b\x1f\x3d\xd2\xdd\x71\xf3\xd1\xa3\xb3\xc9\x64\xec\x8e\x47\xf6\xe4\x13\xb5\x67\xf0\x4d\xab\xd3\x41\xf2\x1b\x9b\x07\x30\x70\x44\xd1\x8d\xfc\x0c\x15\x3b\xe0\x38\x67\x08\x0c\x2f\xcb\x01\xc4\xcd\x42\xc6\x04\xb5\xf0\xae\xbd\x30\xa2\xc7\x46\xc7\x72\xd8\x0d\xea\x56\x4e\x1d\xd7\xa5\xb1\xc3\xc3\x8a\xa9\x76\x67\x48\x99\x1c\x13\x92\x45\x69\x59\x26\x01\xc0\xec\x76\x19\x80\xa2\x8e\x68\x23\xa5\x61\x7b\x34\x9d\x20\x7e\xfa\xa3\x5e\x25\xa9\x7b\x32\x96\x29\xb2\x5e\xa8\x4c\xae\xd4\x31\x5a\xfe\x9f\xf0\x03\x2c\x4d\xb6\xd8\xcb\x92\xbd\x39\x4a\xe1\x9e\x9f\xab\x2c\x59\xee\x11\x64\x8a\x3b\x34\xb9\x5d\xf8\x32\xcd\x44\xc3\xf7\x4e\xb2\x14\xd5\xa0\x11\xe4\x29\x2f\xf7\xc9\xb3\xa7\x4f\xf6\x17\xfb\xcb\x7d\x25\x1a\x84\xe9\xc9\x72\x4d\x3f\x4d\x79\xeb\x2d\x57\x91\x6c\x22\x77\x8c\xcf\x61\x67\x94\x8a\x59\x9a\x2c\x85\x27\x9a\xab\xd9\xad\x98\x85\x11\x67\x75\x92\x66\x08\x11\x7e\x82\x0a\x2a\x5e\x86\x71\x40\x35\x9b\x5e\x16\xce\x42\x5f\xcf\x95\x32\xff\x51\x90\xc0\x0a\x81\x38\x43\xb4\xc9\x8c\xca\x98\x1e\xcf\x03\x8b\x72\x26\xae\xe4\xfa\x13\xed\x57\xb2\x42\xc0\xa8\x48\xac\xae\x7c\x75\x70\x28\x1a\x00\x8f\xac\xf2\xdb\x1b\x49\x9e\x15\x77\x72\x29\x1a\x71\x82\x61\xea\x7f\x36\x0a\x3d\xcb\x41\xf4\x40\xd1\x45\x20\x95\xd1\x36\xed\x89\x4b\x34\x04\xb8\xab\x10\xee\x95\xaf\x31\x9e\x9b\xaf\xee\xed\x50\x58\xc4\xeb\xa7\xab\x15\xf2\x29\xc2\x5a\x47\x94\x55\x99\x04\x82\xe4\x94\x17\x07\x40\x01\x70\xfb\x1a\x37\x5a\x2f\x74\xaf\x90\x0a\x43\x80\x56\x0a\x35\x80\x45\x9c\x46\xcd\xf2\x56\xfa\x39\x00\x36\x9c\x49\x0b\x49\xec\x72\xbc\x8f\x5b\x54\x8e\x35\x59\x46\x04\x31\x25\xad\x7e\x69\xef\x1b\x6b\x2c\x54\xbe\x22\x58\xcb\x44\xe3\xb6\x6d\x08\xf5\x31\x99\x30\x9e\x6b\x32\xc5\x52\x60\x49\xe2\x46\x94\xcc\xe7\x58\x46\xae\x69\x75\xe1\x7b\x31\x31\x4c\x6d\x91\x2c\xa5\x66\xc1\xa2\x7c\xd7\x8c\x7e\x8b\xd9\x9b\x6a\x00\xe1\x40\x3d\x90\xb1\x81\x97\x79\xa0\x37\x79\x5e\x61\xd2\xe5\x5a\xbd\x89\x98\x4b\x11\x4d\xf3\x54\x2a\x6d\x09\x8d\x61\x26\x8f\xf0\x20\xcc\x3e\x56\x44\xcc\x29\x58\x30\x21\xce\xee\x9c\x96\x54\xc9\x63\x8d\xb3\x91\x43\xa9\x74\x70\xf8\xb4\xb9\x8f\xff\x1f\x1c\x1f\x1d\xed\x3f\x31\x0a\xd6\xa7\x90\x36\x0a\x0a\x4f\x93\x24\x33\xc6\x2d\xc7\x79\xd9\x61\x5c\xba\xf4\xa2\xca\x6b\xe3\x68\x5d\x17\xb2\x64\x78\x9d\x94\x34\xb3\x54\xbe\xc9\xc3\xb4\x70\x11\x25\x27\x9c\xad\x1b\xb3\x3c\x8a\x6a\xc8\xe4\xfe\x86\xdd\x75\xff\xd2\x6c\x39\x7f\x5e\xd3\x5a\x16\x06\x97\x35\x43\x2f\x88\x20\x14\x38\xd5\x9a\xc1\x25\x40\x29\x38\x83\xea\x99\x9f\xa7\xe0\x99\x73\xc3\x1a\x62\x1d\x41\xb0\xfd\x51\xfb\x79\x65\x49\x3e\xf8\x40\xab\x24\x2d\xa2\x26\x23\xf1\xdc\x34\xc7\xe2\xd5\x68\x6a\x0b\xf6\xb0\xd3\x9a\xb4\x84\xd3\xea\x9a\x1f\x7c\x60\x38\x66\xdb\x36\x27\x2e\x62\x11\x06\x3e\xf8\xf0\xcb\x6e\xc7\x7c\x69\xe3\xbf\xff\xff\x7b\x8f\x28\x22\xf2\x2c\xa1\xc5\x44\xd4\xa7\x72\x29\xb9\xbc\x07\x1e\x52\x03\x65\xc4\x1a\x82\xd8\x07\xe6\xe0\x14\x55\xa5\xd3\x7a\xe5\x60\xfc\x53\xa3\x3d\x1a\x3d\xb7\x4c\xd6\x42\x15\x60\x5d\xef\x46\x2a\x5a\xda\xe2\xf1\x66\x5c\xb5\x4f\x18\xfb\xa9\x0c\x42\x8d\x8d\x4d\x4a\x45\x51\x1a\x27\xb7\x6b\xe1\xe5\xc0\x3a\xce\xca\xd8\x5c\x48\x2f\xc0\x44\x58\xd7\x15\xcc\xc9\x37\xa0\x37\x28\x48\x87\xd4\xcb\xe8\xeb\x57\x6e\x6b\x3a\x39\x33\x87\x08\x73\x84\xfa\x68\xa3\xcf\xbe\x6e\xbc\x34\x4f\xe9\x51\x83\x1a\x0a\x7a\x40\xb8\x9c\x1b\xad\xf6\xc4\x7a\x61\x82\xaf\x3b\x10\x29\x74\x35\xb0\x86\xa8\x99\xe4\xd8\xc1\xb3\x7d\x18\x87\x98\x72\x75\x58\xfc\x64\x27\xe4\x2c\xcf\x06\x0a\x80\x0a\x92\x9f\xc4\xb3\x30\x5d\x0a\xd9\x58\xa2\xd0\x73\x7a\xa4\x72\x1e\xaa\x4c\xd7\x4a\xd8\xec\x59\x0e\x95\x65\x13\xdc\xd2\x77\x59\xbc\xda\x83\xca\x52\x76\x12\x90\x31\x33\x45\x14\x25\x37\xc5\x60\xbc\x80\xa2\x85\x03\x42\x00\x34\x2e\x09\xbe\x9f\xe4\x71\xc6\xc1\xb9\xad\xf9\x6c\xde\x66\xff\x2b\x46\x79\x8a\x4b\x94\x1c\xa1\xc2\x39\xb3\x08\xa6\x7a\x1d\x42\x15\x7a\xf1\x3a\x5b\x20\x9b\x9b\x06\x69\x36\x0b\x9a\xca\xb1\x7a\x43\xac\xf4\x0b\xcb\x7c\x59\xb1\xd0\xf6\x7c\x14\x18\xb0\x57\xe6\xa5\xac\xf7\x42\x9f\x88\xad\x2c\x11\xed\x56\xfb\xcc\x74\x5b\x50\x90\x2d\xbb\x32\x6a\x40\x18\x90\xc2\x98\x15\x2b\x59\xf6\x27\x45\xd1\x7d\xe5\x12\x06\xd5\xee\x54\xe6\x03\x99\x61\xd4\x31\x33\x36\xf1\x30\xe4\xf5\x22\xbf\x24\x16\xa1\xd4\x80\x08\xd3\x24\xa5\xe5\xdd\xde\xc1\x93\xc7\xa5\xcd\x87\x62\x61\xf3\x92\x9f\xea\x3b\xfa\x29\xe8\x3a\x09\xaf\x06\xbc\xf7\xaf\x04\xe0\x67\x39\x88\x82\x0d\x24\xbf\x03\xaf\x63\x72\x58\xf3\x14\x65\x62\x95\xe8\xb2\x98\xad\x57\x5b\x0e\x46\xac\x58\x83\xe9\x80\xb2\x0d\xc0\x7e\x03\xa0\xce\xcc\x9d\xcc\x2d\xc4\x8e\xef\xad\x20\xb6\x3d\x71\xed\x45\x61\xa0\x63\xfe\xbd\xd0\xd9\x40\x3d\x9e\x20\xdb\x61\x83\x68\x18\xe1\x7c\x23\x2f\x17\x49\x72\x45\xa5\xf3\x0c\xbf\x22\xf3\xd4\xd5\x8e\x62\x37\xee\x91\xe1\xbc\x8f\x88\x42\xe4\x1c\xf6\x43\x4b\x49\xbc\x86\xa8\x40\xa1\x81\x17\xca\xe8\x98\x14\xe9\xb6\x3b\xb1\x06\x26\x54\x04\xcb\x58\xd4\x06\x8e\xc8\x30\xe6\x72\x24\x2b\x0c\x4d\xb3\x73\x9e\x5b\x63\x77\xd2\x77\x5c\x8c\xa3\xed\xdc\xd6\xc5\xad\x48\x5c\x84\x8a\xf7\x1f\x61\x0c\xe7\x96\xda\x4d\xbc\x55\x22\xb6\xb4\x38\xbc\x2b\xc5\x49\x18\x82\xee\x20\xe5\xb4\xf3\x9d\x8a\xd9\xd3\x7c\x36\x63\xae\x24\x17\xc9\x3a\xf0\x8b\x63\x19\xd5\xb1\x3a\x72\x55\xec\x4f\x42\xe6\xc6\x62\xff\x16\x24\xf1\xc7\xa0\xef\x18\x4e\xdc\x90\x42\xe5\x87\x4d\x14\xc4\x61\xc7\x3d\x9d\x76\xbb\x24\x96\xcc\xa1\x06\x88\xe6\x4d\xd5\x06\xc5\x1b\x0c\xbc\xd6\x22\x96\x53\x5a\x6f\x1f\x9d\xe9\xe9\xcf\xcc\xf6\x84\x65\x63\xb9\x95\xfc\x44\x95\x21\xaf\x05\x28\xc9\xad\x25\xc7\xb2\x5a\x66\xab\xe6\x9c\xae\x29\x8e\x8f\x1f\x3f\x7b\x8a\x67\x5f\x7d\x55\x3c\x78\xf3\x86\x5b\x0f\x09\xe3\x61\x92\xc9\x3a\x4d\x98\xf9\x9c\xb4\x8d\xc4\x82\xe8\x38\xab\x7d\xfa\xe4\x31\x58\xc7\x19\x4c\xc6\x0e\x5a\xa2\x88\x38\x16\xb5\x30\x68\x22\xc1\x29\xf4\xc0\x0d\xf6\x04\x6b\x40\x1b\x5e\x1e\x8b\x17\x91\xff\xa9\xa4\xfd\x0b\x0c\xc1\x0d\xd2\x17\x76\xb7\x2d\x9e\x7c\xba\xff\x59\x53\x58\xfa\x45\x7a\xbe\x25\xef\xab\xad\x21\x40\xc4\x2f\xf2\xa2\x1b\x90\xc0\xe6\x7d\x25\xb3\x56\x24\xea\x99\xd9\x1f\x91\x76\xd2\xc1\xaa\x05\x2f\xc9\x40\xae\xd9\xb4\x17\x08\x42\x5a\x2f\x14\xf5\xe6\x26\x3b\x78\x0c\x5b\x69\xb3\x1c\xda\x0e\xa0\xe0\xdf\xb5\xb8\xb3\x83\x66\xb5\xa8\xd6\x28\x8c\x4b\xcc\x05\xfd\x5c\x9a\x50\xc1\x2d\xdb\xa4\xd5\x8c\xcc\x1e\x56\xe5\x64\x52\x75\xba\x29\x46\x28\xa0\xe4\x16\x1a\xc9\x34\xde\xac\x64\x34\x6b\x50\xa5\x04\x5e\x95\x81\x4a\x07\xf9\x26\xc0\x75\x61\x15\x7e\x14\xc2\xab\x6a\x47\x92\x15\x2e\xc9\x41\xab\x4b\xf5\x67\x2b\xcd\xef\x91\x88\x3a\xc0\x1f\xd2\x88\x45\x8f\xad\x48\xe4\x10\xd3\x52\x3a\x08\x50\x79\x20\xb8\x68\x45\x1f\x1f\x1d\x1e\x36\xc5\x84\x9c\x28\xf4\xd7\xb7\x54\xf1\x71\x29\x39\x70\x37\x9d\xe1\x21\xf9\x7f\x51\xa3\x08\xaf\x89\x2f\xf8\xf1\x97\x15\xb9\xfe\xfb\x17\x42\x27\xa8\x30\xba\xf6\x68\xc0\x92\x68\xc0\xb3\xd8\x52\x2f\x13\xd2\xca\x53\xea\x26\x49\x83\x42\x47\x6d\x25\x94\xf1\xda\x27\xc2\xd8\x91\x73\x72\x89\xdc\xd7\xaa\x09\x59\x55\xe3\x79\x50\x2b\xf7\xbc\x73\x42\x52\x74\x36\x5a\x1d\x54\x3b\x66\x71\xdd\x52\x8a\xa8\xe2\x79\xa1\xcc\x7a\x6d\x64\x27\x48\x12\xd5\xb3\x52\xc5\x76\x2c\x3e\xd9\x87\x76\x82\xa5\x17\x2d\x22\x9c\x27\xfb\xa5\x21\x3d\x17\xad\xc5\x2a\x73\x81\x81\x58\xfa\x5a\x7b\x24\x04\xa2\xc6\x0e\xa3\x78\xc0\x31\xf8\x3e\x83\xe3\x57\x27\x99\xbf\xaa\xd3\xc3\x93\xe3\x27\x47\x4f\x3f\xab\x97\x80\x9c\x2c\x3d\xdf\x4b\x11\xb5\xc1\xe5\xc9\x7e\x7d\x95\x24\x91\x4b\x7c\x71\x82\xca\x52\x0f\x83\x48\xba\x45\xd1\x3d\xd1\x12\xa2\x7c\xf3\xb1\xb8\xd8\x8a\xd5\x83\x83\xc3\x83\x83\x8b\x22\xd5\x58\xb6\x28\xda\xfe\xde\x8f\x29\xed\x0a\xb6\xd8\x6a\x68\x0b\xfd\x7c\x1f\xae\xe0\xbd\x17\x56\x67\x17\xd8\x71\x9a\x5c\x87\x24\xb3\x58\xc3\xcc\x91\x7a\xe4\xbf\xd2\xd3\x43\x97\x63\xce\xa9\x85\x77\x4d\x6b\xbf\x2e\x7b\xad\x25\x9d\x7e\xd1\xeb\x51\xcd\xf4\x0c\xb7\x5b\x14\x88\xe6\xe6\xbc\x29\x2e\x58\xd8\x16\x4f\xd5\xc5\xff\x19\x8a\xe4\xf0\x31\xb4\x65\x03\xbf\x8d\x20\x25\x76\xdb\xe3\x46\x11\xa8\xb8\x9c\x30\xf8\x14\xb5\xb2\x9c\x19\x29\xff\xe3\xf2\x7d\x5f\x96\x73\x74\x33\xaa\x69\x17\x1b\x98\xdc\xe2\x90\xb1\x90\xe8\xa5\x27\x78\xa7\x53\xb8\xec\x83\x79\x43\xa9\x45\x69\xa1\x79\x8b\x72\x14\xba\x51\x78\x25\x5d\xad\x5d\x30\xc2\xd2\x64\x44\x05\xa7\xc4\x0b\x31\xcb\x6a\xa7\x08\xe7\x6a\xa1\xd3\x65\x43\x1b\x84\x72\x9f\xda\xe6\xfb\xe2\x41\x61\x2f\xac\xdf\xbf\x33\x96\xe5\x41\x21\x1a\x48\xc8\x6a\x2b\xa5\x6e\xd8\x4e\x1d\xd9\x43\x38\x6e\x52\x68\xc7\xc8\x33\xf0\xc4\xbe\xd1\x6b\xbb\x65\xf6\xb0\x26\x80\x11\xfd\x60\x6b\x25\x0a\x67\x92\xed\xdc\x33\xdc\x31\x1d\x87\x04\x79\xdf\xea\x9a\xbb\xe3\x8d\xd7\x85\x90\xa4\xa8\x9e\x10\xe5\x45\x9e\x2f\x49\x9d\x16\xed\x0c\xf8\x76\xef\xa5\x6b\xb6\x8e\xef\x37\x10\x63\xf9\x9d\xf8\x2e\x9e\xe3\x8d\xf6\x0b\xab\x4d\xef\x29\xa8\x58\x4b\x53\x77\x3a\xee\x8f\x5a\x1d\xb7\xba\xdf\xd2\x9a\x56\xf1\x81\x6f\x18\x4b\x25\x8b\x83\x39\xaa\xa1\xd8\x57\x26\x68\xa8\x05\x79\xa2\x16\x79\x52\x43\x27\xbc\xd9\x2b\x2a\x73\x29\x87\x15\xb6\xa0\x3e\xfc\xa6\x75\xd6\xba\x15\xb2\xd5\x8f\x9b\xf3\x54\x77\x60\xed\xaa\x2f\xf7\x8c\x9e\x5d\x4c\xc5\xc1\xee\x8c\x67\x58\x76\xdb\xd0\x62\xd9\xa5\x72\xa2\xe5\x65\x19\xea\x03\x28\x3c\x23\xa0\x5e\x2e\x24\xc3\xb1\x6d\x55\x4c\xb1\x92\xe3\x01\x72\xa0\x38\x22\x56\x04\xe4\x05\x2d\xf7\x45\x11\x08\xdb\xd5\x1f\xd3\x59\x01\x91\x5d\xc5\xc8\x9d\x81\x1a\x9e\xed\xe3\x8b\x9d\x7d\x6a\xe5\x01\x1d\xee\xc4\x92\xa0\x59\x92\x82\xe7\x9d\x0b\x6d\x87\xa0\x84\x55\x91\x68\xe1\x12\xfa\x6e\xef\xdb\x95\x9c\xff\xa1\xbe\x5c\xc5\x73\x03\x3b\xd9\xd1\x4b\xb3\xc3\x9b\x76\xda\x4f\xdd\xdb\x89\xa8\xe7\x56\xab\x6d\x10\x37\x6b\x45\xaa\x2f\xbb\x73\x3d\x3a\x1c\x9c\x1a\x74\xf6\x4a\x22\x1b\x96\x3e\x2d\x86\xc5\x1b\xed\x49\x63\x14\xab\x9f\x7c\x15\x25\xde\x1d\x90\xa0\x35\x69\x34\x11\xaf\x53\x1c\xda\x52\x2c\x13\xd8\xce\x4a\xfa\xe0\x75\xa9\x8f\x58\x0a\x5e\x24\xe0\x68\xa3\xbf\x16\x28\x3f\x2b\x3a\x60\x21\x50\xe4\x1d\x04\xc1\xca\x28\xe2\x47\xa5\x11\xb0\x53\xa1\xb0\xd0\x1d\x89\x46\xc7\xd3\xb4\x6c\x74\x76\xdf\xae\x8b\x69\x1c\xde\x76\x3c\x92\x7f\x76\x7e\xb9\x2e\xae\xba\xed\x67\x87\x87\xe5\xef\x37\xfa\xe2\xf1\x7e\xbd\x34\xbd\xb9\xd0\x8f\x8e\x8e\x8e\x3e\xdb\x5c\x0c\xbd\x38\xa9\x8b\xe7\x21\x36\x16\x12\xf2\xc9\xc9\xc0\xef\xc5\xcf\x00\x9a\x2e\xdc\x5c\xfb\x69\xc2\x04\xc8\xb7\x34\xaa\x20\x47\x5e\xcc\xaa\x56\xf7\x2e\x69\x9f\x50\x81\x41\x49\x59\xc6\xfb\x3c\x89\x3c\x6c\x23\x93\x74\xbe\xb7\xba\x9a\xef\x11\x7a\x7b\x1f\xe2\xaa\x81\xb2\xab\x32\x8f\xa2\xa4\x3b\xb2\x07\x2d\xcd\x65\x51\x32\xd7\x1f\x39\xb6\x67\x51\x25\xa7\x51\xff\x44\x93\x59\x49\x6a\xc4\xc6\xf4\x4b\x6a\x59\xe7\x7e\x79\x5e\x74\x27\xfd\xcb\xb1\xa5\x32\x83\xea\xf5\x68\x21\x94\x5c\x79\x7c\xea\xb9\x44\xcf\x10\x2a\x87\x8f\x4f\xcb\xd8\x2c\x87\xd5\x39\x48\x6a\x46\x71\x6e\x53\xb4\xfe\x6f\x6e\x35\xee\xee\x32\xb8\x82\x96\x8e\x4f\x52\x94\x3e\x72\xb3\x23\x2f\xf3\x39\x5d\x58\xc0\x9e\x7e\x5f\x7a\x29\xfb\x6f\xa6\x69\x92\xd2\x45\x3b\x0d\xe9\x6c\xe4\x2e\xbb\x6b\x0b\x46\x1f\x9b\x5b\x52\x39\x7c\x6b\x94\x4a\xa7\xc4\x86\x5d\xd7\xa7\x06\xb4\x0c\xcd\xa2\xfd\xbc\x1c\xb6\x19\xc0\x60\xdc\xed\x4d\x8d\xdb\xae\x9f\x6b\xb9\xa9\xeb\x8e\xa2\x53\x9b\x04\x61\x81\xe8\x46\x57\x91\x26\x19\xae\x1f\xa9\x1b\x8a\x40\x4e\xc1\x84\x0a\x03\x6d\x54\x0a\x69\xf1\xc9\xfb\x7c\xd5\x1f\xf5\x5c\x7b\x34\xd1\xa2\xb9\x28\x55\x94\xc8\xfc\x21\x60\x9b\xcd\xb4\xdd\xc1\x2a\xd2\x6c\x76\x6c\x30\xa6\xfb\x3a\x99\xe9\x64\xdc\x29\x71\x66\xa4\x37\x85\x44\x2d\xc2\x59\xf6\x90\x9d\xc3\x67\x10\x3d\x5e\x0c\x83\xe2\x8b\x2f\x70\x57\x17\x87\x8f\x9f\x54\x4a\x8c\xeb\x9c\x59\x5d\x3e\xa6\x7f\xc6\x1c\x38\xa7\x3a\xc8\x5e\x07\xd0\xc9\xeb\xf7\xfd\xea\xb4\xac\xfe\xab\xf7\x3c\x33\x6f\x57\x61\xca\xb5\x03\x9b\x2b\x4c\x87\x0c\xd0\x5c\x1e\x05\x32\x92\x74\xc6\x33\xa3\xa3\x9f\x25\xa6\x4d\x3d\x76\xe1\x7a\xca\x93\xd9\x9c\xc3\x55\x96\x39\xbe\x6f\x8d\xe3\xea\xaa\xd9\xb2\x10\xb8\x5a\xdd\x52\x35\xd3\x1f\x0a\x0b\x3c\x96\x20\x75\xd4\xdf\x7b\xa4\x88\x6d\x42\x0a\x0d\xb1\xf3\x75\xc1\xe7\x03\xa7\xfa\x69\x61\xa2\xbf\x2c\xa6\x1b\xdb\xbc\x07\xac\x28\x69\x18\x89\xf0\xba\x87\xac\x56\xc5\x4d\x91\x16\xd0\x86\x14\xf2\x39\xaa\xa3\xce\xfd\x3c\x58\xdd\x89\x7b\xea\x52\xfd\xd8\x83\x7b\x3e\x0c\xa9\x08\xf7\xe2\x73\xcd\xe6\x10\x96\x2b\xc9\x1d\x94\xa8\xb1\x8a\xd2\x43\x07\x00\xbb\x13\xe8\x84\xde\x3c\xc6\xeb\x42\xbf\x84\xae\xd8\xa2\x92\xf8\xa8\x55\x0e\x0b\x1e\xec\x78\xe7\xf4\xa0\x10\xfe\xbf\xeb\xd6\x8b\x57\x57\x92\xf6\xdd\x1e\xc4\x27\x5b\x76\x2e\x6a\xde\xeb\xda\x41\x75\xc7\x57\xab\xd7\x0e\x77\xee\xcf\x69\x4d\x4c\x3a\x04\x72\x2a\xb0\x6d\xca\xee\x5d\xe8\xb6\xe7\xf7\x5b\xf8\x76\xcf\xf1\xc5\xce\x91\xba\xd1\xb1\xc9\x36\xf7\x3b\xc5\xb8\x80\x8e\x2c\x6e\x41\x2a\x7a\x7a\xc7\x7c\x22\x7f\x4c\x7f\xbe\xdc\x7c\xab\xe3\x73\xbf\x3f\x28\x3e\x78\x9f\xe4\xd9\xec\x99\x41\x51\xa3\x77\x9b\x69\x52\xfd\x76\x98\xe6\x71\x4c\x75\x86\x9a\xf9\x3c\x8c\x99\x3f\x4c\x82\x90\xbf\xde\x37\x2b\xc7\x49\x45\x26\xda\x79\x5c\xed\xcd\xa1\xcb\xdf\x50\xc0\x5d\x29\x94\x11\x7f\xae\x6f\x4d\x5c\x3e\x19\xd9\x0a\x33\xfa\x62\x13\x30\xb1\x84\x54\x9b\x95\x9e\x49\x33\xe7\x46\xb7\x68\x3c\x37\x9c\xf6\x99\xd9\x99\xb2\xfc\xfa\x52\x27\xda\xc1\xc2\xe0\x95\xda\x7c\x93\x5f\x48\x2f\xa2\xb3\x44\x3a\x67\x2c\xac\xd0\xd7\x5d\x57\xb7\xbb\xdc\x7e\x9f\xa1\xc3\x4f\xe9\x43\x50\x2b\x9d\xe7\x5a\x07\x52\x2e\x33\xef\x21\x46\x3e\xc6\x96\x43\xcc\x94\x7f\xf5\x71\x09\x6b\xad\xd1\xc8\xe3\x94\x44\x14\xe3\xd4\x68\x64\xde\x5c\x11\x5d\x12\x93\x33\xdf\x27\xf1\x86\xd1\xc3\xac\xa1\xfc\x25\xab\xd7\x20\xf1\x15\x37\x90\xb5\xbd\x83\xe6\xd3\xe6\x63\xa3\x65\xf7\xa8\xf4\x18\xac\x9c\xe9\x74\xb4\xf2\x2f\x0c\xf8\x5b\x15\x85\x79\x89\x08\xcf\xdf\x65\x8f\xe8\x19\x30\xb9\x03\x28\xaf\xc3\xfd\xee\x19\xaf\xf1\xe6\x73\x2e\x77\x3d\x6b\xe2\x76\xac\x6e\x77\xb7\xb8\x3f\x0c\xc0\xdc\xaf\xba\xef\xcd\x29\x00\x15\xf2\x03\xde\x13\x61\xfd\x2e\xde\xcf\xfd\xc2\x77\x6c\x88\x36\xee\xbf\x0e\x0f\x9e\x51\x75\x6d\x0d\xb9\x41\xc6\x8d\xa9\x53\xff\x6e\xd1\x68\x0f\xe9\xef\xd9\xf3\x7a\x20\x1b\x1d\xb3\x3e\x4b\x1b\x5d\xbb\x1e\x47\x8d\x61\xbf\x1e\x5d\x37\xfa\x2f\xea\x69\xde\xb0\xa7\xf5\x6f\xbd\xc6\xcf\xc6\x75\xa9\x1a\xa6\x53\x5f\x65\x8d\x53\xbb\xbe\x8a\x1a\xe3\x7e\xfd\x72\xde\x38\xed\xd5\xf1\x52\x6b\xc2\x9f\xac\xc8\xb6\x89\xea\x1c\xaa\x45\xfd\xb7\xff\xf4\xf3\xdf\xfc\xfb\x9f\xfe\xe6\x57\xff\xf8\xe3\x9f\xff\x71\xfd\xb7\xbf\xfe\xfe\xbf\xfe\xfe\xcf\x8a\x9b\x8e\xcc\x33\xe5\x2f\xea\xdd\xd4\x8b\x7f\xf8\x3b\x2f\x54\xf5\xa1\xc4\x9e\x1e\xda\x2c\x50\xf5\xbe\x97\x5d\x87\xf2\x3f\xfe\x26\xaf\xbf\xfd\xeb\x77\x7f\xf4\xee\xfb\x77\xdf\xbf\xfd\xd7\xb7\xbf\x7a\xfb\xeb\xfa\x8f\x7f\xf1\xb7\x3f\xfe\xe5\x3f\xfc\xe7\x2f\xfe\xaa\x6e\xaa\x95\xf7\xc3\x2f\x93\xa8\x3e\x86\x4c\xcd\xe7\xf9\x0f\xbf\x50\x10\x33\xe2\x34\xf5\x54\x48\x8d\x91\xba\x0a\xeb\x6f\x7f\xf9\xee\x4f\xde\xfe\xdb\xdb\x7f\x79\xfb\xcf\xef\x7e\xae\x6d\xd4\xad\xcc\x8b\x42\x92\x8e\x5a\x7a\x05\xbc\x0c\x94\x04\x24\x04\xb1\x97\xbb\x42\x41\x63\xa0\xa8\x54\x48\x92\x8a\xe7\x06\x23\xc5\x88\x19\x0c\x17\x2e\xbf\x5b\x18\x8c\x19\x5f\x36\x26\x2f\x0d\xc6\x8e\xff\x89\x8c\xc1\x00\x52\xea\xa5\x06\xa3\x88\xcb\x38\x32\x18\x4a\xfa\xa4\x7f\x6d\x30\x9e\xf4\x35\x2f\x37\x18\x54\x5c\x7e\xeb\x19\x8c\x2c\xbd\x45\x19\x0c\x2f\x2e\xf9\xd7\x60\x98\xe9\x2e\x32\x18\x6b\xfa\x17\x36\x73\x83\x01\xa7\xbd\x48\x86\x95\x4d\xa8\x82\x21\xeb\xce\x46\x2f\xdd\x2e\xd4\x2a\xb4\xdb\xa9\xad\x3f\x60\x6e\x6a\xc0\x7f\x07\x00\x00\xff\xff\x2e\x8b\x9f\x93\xcc\x24\x00\x00") +var _confAppIni = []byte("\x1f\x8b\x08\x00\x00\x09\x6e\x88\x00\xff\xb4\x7a\x5d\x8f\xe3\x46\x76\xf6\x3d\x7f\x45\x59\x7e\xfd\x7a\x1c\x48\xea\x2f\xf7\xcc\xb8\xed\x4e\xac\x96\x28\x35\x77\xf4\x65\x52\x9a\xf1\x78\xd0\xe0\xb0\xc9\x92\x44\x37\x45\x6a\x58\x64\x77\xcb\xc8\xc5\x1a\xb9\x08\x90\xdb\x04\xc9\x4d\x10\x24\x17\x41\x80\xcd\x07\xb2\xc8\xcd\x6e\x82\x5c\x19\xb9\x9f\xf9\x0f\x0b\x6f\xf2\x2f\xf2\x9c\x53\xa4\x44\xf5\xb4\x1b\x59\x20\xd9\x35\x46\x64\xb1\xea\x54\xd5\x73\xbe\x9e\x53\xd5\x1f\x8a\xa1\xf9\xdc\xb4\x05\xff\x33\x18\x75\xac\xee\x4b\x31\x39\xb7\x1c\xd1\xb5\xfa\xa6\xf1\xa1\x18\xf7\xcd\x96\x63\x8a\x41\xeb\x99\x29\xda\xe7\xad\x61\xcf\x74\xc4\x68\x28\xda\x23\xdb\x36\x9d\xf1\x68\xd8\xb1\x86\x3d\xd1\x9e\x3a\x93\xd1\x00\x8d\xc3\xae\xd5\xd3\x23\x8d\xcf\x45\x6b\xb5\x12\xb1\xb7\x94\x22\x5b\x78\x99\x50\x8b\xe4\x46\x89\x24\x16\xf2\x5a\xa6\x6b\xb1\xf2\xe6\xf8\x10\x66\x91\x34\x5a\xe3\xb1\x3b\x6c\x0d\x4c\x71\x2a\x7a\xc9\x5c\x9d\xe0\x5f\xd1\x0b\x33\xe1\xc8\xf4\x3a\xf4\x25\x24\xb5\x17\x5e\x8c\xee\x68\x0b\x67\x62\x9d\xe4\x22\xcd\x63\x11\x25\xbe\x17\x45\x6b\xc3\x9e\x0e\xdd\xa9\x83\xd5\x9f\x8a\x79\x98\xa1\xb7\x19\x66\x0b\x99\x8a\x5a\x20\xaf\x6b\x75\x51\x5b\xa5\x49\x50\x13\x09\x1a\x32\xa9\x32\xb4\x04\x72\xe6\xe5\x11\x64\x29\xdd\x87\x25\x60\xeb\xb4\x00\xbc\x1b\xc6\xab\x54\xae\x12\x15\x66\x49\xba\xbe\x30\xec\xd1\x68\x22\x4e\x0d\xa7\x6d\x5b\xe3\x89\x3b\x79\x39\xa6\x6e\x97\x9e\x5a\x60\xa6\x4e\x21\xa9\x35\x74\x2c\xe1\x2f\xbc\x54\xc9\xcc\xa0\x17\x17\x50\xd9\x8e\x89\x81\x02\xdd\xba\x49\xea\xcb\x62\xdf\xb1\xbc\x11\x5b\xf1\x22\x4b\xc4\xa5\x14\xab\x34\xbc\xf6\x32\x69\x74\x47\x76\xdb\x74\xc7\xb6\xf5\xbc\x35\xa1\x69\x66\x5e\xa4\x68\xff\x63\x2f\xf3\x17\x82\x96\x2f\xde\xe4\x32\x97\x22\x92\xf1\x3c\x5b\xd4\xc5\xd2\xbb\x62\x58\x3c\x25\x22\x2f\x05\x44\x78\x80\x6c\x15\x5e\x02\xd7\xf1\xb4\xdf\x77\x6d\xf3\xab\xa9\xe9\x4c\x5c\xfc\x3b\x35\xdd\xbe\x39\xec\x4d\xce\x21\xf9\x60\x1f\xff\xc3\x4e\xf3\xf0\x02\xf2\x87\xf9\xf2\x12\x88\x25\xb3\xed\xd2\x42\xa9\xb4\xde\xbc\x54\xb2\xee\x64\x20\xc2\x18\xfa\xc3\x46\x6e\x57\x51\x82\x56\x52\xa1\x61\x7e\x3d\xee\x8f\x6c\x2c\xba\xd5\x83\x25\xb8\xc3\xe9\x00\xd2\x0f\xf7\x77\x84\x86\x4a\xe5\x3f\x2d\x8e\xc5\x58\x8e\x33\xbd\x23\xe4\x60\x57\xc8\xd2\xbb\x0d\x97\xf9\x52\xf8\xc9\x72\x19\x66\xea\x8e\x10\xcf\xcf\xc2\xeb\x30\x5b\x8b\x99\x94\x81\xd1\x35\xcd\x8e\x3b\x68\x7d\xed\xb6\x47\x83\x81\x35\x29\x04\x1e\xf3\x7e\x9b\x5e\xb0\x0c\xe3\xdd\x5d\xe7\x4a\xa6\x0f\xaf\x8f\x0c\x6c\x77\x79\xc7\xfb\xef\x03\xf7\xa0\x08\xdb\x1c\x8f\x1e\x14\x11\x27\x19\xcc\xfd\x61\x21\xc3\xd1\xc4\x6a\x9b\x0f\x8a\x49\xd2\xb9\x17\x87\xdf\x79\x59\x08\x67\x7b\x48\xd6\xc8\xee\xbd\x27\xc8\x78\xb5\xf4\xd2\xab\x20\xb9\x61\x84\xcc\xd8\x83\x21\x09\x18\x76\x20\xa2\x10\xe3\x2e\x53\xe9\x5d\xc1\x00\x32\x19\x2b\x88\x37\xcc\x61\xeb\xac\x6f\xba\x30\xf6\x8e\xdb\xb7\x86\xa6\x7b\x66\x9b\xad\x67\x1b\xcb\x35\x5e\x01\x58\x98\xfd\x85\x31\xb6\x47\x93\x51\x7b\xd4\xc7\xa7\x45\x96\xad\x8c\xce\x68\xd0\xb2\x86\x78\x63\x2f\x5e\x24\x2a\x63\x47\x73\xa7\x36\x75\xf9\xe8\x51\xd9\xff\x13\x75\xb2\xb7\xf7\xd1\x23\xdd\x1d\x2f\x1f\x3d\x3a\x9f\x4c\xc6\xee\x78\x64\x4f\x3e\x51\x7b\x06\xbf\xb4\x3a\x1d\x38\xbf\xb1\xf9\x00\x01\x47\x64\xdd\xf0\xcf\x50\xf1\x06\x1c\xe7\x1c\x86\xe1\x65\x39\x80\xb8\x59\xc8\x98\xa0\x16\xde\xb5\x17\x46\xf4\xd9\xe8\x58\x0e\x6f\x83\xba\x95\x4b\xc7\x73\x29\xec\xf0\xb0\x22\xaa\xdd\x19\x92\x27\xc7\x84\x64\x11\x5a\x96\x49\x00\x30\xbb\x5d\x06\xa0\x88\x23\x5a\x48\x29\xd8\x1e\x4d\x27\xb0\x9f\xfe\xa8\x57\x71\xea\x9e\x8c\x65\x0a\xaf\x17\x2a\x93\x2b\x75\x82\x96\xff\x27\xfc\x00\xaa\xc9\x16\x7b\x59\xb2\x37\x47\x28\xdc\xf3\x73\x95\x25\xcb\x3d\x82\x4c\x71\x87\x26\xb7\x0b\x5f\xa6\x99\x68\xf8\xde\x69\x96\x22\x1a\x34\x82\x3c\x65\x75\x9f\x3e\x7d\xf2\x78\x7f\xb1\xbf\xdc\x57\xa2\x41\x98\x9e\x2e\xd7\xf4\xd3\x94\xb7\xde\x72\x15\xc9\x26\x7c\xc7\xf8\x1c\x72\x46\xa9\x98\xa5\xc9\x52\x78\xa2\xb9\x9a\xdd\x8a\x59\x18\xb1\x57\x27\x69\x06\x13\xe1\x2f\x88\xa0\xe2\x45\x18\x07\x14\xb3\x69\xb2\x70\x16\xfa\x7a\xad\xe4\xf9\x8f\x82\x04\x52\x08\xc4\x19\xac\x4d\x66\x14\xc6\xf4\x78\x1e\x58\x84\x33\x71\x25\xd7\x9f\xe8\x7d\x25\x2b\x18\x8c\x8a\xc4\xea\xca\x57\x07\x87\xa2\x01\xf0\x48\x2a\xcf\xde\x48\xf2\xac\x78\x93\x4b\xd1\x88\x13\x0c\x53\xff\xb3\x51\xe8\x59\x0e\xa2\x0f\x8a\x1e\x02\xa9\x8c\xb6\x69\x4f\x5c\x4a\x43\x80\xbb\x0a\xe1\x5e\x39\x8d\xf1\xcc\x7c\x79\x6f\x87\x42\x22\xa6\x9f\xae\x56\xf0\xa7\x08\xba\x8e\xc8\xab\x32\x09\x04\x69\x53\x5e\x1c\x00\x05\xc0\xed\x6b\xdc\x48\x5f\xe8\x5e\x49\x2a\x0c\x01\x5a\xc9\xd4\x00\x16\xe5\x34\x6a\x96\xb7\xd2\xcf\x01\xb0\xe1\x4c\x5a\x70\x62\x97\xed\x7d\xdc\xa2\x70\xac\x93\x65\x44\x10\x93\xd3\xea\x49\x7b\xdf\x58\x63\xa1\xf2\x15\xc1\x5a\x3a\x1a\xb7\x6d\x4d\xa8\x8f\xc5\x84\xf1\x5c\x27\x53\xa8\x02\x2a\x89\x1b\x51\x32\x9f\x43\x8d\x1c\xd3\xea\xc2\xf7\x62\xca\x30\xb5\x45\xb2\x94\x3a\x0b\x16\xe1\xbb\x66\xf4\x5b\x9c\xbd\x29\x06\x10\x0e\xd4\x03\x1e\x1b\x78\x99\x87\xf4\x26\x2f\x2a\x99\x74\xb9\x56\x6f\x22\xce\xa5\xb0\xa6\x79\x2a\x95\x96\x84\xc6\x30\x93\x47\xf8\x10\x66\x1f\x2b\x4a\xcc\x29\xb2\x60\x42\x39\xbb\x73\x56\xa6\x4a\x1e\x6b\x9c\x8f\x1c\x72\xa5\x83\xc3\x27\xcd\x7d\xfc\xff\xe0\xe4\xe8\x68\xff\xb1\x51\x64\x7d\x32\x69\xa3\x48\xe1\x69\x92\x64\xc6\xb8\xe5\x38\x2f\x3a\x8c\x4b\x97\x26\xaa\x4c\x1b\x47\xeb\xba\x90\x65\x86\xd7\x4e\x49\x2b\x4b\xe5\x9b\x3c\x4c\x8b\x2d\x22\xe4\x84\xb3\x75\x63\x96\x47\x51\x0d\x9e\xdc\xdf\x64\x77\xdd\xbf\x14\x5b\xae\x9f\x75\x5a\xcb\xc2\xe0\xb2\x66\x68\x85\x08\x42\x81\x5d\xad\x19\x5c\x02\x94\x22\x67\x50\x3c\xf3\xf3\x14\x79\xe6\xc2\xb0\x86\xd0\x23\x12\x6c\x7f\xd4\x7e\x56\x51\xc9\x07\x1f\x68\x96\xa4\x49\xd4\x64\x24\x9e\x99\xe6\x58\xbc\x1c\x4d\x6d\xc1\x3b\xec\xb4\x26\x2d\xe1\xb4\xba\xe6\x07\x1f\x18\x8e\xd9\xb6\xcd\x89\x0b\x5b\x84\x80\x0f\x3e\xfc\xb2\xdb\x31\x5f\xd8\xf8\xef\xff\xff\xde\x23\xb2\x88\x3c\x4b\x48\x99\xb0\xfa\x54\x2e\x25\x87\xf7\xc0\x83\x6b\x20\x8c\x58\x43\x24\xf6\x81\x39\x38\x43\x54\xe9\xb4\x5e\x3a\x18\xff\xc4\x68\x8f\x46\xcf\x2c\x93\xb9\x50\x05\x58\xd7\xbb\x91\x8a\x54\x5b\x7c\xde\x8c\xab\xf6\x09\x63\x3f\x95\x41\xa8\xb1\xb1\x89\xa9\x28\x72\xe3\xe4\x76\x2d\xbc\x1c\x58\xc7\x59\x69\x9b\x0b\xe9\x05\x58\x08\xf3\xba\x22\x73\xf2\x0b\xd2\x1b\x18\xa4\x43\xec\x65\xf4\xf5\x4b\xb7\x35\x9d\x9c\x9b\x43\x98\x39\x4c\x7d\xb4\xe1\x67\x5f\x37\x5e\x98\x67\xf4\xa9\x41\x0d\x45\x7a\x80\xb9\x5c\x18\xad\xf6\xc4\x7a\x6e\x22\x5f\x77\x40\x52\xe8\x69\x60\x0d\x11\x33\x69\x63\x07\x4f\xf7\x21\x1c\x64\xca\xd5\x66\xf1\x93\x9d\xe0\xb3\xbc\x1a\x30\x00\x0a\x48\x7e\x12\xcf\xc2\x74\x29\x64\x63\x89\x40\xcf\xee\x91\xca\x79\xa8\x32\x1d\x2b\x21\xb3\x67\x39\x14\x96\x4d\xe4\x96\xbe\xcb\xe4\xd5\x1e\x54\x54\xd9\x49\x90\x8c\x39\x53\x44\x51\x72\x53\x0c\xc6\x04\x64\x2d\x6c\x10\x02\xa0\x71\x48\xf0\xfd\x24\x8f\x33\x36\xce\x6d\xcc\x67\xf1\x36\xef\xbf\x22\x94\x97\xb8\x44\xc8\x11\x2a\x9c\x73\x16\xc1\x52\xaf\x43\xb0\x42\x2f\x5e\x67\x0b\x78\x73\xd3\x20\xce\x66\x81\x53\x39\x56\x6f\x08\x4d\x3f\xb7\xcc\x17\x15\x09\x6d\xcf\x47\x80\x41\xf6\xca\xbc\x94\xf9\x5e\xe8\x53\x62\x2b\x43\x44\xbb\xd5\x3e\x37\xdd\x16\x18\x64\xcb\xae\x8c\x1a\x10\x06\xc4\x30\x66\x85\x26\xcb\xfe\xc4\x28\xba\x2f\x5d\xc2\xa0\xda\x9d\xc2\x7c\x20\x33\x8c\x3a\xe1\x8c\x4d\x79\x18\xf4\x7a\x91\x5f\x52\x16\x21\xd7\x00\x09\xd3\x49\x4a\xd3\xbb\xbd\x83\xc7\xc7\xa5\xcc\x87\x6c\x61\x33\xc9\x4f\xf5\x1d\xfd\x14\x74\x9d\x84\xb5\x81\xdd\xfb\x57\x02\xf0\x33\x1d\x44\xc0\x06\x92\xdf\x21\xaf\x63\x71\xd0\x79\x8a\x30\xb1\x4a\x74\x58\xcc\xd6\xab\x6d\x0e\x86\xad\x58\x83\xe9\x80\xbc\x0d\xc0\x7e\x03\xa0\xce\xcd\x1d\xcf\x2d\xc8\x8e\xef\xad\x40\xb6\x3d\x71\xed\x45\x61\xa0\x6d\xfe\x3d\xd3\xd9\x40\x3d\x9e\xc0\xdb\x21\x83\xd2\x30\x95\x3c\x70\x07\xb6\x3d\x64\x06\xb2\x14\xca\x64\xc8\x02\x21\xc8\x3b\x71\xb0\x2c\x49\x88\x87\x21\x9c\x97\x86\xdf\x2c\xb6\xe1\xa2\xa7\x4b\xdb\x50\x17\x86\xd9\x39\x3c\x3e\x3e\xf8\x8c\x88\xc7\xf1\x63\xc3\x6c\x77\x9c\x96\x10\xc5\xdb\x70\x62\x4f\x05\xbf\x1d\xec\x3f\x7d\x62\x0c\xda\xa6\x28\x5e\x9f\xec\x1f\x1a\x03\x7f\xe7\xd5\xe6\x81\xba\xf3\xe1\xa7\x46\x67\xf7\xd5\x78\x75\x23\x2f\x17\x49\x72\x45\x81\xfe\x1c\xbf\x22\xf3\xd4\xd5\x4e\x7d\x61\xdc\x53\x34\x70\xd5\x13\x85\x88\x10\xa8\xde\x96\x92\xb2\x30\x6c\x18\x61\x11\x98\x2b\xa3\x63\x92\x5f\xda\xee\xc4\x1a\x98\xe0\x3c\x4c\xba\x11\xc9\xd8\x7f\xc2\x98\x83\xa7\xac\xf0\x09\xc2\xd2\x79\x66\x8d\xdd\x49\xdf\x71\x31\x8e\x8a\xcf\xad\x42\xb6\x94\x76\x11\x2a\xae\x96\xc2\x18\xaa\x58\x6a\xa5\x60\x56\x09\x4f\xd0\x54\xf6\x6e\xe1\x40\x34\x16\xc9\x19\xc4\x53\xab\xaa\x53\x11\x7b\x96\xcf\x66\x9c\xd9\x69\x8b\x24\x1d\xda\x8e\x63\x19\xd5\xa1\x2e\xb9\x2a\xaa\xa9\x90\x33\x79\x51\x6d\x06\x49\xfc\x31\xc8\x46\x8c\x4d\xdc\x10\x9f\xe6\x8f\x4d\x84\xef\x61\xc7\x3d\x9b\x76\xbb\x44\xed\xcc\xa1\x06\x88\xd6\x4d\xb1\x11\xa9\x06\x7c\x61\xad\x29\x37\x07\x20\x5d\xec\x3a\xd3\xb3\x9f\x99\xed\x09\x93\xdc\xb2\xf0\xfd\x44\x95\x0e\xaa\xe9\x32\x91\xc3\x25\x7b\x9e\x5a\x66\xab\xe6\x9c\x9e\xc9\xeb\x4e\x8e\xa1\xf3\xcf\xc5\x57\x5f\x15\x1f\xde\xbc\xe1\xd6\x43\xc2\x78\x98\x64\xb2\x4e\x0b\x66\xf6\x41\x4c\x4c\x42\x21\xda\x2b\x6a\x9f\x3e\x3e\x46\x8e\x74\x06\x93\xb1\x83\x96\x28\x22\x46\x40\xa6\xda\x44\x38\x22\x47\x41\x26\xb3\x27\xd0\x01\x95\xe7\x3c\x16\x13\xd1\xfe\x53\x49\xd5\x16\x04\x61\x1b\xc4\x86\xec\x6e\x5b\x3c\xfe\x74\xff\xb3\xa6\xb0\xf4\x44\x7a\xbd\x25\x4b\x51\x5b\x41\x80\x88\x27\xf2\xa2\x1b\xa4\xac\xcd\x7c\x25\x0f\xa8\x10\xea\x73\xb3\x3f\x22\xa6\xa7\x5d\x4b\xd3\x73\x22\xad\x9c\x61\xc8\x6b\x82\x90\xf4\x85\x14\xd4\xdc\xf8\x32\x8f\x61\x29\x6d\x26\x6f\xdb\x01\xe4\xaa\xbb\x12\x77\xea\x7d\xe6\xb6\x6a\x8d\x30\xbe\xc4\x5a\xd0\xcf\xa5\x05\x15\x99\x70\x1b\x62\x34\x7f\xe0\x1d\x56\xc9\x6f\x52\xdd\x74\x53\x8c\x10\xee\x69\x5b\x68\x24\xd1\x98\x59\xc9\x68\xd6\xa0\xb8\x0e\xbc\x2a\x03\x95\x36\xf2\x8d\x81\xeb\x34\x20\xfc\x28\xc4\xae\xaa\x1d\x89\x04\xb9\x44\x5e\xad\x2e\x45\xcb\x6d\x21\x71\x0f\xa1\xd5\x06\xfe\x10\xa3\x2d\x7a\x6c\x29\x2d\x9b\x98\x26\xfe\x41\x80\x38\x09\x7a\x48\x1a\x3d\x3e\x3a\x3c\x6c\x8a\x09\x6d\xa2\x60\x8b\xdf\x52\x7e\xc2\xa3\x64\xc3\xdd\x74\xc6\x0e\x69\xff\xaf\x6b\x64\xe1\x35\xf1\x05\x7f\xfe\xb2\x52\x5c\xfc\xfe\x6b\xa1\x1d\x54\x18\x5d\x7b\x34\x60\x02\x37\xe0\x55\x6c\x89\x02\xa7\xcf\x95\xa7\xd4\x4d\x92\x06\x05\xeb\xdb\x12\x3e\xe3\x95\x4f\xe9\x6d\x87\x7c\xca\x25\x7c\x5f\x73\x3c\x78\x55\x8d\xd7\x41\xad\xdc\xf3\xce\x79\x4e\xd1\xd9\x68\x75\x10\x9b\x99\x73\xe8\x96\x92\xf2\x15\xdf\x0b\x1e\xd9\x6b\xc3\x3b\x11\xa8\x11\xeb\x2b\x51\x6c\x47\xe2\xe3\x7d\x30\x3d\x48\x7a\xde\xa2\xf4\xf8\x78\xbf\x14\xa4\xd7\xa2\x99\x63\x65\x2d\x10\x10\x4b\x5f\x33\xa5\x84\x40\xd4\xd8\x61\x14\x0f\x38\x01\x3b\xc9\xb0\xf1\xab\xd3\xcc\x5f\xd5\xe9\xe3\xe9\xc9\xe3\xa3\x27\x9f\xd5\x4b\x40\x4e\x97\x9e\xef\xa5\xb0\xda\xe0\xf2\x74\xbf\xbe\x4a\x92\x88\xd3\xc2\x29\x22\x4b\x3d\x0c\x22\xe9\x16\x41\xf7\x54\x13\x9e\x72\xe6\x13\xf1\x7a\x4b\xad\x0f\x0e\x0e\x0f\x0e\x5e\x17\xae\xc6\x24\x4b\x51\xb1\x7e\x3f\xa6\x54\xc3\x6c\xb1\xd5\xd0\x16\x6c\xff\x3e\x5c\x91\xa5\x9f\x5b\x9d\x5d\x60\xc7\x69\x72\x1d\x12\x29\x64\xc6\x35\x87\xeb\xd1\xfe\x95\x5e\x1e\xba\x9c\xb0\x4f\x2d\xbc\x6b\xd2\xfd\xba\xec\xb5\x96\x74\x56\x47\xd3\x23\x9a\xe9\x15\x6e\x0b\x2a\x50\xfc\xe6\xbc\x29\x5e\x33\x0d\x2f\xbe\xaa\xd7\xff\x67\x28\xd2\x86\x4f\xc0\x84\x1b\xf8\x6d\x04\x29\x65\xb7\x3d\x6e\x14\x81\x8a\xcb\x05\x23\xfb\x23\x56\x96\x2b\xa3\x3a\xe5\xa4\x9c\xef\xcb\x72\x8d\x6e\x46\x31\xed\xf5\x06\x26\xb7\x38\x12\x2d\x0a\x8a\x72\x27\x98\xd3\x29\xb6\xec\x23\xf3\x86\x52\x53\xe8\x82\xa1\x17\xe1\x28\x74\xa3\xf0\x4a\xba\x9a\x69\x61\x84\xa5\x93\x11\x05\x9c\x12\x2f\xd8\x2c\x73\xb3\xc2\x9c\xab\x81\x4e\x87\x0d\x2d\x10\x75\xc6\xd4\x36\xdf\xa7\x3a\x0a\x95\xbb\x9e\x7f\x67\x2c\x93\x99\x82\xe2\x10\xed\xd6\x52\x4a\x96\xb3\x5d\x3a\xbc\x87\x70\xdc\xb8\xd0\x8e\x90\xa7\xc8\x13\xfb\x46\xaf\xed\x96\xde\xc3\x9c\x00\x42\xf4\x87\xad\x94\x28\x9c\x49\x96\x73\xcf\x70\xc7\x74\x1c\x2a\x1f\xfa\x56\xd7\xdc\x1d\x6f\xbc\x2a\x68\x2f\x59\xf5\x84\x52\x5e\xe4\xf9\xc4\xb0\x4a\x3a\xcc\x80\x6f\x2b\x45\x1d\xb3\xb5\x7d\xbf\x01\xe7\xca\xef\xd8\x77\xf1\x1d\x33\xda\xcf\xad\x36\xcd\x53\xa4\x62\x4d\xa4\xdd\xe9\xb8\x3f\x6a\x75\xdc\x6a\x75\xa8\x19\xb8\xe2\xe3\xe9\x30\x96\x4a\x16\xc7\x88\x14\x43\x51\x05\x27\x68\xa8\x05\x79\xa2\x16\x79\x52\x43\x27\xcc\xec\x15\x91\xb9\x24\xef\x0a\x05\xb3\x8f\x7d\x93\x9e\x35\xcb\x06\xc9\xf6\xe3\xe6\x3c\xd5\x1d\x98\x69\xeb\xc7\x3d\xa3\x67\x17\x4b\x71\x50\x4b\xf2\x0a\xcb\x6e\x9b\xb4\x58\x76\xa9\x9c\xbf\x79\x59\x86\xf8\x80\x14\x9e\x11\x50\x2f\x16\x92\xe1\xd8\xb6\x2a\x4e\xb1\x92\xed\x01\x74\xa0\x38\xd0\x56\x04\xe4\x6b\x52\xf7\xeb\xc2\x10\xb6\xda\x1f\xd3\xc9\x06\x25\xbb\x8a\x90\x3b\x03\x35\x3c\xdb\xcf\xaf\x77\xaa\xea\xca\x07\x3a\x8a\x8a\x25\x41\xb3\xa4\x7a\x83\xeb\x2c\x22\xd0\xe0\xed\xaa\x70\xb4\x70\x09\x7e\xb7\xf7\xed\x4a\xce\xff\x50\x3f\xae\xe2\xb9\x81\xba\x7b\xf4\xc2\xec\xf0\x11\x03\x55\x7f\xf7\x76\xa2\xd4\x73\xab\x6b\x03\x24\x6e\xe6\x8a\x14\x5f\x76\xd7\x7a\x74\x38\x38\x33\xe8\xa4\x98\x4a\x02\x48\xfa\xb4\x18\x16\x6f\xb8\x27\x8d\x51\xcc\x7e\xf2\x55\x94\x78\x77\x40\x02\xd7\xa4\xd1\x94\x78\x9d\xe2\x88\x99\x6c\x99\xc0\x76\x56\xd2\x47\x5e\x97\xfa\x40\xa8\xc8\x8b\x04\x1c\x1d\x4b\xac\x05\xc2\xcf\x8a\x8e\x83\x08\x14\x79\x07\x41\x64\x65\x04\xf1\xa3\x52\x08\xb2\x53\xc1\xb0\xd0\x1d\x8e\x46\x87\xe9\xa4\x36\xba\x69\x68\xd7\xc5\x34\x0e\x6f\x3b\x1e\xd1\x3f\x3b\xbf\x5c\x17\x4f\xdd\xf6\xd3\xc3\xc3\xf2\xf7\x1b\xfd\x70\xbc\x5f\x2f\x45\x6f\x1e\xf4\xa7\xa3\xa3\xa3\xcf\x36\x0f\x43\x2f\x4e\xea\xe2\x59\x88\x32\x48\x82\x3e\x39\x19\xf2\x7b\xf1\x33\x00\xa7\x0b\x37\xcf\x7e\x9a\x70\x02\xe4\x57\x1a\x55\x24\x47\x56\x66\x95\xab\x7b\x97\x54\x27\x54\x60\x50\x52\x96\xf6\x3e\x4f\x22\x0f\x45\x6f\x92\xce\xf7\x56\x57\xf3\x3d\x42\x6f\xef\x43\x3c\x35\x10\x76\x55\xe6\x91\x95\x74\x47\xf6\xa0\xa5\x73\x59\x94\xcc\xf5\x95\xcc\xf6\xe4\xac\xcc\x69\xd4\x3f\xd1\xc9\xac\x4c\x6a\x94\x8d\xe9\x97\xd8\xb2\xf6\xfd\xf2\x74\xeb\x8e\xfb\x97\x63\x4b\x66\x06\xd6\xeb\x91\x22\x94\x5c\x79\x7c\x46\xbb\x44\xcf\x10\x2c\x87\x0f\x7b\x4b\xdb\x2c\x87\xd5\xd9\x48\x6a\x46\x71\xca\x54\xb4\xfe\x6f\x96\x1a\x77\xab\x0c\x8e\xa0\xe5\xc6\x27\x29\x42\x1f\x6d\xb3\x23\x2f\xf3\x39\x3d\x58\xc0\x9e\x7e\x5f\x78\x29\xef\xdf\x4c\xd3\x24\xa5\x87\x76\x1a\xd2\x49\xce\xdd\xec\xae\x25\x18\x7d\x94\xe2\xc4\x72\xf8\xd5\x28\x99\x4e\x89\x0d\x6f\x5d\x9f\x71\x90\x1a\x9a\x45\xfb\x45\x39\x6c\x33\x80\xc1\xb8\xdb\x9b\x1a\xb7\x5d\x3f\xd7\x74\x53\xc7\x1d\x45\x67\x4c\x09\xcc\x02\xd6\x8d\xae\x22\x4d\x32\x3c\x3f\x52\x37\x64\x81\xec\x82\x09\x05\x06\x2a\x54\x0a\x6a\xf1\xc9\xfb\xf9\xaa\x3f\xea\xb9\xf6\x68\xa2\x49\x73\x11\xaa\xc8\x91\xf9\xda\x62\xeb\xcd\x54\xee\x40\x8b\xb4\x9a\x1d\x19\x8c\xe9\xbe\x76\x66\x3a\xc7\x77\x4a\x9c\x19\xe9\x4d\x20\x51\x8b\x70\x96\x3d\x24\xe7\xf0\x29\x48\x8f\x17\x43\xa0\xf8\xe2\x0b\xbc\xd5\xa9\x6c\xaf\x84\x18\xd7\x39\xb7\xba\x7c\xa9\xf0\x94\x73\xe0\x9c\xe2\x20\xef\x3a\x00\x4f\x5e\xbf\xbf\xaf\x4e\xcb\xea\xbf\x7c\x6f\x67\xe6\xed\x2a\x4c\x39\x76\xa0\xb8\xc2\x72\x48\x00\xad\xe5\x51\x20\x23\x49\x27\x52\x33\x3a\x7e\x58\x62\xd9\xd4\x63\x17\xae\x27\xbc\x98\xcd\xa9\x61\x45\xcd\xf1\x7d\x3a\x8e\xab\x5a\xb3\x65\x41\x70\x35\xbb\xa5\x68\xa6\xaf\x35\x0b\x3c\x96\x48\xea\x88\xbf\xf7\x50\x11\xdb\x04\x15\x1a\xa2\xf2\x75\x91\xcf\x07\x4e\xf5\x22\x64\xa2\xef\x41\xd3\x8d\x6c\xae\x01\x2b\x4c\x1a\x42\x22\x4c\xf7\x90\xd4\x2a\xb9\x29\xdc\x02\xdc\x90\x4c\x3e\x47\x74\xd4\xbe\x9f\x07\xab\x3b\x76\x4f\x5d\xaa\x57\x53\x78\xe7\xc3\x90\x0a\x71\x2f\x2e\x97\x36\x47\xc6\x1c\x49\xee\xa0\x44\x8d\x55\x94\x1e\x3a\x00\xd8\x5d\x40\x27\xf4\xe6\x31\xa6\x0b\xfd\x12\xba\xa2\x44\x25\xf2\x51\xab\x1c\x16\x3c\xd8\xf1\xce\xe9\x41\x41\xfc\x7f\xd7\xd2\x8b\xb5\x2b\x89\xfb\x6e\xaf\x0d\x92\x6d\x76\x2e\x62\xde\xab\xda\x41\xb5\xe2\xab\xd5\x6b\x87\x3b\xef\x17\xa4\x13\x93\x0e\x81\x9c\x0a\x6c\x9b\xb0\x7b\x17\xba\xed\x6d\xc3\x16\xbe\xdd\x5b\x07\xb1\x73\x01\x60\x74\x6c\x92\xcd\xfd\xce\x3c\x3a\x6d\x83\x7d\xdc\x22\xa9\xe8\xe5\x9d\xf0\xfd\xc1\x09\xfd\xf3\xe5\xe6\x66\x91\x4f\x29\xff\xa0\xb8\x9e\x3f\xcd\xb3\xd9\x53\x83\xac\x46\x57\x9b\x69\x52\xbd\xe9\x4c\xf3\x38\xa6\x38\x43\xcd\x7c\x1e\xc6\x99\x3f\x4c\x82\x90\xff\xd6\xa0\x59\x39\x4e\x2a\x3c\xd1\xce\xe3\x6a\x6f\x36\x5d\xbe\xf1\x41\xee\x4a\xc1\x8c\xf8\x8f\x0b\x5a\x13\x97\x4f\x46\xb6\xc4\x8c\xee\x97\x02\x4e\x2c\x21\xc5\x66\xa5\x57\xd2\xcc\xb9\xd1\x2d\x1a\x2f\x0c\xa7\x7d\x6e\x76\xa6\x4c\xbf\xbe\xd4\x8e\x76\xb0\x30\x58\x53\x9b\xbf\x20\x58\x48\x2f\xa2\x93\x4f\x3a\x15\x2d\xa4\xd0\x5d\xb4\xab\xdb\x5d\x6e\xbf\x4f\xd0\xe1\xa7\x74\x6d\xd5\x4a\xe7\xb9\xe6\x81\xe4\xcb\x9c\xf7\x60\x23\x1f\xa3\xe4\x10\x33\xe5\x5f\x7d\x5c\xc2\x5a\x6b\x34\xf2\x38\x25\x12\xc5\x38\x35\x1a\x99\x37\x57\x94\x2e\x29\x93\x73\xbe\x4f\xe2\x4d\x46\x0f\xb3\x86\xf2\x97\xcc\x5e\x83\xc4\x57\xdc\x40\xd2\xf6\x0e\x9a\x4f\x9a\xc7\x46\xcb\xee\x51\xe8\x31\x98\x39\xd3\x59\x6e\xe5\xef\x21\xf8\x66\x8d\xcc\xbc\x44\x84\xd7\xef\xf2\x8e\xe8\x1b\x30\xb9\x03\x28\xeb\xe1\xfe\xed\x19\xaf\x30\xf3\x05\x87\xbb\x9e\x35\x71\x3b\x56\xb7\xbb\x1b\xdc\x1f\x06\x60\xee\x57\xb7\xef\xcd\xc9\x00\x15\xfc\x03\xbb\xa7\x84\xf5\xbb\xec\x7e\xee\x17\x7b\x47\x41\xb4\xd9\xfe\xab\xf0\xe0\x29\x45\xd7\xd6\x90\x1b\x64\xdc\x98\x3a\xf5\xef\x16\x8d\xf6\x90\xfe\x3d\x7f\x56\x0f\x64\xa3\x63\xd6\x67\x69\xa3\x6b\xd7\xe3\xa8\x31\xec\xd7\xa3\xeb\x46\xff\x79\x3d\xcd\x1b\xf6\xb4\xfe\xad\xd7\xf8\xd9\xb8\x2e\x55\xc3\x74\xea\xab\xac\x71\x66\xd7\x57\x51\x63\xdc\xaf\x5f\xce\x1b\x67\xbd\x3a\x26\xb5\x26\x7c\xc1\x46\xb2\x4d\x44\xe7\x50\x2d\xea\xbf\xfd\xa7\x9f\xff\xe6\xdf\xff\xf4\x37\xbf\xfa\xc7\x1f\xff\xfc\x8f\xeb\xbf\xfd\xf5\xf7\xff\xf5\xf7\x7f\x56\xbc\x74\x64\x9e\x29\x7f\x51\xef\xa6\x5e\xfc\xc3\xdf\x79\xa1\xaa\x0f\x25\x6a\x7a\x70\xb3\x40\xd5\xfb\x5e\x76\x1d\xca\xff\xf8\x9b\xbc\xfe\xf6\xaf\xdf\xfd\xd1\xbb\xef\xdf\x7d\xff\xf6\x5f\xdf\xfe\xea\xed\xaf\xeb\x3f\xfe\xc5\xdf\xfe\xf8\x97\xff\xf0\x9f\xbf\xf8\xab\xba\xa9\x56\xde\x0f\xbf\x4c\xa2\xfa\x18\x34\x35\x9f\xe7\x3f\xfc\x42\x81\xcc\x88\xb3\xd4\x53\x21\x35\x46\xea\x2a\xac\xbf\xfd\xe5\xbb\x3f\x79\xfb\x6f\x6f\xff\xe5\xed\x3f\xbf\xfb\xb9\x96\x51\xb7\x32\x2f\x0a\x89\x3a\x6a\xea\x15\xb0\x1a\xc8\x09\x88\x08\xa2\x96\xbb\x42\x40\x63\xa0\x28\x54\x48\xa2\x8a\x17\x06\x23\xc5\x88\x19\x0c\x17\x1e\xbf\x5b\x18\x8c\x19\x3f\x36\x26\x2f\x0c\xc6\x8e\xff\xa0\xc7\x60\x00\xc9\xf5\x52\x83\x51\xc4\x63\x1c\x19\x0c\x25\xfd\x01\xc2\xb5\xc1\x78\xd2\xdd\x63\x6e\x30\xa8\x78\xfc\xd6\x33\x18\x59\x9a\x45\x19\x0c\x2f\x1e\xf9\xd7\x60\x98\xe9\x2d\x32\x18\x6b\xfa\x7b\xa0\xb9\xc1\x80\x53\x2d\x92\x41\xb3\x09\x45\x30\x78\xdd\xf9\xe8\x85\xdb\x05\x5b\x05\x77\x3b\xb3\xf5\x75\xeb\x26\x06\xfc\x77\x00\x00\x00\xff\xff\x69\xe4\xd5\x4b\x7a\x25\x00\x00") func confAppIniBytes() ([]byte, error) { return bindataRead( @@ -299,7 +299,7 @@ func confAppIni() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "conf/app.ini", size: 9420, mode: os.FileMode(420), modTime: time.Unix(1445760015, 0)} + info := bindataFileInfo{name: "conf/app.ini", size: 9594, mode: os.FileMode(420), modTime: time.Unix(1446489150, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -319,7 +319,7 @@ func confGitignoreActionscript() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "conf/gitignore/Actionscript", size: 300, mode: os.FileMode(420), modTime: time.Unix(1444419364, 0)} + info := bindataFileInfo{name: "conf/gitignore/Actionscript", size: 300, mode: os.FileMode(420), modTime: time.Unix(1441006036, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -339,7 +339,7 @@ func confGitignoreAda() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "conf/gitignore/Ada", size: 51, mode: os.FileMode(420), modTime: time.Unix(1444419364, 0)} + info := bindataFileInfo{name: "conf/gitignore/Ada", size: 51, mode: os.FileMode(420), modTime: time.Unix(1441006036, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -359,7 +359,7 @@ func confGitignoreAgda() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "conf/gitignore/Agda", size: 8, mode: os.FileMode(420), modTime: time.Unix(1444419364, 0)} + info := bindataFileInfo{name: "conf/gitignore/Agda", size: 8, mode: os.FileMode(420), modTime: time.Unix(1441006036, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -379,7 +379,7 @@ func confGitignoreAndroid() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "conf/gitignore/Android", size: 394, mode: os.FileMode(420), modTime: time.Unix(1444419364, 0)} + info := bindataFileInfo{name: "conf/gitignore/Android", size: 394, mode: os.FileMode(420), modTime: time.Unix(1441006036, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -399,7 +399,7 @@ func confGitignoreAnjuta() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "conf/gitignore/Anjuta", size: 78, mode: os.FileMode(420), modTime: time.Unix(1444419364, 0)} + info := bindataFileInfo{name: "conf/gitignore/Anjuta", size: 78, mode: os.FileMode(420), modTime: time.Unix(1441006036, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -419,7 +419,7 @@ func confGitignoreAppengine() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "conf/gitignore/AppEngine", size: 58, mode: os.FileMode(420), modTime: time.Unix(1444419364, 0)} + info := bindataFileInfo{name: "conf/gitignore/AppEngine", size: 58, mode: os.FileMode(420), modTime: time.Unix(1441006036, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -439,7 +439,7 @@ func confGitignoreAppceleratortitanium() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "conf/gitignore/AppceleratorTitanium", size: 45, mode: os.FileMode(420), modTime: time.Unix(1444419364, 0)} + info := bindataFileInfo{name: "conf/gitignore/AppceleratorTitanium", size: 45, mode: os.FileMode(420), modTime: time.Unix(1441006036, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -459,7 +459,7 @@ func confGitignoreArchlinuxpackages() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "conf/gitignore/ArchLinuxPackages", size: 75, mode: os.FileMode(420), modTime: time.Unix(1444419364, 0)} + info := bindataFileInfo{name: "conf/gitignore/ArchLinuxPackages", size: 75, mode: os.FileMode(420), modTime: time.Unix(1441006036, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -479,7 +479,7 @@ func confGitignoreArchives() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "conf/gitignore/Archives", size: 295, mode: os.FileMode(420), modTime: time.Unix(1444419364, 0)} + info := bindataFileInfo{name: "conf/gitignore/Archives", size: 295, mode: os.FileMode(420), modTime: time.Unix(1441006036, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -499,7 +499,7 @@ func confGitignoreAutotools() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "conf/gitignore/Autotools", size: 181, mode: os.FileMode(420), modTime: time.Unix(1444419364, 0)} + info := bindataFileInfo{name: "conf/gitignore/Autotools", size: 181, mode: os.FileMode(420), modTime: time.Unix(1441006036, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -519,7 +519,7 @@ func confGitignoreBricxcc() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "conf/gitignore/BricxCC", size: 72, mode: os.FileMode(420), modTime: time.Unix(1444419364, 0)} + info := bindataFileInfo{name: "conf/gitignore/BricxCC", size: 72, mode: os.FileMode(420), modTime: time.Unix(1441006036, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -539,7 +539,7 @@ func confGitignoreC() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "conf/gitignore/C", size: 246, mode: os.FileMode(420), modTime: time.Unix(1444419364, 0)} + info := bindataFileInfo{name: "conf/gitignore/C", size: 246, mode: os.FileMode(420), modTime: time.Unix(1441006036, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -559,7 +559,7 @@ func confGitignoreCSharp() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "conf/gitignore/C Sharp", size: 1521, mode: os.FileMode(420), modTime: time.Unix(1444419364, 0)} + info := bindataFileInfo{name: "conf/gitignore/C Sharp", size: 1521, mode: os.FileMode(420), modTime: time.Unix(1441006036, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -579,7 +579,7 @@ func confGitignoreC2() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "conf/gitignore/C++", size: 242, mode: os.FileMode(420), modTime: time.Unix(1444419364, 0)} + info := bindataFileInfo{name: "conf/gitignore/C++", size: 242, mode: os.FileMode(420), modTime: time.Unix(1441006036, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -599,7 +599,7 @@ func confGitignoreCfwheels() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "conf/gitignore/CFWheels", size: 205, mode: os.FileMode(420), modTime: time.Unix(1444419364, 0)} + info := bindataFileInfo{name: "conf/gitignore/CFWheels", size: 205, mode: os.FileMode(420), modTime: time.Unix(1441006036, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -619,7 +619,7 @@ func confGitignoreCmake() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "conf/gitignore/CMake", size: 89, mode: os.FileMode(420), modTime: time.Unix(1444419364, 0)} + info := bindataFileInfo{name: "conf/gitignore/CMake", size: 89, mode: os.FileMode(420), modTime: time.Unix(1441006036, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -639,7 +639,7 @@ func confGitignoreCuda() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "conf/gitignore/CUDA", size: 38, mode: os.FileMode(420), modTime: time.Unix(1444419364, 0)} + info := bindataFileInfo{name: "conf/gitignore/CUDA", size: 38, mode: os.FileMode(420), modTime: time.Unix(1441006036, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -659,7 +659,7 @@ func confGitignoreCvs() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "conf/gitignore/CVS", size: 39, mode: os.FileMode(420), modTime: time.Unix(1444419364, 0)} + info := bindataFileInfo{name: "conf/gitignore/CVS", size: 39, mode: os.FileMode(420), modTime: time.Unix(1441006036, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -679,7 +679,7 @@ func confGitignoreCakephp() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "conf/gitignore/CakePHP", size: 136, mode: os.FileMode(420), modTime: time.Unix(1444419364, 0)} + info := bindataFileInfo{name: "conf/gitignore/CakePHP", size: 136, mode: os.FileMode(420), modTime: time.Unix(1441006036, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -699,7 +699,7 @@ func confGitignoreChefcookbook() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "conf/gitignore/ChefCookbook", size: 77, mode: os.FileMode(420), modTime: time.Unix(1444419364, 0)} + info := bindataFileInfo{name: "conf/gitignore/ChefCookbook", size: 77, mode: os.FileMode(420), modTime: time.Unix(1441006036, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -719,7 +719,7 @@ func confGitignoreCloud9() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "conf/gitignore/Cloud9", size: 45, mode: os.FileMode(420), modTime: time.Unix(1444419364, 0)} + info := bindataFileInfo{name: "conf/gitignore/Cloud9", size: 45, mode: os.FileMode(420), modTime: time.Unix(1441006036, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -739,7 +739,7 @@ func confGitignoreCodeigniter() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "conf/gitignore/CodeIgniter", size: 106, mode: os.FileMode(420), modTime: time.Unix(1444419364, 0)} + info := bindataFileInfo{name: "conf/gitignore/CodeIgniter", size: 106, mode: os.FileMode(420), modTime: time.Unix(1441006036, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -759,7 +759,7 @@ func confGitignoreCodekit() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "conf/gitignore/CodeKit", size: 54, mode: os.FileMode(420), modTime: time.Unix(1444419364, 0)} + info := bindataFileInfo{name: "conf/gitignore/CodeKit", size: 54, mode: os.FileMode(420), modTime: time.Unix(1441006036, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -779,7 +779,7 @@ func confGitignoreCommonlisp() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "conf/gitignore/CommonLisp", size: 26, mode: os.FileMode(420), modTime: time.Unix(1444419364, 0)} + info := bindataFileInfo{name: "conf/gitignore/CommonLisp", size: 26, mode: os.FileMode(420), modTime: time.Unix(1441006036, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -799,7 +799,7 @@ func confGitignoreComposer() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "conf/gitignore/Composer", size: 250, mode: os.FileMode(420), modTime: time.Unix(1444419364, 0)} + info := bindataFileInfo{name: "conf/gitignore/Composer", size: 250, mode: os.FileMode(420), modTime: time.Unix(1441006036, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -819,7 +819,7 @@ func confGitignoreConcrete5() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "conf/gitignore/Concrete5", size: 42, mode: os.FileMode(420), modTime: time.Unix(1444419364, 0)} + info := bindataFileInfo{name: "conf/gitignore/Concrete5", size: 42, mode: os.FileMode(420), modTime: time.Unix(1441006036, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -839,7 +839,7 @@ func confGitignoreCoq() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "conf/gitignore/Coq", size: 18, mode: os.FileMode(420), modTime: time.Unix(1444419364, 0)} + info := bindataFileInfo{name: "conf/gitignore/Coq", size: 18, mode: os.FileMode(420), modTime: time.Unix(1441006036, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -859,7 +859,7 @@ func confGitignoreCraftcms() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "conf/gitignore/CraftCMS", size: 120, mode: os.FileMode(420), modTime: time.Unix(1444419364, 0)} + info := bindataFileInfo{name: "conf/gitignore/CraftCMS", size: 120, mode: os.FileMode(420), modTime: time.Unix(1441006036, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -879,7 +879,7 @@ func confGitignoreDm() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "conf/gitignore/DM", size: 29, mode: os.FileMode(420), modTime: time.Unix(1444419364, 0)} + info := bindataFileInfo{name: "conf/gitignore/DM", size: 29, mode: os.FileMode(420), modTime: time.Unix(1441006036, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -899,7 +899,7 @@ func confGitignoreDart() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "conf/gitignore/Dart", size: 234, mode: os.FileMode(420), modTime: time.Unix(1444419364, 0)} + info := bindataFileInfo{name: "conf/gitignore/Dart", size: 234, mode: os.FileMode(420), modTime: time.Unix(1441006036, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -919,7 +919,7 @@ func confGitignoreDarteditor() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "conf/gitignore/DartEditor", size: 19, mode: os.FileMode(420), modTime: time.Unix(1444419364, 0)} + info := bindataFileInfo{name: "conf/gitignore/DartEditor", size: 19, mode: os.FileMode(420), modTime: time.Unix(1441006036, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -939,7 +939,7 @@ func confGitignoreDelphi() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "conf/gitignore/Delphi", size: 1347, mode: os.FileMode(420), modTime: time.Unix(1444419364, 0)} + info := bindataFileInfo{name: "conf/gitignore/Delphi", size: 1347, mode: os.FileMode(420), modTime: time.Unix(1441006036, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -959,7 +959,7 @@ func confGitignoreDreamweaver() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "conf/gitignore/Dreamweaver", size: 47, mode: os.FileMode(420), modTime: time.Unix(1444419364, 0)} + info := bindataFileInfo{name: "conf/gitignore/Dreamweaver", size: 47, mode: os.FileMode(420), modTime: time.Unix(1441006036, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -979,7 +979,7 @@ func confGitignoreDrupal() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "conf/gitignore/Drupal", size: 605, mode: os.FileMode(420), modTime: time.Unix(1444419364, 0)} + info := bindataFileInfo{name: "conf/gitignore/Drupal", size: 605, mode: os.FileMode(420), modTime: time.Unix(1441006036, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -999,7 +999,7 @@ func confGitignoreEpiserver() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "conf/gitignore/EPiServer", size: 81, mode: os.FileMode(420), modTime: time.Unix(1444419364, 0)} + info := bindataFileInfo{name: "conf/gitignore/EPiServer", size: 81, mode: os.FileMode(420), modTime: time.Unix(1441006036, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -1019,7 +1019,7 @@ func confGitignoreEagle() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "conf/gitignore/Eagle", size: 401, mode: os.FileMode(420), modTime: time.Unix(1444419364, 0)} + info := bindataFileInfo{name: "conf/gitignore/Eagle", size: 401, mode: os.FileMode(420), modTime: time.Unix(1441006036, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -1039,7 +1039,7 @@ func confGitignoreEclipse() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "conf/gitignore/Eclipse", size: 458, mode: os.FileMode(420), modTime: time.Unix(1444419364, 0)} + info := bindataFileInfo{name: "conf/gitignore/Eclipse", size: 458, mode: os.FileMode(420), modTime: time.Unix(1441006036, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -1059,7 +1059,7 @@ func confGitignoreEiffelstudio() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "conf/gitignore/EiffelStudio", size: 35, mode: os.FileMode(420), modTime: time.Unix(1444419364, 0)} + info := bindataFileInfo{name: "conf/gitignore/EiffelStudio", size: 35, mode: os.FileMode(420), modTime: time.Unix(1441006036, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -1079,7 +1079,7 @@ func confGitignoreElisp() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "conf/gitignore/Elisp", size: 36, mode: os.FileMode(420), modTime: time.Unix(1444419364, 0)} + info := bindataFileInfo{name: "conf/gitignore/Elisp", size: 36, mode: os.FileMode(420), modTime: time.Unix(1441006036, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -1099,7 +1099,7 @@ func confGitignoreElixir() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "conf/gitignore/Elixir", size: 34, mode: os.FileMode(420), modTime: time.Unix(1444419364, 0)} + info := bindataFileInfo{name: "conf/gitignore/Elixir", size: 34, mode: os.FileMode(420), modTime: time.Unix(1441006036, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -1119,7 +1119,7 @@ func confGitignoreEmacs() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "conf/gitignore/Emacs", size: 320, mode: os.FileMode(420), modTime: time.Unix(1444419364, 0)} + info := bindataFileInfo{name: "conf/gitignore/Emacs", size: 320, mode: os.FileMode(420), modTime: time.Unix(1441006036, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -1139,7 +1139,7 @@ func confGitignoreEnsime() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "conf/gitignore/Ensime", size: 57, mode: os.FileMode(420), modTime: time.Unix(1444419364, 0)} + info := bindataFileInfo{name: "conf/gitignore/Ensime", size: 57, mode: os.FileMode(420), modTime: time.Unix(1441006036, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -1159,7 +1159,7 @@ func confGitignoreErlang() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "conf/gitignore/Erlang", size: 95, mode: os.FileMode(420), modTime: time.Unix(1444419364, 0)} + info := bindataFileInfo{name: "conf/gitignore/Erlang", size: 95, mode: os.FileMode(420), modTime: time.Unix(1441006036, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -1179,7 +1179,7 @@ func confGitignoreEspresso() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "conf/gitignore/Espresso", size: 9, mode: os.FileMode(420), modTime: time.Unix(1444419364, 0)} + info := bindataFileInfo{name: "conf/gitignore/Espresso", size: 9, mode: os.FileMode(420), modTime: time.Unix(1441006036, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -1199,7 +1199,7 @@ func confGitignoreExpressionengine() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "conf/gitignore/ExpressionEngine", size: 342, mode: os.FileMode(420), modTime: time.Unix(1444419364, 0)} + info := bindataFileInfo{name: "conf/gitignore/ExpressionEngine", size: 342, mode: os.FileMode(420), modTime: time.Unix(1441006036, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -1219,7 +1219,7 @@ func confGitignoreExtjs() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "conf/gitignore/ExtJs", size: 38, mode: os.FileMode(420), modTime: time.Unix(1444419364, 0)} + info := bindataFileInfo{name: "conf/gitignore/ExtJs", size: 38, mode: os.FileMode(420), modTime: time.Unix(1441006036, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -1239,7 +1239,7 @@ func confGitignoreFancy() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "conf/gitignore/Fancy", size: 12, mode: os.FileMode(420), modTime: time.Unix(1444419364, 0)} + info := bindataFileInfo{name: "conf/gitignore/Fancy", size: 12, mode: os.FileMode(420), modTime: time.Unix(1441006036, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -1259,7 +1259,7 @@ func confGitignoreFinale() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "conf/gitignore/Finale", size: 184, mode: os.FileMode(420), modTime: time.Unix(1444419364, 0)} + info := bindataFileInfo{name: "conf/gitignore/Finale", size: 184, mode: os.FileMode(420), modTime: time.Unix(1441006036, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -1279,7 +1279,7 @@ func confGitignoreFlexbuilder() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "conf/gitignore/FlexBuilder", size: 29, mode: os.FileMode(420), modTime: time.Unix(1444419364, 0)} + info := bindataFileInfo{name: "conf/gitignore/FlexBuilder", size: 29, mode: os.FileMode(420), modTime: time.Unix(1441006036, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -1299,7 +1299,7 @@ func confGitignoreForcedotcom() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "conf/gitignore/ForceDotCom", size: 57, mode: os.FileMode(420), modTime: time.Unix(1444419364, 0)} + info := bindataFileInfo{name: "conf/gitignore/ForceDotCom", size: 57, mode: os.FileMode(420), modTime: time.Unix(1441006036, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -1319,7 +1319,7 @@ func confGitignoreFuelphp() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "conf/gitignore/FuelPHP", size: 39, mode: os.FileMode(420), modTime: time.Unix(1444419364, 0)} + info := bindataFileInfo{name: "conf/gitignore/FuelPHP", size: 39, mode: os.FileMode(420), modTime: time.Unix(1441006036, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -1339,7 +1339,7 @@ func confGitignoreGwt() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "conf/gitignore/GWT", size: 395, mode: os.FileMode(420), modTime: time.Unix(1444419364, 0)} + info := bindataFileInfo{name: "conf/gitignore/GWT", size: 395, mode: os.FileMode(420), modTime: time.Unix(1441006036, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -1359,7 +1359,7 @@ func confGitignoreGcov() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "conf/gitignore/Gcov", size: 56, mode: os.FileMode(420), modTime: time.Unix(1444419364, 0)} + info := bindataFileInfo{name: "conf/gitignore/Gcov", size: 56, mode: os.FileMode(420), modTime: time.Unix(1441006036, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -1379,7 +1379,7 @@ func confGitignoreGitbook() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "conf/gitignore/GitBook", size: 353, mode: os.FileMode(420), modTime: time.Unix(1444419364, 0)} + info := bindataFileInfo{name: "conf/gitignore/GitBook", size: 353, mode: os.FileMode(420), modTime: time.Unix(1441006036, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -1399,7 +1399,7 @@ func confGitignoreGo() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "conf/gitignore/Go", size: 266, mode: os.FileMode(420), modTime: time.Unix(1444419364, 0)} + info := bindataFileInfo{name: "conf/gitignore/Go", size: 266, mode: os.FileMode(420), modTime: time.Unix(1441006036, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -1419,7 +1419,7 @@ func confGitignoreGradle() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "conf/gitignore/Gradle", size: 157, mode: os.FileMode(420), modTime: time.Unix(1444419364, 0)} + info := bindataFileInfo{name: "conf/gitignore/Gradle", size: 157, mode: os.FileMode(420), modTime: time.Unix(1441006036, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -1439,7 +1439,7 @@ func confGitignoreGrails() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "conf/gitignore/Grails", size: 583, mode: os.FileMode(420), modTime: time.Unix(1444419364, 0)} + info := bindataFileInfo{name: "conf/gitignore/Grails", size: 583, mode: os.FileMode(420), modTime: time.Unix(1441006036, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -1459,7 +1459,7 @@ func confGitignoreHaskell() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "conf/gitignore/Haskell", size: 135, mode: os.FileMode(420), modTime: time.Unix(1444419364, 0)} + info := bindataFileInfo{name: "conf/gitignore/Haskell", size: 135, mode: os.FileMode(420), modTime: time.Unix(1441006036, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -1479,7 +1479,7 @@ func confGitignoreIgorpro() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "conf/gitignore/IGORPro", size: 121, mode: os.FileMode(420), modTime: time.Unix(1444419364, 0)} + info := bindataFileInfo{name: "conf/gitignore/IGORPro", size: 121, mode: os.FileMode(420), modTime: time.Unix(1441006036, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -1499,7 +1499,7 @@ func confGitignoreIpythonnotebook() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "conf/gitignore/IPythonNotebook", size: 37, mode: os.FileMode(420), modTime: time.Unix(1444419364, 0)} + info := bindataFileInfo{name: "conf/gitignore/IPythonNotebook", size: 37, mode: os.FileMode(420), modTime: time.Unix(1441006036, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -1519,7 +1519,7 @@ func confGitignoreIdris() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "conf/gitignore/Idris", size: 10, mode: os.FileMode(420), modTime: time.Unix(1444419364, 0)} + info := bindataFileInfo{name: "conf/gitignore/Idris", size: 10, mode: os.FileMode(420), modTime: time.Unix(1441006036, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -1539,7 +1539,7 @@ func confGitignoreJdeveloper() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "conf/gitignore/JDeveloper", size: 255, mode: os.FileMode(420), modTime: time.Unix(1444419364, 0)} + info := bindataFileInfo{name: "conf/gitignore/JDeveloper", size: 255, mode: os.FileMode(420), modTime: time.Unix(1441006036, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -1559,7 +1559,7 @@ func confGitignoreJava() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "conf/gitignore/Java", size: 189, mode: os.FileMode(420), modTime: time.Unix(1444419364, 0)} + info := bindataFileInfo{name: "conf/gitignore/Java", size: 189, mode: os.FileMode(420), modTime: time.Unix(1441006036, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -1579,7 +1579,7 @@ func confGitignoreJboss() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "conf/gitignore/Jboss", size: 509, mode: os.FileMode(420), modTime: time.Unix(1444419364, 0)} + info := bindataFileInfo{name: "conf/gitignore/Jboss", size: 509, mode: os.FileMode(420), modTime: time.Unix(1441006036, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -1599,7 +1599,7 @@ func confGitignoreJekyll() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "conf/gitignore/Jekyll", size: 37, mode: os.FileMode(420), modTime: time.Unix(1444419364, 0)} + info := bindataFileInfo{name: "conf/gitignore/Jekyll", size: 37, mode: os.FileMode(420), modTime: time.Unix(1441006036, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -1619,7 +1619,7 @@ func confGitignoreJetbrains() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "conf/gitignore/JetBrains", size: 860, mode: os.FileMode(420), modTime: time.Unix(1444419364, 0)} + info := bindataFileInfo{name: "conf/gitignore/JetBrains", size: 860, mode: os.FileMode(420), modTime: time.Unix(1441006036, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -1639,7 +1639,7 @@ func confGitignoreJoomla() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "conf/gitignore/Joomla", size: 22387, mode: os.FileMode(420), modTime: time.Unix(1444419364, 0)} + info := bindataFileInfo{name: "conf/gitignore/Joomla", size: 22387, mode: os.FileMode(420), modTime: time.Unix(1441006036, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -1659,7 +1659,7 @@ func confGitignoreKdevelop4() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "conf/gitignore/KDevelop4", size: 16, mode: os.FileMode(420), modTime: time.Unix(1444419364, 0)} + info := bindataFileInfo{name: "conf/gitignore/KDevelop4", size: 16, mode: os.FileMode(420), modTime: time.Unix(1441006036, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -1679,7 +1679,7 @@ func confGitignoreKate() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "conf/gitignore/Kate", size: 34, mode: os.FileMode(420), modTime: time.Unix(1444419364, 0)} + info := bindataFileInfo{name: "conf/gitignore/Kate", size: 34, mode: os.FileMode(420), modTime: time.Unix(1441006036, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -1699,7 +1699,7 @@ func confGitignoreKicad() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "conf/gitignore/KiCAD", size: 208, mode: os.FileMode(420), modTime: time.Unix(1444419364, 0)} + info := bindataFileInfo{name: "conf/gitignore/KiCAD", size: 208, mode: os.FileMode(420), modTime: time.Unix(1441006036, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -1719,7 +1719,7 @@ func confGitignoreKohana() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "conf/gitignore/Kohana", size: 39, mode: os.FileMode(420), modTime: time.Unix(1444419364, 0)} + info := bindataFileInfo{name: "conf/gitignore/Kohana", size: 39, mode: os.FileMode(420), modTime: time.Unix(1441006036, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -1739,7 +1739,7 @@ func confGitignoreLabview() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "conf/gitignore/LabVIEW", size: 142, mode: os.FileMode(420), modTime: time.Unix(1444419364, 0)} + info := bindataFileInfo{name: "conf/gitignore/LabVIEW", size: 142, mode: os.FileMode(420), modTime: time.Unix(1441006036, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -1759,7 +1759,7 @@ func confGitignoreLaravel() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "conf/gitignore/Laravel", size: 49, mode: os.FileMode(420), modTime: time.Unix(1444419364, 0)} + info := bindataFileInfo{name: "conf/gitignore/Laravel", size: 49, mode: os.FileMode(420), modTime: time.Unix(1441006036, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -1779,7 +1779,7 @@ func confGitignoreLazarus() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "conf/gitignore/Lazarus", size: 407, mode: os.FileMode(420), modTime: time.Unix(1444419364, 0)} + info := bindataFileInfo{name: "conf/gitignore/Lazarus", size: 407, mode: os.FileMode(420), modTime: time.Unix(1441006036, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -1799,7 +1799,7 @@ func confGitignoreLeiningen() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "conf/gitignore/Leiningen", size: 138, mode: os.FileMode(420), modTime: time.Unix(1444419364, 0)} + info := bindataFileInfo{name: "conf/gitignore/Leiningen", size: 138, mode: os.FileMode(420), modTime: time.Unix(1441006036, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -1819,7 +1819,7 @@ func confGitignoreLemonstand() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "conf/gitignore/LemonStand", size: 348, mode: os.FileMode(420), modTime: time.Unix(1444419364, 0)} + info := bindataFileInfo{name: "conf/gitignore/LemonStand", size: 348, mode: os.FileMode(420), modTime: time.Unix(1441006036, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -1839,7 +1839,7 @@ func confGitignoreLibreoffice() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "conf/gitignore/LibreOffice", size: 30, mode: os.FileMode(420), modTime: time.Unix(1444419364, 0)} + info := bindataFileInfo{name: "conf/gitignore/LibreOffice", size: 30, mode: os.FileMode(420), modTime: time.Unix(1441006036, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -1859,7 +1859,7 @@ func confGitignoreLilypond() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "conf/gitignore/Lilypond", size: 33, mode: os.FileMode(420), modTime: time.Unix(1444419364, 0)} + info := bindataFileInfo{name: "conf/gitignore/Lilypond", size: 33, mode: os.FileMode(420), modTime: time.Unix(1441006036, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -1879,7 +1879,7 @@ func confGitignoreLinux() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "conf/gitignore/Linux", size: 118, mode: os.FileMode(420), modTime: time.Unix(1444419364, 0)} + info := bindataFileInfo{name: "conf/gitignore/Linux", size: 118, mode: os.FileMode(420), modTime: time.Unix(1441006036, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -1899,7 +1899,7 @@ func confGitignoreLithium() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "conf/gitignore/Lithium", size: 28, mode: os.FileMode(420), modTime: time.Unix(1444419364, 0)} + info := bindataFileInfo{name: "conf/gitignore/Lithium", size: 28, mode: os.FileMode(420), modTime: time.Unix(1441006036, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -1919,7 +1919,7 @@ func confGitignoreLua() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "conf/gitignore/Lua", size: 324, mode: os.FileMode(420), modTime: time.Unix(1444419364, 0)} + info := bindataFileInfo{name: "conf/gitignore/Lua", size: 324, mode: os.FileMode(420), modTime: time.Unix(1441006036, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -1939,7 +1939,7 @@ func confGitignoreLyx() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "conf/gitignore/LyX", size: 75, mode: os.FileMode(420), modTime: time.Unix(1444419364, 0)} + info := bindataFileInfo{name: "conf/gitignore/LyX", size: 75, mode: os.FileMode(420), modTime: time.Unix(1441006036, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -1959,7 +1959,7 @@ func confGitignoreMagento() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "conf/gitignore/Magento", size: 2599, mode: os.FileMode(420), modTime: time.Unix(1444419364, 0)} + info := bindataFileInfo{name: "conf/gitignore/Magento", size: 2599, mode: os.FileMode(420), modTime: time.Unix(1441006036, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -1979,7 +1979,7 @@ func confGitignoreMatlab() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "conf/gitignore/Matlab", size: 360, mode: os.FileMode(420), modTime: time.Unix(1444419364, 0)} + info := bindataFileInfo{name: "conf/gitignore/Matlab", size: 360, mode: os.FileMode(420), modTime: time.Unix(1441006036, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -1999,7 +1999,7 @@ func confGitignoreMaven() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "conf/gitignore/Maven", size: 170, mode: os.FileMode(420), modTime: time.Unix(1444419364, 0)} + info := bindataFileInfo{name: "conf/gitignore/Maven", size: 170, mode: os.FileMode(420), modTime: time.Unix(1441006036, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -2019,7 +2019,7 @@ func confGitignoreMercurial() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "conf/gitignore/Mercurial", size: 50, mode: os.FileMode(420), modTime: time.Unix(1444419364, 0)} + info := bindataFileInfo{name: "conf/gitignore/Mercurial", size: 50, mode: os.FileMode(420), modTime: time.Unix(1441006036, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -2039,7 +2039,7 @@ func confGitignoreMercury() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "conf/gitignore/Mercury", size: 93, mode: os.FileMode(420), modTime: time.Unix(1444419364, 0)} + info := bindataFileInfo{name: "conf/gitignore/Mercury", size: 93, mode: os.FileMode(420), modTime: time.Unix(1441006036, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -2059,7 +2059,7 @@ func confGitignoreMetaprogrammingsystem() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "conf/gitignore/MetaProgrammingSystem", size: 391, mode: os.FileMode(420), modTime: time.Unix(1444419364, 0)} + info := bindataFileInfo{name: "conf/gitignore/MetaProgrammingSystem", size: 391, mode: os.FileMode(420), modTime: time.Unix(1441006036, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -2079,7 +2079,7 @@ func confGitignoreMicrosoftoffice() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "conf/gitignore/MicrosoftOffice", size: 88, mode: os.FileMode(420), modTime: time.Unix(1444419364, 0)} + info := bindataFileInfo{name: "conf/gitignore/MicrosoftOffice", size: 88, mode: os.FileMode(420), modTime: time.Unix(1441006036, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -2099,7 +2099,7 @@ func confGitignoreModelsim() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "conf/gitignore/ModelSim", size: 282, mode: os.FileMode(420), modTime: time.Unix(1444419364, 0)} + info := bindataFileInfo{name: "conf/gitignore/ModelSim", size: 282, mode: os.FileMode(420), modTime: time.Unix(1441006036, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -2119,7 +2119,7 @@ func confGitignoreMomentics() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "conf/gitignore/Momentics", size: 76, mode: os.FileMode(420), modTime: time.Unix(1444419364, 0)} + info := bindataFileInfo{name: "conf/gitignore/Momentics", size: 76, mode: os.FileMode(420), modTime: time.Unix(1441006036, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -2139,7 +2139,7 @@ func confGitignoreMonodevelop() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "conf/gitignore/MonoDevelop", size: 93, mode: os.FileMode(420), modTime: time.Unix(1444419364, 0)} + info := bindataFileInfo{name: "conf/gitignore/MonoDevelop", size: 93, mode: os.FileMode(420), modTime: time.Unix(1441006036, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -2159,7 +2159,7 @@ func confGitignoreNanoc() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "conf/gitignore/Nanoc", size: 197, mode: os.FileMode(420), modTime: time.Unix(1444419364, 0)} + info := bindataFileInfo{name: "conf/gitignore/Nanoc", size: 197, mode: os.FileMode(420), modTime: time.Unix(1441006036, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -2179,7 +2179,7 @@ func confGitignoreNetbeans() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "conf/gitignore/NetBeans", size: 96, mode: os.FileMode(420), modTime: time.Unix(1444419364, 0)} + info := bindataFileInfo{name: "conf/gitignore/NetBeans", size: 96, mode: os.FileMode(420), modTime: time.Unix(1441006036, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -2199,7 +2199,7 @@ func confGitignoreNim() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "conf/gitignore/Nim", size: 10, mode: os.FileMode(420), modTime: time.Unix(1444419364, 0)} + info := bindataFileInfo{name: "conf/gitignore/Nim", size: 10, mode: os.FileMode(420), modTime: time.Unix(1441006036, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -2219,7 +2219,7 @@ func confGitignoreNinja() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "conf/gitignore/Ninja", size: 23, mode: os.FileMode(420), modTime: time.Unix(1444419364, 0)} + info := bindataFileInfo{name: "conf/gitignore/Ninja", size: 23, mode: os.FileMode(420), modTime: time.Unix(1441006036, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -2239,7 +2239,7 @@ func confGitignoreNode() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "conf/gitignore/Node", size: 529, mode: os.FileMode(420), modTime: time.Unix(1444419364, 0)} + info := bindataFileInfo{name: "conf/gitignore/Node", size: 529, mode: os.FileMode(420), modTime: time.Unix(1441006036, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -2259,7 +2259,7 @@ func confGitignoreNotepadpp() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "conf/gitignore/NotepadPP", size: 30, mode: os.FileMode(420), modTime: time.Unix(1444419364, 0)} + info := bindataFileInfo{name: "conf/gitignore/NotepadPP", size: 30, mode: os.FileMode(420), modTime: time.Unix(1441006036, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -2279,7 +2279,7 @@ func confGitignoreOcaml() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "conf/gitignore/OCaml", size: 178, mode: os.FileMode(420), modTime: time.Unix(1444419364, 0)} + info := bindataFileInfo{name: "conf/gitignore/OCaml", size: 178, mode: os.FileMode(420), modTime: time.Unix(1441006036, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -2299,7 +2299,7 @@ func confGitignoreOsx() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "conf/gitignore/OSX", size: 356, mode: os.FileMode(420), modTime: time.Unix(1444419364, 0)} + info := bindataFileInfo{name: "conf/gitignore/OSX", size: 356, mode: os.FileMode(420), modTime: time.Unix(1441006036, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -2319,7 +2319,7 @@ func confGitignoreObjectiveC() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "conf/gitignore/Objective-C", size: 837, mode: os.FileMode(420), modTime: time.Unix(1444419364, 0)} + info := bindataFileInfo{name: "conf/gitignore/Objective-C", size: 837, mode: os.FileMode(420), modTime: time.Unix(1441006036, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -2339,7 +2339,7 @@ func confGitignoreOpa() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "conf/gitignore/Opa", size: 90, mode: os.FileMode(420), modTime: time.Unix(1444419364, 0)} + info := bindataFileInfo{name: "conf/gitignore/Opa", size: 90, mode: os.FileMode(420), modTime: time.Unix(1441006036, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -2359,7 +2359,7 @@ func confGitignoreOpencart() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "conf/gitignore/OpenCart", size: 115, mode: os.FileMode(420), modTime: time.Unix(1444419364, 0)} + info := bindataFileInfo{name: "conf/gitignore/OpenCart", size: 115, mode: os.FileMode(420), modTime: time.Unix(1441006036, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -2379,7 +2379,7 @@ func confGitignoreOracleforms() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "conf/gitignore/OracleForms", size: 100, mode: os.FileMode(420), modTime: time.Unix(1444419364, 0)} + info := bindataFileInfo{name: "conf/gitignore/OracleForms", size: 100, mode: os.FileMode(420), modTime: time.Unix(1441006036, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -2399,7 +2399,7 @@ func confGitignorePacker() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "conf/gitignore/Packer", size: 55, mode: os.FileMode(420), modTime: time.Unix(1444419364, 0)} + info := bindataFileInfo{name: "conf/gitignore/Packer", size: 55, mode: os.FileMode(420), modTime: time.Unix(1441006036, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -2419,7 +2419,7 @@ func confGitignorePerl() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "conf/gitignore/Perl", size: 191, mode: os.FileMode(420), modTime: time.Unix(1444419364, 0)} + info := bindataFileInfo{name: "conf/gitignore/Perl", size: 191, mode: os.FileMode(420), modTime: time.Unix(1441006036, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -2439,7 +2439,7 @@ func confGitignorePhalcon() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "conf/gitignore/Phalcon", size: 29, mode: os.FileMode(420), modTime: time.Unix(1444419364, 0)} + info := bindataFileInfo{name: "conf/gitignore/Phalcon", size: 29, mode: os.FileMode(420), modTime: time.Unix(1441006036, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -2459,7 +2459,7 @@ func confGitignorePlayframework() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "conf/gitignore/PlayFramework", size: 170, mode: os.FileMode(420), modTime: time.Unix(1444419364, 0)} + info := bindataFileInfo{name: "conf/gitignore/PlayFramework", size: 170, mode: os.FileMode(420), modTime: time.Unix(1441006036, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -2479,7 +2479,7 @@ func confGitignorePlone() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "conf/gitignore/Plone", size: 137, mode: os.FileMode(420), modTime: time.Unix(1444419364, 0)} + info := bindataFileInfo{name: "conf/gitignore/Plone", size: 137, mode: os.FileMode(420), modTime: time.Unix(1441006036, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -2499,7 +2499,7 @@ func confGitignorePrestashop() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "conf/gitignore/Prestashop", size: 483, mode: os.FileMode(420), modTime: time.Unix(1444419364, 0)} + info := bindataFileInfo{name: "conf/gitignore/Prestashop", size: 483, mode: os.FileMode(420), modTime: time.Unix(1441006036, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -2519,7 +2519,7 @@ func confGitignoreProcessing() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "conf/gitignore/Processing", size: 120, mode: os.FileMode(420), modTime: time.Unix(1444419364, 0)} + info := bindataFileInfo{name: "conf/gitignore/Processing", size: 120, mode: os.FileMode(420), modTime: time.Unix(1441006036, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -2539,7 +2539,7 @@ func confGitignorePython() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "conf/gitignore/Python", size: 713, mode: os.FileMode(420), modTime: time.Unix(1444419364, 0)} + info := bindataFileInfo{name: "conf/gitignore/Python", size: 713, mode: os.FileMode(420), modTime: time.Unix(1441006036, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -2559,7 +2559,7 @@ func confGitignoreQooxdoo() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "conf/gitignore/Qooxdoo", size: 58, mode: os.FileMode(420), modTime: time.Unix(1444419364, 0)} + info := bindataFileInfo{name: "conf/gitignore/Qooxdoo", size: 58, mode: os.FileMode(420), modTime: time.Unix(1441006036, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -2579,7 +2579,7 @@ func confGitignoreQt() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "conf/gitignore/Qt", size: 292, mode: os.FileMode(420), modTime: time.Unix(1444419364, 0)} + info := bindataFileInfo{name: "conf/gitignore/Qt", size: 292, mode: os.FileMode(420), modTime: time.Unix(1441006036, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -2599,7 +2599,7 @@ func confGitignoreR() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "conf/gitignore/R", size: 255, mode: os.FileMode(420), modTime: time.Unix(1444419364, 0)} + info := bindataFileInfo{name: "conf/gitignore/R", size: 255, mode: os.FileMode(420), modTime: time.Unix(1441006036, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -2619,7 +2619,7 @@ func confGitignoreRos() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "conf/gitignore/ROS", size: 493, mode: os.FileMode(420), modTime: time.Unix(1444419364, 0)} + info := bindataFileInfo{name: "conf/gitignore/ROS", size: 493, mode: os.FileMode(420), modTime: time.Unix(1441006036, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -2639,7 +2639,7 @@ func confGitignoreRails() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "conf/gitignore/Rails", size: 707, mode: os.FileMode(420), modTime: time.Unix(1444419364, 0)} + info := bindataFileInfo{name: "conf/gitignore/Rails", size: 707, mode: os.FileMode(420), modTime: time.Unix(1441006036, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -2659,7 +2659,7 @@ func confGitignoreRedcar() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "conf/gitignore/Redcar", size: 8, mode: os.FileMode(420), modTime: time.Unix(1444419364, 0)} + info := bindataFileInfo{name: "conf/gitignore/Redcar", size: 8, mode: os.FileMode(420), modTime: time.Unix(1441006036, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -2679,7 +2679,7 @@ func confGitignoreRedis() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "conf/gitignore/Redis", size: 51, mode: os.FileMode(420), modTime: time.Unix(1444419364, 0)} + info := bindataFileInfo{name: "conf/gitignore/Redis", size: 51, mode: os.FileMode(420), modTime: time.Unix(1441006036, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -2699,7 +2699,7 @@ func confGitignoreRhodesrhomobile() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "conf/gitignore/RhodesRhomobile", size: 77, mode: os.FileMode(420), modTime: time.Unix(1444419364, 0)} + info := bindataFileInfo{name: "conf/gitignore/RhodesRhomobile", size: 77, mode: os.FileMode(420), modTime: time.Unix(1441006036, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -2719,7 +2719,7 @@ func confGitignoreRuby() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "conf/gitignore/Ruby", size: 607, mode: os.FileMode(420), modTime: time.Unix(1444419364, 0)} + info := bindataFileInfo{name: "conf/gitignore/Ruby", size: 607, mode: os.FileMode(420), modTime: time.Unix(1441006036, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -2739,7 +2739,7 @@ func confGitignoreRust() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "conf/gitignore/Rust", size: 91, mode: os.FileMode(420), modTime: time.Unix(1444419364, 0)} + info := bindataFileInfo{name: "conf/gitignore/Rust", size: 91, mode: os.FileMode(420), modTime: time.Unix(1441006036, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -2759,7 +2759,7 @@ func confGitignoreSbt() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "conf/gitignore/SBT", size: 186, mode: os.FileMode(420), modTime: time.Unix(1444419364, 0)} + info := bindataFileInfo{name: "conf/gitignore/SBT", size: 186, mode: os.FileMode(420), modTime: time.Unix(1441006036, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -2779,7 +2779,7 @@ func confGitignoreScons() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "conf/gitignore/SCons", size: 90, mode: os.FileMode(420), modTime: time.Unix(1444419364, 0)} + info := bindataFileInfo{name: "conf/gitignore/SCons", size: 90, mode: os.FileMode(420), modTime: time.Unix(1441006036, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -2799,7 +2799,7 @@ func confGitignoreSvn() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "conf/gitignore/SVN", size: 6, mode: os.FileMode(420), modTime: time.Unix(1444419364, 0)} + info := bindataFileInfo{name: "conf/gitignore/SVN", size: 6, mode: os.FileMode(420), modTime: time.Unix(1441006036, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -2819,7 +2819,7 @@ func confGitignoreSass() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "conf/gitignore/Sass", size: 23, mode: os.FileMode(420), modTime: time.Unix(1444419364, 0)} + info := bindataFileInfo{name: "conf/gitignore/Sass", size: 23, mode: os.FileMode(420), modTime: time.Unix(1441006036, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -2839,7 +2839,7 @@ func confGitignoreScala() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "conf/gitignore/Scala", size: 185, mode: os.FileMode(420), modTime: time.Unix(1444419364, 0)} + info := bindataFileInfo{name: "conf/gitignore/Scala", size: 185, mode: os.FileMode(420), modTime: time.Unix(1441006036, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -2859,7 +2859,7 @@ func confGitignoreScrivener() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "conf/gitignore/Scrivener", size: 140, mode: os.FileMode(420), modTime: time.Unix(1444419364, 0)} + info := bindataFileInfo{name: "conf/gitignore/Scrivener", size: 140, mode: os.FileMode(420), modTime: time.Unix(1441006036, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -2879,7 +2879,7 @@ func confGitignoreSdcc() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "conf/gitignore/Sdcc", size: 55, mode: os.FileMode(420), modTime: time.Unix(1444419364, 0)} + info := bindataFileInfo{name: "conf/gitignore/Sdcc", size: 55, mode: os.FileMode(420), modTime: time.Unix(1441006036, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -2899,7 +2899,7 @@ func confGitignoreSeamgen() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "conf/gitignore/SeamGen", size: 961, mode: os.FileMode(420), modTime: time.Unix(1444419364, 0)} + info := bindataFileInfo{name: "conf/gitignore/SeamGen", size: 961, mode: os.FileMode(420), modTime: time.Unix(1441006036, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -2919,7 +2919,7 @@ func confGitignoreSketchup() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "conf/gitignore/SketchUp", size: 6, mode: os.FileMode(420), modTime: time.Unix(1444419364, 0)} + info := bindataFileInfo{name: "conf/gitignore/SketchUp", size: 6, mode: os.FileMode(420), modTime: time.Unix(1441006036, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -2939,7 +2939,7 @@ func confGitignoreSlickedit() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "conf/gitignore/SlickEdit", size: 323, mode: os.FileMode(420), modTime: time.Unix(1444419364, 0)} + info := bindataFileInfo{name: "conf/gitignore/SlickEdit", size: 323, mode: os.FileMode(420), modTime: time.Unix(1441006036, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -2959,7 +2959,7 @@ func confGitignoreStella() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "conf/gitignore/Stella", size: 207, mode: os.FileMode(420), modTime: time.Unix(1444419364, 0)} + info := bindataFileInfo{name: "conf/gitignore/Stella", size: 207, mode: os.FileMode(420), modTime: time.Unix(1441006036, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -2979,7 +2979,7 @@ func confGitignoreSublimetext() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "conf/gitignore/SublimeText", size: 354, mode: os.FileMode(420), modTime: time.Unix(1444419364, 0)} + info := bindataFileInfo{name: "conf/gitignore/SublimeText", size: 354, mode: os.FileMode(420), modTime: time.Unix(1441006036, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -2999,7 +2999,7 @@ func confGitignoreSugarcrm() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "conf/gitignore/SugarCRM", size: 734, mode: os.FileMode(420), modTime: time.Unix(1444419364, 0)} + info := bindataFileInfo{name: "conf/gitignore/SugarCRM", size: 734, mode: os.FileMode(420), modTime: time.Unix(1441006036, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -3019,7 +3019,7 @@ func confGitignoreSwift() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "conf/gitignore/Swift", size: 837, mode: os.FileMode(420), modTime: time.Unix(1444419364, 0)} + info := bindataFileInfo{name: "conf/gitignore/Swift", size: 837, mode: os.FileMode(420), modTime: time.Unix(1441006036, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -3039,7 +3039,7 @@ func confGitignoreSymfony() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "conf/gitignore/Symfony", size: 531, mode: os.FileMode(420), modTime: time.Unix(1444419364, 0)} + info := bindataFileInfo{name: "conf/gitignore/Symfony", size: 531, mode: os.FileMode(420), modTime: time.Unix(1441006036, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -3059,7 +3059,7 @@ func confGitignoreSymphonycms() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "conf/gitignore/SymphonyCMS", size: 90, mode: os.FileMode(420), modTime: time.Unix(1444419364, 0)} + info := bindataFileInfo{name: "conf/gitignore/SymphonyCMS", size: 90, mode: os.FileMode(420), modTime: time.Unix(1441006036, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -3079,7 +3079,7 @@ func confGitignoreSynopsysvcs() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "conf/gitignore/SynopsysVCS", size: 971, mode: os.FileMode(420), modTime: time.Unix(1444419364, 0)} + info := bindataFileInfo{name: "conf/gitignore/SynopsysVCS", size: 971, mode: os.FileMode(420), modTime: time.Unix(1441006036, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -3099,7 +3099,7 @@ func confGitignoreTags() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "conf/gitignore/Tags", size: 177, mode: os.FileMode(420), modTime: time.Unix(1444419364, 0)} + info := bindataFileInfo{name: "conf/gitignore/Tags", size: 177, mode: os.FileMode(420), modTime: time.Unix(1441006036, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -3119,7 +3119,7 @@ func confGitignoreTex() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "conf/gitignore/TeX", size: 1328, mode: os.FileMode(420), modTime: time.Unix(1444419364, 0)} + info := bindataFileInfo{name: "conf/gitignore/TeX", size: 1328, mode: os.FileMode(420), modTime: time.Unix(1441006036, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -3139,7 +3139,7 @@ func confGitignoreTextmate() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "conf/gitignore/TextMate", size: 28, mode: os.FileMode(420), modTime: time.Unix(1444419364, 0)} + info := bindataFileInfo{name: "conf/gitignore/TextMate", size: 28, mode: os.FileMode(420), modTime: time.Unix(1441006036, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -3159,7 +3159,7 @@ func confGitignoreTextpattern() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "conf/gitignore/Textpattern", size: 177, mode: os.FileMode(420), modTime: time.Unix(1444419364, 0)} + info := bindataFileInfo{name: "conf/gitignore/Textpattern", size: 177, mode: os.FileMode(420), modTime: time.Unix(1441006036, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -3179,7 +3179,7 @@ func confGitignoreTortoisegit() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "conf/gitignore/TortoiseGit", size: 38, mode: os.FileMode(420), modTime: time.Unix(1444419364, 0)} + info := bindataFileInfo{name: "conf/gitignore/TortoiseGit", size: 38, mode: os.FileMode(420), modTime: time.Unix(1441006036, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -3199,7 +3199,7 @@ func confGitignoreTurbogears2() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "conf/gitignore/TurboGears2", size: 202, mode: os.FileMode(420), modTime: time.Unix(1444419364, 0)} + info := bindataFileInfo{name: "conf/gitignore/TurboGears2", size: 202, mode: os.FileMode(420), modTime: time.Unix(1441006036, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -3219,7 +3219,7 @@ func confGitignoreTypo3() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "conf/gitignore/Typo3", size: 466, mode: os.FileMode(420), modTime: time.Unix(1444419364, 0)} + info := bindataFileInfo{name: "conf/gitignore/Typo3", size: 466, mode: os.FileMode(420), modTime: time.Unix(1441006036, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -3239,7 +3239,7 @@ func confGitignoreUmbraco() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "conf/gitignore/Umbraco", size: 536, mode: os.FileMode(420), modTime: time.Unix(1444419364, 0)} + info := bindataFileInfo{name: "conf/gitignore/Umbraco", size: 536, mode: os.FileMode(420), modTime: time.Unix(1441006036, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -3259,7 +3259,7 @@ func confGitignoreUnity() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "conf/gitignore/Unity", size: 267, mode: os.FileMode(420), modTime: time.Unix(1444419364, 0)} + info := bindataFileInfo{name: "conf/gitignore/Unity", size: 267, mode: os.FileMode(420), modTime: time.Unix(1441006036, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -3279,7 +3279,7 @@ func confGitignoreVvvv() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "conf/gitignore/VVVV", size: 57, mode: os.FileMode(420), modTime: time.Unix(1444419364, 0)} + info := bindataFileInfo{name: "conf/gitignore/VVVV", size: 57, mode: os.FileMode(420), modTime: time.Unix(1441006036, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -3299,7 +3299,7 @@ func confGitignoreVagrant() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "conf/gitignore/Vagrant", size: 10, mode: os.FileMode(420), modTime: time.Unix(1444419364, 0)} + info := bindataFileInfo{name: "conf/gitignore/Vagrant", size: 10, mode: os.FileMode(420), modTime: time.Unix(1441006036, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -3319,7 +3319,7 @@ func confGitignoreVim() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "conf/gitignore/Vim", size: 66, mode: os.FileMode(420), modTime: time.Unix(1444419364, 0)} + info := bindataFileInfo{name: "conf/gitignore/Vim", size: 66, mode: os.FileMode(420), modTime: time.Unix(1441006036, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -3339,7 +3339,7 @@ func confGitignoreVirtualenv() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "conf/gitignore/VirtualEnv", size: 151, mode: os.FileMode(420), modTime: time.Unix(1444419364, 0)} + info := bindataFileInfo{name: "conf/gitignore/VirtualEnv", size: 151, mode: os.FileMode(420), modTime: time.Unix(1441006036, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -3359,7 +3359,7 @@ func confGitignoreVisualstudio() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "conf/gitignore/VisualStudio", size: 3412, mode: os.FileMode(420), modTime: time.Unix(1444419364, 0)} + info := bindataFileInfo{name: "conf/gitignore/VisualStudio", size: 3412, mode: os.FileMode(420), modTime: time.Unix(1441006036, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -3379,7 +3379,7 @@ func confGitignoreVisualstudiocode() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "conf/gitignore/VisualStudioCode", size: 11, mode: os.FileMode(420), modTime: time.Unix(1444419364, 0)} + info := bindataFileInfo{name: "conf/gitignore/VisualStudioCode", size: 11, mode: os.FileMode(420), modTime: time.Unix(1441006036, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -3399,7 +3399,7 @@ func confGitignoreWaf() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "conf/gitignore/Waf", size: 87, mode: os.FileMode(420), modTime: time.Unix(1444419364, 0)} + info := bindataFileInfo{name: "conf/gitignore/Waf", size: 87, mode: os.FileMode(420), modTime: time.Unix(1441006036, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -3419,7 +3419,7 @@ func confGitignoreWebmethods() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "conf/gitignore/WebMethods", size: 424, mode: os.FileMode(420), modTime: time.Unix(1444419364, 0)} + info := bindataFileInfo{name: "conf/gitignore/WebMethods", size: 424, mode: os.FileMode(420), modTime: time.Unix(1441006036, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -3439,7 +3439,7 @@ func confGitignoreWindows() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "conf/gitignore/Windows", size: 211, mode: os.FileMode(420), modTime: time.Unix(1444419364, 0)} + info := bindataFileInfo{name: "conf/gitignore/Windows", size: 211, mode: os.FileMode(420), modTime: time.Unix(1441006036, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -3459,7 +3459,7 @@ func confGitignoreWordpress() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "conf/gitignore/WordPress", size: 297, mode: os.FileMode(420), modTime: time.Unix(1444419364, 0)} + info := bindataFileInfo{name: "conf/gitignore/WordPress", size: 297, mode: os.FileMode(420), modTime: time.Unix(1441006036, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -3479,7 +3479,7 @@ func confGitignoreXcode() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "conf/gitignore/Xcode", size: 361, mode: os.FileMode(420), modTime: time.Unix(1444419364, 0)} + info := bindataFileInfo{name: "conf/gitignore/Xcode", size: 361, mode: os.FileMode(420), modTime: time.Unix(1441006036, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -3499,7 +3499,7 @@ func confGitignoreXilinxise() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "conf/gitignore/XilinxISE", size: 566, mode: os.FileMode(420), modTime: time.Unix(1444419364, 0)} + info := bindataFileInfo{name: "conf/gitignore/XilinxISE", size: 566, mode: os.FileMode(420), modTime: time.Unix(1441006036, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -3519,7 +3519,7 @@ func confGitignoreXojo() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "conf/gitignore/Xojo", size: 160, mode: os.FileMode(420), modTime: time.Unix(1444419364, 0)} + info := bindataFileInfo{name: "conf/gitignore/Xojo", size: 160, mode: os.FileMode(420), modTime: time.Unix(1441006036, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -3539,7 +3539,7 @@ func confGitignoreYeoman() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "conf/gitignore/Yeoman", size: 52, mode: os.FileMode(420), modTime: time.Unix(1444419364, 0)} + info := bindataFileInfo{name: "conf/gitignore/Yeoman", size: 52, mode: os.FileMode(420), modTime: time.Unix(1441006036, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -3559,7 +3559,7 @@ func confGitignoreYii() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "conf/gitignore/Yii", size: 120, mode: os.FileMode(420), modTime: time.Unix(1444419364, 0)} + info := bindataFileInfo{name: "conf/gitignore/Yii", size: 120, mode: os.FileMode(420), modTime: time.Unix(1441006036, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -3579,7 +3579,7 @@ func confGitignoreZendframework() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "conf/gitignore/ZendFramework", size: 217, mode: os.FileMode(420), modTime: time.Unix(1444419364, 0)} + info := bindataFileInfo{name: "conf/gitignore/ZendFramework", size: 217, mode: os.FileMode(420), modTime: time.Unix(1441006036, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -3599,7 +3599,7 @@ func confGitignoreZephir() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "conf/gitignore/Zephir", size: 387, mode: os.FileMode(420), modTime: time.Unix(1444419364, 0)} + info := bindataFileInfo{name: "conf/gitignore/Zephir", size: 387, mode: os.FileMode(420), modTime: time.Unix(1441006036, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -3619,7 +3619,7 @@ func confLicenseAbstylesLicense() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "conf/license/Abstyles License", size: 730, mode: os.FileMode(420), modTime: time.Unix(1444419364, 0)} + info := bindataFileInfo{name: "conf/license/Abstyles License", size: 730, mode: os.FileMode(420), modTime: time.Unix(1441006036, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -3639,7 +3639,7 @@ func confLicenseAcademicFreeLicenseV11() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "conf/license/Academic Free License v1.1", size: 4660, mode: os.FileMode(420), modTime: time.Unix(1444419364, 0)} + info := bindataFileInfo{name: "conf/license/Academic Free License v1.1", size: 4660, mode: os.FileMode(420), modTime: time.Unix(1441006036, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -3659,7 +3659,7 @@ func confLicenseAcademicFreeLicenseV12() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "conf/license/Academic Free License v1.2", size: 4949, mode: os.FileMode(420), modTime: time.Unix(1444419364, 0)} + info := bindataFileInfo{name: "conf/license/Academic Free License v1.2", size: 4949, mode: os.FileMode(420), modTime: time.Unix(1441006036, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -3679,7 +3679,7 @@ func confLicenseAcademicFreeLicenseV20() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "conf/license/Academic Free License v2.0", size: 8937, mode: os.FileMode(420), modTime: time.Unix(1444419364, 0)} + info := bindataFileInfo{name: "conf/license/Academic Free License v2.0", size: 8937, mode: os.FileMode(420), modTime: time.Unix(1441006036, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -3699,7 +3699,7 @@ func confLicenseAcademicFreeLicenseV21() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "conf/license/Academic Free License v2.1", size: 8922, mode: os.FileMode(420), modTime: time.Unix(1444419364, 0)} + info := bindataFileInfo{name: "conf/license/Academic Free License v2.1", size: 8922, mode: os.FileMode(420), modTime: time.Unix(1441006036, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -3719,7 +3719,7 @@ func confLicenseAcademicFreeLicenseV30() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "conf/license/Academic Free License v3.0", size: 10306, mode: os.FileMode(420), modTime: time.Unix(1444419364, 0)} + info := bindataFileInfo{name: "conf/license/Academic Free License v3.0", size: 10306, mode: os.FileMode(420), modTime: time.Unix(1441006036, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -3739,7 +3739,7 @@ func confLicenseAfferoGeneralPublicLicenseV10() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "conf/license/Affero General Public License v1.0", size: 15837, mode: os.FileMode(420), modTime: time.Unix(1444419364, 0)} + info := bindataFileInfo{name: "conf/license/Affero General Public License v1.0", size: 15837, mode: os.FileMode(420), modTime: time.Unix(1441006036, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -3759,7 +3759,7 @@ func confLicenseApacheLicense10() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "conf/license/Apache License 1.0", size: 2475, mode: os.FileMode(420), modTime: time.Unix(1444419364, 0)} + info := bindataFileInfo{name: "conf/license/Apache License 1.0", size: 2475, mode: os.FileMode(420), modTime: time.Unix(1441006036, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -3779,7 +3779,7 @@ func confLicenseApacheLicense11() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "conf/license/Apache License 1.1", size: 2508, mode: os.FileMode(420), modTime: time.Unix(1444419364, 0)} + info := bindataFileInfo{name: "conf/license/Apache License 1.1", size: 2508, mode: os.FileMode(420), modTime: time.Unix(1441006036, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -3799,7 +3799,7 @@ func confLicenseApacheLicense20() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "conf/license/Apache License 2.0", size: 10261, mode: os.FileMode(420), modTime: time.Unix(1444419364, 0)} + info := bindataFileInfo{name: "conf/license/Apache License 2.0", size: 10261, mode: os.FileMode(420), modTime: time.Unix(1441006036, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -3819,7 +3819,7 @@ func confLicenseArtisticLicense10() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "conf/license/Artistic License 1.0", size: 4789, mode: os.FileMode(420), modTime: time.Unix(1444419364, 0)} + info := bindataFileInfo{name: "conf/license/Artistic License 1.0", size: 4789, mode: os.FileMode(420), modTime: time.Unix(1441006036, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -3839,7 +3839,7 @@ func confLicenseArtisticLicense20() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "conf/license/Artistic License 2.0", size: 8661, mode: os.FileMode(420), modTime: time.Unix(1444419364, 0)} + info := bindataFileInfo{name: "conf/license/Artistic License 2.0", size: 8661, mode: os.FileMode(420), modTime: time.Unix(1441006036, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -3859,7 +3859,7 @@ func confLicenseBsd2ClauseLicense() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "conf/license/BSD 2-clause License", size: 1286, mode: os.FileMode(420), modTime: time.Unix(1444419364, 0)} + info := bindataFileInfo{name: "conf/license/BSD 2-clause License", size: 1286, mode: os.FileMode(420), modTime: time.Unix(1441006036, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -3879,7 +3879,7 @@ func confLicenseBsd3ClauseLicense() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "conf/license/BSD 3-clause License", size: 1480, mode: os.FileMode(420), modTime: time.Unix(1444419364, 0)} + info := bindataFileInfo{name: "conf/license/BSD 3-clause License", size: 1480, mode: os.FileMode(420), modTime: time.Unix(1441006036, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -3899,7 +3899,7 @@ func confLicenseBsd4ClauseLicense() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "conf/license/BSD 4-clause License", size: 1624, mode: os.FileMode(420), modTime: time.Unix(1444419364, 0)} + info := bindataFileInfo{name: "conf/license/BSD 4-clause License", size: 1624, mode: os.FileMode(420), modTime: time.Unix(1441006036, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -3919,7 +3919,7 @@ func confLicenseCreativeCommonsCc010Universal() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "conf/license/Creative Commons CC0 1.0 Universal", size: 6894, mode: os.FileMode(420), modTime: time.Unix(1444419364, 0)} + info := bindataFileInfo{name: "conf/license/Creative Commons CC0 1.0 Universal", size: 6894, mode: os.FileMode(420), modTime: time.Unix(1441006036, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -3939,7 +3939,7 @@ func confLicenseCreativeCommonsZeroV10Universal() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "conf/license/Creative Commons Zero v1.0 Universal", size: 6894, mode: os.FileMode(420), modTime: time.Unix(1444419364, 0)} + info := bindataFileInfo{name: "conf/license/Creative Commons Zero v1.0 Universal", size: 6894, mode: os.FileMode(420), modTime: time.Unix(1441006036, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -3959,7 +3959,7 @@ func confLicenseEclipsePublicLicense10() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "conf/license/Eclipse Public License 1.0", size: 11248, mode: os.FileMode(420), modTime: time.Unix(1444419364, 0)} + info := bindataFileInfo{name: "conf/license/Eclipse Public License 1.0", size: 11248, mode: os.FileMode(420), modTime: time.Unix(1441006036, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -3979,7 +3979,7 @@ func confLicenseEducationalCommunityLicenseV10() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "conf/license/Educational Community License v1.0", size: 2394, mode: os.FileMode(420), modTime: time.Unix(1444419364, 0)} + info := bindataFileInfo{name: "conf/license/Educational Community License v1.0", size: 2394, mode: os.FileMode(420), modTime: time.Unix(1441006036, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -3999,7 +3999,7 @@ func confLicenseEducationalCommunityLicenseV20() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "conf/license/Educational Community License v2.0", size: 11085, mode: os.FileMode(420), modTime: time.Unix(1444419364, 0)} + info := bindataFileInfo{name: "conf/license/Educational Community License v2.0", size: 11085, mode: os.FileMode(420), modTime: time.Unix(1441006036, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -4019,7 +4019,7 @@ func confLicenseGnuAfferoGeneralPublicLicenseV30() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "conf/license/GNU Affero General Public License v3.0", size: 33818, mode: os.FileMode(420), modTime: time.Unix(1444419364, 0)} + info := bindataFileInfo{name: "conf/license/GNU Affero General Public License v3.0", size: 33818, mode: os.FileMode(420), modTime: time.Unix(1441006036, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -4039,7 +4039,7 @@ func confLicenseGnuFreeDocumentationLicenseV11() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "conf/license/GNU Free Documentation License v1.1", size: 17912, mode: os.FileMode(420), modTime: time.Unix(1444419364, 0)} + info := bindataFileInfo{name: "conf/license/GNU Free Documentation License v1.1", size: 17912, mode: os.FileMode(420), modTime: time.Unix(1441006036, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -4059,7 +4059,7 @@ func confLicenseGnuFreeDocumentationLicenseV12() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "conf/license/GNU Free Documentation License v1.2", size: 20209, mode: os.FileMode(420), modTime: time.Unix(1444419364, 0)} + info := bindataFileInfo{name: "conf/license/GNU Free Documentation License v1.2", size: 20209, mode: os.FileMode(420), modTime: time.Unix(1441006036, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -4079,7 +4079,7 @@ func confLicenseGnuFreeDocumentationLicenseV13() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "conf/license/GNU Free Documentation License v1.3", size: 22732, mode: os.FileMode(420), modTime: time.Unix(1444419364, 0)} + info := bindataFileInfo{name: "conf/license/GNU Free Documentation License v1.3", size: 22732, mode: os.FileMode(420), modTime: time.Unix(1441006036, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -4099,7 +4099,7 @@ func confLicenseGnuGeneralPublicLicenseV10() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "conf/license/GNU General Public License v1.0", size: 12165, mode: os.FileMode(420), modTime: time.Unix(1444419364, 0)} + info := bindataFileInfo{name: "conf/license/GNU General Public License v1.0", size: 12165, mode: os.FileMode(420), modTime: time.Unix(1441006036, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -4119,7 +4119,7 @@ func confLicenseGnuGeneralPublicLicenseV20() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "conf/license/GNU General Public License v2.0", size: 17277, mode: os.FileMode(420), modTime: time.Unix(1444419364, 0)} + info := bindataFileInfo{name: "conf/license/GNU General Public License v2.0", size: 17277, mode: os.FileMode(420), modTime: time.Unix(1441006036, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -4139,7 +4139,7 @@ func confLicenseGnuGeneralPublicLicenseV30() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "conf/license/GNU General Public License v3.0", size: 34570, mode: os.FileMode(420), modTime: time.Unix(1444419364, 0)} + info := bindataFileInfo{name: "conf/license/GNU General Public License v3.0", size: 34570, mode: os.FileMode(420), modTime: time.Unix(1441006036, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -4159,7 +4159,7 @@ func confLicenseGnuLesserGeneralPublicLicenseV21() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "conf/license/GNU Lesser General Public License v2.1", size: 25885, mode: os.FileMode(420), modTime: time.Unix(1444419364, 0)} + info := bindataFileInfo{name: "conf/license/GNU Lesser General Public License v2.1", size: 25885, mode: os.FileMode(420), modTime: time.Unix(1441006036, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -4179,7 +4179,7 @@ func confLicenseGnuLesserGeneralPublicLicenseV30() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "conf/license/GNU Lesser General Public License v3.0", size: 7355, mode: os.FileMode(420), modTime: time.Unix(1444419364, 0)} + info := bindataFileInfo{name: "conf/license/GNU Lesser General Public License v3.0", size: 7355, mode: os.FileMode(420), modTime: time.Unix(1441006036, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -4199,7 +4199,7 @@ func confLicenseGnuLibraryGeneralPublicLicenseV20() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "conf/license/GNU Library General Public License v2.0", size: 24758, mode: os.FileMode(420), modTime: time.Unix(1444419364, 0)} + info := bindataFileInfo{name: "conf/license/GNU Library General Public License v2.0", size: 24758, mode: os.FileMode(420), modTime: time.Unix(1441006036, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -4219,7 +4219,7 @@ func confLicenseIscLicense() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "conf/license/ISC license", size: 823, mode: os.FileMode(420), modTime: time.Unix(1444419364, 0)} + info := bindataFileInfo{name: "conf/license/ISC license", size: 823, mode: os.FileMode(420), modTime: time.Unix(1441006036, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -4239,7 +4239,7 @@ func confLicenseMitLicense() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "conf/license/MIT License", size: 1077, mode: os.FileMode(420), modTime: time.Unix(1444419364, 0)} + info := bindataFileInfo{name: "conf/license/MIT License", size: 1077, mode: os.FileMode(420), modTime: time.Unix(1441006036, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -4259,7 +4259,7 @@ func confLicenseMozillaPublicLicense10() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "conf/license/Mozilla Public License 1.0", size: 18026, mode: os.FileMode(420), modTime: time.Unix(1444419364, 0)} + info := bindataFileInfo{name: "conf/license/Mozilla Public License 1.0", size: 18026, mode: os.FileMode(420), modTime: time.Unix(1441006036, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -4279,7 +4279,7 @@ func confLicenseMozillaPublicLicense11() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "conf/license/Mozilla Public License 1.1", size: 23361, mode: os.FileMode(420), modTime: time.Unix(1444419364, 0)} + info := bindataFileInfo{name: "conf/license/Mozilla Public License 1.1", size: 23361, mode: os.FileMode(420), modTime: time.Unix(1441006036, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -4299,12 +4299,12 @@ func confLicenseMozillaPublicLicense20() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "conf/license/Mozilla Public License 2.0", size: 14827, mode: os.FileMode(420), modTime: time.Unix(1444419364, 0)} + info := bindataFileInfo{name: "conf/license/Mozilla Public License 2.0", size: 14827, mode: os.FileMode(420), modTime: time.Unix(1441006036, 0)} a := &asset{bytes: bytes, info: info} return a, nil } -var _confLocaleTranslators = []byte("\x1f\x8b\x08\x00\x00\x09\x6e\x88\x00\xff\x54\x53\x4b\x6e\x1b\x49\x0c\xdd\xf7\x29\x08\x78\x3d\x05\x63\x06\x83\x19\x03\x0d\xa1\xda\x9e\x89\xe3\x8f\xec\x00\x72\x1c\x78\x49\x75\x97\xba\xa8\xae\x8f\x5c\x1f\x7d\xbc\xcb\x49\x72\x06\x6f\x82\xec\x6d\xdf\x2b\xec\x96\x14\x2b\x0b\xa9\xc8\xa7\x47\x16\xeb\x3d\xea\x08\xee\x34\x45\x98\x91\x51\x60\x28\xa6\x08\x68\x0c\x7c\xfa\x7c\x7a\x7d\x71\x06\xe4\x1a\x5a\x52\x93\xd1\x44\xd0\xb8\x24\xd7\x42\xed\x5d\x0a\x34\xcd\x49\x35\x43\xac\x5c\x82\xe4\x21\x69\x05\x29\xa0\x8b\x06\x13\x79\x27\x8a\x23\xf8\xbf\x27\x2a\xee\x17\x14\x37\xe2\xb6\x0b\x8d\x53\x95\xa8\x46\x03\x3e\x34\x2a\x88\xa2\xa8\x3a\xd2\x14\x3c\x3c\x54\xe7\xd5\xa4\xba\xba\x80\x72\x83\x6d\xbb\x49\x49\x05\x69\xbd\x25\x6c\x95\xa8\xbd\x1d\x15\x95\x51\x6b\x74\x5c\x04\x93\xa4\xc8\xe9\x97\xef\x33\x8e\xcb\x8e\x27\xc0\x2e\x49\xb3\xfe\x23\x8a\x46\xfd\xe2\xf1\x95\x63\x6c\x9d\x87\x12\xf7\x80\xb0\x53\x2b\x5b\x8b\x64\x76\x1d\x43\xd2\x39\x40\xc5\x13\xbb\x0d\x3a\x66\x0e\x80\x50\x02\x77\xd0\x21\xfb\x14\xc3\xeb\xf3\xdb\x37\xa8\x42\x83\xf0\xf0\xfa\x6c\x2c\x3e\xf5\x25\x0d\x6e\xa8\x8f\x5b\xb4\x3c\xf2\x41\xc1\x99\x0e\xac\xa6\x5f\x68\xb8\xa2\x38\x53\xa6\x81\xb2\xde\x43\xa2\xdb\x42\x87\xfc\xff\xd0\x91\x32\x30\x59\x28\xaa\xb5\x0a\x09\xca\x66\x40\x64\xdc\x23\x62\x61\x98\x66\x89\x55\xdd\xc0\x8d\x6f\x71\x03\xa5\x55\xb2\xc6\xb4\xd2\xbe\xf6\x8d\x12\x2d\x8e\x8a\xf3\xa0\x5a\xcf\x2a\xa1\x4b\xae\x57\xa8\x6d\xd4\x52\x1a\x5a\xaa\x41\x9e\x8f\x99\x2c\x7b\xf1\x05\xd9\xc9\x72\xc5\xdf\xda\xfe\x79\x7c\x7c\x22\xb5\x4f\xbb\x51\xc4\x7c\x31\x2a\xc8\x74\x2c\x9d\xea\xa1\x51\x71\x8d\xb3\x40\x5d\x84\xd2\x6c\x83\xc3\xa9\xaf\x31\x07\x82\xdb\x39\x1b\x4f\xcb\x0c\xe5\x5a\xae\x55\xfa\x47\xf8\xd0\xf2\x6f\xb9\xee\xcd\x5a\xf0\x2b\x56\xb1\x23\xae\xcf\xb5\x8c\xef\x80\x98\x85\x51\x31\xc6\xc0\xac\x5a\x93\x31\xfd\xb4\x96\x53\x19\x77\xa9\x20\xbe\x61\x4c\x6d\x66\x5d\x1a\xde\x4e\x84\xb3\x90\x59\x75\x3b\x40\xd2\xd6\x61\x2d\x2c\x3f\x6a\xec\x03\xaf\x21\x4c\x5e\x7e\x04\xe5\x22\x47\x65\x67\xc8\xfe\xfb\x9b\xbc\x37\x98\xd8\xe3\xca\x4c\xf3\x63\x56\x81\x3f\x50\xba\x1e\xc2\x77\xe4\xef\x43\xfe\x6d\x43\xc6\x3b\xb8\xcc\x8e\x58\xcd\xd2\x0f\xa9\x98\x0f\xe9\xc9\x5f\x87\xcc\x3b\xed\x2d\x46\xf8\x80\xce\xf1\xff\x63\x90\xdc\xb7\x51\xa4\x01\x96\xb3\x3d\x2c\x30\x31\xb7\xdf\x15\xe7\xe0\x14\x6b\x0d\x65\xda\x66\xd2\xe7\x64\xbc\xef\xb6\xed\xee\x0d\x36\xec\x51\x80\x7b\x8a\xd1\x67\x93\xd8\xfb\x25\x7b\xf5\xb8\x52\xc9\x1f\xde\xfb\x70\x39\xf1\x33\x5e\x93\xcd\x3c\xf2\x29\xb7\x87\x58\x28\xd1\xb1\xac\x6f\x5f\x73\x87\xf1\x09\x2e\xf9\xd1\x37\xa4\x2c\xf5\x73\x99\x01\x93\x6e\x9b\xf7\xeb\xf4\x33\x00\x00\xff\xff\x2b\x7e\x22\xe1\xfd\x03\x00\x00") +var _confLocaleTranslators = []byte("\x1f\x8b\x08\x00\x00\x09\x6e\x88\x00\xff\x6c\x54\xcd\x4e\x1b\x31\x10\xbe\xe7\x29\x46\xe2\x5c\x84\x5a\x55\x2d\xd2\x0a\x29\x40\xf9\x0f\x54\x4a\x4a\xc5\x71\xb2\xeb\x5d\x0f\xeb\x9f\x60\x7b\xf3\x77\xeb\x93\xf4\x19\xb8\x54\xbd\x03\xef\xd5\x99\xdd\x10\x50\x93\x03\xec\xf8\xf3\x37\x9e\xf1\x7c\x9f\xb3\x03\x23\x4d\x11\x4a\x32\x0a\x0c\xc5\x14\x01\x8d\x81\xef\x3f\x0e\xaf\xce\x8f\x80\x5c\x41\x53\x2a\x1a\x34\x11\x34\x4e\xc9\x55\x90\x7b\x97\x02\x8d\x9b\xa4\x8a\x36\x56\x2e\x41\xf2\x90\xb4\x82\x14\xd0\x45\x83\x89\xbc\xdb\xed\xed\xc0\x37\x21\x2a\x3e\x2f\x28\x3e\x88\x8f\x9d\x68\x1c\xab\x44\x39\x1a\xf0\xa1\x50\x61\xb7\xd7\xeb\xd7\xa4\x29\x78\xb8\xeb\x9f\xf6\x87\xfd\xcb\x73\xc8\x16\x58\x55\x8b\x94\x54\x80\xfe\x08\xac\xb7\x84\x95\x82\xe3\x9b\x11\x17\xb3\x07\xbd\xbe\x51\x73\x74\x9c\x0b\xc3\xa4\xc8\xe9\xa7\x3f\x25\xc7\x59\xcd\x8d\x60\x9d\x24\xc5\xcc\x3f\xc4\x96\x5f\xa8\x35\x9d\x1b\x18\x60\xe5\x3c\x64\xb8\x06\x84\x62\xc7\x56\x52\x2a\x8b\x64\xde\xd5\x90\xfd\x05\x5c\xab\x20\xf7\xcd\xb0\x5b\x32\xcf\x75\xc8\x8a\xd8\x7e\xc7\x81\xf9\x21\xe9\x86\xdb\xe5\xab\xbb\x05\x3a\xce\xe8\x00\xd9\xef\xea\xe0\xeb\xd6\x66\xb1\x43\x0c\xcf\x8f\x2f\xbf\xa1\x1f\x0a\x84\xbb\xe7\x47\x63\x71\x29\x27\x14\xb8\x20\x89\x2b\xb4\xdd\x28\xfe\xcb\x3b\xd2\x81\xc5\xf2\x13\x0d\x97\x14\x4b\x65\x0a\xc8\xf2\x35\x24\xac\x7a\x05\x6f\xa6\x1e\xa3\x23\x65\x60\x38\x51\x94\x6b\x15\x12\x64\x45\x87\x30\x35\xae\x41\xa1\x4f\x0c\xb3\x2d\xb1\x8c\x3c\x0e\x5f\xe1\x02\x32\xab\x84\x96\x63\x9a\x69\x9f\xfb\xa2\xbb\x5f\x85\x07\xbd\xd3\xa0\x2a\xcf\xb2\xa0\x4b\x4e\x24\xa9\x0a\x35\x6d\xf5\xa0\xa9\x5a\xeb\x71\x86\x96\x0a\x38\x51\xb4\xc4\x31\x16\x04\x99\x16\xa0\x5c\x6e\x93\xe1\xac\x21\xcb\xb6\xf9\x89\x22\xc2\x8c\xff\x6b\xfb\x71\x6f\x6f\x5f\x98\xda\xa7\x77\xdc\xf6\x73\x3f\x39\xe8\x91\xa9\x7d\xef\x0a\xcb\x40\x75\x84\xcc\xac\x82\xcd\x93\xaf\xb0\x09\x04\x37\xf7\xec\x56\x9a\x36\x90\xcd\x85\x33\x57\xe9\x4b\x4b\xf1\xa1\x62\x4a\x93\x8b\xc3\x26\x3c\x97\x59\xac\xb9\x51\xc3\x80\xcc\xe7\x1d\x26\xe4\x92\xf5\x1f\x60\x60\x72\xae\xc9\x18\xb9\xb8\x95\xa5\x50\x5f\x11\xe1\x11\x97\x1d\x50\xd5\xf0\x94\x79\x66\x06\xe1\x28\x34\xac\xb3\xed\x20\x71\x7a\x1e\xe6\x9d\x27\x79\x4c\x03\x1f\xf8\x5d\xc1\xf0\xe9\x6f\x50\x2e\x72\x94\xd5\x86\xec\xd7\x6d\x62\x5e\x63\x12\x5f\x99\x71\xf3\xd0\xa8\xc0\x7f\x90\x39\x81\xf0\x0d\xf9\xbc\x25\xed\xa6\x20\xe3\x1d\x5c\x34\x8e\x58\xb4\xcc\x77\xcb\x76\x90\x2d\xb4\xff\x69\x4b\xd2\x48\x7b\x8b\x11\x4e\xd0\x39\x7e\x07\xad\xc8\xbe\xea\x1e\x5b\xea\xb6\x38\xa7\x5c\xef\xb6\xce\x4f\x9c\x26\x46\x76\x0e\x0e\x31\xd7\x90\xa5\xd5\x8a\xa9\xbe\x49\xc6\xfb\xfa\xad\xc0\xad\x61\x53\x58\x0a\x70\x4b\x31\xfa\xc6\x24\xb6\xe2\x94\xc5\x7f\x98\x29\xfe\x89\xd9\x6c\xe8\xee\x62\xe8\x4b\xf6\xef\xe2\x3e\xca\x97\x09\xab\xa8\x35\x6f\x67\xbb\x9a\x15\x7a\xf9\xd5\xd4\x18\x97\x70\xc1\xa3\xba\x26\x65\x49\x7a\x37\x1d\x26\xef\x7a\x05\xad\x2c\xff\x2f\x00\x00\xff\xff\x13\x05\xe1\x39\x12\x05\x00\x00") func confLocaleTranslatorsBytes() ([]byte, error) { return bindataRead( @@ -4319,7 +4319,7 @@ func confLocaleTranslators() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "conf/locale/TRANSLATORS", size: 1021, mode: os.FileMode(420), modTime: time.Unix(1446398134, 0)} + info := bindataFileInfo{name: "conf/locale/TRANSLATORS", size: 1298, mode: os.FileMode(420), modTime: time.Unix(1446489150, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -4339,7 +4339,7 @@ func confLocaleLocale_bgBgIni() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "conf/locale/locale_bg-BG.ini", size: 68855, mode: os.FileMode(493), modTime: time.Unix(1446416878, 0)} + info := bindataFileInfo{name: "conf/locale/locale_bg-BG.ini", size: 68855, mode: os.FileMode(493), modTime: time.Unix(1446489150, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -4359,7 +4359,7 @@ func confLocaleLocale_deDeIni() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "conf/locale/locale_de-DE.ini", size: 48047, mode: os.FileMode(493), modTime: time.Unix(1446416880, 0)} + info := bindataFileInfo{name: "conf/locale/locale_de-DE.ini", size: 48047, mode: os.FileMode(493), modTime: time.Unix(1446489150, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -4379,7 +4379,7 @@ func confLocaleLocale_enUsIni() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "conf/locale/locale_en-US.ini", size: 44461, mode: os.FileMode(420), modTime: time.Unix(1446398361, 0)} + info := bindataFileInfo{name: "conf/locale/locale_en-US.ini", size: 44461, mode: os.FileMode(420), modTime: time.Unix(1446489150, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -4399,7 +4399,7 @@ func confLocaleLocale_esEsIni() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "conf/locale/locale_es-ES.ini", size: 49103, mode: os.FileMode(493), modTime: time.Unix(1446416876, 0)} + info := bindataFileInfo{name: "conf/locale/locale_es-ES.ini", size: 49103, mode: os.FileMode(493), modTime: time.Unix(1446489150, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -4419,7 +4419,7 @@ func confLocaleLocale_frFrIni() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "conf/locale/locale_fr-FR.ini", size: 49112, mode: os.FileMode(493), modTime: time.Unix(1446416876, 0)} + info := bindataFileInfo{name: "conf/locale/locale_fr-FR.ini", size: 49112, mode: os.FileMode(493), modTime: time.Unix(1446489150, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -4439,7 +4439,7 @@ func confLocaleLocale_itItIni() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "conf/locale/locale_it-IT.ini", size: 46483, mode: os.FileMode(493), modTime: time.Unix(1446416880, 0)} + info := bindataFileInfo{name: "conf/locale/locale_it-IT.ini", size: 46483, mode: os.FileMode(493), modTime: time.Unix(1446489150, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -4459,7 +4459,7 @@ func confLocaleLocale_jaJpIni() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "conf/locale/locale_ja-JP.ini", size: 54166, mode: os.FileMode(493), modTime: time.Unix(1446416882, 0)} + info := bindataFileInfo{name: "conf/locale/locale_ja-JP.ini", size: 54166, mode: os.FileMode(493), modTime: time.Unix(1446489151, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -4479,7 +4479,7 @@ func confLocaleLocale_lvLvIni() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "conf/locale/locale_lv-LV.ini", size: 49401, mode: os.FileMode(493), modTime: time.Unix(1446416896, 0)} + info := bindataFileInfo{name: "conf/locale/locale_lv-LV.ini", size: 49401, mode: os.FileMode(493), modTime: time.Unix(1446489151, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -4499,7 +4499,7 @@ func confLocaleLocale_nlNlIni() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "conf/locale/locale_nl-NL.ini", size: 45972, mode: os.FileMode(493), modTime: time.Unix(1446416884, 0)} + info := bindataFileInfo{name: "conf/locale/locale_nl-NL.ini", size: 45972, mode: os.FileMode(493), modTime: time.Unix(1446489151, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -4519,7 +4519,7 @@ func confLocaleLocale_plPlIni() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "conf/locale/locale_pl-PL.ini", size: 46629, mode: os.FileMode(493), modTime: time.Unix(1446416886, 0)} + info := bindataFileInfo{name: "conf/locale/locale_pl-PL.ini", size: 46629, mode: os.FileMode(493), modTime: time.Unix(1446489151, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -4539,7 +4539,7 @@ func confLocaleLocale_ptBrIni() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "conf/locale/locale_pt-BR.ini", size: 47705, mode: os.FileMode(493), modTime: time.Unix(1446416894, 0)} + info := bindataFileInfo{name: "conf/locale/locale_pt-BR.ini", size: 47705, mode: os.FileMode(493), modTime: time.Unix(1446489151, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -4559,7 +4559,7 @@ func confLocaleLocale_ruRuIni() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "conf/locale/locale_ru-RU.ini", size: 68306, mode: os.FileMode(493), modTime: time.Unix(1446416888, 0)} + info := bindataFileInfo{name: "conf/locale/locale_ru-RU.ini", size: 68306, mode: os.FileMode(493), modTime: time.Unix(1446489151, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -4579,7 +4579,7 @@ func confLocaleLocale_zhCnIni() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "conf/locale/locale_zh-CN.ini", size: 43623, mode: os.FileMode(493), modTime: time.Unix(1446416890, 0)} + info := bindataFileInfo{name: "conf/locale/locale_zh-CN.ini", size: 43623, mode: os.FileMode(493), modTime: time.Unix(1446489151, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -4599,7 +4599,7 @@ func confLocaleLocale_zhHkIni() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "conf/locale/locale_zh-HK.ini", size: 43960, mode: os.FileMode(493), modTime: time.Unix(1446416892, 0)} + info := bindataFileInfo{name: "conf/locale/locale_zh-HK.ini", size: 43960, mode: os.FileMode(493), modTime: time.Unix(1446489151, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -4619,7 +4619,7 @@ func confReadmeDefault() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "conf/readme/Default", size: 23, mode: os.FileMode(420), modTime: time.Unix(1444419364, 0)} + info := bindataFileInfo{name: "conf/readme/Default", size: 23, mode: os.FileMode(420), modTime: time.Unix(1441006036, 0)} a := &asset{bytes: bytes, info: info} return a, nil } diff --git a/modules/setting/setting.go b/modules/setting/setting.go index c2c124f8..a3527b6b 100644 --- a/modules/setting/setting.go +++ b/modules/setting/setting.go @@ -453,6 +453,7 @@ func newService() { Service.EnableCaptcha = sec.Key("ENABLE_CAPTCHA").MustBool() minimumKeySizes := Cfg.Section("service.minimum_key_sizes").Keys() + Service.MinimumKeySizes = make(map[string]int) for _, key := range minimumKeySizes { Service.MinimumKeySizes[key.Name()] = key.MustInt() } diff --git a/templates/.VERSION b/templates/.VERSION index 51973bc4..cc36c5ad 100644 --- a/templates/.VERSION +++ b/templates/.VERSION @@ -1 +1 @@ -0.6.20.1031 Beta \ No newline at end of file +0.6.20.1102 Beta \ No newline at end of file -- cgit v1.2.3 From 8eb4c3121abb890a176de895093e8bab6e113a9d Mon Sep 17 00:00:00 2001 From: Unknwon Date: Mon, 2 Nov 2015 18:54:47 -0500 Subject: work on #1880 --- README.md | 2 +- gogs.go | 2 +- models/publickey.go | 11 ++++++----- templates/.VERSION | 2 +- 4 files changed, 9 insertions(+), 8 deletions(-) (limited to 'gogs.go') diff --git a/README.md b/README.md index 98e1691d..3d7f5f5e 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.20 Beta +##### Current version: 0.6.21 Beta diff --git a/gogs.go b/gogs.go index a35b6553..1e95e946 100644 --- a/gogs.go +++ b/gogs.go @@ -17,7 +17,7 @@ import ( "github.com/gogits/gogs/modules/setting" ) -const APP_VER = "0.6.20.1102 Beta" +const APP_VER = "0.6.21.1102 Beta" func init() { runtime.GOMAXPROCS(runtime.NumCPU()) diff --git a/models/publickey.go b/models/publickey.go index 68e078ac..59a9f13e 100644 --- a/models/publickey.go +++ b/models/publickey.go @@ -218,9 +218,9 @@ func CheckPublicKeyString(content string) (_ string, err error) { tmpFile.Close() // Check if ssh-keygen recognizes its contents. - stdout, stderr, err := process.Exec("CheckPublicKeyString", "ssh-keygen", "-l", "-f", tmpPath) + stdout, stderr, err := process.Exec("CheckPublicKeyString", "ssh-keygen", "-lf", tmpPath) if err != nil { - return "", errors.New("ssh-keygen -l -f: " + stderr) + return "", errors.New("ssh-keygen -lf: " + stderr) } else if len(stdout) < 2 { return "", errors.New("ssh-keygen returned not enough output to evaluate the key: " + stdout) } @@ -241,7 +241,8 @@ func CheckPublicKeyString(content string) (_ string, err error) { if keySize == 0 { return "", errors.New("cannot get key size of the given key") } - keyType := strings.Trim(sshKeygenOutput[len(sshKeygenOutput)-1], " ()") + + keyType := strings.Trim(sshKeygenOutput[len(sshKeygenOutput)-1], " ()\n") if minimumKeySize := setting.Service.MinimumKeySizes[keyType]; minimumKeySize == 0 { return "", fmt.Errorf("unrecognized public key type: %s", keyType) } else if keySize < minimumKeySize { @@ -311,9 +312,9 @@ func addKey(e Engine, key *PublicKey) (err error) { if err = ioutil.WriteFile(tmpPath, []byte(key.Content), 0644); err != nil { return err } - stdout, stderr, err := process.Exec("AddPublicKey", "ssh-keygen", "-l", "-f", tmpPath) + stdout, stderr, err := process.Exec("AddPublicKey", "ssh-keygen", "-lf", tmpPath) if err != nil { - return errors.New("ssh-keygen -l -f: " + stderr) + return errors.New("ssh-keygen -lf: " + stderr) } else if len(stdout) < 2 { return errors.New("not enough output for calculating fingerprint: " + stdout) } diff --git a/templates/.VERSION b/templates/.VERSION index cc36c5ad..54cbd867 100644 --- a/templates/.VERSION +++ b/templates/.VERSION @@ -1 +1 @@ -0.6.20.1102 Beta \ No newline at end of file +0.6.21.1102 Beta \ No newline at end of file -- cgit v1.2.3 From bc8215721627fcdeaa23c6e3bf625e0c4e5c3407 Mon Sep 17 00:00:00 2001 From: Unknwon Date: Mon, 2 Nov 2015 19:55:24 -0500 Subject: fix #1078 --- README.md | 2 +- gogs.go | 2 +- models/git_diff.go | 40 ++++++++++++++++++++++++++++------------ templates/.VERSION | 2 +- templates/repo/diff_box.tmpl | 20 ++++++++++---------- 5 files changed, 41 insertions(+), 25 deletions(-) (limited to 'gogs.go') diff --git a/README.md b/README.md index 3d7f5f5e..61f11c66 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.21 Beta +##### Current version: 0.6.22 Beta
diff --git a/gogs.go b/gogs.go index 1e95e946..9f079369 100644 --- a/gogs.go +++ b/gogs.go @@ -17,7 +17,7 @@ import ( "github.com/gogits/gogs/modules/setting" ) -const APP_VER = "0.6.21.1102 Beta" +const APP_VER = "0.6.22.1102 Beta" func init() { runtime.GOMAXPROCS(runtime.NumCPU()) diff --git a/models/git_diff.go b/models/git_diff.go index 2335e468..3bf938ae 100644 --- a/models/git_diff.go +++ b/models/git_diff.go @@ -37,6 +37,7 @@ const ( DIFF_FILE_ADD = iota + 1 DIFF_FILE_CHANGE DIFF_FILE_DEL + DIFF_FILE_RENAME ) type DiffLine struct { @@ -57,12 +58,14 @@ type DiffSection struct { type DiffFile struct { Name string + OldName string Index int Addition, Deletion int Type int IsCreated bool IsDeleted bool IsBin bool + IsRenamed bool Sections []*DiffSection } @@ -158,17 +161,29 @@ func ParsePatch(pid int64, maxlines int, cmd *exec.Cmd, reader io.Reader) (*Diff // Get new file. if strings.HasPrefix(line, DIFF_HEAD) { - beg := len(DIFF_HEAD) - a := line[beg : (len(line)-beg)/2+beg] + middle := -1 + + // Note: In case file name is surrounded by double quotes(it happens only in git-shell). + hasQuote := strings.Index(line, `\"`) > -1 + if hasQuote { + line = strings.Replace(line, `\"`, `"`, -1) + middle = strings.Index(line, ` "b/`) + } else { + middle = strings.Index(line, " b/") + } - // In case file name is surrounded by double quotes(it happens only in git-shell). - if a[0] == '"' { + beg := len(DIFF_HEAD) + a := line[beg+2 : middle] + b := line[middle+3:] + if hasQuote { a = a[1 : len(a)-1] - a = strings.Replace(a, `\"`, `"`, -1) + b = b[1 : len(b)-1] } + fmt.Println(a, b) + curFile = &DiffFile{ - Name: a[strings.Index(a, "/")+1:], + Name: a, Index: len(diff.Files) + 1, Type: DIFF_FILE_CHANGE, Sections: make([]*DiffSection, 0, 10), @@ -180,16 +195,17 @@ func ParsePatch(pid int64, maxlines int, cmd *exec.Cmd, reader io.Reader) (*Diff switch { case strings.HasPrefix(scanner.Text(), "new file"): curFile.Type = DIFF_FILE_ADD - curFile.IsDeleted = false curFile.IsCreated = true case strings.HasPrefix(scanner.Text(), "deleted"): curFile.Type = DIFF_FILE_DEL - curFile.IsCreated = false curFile.IsDeleted = true case strings.HasPrefix(scanner.Text(), "index"): curFile.Type = DIFF_FILE_CHANGE - curFile.IsCreated = false - curFile.IsDeleted = false + case strings.HasPrefix(scanner.Text(), "similarity index 100%"): + curFile.Type = DIFF_FILE_RENAME + curFile.IsRenamed = true + curFile.OldName = curFile.Name + curFile.Name = b } if curFile.Type > 0 { break @@ -244,10 +260,10 @@ func GetDiffRange(repoPath, beforeCommitId string, afterCommitId string, maxline cmd = exec.Command("git", "show", afterCommitId) } else { c, _ := commit.Parent(0) - cmd = exec.Command("git", "diff", c.Id.String(), afterCommitId) + cmd = exec.Command("git", "diff", "-M", c.Id.String(), afterCommitId) } } else { - cmd = exec.Command("git", "diff", beforeCommitId, afterCommitId) + cmd = exec.Command("git", "diff", "-M", beforeCommitId, afterCommitId) } cmd.Dir = repoPath cmd.Stdout = wr diff --git a/templates/.VERSION b/templates/.VERSION index 54cbd867..2b9408d0 100644 --- a/templates/.VERSION +++ b/templates/.VERSION @@ -1 +1 @@ -0.6.21.1102 Beta \ No newline at end of file +0.6.22.1102 Beta \ No newline at end of file diff --git a/templates/repo/diff_box.tmpl b/templates/repo/diff_box.tmpl index f4509942..e5314343 100644 --- a/templates/repo/diff_box.tmpl +++ b/templates/repo/diff_box.tmpl @@ -36,18 +36,18 @@

- {{if not $file.IsBin}} - + {{.Addition}} - - - - - - {{.Deletion}} - {{else}} - {{$.i18n.Tr "repo.diff.bin"}} + {{if $file.IsBin}} + {{$.i18n.Tr "repo.diff.bin"}} + {{else if not $file.IsRenamed}} + + {{.Addition}} + + + + + - {{.Deletion}} {{end}}
- {{$file.Name}} + {{if $file.IsRenamed}}{{$file.OldName}} → {{end}}{{$file.Name}}
{{if $file.IsDeleted}} {{$.i18n.Tr "repo.diff.view_file"}} -- cgit v1.2.3 From 0af035c37e8b561662c93b163b3294b91be6ffac Mon Sep 17 00:00:00 2001 From: Unknwon Date: Tue, 3 Nov 2015 09:52:17 -0500 Subject: #1078 not show bin when rename a file --- gogs.go | 2 +- modules/base/template.go | 2 +- public/config.codekit | 18 +++++++------- public/css/gogs.css | 4 ++++ public/less/_repository.less | 6 +++++ templates/.VERSION | 2 +- templates/repo/diff_box.tmpl | 56 +++++++++++++++++++++++--------------------- 7 files changed, 51 insertions(+), 39 deletions(-) (limited to 'gogs.go') diff --git a/gogs.go b/gogs.go index 9f079369..343ee5aa 100644 --- a/gogs.go +++ b/gogs.go @@ -17,7 +17,7 @@ import ( "github.com/gogits/gogs/modules/setting" ) -const APP_VER = "0.6.22.1102 Beta" +const APP_VER = "0.6.22.1103 Beta" func init() { runtime.GOMAXPROCS(runtime.NumCPU()) diff --git a/modules/base/template.go b/modules/base/template.go index 0fd1af75..ff743e95 100644 --- a/modules/base/template.go +++ b/modules/base/template.go @@ -263,7 +263,7 @@ func ActionContent2Commits(act Actioner) *PushCommits { func DiffTypeToStr(diffType int) string { diffTypes := map[int]string{ - 1: "add", 2: "modify", 3: "del", + 1: "add", 2: "modify", 3: "del", 4: "rename", } return diffTypes[diffType] } diff --git a/public/config.codekit b/public/config.codekit index ecec2484..59d0c333 100644 --- a/public/config.codekit +++ b/public/config.codekit @@ -5,7 +5,7 @@ "\/css\/dropzone-4.0.1.css": { "fileType": 16, "ignore": 0, - "ignoreWasSetByUser": 0, + "ignoreWasSetByUser": 1, "inputAbbreviatedPath": "\/css\/dropzone-4.0.1.css", "outputAbbreviatedPath": "No Output Path", "outputPathIsOutsideProject": 0, @@ -74,11 +74,11 @@ "outputPathIsOutsideProject": 0, "outputPathIsSetByUser": 0 }, - "\/css\/semantic-2.1.3.min.css": { + "\/css\/semantic-2.1.5.min.css": { "fileType": 16, "ignore": 0, "ignoreWasSetByUser": 0, - "inputAbbreviatedPath": "\/css\/semantic-2.1.3.min.css", + "inputAbbreviatedPath": "\/css\/semantic-2.1.5.min.css", "outputAbbreviatedPath": "No Output Path", "outputPathIsOutsideProject": 0, "outputPathIsSetByUser": 0 @@ -204,12 +204,12 @@ "outputStyle": 1, "syntaxCheckerStyle": 1 }, - "\/js\/libs\/clipboard-1.3.1.min.js": { + "\/js\/libs\/clipboard-1.5.3.min.js": { "fileType": 64, "ignore": 0, "ignoreWasSetByUser": 0, - "inputAbbreviatedPath": "\/js\/libs\/clipboard-1.3.1.min.js", - "outputAbbreviatedPath": "\/js\/libs\/min\/clipboard-1.3.1.min-min.js", + "inputAbbreviatedPath": "\/js\/libs\/clipboard-1.5.3.min.js", + "outputAbbreviatedPath": "\/js\/libs\/min\/clipboard-1.5.3.min-min.js", "outputPathIsOutsideProject": 0, "outputPathIsSetByUser": 0, "outputStyle": 1, @@ -281,12 +281,12 @@ "outputPathIsSetByUser": 0, "processed": 0 }, - "\/js\/semantic-2.1.3.min.js": { + "\/js\/semantic-2.1.5.min.js": { "fileType": 64, "ignore": 0, "ignoreWasSetByUser": 0, - "inputAbbreviatedPath": "\/js\/semantic-2.1.3.min.js", - "outputAbbreviatedPath": "\/js\/min\/semantic-2.1.3.min-min.js", + "inputAbbreviatedPath": "\/js\/semantic-2.1.5.min.js", + "outputAbbreviatedPath": "\/js\/min\/semantic-2.1.5.min-min.js", "outputPathIsOutsideProject": 0, "outputPathIsSetByUser": 0, "outputStyle": 1, diff --git a/public/css/gogs.css b/public/css/gogs.css index 45223cb4..8448d618 100755 --- a/public/css/gogs.css +++ b/public/css/gogs.css @@ -2288,6 +2288,10 @@ ol.linenums { .repository .diff-file-box .code-diff tbody tr:hover pre { background-color: transparent !important; } +.repository .diff-file-box.file-content img { + max-width: 100%; + padding: 5px 5px 0 5px; +} .repository .code-view { overflow: auto; overflow-x: auto; diff --git a/public/less/_repository.less b/public/less/_repository.less index 7fdec66f..9035d558 100644 --- a/public/less/_repository.less +++ b/public/less/_repository.less @@ -584,6 +584,12 @@ } } } + } + &.file-content { + img { + max-width: 100%; + padding: 5px 5px 0 5px; + } } } .code-view { diff --git a/templates/.VERSION b/templates/.VERSION index 2b9408d0..364e36fc 100644 --- a/templates/.VERSION +++ b/templates/.VERSION @@ -1 +1 @@ -0.6.22.1102 Beta \ No newline at end of file +0.6.22.1103 Beta \ No newline at end of file diff --git a/templates/repo/diff_box.tmpl b/templates/repo/diff_box.tmpl index e5314343..a1d106b7 100644 --- a/templates/repo/diff_box.tmpl +++ b/templates/repo/diff_box.tmpl @@ -57,33 +57,35 @@

- {{$isImage := (call $.IsImageFile $file.Name)}} - {{if $isImage}} -
- -
- {{else}} -
-
- - {{range .Sections}} - {{range $k, $line := .Lines}} - - - - - - {{end}} - {{end}} - -
- {{if $line.LeftIdx}}{{$line.LeftIdx}}{{end}} - - {{if $line.RightIdx}}{{$line.RightIdx}}{{end}} - -
{{$line.Content}}
-
- + {{if not $file.IsRenamed}} + {{$isImage := (call $.IsImageFile $file.Name)}} + {{if and $isImage}} +
+ +
+ {{else}} +
+ + + {{range .Sections}} + {{range $k, $line := .Lines}} + + + + + + {{end}} + {{end}} + +
+ {{if $line.LeftIdx}}{{$line.LeftIdx}}{{end}} + + {{if $line.RightIdx}}{{$line.RightIdx}}{{end}} + +
{{$line.Content}}
+
+
+ {{end}} {{end}} -- cgit v1.2.3 From 25ec20d5251511ebd0b9e6b963e189b860c39704 Mon Sep 17 00:00:00 2001 From: Unknwon Date: Tue, 3 Nov 2015 17:25:39 -0500 Subject: #1838 update merge base before generate new patch --- README.md | 2 +- gogs.go | 2 +- models/git_diff.go | 4 +--- models/pull.go | 24 ++++++++++++++++++++--- modules/git/repo_pull.go | 50 +++++++++++++++++++++++++++++++++++------------- templates/.VERSION | 2 +- 6 files changed, 62 insertions(+), 22 deletions(-) (limited to 'gogs.go') diff --git a/README.md b/README.md index 61f11c66..a80f79f0 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.22 Beta +##### Current version: 0.6.23 Beta diff --git a/gogs.go b/gogs.go index 343ee5aa..a1e32a57 100644 --- a/gogs.go +++ b/gogs.go @@ -17,7 +17,7 @@ import ( "github.com/gogits/gogs/modules/setting" ) -const APP_VER = "0.6.22.1103 Beta" +const APP_VER = "0.6.23.1103 Beta" func init() { runtime.GOMAXPROCS(runtime.NumCPU()) diff --git a/models/git_diff.go b/models/git_diff.go index 3bf938ae..c1568a57 100644 --- a/models/git_diff.go +++ b/models/git_diff.go @@ -97,7 +97,7 @@ func ParsePatch(pid int64, maxlines int, cmd *exec.Cmd, reader io.Reader) (*Diff var i int for scanner.Scan() { line := scanner.Text() - // fmt.Println(i, line) + if strings.HasPrefix(line, "+++ ") || strings.HasPrefix(line, "--- ") { continue } @@ -180,8 +180,6 @@ func ParsePatch(pid int64, maxlines int, cmd *exec.Cmd, reader io.Reader) (*Diff b = b[1 : len(b)-1] } - fmt.Println(a, b) - curFile = &DiffFile{ Name: a, Index: len(diff.Files) + 1, diff --git a/models/pull.go b/models/pull.go index 0300c083..56af5f82 100644 --- a/models/pull.go +++ b/models/pull.go @@ -385,16 +385,18 @@ func (pr *PullRequest) UpdateCols(cols ...string) error { var PullRequestQueue = NewUniqueQueue(setting.Repository.PullRequestQueueLength) // UpdatePatch generates and saves a new patch. -func (pr *PullRequest) UpdatePatch() error { - if err := pr.GetHeadRepo(); err != nil { +func (pr *PullRequest) UpdatePatch() (err error) { + if err = pr.GetHeadRepo(); err != nil { return fmt.Errorf("GetHeadRepo: %v", err) } else if pr.HeadRepo == nil { log.Trace("PullRequest[%d].UpdatePatch: ignored cruppted data", pr.ID) return nil } - if err := pr.GetBaseRepo(); err != nil { + if err = pr.GetBaseRepo(); err != nil { return fmt.Errorf("GetBaseRepo: %v", err) + } else if err = pr.BaseRepo.GetOwner(); err != nil { + return fmt.Errorf("GetOwner: %v", err) } headRepoPath, err := pr.HeadRepo.RepoPath() @@ -407,6 +409,22 @@ func (pr *PullRequest) UpdatePatch() error { return fmt.Errorf("OpenRepository: %v", err) } + // Add a temporary remote. + tmpRemote := com.ToStr(time.Now().UnixNano()) + if err = headGitRepo.AddRemote(tmpRemote, RepoPath(pr.BaseRepo.Owner.Name, pr.BaseRepo.Name)); err != nil { + return fmt.Errorf("AddRemote: %v", err) + } + defer func() { + headGitRepo.RemoveRemote(tmpRemote) + }() + remoteBranch := "remotes/" + tmpRemote + "/" + pr.BaseBranch + pr.MergeBase, err = headGitRepo.GetMergeBase(remoteBranch, pr.HeadBranch) + if err != nil { + return fmt.Errorf("GetMergeBase: %v", err) + } else if err = pr.Update(); err != nil { + return fmt.Errorf("Update: %v", err) + } + patch, err := headGitRepo.GetPatch(pr.MergeBase, pr.HeadBranch) if err != nil { return fmt.Errorf("GetPatch: %v", err) diff --git a/modules/git/repo_pull.go b/modules/git/repo_pull.go index a9cc33a1..16b9536f 100644 --- a/modules/git/repo_pull.go +++ b/modules/git/repo_pull.go @@ -20,31 +20,55 @@ type PullRequestInfo struct { NumFiles int } +// GetMergeBase checks and returns merge base of two branches. +func (repo *Repository) GetMergeBase(remoteBranch, headBranch string) (string, error) { + // Get merge base commit. + stdout, stderr, err := com.ExecCmdDir(repo.Path, "git", "merge-base", remoteBranch, headBranch) + if err != nil { + return "", fmt.Errorf("get merge base: %v", concatenateError(err, stderr)) + } + return strings.TrimSpace(stdout), nil +} + +// AddRemote adds a remote to repository. +func (repo *Repository) AddRemote(name, path string) error { + _, stderr, err := com.ExecCmdDir(repo.Path, "git", "remote", "add", "-f", name, path) + if err != nil { + return fmt.Errorf("add remote(%s - %s): %v", name, path, concatenateError(err, stderr)) + } + return nil +} + +// RemoveRemote removes a remote from repository. +func (repo *Repository) RemoveRemote(name string) error { + _, stderr, err := com.ExecCmdDir(repo.Path, "git", "remote", "remove", name) + if err != nil { + return fmt.Errorf("remove remote(%s): %v", name, concatenateError(err, stderr)) + } + return nil +} + // GetPullRequestInfo generates and returns pull request information // between base and head branches of repositories. -func (repo *Repository) GetPullRequestInfo(basePath, baseBranch, headBranch string) (*PullRequestInfo, error) { +func (repo *Repository) GetPullRequestInfo(basePath, baseBranch, headBranch string) (_ *PullRequestInfo, err error) { // Add a temporary remote. tmpRemote := com.ToStr(time.Now().UnixNano()) - _, stderr, err := com.ExecCmdDir(repo.Path, "git", "remote", "add", "-f", tmpRemote, basePath) - if err != nil { - return nil, fmt.Errorf("add base as remote: %v", concatenateError(err, stderr)) + if err = repo.AddRemote(tmpRemote, basePath); err != nil { + return nil, fmt.Errorf("AddRemote: %v", err) } defer func() { - com.ExecCmdDir(repo.Path, "git", "remote", "remove", tmpRemote) + repo.RemoveRemote(tmpRemote) }() - prInfo := new(PullRequestInfo) - - var stdout string remoteBranch := "remotes/" + tmpRemote + "/" + baseBranch - // Get merge base commit. - stdout, stderr, err = com.ExecCmdDir(repo.Path, "git", "merge-base", remoteBranch, headBranch) + + prInfo := new(PullRequestInfo) + prInfo.MergeBase, err = repo.GetMergeBase(remoteBranch, headBranch) if err != nil { - return nil, fmt.Errorf("get merge base: %v", concatenateError(err, stderr)) + return nil, fmt.Errorf("GetMergeBase: %v", err) } - prInfo.MergeBase = strings.TrimSpace(stdout) - stdout, stderr, err = com.ExecCmdDir(repo.Path, "git", "log", prInfo.MergeBase+"..."+headBranch, prettyLogFormat) + stdout, stderr, err := com.ExecCmdDir(repo.Path, "git", "log", prInfo.MergeBase+"..."+headBranch, prettyLogFormat) if err != nil { return nil, fmt.Errorf("list diff logs: %v", concatenateError(err, stderr)) } diff --git a/templates/.VERSION b/templates/.VERSION index 364e36fc..815df4fe 100644 --- a/templates/.VERSION +++ b/templates/.VERSION @@ -1 +1 @@ -0.6.22.1103 Beta \ No newline at end of file +0.6.23.1103 Beta \ No newline at end of file -- cgit v1.2.3 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 --- README.md | 2 +- conf/locale/locale_de-DE.ini | 4 +++- conf/locale/locale_en-US.ini | 2 ++ conf/locale/locale_zh-CN.ini | 4 +++- conf/locale/locale_zh-HK.ini | 2 ++ gogs.go | 2 +- models/error.go | 44 +++++++++++++++++++++++++------------ models/user.go | 17 +++++++++++--- modules/auth/admin.go | 21 +++++++++--------- modules/auth/repo_form.go | 34 ++++++++++++++++++++++++++++ modules/bindata/bindata.go | 16 +++++++------- modules/middleware/repo.go | 2 +- routers/admin/users.go | 1 + routers/api/v1/repo.go | 33 ++++++++++++++-------------- routers/repo/repo.go | 35 ++++++++++++++--------------- templates/.VERSION | 2 +- templates/admin/user/edit.tmpl | 8 ++++++- templates/repo/settings/navbar.tmpl | 2 +- 18 files changed, 152 insertions(+), 79 deletions(-) (limited to 'gogs.go') diff --git a/README.md b/README.md index a80f79f0..59ba8e21 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.23 Beta +##### Current version: 0.6.24 Beta
diff --git a/conf/locale/locale_de-DE.ini b/conf/locale/locale_de-DE.ini index b540d318..646c247d 100755 --- a/conf/locale/locale_de-DE.ini +++ b/conf/locale/locale_de-DE.ini @@ -360,6 +360,7 @@ migrate_type_helper=Diese Repository wird ein Spiegelmirror镜像 migrate_repo=迁移仓库 migrate.clone_address=克隆地址 migrate.clone_address_desc=该地址可以是 HTTP/HTTPS/GIT URL 或本地服务器路径。 +migrate.permission_denied=您没有获得导入本地仓库的权限。 migrate.invalid_local_path=无效的本地路径,不存在或不是一个目录! forked_from=派生自 @@ -807,7 +808,8 @@ users.update_profile_success=该用户信息更新成功! users.edit_account=编辑用户信息 users.is_activated=该用户已被激活 users.is_admin=该用户具有管理员权限 -users.allow_git_hook=该帐户具有创建 Git 钩子的权限 +users.allow_git_hook=该用户具有创建 Git 钩子的权限 +users.allow_import_local=该用户具有导入本地仓库的权限 users.update_profile=更新用户信息 users.delete_account=删除该用户 users.still_own_repo=该帐户仍然是某些仓库的拥有者,您必须先转移或删除它们才能执行删除帐户操作! diff --git a/conf/locale/locale_zh-HK.ini b/conf/locale/locale_zh-HK.ini index 8ee07f4c..409ee379 100755 --- a/conf/locale/locale_zh-HK.ini +++ b/conf/locale/locale_zh-HK.ini @@ -360,6 +360,7 @@ migrate_type_helper=該倉庫將是一個 鏡像 migrate_repo=遷移倉庫 migrate.clone_address=複製地址 migrate.clone_address_desc=該地址可以是 HTTP/HTTPS/GIT URL 或本地服務器路徑。 +migrate.permission_denied=You are not allowed to import local repositories. migrate.invalid_local_path=無效的本地路徑,該路徑不存在或不是一個目錄! forked_from=派生自 @@ -808,6 +809,7 @@ users.edit_account=編輯用戶信息 users.is_activated=該用戶已被激活 users.is_admin=該用戶具有管理員權限 users.allow_git_hook=該帳戶具有創建 Git 鉤子的權限 +users.allow_import_local=This account has permissions to import local repositories users.update_profile=更新用戶信息 users.delete_account=刪除該用戶 users.still_own_repo=該帳戶仍然是某些倉庫的擁有者,您必須先轉移或刪除它們才能執行刪除帳戶操作! diff --git a/gogs.go b/gogs.go index a1e32a57..4cf63ac9 100644 --- a/gogs.go +++ b/gogs.go @@ -17,7 +17,7 @@ import ( "github.com/gogits/gogs/modules/setting" ) -const APP_VER = "0.6.23.1103 Beta" +const APP_VER = "0.6.24.1103 Beta" func init() { runtime.GOMAXPROCS(runtime.NumCPU()) 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) +} + // __ __ ___. .__ __ // / \ / \ ____\_ |__ | |__ ____ ____ | | __ // \ \/\/ // __ \| __ \| | \ / _ \ / _ \| |/ / diff --git a/models/user.go b/models/user.go index 4109f4d9..516c4249 100644 --- a/models/user.go +++ b/models/user.go @@ -75,9 +75,10 @@ type User struct { LastRepoVisibility bool // Permissions. - IsActive bool - IsAdmin bool - AllowGitHook bool + IsActive bool + IsAdmin bool + AllowGitHook bool + AllowImportLocal bool // Allow migrate repository by local path // Avatar. Avatar string `xorm:"VARCHAR(2048) NOT NULL"` @@ -107,6 +108,16 @@ func (u *User) AfterSet(colName string, _ xorm.Cell) { } } +// CanEditGitHook returns true if user can edit Git hooks. +func (u *User) CanEditGitHook() bool { + return u.IsAdmin || u.AllowGitHook +} + +// CanImportLocal returns true if user can migrate repository by local path. +func (u *User) CanImportLocal() bool { + return u.IsAdmin || u.AllowImportLocal +} + // EmailAdresses is the list of all email addresses of a user. Can contain the // primary email address, but is not obligatory type EmailAddress struct { diff --git a/modules/auth/admin.go b/modules/auth/admin.go index c2d47a44..1530212b 100644 --- a/modules/auth/admin.go +++ b/modules/auth/admin.go @@ -24,16 +24,17 @@ func (f *AdminCrateUserForm) Validate(ctx *macaron.Context, errs binding.Errors) } type AdminEditUserForm struct { - LoginType string `binding:"Required"` - LoginName string - FullName string `binding:"MaxSize(100)"` - Email string `binding:"Required;Email;MaxSize(254)"` - Password string `binding:"MaxSize(255)"` - Website string `binding:"MaxSize(50)"` - Location string `binding:"MaxSize(50)"` - Active bool - Admin bool - AllowGitHook bool + LoginType string `binding:"Required"` + LoginName string + FullName string `binding:"MaxSize(100)"` + Email string `binding:"Required;Email;MaxSize(254)"` + Password string `binding:"MaxSize(255)"` + Website string `binding:"MaxSize(50)"` + Location string `binding:"MaxSize(50)"` + Active bool + Admin bool + AllowGitHook bool + AllowImportLocal bool } func (f *AdminEditUserForm) Validate(ctx *macaron.Context, errs binding.Errors) binding.Errors { diff --git a/modules/auth/repo_form.go b/modules/auth/repo_form.go index 191117bb..766f540f 100644 --- a/modules/auth/repo_form.go +++ b/modules/auth/repo_form.go @@ -5,8 +5,14 @@ package auth import ( + "net/url" + "strings" + + "github.com/Unknwon/com" "github.com/go-macaron/binding" "gopkg.in/macaron.v1" + + "github.com/gogits/gogs/models" ) // _______________________________________ _________.______________________ _______________.___. @@ -46,6 +52,34 @@ func (f *MigrateRepoForm) Validate(ctx *macaron.Context, errs binding.Errors) bi return validate(errs, ctx.Data, f, ctx.Locale) } +// ParseRemoteAddr checks if given remote address is valid, +// and returns composed URL with needed username and passowrd. +// It also checks if given user has permission when remote address +// is actually a local path. +func (f MigrateRepoForm) ParseRemoteAddr(user *models.User) (string, error) { + remoteAddr := f.CloneAddr + + // Remote address can be HTTP/HTTPS/Git URL or local path. + if strings.HasPrefix(remoteAddr, "http://") || + strings.HasPrefix(remoteAddr, "https://") || + strings.HasPrefix(remoteAddr, "git://") { + u, err := url.Parse(remoteAddr) + if err != nil { + return "", models.ErrInvalidCloneAddr{IsURLError: true} + } + if len(f.AuthUsername)+len(f.AuthPassword) > 0 { + u.User = url.UserPassword(f.AuthUsername, f.AuthPassword) + } + remoteAddr = u.String() + } else if !user.CanImportLocal() { + return "", models.ErrInvalidCloneAddr{IsPermissionDenied: true} + } else if !com.IsDir(remoteAddr) { + return "", models.ErrInvalidCloneAddr{IsInvalidPath: true} + } + + return remoteAddr, nil +} + type RepoSettingForm struct { RepoName string `binding:"Required;AlphaDashDot;MaxSize(100)"` Description string `binding:"MaxSize(255)"` diff --git a/modules/bindata/bindata.go b/modules/bindata/bindata.go index d05ebe2c..0a32eed0 100644 --- a/modules/bindata/bindata.go +++ b/modules/bindata/bindata.go @@ -4344,7 +4344,7 @@ func confLocaleLocale_bgBgIni() (*asset, error) { return a, nil } -var _confLocaleLocale_deDeIni = []byte("\x1f\x8b\x08\x00\x00\x09\x6e\x88\x00\xff\xb4\xbd\xdb\x8e\xe4\x46\x92\x26\x7c\x5f\x40\xbd\x03\x55\x83\xfa\x25\x01\x19\x21\xa8\xf5\xff\xff\x2e\x04\x85\xb4\x59\xe7\x6a\xd5\x69\x94\x25\x09\x90\x20\x84\x18\x41\x8f\x08\x4e\x32\xc8\x68\x3a\x99\xa9\xcc\xc1\x00\x73\x31\x97\x7b\xbd\x18\x2c\x16\x98\x1b\x61\x1f\x41\x57\xba\xcb\x37\xe9\x27\x59\xfb\xcc\xcc\x4f\x24\x23\xab\xba\xb5\xd3\x40\xab\x32\xe8\x67\x73\x73\x73\x3b\x7b\x7e\x38\x2c\x0b\x63\xd7\x8b\xc7\x65\x9d\x99\xb2\xde\xe4\xeb\x9d\x69\x4f\x32\x6b\xaa\x95\xed\xb2\xad\xd9\x35\xb6\x33\x9d\x69\xb3\xa7\x65\x37\x3b\x33\xed\x45\xb9\x36\x27\xf4\xdd\xae\x77\x6d\x69\x56\xa6\xce\xa8\xe1\xd3\xe6\xee\x9d\xbb\x77\x76\xcd\xde\x2c\x9e\xd1\x7f\xee\xde\x29\x72\xbb\x5b\x35\x79\x5b\x2c\x6e\xfe\xd7\xca\xb4\xb6\x5c\xef\xba\xbb\x77\xcc\x2f\x87\xaa\x69\xcd\xe2\x71\x7b\xde\xd7\x85\xa9\xa9\x89\xa9\x0e\x8b\x67\x65\xb5\xa1\x36\xb6\xdc\xd6\xcb\xb2\x5e\x9c\xd6\x7b\x53\x71\x29\x7f\x69\xfa\x6e\x71\xba\x4a\x3e\xf5\x87\xc5\x37\x66\x5b\xda\x8e\x66\xd0\xe2\x6b\xcb\xbf\x4c\x3b\xf8\x7c\x69\x56\xb6\xec\xcc\xe2\x7b\xfa\xd7\xd0\x1f\x77\xef\x5c\x60\x2e\x4d\xbd\xf8\x4e\xfe\xbd\x7b\xe7\x90\x6f\xcd\xe2\x4c\x0a\x3b\xb3\x3f\x54\x39\xd5\xff\xae\x69\x2b\xfa\x7e\xf7\x4e\x95\xd7\xdb\x9e\x6b\x1c\x5a\x00\xe6\xee\x9d\x75\x6b\xa8\xc6\xb2\x36\x97\xb4\x0a\x1a\xb2\xaa\x4c\x3d\x9f\xcf\xef\xde\xe9\xad\x69\x97\x87\xb6\xd9\x94\x95\x59\xe6\x75\xb1\xdc\x63\xa5\x0f\x4c\xdd\x77\xd7\xa6\x95\x82\x8c\x56\x9d\xed\xcd\xae\x95\x75\x98\x82\x96\xbb\xcc\x2d\x60\xbf\x35\x55\xb3\xdd\x76\x59\x5e\x59\x80\x12\xbd\xd5\xf9\x3e\x74\x80\x1f\x04\xc0\x7d\x5e\x56\x8b\xc7\xb3\x97\xf4\x0f\xe6\x6e\xed\x65\x43\x30\x7e\x23\x7f\x74\x00\xc4\xb2\xbb\x3a\x18\xff\x25\x5b\x19\xdb\xdd\xfc\xda\x95\x5b\xc0\x63\x9d\x1f\xba\xf5\x2e\x5f\x3c\x94\x7f\x31\x50\x6b\x0e\x0d\xc1\xa8\x69\xaf\x08\x76\xee\xcf\xbb\x77\x9a\x76\x9b\xd7\xe5\x75\xde\x01\x58\xaf\xf9\x87\xe5\x1f\x77\xef\xec\xcb\xb6\x6d\x5a\x82\x48\x69\x68\xd2\x77\xef\x10\x28\x96\xe8\x65\xf1\xca\xf4\xc6\x66\x71\x2f\x28\xda\x97\xdb\x16\x30\x45\x69\xf6\x92\x7f\x70\x37\x28\xdb\x34\xed\xb9\x36\xcb\x57\x84\x52\x87\xbc\x02\xae\x8d\x3b\xa1\xe9\x48\x07\x83\xa9\xe4\x35\x6d\x0e\x97\xc6\x05\x84\x93\xb4\xcf\x97\xe8\x8c\x2a\xe5\xc5\x9e\xa0\x7c\xc8\x6b\x53\x2d\x4e\xf1\xf7\xec\x0d\xfe\xa6\x82\xf5\xba\xe9\xeb\x6e\x69\x4d\xd7\xd1\x06\xd8\xc5\xd7\x4d\xdd\x35\x74\x06\x78\x5b\xfb\x9a\x41\xe6\x0b\x1f\xa7\xdf\xaf\x9a\xde\x6f\xf7\xe2\x11\x35\xca\xde\xf0\x0f\x2d\xf1\xcd\x50\x64\xb2\x41\x63\x5e\x94\x5d\x6e\x8c\x29\xb0\xac\x72\x7b\x0e\x04\x04\x36\xf6\x55\x45\xc0\xfc\x0b\x41\xa4\xb3\x8b\x37\xf4\x8b\x40\x21\xbf\xee\xde\x29\xad\xa5\xbf\x16\xcf\xf9\x1f\x74\xb2\xce\xeb\x35\x16\xb5\x5a\xb5\x86\x90\x93\x3b\xfe\xd1\x9a\xbc\x5d\xef\x7e\xc2\xcc\xf1\xc7\xe2\xac\x47\x11\xa3\xe8\x91\xbd\x06\xae\x79\x3c\xd3\x61\x16\xb4\x9a\x55\x65\xf6\x34\x48\x53\x98\xc5\x43\xfa\x0f\xf7\x8e\x75\xe4\x55\x45\xdd\xeb\x5f\x8b\xe7\xf2\xaf\xee\x48\x57\x76\x04\x8f\xf8\x5b\xb6\xb9\xf9\xbd\xcd\xe8\xb8\x75\xfb\xbc\x02\x1a\x66\x67\x5d\x0e\x54\x2d\x9a\xf5\x39\x1d\x19\x50\x00\x1a\xff\x7b\x53\x83\x8c\x6c\x2d\x91\x93\xda\xb4\xbb\xbc\x5a\x65\x8f\xb8\x46\x56\xdd\xfc\xda\x6f\xba\x93\xac\x2a\x09\x33\x8a\xb2\xcd\x56\x65\xd7\x19\xfa\xcb\x64\x5f\xe4\x19\x75\xb6\x35\xdd\xe2\xde\x72\x45\x87\xf5\xfc\x5e\xb6\x6b\xcd\x66\x71\xef\xbe\xbd\xf7\xe5\xd3\xbe\x2c\x4c\x45\xe0\xb7\x5f\x7c\x92\x7f\x49\x24\xab\xce\xfb\xac\xe8\x09\x28\x27\x74\x2c\x2e\x9a\x96\x7e\x64\x25\xb5\xae\x8b\xcb\x9c\x30\xb0\xdf\xa0\x4f\x02\x46\xc6\xf4\x20\xbb\xf9\x95\x68\x14\xcd\xfb\x03\x40\xee\x2f\x3d\x7d\x5a\x16\x2b\x21\x96\x3c\x51\xa2\x7d\x37\xbf\xd1\xc9\xea\xb2\x97\x57\x67\xff\xf8\xe2\x24\x7b\x43\xa4\x72\xdb\x1a\xfe\x9b\xfe\x43\x0d\x3e\xcb\x08\x70\x6d\xf6\xb6\x7c\xf4\x80\xe0\x4f\xad\x05\x3e\x8f\xe8\x40\xd4\x2b\x9a\xee\x00\xd9\x50\x01\xa7\xd7\x97\xd3\x2f\x90\x55\xdb\x11\x59\xb5\xdd\x68\xab\x26\x08\x00\x75\xc1\x74\xc3\x77\x21\x84\x83\x3e\x2b\xa0\x1f\x30\xf0\x70\x3e\x0c\x48\x70\x66\x4b\x01\xe5\xf3\xba\x6e\x1e\x3d\x98\x3d\xae\xb7\x40\xd8\x7d\xd9\x65\x7d\xb7\xf9\xaf\x4b\x9a\x97\x69\xf3\x6a\xb9\x2e\xb3\x1f\x4c\x09\x54\xa2\x33\x76\x2d\x9b\xca\xcb\xa6\x75\x59\x5b\x11\xb5\x23\x34\x39\x3b\x7b\x31\x7b\xd9\x14\xbd\xc5\xd4\xba\xdd\xe2\xcd\x26\x2f\xa8\xf8\x2f\x15\x60\xa7\xe3\x3f\x22\x78\x60\x72\xe5\x81\x0a\xb3\xeb\xbe\x1d\x83\x2a\xf3\x93\xa7\xce\x4d\xdb\x2e\x89\x2e\x77\x57\x00\x3e\xf7\x7a\x4b\x7d\xee\xb3\xc8\xdb\x4d\x56\xe3\xc6\xc9\x2a\x43\x55\x88\xf4\xd7\xda\x51\x59\x5f\x10\x12\x16\xb4\x0d\x1e\x4e\xa3\x3e\xf0\x59\xfa\xc0\xf6\x64\xf7\xe6\xf7\x98\x6c\xcb\x8f\xd9\xbd\xcc\xd4\xdd\x8e\x49\x0b\xf5\x59\x37\x4b\x21\x2f\x20\xf8\x05\x91\x1f\x3a\x33\x4b\xb9\x8c\x84\xce\x2d\x1e\xf5\xd9\x79\x5e\xd3\x2e\x33\x90\xc3\xf5\x44\x3b\xae\x73\x2c\x4c\x7e\xde\x95\x17\x7c\x65\x9d\x64\xcd\x8e\xa0\x8f\xa1\x98\x54\x49\x3f\x44\x25\x41\x99\x08\x58\x7c\x8e\xe4\xce\x89\x21\xe3\x48\x9c\x62\xc3\x23\xc2\xe6\xa4\xf9\xcc\x5f\x07\x47\x60\x73\xf7\x8e\xdb\x67\x41\xd0\xd3\xaa\xda\x9a\xfd\x14\xe9\x02\xbf\xc0\x80\x3b\xad\x81\x40\xf4\xd5\x0a\x86\xb9\x02\xb7\xcf\xcf\x68\x41\x19\x10\x2c\xa6\xcc\x5c\x57\xf8\x8c\x9b\xdf\xb7\xbc\x0a\x10\x25\xd9\xd7\x40\x93\xb2\x6f\x9a\xa6\x9b\xd1\x1d\x7d\x0d\x94\xa3\xc6\x07\x46\x24\x5f\xd5\x8d\x41\xd3\x34\xcc\x97\x84\xa6\x36\xbb\x34\x6d\x21\x5c\x09\x9f\xe6\x7d\x16\xf5\x03\xbe\xe5\xc0\x68\xdc\x76\x18\xbb\x27\x5e\x02\x47\xea\xb4\xb7\x34\x21\x22\x1d\x38\xf1\x59\x38\x60\xae\x42\x8c\xbc\xae\x34\xdb\xf7\xd6\xf2\xae\xfe\xd0\x6f\xdb\x72\xb3\xb1\xc4\xe8\x10\x1d\x26\x8a\x80\xcd\xe5\x13\x42\x6c\x50\x76\xcb\xb2\xb2\x5d\x0e\x06\x0a\xe8\x85\x71\xf3\x68\x16\x61\x98\x8b\x46\x09\xa3\xee\x55\xd1\x10\x13\x40\x88\xc5\xff\xb8\x9f\x7e\x82\xa0\x91\xbb\xbc\xcb\x68\x45\x97\x25\xd8\xac\xad\x23\x6c\xd9\xd9\xd9\xb3\x6c\x5d\xd1\xf5\x98\x7d\xfb\xcd\x0b\xcb\xe7\x76\xb7\x3c\x10\x56\x2c\x50\xf2\x86\xc9\x87\xfb\x14\xf5\xc7\x25\x75\xbf\xdf\xf3\x7e\x82\x9c\xa2\x27\x66\x05\x09\x1b\x89\x2c\xe7\x02\x06\x4b\x05\x4f\x88\x4b\x63\xc4\x3a\xa1\x6d\x20\x82\x4e\x04\x16\x7d\xc7\x28\x9e\xed\x6f\x7e\x23\x20\xd1\x95\x46\x33\xd8\x75\xdd\x41\xa6\xf0\xec\xed\xdb\x37\x3a\x07\xff\xd1\x6f\x73\xa0\xcc\xa8\x91\xbd\x92\xc9\xd0\xfa\x0a\x81\x0c\x9d\x04\x40\x74\x95\x7b\x84\x06\x36\xf6\x6d\x15\x61\xe9\x8c\x16\xed\xbf\xbf\x0f\xb8\x30\xa3\x4f\xf0\x9f\xb3\x08\x6a\xbc\x57\xb2\xb5\x54\x45\x18\x31\xcb\x07\xa8\x39\x00\xc1\xfd\x09\x7a\xad\x3f\x47\x07\x88\x59\x38\xad\x24\xed\x1d\x57\x3d\xac\x69\xf7\x04\x07\x26\xfe\x67\x2f\x09\x38\x72\x03\xf0\xc7\x4d\xdb\xec\x89\x49\xad\xa3\x9f\x1e\x56\xc4\xe9\x02\x89\x67\xa7\x45\x6b\xac\x35\x59\x4d\x7c\x6b\xf6\xcd\x93\x87\xd9\xff\xf7\xd9\x9f\xfe\x34\xcf\x1e\xd7\xdd\xa5\x01\xb2\xd5\x44\x79\xe5\x80\xf3\x24\x32\x57\x9f\xa9\x6a\xb9\xcf\x36\x4d\xb5\x95\x1b\xe2\x49\xd3\xee\xf3\xee\xf3\xec\xde\x2b\x3a\xbc\xf7\xb2\x2f\x78\x05\xff\xcd\xfc\x92\x13\xb7\x6c\xe6\xeb\x66\xff\xe5\x1c\xac\x18\x31\x42\xad\x9c\xa6\x33\x39\x46\x8f\x67\x7b\x66\x53\xb5\xc8\x93\x27\x2d\x8e\x99\x56\xe1\xde\x97\xeb\xa6\xde\x94\xed\x7e\x91\x90\x49\xeb\x59\x58\xde\x1d\x8f\x48\xd2\xf1\xb2\x6e\xba\x72\x73\xe5\x40\x49\xa7\x26\x87\x60\xe2\x8e\x21\x4d\x3f\x6e\x61\x19\x69\x97\x56\x00\xae\xbb\x20\x98\x3c\xe3\xad\xb5\x44\xa3\xc0\x2c\x67\x84\x19\xd8\x8c\x74\x47\x9a\xcd\x06\xfc\x84\x5c\x76\xaf\xe5\x87\x5c\x78\xc9\x28\x71\x35\x42\xe4\x03\x89\x2b\x8f\xc2\x09\x60\xa2\xf0\xf0\xd1\x2b\x42\x34\xda\x19\x82\x34\xb1\x5a\x45\x7f\xce\xe4\x71\x8f\xbe\x4e\x48\x08\x20\xbc\xe1\x4b\x92\xe6\xaf\xf4\x0c\x64\x40\x09\x9a\x4c\x18\xe4\x82\x18\xf0\xd2\x6c\x84\x98\xb9\xeb\x87\x38\xec\x8b\x9c\xb8\xa2\xc5\x53\xfd\x63\x26\x6b\x49\x4e\xe1\xb8\xba\x4e\xd4\x35\x62\x68\xac\x94\x06\x15\x66\x43\x97\x09\x0d\x63\xb2\x7f\xec\xf9\xfa\x19\xdc\x5a\x3c\xe1\x53\x6e\x68\xdc\x84\x89\x05\xac\xe9\xba\x29\xf6\x37\xbf\xde\xfc\x47\xb9\xa5\x05\xec\xe9\xe4\x32\x49\xdb\x35\xeb\x1d\x4d\x3d\x47\x35\xc6\x37\x5b\xd2\x68\x67\xda\x40\x26\x60\xa2\x25\x25\x37\xaa\x23\x8c\x6d\x72\x97\x4e\x2f\x2e\x6e\x38\xb5\x13\x65\xa0\xb3\x49\x77\x27\x7c\x3c\x92\x3b\x94\xa6\x7a\x7e\xf3\x5b\x0d\xe1\xc2\x35\xc1\xad\x0c\x04\xab\x2b\x23\x77\x19\x21\x1f\x46\x1d\x88\x59\x09\x6e\xa4\x55\x74\x4e\x0f\x3c\x27\xa9\x4d\x66\x2c\x35\x1f\xda\x9b\xdf\x37\xfe\x2e\x49\x79\x07\xe6\x63\xfd\x4c\xe6\xca\xa2\x92\xf8\xa7\x52\xf4\x92\x06\x84\x88\x4a\x22\x56\x81\xa5\x8a\x50\xcd\x4b\xeb\xf7\xc4\xec\x31\x0b\x43\x53\xbf\xa6\x13\xbb\x13\x11\x7a\xdc\x5e\xa7\xf7\xc2\x14\xe5\xb6\xa2\x33\x45\xf5\xc1\x16\x90\x24\xde\x45\x17\x94\x03\x8b\xeb\x74\x65\x3a\x08\xcb\x1d\x10\xe3\xe9\xcd\xaf\x74\x80\x32\x1e\x83\x61\x0a\x90\x3b\x01\xff\x93\x58\x5a\x17\xa6\x7b\xee\xe4\x35\x15\xa0\x84\xdd\x3e\xa3\x46\xfb\x9b\xdf\x89\x3c\xd5\xd9\x3f\x99\xee\xba\xcb\x6a\xc2\x20\x66\xc9\xcc\x80\x53\x9a\x9d\x8a\x54\xe7\x77\x25\xc3\x9d\xcd\x6c\x53\x98\xf1\x47\xf7\x9e\x3f\x5a\x7c\x7a\xef\x63\xfa\xbe\xbb\xf9\xb5\xa2\xca\x7d\x47\xd7\x68\x57\x5a\xea\x35\xea\x0e\x47\x92\xaf\xf4\x30\x2f\x21\x19\x2c\x29\xce\x12\x7a\xad\xb7\xc2\x70\x3e\xae\xdd\x84\x30\x3f\xe0\xda\x02\x3d\x54\x32\x38\x2e\x4a\xa5\x79\x69\x2f\x2a\x81\x64\xcc\xcc\x29\x08\x54\x46\x5b\x6e\xe9\x92\x5c\xa8\x70\xc5\x5f\x14\x19\x71\x0b\x2f\xb7\x65\xb7\xdc\x80\x44\x17\x8b\x27\x66\x47\x94\x9a\x46\x21\xaa\xf4\xd6\x30\xc9\xb0\xd9\x87\x54\xe1\xc3\xec\xeb\x66\x4f\xd2\x76\xd1\xd8\xcf\xb3\xfb\x17\x8e\xa7\xff\x0c\xd4\x77\x49\xe7\xb5\xac\x80\xd5\x8b\xe7\xc4\xbb\xf0\x8d\x3c\x53\xfd\x0a\x51\x91\x0e\xb0\xbf\xf9\x1d\x9b\xc6\x2c\xb4\x72\xef\x27\x2a\xc5\x81\x08\xb0\x50\x07\xc4\x20\xc2\x59\x5e\x97\x20\x30\x54\x5a\xdf\xfc\x4a\xbd\xb9\x8e\x40\xfe\xee\xd3\x5d\x0d\xec\xef\xc0\x5f\xbc\x7a\xfe\xf0\xd9\x5b\x6e\xb5\x6d\x56\x7d\x59\x15\x6e\xcc\x39\xd6\x2d\x6c\x3e\x31\xf9\x8a\x47\x41\x1e\x1a\xec\x1a\x53\x1e\x61\x88\xcf\x1b\x22\x02\xe7\x9d\x2c\xd0\x75\xf1\x5e\xec\x69\x46\x90\xa7\xa5\x6e\x6f\x7e\xaf\x68\x6f\xa4\x03\xcf\x3a\x02\x44\x84\x5b\x24\x8a\x3f\x3a\xca\xe3\xa1\xbd\x93\x06\x5a\xd0\x0b\xa6\xb2\xbe\xfc\x73\x2c\x7d\xf6\x25\xfd\x97\x20\x9f\x5f\x18\xb9\x28\xb7\x53\xdb\x76\xa6\xec\x6d\xcd\x3d\x7d\xcd\xf5\x7a\x41\xe5\x74\x61\xc9\x31\x53\xc5\x08\xa3\x75\x36\x01\xa0\xc1\xda\x1c\x5e\xd9\x7e\xbd\x26\xa6\x61\xf1\x8c\x40\xc1\xf4\xe1\xfb\xb2\xaa\xce\x09\x53\x4c\xfd\x01\xfd\xad\x74\x9d\xd8\x13\x92\xb8\x0b\x66\x13\x49\x00\x47\x3d\x3e\x2b\xc2\xba\xd5\x1d\x1d\xba\xd2\xe0\xe0\xec\x72\x62\x0a\xb9\xdd\xe5\xcd\xef\xb5\x85\xb0\x99\x11\x19\xaa\x80\x04\xdb\x9a\x05\x06\xea\x86\x44\x53\x66\xb8\x7e\x84\xba\xf1\x27\x92\x89\x45\xea\x68\x88\xa2\xb4\xc9\x09\x93\xab\x65\xa8\x2c\x73\x35\xc3\x71\x23\xce\x8f\x76\x67\xe9\x55\x96\x80\x6e\x67\x7e\xe9\x20\x47\xc9\x17\xc0\x11\x5f\xe8\x6a\x5b\xef\xac\xa9\xc0\x7b\x5c\x31\x6a\xd8\xc5\x4b\x66\xa2\x3c\x72\x94\x50\xcd\xac\x9b\x8a\x0e\x44\x03\xb0\x5f\x18\xad\xf7\x94\xe5\x29\x5a\x54\xbe\xe9\x00\xab\x61\x1b\xea\xb0\x69\xb7\xae\xbf\x54\x9d\xc5\xa5\xa2\x77\x73\x15\xbc\xfa\x8d\xe9\x34\x6b\x5e\xef\xdb\x88\xf4\x02\x42\xa2\x30\x9a\xd3\x36\xb3\x4e\x4a\xe6\xf1\xbc\x16\x2e\xbe\x1e\x8c\x4f\x00\x55\xf5\xec\x4f\xaa\x29\x5a\x8c\x2a\x10\x99\x84\x66\x29\xe8\x40\x97\xaa\x43\x53\x25\x9e\xe0\x8f\x97\x51\x23\xce\x6e\x67\x0e\xe0\x01\xf7\x76\x0b\x89\x18\x1b\x9d\x41\x5a\x2a\x3b\xcb\xc2\x2e\x37\xfc\x2a\xfb\x33\xd3\xf6\x5c\xaf\x87\x0f\x68\x6b\x9a\x75\x99\x57\xcb\xf7\xed\xc6\x36\xd7\x54\xdd\x4d\xc4\xf5\x47\xbc\xd2\x39\x61\xcf\x61\xc3\x5d\xa6\xac\x81\xe8\x6c\x49\x88\x5e\x3c\xb6\x59\xd7\xe3\x14\x5b\x12\x60\xca\xe2\x64\x42\x5e\xbf\xec\x5b\x10\x2b\xcf\x40\x10\xb2\x8a\x36\x85\x55\x29\x82\xd9\x79\x3d\xbe\x03\x46\x9c\x0c\x96\xc0\x8a\xdc\xa9\x31\x1f\xc4\xec\x2e\x30\x38\xe5\x86\x67\xca\xaf\x8f\x27\x03\x70\xef\xcd\x7e\x85\xde\x21\x9f\xbb\xab\x3a\xa3\x81\xcb\x15\xb6\x83\x98\x81\x2d\x51\xa3\xf1\xbd\x42\x20\xda\x82\xfb\xd7\x3a\xe6\xd6\x3a\x5f\x79\x2d\x3c\xd1\xb6\x4b\x6c\xc4\x25\x1d\x7b\xda\x8a\xd1\x4e\xb6\xd1\xfd\xfe\x81\xbf\xd7\x84\x1b\x63\xe6\x9d\x7a\xeb\xfc\x06\x00\xad\x6b\x28\x79\x63\x08\x0c\xd6\x4b\xe0\xfd\x62\xf5\xe5\x7d\xfb\xc5\x27\x2b\x68\xf4\x58\xd6\xa1\x6d\xc0\xa8\x6d\x23\xf7\x1a\xa3\x37\xeb\xe2\x60\xcb\x88\xd4\x89\x2c\xf5\xdc\xfc\x4a\x27\x18\x5c\xdb\x7d\x30\x9c\x6c\x85\x60\x8e\x68\xbc\xdb\xf9\x8a\x78\xa3\xf5\x8e\xfa\xbc\xf9\x0f\xe6\xee\xf2\x35\x1f\x67\x3e\x4b\x0e\xef\x4f\x03\x2f\xe9\x57\x8f\x7d\xe0\x85\x55\x25\xd1\xaa\xe3\xf8\xd5\x67\x3c\x7d\x02\xdc\x35\xe1\x32\x94\x9c\xc4\x25\xbb\x0e\xa3\xa5\x5b\x8f\x66\x39\x38\xf0\xcf\xb2\x97\x25\x11\x39\x9e\x12\x9d\x80\x65\x5f\x2b\x5c\x4d\x21\x58\xf5\x8c\x48\x73\x43\x77\x05\x0f\xc1\x67\x84\x29\x46\x5f\x7b\xee\xa1\x73\x52\x9f\x97\x12\x3f\xf2\x50\xfd\x98\x28\xb0\x8a\xee\xcc\x5f\x4d\xef\x06\x83\xb4\x53\x9a\x2d\x84\xd6\xf8\xfd\x73\x8a\x51\xdb\x9d\x64\xe7\x44\xeb\xce\x8d\x5e\xf6\x2c\x5a\x83\x55\xf2\xb2\xe5\x83\xbe\xeb\x1a\x51\x03\x01\x18\xba\x00\xa8\x8e\xa4\xa1\x6e\x0e\xf7\x3d\x01\x1a\x9a\x07\x8d\xc8\x00\x84\x32\xc2\x88\x51\xc9\x38\xc1\x70\x49\xb8\x0b\x0a\xd2\x19\x96\xf4\x47\xab\xc6\xb5\x0b\x4d\x27\x2f\x74\xaf\xe4\xcb\x93\x0b\x9c\x28\x9e\x14\xe6\xd6\x1d\x9b\x9a\x57\x03\xd0\x24\xf6\x5e\xa8\x9d\x5d\xf7\xc4\xbc\xaf\xcf\xa9\xe1\x35\x14\x5e\x53\xd3\x94\x6e\xc7\x07\x2d\x69\x1a\x2e\x6c\x56\xc4\x8f\xb1\x88\x35\x52\xd1\x0e\xa1\x1a\x2f\x0c\x16\x95\x8a\x20\xee\x64\x2c\x7f\x87\xcf\x87\x43\x27\x2a\xbb\x64\x71\x24\xa9\x0e\xa7\x05\x81\x41\x26\xe6\x9b\x77\x4d\xb3\xb4\x3b\x68\x71\x1e\xc5\x0d\x58\x3f\x46\x64\xb0\x60\x49\x9a\x66\xfc\xff\x3b\x15\x72\x06\xbb\x1a\xab\x6a\xf8\x5a\x01\x64\x7f\xd2\xf3\x85\x8b\xc5\x1d\x2e\xc1\xfa\x7c\xf2\x88\xf9\xca\xc2\xff\x12\x87\x50\x32\xef\xa8\xd5\x86\x5b\x3d\x82\xf6\x19\x16\xa1\xa4\x62\xb0\xc2\xe8\xda\x72\x0c\x4e\x4a\x19\x4c\x0b\x04\x66\x95\xd3\x49\xc4\xf2\xc8\x5a\x9a\x22\xc7\x62\xae\x8c\x5d\xfc\x39\x87\x86\x98\xee\x46\xac\x93\x0a\xa0\xa7\xb8\xf9\x37\x28\x3f\xa4\x2e\x91\xda\x3d\x55\xfd\x96\xb8\xc4\x57\x63\xf1\x00\xb7\x2f\x7f\x0e\x8c\xe7\xec\x15\x97\x3c\x8e\xac\x80\x61\x81\x6f\xc6\x82\xc4\x37\xe6\x16\x63\xe0\xd9\xd9\xb3\xb7\xa2\xff\x80\x36\x8f\x08\x1d\x0b\x58\x95\x0c\xfe\xac\xeb\x0e\xf6\xdb\xb6\x62\xbd\xdc\x99\xe8\xce\xde\xe4\x57\x55\x93\x17\xf8\xaa\x7f\xca\xf7\xb7\x26\xdf\xf3\x44\xf1\x87\x34\x3f\x25\x46\x81\x3f\xe1\x0f\x22\x85\xba\x37\x41\x5b\xcc\xf7\xe3\xe3\x20\xba\x78\x65\x51\x10\x44\x0d\x9b\x19\x7f\x9e\x56\x59\xff\x4c\x18\x50\x1d\x48\x80\x06\xd7\xe6\xab\x32\xc6\x11\x87\xed\xc8\xb6\xc8\xac\xa8\x57\xf7\x7b\xc2\x10\xb0\x94\x1e\x07\xa1\xe0\xb8\x37\x5b\xc6\x0a\xfd\xb4\xd7\x82\x08\xc8\xdf\xdf\xf3\x7c\xd4\xb5\x2d\xaf\x4d\xda\x21\x88\xc7\xd3\xf6\xe6\x37\xba\x60\x58\xb8\x81\x36\x18\x35\x99\x33\x1f\xd5\xe6\xa3\x24\x27\x89\x2a\xbb\xc1\x92\x21\xf6\xf9\x2f\x69\x43\x06\xde\x0e\x1a\xd7\xdb\x1b\x0a\xc9\x74\xad\x40\x3e\x84\xf8\x2b\xc9\x18\x1e\x27\x34\x81\x1a\xf5\x96\x06\x84\x1a\xa8\x55\xd6\xeb\xaa\x2f\xfc\x84\x64\xd9\x90\xf6\xfb\x15\x0e\x14\x9d\xa6\xbf\xfe\xeb\xff\xbc\x6f\xff\xfa\xaf\xff\x9e\x4e\xa8\xaf\xcf\x89\xb9\xa8\xb5\xdd\xb7\x74\x77\xc1\x8c\x02\x3f\x04\x91\x76\x3e\xf7\xd6\xec\x25\x0d\x01\xc9\x6d\xdd\x79\x85\x8b\xed\xca\xfd\xde\x49\x54\x37\xbf\x33\x8b\x88\x4b\xc6\x53\xac\x48\x26\x83\x82\x1b\x9f\x6f\x7e\x6b\xd1\x3b\x37\x85\xae\x62\xd8\x36\xd8\xe4\x97\x2b\x63\xea\x65\x97\x13\x95\x4c\xe5\x8d\x32\x62\x47\x99\x5b\x5a\x05\x0b\xc7\xb0\xe1\xe0\x50\x1f\x6b\x4b\xcc\xd8\xa8\xe9\xc8\xa0\x72\xac\x71\x47\xe7\x71\xd4\xda\x1d\xd2\x63\x8d\x04\x13\xb8\x01\x2d\xb8\x18\x90\x19\x51\xba\x47\xcd\x2e\x85\x03\xa3\x8d\x26\x8e\x7f\x0b\xf5\xb7\x1b\x34\x8c\x84\x8d\x65\x35\x8b\xbf\x82\xfc\x59\x99\x47\x60\xf5\xbb\x13\x36\x74\x2c\xce\x79\x5a\x16\x44\x66\x95\xdb\x59\xff\xd6\x41\x91\x57\x2c\x13\xe9\x5d\x54\x2f\x7c\x97\x88\x60\x92\xd9\x52\x9c\x5c\x44\x26\x15\xde\x65\x6b\x18\x02\x91\x58\xa6\x3b\xa3\xca\x64\x0c\x38\x35\x04\x21\x29\x84\xfc\xbf\x6d\x0c\xba\xb1\x4b\xbf\xae\x77\x0c\xe0\xaf\xac\x5b\xba\xcf\x6d\xd2\xbd\x07\x52\xda\xb5\x57\x47\x98\x5f\xe8\x03\x4b\x08\xd2\x20\x32\x6a\x71\x11\xc4\x09\x01\xee\x1c\x3e\x30\xb6\x83\x68\x2a\x2b\x65\x25\x06\x0c\x91\x75\xb7\x01\x57\x33\x52\x63\x60\xa9\x15\xb8\xff\xb0\x4a\x66\x0d\xdb\x44\xa6\x9d\x67\xc2\x90\x39\xad\xde\x75\x0f\xa9\x91\x38\xfa\xea\xe6\x37\x8b\x4d\xe5\xcd\xe6\xe3\x47\x32\xd4\xd6\xab\xc1\xf9\x20\x3a\xc8\xc0\x58\x75\x6e\xae\x16\x2f\x88\x13\x72\x4a\x64\xc2\x4f\x45\x8b\x52\x54\x20\x2f\xa8\xf5\x89\x13\x79\xd3\xab\x0e\xeb\xe0\x21\x58\xd1\x6a\xa0\x20\xb1\xac\x4f\x80\xa4\x76\x01\x8e\xe2\xca\x8f\xc1\xca\x0a\x90\xa0\x23\x5d\xc9\x98\x17\x81\x0d\x21\x0e\xaa\x66\x2a\x44\x44\xbd\x25\xb9\x45\xb7\x8a\xfe\xd6\x33\xc0\x9b\x92\x25\x9b\x0a\xfd\xbe\xf3\xbc\x92\x0d\x86\xd8\x41\x57\xa8\xd3\xf4\x8c\xae\xd3\x6c\x43\xd4\x90\x9d\xb1\xe0\xb0\xa4\x2a\x1e\xba\x6a\x3a\x3a\x8e\xd8\x30\xf1\xcc\x79\xe4\x19\x27\xb0\x00\xa5\x57\xa0\xc6\x02\xfe\x1f\xd8\x11\x19\x0d\xb2\x08\x3c\x71\x48\x1e\x5c\xf1\xe1\xc4\x08\x2f\xcb\x6e\x4b\x17\x66\x31\x81\x02\x5e\x03\xc8\xfd\x1b\x1a\x50\x85\x33\x31\x73\xf8\xa6\xa2\x32\x51\x5a\x38\x5c\x18\xd7\x8c\x7b\xfd\x4f\x59\x60\x0c\x50\xb6\x70\x49\x4f\xe3\xdd\x60\xea\xc8\x23\x43\x5f\x49\x6b\x66\x87\x17\x4f\xc5\xe0\x83\x42\x7f\x75\x6c\x86\xe3\xe3\xa3\x6b\xbd\xee\xe1\x8e\x02\xbe\xc1\x41\x43\x24\x06\x1e\x5b\x3c\x5c\x96\xab\x36\xaf\xd7\xbb\xe8\xfc\xfe\x50\x9a\x6a\xf6\x80\xbf\x0e\x8f\x2d\xb3\x97\x98\x29\xb4\x35\x3b\x68\xed\x97\x6a\x14\x12\xfe\xd3\x71\xbe\xec\xb2\xb4\x2a\xab\x82\x45\x33\x67\x0a\x82\x4d\xcf\xb7\x5b\xf7\xb6\x6b\xf6\x53\xcd\xa1\xe6\x10\x5b\x51\x29\x4a\x8f\x81\xfd\xf2\x9f\x1a\x62\x63\x9a\x3a\x62\x9e\xbb\xc8\x07\x89\xd6\x3d\x50\x30\x31\x4b\x5f\x76\xc4\x23\xff\x8f\x0d\x9d\x46\xd5\x92\x89\xd4\x07\xb6\x15\xba\x09\x92\x6c\x69\x57\xec\xe2\x89\xfb\x0b\x5b\x93\x83\x5e\x2e\x5e\xe6\xed\xb9\x8c\x21\xd5\xa0\xd6\xa4\x6a\x5b\x06\x06\x58\xed\x39\xdf\x32\x90\x03\xda\x0b\xaa\x1f\xdb\xf2\x99\x0e\x7f\x78\xdf\x7e\xc8\x24\x4c\xaa\xa8\x4e\x25\xb4\x3c\xe4\x84\xae\x6d\x2d\x82\x25\x0f\x5f\x24\x17\x54\x6d\x67\x2f\x7b\x88\x0d\x19\xdc\x8f\xa2\x0b\xea\xba\xaf\x6e\x7e\xb5\x96\x25\x2f\xf6\xd0\x12\xdf\x30\xda\x1b\xe7\x40\xe6\x7c\xc7\x26\x8c\x01\x4a\x80\xec\x80\x4d\x77\xba\xb1\xc5\x99\xe8\xbc\x44\x45\x29\x0e\x1a\x04\x38\x61\x0e\x82\xf9\x9b\xcd\x92\x50\x2f\x0e\x15\x8b\x85\x21\x62\xad\x06\x0d\x87\x7c\xf4\xb9\x2f\x8b\xc5\xb7\x65\x81\xf9\x1e\xfa\x15\x75\xe8\x7d\xdd\xe2\xcd\xb1\xde\xe9\xcd\x39\x3e\xb2\xb9\xe6\xd1\x84\x00\xc6\xe0\xb8\xf9\xcd\xb7\xc5\xe1\xb0\x86\x4d\xf6\xbd\x90\x6d\xb5\xab\xab\xf0\x67\x0f\xe6\x9a\x0e\x16\x9f\x85\x09\xa3\xae\xe7\x3c\x4e\x32\x4b\x5b\x6d\xb4\x2d\x88\xe8\xa5\x59\xcd\x56\xb9\x65\x73\x65\x9d\x3d\x21\x46\x52\xd6\x2a\xda\x35\x3e\xdf\xe2\x0e\xc1\x4e\x5e\x5b\xe2\x77\xb0\x47\xfe\xac\x6f\xe0\x82\xc7\xd7\xf9\x77\x0d\xb4\x5a\xf0\x02\xa3\x53\xdc\x66\x22\x7b\x8d\x5d\x4a\xab\x46\xa0\xbd\x60\xfb\x25\xef\x59\x7f\x28\x20\x9a\xa6\xbb\xcb\x6a\x7d\xba\xb7\xac\x1a\x5f\xd2\x4a\x5e\xd4\x7c\xbe\x6b\x15\xaa\xaa\xf2\x8a\xa4\xcd\xb8\x0b\xe0\xa6\x1e\xd1\x49\x67\x51\x5a\x99\x38\xb0\x75\xa3\x7a\x4e\x25\x25\x54\x4c\x8e\xb4\xa7\x5e\x96\xc7\x51\x1f\x88\x17\x65\x7d\xbe\x32\xd7\x50\xbd\xe3\xb2\x2c\x44\x4f\xe2\x4d\x6c\xe2\x34\xc1\x60\x83\xce\xbc\xac\x7b\x00\x86\xa0\xd2\x4e\x3b\x27\x3a\xe3\x67\x42\x52\x82\x0a\x6d\x6c\x6e\x76\x14\x66\xba\xa9\xf7\x79\x88\x0d\xba\x36\x68\x8c\x3c\x7d\xd2\xcb\x19\x8e\x34\xce\xbc\x4d\xab\x61\xfb\x33\x80\xd3\x34\x56\xb5\xd9\x32\x23\x28\xb3\x7d\x5b\x2c\xf2\xe6\xd7\x5d\x15\x6d\x99\x9b\xb8\x58\xd7\x23\xaa\x37\xde\x62\x48\xc9\xc4\xcb\xe9\x7c\x99\x72\x2c\xcb\x3d\x3c\x8a\x21\x78\x44\x76\x70\xb5\xf7\x7b\x49\x8a\x18\x83\xaa\x10\x0f\xb3\x74\xcd\xc1\xda\xf6\x35\xaa\x8d\x61\xd6\xba\x99\xd3\x19\x81\x97\x15\x1d\xb1\x93\x58\x77\x16\x11\xa6\xfd\xcd\x6f\x6c\xd7\x9d\x0f\x96\xe6\x91\x51\x4e\xf2\xc4\x42\x55\x1b\x9b\xa2\xa3\x47\xb4\xb1\x4e\x4b\x50\x11\x44\xa8\x8a\x38\xda\x53\x35\x74\xd9\xc8\x19\x04\xfb\xe0\x2b\x88\x59\x21\xf6\x14\x81\x42\x63\x79\x4b\x1d\xa7\x6a\x63\x76\x78\x95\xa8\xa9\x82\x58\x31\x1e\x77\x52\x9c\x18\xac\xc6\x43\xc5\x37\xf2\x47\x8c\x78\x8b\xc8\xcf\x8f\x0e\x90\x58\xa9\xa1\x5b\xd4\x33\x53\x33\x4e\xf9\x96\xce\xc6\xc1\x50\x63\x91\xcb\x0e\x24\xad\xe0\xde\x3c\x5d\x1c\xbb\x38\x8b\xcc\x16\xd1\xde\x43\x5b\xee\xd9\x7c\x3a\x25\xbd\x31\xa9\x9c\xa0\xa9\xa0\xc3\xb9\x5c\xef\x81\x6a\x26\x32\x1e\xba\xcd\xdb\x2b\x22\x68\xdc\xbd\xff\xe0\x8c\xd0\x95\x0d\x23\xbb\x21\xbd\xa7\xa9\xbb\x6b\xb4\xf2\x0b\x7f\xd7\xb8\xd9\x53\x21\xc8\xa8\x6a\x53\xab\x23\xe5\xba\x4c\x92\x78\x5c\x0f\xce\x37\x6c\xe0\xc8\xc4\x6b\xe5\x1b\xe1\x79\xbd\x69\xd4\xec\x20\x7a\x0f\x91\x5c\xe4\x42\xe0\x3d\x9a\xec\x20\x28\x82\x59\xb4\x98\xb3\xaa\x0f\x1b\xdc\x67\xd4\x5f\xb7\xc9\x61\xc5\xfd\x6a\x34\x3f\x87\x25\x43\xd0\x8f\x88\xb9\xe7\x3c\x3f\x80\x2d\xbf\x60\xac\x16\xd8\xb0\xab\xfb\xa0\xfd\xae\xac\xaf\x7b\xf1\x9a\x94\xea\x66\x42\x0b\x78\xa4\xd6\x32\xb1\xbc\xc0\x36\x71\xcc\xda\xb2\x4f\x4c\x2d\xcc\x11\x39\x2b\x8b\xe3\xd7\x63\x89\x29\x83\x67\x06\xac\xfe\x62\x70\xc1\xa1\x83\x66\x37\xd8\x5c\xd8\x6c\xef\x2d\x2d\x4e\x61\x9e\x98\xb8\xc6\x76\x16\x3f\xed\x94\x0c\xd5\x13\x50\x19\x43\x95\x21\xb0\x35\x80\x81\xd0\x24\x3d\x45\x47\xf8\xa8\x34\x52\xa0\x60\x59\x6f\x50\x23\x81\x29\xba\x11\x0c\x84\xac\x56\x3a\xe3\xca\x0b\xe8\x8b\x19\xdb\xda\x81\x64\x18\x61\xd9\xb4\x95\x41\x91\x4b\x04\x41\x87\x9c\x82\xb8\xc3\x5e\x0a\x2f\xdc\xaa\x3a\x4c\xda\xca\xac\xf4\x32\xfc\x82\x58\xed\xa6\xde\x7e\x09\x31\xac\x85\x8b\x19\x4d\x91\x03\x6c\xbe\xfa\xe2\x13\x2d\xca\x58\xd1\xef\xe7\x7e\x5a\x57\x74\x67\x63\x2b\x60\xc1\xf8\x22\x8f\x5c\xe8\x1f\xb7\xd7\xa6\xdf\xaa\xf7\xd9\x40\x4f\xcc\x4e\xf5\x2c\x33\x25\x4d\x34\x70\x00\xa8\x6d\xa2\x88\x22\x6e\xad\x65\x06\x4d\xe7\x01\xe9\xdf\x07\xe6\x54\x27\x52\x4a\x89\xab\x11\xbb\xa7\x44\x3c\x25\xf0\xd1\x77\x61\x15\x37\x62\xfa\xe5\x3a\x62\x26\x48\xb4\x5b\x74\x85\xc6\x3d\xb4\x51\x0f\xba\x69\x7b\x96\xc8\xa9\xef\x57\xe2\xbb\xec\x25\x2d\xd5\x82\x51\xbf\xae\xcf\xc5\x50\x8d\x8e\x02\xf6\x26\xa0\x13\x27\x73\xf6\x58\xe6\x91\x1b\x87\x7d\x88\x34\x72\xf2\x6e\x47\xee\x0f\x3c\x41\x9d\x80\x5f\xa0\x9e\x6e\xcd\x9e\xbe\x0e\x6a\x7a\x72\x38\xae\x7a\x8c\xd4\xda\xc1\x6c\x6d\x44\x6b\x31\xbd\xdd\xcd\x6f\x2d\x0b\xbe\x53\x8e\xd1\x70\x98\x63\x33\xa0\x30\x68\xca\x4a\xfa\x59\xcc\xb3\x97\xce\x3f\x78\x44\x68\x47\xf3\x73\x20\x1c\x2c\xe9\xdd\xa4\x96\xc0\xf0\x2c\x02\x65\x96\xef\x55\xcf\xc5\x48\xf1\x43\x5f\x39\xc7\x01\x41\x1d\x2e\x87\xaf\xbf\x93\x50\xbf\xf6\x04\xa9\x8e\x04\x54\xc0\x90\x77\xb6\x03\x2b\xe5\xa9\x44\x8a\x54\x32\x39\x95\x98\x45\x51\x56\x67\xff\x25\x7b\x9b\x27\x62\x0d\x49\xfd\x0d\x31\xd6\xa3\xae\x6c\xf6\x16\xdf\x6f\xef\x45\x78\xc2\x2e\x26\x7e\x22\x2b\x7e\xe7\x89\x8e\x71\xbe\x12\x2a\x37\xc6\x64\x50\x9d\x2e\x8e\x52\xb9\x40\xba\xa0\x74\x93\x6e\x5a\xed\x67\x9a\x8e\xf9\x71\x79\xff\xdf\x41\xcb\xfa\x7a\x45\x7f\x2c\xe2\x36\x31\x92\x4a\x71\xb8\x1a\xca\xb4\x7b\xa6\x61\x3a\x29\xa7\xf3\x52\x7c\x90\x3e\x92\x4b\x21\xe7\x4e\x96\x0c\x6b\x8c\x08\x10\xa0\x13\x22\xa4\xf6\xe6\xb7\x5a\x49\x02\xa1\x71\x0e\x9b\x33\x83\xde\xba\x58\x09\xf5\x80\x91\xb6\x22\x32\xc8\xde\x18\x25\x9a\xba\x87\x56\x20\xf9\x1d\xfb\xef\xb6\x19\x37\x16\x5f\x5a\xa9\xee\xdc\x27\x75\xd7\x54\x12\x65\x29\xc6\x89\x61\xac\x7c\x3c\x7d\xf3\xdc\xd2\xea\x08\x69\x09\xa7\x37\x12\x7e\xe2\xc6\x97\x21\x5e\x36\x44\xa0\x48\x08\xa5\x19\x54\x79\xbf\xea\x88\x0b\xe5\x10\x19\x1e\xe6\xa2\x61\xbf\x5d\x3d\x92\xfe\x0c\x0a\x88\xe6\x0e\xdf\x44\x71\x8f\x3f\xd5\xd6\xe8\xd7\x2a\xeb\x94\xbe\xdc\x1a\xb0\xc6\xb4\x82\xec\x8b\x71\x54\x2d\x81\x9c\x3f\x97\x2c\x45\x74\x1f\x10\x57\x30\xa1\xca\xee\x19\xa5\x15\x34\xcd\x81\x29\x2d\x9c\x0c\x50\xce\x01\x5b\xbb\x3a\xb3\x07\x9c\x36\x87\x3f\x08\xa8\x24\x6e\x45\x7c\x4c\x85\x09\x0f\xb4\x51\xa6\x1d\x98\xcd\x78\xc7\x23\x9e\x53\x70\x03\x5b\x8f\x9b\x2e\xde\x7e\x9d\xcb\x91\x96\xc7\x49\xe4\x44\x1f\xef\xa2\x93\x86\x15\xd6\x5e\x67\xf3\x7e\x44\x31\x5e\x67\x90\x50\x86\xf8\xcb\x64\x78\xb0\x0d\x81\x3c\xba\xa3\xf1\x01\x7b\xda\x95\xb4\x0d\xce\x19\x51\xf8\x03\x37\x21\x12\x9a\x13\x09\x97\x8f\x92\x4e\xc0\x19\xed\x87\x9a\x24\x2d\x4e\x54\x0e\xa7\x2c\x5c\x08\x34\x02\x12\xd2\x06\xf7\x60\x1b\x89\x25\x72\xcd\x25\xf2\x0a\x5a\x77\xc7\xd6\xb0\xdb\x67\xe0\x64\xd8\x60\xbf\x25\x29\x6c\x5b\x6e\x07\xba\x9c\xe0\x70\xb4\x1c\x4c\xf1\xc5\x70\x72\x2e\x12\x54\x83\x9f\xf4\x4e\x1a\xad\xc1\x55\x93\x3d\x57\x35\x77\x91\xaf\x48\x6c\xd7\x4d\x1f\xae\x03\x5a\x06\xed\xe5\x24\x04\xbe\x60\x0f\xa1\x38\x61\x3d\x58\xb2\x99\x77\xef\xfc\x08\x05\xe9\x4f\x24\x27\xb3\xb1\xc5\x59\x50\x22\x23\xe2\xd8\x1d\x20\xd8\x17\x95\x05\x7c\xda\x77\x23\x33\x96\x3a\x72\x9e\xf7\xed\xf5\x09\x88\x39\x31\xf0\xbf\x6e\x6d\xbe\x67\x08\x3b\xe0\xd2\xf7\xeb\x72\x9b\xb7\x74\x53\x7b\x10\xcf\xe1\x62\x68\xcb\x55\x59\xe1\xe2\x3b\x03\x5e\xac\xf2\x16\x01\xab\x5a\x80\xef\x71\x3c\x4d\x3c\x34\x5f\x1d\x5f\xd8\x03\xd1\xa4\x35\xe2\x84\x16\xf7\xfa\x32\x6b\x4d\x91\xc1\x9b\x12\xbc\x22\x7c\x38\x68\x28\xaa\xf0\xe5\xb8\x3b\xc4\x07\xaf\x55\x53\x9b\x3a\x38\x23\x64\x67\x43\x90\xa4\x7b\xdd\x6c\x3b\x25\x1d\x7c\xae\xe4\x4e\x8e\x15\xcb\xb7\x8c\x7f\x88\xc7\x67\xc7\x02\x67\x1d\x88\x27\x83\x28\x65\xb7\xc0\x8f\x58\x6e\x0a\x2a\x33\xdd\xf7\xef\x41\xcf\xf9\x78\x9f\x77\x41\x83\xc6\x13\x7a\x42\xad\xd9\x75\xe0\x63\xd6\x25\x9f\x8b\xe1\x22\x02\x51\xbe\x92\xb8\xe7\x5a\xcb\x39\xb8\x07\xad\x84\xed\xd6\xaf\x53\xa0\xce\xe2\xdd\x60\xc2\x45\xfc\x0c\x55\xee\x86\x10\x08\xca\x0d\xba\xbb\x45\x65\x41\xad\x9c\x69\x9a\xd1\xf9\x01\x07\xf4\x9b\x72\x45\xab\xd2\xef\x70\xd2\x09\x81\xef\xfe\x93\x9b\xc0\x7c\x5b\x12\x9e\xd4\x4d\x1b\x42\x55\x62\x5d\x19\x21\x37\x51\x3c\xb3\x78\x51\x5e\x9b\xfa\xda\xff\xf6\xf1\xbe\x5c\xcf\xb1\x15\xa8\x82\xd6\x18\x26\x2f\x18\xc9\xf1\x8f\xfb\xe9\x1a\xc9\xd7\x4c\xc3\xf3\x93\xe1\xe0\xc1\xbf\x24\x0c\xe9\x62\xd0\x82\x81\xe7\x28\x19\xae\x06\xb0\xb8\x99\x02\xeb\xb5\x1b\x84\x0a\xd2\x4a\x22\xb5\x9d\xfa\xb7\x0e\x37\x2a\xf2\x6b\x2d\xcc\x26\xef\x2b\x67\x93\x59\xb8\xc8\x15\xb5\xc6\xb8\x18\x79\x9a\x0f\xdd\x52\x17\x50\xd2\x8b\xb7\xee\xec\xb9\x7e\xa8\xb2\x8f\xe0\x0a\x2f\x52\xf1\xc7\x47\x0c\x14\x43\x43\xb4\xb7\x4f\x4c\x58\xed\x6f\xb7\x52\x0c\x7a\xb2\x7b\x31\x53\xf8\x0e\xa7\xcc\x14\xb5\x81\xde\xb2\xef\x76\x30\x3a\x12\x1a\x59\xd5\x1e\xfa\xa8\x67\xac\x72\x2b\x37\x3f\x9c\x8c\x7c\x68\xbf\xe5\xa0\xe5\xb8\xec\x28\x75\xe0\x0b\x00\xa7\x2e\x39\xa2\xec\x69\xbd\xaa\x7a\x73\xef\x4b\x85\x5b\x7c\x42\x43\xd7\xc3\xfd\xc1\x77\x17\x19\x26\x55\xe6\x1c\xb8\xb7\x24\x8e\x1f\xda\x82\x85\x53\x1a\x08\x5b\x71\xb4\x5e\xc4\xf9\xf2\xd5\xc3\x38\x1a\xa2\x01\x3f\x79\xfa\xfc\x2d\xbc\x5b\xbc\xd7\x63\x56\x35\xe7\xcc\x02\x4b\x5c\x16\xc7\x20\x6b\x18\xa2\xeb\xdf\x59\xac\x61\x2b\xa8\x24\x9c\xe0\x85\x36\x42\x8c\x74\x1a\x3f\x70\x92\x8d\xed\xf0\x1a\x96\xe7\x94\xc3\xaf\xdb\xa2\x66\xe3\xb0\x50\x07\xda\x29\xa6\x1a\x4f\xe5\xf8\x47\x64\x83\x43\x03\x49\xec\xd8\x70\x0c\x8d\x63\x35\xcf\x53\x9f\xf5\xab\x8c\x3b\xa9\x11\xb4\x59\xc1\xe0\x42\x3c\x16\x73\x79\x60\x50\x3a\xbe\x47\x0f\x57\xcb\xaa\xac\xcf\xe9\x76\x77\xa0\xf3\xdf\x3c\xd3\x21\x65\x49\x7d\x75\xdf\x79\xc4\xd7\xb4\xc9\xfe\xfa\xdf\xff\x7d\xf6\x50\x96\x72\xd6\xb5\x5b\xfa\x1b\xdc\x7a\xd4\x27\x7c\x0f\x89\x95\x59\xa2\x03\x78\xaa\xff\x70\xc9\x16\x20\xe8\xfe\x71\xe0\xcf\xe3\xd1\x4b\x42\x6c\x1d\x32\x7b\xfd\x35\x1a\x63\x0f\x1d\xaa\x0d\xb5\x1f\x12\x1d\xf1\x35\xea\xd4\x5f\x89\x02\x64\x5b\x12\x8b\x8c\xfb\xe1\xb6\x24\x02\xdc\x18\xfa\x8a\x0f\x20\x7a\x5c\xb2\xcf\xd0\xab\xc0\x76\xae\x4c\xb3\x72\x0e\xf7\x52\xf8\x20\xfa\xd2\x23\x4e\xa2\x75\x96\x49\x0d\x2e\xdd\x89\x5a\x3a\x2e\x71\xb4\x9f\xc9\x3e\x1f\x3e\xa5\xca\x5f\x3b\x0f\xdc\x88\x36\xff\xa5\x07\x90\xb6\x48\x6e\xb0\xf8\x9a\xae\xf3\xdc\xa9\x6f\x1c\x08\xba\x5d\x69\x63\xf3\x78\xb4\xcf\xe7\x95\x58\xfd\x22\x0f\x7e\xa6\xeb\x6b\x89\xee\xf1\x29\x4d\x22\x67\xde\x94\x9c\x76\x90\xf6\x5d\x2c\xd0\xb5\x29\x2b\x03\x03\x21\x5c\xf0\x80\xaf\x32\x2a\xc7\xae\xb1\x09\x5d\xba\x71\xa8\xcc\xbe\x22\x51\x77\x1c\xd1\xc8\x92\x63\xd2\x1d\x4f\x88\x56\xc0\xa1\xed\xcc\x5a\x0f\xf8\x09\x89\x2f\x16\x65\x24\x3c\x2f\xbd\x38\x70\x89\x30\x92\xf6\x03\x00\xf0\xee\x1d\x25\xcd\x8e\x22\x77\xad\x31\x44\xa7\xdb\x9e\xf8\xd7\xd6\x95\x72\xd8\x7e\x97\x6f\xad\x56\x23\x64\xf8\x7f\x20\x43\x5b\x57\xc1\x84\x12\xd8\xe1\xa9\xa2\x94\x0e\x52\x71\x20\x6d\x87\xa4\xeb\x98\x9d\xd6\x12\x71\xc7\xfb\x51\x11\x6f\x48\x05\x2f\xf0\x0f\x88\x41\x45\x2c\x0b\x6d\x00\xc7\x70\x54\x1a\x5f\x8a\x9c\x32\xb4\x08\xa2\xe7\x8b\x87\xf2\x2f\x40\x50\x99\x9c\xf8\x0a\x88\xa4\x91\x76\x4a\xed\xb8\x6c\x2e\x6c\xf3\xcb\xc5\x37\xcd\x4e\x7f\xd1\x8e\x73\x5a\x8f\xef\x58\xf2\xdb\xe8\x57\x0e\x0d\x41\xc5\xd3\x9a\x13\xf0\x64\xa1\x01\x9d\x11\xa4\xe3\xa0\x13\xfd\xc6\xfd\xc5\xf6\x1b\x99\xc1\x7c\x34\x23\x57\xa0\x49\x45\x1e\x21\xfa\xd0\x22\xb3\x48\x36\xaa\xb2\x81\xf4\xfe\xa4\x14\x95\xbf\xfb\x88\x8b\xa4\x69\xd9\x7f\x05\x31\x71\xee\x33\xdd\x45\x16\xc6\xb0\x57\xce\x16\x11\x8a\x0a\xf6\xda\xce\xbb\x7e\x1f\xbe\x49\xe4\xce\xcd\xbf\x55\x62\x61\xd4\xaf\x84\xc5\x46\x8c\x76\x6d\x14\xf5\x82\x0c\x3d\x22\x84\xf2\x2e\xc5\xdf\xe7\xf1\xbe\xd8\xa4\xa4\x06\x8f\x43\x5f\xc5\xb8\xa6\x1b\x17\x95\xaf\x69\x63\xda\x65\xd2\x3e\x56\x4e\x44\x35\xfd\x6e\xc7\x9b\x3d\x1c\x2b\x54\xe2\xf1\x8e\xd5\x94\x51\x27\x7b\x3c\x32\x7a\x73\x20\x69\x30\x34\x78\x0d\x1c\x32\x59\x8a\x76\xc9\x00\x8d\x45\xf8\x80\x6f\xf0\x94\x5d\x8a\x1a\xb0\xc2\xb7\x34\xcb\x2d\xa7\x31\x32\x8b\x1f\xfa\x60\x28\x9f\x98\xf9\x54\xbd\x63\x33\x87\x9a\xcd\x55\x67\xa0\x4c\xf6\x2d\x04\x4c\x0e\x60\xcc\x98\x85\x8e\x74\x1f\xc5\x3a\x38\xda\x48\x29\x5d\x1e\xaa\x7c\x6d\x34\x20\x8c\xeb\x30\x7f\xc4\xc9\x72\x92\x81\xb4\x33\xae\x32\x31\x1c\x43\xbb\xcb\x57\x8b\xfb\x05\x62\x18\xa3\x12\x06\xac\x2b\xda\x06\xa0\xfa\x0a\x74\x1a\xe1\x68\x1e\xf5\x3f\x59\x44\xec\x1c\xae\x71\x18\x2f\x03\x66\x66\x8e\xb1\x1d\x36\xb9\x1d\xf7\x86\x95\x86\x7d\xc7\x1c\x73\x3b\x89\x93\xda\xc3\xed\xdb\x1f\x2a\x21\xa3\xcc\x3b\x46\xb9\xad\x07\x66\x2f\xdf\x82\xa9\x1c\x7f\x9f\x23\x0c\x51\xa9\x31\x67\x03\x71\x26\x86\xe9\xca\x56\xd3\x6e\x11\x8b\x71\xd5\xf4\x74\x3f\xb6\xac\x88\xb9\xc4\x3d\x39\x5a\x1e\x37\x91\xfd\x2f\x96\xab\x2b\x6e\xa1\x17\x64\xa7\xe1\xf8\x93\x73\x9d\x43\x0b\x47\x8c\x30\xc2\x97\xa5\x0d\x96\x59\xb3\x6a\x08\x57\x51\xda\xc2\x72\x02\x0e\xfa\x8f\xf2\x01\xe3\xd2\x39\x72\x92\x59\x8d\xb1\xeb\x46\x2b\xe3\x2a\x40\x61\xaa\xc2\xa4\xf1\x58\x9d\xd6\x90\x04\xd6\x89\xa1\xdf\xeb\xb8\x63\x13\xfe\xf4\xe0\x74\x13\xb9\x46\xa7\x7b\x24\x63\xaa\xb7\x1c\x40\x25\x7c\xe9\x3b\xdb\xef\x1b\xdb\xad\x39\x3e\xa2\x43\xfb\xbd\x29\xb9\xb5\x84\x4c\x74\xb7\x0f\x1b\xb5\xbb\x34\x75\xb9\x3d\xda\x12\x07\x90\x37\x69\x71\xff\xc7\x4f\x7f\x42\x9a\x17\x5c\x9b\xb5\x91\x7d\x0a\xf6\xa9\x1f\xff\xf4\x13\xf1\x74\xf7\x7f\xfc\xec\x27\xce\x09\x35\x6e\xbf\xdc\xe4\xe7\x66\x21\xb7\x2e\x9a\x4b\x77\x6c\xc5\x44\x5b\xdf\xe0\xd0\x9a\x8b\xb2\xe9\x2d\x52\xc5\xed\x0c\xb4\x78\x99\x26\x91\xf3\x34\xe6\x17\xda\x31\x8d\x36\x1b\x94\x09\xb9\x90\x34\x21\x63\x6a\x51\x68\xd1\xd3\x09\x6a\x51\xf7\xfb\xa5\x02\xc5\x82\xa2\x7c\x2d\x7f\xe7\x6d\xe8\x5c\x8b\x21\xbc\x75\x8b\x9f\x23\x60\xc1\x5a\x40\x90\x28\x0b\xc0\x81\x56\xe5\xb8\xdc\x7f\x90\x5f\x5f\xf2\x02\x01\x95\x9f\xc3\x70\x8d\xb7\x5e\x25\x1c\xf3\xaa\xb4\x13\x71\xf8\x62\xe0\x9a\x0f\x68\x9f\xa4\x13\x3b\xf3\x06\xde\x41\xb1\x4e\x57\xab\x7d\xed\xa7\xab\x32\xba\x1d\xb7\x6b\x0d\xc3\x4f\x1a\x7c\xcf\x2c\x9f\xdb\xaf\x51\xa5\x77\xf4\x7e\x79\xa4\xb5\x12\x7d\x87\x7e\x71\xbb\xe1\x5e\x01\xc8\x11\x5d\xff\x3b\x80\x2c\x53\xd5\xae\xd2\x19\xfd\x3d\x7b\x26\x5c\x11\x71\xe2\x1b\xee\xb0\x45\x7a\x10\x53\x5f\x33\x06\xa8\xb6\x4a\x6e\x4d\x22\xc0\x99\x58\xa4\x85\x85\xfb\x5b\x07\x3a\x34\x9c\x71\xd1\x89\x0c\x81\x14\x72\x64\xb9\x84\xf5\x04\x94\x1f\xa8\x33\xf5\xb3\x8b\x23\x25\x9e\x99\x44\x55\xdc\xf8\xe8\xb4\x26\x58\x7a\x0f\x99\xb4\x6e\x59\x2f\x5d\x7c\x10\x0b\x48\xe2\x50\x60\xc5\xfe\x84\xd8\x3a\xf5\x01\x2e\xaf\x7b\xe2\xf8\xd9\x20\xf5\x2c\x17\x8d\x6b\x14\x28\x1c\x0c\x8f\x5f\xa5\xc6\x6b\x97\x99\x82\xe5\xd2\xf3\x68\xdb\x13\x6a\x61\x8a\x12\xa1\x09\x79\xbb\xd2\xb4\x7d\x0e\xf4\x23\x97\x37\x37\xf5\xfc\x02\x29\x24\x35\x32\xdf\x7f\x96\x9b\x5d\x4e\xbb\x5c\xe8\xa2\xd0\x4d\x8a\xd7\x4d\xd5\x28\x73\x92\x3d\xc1\x90\xa3\x72\xa8\xb4\x89\x16\x0c\xb8\x59\x29\x0d\x47\xc5\x7a\xe6\xc4\x64\x4e\x6e\x49\xaa\x1e\x5b\x95\x94\xaa\x9f\x68\x50\x9d\x27\xa5\x1a\xdc\x26\xb3\xf4\xda\xd1\xa9\x2e\x60\x6d\x91\x6a\xd2\xd5\xf1\x6a\x13\xa6\x15\xc9\x3e\x95\xb2\xdd\x4c\x90\x40\xa0\x73\xb6\x6f\x45\xc6\xc9\x5a\xd7\x79\x9b\xf5\x64\x7a\x64\xa7\xd1\x90\x89\xde\x6e\x4e\x56\xe9\x0f\xe7\xee\x40\x74\x78\x29\x4e\x63\x76\xe1\xa1\x20\x93\xda\x56\x12\xf0\x72\xa4\xba\xda\x08\x7d\xbd\xec\xfa\xd2\x94\x99\x97\x4a\x41\xac\x4c\x2c\x9b\xd7\x59\x9c\x1c\x32\x64\xa4\x8a\x46\x9d\x0f\x87\x5a\x91\x48\xb9\x78\x90\x5b\x33\x9a\x83\xfc\xbb\x98\x98\xa6\x5e\xc9\x2a\x4c\x3f\xe1\x5f\x99\x93\xa9\xa5\x0a\x5d\x12\xad\xb1\x7d\x45\x37\x92\xa8\x2b\x1e\x43\x2b\x59\x97\xea\x42\xa5\x2e\x88\xf3\x50\xbd\xdb\x81\x33\x62\x2d\x8f\x8c\xfb\x38\xd2\x50\x5b\x0d\x92\x75\x13\x61\xb3\x1f\x26\x2d\xf9\x99\x9e\x99\xdc\x69\x59\x33\xa9\xe2\xcc\xc6\xd2\x3b\x82\x10\xe2\x24\x9a\x8b\x9f\xa9\xf3\x91\xcb\x86\xe8\x25\x86\xf2\x3a\xc1\xbc\x8c\x4c\x78\x4c\x46\x40\x0b\xe0\x67\x8f\xd0\x8a\x88\x8d\x20\x9a\xf8\x09\x0f\xf8\x09\x78\x89\x42\xe9\xe3\x3f\xf0\x0f\xa5\x92\x0a\x62\x91\x53\x92\xcd\x8a\xe4\x07\xa9\xc4\x14\x40\x30\x40\x6d\x44\xcc\x77\x14\x4e\xb6\x16\x26\x06\x81\xbd\x8e\x0e\xf3\xdf\x92\xda\xcb\x7d\xff\x2c\x7c\xbf\xee\x6d\x0e\xd2\xa5\x89\x46\xdc\x30\x7b\xa8\x8b\x95\xbb\x90\xd1\xfe\xd0\x28\xf7\x7f\xfc\x7f\x7f\xb2\x7e\x2c\xf6\xa4\xd8\x81\x25\xd3\x35\xe5\x2b\xf0\x0e\x20\xc9\xe2\x1d\xfd\x75\xf4\x23\xad\x34\x50\x35\x84\x22\x68\x2a\xec\xc2\xa9\xec\x23\x7f\x66\xa9\xa2\x77\x3c\x21\x12\xaf\x4c\xe3\xa3\x24\xa0\x62\xb4\xb7\x83\xab\xde\xc7\x6e\xbf\x44\xd3\xd9\xeb\x83\x11\xe5\x35\x6e\x45\x76\x3c\xda\xb5\xd1\x09\x12\xc8\x41\xcc\x99\x5c\x2b\x90\x4e\xab\xa8\xbf\x07\x0f\xef\xf6\x7b\x4c\x3f\x86\x40\xfb\xc0\xf5\x44\x5c\x76\x4e\x87\x8d\x6d\xd6\x30\xf0\x70\xd6\x1a\x9f\xfb\x6e\xb8\x26\xb6\xe8\x15\x74\xc1\x9f\xc3\xcc\xb1\xd9\xb6\x92\x48\x30\x10\x4c\xd9\x53\x28\x15\x67\x89\x0f\xa4\x5f\x58\x69\x89\x00\x99\xf5\x39\x67\xc8\x29\xd9\x19\x64\x53\x95\xe7\x9d\xcf\x3c\x85\x73\x89\x64\x94\x7c\x29\x38\xe7\x8e\xd8\x06\x1c\xb9\xd2\x97\xb5\x70\xe9\x34\x63\xf1\x44\x88\x69\x50\x5e\x2f\xd9\x44\xc3\x70\xf2\x16\x54\x75\x99\x15\x33\x33\x15\xcf\x78\x3b\xb2\x78\x3b\x36\xc7\x76\x94\x33\x60\x0d\x77\x8a\xc6\x61\xc3\xc7\x60\xa8\xc7\xaa\xca\x3f\x3f\x3e\x12\x77\xe7\x36\xc4\x3b\x61\x10\xf1\x11\xb3\x2e\x83\xc5\x44\x24\x82\xfe\xef\x0e\x0e\xd8\xe2\x5b\x66\x90\x24\x5e\x55\x7f\x6d\xcd\x95\x11\x29\x3e\xeb\xae\x69\x2a\xf5\x5d\xaf\xfd\x88\xce\x82\x3c\x44\xc6\x94\xc8\x25\xe8\x76\xe4\xf4\xf3\x59\xe9\x6b\x25\x02\xdc\x9c\xe9\xa2\x5d\xfc\x9c\xe6\x28\x1d\x01\x5a\x04\xbd\xd1\x01\x22\xd0\x24\xe4\x54\x79\x8b\x51\xf3\x8f\xfe\xe1\x7e\xf1\x31\x73\x9b\x91\x2f\xdd\xc0\x48\x87\x25\x3b\x8a\xaf\x47\x72\xe0\xb4\xeb\x49\x38\x7b\x29\x03\x2b\x88\x31\x40\x4d\x84\x10\x73\x62\x8c\x0e\x61\xc3\xb1\x96\x35\x52\x01\x26\x4a\x8c\xa8\xc6\x84\xe2\x26\x2a\x3d\xae\xbc\x19\x56\x2a\x62\x69\x8d\xa3\x08\xe3\x69\x34\xcb\xa2\x27\x44\xc4\x45\xc0\xaa\x8f\x27\x37\xbf\x56\x95\x24\x7d\xb6\x85\x68\x38\x07\x73\x72\x72\xe1\x70\x9c\x54\x28\x4c\x97\x4a\x5c\xcb\x6a\x47\xd7\x63\xc4\x93\xc7\xeb\x66\x96\x56\xa3\x7f\x44\x02\x2a\x9c\x6e\xd4\xce\xd3\x91\xe4\xce\x4a\x94\x8c\xe1\xca\x8a\x2a\x0a\xe7\xfa\x96\xce\x7e\xa2\xdd\x9e\x4f\x18\x94\xe3\x52\x07\x8b\x11\x18\xb2\x8f\x5c\x12\xcd\x8f\x07\x4b\x27\xae\x94\x3a\x6c\x35\xa0\x2e\x29\xf4\xb9\xbe\xb4\xdb\xa5\xa0\xcd\x42\xb2\x56\x32\x39\x1c\x0d\x34\x48\xd8\x35\xcf\x88\x3e\x48\x64\x3a\x21\x95\x36\xfc\xf0\xcf\xf4\xbf\xd9\x7e\x3f\x2b\x8a\x0f\x35\x32\x7f\x02\x4a\x9e\x55\x8c\xa1\x75\xc4\x79\xd3\x3b\x3e\x25\xfd\x30\xdb\x1d\xb7\x5e\x45\x2c\xf8\xa0\x5e\xb4\xc5\x0f\x02\x1d\x01\x51\x21\x84\x68\x53\x43\x51\xe0\x09\x63\xf5\x6d\x74\xef\x69\x82\x2d\x67\xfb\x65\x0f\xc0\xb2\x6d\x47\xeb\x1c\x09\x35\x51\xa1\xf2\xfd\xf1\xf4\x7d\xa4\xc7\x78\xee\x02\xa9\x98\x31\xc6\xee\x44\x8d\x6d\x04\xba\x7a\xc0\x71\xfb\xbc\xbd\x1f\x0c\x70\x4d\x85\x8a\x78\x0e\xc1\x73\x67\xa2\xe6\x71\x97\xad\x64\x26\x47\x5c\xb5\x52\xb2\x54\x3a\xb1\x43\xce\x51\xec\xb1\xf5\xfd\xa4\x83\xcf\xd4\x7c\xa6\x50\xe8\xb8\xb4\x71\x2c\x21\xbd\xfb\x3e\x97\x33\x64\x35\x03\x6d\x52\x14\xe5\x25\x23\x88\x39\x76\x46\xd0\x2d\xaa\xb6\x6b\x9a\x73\x8b\x08\x37\xfe\x23\x2a\xd8\x96\x9d\x94\x21\xe7\xf2\xb3\x41\x21\x62\xee\xd6\x21\xf1\xfd\x53\x70\x23\xe6\xc8\x1c\x0b\x08\x3d\xed\xf2\x5a\x4c\x0d\x02\x1d\xfc\x88\xaa\x70\x94\xdd\xeb\x90\x10\x30\x04\xdc\xf9\x2a\x1a\xb3\x34\x0d\x91\xcc\x06\x79\x3b\x00\x40\x22\x7a\x60\x62\x7c\x47\x20\x9c\xf3\xe3\x29\xf2\x96\x5d\x79\x90\x96\x15\x71\x86\xfc\x11\x61\x71\x92\x30\x3e\x71\xb3\x59\x19\x9a\xab\x24\x35\xf0\x23\x76\x24\xab\xd8\x8d\xd7\x7d\xc4\xf1\xc5\x13\xb5\x04\x37\x23\x03\x6a\x31\xb4\xe0\x62\x50\x11\x00\x25\x54\x27\x44\x17\x47\x59\x98\x92\x80\x68\x8d\x83\x27\xc9\x57\x92\xfc\x7d\xc3\x09\x2d\x25\xd9\x5e\x34\x05\x7e\x66\x81\x73\x19\x80\x9d\xb5\xe2\x89\xc2\xb1\xe3\xad\x46\x5e\x00\xff\xbb\x9b\xdf\x91\x7a\x19\xfe\x57\x71\xe2\xb5\xd1\x75\xbe\x0f\xd7\x39\x7b\x9f\xc5\x23\xa9\x2a\x21\x6a\x13\x79\xab\xa7\x95\x04\x1e\x92\x8f\x6a\x08\x89\x10\xb8\x5d\xc2\x3b\xd4\xe9\x26\x55\x19\xf9\xbd\xd9\xba\x7c\x3e\x3e\xc8\x9e\x24\xea\x95\xd9\xf5\x1d\x2d\x6e\x6a\x8b\x38\x95\x30\x9d\xc4\xe5\xa7\x8b\x59\xc6\x59\xcd\x5a\x2b\xac\x89\xb8\xb1\x82\x42\x56\x1a\xda\x2f\xd9\xad\x1d\x68\xe2\x44\x07\x04\xef\xa2\xbc\x28\x0b\x0e\x30\x6b\x93\xdc\x08\xb7\x0e\xfa\xa7\x23\x83\xd2\x8c\xd9\x3b\xec\xb6\x31\x87\x3b\x6e\x85\x4d\xa2\x2d\x97\xb0\x7b\x4d\x12\x25\xf5\x57\xc7\x66\x02\xc2\xa6\xda\x28\x01\x18\x81\x94\xef\x8a\x90\xae\x6b\xc0\x94\x95\x41\x8e\x0a\x8c\xf4\x75\x1f\xe7\x19\xfa\x7c\xbc\xa7\x09\x98\x25\x80\xdf\x37\xfe\x3b\x7d\x3d\xc7\xe8\x95\xc2\x35\x99\xa0\xa7\xec\x38\xd2\xb9\x8d\x23\xc0\xd2\x5c\xf2\xd8\xf0\x95\x04\x2e\x95\xe2\x80\x3c\xf4\x4f\x3d\xa1\xdd\x3e\xaf\x7a\x5b\x5e\x88\xef\x2e\xcb\x6b\x27\x7a\x1b\x9c\x44\xea\x79\xde\x0f\xe7\x87\x2b\x29\x65\x59\x36\xf3\x11\xbb\xb7\xac\x80\x1d\x79\x00\x2c\x7f\x0e\x64\xcf\xe3\xb8\x95\x81\x8f\xc4\x89\x4b\xc2\xcc\xc2\x3b\xa7\xc1\x70\xda\xb6\xd8\x2b\x11\xa9\x2e\x76\x02\xd0\x77\x8d\xff\xa7\xf1\xf8\xe2\x3d\x39\x1e\xba\xc0\x1e\xea\xf8\x42\x05\x48\xc0\x41\xc2\x8b\x68\xe4\xc8\x19\xff\xd6\x61\x3f\x93\xc3\x1f\xb7\x74\x99\xe7\x34\xab\x61\x66\xd9\xb1\x5d\x87\x65\x2e\x4e\x33\x3b\x14\x43\x0f\x49\x49\xa6\x98\x90\xd2\x38\x22\x1d\x81\x6e\xc1\x01\x7f\x7e\xfc\xa2\x89\xd2\x82\x79\xbf\x3a\x77\xdb\x0e\x63\x62\xc7\xc7\x4c\x54\xe1\x22\x97\x04\x85\xb8\xaf\xb7\xcf\xcf\x49\xe6\x70\xb7\xc6\x3b\xae\x0b\xf1\xb6\x67\xb5\x43\xe2\x57\x37\xe2\x3d\xa3\x7e\xe6\x09\x43\x10\x3b\x48\x47\xda\x5d\x5f\x03\xd1\x32\x81\x6d\x68\xda\xc5\xcb\xb2\x53\xfe\xb4\x1d\x44\x69\x1d\x6b\x12\x18\x9c\x61\x53\x0d\xbf\x89\xda\xb6\x66\xdf\x70\x7e\xdb\x77\x34\x77\xf8\x13\x6f\x12\xb2\xdb\x94\x9c\x83\x64\x29\x69\x30\x17\x49\x62\x1a\xf1\x9b\x8b\x52\x27\xed\x5d\x6e\x12\xef\x64\xae\x26\xcd\xca\x66\xc7\xa6\x3a\x81\x1c\x58\xee\xa5\xf0\x4a\x8e\x67\x3a\x02\x18\xe6\x9d\xdc\x95\x26\xcc\x95\x86\x6a\x80\x98\xf2\xdb\x36\x27\x24\xe9\x76\x1c\x38\xa3\x09\xe8\x41\x4e\x4b\xa6\xba\xf1\xcd\x63\x3a\x10\x2e\x90\x59\xa4\x98\x81\x87\xaf\xe6\xa5\x49\x10\x1c\x81\xcb\x92\xa6\x54\xdf\x8f\xe0\x58\xa6\xc2\xf9\x34\xd6\xd9\x9b\xd7\x67\x6f\xbd\xde\x20\xd7\x63\x96\xfb\xb4\x40\xb5\x3c\x14\x91\x3d\x6e\x99\x43\x13\x8f\xb7\x12\xa6\x33\x48\x1b\xed\xed\x8e\x73\x7e\x85\xfc\x0c\x8f\x46\xfc\x79\x50\x28\xc0\x82\x4d\xc0\x41\x2e\x0e\x47\x3b\x56\xf9\x38\x07\xef\x07\x7d\x2f\xee\x5d\xd4\x65\x24\xb2\x38\x7e\x0b\x11\xb0\x17\xe2\x42\xf5\x6e\x56\xfe\xf8\xf4\x1c\xc2\xba\x35\xdd\x12\x70\x31\xee\x66\xee\x94\x3a\xa7\xf5\xa6\xe5\x47\xc8\x26\x6a\x58\xe2\x5f\x2d\xb1\x50\xb8\x11\x35\xaf\xfb\x44\x3d\x11\x15\xd9\x31\x73\x23\x3a\xa6\x89\x4a\x07\x49\xe5\xb7\x40\x6a\x7e\x50\xb9\xa9\x3a\xab\xa6\xb8\xf2\xf1\x8b\x23\x69\x40\x9f\x44\x72\x22\x41\xfc\x60\x01\x7d\x74\xf9\x8c\x84\x5d\xdc\x1a\x91\x81\xd3\x80\xf9\xe0\x41\x2e\x89\x2a\x43\xce\x70\xfa\x24\x9d\xba\x6c\x4e\x1c\x81\xd6\x73\xc8\x5a\x10\x94\x99\x0b\x31\xd8\xe1\xe8\x9e\x17\x06\xe5\xba\x5f\xb1\x2b\xda\x7c\x3c\x71\xb6\x78\x45\x1c\x26\x08\x04\x06\xa3\xb1\x38\xe7\xa4\x5e\xa4\x12\xa4\xd2\xfa\xe7\x09\x4a\x89\x3d\x5d\xb9\x54\x3e\x2f\x72\x58\x3a\x0a\x6f\x00\x57\xff\x44\x55\xe4\x71\x87\x9c\x3a\x23\xbc\x02\x30\x35\x17\x0e\xed\x40\x65\x0d\xea\x18\x55\xf0\x86\x78\xd4\x19\xed\x85\xde\x50\x5a\x99\x13\x1c\x78\x0d\x2d\x5a\x4c\xd3\xab\xe8\x31\x2b\x25\x0e\x42\x17\x44\xdb\x0f\xea\xa0\xca\xfe\x98\x48\x60\xbb\x64\x03\x68\x2b\x76\xec\xd4\x09\x6f\x68\x70\x51\x8f\x4c\x87\x54\x05\x1a\x07\x4d\x04\xbc\x76\x69\x3c\x1e\xd3\xe6\x6f\xd9\x26\x14\xef\x3c\xbf\x80\x91\x4b\xa2\x06\xe7\x7c\x6c\x85\x89\xda\xa8\xfa\xa6\x0f\x17\xbe\x66\x19\xfe\xe8\xcf\x67\xaf\x5f\x9d\xe8\x1c\x7f\x99\x5d\x5e\x5e\xce\x50\x79\xd6\xb7\x84\xe0\xf8\x58\xe8\xa4\x4f\xf0\x54\xc9\x97\xa6\x5b\x7f\xf1\x09\xfd\xfb\xf1\x9c\xe4\x7b\xa2\x5f\x29\x09\xd8\x48\x4e\x45\x0e\x2c\xdb\xff\x11\x82\xa6\xc7\x88\x1f\x9d\x49\xb2\x63\xc6\x77\x2d\x36\x50\xdc\x99\x64\x03\xc5\x55\x3e\x88\xbc\x66\xdd\xd2\xd8\x67\xfc\x4f\xfc\xbd\xca\xd7\xe7\xd3\x59\x5e\x46\xb5\x4a\x1a\x86\x27\xf1\x9c\xfe\xc8\xd2\x19\x48\x0d\x31\x28\xab\x29\xd9\x97\x99\x0b\x53\xfb\xc3\xc0\x4e\xe0\x61\xcb\x94\xc5\x72\x66\x31\x47\xd6\x48\x26\x16\xd5\xf4\x57\xa3\x7e\xd8\x25\xb8\xa9\xab\x2b\x22\x2b\xf2\x0a\x92\x6c\x17\xbe\x3b\x94\x72\xfd\xcf\x47\xad\x39\xe9\x2e\xfd\xd9\x5e\xb1\xa9\x90\x96\xb2\x53\x6f\x6e\xe3\x65\x03\xe6\xdf\xe3\x20\xa5\x41\x1f\x92\xd5\x65\x81\xc3\x49\xa8\xc9\x01\x39\x2e\x58\x44\xb8\xfe\x32\x74\x3a\xd1\x5a\x54\xa0\x8f\x83\xda\x73\xb2\x82\x86\xce\xb0\x39\xf2\x93\xb7\xf9\xd6\xab\xf8\x26\x01\xb2\x78\x43\xff\x99\x06\x95\xa3\xa0\x19\x7e\x79\x19\x3f\x79\x06\x31\x9c\x5f\x4e\x43\x2d\x49\x6f\x46\x9f\x9d\xb1\xc1\x01\xb7\xd0\x13\xa9\x34\x39\x7e\x32\xc6\x09\x94\x22\xf9\x44\x9b\x2a\x82\x75\xc7\x94\x6f\xc8\xe8\x30\xd5\x18\xde\x6f\x47\x78\x39\xa5\x49\x43\xde\x68\x90\x23\x67\x58\x7d\x72\x84\xc9\x74\x33\x43\xc1\x61\x38\xd0\x84\x56\x41\x5c\xe0\x70\x53\x97\x48\xd5\x67\xec\x42\x53\x15\xc2\xff\x70\x42\x4f\xc5\x93\xe1\x03\xcb\x74\xfc\x6d\x72\x5c\x01\x0f\x39\x52\x81\x96\x3e\xe1\x54\x49\x89\x4f\xc9\x19\xaa\x80\x5c\x70\xf4\xcf\x36\x48\xc9\x63\x86\x8d\x01\x39\x1f\x9d\xd8\x28\xf4\x76\x54\x36\x78\x0d\x6c\x78\xd6\x77\x44\x68\xe1\xcd\x9c\xd7\x79\x95\x40\xec\x50\x35\x57\x92\x0f\xe3\x11\xff\x3d\xfb\x9a\xfe\x1e\x2c\x2e\xd4\x8a\x2a\x1d\xe1\x6d\x39\x62\x21\xea\x54\x33\x8f\x07\xff\xb0\x4c\xbb\x18\x26\x79\x08\xa9\x3a\x82\x78\x13\xdb\x15\x26\xe6\x3c\x4a\xa9\xe0\xeb\xa4\x59\x22\xc6\x23\x4e\xa4\x84\x88\x9b\xa6\x79\x21\xc6\xcd\xbd\xa6\x60\x7f\x4b\x32\x88\x04\x84\x71\xa2\x07\x7e\xf9\x70\xd4\xe7\xfb\x65\x7a\x98\x82\x82\xe7\x9d\xa3\xcd\x99\xd4\xa4\x8d\x5a\x08\xae\xbe\x1a\xeb\x06\x94\x8d\x8e\x50\xc2\x51\x8e\x88\x8d\x0e\xe1\xca\xc1\x3a\x1b\x21\x71\x14\x94\xed\xf2\x4b\x49\x38\x54\xea\x86\x33\x1d\x00\x7b\xeb\xac\x03\x20\xfd\x7a\xdf\xe5\x9b\x53\xd0\x3c\xe7\xab\xb6\xb9\xb4\x48\x82\xd0\xb7\x6b\xb3\xe0\x17\xac\x38\x4b\x7a\xe1\xa3\x18\x6a\xad\x09\x77\x14\xc2\xab\x6f\x5b\x7b\x10\x07\x26\xfe\x2a\x2e\x0a\xea\xa1\xa0\xdf\xd8\x52\x9f\xbe\x7e\x23\xde\x2f\x8f\xa8\x74\x26\x76\xfb\xc4\xfb\x85\x5b\xd9\x5d\x73\xb9\xc4\x5f\x9c\xd8\x01\xd9\x0b\xa8\x32\x31\x96\x1d\xd0\xe8\x1c\xcf\x31\x19\x31\x70\x49\x6d\xd4\x91\xbd\x72\xd7\x5e\xc6\x96\x48\x75\x84\xf0\x6c\x73\xd0\x91\xb1\x1f\x9f\xfe\xa0\xaa\x12\x0d\xfb\x03\xf3\xfe\xa1\x52\x1c\xf2\xcb\xfd\x29\xc4\xc6\x55\x1d\x00\x89\xc2\x3c\x78\xfe\x4a\x7f\x71\x58\x89\xbc\x7b\xcb\x29\xcb\xc2\xac\x7d\xe4\xca\xdc\x47\xb0\x7c\xa3\x7f\x84\x22\x09\x3a\xe2\xbf\xfd\x93\xc1\xfc\x2b\x54\x29\xda\x7c\xd3\x21\x28\x9f\xb6\x77\x13\x3e\x1f\x48\xe8\xd4\x86\x6f\x5a\x33\x1b\x35\x23\x78\x61\x1f\x1e\xd7\xc5\x85\x7b\xde\xd9\x15\xb1\x95\x2d\xb6\xac\xb9\x82\x1c\x42\xd2\x22\x40\x23\x40\xc9\x59\xf7\x89\x52\xdf\xe7\xc7\x17\xfd\xd9\x1f\x0f\xcc\x98\x25\x19\xfa\x19\xbd\x10\xc2\x18\x8a\xbb\x7c\xab\x89\x15\xf2\xad\x8f\xd9\x76\x45\xcc\x6e\xc2\xc5\x28\xad\x3f\x0a\x93\xe5\xbd\xb4\x88\x4e\x52\x45\x7f\xe4\x0e\xc6\x5f\x39\xc0\x2d\x0d\x18\xd2\xf4\xd3\xc9\x96\xa8\x86\x57\xd7\x30\x53\x2a\xeb\x2a\x39\x26\xf5\x92\x04\x89\xe5\xde\x27\xda\x51\xf7\xd0\x70\xa9\x21\x70\xad\x68\x2e\xd5\x2f\xd2\xb5\xbe\x6c\x61\xb4\x39\x13\x1b\x64\x0c\x65\x76\x97\x36\x97\xf0\x96\x46\x3a\xd7\x7e\x3c\x60\x1c\x89\xe1\x3a\x20\x22\x88\x85\x42\xd7\x11\x1a\x80\xb3\x06\x53\xf8\x02\x59\xf3\xfe\xfa\xaf\xff\x7b\x0a\x3d\xa6\x72\x97\x44\x18\x33\xfb\x6e\x88\x1e\x51\x53\x07\xf8\xb2\x75\x01\xfb\xb5\x33\x02\x11\x4d\xbe\x34\xa5\x35\x2e\x97\xaf\x52\x4b\xed\x55\x09\x9f\x7f\x06\xec\xa0\xcf\xfa\x5d\x18\xc9\x8c\x8a\x67\x73\xb7\xa6\xc8\xd5\x62\x11\xed\x0c\x67\xd8\xb4\x3b\xb7\x27\x1c\xa4\x1d\x6f\x62\x84\x68\x78\xfc\x29\x39\x1d\xb1\x99\x2b\x46\x76\x7f\xc4\x5c\xa7\x53\xc8\xef\x10\x73\x99\x57\x08\xb4\xbe\xd2\xc4\xb2\x8f\xd9\xa2\x23\xcd\xa2\x2b\x8f\x19\xdc\x89\x0b\xef\xee\x9d\x1f\x9b\x76\xfb\x53\x94\xac\x5c\xf7\x91\xa3\x96\x8b\x41\xda\x5f\xa9\xe6\xb3\x6c\xba\xba\xaf\xa3\x07\xc7\xb3\x27\x70\x97\x93\x83\x12\xfa\x8c\x72\x1b\xc8\xe5\x0b\x05\xc3\xe0\xd9\x6f\x9f\xe3\x40\x3c\x26\x43\x9a\x83\xb9\x8f\x79\x1c\x3e\x16\x9e\x3e\x57\x74\x68\x96\xc2\x87\x16\xb1\x0c\x0d\x4f\x2f\xd3\x1c\x90\xca\x93\x6a\x8b\x51\xb5\xac\x2f\xf0\xaa\xb1\x6d\xf6\x06\x56\xcc\x90\x40\xbb\xac\x35\xb1\x24\x32\xa1\x5b\xce\x82\x6e\x91\x25\xf4\x92\xdf\xe5\x81\x5e\x92\x55\x99\xac\x7a\x84\xe6\x57\x4a\x6e\xc9\x8b\x1b\x05\x6b\xa2\x4b\x25\x9a\xe8\x37\x9e\x3b\x00\x35\xe1\x78\x31\x4e\xc7\xae\xdf\x6e\xab\xeb\x80\xfd\x9d\x32\x4a\x4e\xf2\x63\xb8\xab\xc9\x27\x64\x09\xb5\x6e\x36\x6c\xf9\xf1\x26\x50\x3f\x8a\x3f\x52\xb9\xbc\xb5\x6a\x6c\x82\x55\x68\x89\x9e\x60\x59\xfd\x4a\x9b\x21\x3c\x91\x24\x4f\xcf\xaa\xa8\x48\xfa\x20\xca\x23\x65\x6d\xd7\x6f\x44\x34\x65\x01\x93\xfb\x61\x3f\x8d\xaf\x8e\xc4\xd3\x8f\xf3\xe6\xff\xfd\x11\xf5\x49\x5f\x92\x60\xe3\xbd\xa2\xea\xff\x88\xf5\xfe\x1d\x99\x69\x63\xad\xdd\x20\x45\xad\x2f\x9a\xc8\x55\xfb\x07\xac\xe9\x69\x0b\xcf\x9e\x25\xb0\x49\x3c\x00\x06\xd1\x42\x43\xb3\x3c\xa1\xf0\x1f\x49\x4f\x9b\xd2\x99\x24\x3b\xed\x70\xca\x83\x34\xa7\xfa\x72\x69\x94\xdf\xd4\x3b\xcf\x24\x5d\xbe\x33\x21\xef\xd0\xc6\x9d\xb4\x3e\x6e\xe5\x76\x89\x69\x26\xd2\x99\x1f\x6f\x14\xa0\x34\x98\x24\x2b\x2c\xbd\xa9\xd2\x73\x77\x92\xff\xfc\x0f\x64\xd3\x39\x62\x35\x9a\x48\xab\x33\x9c\x2a\x68\x93\xc6\x3b\xbd\xdf\xda\x3c\x31\x9b\x80\xc8\xb1\xf5\x0d\x12\xec\x4c\x8b\x15\x91\xc2\x5a\x44\x75\xaf\xd5\x63\x81\x4b\x52\x93\xf1\xe6\xc7\x8a\xa6\x00\xa1\xf8\xa1\x71\xd5\x9c\x0c\x91\xce\xab\x4f\x42\xf6\x78\x25\xfb\x72\xd1\xaf\xe3\x14\xda\xc3\x32\x47\x2b\x25\x33\x4e\x86\x1d\x60\x37\x26\x57\x49\x4c\xae\x5a\x3c\xfa\xee\x5a\x47\x03\x8c\xba\x18\x46\xe2\xb8\xef\x6a\x32\x73\x37\x53\x28\xa0\xdd\x5e\x1b\x49\x1e\xb7\x02\x79\x8c\xfa\x12\x6b\x9d\xcb\x9e\x15\x97\x10\xf3\x40\x05\x1c\x8e\xae\xbe\x8a\x5a\xa0\xd7\xa6\xde\x3e\x51\xf2\x74\x9f\xb1\x97\xef\x17\x64\xf9\x82\x1d\x4e\x98\x5e\xff\x8a\x40\xc9\x8f\x80\xb2\x5a\x9f\x2f\xd9\xcf\x47\x1d\xe3\x45\x3a\x79\x7c\x2e\x5c\xc4\x7a\x15\xcf\x91\x90\x9e\x06\x2d\x25\x32\xc8\x7d\x1d\x4d\x55\x3e\x83\x21\xd2\xfc\x70\x8b\x17\xb4\xd1\xd7\x22\xf4\x4e\x14\x27\xe9\x4d\xf4\x22\x62\x24\x8d\x91\x45\xd2\x9d\xbb\x8c\x56\x9c\x86\xc1\xa5\xe3\x98\xbb\x3e\x99\x7d\x76\x63\x2a\x13\x3c\x18\x36\xae\x72\x74\xdc\xa2\x4c\x1f\x97\x4c\x07\x87\x16\x32\xb1\x92\x84\x27\x49\x47\x33\x92\x47\x42\x75\x46\xec\x3e\x34\x98\x4f\x5c\xe1\xe8\x7c\xe0\x6c\x2c\xe1\x1b\x50\x6f\x3a\x07\x24\x4f\x62\x63\x30\x85\x07\xf1\x13\x6b\xaf\x6e\xe5\x68\x7e\x2e\x4f\x46\x3c\x24\x58\x8c\xf3\x89\xbc\x19\xd2\xe2\xd8\x05\x2c\xa5\x7c\x38\xec\x88\xfd\xf0\xbe\x33\x32\xbd\x89\x54\x7a\x31\xb5\x88\x17\x34\x2d\x74\xcb\x93\x57\x02\x87\x50\xc3\x01\x64\x40\xf0\xfc\x62\x1d\xf3\x88\x55\xee\x23\x06\x52\x4a\x6f\xbf\xbe\x07\x4a\x57\x69\xe2\x52\xc7\x81\xa9\x8c\x21\x18\xe8\xb2\xdb\xe4\x42\x9e\xf5\x51\x1a\x11\x4f\x20\x55\x07\x8e\xfa\x55\xb2\x3f\xd9\x6d\x5c\x6d\xb4\x8b\x8c\x38\xef\x41\xdb\xb3\xc0\x4a\xc7\xbc\xa8\x0d\xce\x5a\x5e\x0b\x05\x66\xb6\xc4\x4b\x04\x8c\xea\xea\x5e\x75\xdd\xfb\x67\x3a\x92\xc7\x42\xa6\x26\xe9\xd8\x05\x9e\xa0\x9f\x5b\x42\x11\x86\x98\x13\x2f\xc9\x65\x65\x74\x58\x10\x51\x15\x8f\x04\x9f\xc7\xeb\x71\xe9\x7a\xd0\x7a\x76\xfc\x40\x0b\x35\x19\x50\x91\xbf\x65\x22\x29\xa9\xf9\x43\x73\xb9\x85\xb8\x0c\x88\xca\xe4\x04\xa7\xe7\x17\x13\x9e\xe9\xd9\x25\x3b\xef\xa6\x0a\xb2\x83\xeb\x04\x44\xc7\x5b\xfb\x55\xe0\x38\xe2\xc5\x32\x0f\x9b\x19\x89\x63\xe9\x9a\xa1\x26\x1f\x9c\x0b\x5f\xfb\x6a\x58\x77\xea\x78\xa8\x8f\x0b\x7b\x57\x46\x57\x67\xe8\xb3\x26\xc8\xfd\xc2\x61\xf2\x9d\xcf\xe3\x13\x11\x15\x9f\xa6\x09\xcf\x7b\x86\xee\xc3\x11\x39\x19\xbd\xe2\xe4\xb2\xb2\xb6\xd1\x43\x43\x46\xfd\xa4\x44\x82\xe7\x4d\x21\x19\xde\xbf\x82\x1c\x5e\x3f\x96\x87\xa3\xac\xbf\xae\x59\xd6\xf4\xc2\xfa\xf8\x49\x91\x69\x51\x16\x60\xcb\xf5\xc1\x1c\x15\x42\x46\xef\xe7\x68\xc6\xc6\xed\x22\x79\xb7\x1a\xe9\x90\xd8\x25\x6c\x71\x76\x45\xf3\xdf\xcf\x5e\x62\x31\xa5\xa3\xdc\xfb\xa6\x2e\xd9\x31\x49\xfe\x2d\xd1\xcd\x06\x5e\x94\x24\xb8\x6d\xd5\x86\xa7\xd9\x7d\xf9\xc3\x0b\xb6\xf8\x20\xe1\x69\x47\x5c\xcd\x5b\xfc\xf7\xf3\xec\x3e\x3f\x75\xe2\x17\xcf\xaa\x57\x80\x70\xbd\xf0\xda\xd9\xb8\xb8\x71\x18\x0e\x41\xcd\x23\x7b\xd2\x01\x4f\x95\xd5\xbc\x7d\x98\xb8\x4c\x91\x35\xbe\x48\x76\x37\x31\xde\x12\xce\x3e\x8b\xa7\xcd\xd3\xb3\xcc\x3f\x59\xce\x57\x1a\x1e\x68\x2d\xf8\xd9\x5b\xb7\x0f\x27\xd1\xb7\x74\x0f\xe2\x92\xc4\x4b\x30\x4e\x28\x1e\xaa\x44\x7b\x74\x92\x8c\x23\x99\xac\x34\x69\x6f\x28\x08\xf9\xac\xd2\xef\xa7\xe7\xe3\xe1\x9d\xad\x20\xfe\xe6\xdc\x23\xc3\x97\xe0\x28\x19\x7f\x4d\x53\x14\xc7\x25\x4f\xd4\x23\x35\xfe\xa6\xb9\xe2\xd2\x85\x89\xf2\x39\xfe\xf6\xa2\xd9\x96\xf5\x8c\xb5\xb4\x69\x9f\x4e\x12\x48\x56\xea\xdd\xf5\x93\x2e\x38\x00\x39\xfe\xc2\x4e\x19\x6f\x73\x9b\xb6\x66\x72\x34\x00\x90\xbb\x85\xf9\x11\xdb\x51\x8b\xd3\x9a\xdd\x31\x61\x91\x9e\x40\x36\x11\xfe\x83\x56\xcd\x7d\x9f\xae\x2c\xcf\x9a\x2f\xce\xf8\x9f\xe9\x2a\x34\x0b\x3a\x84\xd6\x47\x8a\x85\x3a\x08\xb9\x41\xb8\x18\xe7\x5a\x6e\x38\x0d\x20\xb6\x5b\xbc\x61\x89\x3f\xc1\xd1\xb5\xa2\x36\xd1\x90\x9c\xdb\xda\x06\x41\x1b\xc4\x27\xea\xa8\x96\x9e\x66\x2e\x3d\xae\x04\x7e\x04\x91\x35\xee\x56\x6f\xe2\xb2\x1e\xbe\x13\x6b\x17\xea\xb0\xe3\x93\x59\x47\x99\x5b\xdf\xa3\x79\x3a\x3b\xd7\x57\xed\x3a\x9b\x8c\x46\xb9\x65\x82\xac\x44\x44\x96\x2c\xea\x44\xfb\x8c\xfc\x44\x4f\xa5\xe0\xb6\x29\x26\x1d\xa4\x93\x9b\xe8\xe8\x56\x98\x6d\xcb\x6e\xb9\x5d\xeb\xcb\xef\x4f\x78\x9b\xb3\xa7\x74\xf1\x21\xb4\xe0\x21\xb8\xd8\xb5\x8f\xb2\x4c\xee\xf4\x3c\xa5\x4e\x71\x37\x7e\x42\x13\xfd\xa8\x99\x5e\x53\x9f\x0e\x92\x90\x26\x6a\x13\x88\xc9\x12\x6a\x99\xcc\xb7\x35\xf6\xaa\x5e\x43\xcb\x86\xf7\x1a\xd8\x92\xcc\xce\x79\xd6\x59\x04\x3e\x9c\xd3\xf7\x4f\x24\x9b\x58\x79\x6d\xd8\xc0\x6a\x3f\xd4\xb7\x73\x3e\xfa\x3e\xe7\x1c\xce\x9f\x67\xb0\x5c\x8a\x2c\xef\xc3\x9b\xd8\xcb\x49\x6c\x98\x92\xdb\x50\x0c\x74\x78\xf0\x1e\x19\x38\x6f\x9b\x43\xba\x07\xe9\x83\x03\x62\x23\x1d\xa3\x08\x09\xae\x12\x32\x48\x6b\x17\x85\xe2\xe4\x08\x91\xd3\xc3\x70\xa9\x2c\x4a\x88\xf3\x5b\xe2\xb8\x0c\x58\x7e\xe4\xb3\x70\xaa\x17\x87\xc4\xaa\xf8\x74\x92\x2e\xb1\x5e\x74\x8b\x6a\x60\x56\x77\x6c\xad\xf1\x4c\x92\xec\xea\x32\x05\x71\xe9\x4a\x26\xc1\xca\xf6\x5b\xd6\x9c\xe1\xd1\x1c\x97\x24\x3a\xdc\x74\x9c\x24\x93\x86\xeb\x4a\x3c\x98\xc0\xbf\x66\xdf\xf2\xaf\x84\x88\xf4\x08\x45\x23\xb4\x6b\xda\xa6\x27\x89\xc6\xf8\x47\x7b\x68\x27\xf5\x93\x9d\x6a\x40\x32\x0a\x1d\x8f\x65\xcf\x79\xe5\x7c\x1b\x9f\x7c\x83\x6e\x4e\x31\xec\xfa\x86\xcc\x07\xb8\x66\xd0\xef\xae\x59\xfd\x4f\x17\x97\x01\x97\x01\x0e\xf1\xa9\xb1\xf9\xbe\x73\x2a\xd0\xb8\xb1\x36\x6b\x56\x5d\x4e\x13\x42\x02\x45\x71\x56\x83\xbf\xe0\x44\xf5\x43\xc3\x29\x61\x97\x15\xc1\xb4\x3f\x2c\xb1\x68\xbb\x78\x23\x1f\xe9\x66\xc2\xc7\xec\x2d\x3e\x4e\x8c\xe1\xa6\xa6\xad\x5e\xf2\xd7\xec\x54\xbf\x1e\x6d\x86\xb4\x2a\x69\x93\x27\xf4\x65\x5c\xdd\xc1\x6f\x67\xf2\xc3\x10\x7a\xcf\xe8\xdb\x8c\x2e\x0a\x30\x51\x03\xe8\x71\xf5\x21\x14\x4c\x80\x02\x37\x95\x81\x8f\x35\x2b\x0b\x92\x10\xf1\x3a\x3d\x3b\x54\xbe\x67\x1b\x76\xf1\x58\xfc\x4d\x6d\xd4\xea\x55\x2c\x36\x70\x8e\xf2\x4f\x9f\xde\xd6\xb2\x59\xfd\x13\x91\x36\xbb\xe0\x3a\xaf\xe9\xc7\x79\x97\x60\xe9\xaa\x69\x3a\xe4\xa4\x3e\x80\xd1\x63\x1f\x3d\xc0\xed\x81\xfb\x0a\x46\x6f\x7d\x7e\x04\x72\xd2\xe2\x16\xd0\x49\xe3\xf1\xcc\xf6\x48\x86\x4b\x03\xb6\xfd\xba\xeb\xe9\x04\xeb\xa8\x2f\xcf\xe8\xf3\xec\xcc\x7f\x3e\x32\xec\xa8\xf5\x78\xe8\x6c\xd8\x55\xd2\x7e\x0d\x85\xe2\xc4\xf0\x0f\xf1\xfd\x3d\xc6\x1f\xb5\x9f\x9a\xc0\xb0\xb3\xe4\x10\xf1\xeb\x78\xb0\x38\xac\xfa\xf5\xb9\xe9\x10\xb0\xb6\x5b\xb2\xed\x3f\xf4\xf5\xc6\x55\xca\x1e\x70\x25\xa4\x01\xda\x65\x6f\x51\x29\x7b\xad\x95\x92\x2b\x6e\x4d\x5b\xd1\xe5\xec\xd6\x31\x31\xa1\xa7\x0f\x69\x23\xa4\x38\x61\xa5\x48\x80\x69\x97\xca\xeb\xeb\x01\x05\x63\xe5\x7b\xd0\xf7\xb4\x42\x47\x2a\x09\xe0\xd8\x9e\x23\xba\x21\xe5\x00\x90\x35\x4c\x6e\xda\xf5\x15\xb1\x51\x0b\x7d\x11\x15\x24\xe8\xe1\xec\x87\x2b\x84\x1a\xc5\xd5\x59\xa8\xa1\xea\x4c\x4a\xd9\x43\x41\xdc\xd9\xf6\xd3\xd5\x85\xd2\xb9\xfa\x5b\x26\x6a\xbc\xb4\x1f\x38\xfe\x73\xa2\xe2\x21\xc7\x29\x8b\x6a\xbe\xc1\x87\xa9\x29\x48\x4d\xf5\xa6\x9b\xaa\xa8\xc3\x12\xdf\xf0\x90\xf8\xde\xf3\xce\xbd\xa8\xad\x81\x1b\xfa\x20\x07\xe1\x9d\xa9\x22\x49\x53\x6a\xf0\xdb\x7c\x6a\x65\x10\xeb\xa7\x24\xda\x8f\xcc\x9f\x5a\xd1\x31\xc8\xee\x83\x63\xf6\x0a\xff\x48\x60\xe7\x8b\xe2\x34\x55\xf2\x49\xf8\xa4\x44\x64\x95\x02\xcd\x02\xb8\x90\xf7\x90\x7c\x17\xec\xa8\xda\xf2\xf3\xa6\x1a\xc9\xb7\xb9\xa2\x2b\x4d\xf2\xdc\xba\x47\x4f\xc1\xe9\xaf\x06\xaf\xad\xc1\x8f\x7a\x6a\x91\xb1\xab\x18\x47\xf9\xb9\xb7\x08\xde\x11\x52\x3e\x77\x9d\x8c\x92\x38\xe9\x5a\x99\x09\x17\xff\xa7\xf1\x93\xfc\x7f\x61\x2a\xef\xea\x72\x8e\x6a\x49\x4f\x9d\x34\xaf\x20\x38\x89\x08\x32\xea\x62\xc6\x52\x55\x5d\x47\x90\xf7\xaf\xe6\xa9\x56\xf8\x05\xde\xee\x17\x15\x3b\x7b\xeb\x23\xfa\xcc\x67\xa3\x97\x3c\x17\x5c\xe8\x97\x72\xe4\x7d\x4c\xde\xf9\xc3\x7b\x3e\x90\x19\x80\x32\x78\x9f\x62\x35\x02\x51\x69\x97\x01\x59\x1e\xc5\xcf\x39\xc0\x96\x9b\x0f\xb1\x07\xd5\x19\x81\x92\xaa\x10\xd4\x93\x97\x0a\x24\xd4\xcf\xc3\x11\xd6\x63\x38\xe9\x33\x9b\x35\x1e\xc5\xbf\x93\x44\x6c\x5d\x88\xa7\x80\x8a\x72\x88\xe8\x83\x17\x46\x63\xa0\x0c\xdf\xa0\xe4\xfa\x53\x86\x46\x37\x72\xf4\xea\xab\x60\xf5\xc4\x1b\xcb\xf6\x3f\xf1\xf9\xe8\x78\x54\xff\x88\xf4\x10\x34\xef\xfb\x9a\xb4\x49\x1f\x56\x4e\x1f\x91\x0e\x1a\xaf\x08\x2a\x89\x67\x61\x6e\xd3\x37\x83\x8e\x3a\x16\xe2\x31\xdd\x39\x87\x9a\xc5\x84\x2b\x55\xc3\x5c\xf8\x07\x85\xb4\x7e\x44\x9e\xf8\x77\xe2\x21\xc2\x5f\xa6\x1c\x44\x54\xa3\xc6\xd4\x29\x1d\x2e\xa1\x54\x52\x69\xea\xdd\x90\x64\x60\xf9\x30\x34\x24\xca\x57\xce\x60\x8e\x9c\xd7\xb1\xe6\xc7\x15\x22\x61\xb9\x5d\xc4\xba\x1f\x57\x32\xc8\x86\x2d\x7a\x3e\xa5\x1a\xc9\x7c\xc3\x0b\x4b\x96\x3f\x04\x1b\xd0\x84\x2a\x50\x3a\x71\x39\x5c\x32\xd1\xd8\x0c\x1e\x38\x94\x2a\x61\x71\xf2\x21\x24\x8c\x95\xdf\xf2\x76\x2c\x5d\xc6\xe1\x10\x4b\x81\x73\xf5\x49\xdd\x12\xa2\xd9\x73\x4f\x63\x82\xd9\x85\xbe\xb9\xda\x34\x51\xb4\x75\x34\xa7\x81\x9f\xb6\x7c\xdc\x35\x16\x01\x3d\xd6\x0f\x7a\x40\x32\xd8\x37\x4d\x98\x05\xeb\x50\x0a\x6a\xf7\x2a\x5b\x69\x4a\xed\xa8\x60\xfc\xce\xea\x2d\x95\x82\x1b\x8e\x0a\xc9\x40\x76\xdf\x90\xed\x2d\x9c\x21\x1f\xb9\x74\x7e\xe9\xe2\x8c\x1b\x73\x77\x57\xb9\xe0\x7a\x77\x2b\xc1\x8d\x67\xd7\xec\x82\x2d\x4c\x43\x9b\xf9\x15\x47\x81\x30\xee\x76\x49\x3c\xa7\xd7\xdd\xec\xac\x5f\xef\x66\x0f\x72\x5b\xda\xa4\x52\x51\x07\x1f\xaa\x47\xaf\x3c\x78\x3b\xba\x43\x57\x3d\x0c\xbb\xe2\xf8\x22\x6f\x1b\x9f\xea\xe7\x71\x35\xdb\xb7\x8a\x0f\xeb\xdd\x3b\xaa\x46\xef\x67\x8e\x6a\x49\xde\xbb\x81\x85\x5a\xd2\xdf\xf9\x8e\xd8\x8c\xa1\x15\xc5\xa2\x97\x56\xd8\xe3\x8a\x58\xda\x7c\xf1\xd2\xd2\xa5\x90\x9d\x9d\xba\x02\xbb\xef\x0e\xf2\xb4\xc6\xd9\xcb\xb7\x6f\xc6\xb8\x1f\xe3\x17\xea\x32\x9a\xa0\xea\x2c\xc6\x15\x94\x30\xbe\x70\x49\x8c\x34\xea\xa4\xa4\xb1\x01\x96\xb8\x16\xb6\xa7\x98\x4c\xb0\xcf\x1e\xa9\x37\x75\x53\xf3\x01\x15\x6b\x2a\x0c\x8a\xc4\xc3\xd0\x85\x7d\x2e\xf9\x05\x39\x9e\x0a\xdc\xad\x76\xeb\x0d\x2f\xec\x57\x2d\xd9\xad\xb2\x7b\x27\xf7\x08\x95\x3a\xba\x8a\xea\xc8\x25\x22\x3e\x97\xcb\xae\x22\x1a\xf8\xe2\x8c\xbd\x32\xbd\x7e\x5a\x5f\x53\xd6\x88\x39\xbf\xe6\xf3\xf2\x80\xfa\x4b\x44\x6f\x10\xaf\x85\x66\x6f\x5c\xae\x32\xbe\x5c\xec\x01\x16\x80\xd0\xe2\x00\xbb\x1d\x5e\x73\x5f\x2b\x0a\xbd\x39\x7d\xa9\xb1\xb5\xf1\xf1\xd4\xa9\x70\xd6\x2e\xc7\xd0\xf1\xc3\x27\x88\x14\xb3\x12\x60\x1f\x31\x74\x13\x53\xeb\xca\x03\x2d\xa3\x3c\x1c\x3c\x78\x99\x17\x1b\x6f\x6e\xea\x11\x15\x33\x22\xba\x2b\x29\x17\x32\x46\x8f\x21\x43\xe2\x09\x65\xf2\xa4\xe4\x44\xbb\xf7\x08\x35\x98\xa7\xa4\x31\x51\x04\xbd\x6b\x29\x13\x5a\xb0\x01\x3b\x16\x77\xfd\x4e\xc8\x0c\xf8\x18\x25\xa3\xe2\x57\x75\x0c\x32\x81\x95\x89\xab\x2f\x85\x96\x4b\x9e\x55\x1f\x31\x8c\x47\xa5\x8e\xdd\x3a\x71\xbb\xc8\x3a\x39\x1e\xf0\x7d\xcd\xd4\x49\xc7\x31\xc7\x31\xd1\xe5\x6d\xd1\xc2\xce\x42\xe6\xd4\x68\x6a\x2f\x53\x35\xda\xc0\x6c\xa6\x55\xf3\xc3\x41\x6f\x28\xf7\x90\x9b\xde\x4c\x51\xf9\x05\xd0\xdd\x17\x7b\xf7\xf9\xa8\x06\x62\x0a\x43\x0d\x89\x6d\xd4\xe2\xc1\xdd\xa6\x5f\x9b\xcd\x86\xe4\x6f\x83\xdc\xb0\x9c\xc8\x07\x3f\x66\x2f\x9b\xa2\xb7\xa1\x21\xb1\x4a\x38\x76\xd0\xe7\xb1\x56\x6c\xbb\xf8\x86\xff\x84\x3c\x91\x84\xcc\xfa\x26\x04\x22\x8e\x84\x5c\xbc\xc8\x7b\x04\x35\x77\xb3\x20\x47\x45\x55\x78\x50\x5f\x25\x1d\x95\xf9\xa8\xb6\x69\x3a\x79\x88\x27\xd2\xa9\x7f\x87\xa7\x1b\x09\xe2\x75\x19\x6a\xb3\x65\x6e\xbd\x94\x47\x37\x7c\xa3\xa8\xa6\xd0\x48\x31\xe0\x81\x50\x68\x4c\x86\xef\x80\x56\x35\x6c\x4d\xab\x9b\x1e\x6b\xdd\x96\x07\x8d\x10\x3d\x3b\xc7\xdf\x33\x66\x63\xfc\xc4\xb1\x31\x8a\x96\x0c\x84\x57\x72\x5f\xe2\x05\xba\x6f\xa4\x70\x76\xd4\xa8\x3a\x2f\x56\x0e\x5d\xbc\x65\xf1\x7c\x12\x61\xa8\x62\x60\xa1\xc2\xb7\x88\x5b\x09\x1f\x23\xe6\x2b\x7c\xe4\xb9\x8d\xf6\x85\x0a\xac\xad\x64\x6b\xce\xce\x5e\x0c\x71\x21\x94\xfa\xc7\xd6\xea\xbe\x15\xe8\xde\x43\xb2\x69\x3a\x0d\xf6\xde\xc7\x71\x83\xe1\x56\x0c\xcb\x7c\x47\xd2\x89\xfd\x4b\x45\x84\xf6\xb3\x7b\xec\x0a\x70\xaf\x2b\x8b\x55\xd4\x9d\xbb\x24\xa2\x13\x45\x3f\x67\x03\x37\x21\xbf\x13\x2a\xf3\x27\xcf\x6b\xbb\xc7\xb8\x93\xe7\xad\x65\x6f\xa2\xbb\x63\x8c\xfd\xee\xbe\x49\xaf\x98\x49\xf4\xe7\x00\x22\x69\xa0\x36\x3c\x62\x5a\x3a\x24\xf3\x82\x4a\x53\x52\x9e\xac\xa1\x6b\xda\x54\x50\x1d\xc5\xd7\x56\x32\x7d\x49\xa1\xed\x52\x6a\x73\x6c\xc6\xa9\xba\x71\x80\xf2\xb4\x2c\x93\x4f\x4f\x5b\xaf\x4a\x51\xe3\x89\x23\xad\x3a\xd0\xce\x58\x6b\x97\x4d\x4c\x9b\xa1\xa4\xfa\x11\x0f\xa4\x54\x25\x32\x02\x0b\x87\xce\x95\xd7\x46\x32\x94\x2e\xfc\x35\x0f\xc2\xfd\x52\xc2\xb6\x03\xbb\xc0\xcf\x12\x18\x07\xb3\x64\x6c\x3f\xdf\x03\x09\x37\xf9\xe2\xa1\xfc\x3b\x35\x4b\x0d\xa1\x45\x18\xcf\xb2\x12\xeb\x9d\x56\x02\xc9\xe3\x90\xb1\x17\x50\x1a\x5b\xf6\x3e\x8d\xa0\x69\x4d\x17\xd8\xec\xa8\xb9\xe3\xae\x8f\x36\x75\x71\xf8\x8a\x74\x6a\x82\x3e\x82\x74\x7f\xe9\xe9\x5a\x5f\x56\xa6\xde\x12\xd6\x7f\x0f\x36\x1d\xeb\x87\xe7\x74\x2d\xcb\x0f\x20\x94\xf8\x56\x56\xb8\x11\x3d\x05\x72\x74\x55\x09\x6e\x9d\x0f\x42\x08\x76\x0d\x78\x35\x66\xac\x32\xfe\xb3\x3c\x57\xeb\x51\xca\x5c\x45\xfb\x1a\x6e\xa1\x97\xfc\xeb\xc8\xec\xb5\xaa\x93\xc5\x22\x75\x5c\x5a\xc1\x6d\x3f\x1d\xdd\x66\xf1\xec\xf1\x8b\xd7\xd9\xa3\xa9\x83\xa0\xb5\xc7\xe4\x47\x0b\xc6\xc4\x4a\x0b\xa6\x69\x93\x98\xa9\x75\x1d\x62\x93\x9e\x5e\x86\x54\x3c\xbe\x0a\x39\x16\xda\x91\x68\xb1\xa7\x3b\xd2\xf3\x53\x10\x3a\xd2\x84\xa4\xe6\xa9\xfc\x1a\xd4\xf1\xaf\x08\x4a\x25\xff\x86\xe0\x78\xcc\xda\xf5\xc3\xb6\xf7\x64\x7f\x8d\xb8\x5a\x79\xea\xc6\x3f\x8f\x4c\xcd\x55\x3e\xb4\xcd\x45\xc9\x01\x59\x5a\xfd\x8d\x7e\xf0\x35\x5d\x0d\xd7\xaf\xab\x70\x6c\xcd\x84\xdc\xa5\xf2\xe1\x0f\xf9\xef\x59\xb2\x77\x7a\x54\x71\x9c\xa4\xaa\xd6\x12\x27\xb3\xf5\x4e\x9f\xc9\xd4\xda\xdb\xb5\x07\x8d\x68\xb4\x9f\x3e\x0c\xc0\xb9\x66\x95\xf6\x60\x41\x55\xb9\x11\x5b\x98\x5f\xd1\xd4\xa1\xdc\x75\xdd\xc1\x4a\xf6\x02\x5c\x40\xfc\xe8\xdf\x70\x09\xa1\x27\x5d\xc7\x54\x47\x87\x92\x8d\x17\x0e\x38\x0f\xca\x6a\x98\x10\x71\x50\x51\xef\x20\xae\xa9\x7f\x8f\xc8\xe2\xb6\x55\x9a\xfb\x54\xff\x98\xbe\x28\xc0\x75\xe8\xb8\xe0\x36\xa6\xf7\x03\x95\x84\x53\xa2\x2a\x7a\x1d\x7b\x87\xaa\xf9\xba\xa5\x7b\xe5\x21\xfd\x47\xfc\x54\x42\x41\x74\xe8\xdc\x27\x70\x3e\x45\x4f\xfc\x35\x48\xcd\x81\x88\x52\x54\x1b\x2f\xa1\x38\x43\x46\xe6\xdc\x4d\x24\x2b\xac\x56\xf1\xaf\xa9\xa8\xfd\x60\xb2\x92\xf9\xc5\xac\x7b\x6f\xfe\x3c\xad\xaf\xf3\x5d\x15\xd7\x8c\x7c\xc1\x80\x97\x9a\xc0\xbf\xdf\xb0\x3a\x9e\x10\xf3\x1a\x49\x52\x43\x95\xa9\x24\xb5\x6e\x31\x04\xd5\x0e\x8e\x5f\x6d\x27\x68\x34\x35\x85\x45\x34\xb4\x95\x6a\xde\x51\xcd\x79\x7f\xc9\x4f\x42\x16\xc8\xef\x53\xbe\x6b\xae\x7e\x60\xb7\xe2\x2f\xcb\x4f\x17\x71\x06\x08\x57\x34\x31\x73\x57\xd4\x1c\x16\xaf\x0f\xf3\xb8\x2a\xcb\x31\xfe\x9d\xfc\xe1\x1c\x8e\x7a\xb5\xc0\x23\x90\x7d\x3a\x7e\x4a\x9f\x43\x85\x82\x3b\xf2\x6e\x4c\x62\x42\xef\xf3\x03\x21\x51\x0e\x0c\xc2\x47\x9f\x46\xb2\x48\xdf\xf1\x13\x21\xa7\xdf\xc3\x30\x02\xcd\x40\x9c\x7b\xfe\xd3\x38\x93\xfd\x6d\x8f\xf7\xf8\xa7\x4e\x74\x62\x92\xa9\x3e\x4c\xe9\x13\xdb\xae\x3f\xb9\x1f\xbf\x5e\xa2\xef\xa9\x44\x69\xfc\xa3\x0e\x09\x00\x70\x15\xed\xfc\x8a\xe5\xd5\x98\x9f\xd1\xb5\x3c\x99\x12\xf7\x2d\x4a\x4f\xe9\x1e\x99\xff\xdd\x08\xfe\xed\x96\x9f\x7d\x3f\xe9\x83\x04\xa3\x04\xd9\x0e\x60\x49\xf7\xfa\xba\xc0\xa0\xf7\x9f\x65\xd1\xe1\x49\x9b\xbf\x71\x72\xd1\x73\x40\x3f\x23\x74\x62\x94\x49\xfc\xe7\x24\x95\xf8\xbb\x27\x44\x3b\x94\x64\xb2\xff\x19\x2f\x2d\x6a\x72\xba\x49\x84\x91\x3d\xf6\x1b\xec\x2a\xb3\xaf\x6a\x5e\x4f\x21\x94\x3e\x30\xd9\xe5\xdb\xff\xcb\x9b\xac\xaf\x5f\xfc\xc9\x3f\x41\x20\x3c\xb4\x7f\x84\xc3\x05\xf8\xfc\x29\xbc\x71\x48\xc7\x02\x69\xda\xe9\x50\xe4\xdb\x66\x71\x81\xa7\x0c\xf9\x85\x55\x44\x9d\xe4\xab\xcc\x36\x1b\x56\xc3\xf9\x20\x94\xbb\x77\x3e\xb5\x8b\xfb\x36\xfb\x34\x3b\x33\xe7\x70\x79\xa3\x0f\x7b\xf9\x40\x2c\x6c\x0f\xcb\xd0\xa7\x3b\xad\xd0\x69\x79\x21\xbf\xdf\xe6\x74\xae\x3f\xbd\x94\x1f\xdf\x37\xfc\x06\xf3\xa7\x44\x88\xb4\x75\x53\x43\x6d\xff\xe9\x95\xfc\xfc\x73\xbe\xe3\x1c\x82\x44\xd7\x0b\x1a\x10\x90\xd0\x27\x24\x74\x5c\xd0\x46\x1e\x30\x2d\x95\x49\x50\xe1\xae\xe9\xdb\x41\xc3\x4e\xdb\x15\xf9\x55\x5a\xf2\x56\xb2\x11\x5e\x1a\x73\x9e\x16\xf0\x2c\x85\x0a\x77\xbb\xc1\x40\x98\x2f\xca\xae\x4c\x3e\x18\xe8\xcf\xb9\x38\x1f\xb6\xf9\xe5\xd2\xad\x20\xcc\x1a\x5f\xdd\xcc\xfd\x6c\x69\x1b\x8a\xb6\x39\x20\x63\xf0\x4f\xe1\x31\x66\xf7\x98\xe4\x13\x17\x81\xfd\xed\x01\xc1\xe2\x19\xd2\x4c\xe0\x31\xed\x46\x3d\xc5\xd5\x5b\x8c\x83\xcb\x71\xa5\x8a\xdf\xb7\xcb\x23\x5e\xd6\x87\x5e\x45\x70\x9f\x94\x4c\xb3\x62\xe0\x27\x15\x04\x45\xa7\x38\x97\xed\x1a\x3c\x1c\x20\x01\x2a\x5e\xc3\xc9\x12\x3f\xe1\xca\x72\xa5\xf2\x76\xb9\x25\xc2\x70\xf3\x1f\x26\xfb\xe8\x9f\xff\x99\x1f\xb6\x20\xd1\xe6\x5f\xfe\x25\x7b\xf9\xe0\x63\xe5\xad\x99\x9c\x77\x46\xf2\xa1\xbd\xcc\x7f\x29\xf7\x79\x15\xb5\xd9\xe7\xbf\x3c\x49\x9a\xcd\x41\x60\xd9\x93\x3c\xca\xc5\x10\xa5\xcf\xbb\x7b\xe7\xff\x04\x00\x00\xff\xff\x40\x05\xd7\x2e\xdc\xbb\x00\x00") +var _confLocaleLocale_deDeIni = []byte("\x1f\x8b\x08\x00\x00\x09\x6e\x88\x00\xff\xb4\xbd\x4b\x8f\xe4\x46\x92\x27\x7e\x2f\xa0\xbe\x03\x55\x83\xfa\x4b\x02\x32\x42\x50\xeb\xff\x82\xa0\x90\x36\xeb\x5d\xad\x7a\x8d\xb2\x24\x61\x25\x08\x21\x46\xd0\x23\x82\x93\x0c\x32\x9a\x4e\x66\x2a\x73\x30\xc0\x1c\xe6\xb8\xe7\xc5\x60\xb1\xc0\x5c\x84\xfd\x08\x3a\xe9\x96\xdf\xa4\x3f\xc9\xda\xcf\xcc\xfc\x45\x32\xb2\xaa\x5b\x3b\x0d\xb4\x2a\x83\xfe\x36\x37\x37\xb7\xb7\xe7\x87\xc3\xb2\x30\x76\xbd\x78\x5c\xd6\x99\x29\xeb\x4d\xbe\xde\x99\xf6\x24\xb3\xa6\x5a\xd9\x2e\xdb\x9a\x5d\x63\x3b\xd3\x99\x36\x7b\x5a\x76\xb3\x33\xd3\x5e\x94\x6b\x73\x42\xdf\xed\x7a\xd7\x96\x66\x65\xea\x8c\x1a\x3e\x6d\xee\xde\xb9\x7b\x67\xd7\xec\xcd\xe2\x19\xfd\xe7\xee\x9d\x22\xb7\xbb\x55\x93\xb7\xc5\xe2\xe6\x7f\xae\x4c\x6b\xcb\xf5\xae\xbb\x7b\xc7\xfc\x72\xa8\x9a\xd6\x2c\x1e\xb7\xe7\x7d\x5d\x98\x9a\x9a\x98\xea\xb0\x78\x56\x56\x1b\x6a\x63\xcb\x6d\xbd\x2c\xeb\xc5\x69\xbd\x37\x15\x97\xf2\x97\xa6\xef\x16\xa7\xab\xe4\x53\x7f\x58\x7c\x63\xb6\xa5\xed\x68\x06\x2d\xbe\xb6\xfc\xcb\xb4\x83\xcf\x97\x66\x65\xcb\xce\x2c\xbe\xa7\x7f\x0d\xfd\x71\xf7\xce\x05\xe6\xd2\xd4\x8b\xef\xe4\xdf\xbb\x77\x0e\xf9\xd6\x2c\xce\xa4\xb0\x33\xfb\x43\x95\x53\xfd\xef\x9a\xb6\xa2\xef\x77\xef\x54\x79\xbd\xed\xb9\xc6\xa1\x05\x60\xee\xde\x59\xb7\x86\x6a\x2c\x6b\x73\x49\xab\xa0\x21\xab\xca\xd4\xf3\xf9\xfc\xee\x9d\xde\x9a\x76\x79\x68\x9b\x4d\x59\x99\x65\x5e\x17\xcb\x3d\x56\xfa\xc0\xd4\x7d\x77\x6d\x5a\x29\xc8\x68\xd5\xd9\xde\xec\x5a\x59\x87\x29\x68\xb9\xcb\xdc\x02\xf6\x5b\x53\x35\xdb\x6d\x97\xe5\x95\x05\x28\xd1\x5b\x9d\xef\x43\x07\xf8\x41\x00\xdc\xe7\x65\xb5\x78\x3c\x7b\x49\xff\x60\xee\xd6\x5e\x36\x04\xe3\x37\xf2\x47\x07\x40\x2c\xbb\xab\x83\xf1\x5f\xb2\x95\xb1\xdd\xcd\xaf\x5d\xb9\x05\x3c\xd6\xf9\xa1\x5b\xef\xf2\xc5\x43\xf9\x17\x03\xb5\xe6\xd0\x10\x8c\x9a\xf6\x8a\x60\xe7\xfe\xbc\x7b\xa7\x69\xb7\x79\x5d\x5e\xe7\x1d\x80\xf5\x9a\x7f\x58\xfe\x71\xf7\xce\xbe\x6c\xdb\xa6\x25\x88\x94\x86\x26\x7d\xf7\x0e\x81\x62\x89\x5e\x16\xaf\x4c\x6f\x6c\x16\xf7\x82\xa2\x7d\xb9\x6d\x01\x53\x94\x66\x2f\xf9\x07\x77\x83\xb2\x4d\xd3\x9e\x6b\xb3\x7c\x45\x28\x75\xc8\x2b\xe0\xda\xb8\x13\x9a\x8e\x74\x30\x98\x4a\x5e\xd3\xe6\x70\x69\x5c\x40\x38\x49\xfb\x7c\x89\xce\xa8\x52\x5e\xec\x09\xca\x87\xbc\x36\xd5\xe2\x14\x7f\xcf\xde\xe0\x6f\x2a\x58\xaf\x9b\xbe\xee\x96\xd6\x74\x1d\x6d\x80\x5d\x7c\xdd\xd4\x5d\x43\x67\x80\xb7\xb5\xaf\x19\x64\xbe\xf0\x71\xfa\xfd\xaa\xe9\xfd\x76\x2f\x1e\x51\xa3\xec\x0d\xff\xd0\x12\xdf\x0c\x45\x26\x1b\x34\xe6\x45\xd9\xe5\xc6\x98\x02\xcb\x2a\xb7\xe7\x40\x40\x60\x63\x5f\x55\x04\xcc\xbf\x10\x44\x3a\xbb\x78\x43\xbf\x08\x14\xf2\xeb\xee\x9d\xd2\x5a\xfa\x6b\xf1\x9c\xff\x41\x27\xeb\xbc\x5e\x63\x51\xab\x55\x6b\x08\x39\xb9\xe3\x1f\xad\xc9\xdb\xf5\xee\x27\xcc\x1c\x7f\x2c\xce\x7a\x14\x31\x8a\x1e\xd9\x6b\xe0\x9a\xc7\x33\x1d\x66\x41\xab\x59\x55\x66\x4f\x83\x34\x85\x59\x3c\xa4\xff\x70\xef\x58\x47\x5e\x55\xd4\xbd\xfe\xb5\x78\x2e\xff\xea\x8e\x74\x65\x47\xf0\x88\xbf\x65\x9b\x9b\xdf\xdb\x8c\x8e\x5b\xb7\xcf\x2b\xa0\x61\x76\xd6\xe5\x40\xd5\xa2\x59\x9f\xd3\x91\x01\x05\xa0\xf1\xbf\x37\x35\xc8\xc8\xd6\x12\x39\xa9\x4d\xbb\xcb\xab\x55\xf6\x88\x6b\x64\xd5\xcd\xaf\xfd\xa6\x3b\xc9\xaa\x92\x30\xa3\x28\xdb\x6c\x55\x76\x9d\xa1\xbf\x4c\xf6\x45\x9e\x51\x67\x5b\xd3\x2d\xee\x2d\x57\x74\x58\xcf\xef\x65\xbb\xd6\x6c\x16\xf7\xee\xdb\x7b\x5f\x3e\xed\xcb\xc2\x54\x04\x7e\xfb\xc5\x27\xf9\x97\x44\xb2\xea\xbc\xcf\x8a\x9e\x80\x72\x42\xc7\xe2\xa2\x69\xe9\x47\x56\x52\xeb\xba\xb8\xcc\x09\x03\xfb\x0d\xfa\x24\x60\x64\x4c\x0f\xb2\x9b\x5f\x89\x46\xd1\xbc\x3f\x00\xe4\xfe\xd2\xd3\xa7\x65\xb1\x12\x62\xc9\x13\x25\xda\x77\xf3\x1b\x9d\xac\x2e\x7b\x79\x75\xf6\x8f\x2f\x4e\xb2\x37\x44\x2a\xb7\xad\xe1\xbf\xe9\x3f\xd4\xe0\xb3\x8c\x00\xd7\x66\x6f\xcb\x47\x0f\x08\xfe\xd4\x5a\xe0\xf3\x88\x0e\x44\xbd\xa2\xe9\x0e\x90\x0d\x15\x70\x7a\x7d\x39\xfd\x02\x59\xb5\x1d\x91\x55\xdb\x8d\xb6\x6a\x82\x00\x50\x17\x4c\x37\x7c\x17\x42\x38\xe8\xb3\x02\xfa\x01\x03\x0f\xe7\xc3\x80\x04\x67\xb6\x14\x50\x3e\xaf\xeb\xe6\xd1\x83\xd9\xe3\x7a\x0b\x84\xdd\x97\x5d\xd6\x77\x9b\xff\x7f\x49\xf3\x32\x6d\x5e\x2d\xd7\x65\xf6\x83\x29\x81\x4a\x74\xc6\xae\x65\x53\x79\xd9\xb4\x2e\x6b\x2b\xa2\x76\x84\x26\x67\x67\x2f\x66\x2f\x9b\xa2\xb7\x98\x5a\xb7\x5b\xbc\xd9\xe4\x05\x15\xff\xa5\x02\xec\x74\xfc\x47\x04\x0f\x4c\xae\x3c\x50\x61\x76\xdd\xb7\x63\x50\x65\x7e\xf2\xd4\xb9\x69\xdb\x25\xd1\xe5\xee\x0a\xc0\xe7\x5e\x6f\xa9\xcf\x7d\x16\x79\xbb\xc9\x6a\xdc\x38\x59\x65\xa8\x0a\x91\xfe\x5a\x3b\x2a\xeb\x0b\x42\xc2\x82\xb6\xc1\xc3\x69\xd4\x07\x3e\x4b\x1f\xd8\x9e\xec\xde\xfc\x1e\x93\x6d\xf9\x31\xbb\x97\x99\xba\xdb\x31\x69\xa1\x3e\xeb\x66\x29\xe4\x05\x04\xbf\x20\xf2\x43\x67\x66\x29\x97\x91\xd0\xb9\xc5\xa3\x3e\x3b\xcf\x6b\xda\x65\x06\x72\xb8\x9e\x68\xc7\x75\x8e\x85\xc9\xcf\xbb\xf2\x82\xaf\xac\x93\xac\xd9\x11\xf4\x31\x14\x93\x2a\xe9\x87\xa8\x24\x28\x13\x01\x8b\xcf\x91\xdc\x39\x31\x64\x1c\x89\x53\x6c\x78\x44\xd8\x9c\x34\x9f\xf9\xeb\xe0\x08\x6c\xee\xde\x71\xfb\x2c\x08\x7a\x5a\x55\x5b\xb3\x9f\x22\x5d\xe0\x17\x18\x70\xa7\x35\x10\x88\xbe\x5a\xc1\x30\x57\xe0\xf6\xf9\x19\x2d\x28\x03\x82\xc5\x94\x99\xeb\x0a\x9f\x71\xf3\xfb\x96\x57\x01\xa2\x24\xfb\x1a\x68\x52\xf6\x4d\xd3\x74\x33\xba\xa3\xaf\x81\x72\xd4\xf8\xc0\x88\xe4\xab\xba\x31\x68\x9a\x86\xf9\x92\xd0\xd4\x66\x97\xa6\x2d\x84\x2b\xe1\xd3\xbc\xcf\xa2\x7e\xc0\xb7\x1c\x18\x8d\xdb\x0e\x63\xf7\xc4\x4b\xe0\x48\x9d\xf6\x96\x26\x44\xa4\x03\x27\x3e\x0b\x07\xcc\x55\x88\x91\xd7\x95\x66\xfb\xde\x5a\xde\xd5\x1f\xfa\x6d\x5b\x6e\x36\x96\x18\x1d\xa2\xc3\x44\x11\xb0\xb9\x7c\x42\x88\x0d\xca\x6e\x59\x56\xb6\xcb\xc1\x40\x01\xbd\x30\x6e\x1e\xcd\x22\x0c\x73\xd1\x28\x61\xd4\xbd\x2a\x1a\x62\x02\x08\xb1\xf8\x1f\xf7\xd3\x4f\x10\x34\x72\x97\x77\x19\xad\xe8\xb2\x04\x9b\xb5\x75\x84\x2d\x3b\x3b\x7b\x96\xad\x2b\xba\x1e\xb3\x6f\xbf\x79\x61\xf9\xdc\xee\x96\x07\xc2\x8a\x05\x4a\xde\x30\xf9\x70\x9f\xa2\xfe\xb8\xa4\xee\xf7\x7b\xde\x4f\x90\x53\xf4\xc4\xac\x20\x61\x23\x91\xe5\x5c\xc0\x60\xa9\xe0\x09\x71\x69\x8c\x58\x27\xb4\x0d\x44\xd0\x89\xc0\xa2\xef\x18\xc5\xb3\xfd\xcd\x6f\x04\x24\xba\xd2\x68\x06\xbb\xae\x3b\xc8\x14\x9e\xbd\x7d\xfb\x46\xe7\xe0\x3f\xfa\x6d\x0e\x94\x19\x35\xb2\x57\x32\x19\x5a\x5f\x21\x90\xa1\x93\x00\x88\xae\x72\x8f\xd0\xc0\xc6\xbe\xad\x22\x2c\x9d\xd1\xa2\xfd\xf7\xf7\x01\x17\x66\xf4\x09\xfe\x73\x16\x41\x8d\xf7\x4a\xb6\x96\xaa\x08\x23\x66\xf9\x00\x35\x07\x20\xb8\x3f\x41\xaf\xf5\xe7\xe8\x00\x31\x0b\xa7\x95\xa4\xbd\xe3\xaa\x87\x35\xed\x9e\xe0\xc0\xc4\xff\xec\x25\x01\x47\x6e\x00\xfe\xb8\x69\x9b\x3d\x31\xa9\x75\xf4\xd3\xc3\x8a\x38\x5d\x20\xf1\xec\xb4\x68\x8d\xb5\x26\xab\x89\x6f\xcd\xbe\x79\xf2\x30\xfb\x7f\x3e\xfb\xd3\x9f\xe6\xd9\xe3\xba\xbb\x34\x40\xb6\x9a\x28\xaf\x1c\x70\x9e\x44\xe6\xea\x33\x55\x2d\xf7\xd9\xa6\xa9\xb6\x72\x43\x3c\x69\xda\x7d\xde\x7d\x9e\xdd\x7b\x45\x87\xf7\x5e\xf6\x05\xaf\xe0\xbf\x98\x5f\x72\xe2\x96\xcd\x7c\xdd\xec\xbf\x9c\x83\x15\x23\x46\xa8\x95\xd3\x74\x26\xc7\xe8\xf1\x6c\xcf\x6c\xaa\x16\x79\xf2\xa4\xc5\x31\xd3\x2a\xdc\xfb\x72\xdd\xd4\x9b\xb2\xdd\x2f\x12\x32\x69\x3d\x0b\xcb\xbb\xe3\x11\x49\x3a\x5e\xd6\x4d\x57\x6e\xae\x1c\x28\xe9\xd4\xe4\x10\x4c\xdc\x31\xa4\xe9\xc7\x2d\x2c\x23\xed\xd2\x0a\xc0\x75\x17\x04\x93\x67\xbc\xb5\x96\x68\x14\x98\xe5\x8c\x30\x03\x9b\x91\xee\x48\xb3\xd9\x80\x9f\x90\xcb\xee\xb5\xfc\x90\x0b\x2f\x19\x25\xae\x46\x88\x7c\x20\x71\xe5\x51\x38\x01\x4c\x14\x1e\x3e\x7a\x45\x88\x46\x3b\x43\x90\x26\x56\xab\xe8\xcf\x99\x3c\xee\xd1\xd7\x09\x09\x01\x84\x37\x7c\x49\xd2\xfc\x95\x9e\x81\x0c\x28\x41\x93\x09\x83\x5c\x10\x03\x5e\x9a\x8d\x10\x33\x77\xfd\x10\x87\x7d\x91\x13\x57\xb4\x78\xaa\x7f\xcc\x64\x2d\xc9\x29\x1c\x57\xd7\x89\xba\x46\x0c\x8d\x95\xd2\xa0\xc2\x6c\xe8\x32\xa1\x61\x4c\xf6\x8f\x3d\x5f\x3f\x83\x5b\x8b\x27\x7c\xca\x0d\x8d\x9b\x30\xb1\x80\x35\x5d\x37\xc5\xfe\xe6\xd7\x9b\xff\x28\xb7\xb4\x80\x3d\x9d\x5c\x26\x69\xbb\x66\xbd\xa3\xa9\xe7\xa8\xc6\xf8\x66\x4b\x1a\xed\x4c\x1b\xc8\x04\x4c\xb4\xa4\xe4\x46\x75\x84\xb1\x4d\xee\xd2\xe9\xc5\xc5\x0d\xa7\x76\xa2\x0c\x74\x36\xe9\xee\x84\x8f\x47\x72\x87\xd2\x54\xcf\x6f\x7e\xab\x21\x5c\xb8\x26\xb8\x95\x81\x60\x75\x65\xe4\x2e\x23\xe4\xc3\xa8\x03\x31\x2b\xc1\x8d\xb4\x8a\xce\xe9\x81\xe7\x24\xb5\xc9\x8c\xa5\xe6\x43\x7b\xf3\xfb\xc6\xdf\x25\x29\xef\xc0\x7c\xac\x9f\xc9\x5c\x59\x54\x12\xff\x54\x8a\x5e\xd2\x80\x10\x51\x49\xc4\x2a\xb0\x54\x11\xaa\x79\x69\xfd\x9e\x98\x3d\x66\x61\x68\xea\xd7\x74\x62\x77\x22\x42\x8f\xdb\xeb\xf4\x5e\x98\xa2\xdc\x56\x74\xa6\xa8\x3e\xd8\x02\x92\xc4\xbb\xe8\x82\x72\x60\x71\x9d\xae\x4c\x07\x61\xb9\x03\x62\x3c\xbd\xf9\x95\x0e\x50\xc6\x63\x30\x4c\x01\x72\x27\xe0\x7f\x12\x4b\xeb\xc2\x74\xcf\x9d\xbc\xa6\x02\x94\xb0\xdb\x67\xd4\x68\x7f\xf3\x3b\x91\xa7\x3a\xfb\x27\xd3\x5d\x77\x59\x4d\x18\xc4\x2c\x99\x19\x70\x4a\xb3\x53\x91\xea\xfc\xae\x64\xb8\xb3\x99\x6d\x0a\x33\xfe\xe8\xde\xf3\x47\x8b\x4f\xef\x7d\x4c\xdf\x77\x37\xbf\x56\x54\xb9\xef\xe8\x1a\xed\x4a\x4b\xbd\x46\xdd\xe1\x48\xf2\x95\x1e\xe6\x25\x24\x83\x25\xc5\x59\x42\xaf\xf5\x56\x18\xce\xc7\xb5\x9b\x10\xe6\x07\x5c\x5b\xa0\x87\x4a\x06\xc7\x45\xa9\x34\x2f\xed\x45\x25\x90\x8c\x99\x39\x05\x81\xca\x68\xcb\x2d\x5d\x92\x0b\x15\xae\xf8\x8b\x22\x23\x6e\xe1\xe5\xb6\xec\x96\x1b\x90\xe8\x62\xf1\xc4\xec\x88\x52\xd3\x28\x44\x95\xde\x1a\x26\x19\x36\xfb\x90\x2a\x7c\x98\x7d\xdd\xec\x49\xda\x2e\x1a\xfb\x79\x76\xff\xc2\xf1\xf4\x9f\x81\xfa\x2e\xe9\xbc\x96\x15\xb0\x7a\xf1\x9c\x78\x17\xbe\x91\x67\xaa\x5f\x21\x2a\xd2\x01\xf6\x37\xbf\x63\xd3\x98\x85\x56\xee\xfd\x44\xa5\x38\x10\x01\x16\xea\x80\x18\x44\x38\xcb\xeb\x12\x04\x86\x4a\xeb\x9b\x5f\xa9\x37\xd7\x11\xc8\xdf\x7d\xba\xab\x81\xfd\x1d\xf8\x8b\x57\xcf\x1f\x3e\x7b\xcb\xad\xb6\xcd\xaa\x2f\xab\xc2\x8d\x39\xc7\xba\x85\xcd\x27\x26\x5f\xf1\x28\xc8\x43\x83\x5d\x63\xca\x23\x0c\xf1\x79\x43\x44\xe0\xbc\x93\x05\xba\x2e\xde\x8b\x3d\xcd\x08\xf2\xb4\xd4\xed\xcd\xef\x15\xed\x8d\x74\xe0\x59\x47\x80\x88\x70\x8b\x44\xf1\x47\x47\x79\x3c\xb4\x77\xd2\x40\x0b\x7a\xc1\x54\xd6\x97\x7f\x8e\xa5\xcf\xbe\xa4\xff\x12\xe4\xf3\x0b\x23\x17\xe5\x76\x6a\xdb\xce\x94\xbd\xad\xb9\xa7\xaf\xb9\x5e\x2f\xa8\x9c\x2e\x2c\x39\x66\xaa\x18\x61\xb4\xce\x26\x00\x34\x58\x9b\xc3\x2b\xdb\xaf\xd7\xc4\x34\x2c\x9e\x11\x28\x98\x3e\x7c\x5f\x56\xd5\x39\x61\x8a\xa9\x3f\xa0\xbf\x95\xae\x13\x7b\x42\x12\x77\xc1\x6c\x22\x09\xe0\xa8\xc7\x67\x45\x58\xb7\xba\xa3\x43\x57\x1a\x1c\x9c\x5d\x4e\x4c\x21\xb7\xbb\xbc\xf9\xbd\xb6\x10\x36\x33\x22\x43\x15\x90\x60\x5b\xb3\xc0\x40\xdd\x90\x68\xca\x0c\xd7\x8f\x50\x37\xfe\x44\x32\xb1\x48\x1d\x0d\x51\x94\x36\x39\x61\x72\xb5\x0c\x95\x65\xae\x66\x38\x6e\xc4\xf9\xd1\xee\x2c\xbd\xca\x12\xd0\xed\xcc\x2f\x1d\xe4\x28\xf9\x02\x38\xe2\x0b\x5d\x6d\xeb\x9d\x35\x15\x78\x8f\x2b\x46\x0d\xbb\x78\xc9\x4c\x94\x47\x8e\x12\xaa\x99\x75\x53\xd1\x81\x68\x00\xf6\x0b\xa3\xf5\x9e\xb2\x3c\x45\x8b\xca\x37\x1d\x60\x35\x6c\x43\x1d\x36\xed\xd6\xf5\x97\xaa\xb3\xb8\x54\xf4\x6e\xae\x82\x57\xbf\x31\x9d\x66\xcd\xeb\x7d\x1b\x91\x5e\x40\x48\x14\x46\x73\xda\x66\xd6\x49\xc9\x3c\x9e\xd7\xc2\xc5\xd7\x83\xf1\x09\xa0\xaa\x9e\xfd\x49\x35\x45\x8b\x51\x05\x22\x93\xd0\x2c\x05\x1d\xe8\x52\x75\x68\xaa\xc4\x13\xfc\xf1\x32\x6a\xc4\xd9\xed\xcc\x01\x3c\xe0\xde\x6e\x21\x11\x63\xa3\x33\x48\x4b\x65\x67\x59\xd8\xe5\x86\x5f\x65\x7f\x66\xda\x9e\xeb\xf5\xf0\x01\x6d\x4d\xb3\x2e\xf3\x6a\xf9\xbe\xdd\xd8\xe6\x9a\xaa\xbb\x89\xb8\xfe\x88\x57\x3a\x27\xec\x39\x6c\xb8\xcb\x94\x35\x10\x9d\x2d\x09\xd1\x8b\xc7\x36\xeb\x7a\x9c\x62\x4b\x02\x4c\x59\x9c\x4c\xc8\xeb\x97\x7d\x0b\x62\xe5\x19\x08\x42\x56\xd1\xa6\xb0\x2a\x45\x30\x3b\xaf\xc7\x77\xc0\x88\x93\xc1\x12\x58\x91\x3b\x35\xe6\x83\x98\xdd\x05\x06\xa7\xdc\xf0\x4c\xf9\xf5\xf1\x64\x00\xee\xbd\xd9\xaf\xd0\x3b\xe4\x73\x77\x55\x67\x34\x70\xb9\xc2\x76\x10\x33\xb0\x25\x6a\x34\xbe\x57\x08\x44\x5b\x70\xff\x5a\xc7\xdc\x5a\xe7\x2b\xaf\x85\x27\xda\x76\x89\x8d\xb8\xa4\x63\x4f\x5b\x31\xda\xc9\x36\xba\xdf\x3f\xf0\xf7\x9a\x70\x63\xcc\xbc\x53\x6f\x9d\xdf\x00\xa0\x75\x0d\x25\x6f\x0c\x81\xc1\x7a\x09\xbc\x5f\xac\xbe\xbc\x6f\xbf\xf8\x64\x05\x8d\x1e\xcb\x3a\xb4\x0d\x18\xb5\x6d\xe4\x5e\x63\xf4\x66\x5d\x1c\x6c\x19\x91\x3a\x91\xa5\x9e\x9b\x5f\xe9\x04\x83\x6b\xbb\x0f\x86\x93\xad\x10\xcc\x11\x8d\x77\x3b\x5f\x11\x6f\xb4\xde\x51\x9f\x37\xff\xc1\xdc\x5d\xbe\xe6\xe3\xcc\x67\xc9\xe1\xfd\x69\xe0\x25\xfd\xea\xb1\x0f\xbc\xb0\xaa\x24\x5a\x75\x1c\xbf\xfa\x8c\xa7\x4f\x80\xbb\x26\x5c\x86\x92\x93\xb8\x64\xd7\x61\xb4\x74\xeb\xd1\x2c\x07\x07\xfe\x59\xf6\xb2\x24\x22\xc7\x53\xa2\x13\xb0\xec\x6b\x85\xab\x29\x04\xab\x9e\x11\x69\x6e\xe8\xae\xe0\x21\xf8\x8c\x30\xc5\xe8\x6b\xcf\x3d\x74\x4e\xea\xf3\x52\xe2\x47\x1e\xaa\x1f\x13\x05\x56\xd1\x9d\xf9\xab\xe9\xdd\x60\x90\x76\x4a\xb3\x85\xd0\x1a\xbf\x7f\x4e\x31\x6a\xbb\x93\xec\x9c\x68\xdd\xb9\xd1\xcb\x9e\x45\x6b\xb0\x4a\x5e\xb6\x7c\xd0\x77\x5d\x23\x6a\x20\x00\x43\x17\x00\xd5\x91\x34\xd4\xcd\xe1\xbe\x27\x40\x43\xf3\xa0\x11\x19\x80\x50\x46\x18\x31\x2a\x19\x27\x18\x2e\x09\x77\x41\x41\x3a\xc3\x92\xfe\x68\xd5\xb8\x76\xa1\xe9\xe4\x85\xee\x95\x7c\x79\x72\x81\x13\xc5\x93\xc2\xdc\xba\x63\x53\xf3\x6a\x00\x9a\xc4\xde\x0b\xb5\xb3\xeb\x9e\x98\xf7\xf5\x39\x35\xbc\x86\xc2\x6b\x6a\x9a\xd2\xed\xf8\xa0\x25\x4d\xc3\x85\xcd\x8a\xf8\x31\x16\xb1\x46\x2a\xda\x21\x54\xe3\x85\xc1\xa2\x52\x11\xc4\x9d\x8c\xe5\xef\xf0\xf9\x70\xe8\x44\x65\x97\x2c\x8e\x24\xd5\xe1\xb4\x20\x30\xc8\xc4\x7c\xf3\xae\x69\x96\x76\x07\x2d\xce\xa3\xb8\x01\xeb\xc7\x88\x0c\x16\x2c\x49\xd3\x8c\xff\x5f\xa7\x42\xce\x60\x57\x63\x55\x0d\x5f\x2b\x80\xec\x4f\x7a\xbe\x70\xb1\xb8\xc3\x25\x58\x9f\x4f\x1e\x31\x5f\x59\xf8\x5f\xe2\x10\x4a\xe6\x1d\xb5\xda\x70\xab\x47\xd0\x3e\xc3\x22\x94\x54\x0c\x56\x18\x5d\x5b\x8e\xc1\x49\x29\x83\x69\x81\xc0\xac\x72\x3a\x89\x58\x1e\x59\x4b\x53\xe4\x58\xcc\x95\xb1\x8b\x3f\xe7\xd0\x10\xd3\xdd\x88\x75\x52\x01\xf4\x14\x37\xff\x06\xe5\x87\xd4\x25\x52\xbb\xa7\xaa\xdf\x12\x97\xf8\x6a\x2c\x1e\xe0\xf6\xe5\xcf\x81\xf1\x9c\xbd\xe2\x92\xc7\x91\x15\x30\x2c\xf0\xcd\x58\x90\xf8\xc6\xdc\x62\x0c\x3c\x3b\x7b\xf6\x56\xf4\x1f\xd0\xe6\x11\xa1\x63\x01\xab\x92\xc1\x9f\x75\xdd\xc1\x7e\xdb\x56\xac\x97\x3b\x13\xdd\xd9\x9b\xfc\xaa\x6a\xf2\x02\x5f\xf5\x4f\xf9\xfe\xd6\xe4\x7b\x9e\x28\xfe\x90\xe6\xa7\xc4\x28\xf0\x27\xfc\x41\xa4\x50\xf7\x26\x68\x8b\xf9\x7e\x7c\x1c\x44\x17\xaf\x2c\x0a\x82\xa8\x61\x33\xe3\xcf\xd3\x2a\xeb\x9f\x09\x03\xaa\x03\x09\xd0\xe0\xda\x7c\x55\xc6\x38\xe2\xb0\x1d\xd9\x16\x99\x15\xf5\xea\x7e\x4f\x18\x02\x96\xd2\xe3\x20\x14\x1c\xf7\x66\xcb\x58\xa1\x9f\xf6\x5a\x10\x01\xf9\xfb\x7b\x9e\x8f\xba\xb6\xe5\xb5\x49\x3b\x04\xf1\x78\xda\xde\xfc\x46\x17\x0c\x0b\x37\xd0\x06\xa3\x26\x73\xe6\xa3\xda\x7c\x94\xe4\x24\x51\x65\x37\x58\x32\xc4\x3e\xff\x25\x6d\xc8\xc0\xdb\x41\xe3\x7a\x7b\x43\x21\x99\xae\x15\xc8\x87\x10\x7f\x25\x19\xc3\xe3\x84\x26\x50\xa3\xde\xd2\x80\x50\x03\xb5\xca\x7a\x5d\xf5\x85\x9f\x90\x2c\x1b\xd2\x7e\xbf\xc2\x81\xa2\xd3\xf4\xd7\x7f\xfd\x1f\xf7\xed\x5f\xff\xf5\xdf\xd3\x09\xf5\xf5\x39\x31\x17\xb5\xb6\xfb\x96\xee\x2e\x98\x51\xe0\x87\x20\xd2\xce\xe7\xde\x9a\xbd\xa4\x21\x20\xb9\xad\x3b\xaf\x70\xb1\x5d\xb9\xdf\x3b\x89\xea\xe6\x77\x66\x11\x71\xc9\x78\x8a\x15\xc9\x64\x50\x70\xe3\xf3\xcd\x6f\x2d\x7a\xe7\xa6\xd0\x55\x0c\xdb\x06\x9b\xfc\x72\x65\x4c\xbd\xec\x72\xa2\x92\xa9\xbc\x51\x46\xec\x28\x73\x4b\xab\x60\xe1\x18\x36\x1c\x1c\xea\x63\x6d\x89\x19\x1b\x35\x1d\x19\x54\x8e\x35\xee\xe8\x3c\x8e\x5a\xbb\x43\x7a\xac\x91\x60\x02\x37\xa0\x05\x17\x03\x32\x23\x4a\xf7\xa8\xd9\xa5\x70\x60\xb4\xd1\xc4\xf1\x6f\xa1\xfe\x76\x83\x86\x91\xb0\xb1\xac\x66\xf1\x57\x90\x3f\x2b\xf3\x08\xac\x7e\x77\xc2\x86\x8e\xc5\x39\x4f\xcb\x82\xc8\xac\x72\x3b\xeb\xdf\x3a\x28\xf2\x8a\x65\x22\xbd\x8b\xea\x85\xef\x12\x11\x4c\x32\x5b\x8a\x93\x8b\xc8\xa4\xc2\xbb\x6c\x0d\x43\x20\x12\xcb\x74\x67\x54\x99\x8c\x01\xa7\x86\x20\x24\x85\x90\xff\xb7\x8d\x41\x37\x76\xe9\xd7\xf5\x8e\x01\xfc\x95\x75\x4b\xf7\xb9\x4d\xba\xf7\x40\x4a\xbb\xf6\xea\x08\xf3\x0b\x7d\x60\x09\x41\x1a\x44\x46\x2d\x2e\x82\x38\x21\xc0\x9d\xc3\x07\xc6\x76\x10\x4d\x65\xa5\xac\xc4\x80\x21\xb2\xee\x36\xe0\x6a\x46\x6a\x0c\x2c\xb5\x02\xf7\x1f\x56\xc9\xac\x61\x9b\xc8\xb4\xf3\x4c\x18\x32\xa7\xd5\xbb\xee\x21\x35\x12\x47\x5f\xdd\xfc\x66\xb1\xa9\xbc\xd9\x7c\xfc\x48\x86\xda\x7a\x35\x38\x1f\x44\x07\x19\x18\xab\xce\xcd\xd5\xe2\x05\x71\x42\x4e\x89\x4c\xf8\xa9\x68\x51\x8a\x0a\xe4\x05\xb5\x3e\x71\x22\x6f\x7a\xd5\x61\x1d\x3c\x04\x2b\x5a\x0d\x14\x24\x96\xf5\x09\x90\xd4\x2e\xc0\x51\x5c\xf9\x31\x58\x59\x01\x12\x74\xa4\x2b\x19\xf3\x22\xb0\x21\xc4\x41\xd5\x4c\x85\x88\xa8\xb7\x24\xb7\xe8\x56\xd1\xdf\x7a\x06\x78\x53\xb2\x64\x53\xa1\xdf\x77\x9e\x57\xb2\xc1\x10\x3b\xe8\x0a\x75\x9a\x9e\xd1\x75\x9a\x6d\x88\x1a\xb2\x33\x16\x1c\x96\x54\xc5\x43\x57\x4d\x47\xc7\x11\x1b\x26\x9e\x39\x8f\x3c\xe3\x04\x16\xa0\xf4\x0a\xd4\x58\xc0\xff\x03\x3b\x22\xa3\x41\x16\x81\x27\x0e\xc9\x83\x2b\x3e\x9c\x18\xe1\x65\xd9\x6d\xe9\xc2\x2c\x26\x50\xc0\x6b\x00\xb9\x7f\x43\x03\xaa\x70\x26\x66\x0e\xdf\x54\x54\x26\x4a\x0b\x87\x0b\xe3\x9a\x71\xaf\xff\x29\x0b\x8c\x01\xca\x16\x2e\xe9\x69\xbc\x1b\x4c\x1d\x79\x64\xe8\x2b\x69\xcd\xec\xf0\xe2\xa9\x18\x7c\x50\xe8\xaf\x8e\xcd\x70\x7c\x7c\x74\xad\xd7\x3d\xdc\x51\xc0\x37\x38\x68\x88\xc4\xc0\x63\x8b\x87\xcb\x72\xd5\xe6\xf5\x7a\x17\x9d\xdf\x1f\x4a\x53\xcd\x1e\xf0\xd7\xe1\xb1\x65\xf6\x12\x33\x85\xb6\x66\x07\xad\xfd\x52\x8d\x42\xc2\x7f\x3a\xce\x97\x5d\x96\x56\x65\x55\xb0\x68\xe6\x4c\x41\xb0\xe9\xf9\x76\xeb\xde\x76\xcd\x7e\xaa\x39\xd4\x1c\x62\x2b\x2a\x45\xe9\x31\xb0\x5f\xfe\x53\x43\x6c\x4c\x53\x47\xcc\x73\x17\xf9\x20\xd1\xba\x07\x0a\x26\x66\xe9\xcb\x8e\x78\xe4\xff\xbe\xa1\xd3\xa8\x5a\x32\x91\xfa\xc0\xb6\x42\x37\x41\x92\x2d\xed\x8a\x5d\x3c\x71\x7f\x61\x6b\x72\xd0\xcb\xc5\xcb\xbc\x3d\x97\x31\xa4\x1a\xd4\x9a\x54\x6d\xcb\xc0\x00\xab\x3d\xe7\x5b\x06\x72\x40\x7b\x41\xf5\x63\x5b\x3e\xd3\xe1\x0f\xef\xdb\x0f\x99\x84\x49\x15\xd5\xa9\x84\x96\x87\x9c\xd0\xb5\xad\x45\xb0\xe4\xe1\x8b\xe4\x82\xaa\xed\xec\x65\x0f\xb1\x21\x83\xfb\x51\x74\x41\x5d\xf7\xd5\xcd\xaf\xd6\xb2\xe4\xc5\x1e\x5a\xe2\x1b\x46\x7b\xe3\x1c\xc8\x9c\xef\xd8\x84\x31\x40\x09\x90\x1d\xb0\xe9\x4e\x37\xb6\x38\x13\x9d\x97\xa8\x28\xc5\x41\x83\x00\x27\xcc\x41\x30\x7f\xb3\x59\x12\xea\xc5\xa1\x62\xb1\x30\x44\xac\xd5\xa0\xe1\x90\x8f\x3e\xf7\x65\xb1\xf8\xb6\x2c\x30\xdf\x43\xbf\xa2\x0e\xbd\xaf\x5b\xbc\x39\xd6\x3b\xbd\x39\xc7\x47\x36\xd7\x3c\x9a\x10\xc0\x18\x1c\x37\xbf\xf9\xb6\x38\x1c\xd6\xb0\xc9\xbe\x17\xb2\xad\x76\x75\x15\xfe\xec\xc1\x5c\xd3\xc1\xe2\xb3\x30\x61\xd4\xf5\x9c\xc7\x49\x66\x69\xab\x8d\xb6\x05\x11\xbd\x34\xab\xd9\x2a\xb7\x6c\xae\xac\xb3\x27\xc4\x48\xca\x5a\x45\xbb\xc6\xe7\x5b\xdc\x21\xd8\xc9\x6b\x4b\xfc\x0e\xf6\xc8\x9f\xf5\x0d\x5c\xf0\xf8\x3a\xff\xae\x81\x56\x0b\x5e\x60\x74\x8a\xdb\x4c\x64\xaf\xb1\x4b\x69\xd5\x08\xb4\x17\x6c\xbf\xe4\x3d\xeb\x0f\x05\x44\xd3\x74\x77\x59\xad\x4f\xf7\x96\x55\xe3\x4b\x5a\xc9\x8b\x9a\xcf\x77\xad\x42\x55\x55\x5e\x91\xb4\x19\x77\x01\xdc\xd4\x23\x3a\xe9\x2c\x4a\x2b\x13\x07\xb6\x6e\x54\xcf\xa9\xa4\x84\x8a\xc9\x91\xf6\xd4\xcb\xf2\x38\xea\x03\xf1\xa2\xac\xcf\x57\xe6\x1a\xaa\x77\x5c\x96\x85\xe8\x49\xbc\x89\x4d\x9c\x26\x18\x6c\xd0\x99\x97\x75\x0f\xc0\x10\x54\xda\x69\xe7\x44\x67\xfc\x4c\x48\x4a\x50\xa1\x8d\xcd\xcd\x8e\xc2\x4c\x37\xf5\x3e\x0f\xb1\x41\xd7\x06\x8d\x91\xa7\x4f\x7a\x39\xc3\x91\xc6\x99\xb7\x69\x35\x6c\x7f\x06\x70\x9a\xc6\xaa\x36\x5b\x66\x04\x65\xb6\x6f\x8b\x45\xde\xfc\xba\xab\xa2\x2d\x73\x13\x17\xeb\x7a\x44\xf5\xc6\x5b\x0c\x29\x99\x78\x39\x9d\x2f\x53\x8e\x65\xb9\x87\x47\x31\x04\x8f\xc8\x0e\xae\xf6\x7e\x2f\x49\x11\x63\x50\x15\xe2\x61\x96\xae\x39\x58\xdb\xbe\x46\xb5\x31\xcc\x5a\x37\x73\x3a\x23\xf0\xb2\xa2\x23\x76\x12\xeb\xce\x22\xc2\xb4\xbf\xf9\x8d\xed\xba\xf3\xc1\xd2\x3c\x32\xca\x49\x9e\x58\xa8\x6a\x63\x53\x74\xf4\x88\x36\xd6\x69\x09\x2a\x82\x08\x55\x11\x47\x7b\xaa\x86\x2e\x1b\x39\x83\x60\x1f\x7c\x05\x31\x2b\xc4\x9e\x22\x50\x68\x2c\x6f\xa9\xe3\x54\x6d\xcc\x0e\xaf\x12\x35\x55\x10\x2b\xc6\xe3\x4e\x8a\x13\x83\xd5\x78\xa8\xf8\x46\xfe\x88\x11\x6f\x11\xf9\xf9\xd1\x01\x12\x2b\x35\x74\x8b\x7a\x66\x6a\xc6\x29\xdf\xd2\xd9\x38\x18\x6a\x2c\x72\xd9\x81\xa4\x15\xdc\x9b\xa7\x8b\x63\x17\x67\x91\xd9\x22\xda\x7b\x68\xcb\x3d\x9b\x4f\xa7\xa4\x37\x26\x95\x13\x34\x15\x74\x38\x97\xeb\x3d\x50\xcd\x44\xc6\x43\xb7\x79\x7b\x45\x04\x8d\xbb\xf7\x1f\x9c\x11\xba\xb2\x61\x64\x37\xa4\xf7\x34\x75\x77\x8d\x56\x7e\xe1\xef\x1a\x37\x7b\x2a\x04\x19\x55\x6d\x6a\x75\xa4\x5c\x97\x49\x12\x8f\xeb\xc1\xf9\x86\x0d\x1c\x99\x78\xad\x7c\x23\x3c\xaf\x37\x8d\x9a\x1d\x44\xef\x21\x92\x8b\x5c\x08\xbc\x47\x93\x1d\x04\x45\x30\x8b\x16\x73\x56\xf5\x61\x83\xfb\x8c\xfa\xeb\x36\x39\xac\xb8\x5f\x8d\xe6\xe7\xb0\x64\x08\xfa\x11\x31\xf7\x9c\xe7\x07\xb0\xe5\x17\x8c\xd5\x02\x1b\x76\x75\x1f\xb4\xdf\x95\xf5\x75\x2f\x5e\x93\x52\xdd\x4c\x68\x01\x8f\xd4\x5a\x26\x96\x17\xd8\x26\x8e\x59\x5b\xf6\x89\xa9\x85\x39\x22\x67\x65\x71\xfc\x7a\x2c\x31\x65\xf0\xcc\x80\xd5\x5f\x0c\x2e\x38\x74\xd0\xec\x06\x9b\x0b\x9b\xed\xbd\xa5\xc5\x29\xcc\x13\x13\xd7\xd8\xce\xe2\xa7\x9d\x92\xa1\x7a\x02\x2a\x63\xa8\x32\x04\xb6\x06\x30\x10\x9a\xa4\xa7\xe8\x08\x1f\x95\x46\x0a\x14\x2c\xeb\x0d\x6a\x24\x30\x45\x37\x82\x81\x90\xd5\x4a\x67\x5c\x79\x01\x7d\x31\x63\x5b\x3b\x90\x0c\x23\x2c\x9b\xb6\x32\x28\x72\x89\x20\xe8\x90\x53\x10\x77\xd8\x4b\xe1\x85\x5b\x55\x87\x49\x5b\x99\x95\x5e\x86\x5f\x10\xab\xdd\xd4\xdb\x2f\x21\x86\xb5\x70\x31\xa3\x29\x72\x80\xcd\x57\x5f\x7c\xa2\x45\x19\x2b\xfa\xfd\xdc\x4f\xeb\x8a\xee\x6c\x6c\x05\x2c\x18\x5f\xe4\x91\x0b\xfd\xe3\xf6\xda\xf4\x5b\xf5\x3e\x1b\xe8\x89\xd9\xa9\x9e\x65\xa6\xa4\x89\x06\x0e\x00\xb5\x4d\x14\x51\xc4\xad\xb5\xcc\xa0\xe9\x3c\x20\xfd\xfb\xc0\x9c\xea\x44\x4a\x29\x71\x35\x62\xf7\x94\x88\xa7\x04\x3e\xfa\x2e\xac\xe2\x46\x4c\xbf\x5c\x47\xcc\x04\x89\x76\x8b\xae\xd0\xb8\x87\x36\xea\x41\x37\x6d\xcf\x12\x39\xf5\xfd\x4a\x7c\x97\xbd\xa4\xa5\x5a\x30\xea\xd7\xf5\xb9\x18\xaa\xd1\x51\xc0\xde\x04\x74\xe2\x64\xce\x1e\xcb\x3c\x72\xe3\xb0\x0f\x91\x46\x4e\xde\xed\xc8\xfd\x81\x27\xa8\x13\xf0\x0b\xd4\xd3\xad\xd9\xd3\xd7\x41\x4d\x4f\x0e\xc7\x55\x8f\x91\x5a\x3b\x98\xad\x8d\x68\x2d\xa6\xb7\xbb\xf9\xad\x65\xc1\x77\xca\x31\x1a\x0e\x73\x6c\x06\x14\x06\x4d\x59\x49\x3f\x8b\x79\xf6\xd2\xf9\x07\x8f\x08\xed\x68\x7e\x0e\x84\x83\x25\xbd\x9b\xd4\x12\x18\x9e\x45\xa0\xcc\xf2\xbd\xea\xb9\x18\x29\x7e\xe8\x2b\xe7\x38\x20\xa8\xc3\xe5\xf0\xf5\x77\x12\xea\xd7\x9e\x20\xd5\x91\x80\x0a\x18\xf2\xce\x76\x60\xa5\x3c\x95\x48\x91\x4a\x26\xa7\x12\xb3\x28\xca\xea\xec\xff\xcb\xde\xe6\x89\x58\x43\x52\x7f\x43\x8c\xf5\xa8\x2b\x9b\xbd\xc5\xf7\xdb\x7b\x11\x9e\xb0\x8b\x89\x9f\xc8\x8a\xdf\x79\xa2\x63\x9c\xaf\x84\xca\x8d\x31\x19\x54\xa7\x8b\xa3\x54\x2e\x90\x2e\x28\xdd\xa4\x9b\x56\xfb\x99\xa6\x63\x7e\x5c\xde\xff\x77\xd0\xb2\xbe\x5e\xd1\x1f\x8b\xb8\x4d\x8c\xa4\x52\x1c\xae\x86\x32\xed\x9e\x69\x98\x4e\xca\xe9\xbc\x14\x1f\xa4\x8f\xe4\x52\xc8\xb9\x93\x25\xc3\x1a\x23\x02\x04\xe8\x84\x08\xa9\xbd\xf9\xad\x56\x92\x40\x68\x9c\xc3\xe6\xcc\xa0\xb7\x2e\x56\x42\x3d\x60\xa4\xad\x88\x0c\xb2\x37\x46\x89\xa6\xee\xa1\x15\x48\x7e\xc7\xfe\xbb\x6d\xc6\x8d\xc5\x97\x56\xaa\x3b\xf7\x49\xdd\x35\x95\x44\x59\x8a\x71\x62\x18\x2b\x1f\x4f\xdf\x3c\xb7\xb4\x3a\x42\x5a\xc2\xe9\x8d\x84\x9f\xb8\xf1\x65\x88\x97\x0d\x11\x28\x12\x42\x69\x06\x55\xde\xaf\x3a\xe2\x42\x39\x44\x86\x87\xb9\x68\xd8\x6f\x57\x8f\xa4\x3f\x83\x02\xa2\xb9\xc3\x37\x51\xdc\xe3\x4f\xb5\x35\xfa\xb5\xca\x3a\xa5\x2f\xb7\x06\xac\x31\xad\x20\xfb\x62\x1c\x55\x4b\x20\xe7\xcf\x25\x4b\x11\xdd\x07\xc4\x15\x4c\xa8\xb2\x7b\x46\x69\x05\x4d\x73\x60\x4a\x0b\x27\x03\x94\x73\xc0\xd6\xae\xce\xec\x01\xa7\xcd\xe1\x0f\x02\x2a\x89\x5b\x11\x1f\x53\x61\xc2\x03\x6d\x94\x69\x07\x66\x33\xde\xf1\x88\xe7\x14\xdc\xc0\xd6\xe3\xa6\x8b\xb7\x5f\xe7\x72\xa4\xe5\x71\x12\x39\xd1\xc7\xbb\xe8\xa4\x61\x85\xb5\xd7\xd9\xbc\x1f\x51\x8c\xd7\x19\x24\x94\x21\xfe\x32\x19\x1e\x6c\x43\x20\x8f\xee\x68\x7c\xc0\x9e\x76\x25\x6d\x83\x73\x46\x14\xfe\xc0\x4d\x88\x84\xe6\x44\xc2\xe5\xa3\xa4\x13\x70\x46\xfb\xa1\x26\x49\x8b\x13\x95\xc3\x29\x0b\x17\x02\x8d\x80\x84\xb4\xc1\x3d\xd8\x46\x62\x89\x5c\x73\x89\xbc\x82\xd6\xdd\xb1\x35\xec\xf6\x19\x38\x19\x36\xd8\x6f\x49\x0a\xdb\x96\xdb\x81\x2e\x27\x38\x1c\x2d\x07\x53\x7c\x31\x9c\x9c\x8b\x04\xd5\xe0\x27\xbd\x93\x46\x6b\x70\xd5\x64\xcf\x55\xcd\x5d\xe4\x2b\x12\xdb\x75\xd3\x87\xeb\x80\x96\x41\x7b\x39\x09\x81\x2f\xd8\x43\x28\x4e\x58\x0f\x96\x6c\xe6\xdd\x3b\x3f\x42\x41\xfa\x13\xc9\xc9\x6c\x6c\x71\x16\x94\xc8\x88\x38\x76\x07\x08\xf6\x45\x65\x01\x9f\xf6\xdd\xc8\x8c\xa5\x8e\x9c\xe7\x7d\x7b\x7d\x02\x62\x4e\x0c\xfc\xaf\x5b\x9b\xef\x19\xc2\x0e\xb8\xf4\xfd\xba\xdc\xe6\x2d\xdd\xd4\x1e\xc4\x73\xb8\x18\xda\x72\x55\x56\xb8\xf8\xce\x80\x17\xab\xbc\x45\xc0\xaa\x16\xe0\x7b\x1c\x4f\x13\x0f\xcd\x57\xc7\x17\xf6\x40\x34\x69\x8d\x38\xa1\xc5\xbd\xbe\xcc\x5a\x53\x64\xf0\xa6\x04\xaf\x08\x1f\x0e\x1a\x8a\x2a\x7c\x39\xee\x0e\xf1\xc1\x6b\xd5\xd4\xa6\x0e\xce\x08\xd9\xd9\x10\x24\xe9\x5e\x37\xdb\x4e\x49\x07\x9f\x2b\xb9\x93\x63\xc5\xf2\x2d\xe3\x1f\xe2\xf1\xd9\xb1\xc0\x59\x07\xe2\xc9\x20\x4a\xd9\x2d\xf0\x23\x96\x9b\x82\xca\x4c\xf7\xfd\x7b\xd0\x73\x3e\xde\xe7\x5d\xd0\xa0\xf1\x84\x9e\x50\x6b\x76\x1d\xf8\x98\x75\xc9\xe7\x62\xb8\x88\x40\x94\xaf\x24\xee\xb9\xd6\x72\x0e\xee\x41\x2b\x61\xbb\xf5\xeb\x14\xa8\xb3\x78\x37\x98\x70\x11\x3f\x43\x95\xbb\x21\x04\x82\x72\x83\xee\x6e\x51\x59\x50\x2b\x67\x9a\x66\x74\x7e\xc0\x01\xfd\xa6\x5c\xd1\xaa\xf4\x3b\x9c\x74\x42\xe0\xbb\xff\xe4\x26\x30\xdf\x96\x84\x27\x75\xd3\x86\x50\x95\x58\x57\x46\xc8\x4d\x14\xcf\x2c\x5e\x94\xd7\xa6\xbe\xf6\xbf\x7d\xbc\x2f\xd7\x73\x6c\x05\xaa\xa0\x35\x86\xc9\x0b\x46\x72\xfc\xe3\x7e\xba\x46\xf2\x35\xd3\xf0\xfc\x64\x38\x78\xf0\x2f\x09\x43\xba\x18\xb4\x60\xe0\x39\x4a\x86\xab\x01\x2c\x6e\xa6\xc0\x7a\xed\x06\xa1\x82\xb4\x92\x48\x6d\xa7\xfe\xad\xc3\x8d\x8a\xfc\x5a\x0b\xb3\xc9\xfb\xca\xd9\x64\x16\x2e\x72\x45\xad\x31\x2e\x46\x9e\xe6\x43\xb7\xd4\x05\x94\xf4\xe2\xad\x3b\x7b\xae\x1f\xaa\xec\x23\xb8\xc2\x8b\x54\xfc\xf1\x11\x03\xc5\xd0\x10\xed\xed\x13\x13\x56\xfb\xdb\xad\x14\x83\x9e\xec\x5e\xcc\x14\xbe\xc3\x29\x33\x45\x6d\xa0\xb7\xec\xbb\x1d\x8c\x8e\x84\x46\x56\xb5\x87\x3e\xea\x19\xab\xdc\xca\xcd\x0f\x27\x23\x1f\xda\x6f\x39\x68\x39\x2e\x3b\x4a\x1d\xf8\x02\xc0\xa9\x4b\x8e\x28\x7b\x5a\xaf\xaa\xde\xdc\xfb\x52\xe1\x16\x9f\xd0\xd0\xf5\x70\x7f\xf0\xdd\x45\x86\x49\x95\x39\x07\xee\x2d\x89\xe3\x87\xb6\x60\xe1\x94\x06\xc2\x56\x1c\xad\x17\x71\xbe\x7c\xf5\x30\x8e\x86\x68\xc0\x4f\x9e\x3e\x7f\x0b\xef\x16\xef\xf5\x98\x55\xcd\x39\xb3\xc0\x12\x97\xc5\x31\xc8\x1a\x86\xe8\xfa\xa7\xd5\xef\xe9\x5a\x15\x86\xa1\x2e\x69\x4b\xfe\x6b\x43\x77\x29\x1d\x1d\xda\xa6\x4c\xb7\x29\xa3\xab\xa3\xdc\x23\xf0\x31\x83\x4d\xa1\xca\x62\x5b\x59\xd4\x99\x33\x7f\x73\x25\x89\x4d\x78\xa1\x33\x40\xc0\x75\x1a\x8c\x70\x92\x8d\x8d\xfa\x1a\xe3\xe7\x34\xcd\xaf\xdb\xa2\x66\x4b\xb3\x90\x1a\xda\x76\x26\x41\x4f\x85\x96\x44\x34\x88\xe3\x0c\x49\x86\xd9\x70\x40\x8e\xe3\x5b\xcf\x53\x07\xf8\xab\x8c\x3b\xa9\x11\x01\x5a\xc1\x7a\x43\x0c\x1b\xb3\x8c\xe0\x76\x3a\xbe\x94\x0f\x57\xcb\xaa\xac\xcf\x89\x55\x70\xfb\xe0\xbf\x79\x0e\x46\xca\x92\xfa\xea\x0b\xf4\x88\xef\x7c\x93\xfd\xf5\xbf\xfd\xfb\xec\xa1\x2c\xe5\xac\x6b\xb7\xf4\x37\x58\xff\xa8\x4f\x38\x32\x12\x5f\xb4\x44\x07\x70\x7b\xff\xe1\x92\xcd\x49\x30\x24\x80\x7a\x9c\xc7\xa3\x63\x4b\x74\xc8\xec\xf5\xd7\x68\x0c\x84\x70\x78\x3b\x54\xa5\x48\xa8\xc5\xd7\xa8\x53\x7f\x25\xda\x94\x6d\x49\xfc\x36\x2e\x9b\xdb\x32\x12\x70\x63\x28\x3f\x3e\x80\x1c\x73\xc9\x0e\x48\xaf\x02\x0f\xbb\x32\xcd\xca\x79\xef\x4b\xe1\x83\xe8\x4b\x8f\xa0\x8b\xd6\x99\x39\x35\x52\x75\x27\x3a\xee\xb8\xc4\x5d\x24\x7c\x87\xf0\x49\x56\x12\xff\xb5\x73\xe7\x8d\x08\xfd\x5f\x7a\x00\x69\x8b\x4c\x09\x8b\xaf\x89\x37\xc8\x9d\x2e\xc8\x81\xa0\xdb\x95\x36\xb6\xb5\x47\xfb\x7c\x5e\x89\x09\x31\x0a\x07\xe0\x4b\x62\x2d\xa1\x42\x3e\x3f\x4a\xe4\x19\x9c\xd2\xe6\x0e\xaa\x03\x17\x58\x74\x6d\xca\xca\xc0\xda\x08\x7f\x3e\xe0\xab\x8c\xca\x81\x70\x6c\x8f\x97\x6e\x1c\x2a\xb3\xe3\x49\xd4\x1d\x87\x47\xb2\x18\x9a\x74\xc7\x13\xa2\x15\x70\x9c\x3c\xf3\xe9\x03\xe6\x44\x82\x95\x45\xb3\x09\x37\x4e\x2f\x5b\x5c\x22\x26\xa5\xfd\x00\x00\xbc\x7b\x47\xe9\xbc\x23\xef\x5d\x6b\x0c\x11\xfd\xb6\x27\x66\xb8\x75\xa5\x9c\x03\xa0\xcb\xb7\x56\xab\x11\x32\xfc\x5f\x10\xc8\xad\xab\x60\x42\x09\x8c\xfa\x54\x51\x4a\x07\x79\x3d\x90\x03\x44\x72\x7f\xcc\x4e\x6b\x09\xdf\xe3\xfd\xa8\x88\xd1\xa4\x82\x17\xf8\x07\xc4\xa0\x22\xfe\x87\x36\x80\x03\x42\x2a\x0d\x56\x45\x82\x1a\x5a\x04\x5d\x0e\x8b\x87\xf2\x2f\x40\x50\x99\x9c\x98\x14\xc8\xb7\x91\xaa\x4b\x8d\xc2\x6c\x7b\x6c\xf3\xcb\xc5\x37\xcd\x4e\x7f\xd1\x8e\x73\x8e\x90\xef\x58\x8c\xdc\xe8\x57\x8e\x33\x41\xc5\xd3\x9a\xb3\xf9\x64\xa1\x01\xa8\x5b\xce\x27\xfa\x8d\xfb\x8b\x8d\x41\x32\x83\xf9\x68\x46\xae\x40\x33\x94\x3c\x42\x28\xa3\x45\x9a\x92\x6c\x54\x65\x03\x55\xc0\x93\x52\xec\x07\xee\x23\x6e\xa5\xa6\x65\x67\x18\x04\xd8\xb9\xcf\x74\xb1\x59\x58\xd6\x5e\x39\xc3\x46\x28\x2a\xd8\x05\x3c\xef\xfa\x7d\xf8\x26\x61\x40\x37\xff\x56\x89\xb9\x52\xbf\x12\x16\x1b\xb1\x00\xb6\x51\x08\x0d\xd2\xfd\x88\x44\xcb\xbb\x14\x7f\x9f\xc7\xfb\x62\x93\x92\x1a\x0c\x13\x7d\x15\x4b\x9d\x6e\x5c\x54\xbe\xa6\x8d\x69\x97\x49\xfb\x58\xd3\x11\xd5\xf4\xbb\x1d\x6f\xf6\x70\xac\x50\x89\xc7\x3b\x56\x53\x46\x9d\xec\xf1\xc8\xe8\xcd\x81\x44\xcb\xd0\xe0\x35\x70\xc8\x64\x29\xda\x25\x03\x34\x16\xb1\x08\xbe\xc1\x53\xf6\x4f\x6a\xc0\x57\xdf\xd2\x2c\xb7\x9c\x13\xc9\x2c\x7e\xe8\x83\xd5\x7d\x62\xe6\x53\xf5\x8e\xcd\x1c\x3a\x3b\x57\x9d\x81\x32\xd9\xb7\x10\x30\x39\x80\x31\x97\x17\x3a\xd2\x7d\x14\x53\xe3\x68\x23\xa5\x74\x79\xa8\xf2\xb5\xd1\xe8\x32\xae\xc3\xcc\x16\x67\xde\x49\x06\xd2\xce\xb8\xca\xc4\x70\x0c\xed\x2e\x5f\x2d\xee\x17\x08\x88\x8c\x4a\x18\xb0\xae\x68\x1b\x80\xea\x2b\xd0\x69\x84\xd7\x7a\xd4\xff\x64\x11\xf1\x86\xb8\xc6\x61\x09\x0d\x98\x99\x39\x2e\x79\xd8\xe4\x76\xdc\x1b\x56\x1a\xf6\x1d\xb3\xdf\xed\x24\x4e\x6a\x0f\xb7\x6f\x7f\xa8\x84\xf4\x34\xef\x18\xe5\xb6\x1e\x98\x57\x7d\x0b\x0e\x75\xfc\x7d\x8e\x98\x46\xa5\xc6\x9c\x5a\xc4\xd9\x2b\xa6\x2b\x5b\xcd\xe1\x45\x2c\xc6\x55\xd3\xd3\xfd\xd8\xb2\x56\xe7\x12\xf7\xe4\x68\x79\xdc\x44\xf6\xbf\x58\xae\xae\xb8\x85\x5e\x90\x9d\xc6\xf6\x4f\xce\x75\x0e\x95\x1e\xf1\x8d\x88\x85\x96\x36\x58\x66\xcd\x7a\x26\x5c\x45\x69\x0b\xcb\xd9\x3c\xe8\x3f\xca\x07\x8c\x4b\xe7\x48\x70\x66\x35\x60\xaf\x1b\xad\x8c\xab\x00\x85\xa9\x0a\x93\xc6\x63\x75\x5a\x43\xe2\x5c\x27\x5e\x03\x5e\x61\x1e\xfb\x03\x4c\x0f\x4e\x37\x91\x6b\x74\xba\x47\x66\xa7\x7a\xcb\xd1\x58\xc2\x97\xbe\xb3\xfd\xbe\xb1\xdd\x9a\x83\x2d\x3a\xb4\xdf\x9b\x92\x5b\x4b\xfc\x45\x77\xfb\xb0\x51\xbb\x4b\xe2\xc1\xb7\x47\x5b\xe2\x00\xf2\x26\x2d\xee\xff\xf8\xe9\x4f\xc8\x19\x83\x6b\xb3\x36\xb2\x4f\xc1\xd8\xf5\xe3\x9f\x7e\x22\x9e\xee\xfe\x8f\x9f\xfd\xc4\x09\xa6\xc6\xed\x97\x9b\xfc\xdc\x2c\xe4\xd6\x45\x73\xe9\x8e\x4d\xa2\x68\xeb\x1b\x1c\x5a\x73\x51\x36\xbd\x45\xde\xb9\x9d\x81\x4a\x30\xd3\x8c\x74\x9e\xc6\xfc\x42\x3b\xa6\xa1\x6b\x83\x32\x21\x17\x92\x73\x64\x4c\x2d\x0a\x2d\x7a\x3a\x41\x2d\xea\x7e\xbf\x54\xa0\x58\x50\x94\xaf\xe5\x6f\x92\x4a\x42\x1f\xf2\x09\x92\x60\xb7\xf8\x39\x02\x16\x4c\x0f\x04\x89\xb2\x00\x1c\x68\x55\x8e\xcb\xfd\x07\xf9\xf5\x25\x2f\x10\x50\xf9\x39\x0c\xd7\x78\x53\x58\xc2\x31\xaf\x4a\x3b\x11\xd4\x2f\xd6\xb2\xf9\x80\xf6\x49\x6e\xb2\x33\x6f\x2d\x1e\x14\xeb\x74\xb5\xda\xd7\x7e\xba\x2a\xf0\xdb\x71\xbb\xd6\x30\xfc\xa4\xc1\xf7\xcc\xf2\xb9\xfd\x1a\x55\x7a\x47\xef\x97\x47\x5a\x2b\xd1\x77\xe8\x17\xb7\x1b\xee\x15\x80\x1c\xd1\xf5\xbf\x03\xc8\x32\x55\xed\x2a\x9d\xd1\xdf\xb3\x67\xc2\x15\x11\x27\xbe\xe1\x0e\x5b\xe4\x1a\x31\xf5\x35\x63\x80\xaa\xbe\xe4\xd6\x24\x02\x9c\x89\x79\x5b\x58\xb8\xbf\x75\xa0\x43\xc3\xe9\x1b\x9d\xc8\x10\x48\x21\x87\xa9\x4b\x8c\x50\x40\xf9\x81\x6e\x54\x3f\xbb\xa0\x54\xe2\x99\x49\x54\xc5\x8d\x8f\x4e\x6b\x82\xa5\x77\xb7\x49\xeb\x96\xf5\xd2\x05\x1b\xb1\x80\x24\xde\x09\x56\x8c\x59\x08\xd4\x53\x87\xe2\xf2\xba\x27\x8e\x9f\xad\x5b\xcf\x72\x51\xdf\x46\x51\xc7\xc1\x8a\xf9\x55\x6a\x09\x77\x69\x2e\x58\x2e\x3d\x8f\xb6\x3d\xa1\x16\xa6\x28\x11\xe7\x90\xb7\x2b\xcd\x01\xe8\x40\x3f\xf2\x9f\x73\x53\xcf\x2f\x90\x8f\x52\xc3\xfc\xfd\x67\xb9\xd9\xe5\xb4\xcb\x85\x2e\xda\xe1\xa4\x78\xdd\x54\x8d\x32\x27\xd9\x13\x0c\x39\x2a\x87\x7e\x9c\x68\xc1\x80\x9b\x95\xd2\x70\x54\xac\x67\x4e\x4c\xe6\xe4\x96\xa4\xea\xb1\x55\x49\xa9\x3a\x9d\x06\x3d\x7c\x52\xaa\x91\x72\x32\x4b\xaf\x6a\x9d\xea\x02\xa6\x1b\xa9\x26\x5d\x1d\xaf\x36\x61\xa7\x91\x54\x56\x29\xdb\xcd\x04\x09\x04\x3a\x67\x63\x59\x64\xe9\xac\x75\x9d\xb7\x99\x62\xa6\x47\x76\x1a\x0d\x99\xe8\xed\xb6\x69\x95\xfe\x70\xee\x0e\x44\x87\x97\xe2\x81\x66\x17\x1e\x0a\x32\xa9\x6d\x25\xd1\x33\x47\xaa\xab\xc1\xd1\xd7\xcb\xae\x2f\x4d\x99\x79\xa9\x14\xc4\xca\xc4\xb2\x79\x9d\xc5\x99\x26\x43\x7a\xab\x68\xd4\xf9\x70\xa8\x15\x89\x94\x8b\x07\xb9\x35\xa3\x39\xc8\xbf\x8b\x89\x69\xea\x95\xac\xc2\xf4\x13\xfe\x95\x39\x99\x5a\xaa\xd0\x25\xd1\x1a\xdb\x57\x74\x23\x89\xba\xe2\x31\x54\x9c\x75\xa9\xfe\x58\xea\xcf\x38\x0f\xd5\xbb\x1d\x38\x23\xd6\xf2\xc8\xb8\x8f\x23\x75\xb7\xd5\x88\x5b\x37\x11\xb6\x21\x62\xd2\x92\xec\xe9\x99\xc9\x9d\xca\x36\x93\x2a\xce\x06\x2d\xbd\x23\xa2\x21\xce\xc8\xb9\xf8\x99\x3a\x1f\xf9\x7f\x88\x5e\x62\x28\xaf\x13\xcc\xcb\xc8\x1e\xc8\x64\x04\xb4\x00\x4e\xfb\x88\xd3\x88\xd8\x08\xa2\x89\x9f\xf0\x80\x9f\x80\x97\x28\x94\x3e\xfe\x03\xff\x50\x2a\xa9\x20\x16\x39\x25\xd9\xac\x48\x7e\x90\x4a\x4c\x01\x04\x03\xd4\xe0\xc4\x7c\x47\xe1\x64\x6b\x61\x62\x10\x25\xec\xe8\x30\xff\x2d\x79\xc2\xdc\xf7\xcf\xc2\xf7\xeb\xde\xe6\x20\x5d\x9a\xb5\xc4\x0d\xb3\x87\xee\x59\xb9\x0b\x19\xed\x0f\x8d\x72\xff\xc7\xff\xfb\x27\xeb\xc7\x62\xb7\x8c\x1d\x58\x32\x5d\x53\xbe\x02\xef\x00\x92\x2c\xae\xd6\x5f\x47\x3f\xd2\x4a\x03\x55\x43\x28\x82\xa6\xc2\x2e\x9c\xfe\x3f\x72\x8e\x96\x2a\x7a\xc7\x13\x22\xf1\xca\x34\xd8\x4a\xa2\x33\x46\x7b\x3b\xb8\xea\x7d\x20\xf8\x4b\x34\x9d\xbd\x3e\x18\xd1\x84\xe3\x56\x64\x2f\xa6\x5d\x1b\x9d\x20\x81\x1c\xc4\x9c\xc9\xb5\x02\xe9\xb4\x8a\x3a\x8f\xf0\xf0\x6e\xbf\xc7\xf4\x63\x08\xb4\x0f\x5c\x4f\xc4\x65\xe7\x74\xd8\xd8\x00\x0e\x6b\x11\xa7\xc0\xf1\x89\xf4\x86\x6b\x62\xf3\x60\x41\x17\xfc\x39\x6c\x26\x9b\x6d\x2b\x59\x09\x03\xc1\x94\x3d\x85\x52\x71\x96\x38\x54\xfa\x85\x95\x96\x08\x90\x59\x9f\x73\xba\x9d\x92\x3d\x4b\x36\x55\x79\xde\xf9\x34\x56\x38\x97\xc8\x6c\xc9\x97\x82\xf3\x14\x89\x0d\xca\x91\x5f\x7e\x59\x0b\x97\x4e\x33\x16\xb7\x86\x98\x06\xe5\xf5\x92\xed\x3d\x0c\x27\x6f\x8e\x55\xff\x5b\xb1\x59\x53\xf1\x8c\xb7\x23\x8b\xb7\x63\x73\x6c\x47\x39\x9d\xd6\x70\xa7\x68\x1c\xb6\xa2\x0c\x86\x7a\xac\x76\x81\xf3\xe3\x23\x71\x77\x6e\x43\xbc\x47\x07\x11\x1f\xb1\x11\x33\x58\x4c\x44\x22\xe8\xff\xee\xe0\x80\x2d\xbe\x65\x06\x49\x16\x57\x75\xfe\xd6\xc4\x1b\x91\xe2\xb3\xee\x9a\xa6\x52\x47\xf8\xda\x8f\xe8\xcc\xd1\x43\x64\x4c\x89\x5c\x82\x6e\x47\x4e\x3f\x9f\x95\xbe\x56\x22\xc0\xcd\x99\x2e\xda\xc5\xcf\x69\xc2\xd3\x11\xa0\x45\xd0\x1b\x1d\x20\x02\x4d\x42\x4e\x95\xb7\x18\x35\xff\xe8\x1f\xee\x17\x1f\x33\xb7\x19\x39\xe6\x0d\x2c\x7e\x58\xb2\xa3\xf8\x7a\x24\x07\x1e\xc0\x9e\x84\xb3\xcb\x33\xb0\x82\x18\x03\xd4\x44\x3c\x32\x67\xd9\xe8\x10\x83\x1c\x6b\x59\x23\x15\x60\xa2\xc4\x88\x6a\x4c\x28\x6e\xa2\xd2\xe3\xca\x9b\x61\xa5\x22\x96\xd6\x38\x24\x31\x9e\x46\xb3\x2c\x7a\x42\x44\x5c\x04\xac\xfa\x78\x72\xf3\x6b\x55\x49\x06\x69\x5b\x88\x86\x73\x30\x27\x27\x17\x0e\xc7\x49\x85\xc2\x74\xa9\xc4\xb5\xac\x76\x74\x3d\x46\x3c\x79\xbc\x6e\x66\x69\x35\x94\x48\x24\xa0\xc2\xe9\x46\xc5\x52\x15\x46\x92\x3b\x2b\x51\x32\x86\x2b\x2b\xaa\x28\x9c\xeb\x5b\x3a\xfb\x89\x76\x7b\x3e\x61\x9d\x8e\x4b\x1d\x2c\x46\x60\xc8\x3e\x72\x19\x39\x3f\x1e\x2c\x9d\xb8\x52\xea\xb0\xd5\xe8\xbc\xa4\xd0\x27\x0e\xd3\x6e\x97\x82\x36\x0b\x49\x81\xc9\xe4\x70\x34\xd0\x20\xfb\xd7\x3c\x23\xfa\x20\x61\xee\x84\x54\xda\xf0\xc3\x3f\xd3\xff\x66\xfb\xfd\xac\x28\x3e\xd4\x30\xff\x09\x28\x79\x56\x31\x86\xd6\x11\x4f\x50\xef\x45\x95\xf4\xc3\x6c\x77\xdc\x7a\x15\xb1\xe0\x83\x7a\xd1\x16\x3f\x08\x74\x04\x44\x85\x10\xa2\x4d\x0d\x45\x81\x27\x8c\xd5\xb7\xd1\xbd\xa7\xd9\xba\x9c\x21\x99\xdd\x09\xcb\xb6\x1d\xad\x73\x24\xd4\x44\x85\xca\xf7\xc7\xd3\xf7\x61\x23\xe3\xb9\x0b\xa4\x62\xc6\x18\xbb\x13\x35\xb6\x11\xe8\xea\x01\xc7\xed\x93\x00\x7f\x30\xc0\x35\x15\x2a\xe2\x39\x04\x37\xa0\x89\x9a\xc7\xfd\xbf\x92\x99\x1c\xf1\xfb\x4a\xc9\x52\xe9\xc4\x0e\x39\x47\xb1\xfb\xd7\xf7\x93\xde\x42\x53\xf3\x99\x42\xa1\xe3\xd2\xc6\xb1\xec\xf6\xee\xfb\x5c\xce\x90\xd5\x74\xb6\x49\x51\x94\xe4\x8c\x20\xe6\xd8\x19\x41\xb7\xa8\xda\xae\x69\xce\x2d\xc2\xe5\xf8\x8f\xa8\x60\x5b\x76\x52\x86\x04\xce\xcf\x06\x85\x08\xe0\x5b\x87\x2c\xfa\x4f\xc1\x8d\x98\x23\x73\x2c\x20\xf4\xb4\xcb\x6b\x31\x35\x08\x74\xf0\x23\xaa\xc2\x21\x7b\xaf\x43\x76\xc1\x10\xbd\xe7\xab\x68\x00\xd4\x34\x44\x32\x1b\xe4\xed\x00\x00\x09\x0f\x82\x89\xf1\x1d\x51\x75\xce\x29\xa8\xc8\x5b\xf6\x0b\x42\x8e\x57\x04\x2d\xf2\x47\xc4\xd8\x49\xf6\xf9\xc4\x67\x67\x65\x68\xae\x92\x21\xc1\x8f\xd8\x91\xac\x62\x37\x5e\xf7\x11\x07\x2b\x4f\xd4\x12\xdc\x8c\x0c\xa8\xc5\xd0\x82\x8b\x41\x45\x00\x94\xb8\x9f\x10\xaa\x1c\xa5\x74\x4a\xa2\xab\x35\xa8\x9e\x24\x5f\xc9\x18\xf8\x0d\x67\xc7\x94\xcc\x7d\xd1\x14\xf8\xcd\x06\x4e\x8c\x00\x76\xd6\x8a\x5b\x0b\x07\xa2\xb7\x1a\xc6\x01\xfc\xef\x6e\x7e\x47\x1e\x67\x38\x73\xc5\x59\xdc\x46\xd7\xf9\x3e\x5c\xe7\xec\xca\x16\x8f\xa4\xaa\x84\xa8\x4d\xe4\xfa\x9e\x56\x12\x78\x48\x72\xab\x21\x24\x42\x14\x78\x09\x57\x53\xa7\x9b\x54\x65\xe4\xf7\x66\xeb\x92\x03\xf9\x88\x7d\x92\xa8\x57\x66\xd7\x77\xb4\xb8\xa9\x2d\xe2\xbc\xc4\x74\x12\x97\x9f\x2e\x66\x19\xa7\x48\x6b\xad\xb0\x26\xe2\x13\x0b\x0a\x59\x69\x9e\x00\x49\x95\xed\x40\x13\x67\x4d\x20\x78\x17\xe5\x45\x59\x70\xb4\x5a\x9b\x24\x5a\xb8\x75\xd0\x3f\x1d\x19\x94\x66\xcc\xae\x66\xb7\x8d\x39\xdc\x71\x2b\x6c\x12\x6d\xb9\xc4\xf0\x6b\xc6\x29\xa9\xbf\x3a\x36\x13\x10\x36\xd5\x46\x09\xc0\x08\xa4\x7c\x57\x84\xdc\x5f\x03\xa6\xac\x0c\x72\x54\x60\xa4\xaf\xfb\x38\x69\xd1\xe7\xe3\x3d\x4d\xc0\x2c\xd9\x00\x7c\xe3\xbf\xd3\x71\x74\x8c\x5e\x29\x5c\x93\x09\x7a\xca\x8e\x23\x9d\xdb\x38\x9c\x2c\x4d\x4c\x8f\x0d\x5f\x49\x14\x54\x29\xde\xcc\x43\x67\xd7\x13\xda\xed\xf3\xaa\xb7\xe5\x85\x38\x02\xb3\xbc\x76\xa2\xb7\xc1\x49\xa4\x9e\xe7\xfd\x70\x4e\xbd\x92\x9f\x96\x65\x33\x1f\xfe\x7b\xcb\x0a\xd8\x91\x07\xc0\xf2\xe7\x40\xf6\x3c\x0e\x82\x19\xf8\x48\x9c\xb8\x8c\xce\x2c\xbc\x73\x4e\x0d\xa7\x6d\x8b\x5d\x1c\x91\x37\x63\x27\x00\x7d\xd7\xf8\x7f\x1a\x8f\x2f\xae\x98\xe3\xa1\x0b\xec\xa1\x8e\x2f\x54\x80\x04\x1c\x64\xcf\x88\x46\x8e\x3c\xfb\x6f\x1d\xf6\x33\x39\xfc\x71\x4b\x97\xc6\x4e\x53\x24\x66\x96\xbd\xe4\x75\x58\xe6\xe2\x34\x4d\x44\x31\x74\xb7\x94\xcc\x8c\x09\x29\x8d\xc3\xdb\x11\x35\x17\xbc\xf9\xe7\xc7\x2f\x9a\x28\xc7\x98\x77\xd2\x73\xb7\xed\x30\xc0\x76\x7c\xcc\x44\x15\x2e\x72\x49\x50\x88\xfb\x7a\xfb\xfc\x9c\x64\x0e\x77\x6b\xbc\xe3\xba\x10\xd7\x7d\x56\x3b\x24\x4e\x7a\x23\xde\x33\xea\x67\x9e\x30\x04\xb1\xb7\x75\xa4\xdd\xf5\x35\x10\x7a\x13\xd8\x86\xa6\x5d\xbc\x2c\x3b\xe5\x4f\xdb\x41\xc8\xd7\xb1\x26\x81\xc1\x19\x36\xd5\x58\x9e\xa8\x6d\x6b\xf6\x0d\x27\xcb\x7d\x47\x73\x87\x3f\xf1\x26\x21\x55\x4e\xc9\x09\x4d\x96\x92\x53\x73\x91\x64\xb9\x11\xbf\xb9\x28\x0f\xd3\xde\x25\x3a\xf1\x1e\xeb\x6a\xd2\xac\x6c\x76\x6c\xaa\x13\xc8\x81\xe5\x5e\x0a\xaf\xe4\x78\xa6\x23\x80\x61\xde\xc9\x5d\x69\xc2\x5c\x69\xdc\x07\x88\x29\x3f\x94\x73\x42\x92\x6e\xc7\x51\x38\x9a\xcd\x1e\xe4\xb4\x64\xaa\x1b\xdf\x3c\xa6\x03\xe1\x02\x99\x45\xbe\x1a\xb8\x0b\x6b\x92\x9b\x04\xc1\x11\x05\x2d\x39\x4f\xf5\x31\x0a\x0e\x8c\x2a\x9c\x83\x64\x9d\xbd\x79\x7d\xf6\xd6\xeb\x0d\x72\x3d\x66\xb9\xcf\x31\x54\xcb\xab\x13\xd9\xe3\x96\x39\x34\xf1\x78\x2b\x61\x3a\x83\xb4\xd1\xde\xee\x38\xe7\x57\xc8\x6f\xfa\x68\xf8\xa0\x07\x85\x02\x2c\xd8\x04\x1c\xe4\xe2\xd8\xb6\x63\x95\x8f\x73\xf0\x7e\xd0\xf7\xe2\xde\x45\x5d\x46\x22\x8b\xe3\xb7\x10\x4e\x7b\x21\x2e\x54\xef\x66\xe5\x8f\x4f\xcf\x21\xac\x5b\xd3\x2d\xd1\x1b\xe3\x6e\xe6\x4e\xa9\x73\x5a\x6f\x5a\x7e\xd1\x6c\xa2\x86\x25\xfe\xd5\x12\x0b\x85\x1b\x51\x93\xc4\x4f\xd4\x13\x51\x91\x1d\x33\x37\xa2\x63\x9a\xa8\x74\x90\xbc\x80\x0b\xe4\xf9\x07\x95\x9b\xaa\xb3\x6a\x8a\x2b\x1f\x0c\x39\x92\x06\xf4\x7d\x25\x27\x12\xc4\xaf\x1f\xd0\x47\x97\x1c\x49\xd8\xc5\xad\x11\x19\x38\x8d\xbe\x0f\xee\xe8\x92\xf5\x32\x24\x20\xa7\x4f\xd2\xa9\x4b\x0d\xc5\xe1\x6c\x3d\xc7\xbf\x05\x41\x99\xb9\x10\x83\x1d\x8e\xee\x79\x61\x50\xae\xfb\x15\xbb\xa2\xcd\xc7\x13\x67\x8b\x57\xc4\x61\x82\x40\x60\x30\x1a\x8b\x13\x58\xea\x45\x2a\x11\x2f\xad\x7f\xeb\xa0\x94\x40\xd6\x95\xcb\x0b\xf4\x22\x87\xa5\xa3\xf0\x06\x70\xf5\x4f\x54\x45\x1e\x77\xc8\x79\x38\xc2\x93\x02\x53\x73\xe1\x38\x11\x54\xd6\x08\x91\x51\x05\x6f\x88\x47\x9d\xd1\x5e\xe8\x0d\xa5\x95\x39\x5b\x82\xd7\xd0\xa2\xc5\x34\xbd\x8a\x5e\xc6\x52\xe2\x20\x74\x41\xb4\xfd\xa0\x0e\xaa\xec\x8f\x89\x04\xb6\x4b\x36\x80\xb6\x62\xc7\x4e\x9d\x70\xad\x06\x17\xf5\xc8\x74\xc8\x7b\xa0\x41\xd5\x44\xc0\x6b\x97\x13\xe4\x31\x6d\xfe\x96\x6d\x42\xf1\xce\xf3\x73\x1a\xb9\x64\x7d\x70\xce\xc7\x56\x98\xa8\x8d\xaa\x6f\xfa\x70\xe1\x6b\xca\xe2\x8f\xfe\x7c\xf6\xfa\xd5\x89\xce\xf1\x97\xd9\xe5\xe5\xe5\x0c\x95\x67\x7d\x4b\x08\x8e\x8f\x85\x4e\xfa\x04\xef\x9e\x7c\x69\xba\xf5\x17\x9f\xd0\xbf\x1f\xcf\x49\xbe\x27\xfa\x95\x92\x80\x8d\x24\x68\xe4\x28\xb5\xfd\x1f\x21\x68\x7a\x8c\xf8\x05\x9b\x24\xd5\x66\x7c\xd7\x62\x03\xc5\x9d\x49\x36\x50\xfc\xee\x83\xc8\x6b\xd6\x2d\x8d\x7d\xc6\xff\xc4\xdf\xab\x7c\x7d\x3e\x9d\x32\x66\x54\xab\xa4\x61\x78\x12\xcf\xe9\x8f\x2c\x9d\x81\xd4\x10\x83\xb2\x9a\x92\x7d\x99\xb9\x30\xb5\x3f\x0c\xec\x04\x1e\xb6\x4c\x59\x2c\x67\x16\x73\x64\x8d\x64\x62\x51\x4d\x7f\x35\xea\x87\x5d\x82\x9b\xba\xba\x22\xb2\x22\x4f\x2a\xc9\x76\xe1\xbb\x43\x29\xd7\xff\x7c\xd4\x9a\x33\xf8\xd2\x9f\xed\x15\x9b\x0a\x69\x29\x3b\xf5\xe6\x36\x5e\x36\x60\xfe\x3d\x8e\x78\x1a\xf4\x21\x29\x62\x16\x38\x9c\x84\x9a\x1c\xdd\xe3\x22\x4f\x84\xeb\x2f\x43\xa7\x13\xad\x45\x05\xfa\x38\xa8\x3d\x27\x2b\x68\x1c\x0e\x9b\x23\x3f\x79\x9b\x6f\xbd\x8a\x6f\x12\x20\x8b\x37\xf4\x9f\x69\x50\x39\x0a\x9a\xe1\x97\x97\xf1\x93\x37\x15\xc3\xf9\xe5\x9c\xd6\x92\x41\x67\xf4\xd9\x19\x1b\x1c\x70\x0b\x3d\x91\x4a\x93\xe3\xf7\x67\x9c\x40\x29\x92\x4f\xb4\xa9\x22\x58\x77\x4c\xf9\x86\x8c\x0e\x53\x8d\xe1\xfd\x76\x84\x97\x53\x9a\x34\xe4\x8d\x06\x09\x77\x86\xd5\x27\x47\x98\xcc\x5d\x33\x14\x1c\x86\x03\x4d\x68\x15\xc4\x05\x0e\x37\x75\x89\xbc\x7f\xc6\x2e\x34\xef\x21\xfc\x0f\x27\xf4\x54\x3c\x19\x3e\xb0\x4c\xc7\xdf\x26\xc7\x15\xf0\x90\x23\x15\x68\xe9\x13\xce\xbb\x94\xf8\x94\x9c\xa1\x0a\xc8\x05\x87\x12\x6d\x83\x94\x3c\x66\xd8\x18\x90\xf3\xd1\x89\x8d\xe2\x78\x47\x65\x83\xa7\xc5\x86\x67\x7d\x47\x84\x16\xde\xcc\x79\x9d\x57\x09\xc4\x0e\x55\x73\x25\xc9\x35\x1e\xf1\xdf\xb3\xaf\xe9\xef\xc1\xe2\x42\xad\xa8\xd2\x11\xde\x96\x23\x16\xa2\x4e\x35\x8d\x79\xf0\x0f\xcb\xb4\x8b\x61\xc6\x88\x90\xf7\x23\x88\x37\xb1\x5d\x61\x62\xce\xa3\xfc\x0c\xbe\x4e\x9a\x72\x62\x3c\xe2\x44\x7e\x89\xb8\x69\x9a\x64\x62\xdc\xdc\x6b\x0a\xf6\xb7\x64\x96\x48\x40\x18\x67\x8d\xe0\x67\x14\x47\x7d\xbe\x5f\xda\x88\x29\x28\x78\xde\x39\xda\x9c\x49\x4d\xda\xa8\x85\xe0\xea\xab\xb1\x6e\x40\xd9\xe8\x08\x25\x1c\xe5\x88\xd8\xe8\x10\xfb\x1c\xac\xb3\x11\x12\x47\x11\xde\x2e\x59\x95\xc4\x56\xa5\x6e\x38\xd3\xd1\xb4\xb7\xce\x3a\x00\xd2\xaf\xf7\x5d\xbe\x39\x05\xcd\x73\xbe\x6a\x9b\x4b\x8b\x8c\x0a\x7d\xbb\x36\x0b\x7e\x0e\x8b\x53\xae\x17\x3e\x8a\xa1\xd6\x9a\x70\x47\x21\xbc\xfa\xb6\xb5\x07\x71\x60\xe2\xaf\xe2\xa2\xa0\x1e\x0a\xfa\x8d\x2d\xf5\xe9\x53\x3a\xe2\xfd\xf2\x88\x4a\x67\x62\xb7\x4f\xbc\x5f\xb8\x95\xdd\x35\x97\x4b\xfc\xc5\x59\x22\x90\x0a\x81\x2a\x13\x63\xd9\x01\x8d\xce\xf1\xb6\x93\x11\x03\x97\xd4\x46\x1d\xd9\x2b\x77\xed\x65\x6c\x89\x54\x47\x08\xcf\x36\x07\x1d\x19\xfb\xf1\xe9\x0f\xaa\x2a\xa1\xb5\x3f\x30\xef\x1f\x2a\xc5\xf1\xc3\xdc\x9f\x42\x6c\x5c\xd5\x01\x90\x28\xcc\x83\xe7\xaf\xf4\x17\x87\x95\xc8\x23\xba\x9c\xff\x2c\xcc\xda\x47\xae\xcc\x7d\x04\xcb\x37\xfa\x47\x28\x92\xa0\x23\xfe\xdb\xbf\x3f\xcc\xbf\x42\x95\xa2\xcd\x37\x1d\x22\xfc\x69\x7b\x37\xe1\xf3\x81\x84\x4e\x6d\xf8\xa6\x35\xb3\x51\x33\x82\x17\xf6\xe1\x71\x5d\x5c\xb8\xb7\xa2\x5d\x11\x5b\xd9\x62\xcb\x9a\x2b\xc8\x21\x24\x2d\x02\x34\x02\x94\x9c\x75\x9f\x28\xf5\x7d\x7e\xc9\xd1\x9f\xfd\xf1\xc0\x8c\x59\x92\xee\x9f\xd1\x0b\xf1\x90\xa1\xb8\xcb\xb7\x9a\xa5\x21\xdf\xfa\x00\x70\x57\xc4\xec\x26\x5c\x8c\xd2\xfa\xa3\x98\x5b\xde\x4b\x8b\xe8\x24\x55\xf4\x47\xee\x60\xfc\x95\x03\xdc\xd2\x80\x21\xcd\x65\x9d\x6c\x89\x6a\x78\x75\x0d\x33\xa5\xb2\xae\x92\x63\x52\x2f\x49\x90\x58\xee\x7d\xd6\x1e\x75\x0f\x0d\x97\x1a\x02\xd7\x8a\xe6\x52\xfd\x22\x5d\xeb\xcb\x16\x46\x9b\x33\xb1\x41\xc6\x50\x66\x77\x69\x73\x09\x6f\x69\xe4\x86\xed\xc7\x03\xc6\x91\x18\xae\x03\x22\x82\x58\x28\x74\x1d\xa1\x01\x38\x6b\x30\x85\x2f\x90\x82\xef\xaf\xff\xfa\xbf\xa6\xd0\x63\x2a\x11\x4a\x84\x31\xb3\xef\x86\xe8\x11\x35\x75\x80\x2f\x5b\x17\xfd\x5f\x3b\x23\x10\xd1\xe4\x4b\x53\x5a\xe3\x12\x03\x2b\xb5\xd4\x5e\x95\xf0\xf9\x37\xc5\x0e\xfa\x46\xe0\x85\x91\x34\xab\x78\x83\x77\x6b\x8a\x5c\x2d\x16\xd1\xce\x70\xba\x4e\xbb\x73\x7b\xc2\x11\xdf\xf1\x26\x46\x88\x86\x97\xa4\x92\xd3\x11\x9b\xb9\x62\x64\xf7\x47\xcc\x75\x3a\x85\xfc\x0e\x31\x97\x79\x85\xa8\xed\x2b\xcd\x52\xfb\x98\x2d\x3a\xd2\x2c\xba\xf2\x98\xc1\x9d\xb8\xf0\xee\xde\xf9\xb1\x69\xb7\x3f\x45\x99\xcf\x75\x1f\x39\x04\xba\x18\xe4\x10\x96\x6a\x3e\x65\xa7\xab\x3b\x91\xb9\xf3\x48\xd3\x51\xda\x04\xb9\x8a\xa1\x6e\x18\xbc\x28\xee\xd3\x27\x88\xff\x64\xc8\xa0\x30\xf7\x11\x90\xc3\x77\xc8\xd3\x97\x90\x0e\xcd\x52\xb8\xd2\x22\x96\xa8\xe1\xf7\x65\x9a\x03\xb2\x84\x52\x6d\x31\xb1\x96\xf5\x05\x1e\x4c\xb6\xcd\xde\xc0\xa6\x19\x72\x73\x97\xb5\xe6\xac\x44\x92\x75\xcb\x09\xd6\x2d\x12\x90\x5e\xf2\x93\x3f\xd0\x52\xb2\x62\x93\x15\x91\xd0\x03\x4b\xc9\x2d\x29\x77\xa3\xd0\x4d\x74\xa9\x24\x14\xfd\xc6\x73\x07\xa0\x26\xdc\x30\xc6\x99\xde\xf5\xdb\x6d\x75\x1d\xb0\xbf\x53\xb6\xc9\xc9\x81\x0c\x77\x35\x00\x85\x04\xa4\xd6\xcd\x86\xed\x40\xde\x20\xea\x47\xf1\x07\x2c\x97\x67\x5c\x8d\x4d\x70\x0c\x2d\xd1\x13\xec\xac\x5f\x69\xb3\x24\x14\x3b\x08\xa8\x0f\xa2\x14\x55\xd6\x76\xfd\x46\x04\x55\x16\x37\xb9\x1f\xf6\xda\xf8\xea\x48\xa8\xfe\x38\x25\xff\xdf\x1f\xac\x9f\xf4\x25\xb9\x3b\xde\x2b\x60\xff\x8f\xd8\xf2\xdf\x91\xf4\x36\xd6\xe1\x0d\xb2\xdf\xfa\xa2\x89\x34\xb8\x7f\xc0\xb6\x9e\xb6\xf0\xcc\x5a\x02\x9b\xc4\x1f\x60\x10\x3b\x34\x34\xd2\x13\x0a\xff\x91\xcc\xb7\x29\xe9\x48\x12\xdf\x0e\xa7\x3c\xc8\xa0\xaa\x8f\xa2\x46\xa9\x53\xbd\x2b\x4d\xd2\xe5\x3b\x73\xfd\x0e\x2d\xde\x49\xeb\xe3\x36\x6f\x97\xf3\x66\x22\x53\xfa\xf1\x46\x01\x4a\x83\x49\xb2\xfa\xd2\x1b\x2e\x3d\xaf\x27\xa9\xd5\xff\x40\xa2\x9e\x23\x36\xa4\x89\x8c\x3d\xc3\xa9\x82\x36\x69\xf4\xd3\xfb\xad\xcd\x13\xb3\x09\x88\x1c\x5b\xdf\x20\x77\xcf\xb4\x90\x11\xa9\xaf\x45\x70\xf7\x3a\x3e\x16\xbf\x24\xeb\x19\x6f\x7e\xac\x76\x0a\x10\x8a\xdf\x30\x57\x3d\xca\x10\xe9\xbc\x32\x25\x24\xa6\x57\xb2\x2f\xd7\xfe\x3a\xce\xce\x3d\x2c\x73\xb4\x52\x92\xee\x64\xd8\x01\x76\x6a\x72\x95\xc4\x00\xab\xc5\xa3\xef\xae\x75\x34\xc0\xa8\x8b\x61\x5c\x8e\xfb\xae\x06\x34\x77\x33\x85\x02\xda\xed\xb5\x91\xbc\x74\x2b\x90\xc7\xa8\x2f\xb1\xdd\xb9\xc4\x5c\x71\x09\xb1\x12\x54\xc0\xc1\xe9\xea\xb9\xa8\x05\x7a\x6d\xea\xed\x13\xe5\x65\xf7\xc9\x80\xf9\x7e\x41\x02\x31\x58\xe5\x84\x05\xf6\x0f\x14\x94\xfc\xbe\x28\x2b\xf9\xf9\x92\xfd\x7c\xd4\x31\x1e\xbb\x93\x77\xed\xc2\x45\xac\x57\xf1\x1c\xb9\xee\x69\xd0\x52\xe2\x84\xdc\xd7\xd1\x54\xe5\x33\xd8\x23\x4d\x3d\xb7\x78\x41\x1b\x7d\x2d\x22\xf0\x44\x71\x92\x39\x45\x2f\x22\x46\xd2\x18\x59\x24\x93\xba\x4b\x96\xc5\x49\x19\x5c\x72\x8e\xb9\xeb\x93\x99\x69\x37\xa6\xb2\xc4\x83\x61\xe3\x2a\x47\xc7\x2d\xca\xf4\xdd\xca\x74\x70\xe8\x24\x13\x9b\x49\x78\xed\x74\x34\x23\x79\x7f\x54\x67\xc4\xce\x44\x83\xf9\xc4\x15\x8e\xce\x07\xae\xc7\x12\xcc\x01\x65\xa7\x73\x47\xf2\x24\x36\x06\x53\x78\x6b\x3f\xb1\xfd\xea\x56\x8e\xe6\xe7\xb2\x66\xc4\x43\x82\xc5\x38\x9f\xc8\xa2\x21\x2d\x8e\x5d\xc0\x52\xca\x87\xc3\x8e\xd8\x0f\xef\x49\x23\xd3\x9b\xc8\xd2\x17\x53\x8b\x78\x41\xd3\x22\xb8\xbc\xa6\x25\x70\x08\x35\x1c\x40\x06\x04\xcf\x2f\xd6\x31\x8f\x58\xe5\x3e\x62\x20\xa5\xf4\xf6\xeb\x7b\xa0\x82\x95\x26\x2e\x2b\x1d\x98\xca\x18\x82\x81\x2e\xbb\x4d\x2e\xe4\xc5\x20\xa5\x11\xf1\x04\x52\xe5\xe0\xa8\x5f\x25\xfb\x93\xdd\xc6\xd5\x46\xbb\xc8\x88\xf3\x1e\xb4\x3d\x0b\xac\x74\xcc\x8b\xda\xe0\xba\xe5\x75\x52\x60\x66\x4b\x3c\x72\xc0\xa8\xae\xce\x56\xd7\xbd\x7f\x01\xe4\x9b\x34\x93\xcf\x78\x92\x8e\x5d\xe0\x09\xfa\xb9\x25\x14\x61\x88\x39\xf1\x92\x5c\xc2\x47\x87\x05\x11\x55\xf1\x48\xf0\x79\xbc\x1e\x97\xbc\x07\xad\x67\xc7\x0f\xb4\x50\x93\x01\x15\xf9\x5b\x26\x92\x92\x9a\x3f\x34\x97\x5b\x88\xcb\x80\xa8\x4c\x4e\x70\x7a\x7e\x31\xe1\x99\x9e\x5d\xb2\xf3\x6e\xaa\x20\x3b\xb8\x4e\x40\x74\xbc\xed\x5f\x05\x8e\x23\x3e\x2d\xf3\xb0\x99\x91\x38\x96\xae\x19\x4a\xf3\xc1\xb9\xf0\xb5\xaf\x86\x75\xa7\x8e\x87\x7a\xbc\xb0\xaf\x65\x74\x75\x86\x3e\x6b\x82\xdc\x2f\x1c\x34\xdf\xf9\xac\x3e\x11\x51\xf1\x49\x9b\xf0\x72\x68\xe8\x3e\x1c\x91\x93\xd1\x03\x51\x2e\xe1\x6b\x1b\xbd\x61\x64\xd4\x6b\x4a\xe4\x79\xde\x14\x92\xe8\xfd\x03\xcb\xe1\x61\x65\x79\x93\xca\xfa\xeb\x9a\x65\x4d\x22\x4f\xd7\xfa\x7e\xc9\xf0\xb5\x92\x69\x51\x16\x60\xcb\xf5\x2d\x1e\x15\x42\x46\x4f\xf3\x68\x32\xc8\xed\x22\x79\x12\x1b\xc9\x91\xd8\x41\x6c\x71\x76\x45\xf3\xdf\xcf\x5e\x62\x31\xa5\xa3\xdc\xfb\xa6\x2e\xd9\x4d\x49\xfe\x2d\xd1\xcd\x06\x3e\x95\x24\xb8\x6d\xd5\xa2\xa7\x89\x83\xf9\xc3\x0b\xb6\xff\x20\x97\x6a\x47\x5c\xcd\x5b\xfc\xf7\xf3\xec\x3e\xbf\xa2\xe2\x17\xcf\x8a\x58\x80\x70\xbd\xf0\xba\xda\xb8\xb8\x71\x18\x0e\x41\xcd\x23\x7b\xd2\x01\x4f\x95\x95\xbe\x7d\x98\xb8\x4c\x91\xf5\xbf\xc8\xa3\x37\x31\xde\x12\xae\x3f\x8b\xa7\xcd\xd3\xb3\xcc\xbf\x86\xce\x57\x1a\xde\x7e\x2d\xf8\x45\x5d\xb7\x0f\x27\xd1\xb7\x74\x0f\xe2\x92\xc4\x67\x30\xce\x55\x1e\xaa\x44\x7b\x74\x92\x8c\x23\x79\xad\x34\x1f\x70\x28\x08\xd9\xad\xd2\xef\xa7\xe7\xe3\xe1\x9d\xe5\x20\xfe\xe6\x9c\x25\xc3\x97\xe0\x36\x19\x7f\x4d\xb3\x1f\xc7\x25\x4f\xd4\x3f\x35\xfe\xa6\x69\xe8\xd2\x85\x89\x2a\x3a\xfe\xf6\xa2\xd9\x96\xf5\x8c\x75\xb6\x69\x9f\x4e\x12\x48\x56\xea\x9d\xf7\x93\x2e\x38\x1c\x39\xfe\xc2\x2e\x1a\x6f\x73\x9b\xb6\x66\x72\x34\x00\x90\xbb\x85\xf9\x7d\xdc\x51\x8b\xd3\x9a\x9d\x33\x61\x9f\x9e\x40\x36\x11\xfe\x83\xa2\xcc\x7d\x9f\xae\x2c\x2f\xa6\x2f\xce\xf8\x9f\xe9\x2a\x34\x0b\x3a\x84\xd6\xc7\x8d\x85\x3a\x08\xc0\x41\xf0\x18\xa7\x71\x6e\x38\xc3\x20\xb6\x5b\x7c\x63\x89\x3f\xc1\xd1\xb5\xa2\x36\xd1\x00\x9d\xdb\xda\x06\x41\x1b\xc4\x27\xea\xa8\x96\x9e\x66\x2e\xf3\xae\x84\x81\x04\x91\x35\xee\x56\x6f\xe2\xb2\x1e\x3e\x41\x6b\x17\xea\xbe\xe3\xf3\x64\x47\x49\x61\xdf\xa3\x79\x3a\x3b\xd7\x57\xed\x3a\x9b\x8c\x4d\xb9\x65\x82\xac\x44\x44\xce\x2c\xea\x44\xfb\x8c\xbc\x46\x4f\xa5\xe0\xb6\x29\x26\x1d\xa4\x93\x9b\xe8\xe8\x56\x98\x6d\xcb\x6e\xb9\x5d\xeb\xa3\xf2\x4f\x78\x9b\xb3\xa7\x74\xf1\x21\xd0\xe0\x21\xb8\xd8\xb5\x8f\xb9\x4c\xee\xf4\x3c\xa5\x4e\x71\x37\x7e\x42\x13\xfd\xa8\xd1\x5e\xb3\xaa\x0e\xf2\x9b\x26\x6a\x13\x88\xc9\x12\x78\x99\xcc\xb7\x35\xf6\xaa\x5e\x43\xcb\x86\xa7\x20\xd8\xae\xcc\xae\x7a\xd6\xd9\x07\x3e\x9c\xd3\xf7\x4f\x24\xb7\x58\x79\x6d\xd8\xdc\x6a\x3f\xd4\x67\x79\x3e\xfa\x3e\xe7\xf4\xd0\x9f\x67\xb0\x63\x8a\x2c\xef\x83\x9d\xd8\xe7\x49\x2c\x9a\x92\xe9\x50\xcc\x75\x78\x4b\x1f\xc9\x3d\x6f\x9b\x43\xba\x07\xe9\x5b\x06\x62\x31\x1d\xa3\x08\x09\xae\x12\x40\x48\x6b\x17\x85\xe2\xe4\x08\x91\x0b\xc4\x70\xa9\x2c\x4a\x88\x2b\x5c\xe2\xc6\x0c\x58\x7e\xe4\x13\x7c\xaa\x4f\x87\x44\xae\xf8\xe4\x92\x2e\xcd\x5e\x74\x8b\x6a\x98\x56\x77\x6c\xad\xf1\x4c\x92\xc4\xed\x32\x05\x71\xf0\x4a\x26\xc1\xca\xf6\x5b\xd6\x9c\xe1\x3d\x1e\x97\x7f\x3a\xdc\x74\x9c\x7f\x93\x86\xeb\x4a\xbc\xc5\xc0\xbf\x66\xdf\xf2\xaf\x84\x88\xf4\x08\x4c\x23\xb4\x6b\xda\xa6\x27\x89\xc6\xf8\xf7\x80\x68\x27\xf5\x93\x9d\x6a\x40\x32\x0a\x1d\x8f\x65\xcf\x59\xe6\x7c\x1b\x9f\x8a\x83\x6e\x4e\x31\xf3\xfa\x86\xcc\x07\xb8\x66\xd0\xef\xae\x59\xfd\x4f\x17\x97\x01\x97\x01\x0e\xf1\xa9\xb1\xf9\xbe\x73\x2a\xd0\xb8\xb1\x36\x6b\x56\x5d\x4e\x13\x42\x3a\x45\x71\x5d\x83\xf7\xe0\x44\xf5\x43\xc3\xd9\x66\x97\x15\xc1\xb4\x3f\x2c\xb1\x68\xbb\x78\x23\x1f\xe9\x66\xc2\xc7\xec\x2d\x3e\x4e\x8c\xe1\xa6\xa6\xad\x5e\xf2\xd7\xec\x54\xbf\x1e\x6d\x86\x24\x2b\x69\x93\x27\xf4\x65\x5c\xdd\xc1\x6f\x67\xf2\xc3\x10\x7a\xcf\xe8\xdb\x8c\x2e\x0a\x30\x51\x03\xe8\x71\xf5\x21\x14\x4c\x80\x02\x37\x95\x81\x8f\x35\x2b\x0b\x92\x10\xf1\xf0\x3d\xbb\x57\xbe\x67\x1b\x76\xf8\x58\xfc\x4d\x6d\xd4\x06\x56\x2c\x36\x70\x95\xf2\xaf\xaa\xde\xd6\xb2\x59\xfd\x13\x91\x36\xbb\xe0\x3a\xaf\xe9\xc7\x79\x97\x60\xe9\xaa\x69\x3a\xa4\xbb\x3e\x80\xd1\x63\x8f\x3d\xc0\xed\x81\xfb\x0a\x46\x6f\x7d\x7e\x04\x72\xd2\xe2\x16\xd0\x49\xe3\xf1\xcc\xf6\xc8\xb3\x4b\x03\xb6\xfd\xba\xeb\xe9\x04\xeb\xa8\x2f\xcf\xe8\xf3\xec\xcc\x7f\x3e\x32\xec\xa8\xf5\x78\xe8\x6c\xd8\x55\xd2\x7e\x0d\x85\xe2\xc4\xf0\x0f\xf1\xfd\x3d\xc6\x1f\xb5\x9f\x9a\xc0\xb0\xb3\xe4\x10\xf1\xc3\x7b\xb0\x38\xac\xfa\xf5\xb9\xe9\x10\xbe\xb6\x5b\xb2\x27\x40\xe8\xeb\x8d\xab\x94\x3d\xe0\x4a\x48\x0a\xb4\xcb\xde\xa2\x52\xf6\x5a\x2b\x25\x57\xdc\x9a\xb6\xa2\xcb\xd9\xc9\x63\x62\x42\x4f\x1f\xd2\x46\x48\x71\xc2\x4a\x91\x00\xd3\x2e\x95\xd7\xd7\x03\x0a\xc6\xca\xf7\xa0\x4f\x75\x85\x8e\x54\x12\xc0\xb1\x3d\x47\xac\x43\xca\x01\x20\x87\x98\xdc\xb4\xeb\x2b\x62\xa3\x16\xfa\xd8\x2a\x48\xd0\xc3\xd9\x0f\x57\x08\x3c\x8a\xab\xb3\x50\x43\xd5\x99\x94\xb2\xbf\x82\x38\xb7\xed\xa7\xab\x0b\xa5\x73\xf5\xb7\x4c\xd4\x78\x69\x3f\x70\x34\xe8\x44\xc5\x43\x8e\x53\x16\xd5\x7c\x83\x0f\x53\x53\x90\x9a\xea\x5b\x37\x55\x51\x87\x25\xbe\xe1\x21\xf1\xbd\xe7\x9d\x7b\xac\x5b\xc3\x38\xf4\xad\x0f\xc2\x3b\x53\x45\x92\xa6\xd4\xe0\x67\xff\xd4\xca\x20\xd6\x4f\xc9\xe1\x1f\x99\x3f\xb5\xa2\x63\x90\xdd\x07\xc7\xec\x15\xfe\xfd\xc1\xce\x17\xc5\x49\xab\xe4\x93\xf0\x49\x89\xc8\x2a\x05\x9a\x13\x70\x21\x4f\x2d\xf9\x2e\xd8\x6d\xb5\xe5\x97\x53\x35\xae\x6f\x73\x45\x57\x9a\x64\xbd\x75\xef\xa9\x82\xd3\x5f\x0d\x1e\x72\x83\x57\xf5\xd4\x22\x63\xc7\x31\x8e\xf9\x73\xcf\x1c\xbc\x23\xc0\x7c\xee\x3a\x19\xa5\x74\xd2\xb5\x32\x13\x2e\xde\x50\xe3\xd7\xfe\xff\xc2\x54\xde\xd5\xe5\x8c\xd5\x92\xac\x3a\x69\x5e\x41\x70\x12\x11\x64\xd4\xc5\x8c\xa5\xaa\xba\x8e\x20\xef\x1f\xe4\x53\xad\xf0\x0b\x83\x37\xa7\x59\xc5\xce\xbe\xfb\x88\x45\xf3\x89\xee\x25\xeb\x05\x17\xfa\xa5\x1c\x79\x7a\x93\x77\xfe\xf0\x9e\x6f\x6f\x06\xa0\x0c\x9e\xbe\x58\x8d\x40\x54\xda\x65\x40\x96\x47\xf1\x4b\x11\xb0\xe5\xe6\x43\xec\x41\x75\x46\xa0\xa4\x2a\x04\xf5\xe4\x11\x04\x09\xfc\xf3\x70\x84\xf5\x18\x2e\xfb\xcc\x66\x8d\x47\xf1\x4f\x30\x11\x5b\x17\xa2\x2b\xa0\xa2\x1c\x22\xba\xf4\x24\x89\xc8\x25\xc7\xf8\xe2\xed\xae\xb4\xee\x61\x56\xb8\x62\x66\x41\xc3\x66\x6f\xcd\x5a\x3e\x0d\xf0\x04\xd0\xc3\x27\x33\xb9\xfe\x94\xf1\xd2\xad\x26\x7a\xa4\x56\x4e\xca\xc4\x93\xd0\xf6\x3f\xf1\xb5\xeb\x78\x54\xff\xe6\xf5\x10\xdc\xef\xfb\xf8\xb5\x49\xdf\x81\x4e\xdf\xbc\x0e\x5a\xb4\x08\x2a\x89\xef\x62\x6e\xd3\x27\x8e\x8e\xba\x2e\xe2\xed\xdf\x39\x07\xb3\xc5\xc4\x30\x55\xed\x5c\xf8\xf7\x8f\xb4\x7e\x44\xf2\xf8\x77\xe2\x75\xc2\x5f\xa6\x9c\x4e\x54\x4b\xc7\x14\x2f\x1d\x2e\xa1\x7e\x52\x69\xea\x99\x93\x64\x60\xf9\x30\x34\x4e\xca\x57\xce\x91\x8e\xac\xda\xb1\x36\xc9\x15\x22\x25\xba\x5d\xc4\xfa\x24\x57\x32\xc8\xb7\x2d\xba\x43\xa5\x44\xc9\x7c\xc3\x83\x50\x96\x3f\x04\xbb\xd2\x84\x7a\x51\x3a\x71\x59\x62\x32\xd1\x02\x0d\xde\x63\x94\x2a\x61\x71\xf2\x21\xa4\xa4\x95\xdf\xf2\xd4\x2d\x5d\xf0\x81\x30\x48\x81\x73\x1f\x4a\x5d\x1d\xa2\xd9\x73\x4f\x63\x22\xdc\x85\xbe\xb9\xda\x34\xa1\xb5\x75\x34\xa7\x81\x27\xb8\x7c\xdc\x35\x16\x21\x43\xd6\x0f\x8a\x53\x4f\x32\x46\x98\x05\xeb\x65\x0a\x6a\xf7\x2a\x5b\x69\xd2\xee\xa8\x60\xfc\x2c\xec\x2d\x95\x82\x6b\x8f\x0a\xde\x40\x76\xdf\x90\x6d\x38\x9c\x83\x1f\xd9\x7a\x7e\xe9\xe2\x9c\x1e\x73\x77\xff\xb9\xf0\x7d\x77\xd3\xc1\x35\x68\xd7\xec\x82\x7d\x4d\x83\xa7\xf9\xd1\x49\x81\x30\xf8\x05\x49\x6d\xa7\x57\xe8\xec\xac\x5f\xef\x66\x0f\x72\x5b\xda\xa4\x52\x51\x07\xbf\xac\x47\xaf\x3c\x78\x3b\xba\x97\x57\x3d\x8c\xc5\xe2\x4c\x23\x4f\x31\x9f\xea\xe7\x71\x35\xdb\xb7\x8a\x0f\xeb\xdd\x3b\xaa\x46\xcf\x7d\x8e\x6a\x49\x66\xbd\x81\xd5\x5b\x12\xec\xf9\x8e\xd8\x34\xa2\x15\xc5\x4a\x98\x56\xd8\xe3\xda\x59\xda\x7c\xf1\xd2\xd2\x45\x93\x9d\x9d\xba\x02\xbb\xef\x0e\xf2\x12\xc8\xd9\xcb\xb7\x6f\xc6\xb8\x1f\xe3\x17\xea\x32\x9a\xa0\xea\x2c\xc6\x15\x94\x30\xbe\x70\x49\x8c\x34\xea\xf8\xa4\xd1\x07\x96\x38\x21\xb6\xd1\x98\x4c\xb0\xcf\x1e\xa9\x37\x75\xfb\xf3\x01\x15\x0b\x2d\x8c\x94\xc4\x17\x11\x13\x70\x2e\x19\x0c\x39\x62\x0b\x1c\xb3\x76\xeb\x8d\x39\xec\xb9\x2d\xf9\xb3\xb2\x7b\x27\xf7\x08\x95\x3a\xba\x8a\xea\xc8\xcd\x22\x3e\x97\xcb\xae\x22\x1a\xf8\xe2\x8c\xfd\x3e\xbd\xce\x5b\x1f\x7f\xd6\x98\x3c\xbf\xe6\xf3\xf2\x80\xfa\x4b\xc4\x87\x10\xff\x86\x66\x6f\x5c\x36\x34\xbe\x5c\xec\x01\x56\x85\xd0\xe2\x00\x5b\x20\x1e\x9f\x5f\x2b\x0a\xbd\x39\x7d\xa9\xd1\xbb\xf1\xf1\xd4\xa9\x70\x5e\x30\xc7\x24\xf2\x3b\x2d\x88\x45\xb3\x12\xc2\x1f\x31\x89\x13\x53\xeb\xca\x03\x2d\xa3\x3c\x1c\x3c\x78\x99\xbf\x1b\x6f\x6e\xea\x65\x15\x33\x37\xba\x2b\x29\x67\x33\x46\x8f\x21\x93\xe3\x09\x65\xf2\x02\xe6\x44\xbb\xf7\x08\x66\x98\xa7\xa4\x31\x51\x2e\xbd\x6b\x29\x13\x9a\xb5\x01\x8b\x17\x77\xfd\x4e\xc8\x0c\xf8\x18\x25\xa3\xe2\xab\x75\x0c\x32\x81\x95\x89\xab\x2f\x85\x96\x4b\x26\x57\x1f\x93\x8c\x37\xb0\x8e\xdd\x3a\x71\xbb\xc8\xe2\x39\x1e\xf0\x7d\x4d\xdf\x49\xc7\x31\xc7\x31\xd1\xe5\x6d\xf1\xc8\xce\xea\xe6\x54\x73\x6a\x83\x53\xd5\xdc\xc0\x14\xa7\x55\xf3\xc3\x41\x6f\x28\xf7\xee\x9c\xde\x4c\x51\xf9\x05\xd0\xdd\x17\x7b\x07\xfd\xa8\x06\xa2\x16\x43\x0d\x89\x9e\xd4\xe2\xc1\xdd\xa6\x5f\x9b\xcd\x86\x64\x7a\x83\xec\xb3\x9c\x2a\x08\x3f\x66\x2f\x9b\xa2\xb7\xa1\x21\xb1\x4a\x38\x76\xd0\x11\xb2\xa6\x6d\xbb\xf8\x86\xff\x84\x8c\x92\x04\xe5\xfa\x26\x04\x22\x8e\xb5\x5c\xbc\xc8\x7b\x84\x4d\x77\xb3\x20\x9b\x45\x55\x78\x50\x5f\x25\x1d\x95\xf9\xa8\xb6\x69\x3a\x79\xea\x27\xd2\xd3\x7f\x87\x97\x26\x09\xe2\x75\x19\x6a\xb3\xb5\x6f\xbd\x94\x67\x3d\x7c\xa3\xa8\xa6\xd0\x48\x31\x0a\x82\x50\x68\xd4\x87\xef\x80\x56\x35\x6c\x4d\xab\x9b\x1e\x6b\xdd\x96\x07\x8d\x41\x3d\x3b\xc7\xdf\x33\x66\x63\xfc\xc4\xb1\x31\x8a\x96\x0c\x84\x57\x72\x5f\xe2\xc1\xbc\x6f\xa4\x70\x76\xd4\x50\x3b\x2f\x56\x0e\x5d\xbc\xb5\xf2\x7c\x12\x61\xa8\x62\x60\xa1\xc2\xb7\x88\x5b\x09\x1f\x23\xe6\x2b\x7c\xe4\xb9\x8d\xf6\x85\x0a\xac\xad\x64\x6b\xce\xce\x5e\x0c\x71\x21\x94\xfa\xb7\xe1\xea\xbe\x15\xe8\xde\x43\x3a\x6b\x3a\x0d\xf6\xde\xc7\x71\x83\xe1\x56\x0c\xcb\x7c\x47\xd2\x89\xfd\x4b\x45\x84\xf6\xb3\x7b\xec\x5e\x70\xaf\x2b\x8b\x55\xd4\x9d\xbb\x24\xa2\x13\x45\x3f\x67\x03\xd7\x23\xbf\x13\xaa\x47\x48\x5e\x03\x77\x6f\x87\x27\xaf\x71\xcb\xde\x44\x77\xc7\x18\xfb\xdd\x7d\x93\x5e\x31\x93\xe8\xcf\x21\x4a\xd2\x40\xed\x82\xc4\xb4\x74\x48\x17\x06\x35\xa9\x24\x55\x59\x43\x7f\xb5\xa9\xa0\x8e\x8a\xaf\xad\x64\xfa\x92\xa4\xdb\x25\xed\xe6\xe8\x8f\x53\x75\x0d\x01\xe5\x69\x59\xce\x9f\x9e\xb6\x5e\x95\xa2\x1a\x14\xe7\x5c\x75\xca\x9d\xb1\x26\x30\x9b\x98\x36\x43\x49\x75\x2e\x1e\x48\xa9\x9a\x65\x04\x16\x0e\xce\x2b\xaf\x8d\xe4\x40\x5d\xf8\x6b\x1e\x84\xfb\xa5\x04\x86\x07\x76\x81\x1f\x3e\x30\x0e\x66\xc9\xd8\x7e\xbe\x07\x12\x6e\xf2\xc5\x43\xf9\x77\x6a\x96\x1a\xa4\x8b\x40\xa1\x65\x25\x16\x41\xad\x04\x92\xc7\x41\x69\x2f\xa0\x88\xb6\xec\xd1\x1a\x41\xd3\x9a\x2e\xb0\xd9\x51\x73\xc7\x5d\x1f\x6d\xea\x22\xfd\x15\xe9\xd4\xac\x7d\x04\xe9\xfe\xd2\xd3\xb5\xbe\xac\x4c\xbd\x25\xac\xff\x1e\x6c\x3a\xd6\x0f\x6f\xec\x5a\x96\x1f\x40\x28\x11\xb4\xac\xc4\x23\x7a\x0a\xe4\xe8\xaa\x12\xdc\x3a\x1f\x84\x10\x4e\x1b\xf0\x6a\xcc\x58\x65\xfc\x67\x79\xae\x16\xa9\x94\xb9\x8a\xf6\x35\xdc\x42\x2f\xf9\xd7\x91\xd9\x6b\x55\x27\x8b\x45\x2a\xbe\xb4\x82\xdb\x7e\x3a\xba\xcd\xe2\xd9\xe3\x17\xaf\xb3\x47\x53\x07\x41\x6b\x8f\xc9\x8f\x16\x8c\x89\x95\x16\x4c\xd3\x26\x31\x7d\xeb\x3a\xc4\xce\x3d\xbd\x0c\xa9\x78\x7c\x15\x72\x2c\xb4\x23\xd1\x8c\x4f\x77\xa4\xe7\xa7\x20\x74\xa4\x09\x49\xcd\x53\xf9\x35\xa8\xe3\x1f\x3d\x94\x4a\xfe\xc9\xc3\xf1\x98\xb5\xeb\x87\xed\xf9\xc9\xfe\x1a\x71\xdf\xf2\xd4\x8d\x7f\x1e\x99\x9a\xab\x7c\x68\x9b\x8b\x92\x43\xbe\xb4\xfa\x1b\xfd\xe0\x6b\xba\x1a\xae\x5f\x57\xe1\xd8\x9a\x09\xb9\x4b\xe5\xc3\x1f\xf2\xdf\xb3\x64\xef\xf4\xa8\xe2\x38\x49\x55\xad\x25\x8e\x6b\xeb\x9d\xbe\xea\xa9\xb5\xb7\x6b\x0f\x1a\xd1\x92\x3f\x7d\x18\x80\x73\xcd\x6a\xf2\xc1\x82\xaa\x72\x23\xf6\x35\xbf\xa2\xa9\x43\xb9\xeb\xba\x83\x95\xfc\x08\xb8\x80\xf8\x8d\xc2\xe1\x12\x42\x4f\xba\x8e\xa9\x8e\x0e\x25\x1b\x44\x1c\x70\x1e\x94\xd5\x30\xe5\xe2\xa0\xa2\xde\x41\x5c\x53\xff\x1e\x91\xc5\x6d\xab\x34\xf7\xa9\xfe\x31\x7d\x51\x80\xeb\xd0\x71\xc1\x6d\x4c\xef\x07\x2a\x09\xa7\x44\x55\xf4\x3a\xf6\x4e\x5a\xf3\x75\x4b\xf7\xca\x43\xfa\x8f\xf8\xbe\x84\x82\xe8\xd0\xb9\x4f\xe0\x7c\x8a\x9e\xf8\x6b\x90\x9a\x03\x11\xa5\xa8\x36\xde\x5a\x71\xc6\x91\xcc\xb9\xb0\x48\xde\x59\xad\xe2\xdf\x6b\x51\x9b\xc4\x64\x25\xf3\x8b\x59\xf7\xde\xa4\x7a\x5a\x5f\xe7\xbb\x2a\xae\x19\xf9\x97\x01\x2f\xf5\x89\x80\x7e\xc3\x2a\x7e\x42\xcc\x6b\xa4\x61\x0d\x55\xa6\xd2\xe0\xba\xc5\x10\x54\x3b\x38\x93\xb5\x9d\xa0\xd1\xd4\x14\x16\xd1\xd0\x56\xaa\x79\xe7\x37\xe7\x51\x26\x3f\x09\x59\x20\xbf\x4f\xf9\xc3\xb9\xfa\x81\xdd\x8a\xbf\x2c\x3f\x5d\xc4\x39\x26\x5c\xd1\xc4\xcc\x5d\x51\x73\x58\xbc\x3e\xcc\xe3\xaa\x2c\xc7\xf8\x67\xfd\x87\x73\x38\xea\x29\x03\x2f\x43\xf6\x13\xf9\x29\x7d\xbd\x15\x4a\xf3\xc8\x63\x32\x89\x3a\xbd\xcf\x4f\x90\x44\x59\x36\x08\x1f\x7d\xa2\xca\x22\x7d\x29\x50\x84\x9c\x7e\x0f\x63\x0b\x34\x03\x71\x76\xfb\x4f\xe3\x5c\xf9\xb7\x3d\x0f\xe4\x1f\x53\xd1\x89\x49\x2e\xfc\x30\xa5\x4f\x6c\xbb\xfe\xe4\x7e\xfc\x3e\x8a\xbe\xd8\x12\x3d\x14\x10\x75\x48\x00\x80\xfb\x69\xe7\x57\x2c\xef\xd2\xfc\x8c\xae\xe5\x51\x96\xb8\x6f\x51\x7a\x4a\xf7\x78\x5b\xc0\x8d\xe0\x5f\x87\xf9\xd9\xf7\x93\x3e\x79\x30\x4a\xc1\xed\x00\x96\x74\xaf\xef\x17\x0c\x7a\xff\x59\x16\x1d\x1e\xcd\xf9\x1b\x27\x17\x3d\x38\xf4\x33\xc2\x31\x46\xb9\xca\x7f\x4e\x92\x95\xbf\x7b\x42\xb4\x43\x49\xae\xfc\x9f\xf1\x96\xa3\xa6\xbf\x9b\x44\x18\xd9\x63\xbf\xc1\xae\x32\xfb\xbf\xe6\xf5\x14\x42\xe9\x13\x96\x5d\xbe\xfd\x3f\xbc\xc9\xfa\xbe\xc6\x9f\xfc\x23\x07\xc2\x43\xfb\x67\x3e\x5c\xd0\xd0\x9f\xc2\x2b\x8a\x74\x2c\x90\x08\x9e\x0e\x45\xbe\x6d\x16\x17\x78\x2c\x91\xdf\x70\x45\x24\x4b\xbe\xca\x6c\xb3\x61\x35\x9c\x0f\x6c\xb9\x7b\xe7\x53\xbb\xb8\x6f\xb3\x4f\xb3\x33\x73\x0e\x37\x3a\xfa\xb0\x97\x0f\xc4\xc2\xf6\xb0\x36\x7d\xba\xd3\x0a\x9d\x96\x17\xf2\xfb\x6d\x4e\xe7\xfa\xd3\x4b\xf9\xf1\x7d\xc3\x4f\x46\x7f\x4a\x84\x48\x5b\x37\x35\xd4\xf6\x9f\x5e\xc9\xcf\x3f\xe7\x3b\xce\x52\x48\x74\xbd\xa0\x01\x01\x09\x7d\xa4\x42\xc7\x05\x6d\xe4\x01\xd3\x52\x99\x04\x15\xee\x9a\xbe\x1d\x34\xec\xb4\x5d\x91\x5f\xa5\x25\x6f\x25\xdf\xe1\xa5\x31\xe7\x69\x01\xcf\x52\xa8\x70\xb7\x1b\x0c\x84\xf9\xa2\xec\xca\xe4\x83\x81\xfe\x9c\x8b\x43\x63\x9b\x5f\x2e\xdd\x0a\xc2\xac\xf1\xd5\xcd\xdc\xcf\x96\xb6\xa1\x68\x9b\x03\x72\x12\xff\x14\xde\x8e\x76\xcf\x55\x3e\x71\x31\xde\xdf\x1e\x10\x8e\x9e\x21\x91\x05\xde\xfe\x6e\xd4\xfb\x5c\x3d\xd0\x38\x7c\x1d\x57\xaa\xf8\x92\xbb\x4c\xe5\x65\x7d\xe8\x55\x04\xf7\x69\xcf\x34\xef\x06\x7e\x52\x41\x50\x74\x8a\xc3\xda\xae\xc1\xd3\x04\x12\xf4\xe2\x35\x9c\x2c\xf1\x13\xae\x2c\x57\x2a\x6f\x97\x5b\x22\x0c\x37\xff\x61\xb2\x8f\xfe\xf9\x9f\xf9\xe9\x0c\x12\x6d\xfe\xe5\x5f\xb2\x97\x0f\x3e\x56\xde\x9a\xc9\x79\x67\x24\xe3\xda\xcb\xfc\x97\x72\x9f\x57\x51\x9b\x7d\xfe\xcb\x93\xa4\xd9\x1c\x04\x96\xbd\xd3\xa3\x6c\x0f\x51\x82\xbe\xbb\x77\xfe\x77\x00\x00\x00\xff\xff\x2e\xd2\x7d\x41\x8b\xbc\x00\x00") func confLocaleLocale_deDeIniBytes() ([]byte, error) { return bindataRead( @@ -4359,12 +4359,12 @@ func confLocaleLocale_deDeIni() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "conf/locale/locale_de-DE.ini", size: 48092, mode: os.FileMode(493), modTime: time.Unix(1446597104, 0)} + info := bindataFileInfo{name: "conf/locale/locale_de-DE.ini", size: 48267, mode: os.FileMode(493), modTime: time.Unix(1446611818, 0)} a := &asset{bytes: bytes, info: info} 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\x5e\xdb\x11\x72\x39\xba\x7b\x6f\xd1\xd1\x76\xaf\x2c\xb5\x2f\x73\x2c\x4b\x63\xa9\x67\x76\xd6\xe1\x60\xb3\x8a\xac\x2a\x8e\xab\xc8\x6a\x92\x65\x59\x73\xe2\x44\xec\x03\xec\x03\xec\xbe\xde\x79\x92\x05\x3e\x00\x79\x21\x59\x92\xdd\x33\x71\xfc\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\x91\xaf\xe4\x53\xd9\x76\x55\xc3\xb5\xff\x59\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\xbf\xd2\xcf\xf4\x42\x7e\x4a\x5e\x50\x08\x99\xae\x24\x8f\xa4\xcb\x96\x65\x59\xc8\x58\xba\xf4\x05\x7d\x27\xbb\xfd\x66\x43\x58\xfb\x6d\x5f\x76\x3d\x17\xba\xa0\xdf\x34\x7e\xf9\x9d\x54\x5d\x47\x1f\x94\xfc\x1a\x1f\x09\x4d\x5d\xbd\xc0\x60\x4e\xf0\x91\x24\xef\xbb\x32\x6f\x17\xeb\x0f\x89\xfc\x45\x5f\xf9\x83\x69\xef\xd0\xa4\x32\x21\x29\x11\x49\x0b\xd6\x40\xb2\x68\x0a\xfe\x71\x42\x7f\xa8\xea\xaa\xee\xfa\x7c\xb3\xf9\x90\xe8\x07\x83\xc9\x97\x4c\x40\x5f\xf5\xc0\x82\x26\xa6\x97\x7d\xb9\xeb\x78\x06\xd3\x17\x55\xdb\xf5\x8f\xfb\x8a\x88\xf5\xdd\xbe\x4e\x8a\x66\xf1\x91\x96\x01\x2f\x69\xb4\xfc\x7a\x99\x12\xb2\x1e\xd0\x42\x68\xf7\x75\x4d\xe8\x49\x5f\x36\x84\x32\x6a\xa6\xa2\xf6\x4f\x01\x7d\x94\xee\x36\x65\xde\x11\x48\x99\x17\xe9\x8f\x79\xda\xe7\xed\xaa\xec\x9f\xde\xcb\xe6\xb4\xfc\x3e\xde\x4b\xd7\x6d\xb9\x7c\x7a\xef\x7e\x77\xef\xd9\xcb\x3d\x15\xdb\x54\x75\xd9\xfd\xf8\x24\x7f\x96\x2e\x72\xca\x21\x34\xde\xa4\xf3\x72\xc9\xab\x8d\xda\x4a\x89\xca\xeb\x15\xaf\xb4\x9b\x7e\xcd\x0d\x12\x25\xd0\x47\x97\xf2\x52\xff\x26\xe1\x09\x20\x56\x90\x15\x73\x63\x6b\xe8\x10\x92\x5b\x9a\x80\xb3\x9b\xcb\x3f\xbd\x39\x4a\x2f\x88\xb7\xad\xda\x12\xdf\xf4\x1f\x95\xf8\x3e\xa5\xd1\x5e\x55\xa7\xcf\x67\x09\x95\x35\x84\x9c\xe6\x7d\x3e\xe7\xbe\xbb\xd9\xe7\x4c\x59\x84\x2e\x0f\x4b\x91\xb9\x25\x38\x63\xd7\x47\xd3\x32\xb5\x90\xa9\x0e\x5d\xfe\xae\x8e\xb7\xcc\x03\x28\xdd\x61\xf6\x42\x70\x46\x55\xa5\xaf\xdf\xbe\x3d\x3f\x7d\x9e\x96\xf5\x8a\x30\x93\x5e\x57\xfd\x3a\xdd\xf7\xcb\xff\x9e\xad\xca\xba\x6c\xf3\x4d\xb6\xa8\x18\x29\x2d\x11\x6c\x4a\x58\x92\x21\xce\x92\xae\xdb\x10\x8b\x02\x15\x5c\x5e\xbe\x49\xcf\x98\x12\x76\x79\xbf\x46\x47\xfa\x75\xd2\xfd\xb6\x61\x44\xb9\x06\xaf\xd6\x65\x8a\xc5\x00\xa0\x66\x39\xc4\x4b\x5a\x68\x5f\x67\x49\xd9\xb6\x19\x71\xd0\xfe\x86\xd1\xac\x75\x1e\x82\x96\xea\x88\xda\xeb\xa6\xa7\x69\x4c\x51\x4e\xaa\xa8\xea\x4f\xf9\xa6\x2a\x08\xd9\x1e\x21\x71\x59\x24\x16\x0d\xcd\x1b\x97\x26\xca\x6c\xae\x31\xd4\x7c\x41\x1b\x40\x97\xde\x9b\xdd\x03\xc7\xbd\xf7\xf8\xde\x2c\xa9\x9b\x4c\xb8\x04\xf3\xe6\xa2\xea\xf2\x39\xf1\x69\xd9\x37\x5a\xe3\x7a\x7f\x65\xfa\x91\xae\x28\x44\x1a\x41\x30\x6e\x79\x2f\xc2\x16\xc0\xc4\x95\x13\xc3\x06\xb3\x51\x36\x13\x8e\xdd\x78\x92\x9b\x5f\x61\x4b\x2e\x61\x34\xe6\xc4\x26\xcc\xa8\xeb\x78\xb7\xdb\x54\x0b\x69\xfa\xa5\xe4\x79\x42\xe3\x9d\x59\x91\x12\xc2\x81\x50\x2c\x2f\x20\x17\xea\x35\xb3\xad\x34\xe2\xf3\x28\xbf\x2e\x69\xe5\xac\xf7\x2b\xd9\x9d\x36\xcd\xbe\xf8\x06\x0c\xc5\x66\xce\xf3\x93\xf4\x5d\x43\x1d\x06\x75\x38\x00\xdf\xc4\x31\x31\x06\x16\x06\xda\x72\xdb\xf4\x8c\x38\x2d\x56\xd1\xf4\x5c\x57\x94\x49\x23\xed\xf2\x4f\xc4\x16\xfb\x46\x96\x64\x41\x4b\x6e\xc1\x15\x13\x07\xdb\xd3\x8e\x2e\xcb\x82\xf8\x88\x2c\x0d\x4b\x8b\x69\x10\x50\xdb\x3d\xad\xa6\x35\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\xcb\x25\xf5\xaa\xa3\x55\xf1\x2a\x5d\x6c\x1a\x5a\x52\xbf\xbc\x7b\xd3\xf1\x82\x59\x67\xbb\xa6\x85\x24\x42\x59\x17\xf4\xe9\xd2\x02\x44\x33\x44\xbd\xdf\xce\xe9\xd7\xf5\xba\x22\x46\x0d\xb4\x73\x09\x96\x92\x28\x95\x9a\xd8\x77\x34\x85\x47\x29\x2d\x61\x1a\x01\xa1\x0c\x04\xc0\x63\x30\xaa\x63\xf0\x25\xd1\xd8\xbe\xa5\xe5\xb4\xee\xfb\x9d\xb5\xfc\xea\xea\xea\x42\x9a\x76\xa9\xb7\xb5\x9d\x07\x94\x81\x39\xd8\xb0\x6c\x54\xa7\x4d\x3d\x03\x91\xec\xdb\xcd\x80\x7e\x68\xac\x96\x73\x00\x2f\xdc\x85\x27\xfc\xdf\xa5\x47\x0f\xf0\xdc\x91\xd4\x77\x0d\x6a\x22\x1c\x97\x90\x53\x88\xa8\x9b\x1d\xd7\x1b\x50\xf5\xb9\x26\x78\x52\x86\x6c\xe3\xf2\x45\xc2\xa1\x5c\xc8\x94\xc1\x2e\xbd\xa5\x01\x2b\x1b\xbd\x3c\x23\x34\x80\x97\x22\x75\xd9\x36\x5b\x4a\x7d\x41\x7f\x7c\x82\xef\xfe\x19\xd7\x07\x98\xbc\x28\x88\xcb\x77\x47\xe9\xbb\x17\x27\xe9\x7f\xf9\xfe\xbb\xef\x66\xe9\xeb\x9e\x57\x22\x13\xe7\xdf\x98\xa8\xe8\x53\x44\x2d\x07\x4a\x1c\xab\x27\xba\xbb\xc7\x2b\xeb\x5e\xfa\x23\x72\xff\x47\xf9\x39\x27\x11\xb1\x9c\x2d\x9a\xed\x33\xe6\xaa\xdb\x9c\xd6\x3e\xe7\x10\xb9\x2a\x1d\x5f\x96\x75\x41\x1f\x2a\xb0\x69\x5e\xc0\x0e\x34\x3f\x10\xdf\x44\x70\xcd\x16\x4d\xbd\xac\x5a\x1e\xd0\xcf\x35\xa8\xc1\x44\x5a\xda\xae\x91\x63\x52\x11\x21\x8d\x38\x48\xb5\xbc\xf1\xa0\x18\xea\x5b\x4e\xd4\x09\x4d\x84\xea\x32\x15\xd1\x1d\x96\x2f\x85\x18\x79\xde\xce\x69\x78\xad\xe1\xbb\xf3\x08\x6f\x96\x4b\xde\x6b\x6d\x97\xd0\x16\xce\x25\x55\x36\x8c\x10\x84\x88\x71\x07\xa1\xfc\x54\x89\xf8\xe4\xf4\x6d\x5a\x7e\x22\x6a\x63\xae\xd7\x36\xc5\x7e\x01\x0a\x63\xd8\x23\x66\xd6\xc4\x22\x3a\x5a\x1b\x0b\xd9\x57\x02\x26\xc1\x5d\x63\x4e\xb4\x20\x20\xe2\x0d\xc6\xac\x49\x90\xfc\x44\x9c\xbf\x0d\x9a\x78\x69\x49\xda\xfb\x11\xec\xa8\x53\xae\x04\x8f\x7c\x41\x33\x4e\x54\x21\xbd\xe8\xa4\x53\x92\x4d\xe4\x4e\x74\xbc\xa7\x13\x4a\x5e\x50\x5f\xe6\x37\xe0\x3b\x1d\x13\x43\x51\x2e\xf3\xfd\xa6\xf7\xfd\x1a\x6c\x22\xd6\xd2\x25\x1f\x92\xc2\xbc\xc9\x02\xa3\x0e\x82\x7a\xba\x61\x59\x22\xc3\x9a\xe4\x1c\xd9\x6c\x98\x5e\xe5\x14\x62\xfb\x0e\xb1\xa7\x12\xd3\x93\x79\x91\x5f\xe7\xcb\x24\xff\x38\xdf\x35\xfb\x4e\x24\x9f\x14\x5b\x2d\xd7\x68\x15\xb0\xa8\x30\xdd\x97\x59\xa2\xe2\x52\xa6\xc7\xb5\xec\x53\x85\xc3\x90\x23\x57\xa9\x52\x8f\x70\xcc\xd7\xfe\xcc\x00\x7c\xca\xea\x26\xcb\xba\xde\x9c\xf3\x20\x3b\x77\x18\x12\x9c\xf3\x70\xd1\x02\x8b\x70\x34\x4b\x9f\x2a\xb0\x79\x25\x18\xe0\x85\xa8\x06\x4d\x53\x53\x5d\x59\xa2\x06\x2a\xff\x84\xea\x44\x99\x99\x1e\x10\x54\x66\x37\xd1\x8f\xb7\xfb\xa2\x81\xec\x80\xbd\x84\x4a\x1b\x5a\x07\xfb\x7a\xda\x56\xab\x35\xf1\xd6\xe6\xfa\x48\x90\x72\xbd\x6e\x4a\x5e\x3f\xaf\x4f\x9f\x7e\x2b\xfd\x58\xf1\xce\xe2\x0a\xf1\x9e\x94\xef\x89\xb8\x08\x63\x4a\xc6\xd2\x05\xb7\xb7\x03\x72\x74\x14\x11\xa0\xe1\xe1\x6f\x24\x4a\x38\xa6\xa1\xbc\x22\xcc\x53\x26\xe1\x61\xa4\xb4\x1d\x20\xa5\x61\xe5\x4a\x2a\xef\x67\xab\x06\x07\x19\x93\xef\x79\xb7\xa4\xf3\x70\xd7\x67\xab\xaa\xcf\x96\xcc\xba\xb8\xe6\x17\x5c\x03\x6f\xde\x94\x93\x3e\xa0\xac\x07\x29\xf1\x3f\x3a\x9d\x15\x3f\xa4\xf7\x3f\xa9\xc4\xf8\x3d\xf3\xa4\x8c\x56\x51\xb5\xc1\x94\xe8\xf1\xa8\x2d\x45\x60\xb5\x33\xb8\x93\xda\xba\xfd\x0e\x7b\x9b\x0a\x88\xee\x34\x50\x34\xd7\x35\xaf\x3e\x30\x5f\xe2\x33\xd5\xa2\xa2\x3d\x63\x5e\xd5\x39\x6d\xf0\x56\x0b\x98\xfa\x7d\xa2\x89\xb7\xe7\x57\x00\x5c\x35\xf3\x7d\xb5\x29\x0c\x60\x96\x98\x10\x49\x22\xa4\xce\x7e\x28\x56\x5b\x52\x25\x7d\x59\x34\x2d\x4b\x24\x18\x8d\x15\x3c\x20\x0a\xb5\x2c\x62\x20\xb9\xe2\xf3\x0c\x60\x51\xce\x49\x2d\x8c\x06\x9a\x7e\x1c\xd5\x58\xa6\x01\xdd\x54\x5d\xfd\xa0\x47\x4f\x17\x7b\x6a\x8b\xa6\x9e\x93\xa9\x60\x97\x3e\x7e\x46\xff\x27\x2c\x21\xc9\x0e\xb0\x1a\x23\x9e\x33\x53\xc9\xdc\xcb\x5a\x8c\xba\x1a\x11\xb9\x9b\x6a\x23\xe1\x60\xac\x61\x7f\x8d\x04\xba\xbd\x50\x2d\xab\x4b\x36\x34\xad\xe5\x37\xf4\xc1\x27\xb7\xd5\x06\x93\x90\xf7\x7a\xbc\x6a\x08\x6f\x4c\x20\x47\xb2\x68\x96\x34\x34\xe6\xa5\x7d\xfe\xb1\xc4\x89\x8c\xf6\xfc\xf7\xac\x07\xfa\x90\xec\x45\x06\x6d\x36\x85\x3b\xef\x80\xb2\x9b\x76\xa8\xc6\xf0\x40\x8e\x6a\x3b\x12\xb6\x17\xeb\xcc\x69\x91\x18\x29\x7d\xf9\x19\xbb\x3f\xb2\xbc\x52\x89\x49\x9e\xb3\x92\xed\x0d\xa6\x8b\x07\x71\x76\xe3\x67\x8b\x24\x50\x5a\x28\x74\x98\x9d\x37\x8c\xb5\x4f\xa5\x83\x3a\x09\x53\xe3\x02\x54\x17\xc9\xca\x5a\x55\xac\x6d\xa0\x2c\x51\x89\x68\xae\xa8\x45\xba\x04\xac\x4c\x55\x60\xe0\x78\x34\x9f\x7a\xb2\x9f\xd1\xc4\x40\x6d\x60\x2d\x13\x5f\xbc\x91\x75\x11\xb4\x99\xbc\x57\xf5\xd8\x87\xc4\xe0\xde\xc5\xf9\xc4\x53\xd6\x1f\x02\x15\x54\x66\xb3\x6b\xaa\x28\x68\x4f\x94\xad\x78\x91\x62\x5d\xee\x58\xfa\xd8\x76\x20\x8b\x0d\x9f\xb4\x6f\x54\x7e\x76\x04\xf2\x93\x30\x6c\xa2\x18\x62\x73\xdf\x24\x5d\xc3\x0b\x2e\xfb\xca\x2a\x9e\x57\x44\x0a\x28\x1f\x6f\x76\xa2\x1b\x23\x31\x97\xa7\x8f\x56\xd9\xcd\x51\x7c\xb2\x5a\xe7\x1d\x31\x71\x92\x15\xb4\x58\x31\xb3\x13\x2e\x4f\x3b\x9d\xe7\xb0\x66\xa0\xcf\x03\x95\x4b\xc9\xa6\x1d\xee\xc2\xdc\x43\xe1\x73\xda\x8a\x93\x9d\x20\x19\x85\x02\xd4\x44\x9b\x84\xb0\x6d\xc9\xe2\x73\xb6\x15\x35\x9a\xfc\x4a\xcf\xca\x84\xb6\xc3\x15\x2d\x68\x23\xd8\xa7\xac\xfd\x58\xe1\x94\xa1\xf4\xca\x00\x65\x1f\x32\x62\x85\xb0\x94\x9f\x4c\x6f\x49\x9c\xe1\x1a\xaa\x21\x5a\xdb\x23\xf4\xd3\x96\x45\xd9\x33\x63\xec\x22\x23\x40\xd4\xeb\x88\x5b\x78\x24\x1e\xa7\xac\x80\x0c\xa1\x54\xe4\xf6\xc3\xe2\x02\xcc\x35\x7e\x9c\x3f\xbb\xdf\xfd\xf8\x64\xfe\xcc\xf1\xd6\xc5\xba\x5c\x7c\x14\xfa\xab\xea\x79\xf3\x19\x07\x5b\x28\x4a\xe8\x4c\xcd\x6b\xec\x7e\x91\xd2\x41\xb7\xc5\xb9\x8a\x78\x01\x15\x23\xc4\x73\x6e\x34\x69\xd4\x19\x66\x19\xb4\xb5\x2d\xb0\xaa\x40\xe0\x9e\x20\x8f\x39\x95\x49\x12\x1b\x80\xa7\x49\x0c\x64\x53\x6d\xab\x7e\x44\x13\xcc\x61\x72\xa5\x2d\xd5\x95\x19\x92\x50\x17\x86\x89\x51\x12\x9f\xa6\x6a\x68\x5f\x35\x3a\xb9\xce\xe9\x20\xf5\x7d\x4a\xb4\xb1\xa7\xfd\x89\x3b\x4b\xe3\x21\x46\x9d\xf3\xc6\x4c\x87\xa8\xbc\xcb\xf6\xb5\xe2\xab\x2c\x8c\x4a\x5e\x55\xd8\x3e\xb8\x5d\xa3\xe5\x00\xca\x50\xaa\x67\x81\xf4\xa1\x43\xe5\xa3\x99\xea\xb6\x50\x8c\x79\x3a\x77\xa8\x62\xb9\x35\x9f\x9c\x15\xe2\x79\x75\x29\x67\x5f\x60\x80\xe1\x78\x06\xe9\x00\xe5\xa7\x85\x4e\x61\x1f\x29\x05\x98\x9e\xef\xfb\xbe\xe1\x73\xc9\x86\xc9\x41\xca\x58\xaf\x4f\x00\x88\xa3\x96\xaf\x0f\xd3\x19\xe2\x49\x58\x6c\x69\xe7\x84\x8c\xe8\x90\xd7\xb4\x68\xb8\xf9\x44\x37\x18\x9d\x6e\x82\x0e\xac\x10\x5d\x52\x5e\xdf\x78\xf5\x06\x7a\xc1\x0d\xf6\xd3\x7d\x79\xd8\x96\x8f\x7c\x6f\xdc\x62\x40\x09\xeb\x91\x14\x0f\x16\xca\x3b\xe4\x8a\x8a\xd5\x96\x93\xed\x69\xaa\xa8\xf4\xf4\xd1\xc6\xe8\x45\x3e\x93\x3c\x71\x4e\x12\x2b\x0b\x20\x9a\x46\x81\xd2\xb3\x41\x5b\xfe\x48\x38\xc6\x60\x1f\x77\xd9\x6f\x4d\x7d\xd3\x64\xdd\x5a\x8e\xdf\xd6\x3d\x3a\xba\xd7\xab\x48\x6f\x85\x7b\x11\x10\xdd\x7f\xe5\x0d\x90\x07\xfa\x21\xd1\xd9\x28\x83\x45\xa1\xd4\x6a\x39\x36\x6b\xb2\x36\x1c\xbc\x09\x6b\x7f\x2e\x5b\x3e\xde\x01\x28\x9e\xad\x43\x58\x8c\x07\xe1\x98\xa2\xdf\xdd\x1d\x43\xd4\xa4\x23\xdb\xef\xb9\xd7\x4d\x91\x53\xb7\x6f\xa0\x89\xfe\x2b\x6d\x38\x35\x74\xfc\x4d\x42\x19\x72\xcc\x3c\xc3\x07\x81\xf2\x99\xf7\x43\xc2\x5b\xfa\xdb\x81\xb0\xca\x3b\x96\xa6\x05\xf2\x12\xb2\x7e\x8e\x2e\x31\xdc\x50\x2e\x26\x04\xdb\x77\xa5\xbf\xcb\xc0\x97\x1b\xd3\xe5\xe5\xab\x2b\x3b\xc4\x5e\xbe\x4a\x3f\x96\x5a\xf9\xab\xbe\xdf\x75\xbf\x40\xa1\x21\xda\x09\x56\x65\x5c\xe4\x37\x2c\x44\x4a\xb2\xfe\x40\xc6\x55\x99\x6f\xb5\x97\xfc\x29\x55\x1c\xd3\xee\xaa\x89\xfc\x49\x9b\x6e\xa0\x28\x4b\x20\x4e\xfd\x3c\x25\x46\xbb\x43\x4d\xa9\x17\x25\xbf\x8e\xb4\x7b\xbf\x26\xf9\x66\x47\xe7\x2e\x96\x67\x02\x30\x28\xb2\xe6\x7a\xfc\x4a\x01\x02\x0a\xde\x6f\x69\xe6\x17\x38\x6e\x52\x81\x87\x8f\xb3\x47\x81\x62\x33\xae\xac\xa0\xa5\xfd\xbb\x2a\xe4\x6f\x16\x7a\xc3\x7a\xbb\xea\xef\x36\x8a\xa8\x3a\x4e\x27\x4e\x49\x10\x10\x31\x3d\x94\x03\xc2\x3e\xcd\xe2\x66\xcf\x7a\x2d\x4a\x20\x91\x36\xaa\x7a\x9b\x7f\xbe\xab\xe0\xb6\x99\x28\x27\x0c\xcc\x17\x32\x36\xa5\x43\x8c\x97\x05\xc1\xb3\xe6\xea\x20\x34\x4d\x3d\x81\x54\xf5\x62\xb3\x2f\x0e\xf6\xa4\xdb\xcf\x69\x8f\x63\x59\xf9\xc1\xfd\xee\x01\x57\x59\x7f\xa4\x4d\xb9\x76\xf0\xbf\xc8\xef\x14\xbf\x7f\xb0\x6b\x36\x3a\xcd\xea\x01\x22\x75\x17\x6e\x24\x5b\x14\xbc\x3b\xe0\x20\x30\xf3\x4c\x25\x3c\x1c\x38\xf2\x87\x4a\x42\x4f\x6f\x6e\x61\xb3\x1e\x02\xe7\x24\x22\xc1\x99\xbf\x1b\xcc\x78\x8b\xcf\x58\xe8\xae\x43\xd1\xda\x6d\xfe\xb6\x8b\x02\x42\x6e\x88\xb2\x71\xb9\xc1\x02\x3d\x58\x9c\x24\x99\x89\xd2\xe7\x63\x5d\xf2\x81\xf2\x3d\x2d\xb1\x89\x0a\xdc\xca\x3b\x58\x50\x26\x1f\x85\x68\xe4\xc5\x88\x77\x8c\x0b\x32\x18\x1d\xfb\x36\x9b\x72\xc5\x4a\x47\x6b\x38\x6a\x4d\x27\x9a\xb6\x3c\x01\x0b\x09\xce\x63\xd8\x4d\x56\x38\xaf\xe1\x21\xc6\xcd\x51\x7c\x7c\x64\x5d\x0c\x55\xd5\xe2\x7e\x37\x38\x44\x6a\x37\x74\x07\xd8\xf2\x79\xa9\xdb\xf3\x06\xc4\x67\x2b\x11\xae\xe2\xd9\x60\xf1\x02\x55\x95\x68\xe2\x70\xf5\x44\x8b\x7c\xe0\xbc\xab\x7e\x80\x7d\x65\xd5\xa1\xd2\x61\x5c\xb1\x56\xee\x80\x0e\x55\xeb\x0e\xc4\xe5\xe7\x0a\x0a\xdc\x97\x15\x2b\x06\x71\x24\x76\x9a\x00\xe4\xcd\x92\x0d\x31\x0f\x3e\x7a\xc9\xa8\x44\x0c\x6f\x3e\xf1\x6a\xe4\xf6\x38\x57\xca\x89\x42\x57\x07\xc5\xf3\xac\x87\x6b\x5c\x03\x95\xc5\x11\x09\x32\x5c\x82\xfa\x89\xc5\x9d\x6f\xae\xf3\x9b\x0e\x9a\x22\xe3\x50\xac\xbc\x96\xe2\xcc\x7e\x48\xcc\x59\xa1\x57\xe1\x15\x09\xad\x38\xc3\x04\xeb\xfa\x79\xb3\x71\xc2\xc8\x35\x8e\xc7\xe0\x2e\xaa\x7b\xfa\x14\x6c\xd7\xba\x37\xf1\xd1\x9e\x0f\xc2\x7c\x44\x91\xec\xa0\x22\xdc\x3d\xea\x4e\x31\x51\xf6\x88\x85\x40\x6a\x86\x45\x32\xe2\xdf\x82\x6b\x92\x72\x09\xb3\xe8\x52\xa0\x2b\xd9\x53\xfd\x8f\x45\xac\xaf\x08\x87\x7c\x4c\xf4\xea\x03\xde\xcb\x68\x56\x4c\xc5\x2f\xe9\x38\xfc\x27\x5d\x4f\x4b\x80\x31\x6d\x17\xfa\x7f\x0d\xe4\x91\x14\xb9\x58\x62\x40\x53\xb7\xae\x76\x69\x03\xb5\x71\x88\x42\x4f\xb6\x81\x20\xcd\x97\x19\x25\x8e\x0d\xac\x3f\x6f\xf3\xba\x5b\x96\x50\xa4\x6f\xd3\x25\xdf\x19\xcf\xb4\x69\x96\xcb\xe5\x62\xff\x40\xcb\x72\x04\x43\xd3\xe1\xee\x82\xb9\x0b\x26\x2a\x6e\x5a\x6e\x56\xa0\xac\x45\x1f\x80\x55\x5f\x53\x67\x7d\x60\x32\x1b\xa1\x00\xb2\x71\x74\x4f\x66\xbd\xf9\x54\x86\x88\x58\xfe\xde\x91\x07\x58\xd7\xbb\x02\xb9\x60\x89\xa7\x49\x1a\x85\xb6\x06\xd7\xbc\xf3\x9b\x78\xf4\x5c\x34\xb8\x3b\xa7\x35\x52\x6a\x2b\xbc\x30\x78\xad\x0c\x2a\x84\x96\xc6\x9f\x88\x12\xb9\x67\xcf\xe6\xd4\xc5\xc5\x3a\x5a\x9d\x57\xc8\x49\x25\x67\xb4\x40\x93\xf7\xdc\xf4\x87\x44\x6e\xda\x33\xa7\x94\x3f\x91\x9b\x77\x91\x68\x55\xc9\xde\xa7\xa6\x89\xe7\xab\x12\x2b\x22\x7a\xf7\x5b\x4b\xf2\x36\x6c\x4a\xd1\xbf\x35\x24\x73\x40\xb7\xfe\x47\xfa\x62\x19\xbf\x4e\xa2\xeb\xc5\x81\x9a\x04\x62\x74\xd5\xf3\x0a\xbb\xa0\x85\x41\x62\xcf\xb1\xa6\xd0\x29\x1d\xdc\x01\x9a\x9b\x17\xf6\x4d\xf3\x91\x33\xd3\xe3\xa5\x2d\x5f\x0a\x27\x6a\xb4\x17\xf6\x9d\xf0\x21\x7f\x3b\xc3\xe6\xc0\xe2\x37\xae\x29\x82\x2d\x81\xa5\x05\x9e\x30\xcb\x9b\x05\xf0\xbb\xbc\x27\xb6\x58\xcb\x41\x4c\x38\x54\x58\x54\xb3\x5d\x15\xee\x3e\x9b\x6b\x61\xdb\x0f\x41\xc5\x87\xc4\x9b\xa4\x98\x35\xca\x94\x5a\x58\x59\x4c\xa7\x32\xf2\xbf\xd0\xa7\x2a\x74\xc0\xbe\xf0\xa1\x07\x72\xdc\x24\xdb\xf5\x1f\xcc\x63\x82\x9f\x89\xaa\xc0\x62\xfd\x97\x92\xf7\xd3\xf4\x54\x3e\xec\x68\xbf\xaf\x30\xa6\xaa\x48\x92\x1d\xf0\x1e\x18\xd0\xe8\x44\xb8\x4e\xab\xa1\x94\xd7\xc4\xb7\xc3\x9d\x9d\x6d\x36\xa4\x10\x13\xae\x5d\x0e\x41\x0a\xe0\xbb\x89\xe0\x58\xca\xca\x65\x9c\x57\xeb\xe0\xe2\x8b\xaf\x73\xf8\x94\x4d\x60\xd7\xe5\x3c\x65\x75\x2f\x11\x0e\x9d\xfe\x74\xa0\xdb\x9c\x0e\x8e\x9f\xaa\xdc\x29\x96\x68\xb6\xd8\x44\x47\x77\xd1\x17\x6c\x9e\x83\xcb\xf4\xb1\x1d\x19\xdf\x4c\xe9\x65\xcf\x1b\xfd\x4c\xf6\x3b\xbe\x3d\x09\x06\xfc\x0b\x12\xdc\x80\xe3\xfc\xe0\x3c\x86\xa1\x5b\x31\x27\xcd\x08\x78\x61\x87\x34\x58\xb9\xcc\x6c\xf9\x4c\xd8\x87\xe9\x12\x2a\x86\x20\x5e\xc3\x02\x16\xa3\xc6\x31\x40\xa6\xdc\xe7\x62\xf8\xb4\x33\xa6\xeb\xe6\x3a\xdd\x54\xf5\xc7\x4e\xb1\xc9\x7c\x2c\x3c\x9c\x42\x25\x45\x44\xb8\x17\xbb\x21\xf9\x1c\x9b\x29\xd9\x35\xd3\x60\x85\xdb\x65\x94\x5c\xb8\x1d\x23\x79\x12\xd6\x1f\xd1\xed\x42\x6c\x59\xb2\x98\x0c\xa6\x66\x97\x77\x34\xca\xa6\xe9\x54\x01\xea\x99\x08\xa7\x41\xa9\xa2\x50\x8a\x73\x07\xa1\x53\x72\x6c\x57\x86\x58\x53\x89\x5d\xf2\x59\x07\xb0\x42\xb3\x6a\x2b\x66\x7f\xbf\xd8\x15\x20\xe6\xc7\x9d\x26\x90\x0d\xa3\x92\xb8\xf7\xe1\xbd\xc7\xdb\xc6\x2e\x18\x8d\x1b\x5a\xe6\x91\x6d\xfa\x82\x01\x6c\xd9\x51\x67\x87\xf4\xa1\x15\x98\x0a\xff\x0e\x32\x31\x22\x08\x2f\x85\x64\xe2\x1d\x83\x68\x36\x91\x68\x77\xa2\x97\x11\x2e\x9f\x31\x1b\xe4\xbf\xc5\xf5\x9d\x53\x2a\xf0\x81\x3c\x1b\x80\xe8\x81\x3d\x82\x9c\x94\xa0\xad\xad\x83\xd2\xf3\xa0\xf7\xa3\xb5\x62\xe5\xae\x09\x0b\xe1\xc0\x95\xba\x8b\x99\xd9\xf1\xb0\x26\x55\xee\x02\x61\x70\x21\x46\x27\x35\x2e\x12\xa5\x0a\x42\x15\x0e\x18\x9d\x3f\x57\x1c\x0b\xf7\xe1\x0b\x00\xb1\x3a\x74\x00\x6a\x78\x18\x9f\x37\x4b\xb3\x5e\x08\x19\xd9\xae\x25\xf2\xa0\x8d\x76\xa0\x5f\x1b\xb1\xb0\x88\x5d\x81\x5b\x35\xb8\x8a\xf7\x5c\x8a\x4e\x8c\x5a\x17\xf3\x7b\x7c\x59\x8a\xd3\x11\x11\x1d\xb3\xa8\xab\xc9\xca\x9c\x5d\xae\xb0\x68\xd7\x49\xfa\x21\x8c\x4b\x87\x7b\xaa\x29\x03\x00\x1b\x8e\x32\xf8\x7e\x42\x5b\x88\xd1\xa8\xd8\x61\xfc\xb7\xaa\xc5\x14\xc2\x5d\xcd\x45\x0c\x24\x3d\x05\x47\xa1\x79\x13\xbd\xb4\xf1\x93\x9f\x86\x8d\xfb\x09\xff\x79\xa0\xd2\x96\xc1\xc5\xf4\xfe\x4d\x42\x5d\x02\x35\xfa\x2b\xce\x02\xd3\x3c\xd0\x98\x31\x58\x08\xa2\xea\x48\x97\x9c\x45\x3a\x77\x68\xcf\xbf\x4a\xcf\xce\x7b\xf7\x3f\x41\xc5\x1e\xb5\xe5\x55\xec\xae\x97\x83\xe5\xc0\xdd\x1b\xec\x9c\xa3\x85\x41\x19\x90\x23\x94\xa4\x03\xe9\x40\x89\xda\x09\x09\xdc\x8c\x9c\x4d\x18\x43\x94\x04\x51\x42\xa9\x01\x5b\x08\x0b\xaa\x30\x23\x82\x0d\xa0\x1c\x54\xba\x91\xd2\x38\x9e\xf8\x63\x9c\xc4\x08\x2b\x02\x0b\x3b\x3d\xda\x98\x45\x8a\xd5\x93\xdd\x96\x11\x21\x97\xe8\xce\xa4\x6b\x74\x43\x76\xa4\xc7\x9f\x75\xb5\x5a\xd3\xb8\xaa\x2d\x5f\x1d\x83\x9c\xec\x7e\xd2\x9f\x4e\xf9\x17\x31\x94\x66\x55\xb3\xee\x8a\x5b\x10\x1b\x2e\xb7\xc1\xfc\xd8\xf5\x6d\x53\xaf\x9e\x9d\x36\x7c\x6c\x64\x8d\x0e\x6f\x82\x3f\xfd\xf8\x44\xd3\x89\x69\xf2\x1c\xb2\xc1\xdf\xcb\xaa\x7f\xb5\x9f\x3f\xe8\xd2\x15\x5b\xa0\xe2\x52\x25\x0f\xec\x52\xd5\x6a\x40\x0c\xec\xae\x6b\x87\x16\x58\xa9\xd2\x42\xef\x9a\x0d\xad\x92\xb8\x48\xb3\xdd\xca\xfc\xd2\x06\xb0\x15\x48\xf4\x1f\x86\x06\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\x73\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\xb9\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\x58\x28\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\xd6\xad\xfe\xd4\xf3\xb6\xd1\xfb\xb1\xd4\x12\x31\x27\x74\xcc\xe9\xcb\x68\x31\x73\x27\x60\x8f\x28\xf6\x36\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\x3d\xf3\x41\x16\x13\x70\x16\xad\xd5\xd9\x3c\x89\x66\x08\xb6\xde\x6c\x18\x52\x08\x27\x51\x46\xa0\x86\x3d\x8e\x03\x90\x84\x55\x33\x10\xd4\xb7\xfc\xa1\xbf\xc3\x69\x89\xea\x0f\x96\x0b\x31\xf0\x7d\x1d\x30\x50\x21\x87\x4c\x50\xe1\x06\x79\x41\x47\x49\x18\x36\x1e\x4b\x85\x57\x9c\xdd\xa9\x55\xaf\x5e\xd7\x5b\x91\x97\x9a\x88\x35\x00\x40\x41\x78\xe7\x10\x81\x5f\x5e\xab\x60\xb5\xa8\x29\x86\x9a\x2c\x62\x0e\x88\xea\x8c\x65\xae\xc5\x34\x23\x3d\xbe\x78\x4d\x7b\x86\x6b\xd0\x2a\xfd\x39\x27\x49\x5a\xba\x70\xed\x34\x1a\x4c\x6c\x43\x9e\xeb\x64\x7e\x29\x6e\x0a\x54\x94\xc4\x12\x77\x83\x1a\x0d\x48\x06\x13\xe7\x0b\x8e\xcb\x2e\xd0\xf2\x48\x6b\xe8\xc9\x70\xb7\x72\x43\xfd\x86\x30\xeb\x74\x8d\xbc\xb4\x76\x37\xcc\xff\x03\x5b\xac\x5c\x30\x74\x0d\x0e\x3e\x30\x02\x23\x48\x68\x3a\x52\x5e\xc2\xad\xe3\x1f\xd6\x61\xe5\x20\xe1\x54\x86\x6c\x64\x72\x32\x3d\x53\x99\x2c\x36\xc5\x59\x76\x56\x4f\x3c\xe6\xbb\xf8\x0c\x13\xbe\x3f\x87\xdf\xc2\x65\xc2\x51\x05\xa4\x7c\x31\xd9\xac\xa3\x68\x69\x7a\xc0\x6f\x52\xd9\x08\xc5\x90\x81\x5b\x91\xd3\x85\x52\x44\x60\x23\x4c\xb5\x5c\x97\x1b\x36\xee\xd5\xd6\xfd\xf5\xa6\x0e\x3d\xba\xf1\x57\xa0\xe0\x24\x5a\x7a\x11\x57\x50\x11\xaa\xe9\xac\x32\x82\xa0\xe5\x86\x4b\x7e\x39\xca\xdb\x7e\x7d\x72\xfc\xf6\xed\xf9\x95\xdf\xa6\x79\x1d\xd4\x05\x09\x13\xdf\x38\x73\xb8\x51\xbf\xcc\x28\xce\x4d\x60\x0c\xe1\xcd\xf2\xb4\xc4\x21\xb8\x90\x4d\x59\xed\xf4\xb9\x6a\xc0\x7b\x1a\xee\x8b\xf1\xf2\xa8\xff\xc5\xa1\xf9\x4b\xde\xb3\x7c\xf3\x21\x31\x65\xf7\x39\xff\x4d\xc2\xfb\x82\xe0\x8e\x06\x4b\xcf\x5f\xe5\x78\xd3\x7b\xea\x40\x53\x8c\xee\x0f\xc0\xa4\xf7\x39\x8e\x46\x84\xfb\x06\x7b\xc5\x32\xc5\x65\xf6\x11\xab\x43\x9b\x16\x0b\x86\x91\xbb\xaf\xab\xdf\xf6\x10\xd0\xf8\x60\x44\xcc\x83\xad\x2c\xe7\xd5\x46\x36\x94\x3f\xbb\x1f\x92\xce\x5f\x03\xf3\xf0\xa0\x71\xfa\xf5\x63\xb7\x63\x23\x55\xda\x1b\xba\xa7\xf7\xf6\x55\xca\xda\x35\x36\xd1\xba\xf7\x8c\x8e\x31\x7c\xc5\x4d\xd3\x47\x10\xcf\x46\xd5\xb1\x8b\xd8\x42\x54\x71\xce\xd8\x07\x74\xab\xe9\xbc\x5a\x58\xe4\x8d\xf4\x7f\x82\xf8\xdf\xd1\x26\xfb\xa3\xf9\x71\x3c\xd4\x53\x32\xe1\x08\x6b\xf7\x53\xbe\xd9\xc7\xca\x12\x6e\x9d\xcb\x74\x8f\x12\x14\x55\x8d\xf1\xd0\x97\x0d\x79\x66\x94\xce\x79\xb0\x4c\x47\xea\x04\xfa\x02\xaf\x93\x7c\xd3\x8b\xae\x38\x0d\xd0\xcf\xbc\x00\xad\x96\xe1\x14\xeb\x9d\x9e\x63\x39\xdd\xa2\xad\x60\x59\x2f\xe9\xec\xb9\x98\x06\x5e\x8b\x2e\xd1\xb7\x7b\x49\x84\x4a\x63\x9a\xad\xaa\x9e\xce\xc8\xec\x3f\x05\x3b\xec\x84\xd6\x39\x6d\x3d\xf0\x79\x94\x2f\x4b\x19\x15\xe5\x5d\x5a\x60\xa1\xe3\x62\xd9\x50\x49\x96\x3f\xf4\xf7\x44\x29\x05\x34\x8f\x4b\xbe\xae\x68\xb2\xaa\xae\x78\xa5\xbe\xa6\x3f\xb4\x0b\x8b\xcc\x1e\xd3\x95\x08\xa4\xa8\x44\x15\x32\x72\x6a\x76\xf5\xa8\x5d\x9c\xce\x8a\x1a\xc4\x05\xf3\xa2\xa6\xdb\xaa\xf2\x06\xda\x90\x90\x3e\x47\x82\x3a\x3a\x52\x4f\x68\x16\x3e\x89\xfc\x22\xae\x8f\xaf\x2d\xe5\x21\x9f\xd9\x1e\x1d\x50\x04\x0f\x6f\x53\xbf\x5e\x1f\x3c\xac\xe1\x76\xb5\x30\x1b\x14\x65\xac\xe4\x4f\xd5\x9a\x2c\x32\x5a\x48\xd4\x11\xd3\xfc\xd1\x9c\x27\xa6\x38\xa4\x85\xb9\x87\x97\xb2\xe9\x2c\xf2\x78\x75\xc1\x10\x73\x4e\xab\xe3\xde\x33\xc1\x99\x2d\x2d\xab\x55\xa7\xe0\x4c\x7d\x41\x83\x39\x50\x88\x19\x7c\x47\x32\x3b\xb2\xb2\x45\x0e\x1f\x07\x55\xfd\x32\x0d\x15\x71\x5f\x95\x80\xf2\xc0\x1f\xe5\xc9\xcb\xd7\x57\xf0\x46\xa1\x19\x83\xf7\x80\xb9\xdc\xb0\x9d\xee\xcc\xd5\x69\x17\x7a\x00\x31\xd3\xde\xd7\x92\xa8\xe5\x38\x11\x67\xcd\xf8\xee\xc3\x8c\x8b\xf2\xd0\x75\x29\x91\xa5\x69\xeb\x5d\x17\xea\xd2\xad\x78\xf8\xa2\xb0\x11\x7d\xbc\xd4\xe1\x0a\x1b\x60\x3a\x34\x7d\xe3\xcd\xa0\xe0\xdd\x6c\x77\x93\xb1\x4e\x16\x1b\xd8\xee\xc6\x27\x04\x3b\x3d\x65\x54\x11\xb0\xb3\x52\xb8\x00\x66\xff\xfd\xff\xfc\xdf\xc7\x27\xdc\xf1\x93\xbe\xdd\xd0\x97\x0a\x52\x09\x8c\xcd\x48\x6e\xc8\x20\x56\x49\x03\xc8\xdc\x54\x3b\x71\xd5\x5e\xa0\x66\xd7\x44\x7a\xfe\x2f\x89\x4c\x87\xa3\x16\x10\x1d\xfc\xb7\x39\x83\xb6\xc0\x9f\xb0\x53\xf4\xb7\x7b\x71\xb2\xa7\x37\x9f\x77\xbf\x21\x09\xfc\x5a\x6d\x20\x7e\x91\xaf\xc4\x7e\xff\x05\xbf\xf6\x6c\x9b\x2c\x06\x17\xfc\x91\xe8\x2f\xbe\xa4\x49\xd4\x95\x98\xd9\x6b\xc2\xc7\x1f\xa5\x0d\x3a\xfa\x84\xbc\xf0\xb7\x3d\x8f\x52\x4e\xed\x4f\xd3\x3f\xf1\xaf\x14\x5e\xa4\x3a\x14\x66\x31\x8e\x5f\x80\x02\x07\x4c\x27\xb4\xb5\x05\x0f\x55\x8b\x77\xcf\x5f\xf2\x78\x3f\xba\x31\x03\x3e\x03\x64\x07\x99\x64\xb7\x67\xb3\x1f\xa6\x21\x6b\xed\x82\x52\xe0\x6d\xc4\x89\x2c\x3d\x04\x35\xb8\x1b\xbc\xa8\x0e\x34\x4f\xdd\x15\x6f\xb1\xc9\x6d\x17\x59\x5e\x07\xc5\xa6\xc8\xf3\x9c\x86\xac\x22\x70\x92\x38\xce\xa7\x1c\xaf\x6f\x4b\x48\xf6\xf4\x47\xf3\xe0\x1f\xd9\xe7\xb8\xf6\x11\x20\x5a\x01\xff\x29\xbd\xa2\x14\x85\x28\xc3\xac\x44\x41\x91\x3f\xf4\x62\x66\x9f\xe7\xb1\xaf\xf3\x26\x9f\x97\x48\x7e\x83\x0f\x5a\x97\xc4\xc8\x7b\xc2\x3d\x14\x52\xee\x47\xc2\x83\xaf\x7a\xa1\x71\x7c\x25\xea\x44\x20\x17\x7e\xf2\x99\xe0\x3a\xa5\xcd\xd9\xa2\xf6\x5d\x7e\x2d\x3f\x09\x31\xea\x0c\xfd\x4a\xbe\x24\x19\xf6\xd9\x02\x0a\xf3\x6c\x07\x0f\x51\x4d\x17\xda\x85\x7d\x27\xd6\x81\xd9\xb8\x23\x96\x33\xf0\xc5\x4e\x17\x83\xfc\xa5\x1c\x38\x5f\xf0\x71\xd3\xd2\x72\x30\xe9\xd4\x4c\xcc\x5c\xfa\x96\x56\xab\xdc\x39\x9c\xc9\x97\xcb\x29\xc4\x66\xf3\x14\x5b\x9c\xa6\x99\xbd\xfc\x39\xff\x75\xa9\x44\x89\xba\x30\xe9\xaf\xb3\x3d\x97\x50\x05\x7c\xd2\x14\xe7\x6f\x9f\x3c\x1b\xce\x45\x90\x55\xb3\xbc\x30\xc7\xe5\x0e\x2d\x2a\xe4\x87\xd9\x0b\xc2\x7f\x9b\xb9\xf2\x27\xfc\x33\xdd\x8c\x6a\x71\x93\x1b\xce\xed\xa0\x99\x10\x86\x9a\x9a\x04\x93\xe6\x42\x48\x69\x71\x3b\x05\x4c\xa7\x8b\x3a\x82\x3d\xa7\x84\x90\xb4\xa2\x8a\x59\x2e\x1e\xd4\x0c\x51\x79\x1a\x9e\xf6\x3f\xf6\x4f\xc2\x61\x41\x3f\xc7\xfd\x0c\x80\xa4\x9b\xf9\x04\x28\xeb\x6c\x3c\x1c\x0d\x7c\x08\xa4\x6a\x45\xc7\x69\x86\xb3\xe7\xe7\x87\xa6\x76\x38\x41\x92\x99\x91\x60\xb4\x28\x9d\x77\x05\x80\x20\x5a\x70\xd8\x80\xa8\x19\x57\x99\x36\x16\xd5\x07\x84\xf6\xf9\x9c\xb2\xef\x17\xc0\xa6\x2b\xcc\xb8\xf2\x59\x82\x3a\xcb\xa4\xc5\xc5\xc6\xa7\x56\x73\x54\x65\x98\x47\x52\x50\x26\x72\x9d\x20\xc2\xc9\x78\x9b\x89\x12\xb7\x52\xd4\x10\xe6\x60\xcd\x23\xba\xd1\x92\xb7\x4c\xaf\x87\x60\x47\xfb\xc3\x55\x1f\x28\xa7\x62\x18\x84\xaf\x71\xce\x8c\x7d\x70\x1c\xff\x3c\x86\xe5\x07\x78\xe8\x14\x68\xa7\xe1\x43\x68\xf7\x66\xb1\xc1\x75\xb5\x50\x05\xce\x54\x21\x99\xe5\x22\x9b\xdf\x68\x19\x99\x67\xf8\x36\x1e\x28\xb2\x65\xe3\x11\xec\xeb\x5a\xe4\xcc\x25\x4c\x14\xe9\xd4\x37\x9a\x9d\x93\xc7\x39\x33\xde\x82\x60\x5c\xc2\xbc\xa9\x9b\x04\x61\x2a\x05\xc8\x39\x3e\xa6\x40\x44\xad\xa9\x8a\x09\xde\x05\xc4\x0b\xc0\x2e\x42\x27\x1b\x66\x8b\x19\x57\xe2\x0d\xec\x67\xda\x2f\x28\xc7\xc6\xa8\xcc\x57\x45\x8b\x7d\xd6\xc0\x40\x14\x3f\x6f\x69\xc7\x17\x90\x86\x46\x25\x78\x25\x61\x16\x08\x44\xbe\xd3\xfb\xef\xbf\xfd\xd0\xf1\x34\xf8\x0b\x82\xf7\xdf\x7d\x20\x41\xe9\xfe\xfb\xef\x3f\xe0\x66\x60\x54\x38\x5b\xb2\x62\x6c\x5c\x03\x0a\x1a\xf4\xae\x2d\x3f\x55\xcd\xbe\x13\x51\x10\x9f\x9e\x3f\x7c\x96\xa9\xf8\xdc\xc7\x4b\xdc\xf9\x68\x0f\x56\x78\xe1\xb2\xe2\x15\x5e\xef\xb7\x99\x8e\xb1\x13\x0e\x60\xbf\x5c\x71\xc3\x40\x96\x73\x93\xbf\xba\xdf\x3c\xdc\xaa\xe0\xc1\x52\xe7\x4d\x3e\xfc\x83\xfc\x7a\x86\x81\xf0\xd0\x7f\x75\x2d\x35\xc1\x9d\xc2\x95\xb8\x99\xb3\x68\xee\x6e\x37\x6e\xca\x7e\x16\x73\x25\x0b\x79\x82\x2e\xc7\x59\xda\x0b\x0f\xa2\xf3\x06\x13\xdc\x10\xbc\x2d\x81\x18\x83\x7b\x87\x9f\x83\xcc\xdb\x2a\x6b\xa3\x02\xca\x6a\x3d\x95\x28\xe8\x00\xd7\x8a\x29\xd9\x86\xbe\x0e\x4d\xd2\x9e\xab\xc3\x7e\x7e\x65\x2d\x22\x4f\x90\xa8\xba\x74\xf5\x2c\x09\xe3\xf5\x02\xfa\x67\xa8\xe8\x79\xa8\x6a\x82\x29\xd0\x5f\xd9\xc4\xae\xd1\x80\x4d\x17\xf8\xb0\x64\x51\xf8\xa8\x7d\xbd\xa3\xcd\x48\x39\xa6\x89\xe6\x4d\x45\x07\x01\x3a\x63\x81\x63\x9b\x07\x15\xdf\xd2\x70\x52\x04\x5a\xd5\x99\x99\xe9\xeb\x59\x81\x98\x25\x9b\x96\xc9\x88\x88\x8c\xd8\x69\x54\xf5\xad\x07\x1d\xdc\xa2\x4b\x3c\x73\x98\x93\x2b\x5c\x9e\xc8\x70\xb5\x96\x05\x14\x1a\x3f\xd3\x1f\x87\xd7\x81\xb9\x8c\xf5\x8f\x5b\xa1\xee\xd3\x1f\x4b\x92\x7d\xd1\x16\x9d\xdf\xb7\xe3\xfc\x45\xb3\x69\xfc\xbe\x8e\x5f\x43\x00\xd1\x7f\xde\x2f\x06\xb2\x99\x64\x7b\xda\xd6\xd5\xcb\x09\x83\x9d\x47\x20\x27\x06\x23\x19\x03\x63\xb0\x38\xd3\xf9\x8d\x48\x07\xe1\x3d\x62\x81\x09\xc6\xb5\xa8\x49\x15\x40\x9d\x02\x76\x12\x6c\x4a\xd3\x2e\x52\x46\xa8\x59\x67\x99\x3d\x34\x49\xe0\xbb\xe5\x40\xd9\xae\x35\x1f\xd6\xad\x4f\x37\xed\x8f\xde\xd2\xd3\x3b\x2e\xf1\xe4\x10\xc4\x2b\x6a\x97\x13\xe9\x89\x8d\x8a\x9e\x25\x38\x45\x4d\x73\xba\x69\x38\x1b\xa8\x01\xf7\xd7\x4d\xea\x4e\x61\x88\x26\xc6\x1b\x41\x9e\x72\x61\xf3\x98\x03\xf9\x6b\xf9\xd9\xa0\x5a\x78\x3d\x3f\x85\x35\xdc\xb0\x41\x6d\xe1\x69\xaa\x5f\x9a\xaf\x5b\x9c\x3b\x38\xbe\xc0\x6f\xed\x84\xc2\x10\x6f\x6e\xcb\x6e\xbf\xc1\x1e\x80\xcb\x47\xf9\xb1\x94\x6b\x33\x03\x42\x40\x26\x51\x39\x58\x5b\x01\x23\x97\x70\x4d\x6a\x0d\xc1\xb9\xf3\x72\x91\xc3\xf0\x15\x0e\x53\x35\x6b\x1a\xf2\x22\x18\x3d\x81\x70\x78\x09\xab\x9f\x2d\x89\xc3\x20\x5b\xcc\xb6\x5c\xf5\xa6\x59\x19\x60\x6a\x5e\xf6\xd7\x3c\x75\x62\x9d\xc0\xc8\x15\xb5\x45\xf7\x43\xb8\x19\x13\x07\x7b\x82\x36\x9e\xf0\x8e\x5c\x28\x37\xfb\x03\x7e\x08\x4f\x53\x54\x0e\xe4\xf5\xf0\xd8\xab\x20\x58\xd0\x36\xa9\x4c\x71\x50\x5e\x6f\x4b\x6a\x14\xbb\x78\x61\x47\x48\xe1\xad\x3f\xb2\x7b\x9b\x31\x4f\x7c\x13\x11\xb3\xf5\x81\xa6\x7f\xef\xd2\xb5\x7e\xd4\xa4\x9b\xb5\x35\x23\x69\xff\x58\xf5\x54\xfa\x3f\x7f\x30\x1a\x25\x69\x3f\x0b\xd9\x25\xe8\xd3\xff\x8c\xa0\x86\x27\x67\x9f\x27\xfa\x5b\x10\x54\x69\x96\x89\x85\xe6\xeb\xc6\x4a\xa4\x22\xa8\x71\xce\x07\x92\xa1\x57\x6b\xe1\x4c\x52\xaf\xe9\x14\xcf\x6b\x5d\xb1\xe9\x6e\x98\x66\x11\x6a\x20\xc5\xb6\xbe\x25\xa6\x1a\x97\x73\x35\xaa\xd6\x2d\x6e\x85\x89\xd7\xb6\x54\xc1\xe1\xa8\x68\x7d\xd8\xbd\x22\xfd\x72\x37\x08\xd3\x75\x29\x6c\xb1\xf7\xc6\xe2\x8c\x45\x2a\x04\xa5\x56\xc0\xb2\xac\xef\x55\x97\xc1\xa0\x48\x0c\x92\xaf\xd4\x4a\x68\x53\x2d\xfa\xd4\xa5\x53\x73\x6a\x32\x0e\xb3\x92\x95\x44\xaf\x71\xf6\xe1\xb4\x1f\x76\x6b\x84\xc3\x60\x80\x25\x9d\x18\xb7\x0d\x04\x35\xc7\x22\xf2\x3a\x83\x22\x1e\x43\x0d\x63\x64\xb0\xaa\xd5\x90\xcb\x10\x8f\x07\x18\x16\x8d\xd7\x60\xb8\x41\xb5\xd0\x71\x1f\xaa\xf9\x41\x7f\x7b\xdd\xc6\x05\xc4\x95\x83\x17\xbd\x0d\xbd\x73\xcb\xd7\xd4\x1f\x07\x9b\x9c\x0a\x9b\x16\xea\xd6\x68\x1e\x1a\x89\xb0\x00\x4b\x9d\xaa\x8f\x88\x66\xc8\x56\x40\x40\x53\xab\x1b\x44\xbb\xaf\x75\x11\xa2\x14\xd4\x7b\x4c\xe6\xbf\x8e\xc7\xab\xc4\x7c\x68\xac\x21\xdb\xaa\x65\x67\x8e\xe8\xe9\xe1\x1f\xee\x17\x8f\x64\x21\xc3\x4a\x67\x74\x53\xc2\x89\x82\xce\x70\x17\xe4\x31\x57\x1d\xfc\xa5\x99\x6c\x78\xb3\x60\x20\xfa\x9e\xfd\x9a\x04\xca\xb8\x40\x6d\xe4\x8f\xd9\x41\xf6\x84\x4e\x20\xc8\x9d\xd6\x0b\x0c\x01\x0a\xaf\x6d\xb9\xdf\x45\x6d\x37\x19\x2d\x8f\x4c\x0f\x6d\xb4\xa5\xf0\x62\xc1\xaf\x61\x17\xec\xb4\x32\xac\xda\xc9\xfd\xf1\x88\x68\xfb\x9e\xf3\x3e\x22\x5e\xc0\xc2\xa7\x03\x05\x24\x91\x80\x7a\x7e\xe8\x6d\xb4\xca\x00\x51\xf5\x03\x36\x3f\x89\x1d\x93\xdc\xe0\xaa\x1a\x66\x4c\x5c\xd8\x85\xb9\x7e\xd0\xa7\x34\x62\x56\xf9\xa5\x0f\x2d\x84\xd6\xa3\x78\x90\xa5\x98\x3d\xf3\xdf\x30\xc3\x45\x3c\xd1\xaa\x32\x99\x7a\xad\x11\x95\x6b\x8a\x8f\x04\x72\xe4\x1c\x3d\x1f\xdc\xd0\xbf\xc7\xdb\xed\xe3\xa2\x78\x30\x31\xea\x40\xfa\x71\xc3\x1e\xd8\x6e\xa9\xa2\x61\xc0\x2a\x83\x9a\x02\x51\x72\x1a\x77\x0c\x10\xcd\xd3\x2f\x2c\x05\x94\x7c\x15\x96\x16\x1e\x6f\x42\xba\x7e\xee\x3a\xde\x02\x1a\x62\x78\xde\x1e\x84\x59\x85\x38\x04\x86\x23\x19\x08\xe1\x41\xd6\xc0\xcf\xf9\xd6\xee\xb9\x0b\x18\x95\xe8\x88\x7d\x6f\x0f\xa0\x44\xc2\xde\x1d\x44\x48\x20\xfc\x7a\xa4\x3a\x01\x78\x02\x70\x4a\xfc\xf5\x6d\xff\x33\x45\xe0\xa9\xc6\xa7\x48\xe0\x2e\x21\x78\x2a\xc4\xaa\xa5\xcd\x84\xbe\xe1\x67\x22\x5f\x3e\x2b\x08\xdb\xa2\x72\x46\xf0\xdb\x83\xad\x9b\xe6\xa3\x84\xae\x99\xe3\xd3\xe7\xac\x38\x64\xa3\x64\x72\x70\xc2\x57\x71\x2e\x89\x96\xd5\x22\x0c\xe5\xfa\x9c\x13\x26\xba\x58\xf0\x1c\xb7\xd9\xdf\x45\xed\x78\x8a\x5f\xe9\xff\x62\xc2\x70\x20\xea\x24\x72\x6e\xa1\x8a\xd8\x7e\xc1\xe7\xaa\x79\x7f\xd0\x94\x7a\x23\x8c\xdb\x52\xfb\x77\x66\xe7\x5f\xe6\xc2\x31\xe5\xba\x11\xfb\x93\xce\x7c\xed\xce\x23\x8d\x6f\x7d\xf4\xf3\xdc\x9c\xda\xc6\x60\xee\xce\xd5\x3b\xb2\xc5\xb7\x4e\x6c\x7d\x56\x8b\xdd\x3a\x9c\xd9\xd8\xe9\xad\xc1\x86\x15\x7a\xd0\x11\xdd\xb9\x68\x88\x7a\xa8\xc6\x41\x1f\xb6\x5c\x5d\xd0\x3d\x84\x01\x86\x3b\x2b\x4b\x66\x9d\xdc\xb0\xab\x5b\x9e\x38\x77\x88\x32\x20\x77\x07\xf4\x0e\x06\x05\x13\x5b\x1f\xd4\xdc\x2e\x8c\x8c\x78\x87\x58\x57\x91\x17\x4c\xef\xc0\xa3\x09\x98\x0e\x2e\xad\x07\x80\x86\x94\x73\xe2\x1f\x62\x6c\x28\xc5\xf2\xc8\x23\xb0\x0f\x94\x54\x62\x20\xc4\x77\x71\xae\x47\xcc\x9e\xca\xb6\x87\x2f\xde\x18\xed\xec\x1b\x40\x0b\x28\xfb\x96\x9a\x79\x0c\x59\x49\xe2\x37\x62\x10\xb2\xfe\xaa\x65\x80\x0f\xd8\x4c\xb2\x0d\xe4\xa7\xaa\xd8\x13\xf5\xf1\x5c\xdc\x56\xef\x77\x71\xbd\xb4\xe2\x71\x57\x7e\xb0\xee\xc1\x7c\x42\x88\x70\xc1\x7d\xe1\x8c\xb9\xf4\x3e\xc6\xdd\x54\xcb\xcc\x84\x9c\x42\x43\x71\x00\x5f\xe1\xd4\x3b\xdb\x85\xac\x4a\xf8\x10\xac\xb6\xc4\xb0\xda\xc4\xa4\x1f\xd2\xd1\x7c\xc4\xd8\x12\x07\x4e\x27\x55\xdd\x69\x37\x36\x22\x84\x01\x96\x06\xf5\x01\x61\x81\x75\x97\xcd\x3e\x0f\x9f\x83\xc2\x69\xe0\x61\x3b\x03\x84\x24\x21\x81\x07\x10\x07\x99\x8d\x0b\xe8\xa8\x70\xa4\x3c\xf8\xc8\x29\x4e\xc5\x6d\x2d\x30\x04\xf4\x3c\xb0\x89\x30\x3b\xe8\x2b\x8c\x0d\x04\x01\xaf\x47\x4d\x7b\x6f\xba\x23\x6f\xc4\xe4\xac\x3b\x58\xee\x64\x7b\xb1\xba\x28\x77\x1c\x95\x92\x75\x97\x4b\xd9\x6d\x85\xe7\xdf\xd1\xea\x77\xb7\xb5\x2a\xb6\x57\x53\xcd\x9a\x15\xa2\xba\xa7\x63\xd1\x72\x28\xe9\x3b\x5a\xfb\xde\x5a\x0b\xb7\xac\x8f\x65\xb9\x0b\x9a\x88\xbb\x1f\x78\x65\x80\x79\xc6\xc6\x55\x13\x1c\x4d\x1d\x0f\xcd\x53\xf9\x00\x13\x8f\xa2\xaa\xf8\xeb\x7f\xdd\xcd\xee\x70\xd2\x1a\x2f\x10\xd3\x72\x22\xfe\x39\x34\x9d\x0e\x86\xb5\x3c\x59\xc0\xb9\x61\x17\x6b\x2c\x79\xa2\x2a\xb1\xb7\x1d\x58\x14\x79\xd7\x65\xd7\x35\x2b\xd0\x1e\xee\x5e\x6c\x52\x99\x4e\x98\x52\x3a\x50\xb6\x57\x0f\x89\x35\x15\x2f\x05\x1e\xcf\x49\x90\x7c\xb8\xc0\xc0\x37\x20\xaa\x2b\xf6\x0d\x08\x3a\x28\x54\x74\xa8\x9e\x93\xc9\x3a\x94\xf2\xc2\xa9\xe5\x08\x05\x15\x7c\xd1\x33\x8d\xfa\xa5\xb1\xfb\x87\xce\xe0\x9a\x7b\xbd\x6e\x82\x20\x2f\xe2\xb0\x80\xbd\x28\xec\xc8\x2c\x1e\xeb\xb5\x88\x27\x8a\x17\x15\x56\x06\x52\x8c\xed\x2d\x26\xca\xe0\xc8\xbb\xdd\xd3\xd6\xb9\xa9\x3e\x42\x19\x46\x84\x29\x61\x80\xcf\x2f\xaf\xa0\x01\xa3\x05\x40\xfb\xe8\x8a\xf9\x6e\xfa\x97\x75\x59\x23\x32\x25\x47\xe3\x55\x46\xb4\x58\xb0\x9f\x51\x55\x6b\xd8\xbe\xeb\xd2\xac\xbf\xeb\x62\x23\x6c\x2b\xf4\x44\x33\xe9\x41\x34\x61\x29\x22\xee\xf2\x4a\xeb\x76\xe5\x82\x64\xe2\x19\xdf\x6c\xb5\x35\x9e\x31\x70\xc1\xd5\x6f\xb5\xf7\x71\x23\x81\xe1\x0d\x2b\xcc\x02\xb4\x28\x4a\x42\x05\xb0\xee\xc1\x23\xf4\x0c\x41\xa7\xa4\x60\xc3\xf0\x6d\x32\x30\xf8\xab\x18\x1d\x57\xcc\xae\x53\x35\x17\xb9\xcd\x97\xe3\x60\x1f\xc2\xb0\x89\xd2\xf4\x1d\xa2\xf0\xb0\xaa\x99\xd7\x2b\x98\x32\x61\x02\xa4\xdb\x35\x62\x92\xf9\x4e\x3f\xc7\x40\x72\x5a\xe2\x9e\xbc\x92\xaf\x31\xc8\x4e\x03\x20\xb9\x50\x48\x63\x90\x79\x53\xf0\xf9\xe7\x39\xfd\x19\x0b\xd1\x2e\x66\xbe\x49\xd2\x20\xce\x1d\x3b\xd1\xcb\x45\x32\x67\x10\xba\xcb\xcd\x52\x02\x22\xb0\xe6\x08\xc7\x3d\x51\xf6\xb1\xf1\xb1\x84\xfb\x64\xbb\x31\x54\xa0\x2e\x71\xf0\xf6\x40\xac\xb3\x50\x93\xa7\xee\xb3\xa1\x3f\xe4\xb0\x4f\xb8\x98\xb0\x7e\xbd\x16\x19\x04\xd3\x80\xc3\xad\x04\xa6\x3b\xe2\xad\x85\xcf\x85\x76\x55\x68\x1b\xd0\x4e\x82\xd1\xb1\x23\x13\x11\x35\x62\x8c\x18\x88\xc8\xb0\x62\x6a\x15\xd8\x01\x5b\x80\x6e\x10\x1b\x10\x36\xee\x91\xda\x6d\x33\x82\xc4\x62\x7b\x04\xe1\x2f\x32\x01\x64\x1e\x52\xc3\x7d\x46\xc1\xfd\x59\xe1\x55\xb4\x1e\x02\x8e\x12\x3d\x66\x80\x8e\x6a\x88\x39\xd1\xe4\x32\xa7\x30\x45\x6e\xa0\x30\x65\x5c\xb1\xb9\x64\xb0\xba\x79\x9b\x26\xe1\x48\xa4\xe8\xb6\x5c\xe5\x6d\x61\x91\x57\x94\xd3\xb0\xf7\x09\x38\x4a\xe8\x68\x9b\x6f\xe8\xf0\xad\x55\x10\x67\x24\x90\x8f\x6c\xf9\x44\xf3\xcd\x32\x8e\xe9\x1b\x58\x5a\x2c\x84\x8d\xb1\xaf\x1f\x31\x97\xfd\x8e\xf9\x8d\x30\x2f\x6b\x07\x43\x7e\xf8\xc7\xcb\xf3\xb7\x47\xe9\xe7\xc7\xd7\xd7\xd7\x8f\xb9\xf8\xe3\x7d\xbb\x61\xaf\xb8\x82\x23\xbb\xfc\xcf\xb3\x37\x47\x69\xd9\x2f\x1e\xcd\xe8\xa0\xde\xc6\xea\x2d\xb5\x0b\xc5\xd5\x03\x53\x17\x8b\x8e\xbf\x9f\x3d\xe9\x8a\xd1\x40\xe9\x61\x00\xb1\x70\x83\xe4\xd9\x33\xfb\x0e\x9d\x4c\xb1\xf3\xf0\x87\xc3\x72\xd1\x96\x30\x8f\xc0\x47\x90\xb1\xa1\x33\xc1\x94\x47\xff\x10\xa4\xa2\x76\xb4\x1b\xaf\x17\x1a\xa8\x7d\x00\x62\xb7\x81\x27\xb8\x07\x74\x99\x98\x38\xb7\xad\x70\x88\xba\x6e\xdd\xec\x37\x45\xcc\x31\x09\x67\x3a\x11\x65\xf1\xd3\xb0\x30\xcc\x17\x11\x69\xf9\x69\xfa\x47\xd6\x14\xf1\x44\x09\x6d\x71\x96\xd1\x16\x80\x67\xc3\xc2\x88\x19\x18\x08\xc6\x34\x00\x89\x85\x68\x82\xb9\xcf\x73\xc2\xf9\xa8\x12\x3d\xbf\xb1\x5d\x45\x9f\x6e\xdd\x79\x0e\xb4\x26\xd5\x8d\x8b\xc4\x7a\xba\xe9\x6c\xc3\x8b\xd8\x33\x4a\xb4\xf7\x7c\x65\x4a\xac\x29\x3c\xa4\x62\xbb\x39\x89\xa2\x80\x3f\x02\x94\xb9\x48\x68\x4c\xea\xd7\x2e\x18\x53\xaa\x41\x32\xcb\x61\x46\x10\x05\xa1\xec\xe1\x7f\x3e\xb5\x16\xe5\x44\xed\x66\xcd\xaf\x1e\xe3\x6f\xba\xc3\x89\x64\x22\x2e\x3b\x11\xf7\x00\xeb\x88\x65\xae\xeb\xe1\x2e\x36\x14\xb7\x94\x37\x79\x51\x46\x79\xd3\x68\xbb\x56\xc0\x41\x1b\xa3\x5d\x52\xa5\xe3\xb1\xcc\xef\x5b\x38\x24\x10\x88\x15\x4f\xa6\xa3\xb4\x40\x30\xf0\x7b\x3c\x75\x69\xb1\x78\x65\xab\x14\x7c\x37\x5e\xa2\x8c\x10\x59\x47\x21\x47\x65\x41\x2d\xbe\xf3\x67\x10\xb8\xeb\xb2\x9b\x80\x99\xd4\x8f\x9c\x95\x43\x11\x5a\x6a\x35\xc7\x33\x71\x90\x1b\x64\x0e\x5f\xa6\x18\xae\x6c\x92\xd5\xe4\x6d\xa3\x13\xf9\x0a\xb1\xb5\xdb\x34\x37\xe6\xcf\x7d\x8a\x5f\x1a\xf0\x25\x1c\x99\x07\xd3\x41\x79\xc8\x40\xf9\xd2\x64\x71\x75\x7f\x0d\x02\x9c\xaa\x88\x5b\xf3\x79\x17\x45\x09\x26\x3c\xc6\x44\x0a\xef\x89\xee\x4d\xb8\x04\x3b\xa8\xa1\xf3\xf2\xa9\x6b\xe1\x80\xf3\x72\x5c\x34\x74\x60\x0e\x8a\x7e\x81\x03\x73\x8c\xa4\xb1\x7b\xb2\x1f\xea\x17\x78\x28\x4f\x0d\x7a\x2c\xd7\x4e\x21\x7e\xa2\xc0\x94\x74\x5b\x84\x63\xfb\x02\x4f\xe5\xc1\xc9\xf6\x4b\x04\xdc\xa9\x9e\x78\x94\x04\xc8\xbd\x4b\xe3\x5b\x54\xcb\xe5\x6c\xde\x36\xd7\x1d\xbb\x03\xe3\x99\x07\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\xb8\xfc\x29\xe5\xc8\x9d\xeb\x5b\x3a\x89\x1d\x5b\xce\x4c\x8a\xd0\x46\x77\x9d\xf1\x17\x1c\x99\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\x61\x91\x20\x0c\x97\x1e\x42\x11\x84\x45\xff\xfc\xf5\x5b\xf9\x09\x0b\x75\x0d\x20\x04\x13\x75\xbe\x1c\x4f\xcc\xee\x7d\x36\x65\xff\x6e\x79\xe2\xa0\x20\x6a\x0e\x7b\x97\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\xf2\x2f\x68\x07\x2f\x95\x19\x04\xed\xd0\xce\x27\x99\x36\xeb\x5a\xdc\x22\x2d\x0f\xc7\x56\x0b\x62\x16\x95\xf1\xe1\x7f\x4d\x1b\xec\xdd\x2f\x28\x1f\xbb\xff\x22\xf4\xea\x60\x51\x80\xa3\x34\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\xe4\x01\x0c\xc8\xac\x82\xeb\x56\x03\x4f\xf1\xdf\x70\xc6\xf4\xc1\x8d\x0b\xf9\x1a\x35\x18\x1b\x7d\xa3\x34\xf4\x01\xc6\x4c\x5d\x01\x96\x66\x45\x24\x7b\x23\x5f\xf2\x9a\xdc\x90\x32\xc6\xde\xf9\x94\xf7\x78\x38\x6f\x01\xbc\x43\xf4\x5f\xca\x7f\xff\xdf\xff\x8f\xd5\xa5\x0d\xed\x96\x08\xa5\xa1\xd1\x28\xfd\xbc\x9b\x5f\x9b\x7f\x22\xe6\x31\x78\x74\xd0\x11\x41\x7f\xaa\xd1\x29\xe8\x6b\x44\xa3\xfc\x6a\x82\xd1\x37\x9b\xd1\x0d\x88\x1c\x87\x44\x4f\xe6\xb8\x7a\x1c\xd6\x61\x44\x95\xe9\x1e\xe1\xa2\xe1\xd9\xe4\x62\xd2\xd0\xf3\x5e\x89\x6e\x7a\x4b\x49\xde\x37\xed\xea\x83\x8f\x99\xea\x26\x22\x8a\x97\x8a\x93\x21\xc3\xb8\xa8\x63\x07\x00\x7d\x24\x32\x5f\xa3\xa1\xf7\x25\x13\xeb\xf8\x4d\x2f\x39\x97\x4b\xd0\x6a\x18\x89\x99\xab\xef\xcc\xdc\x99\x24\xe4\xa2\x5e\x60\x47\x8f\x2d\xc2\xcb\xc8\x54\x96\x26\xdd\x15\x89\xde\xac\xb2\x7f\x0c\x7f\x70\x54\x4c\x7e\x1e\x8e\xa9\x4a\xee\xc4\x5e\x23\x81\x96\x2b\x12\x10\xf1\x15\x7e\x41\xfc\x37\x41\x9c\x3d\xd5\xab\x71\xaa\x7e\x69\xfa\x20\x96\x5f\xf4\x24\x42\xe0\x7e\x85\x18\x9f\xd1\x3b\x07\x5c\x39\xb0\x32\x71\xa9\x3e\x8a\xfc\x0a\x14\x22\xf5\x36\xe8\xc8\x2d\xf7\xc1\x06\x17\x29\x1a\x38\x0a\xea\x69\x36\xd6\xaa\x45\xe4\x03\x25\x20\xee\x68\x1d\x59\x8f\x76\x33\xdf\x4c\xb0\x12\xd6\x72\xe3\xee\x8b\xe1\xb5\xa1\x39\xad\x89\x9f\x04\x9e\xaf\x14\xaa\xae\x0b\xf6\x7e\x94\xf1\xc9\xe9\x86\xe4\xfe\x4d\x74\x7a\x43\x45\x2c\xa1\xfd\x74\xc0\x27\x75\x1c\xa3\xf7\xeb\xbd\x52\xc7\x75\xdc\xee\x97\xfa\x7b\x2f\x7b\xa7\xe3\xef\x85\x2a\xaa\x41\x20\x3e\x97\x35\x15\x91\xef\xf7\x5c\xbd\xc6\xa0\x81\xe0\x13\xa1\xc0\xd5\xf4\xa5\x2a\x7e\xbd\xd1\x25\x4a\xfd\xc7\x2e\x74\xe3\xc8\xb4\xc3\x5e\x8f\x42\xc7\x45\x9d\xfe\xba\x10\x72\x07\x6f\x46\x23\x5e\x31\x3c\xb2\x8d\xe2\x40\x60\x80\xb7\x16\x89\xa3\x42\x84\x1d\x76\x4a\xba\xe0\xa6\x4d\xf5\xf6\x12\x0f\x42\x34\xcf\x77\x07\x85\x38\x70\x95\x71\x5b\x74\x88\x61\x2f\x99\xc7\x38\xdf\x88\xb0\x93\xb7\x96\x08\x77\xcd\xf8\x36\xfc\x1f\x89\x18\x31\x7d\x5d\xc0\x47\xba\x6b\xd3\x64\x61\x8f\x35\xfc\x79\xfd\x00\x1f\x09\x0c\x5f\x72\x66\xf0\x8c\xd6\x63\x6e\x8f\x67\xe9\xfa\x61\xa7\x39\xfa\x8d\x70\xed\x99\xde\x8e\x59\xb0\xa8\x41\xba\x67\x79\xb0\x4d\xd6\xfb\x3f\x0f\x24\xbf\x21\xbd\x4c\xe6\x0c\xcb\xc7\x6d\xc4\xae\x00\x96\xea\x6e\x6c\xce\xf0\xe1\xd2\x09\x6b\x8b\x12\x8e\xfc\x27\xf2\xe5\x72\xf4\xe8\xa4\xd1\xa5\x7d\x27\x24\x72\x30\xdc\x77\x82\x54\xdd\xed\x14\xd7\xec\x7f\x4c\x93\x72\xb3\xe3\x29\xcc\x53\xa7\xbc\xa3\x69\x12\x40\x95\x1e\xb5\x57\x10\x78\x7f\x18\xd6\x25\x8f\xc0\xe8\xae\xf9\xb6\xb9\x4e\x64\xcb\x9c\xc1\x23\x41\x22\xdd\x6a\x4a\xdc\x25\x49\x63\x91\x43\xc3\x10\xa5\x12\x6f\x41\x03\xd5\x8c\xf3\x07\xce\xfd\xd8\x31\x9c\x5b\xbf\x05\xae\x66\x79\x52\x7d\x5f\x6a\xb9\x31\x09\x89\x63\xa6\xb5\x42\x1e\xf5\xcd\x8a\x60\x19\xb5\x1b\x42\x7c\x49\xc3\x78\xf3\x77\xd8\xdc\x91\xa9\xab\x10\xd7\x50\xf5\x68\x12\xc0\x4d\x5a\xd1\x87\x5c\xad\x1f\xee\x2d\x35\xdf\x8f\x10\xe2\x4b\xfa\xc1\xad\xc0\xc6\x1b\x93\x78\x5b\x7f\xe8\xac\xa7\x61\x1a\xa3\x7b\xf9\x61\x17\xbd\x47\xfa\x55\xb0\x4f\xc3\x16\xa4\x18\xc8\x1d\xac\x1d\x1e\x6f\x98\x92\x23\x77\xb6\x13\xa2\x81\x98\xec\x4c\x46\x70\xba\x7b\x89\xc3\x98\x9e\x4b\x3a\xd0\xc0\x18\xc7\x83\x4d\xee\x3a\xd2\x2f\x2f\xca\x41\xb6\x3a\x53\x79\x4e\x32\xef\xde\x70\x05\xce\x62\x17\x89\x5c\x17\x6e\x19\x10\xec\x6c\x26\x0b\x89\xe2\xef\xd6\x38\xb3\xba\xa0\xd5\x71\x65\x8e\x55\x03\xca\xb1\xe8\x31\x9c\xf1\xce\x50\x2a\x0b\x74\xa7\xcc\x94\x8f\x4c\x56\x75\x96\x02\x80\xda\xe6\x37\x91\x2d\x0e\x4c\x87\xb7\xf1\xab\xb7\xb7\xa8\x5b\xc6\x5d\xf1\xbb\xb6\x84\xc6\x77\x04\x73\x50\xc7\x32\x0b\x97\xfa\x98\x40\x3c\xd9\xad\x5a\xf8\x19\xd8\x5c\x33\xb3\x08\x48\x01\x15\xfe\xe0\x46\xe9\x1e\x5b\xf4\xdc\x00\x97\xc1\x54\xd1\x83\xdb\x98\xc2\x57\x74\x00\x6c\xe3\xf6\x1e\x80\x2d\x88\x77\x19\x75\x23\x60\x01\xb7\x75\x44\x5f\x49\xfc\xf2\x8e\x80\x6f\x7c\x61\x47\x8e\xac\x17\x1a\x56\xba\x28\x26\xd7\xff\x6d\xfd\x1b\x1c\x73\x40\x9c\x51\xdc\xf2\x01\xc1\x47\xaf\xba\x3b\xa2\x0f\xac\xd2\xac\x5a\xd8\x3f\xa8\x95\x9c\x6e\x67\xbe\xaa\x9a\xa6\x10\x27\xd3\xba\x0f\x2d\xe9\xe2\xc8\x23\x6c\xc4\xd5\xb7\x37\x2a\x92\xf0\xe0\xe2\xc0\x27\xde\x80\x46\x0e\x5f\xb8\xd1\x95\x58\xf6\xef\x81\xf6\x0f\x89\x7b\xa8\x8f\x97\xb2\x7d\x27\xf2\x82\xa7\xdc\x6a\x21\x9a\xb8\x0f\x23\x9e\x0e\xc3\x8a\xdf\x1a\xd2\x3d\x0e\x65\x3f\x7c\xd3\xa0\x93\xc8\x5f\x2b\x93\xe5\xec\x79\xc4\x44\x0d\x87\x98\xb1\xde\x10\x0e\xb6\x78\x1b\x77\xc1\xd1\x7d\x9b\xba\x12\x13\x95\x33\xf9\xa2\xb1\x27\x18\x53\xb6\x93\x28\x0c\x78\xda\x5e\x22\x2e\x6a\x0a\x47\x5c\x4c\xfa\xa6\x87\x40\x71\xc5\x7f\x7f\x48\xef\x17\x89\x1f\x3a\x14\x89\xac\x4f\x52\x29\x41\xbe\x83\xfc\x20\xfe\x38\xcc\xd6\x5b\x8b\xa8\xee\x6b\x40\x37\xa1\xae\xdc\x07\xdd\xd6\x4e\xa2\xd2\x7d\x37\xd5\x62\xc6\x97\xa0\xa9\x5e\x01\xbb\x17\xd2\x99\x83\xf0\xa3\x65\x05\x3f\x5a\x26\xef\xa9\x1e\x05\x09\xd1\x84\x84\x19\x3b\x17\x06\x34\x4a\x8e\x77\x45\x9f\x8e\xb0\x2d\x71\x12\xc7\x6a\x89\x12\xf2\xc5\xa8\x15\x53\x56\x87\x69\x66\x0e\xe7\x53\xcc\x30\x2e\xaa\x3d\x0e\x05\x19\x66\x89\x35\x61\x94\xa4\xaf\x35\xc6\x23\x11\xfd\x69\x98\xb6\x69\x56\xfc\xec\x80\xbd\x06\x1c\x0c\x4f\x05\xeb\xb8\x4e\xb3\x8c\x8e\xaa\x80\x93\x65\x98\x82\x3b\xac\x3e\xef\xe2\xd2\x58\x9f\x61\x82\x3a\xa8\x8f\x00\xe9\xa0\x9d\x2f\xd6\xea\xa8\x33\x41\x48\x76\x5e\x76\xc4\x24\x87\xe6\x29\x48\x79\x51\x33\xb5\xf7\x33\x27\x61\xf8\xad\x74\x3c\x57\x1a\xe4\xb2\xa7\x01\xbb\xb5\x20\x5a\x66\xa3\xf1\xa6\xd8\xed\xc0\x45\xc6\x4c\xcf\xb1\x1c\xbb\x5b\x0b\x05\x5b\x1c\x87\x37\xd0\x68\x9c\x5a\x52\xc4\x91\x5b\xf6\x3a\x5f\xb3\xee\x9a\x6a\xdc\x11\xbc\xae\xd6\x79\x21\x22\x87\x1b\x94\x5e\xb2\x5a\xf6\x17\xd5\x31\xe8\xa5\x87\x70\xd5\x7c\x7d\x57\xa1\x52\xe3\xf8\x30\xd4\x9b\x41\x27\x23\x9e\x67\x20\x77\xd4\x30\xe8\xe2\x64\x15\x5f\xd1\x49\x7e\xe2\x77\xb5\x70\x0f\x93\x9e\x72\x14\xe6\x76\xce\x1c\x8f\x37\xb8\x72\x61\x1e\x5e\x91\x5a\x6e\xba\xf8\x6d\x3d\x43\x87\xf8\x40\x3e\x55\xfd\xa1\xbe\xb5\x65\x77\x53\x2f\x32\xbc\x4f\xdb\xad\xf5\x52\xf2\x5d\x29\x7a\xf1\x07\x33\x4a\x7b\x92\x6b\xcc\xb3\x12\xd7\x77\xdd\x03\x09\xd4\xff\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\x17\xf5\xbf\x60\x04\xc1\x85\x78\x38\x0c\x26\x03\x5d\xfd\xe0\x15\xe1\xbb\x32\x8c\xb8\x87\x6c\xdc\xc0\x71\xb5\xd9\x72\x43\x2d\xa2\x74\xb7\xb3\xf7\x87\xf5\x9a\xea\xc0\x80\xc2\x76\x6f\x99\xa1\x07\x51\x2f\xee\x1e\x63\xb8\x09\xc9\x1b\xf3\xfb\x1d\x5b\xef\xa6\xee\x71\xf9\x5f\xf0\x3b\x64\x0a\x12\xfa\x3f\x5b\x35\x6d\x43\xd3\x23\xc1\x76\xf4\x39\x80\x97\x96\xd6\x4d\x14\x80\x02\xfb\x26\xdb\x6b\x80\x24\x2b\x73\x86\x64\x12\x2e\x38\x5a\x92\x2f\x85\x2d\xda\xca\xb0\x5a\x72\xa1\xca\x6c\xec\xd9\x56\xea\xd8\x32\x82\x92\x5a\xa6\x99\xb3\x59\xbe\x3a\x8b\x02\xf8\x5c\x53\x02\x58\x5c\x69\x70\x04\x1b\x42\xd7\x7e\x97\xf1\x50\x11\x6a\x43\x92\xd3\x37\x48\x4e\xaf\x38\x79\xdc\x82\xf5\xca\x15\x1b\x74\xea\x50\x39\x8e\x6a\x30\x2c\xf3\x82\x83\x1f\x0c\xe1\x0d\x73\xeb\x32\xdf\x8d\xf0\xf6\x8a\x12\x47\x58\x03\xe4\x18\x01\x80\x3d\x8c\x85\xb0\x54\x55\xe0\xd4\x15\x96\x78\x4d\x49\x87\xa0\x71\xdb\x3f\x84\xaf\x59\x54\x3c\x50\x42\xf7\xec\x61\xaf\xf4\x7e\x66\xd4\xab\x66\xfe\xb7\x72\xd1\x77\x06\x7d\x2e\x3f\x03\xa8\x79\xd3\xf4\xfc\x98\xed\x8e\xc5\x2d\x58\x61\x09\x9a\x9e\x5b\x3a\x8b\x5b\x8b\x8f\x23\x4c\x09\xf4\x18\x55\x02\x7d\x18\x57\x5b\x8e\x91\x48\x6d\xb5\xfb\x45\xbf\xa7\x05\xea\x1a\x3c\xbb\xe4\xd8\x8a\x97\x2e\x63\xd4\xe2\xa8\x64\x48\xa1\xc3\xc2\x53\x2d\x2f\x48\x88\x28\x27\x9b\x3e\xe1\x9c\x5b\xdb\x1e\x95\x0d\x1b\x1f\x15\x9f\x5a\x29\x78\xdd\x86\x15\xea\xf3\xfd\xe2\x63\xd9\xb3\x6b\xcf\x3a\xc3\x6d\x72\x58\xd7\x85\x81\xa5\xcf\x01\x96\xbe\x22\xb0\xf4\x0a\x2a\x9a\x89\x5a\x69\xd3\xd9\x96\x7d\x0e\xab\x80\xa0\x96\x97\x27\x34\x03\x9c\x5c\xe4\x53\xa5\xa0\xba\xc9\x54\xca\xd6\x55\xc8\x82\x4f\x50\xc3\x39\xb4\x3b\x2a\x78\x1f\x3b\x90\xa9\xda\x38\x8e\x8e\xec\x7e\x8b\x9b\x85\x3c\xfa\xc2\x91\x75\xa8\x0f\xef\x24\x25\x80\xc5\x49\x82\x60\x8d\x47\xe2\x02\x1c\x41\xdc\x09\xfc\x2a\x66\x94\xc2\xc1\x3c\xb0\x30\x2e\x82\xbb\x60\xff\xe0\x29\xc0\x5d\x2e\x8b\xe9\x20\xa4\x35\x6f\x80\xd6\xf2\x10\x4e\x1b\xed\x04\x95\xc2\x56\xe4\x18\x27\x36\xf2\x1a\x02\x9d\x68\x0e\xf6\x48\x30\x91\xb7\x00\xe8\x9c\xa6\xb0\x77\xbe\x4d\xae\x60\x22\xbd\x42\x66\x95\x14\x93\xb7\xf0\x70\x9d\x7d\x5b\x5e\x14\x1c\x46\xd2\xa2\x87\xd2\x35\xcd\x5c\x50\x5d\x90\x2b\x4d\xd7\xd7\x8b\xf5\x4d\x5c\x18\xbd\xe3\x3d\x3f\xb6\x95\x7d\x17\xbe\x6c\xfd\x36\xb4\x87\xbf\x6a\x30\xca\x60\x60\xb1\x8d\x90\x0d\xf3\x6e\x37\xd8\x99\xd6\x11\x06\x53\xd1\x91\x41\x40\x36\x33\x99\xc1\x83\x7d\x6a\x2e\x23\x90\x12\xa0\x54\xee\xb9\x36\x61\x69\x9c\x5e\xec\x38\x30\xa8\xe1\x0d\x4e\x36\x01\x96\xc7\x2f\x22\x43\xbb\xcc\x07\x7b\xb1\x79\x86\x6e\x16\x36\x69\xfb\xda\xde\xd5\x31\x32\x38\xf4\x94\x95\x05\xcf\xfe\xc2\xd7\xac\x3c\x2e\x02\x4a\xc1\xd5\x7c\x4c\x23\x55\x97\x85\x44\x31\x8c\xbd\x9d\x0f\x88\x84\xc1\x95\x4e\x22\x50\xdc\xd5\x87\x6f\xc7\x07\x37\xab\x46\x38\xb8\xc3\x64\xbb\xeb\x4c\x4d\x0f\x47\x35\x04\x65\xa0\xd2\x13\xc2\x66\x83\x4f\x71\x3c\x9d\x42\x91\x57\x80\x1a\x86\xdc\xab\x60\x80\xbe\xf5\xf6\x2c\xc6\xc5\xf4\x63\x85\xff\x21\xef\x35\x86\x1d\xf0\xaf\x36\x1e\x68\xff\x9f\xf2\x6a\xe3\x50\xf9\xdc\xc5\x5d\x99\xb0\x4f\x3b\x1e\x3e\xdd\x70\xc0\x38\x8d\x9f\xb5\x9b\xc1\xd5\x27\xe6\x66\xd1\xdd\x5e\xc4\xd5\x50\x22\xe4\x56\x48\x88\xad\x1c\x90\xe4\x35\xe3\xa6\x14\x17\xc5\x16\x18\xd5\xb0\xbd\xc0\x3b\x2b\x6a\x4d\x4a\x8c\x63\xc2\xc7\x5d\x90\x94\xf1\x85\x9a\xa4\xab\x4e\x26\xd5\x60\xba\xa5\x2a\xd8\x66\x50\xcc\xe8\x2d\x96\xa5\x0d\x03\xb7\x42\xdf\xa6\x7c\x65\xd0\xe5\x01\x67\x89\xba\x2d\xa5\x24\x6e\x84\x79\x7e\x29\xf3\xd2\xac\xa0\xf7\x92\x12\x46\x45\x94\x14\x79\x13\x0d\x4f\xfd\xca\x97\xa6\x8f\x6d\x52\x82\x4e\x6a\x35\x83\xce\x05\xb5\x02\x6a\x9a\x39\x06\xbd\x19\x9a\xe1\x4a\x2a\x5c\xa0\xd8\x66\xb8\xeb\x35\x65\xa7\xcf\xc1\x73\xac\x43\x49\x81\x9e\xa3\x80\x31\x1f\xab\x35\x4e\xdf\x86\xe9\xc1\x33\x69\xc8\x75\x0f\xa4\x4d\xc0\x04\x16\x23\x79\xcb\xa1\x16\x7f\xd0\xb0\x34\xc1\x73\x69\xec\xae\x24\x8f\xaf\xec\x36\xdc\x5f\x0e\xc7\x8d\xdb\x06\x56\xd8\xf2\xf6\x9e\xe3\x85\x24\xdc\xbd\x12\x9b\x59\x89\x5d\xa8\xbc\xe8\xa1\xc8\xe4\xad\x5c\x83\x41\x61\x0b\xd7\x00\xb6\xcf\xd9\x22\x2a\x00\x29\xec\x75\x69\x3f\xa2\xbc\xef\xdb\x6a\xbe\xe7\x2b\x4c\x35\xd5\xe0\x45\x29\x76\x21\x2e\x6f\x04\xdb\xed\xcd\xc1\xe1\x52\xbf\x0e\xc3\x0e\x5e\x89\x1f\xc0\x49\x40\x2a\xeb\x96\x84\xa3\xb2\x2a\x70\x03\xe0\x00\xe4\x5e\x30\x82\xd8\xf2\xe6\x90\x75\x39\x2f\x4f\xe2\xad\x45\x7a\x79\xac\x39\xdd\xb6\xdf\x59\x30\xf5\xcb\xb3\xab\x8b\x5b\x68\x89\x41\x95\x26\x00\x19\x10\x06\x67\x29\x71\x20\x2b\xa0\x10\xb5\x8f\x51\x53\x6f\x3d\x81\xc3\xc2\x46\x88\xad\x9b\x86\xbb\x6d\x87\x96\x07\x6e\xf8\xad\x72\x0e\xab\xcf\x96\xd9\x52\x66\x96\x9e\xed\x37\x7d\xc5\x06\x5b\xd6\x9a\x1a\x0d\xf1\x53\xee\xe5\x2e\x6f\x2d\xf2\x27\x82\xe0\xa4\x0f\x8e\x1e\xcc\xa2\xd5\x97\xf5\xf2\x26\x9e\x3c\x4f\x78\xf5\xe6\x92\x3e\x17\xed\x8d\xdc\x59\xea\x48\x3f\x56\x3b\x06\xd3\x57\x8d\x79\xc0\x94\x02\xd8\x3f\x23\xc5\x96\x0a\x5f\x6e\x95\xed\xa7\x6a\xe1\x08\xe6\xe2\xf8\x0c\x2a\x02\x4a\x0a\x17\x9f\x36\x8d\xb0\x3d\x26\xa4\xf9\x4e\xd0\x74\x34\x91\x90\x66\x0c\x84\x9f\xf3\x65\xb3\xf3\x9d\x21\x30\x8c\x2f\x32\x94\xa4\xf4\xcd\x47\xc5\xf4\x48\xaa\x88\xa1\x03\xe1\xc2\xb3\xb6\xa1\xf0\x17\x17\xb9\xcb\x48\x7c\x16\x31\xb3\x70\xe7\x1a\x3c\xfe\xfb\x65\x66\x3a\x61\x65\x81\x94\x71\xdb\xa0\x27\x43\x1d\xc4\x25\x22\xc8\x4c\xf8\xab\xbd\x8f\x12\x57\xed\xdf\xc3\x19\x95\x88\x5e\x4a\x19\xe1\x75\xc2\xfc\xe5\x16\x93\x97\xa0\xf6\xc1\x7e\x1f\x57\x7c\xd7\xb6\x2f\x6a\x33\x53\x57\xb9\x2b\x23\x55\x57\xc5\x37\x47\x0a\x9b\xef\x76\x6e\xdb\x08\x9e\xc0\x01\xd9\x06\x20\x9f\x84\xe1\x04\x10\xb4\x08\xba\x41\x3d\xe2\xbd\x15\x02\xb1\x13\x97\x02\x0c\xb7\x1e\x4d\x6e\x96\x4b\x0e\x50\xc5\x91\x14\x35\xba\x08\xe2\x55\x9d\xb1\x39\xb4\x95\x14\x9f\xc4\x8c\xf5\x67\xd0\x47\xf1\x98\xec\xf5\xd4\x77\x48\xe4\x03\x80\x81\xb7\x7b\xf7\xec\xf4\xbb\x7d\x2d\x47\x9b\x20\x4b\x1b\xe2\xac\xb0\x11\x48\x2f\x6d\xd3\xf4\xf6\x60\x42\x20\xba\xbc\xa3\x64\xda\xd3\xfa\xb5\x43\x30\x5f\x4a\x2d\x32\x09\xcd\x1e\x94\xc1\x95\xd8\x02\x46\xed\xe3\x42\xd4\xef\x71\x09\xea\xf7\x01\x70\xb1\xa1\xb0\x8d\xff\x12\xbf\x84\x49\xbb\x1e\xb3\x45\xa6\x52\xa3\x0d\x58\xd2\x86\x74\x13\xe2\xa0\x98\x7b\xc2\x38\xb5\x6b\xb4\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\x72\x0d\x9b\x76\xdd\xe3\x90\xaa\x1c\xf6\xed\x5e\xca\xae\x7a\x8f\x82\x12\x8a\xcd\x10\x7f\x9a\x3a\xac\xa3\xfb\x6d\x53\xf5\xe5\xf7\xf7\x70\xcb\x7d\xaf\xaf\x8a\xf9\xbd\x47\xe1\xba\xa9\x60\x99\x1f\x2c\x9c\x6a\x71\x00\x3d\xee\x9c\x1d\x3d\xae\x99\x8a\x9b\x73\xd5\x96\xb6\xbf\x9f\x04\xef\x5d\x8e\x48\xda\x6f\x03\x8e\xa0\xc3\x2d\xc0\x3a\xc6\x6e\x1e\x6d\x90\x91\x91\xbc\xd0\xcb\x73\x80\x6c\x4b\xf9\xce\xaa\x79\x8e\x64\xdf\x43\x09\x07\x6b\xe1\x61\xd5\xaa\xde\xfa\x87\xe8\xae\xaf\x6b\x38\x62\x58\x11\x7b\xb2\x18\x2a\xb1\xd1\xeb\xc6\xd0\x85\xe9\xe3\xc6\x5a\x00\x63\x77\x9a\x86\x33\x1e\x70\xa8\x5c\x18\x0e\x18\x1e\x48\xd5\xdf\x4b\x09\xf7\x17\x0c\xfb\x8c\xce\xad\xdb\xfd\x16\x4f\x1b\x5e\x72\x74\x32\x3c\x4e\x39\xea\xd6\x8e\x24\xfd\x3c\xec\x11\x12\x1c\x13\x12\xe7\x42\xf6\xac\xc8\x36\x7a\x19\x25\x0e\x88\xf0\xaf\x48\xdf\xe0\xf6\xc9\x61\x87\x36\x21\x2f\x96\x46\x85\xde\x71\x9e\x13\x63\x27\x0a\x9b\x5f\xb2\x23\x15\xf3\xfb\x9b\x24\x95\xdf\xf6\xe5\x9e\x2a\x2f\xeb\x15\xc8\xf4\x4f\xfc\x93\xc4\x1d\xfe\xe9\x10\x24\x0e\x7d\xd0\x4d\xb1\x1b\xc1\x53\x73\xf1\x83\x8a\x8a\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\xc5\xaa\x1b\x02\x2e\x53\xa7\x47\x20\x90\x07\x07\x20\x04\xed\x8d\x28\x40\xc9\x93\x15\x29\xe9\x17\x44\x59\xe2\x4a\x23\x44\x2f\xbf\x63\xa0\xe0\x1d\x25\x81\xb2\x67\x94\x46\xad\xd6\x61\x9b\xb5\x5c\x0a\x7a\xae\x23\xd6\x3c\x01\xd7\x11\x6b\xf8\xc9\xee\x19\xf4\xae\x6d\x3e\x55\x85\x3e\x3b\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\xaf\x33\x4b\x09\x03\x5e\x2d\x1c\x62\x4c\xbd\xfb\xf2\xc4\xbf\x30\x05\x4d\xf0\x60\x30\x9b\x6a\x59\x3a\xbd\xb1\x8e\xe6\x0d\xa5\x45\xc0\xeb\xbe\xdf\x75\xe6\xa4\x8d\xf7\x90\xd2\x73\xfa\x31\x18\x44\x58\x95\x8e\x64\x54\xd3\xae\x82\x2e\x3f\xc0\x8b\x24\x4c\x63\xdc\xa0\x75\x77\x08\xc0\x75\x7b\x18\xf2\xb8\x55\xeb\x18\xa7\xad\x10\xff\xb0\xbb\x97\x05\x5c\xeb\x2c\x03\x4c\xb6\xcc\x50\xba\x4b\x32\x0c\x76\x49\x33\xec\x99\x2d\x5a\x09\x18\xc7\x7f\xae\xd8\xaa\xc2\xe5\x84\x6b\xcf\xd2\x3a\xa2\xbd\x62\x2f\x6e\x6e\xfa\xe9\xe1\x7d\xb0\x7c\x41\x93\x65\x4c\x04\xd8\x8f\x01\xca\xcf\xe5\x62\x1f\x5c\xf2\xfd\x2c\xbf\x55\xab\xee\xab\x69\xcc\x8e\x77\x5f\xe3\x71\x85\x0b\x49\x09\x60\xa6\xa2\x46\x5a\xd7\x61\x8d\x6c\x56\xc9\x07\xdb\x77\xcd\xe3\x30\xcb\x50\x66\x1c\x65\x36\x47\xf2\x33\xdb\x88\xd7\xd3\xc0\x5e\xca\x60\x43\x89\x27\x4c\x43\xe4\xa9\xc0\x36\xcd\xf2\x26\x3a\x6e\x59\xcd\x8e\x59\xd6\x6e\x16\xc0\xe2\xf8\x10\x3c\xc8\x2a\x7d\x90\xfc\xbb\xac\x21\x93\xf7\x62\x61\xf4\x61\xf0\x0c\x9c\x29\xe2\x03\x8b\xb7\xc8\xf3\xee\x7e\xa7\x3e\x77\x75\x10\x6c\x4e\x7e\x15\xa3\x47\x99\x2c\x32\xf2\xb7\x3e\x32\x72\xf4\x18\xf4\xf0\xe1\x06\x17\x48\x1f\xb5\xb2\x09\xa1\x3c\xd2\x11\xf4\xe0\x49\xd7\x2e\x9e\xdc\x0f\x63\xe4\xb3\xbe\x34\x0e\x3f\x1d\x55\x29\xa3\xb3\xc7\x06\x7e\xd5\x00\xff\xf2\x3b\xac\x57\x94\x7a\x52\x35\x47\xab\x76\x11\xf8\xb5\x86\x61\xb0\x6c\x43\x54\x14\x64\x36\xac\x50\x63\x60\x8f\xeb\x1b\xbc\x7f\x10\xbc\xf1\xd0\xd4\x5f\xd3\xb1\xc9\x68\xbb\xbf\x6a\xe8\xe5\xaf\xee\x96\x8b\x86\xa5\xd8\xb7\xdf\x03\x5a\x90\x19\x9d\x9e\x4e\x4f\x1e\x08\xef\xc0\x7e\x7f\x7e\x16\xe9\xc7\xed\xd3\x18\x53\xc6\x70\x1a\x35\xee\xfa\x77\x41\x90\x6c\xb8\xfc\x4a\x46\xd5\x69\x80\x53\x09\x4d\xfe\x9d\x7b\x5a\x2a\x79\xcf\xb1\x8a\x3f\x24\xf9\x8a\xc7\x44\xff\x27\x78\x60\x4e\xdc\x09\x40\xa3\xf4\x99\xc8\x4f\xfe\xfa\x96\x2b\xfe\x36\xed\x4a\x62\x9a\x88\xb2\xfb\xed\x16\x09\x5b\x3a\x5a\x13\x2b\xe2\x84\x35\x12\xf8\x65\x43\xfc\x2c\xf0\xb3\xc8\x6f\xf0\xeb\x1a\xbf\xae\xcb\xf2\xa3\x14\x06\x57\xa5\xe2\x74\x38\x5f\x23\xe5\x06\xbf\x6f\x38\x1a\xed\x7d\x76\xa5\xe2\x76\xf4\x35\x01\xfb\x81\xd8\xbe\xdc\x9c\xa6\xdb\x0f\x4a\x97\x37\xf0\x9f\xfa\xe7\xf0\xef\xf3\x0d\xfd\x8d\x26\xe1\x8b\x52\xb8\x79\x4d\x92\xcf\xfb\x60\x8d\xfd\xda\x2a\x94\x6f\x4a\xe5\x7e\x68\xa2\x7c\x52\x5a\x9b\x5f\x67\xbe\x5f\xfa\x85\x54\xdf\x2b\xfd\x22\xf4\x16\x6d\xb3\xe3\x38\x9f\x1f\xdc\x73\x91\xfe\x65\xae\x53\xca\xd3\x58\x46\x08\xee\xc8\xfe\xc2\xfc\x8e\x9e\xbc\x96\xcb\xde\xb4\xb3\xc4\xe2\xef\x56\xf5\x6e\xef\xce\xa7\x3e\xf8\xb3\x80\xf9\x80\x48\x62\x53\xce\xcf\xed\xc8\x5b\x64\x34\xbb\xd9\x1c\xfb\x1e\xce\xbd\x7c\x18\x78\xf8\xaf\xff\x0a\x70\xfa\xfc\xb7\x7f\x4b\xcf\x9e\x3f\x4a\xcb\xcf\x1c\xde\xad\x4b\xb7\xf9\x67\x9c\x0a\x14\x8a\x7e\xbe\x88\x00\xd9\x87\x16\xd6\xc1\x7a\x0d\xa5\x0f\x66\xe3\xee\xe9\xff\x07\x00\x00\xff\xff\x91\x7c\xe2\x3d\xdb\xad\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\x5e\xdb\x11\x72\x39\xba\x7b\x6f\xd1\xd1\x76\xaf\x2c\xb5\x2f\x73\x2c\x4b\x63\xa9\x67\x76\xd6\xe1\x60\xb3\x8a\xac\x2a\x8e\xab\xc8\x6a\x92\x65\x59\x73\xe2\x44\xec\x03\xec\x03\xec\xbe\xde\x79\x92\x05\x3e\x00\x79\x21\x59\x92\xdd\x33\x71\xfc\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\x91\xaf\xe4\x53\xd9\x76\x55\xc3\xb5\xff\x59\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\xbf\xd2\xcf\xf4\x42\x7e\x4a\x5e\x50\x08\x99\xae\x24\x8f\xa4\xcb\x96\x65\x59\xc8\x58\xba\xf4\x05\x7d\x27\xbb\xfd\x66\x43\x58\xfb\x6d\x5f\x76\x3d\x17\xba\xa0\xdf\x34\x7e\xf9\x9d\x54\x5d\x47\x1f\x94\xfc\x1a\x1f\x09\x4d\x5d\xbd\xc0\x60\x4e\xf0\x91\x24\xef\xbb\x32\x6f\x17\xeb\x0f\x89\xfc\x45\x5f\xf9\x83\x69\xef\xd0\xa4\x32\x21\x29\x11\x49\x0b\xd6\x40\xb2\x68\x0a\xfe\x71\x42\x7f\xa8\xea\xaa\xee\xfa\x7c\xb3\xf9\x90\xe8\x07\x83\xc9\x97\x4c\x40\x5f\xf5\xc0\x82\x26\xa6\x97\x7d\xb9\xeb\x78\x06\xd3\x17\x55\xdb\xf5\x8f\xfb\x8a\x88\xf5\xdd\xbe\x4e\x8a\x66\xf1\x91\x96\x01\x2f\x69\xb4\xfc\x7a\x99\x12\xb2\x1e\xd0\x42\x68\xf7\x75\x4d\xe8\x49\x5f\x36\x84\x32\x6a\xa6\xa2\xf6\x4f\x01\x7d\x94\xee\x36\x65\xde\x11\x48\x99\x17\xe9\x8f\x79\xda\xe7\xed\xaa\xec\x9f\xde\xcb\xe6\xb4\xfc\x3e\xde\x4b\xd7\x6d\xb9\x7c\x7a\xef\x7e\x77\xef\xd9\xcb\x3d\x15\xdb\x54\x75\xd9\xfd\xf8\x24\x7f\x96\x2e\x72\xca\x21\x34\xde\xa4\xf3\x72\xc9\xab\x8d\xda\x4a\x89\xca\xeb\x15\xaf\xb4\x9b\x7e\xcd\x0d\x12\x25\xd0\x47\x97\xf2\x52\xff\x26\xe1\x09\x20\x56\x90\x15\x73\x63\x6b\xe8\x10\x92\x5b\x9a\x80\xb3\x9b\xcb\x3f\xbd\x39\x4a\x2f\x88\xb7\xad\xda\x12\xdf\xf4\x1f\x95\xf8\x3e\xa5\xd1\x5e\x55\xa7\xcf\x67\x09\x95\x35\x84\x9c\xe6\x7d\x3e\xe7\xbe\xbb\xd9\xe7\x4c\x59\x84\x2e\x0f\x4b\x91\xb9\x25\x38\x63\xd7\x47\xd3\x32\xb5\x90\xa9\x0e\x5d\xfe\xae\x8e\xb7\xcc\x03\x28\xdd\x61\xf6\x42\x70\x46\x55\xa5\xaf\xdf\xbe\x3d\x3f\x7d\x9e\x96\xf5\x8a\x30\x93\x5e\x57\xfd\x3a\xdd\xf7\xcb\xff\x9e\xad\xca\xba\x6c\xf3\x4d\xb6\xa8\x18\x29\x2d\x11\x6c\x4a\x58\x92\x21\xce\x92\xae\xdb\x10\x8b\x02\x15\x5c\x5e\xbe\x49\xcf\x98\x12\x76\x79\xbf\x46\x47\xfa\x75\xd2\xfd\xb6\x61\x44\xb9\x06\xaf\xd6\x65\x8a\xc5\x00\xa0\x66\x39\xc4\x4b\x5a\x68\x5f\x67\x49\xd9\xb6\x19\x71\xd0\xfe\x86\xd1\xac\x75\x1e\x82\x96\xea\x88\xda\xeb\xa6\xa7\x69\x4c\x51\x4e\xaa\xa8\xea\x4f\xf9\xa6\x2a\x08\xd9\x1e\x21\x71\x59\x24\x16\x0d\xcd\x1b\x97\x26\xca\x6c\xae\x31\xd4\x7c\x41\x1b\x40\x97\xde\x9b\xdd\x03\xc7\xbd\xf7\xf8\xde\x2c\xa9\x9b\x4c\xb8\x04\xf3\xe6\xa2\xea\xf2\x39\xf1\x69\xd9\x37\x5a\xe3\x7a\x7f\x65\xfa\x91\xae\x28\x44\x1a\x41\x30\x6e\x79\x2f\xc2\x16\xc0\xc4\x95\x13\xc3\x06\xb3\x51\x36\x13\x8e\xdd\x78\x92\x9b\x5f\x61\x4b\x2e\x61\x34\xe6\xc4\x26\xcc\xa8\xeb\x78\xb7\xdb\x54\x0b\x69\xfa\xa5\xe4\x79\x42\xe3\x9d\x59\x91\x12\xc2\x81\x50\x2c\x2f\x20\x17\xea\x35\xb3\xad\x34\xe2\xf3\x28\xbf\x2e\x69\xe5\xac\xf7\x2b\xd9\x9d\x36\xcd\xbe\xf8\x06\x0c\xc5\x66\xce\xf3\x93\xf4\x5d\x43\x1d\x06\x75\x38\x00\xdf\xc4\x31\x31\x06\x16\x06\xda\x72\xdb\xf4\x8c\x38\x2d\x56\xd1\xf4\x5c\x57\x94\x49\x23\xed\xf2\x4f\xc4\x16\xfb\x46\x96\x64\x41\x4b\x6e\xc1\x15\x13\x07\xdb\xd3\x8e\x2e\xcb\x82\xf8\x88\x2c\x0d\x4b\x8b\x69\x10\x50\xdb\x3d\xad\xa6\x35\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\xcb\x25\xf5\xaa\xa3\x55\xf1\x2a\x5d\x6c\x1a\x5a\x52\xbf\xbc\x7b\xd3\xf1\x82\x59\x67\xbb\xa6\x85\x24\x42\x59\x17\xf4\xe9\xd2\x02\x44\x33\x44\xbd\xdf\xce\xe9\xd7\xf5\xba\x22\x46\x0d\xb4\x73\x09\x96\x92\x28\x95\x9a\xd8\x77\x34\x85\x47\x29\x2d\x61\x1a\x01\xa1\x0c\x04\xc0\x63\x30\xaa\x63\xf0\x25\xd1\xd8\xbe\xa5\xe5\xb4\xee\xfb\x9d\xb5\xfc\xea\xea\xea\x42\x9a\x76\xa9\xb7\xb5\x9d\x07\x94\x81\x39\xd8\xb0\x6c\x54\xa7\x4d\x3d\x03\x91\xec\xdb\xcd\x80\x7e\x68\xac\x96\x73\x00\x2f\xdc\x85\x27\xfc\xdf\xa5\x47\x0f\xf0\xdc\x91\xd4\x77\x0d\x6a\x22\x1c\x97\x90\x53\x88\xa8\x9b\x1d\xd7\x1b\x50\xf5\xb9\x26\x78\x52\x86\x6c\xe3\xf2\x45\xc2\xa1\x5c\xc8\x94\xc1\x2e\xbd\xa5\x01\x2b\x1b\xbd\x3c\x23\x34\x80\x97\x22\x75\xd9\x36\x5b\x4a\x7d\x41\x7f\x7c\x82\xef\xfe\x19\xd7\x07\x98\xbc\x28\x88\xcb\x77\x47\xe9\xbb\x17\x27\xe9\x7f\xf9\xfe\xbb\xef\x66\xe9\xeb\x9e\x57\x22\x13\xe7\xdf\x98\xa8\xe8\x53\x44\x2d\x07\x4a\x1c\xab\x27\xba\xbb\xc7\x2b\xeb\x5e\xfa\x23\x72\xff\x47\xf9\x39\x27\x11\xb1\x9c\x2d\x9a\xed\x33\xe6\xaa\xdb\x9c\xd6\x3e\xe7\x10\xb9\x2a\x1d\x5f\x96\x75\x41\x1f\x2a\xb0\x69\x5e\xc0\x0e\x34\x3f\x10\xdf\x44\x70\xcd\x16\x4d\xbd\xac\x5a\x1e\xd0\xcf\x35\xa8\xc1\x44\x5a\xda\xae\x91\x63\x52\x11\x21\x8d\x38\x48\xb5\xbc\xf1\xa0\x18\xea\x5b\x4e\xd4\x09\x4d\x84\xea\x32\x15\xd1\x1d\x96\x2f\x85\x18\x79\xde\xce\x69\x78\xad\xe1\xbb\xf3\x08\x6f\x96\x4b\xde\x6b\x6d\x97\xd0\x16\xce\x25\x55\x36\x8c\x10\x84\x88\x71\x07\xa1\xfc\x54\x89\xf8\xe4\xf4\x6d\x5a\x7e\x22\x6a\x63\xae\xd7\x36\xc5\x7e\x01\x0a\x63\xd8\x23\x66\xd6\xc4\x22\x3a\x5a\x1b\x0b\xd9\x57\x02\x26\xc1\x5d\x63\x4e\xb4\x20\x20\xe2\x0d\xc6\xac\x49\x90\xfc\x44\x9c\xbf\x0d\x9a\x78\x69\x49\xda\xfb\x11\xec\xa8\x53\xae\x04\x8f\x7c\x41\x33\x4e\x54\x21\xbd\xe8\xa4\x53\x92\x4d\xe4\x4e\x74\xbc\xa7\x13\x4a\x5e\x50\x5f\xe6\x37\xe0\x3b\x1d\x13\x43\x51\x2e\xf3\xfd\xa6\xf7\xfd\x1a\x6c\x22\xd6\xd2\x25\x1f\x92\xc2\xbc\xc9\x02\xa3\x0e\x82\x7a\xba\x61\x59\x22\xc3\x9a\xe4\x1c\xd9\x6c\x98\x5e\xe5\x14\x62\xfb\x0e\xb1\xa7\x12\xd3\x93\x79\x91\x5f\xe7\xcb\x24\xff\x38\xdf\x35\xfb\x4e\x24\x9f\x14\x5b\x2d\xd7\x68\x15\xb0\xa8\x30\xdd\x97\x59\xa2\xe2\x52\xa6\xc7\xb5\xec\x53\x85\xc3\x90\x23\x57\xa9\x52\x8f\x70\xcc\xd7\xfe\xcc\x00\x7c\xca\xea\x26\xcb\xba\xde\x9c\xf3\x20\x3b\x77\x18\x12\x9c\xf3\x70\xd1\x02\x8b\x70\x34\x4b\x9f\x2a\xb0\x79\x25\x18\xe0\x85\xa8\x06\x4d\x53\x53\x5d\x59\xa2\x06\x2a\xff\x84\xea\x44\x99\x99\x1e\x10\x54\x66\x37\xd1\x8f\xb7\xfb\xa2\x81\xec\x80\xbd\x84\x4a\x1b\x5a\x07\xfb\x7a\xda\x56\xab\x35\xf1\xd6\xe6\xfa\x48\x90\x72\xbd\x6e\x4a\x5e\x3f\xaf\x4f\x9f\x7e\x2b\xfd\x58\xf1\xce\xe2\x0a\xf1\x9e\x94\xef\x89\xb8\x08\x63\x4a\xc6\xd2\x05\xb7\xb7\x03\x72\x74\x14\x11\xa0\xe1\xe1\x6f\x24\x4a\x38\xa6\xa1\xbc\x22\xcc\x53\x26\xe1\x61\xa4\xb4\x1d\x20\xa5\x61\xe5\x4a\x2a\xef\x67\xab\x06\x07\x19\x93\xef\x79\xb7\xa4\xf3\x70\xd7\x67\xab\xaa\xcf\x96\xcc\xba\xb8\xe6\x17\x5c\x03\x6f\xde\x94\x93\x3e\xa0\xac\x07\x29\xf1\x3f\x3a\x9d\x15\x3f\xa4\xf7\x3f\xa9\xc4\xf8\x3d\xf3\xa4\x8c\x56\x51\xb5\xc1\x94\xe8\xf1\xa8\x2d\x45\x60\xb5\x33\xb8\x93\xda\xba\xfd\x0e\x7b\x9b\x0a\x88\xee\x34\x50\x34\xd7\x35\xaf\x3e\x30\x5f\xe2\x33\xd5\xa2\xa2\x3d\x63\x5e\xd5\x39\x6d\xf0\x56\x0b\x98\xfa\x7d\xa2\x89\xb7\xe7\x57\x00\x5c\x35\xf3\x7d\xb5\x29\x0c\x60\x96\x98\x10\x49\x22\xa4\xce\x7e\x28\x56\x5b\x52\x25\x7d\x59\x34\x2d\x4b\x24\x18\x8d\x15\x3c\x20\x0a\xb5\x2c\x62\x20\xb9\xe2\xf3\x0c\x60\x51\xce\x49\x2d\x8c\x06\x9a\x7e\x1c\xd5\x58\xa6\x01\xdd\x54\x5d\xfd\xa0\x47\x4f\x17\x7b\x6a\x8b\xa6\x9e\x93\xa9\x60\x97\x3e\x7e\x46\xff\x27\x2c\x21\xc9\x0e\xb0\x1a\x23\x9e\x33\x53\xc9\xdc\xcb\x5a\x8c\xba\x1a\x11\xb9\x9b\x6a\x23\xe1\x60\xac\x61\x7f\x8d\x04\xba\xbd\x50\x2d\xab\x4b\x36\x34\xad\xe5\x37\xf4\xc1\x27\xb7\xd5\x06\x93\x90\xf7\x7a\xbc\x6a\x08\x6f\x4c\x20\x47\xb2\x68\x96\x34\x34\xe6\xa5\x7d\xfe\xb1\xc4\x89\x8c\xf6\xfc\xf7\xac\x07\xfa\x90\xec\x45\x06\x6d\x36\x85\x3b\xef\x80\xb2\x9b\x76\xa8\xc6\xf0\x40\x8e\x6a\x3b\x12\xb6\x17\xeb\xcc\x69\x91\x18\x29\x7d\xf9\x19\xbb\x3f\xb2\xbc\x52\x89\x49\x9e\xb3\x92\xed\x0d\xa6\x8b\x07\x71\x76\xe3\x67\x8b\x24\x50\x5a\x28\x74\x98\x9d\x37\x8c\xb5\x4f\xa5\x83\x3a\x09\x53\xe3\x02\x54\x17\xc9\xca\x5a\x55\xac\x6d\xa0\x2c\x51\x89\x68\xae\xa8\x45\xba\x04\xac\x4c\x55\x60\xe0\x78\x34\x9f\x7a\xb2\x9f\xd1\xc4\x40\x6d\x60\x2d\x13\x5f\xbc\x91\x75\x11\xb4\x99\xbc\x57\xf5\xd8\x87\xc4\xe0\xde\xc5\xf9\xc4\x53\xd6\x1f\x02\x15\x54\x66\xb3\x6b\xaa\x28\x68\x4f\x94\xad\x78\x91\x62\x5d\xee\x58\xfa\xd8\x76\x20\x8b\x0d\x9f\xb4\x6f\x54\x7e\x76\x04\xf2\x93\x30\x6c\xa2\x18\x62\x73\xdf\x24\x5d\xc3\x0b\x2e\xfb\xca\x2a\x9e\x57\x44\x0a\x28\x1f\x6f\x76\xa2\x1b\x23\x31\x97\xa7\x8f\x56\xd9\xcd\x51\x7c\xb2\x5a\xe7\x1d\x31\x71\x92\x15\xb4\x58\x31\xb3\x13\x2e\x4f\x3b\x9d\xe7\xb0\x66\xa0\xcf\x03\x95\x4b\xc9\xa6\x1d\xee\xc2\xdc\x43\xe1\x73\xda\x8a\x93\x9d\x20\x19\x85\x02\xd4\x44\x9b\x84\xb0\x6d\xc9\xe2\x73\xb6\x15\x35\x9a\xfc\x4a\xcf\xca\x84\xb6\xc3\x15\x2d\x68\x23\xd8\xa7\xac\xfd\x58\xe1\x94\xa1\xf4\xca\x00\x65\x1f\x32\x62\x85\xb0\x94\x9f\x4c\x6f\x49\x9c\xe1\x1a\xaa\x21\x5a\xdb\x23\xf4\xd3\x96\x45\xd9\x33\x63\xec\x22\x23\x40\xd4\xeb\x88\x5b\x78\x24\x1e\xa7\xac\x80\x0c\xa1\x54\xe4\xf6\xc3\xe2\x02\xcc\x35\x7e\x9c\x3f\xbb\xdf\xfd\xf8\x64\xfe\xcc\xf1\xd6\xc5\xba\x5c\x7c\x14\xfa\xab\xea\x79\xf3\x19\x07\x5b\x28\x4a\xe8\x4c\xcd\x6b\xec\x7e\x91\xd2\x41\xb7\xc5\xb9\x8a\x78\x01\x15\x23\xc4\x73\x6e\x34\x69\xd4\x19\x66\x19\xb4\xb5\x2d\xb0\xaa\x40\xe0\x9e\x20\x8f\x39\x95\x49\x12\x1b\x80\xa7\x49\x0c\x64\x53\x6d\xab\x7e\x44\x13\xcc\x61\x72\xa5\x2d\xd5\x95\x19\x92\x50\x17\x86\x89\x51\x12\x9f\xa6\x6a\x68\x5f\x35\x3a\xb9\xce\xe9\x20\xf5\x7d\x4a\xb4\xb1\xa7\xfd\x89\x3b\x4b\xe3\x21\x46\x9d\xf3\xc6\x4c\x87\xa8\xbc\xcb\xf6\xb5\xe2\xab\x2c\x8c\x4a\x5e\x55\xd8\x3e\xb8\x5d\xa3\xe5\x00\xca\x50\xaa\x67\x81\xf4\xa1\x43\xe5\xa3\x99\xea\xb6\x50\x8c\x79\x3a\x77\xa8\x62\xb9\x35\x9f\x9c\x15\xe2\x79\x75\x29\x67\x5f\x60\x80\xe1\x78\x06\xe9\x00\xe5\xa7\x85\x4e\x61\x1f\x29\x05\x98\x9e\xef\xfb\xbe\xe1\x73\xc9\x86\xc9\x41\xca\x58\xaf\x4f\x00\x88\xa3\x96\xaf\x0f\xd3\x19\xe2\x49\x58\x6c\x69\xe7\x84\x8c\xe8\x90\xd7\xb4\x68\xb8\xf9\x44\x37\x18\x9d\x6e\x82\x0e\xac\x10\x5d\x52\x5e\xdf\x78\xf5\x06\x7a\xc1\x0d\xf6\xd3\x7d\x79\xd8\x96\x8f\x7c\x6f\xdc\x62\x40\x09\xeb\x91\x14\x0f\x16\xca\x3b\xe4\x8a\x8a\xd5\x96\x93\xed\x69\xaa\xa8\xf4\xf4\xd1\xc6\xe8\x45\x3e\x93\x3c\x71\x4e\x12\x2b\x0b\x20\x9a\x46\x81\xd2\xb3\x41\x5b\xfe\x48\x38\xc6\x60\x1f\x77\xd9\x6f\x4d\x7d\xd3\x64\xdd\x5a\x8e\xdf\xd6\x3d\x3a\xba\xd7\xab\x48\x6f\x85\x7b\x11\x10\xdd\x7f\xe5\x0d\x90\x07\xfa\x21\xd1\xd9\x28\x83\x45\xa1\xd4\x6a\x39\x36\x6b\xb2\x36\x1c\xbc\x09\x6b\x7f\x2e\x5b\x3e\xde\x01\x28\x9e\xad\x43\x58\x8c\x07\xe1\x98\xa2\xdf\xdd\x1d\x43\xd4\xa4\x23\xdb\xef\xb9\xd7\x4d\x91\x53\xb7\x6f\xa0\x89\xfe\x2b\x6d\x38\x35\x74\xfc\x4d\x42\x19\x72\xcc\x3c\xc3\x07\x81\xf2\x99\xf7\x43\xc2\x5b\xfa\xdb\x81\xb0\xca\x3b\x96\xa6\x05\xf2\x12\xb2\x7e\x8e\x2e\x31\xdc\x50\x2e\x26\x04\xdb\x77\xa5\xbf\xcb\xc0\x97\x1b\xd3\xe5\xe5\xab\x2b\x3b\xc4\x5e\xbe\x4a\x3f\x96\x5a\xf9\xab\xbe\xdf\x75\xbf\x40\xa1\x21\xda\x09\x56\x65\x5c\xe4\x37\x2c\x44\x4a\xb2\xfe\x40\xc6\x55\x99\x6f\xb5\x97\xfc\x29\x55\x1c\xd3\xee\xaa\x89\xfc\x49\x9b\x6e\xa0\x28\x4b\x20\x4e\xfd\x3c\x25\x46\xbb\x43\x4d\xa9\x17\x25\xbf\x8e\xb4\x7b\xbf\x26\xf9\x66\x47\xe7\x2e\x96\x67\x02\x30\x28\xb2\xe6\x7a\xfc\x4a\x01\x02\x0a\xde\x6f\x69\xe6\x17\x38\x6e\x52\x81\x87\x8f\xb3\x47\x81\x62\x33\xae\xac\xa0\xa5\xfd\xbb\x2a\xe4\x6f\x16\x7a\xc3\x7a\xbb\xea\xef\x36\x8a\xa8\x3a\x4e\x27\x4e\x49\x10\x10\x31\x3d\x94\x03\xc2\x3e\xcd\xe2\x66\xcf\x7a\x2d\x4a\x20\x91\x36\xaa\x7a\x9b\x7f\xbe\xab\xe0\xb6\x99\x28\x27\x0c\xcc\x17\x32\x36\xa5\x43\x8c\x97\x05\xc1\xb3\xe6\xea\x20\x34\x4d\x3d\x81\x54\xf5\x62\xb3\x2f\x0e\xf6\xa4\xdb\xcf\x69\x8f\x63\x59\xf9\xc1\xfd\xee\x01\x57\x59\x7f\xa4\x4d\xb9\x76\xf0\xbf\xc8\xef\x14\xbf\x7f\xb0\x6b\x36\x3a\xcd\xea\x01\x22\x75\x17\x6e\x24\x5b\x14\xbc\x3b\xe0\x20\x30\xf3\x4c\x25\x3c\x1c\x38\xf2\x87\x4a\x42\x4f\x6f\x6e\x61\xb3\x1e\x02\xe7\x24\x22\xc1\x99\xbf\x1b\xcc\x78\x8b\xcf\x58\xe8\xae\x43\xd1\xda\x6d\xfe\xb6\x8b\x02\x42\x6e\x88\xb2\x71\xb9\xc1\x02\x3d\x58\x9c\x24\x99\x89\xd2\xe7\x63\x5d\xf2\x81\xf2\x3d\x2d\xb1\x89\x0a\xdc\xca\x3b\x58\x50\x26\x1f\x85\x68\xe4\xc5\x88\x77\x8c\x0b\x32\x18\x1d\xfb\x36\x9b\x72\xc5\x4a\x47\x6b\x38\x6a\x4d\x27\x9a\xb6\x3c\x01\x0b\x09\xce\x63\xd8\x4d\x56\x38\xaf\xe1\x21\xc6\xcd\x51\x7c\x7c\x64\x5d\x0c\x55\xd5\xe2\x7e\x37\x38\x44\x6a\x37\x74\x07\xd8\xf2\x79\xa9\xdb\xf3\x06\xc4\x67\x2b\x11\xae\xe2\xd9\x60\xf1\x02\x55\x95\x68\xe2\x70\xf5\x44\x8b\x7c\xe0\xbc\xab\x7e\x80\x7d\x65\xd5\xa1\xd2\x61\x5c\xb1\x56\xee\x80\x0e\x55\xeb\x0e\xc4\xe5\xe7\x0a\x0a\xdc\x97\x15\x2b\x06\x71\x24\x76\x9a\x00\xe4\xcd\x92\x0d\x31\x0f\x3e\x7a\xc9\xa8\x44\x0c\x6f\x3e\xf1\x6a\xe4\xf6\x38\x57\xca\x89\x42\x57\x07\xc5\xf3\xac\x87\x6b\x5c\x03\x95\xc5\x11\x09\x32\x5c\x82\xfa\x89\xc5\x9d\x6f\xae\xf3\x9b\x0e\x9a\x22\xe3\x50\xac\xbc\x96\xe2\xcc\x7e\x48\xcc\x59\xa1\x57\xe1\x15\x09\xad\x38\xc3\x04\xeb\xfa\x79\xb3\x71\xc2\xc8\x35\x8e\xc7\xe0\x2e\xaa\x7b\xfa\x14\x6c\xd7\xba\x37\xf1\xd1\x9e\x0f\xc2\x7c\x44\x91\xec\xa0\x22\xdc\x3d\xea\x4e\x31\x51\xf6\x88\x85\x40\x6a\x86\x45\x32\xe2\xdf\x82\x6b\x92\x72\x09\xb3\xe8\x52\xa0\x2b\xd9\x53\xfd\x8f\x45\xac\xaf\x08\x87\x7c\x4c\xf4\xea\x03\xde\xcb\x68\x56\x4c\xc5\x2f\xe9\x38\xfc\x27\x5d\x4f\x4b\x80\x31\x6d\x17\xfa\x7f\x0d\xe4\x91\x14\xb9\x58\x62\x40\x53\xb7\xae\x76\x69\x03\xb5\x71\x88\x42\x4f\xb6\x81\x20\xcd\x97\x19\x25\x8e\x0d\xac\x3f\x6f\xf3\xba\x5b\x96\x50\xa4\x6f\xd3\x25\xdf\x19\xcf\xb4\x69\x96\xcb\xe5\x62\xff\x40\xcb\x72\x04\x43\xd3\xe1\xee\x82\xb9\x0b\x26\x2a\x6e\x5a\x6e\x56\xa0\xac\x45\x1f\x80\x55\x5f\x53\x67\x7d\x60\x32\x1b\xa1\x00\xb2\x71\x74\x4f\x66\xbd\xf9\x54\x86\x88\x58\xfe\xde\x91\x07\x58\xd7\xbb\x02\xb9\x60\x89\xa7\x49\x1a\x85\xb6\x06\xd7\xbc\xf3\x9b\x78\xf4\x5c\x34\xb8\x3b\xa7\x35\x52\x6a\x2b\xbc\x30\x78\xad\x0c\x2a\x84\x96\xc6\x9f\x88\x12\xb9\x67\xcf\xe6\xd4\xc5\xc5\x3a\x5a\x9d\x57\xc8\x49\x25\x67\xb4\x40\x93\xf7\xdc\xf4\x87\x44\x6e\xda\x33\xa7\x94\x3f\x91\x9b\x77\x91\x68\x55\xc9\xde\xa7\xa6\x89\xe7\xab\x12\x2b\x22\x7a\xf7\x5b\x4b\xf2\x36\x6c\x4a\xd1\xbf\x35\x24\x73\x40\xb7\xfe\x47\xfa\x62\x19\xbf\x4e\xa2\xeb\xc5\x81\x9a\x04\x62\x74\xd5\xf3\x0a\xbb\xa0\x85\x41\x62\xcf\xb1\xa6\xd0\x29\x1d\xdc\x01\x9a\x9b\x17\xf6\x4d\xf3\x91\x33\xd3\xe3\xa5\x2d\x5f\x0a\x27\x6a\xb4\x17\xf6\x9d\xf0\x21\x7f\x3b\xc3\xe6\xc0\xe2\x37\xae\x29\x82\x2d\x81\xa5\x05\x9e\x30\xcb\x9b\x05\xf0\xbb\xbc\x27\xb6\x58\xcb\x41\x4c\x38\x54\x58\x54\xb3\x5d\x15\xee\x3e\x9b\x6b\x61\xdb\x0f\x41\xc5\x87\xc4\x9b\xa4\x98\x35\xca\x94\x5a\x58\x59\x4c\xa7\x32\xf2\xbf\xd0\xa7\x2a\x74\xc0\xbe\xf0\xa1\x07\x72\xdc\x24\xdb\xf5\x1f\xcc\x63\x82\x9f\x89\xaa\xc0\x62\xfd\x97\x92\xf7\xd3\xf4\x54\x3e\xec\x68\xbf\xaf\x30\xa6\xaa\x48\x92\x1d\xf0\x1e\x18\xd0\xe8\x44\xb8\x4e\xab\xa1\x94\xd7\xc4\xb7\xc3\x9d\x9d\x6d\x36\xa4\x10\x13\xae\x5d\x0e\x41\x0a\xe0\xbb\x89\xe0\x58\xca\xca\x65\x9c\x57\xeb\xe0\xe2\x8b\xaf\x73\xf8\x94\x4d\x60\xd7\xe5\x3c\x65\x75\x2f\x11\x0e\x9d\xfe\x74\xa0\xdb\x9c\x0e\x8e\x9f\xaa\xdc\x29\x96\x68\xb6\xd8\x44\x47\x77\xd1\x17\x6c\x9e\x83\xcb\xf4\xb1\x1d\x19\xdf\x4c\xe9\x65\xcf\x1b\xfd\x4c\xf6\x3b\xbe\x3d\x09\x06\xfc\x0b\x12\xdc\x80\xe3\xfc\xe0\x3c\x86\xa1\x5b\x31\x27\xcd\x08\x78\x61\x87\x34\x58\xb9\xcc\x6c\xf9\x4c\xd8\x87\xe9\x12\x2a\x86\x20\x5e\xc3\x02\x16\xa3\xc6\x31\x40\xa6\xdc\xe7\x62\xf8\xb4\x33\xa6\xeb\xe6\x3a\xdd\x54\xf5\xc7\x4e\xb1\xc9\x7c\x2c\x3c\x9c\x42\x25\x45\x44\xb8\x17\xbb\x21\xf9\x1c\x9b\x29\xd9\x35\xd3\x60\x85\xdb\x65\x94\x5c\xb8\x1d\x23\x79\x12\xd6\x1f\xd1\xed\x42\x6c\x59\xb2\x98\x0c\xa6\x66\x97\x77\x34\xca\xa6\xe9\x54\x01\xea\x99\x08\xa7\x41\xa9\xa2\x50\x8a\x73\x07\xa1\x53\x72\x6c\x57\x86\x58\x53\x89\x5d\xf2\x59\x07\xb0\x42\xb3\x6a\x2b\x66\x7f\xbf\xd8\x15\x20\xe6\xc7\x9d\x26\x90\x0d\xa3\x92\xb8\xf7\xe1\xbd\xc7\xdb\xc6\x2e\x18\x8d\x1b\x5a\xe6\x91\x6d\xfa\x82\x01\x6c\xd9\x51\x67\x87\xf4\xa1\x15\x98\x0a\xff\x0e\x32\x31\x22\x08\x2f\x85\x64\xe2\x1d\x83\x68\x36\x91\x68\x77\xa2\x97\x11\x2e\x9f\x31\x1b\xe4\xbf\xc5\xf5\x9d\x53\x2a\xf0\x81\x3c\x1b\x80\xe8\x81\x3d\x82\x9c\x94\xa0\xad\xad\x83\xd2\xf3\xa0\xf7\xa3\xb5\x62\xe5\xae\x09\x0b\xe1\xc0\x95\xba\x8b\x99\xd9\xf1\xb0\x26\x55\xee\x02\x61\x70\x21\x46\x27\x35\x2e\x12\xa5\x0a\x42\x15\x0e\x18\x9d\x3f\x57\x1c\x0b\xf7\xe1\x0b\x00\xb1\x3a\x74\x00\x6a\x78\x18\x9f\x37\x4b\xb3\x5e\x08\x19\xd9\xae\x25\xf2\xa0\x8d\x76\xa0\x5f\x1b\xb1\xb0\x88\x5d\x81\x5b\x35\xb8\x8a\xf7\x5c\x8a\x4e\x8c\x5a\x17\xf3\x7b\x7c\x59\x8a\xd3\x11\x11\x1d\xb3\xa8\xab\xc9\xca\x9c\x5d\xae\xb0\x68\xd7\x49\xfa\x21\x8c\x4b\x87\x7b\xaa\x29\x03\x00\x1b\x8e\x32\xf8\x7e\x42\x5b\x88\xd1\xa8\xd8\x61\xfc\xb7\xaa\xc5\x14\xc2\x5d\xcd\x45\x0c\x24\x3d\x05\x47\xa1\x79\x13\xbd\xb4\xf1\x93\x9f\x86\x8d\xfb\x09\xff\x79\xa0\xd2\x96\xc1\xc5\xf4\xfe\x4d\x42\x5d\x02\x35\xfa\x2b\xce\x02\xd3\x3c\xd0\x98\x31\x58\x08\xa2\xea\x48\x97\x9c\x45\x3a\x77\x68\xcf\xbf\x4a\xcf\xce\x7b\xf7\x3f\x41\xc5\x1e\xb5\xe5\x55\xec\xae\x97\x83\xe5\xc0\xdd\x1b\xec\x9c\xa3\x85\x41\x19\x90\x23\x94\xa4\x03\xe9\x40\x89\xda\x09\x09\xdc\x8c\x9c\x4d\x18\x43\x94\x04\x51\x42\xa9\x01\x5b\x08\x0b\xaa\x30\x23\x82\x0d\xa0\x1c\x54\xba\x91\xd2\x38\x9e\xf8\x63\x9c\xc4\x08\x2b\x02\x0b\x3b\x3d\xda\x98\x45\x8a\xd5\x93\xdd\x96\x11\x21\x97\xe8\xce\xa4\x6b\x74\x43\x76\xa4\xc7\x9f\x75\xb5\x5a\xd3\xb8\xaa\x2d\x5f\x1d\x83\x9c\xec\x7e\xd2\x9f\x4e\xf9\x17\x31\x94\x66\x55\xb3\xee\x8a\x5b\x10\x1b\x2e\xb7\xc1\xfc\xd8\xf5\x6d\x53\xaf\x9e\x9d\x36\x7c\x6c\x64\x8d\x0e\x6f\x82\x3f\xfd\xf8\x44\xd3\x89\x69\xf2\x1c\xb2\xc1\xdf\xcb\xaa\x7f\xb5\x9f\x3f\xe8\xd2\x15\x5b\xa0\xe2\x52\x25\x0f\xec\x52\xd5\x6a\x40\x0c\xec\xae\x6b\x87\x16\x58\xa9\xd2\x42\xef\x9a\x0d\xad\x92\xb8\x48\xb3\xdd\xca\xfc\xd2\x06\xb0\x15\x48\xf4\x1f\x86\x06\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\x73\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\xb9\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\x58\x28\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\xd6\xad\xfe\xd4\xf3\xb6\xd1\xfb\xb1\xd4\x12\x31\x27\x74\xcc\xe9\xcb\x68\x31\x73\x27\x60\x8f\x28\xf6\x36\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\x3d\xf3\x41\x16\x13\x70\x16\xad\xd5\xd9\x3c\x89\x66\x08\xb6\xde\x6c\x18\x52\x08\x27\x51\x46\xa0\x86\x3d\x8e\x03\x90\x84\x55\x33\x10\xd4\xb7\xfc\xa1\xbf\xc3\x69\x89\xea\x0f\x96\x0b\x31\xf0\x7d\x1d\x30\x50\x21\x87\x4c\x50\xe1\x06\x79\x41\x47\x49\x18\x36\x1e\x4b\x85\x57\x9c\xdd\xa9\x55\xaf\x5e\xd7\x5b\x91\x97\x9a\x88\x35\x00\x40\x41\x78\xe7\x10\x81\x5f\x5e\xab\x60\xb5\xa8\x29\x86\x9a\x2c\x62\x0e\x88\xea\x8c\x65\xae\xc5\x34\x23\x3d\xbe\x78\x4d\x7b\x86\x6b\xd0\x2a\xfd\x39\x27\x49\x5a\xba\x70\xed\x34\x1a\x4c\x6c\x43\x9e\xeb\x64\x7e\x29\x6e\x0a\x54\x94\xc4\x12\x77\x83\x1a\x0d\x48\x06\x13\xe7\x0b\x8e\xcb\x2e\xd0\xf2\x48\x6b\xe8\xc9\x70\xb7\x72\x43\xfd\x86\x30\xeb\x74\x8d\xbc\xb4\x76\x37\xcc\xff\x03\x5b\xac\x5c\x30\x74\x0d\x0e\x3e\x30\x02\x23\x48\x68\x3a\x52\x5e\xc2\xad\xe3\x1f\xd6\x61\xe5\x20\xe1\x54\x86\x6c\x64\x72\x32\x3d\x53\x99\x2c\x36\xc5\x59\x76\x56\x4f\x3c\xe6\xbb\xf8\x0c\x13\xbe\x3f\x87\xdf\xc2\x65\xc2\x51\x05\xa4\x7c\x31\xd9\xac\xa3\x68\x69\x7a\xc0\x6f\x52\xd9\x08\xc5\x90\x81\x5b\x91\xd3\x85\x52\x44\x60\x23\x4c\xb5\x5c\x97\x1b\x36\xee\xd5\xd6\xfd\xf5\xa6\x0e\x3d\xba\xf1\x57\xa0\xe0\x24\x5a\x7a\x11\x57\x50\x11\xaa\xe9\xac\x32\x82\xa0\xe5\x86\x4b\x7e\x39\xca\xdb\x7e\x7d\x72\xfc\xf6\xed\xf9\x95\xdf\xa6\x79\x1d\xd4\x05\x09\x13\xdf\x38\x73\xb8\x51\xbf\xcc\x28\xce\x4d\x60\x0c\xe1\xcd\xf2\xb4\xc4\x21\xb8\x90\x4d\x59\xed\xf4\xb9\x6a\xc0\x7b\x1a\xee\x8b\xf1\xf2\xa8\xff\xc5\xa1\xf9\x4b\xde\xb3\x7c\xf3\x21\x31\x65\xf7\x39\xff\x4d\xc2\xfb\x82\xe0\x8e\x06\x4b\xcf\x5f\xe5\x78\xd3\x7b\xea\x40\x53\x8c\xee\x0f\xc0\xa4\xf7\x39\x8e\x46\x84\xfb\x06\x7b\xc5\x32\xc5\x65\xf6\x11\xab\x43\x9b\x16\x0b\x86\x91\xbb\xaf\xab\xdf\xf6\x10\xd0\xf8\x60\x44\xcc\x83\xad\x2c\xe7\xd5\x46\x36\x94\x3f\xbb\x1f\x92\xce\x5f\x03\xf3\xf0\xa0\x71\xfa\xf5\x63\xb7\x63\x23\x55\xda\x1b\xba\xa7\xf7\xf6\x55\xca\xda\x35\x36\xd1\xba\xf7\x8c\x8e\x31\x7c\xc5\x4d\xd3\x47\x10\xcf\x46\xd5\xb1\x8b\xd8\x42\x54\x71\xce\xd8\x07\x74\xab\xe9\xbc\x5a\x58\xe4\x8d\xf4\x7f\x82\xf8\xdf\xd1\x26\xfb\xa3\xf9\x71\x3c\xd4\x53\x32\xe1\x08\x6b\xf7\x53\xbe\xd9\xc7\xca\x12\x6e\x9d\xcb\x74\x8f\x12\x14\x55\x8d\xf1\xd0\x97\x0d\x79\x66\x94\xce\x79\xb0\x4c\x47\xea\x04\xfa\x02\xaf\x93\x7c\xd3\x8b\xae\x38\x0d\xd0\xcf\xbc\x00\xad\x96\xe1\x14\xeb\x9d\x9e\x63\x39\xdd\xa2\xad\x60\x59\x2f\xe9\xec\xb9\x98\x06\x5e\x8b\x2e\xd1\xb7\x7b\x49\x84\x4a\x63\x9a\xad\xaa\x9e\xce\xc8\xec\x3f\x05\x3b\xec\x84\xd6\x39\x6d\x3d\xf0\x79\x94\x2f\x4b\x19\x15\xe5\x5d\x5a\x60\xa1\xe3\x62\xd9\x50\x49\x96\x3f\xf4\xf7\x44\x29\x05\x34\x8f\x4b\xbe\xae\x68\xb2\xaa\xae\x78\xa5\xbe\xa6\x3f\xb4\x0b\x8b\xcc\x1e\xd3\x95\x08\xa4\xa8\x44\x15\x32\x72\x6a\x76\xf5\xa8\x5d\x9c\xce\x8a\x1a\xc4\x05\xf3\xa2\xa6\xdb\xaa\xf2\x06\xda\x90\x90\x3e\x47\x82\x3a\x3a\x52\x4f\x68\x16\x3e\x89\xfc\x22\xae\x8f\xaf\x2d\xe5\x21\x9f\xd9\x1e\x1d\x50\x04\x0f\x6f\x53\xbf\x5e\x1f\x3c\xac\xe1\x76\xb5\x30\x1b\x14\x65\xac\xe4\x4f\xd5\x9a\x2c\x32\x5a\x48\xd4\x11\xd3\xfc\xd1\x9c\x27\xa6\x38\xa4\x85\xb9\x87\x97\xb2\xe9\x2c\xf2\x78\x75\xc1\x10\x73\x4e\xab\xe3\xde\x33\xc1\x99\x2d\x2d\xab\x55\xa7\xe0\x4c\x7d\x41\x83\x39\x50\x88\x19\x7c\x47\x32\x3b\xb2\xb2\x45\x0e\x1f\x07\x55\xfd\x32\x0d\x15\x71\x5f\x95\x80\xf2\xc0\x1f\xe5\xc9\xcb\xd7\x57\xf0\x46\xa1\x19\x83\xf7\x80\xb9\xdc\xb0\x9d\xee\xcc\xd5\xc9\x8c\xb9\xea\x3a\xd9\xb0\xeb\x0a\x88\xe7\x35\x68\x37\xed\x36\x1d\xc4\x55\xe4\x80\xa9\x95\x85\x2c\xc7\xd7\x66\xd7\x83\x80\x31\x43\xe1\xd7\x92\xa8\x05\x39\x11\x27\xd7\xf8\x26\xc5\x4c\x95\xf2\xd0\x11\x2a\x91\x85\x6e\xdc\x43\x97\xfd\xd2\xf1\x0f\x78\xb6\xb0\x49\x7e\xcc\x38\xe0\x58\x1b\xcc\x5b\x68\x48\xc7\x5b\x4b\xc1\x7b\xe3\xee\x26\x63\x0d\x2f\xb6\xc3\xdd\x8d\x4f\x08\xe4\x06\xca\xa8\x22\x60\x67\xf3\x70\x81\x79\xfa\xf7\xff\xf3\x7f\x1f\x9f\x70\xc7\x4f\xfa\x76\x43\x5f\x2a\x96\x25\x30\x5d\x23\x29\x24\x83\x90\x26\x0d\x20\x73\x53\xed\xc4\xf1\x7b\x81\x9a\x5d\x13\xe9\xf9\xbf\x24\x32\xb9\x8e\xf6\x40\xc2\xf0\x06\xe7\x0c\xda\x50\x7f\xc2\xbe\xd3\xdf\xee\x13\xca\x7e\xe3\x7c\x7a\xfe\x86\xe4\xf9\x6b\xb5\xa8\xf8\x45\xbe\x12\xfb\xfd\x17\xfc\xda\xb3\xa5\xb3\x98\x6f\xf0\x47\xa2\xbf\xf8\xca\x27\x51\xc7\x64\x66\xd6\x09\x1f\xa6\x94\xd2\xe8\x20\x15\x72\xd6\xdf\xf6\x3c\x4a\xd1\x01\x3c\x4d\xff\xc4\xbf\x52\xf8\xa4\xea\x50\x98\x61\x39\xee\x03\x7a\x1e\xb0\xb0\xd0\x72\x17\x1c\x59\xed\xe7\x3d\xb7\xca\xe3\xdd\xed\xc6\xcc\x01\x0d\x90\xdd\x6d\x92\xdd\x9e\x8d\x88\x98\x86\xac\xb5\x0b\x4a\x81\xef\x12\x27\xb2\x2c\x12\xd4\xe0\xee\x03\xa3\x3a\xd0\x3c\x75\x57\x7c\xcf\x26\x37\x71\x64\x79\x8d\x16\x1b\x36\xcf\x73\x1a\xb2\x0a\xd4\x49\xe2\xf8\xa8\xf2\xcf\xbe\x2d\x71\x4e\xa0\x3f\x9a\x07\x6f\xcb\x3e\xc7\x25\x92\x00\xd1\x0a\xf8\x4f\xe9\x15\xa5\x28\x44\x19\x66\x25\x0a\x8a\xfc\xa1\x4f\x34\x7b\x50\x8f\x3d\xa7\x37\xf9\xbc\x44\xf2\x1b\x7c\xd0\xba\xa4\x6d\xa1\x27\xdc\x43\xbd\xe5\x7e\x24\x3c\xf8\xaa\x17\x1a\xc7\x57\xa2\x2e\x09\x72\x7d\x28\x9f\x09\x2e\x67\xda\x9c\xed\x73\xdf\xe5\xd7\xf2\x93\x10\xa3\xae\xd5\xaf\xe4\x4b\x92\x61\xed\x2d\xa0\x30\xf6\x76\xf0\x10\xfc\x74\xa1\x5d\xd8\x77\x62\x1d\x98\x8d\x3b\x62\x39\x03\xcf\xee\x74\x31\xc8\x5f\xca\xf1\xf5\x05\x1f\x5e\x2d\x2d\x07\xcb\x4f\xcd\x60\xcd\xa5\x6f\x69\xb5\xca\x0d\xc6\x99\x7c\xb9\x9c\x42\x2c\x40\x4f\xb1\x61\x6a\x9a\x59\xdf\x9f\xf3\x5f\x97\x4a\x94\xa8\x0b\x93\xfe\x3a\x4b\x76\x09\x7c\xc0\xe7\x56\x71\x25\xf7\xc9\xb3\xe1\x5c\x04\x59\x35\x4b\x1f\x73\x5c\x15\xd1\xa2\x42\x7e\x98\xbd\x20\xfc\xb7\x99\x2b\x7f\xc2\x3f\xd3\xcd\xa8\x16\x37\xb9\xe1\xdc\x0e\x9a\x09\x61\xa8\xa9\x49\x30\x69\x2e\x84\x94\x16\xb7\x53\xc0\x74\x56\xa9\x23\xd8\x73\x4a\x08\x49\x2b\xaa\x98\xa5\xec\x41\xcd\x10\xbc\xa7\xe1\x69\x37\x65\x6f\x27\x1c\x3d\xf4\x73\xdc\xcf\x00\x48\xba\x99\x4f\x80\xb2\x06\xc8\xc3\xd1\xc0\x87\x40\xaa\xa4\x74\x9c\x66\x38\x7b\x7e\x7e\x68\x6a\x87\x13\x24\x99\x19\x89\x59\x8b\xd2\xf9\x6a\x00\x08\x82\x0a\x07\x21\x88\x9a\x71\x95\x69\x63\x51\x7d\x40\x68\x9f\xcf\x29\xfb\x7e\x01\x6c\xba\xc2\x8c\x2b\x9f\x25\xa8\xb3\x4c\x5a\x5c\x6c\xca\x6a\x35\x47\x55\x86\x79\x24\x53\x65\x22\x25\x0a\x22\x9c\xc4\xb8\x99\x28\x71\x2b\x45\x0d\x61\x0e\xd6\x3c\xa2\x1b\x2d\x79\xcb\xf4\x7a\x08\x76\xdb\x3f\x5c\xf5\x81\x72\x2a\xd4\x41\x94\x1b\xe7\xcc\xd8\xa3\xc7\xf1\xcf\x63\xd8\x91\x80\x87\x4e\x81\x76\x1a\x8c\x84\x76\x6f\x16\x1b\x5c\x57\x0b\x55\x07\x4d\x15\x92\x59\x2e\xb2\xf9\x8d\x96\x91\x79\x86\xa7\xe4\x81\x22\x5b\x36\x45\xc1\xbe\xae\x45\xce\x5c\xc2\x44\x91\x4e\x3d\xad\xd9\xd5\x79\x9c\x33\xe3\x2d\x08\xa6\x2a\xcc\x9b\xba\x49\x10\xa6\x52\x80\x9c\xe3\x63\x0a\x44\x94\xa4\xaa\xe6\xe0\x5d\x40\x7c\x0a\xec\x5a\x75\xb2\x61\xb6\xbf\x71\x25\xde\xc0\x1a\xa7\xfd\x82\x72\x6c\xda\xca\x7c\x55\x74\xe2\x67\x0d\xcc\x4d\xf1\xf3\x96\x76\x7c\x01\x69\x68\x54\x82\x57\x12\x66\x81\x40\xe4\x3b\xbd\xff\xfe\xdb\x0f\x1d\x4f\x83\xbf\x6e\x78\xff\xdd\x07\x12\x94\xee\xbf\xff\xfe\x03\xee\x19\x46\x85\xb3\x25\xab\xd9\xc6\x35\xa0\xa0\x41\xef\xda\xf2\x53\xd5\xec\x3b\x11\x05\xf1\xe9\xf9\xc3\x67\x99\x8a\xcf\x7d\xbc\xc4\x9d\xc7\xf7\x60\x85\x17\x2e\x2b\x5e\xe1\xf5\x7e\x9b\xe9\x18\x3b\xe1\x00\xf6\xcb\x15\x37\x0c\x64\x39\x37\xf9\xab\xfb\xcd\xc3\xad\x0a\x1e\x2c\x75\xde\xe4\xc3\x3f\xc8\xaf\x67\x18\x08\x0f\xfd\x57\xd7\x52\x13\xdc\x50\x5c\x89\xd3\x3a\x8b\xe6\xee\xae\xe4\xa6\xec\x67\x31\x57\xb2\x00\x2a\xe8\x72\x9c\xa5\xbd\xf0\x20\x3a\x6f\x30\xe8\x0d\xc1\xdb\x12\x88\x31\xb8\x77\xf8\x39\xc8\xbc\xad\xb2\x36\x2a\xa0\xac\xd6\x53\x89\x82\x0e\x70\xad\x98\x92\x6d\xe8\xeb\xd0\x24\xed\xb9\x3a\xec\xe7\x57\xd6\x22\xf2\x04\x89\xaa\x4b\x57\xcf\x92\x30\x5e\x2f\xa0\xcd\x86\xc2\x9f\x87\xaa\x06\x9d\x02\xfd\x95\x4d\xec\x1a\x0d\xff\x74\x81\x0f\x4b\x16\xf5\x91\x5a\xeb\x3b\xda\x8c\x54\x6d\x9a\x68\xbe\x59\x74\x10\xa0\x33\x16\x38\xb6\xf9\x63\xf1\x9d\x0f\x27\x45\xa0\x55\x9d\x99\xd1\xbf\x9e\x15\x88\x59\xb2\xa1\x9a\x8c\x88\xc8\x88\x5d\x50\x55\x7b\x7b\xd0\x5d\x2e\xba\x12\x34\xf7\x3b\xb9\x10\xe6\x89\x0c\x57\x6b\x59\x40\x3d\xf2\x33\xfd\x71\x78\x1d\x18\xdf\x58\xff\xb8\x15\xea\x3e\xfd\xb1\x24\xd9\x17\x6d\xd1\xf9\x7d\x3b\xce\x5f\x34\x9b\xc6\xef\xeb\xf8\x35\x04\x10\x6d\xea\xfd\x62\x20\x9b\x49\xb6\xa7\x6d\x5d\xbd\x9c\x30\xd8\x79\x04\x72\x62\x30\x92\x31\x30\x2d\x8b\x33\x9d\x17\x8a\x74\x10\xbe\x28\x16\xe6\x60\x5c\x8b\x1a\x68\x01\xd4\xa9\x73\x27\xc1\xa6\xf4\xf6\x22\x65\x84\x7a\x7a\x96\xd9\x43\x03\x07\xbe\xa9\x0e\x54\xf7\x5a\xf3\x61\x4d\xfd\x74\xd3\xfe\xe8\x2d\x3d\xbd\xe3\x4a\x50\x0e\x41\xbc\xa2\x76\x39\x91\x9e\x58\xbc\xe8\x59\x82\x53\xd4\xd0\xa7\x9b\x86\xb3\x81\x1a\x70\x7f\xdd\xa4\xee\x14\x86\xd8\x64\xbc\x11\xe4\x29\x17\x36\xff\x3b\x90\xbf\x96\x9f\x0d\xaa\x85\x0f\xf5\x53\xd8\xd6\x0d\x1b\xd4\x16\x9e\xa6\xfa\xa5\xf9\xba\xc5\xb9\x83\xe3\x0b\xfc\xd6\x4e\x28\x0c\xf1\xe6\xb6\xec\xf6\x1b\xec\x01\xb8\xca\x94\x1f\x4b\xb9\x84\x33\x20\x84\x77\x12\x95\x83\xb5\x15\x30\x72\x09\xfe\xa4\xb6\x15\x9c\x3b\x2f\x17\x39\xcc\x68\xe1\x7e\x55\xb3\xa6\x21\x2f\x82\xd1\x13\x08\x07\xab\xb0\xfa\xd9\x2e\x39\x0c\xd9\xc5\x6c\xcb\x55\x6f\x9a\x95\x01\xa6\xe6\x65\x7f\xcd\x53\x27\xb6\x0e\x8c\x5c\x51\x5b\x74\x3f\x84\x9b\x31\x71\xb0\x27\x68\xe3\x09\xef\xc8\x85\x72\xb3\x3f\xe0\x87\xf0\x34\x45\xe5\x40\x5e\x0f\x8f\xbd\x0a\x82\x05\x6d\x93\xca\x14\x07\x55\xf8\xb6\xa4\x46\xb1\x8b\x17\x76\x84\x14\xde\xfa\x23\x3b\xcb\x19\xf3\xc4\x37\x11\x31\xdb\x32\x68\xfa\xf7\x2e\x5d\xeb\x47\x4d\xba\x59\x5b\x33\x92\xf6\x8f\x55\x4f\xa5\xff\xf3\x07\xa3\x51\x92\xf6\xb3\x90\x5d\x82\x3e\xfd\xcf\x08\x6a\x78\x72\xf6\x79\xa2\x0d\x06\x41\x95\x66\xe7\x58\x68\xbe\x6e\xac\x44\x2a\x82\x1a\xe7\xca\x20\x19\x7a\x51\x17\xce\x24\xf5\x9a\x4e\xf1\xbc\xd6\x15\x9b\xee\xbe\x6a\x16\xa1\x06\x52\x6c\xeb\x5b\x62\xaa\x71\x39\x57\xa3\x6a\xdd\xe2\x56\x98\x78\x6d\x4b\x15\x1c\xdc\x8a\xd6\x87\xdd\x52\xd2\x2f\x77\x1f\x31\x5d\x97\xc2\x16\x7b\x6f\x7a\xce\x58\xa4\x42\x50\x6a\x05\x2c\xcb\xfa\x5e\x75\x19\xcc\x93\xc4\xbc\xf9\x4a\x6d\x8e\x36\xd5\xa2\x4f\x5d\x3a\x35\xa7\x06\xe8\x30\x52\x59\x49\x2c\x1c\x67\x6d\x4e\xfb\x61\xb7\x46\x70\x0d\x06\x58\xd2\x89\x71\xdb\x40\x50\x73\x2c\x22\xaf\x33\xa8\xf5\x31\xd4\x30\xe2\x06\x2b\x6e\x0d\xb9\x0c\xf1\x78\x80\x61\xd1\x78\x0d\x86\x1b\x54\x0b\x8d\xf9\xa1\x9a\x1f\xf4\xb7\xd7\x6d\x5c\x40\x1c\x43\x78\xd1\xdb\xd0\x3b\xb7\x7c\x4d\xfd\x71\xb0\xc9\xa9\x20\x6c\xa1\x6e\x8d\xe6\xa1\x91\x78\x0d\xb0\xfb\xa9\xfa\x88\x68\x86\x6c\x05\x04\x34\xb5\xba\x41\xb4\xfb\x5a\x17\x21\x4a\x41\xbd\xc7\x64\xfe\xeb\x78\xbc\x4a\xcc\x87\xc6\x1a\xb2\xad\x5a\x76\xe6\x88\x9e\x1e\xfe\xe1\x7e\xf1\x48\x16\x32\x6c\x7e\x46\xf7\x2e\x9c\x28\xe8\x0c\x77\x41\x1e\x73\xd5\xc1\xfb\x9a\xc9\x86\x37\x0b\x06\xa2\xef\xd9\xaf\x49\xa0\x8c\x0b\xd4\x46\xfe\x98\x1d\x64\x4f\xe8\x04\x82\xdc\x69\xbd\xc0\x10\xa0\xf0\xda\x96\xfb\x5d\xd4\x76\x93\xd1\xf2\xc8\xf4\xd0\x46\x5b\x0a\x2f\x16\xfc\x1a\x76\xc1\x4e\x2b\xc3\xaa\x9d\xdc\x1f\x8f\x88\xb6\xef\x39\xef\x23\xe2\x53\x2c\x7c\x3a\x50\x40\x12\x09\xa8\x1f\x89\xde\x6d\xab\x0c\x10\x55\x3f\x60\xf3\x93\xd8\x31\xc9\x0d\x8e\xaf\x61\xc6\xc4\xf5\x5f\x98\xeb\x07\x7d\x4a\x23\x66\x95\x5f\xfa\xd0\x02\x72\x3d\x8a\x07\x59\x8a\x11\x35\xff\x0d\x33\x5c\xfc\x14\xad\x2a\x93\xa9\xd7\x1a\x51\xb9\xa6\xf8\xb8\x22\x47\xce\x6d\xf4\xc1\x0d\xfd\x7b\xbc\xdd\x3e\x2e\x8a\x07\x13\xa3\x0e\xa4\x1f\x37\xec\x81\x25\x98\x2a\x1a\x06\xac\x32\xa8\x29\x10\x25\xa7\x71\xc7\x00\xd1\x3c\xfd\xc2\x52\x40\xc9\x17\x6b\x69\xe1\xf1\x26\xa4\xeb\xe7\xae\xe3\x2d\xa0\x21\x86\xe7\xad\x4b\x98\x55\x88\x7b\x61\x38\x92\x81\x10\x1e\x64\x0d\xbc\xa6\x6f\xed\x9e\xbb\x80\x51\x89\x8e\xd8\xf7\xf6\x00\x4a\x24\x88\xde\x41\x84\x04\xc2\xaf\x47\xaa\x13\x80\x27\x00\xa7\xc4\x5f\xdf\xf6\x3f\x53\x04\x9e\x6a\x7c\x8a\x04\xee\x12\x82\xa7\x02\xb6\x5a\xda\x4c\xe8\x1b\x5e\x2b\xf2\xe5\xb3\x82\x20\x30\x2a\x67\x04\xbf\x3d\xd8\xba\x69\x3e\x4a\x20\x9c\x39\x3e\x7d\xce\x8a\x03\x40\x4a\x26\x87\x3a\x7c\x15\xe7\x92\x68\x59\x2d\xc2\xc0\xb0\xcf\x39\x61\xa2\x8b\x05\xcf\x71\x9b\xfd\x5d\xd4\x8e\xa7\xf8\x95\xfe\x2f\x26\x0c\x07\xa2\x2e\x27\xe7\x16\xf8\x88\xad\x21\x7c\xae\x3a\x0b\x04\x4d\xa9\x6f\xc3\xb8\x2d\xb5\xa6\x67\x76\xfe\x65\x0e\x21\x53\x8e\x20\xb1\x77\xea\xcc\xd7\xee\xfc\xdb\xf8\xd6\x47\x3f\xcf\xcd\x45\x6e\x0c\xe6\x6e\x70\xbd\x5b\x5c\x7c\xeb\xc4\xb6\x6c\xb5\x58\xc1\xc3\x35\x8e\x5d\xe8\x1a\x6c\x58\xa1\x3f\x1e\xd1\x9d\x8b\xad\xa8\x87\x6a\x1c\xf4\x61\x19\xd6\x05\xdd\x43\x50\x61\x38\xc7\xb2\x64\xd6\xc9\x7d\xbd\x3a\xf9\x89\xab\x88\x28\x03\x72\x77\x40\xef\x60\x9e\x30\xb1\xf5\x41\xcd\xed\x82\xd2\x88\xaf\x89\x75\x15\x79\xc1\xf4\x0e\xfc\xa3\x80\xe9\xe0\x0a\x7c\x00\x68\x48\x39\x27\xfe\x21\xa6\x8b\x52\x2c\x8f\xfc\x0b\xfb\x40\x49\x25\xe6\x46\x7c\x17\xe7\x7a\xc4\xec\xa9\x6c\x7b\x78\xf6\x8d\xd1\xce\x9e\x06\xb4\x80\xb2\x6f\xa9\x99\xc7\x90\x95\x24\x1a\x24\x06\x21\xeb\xaf\x5a\x06\xf8\x80\x05\x26\x5b\x54\x7e\xaa\x8a\x3d\x51\x1f\xcf\xc5\x6d\xf5\x7e\x17\xd7\x4b\x2b\x1e\x37\xef\x07\xeb\x1e\xcc\x27\x84\x08\x17\x2a\x18\xae\x9d\x4b\xef\xb1\xdc\x4d\xb5\xcc\x4c\xc8\x29\x34\x14\x07\xf0\x3c\x4e\xbd\xeb\x5e\xc8\xaa\x84\x0f\xc1\x06\x4c\xcc\xb4\x4d\x4c\xfa\x21\x1d\xcd\x47\x8c\x2d\x71\x07\x75\x52\xd5\x9d\x56\x68\x23\x42\x18\x60\x69\x50\x1f\x10\x16\xd8\x8a\xd9\xec\xf3\xf0\x39\xc4\x9c\x86\x31\xb6\x33\x40\x48\x12\x12\xc6\x00\x51\x95\xd9\xb8\x80\x8e\x0a\x47\xca\x83\x8f\x9c\xe2\x54\x9c\xe0\x02\xb3\x42\xcf\x03\x9b\x08\xb3\x83\xbe\xc2\xd8\x40\x10\xf0\x7a\xd4\xb4\xf7\xcd\x3b\xf2\x26\x51\xce\x56\x84\xe5\x4e\xb6\x3e\xab\x8b\x72\xc7\x31\x2e\x59\x77\xb9\x94\xdd\x56\x78\xfe\x1d\xad\x7e\x77\x5b\xab\x62\xc9\x35\xd5\xac\xd9\x34\xaa\xb3\x3b\x16\x2d\x07\xa6\xbe\xa3\xb5\xef\xad\xb5\x70\xcb\xfa\x58\x96\xbb\xa0\x89\xb8\xfb\x81\x8f\x07\x98\x67\x6c\xaa\x35\xc1\xd1\xd4\x8d\xd1\xfc\x9e\x0f\x30\xf1\x28\x46\x8b\xbf\xfe\xd7\xdd\xec\x0e\x97\xaf\xf1\x02\x31\x2d\x27\xa2\xa9\x43\xd3\xe9\x60\x58\xcb\x93\x05\x9c\x1b\x56\xb6\xc6\x92\x27\xaa\x12\xeb\xdd\x81\x7d\x92\x77\x84\x76\x5d\xb3\x02\xed\xe1\xee\xc5\x06\x9a\xe9\x84\x61\xa6\x03\x65\xeb\xf7\x90\x58\x53\xf1\x79\xe0\xf1\x9c\x04\xc9\x87\x0b\x0c\x3c\x0d\xa2\xba\x62\x4f\x83\xa0\x83\x42\x45\x87\xea\x39\x99\xac\x43\x29\x2f\x9c\x5a\x8e\x77\x50\xc1\xb3\x3d\xd3\x18\x62\xfa\x12\xc0\xd0\xb5\x5c\x73\xaf\xd7\x4d\x10\x32\x46\xdc\x1f\xb0\x17\x85\x1d\x99\xc5\x63\xbd\x16\xf1\x44\xf1\xa2\xc2\xca\x40\x8a\xb1\xbd\xc5\x44\x19\x1c\x79\xb7\x7b\xda\x3a\x37\xd5\x47\x28\xc3\x88\x30\x25\xa8\xf0\xf9\xe5\x15\x34\x60\xb4\x00\x68\x1f\x5d\x31\xdf\x4d\xff\xb2\x2e\x6b\xc4\xb9\xe4\xd8\xbe\xca\x88\x16\x0b\xf6\x5a\xaa\x6a\x0d\x02\x78\x5d\x9a\x2d\x79\x5d\x6c\x84\x6d\x85\x7e\x6d\x26\x3d\x88\x26\x2c\x45\xfc\x5e\x5e\x69\xdd\xae\x5c\x90\x4c\x3c\xe3\x9b\xad\xb6\xc6\xa3\x08\x2e\x54\xfb\xad\xf6\x3e\x6e\x24\x30\xbc\x61\x85\x59\x80\x16\x45\x49\xa8\x00\xd6\x3d\x78\x84\x9e\x21\xe8\x94\x14\x6c\x18\xbe\x4d\x06\x06\x7f\x15\x13\xe6\x8a\xd9\x75\xaa\xe6\x22\xb7\x79\x86\x1c\xec\x43\x18\x84\x51\x9a\xbe\x43\x14\x1e\x56\x35\xf3\x7a\x05\x53\x26\x4c\x80\x74\xbb\x46\x0c\x3c\xdf\xe9\xe7\x18\x48\x4e\x4b\xdc\x93\x57\xf2\x35\x06\xd9\x69\x38\x25\x17\x58\x69\x0c\x32\x6f\x0a\x3e\xff\x3c\xa7\x3f\x63\x21\xda\x45\xe0\x37\x49\x1a\xc4\xb9\x63\x97\x7c\xb9\x48\xe6\x0c\x42\x77\xb9\x59\x4a\x78\x05\xd6\x1c\xe1\xb8\x27\xca\x3e\x36\x65\x96\xe0\xa1\x6c\x37\x86\x0a\xd4\xc1\x0e\xbe\x23\x88\x9c\x16\x6a\xf2\xd4\x19\x37\xf4\xae\x1c\xf6\x09\x17\x13\xd6\xaf\xd7\x22\x83\x60\x1a\x70\xb8\x95\x30\x77\x47\xbc\xb5\xf0\xb9\xd0\xae\x0a\x6d\x03\xda\x49\x68\x3b\x76\x8b\x22\xa2\x46\xc4\x12\x03\x11\x19\x56\x4c\xad\x02\xab\x62\x0b\xf7\x0d\x62\x03\xc2\xc6\x3d\x52\x2b\x70\x46\x90\xd8\x7f\x8f\x20\xfc\x45\x26\x80\xcc\xdf\x6a\xb8\xcf\x28\xb8\x3f\x2b\xbc\x8a\xd6\x43\xc0\x51\xa2\xa7\x11\xd0\x51\x0d\x58\x27\x9a\x5c\xe6\x14\xa6\xc8\x0d\x14\xa6\x8c\x2b\x36\xbe\x0c\x56\x37\x6f\xd3\x24\x1c\x89\x14\xdd\x96\xab\xbc\x2d\x2c\x8e\x8b\x72\x1a\xf6\x65\x01\x47\x09\xdd\x76\xf3\x0d\x1d\xbe\xb5\x0a\xe2\x8c\x04\xf2\x91\x2d\x9f\x68\xbe\x59\xc6\x31\x7d\x03\x4b\x8b\x85\xb0\x31\xf6\x1c\x24\xe6\xb2\xdf\x31\xbf\x11\xe6\x65\xed\x60\xc8\x0f\xff\x78\x79\xfe\xf6\x28\xfd\xfc\xf8\xfa\xfa\xfa\x31\x17\x7f\xbc\x6f\x37\xec\x63\x57\x70\x9c\x98\xff\x79\xf6\xe6\x28\x2d\xfb\xc5\xa3\x19\x1d\xd4\xdb\x58\xbd\xa5\x56\xa6\xb8\x7a\x60\xea\x62\xd1\xf1\xf7\xb3\x27\x5d\x31\x1a\x76\x3d\x0c\x47\x16\x6e\x90\x3c\x7b\x66\xdf\xa1\x93\x29\x76\x1e\xfe\x70\x58\x2e\xda\x12\xe6\x11\xf8\x08\x32\x36\x74\x26\x98\x8a\x0f\x30\x04\xa9\xa8\x1d\xed\xc6\xeb\x85\x86\x7d\x1f\x80\xd8\x6d\xe0\x09\xee\x01\x5d\x26\x26\xce\x6d\x2b\x1c\xf0\xae\x5b\x37\xfb\x4d\x11\x73\x4c\xc2\x99\x4e\x44\x59\xfc\x34\x2c\x0c\xf3\x45\xc4\x6d\x7e\x9a\xfe\x91\x35\x45\x3c\x51\x42\x5b\x9c\x65\xb4\x05\xe0\xd9\xb0\x30\x22\x10\x06\x82\x31\x0d\x40\x22\x2b\x9a\x60\xee\xf3\x9c\x70\x3e\xaa\x44\xcf\x6f\x6c\x57\xd1\xa7\x5b\x77\x9e\x03\xad\x49\x75\xe3\x22\xb1\x9e\x6e\x3a\xdb\xf0\x22\xf6\x8c\x12\x3b\x3e\x5f\x99\x12\x6b\x0a\x0f\xa9\xd8\x6e\x4e\xa2\x28\xe0\x8f\x00\x65\x2e\x12\x1a\x93\xfa\xb5\x0b\xc6\x94\x6a\xc8\xcd\x72\x98\x11\xc4\x54\x28\x7b\x78\xb3\x4f\xad\x45\x39\x51\xbb\x59\xf3\xab\xc7\xf8\x9b\xee\x70\x22\x99\x88\x03\x50\xc4\x3d\xc0\x3a\x62\x99\xeb\x7a\xb8\x8b\x0d\xc5\x2d\xe5\x4d\x5e\x94\x51\xde\x34\xda\xae\x15\x70\xd0\xc6\x68\x97\x54\xe9\x78\x2c\xf3\xfb\x16\x0e\x09\x04\x62\xc5\x93\xe9\x28\x2d\xac\x0c\xbc\x28\x4f\x5d\x5a\x2c\x5e\xd9\x2a\x05\xdf\x8d\x97\x28\x23\x44\xd6\x51\xc8\x51\x59\x50\x8b\xef\xfc\x19\x04\xce\xbf\xec\x74\x60\x06\xfa\x23\xd7\xe7\x50\x84\x96\x5a\xcd\x8d\x4d\xdc\xed\x06\x99\xc3\x77\x2e\x86\x2b\x9b\x64\x35\x79\x29\xe9\x44\xbe\x42\x6c\xed\x36\xcd\x8d\x79\x87\x9f\xe2\x97\x86\x8f\x09\x47\xe6\xc1\x74\x50\x1e\x32\x50\xbe\x34\x59\x5c\xdd\x5f\x83\x70\xa9\x2a\xe2\xd6\x7c\xde\x45\x51\x82\x09\x8f\x31\x91\xc2\x7b\xa2\x7b\x13\x0e\xc6\x0e\x6a\xe8\x0a\x7d\xea\x5a\x38\xe0\x0a\x1d\x17\x0d\xdd\xa1\x83\xa2\x5f\xe0\x0e\x1d\x23\x69\xec\xec\xec\x87\xfa\x05\xfe\xce\x53\x83\x1e\xcb\xb5\x53\x88\x9f\x28\x30\x25\xdd\x16\xe1\xd8\xbe\xc0\xef\x79\x70\xb2\xfd\x12\x01\x77\xaa\x27\x1e\x25\x01\x72\xef\xd2\xf8\x16\xd5\x72\x39\x9b\xb7\xcd\x75\xc7\xce\xc5\x78\x34\x82\xb9\x2c\xff\x4e\x2f\xf1\x5b\x40\xf8\xaa\x1f\x44\x21\x1f\x92\xa8\x16\x45\x4f\xf5\x66\x4f\x12\x71\xcf\x3a\x0c\x55\x7f\x4a\x39\x72\xe7\xfa\x96\x4e\x62\xc7\x96\x33\x93\x22\xb4\xd1\x5d\x67\xfc\x05\xb7\x68\x68\x9f\x59\x59\x8a\x42\x97\x9c\xa2\x60\xfc\x69\x08\xb7\x5d\x09\xc6\x6c\x72\x2b\x2d\xe2\xab\xd7\x1c\x81\xb0\x0c\x8e\xc0\x88\x18\x2a\xc8\xa7\x1e\x24\x74\x7f\x24\x08\xc3\xa5\x87\x50\x04\x61\xd1\x3f\x7f\xfd\x56\x7e\xc2\x42\x5d\xc3\x11\xc1\x44\x9d\x2f\xc7\x13\xb3\x7b\x9f\x4d\xd9\xbf\x5b\x9e\x38\x28\x88\x9a\xc3\x5e\x79\xc3\x2f\x07\x51\xb4\xf9\x12\xd7\x40\xfc\xd7\xa5\x92\x0c\xec\x8b\x5d\xb4\xe5\xe3\x61\x31\x42\x8e\xa0\xfa\x12\x1f\x2e\x5d\xaf\x71\xf8\x8f\x4b\xcb\x61\xa2\xf1\x34\x18\xb9\xc7\x88\xd9\x02\x10\xdd\xdd\xef\xd2\xae\x62\xdd\xa9\x12\xe8\xa0\x41\x50\x87\x8f\x23\x0c\xda\xc1\xbb\x67\x06\x41\x3b\xb4\xf3\x70\xa6\xcd\xba\x16\x27\x4b\xcb\xc3\xb1\xd5\x42\xa2\x45\x65\x7c\x30\x61\xd3\x06\x7b\xf7\x0b\xca\xc7\xee\xbf\x08\xbd\x3a\x58\x14\xe0\x98\x0f\xac\x0e\xea\xd6\xb3\xe1\x44\x38\x75\xa6\xe2\x2c\xc5\x6f\x07\x65\x92\x21\x93\x4b\xb6\x2d\x02\xe1\x50\x08\x28\xdc\x56\xce\xf2\xf6\x23\x3f\xa0\x00\x03\x32\xab\xe0\xba\xd5\x30\x56\xfc\x37\x9c\x31\x7d\xbe\xe3\x42\xbe\x46\x0d\xc6\x46\xdf\x28\x0d\x7d\x80\x31\x53\x57\x80\xa5\x59\x11\xc9\xde\xc8\x97\xbc\x4d\x37\xa4\x8c\xb1\xaf\x3f\xe5\x3d\x1e\xce\x5b\x00\xef\x10\xfd\x97\xf2\xdf\xff\xf7\xff\x63\x75\x69\x43\xbb\x25\x02\x73\x68\x6c\x4b\x3f\xef\xe6\x25\xe7\x1f\x9c\x79\x0c\x1e\x1d\x74\x44\xd0\x9f\x6a\xac\x0b\xfa\x1a\xd1\x28\xbf\xc1\x60\xf4\xcd\x66\x74\x03\x22\xc7\x21\xd1\x93\x39\xae\x1e\x87\x75\x18\x51\x65\xba\x47\xb8\xd8\x7a\x36\xb9\x98\x34\xf4\xbc\x57\xa2\x9b\xde\x52\x92\xf7\x4d\xbb\xfa\xe0\x23\xb0\xba\x89\x88\xa2\xaf\xe2\x64\xc8\x30\x2e\x86\xd9\x01\x40\x1f\xd7\xcc\xd7\x68\xe8\x7d\xc9\xc4\x3a\x7e\x21\x4c\xce\xe5\x12\x02\x1b\x46\x62\xe6\x38\x3c\x33\x77\x26\x09\xe0\xa8\x17\xd8\xd1\xd3\x8d\xf0\x32\x32\x95\xa5\x49\x77\x45\xa2\x37\xab\xec\x1f\xc3\x1f\x1c\x63\x93\x1f\x9b\x63\xaa\x92\x3b\xb1\xd7\x48\xa0\xe5\x8a\x04\xc4\x8f\x85\x5f\x10\xff\x4d\x10\xb5\x4f\xf5\x6a\x9c\xaa\x5f\x9a\x3e\x88\x0c\x18\x3d\xb0\x10\xb8\x5f\x21\x62\x68\xf4\x6a\x02\x57\x0e\xac\x4c\x5c\xaa\x8f\xe2\xc8\x02\x85\x48\xbd\x0d\x3a\x72\xf2\x7d\xb0\xc1\x45\x8a\x86\xa1\x82\x7a\x9a\x8d\xb5\x6a\x11\xf9\x40\x09\x88\x62\x5a\x47\xd6\xa3\xdd\xcc\x37\x13\xac\x84\xb5\xdc\xb8\xfb\x62\x78\xbb\x68\x4e\x6b\xe2\x27\x81\x8f\xbc\x1c\xf5\xb0\x96\x8b\x57\xbd\x24\xa7\x1b\x92\xfb\x37\xd1\xe9\x0d\x15\xb1\x84\xf6\xd3\x01\x0f\xd7\x71\xc4\xdf\xaf\xf7\x71\x1d\xd7\x71\xbb\x97\xeb\xef\xbd\xec\x9d\x8e\xe6\x17\xaa\xa8\x06\x61\xfd\x5c\xd6\x54\x7c\xbf\xdf\x73\xf5\x1a\x83\x06\x82\x4f\x84\x02\x57\xd3\x97\xaa\xf8\xf5\x46\x97\x28\xf5\x1f\xbb\xd0\x8d\xe3\xdc\x0e\x7b\x3d\x0a\x44\x17\x75\xfa\xeb\x02\xd2\x1d\xbc\x19\x8d\x78\xc5\xf0\xc8\x36\x8a\x2a\x81\x01\xde\x5a\x24\x8e\x31\x11\x76\xd8\x29\xe9\x82\x9b\x36\xd5\xdb\x4b\x74\x09\xd1\x3c\xdf\x1d\x62\xe2\xc0\x55\xc6\x6d\xb1\x26\x86\xbd\x64\x1e\xe3\x7c\x23\xc2\x4e\xde\x5a\x22\xdc\x35\xe3\xdb\xf0\x7f\x24\xfe\xc4\xf4\x75\x01\x1f\xe9\xae\x4d\x93\x85\x3d\xd6\xf0\xe7\xf5\x03\x7c\x24\x30\x7c\xc9\x99\xc1\x33\x5a\x8f\xb9\x3d\x1e\xb9\xeb\x87\x9d\xe6\x58\x3a\xc2\xb5\x67\x7a\x3b\x66\xa1\xa7\x06\xe9\x9e\xe5\xc1\x36\x59\xef\xff\x3c\x90\xfc\x86\xf4\x32\x99\x33\x2c\x1f\xb7\x11\xbb\x02\x58\xaa\xbb\xb1\x39\xc3\x87\x4b\x27\xac\x2d\x4a\x84\x05\x38\x91\x2f\x97\xa3\x47\x27\x8d\x55\xed\x3b\x21\x71\x88\xe1\xbe\x13\xa4\xea\x6e\xa7\xb8\x66\xff\x63\x9a\x94\x9b\x1d\x4f\x61\x9e\x3a\xe5\x1d\xbb\x9f\xcb\x2e\x28\xd2\xa3\xf6\x0a\x02\xef\x0f\xc3\xba\xe4\x49\x19\xdd\x35\xdf\x36\xd7\x89\x6c\x99\x33\x78\x24\x48\xdc\x5c\x4d\x89\xbb\x24\x69\x2c\x72\x68\x50\xa3\x54\xa2\x37\x68\xd8\x9b\x71\xfe\x20\x54\x00\x76\x0c\x17\x24\xc0\xc2\x60\xb3\x3c\xa9\xbe\x2f\xb5\xdc\x98\xc4\xbe\xf3\x52\x2b\xe4\x51\xdf\xac\x08\x96\x51\xbb\x21\xc4\x97\x34\x8c\x17\x84\x87\xcd\x1d\x99\xba\x0a\x51\x12\x55\x8f\x26\xe1\xe0\xa4\x15\x7d\x16\xd6\xfa\xe1\x5e\x66\xf3\xfd\x08\x21\xbe\xa4\x1f\xdc\x0a\x6c\xbc\x31\x89\xb7\xf5\x87\xce\x7a\x1a\xf4\x31\xba\x97\x1f\x76\xd1\x7b\xa4\x5f\x05\xfb\x34\x6c\x41\x8a\x81\xdc\xc1\xda\xe1\xf1\x86\x29\x39\x72\x67\x3b\x21\x1a\x88\xc9\xce\x64\x3c\xa8\xbb\x97\x38\x8c\xe9\xb9\xa4\x03\x0d\x8c\x71\x3c\xd8\xe4\xae\x23\xfd\xf2\xa2\x1c\x64\xab\x33\x95\xe7\x24\xf3\xee\x0d\x57\xe0\x2c\x12\x92\xc8\x75\xe1\x96\x01\xc1\xce\x66\xb2\x90\x37\x01\xdc\x1a\x67\x56\x17\xb4\x3a\xae\xcc\xb1\x6a\x40\x39\x16\x3d\x86\x33\xde\x19\x4a\x65\x81\xee\x94\x99\xf2\x91\xc9\xaa\xce\x52\x00\x50\xdb\xfc\x26\xb2\xc5\x81\xe9\xf0\x36\x7e\x43\xf7\x16\x75\xcb\xb8\x2b\x7e\xd7\x96\x40\xfb\x8e\x60\x0e\xea\x58\x66\xe1\x52\x1f\x13\x88\x27\xbb\x55\x0b\x3f\x03\x9b\x6b\x66\x16\x01\x29\xa0\xc2\x1f\xdc\x28\xdd\xd3\x8d\x9e\x1b\xe0\x32\x98\x2a\x7a\x70\x1b\x53\xf8\x8a\x0e\x80\x6d\xdc\xde\x03\xb0\x05\xf1\x2e\xa3\x6e\x04\x2c\xe0\xb6\x8e\xe8\x9b\x8b\x5f\xde\x11\xf0\x8d\x2f\xec\xc8\x91\xf5\x42\x83\x54\x17\xc5\xe4\xfa\xbf\xad\x7f\x83\x63\x0e\x88\x33\x8a\x82\x3e\x20\xf8\xe8\x8d\x78\x47\xf4\x81\x55\x9a\x55\x0b\xfb\x07\xb5\x92\xd3\xed\xcc\x57\x55\xd3\x14\xe2\x64\x5a\xf7\xa1\x25\x5d\x1c\x79\x84\x8d\xb8\xfa\xf6\x46\x45\x12\x1e\x5c\x1c\xf8\xc4\x1b\xd0\xc8\xe1\x0b\x37\xba\x12\x19\xff\x3d\xd0\xfe\x21\x71\xcf\xfe\xf1\x52\xb6\xef\x44\xde\x03\x95\x5b\x2d\xc4\x26\xf7\x41\xc9\xd3\x61\x90\xf2\x5b\x03\xc4\xc7\x81\xf1\x87\x2f\x24\x74\x12\x47\x6c\x65\xb2\x9c\x3d\xb6\x98\xa8\xe1\x10\x33\xd6\x1b\xc2\xc1\x16\x2f\xed\x2e\x38\x56\x70\x53\x57\x62\xa2\x72\x26\x5f\x34\xf6\x04\x63\xca\x76\x12\x85\x01\x0f\xe5\x4b\xfc\x46\x4d\xe1\xf8\x8d\x49\xdf\xf4\x10\x28\xae\xf8\xef\x0f\xe9\xfd\x22\xf1\x43\x87\x22\x91\xf5\x49\x2a\x25\xc8\x77\x90\x1f\x44\x33\x87\xd9\x7a\x6b\xf1\xd9\x7d\x0d\xe8\x26\xd4\x95\xfb\xa0\xdb\xda\x49\x54\xba\xef\xa6\x5a\xcc\xf8\x12\x34\xd5\x2b\x60\xf7\xde\x3a\x73\x10\x7e\x02\xad\xe0\x27\xd0\xe4\x75\xd6\xa3\x20\x21\x9a\x90\x30\x63\xe7\x82\x8a\x46\xc9\xf1\xae\xe8\xd3\x11\xb6\x25\x4e\xe2\x58\x2d\x51\x42\xbe\x18\xb5\x62\xca\xea\x30\xcd\xcc\xe1\x7c\x8a\x19\xc6\x45\xb5\xc7\x81\x25\xc3\x2c\xb1\x26\x8c\x92\xf4\xed\xc7\x78\x24\xa2\x3f\x0d\xd3\x36\xcd\x8a\x1f\x31\xb0\xb7\x85\x83\xe1\xa9\x60\x1d\xd7\x69\x96\xd1\x51\x15\x70\xb2\x0c\x53\x70\x87\xd5\xe7\x5d\x5c\x1a\xeb\x33\x4c\x50\x07\xf5\x11\x20\x1d\xb4\xf3\xc5\x5a\x1d\x75\x26\x08\xc9\xce\xcb\x8e\x98\xe4\xd0\x3c\x05\x29\xef\x73\xa6\xf6\x1a\xe7\x24\x0c\xbf\xbc\x8e\xc7\x4f\x83\x5c\xf6\x34\x60\xb7\x16\xc4\xde\x6c\x34\x7a\x15\xbb\x1d\xb8\x38\x9b\xe9\x39\x96\x63\x77\x6b\xa1\x60\x8b\xe3\xf0\x06\x1a\xdb\x53\x4b\x8a\x38\x72\xcb\x5e\xe7\x6b\xd6\x5d\x53\x8d\x3b\x82\xb7\xda\x3a\x2f\x44\xe4\x70\x83\xd2\x4b\x56\xcb\xfe\xa2\x3a\x06\xbd\xf4\x10\xae\x9a\xaf\xef\x2a\x54\x6a\x1c\x1f\x86\x7a\x33\xe8\x64\xc4\xf3\x0c\xe4\x8e\x1a\x06\x5d\x9c\xac\xe2\x2b\x3a\xc9\x0f\x06\xaf\x16\xee\x99\xd3\x53\x8e\xe9\xdc\xce\x99\xe3\xf1\x06\x57\x2e\xcc\xc3\x2b\x52\xcb\x4d\x17\xbf\xad\x67\xe8\x10\x1f\xc8\xa7\xaa\x3f\xd4\xb7\xb6\xec\x6e\xea\x45\x86\xd7\x6e\xbb\xb5\x5e\x4a\xbe\x2b\x45\x2f\xfe\x60\x46\x69\x4f\x72\x8d\xa0\x56\xe2\xfa\xae\x7b\x20\x61\xff\x1f\x2e\x28\x1d\xb6\xc2\xb4\xff\x3d\x06\x4f\x44\x69\x93\xee\x48\x76\xeb\x1f\xdd\xda\xd0\x60\x2c\x01\x43\x0c\x70\xdb\xa2\x2b\xfc\x3e\xff\x17\x8c\x20\xb8\x10\x0f\x87\xc1\x64\xa0\xab\x1f\xbc\x22\x7c\xa5\x86\x11\xf7\x90\x8d\x1b\x38\x4a\x37\x5b\x6e\xa8\x45\x94\xee\x76\xf6\x9a\xb1\x5e\x53\x1d\x18\x50\xd8\xee\x2d\x33\xf4\x20\xea\xc5\xdd\x63\x0c\x37\x21\x79\xb1\x7e\xbf\x63\xeb\xdd\xd4\x3d\x55\xff\x0b\x7e\x87\x4c\x41\x1e\x12\xc8\x56\x4d\xdb\xd0\xf4\x48\xb0\x1d\x7d\x5c\xe0\xa5\xa5\x75\x13\x05\xa0\xc0\xbe\xc9\xf6\x1a\x20\xc9\xca\x9c\x21\x99\x84\x0b\x8e\x96\xe4\x4b\x61\x8b\xb6\x32\xac\x96\x5c\xa8\x32\x1b\x7b\xb6\x95\x3a\xb6\x8c\xa0\xa4\x96\x69\xe6\x6c\x96\xaf\xce\xa2\x00\x3e\xd7\x94\x00\x16\x57\x1a\x1c\xc1\x86\xd0\xb5\xdf\x65\x3c\x54\x84\xda\x90\xe4\xf4\x0d\x92\xd3\x2b\x4e\x1e\xb7\x60\xbd\x72\xc5\x06\x9d\x3a\x54\x8e\xa3\x1a\x0c\xcb\xbc\xe0\xe0\x07\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\xdc\xf6\x0f\xe1\x6b\x16\x15\x0f\x94\xd0\x3d\x7b\xd8\x2b\xbd\x9f\x19\xf5\xaa\x99\xff\xad\x5c\xf4\x9d\x41\x9f\xcb\xcf\x00\x6a\xde\x34\x3d\x3f\x8d\xbb\x63\x71\x0b\x56\x58\x82\xa6\xe7\x96\xce\xe2\xd6\xe2\xe3\x08\x53\x02\x3d\x46\x95\x40\x1f\xc6\xd5\x96\x23\x2e\x52\x5b\xed\x7e\xd1\xef\x69\x81\xba\x06\xcf\x2e\x39\x52\xe3\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\xde\xca\x61\x85\xfa\x7c\xbf\xf8\x58\xf6\xec\xda\xb3\xce\x70\x9b\x1c\xd6\x75\x61\x60\xe9\x73\x80\xa5\xaf\x08\x2c\xbd\x82\x8a\x66\xa2\x56\xda\x74\xb6\x65\x9f\xc3\x2a\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\x8e\xa3\x23\xbb\xdf\xe2\x66\x21\x4f\xc8\x70\x64\x1d\xea\xc3\x3b\x49\x09\x60\x71\x92\x20\x58\xe3\x91\xb8\x00\x47\x48\x78\x02\xbf\x8a\x19\xa5\x70\x30\x0f\x2c\x8c\x8b\xe0\x2e\xd8\x3f\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\x8d\xbc\x06\x54\x27\x9a\x83\x3d\x12\x4c\xe4\x2d\x9c\x3a\xa7\x29\xec\x9d\x2f\x9d\x2b\x98\x48\xaf\x90\x59\x25\xc5\xe4\x2d\x3c\x83\x67\xdf\x96\x17\x05\x87\x91\xb4\xe8\xd9\x75\x4d\x33\x17\x54\x17\xe4\x4a\xd3\xf5\x2d\x64\x7d\x61\x17\x46\xef\x78\x1d\x90\x6d\x65\xdf\x85\xef\x64\xbf\x0d\xed\xe1\xaf\x1a\x8c\x32\x18\x58\x6c\x23\x64\xc3\xbc\xdb\x0d\x76\xa6\x75\x84\xc1\x54\x74\x64\x10\x90\xcd\x4c\x66\xf0\xfc\x9f\x9a\xcb\x08\xa4\x04\x28\x95\x7b\xae\x4d\x58\x1a\xa7\x17\x3b\x0e\x0c\x6a\x78\x83\x93\x4d\x80\xe5\xf1\xfb\xca\xd0\x2e\xf3\xc1\x5e\x6c\x9e\xa1\x9b\x85\x4d\xda\xbe\xb6\x57\x7a\x8c\x0c\x0e\x3d\x8c\x65\xa1\xb8\xbf\xf0\x6d\x2c\x8f\x8b\x80\x52\x70\x35\x1f\xd3\x48\xd5\x65\x21\x51\x0c\x23\x79\xe7\x03\x22\x61\x70\xa5\x93\x08\x14\x77\xf5\xe1\x4b\xf4\xc1\xcd\xaa\x11\x0e\xee\x30\xd9\xee\x3a\x53\xd3\xc3\x51\x0d\x41\x19\xa8\xf4\x84\xb0\xd9\xe0\x53\x1c\x4f\xc3\x7a\x24\x16\x6d\x66\x33\x76\x57\x5d\x07\x43\xd7\x4e\xe2\xdd\x6b\x55\x0d\xed\xee\xe1\x32\x40\xdf\x7a\x25\x17\x23\x78\xfa\x3d\xc5\xff\x90\x27\x25\xc3\x0e\xf8\x87\x25\x0f\xb4\xff\x4f\x79\x58\x72\xa8\xd1\xee\xe2\xae\x4c\x18\xbd\x1d\x0f\x5f\x97\x38\x60\xf1\xc6\x2f\xef\xcd\xe0\x3f\x14\xb3\xc8\xe8\xc2\x30\x62\x95\x28\x11\xb2\x40\x24\xc4\xa6\x13\x48\xf2\xea\x76\xd3\xb4\x8b\xb6\x0c\xdc\x6f\xd8\x5e\xe0\xf2\x15\xb5\x26\x25\xc6\x61\xeb\xe3\x2e\x48\xca\xf8\x96\x4e\xd2\x55\xd1\x93\x6a\x84\xde\x52\xb5\x76\x33\x68\x7b\xf4\x6a\xcc\xd2\x86\xd1\x60\xa1\xc4\x53\x66\x35\xe8\xf2\x80\x5d\x45\xdd\x96\x52\x12\x8c\xc2\xdc\xc9\x94\x23\x6a\x56\xd0\x7b\x49\x09\x43\x2d\x4a\x8a\x3c\xdb\x86\xd7\x88\xe5\x4b\xd3\xc7\x86\x2e\x41\x27\xb5\x9a\x41\xe7\x82\x5a\x01\x35\xcd\x71\x83\xde\x0c\x6d\x7b\x25\x15\x7e\x55\x6c\x88\xdc\xf5\x9a\xb2\xd3\x17\xeb\x39\x80\xa2\xa4\x40\x79\x52\xc0\x42\x90\x75\x25\xa7\x6f\xc3\xf4\xe0\x25\x37\xe4\xba\x37\xdc\x26\x60\x02\x33\x94\xbc\xe5\xf8\x8d\x3f\x68\xac\x9b\xe0\x45\x37\xf6\x81\x92\xf7\x61\x76\x1b\xee\x2f\x47\x0c\xc7\x15\x06\x6b\x81\x59\x66\xc8\xf1\x88\x13\x2e\x74\x89\xcd\xac\xc4\xd8\x54\x1e\x1d\x51\x64\xb2\x7c\xa0\x11\xa6\x20\x17\x68\x54\xdc\xe7\x6c\x66\x15\x80\x14\xf6\x00\xb6\x1f\x51\xde\xf7\x6d\x35\xdf\xf3\xbd\xa8\xda\x7f\xf0\xa2\x14\x63\x13\x97\x37\x82\xed\xf6\xe6\x35\x71\xa9\x5f\x87\x61\x07\x0f\xd9\x0f\xe0\x24\xca\x95\x75\x4b\x62\x5c\x59\x15\xb8\x56\x70\x00\x72\xd9\x18\x41\x6c\x79\xc7\xc9\xba\x9c\x97\x27\xf1\xd6\x22\xbd\x3c\xd6\x9c\x6e\xdb\xef\x2c\xde\xfb\xe5\xd9\xd5\xc5\x2d\xb4\xc4\xa0\x4a\x13\x80\x0c\x08\x83\xb3\x94\x38\x90\x15\x50\x88\x1a\xdd\xa8\xfd\xb8\x1e\xeb\x61\xb6\x23\xc4\xd6\x4d\xc3\xdd\xb6\xed\xcb\x1b\x3c\xfc\x9c\x3a\x47\xfe\x67\x73\x6f\x29\x33\x4b\xcf\xf6\x9b\xbe\x62\x2b\x30\x6b\x4d\x2d\x91\xf8\xb5\xf9\x72\x97\xb7\x16\x4e\x14\x91\x75\xd2\x07\x47\x0f\x66\xd1\xea\xcb\x7a\x79\xb6\x4f\x5e\x50\xbc\x7a\x73\x49\x9f\x8b\xf6\x46\x2e\x42\x75\xa4\x1f\xab\x1d\x83\xe9\xc3\xcb\x3c\x60\x4a\x01\xec\x9f\x91\x62\x4b\x85\x6f\xcc\xca\xf6\x53\xb5\x70\x04\x73\x71\x7c\x06\xbd\x03\x25\x85\x8b\x4f\x9b\x46\x2c\x20\x93\xfc\x7c\x27\x68\x3a\x9a\x48\xf2\x33\x06\xc2\x2f\x0e\xb3\x2d\xfb\xce\x10\x18\x06\x2d\x19\x8a\x67\xfa\x2c\xa5\x62\x7a\x24\xaa\xc4\xd0\x81\xc4\xe2\x59\xdb\x50\xa2\x8c\x8b\xdc\x65\x79\x3e\x8b\x98\x59\xb8\x73\x0d\xde\x27\xfe\x32\xdb\x9f\xb0\xb2\x40\xca\xb8\x6d\xd0\x93\xf1\x13\xe2\x12\x11\x64\x26\xfc\xd5\x9e\x70\x89\xab\xf6\x4f\xf6\x8c\x4a\x44\x8f\xb9\x8c\xf0\x3a\x61\x53\x73\x8b\x1d\x4d\x50\xfb\x60\xbf\x8f\x2b\xbe\x6b\xdb\x17\x5d\x9c\xe9\xc0\xdc\x3d\x94\xea\xc0\xe2\xeb\x28\x85\xcd\x77\x3b\xb7\x6d\x04\xaf\xf4\x80\x6c\x03\x90\x4f\xc2\x70\x02\x08\x5a\x04\xdd\xa0\x1e\x71\x09\x0b\x81\xd8\x33\x4c\x01\x86\x5b\x8f\x26\x37\xcb\x25\x47\xbd\xe2\xf0\x8c\x1a\xb2\x04\x41\xb0\xce\xd8\xc6\xda\x4a\x8a\xa3\x63\xc6\x4a\x39\x28\xb9\x78\x4c\xf6\xc0\xeb\x3b\x24\xf2\xa9\xc2\xc0\xdb\xbd\x7b\x19\xfb\xdd\xbe\x96\xf3\x52\x90\xa5\x0d\x71\x56\xd8\x08\xa4\x97\xb6\x69\x7a\x7b\x85\x21\x10\x5d\xde\x51\x32\xed\x69\xfd\xda\x21\x98\x6f\xba\x16\x99\xc4\x7b\x0f\xca\xe0\x9e\x6d\x01\x4b\xf9\x71\x21\xea\xf7\xb8\x04\xf5\xfb\x00\xb8\x18\x66\xd8\xc6\x7f\x89\x5f\xc2\xa4\x5d\x8f\xd9\xcc\x53\xa9\xd1\x06\x2c\x69\x43\xba\x09\x71\x50\xcc\x3d\x61\x9c\xda\xdd\xdc\x24\x69\x10\x64\x28\xbd\xf8\xd4\x50\x5e\xf0\xa9\xa1\xec\xe3\x53\xb5\x63\x83\x1e\x74\xdd\xc6\x26\xe2\xf2\xf2\x4d\x3c\xdb\x3e\x37\x78\x5c\x87\xed\xc5\xee\x71\x9c\x56\x8e\x25\x77\x2f\x65\xff\xbf\x47\x41\x09\xc5\x66\x88\x3f\x4d\x1d\xd6\xd1\xfd\xb6\xa9\xfa\xf2\xfb\x7b\xb8\x3a\xbf\xd7\x57\xc5\xfc\xde\xa3\x70\xdd\x54\x30\xf7\x0f\x16\x4e\xb5\x38\x80\x1e\x77\x78\x8f\xde\xff\x4c\xc5\x77\xba\x6a\x4b\xdb\xdf\x4f\x82\x27\x39\x47\x24\xed\xb7\x01\x47\xd0\xe1\x16\x60\x1d\x63\xdf\x91\x36\xc8\xc8\x48\x5e\xe8\xe5\xc5\x42\x36\xd0\x7c\x67\xd5\x3c\x47\xb2\xef\xa1\xc4\x98\xb5\x98\xb3\x6a\xaa\x6f\xfd\x43\xc8\xd8\xd7\x35\xbc\x3b\xac\x88\xbd\xaa\x0c\x3d\xdb\xe8\x01\x66\x28\xd8\xf4\xfd\x65\x2d\x80\xb1\x3b\xf5\xc5\x19\x0f\x38\xd4\x58\x0c\x07\x0c\xb7\xa6\xea\xef\xa5\xc4\x10\x0c\x86\x7d\x46\x87\xe1\xed\x7e\x8b\xd7\x17\x2f\x39\xe4\x19\xde\xcf\x1c\x75\x6b\x47\x92\x7e\x1e\xf6\x08\x09\x8e\x09\x89\xc7\x22\xbb\x6b\x64\x1b\xbd\xe1\x12\xaf\x46\x38\x6d\xa4\x6f\x70\xa5\xe5\xb0\x43\x9b\x90\x17\x4b\xa3\x42\xef\x38\xcf\x89\xb1\x13\x85\xcd\xd9\xd9\x91\x8a\x39\x13\x4e\x92\xca\x6f\xfb\x72\x4f\x95\x97\xf5\x0a\x64\xfa\x27\xfe\x49\xe2\x0e\xff\x74\x08\x12\x2f\x41\x28\xbc\xd8\x37\xe1\xa9\xf9\x0d\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\xb6\xd6\x0d\x01\x37\xb4\xd3\x23\x10\xc8\x83\x03\x10\x82\xf6\x96\x19\xa0\xe4\xc9\x8a\x94\xf4\x0b\xa2\x2c\xf1\xcf\x11\xa2\x97\xdf\x31\x50\xf0\xd4\x93\x40\xd9\x4b\x4f\xa3\x56\xeb\xb0\xcd\x5a\x6e\x1a\x3d\xd7\x11\x13\xa1\x80\xeb\x88\x89\xfd\x64\xf7\x0c\x7a\xd7\x36\x9f\xaa\x42\x5f\xc6\x12\xf8\x0b\x4d\x32\x50\x03\xf1\x35\x1b\x84\x56\xed\xba\x49\x84\x5b\x39\xe9\xf5\x04\xbf\xa2\xa9\xd3\xe5\xc7\xeb\x45\x60\xfd\x0a\xe4\x07\xa4\xa5\x84\x01\xaf\x16\x0e\x31\xa6\x33\x7e\x79\xe2\x1f\xc1\x82\x7a\x79\x30\x98\x4d\xb5\x2c\x9d\x32\x5a\x47\xf3\x86\xd2\x22\xe0\x75\xdf\xef\x3a\xf3\xfc\xc6\x93\x4d\xe9\x39\xfd\x18\x0c\x22\xac\x4a\x47\x32\xaa\x69\x57\xe1\x82\x20\xc0\x8b\x24\x4c\x63\xdc\xa0\x75\x77\x08\xc0\x75\x7b\x18\xf2\xb8\x55\xeb\x18\xa7\xad\x10\xff\xf6\xbc\x97\x05\x5c\xeb\x2c\x03\x4c\xb6\xcc\x50\xba\x4b\x32\x0c\x76\x49\xb3\x16\x9a\x2d\x5a\x89\x42\xc7\x7f\xae\xd8\x54\xc3\xe5\x84\x6b\xcf\xd2\x3a\xa2\xbd\x62\x2f\xbe\x73\xfa\xe9\xe1\x7d\x04\x7e\x41\x93\x65\x4c\x44\xed\x8f\x01\xca\xcf\xe5\x62\x1f\xdc\x1c\xfe\x2c\xbf\x55\x55\xef\xab\x69\xcc\x38\x78\x5f\xe3\xc5\x86\x0b\x49\x09\x60\xa6\x42\x51\x5a\xd7\x61\xe2\x6c\xa6\xce\x07\xdb\x77\xcd\xe3\x30\xcb\x50\x66\x71\x65\x86\x4c\xf2\x33\xdb\x88\x2b\xd5\xc0\x08\xcb\x60\x43\x89\x27\x4c\x43\x38\xab\xc0\xe0\xcd\xf2\x26\x3a\x6e\x59\xcd\x8e\x59\xd6\x6e\x16\xc0\xe2\xf8\x10\xbc\x19\x2b\x7d\x90\xfc\xbb\x4c\x2c\x93\xf7\x62\xb6\xf4\x61\xf0\x52\x9d\x69\xf7\x03\x33\xba\xc8\x9d\xef\x7e\xa7\x8e\x7c\x75\x10\xc1\x4e\x7e\x15\xa3\x97\x9e\x2c\xdc\xf2\xb7\x3e\xdc\x72\xf4\x5e\xf5\xf0\x35\x08\x17\x9d\x1f\xb5\xb2\x5d\xa2\xbc\xfc\x11\xf4\xe0\x49\xd7\x2e\x9e\xdc\x0f\x03\xef\xb3\xbe\x34\x8e\x69\x1d\x55\x29\xa3\xb3\x17\x0c\x7e\xd5\x57\x03\xe4\x77\x58\xaf\x28\xf5\xa4\x6a\x0e\x81\xed\xc2\xfa\x6b\x0d\xc3\x08\xdc\x86\xa8\x28\x72\x6d\x58\xa1\x06\xd6\x1e\xd7\x37\x78\x54\x21\x78\x38\xa2\xa9\xbf\xa6\x63\x93\x21\x7c\x7f\xd5\x78\xce\x5f\xdd\x2d\x17\x62\x4b\xb1\x6f\xbf\x07\xb4\x20\x33\x3a\x3d\x9d\x9e\x3c\x10\x33\x82\x9d\x09\xfd\x2c\xd2\x8f\xdb\xa7\x31\xa6\x8c\xe1\x34\x6a\x30\xf7\xef\x82\xc8\xdb\xf0\x23\x96\x8c\xaa\xd3\xa8\xa9\x12\xef\xfc\x3b\xf7\x5e\x55\xf2\x9e\x03\x20\x7f\x48\xf2\x15\x8f\x89\xfe\x4f\xf0\x6a\x9d\xf8\x28\x80\x46\xe9\x33\x91\x9f\xfc\xf5\x2d\x57\xfc\x6d\xda\x95\xc4\x34\x11\xba\xf7\xdb\x2d\x12\xb6\x74\xb4\x26\x56\xc4\x09\x6b\x24\xf0\xe3\x8b\xf8\x59\xe0\x67\x91\xdf\xe0\xd7\x35\x7e\x5d\x97\xe5\x47\x29\x0c\xae\x4a\xc5\xe9\x70\xbe\x46\xca\x0d\x7e\xdf\x70\x88\xdb\xfb\xec\x9f\xc5\xed\xe8\x13\x05\xf6\x03\x01\x83\xb9\x39\x4d\xb7\x1f\x94\x2e\xcf\xf4\x3f\xf5\x2f\xf6\xdf\xe7\x6b\xff\x1b\x4d\xc2\x17\xa5\x70\xf3\x9a\x24\x9f\xf7\xc1\x1a\xfb\xb5\x55\x28\xdf\x94\xca\xfd\xd0\x44\xf9\xa4\xb4\x36\xbf\xce\x7c\xbf\xf4\x0b\xa9\xbe\x57\xfa\x45\xe8\x2d\xda\x66\xc7\xc1\x43\x3f\xb8\x17\x2d\xfd\x73\x5f\xa7\x94\xa7\x01\x92\x10\x31\x92\x9d\x90\xf9\x71\x3e\x79\xd0\x97\x5d\x74\x67\x89\x05\xf5\xad\xea\xdd\xde\x9d\x4f\x7d\x44\x69\x01\xf3\x51\x96\xc4\x50\x9d\xdf\xf0\x91\x07\xce\x68\x76\xb3\x39\xf6\x3d\x9c\x7b\xf9\x30\xf0\xf0\x5f\xff\x15\xe0\xf4\xf9\x6f\xff\x96\x9e\x3d\x7f\x94\x96\x9f\x39\x66\x5c\x97\x6e\xf3\xcf\x38\x15\x28\x14\xfd\x7c\x11\x01\xb2\x63\x2e\x4c\x8e\xf5\x1a\x4a\xdf\xf4\xc6\xdd\xd3\xff\x0f\x00\x00\xff\xff\xbe\xe6\xd3\x04\x7e\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: 44507, mode: os.FileMode(420), modTime: time.Unix(1446579003, 0)} + info := bindataFileInfo{name: "conf/locale/locale_en-US.ini", size: 44670, mode: os.FileMode(420), modTime: time.Unix(1446593396, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -4564,7 +4564,7 @@ func confLocaleLocale_ruRuIni() (*asset, error) { return a, nil } -var _confLocaleLocale_zhCnIni = []byte("\x1f\x8b\x08\x00\x00\x09\x6e\x88\x00\xff\xbc\x7d\x69\x73\x1b\x47\x96\xe0\x77\x45\xe8\x3f\x54\x68\x42\xd1\x5f\xd6\x74\xd8\xde\x2b\x36\x0c\xef\x76\xdb\x33\xdd\xbd\x61\xbb\xbd\x2d\x77\xcc\x07\x87\x03\x06\x81\x22\x89\x11\x88\x42\xa3\x00\xc9\xec\x89\x89\x20\x25\x91\x04\xc5\x5b\xa2\x44\x51\x22\x45\x91\x26\x45\x8a\x12\x0f\xdd\x24\xc1\xe3\xbf\xac\x51\x05\xe0\x93\xfe\xc2\xbe\x2b\xb3\xb2\x0e\x50\x76\xef\xec\xfa\x83\x4c\x54\xbe\xbc\x5e\xbe\x7c\xf9\xae\x7c\x99\x29\x95\xd2\x39\xdb\xcd\xa6\xbc\xe5\xc3\xc6\xe1\x94\xf5\x7b\xc7\x6a\xed\x6e\xb7\x36\x07\x9b\xf7\x6f\xb4\x46\xb7\xbc\x9b\x4f\xac\xdf\xe7\x2b\x96\xbf\x38\xe9\xdd\x5c\x39\x7f\xee\xfc\xb9\x3e\xa7\xdf\x4e\xb5\x1f\xdf\x6d\xaf\xbc\x3e\x7f\x2e\x97\x71\xfb\xba\x9d\x4c\x39\x97\xf2\xa7\x36\xbc\xda\x9b\xf6\xd2\xaa\xbf\x74\x7a\xfe\x9c\xfd\x63\xa9\xe0\x94\x6d\xf8\xba\xda\x7c\xb5\x0a\x95\xec\x42\x29\xe5\xed\xef\x40\x73\xe7\xcf\xb9\xf9\xde\x62\x3a\x5f\x4c\x35\x17\xea\xde\xf1\x1d\xf9\xed\x54\x2b\xa9\xf6\xe0\xa0\x37\x7a\x28\x1f\xaa\xa5\x94\xff\x72\xd3\x1b\x99\x38\x7f\xae\x6c\xf7\xe6\xdd\x8a\x5d\xd6\x1f\xae\xda\xdd\x6e\xbe\x62\xa7\xbc\x9d\x7b\xfe\xdd\x83\xe6\xf1\x6c\xf3\xe9\xc2\xf9\x73\x57\xec\xb2\x9b\x77\x8a\x29\xef\xf8\xb6\x37\x36\xd9\x1c\xab\xf9\x8b\xcf\xce\x9f\x2b\x65\x7a\x61\xbc\x2b\xaf\x61\x68\xe7\xcf\x55\xec\xfe\x52\x21\x03\x35\xfd\xcd\x15\x1a\x68\x21\x53\xec\xad\x22\x04\x4f\xba\x3d\x38\xd6\x5e\x39\x38\x7f\x2e\x5b\xb6\x01\x2a\x5d\xb4\xaf\xa6\xbc\xda\x03\xaf\x7e\xd8\xd5\xd5\x75\xfe\x5c\xd5\xb5\xcb\xe9\x52\xd9\xe9\xc9\x17\xec\x74\xa6\x98\x4b\xf7\xe3\x1c\x9b\x73\x9b\x7e\xed\x6d\xe3\x74\xc5\x1f\xda\xf5\xa6\x6f\xfa\x0f\x5e\x79\x6b\xf7\x79\x12\x76\x0e\xe6\x99\xce\xb8\x29\xef\xed\x0b\x9e\x2d\x03\x23\x1e\xb1\xb1\x62\xa6\x5f\xd5\xf7\x66\x26\x01\x6d\xfd\x99\x7c\x21\xd5\xbe\xb6\xd3\xdc\x79\x8e\x23\x77\xdd\xab\x0e\xe0\xd6\xdb\x1d\x69\x3e\x1a\x42\x3c\xa4\x2b\x03\x25\xa8\xb1\xb2\xd3\xda\x59\x53\x5f\xb3\x99\x52\x25\xdb\x97\x49\xb5\xb7\x26\x5a\xbb\x43\xf4\x09\x41\x4b\x0e\xa0\xc8\x29\x0f\xa4\x1a\xf5\xdb\xde\xe1\xed\xf3\xe7\x9c\x72\x6f\xa6\x98\xff\x5b\xa6\x82\x38\x6a\xd6\x6f\x34\xeb\xa3\xe7\xcf\xf5\xe7\xcb\x65\xa7\x9c\x6a\xdf\x59\xf4\xae\x4f\x9f\x3f\x07\x13\x4e\x63\x55\x99\xb5\x7f\x77\x0f\xc8\x40\x35\x80\x85\xfd\xf9\xde\x32\xe2\xaf\x75\x3a\xd4\xdc\xa8\x7b\x6b\x77\xdb\xd7\x37\xcd\xf2\x1e\xa7\x7c\x39\x54\xd9\x7f\x75\xd2\x9c\x5b\x36\x41\x60\x1c\x21\x08\x3d\x94\x4c\x11\x16\x82\x8a\x9b\x3b\x2b\xcd\x99\x11\xbf\x36\x6b\x14\x67\x72\xfd\x80\xcb\x52\xa6\x68\x17\xa4\x5c\x11\x5b\x26\x9b\x75\xaa\xc5\x4a\xda\xb5\x2b\x95\x7c\xb1\x17\xb0\xbd\x3f\x03\x18\x6d\xed\x9c\x34\x8f\x77\x60\x21\x92\x3f\x0f\x38\x55\xbd\x98\xa9\xc6\xfe\x56\xe3\xf0\x90\xd7\x50\x8a\x74\x35\x5e\x1f\x55\x8d\xe6\xe0\xa6\x7b\x6c\x1b\x68\x7e\x71\x10\xa6\xe0\xbf\xaa\x7b\x37\x37\x61\xb9\xaa\x85\x02\x20\xef\xaf\x55\xdb\xad\x40\x67\x33\x35\xef\xe0\x4d\x6b\xf7\xad\xff\xfc\xda\xf9\x73\x79\xd7\x85\xcf\x40\x06\xeb\xde\xe4\x1d\x1e\x3d\x36\x95\xcd\x14\xb3\x30\x1d\x6f\xfa\xae\xff\xa6\x86\x1f\xbe\x73\xed\x4c\x39\xdb\xf7\x3d\x8e\x1a\xff\x48\xf9\x33\x8b\xb0\x81\x88\xfa\x12\x96\x14\x69\x28\xa5\x48\x8a\xfa\x90\x2e\xa0\x69\x27\x07\xd3\xaa\xff\x24\xf4\xf0\x5d\xbe\xe8\x56\x32\x85\x02\xb4\x2c\x7f\xc1\xe6\x19\x6b\xfd\x34\xac\x77\x46\xbe\x52\xa0\x7d\xed\x3f\x5b\x69\x9d\xce\xb4\x56\x26\xb8\xbc\xb9\x39\xee\x1d\x02\x65\xe4\x9c\xec\x65\xa0\x7e\xdc\xc8\xd0\xa7\xf7\xf8\x9a\xff\x70\xd1\xbf\xb6\xe9\x6f\xff\xe4\x2d\x6e\x36\x8e\x4f\x61\x14\xd6\x17\x04\x63\x79\x3b\x07\xde\xc2\x26\x37\x02\xfc\xa4\xd7\x7d\x77\x04\x94\xf9\x16\xf8\x87\x77\x3a\xec\x0d\xd7\x1a\xf5\xb9\x66\x7d\xa4\x7d\x6f\xb8\xb5\x5b\xb7\x3e\xcd\x58\x95\x4c\xb9\xd7\xae\xa4\x2e\xa4\xbb\x61\x37\x5e\xbe\x60\xf5\x95\xed\x9e\xd4\x85\x8b\xee\x85\xcf\x78\x7f\xfb\x77\x47\xfd\x95\x9f\x3e\xfd\x30\xf3\x99\xe5\xcd\x4c\x79\x23\x93\xde\xee\x01\x6c\x6d\x1e\x79\xeb\xf4\x01\x8e\x75\xe5\xa9\x37\xb2\xf0\xf3\xe0\x35\x44\xd3\x5f\xab\xc0\x1b\xd2\xb9\x6e\xe6\x6b\x38\x00\xab\xf5\x78\x08\xd6\x81\x67\x64\x7d\x35\x70\xe9\x7f\x7d\xf9\xf3\xe0\xd0\x37\x8e\x5b\xe9\x2d\xdb\xfc\x03\xfe\x85\x5a\x9f\x58\x7e\xed\xae\xf5\x6d\xfe\x8b\xdf\x51\x5b\xd0\x06\xe3\xc5\xbf\xb3\xe7\x4f\xee\x00\xce\x15\x19\x60\x09\x6e\x45\x5d\xd0\x7c\x5e\xf7\x1e\x8e\x23\x7b\x74\x2b\xc1\xd7\xc6\x7e\xdd\x5f\x3c\x94\x85\x0a\x60\x65\xc5\xf4\x06\x8f\x94\xa8\x9d\x0d\x9d\x10\x87\xd0\xc5\xc0\x24\x9a\x1b\x7b\x54\x10\x5d\x08\x59\x02\x9a\x1b\xe3\x5b\xbe\xfc\xf1\xeb\xaf\xff\xf4\xc5\xef\x2c\xef\xe8\x8e\x7f\x7b\xaa\x51\x5f\x07\x16\x65\x55\x2b\x3d\xff\x35\xdd\x6b\x17\xed\x72\xa6\x90\xce\xe6\x2d\x6f\x7b\xbe\xf9\xec\x71\xfb\xc1\x08\xcd\xda\x75\x0b\xc0\xd9\x80\x7c\x2e\x5d\xfa\xd2\x02\x46\xe9\x1d\x4d\xe3\x58\x2b\x7d\xc1\x40\x60\x49\x1a\xf5\x37\xad\xb7\xbb\xde\xc9\x0d\xa8\xf0\xd7\x02\x62\x5c\x86\x14\xc5\xa4\x85\x5c\x40\xe3\x8f\xaa\x50\x37\x76\xb9\x9c\x06\x76\x5c\x19\xc0\xa5\xa2\xe6\x7f\x41\xcd\xc6\xfe\x64\xeb\xfa\x71\x63\xff\xb0\xf9\xe4\x50\xb7\x92\x2f\x5e\xc9\x14\xf2\x39\x58\x2b\x85\x31\xaa\x1d\x41\x1b\x54\xf5\x86\x87\x5a\x3b\xfb\xde\xc4\xb0\x37\xf3\x94\xe7\x6c\x5d\xe8\xba\x40\xfd\x5d\xf8\xe0\x82\x45\x0d\x16\x9d\x34\xb3\x1a\x64\xf0\xb9\xbc\x9b\xe9\x06\x66\xcf\x27\x50\x99\x79\x27\x62\x9b\x86\xe1\xad\x2d\x03\xf1\xfb\x8b\x5b\xcc\xce\x78\x5f\x7b\xb3\xf7\x78\x15\x71\xf0\xd7\x87\xbd\x91\xd7\x8d\xfd\xf1\x26\xd0\xdf\xf6\x2a\x1f\x5f\x91\xc9\x2b\xbe\x26\xa4\xa0\x1b\x61\x22\x88\xcd\xf7\xfc\x39\xb5\x6e\x4c\x99\xde\xe1\x1c\x74\x07\x87\x37\xec\x08\x45\x9c\x78\xa6\x13\x1a\xa4\x50\xa8\x46\x7d\xd6\xb4\x73\xfa\x14\x4a\x9b\xe3\xd7\xfc\xf1\xe3\xf6\xf0\xdb\xe6\xb5\xa7\x9a\xdd\x72\x95\xf6\xfc\x56\xf3\xe1\x14\xb0\xe1\x46\xfd\xd9\xbb\xa3\x21\x66\x41\xbc\x54\xcc\x81\xfc\x47\x07\xcd\x07\x3b\x74\x88\xeb\x22\xd5\xba\x3f\x36\xe8\x2f\x8e\x91\xf0\xd0\x3a\x5d\x04\x36\xc2\x55\xda\x80\xb6\xbd\x91\xd6\x2a\xe0\xff\x9e\x3f\x77\x02\x22\x47\x6b\x77\x9d\x1b\xe1\xed\x5b\x85\xa3\x1f\x77\x0b\xf3\x8f\xe6\xcb\x7a\xb3\xbe\xac\x36\x8c\x2a\x54\x7d\x60\x55\xde\x31\xa7\xc0\xc8\xea\xde\xf0\x5b\xe8\x12\xb8\x43\x64\x74\xde\xad\x09\x83\x1b\x11\x55\xdd\x9e\x6c\x1c\x2f\xfa\x4b\xd7\xdb\x0b\x33\xbc\xd3\x1d\x38\x7a\x41\x74\x58\x5e\xa6\x83\x98\x7f\x1a\xdd\x30\x6a\xbd\xe3\xe7\xde\xed\x49\xeb\xd2\xa5\x3f\x58\xde\xf0\x78\xfb\xfe\x88\xb7\xb8\xe7\x2d\x0d\xca\xae\xe9\x4b\x97\x9c\x72\x25\x85\xa5\xcd\xa7\x20\x0a\xfc\xe4\x4d\xbf\x0d\xbe\xeb\xed\x01\xc5\x2c\x4d\x01\x93\x44\x84\x3f\x98\xf5\x66\x9e\xe9\x0a\xb0\x77\x9b\x77\x16\x60\xb5\x5b\x2b\x9b\xcd\xb5\x43\x20\x1c\xdc\xc4\xd4\xe3\xcd\x65\x20\x05\xea\xab\xaf\x52\x29\x71\x67\x7f\xf8\xf6\xdb\x6f\xcc\xde\x74\x89\x5e\x64\x22\x01\xe9\x04\x7a\x0b\x40\x91\x1c\xaa\xe5\x82\x40\x58\x7f\xf9\xf3\x97\xfa\x5b\xa7\x89\x63\x6f\x1f\xe2\x3f\x97\x42\xf3\x07\xfc\x36\xf6\x07\x1b\x87\x0f\x58\x72\x69\xec\x6f\x43\x4f\xed\xdb\x27\xfe\xd4\xba\xd0\xac\x53\xc2\x9d\x13\x10\xed\xf4\x2e\x48\x5a\x8a\x5c\x49\xea\x91\x12\x68\x01\x18\x0b\xe3\x47\x1f\xe0\xfd\x30\x27\xe2\xab\x97\xbe\x82\xd9\x2a\x9e\x4a\x9f\x7b\xca\x4e\xbf\xaa\xb4\xb4\x0e\x02\xab\xf1\x5d\xcd\xc2\x2c\xe6\x01\x03\x92\xdb\x43\xaf\xbd\x93\x2d\xeb\xcf\xff\xf4\xb9\xf5\x9f\x3e\xf9\xf8\x63\xcb\x7f\x34\xea\x8d\x22\xff\x83\xb1\x01\x97\xf4\xef\xed\xe2\x94\xf6\xb7\xf0\xbc\x3e\xdc\xc5\xf9\xd0\xdc\xb8\x3e\x30\x0c\xe1\xae\x17\xbe\x86\x0d\x75\xc1\xfa\x94\xe6\xf0\x3f\xec\x1f\x33\x20\x5f\xda\x5d\x59\xa7\xff\x33\x22\xb3\x47\x47\xc0\x3c\x09\x07\x58\x0e\x84\x4b\xa4\xed\x4d\xcf\xb6\x07\x87\x94\x98\x27\x25\x81\xb4\x67\x94\x06\x92\x1f\x4b\xc0\xe9\xac\x53\xec\xc9\x97\xfb\x41\xbc\xd8\x45\xca\x27\x86\xc2\xa0\x2c\x14\x72\x73\xe9\xa2\x53\xc9\xf7\x0c\x08\x14\xcf\xbf\x3d\x78\xbf\xb9\xbc\xee\x4f\xcf\xb4\x47\x6e\xa1\x78\x51\x06\x71\x39\x8d\xff\xcb\x67\x6d\x75\xca\x29\xb2\x84\x05\xf5\x86\xdf\x78\x3b\xd7\xc3\x0b\xe1\xf4\xf4\x14\xf2\x45\x9b\x0f\x07\x6e\xbb\xf9\xb8\xde\x3c\x3c\x55\x87\x84\x09\x00\x54\x58\x02\x19\x1e\x18\x24\x88\x88\xcd\xe3\x17\x0c\x03\xbc\xb0\x71\xb0\xcc\x54\xdd\xa8\x4f\x59\x9f\x7f\xf1\xb5\xd5\x9a\x7a\x8b\x12\x10\x1d\x29\xb0\x32\xc0\x38\x60\x01\x50\xfd\x78\x7d\xc3\x3f\x9c\x61\x86\x01\xb0\xc0\xe0\x00\xfb\x7a\x8c\x5c\x8b\x37\xaf\x70\x69\x10\x4d\xaf\x64\x40\x9a\x48\xc9\xae\xf9\xbd\xfc\xd6\xda\x4b\x14\x50\xc6\x18\x05\x47\x7e\x01\xa4\xb2\x73\xbf\x71\x30\x06\x23\x80\x31\x35\xea\xc3\xbc\xe0\xcd\xb9\xe7\x22\xef\xef\xdf\x6c\x1c\x3d\xc2\x35\xae\xdd\x6d\xd7\xef\x01\xea\xe1\x6f\x6f\xed\x15\x88\xd1\xa1\x31\x85\x4e\x0e\x3e\x06\x44\xa0\x1c\xdd\x42\x4a\x16\x8d\x26\x09\x3c\x18\x9d\x59\x09\xd8\x18\x57\x62\x7e\x00\x83\xf3\xa6\xb7\x80\xed\x05\x07\x07\x13\xf0\x5b\x90\x4a\x1f\x81\xc8\x0b\x7b\x9d\x4f\x9c\x22\x75\xa0\xb4\x05\x21\x0d\xa5\x33\x28\x0c\x85\xa1\x64\x04\x22\x3d\x2d\x6e\xf2\x20\xb8\x7b\x7f\xfe\x4d\xeb\xe4\xb6\x37\xbc\xde\x5e\xbd\x61\xa8\x1e\x24\x7e\x81\xa2\x22\x4a\x5e\xfa\x4a\x1e\x75\x28\xa6\x15\xd2\x80\x5a\x3b\xa7\xed\xf9\x1d\xe0\xbb\xa0\x2e\x26\x83\x2b\xca\xa1\x69\x05\x9a\x13\x30\x2f\xee\x7e\x4c\xce\x5e\x69\x89\xc4\x40\x44\xc3\xcc\x63\xaf\xb6\x00\xb4\x02\x15\x01\xa0\xb9\x38\xee\xd5\xf6\xb8\x2e\xac\x91\x6c\x15\x02\x26\x7c\xf0\xb9\x2b\x52\xbe\xa8\xc0\xe1\x63\x9c\x91\x07\x52\x3c\x1c\xc2\xc0\x0f\xf8\x8c\x81\x61\x60\x5f\x0f\x1e\xc1\x99\x6c\xfd\xf1\x8b\xd4\x47\x96\x1e\x18\x9e\x6b\xa8\x31\x13\x69\x9e\xcc\xeb\x76\x8c\x63\x86\x3b\xe5\xdd\x16\xe9\x47\x1f\xde\x04\xc2\x9a\x61\x58\xa0\xa0\x93\xe9\x6c\x71\x01\xe5\x7e\x62\x10\x06\x44\x48\x59\xe4\xea\xac\x67\xea\xba\x8a\x13\x89\x66\x90\xee\x75\x50\xed\x79\x3a\xee\x4d\xbe\x64\x91\x19\x15\x67\xb7\x92\xee\xcd\x57\xd2\x3d\xc8\xad\x40\x62\x9d\x7f\xe4\xbf\xbc\xd3\xda\x1d\xf1\x6a\x4f\xad\xdf\x40\xc1\x6f\x2c\x6f\xf6\xb8\x51\x5f\x7b\x77\x74\xff\xe2\x15\x25\x12\x7e\x82\x8c\x28\x0d\xbb\x2a\x5f\x40\xb2\x42\xc9\x09\x77\x37\xef\x24\xd8\x2e\xd3\xb3\x78\xc4\x8f\xd5\x10\xc1\x73\xbb\xfe\xc4\x90\x25\x22\xa0\x48\xb0\xc0\x20\x2e\xba\xc0\xf0\xc7\x5b\xc7\xc7\xa2\x0b\x3c\xbc\x81\x4b\x34\x56\x43\x88\xc1\x09\x5e\x19\xab\xd7\xe9\xae\xe6\x0b\x39\x8b\x75\x7e\xc2\xb4\x92\x09\x41\x22\x94\x35\x8e\x0a\xf1\x58\x77\xfb\x27\x40\x8f\x0c\x59\xd5\xe8\x28\xe4\x24\x57\xd3\x32\x09\x4e\xb5\x3f\x03\xdb\x26\x41\x74\x69\x2f\x3d\x14\xab\x04\xfd\xc4\xaa\xae\xf5\xc1\x67\x30\x3b\x40\x55\xe6\x8a\xcd\x7c\xbd\x57\x61\x97\x8f\xe4\xf6\xf0\x24\xf6\x77\xba\x04\xa2\x92\xb7\xf6\xbc\xf5\x6a\x3d\x32\xd2\x10\x09\x87\xe8\x49\x2b\xac\xf1\x49\xf2\x12\xbb\xd5\x6c\xd6\x76\x5d\x5c\x11\x6f\x1d\x98\xc8\x10\x4b\x79\xde\x49\xad\xfd\xf4\x9e\x37\xfc\x0a\xbe\xc3\x09\xed\x8f\x3f\x91\x73\x4e\xd4\xb8\xe6\xfa\x92\xd6\x35\xfc\x1b\x63\x20\x41\x12\x73\x44\x2d\x13\x39\xf4\xf6\x1a\xd0\x85\xf5\xbb\xbf\xfc\x9e\xa4\x45\xd0\x3a\xd1\x58\x04\x2a\x67\x95\xc5\x4e\xa7\x90\xd3\xfa\x2a\x10\x33\x72\xce\x88\xa9\x43\xc1\x28\x72\x75\xaf\xe6\x01\xa1\x69\x6d\x66\x42\x3c\x55\xec\x1f\x2b\xb0\x55\x47\xfd\xc9\x55\xd3\xe8\xa4\x64\xc4\xfe\x01\x5a\x41\x98\x1a\x99\x0f\x94\xaa\x9c\x75\x0a\x40\x83\x0e\x72\xd6\x2b\xb6\x40\x78\xd3\xd7\x1a\xfb\x53\xde\xe4\x34\xc8\x82\x06\x28\xb4\xe0\x94\x7b\x55\x03\xda\x3c\x31\x90\x66\x63\x89\x2a\x50\x36\x13\x62\x59\x64\x15\x63\x86\x44\x8b\xaa\x54\xfe\x2e\x58\x20\x32\x27\x48\x8f\xcf\x1f\x8a\xc4\xcb\x87\x08\xf5\x08\x6d\x11\xb2\xc4\x68\xf6\xbd\xa8\xfa\x62\x3c\x53\xa3\x02\x80\x4c\xb5\x82\xa6\x81\xc0\x38\x95\x16\xd3\x87\x70\x2e\x5e\x78\x43\x5a\xe8\xb3\x4b\x28\x5a\xf4\xbb\xbd\x64\x81\xaa\x4f\x33\x17\x7c\x77\xb4\xcc\xbb\x9b\xb9\x23\x2d\x96\xeb\x64\xf3\x99\x42\xfa\x97\x57\xad\xcf\xc2\x01\x49\x55\xc3\x67\x17\x9b\xc8\x40\xb5\x49\xa1\x20\x0e\xea\xcb\x6b\x94\x69\xcd\x23\x0b\xda\x43\xf9\x7f\xf8\x65\x7b\x7e\x1b\xf6\x2a\x6c\xf4\xd6\xd0\x1c\xee\x16\xb2\xe3\x69\x32\x4e\x38\x46\x71\x40\xc8\xb9\xe2\x2d\x9b\x32\x50\x62\x2f\x88\x95\x7e\xbb\xbf\x1b\x9b\xc0\x95\xda\x6b\x1c\x4f\x2b\x03\x64\x0f\x2c\x37\x6c\xde\x40\x02\x3b\x85\xf3\x7c\x4f\xd1\x20\x96\xda\x1d\x4a\x01\x1d\xda\x5c\x09\x0c\xe0\x2a\x6c\xfd\x7b\xfe\x8b\x15\x5e\x08\x28\x6c\x3f\x79\x06\x82\x82\xa1\xf7\x09\x7b\xe6\xf3\x9d\x44\x35\xd7\x2e\x56\x14\xc6\x40\xe4\xf4\xf6\x86\xc4\x2c\x46\x73\x61\xd9\x8d\x57\x00\xa7\x43\xb2\x61\x6b\xf4\xa5\xf5\x69\xf7\x67\x17\xdd\x4f\x3f\xec\xfe\x8c\x59\xa5\xff\xd3\xa0\x0f\xd2\xdd\x35\x64\xab\xfe\xdc\x1b\xa8\x83\xd2\xe3\xc1\x1b\x38\xb4\xad\x8b\x39\xcb\xdb\x9b\x86\xf3\xda\x1b\x19\xf6\x76\x26\xfc\xda\x0c\xb7\x2d\xe7\x38\xa9\x42\x7c\x3a\x65\x69\x73\x10\xbd\x2a\xca\xf2\x4f\x07\xfd\x57\x75\x6e\x38\xa0\x2f\x1a\x74\x21\xdf\x9f\xaf\x24\x2e\xf6\xb5\x4d\x36\x7c\xf1\x70\xb9\x09\x9e\x49\xeb\x74\x14\x36\x40\x7b\x75\xb6\x79\x30\xc4\x23\x6f\x6e\x8f\x79\x27\xc3\xd6\x27\x96\x57\x1b\x69\xdf\x5a\x66\x0b\x4f\x6b\x97\xa9\xb2\x2f\xe3\xa6\xab\x45\x41\x9a\x9d\xe3\xd5\x07\xd6\xa9\xd8\x96\x30\x59\x9c\xfd\x6b\x3c\xee\xf1\x80\x59\x1c\x63\x34\x26\xe0\xca\x6a\x1c\x8f\x80\xba\x0e\x88\x64\x0c\xb0\x58\x0f\xc3\x42\xb9\x5f\x9b\xb4\x16\xb7\x00\x83\xd8\x98\x31\x6e\x9c\x15\xb0\xab\xc5\x41\x90\x85\xda\xa3\x93\xb0\x44\xdc\xbc\x98\xb6\x26\xef\x78\xa3\x75\x38\xa7\xd0\x1a\x0d\x0b\x30\x31\xd6\xbe\xb5\x23\x44\x07\xa8\x92\x71\x33\x14\x30\x49\x6f\xed\x86\xd9\x86\xb9\xd2\x4a\x1b\xa2\x73\xd3\xa5\x4d\x59\xa1\x73\x93\x65\xad\xa8\x1e\x42\x73\x01\x1a\x87\x0d\x04\x03\x6e\xd4\xeb\x0d\xd0\x76\x49\x9c\xe0\x4d\x8d\x7d\xe3\x10\x2a\xf1\x11\xbc\x3b\xaa\xf1\x20\xde\x1d\x8d\xc9\x3a\xf1\x22\x13\x61\x43\x11\x9c\x1e\x6a\x4c\xdc\x84\xde\x01\x5c\xa8\xf6\x87\x3a\x8d\xc8\xe2\x18\x21\x03\x4d\xc7\x7c\x46\xe0\x9e\x3c\x1d\xf5\x17\x97\x01\x97\xf0\x37\x1c\x6a\xfe\x9d\x9a\xc6\x53\xd0\x83\x56\x5e\xc3\x18\x33\x3a\xd5\x90\x15\xc7\x49\xbb\x7d\xa8\x0a\xcb\xc0\xef\x9c\x7a\x87\x8f\xc5\x3e\xb3\x37\x8b\x2e\x8d\xff\x0c\xcb\x3e\xa9\x4e\x24\xc4\xc3\xf7\x42\xea\xc8\x45\x15\x9d\x23\xc1\x26\x90\xba\x86\x63\x91\x09\xa0\x58\xd6\x65\x28\x73\x2d\x3a\x60\xc9\x44\xaa\xc1\x99\xf5\xf9\xcb\x7b\xb0\x36\x03\x4c\x0b\x51\xf6\x6c\xb5\x75\x3a\xc5\xe7\x2b\x0f\xd7\xc9\x65\x70\xbc\x03\xb6\x2b\x92\x1c\xef\x57\xb4\x53\x89\xdd\x58\x7d\x00\x50\xd4\xf9\x04\xdf\xa7\x3b\xfe\xdc\x01\x35\x01\xfc\xab\x1f\x5a\xf8\x0b\xc8\x28\x5f\x47\xfc\x0d\x7f\x86\x73\x86\xbe\xf1\x21\xa3\x0c\x45\xff\x68\xb8\x21\xd4\xe4\xbe\x89\x3a\x23\xfe\x6c\x27\xf8\x22\x2e\x5d\xfa\xc3\xb7\x24\xdc\x92\xc1\x62\x17\x36\xf4\xba\x6a\xf4\x0f\x95\x4a\xc9\xfd\x4b\xb9\x90\x62\xfb\xc1\x5f\xfe\xfc\xa5\x15\xb4\x3d\x50\x70\x32\x39\x2c\xf4\xa7\x40\xee\x18\x52\x05\xdf\xda\x99\x7e\x1a\x9f\xf7\x60\xb5\x7d\x6f\x59\x35\xf5\x5b\x38\x07\xe9\x33\xf4\x0c\x6b\xa1\x3f\xa3\x38\xf4\x8f\xc9\xa2\x6d\xa0\x69\xd8\xe4\xf0\x88\xd9\xd5\x32\x85\x12\xe8\x3b\x28\x68\x08\x04\x8b\xfb\x00\xd1\x1a\x7f\x0e\xba\xa9\xb7\x3d\xef\xef\x4e\xfe\x0c\x8a\xf9\xbd\x53\x7f\x7c\xac\x71\xb4\x0b\xe2\x24\x7e\x04\xd5\x62\x73\x0b\x74\x60\xd8\x4f\x1f\xa4\x61\x2f\x45\x5b\xcb\xc1\x4e\xfe\x55\x2d\xc2\x97\x70\x8b\xd0\x45\xf3\xda\x01\x1b\x99\xf2\x7f\x53\x33\x60\x42\xd7\x6d\x82\xd4\xc1\x76\x06\x94\x08\xa3\x50\xfe\x22\x30\xc4\x69\x86\xb2\xd0\xa8\x41\xb6\x4f\xb1\x4b\xfc\x98\x0c\xbf\xb6\x91\x08\xcf\xec\x49\x23\x51\xdb\x49\x80\xed\xc2\x5e\x8e\xec\x09\xaa\x81\xf6\xa4\x33\xe0\x91\x12\x44\x62\xcf\x16\xaa\x39\x3b\x84\x2c\x65\xaa\x9d\xe1\x11\x34\xf6\x5f\x58\xbf\xb9\xe8\xfe\x86\xdb\x2d\x5e\x86\x13\xb7\x28\xf0\xc0\x0a\x9b\xcb\xeb\xed\xb9\x85\xd6\xee\x2e\xc8\xba\xda\x2d\x06\x4a\x65\xd6\x29\x97\xed\x6c\x25\x65\x28\xbb\x5b\xde\xc4\x01\x88\xd7\xd4\x8e\x66\x25\x81\x00\xaf\x6c\xaf\x53\x26\x75\x87\x6b\x05\x0e\xbc\x74\xb7\x6d\x83\x4e\x97\xb9\x6c\x17\x83\xbd\x15\x9c\xd8\x93\x8f\xe0\xa3\xf0\x38\x50\x2c\xa2\x35\xcc\x9d\x97\x54\x09\x84\x8f\x58\x1d\xd3\x46\x9b\x54\xa7\x02\xdb\x26\x56\xc9\xdc\x42\x49\x95\x78\x61\xa9\x02\xcc\x2c\x17\xda\xfe\x1a\x9e\x39\x13\x2f\x57\xa1\x60\xf7\xa2\x45\x4f\x75\x16\xee\x81\x16\x0e\xd4\x1e\xd0\x12\x0d\xea\xd1\x38\xd3\x48\x0f\x96\xc7\xd4\x0b\xb4\xf1\x9b\x95\x17\x31\x60\x00\xe3\x2c\x93\x4b\xd5\x50\xd4\xa8\x67\x53\x00\xd2\x07\xa5\x89\x59\x20\xbb\xb3\x5a\x02\x32\x42\x05\xae\x63\x53\xe8\xe5\x23\x73\x76\x6b\x70\x38\x18\xe6\xbd\x5d\x6f\xe6\xf1\x59\xcd\xea\xa3\x20\xb1\x51\xa1\xaa\x68\x2b\x5a\x97\xb4\x7f\x84\xa3\x22\x05\x48\x67\x06\xaf\xcd\x0c\xe8\xc7\x00\x85\x70\x71\x93\x8e\xb4\x42\x06\x14\x73\x24\x12\x9a\x03\x82\x37\x37\xea\xed\x85\x35\x05\x7b\x88\x7b\x79\x66\x0a\x37\xdd\xf1\xa4\x29\x5b\xe3\x98\xc8\x46\xc4\x45\x22\x74\x6a\x1d\x12\x64\x30\xf2\xac\x71\x6b\x78\x40\xcd\xde\xe3\x81\xc8\x49\xaa\x26\x89\xf6\xed\xcb\xf6\x40\x0a\x54\x47\xff\xe6\x73\x7f\x7b\x8c\x44\x25\x54\x26\xd9\x46\xa0\xcf\x4b\x3d\x71\x2b\x38\x1c\x48\x11\x26\xfd\x10\x85\xfc\x2b\x76\x19\x4e\x30\xdd\x22\x19\xeb\x7f\x51\x23\x13\x28\xd7\xb1\x02\x3b\x34\x0a\x8a\x6f\xfb\xda\x4f\xb8\xe2\x8a\xc5\x68\x30\x9c\x33\xb4\x41\x46\x34\xc0\x37\xaa\xd6\xc3\x6f\x18\xcc\x1f\xdc\xa0\x89\xa1\x8e\xa5\x8d\x1c\x53\x35\xb4\xdd\x50\xdf\x21\x05\x1c\x18\x71\x05\xe8\x1f\x71\xce\xee\x72\x53\x68\x68\xd4\x27\x9b\x37\xde\x60\xff\xcb\x33\x8d\xc3\x07\x5a\xc7\xf3\xc7\xd7\x99\x82\x58\x34\x52\x2e\x8b\x5a\xeb\xf8\x19\x20\x19\x89\xbe\xf6\x08\x50\xed\xed\x5c\x47\xdc\x91\x91\xcb\x1f\xdb\x40\xe7\x26\x7f\xa7\xc6\x8d\x25\xe0\x21\xa0\x84\x8c\x2e\xf3\xc8\x08\xfc\xf9\x0d\x3d\x02\x66\x17\x64\xaa\xc4\x55\x8c\x74\xdf\x7c\x5c\xf7\x8e\x06\x75\xf7\x0c\xac\x59\x4f\x64\x9e\xa8\xb9\x12\xc0\xff\xa3\x49\x72\xe3\x21\x3a\x0b\x46\xc0\x6e\xa1\xdd\x75\x5e\x16\x3e\xfb\x1b\x27\x4b\x30\x55\xa0\xfa\xf6\xf5\x4d\x50\x20\x84\xea\x89\x4b\x89\x68\x3e\x5c\xe3\xa6\xa1\xa2\x09\x13\xd6\x33\x80\x67\x92\x13\x3a\xdd\x5d\xce\x14\xb3\x7d\xc6\xfe\x6b\x3e\xd8\x41\xd7\x40\x6d\xc4\x9f\xdb\xd5\x3b\x4f\x4e\x80\xef\x70\x44\xa8\x90\xf7\x65\x8a\xbd\x76\x5a\x8c\xcf\x20\x88\x5b\xca\xc0\x8c\x9e\x00\x0b\x4d\xc5\x24\x8e\xc9\x1a\x91\x91\x58\xd7\xca\x56\xdd\x8a\xd3\x6f\x54\xe6\x58\x04\x65\xbe\xd9\xe6\xaa\xaa\xd2\xbf\x38\x70\xbe\x63\x8c\xcb\xcd\x47\xb0\x0f\x40\xba\x35\xe2\x02\xf2\x20\x23\x0a\xd3\xab\xcd\xb7\x56\x36\x45\x7a\xcd\x57\x60\x73\x0e\x3f\xc3\x45\x96\x48\x85\x1e\xa7\x50\x70\xae\xda\x65\x17\xbe\xbf\x04\x09\x14\x96\x0b\xf1\x9c\x41\xe6\x45\xda\xfe\xb5\x83\xd6\xeb\x87\x0a\x0e\x6d\x4b\x0c\x07\xa3\xc1\x69\xa3\x40\xd9\x45\x5c\x1c\x25\xde\xf2\x15\xa8\xa4\x99\x22\x1d\xcf\x16\xd0\x05\x1e\x16\xa7\x4b\xe8\xca\xba\xcf\xee\xde\xa0\x56\x29\x53\x01\x46\x59\x64\x1d\x87\x46\x62\x34\xa0\xbd\xb4\xdc\x52\xd8\x89\x42\x01\x12\x1c\x96\x01\x68\x4f\x0e\xde\xd0\x4c\x57\x10\xa7\x2c\x49\xcc\x54\x5c\x11\x0d\x0d\xf6\xa1\x6c\x1f\xa9\xe6\xda\x49\xe3\x70\x8d\xd5\x27\x36\x6f\x90\x43\xac\x90\xcf\x92\xba\xae\xaa\x32\xf9\xb1\x89\x8e\x36\x89\x2a\x50\x96\xa2\x9c\x5d\xb0\x31\x38\xc9\xd8\xb6\xc0\xe2\xf2\x6a\x92\xd6\x1f\xbf\xc0\x99\x94\xaa\xdd\xd0\xb2\x8e\x40\xe1\x15\xd2\x93\x90\x20\x23\x32\x4b\xc7\x75\x0d\x74\x88\x1c\xdd\x27\xd5\x0f\x6b\xa1\x41\xfa\xe0\x0d\xb2\xfe\xb9\x4d\x20\x09\x7f\x6a\x1d\x15\x58\xea\x18\xf1\x47\x27\x17\x3b\x7e\xbc\x5b\x13\xec\x07\xe2\x25\xc1\x88\x15\x3e\xf5\x94\xbb\x43\xc9\xd2\x2a\xc2\x8a\x71\xab\x22\xac\x0a\x4e\x56\x5c\xe0\x63\x83\xb0\x0d\x70\x30\x13\x18\xdd\x50\xca\xa1\x8a\xa4\xa6\xe2\x3f\x78\x05\xa7\x89\x9a\x4a\xb8\xd0\x34\x3c\xe2\x19\x6d\x2c\x1d\x57\x53\xaa\xd0\x90\xde\x20\xf1\x40\x29\x76\x20\x2b\x15\x27\x02\xa6\x0c\x12\xc8\x28\x88\x8f\x30\xb2\xd8\x83\x89\x5a\x3d\xa1\x03\x64\x3b\x64\x4f\xcc\x53\x17\xc7\x80\xbe\xb5\xcb\x92\x8c\x34\x40\x63\x55\xe8\xb1\xbe\xd1\xac\x6f\x2b\x05\x2b\x14\xad\xa3\x3e\x06\x2e\x93\xf0\x3e\x9e\xd9\x45\x47\x80\x46\xab\x6c\xdf\x24\x58\xed\x30\x27\xf5\x13\xd9\x14\x05\xa1\xf9\x4b\xeb\xec\xf9\x41\x2b\xb8\x76\x4d\xb1\xd7\x2b\x60\x21\x8e\xe3\x8a\x25\x90\xfb\x65\xa3\x2d\x1f\xe6\x0a\x4a\x56\x40\x20\x18\xcd\x5c\xa6\x7c\x0e\xd5\x12\xea\x5f\x20\xb9\xc8\x88\x68\x67\xa6\xf3\xfd\x18\x18\x17\x38\xba\xc8\x41\xa7\x65\x78\xef\xe8\x91\xf7\xe0\xa4\x39\x36\x4a\x6b\x55\x74\x22\x93\x32\x8c\xfe\x8b\x5b\xdc\x06\xa8\xfe\x11\x84\xe0\x21\x41\xe7\x7b\x64\xee\x2c\x08\x99\xc3\x8e\xd0\x8d\x39\xfc\x18\xdd\x68\x92\xe8\xc0\x0a\x9c\x82\x21\x9a\xb1\x59\x5e\x15\x21\x26\x83\xa8\x1c\xc6\xa2\x56\xdd\x51\xdf\x4d\x87\x20\xd8\x80\xc2\x32\x49\x18\x3a\x41\xbe\x35\x7b\x32\xcc\xf2\x43\xb1\xe1\xea\xb9\x0a\x2c\x9f\x1d\x6a\x7e\x88\x80\xa9\x3d\xdc\x7d\xe4\xe7\x13\x5b\xbc\xd1\x39\x5b\x35\x85\x5f\x92\x54\xef\x46\x74\x79\x89\xb4\x93\x32\x09\xa6\x0b\x41\xb0\x32\x60\x70\x9f\xc6\x7e\x1d\x2d\x5f\x61\x1e\xa4\x39\x8e\xe9\x5b\x0e\x7c\xc7\x81\x61\xb1\x54\x06\x5a\xc2\xb8\x35\x6a\x45\xff\x56\x46\x95\x9d\x13\x90\x53\x55\x19\x73\x4f\x29\x62\x1e\x1a\x8c\x07\x8a\x90\xfd\xc8\x38\xa8\x50\x6d\xc4\x30\x88\x72\xe8\xa9\x93\x3f\xc6\x3c\x45\xae\x25\x66\xd0\x7c\xb0\xcf\x0c\x80\x19\x11\x0c\x99\xa5\x72\xde\xfe\xff\x3d\xd6\xb6\x5a\x9f\xd0\x30\x02\xfa\xcb\xe4\x72\x44\x26\x3c\x05\x16\xb2\x79\x81\xc2\x48\x46\x38\x13\x46\xd9\x2a\xf4\xf7\x74\xc8\x5a\x8c\x36\x57\xb1\x10\x7b\x27\xc3\xda\x80\xd9\x9c\x7b\x0d\xfa\xb1\xb6\x13\xb3\x29\x0f\x65\x10\x3c\x3f\x45\x06\x8a\x18\x81\x13\x8d\xc5\x7c\x88\x98\xf6\x61\xd8\xaf\xcd\xcd\x71\xf1\x5b\xaa\x21\xe9\x7d\x18\x9b\x90\x4c\xd4\xdc\x87\x42\x68\x67\x9d\xbd\xd8\x32\xa9\x0f\xab\x0f\x51\xa6\x51\x27\x32\x1a\x4e\x70\x05\x91\xc2\xf7\xc7\x89\xe3\x18\x0c\x1b\x4e\x1f\xb2\x79\xc6\xf4\x00\x6d\xc4\x05\x34\xc0\x2e\x81\xb5\x6d\x2f\x4c\x34\xe7\x96\x23\x4a\x80\xf8\x36\x95\x28\xca\xe2\xb4\xab\x43\x97\x3e\x75\x2b\x65\xa7\xd8\xfb\x19\x9b\x7b\x39\x6c\xf9\xdd\xd1\xf2\xa7\x1f\xca\x77\x0b\xf5\x88\xe5\xf5\xe6\xe2\x38\x1f\x1d\x18\xc4\x68\x04\x2d\x3e\xbe\xd6\xc0\x40\xdf\x65\x40\x85\x31\x3a\x8a\x5f\xc4\x48\xb3\x30\xf0\xfe\x7e\x6b\x63\x88\xc0\xd0\x97\xbd\x7a\x8f\xc3\x1c\x77\xeb\xfe\xd8\x49\x73\x7b\xce\x5f\xa9\x69\xfc\x23\x49\x05\x98\x0a\x0b\x30\x8c\x60\x43\x7b\x67\xc1\x40\x2c\x70\x61\xed\x5d\xcf\x16\x6b\xd0\x89\x49\x35\xc4\x2b\x0b\x5b\x61\x66\x82\xa5\x00\x44\x5a\xac\x19\x43\xf5\x54\xf5\x53\x61\x43\x1f\x7e\x26\x37\x5d\xb1\xa2\x4a\xd0\xef\x70\xa0\xd7\x3a\x42\x43\xc6\x4c\x44\x7a\x8c\x12\x92\xb0\x04\x9a\xbc\x30\x04\x35\x7e\xcd\x12\xb8\x40\x42\xb3\x9e\x41\x5b\x8a\x2f\x44\x21\x23\x9c\xc1\xa8\x81\xa1\x03\xbc\x97\x63\x22\x82\xe6\x10\xec\xe2\xd3\x1e\xfd\x08\x9f\x88\xf5\xa5\x66\x6a\x74\x92\xc4\x2d\x70\xfc\xb4\xaa\x24\xd0\x93\x4a\xcf\x6b\xb2\x7f\xd3\x7f\xb6\xc2\x2b\x03\x58\xe7\xe0\x44\x25\xd3\xfb\x2f\x56\x50\xae\x03\x1a\x3d\x9d\x55\x92\x3d\x61\xb7\x82\xc7\x26\xcd\x12\xe6\x27\x2b\x00\x1c\xe0\xbf\x58\xde\xda\x13\x58\x0a\x4d\x08\xb0\xbf\x41\xef\x71\x2e\x03\xcd\x84\xeb\x34\xea\x6b\xcd\xb1\x89\xce\x75\x82\x8d\x2d\x82\x33\x5b\x0d\x78\x4b\x2a\x21\x9a\xa4\x5e\xf1\x2a\xfe\xb2\xad\x6c\xca\xdf\xef\xd9\xcb\x54\xc5\xdc\xcb\xad\x8d\x9f\x48\x7d\xd4\x4e\xc9\x6a\xb1\x3b\x5f\xcc\xa5\xcc\xef\xea\xa3\x5e\x15\xb3\x43\x13\x30\x89\x87\x65\xa8\x4a\x9a\xd0\x25\x13\x66\xe1\x95\xe9\x8c\x51\xa6\x82\x33\xc5\x3b\x2b\xc0\xc4\x09\x54\x28\x3d\x83\x51\x89\xab\x0f\x58\xf3\x28\x6f\x9d\x2e\x80\x42\x8d\x9b\x8d\xea\xe9\x4a\x20\x0f\x72\x57\x1c\xc4\xf8\xdb\x6f\xfe\xc8\xe1\xaa\xaa\x1f\x6e\x0c\x23\x15\xc6\x26\xd1\xec\xb3\xbd\x4a\xae\x79\xf4\x08\x71\x03\x18\x48\xb5\x7b\x60\xda\x09\x58\x59\x47\x96\x7f\xe7\x55\x52\x50\x24\xb7\x5b\x64\x07\x01\x91\x84\x6c\x71\x3d\x4b\x73\x86\x31\x14\x08\x69\x21\xb2\x6d\xb5\xd9\x4d\x6c\x09\x62\x0c\xc1\x46\x42\x6c\x98\x3b\xaf\x81\xb4\xfe\x86\xf4\x61\x8a\xc3\xdb\x01\x4e\x4b\x43\x5f\xdc\xf3\xef\x1e\xe8\x18\x9c\x80\x5c\xa7\xb7\xe0\x58\xf7\xef\x9d\x34\xd7\x40\x96\x18\x84\x7d\x63\xf2\x0e\x1e\x28\x6f\x3e\x35\x50\x73\x49\xa3\x8c\x24\xbe\xb6\x8a\x9f\x24\xd6\x8a\x30\x95\x78\xed\x08\x6f\xd1\xfc\x44\xc2\x33\x29\xc8\xfe\xbd\xec\xc5\x9c\x8b\x26\xe2\x84\xbe\xc2\x2c\x06\x0f\x2b\xd6\xc8\xf6\xa7\x34\xb6\xb4\xce\xc3\xe3\xe1\x61\x88\xcc\x28\xdd\x04\xb1\x05\x74\x4c\xb2\xf4\x2a\xfb\x5a\x40\x94\xef\xd7\x10\xc4\x70\x0d\xf6\xf6\x1b\x07\xc3\xfe\xfe\x30\x7e\x34\xcd\x52\x24\x5d\xb1\x9c\xd1\xd8\x9f\xb3\xd4\x31\x8b\x2a\xff\xf4\xae\x3f\xb4\x0a\x4b\xae\xcf\x58\x16\x8c\x25\x98\x29\x32\x22\xb1\xca\x87\xf4\xeb\x30\x88\x8a\x33\xa5\xc2\xb0\x9c\x18\x01\xd4\x7c\x92\x41\x49\xa8\x95\x09\x0c\x6e\x70\x4d\x71\x65\xae\xec\x00\x6b\x00\x79\xc0\x54\x0a\xbd\x99\x79\x0a\x01\x38\x7f\xee\x3b\x34\xc3\x7c\x0f\xca\x05\x99\x61\xb5\x19\xcc\xb0\xfa\x47\x9c\x6c\x81\x37\x40\xa4\x8e\xc6\xd1\xb2\xb7\xb6\x11\x31\x5c\x03\x25\xb7\x6a\xcf\x60\xeb\xb6\x4e\xae\x37\x97\xb7\x7f\x1e\x1c\x82\xf5\xc3\xf5\x7e\x0b\x72\x67\x3d\x82\xc8\xe6\xf8\x33\xa4\xfc\x79\x38\x46\x26\x02\x61\x45\x19\x60\xae\xe4\xdd\x7c\x77\xbe\x40\xe6\xa0\xe9\x5d\x90\x3a\x60\x82\xf2\x15\x3f\x1a\x31\xbf\x3c\x00\x74\xff\x7c\xea\x96\x32\x45\x2b\x0b\x27\x92\x9b\xba\x50\xcd\x5b\x65\x3b\x67\x61\xfc\xcd\x85\xcf\x9a\x50\x1f\xe8\xf8\xfe\x0d\xe8\x08\x60\x3e\x8b\xb7\x84\x77\x81\xb2\x68\xda\x09\x87\x75\xa0\x8c\x7a\x74\x08\x5b\x9b\xa3\x0a\xc5\x3a\x01\x1a\x69\xfd\x50\x26\xae\x5d\x5a\x7f\x5f\xef\x78\x05\x49\x4d\xe6\xdd\x51\x8d\xd5\x27\x5c\xe1\xc1\xa3\x44\x53\x80\x79\x43\xe9\xdd\xd1\x18\x59\xaa\x2e\x8b\x59\x37\x74\x79\x89\xbe\x53\xc0\x31\x7f\xa7\x68\x63\xfa\x18\x43\xa2\x59\x91\x35\x5c\x51\x41\x03\xc4\xd3\xfa\xcb\xc1\x48\x60\xd3\xd3\xad\x53\x45\x17\x78\x2d\x4d\xbe\xf3\xc5\x34\xe3\x7b\xb0\x50\x6f\x59\xdb\xb7\xba\x7a\xf3\x95\x7c\x6f\xd1\x29\xdb\x16\x2b\xe9\x20\x43\xe4\xb3\x70\xc0\xd8\x29\x65\x2b\xdd\x87\x9e\xf5\xd7\x58\x0b\x26\x94\x6a\xa1\x6c\x67\x72\x6c\x19\x82\x61\xf1\x15\x1c\xf5\x31\x56\xdf\x04\x52\x37\xeb\x32\xd5\x8a\x03\xda\x6f\xbe\x22\x92\x25\x40\xc2\xfe\xd1\x76\x04\x50\x13\x19\xd2\xab\x2d\x79\x1b\xe3\xde\xc4\x5d\x1d\xa9\xc5\xe1\x4d\xc6\x35\x34\x55\x92\xb3\x7b\x32\xd5\x82\x32\xd2\xa6\x38\xec\x96\x4d\xb3\xea\x26\x1b\xf4\x58\xb1\xcb\x57\x40\x28\xe1\xf0\x2c\x10\x66\xfd\xed\x75\x6f\x76\xd3\x5f\x04\x5e\x58\x63\x15\x88\x56\x39\xd1\x8e\x69\x6e\xbd\xbf\xd7\x94\x19\xde\xbe\x67\x5a\x33\x8b\x36\xda\x5c\xaa\x15\x98\x0b\xa9\x1a\xa6\xc3\x01\x67\xd4\xcb\xe7\x28\xfa\xd9\xf9\xc2\x9d\xba\x65\x64\x16\xc5\x36\x2e\x50\xb9\x76\xb3\x86\xf7\x10\x6e\x1e\xab\xbb\x50\xb5\x2f\x7c\xc6\xe8\xd1\xdb\x47\x35\xc8\x56\x7e\xea\x4b\x87\xc3\x71\x51\x57\xb6\xe0\x14\x81\x6f\xe6\x72\x65\xb2\x4d\x18\xf1\xff\x1d\x60\x02\xde\xca\x7a\xb7\x0a\xac\x37\xae\x11\x7c\xf8\xfb\x3f\x7e\x4b\xa1\x00\xe8\x46\x8f\xc4\x77\x07\x37\x85\x54\xeb\xca\xe5\x84\x66\xc8\x02\x87\x68\xe2\xe6\x22\x1f\x0f\xd7\xe6\x4a\x28\xf8\x28\x53\x3d\x86\xea\x1b\x6e\x67\x8e\xe4\x14\xd1\x0e\xf7\x2e\x2c\x40\xe2\x96\xa6\x0b\x04\xae\x5d\xe8\x91\x50\x57\x2e\x97\x50\x38\xe2\xee\x9a\x53\xcb\x51\x55\x1a\x48\x17\xf2\xc5\xcb\x29\x16\x5c\x02\x5b\xa2\x7c\x0f\xac\x3a\x54\x6e\xda\x39\x35\x08\xbb\xb2\xf1\xc0\x9e\x00\xf5\x63\xdc\xfa\xdf\x13\xf7\x3e\xf8\x9c\x94\xc6\xcf\x2b\xe5\x02\xfc\xc9\x75\xa1\x0a\xec\xe4\xcb\x20\x08\xa4\xb1\x6e\x4a\x8b\x4a\xde\xd8\x16\x06\x46\xe2\xf6\x83\x82\x3c\xea\x81\x46\x67\x58\x0d\x97\x47\x9d\x37\xfb\x93\xe8\x31\x1f\xba\xcd\x0a\xab\x72\xba\x48\x58\xf5\xd9\x17\xf3\x38\x24\x87\x55\x5a\x52\x84\x95\x92\x4c\x92\xf7\x55\x76\xa2\x93\x9d\x94\x3d\x07\xe7\xcf\xc9\x37\xf9\x55\xc5\x30\xd4\xb2\x80\x28\x77\x03\x7d\x0a\x7c\x0f\xe5\xcb\xb2\x28\xb4\x53\x84\x57\xfa\xf7\xaf\xe1\x7a\x08\xaf\xfc\x6b\x15\xd1\xd0\x5b\xcd\x63\xe4\xd1\xe9\xd3\xf6\xe0\xb2\xba\x63\xcc\x33\xad\xf4\xe5\x5d\x61\x24\x4c\xae\x24\xc4\x44\x18\x8d\xba\xf3\x0a\xb8\xec\x07\x61\x1f\x37\xf0\x14\xc7\x32\x93\x5b\x8a\x18\x10\x87\x2c\x84\x6e\xc3\x96\xaa\x18\x2a\x82\x3e\x22\xee\xc1\xac\x25\x51\x2c\xac\x30\x73\x50\x79\x50\x91\xfa\x82\x71\xd1\xf5\x2f\xf3\xb8\x9d\x64\xa7\xb9\x44\x71\x91\xce\x2c\x2a\xce\xe6\xa4\xb8\xab\xc8\x25\xcb\x0b\x24\x34\x7c\xfe\x9c\x70\x43\xc5\x07\x2b\x65\xdb\x4e\x31\x99\xfb\x8f\x66\x55\x31\xdd\x66\xab\x64\xf0\x16\xac\xb8\xb2\xa6\xfc\x47\xa3\xcd\xed\x13\x05\x60\xab\x12\xe5\x3b\x22\x60\x86\x51\x9f\x12\x6f\xb1\xe2\xb5\xd7\xe8\x75\xd7\x42\xa6\xdb\x2e\xa8\xda\x0a\xb0\x3f\x5f\xb0\xdd\x0a\x2c\x8b\x9b\x6a\x8f\x4e\x80\xc8\xdb\x5c\x9d\x45\x3a\xed\xef\xcf\x57\x00\x76\x7a\x06\x75\xb1\xa9\x11\x6f\xfa\x05\xe2\xa8\x60\x67\x5c\x8c\x79\xa2\x88\x6e\xd0\x00\xbd\xfd\xeb\x40\x14\xe8\x41\x28\x67\xae\xa6\xbc\xa9\x65\x38\x34\xd4\x51\x45\x9f\x61\xa9\xe9\x6e\xac\x1c\x2f\xd2\x10\x15\x51\x84\x2e\x56\x13\x5a\x8d\x57\x86\xfd\xd0\x9f\xa1\xdd\xcb\xb2\x9f\xda\xbd\x7a\x7c\x5d\x7a\x9c\xa0\x8f\x53\x2c\x1b\x0f\x38\x00\x08\x5d\xd8\x0d\xcf\x46\x81\xf4\xa0\x46\x8a\x96\xb7\xb1\x93\xe0\x23\xb2\x7f\x8c\x8d\x39\x5e\x24\x71\x51\x7d\xee\x07\x56\x81\xe6\x77\x6f\x6d\x94\x76\x8c\xfa\x9e\xa3\x78\x40\x6a\xde\x9f\x07\x36\xb4\x1c\x14\x71\xe8\x34\xca\xfa\xf3\x28\x46\x46\x07\x08\x74\x6e\x2b\xf3\xbf\x51\xac\x23\x95\x83\xcb\xee\xea\x0e\x71\x50\xd0\x15\x5a\xd1\x50\x49\x11\xa5\x12\x28\x44\x3b\xbf\x48\x13\x71\xa0\x2c\x2c\x67\x39\xad\x1a\x21\xcd\x00\x60\x1b\xfb\xdb\x09\xb0\x9a\x4e\x4c\x32\x09\x77\x18\x80\xe8\x4e\x93\x61\xb9\xdf\x00\x9c\x19\x0e\x77\x9d\x5c\xc3\x29\x81\x6e\x65\x54\x38\x1a\xf4\x66\x76\xe5\x46\x5b\x87\x2e\x1c\x17\x23\x53\x83\x2a\x20\xe0\x52\xd4\x71\xc7\x2a\x70\x16\x63\x72\x00\x18\xfd\xc4\x28\xb0\x38\x76\xcb\x27\x8c\x5b\xc3\x89\xcb\xa9\x13\x34\x5a\x85\x74\x93\x8b\x5b\x89\x70\xcc\xec\x3a\x2e\xb0\xac\xa1\xdc\xcb\x8f\x2d\x0a\x17\xa7\x4b\x85\x4c\xd6\x96\x10\x7d\x61\x0d\x24\xe6\xd0\xfd\xf4\x50\x47\x67\xb5\x47\x28\xae\x64\xba\x53\x17\x73\x14\x5c\xa6\x50\x1c\x34\x81\x28\x35\x21\x14\x46\x35\x04\x6c\x5a\x8c\xa2\x14\xc2\x63\x36\xb3\xfd\x00\xd6\x35\x11\x02\xc4\x33\x3c\xca\xd1\x09\x03\x87\x07\x03\x46\xc6\x24\xe0\x09\xb4\x97\xdc\xae\x06\x4c\x6a\x3b\xbe\xea\x52\x2b\xb2\xf0\xe8\x59\x4d\x6c\x1d\xe0\x7a\xf3\x00\x97\x38\x70\x55\x35\x5a\x89\xc3\x31\x49\x40\x4c\x6e\x15\x01\xba\xf0\xf2\x87\xf0\x71\x51\xfd\xc3\xb4\x10\x82\x75\x25\x89\x05\x08\x1a\x03\x4e\x55\x46\xdd\xac\x2f\xb0\x56\x9f\x58\x87\x97\x3f\x97\xee\x1e\xa0\x2a\xcd\xb9\xe7\x68\xd7\x51\x67\x60\x62\x95\x7e\xbb\x88\x36\x14\xbc\x86\x45\xbd\x4c\xcf\x60\x1a\x8d\xc4\x2e\x5c\x0c\xf4\xf5\xa7\x6e\x51\x4a\x82\x78\x51\x17\xe6\xf6\xc0\xfb\xf7\x94\x98\x81\x7b\x4d\x84\x43\x12\x16\xb8\xf9\x27\x67\xc0\x95\x6d\x50\x98\x2a\xec\x89\x4c\x89\xa9\x95\x18\x68\x72\xef\x70\x66\x19\xc0\xde\xde\x59\xc0\xfd\x8e\x5b\x41\xd6\x8c\x66\x72\x8a\xb7\xbc\xdf\xda\xbd\xd1\xda\x49\x1e\x07\xb5\x6c\x42\xef\xcd\x46\xa0\x71\x53\x11\xda\x11\xe5\x86\x8f\xe1\xbb\x8f\xbf\x07\x79\xed\xe2\x77\x9f\x7c\xef\x92\xb8\x06\x07\xbf\x75\xf1\xbb\x8f\xbe\x77\x23\xb3\xd6\xf5\xd3\x3d\x99\xcb\x36\x35\x42\x75\x2d\x8c\xa0\x4e\xaa\x50\x2a\xdb\x57\xf2\x4e\xd5\x25\x07\xf1\xfe\x20\xa5\x83\xd1\x0c\xe3\x47\xf4\x54\x8d\x47\x3e\xf3\xbe\x67\xc3\x4c\xf2\x9e\xcf\xa9\xe2\xd8\x86\x2f\x56\xfb\xd3\x32\x7f\x17\xb9\x82\xbf\xb4\x12\x41\x80\x94\xa2\x42\x55\x49\xfd\x80\xa3\x06\x24\xe4\x73\x88\x02\x18\xbc\x12\x5e\xff\x81\x7f\x7d\x46\x73\x23\x84\x70\x33\x3f\x04\x3d\x39\xda\x7b\x81\xa6\x58\xb2\xae\x61\x6c\xdb\xe8\x2d\xb2\xa7\x0e\x36\x0e\x6a\xed\xeb\xc7\xfe\x8b\x15\x50\x08\x61\x8e\x1c\x0b\x69\xf2\x2d\xc9\xc3\x11\x1e\x3f\x17\xc9\x18\x05\x84\x7b\x46\xa7\x5b\x18\xb6\x6c\x13\xa6\x18\x48\x2e\x0a\x10\xbe\xa2\x10\x1d\x9a\x4b\xac\x22\x6c\x59\xd1\x50\x14\x79\x8c\xfd\x5f\x87\x39\x1e\xf6\x0f\x91\x51\xfd\xea\x66\xcc\xe1\xfe\x10\x5a\xce\x3c\x8a\xd6\x3d\xd4\x1c\x26\x19\x31\xc4\xae\x5f\xd8\x34\x10\x98\x77\x74\x87\x7c\xd4\x23\xa8\x87\x12\xab\x0b\xfa\x28\x39\x94\x55\x88\xa5\x4b\x92\xbe\xa4\x80\x2e\xd6\x05\x41\xe4\x01\x05\xb3\x71\x4f\x85\x82\xea\xef\xea\x06\x10\x28\x2d\xa0\x38\xe2\x81\x3d\x3c\xd9\x7a\x75\xa0\x2e\xf7\x9a\x50\xf9\x62\x5a\x45\xa2\xb3\xcd\x18\x96\x9f\x62\xb9\x50\x7d\xdb\x3d\x68\xed\x2e\xa1\x54\xb4\xb4\x6e\xde\x48\x09\x5f\xc0\x9a\x60\x45\xba\x09\xac\x65\x6a\x3d\xec\x4d\x64\xd7\x3f\x09\xe2\xb8\xbc\x88\x03\xdd\xbb\x9d\xcb\x57\x52\xcd\xa3\xbb\xad\x93\xe0\x58\x8a\xe4\x9f\x51\xe3\xcc\x5c\xb1\x53\x7c\xed\x50\x7f\xe3\x73\x54\xae\x89\x1b\x27\x7f\x04\x20\xeb\x14\x1c\x25\x1a\xb4\x57\x17\x5b\x63\x2f\x62\x00\x68\xc0\xe5\x63\x3d\x72\x04\x33\x40\x40\xfa\x6e\x48\x3e\x40\x2b\x72\xf8\xa4\x62\xf8\xa4\x69\x71\x49\x28\x0c\x2b\x52\x26\x77\x25\x24\xb4\x22\x69\x1c\x11\x7f\x00\xc3\x28\x1b\x72\x22\x64\xc4\x07\x20\x58\x8a\x05\x1b\xf0\x2c\x50\xa2\x3c\x33\xea\x80\xcc\xca\xc9\xfd\x68\xf7\xa9\x28\x67\x11\x87\xa2\xa8\x64\xb8\x83\x4a\x19\x20\x33\x8e\x2e\xc1\x68\x92\x03\x7f\x77\x4e\xd4\xa3\xe9\x7b\xde\xc4\xdd\x0e\x90\x32\x11\x02\x6f\xec\xa3\x2b\x84\x35\xc3\xf6\xfc\xab\xc0\x7c\x47\x0d\x20\xf1\x4e\xcf\xb6\x5e\xbf\x15\x1f\x8d\xa1\x04\x72\xdc\x47\xa8\xf9\x6e\xd0\xe8\x30\xcd\x98\x37\x3a\xa2\x94\xd5\x48\xff\xfc\x7f\xe9\x3a\x0c\x23\xa7\xa1\x28\xbb\x78\x8b\xa8\xbe\x16\x86\x00\xc6\x5d\xb6\xdd\x6a\x01\x95\x34\x10\x82\xc7\x4e\xf0\xfa\x77\xfd\x36\x6c\xa1\x00\xa2\xd2\x87\x52\x06\xd9\x4d\xa4\x2b\x1e\xce\xad\x09\xb3\x4f\x7d\x59\x09\xd5\x77\x32\x20\x72\xa0\x12\x1a\xe9\x38\xdd\x10\x01\x1b\x53\xc4\x28\x5c\x33\xff\x13\x30\x2c\xc3\x5b\x6e\xc6\x90\x22\x1d\x1b\x68\x7a\x77\x74\xdf\x38\xab\x81\x7d\x7d\x48\x0d\x7e\x88\x07\x76\x4e\x58\xd9\x3f\xd0\x0f\xdc\xcc\x3f\x68\x8c\x85\xa4\xf9\x90\xee\xcd\x00\xb4\x53\x95\x01\x8e\xae\xe2\xed\x8d\xd0\x31\x0e\x47\x67\x58\x83\xc5\xf0\xb2\x4f\xf1\xee\x96\xe2\x9b\xf4\xb7\x25\x8d\xe2\xed\x39\x29\xfc\x44\x17\xaa\x4e\xfa\xed\x72\xaf\x3a\xb3\xc5\x94\x4d\xc2\xc2\x7f\x04\xb1\xe1\x57\xf6\x77\x56\x77\x96\x9e\x54\xa6\x1b\xcf\x66\xcc\xf3\xc6\x61\x88\xcc\x30\x55\x78\x81\x09\xc4\xca\x7a\x58\x53\x0f\xca\x51\xe7\x77\x53\x01\x25\xab\xf4\x5d\xfa\x64\x05\x0a\xa1\xc9\x91\x89\xdb\x38\x9f\x4c\x54\x03\x93\xe6\x68\x19\xfe\x68\x86\x3b\x19\xd8\x21\x59\x86\x00\x4c\x5a\x91\x32\x3c\x93\x8c\x16\x85\xcf\xd3\x56\xe6\xef\xb4\xa1\xb9\x1a\x48\x95\x19\x20\x7f\xf2\x63\x46\xea\xe9\x34\x49\x20\xb5\x61\xfc\xa7\xe1\x7c\xa0\x04\x33\xc8\x67\x98\xc9\x60\xc8\x28\x33\xa8\xc1\x09\x8c\xde\x7a\xf4\xca\x5b\x9a\x36\xc6\x9c\x77\x81\x09\xd8\xd9\xcb\x18\xf3\x1b\xe9\x84\x33\x7d\x09\xfd\x8f\xbc\x68\x6e\x0d\x71\x18\x51\xc4\x44\xe5\xd5\xde\x02\xb6\x8c\x3c\x0b\x42\xb0\x99\x62\x9a\x3c\x02\x34\xf3\x88\xe3\xdb\xdb\x79\xd8\x9c\xda\x8b\x4f\x8a\xb3\x29\x74\x40\x2f\xb4\x48\x56\xf7\x48\xa3\xec\x15\x36\x17\x9e\xf7\x20\x0f\x99\x5d\x79\x6c\xd1\x25\xe2\x09\x4f\x91\x22\xd1\x7f\x65\xaf\x81\x2f\x44\xe2\x34\xb4\xe9\x10\x18\xfd\xf0\x5b\x4c\x3b\xb3\xf1\x93\x37\xf2\x92\x07\x10\xa5\x8f\x30\xd7\x48\xda\xc9\x44\x8f\xd5\xa2\xec\x35\x02\x27\xab\xa3\x9b\xfa\x81\x97\xdb\xe4\x34\x9c\xe4\x86\x83\x78\xc4\x19\x00\xac\x8d\x5a\x65\x02\x20\x4b\xf9\x56\x98\x03\xd5\xfe\xe1\x62\xee\xdd\xd1\x98\x89\x1b\xc6\x84\x49\xf9\x1a\x13\x3f\x50\x50\x84\xb6\xe5\x91\xd9\x48\x82\xc1\x02\xb5\xd7\x28\x37\xb5\x7d\x43\xec\x37\x20\x42\xea\xbe\x21\xfa\x47\x41\x72\xcc\x5e\xdc\x84\x72\x34\x0f\x57\x81\x02\x48\xf3\x62\x13\x71\x6d\x0b\x33\x6e\x89\x89\x2c\x32\x9e\x94\x12\x8e\xa3\x5d\xa4\x92\xda\xb6\xaf\xc2\x91\xdb\xdd\x67\x67\x28\x33\x01\xb1\x5c\x3d\x55\x8c\xca\x78\xf0\xca\x5b\x3f\xf6\x16\xf7\xe4\xf2\x02\x7b\xbc\xe9\x94\x17\xef\x45\xd0\x87\xc9\xb6\x93\xd1\xa5\x45\xac\xf6\xea\xbd\x50\x01\x6f\x19\x31\x7c\x9b\xdf\xf5\xbc\x8d\x19\xa3\xab\x8b\x72\x2c\x91\xab\x2b\x34\x4b\x1b\x63\x80\xc9\x02\x17\x2a\xd0\xf9\x32\xa4\x39\x94\x65\xfb\x41\xf2\x36\x5b\xd5\xee\x2b\x75\xcd\x6e\x82\x7d\xb5\xe8\xd3\xf9\xcd\x00\xfc\xf7\x41\x7f\xff\x07\xb9\x1c\xf9\xb9\xbc\xe3\x55\x9d\xfa\x28\x8a\x80\x20\x80\x52\xa1\x80\xdd\x63\x62\x2d\x0a\x44\x19\xa3\xa6\x21\xe7\x25\x23\x0e\x01\x8c\x75\x92\xb8\x58\x58\x9b\x9b\x8f\x60\xba\xfe\x02\xdb\x3c\x11\x7d\xc8\xb8\xc9\x4d\x80\xa1\xe7\xf5\x67\xc1\xfa\xcd\x8c\x60\x14\x90\x36\xfc\x80\x64\x76\xbc\xa8\xc2\x22\xcc\x49\x84\xa5\x66\xa3\x24\x24\x56\x9e\x39\xcc\xc4\xf9\x93\x2c\x48\x6e\x62\x3a\xd1\x78\x63\x63\x94\xcc\x9d\x5a\x14\x1d\x11\xf1\x34\xa0\x47\x75\x19\x38\x0e\x1a\x0d\x89\x55\x55\xfe\xef\x44\xd4\xa4\x8e\x62\xd3\x4b\x90\x51\x75\x7a\x4d\xf1\x72\x47\x92\x75\x76\x71\xc6\x30\x37\x15\xce\x6c\xa7\x8b\x8d\x74\x1e\x8e\xd6\xd4\x28\x91\x07\x5f\x66\x51\x70\x7d\x8e\x73\x59\xc7\x9d\xfe\xb3\xdd\x6d\xb5\x6f\x3d\xf1\xb6\x67\x0c\x88\xde\x7c\x25\x04\x84\x09\xeb\x62\x40\x20\xba\xe6\xb3\x46\x82\xd1\xe4\x41\xe5\x50\x7c\x2e\xa7\xff\x46\x56\xe0\xc9\xe7\xed\x85\x27\x12\x25\x82\x97\x24\x34\x54\x42\xe6\x5a\x5d\x26\x31\xef\xba\x23\x09\xdc\x49\x46\x91\x84\x8d\xa3\x3f\xe9\x57\x5d\x7c\xd0\x2e\xa7\xd8\xc5\x07\xdd\x74\x05\xc4\x6c\xb7\x07\x8f\x35\xba\xb7\x25\xe0\x1c\x2e\xb1\x74\x3d\x01\x30\x7a\xa2\x63\xc6\x2e\x1a\x34\xd5\x07\xb9\x0e\x8f\x16\x76\x9b\x86\xd3\x22\x05\xc1\x68\xb5\xbb\xc6\xdd\x33\xdd\x01\x65\x8c\xa5\xeb\x99\x28\x37\xb9\xec\xad\xc7\xd0\x0c\xc3\x19\xa7\xa3\x6d\xcc\xa3\x90\xc3\x58\x0d\x0f\x6d\xb0\x4c\xa6\x62\x08\xeb\xa8\x1c\x73\x11\x00\x73\xbf\x48\x3f\x1c\xe1\x44\xe1\x4a\xed\xc1\x11\x98\x9b\xe4\x29\xda\x1f\xf3\x07\x97\x40\xa4\x02\x11\x08\x8e\xcd\xf0\x04\x34\x86\x30\x27\x1b\x6c\x8b\xf4\x47\xa9\x0f\xac\x40\xb5\x0f\x23\xaa\x59\x17\x8b\x93\xca\x13\x34\x21\x30\x47\xf7\x1b\xfb\xab\x98\x2f\x21\x1a\xa3\xd7\xb9\x9f\x8f\xcf\xee\x07\x17\xe4\xde\x6e\x70\xad\x55\x65\xba\xd1\x89\x1b\xcc\xae\xd4\x8d\x1b\x8c\x82\xe8\xd0\x2d\x9e\x17\x62\x20\xc0\x8c\x2e\x74\x27\x82\x43\x3e\x99\x79\xa0\xc9\x82\x13\x18\x18\xad\xff\xb7\x38\xd6\x4d\x34\x61\x42\x21\x8e\x79\x0c\xc7\x8a\x41\x5b\x46\x30\x36\xc8\xb4\x0f\x1e\xfa\xf5\xfb\xe1\x81\x45\x9a\xfb\xd8\x6c\x0e\x23\x24\xc8\xcf\x17\x44\xec\x09\x9d\x4c\x78\x13\xc3\xfe\xf8\x33\xce\x79\x4d\x32\xf5\xcf\x83\x43\x96\x3a\xcd\x87\xc4\x5a\x88\x42\x95\x62\x36\x49\x81\x93\x9d\x06\x41\x91\x05\xc1\xfa\x9b\xa1\x56\x1c\x69\x2d\xd9\xc5\x6a\x0b\x48\xc0\x06\xe5\x01\x61\x49\xe0\x60\x38\xa3\xb2\x64\xd3\x3c\x7e\x86\xc9\x90\x6a\x33\xcd\xf1\x67\xcd\xa7\xe3\x7a\x5f\xbc\x7f\x2c\x1f\x27\x8e\x85\xa3\xab\x78\x20\xc8\x41\x66\x30\xd9\x5b\x28\x7c\x31\x3c\x8a\xf7\xf7\xf3\x89\x49\x8b\xfe\xf5\x97\xad\xc7\x43\x4c\x4c\xe1\xe0\x2b\x75\x61\x13\x73\xb8\x49\xa0\x14\x1f\x88\x26\x82\x4c\x57\xb8\x19\xda\x17\x1e\x45\x84\x93\x06\xe1\x92\x06\x2f\x8d\xdd\x1c\x8a\x53\xb5\x58\xfc\x00\x2a\x88\xe8\xd3\x50\xfd\x99\xcb\x20\xb7\x2a\x56\x29\x97\x26\x0c\x86\x99\xd4\x20\x87\xc3\xaa\x28\x21\xcd\x52\xd5\xfd\xd8\xf8\x50\xc2\x31\x90\xa1\xd8\xc7\x58\x2f\x18\x4b\x1e\x9c\x8c\x98\x45\x81\xa2\xca\xe5\x76\x50\xc2\xf1\x18\xad\x10\xd8\x96\x68\x24\xe6\xdd\x15\x5d\x3d\x3c\xbc\xb2\xdd\xef\x50\xfe\xb2\x84\x46\xcc\xbb\xeb\xba\xba\xbe\x8d\x80\x77\x14\x61\xdf\xd2\xae\x09\xb7\x49\x57\xe0\xf3\x74\xaf\x39\xcd\x39\x9b\x12\xae\xc1\x03\xf3\x12\x81\x5b\xdd\x6a\x06\xd5\x8f\x33\x90\xa1\x02\x23\x57\xdb\x0f\x3b\x0c\x1b\x27\x7e\xd5\xee\xc6\x93\x5f\x6e\xdf\x24\x4b\x07\x24\x1a\xf0\x49\x10\x94\x73\x48\x17\xde\x24\xdf\x39\xf1\x76\xee\x63\xa0\x3c\xc5\x64\x37\xf6\x6f\x62\xac\x3a\x08\x6c\x13\xa3\x78\xcd\xed\x70\x1c\xf3\x8e\xc2\xd6\xd9\x3d\xe0\x2f\x9c\xf5\x84\x6e\xe8\x58\xdf\xfc\xe9\xd2\xb7\x96\xbe\x8c\xc9\x91\x09\x67\x07\xdd\xfc\x33\x8f\xd7\xb5\x8c\x84\xd8\x92\x3b\x93\x72\xce\x6b\x21\xcd\x18\xbf\xcc\x31\x76\x4f\x22\x71\xb2\x51\xe0\xe8\x55\x09\x03\x03\x2c\x5a\x48\xa8\xf4\x14\xdf\xa2\x37\x45\x45\x0c\xef\xe3\x20\x18\x8a\x81\x48\x92\x1c\x3b\x77\xab\xe8\xc7\xe8\x2f\x2a\x40\x46\x2b\x77\x29\x15\x5a\x2c\x29\x62\x12\x4a\x00\x73\x41\x5a\x42\x45\x0f\x64\xa2\xc3\xb9\x8e\x70\xac\x45\x60\xb0\xd6\x2b\x75\x91\x35\x06\x53\xe2\xb4\x35\x2a\x67\x4d\xa7\xa6\xba\x9d\xdc\x80\x74\xd7\x38\xbe\x9d\x20\x79\x4a\x9e\x72\x2d\x77\x22\x65\xcf\x3d\x97\x67\x17\x9e\xb5\x0e\x9f\xa2\x1d\xe3\xe4\x01\x6e\x22\x95\xf2\x53\x0e\xd6\xfd\x43\x26\x3c\x64\x23\x94\x3f\x11\x65\x39\x41\x18\x86\xec\x84\x69\x41\xfa\x23\x93\xb9\x2c\x2d\xb1\x64\xe9\x15\xcd\x02\x78\x69\x55\xf3\x7d\x8e\xa5\xf7\x1f\xbd\x6d\x9c\x8c\xab\xcb\x9f\x18\xd4\xc0\x33\x0d\x1c\x14\xc4\xce\x65\x85\x96\x67\x40\x7e\xe1\x06\xb9\x1d\xb6\xc1\x34\x9f\x1c\x36\x17\x8e\x91\x6e\x17\x9f\x61\x6c\xff\xf4\x6e\xf2\xd0\x28\x4e\x5a\x66\x20\xfe\x85\x18\x8c\xf2\xce\xc9\xb0\xa9\xcd\x38\xe3\x17\x68\x91\xa0\x19\x36\x26\x41\x1b\x5c\x40\x04\x58\x4a\x22\x01\x73\x87\x8d\xd9\x3a\x1d\x15\x63\x24\x6e\x55\x65\x8b\xd4\xd6\xd4\xd6\xce\x6a\xfb\xde\x30\xef\x71\xf5\xf8\x83\x24\x1c\xf3\x66\x66\xcd\xfd\xae\x52\xe1\x68\xe9\x58\xa7\x66\x84\x93\x55\xdb\xee\xf8\xd6\x36\x28\x05\xa0\x36\x83\xfa\xfe\x3f\x2f\xfd\xe9\x6b\xbe\x2e\x46\xfd\xfe\xf8\xc1\xd5\xab\x57\x3f\x40\x19\xeb\x83\x6a\xb9\x60\x17\xf1\x63\x4e\xc6\xc4\x49\x87\xe4\x52\x1a\x8c\xe9\xdf\x89\x8b\x58\x06\xa2\x84\xd4\x29\x5f\x74\x38\x45\x93\x79\x4e\xe1\xb2\x98\x69\xf1\xd9\x58\x60\xaa\x3e\x76\xb6\x6c\xab\x5b\x61\xb1\x95\x73\x0b\x99\xec\xe5\xe0\xba\xb7\x44\x82\x46\xc9\x80\xa1\xf2\xd0\x1d\x67\xaf\x7e\x70\xe2\x3f\x1a\xe5\xec\xd5\x11\x18\x76\x46\xb1\x1b\x4a\xbd\x84\xa0\x41\xec\x2b\x76\x10\xfd\x2f\xc9\x32\xe9\x56\xd2\x84\xbf\xf8\xa0\xb5\xf1\x18\x16\xd3\xe0\x77\xc8\xd7\x68\xa5\x29\xb5\x50\xa4\x11\x8a\x04\x74\x8a\x85\x01\x4a\x59\x4b\xd8\x91\x55\xc3\x12\x45\x38\x5c\x3f\x4c\xf6\x5c\x9f\xb2\xb4\xc1\x9f\xe5\x01\x72\x4f\x10\x0b\xbb\x79\xd3\x10\x79\x07\xbd\xda\x68\x20\xef\x82\xcc\x87\xe2\x7b\x6d\x36\xd6\x10\x5f\x07\x97\xf4\x94\xde\xec\x31\xe6\x21\x1d\xdd\xf2\xde\x3e\x6f\xec\xd7\xbd\x9d\xbd\x38\xbc\x69\x8e\xea\x50\x6a\x66\xc6\x65\x0f\x06\x86\xea\x8a\xc7\x2c\x01\x11\x42\x1e\xc9\x48\xd2\x8c\x4e\xa4\x9f\x28\x28\x27\x20\x4c\x49\x4e\x1c\xba\x13\x1e\x2b\xd5\xb9\xe1\x8e\x6f\x9b\xc7\xac\x1c\xbc\xf3\x6f\x24\x0f\x0c\x67\x48\xa0\x75\x04\xa1\xc0\x58\xca\xf0\x0a\x20\x07\xa0\xed\x1f\x3f\x73\x62\xd7\x10\xa3\x2c\x46\xcb\x0f\xc4\x62\x92\x8f\x54\x01\xed\xd4\x45\x47\x01\x54\x84\x68\xd5\xc5\x59\xa7\x36\xc7\xa8\xe0\xe9\x99\xc7\x04\x3a\xe8\xd8\xe0\x40\x15\xc2\x2e\xa6\xaa\xa4\x47\x76\x4c\x89\x86\x37\xa9\x90\xb6\x84\x94\x87\x50\xc2\x1b\x28\xe0\x8b\x78\xa1\x8c\xef\x81\xb3\x3a\xc2\x57\x50\x43\xbe\xe7\x4b\x58\x85\x1d\xfa\x0f\x46\x60\x4a\x61\x3c\x73\x83\x7c\x0b\x4b\xdd\xbf\x8a\x14\x46\x52\xf0\x47\x37\x73\x5f\xa6\x88\x4f\xbf\xb4\x57\x67\xdb\x43\x61\x65\xbd\x54\x70\x06\xcc\xfb\xc5\x9c\x6f\x5c\xdf\x8d\x35\xe7\x15\x00\xab\x3b\xd7\xc9\xb0\x14\x6e\x1c\xb4\x8b\xa2\x1e\x25\xf6\x44\x61\x9d\x25\x4b\x0a\xd2\x35\x6b\x47\xd4\xe2\x90\x19\x37\x61\xb0\x91\x2b\xb2\x31\x66\x18\xbe\xce\x6b\x76\x94\x78\x9d\xd7\xac\xf6\x9e\x3b\xbd\xf1\xb6\x8c\x3b\xbd\x21\x6c\xc5\xef\xea\x9a\x75\x3b\x5c\xd6\x4d\x9a\x6b\xd4\x5a\x99\x8c\xf4\x84\x0a\x51\x9b\xa5\x51\x31\xb0\x59\x2a\x0b\x8e\x24\x8e\x57\x36\xcb\x88\x56\xde\x59\xfe\x4c\xea\x57\x07\xeb\xc7\x06\x1c\xb2\x62\xe6\xf2\x3d\x3d\x5d\xdd\x65\xe7\xaa\x8b\x97\x61\xab\xe5\x2c\xac\xf9\xeb\xe9\xd6\x46\x4d\x9d\x37\x04\x80\x9e\x66\xbc\xb6\x56\x7b\xd3\xba\x79\xad\x79\xed\x40\x3e\xb3\x97\x52\xf2\x42\x28\x27\x25\x95\x90\xaf\x2f\x92\x3a\x9b\xbc\x1a\x20\x3f\xa0\xf6\x43\xa7\xab\xc0\xba\x7d\xce\xd5\x34\xfe\x45\x97\x78\x61\xa1\x58\x6a\x23\x79\xad\x59\x5f\x6e\xed\xac\x28\x40\x2c\x16\x84\x0e\x3f\xc7\xb7\x39\xd4\x09\x63\x49\x3c\x06\x3f\xea\x02\x9a\x16\xb0\xa5\xb9\x03\xe3\x2a\x9e\xb2\x8a\xa8\x0a\x17\xc9\xab\xeb\x4f\xdf\xf2\x86\x0d\x43\x0c\xc8\xfc\x11\x08\xc6\x9e\x86\x50\xf8\x82\x5d\xde\x38\x9c\x00\x0d\x9e\xee\x32\xd0\x37\x0a\xd1\xe6\xec\x31\x7c\xb1\x5e\xa2\xb3\x75\x28\x78\x57\x87\x90\x70\x55\xcc\x51\xfc\xf4\xb7\x04\xf4\x20\xc5\x8e\xd5\x02\x88\x5c\x39\xd3\x03\xfa\xc1\xe4\x58\x73\xf3\x34\xf8\x5a\x2a\xdb\xaa\x5a\x7b\x55\x32\x92\x07\xa5\x80\x33\x44\x7e\x73\xf3\x25\xdd\x1f\x56\x9f\x43\x41\x27\xea\x63\x06\x75\x06\x7c\xef\x00\x93\x64\x19\x63\x6c\x1c\x8c\xa3\xc9\xe2\xed\x0b\x13\xe5\x17\x73\x01\xde\x22\x0e\x72\xcc\xdd\x70\xd1\xb5\x54\x70\x83\x1e\x0a\x91\x17\x67\x59\xf5\x0f\x67\x14\x81\xa9\xe2\x4a\xa6\x57\x1e\x0b\x0a\x45\xe7\x04\xc5\x24\x0f\x9a\x91\x08\xe1\xba\xea\xad\x0c\x8e\xe0\xc6\x3c\x5d\xc1\xc5\x87\x50\x2c\x03\xfa\x80\xf8\xf4\x8f\xac\x8c\x7e\xdb\x83\x90\x2f\x9c\x4f\xc1\x28\xe9\xf0\x2a\x88\xe5\xe9\x7e\xc5\x99\xc2\x27\xc8\x57\x99\xf2\xe5\x9c\x73\xb5\x48\x87\x08\x63\x57\x29\x55\xaa\x99\xab\x65\x32\x9e\xd3\xd7\x28\xfe\x29\x20\x11\x9d\x91\x77\x6a\xa8\xd4\xac\xde\x80\x6d\x18\x1f\x80\x19\xc2\xac\xed\x94\xd1\x6e\x50\xd6\xa5\x8c\xf1\xe4\xf3\x06\xfe\xd6\x3a\x3e\x96\x37\xb8\xa2\x54\x23\x22\xe4\xe9\x82\xbe\x62\xa4\xc9\x48\xbd\x40\x97\x50\x49\x5d\x13\x54\xea\x86\x37\x7b\xb3\xb9\xbc\x1e\xe4\xf7\xab\x1f\xb6\x76\x76\xd0\x4a\xb9\xf8\x0c\xb7\x11\xa3\xf4\xe6\x1d\x4c\x7d\x37\xb7\xdc\x38\xdc\x68\x4e\xed\x7a\xab\xd7\x8d\x6c\x8c\xba\x0f\xcc\x2a\xe5\xf6\xc9\x2a\x44\x47\x40\xa9\xe6\x79\x1f\x70\x7c\x57\x74\x37\x90\x6a\xa8\xf6\x83\x2c\x01\x13\xb1\x28\xc1\x51\x72\x4b\x67\x0a\x78\x27\x70\x40\xb2\xa5\x99\x94\x62\x1e\x3e\x4c\x32\x62\xb3\xe3\xa1\xdd\xbf\x61\x64\xeb\x3f\x7f\xee\x3b\xa7\xdc\xfb\xbd\x91\xee\x52\x25\x8b\x37\x52\x5d\x72\xa9\x4e\x5a\x15\x01\x19\xde\x24\xb1\x21\x68\x20\x72\xab\x96\xc1\x30\x74\x93\x12\x44\xe3\x5d\xb0\x9d\xc1\xe6\xf2\x36\x9a\xed\x77\x6f\xfb\x37\xa6\xf9\x4a\x2d\x19\x18\x27\x29\x0d\xeb\x35\x7d\x45\x28\x78\xb2\x4e\xe5\xf8\xa2\x4b\x3c\x2c\xdc\xd1\x3b\x70\x68\xa0\x65\x5f\x0d\x66\x70\x28\xd9\x4e\x09\xd9\x86\x61\x9f\xa2\x84\x89\xf8\x4a\x96\xeb\xf4\xdb\x14\x60\x7e\x6d\x90\x9e\x38\xb8\x8b\xf1\xa5\x14\x01\xc8\x89\x3b\x5d\x35\x21\xca\xa6\x89\x39\xb7\xae\x52\xce\x72\x34\x83\xe1\x3d\x9b\x49\xd5\x1e\x17\x84\xb3\xbf\xed\x6f\x25\x5c\x6e\xc2\x56\x43\x2f\xee\xa9\xa6\x11\x57\x9c\x35\x80\x07\x2a\xce\xe5\xe4\x8c\x9e\xf2\x5d\x82\x2c\xf0\x7b\x0c\x5e\x93\x75\x24\xa3\xc1\xae\xe4\x06\xf1\x97\xd6\xd9\xe0\xc5\x69\x04\x61\xc9\x1a\x20\xc4\xd3\x74\x82\xbc\xa5\xd8\x41\x70\x45\x6d\xd0\x9b\x06\xe8\x25\xee\x8a\xe3\x71\xa5\x73\x38\xce\x87\xee\x73\x3c\xae\xba\x97\x49\xf5\xf1\x2a\x4f\xde\x75\xb5\xf0\x10\x5c\x52\x85\x61\x70\x55\xcc\x39\xf1\x56\xcc\xd8\xec\x84\xda\x1e\x6b\x1e\x6e\x90\x6e\x97\x9c\xde\xce\xa0\xc2\xbf\x3b\xc3\x9d\xd1\xc6\x7b\xae\x85\x06\x4f\x0f\x52\x9d\x5f\xeb\x1b\x0d\xd2\xba\x85\xb7\x86\x69\x99\x3a\xcb\x09\xd9\x21\xcb\xdb\x7b\x9c\x94\x1d\xc6\x1a\x06\x0e\x52\x6f\x18\xd0\x9d\xb5\x20\xf1\x70\x02\x9d\xfe\x5a\x07\xa7\x50\x74\x47\x07\x67\x72\x72\x31\xc1\x17\x25\x17\x7b\x9f\x6e\x96\x32\x33\x56\xc6\x35\xb7\xa4\xec\x09\x9d\x60\xdf\x9f\x46\x41\xcf\x48\x1b\x58\x7f\x4d\x1a\x85\x0e\xbe\x84\xc4\x7c\x0a\x9d\xc6\x88\xbc\x42\xde\xad\x61\x24\x85\x92\x2a\x24\x41\xab\xdb\xbf\x02\xff\x77\x66\x56\x48\xb2\xc4\x63\xa0\x13\x5d\x40\x65\xe5\x03\x73\x08\xc5\x4c\xd3\xfc\xf2\x5d\x6d\x2f\xc8\x58\xba\x8f\x8e\x31\x8d\x2d\x21\x16\xe2\x96\x1a\x5b\xb2\xff\x84\xd9\xf2\x61\x9a\x55\xc9\x33\x85\xed\x86\x0b\x75\xf8\x17\xe5\x30\x63\xc7\x99\x01\x53\xa6\xe4\xf1\x29\xfe\x1e\x6b\x81\x4b\xc3\x4d\x70\x67\x01\x10\x3b\xa0\x8c\x50\x74\x55\x20\x8e\x11\x7f\x61\x07\x78\x6a\xb4\x69\x58\xe8\xac\x8d\x97\xe0\xef\xcf\xb4\xe6\xa7\x5b\x87\x4f\x1b\xf5\xe3\xa0\x94\x7d\x36\x29\x33\xb5\x6f\x50\x08\xe7\x3b\x96\x51\x56\x58\xfd\xf6\x89\x94\xc9\x11\xa6\xad\x66\x24\x3c\x61\xf2\x55\x3a\xcb\x28\xde\x16\x2b\xa0\xf8\xaa\xfd\x34\xcc\xf1\x88\xb7\x46\x9a\xc1\xf7\x32\x38\xd7\x0b\xd7\xa7\x34\xac\x78\x02\x76\x61\x96\x53\x49\x71\xaa\xce\x2a\x2e\x30\x07\x17\x2e\x41\x29\x44\x92\xf4\xc0\xd0\xea\x68\xce\x24\xd6\x9e\x50\xae\x11\x6e\x1c\x27\x28\x6b\x91\x87\x4f\xae\x88\x62\x12\x3b\xbc\x31\x8c\x2c\xf0\xf9\xc3\x20\xbd\xad\x91\x1c\x87\x9a\x25\x81\x54\xf5\xeb\x8d\x2c\x60\x22\xc0\x50\xbf\x26\xc0\x2f\xe8\xf8\xe7\xc1\x21\xb9\xaa\xac\x1c\x28\xef\x1b\x81\x3c\x56\x29\x0c\x8c\x33\x94\x86\x46\x60\x02\xfc\x9a\x11\x60\x1e\x7a\x36\xf5\xc2\x50\xf8\x35\xb1\xe1\x37\x20\xaf\x98\x52\x0d\x5e\x5a\xa0\x46\x92\x46\xa6\xee\x6c\x07\x07\x6f\xe8\xf2\x36\x03\x05\x31\x35\x04\xa2\xce\x0f\x2e\x24\xe2\x77\x63\x47\x7a\x90\x4b\x84\x27\xb0\x7b\x70\xf6\xb6\xb6\xf8\xb8\x37\x0d\x02\x94\x22\x60\x0e\x6a\xaa\x23\xf2\xad\xa9\x9d\x45\x62\x54\xc2\xfc\x81\x87\xa6\x05\x32\x9e\x99\x6c\x22\x2e\x4b\x3e\x20\x93\x26\xa8\x32\xfa\xb0\x84\x66\xe4\xd9\x09\xd1\x36\xda\x62\x48\xb6\x51\x7b\x9e\x57\x23\xa1\x67\xa3\x3d\xa5\x8e\x31\x8a\x42\xdc\x3a\x0e\x6b\x98\x59\x92\xd3\xf8\xd0\x41\xaa\x17\xd2\x3c\x85\xce\x66\xe0\xe6\x20\xd1\xa7\x7f\xfd\x18\x99\xf3\xda\x73\x6f\xaa\x8e\x5e\xd1\x48\xf2\xe8\x58\x02\xaa\xd8\x40\xb5\x39\x8a\x4c\xbf\xa1\xc9\x05\x27\xb5\xb1\xe3\xe3\xd2\xa0\xa2\x45\xce\x7d\x05\x63\x08\xef\x2f\x4d\x03\xcc\x44\x0c\x2d\x5d\xd1\x4d\x64\x4a\xe8\xcf\x21\xbd\x26\xc2\x39\xf0\x5d\x9b\xe9\x2d\x68\xc5\x88\x4e\x30\x59\xc2\xbf\xdf\xc8\x4c\xbb\x0b\xb3\xa0\x50\xf2\x9f\x0e\x1c\xe3\x3d\xfd\xa3\xe8\x4d\xe9\x5a\x22\x9b\xe2\x97\x21\x84\x46\x18\xe7\x24\xfc\xfc\xb0\x66\x26\x94\x05\x9c\xec\xc9\xca\x49\x6f\x8c\x32\xa4\xd8\x70\x17\x4a\xb7\x89\xec\x0a\xe3\x61\x6c\x73\x67\x84\xa1\x25\x4e\x81\x62\xc7\xf8\xe0\x8b\xb7\x56\x04\xbd\x0c\xd5\x58\xb4\x13\xa8\xb4\xee\xde\xde\x52\x6b\x57\xc2\x09\x4c\x6e\x17\x24\x6d\x10\xe3\xa9\x4e\x36\x1e\x64\xac\x51\x6f\xce\x10\xc2\xbf\xef\xfc\x5a\x3e\xba\xbc\xd4\x3b\xe3\x2a\x5b\x82\xf9\x5a\xbb\x12\x4c\x55\x59\x42\xc6\x6f\x55\x84\xd9\x04\xf0\x3a\xad\x92\xe0\x8d\x54\xe9\x0a\x84\x9f\x9a\x0b\xbd\x31\xa7\x8a\x24\x66\x27\x25\xaf\x2a\x4d\xcf\xe0\x0b\xb4\x2a\x7d\x83\x53\xcc\x53\x48\x89\x7a\x50\x16\xe6\xa0\x26\x00\x42\xa5\x8b\x2f\xdf\xf4\xd2\x0b\xe2\x74\xe7\x93\x92\x18\xd2\x17\x7f\xf1\x29\x7d\xa9\x38\x15\x90\x48\xfc\xc1\x7a\x6b\x67\x05\xf3\xe8\xe7\xc8\x80\xaa\x50\x42\xe6\x49\xc0\x3d\xca\x5b\xdc\x03\xd9\x2e\xb5\xa9\x53\xc3\x39\x25\xbb\x1c\xca\xc7\xad\x1f\x26\x08\xb5\x36\x00\xcb\xd8\x4f\x26\xd1\xaa\x9a\x0f\x8c\xb9\xb5\x31\xd2\xbc\xf9\xc6\x47\xa7\x53\x42\xcf\xe9\x7c\xb1\xc7\x91\x67\x07\xf4\x8b\xdc\x34\x0c\xbc\xa6\xd3\x4d\x46\x3b\x7a\x44\x4a\x3f\xe3\x37\x61\x7c\xdd\xdf\xd2\x01\x74\xa1\xaf\x9c\xf7\x31\xfa\x55\x87\x3c\x25\x7c\xe5\x2c\x29\xd1\xb2\xd6\xeb\x87\xa1\x4f\xf8\x50\xfb\x0a\x9c\x62\x87\xe1\xaf\x4b\x2b\xbc\x31\xd9\xf1\x13\x2a\xc3\x94\xcd\x14\xc9\x16\x6b\x87\xa2\xda\x62\xd3\x09\xe7\x63\x0c\x97\xb1\x6c\x97\x38\x50\x4e\x2d\x14\xab\x61\x98\x44\x63\x65\xfc\x4a\x27\x3d\xb5\x1a\x2a\x30\xe4\xfa\x58\x2f\x2a\xb8\x38\x5a\xc0\xb6\xa6\x18\x38\x35\xd2\xa8\xc3\x3e\x5e\x89\xad\x10\x6d\xea\x58\x3b\x12\x7b\x9b\x54\xa3\xbd\x70\x43\x39\x73\x13\x28\x53\x0c\xb1\x72\x0c\xca\x93\xed\x09\x60\xfc\xba\x21\x5d\x46\x18\x7e\x99\x0c\x52\xae\xa2\x1a\xbe\x41\x46\xe9\xa0\x1c\xa3\xf8\xf1\x52\x08\x65\xb3\x74\x28\x81\x14\x9c\xd3\x28\xf9\x2d\x6e\x71\x0a\x4b\x73\xed\xce\xae\x19\x1c\xa9\x1c\x8b\x16\x6e\x41\x1c\xf9\x2c\x04\x18\x19\x59\x75\x83\x72\x38\xe7\x8b\xd1\x17\xb5\x94\xef\x44\x37\xcb\xfe\x5c\x9d\xaf\xef\x17\xb4\x10\x1f\x9a\x6e\x03\xa6\xf5\xfe\x41\x91\x91\x0e\xb3\xb2\xe4\xaf\xd8\xe1\xe1\xc8\x3e\xdb\xbe\x47\x59\xcd\xce\xae\x18\x19\x85\x59\xf5\x8c\x21\xe0\x5b\xa9\xbd\x59\xf5\xec\xa3\x7a\x92\x5c\x2c\xa0\x0f\xaf\x7b\x8b\x27\x18\xfc\x36\xf7\xa6\x53\x9d\xe4\x5e\x8d\x8a\x89\xbd\x96\x6d\x77\xa0\x98\x4d\xd3\x0b\x9f\x6e\x1f\xf9\x2e\xf9\x12\x8f\xa4\x23\xfe\x4d\x17\x7c\xfe\x90\x53\xce\xe4\xff\x66\x93\x8b\x0f\xad\x59\xf2\xf6\x72\xad\xb5\xfd\xd8\x9b\xbd\xf9\x0e\xa3\x8d\xe9\x61\x55\xf5\x5e\xba\xb8\xdc\x0e\x96\xe5\xd9\x01\xd1\xde\xc7\xce\xee\x3b\x32\x07\x66\x84\xe6\x78\xde\x37\x07\xc3\x7b\x1e\x9e\x88\x89\x14\x94\x51\xfe\x42\x80\x9a\x53\xd4\x38\x2d\xb9\xce\x36\xcf\xa7\x9c\xf6\x6f\x71\x4c\x69\xe7\xe1\x9b\xdd\x26\xae\x43\xac\xcb\x0e\x93\x0a\x9d\x32\xfc\xe2\x76\xb5\x54\xc9\xeb\xe0\x16\x7e\x28\xd6\x9f\x7f\xd3\x9e\x7f\x15\xda\xa5\xd5\x32\x7a\x0c\xd3\xbd\x4e\xd9\xa9\x82\x0e\x61\x8b\x93\x10\xd6\x43\x3e\xd0\x09\xd5\x1e\x9d\x4e\xaa\x05\x5a\x02\xc8\x42\xe9\x2a\xe7\x0f\x62\x7d\x62\x64\x18\x28\x56\x12\xf1\x85\x6b\xd1\xb1\xac\xea\xa0\xb1\x32\xcb\x36\x6d\x0e\x0c\xc7\xb5\x1e\x41\xf4\x71\xd8\x17\xde\x08\x0f\xaa\x4a\x25\xa7\xbb\x92\x81\x21\xe5\x52\x0c\xc1\x6f\x4a\x45\x7a\x29\x39\x94\x98\x2f\x5d\x00\x9c\x56\x4b\x69\xc4\x01\x09\xf1\xed\x5b\x35\x4e\x88\x84\xfe\xc4\x3b\x7b\x09\xad\xab\x21\x49\x1d\xe9\x83\x06\xd5\xb1\x0e\xde\xc1\x0f\xc1\xb7\x47\x6f\xfa\x73\x09\x7d\x28\x94\xf5\xd9\x99\x52\x08\x61\xd6\x1f\xe0\x8b\x75\x06\xda\xa8\x46\x14\x01\x46\xa5\x44\x2c\x98\x95\xf2\x39\xd0\xce\x8c\x0a\xcd\x27\x87\xed\xf9\x17\x67\x55\xa0\x58\x00\xf1\x49\xe9\x37\x94\xcd\x81\x76\xaa\x29\x4e\x9b\x1c\x46\xd1\x32\x26\xde\x57\xd1\xe9\xfe\x17\x3b\x0b\x2c\x9c\x61\x76\x0f\x5a\xcf\x57\xe2\xf4\xd6\xed\x38\x15\x7c\xab\xbc\x84\x62\x16\x45\x6e\x11\xfe\x28\x88\xd0\xba\x84\x9f\xac\x44\xd4\x31\x74\x14\x77\x26\xa9\x49\xed\x04\x8a\xc3\x74\x85\xd0\x5d\xb9\x9a\xad\x54\x61\xc7\x4a\x9f\x5f\x5d\xc2\x24\x87\x74\xd9\xfb\xc6\x19\x6b\x16\xab\x9d\xdc\x79\xbc\xb5\x50\x23\xd9\x4c\xb6\xcf\x4e\x18\xc3\xe7\xf8\xfd\x17\x0c\x22\x56\xbf\xc3\x28\xe2\xed\x85\x36\x14\xbd\xa7\x82\x26\xf5\xee\x6a\xf6\xb2\x5d\xc1\xeb\x31\x7d\x69\x72\x57\x27\x37\xe8\x8d\xdd\xf5\x1f\xce\x78\xb7\x6b\xde\xfe\x44\x6b\x65\x33\xde\x22\x9c\x3c\xfd\x76\x25\x43\xb1\x07\xc9\x43\xfa\xfd\xe7\x96\x37\x7c\x5d\x44\xe3\x58\x7d\x07\x34\x8f\x72\x5a\x04\x6f\xd9\xb5\x28\xc2\x04\xec\x81\x34\x3e\xb3\x45\x96\xcb\xe3\x4d\x61\x02\x19\x3e\x09\xb3\x03\x59\x7a\xe1\x67\x1c\xf6\x2e\xf5\xcf\x9b\x8b\x4e\xc0\x08\x62\x49\xe3\x80\x4a\xc4\x5f\x5b\x6f\x97\x9a\x8f\xeb\x9c\x3f\x1d\xeb\xc5\x79\x2c\xf3\x3d\x05\x8f\x20\x24\x66\x31\x20\x68\x29\x89\x6c\x12\xc0\x4b\x19\xdc\x85\x08\x7f\xff\x9a\x37\xb4\xd8\x09\x5e\x8d\x86\xc1\x8d\x81\x18\xb5\x22\xd8\x67\x86\x15\x8c\x44\xb8\x95\xe8\x87\x1c\x15\x2f\xd9\xc8\x81\x40\xed\x42\x48\x63\x0c\xe9\x92\x5d\xf1\xb7\xa1\xc5\xf3\xa7\x5e\x23\x62\xa8\xc8\x73\xa0\xfc\x55\x89\x61\x74\x75\x5d\x05\xe1\x49\x51\x34\x2f\x0a\x7f\x66\x21\x47\x82\x70\x70\xc8\xfc\x59\x52\x41\xa9\x01\xc8\x94\xb9\x4c\x5e\xa6\x95\xd7\x50\x51\xef\xec\x19\x00\xd6\x31\x2b\xa3\xe1\xf7\x68\xf9\x65\x67\xf2\x18\xaa\x97\x68\x83\xe9\x85\x03\x93\xe4\x69\xa5\xe4\x6b\xa4\x5c\x29\x14\xb4\x21\xf3\x21\xf9\x97\xe3\x76\x58\x49\x06\x1d\x44\x15\x52\x96\xd1\x14\xe7\x15\x0d\x55\x28\x38\xbd\xea\x85\x7e\xd1\xac\x39\xed\x8a\x48\xfa\x0c\x19\x7b\xca\x76\x6f\xc4\x1b\x3c\x42\x6f\xe1\x93\x43\xe0\x0b\x68\x4a\x3d\x5d\xf2\x27\x86\xc8\x6b\x73\x4f\xbf\xfc\xa7\x8d\x87\xd1\xf7\x92\x82\x37\xc3\x93\x1f\x4b\x0a\xe6\x18\xb8\x75\x68\xae\x66\x2d\x05\x96\x77\xd3\xc1\x2a\xeb\x96\xf9\xc5\xec\xf0\x8a\x23\x24\x2d\x7a\x00\xc5\xae\xd3\xb0\x85\x54\xe3\x07\x9d\x9d\x18\x7b\x4d\xc2\x93\x91\x57\x9b\x2a\xf1\xc2\x18\x37\x2c\xb5\x75\x2a\x79\xf2\xca\xb3\x98\x30\x83\x44\x2f\x9b\x1e\xa3\xa6\xb2\xd8\xeb\x75\xff\x7f\x9f\xe8\x33\x47\xa1\x1e\xea\x33\x07\xf1\xcb\x5f\xe9\x63\x92\xe9\xfc\x56\x9f\x81\x15\x33\x7c\x4d\x96\x2c\x7e\xfd\x16\x9f\x2d\xeb\xa2\xfb\x35\x21\x86\x62\x98\x99\x14\x43\x21\x48\xd3\x9b\x1c\xc4\x62\xb8\x5d\x1c\xb0\x20\x06\xc0\x3b\xea\xab\xb2\x8d\xcb\xab\x91\xcc\xc4\x88\x49\x10\xab\x08\xf7\x69\xda\xaf\x9a\x77\x26\xa0\x5b\x05\x1b\xcb\xb6\xc4\x9f\x3b\xe4\x52\x8f\x7a\xdb\x74\xae\x55\xb7\x8b\x72\xcf\xda\xea\xb5\x3b\x1a\x0f\x17\x60\xc6\x59\x57\x52\xce\x1a\x9f\x43\x79\x4e\x65\xf8\xb8\xf3\x65\xff\x87\x86\x6f\xda\xd6\x14\xca\x18\x96\x12\x23\x18\x17\xa8\x88\xb5\x48\x51\xfc\xf1\x62\x2e\xe0\x54\xcf\xdc\xa4\xc4\xe5\x72\x01\x3f\x1c\x26\xd9\x44\x76\xe9\xe5\x39\x2e\x48\x8a\x41\x51\xac\xd6\x18\x73\xc7\x86\xa9\xb4\xe3\x78\x22\x31\xb9\xfc\xb1\xcf\x71\x31\xbd\x5b\xdd\x5f\x3c\xd4\x4f\x19\x51\x41\x09\xb3\xf3\x71\x41\xf3\xe9\xae\x37\xfd\x93\x2a\x20\x6b\x43\x0e\x1f\xae\x45\xcb\x82\xf5\xc5\xd7\xa1\x02\xfd\x9c\x16\x17\xab\x27\xb4\x12\x20\xb4\xfb\x4a\xa9\xa9\xfc\xc0\x09\x26\xeb\xe1\x3b\xb2\x98\x5f\x7a\x0a\xf4\x3c\x9d\x80\x80\xc3\x9c\xd0\x61\xac\x0c\x7a\x8d\xfd\x6d\x7e\xfd\x14\x9f\x80\x7e\x3c\x24\x79\x02\x68\xe3\xb7\x9f\x46\x2f\x25\xeb\x27\x41\xe5\xf8\xa5\x14\x46\x72\xff\x8c\x12\xbd\x72\xfe\xa0\x10\x0c\xcc\x13\xdf\xda\x36\x66\x99\xa9\x54\xca\xf9\xee\x2a\xba\x3c\x29\xaa\x86\xe2\x8b\xbc\xe7\x0f\x29\x0f\x7c\x14\xc4\xad\xf2\xf5\x07\x6f\xe3\xb6\xbf\x37\xdd\x09\xca\x7c\xa1\x3b\x04\xc2\x79\x92\x64\x8c\x9c\x26\xa9\xb5\x71\xc3\xab\x2d\xe8\x36\xc8\xfa\xaf\xc0\x14\x1b\x4f\x82\xec\x47\xde\x9f\x76\x33\xa9\xaf\x5c\xeb\xb7\x39\xeb\xd2\x6f\x55\x81\xdb\x5f\x29\x71\xda\xf2\x4b\x5f\x7d\xfb\x8d\x95\x44\x56\x08\x42\x74\x42\x10\x49\xc4\x82\x10\x44\x30\x06\x44\x98\x6a\x24\x72\x46\x02\xc3\x5d\xa1\xc2\xe6\xc2\x31\x22\x10\x13\x81\x25\x82\x25\x1d\xb8\x20\xef\xd2\xab\x20\x93\xa0\xca\x70\x2b\x14\x3b\x44\x21\xdc\x0b\x33\x5e\x8d\xde\xff\x5f\xbb\x8f\xa6\x40\x2a\x6d\x1c\x8c\xc3\x06\xe2\x9c\xec\x2a\x7b\xfd\xbc\x37\x0d\xf2\xc5\x7f\x40\xf1\x62\xa4\x7d\x9f\x93\x3f\x99\x7b\x33\x5d\xa1\x34\xc8\xb8\x37\xad\x6f\xbf\xbc\x64\xf1\x6b\x56\x7a\xb6\x97\xf3\x25\x84\x90\x37\x6e\x53\xde\xe9\x71\xf3\xce\x3a\x01\xaa\x74\xef\xb2\x87\xd0\xc9\x65\x97\xaf\xe4\xb3\x42\x2d\xdf\xfc\xf6\x2b\x2b\x7c\x15\x26\xd4\x2b\x65\xa2\x51\x82\x54\x4a\x6e\x26\x92\xd5\x5f\x48\x80\xb2\xd9\xa8\x4c\x74\xc2\x65\xf2\x25\x18\x2a\xa5\xc0\x60\x1b\xbf\x6e\x33\x10\x91\x78\x51\x95\xb7\x52\x30\x6d\xca\x0c\xa6\x6b\x41\xa5\xca\x32\x19\x53\x5c\x46\xe3\x1a\xc0\x06\x2d\x0c\xf7\x8c\x47\x8e\x9b\x0c\x2d\x90\x7b\x8c\x71\xc4\x84\x1e\xb3\x86\x08\x0b\x49\xe3\x0e\x05\xec\xc0\xd0\x19\x26\x5c\x9a\x66\x36\xc9\x3e\x53\x06\x64\x81\x50\x3d\xfb\x12\x83\x55\x5e\x33\x41\x01\xc5\xb7\x70\xcd\xa4\x68\x73\xa3\x7e\x28\x87\x9b\xc2\x49\xc2\x19\xcd\x8e\x1a\x65\x38\x12\xb7\x8d\xce\x8f\xcf\x36\x2d\x0d\x95\x29\x95\x84\xbb\x70\xe4\x8b\xd0\x8a\x51\x7a\xc5\xd6\xce\x1b\x09\x0b\x35\x0a\xe9\x2a\x15\x15\xf2\x55\x2a\x29\x52\xfc\x9f\xdb\x94\x53\x40\xca\x9c\x9e\x1e\xd0\x3f\x6d\xcc\xa5\x47\x21\x19\xcd\xc3\x53\x7f\x73\x85\x2e\x7c\xa9\xda\x79\x97\x68\x14\x6d\x56\x64\xfb\xe9\x95\xfc\x3a\xad\xb7\x78\xc3\xd1\x9f\x5f\xf7\x4e\xe7\x35\x74\xb9\xaa\x9e\xf8\x25\xab\x98\x92\xe4\x8c\x52\xea\x49\x6c\x66\xe1\x9e\x48\xac\x28\x3b\x4e\x85\x5f\x05\x10\x55\xe4\xd1\x01\xe7\x41\x0f\x50\x89\x9e\x9e\x6c\x9a\xd3\x88\x6b\xe8\xf6\xd2\x82\x0f\xda\x06\x59\x07\xe3\x75\x60\xd4\xd1\x0a\x3c\xf0\x4e\x15\xdc\x6c\x39\x5f\x92\x7b\x70\xad\x1b\xf7\x01\xd3\x8a\x35\xea\xc1\x62\x06\x33\xa1\x22\x9a\xb1\x37\x3d\x09\xba\x0f\x86\x74\xcf\x8c\x28\xe2\x54\x38\xec\xd6\x2b\xaf\x4e\xb0\xc8\xca\x03\x84\x71\xe7\x0e\x65\xa9\x70\x77\x50\x9e\x70\x62\x07\x85\xec\xac\x50\x95\x23\x84\x03\xe5\xb2\x26\x0f\xfd\xa9\xf5\xc8\x9a\x40\xa1\xeb\x16\x78\x59\x2e\x5d\xfa\xd2\x8a\x2e\x7f\x50\x6c\xbe\xc7\x52\x1f\x06\x9e\x6b\x5d\xc0\xe4\x9b\xbd\x65\x1b\x18\x81\xba\xc7\x32\x66\xd6\x64\x44\xab\x51\xf1\xbb\x0e\xd1\x72\xa3\x55\x36\xf8\x5a\x17\xdc\xbf\x16\xf2\x15\xfb\x93\x0b\xe4\x14\xbf\x50\xc9\xe7\xba\x2f\x98\x0d\x2b\xce\x1a\xda\x4c\x11\x7c\x6a\xad\x34\xf4\x06\x63\x4a\xb4\x51\xd2\x43\x39\x60\x2e\x4e\xe7\x01\x1b\x46\x2a\xe7\x1a\x7c\x67\x37\x18\x01\x5e\xd7\x60\x40\x71\xf1\xc0\x79\x5e\x41\x57\x2d\xdf\xdb\xa0\x3a\xfe\xc4\x58\xfb\x96\x39\x22\x4e\x18\xaa\x12\x88\x52\x98\x3b\x3f\xa2\x23\x9e\x33\xba\x73\xa2\xe1\xd5\x2b\xb3\x64\x68\x52\x0f\xd2\x72\x16\xcd\x23\xf4\x5c\xe8\xe7\x63\x19\x9c\xa6\x29\x2a\x38\xcf\xcf\x7c\xcf\x33\x36\x4b\xba\x15\x94\xff\x9b\xcd\x99\xe2\x60\xe7\x0f\x21\x6f\xe0\xbb\x31\x98\x99\x78\xba\x7d\xe7\xd4\x3b\x7c\xcc\xd9\xe1\xe2\x63\x2a\x81\x2c\x9e\x91\x83\x92\x8f\x3e\xbc\xf9\x40\x0b\x11\x70\x24\xbe\xe9\x87\x77\x1d\xd2\x05\x72\xde\xb0\x56\xca\xf4\xc7\xc1\x9c\xf2\x6c\x3b\x27\xc0\x17\x34\xb9\x76\x25\x90\x15\x8d\xda\xed\x51\x5c\x61\x96\x14\x3b\xd5\x56\xf7\x80\x85\x34\x02\xc7\x63\x84\x3c\xfe\x5a\xb5\xab\xd0\xae\x5d\xec\x45\xd6\x81\xd1\x27\xf3\x3c\xe1\x00\x51\x7c\x13\x8f\xec\x39\xc0\xf9\xe4\x46\x64\xeb\xcd\x30\xc8\xe5\x01\x1d\xbc\x5f\x20\x30\x96\x27\xe0\xff\xb2\x40\xe1\x31\x09\x88\x56\x12\x08\xb9\x11\x9c\x0a\x8c\x5a\x45\xd8\x3a\x8e\xac\x9d\xf5\x87\x7f\xfc\xf2\x4f\x96\x7e\xe5\x38\x04\xce\x47\x0a\x5f\x6c\x1e\x1c\x8e\x30\x07\x81\x21\xee\xc2\xe3\x4a\xe4\x31\x02\x26\x9c\x4e\x35\x25\xae\x49\x75\x98\x10\x33\x94\x39\x9a\xce\xcb\xc8\x4c\x19\xee\xcc\x89\x32\xd9\x4b\x53\x6c\x44\x8d\x34\x22\x1b\x23\x07\xb4\x08\x43\x12\x90\xc1\x6b\x00\x05\xe7\x6a\x04\x4a\xbf\x27\xc4\x60\xfc\x92\x50\xbc\xaf\xa2\x94\x33\x9f\x04\xf1\xbe\xf9\xec\x71\x63\xff\x85\xc1\x78\x38\xd4\x46\x86\x75\x89\x7f\x46\x07\xa6\xa0\x4a\x65\xe7\x4a\x1e\xef\x36\x28\x38\xce\x00\x20\x0f\x44\x10\xa8\x02\xd1\xac\x4c\x41\x44\xe7\x0a\x34\x9d\x17\x51\xf2\x73\xfa\xdb\x8a\xac\xa2\xec\x4c\xdc\x3b\x0c\x2c\x68\x65\x19\xca\xe2\x4a\x1a\xba\x37\xab\x51\xa2\x2d\xa7\x11\xa4\xa8\x59\x14\xf2\x3d\xec\x85\xd1\xd3\xc0\x17\x74\x66\x8f\x23\xe0\x7d\x95\x4a\xc9\xe5\xfb\xd3\x72\x36\xd0\xd3\x40\xd1\x19\x04\xad\xc9\x34\x12\x1b\x2b\xe5\xc9\xa8\xae\xb0\xc2\x2f\x54\x47\x50\xa2\x60\xe4\x30\x10\xa0\x08\x15\xa9\x7d\xa2\x5e\xf2\x57\x7b\x45\xbf\xc4\x1d\x61\xa2\x28\x26\xa8\xa5\x20\xf1\x20\xd2\x29\x96\xd3\x41\x29\xc2\x83\x1c\x95\x3a\xae\xa6\x2b\x5b\x86\x43\xe0\x73\xf8\xc7\xe2\x90\x83\xa0\x44\x0c\x1e\x75\x43\x05\x50\x45\x2e\xd0\x5c\xae\x5a\xd0\xc5\x3b\x63\xfe\xd4\x2d\xa3\xa6\x24\x62\x47\x53\xb2\x61\xdd\x0e\x00\xcc\x24\xee\x1d\x81\xec\x1f\xed\x6c\x55\x3b\xe0\xc2\xc6\xe9\xa0\x21\x87\xc5\x75\x92\xce\x40\xc7\x6e\x9d\x3e\x68\x6e\x8e\x07\x00\x72\x4d\x0a\x3f\xea\x24\x86\x6a\x12\x80\xce\x0a\x1d\x50\x1b\xe3\x67\xf5\x4d\xf6\xe8\xd0\x08\x75\xc4\x92\x8a\xf7\xe1\x9f\x40\x2b\xc0\x91\x92\x82\x98\x14\x38\x0b\x4c\x5c\x24\xd2\x92\x59\x94\xfe\x28\xa5\xa2\xc3\xd4\xe7\x50\xfa\x45\xf5\xd1\x29\xa5\x14\xdb\x0c\xe0\x48\x43\xd0\x06\x38\x63\x10\x09\x22\xfe\x77\x78\xd2\x39\x18\x1b\x96\xf0\xea\xd9\xa1\xa4\xec\x0a\xdf\x92\xbb\xe8\x72\x5a\xef\xb2\x5d\xd4\xc9\xd0\xe0\x7c\xc3\xad\xa0\xd2\x9d\xe9\x1c\xba\x1f\x05\x39\x74\xe9\x3d\xbd\x4e\xaf\x02\xa8\x47\x62\x24\xea\x8d\x63\xf5\x0e\x47\xcc\x8e\x3f\x74\xcb\xd9\x0f\x2f\x86\xf3\xbf\xab\x84\xc6\x92\x2f\xb9\xb6\x67\x85\x73\x19\x87\x7b\xe0\x09\x72\xae\xfa\x1f\xf4\x14\xd9\xc8\x16\xea\x89\xcd\x6f\xdc\x19\x26\x3f\x96\xfe\x7e\xd0\x6d\x44\x32\x2d\xeb\xa6\x8c\xac\xa6\xa1\x06\x25\xa5\x72\x42\x7b\xa1\x04\xfa\x3f\x70\x18\xd4\xaf\x1d\x54\x42\x1e\xd7\x1f\x24\xe5\xea\xdf\x33\x26\x9d\x29\x8a\x49\x61\x6f\x24\xbc\xa6\x7a\x41\x75\x66\xbd\x64\xf2\xa0\x7c\x0b\x95\x4c\x6f\xb0\x9a\x1c\x17\xf5\xde\x35\x3d\x7b\x11\x25\x53\xf7\xc7\x3a\xc5\xb2\x24\x2e\xfa\x98\x2f\x04\x53\xae\x17\x95\x21\x86\xb3\x64\x13\x99\x57\x1c\xa7\x00\x44\x9e\xe9\x75\x52\x78\x1d\x76\x0c\xb4\x48\x7a\x60\x0d\xaf\x00\xf0\xfd\x58\xdc\x41\x57\x53\xfc\xb2\xfd\xf9\x73\x1f\xb9\xa9\x8f\xac\xe6\xc6\xad\x8b\x2e\xfc\xdd\x0f\x7f\xa3\xd1\xe5\xd6\x32\xfd\xec\xc3\x9f\xf4\x8e\x1f\xfd\xcc\xe1\xcf\xb5\x27\xf4\xf7\x55\xfc\x7b\x76\x93\x6b\x01\x3b\xfd\xc8\xf2\x17\x6b\xf4\x6b\x00\x4b\x0e\x5e\xe1\xdf\xae\x0d\x2c\x39\x47\xd9\xe5\xa5\x87\xfe\x7c\x11\x78\x0c\x7d\x09\xfa\xe9\x73\xaa\x65\xfe\xa4\xfb\xca\x65\x06\xf8\x0b\x77\x77\xd5\xb6\x2f\xf3\x6f\xee\x12\x7a\x04\x1d\x9f\x5e\xa7\xe0\x5e\x07\xec\x8c\x34\xc1\x3d\x97\x33\x57\xd3\xaa\x77\xe8\x9a\x3f\xa8\xce\xb9\x67\xc2\x56\xae\xec\x94\x30\x89\xe4\xf7\xc1\x93\x87\xea\x39\x28\x7f\xfc\xae\xff\xe0\xa5\x64\xae\xae\xed\xc9\x35\x98\xda\x5d\x20\x57\x6f\x14\xfd\x9d\x8d\xa3\x47\x74\xd5\x90\x92\xb9\xe6\x8b\xa5\xaa\xca\xc8\x72\x6d\x13\x0d\x9e\xd7\x8f\x19\x06\x5d\x25\xfc\x54\x8c\xca\xe8\x2e\x2f\x61\xc1\x4a\xa5\xbb\xf1\x10\xe3\x84\x3f\xc7\xb7\x9b\x1b\xbb\xa0\x5f\xfd\xeb\xbf\x52\xce\x6c\x10\xfb\xff\xed\xdf\xac\xaf\x7e\x07\x3a\x15\xc8\xb3\xad\xd3\x51\xa4\x2b\x7c\xbc\x64\x83\x2d\x4f\x06\x7c\x7f\xe6\xc7\x7f\x8a\x54\x41\xa6\x45\x51\xb8\xe4\xdc\x91\xeb\x27\xfa\xa2\xf7\xff\x09\x00\x00\xff\xff\x9e\x28\xe1\x6f\x8a\xaa\x00\x00") +var _confLocaleLocale_zhCnIni = []byte("\x1f\x8b\x08\x00\x00\x09\x6e\x88\x00\xff\xbc\x7d\xd9\x72\x1b\x47\xb6\xe0\xbb\x22\xf4\x0f\x15\xea\x50\xf8\x65\x4c\x87\xed\xd9\x62\xc2\xf0\x4c\xb7\xdd\xd7\xee\x09\xdb\xed\x69\xd9\x71\x1f\x1c\x0e\x18\x04\x8a\x24\xae\x40\x14\x8c\x02\x24\xb3\x6f\xdc\x08\x52\x12\x49\x50\xdc\x25\x4a\x14\x25\x52\x14\x69\x51\xa4\x28\x71\x91\xb5\x91\x04\x97\x7f\x19\xa3\x0a\xc0\x93\x7e\x61\xce\x96\x59\x59\x0b\x28\xbb\xe7\xce\xf8\x41\x26\x2a\x4f\x6e\x27\x33\xcf\x9e\x27\x33\xa5\x52\x3a\x67\xbb\xd9\x94\xb7\x7c\xd0\x38\x98\xb2\x3e\x73\xac\xd6\xce\x56\x6b\x63\xb0\x79\xf7\x5a\x6b\x74\xd3\xbb\xfe\xd8\xfa\x2c\x5f\xb1\xfc\xc5\x49\xef\xfa\xca\xd9\x33\x67\xcf\xf4\x39\xfd\x76\xaa\xfd\xe8\x76\x7b\xe5\xe5\xd9\x33\xb9\x8c\xdb\xd7\xed\x64\xca\xb9\x94\x3f\xb5\xee\xd5\x5e\xb5\x97\x56\xfd\xa5\x93\xb3\x67\xec\x9f\x4a\x05\xa7\x6c\xc3\xd7\xd5\xe6\x8b\x55\xa8\x64\x17\x4a\x29\x6f\x6f\x1b\x9a\x3b\x7b\xc6\xcd\xf7\x16\xd3\xf9\x62\xaa\xb9\x50\xf7\x8e\x6e\xc9\x6f\xa7\x5a\x49\xb5\x07\x07\xbd\xd1\x03\xf9\x50\x2d\xa5\xfc\xe7\x1b\xde\xc8\xc4\xd9\x33\x65\xbb\x37\xef\x56\xec\xb2\xfe\x70\xd9\xee\x76\xf3\x15\x3b\xe5\x6d\xdf\xf1\x6f\xef\x37\x8f\x66\x9b\x4f\x16\xce\x9e\xb9\x64\x97\xdd\xbc\x53\x4c\x79\x47\x37\xbd\xb1\xc9\xe6\x58\xcd\x5f\x7c\x7a\xf6\x4c\x29\xd3\x0b\xe3\x5d\x79\x09\x43\x3b\x7b\xa6\x62\xf7\x97\x0a\x19\xa8\xe9\x6f\xac\xd0\x40\x0b\x99\x62\x6f\x15\x21\x78\xd2\xed\xc1\xb1\xf6\xca\xfe\xd9\x33\xd9\xb2\x0d\x50\xe9\xa2\x7d\x39\xe5\xd5\xee\x79\xf5\x83\xae\xae\xae\xb3\x67\xaa\xae\x5d\x4e\x97\xca\x4e\x4f\xbe\x60\xa7\x33\xc5\x5c\xba\x1f\xe7\xd8\x9c\xdb\xf0\x6b\xaf\x1b\x27\x2b\xfe\xd0\x8e\x37\x7d\xdd\xbf\xf7\xc2\x7b\x78\x97\x27\x61\xe7\x60\x9e\xe9\x8c\x9b\xf2\x5e\xff\xc2\xb3\x65\x60\xc4\x23\x36\x56\xcc\xf4\xab\xfa\xde\xcc\x24\xa0\xad\x3f\x93\x2f\xa4\xda\x57\xb6\x9b\xdb\xcf\x70\xe4\xae\x7b\xd9\x01\xdc\x7a\x3b\x23\xcd\x07\x43\x88\x87\x74\x65\xa0\x04\x35\x56\xb6\x5b\xdb\x0f\xd5\xd7\x6c\xa6\x54\xc9\xf6\x65\x52\xed\xcd\x89\xd6\xce\x10\x7d\x42\xd0\x92\x03\x28\x72\xca\x03\xa9\x46\xfd\xa6\x77\x70\xf3\xec\x19\xa7\xdc\x9b\x29\xe6\xff\x9e\xa9\x20\x8e\x9a\xf5\x6b\xcd\xfa\xe8\xd9\x33\xfd\xf9\x72\xd9\x29\xa7\xda\xb7\x16\xbd\xab\xd3\x67\xcf\xc0\x84\xd3\x58\x55\x66\xed\xdf\xde\x85\x6d\xa0\x1a\xc0\xc2\xfe\x7c\x6f\x19\xf1\xd7\x3a\x19\x6a\xae\xd7\xbd\x87\xb7\xdb\x57\x37\xcc\xf2\x1e\xa7\x7c\x31\x54\xd9\x7f\x71\xdc\x9c\x5b\x36\x41\x60\x1c\x21\x08\x3d\x94\x4c\x11\x16\x82\x8a\x9b\xdb\x2b\xcd\x99\x11\xbf\x36\x6b\x14\x67\x72\xfd\x80\xcb\x52\xa6\x68\x17\xa4\x5c\x6d\xb6\x4c\x36\xeb\x54\x8b\x95\xb4\x6b\x57\x2a\xf9\x62\x2f\x60\x7b\x6f\x06\x30\xda\xda\x3e\x6e\x1e\x6d\xc3\x42\x24\x7f\x1e\x70\xaa\x7a\x31\x53\x8d\xbd\xcd\xc6\xc1\x01\xaf\xa1\x14\xe9\x6a\xbc\x3e\xaa\x1a\xcd\xc1\x4d\xf7\xd8\x36\xec\xf9\xc5\x41\x98\x82\xff\xa2\xee\x5d\xdf\x80\xe5\xaa\x16\x0a\x80\xbc\x1f\xab\xb6\x5b\x81\xce\x66\x6a\xde\xfe\xab\xd6\xce\x6b\xff\xd9\x95\xb3\x67\xf2\xae\x0b\x9f\x61\x1b\xac\x79\x93\xb7\x78\xf4\xd8\x54\x36\x53\xcc\xc2\x74\xbc\xe9\xdb\xfe\xab\x1a\x7e\xf8\xce\xb5\x33\xe5\x6c\xdf\xf7\x38\x6a\xfc\x23\xe5\xcf\x2c\xc2\x01\xa2\xdd\x97\xb0\xa4\xb8\x87\x52\x6a\x4b\x51\x1f\xd2\x05\x34\xed\xe4\x60\x5a\xf5\x9f\x65\x3f\x7c\x97\x2f\xba\x95\x4c\xa1\x00\x2d\xcb\x5f\x70\x78\xc6\x5a\x3f\x0f\xeb\x93\x91\xaf\x14\xe8\x5c\xfb\x4f\x57\x5a\x27\x33\xad\x95\x09\x2e\x6f\x6e\x8c\x7b\x07\xb0\x33\x72\x4e\xf6\x22\xec\x7e\x3c\xc8\xd0\xa7\xf7\xe8\x8a\x7f\x7f\xd1\xbf\xb2\xe1\x6f\xfd\xec\x2d\x6e\x34\x8e\x4e\x60\x14\xd6\xa7\x04\x63\x79\xdb\xfb\xde\xc2\x06\x37\x02\xf4\xa4\xd7\x7d\x73\x08\x3b\xf3\x35\xd0\x0f\xef\x64\xd8\x1b\xae\x35\xea\x73\xcd\xfa\x48\xfb\xce\x70\x6b\xa7\x6e\x7d\x94\xb1\x2a\x99\x72\xaf\x5d\x49\x9d\x4b\x77\xc3\x69\xbc\x78\xce\xea\x2b\xdb\x3d\xa9\x73\xe7\xdd\x73\x1f\xf3\xf9\xf6\x6f\x8f\xfa\x2b\x3f\x7f\xf4\x5e\xe6\x63\xcb\x9b\x99\xf2\x46\x26\xbd\x9d\x7d\x38\xda\x3c\xf2\xd6\xc9\x3d\x1c\xeb\xca\x13\x6f\x64\xe1\xd7\xc1\x2b\x88\xa6\x1f\xab\x40\x1b\xd2\xb9\x6e\xa6\x6b\x38\x00\xab\xf5\x68\x08\xd6\x81\x67\x64\x7d\x39\x70\xe1\x7f\x7d\xf1\xeb\xe0\xd0\xd7\x8e\x5b\xe9\x2d\xdb\xfc\x03\xfe\x85\x5a\x1f\x5a\x7e\xed\xb6\xf5\x4d\xfe\xd3\x3f\x51\x5b\xd0\x06\xe3\xc5\xbf\xb5\xeb\x4f\x6e\x03\xce\xd5\x36\xc0\x12\x3c\x8a\xba\xa0\xf9\xac\xee\xdd\x1f\x47\xf2\xe8\x56\x82\xaf\x8d\xbd\xba\xbf\x78\x20\x0b\x15\xc0\xca\x8a\xe9\x03\x1e\x29\x51\x27\x1b\x3a\x21\x0a\xa1\x8b\x81\x48\x34\xd7\x77\xa9\x20\xba\x10\xb2\x04\x34\x37\xc6\xb7\x7c\xf9\xcb\x57\x5f\xfd\xf5\xd3\x3f\x59\xde\xe1\x2d\xff\xe6\x54\xa3\xbe\x06\x24\xca\xaa\x56\x7a\xfe\x6b\xba\xd7\x2e\xda\xe5\x4c\x21\x9d\xcd\x5b\xde\xd6\x7c\xf3\xe9\xa3\xf6\xbd\x11\x9a\xb5\xeb\x16\x80\xb2\xc1\xf6\xb9\x70\xe1\x0b\x0b\x08\xa5\x77\x38\x8d\x63\xad\xf4\x05\x03\x81\x25\x69\xd4\x5f\xb5\x5e\xef\x78\xc7\xd7\xa0\xc2\x8f\x05\xc4\xb8\x0c\x29\x8a\x49\x0b\xa9\x80\xc6\x1f\x55\xa1\x6e\xec\x72\x39\x0d\xe4\xb8\x32\x80\x4b\x45\xcd\xff\x86\x9a\x8d\xbd\xc9\xd6\xd5\xa3\xc6\xde\x41\xf3\xf1\x81\x6e\x25\x5f\xbc\x94\x29\xe4\x73\xb0\x56\x0a\x63\x54\x3b\x82\x36\xa8\xea\x0d\x0f\xb5\xb6\xf7\xbc\x89\x61\x6f\xe6\x09\xcf\xd9\x3a\xd7\x75\x8e\xfa\x3b\xf7\xee\x39\x8b\x1a\x2c\x3a\x69\x26\x35\x48\xe0\x73\x79\x37\xd3\x0d\xc4\x9e\x39\x50\x99\x69\x27\x62\x9b\x86\xe1\x3d\x5c\x86\xcd\xef\x2f\x6e\x32\x39\xe3\x73\xed\xcd\xde\xe1\x55\xc4\xc1\x5f\x1d\xf6\x46\x5e\x36\xf6\xc6\x9b\xb0\xff\xb6\x56\x99\x7d\x45\x26\xaf\xe8\x9a\x6c\x05\xdd\x08\x6f\x82\xd8\x7c\xcf\x9e\x51\xeb\xc6\x3b\xd3\x3b\x98\x83\xee\x80\x79\xc3\x89\x50\x9b\x13\x79\x3a\xa1\x41\x0a\x65\xd7\xa8\xcf\x7a\xef\x9c\x3c\x81\xd2\xe6\xf8\x15\x7f\xfc\xa8\x3d\xfc\xba\x79\xe5\x89\x26\xb7\x5c\xa5\x3d\xbf\xd9\xbc\x3f\x05\x64\xb8\x51\x7f\xfa\xe6\x70\x88\x49\x10\x2f\x15\x53\x20\xff\xc1\x7e\xf3\xde\x36\x31\x71\x5d\xa4\x5a\xf7\xc7\x06\xfd\xc5\x31\x12\x1e\x5a\x27\x8b\x40\x46\xb8\x4a\x1b\xd0\xb6\x3b\xd2\x5a\x05\xfc\xdf\xf1\xe7\x8e\x41\xe4\x68\xed\xac\x71\x23\x7c\x7c\xab\xc0\xfa\xf1\xb4\x30\xfd\x68\x3e\xaf\x37\xeb\xcb\xea\xc0\xa8\x42\xd5\x07\x56\xe5\x13\x73\x02\x84\xac\xee\x0d\xbf\x86\x2e\x81\x3a\x44\x46\xe7\xdd\x98\x30\xa8\x11\xed\xaa\x9b\x93\x8d\xa3\x45\x7f\xe9\x6a\x7b\x61\x86\x4f\xba\x03\xac\x17\x44\x87\xe5\x65\x62\xc4\xfc\xd3\xe8\x86\x51\xeb\x1d\x3d\xf3\x6e\x4e\x5a\x17\x2e\x7c\x6e\x79\xc3\xe3\xed\xbb\x23\xde\xe2\xae\xb7\x34\x28\xa7\xa6\x2f\x5d\x72\xca\x95\x14\x96\x36\x9f\x80\x28\xf0\xb3\x37\xfd\x3a\xf8\xae\x8f\x07\x14\xb3\x34\x05\x44\x12\x11\x7e\x6f\xd6\x9b\x79\xaa\x2b\xc0\xd9\x6d\xde\x5a\x80\xd5\x6e\xad\x6c\x34\x1f\x1e\xc0\xc6\xc1\x43\x4c\x3d\x5e\x5f\x86\xad\x40\x7d\xf5\x55\x2a\x25\xee\xec\xf3\x6f\xbe\xf9\xda\xec\x4d\x97\xe8\x45\xa6\x2d\x20\x9d\x40\x6f\x01\x28\x6e\x87\x6a\xb9\x20\x10\xd6\xb7\x7f\xfb\x42\x7f\xeb\x34\x71\xec\xed\x3d\xfc\xe7\x42\x68\xfe\x80\xdf\xc6\xde\x60\xe3\xe0\x1e\x4b\x2e\x8d\xbd\x2d\xe8\xa9\x7d\xf3\xd8\x9f\x5a\x93\x3d\xeb\x94\xf0\xe4\x04\x9b\x76\x7a\x07\x24\x2d\xb5\x5d\x49\xea\x91\x12\x68\x01\x08\x0b\xe3\x47\x33\xf0\x7e\x98\x13\xd1\xd5\x0b\x5f\xc2\x6c\x15\x4d\xa5\xcf\x3d\x65\xa7\x5f\x55\x5a\x5a\x03\x81\xd5\xf8\xae\x66\x61\x16\xf3\x80\x01\xc9\xed\xa1\x97\xde\xf1\xa6\xf5\xb7\x7f\xfa\xc4\xfa\x4f\x1f\x7e\xf0\x81\xe5\x3f\x18\xf5\x46\x91\xfe\xc1\xd8\x80\x4a\xfa\x77\x76\x70\x4a\x7b\x9b\xc8\xaf\x0f\x76\x70\x3e\x34\x37\xae\x0f\x04\x43\xa8\xeb\xb9\xaf\xe0\x40\x9d\xb3\x3e\xa2\x39\xfc\x0f\xfb\xa7\x0c\xc8\x97\x76\x57\xd6\xe9\xff\x98\xb6\xd9\x83\x43\x20\x9e\x84\x03\x2c\x87\x8d\x4b\x5b\xdb\x9b\x9e\x6d\x0f\x0e\x29\x31\x4f\x4a\x02\x69\xcf\x28\x0d\x24\x3f\x96\x80\xd3\x59\xa7\xd8\x93\x2f\xf7\x83\x78\xb1\x83\x3b\x9f\x08\x0a\x83\xb2\x50\xc8\xcd\xa5\x8b\x4e\x25\xdf\x33\x20\x50\x3c\xff\xf6\xe0\xdd\xe6\xf2\x9a\x3f\x3d\xd3\x1e\xb9\x81\xe2\x45\x19\xc4\xe5\x34\xfe\x2f\x9f\xb5\x15\x97\x53\xdb\x12\x16\xd4\x1b\x7e\xe5\x6d\x5f\x0d\x2f\x84\xd3\xd3\x53\xc8\x17\x6d\x66\x0e\xdc\x76\xf3\x51\xbd\x79\x70\xa2\x98\x84\x09\x00\xbb\xb0\x04\x32\x3c\x10\x48\x10\x11\x9b\x47\xbf\x30\x0c\xd0\xc2\xc6\xfe\x32\xef\xea\x46\x7d\xca\xfa\xe4\xd3\xaf\xac\xd6\xd4\x6b\x94\x80\x88\xa5\xc0\xca\x00\xe1\x80\x05\x40\xf5\xe3\xe5\x35\xff\x60\x86\x09\x06\xc0\x02\x81\x03\xec\xeb\x31\x72\x2d\x3e\xbc\x42\xa5\x41\x34\xbd\x94\x01\x69\x22\x25\xa7\xe6\x33\xf9\xad\xb5\x97\x28\xa0\x8c\x31\x0a\x8e\xf4\x02\xb6\xca\xf6\xdd\xc6\xfe\x18\x8c\x00\xc6\xd4\xa8\x0f\xf3\x82\x37\xe7\x9e\x89\xbc\xbf\x77\xbd\x71\xf8\x00\xd7\xb8\x76\xbb\x5d\xbf\x03\xa8\x87\xbf\xbd\x87\x2f\x40\x8c\x0e\x8d\x29\xc4\x39\x98\x0d\x88\x40\x39\xba\x89\x3b\x59\x34\x9a\x24\xf0\x60\x74\x66\x25\x20\x63\x5c\x89\xe9\x01\x0c\xce\x9b\xde\x04\xb2\x17\x30\x0e\xde\xc0\xaf\x41\x2a\x7d\x00\x22\x2f\x9c\x75\xe6\x38\x45\xea\x40\x69\x0b\xb2\x35\x94\xce\xa0\x30\x14\x86\x92\x11\x88\xf4\xb4\xb8\xc1\x83\xe0\xee\xfd\xf9\x57\xad\xe3\x9b\xde\xf0\x5a\x7b\xf5\x9a\xa1\x7a\x90\xf8\x05\x8a\x8a\x28\x79\xe9\x4b\x79\xd4\xa1\x78\xaf\x90\x06\xd4\xda\x3e\x69\xcf\x6f\x03\xdd\x05\x75\x31\x19\x5c\xed\x1c\x9a\x56\xa0\x39\x01\xf1\xe2\xee\xc7\x84\xf7\x4a\x4b\x24\x06\x22\x1a\x66\x1e\x79\xb5\x05\xd8\x2b\x50\x11\x00\x9a\x8b\xe3\x5e\x6d\x97\xeb\xc2\x1a\xc9\x51\x21\x60\xc2\x07\xf3\x5d\x91\xf2\x45\x05\x0e\xb3\x71\x46\x1e\x48\xf1\xc0\x84\x81\x1e\x30\x8f\x81\x61\x60\x5f\xf7\x1e\x00\x4f\xb6\xfe\xf2\x69\xea\x7d\x4b\x0f\x0c\xf9\x1a\x6a\xcc\xb4\x35\x8f\xe7\x75\x3b\x06\x9b\xe1\x4e\xf9\xb4\x45\xfa\xd1\xcc\x9b\x40\x58\x33\x0c\x0b\x14\xc4\x99\x4e\x17\x17\x50\xee\x27\x02\x61\x40\x84\x94\x45\xae\xce\x7a\xa6\xae\xab\x28\x91\x68\x06\xe9\x5e\x07\xd5\x9e\x27\xe3\xde\xe4\x73\x16\x99\x51\x71\x76\x2b\xe9\xde\x7c\x25\xdd\x83\xd4\x0a\x24\xd6\xf9\x07\xfe\xf3\x5b\xad\x9d\x11\xaf\xf6\xc4\x7a\x07\x0a\xde\xb1\xbc\xd9\xa3\x46\xfd\xe1\x9b\xc3\xbb\xe7\x2f\x29\x91\xf0\x43\x24\x44\x69\x38\x55\xf9\x02\x6e\x2b\x94\x9c\xf0\x74\xf3\x49\x82\xe3\x32\x3d\x8b\x2c\x7e\xac\x86\x08\x9e\xdb\xf1\x27\x86\x2c\x11\x01\x45\x82\x05\x02\x71\xde\x05\x82\x3f\xde\x3a\x3a\x12\x5d\xe0\xfe\x35\x5c\xa2\xb1\x1a\x42\x0c\x4e\xf0\xca\x58\xbd\x4e\x77\x35\x5f\xc8\x59\xac\xf3\x13\xa6\x95\x4c\x08\x12\xa1\xac\x71\x54\x88\xc7\xba\x5b\x3f\x03\x7a\x64\xc8\xaa\x46\x47\x21\x27\xb9\x9a\x96\x49\x70\xaa\xfd\x19\x38\x36\x09\xa2\x4b\x7b\xe9\xbe\x58\x25\xe8\x27\x56\x75\xad\x77\x3f\x86\xd9\x01\xaa\x32\x97\x6c\xa6\xeb\xbd\x0a\xbb\xcc\x92\xdb\xc3\x93\xd8\xdf\xc9\x12\x88\x4a\xde\xc3\x67\xad\x17\x6b\x91\x91\x86\xb6\x70\x68\x3f\x69\x85\x35\x3e\x49\x5e\x62\xb7\x9a\xcd\xda\xae\x8b\x2b\xe2\xad\x01\x11\x19\x62\x29\xcf\x3b\xae\xb5\x9f\xdc\xf1\x86\x5f\xc0\x77\xe0\xd0\xfe\xf8\x63\xe1\x73\xa2\xc6\x35\xd7\x96\xb4\xae\xe1\x5f\x1b\x03\x09\x92\x88\x23\x6a\x99\x48\xa1\xb7\x1e\xc2\xbe\xb0\xfe\xf4\xed\x67\x24\x2d\x82\xd6\x89\xc6\x22\x50\x39\xab\x2c\x76\x3a\x85\x9c\xd6\x57\x61\x33\x23\xe5\x8c\x98\x3a\x14\x8c\xda\xae\xee\xe5\x3c\x20\x34\xad\xcd\x4c\x88\xa7\x8a\xfd\x53\x05\x8e\xea\xa8\x3f\xb9\x6a\x1a\x9d\x94\x8c\xd8\x3f\x40\x2b\x08\x53\x23\xf3\x81\x52\x95\xb3\x4e\x01\xf6\xa0\x83\x94\xf5\x92\x2d\x10\xde\xf4\x95\xc6\xde\x94\x37\x39\x0d\xb2\xa0\x01\x0a\x2d\x38\xe5\x5e\xd5\x80\x36\x4f\x0c\xa4\xd9\x58\xa2\x0a\x94\xcd\x84\x48\x16\x59\xc5\x98\x20\xd1\xa2\x2a\x95\xbf\x0b\x16\x88\xcc\x09\xd2\xe3\xb3\xfb\x22\xf1\x32\x13\xa1\x1e\xa1\x2d\x42\x96\x18\xcd\xbe\x17\x55\x5f\x8c\x67\x6a\x54\x00\x90\xa9\x56\xd0\x34\x10\x18\xa7\xd2\x62\xfa\x10\xca\xc5\x0b\x6f\x48\x0b\x7d\x76\x09\x45\x8b\x7e\xb7\x97\x2c\x50\xf5\x69\xa6\x82\x6f\x0e\x97\xf9\x74\x33\x75\xa4\xc5\x72\x9d\x6c\x3e\x53\x48\xff\xf6\xaa\xf5\x59\x60\x90\x54\x35\xcc\xbb\xd8\x44\x06\xaa\x4d\x0a\x05\x71\x50\x5f\x5e\xa2\x4c\x6b\xb2\x2c\x68\x0f\xe5\xff\xe1\xe7\xed\xf9\x2d\x38\xab\x70\xd0\x5b\x43\x73\x78\x5a\xc8\x8e\xa7\xb7\x71\x02\x1b\xc5\x01\x21\xe5\x8a\xb7\x6c\xca\x40\x89\xbd\x20\x56\xfa\xed\xfe\x6e\x6c\x02\x57\x6a\xb7\x71\x34\xad\x0c\x90\x3d\xb0\xdc\x70\x78\x03\x09\xec\x04\xf8\xf9\xae\xda\x83\x58\x6a\x77\x28\x05\x74\x68\x73\x25\x10\x80\xcb\x70\xf4\xef\xf8\xbf\xac\xf0\x42\x40\x61\xfb\xf1\x53\x10\x14\x0c\xbd\x4f\xc8\x33\xf3\x77\x12\xd5\x5c\xbb\x58\x51\x18\x03\x91\xd3\xdb\x1d\x12\xb3\x18\xcd\x85\x65\x37\x5e\x01\x9c\x0e\xc9\x86\xad\xd1\xe7\xd6\x47\xdd\x1f\x9f\x77\x3f\x7a\xaf\xfb\x63\x26\x95\xfe\xcf\x83\x3e\x48\x77\x57\x90\xac\xfa\x73\xaf\xa0\x0e\x4a\x8f\xfb\xaf\x80\x69\x5b\xe7\x73\x96\xb7\x3b\x0d\xfc\xda\x1b\x19\xf6\xb6\x27\xfc\xda\x0c\xb7\x2d\x7c\x9c\x54\x21\xe6\x4e\x59\x3a\x1c\xb4\x5f\xd5\xce\xf2\x4f\x06\xfd\x17\x75\x6e\x38\xd8\x5f\x34\xe8\x42\xbe\x3f\x5f\x49\x5c\xec\x2b\x1b\x6c\xf8\xe2\xe1\x72\x13\x3c\x93\xd6\xc9\x28\x1c\x80\xf6\xea\x6c\x73\x7f\x88\x47\xde\xdc\x1a\xf3\x8e\x87\xad\x0f\x2d\xaf\x36\xd2\xbe\xb1\xcc\x16\x9e\xd6\x0e\xef\xca\xbe\x8c\x9b\xae\x16\x05\x69\x76\x8e\x57\x1f\x48\xa7\x22\x5b\x42\x64\x71\xf6\x2f\x91\xdd\x23\x83\x59\x1c\x63\x34\x26\xe0\xca\x6a\x1c\x8d\x80\xba\x0e\x88\x64\x0c\xb0\x58\x0f\xc3\x42\xb9\x5f\x9b\xb4\x16\x37\x01\x83\xd8\x98\x31\x6e\x9c\x15\x90\xab\xc5\x41\x90\x85\xda\xa3\x93\xb0\x44\xdc\xbc\x98\xb6\x26\x6f\x79\xa3\x75\xe0\x53\x68\x8d\x86\x05\x98\x18\x6b\xdf\xd8\x96\x4d\x07\xa8\x92\x71\x33\x14\x10\x49\xef\xe1\x35\xb3\x0d\x73\xa5\x95\x36\x44\x7c\xd3\xa5\x43\x59\x21\xbe\xc9\xb2\x56\x54\x0f\xa1\xb9\xc0\x1e\x87\x03\x04\x03\x6e\xd4\xeb\x0d\xd0\x76\x49\x9c\xe0\x43\x8d\x7d\xe3\x10\x2a\xf1\x11\xbc\x39\xac\xf1\x20\xde\x1c\x8e\xc9\x3a\xf1\x22\xd3\xc6\x86\x22\xe0\x1e\x6a\x4c\xdc\x84\x3e\x01\x5c\xa8\xce\x87\xe2\x46\x64\x71\x8c\x6c\x03\xbd\x8f\x99\x47\xe0\x99\x3c\x19\xf5\x17\x97\x01\x97\xf0\x37\x30\x35\xff\x56\x4d\xe3\x29\xe8\x41\x2b\xaf\x61\x8c\x19\x9d\x6a\xc8\x8a\xe3\xa4\xdd\x3e\x54\x85\x65\xe0\xb7\x4e\xbc\x83\x47\x62\x9f\xd9\x9d\x45\x97\xc6\x7f\x86\x65\x9f\x54\x1c\x09\xf1\xf0\xbd\x6c\x75\xa4\xa2\x6a\x9f\xe3\x86\x4d\xd8\xea\x1a\x8e\x45\x26\x80\x62\x59\x97\xa1\xcc\xb5\xe8\x80\x25\x13\xa9\x06\x65\xd6\xfc\x97\xcf\x60\x6d\x06\x88\x16\xa2\xec\xe9\x6a\xeb\x64\x8a\xf9\x2b\x0f\xd7\xc9\x65\x70\xbc\x03\xb6\x2b\x92\x1c\x9f\x57\xb4\x53\x89\xdd\x58\x7d\x00\x50\xd4\xf9\x04\xdf\x27\xdb\xfe\xdc\x3e\x35\x01\xf4\xab\x1f\x5a\xf8\x16\x64\x94\xaf\x22\xfe\x86\xbf\x01\x9f\xa1\x6f\xcc\x64\x94\xa1\xe8\xcf\x86\x1b\x42\x4d\xee\xeb\xa8\x33\xe2\x6f\x76\x82\x2f\xe2\xc2\x85\xcf\xbf\x21\xe1\x96\x0c\x16\x3b\x70\xa0\xd7\x54\xa3\x9f\x57\x2a\x25\xf7\xdb\x72\x21\xc5\xf6\x83\x6f\xff\xf6\x85\x15\xb4\x3d\x50\x70\x32\x39\x2c\xf4\xa7\x40\xee\x18\x52\x05\xdf\xd8\x99\x7e\x1a\x9f\x77\x6f\xb5\x7d\x67\x59\x35\xf5\x47\xe0\x83\xf4\x19\x7a\x86\xb5\xd0\x9f\x51\x1c\xfa\x73\xb2\x68\x1b\x68\x1a\x36\x39\x3c\x62\x76\xb5\x4c\xa1\x04\xfa\x0e\x0a\x1a\x02\xc1\xe2\x3e\x40\xb4\xc6\x9f\x81\x6e\xea\x6d\xcd\xfb\x3b\x93\xbf\x82\x62\x7e\xe7\xc4\x1f\x1f\x6b\x1c\xee\x80\x38\x89\x1f\x41\xb5\xd8\xd8\x04\x1d\x18\xce\xd3\xbb\x69\x38\x4b\xd1\xd6\x72\x70\x92\x7f\x57\x8b\xf0\x25\xdc\x22\x74\xd1\xbc\xb2\xcf\x46\xa6\xfc\xdf\xd5\x0c\x78\xa3\xeb\x36\x41\xea\x60\x3b\x03\x4a\x84\x51\x28\x7f\x11\x08\xe2\x34\x43\x59\x68\xd4\x20\xdb\xa7\xd8\x25\x7e\x4a\x86\x7f\xb8\x9e\x08\xcf\xe4\x49\x23\x51\xdb\x49\x80\xec\xc2\x59\x8e\x9c\x09\xaa\x81\xf6\xa4\x53\xe0\x71\x27\x88\xc4\x9e\x2d\x54\x73\x76\x08\x59\xca\x54\x3b\xc3\x23\x68\xec\xfd\x62\xbd\x73\xde\x7d\x87\xdb\x2d\x5e\x04\x8e\x5b\x14\x78\x20\x85\xcd\xe5\xb5\xf6\xdc\x42\x6b\x67\x07\x64\x5d\xed\x16\x03\xa5\x32\xeb\x94\xcb\x76\xb6\x92\x32\x94\xdd\x4d\x6f\x62\x1f\xc4\x6b\x6a\x47\x93\x92\x40\x80\x57\xb6\xd7\x29\x73\x77\x87\x6b\x05\x0e\xbc\x74\xb7\x6d\x83\x4e\x97\xb9\x68\x17\x83\xb3\x15\x70\xec\xc9\x07\xf0\x51\x68\x1c\x28\x16\xd1\x1a\xe6\xc9\x4b\xaa\x04\xc2\x47\xac\x8e\x69\xa3\x4d\xaa\x53\x81\x63\x13\xab\x64\x1e\xa1\xa4\x4a\xbc\xb0\x54\x01\x66\x96\x0b\x1d\x7f\x0d\xcf\x94\x89\x97\xab\x50\xb0\x7b\xd1\xa2\xa7\x3a\x0b\xf7\x40\x0b\x07\x6a\x0f\x68\x89\xc6\xee\xd1\x38\xd3\x48\x0f\x96\xc7\xd4\x0b\xb4\xf1\x9b\x95\x17\x31\x60\x00\xe1\x2c\x93\x4b\xd5\x50\xd4\xa8\x67\x53\x00\xd2\x8c\xd2\xc4\x2c\x6c\xbb\xd3\x5a\x82\x6d\x84\x0a\x5c\xc7\xa6\xd0\xcb\x47\xe6\xec\xd6\xe0\x70\x30\xcc\x3b\x3b\xde\xcc\xa3\xd3\x9a\xd5\xac\x20\xb1\x51\xd9\x55\xd1\x56\xb4\x2e\x69\xff\x04\xac\x22\x05\x48\x67\x02\xaf\xcd\x0c\xe8\xc7\x00\x85\x70\x71\x83\x58\x5a\x21\x03\x8a\x39\x6e\x12\x9a\x03\x82\x37\xd7\xeb\xed\x85\x87\x0a\xf6\x00\xcf\xf2\xcc\x14\x1e\xba\xa3\x49\x53\xb6\xc6\x31\x91\x8d\x88\x8b\x44\xe8\xd4\x3a\x24\xc8\x60\xe4\x59\xe3\xd6\x90\x41\xcd\xde\xe1\x81\x08\x27\x55\x93\x44\xfb\xf6\x45\x7b\x20\x05\xaa\xa3\x7f\xfd\x99\xbf\x35\x46\xa2\x12\x2a\x93\x6c\x23\xd0\xfc\x52\x4f\xdc\x0a\x98\x03\x29\xc2\xa4\x1f\xa2\x90\x7f\xc9\x2e\x03\x07\xd3\x2d\x92\xb1\xfe\x37\x35\x32\x81\x72\x1d\x2b\xb0\x43\xa3\xa0\xf8\xb6\xaf\xfc\x8c\x2b\xae\x48\x8c\x06\xc3\x39\x43\x1b\x64\x44\x03\x7c\xa3\x6a\x3d\xfc\x8a\xc1\xfc\xc1\x75\x9a\x18\xea\x58\xda\xc8\x31\x55\x43\xdb\x0d\xf5\x1d\x52\xc0\x81\x10\x57\x60\xff\x23\xce\xd9\x5d\x6e\x0a\x0d\x8d\xfa\x64\xf3\xda\x2b\xec\x7f\x79\xa6\x71\x70\x4f\xeb\x78\xfe\xf8\x1a\xef\x20\x16\x8d\x94\xcb\xa2\xd6\x3a\x7a\x0a\x48\xc6\x4d\x5f\x7b\x00\xa8\xf6\xb6\xaf\x22\xee\xc8\xc8\xe5\x8f\xad\xa3\x73\x93\xbf\x53\xe3\xc6\x12\xf0\x10\x50\x42\x46\x97\x79\x64\x04\xfe\xfc\xba\x1e\x01\x93\x0b\x32\x55\xe2\x2a\x46\xba\x6f\x3e\xaa\x7b\x87\x83\xba\x7b\x06\xd6\xa4\x27\x32\x4f\xd4\x5c\x09\xe0\xff\xd1\x24\xb9\xf1\xd0\x3e\x0b\x46\xc0\x6e\xa1\x9d\x35\x5e\x16\xe6\xfd\x8d\xe3\x25\x98\x2a\xec\xfa\xf6\xd5\x0d\x50\x20\x64\xd7\x13\x95\x12\xd1\x7c\xb8\xc6\x4d\x43\x45\x13\x26\xac\x67\x00\xcd\x24\x27\x74\xba\xbb\x9c\x29\x66\xfb\x8c\xf3\xd7\xbc\xb7\x8d\xae\x81\xda\x88\x3f\xb7\xa3\x4f\x9e\x70\x80\xef\x70\x44\xa8\x90\xf7\x65\x8a\xbd\x76\x5a\x8c\xcf\x20\x88\x5b\xca\xc0\x8c\x9e\x00\x0b\x4d\xc5\x24\x8e\xc9\x1a\x91\x91\x58\xd7\xca\x56\xdd\x8a\xd3\x6f\x54\xe6\x58\x04\x65\xbe\xd9\xe2\xaa\xaa\xd2\xbf\x38\xc0\xdf\x31\xc6\xe5\xfa\x03\x38\x07\x20\xdd\x1a\x71\x01\x79\x90\x11\x85\xe8\xd5\xe6\x5b\x2b\x1b\x22\xbd\xe6\x2b\x70\x38\x87\x9f\xe2\x22\x4b\xa4\x42\x8f\x53\x28\x38\x97\xed\xb2\x0b\xdf\x9f\x83\x04\x0a\xcb\x85\x78\xce\x20\xf1\x22\x6d\xff\xca\x7e\xeb\xe5\x7d\x05\x87\xb6\x25\x86\x83\xd1\xe0\xb4\x51\xa0\xec\x22\x2a\x8e\x12\x6f\xf9\x12\x54\xd2\x44\x91\xd8\xb3\x05\xfb\x02\x99\xc5\xc9\x12\xba\xb2\xee\xb2\xbb\x37\xa8\x55\xca\x54\x80\x50\x16\x59\xc7\xa1\x91\x18\x0d\x68\x2f\x2d\xb7\x14\x76\xa2\x50\x80\x04\x87\x65\x00\xda\x93\x83\x37\x34\xd1\x15\xc4\x29\x4b\x12\x13\x15\x57\x44\x43\x83\x7c\x28\xdb\x47\xaa\xf9\xf0\xb8\x71\xf0\x90\xd5\x27\x36\x6f\x90\x43\xac\x90\xcf\x92\xba\xae\xaa\xf2\xf6\x63\x13\x1d\x1d\x12\x55\xa0\x2c\x45\x39\xbb\x60\x63\x70\x92\x71\x6c\x81\xc4\xe5\xd5\x24\xad\xbf\x7c\x8a\x33\x29\x55\xbb\xa1\x65\x1d\x81\xc2\x2b\xa4\x27\x21\x41\x46\x64\x96\x8e\xeb\x1a\xe8\x10\x39\xbc\x4b\xaa\x1f\xd6\x42\x83\xf4\xfe\x2b\x24\xfd\x73\x1b\xb0\x25\xfc\xa9\x35\x54\x60\xa9\x63\xc4\x1f\x71\x2e\x76\xfc\x78\x37\x26\xd8\x0f\xc4\x4b\x82\x11\x2b\xcc\xf5\x94\xbb\x43\xc9\xd2\x2a\xc2\x8a\x71\xab\x22\xac\x0a\x4e\x56\x5c\xe0\x63\x83\x70\x0c\x70\x30\x13\x18\xdd\x50\xca\xa1\x8a\xa4\xa6\xe2\xdf\x7b\x01\xdc\x44\x4d\x25\x5c\x68\x1a\x1e\x91\x47\x1b\x4b\xc7\xd5\x94\x2a\x34\xa4\x0f\x48\x3c\x50\x8a\x1d\xc8\x4a\xc5\x89\x80\x29\x83\x04\x12\x0a\xa2\x23\x8c\x2c\xf6\x60\xa2\x56\x4f\xe8\x00\xd9\x0e\xc9\x13\xd3\xd4\xc5\x31\xd8\xdf\xda\x65\x49\x46\x1a\xd8\x63\x55\xe8\xb1\xbe\xde\xac\x6f\x29\x05\x2b\x14\xad\xa3\x3e\x06\x2e\x93\xf0\x39\x9e\xd9\x41\x47\x80\x46\xab\x1c\xdf\x24\x58\xed\x30\x27\xf5\x13\xc9\x14\x05\xa1\xf9\x4b\x6b\xec\xf9\x41\x2b\xb8\x76\x4d\xb1\xd7\x2b\x20\x21\x8e\xe3\x8a\x25\x90\xfb\x65\xa3\x2d\x33\x73\x05\x25\x2b\x20\x10\x8c\x66\x2e\x53\x3e\x87\x6a\x09\xf5\x2f\x90\x5c\x64\x44\x74\x32\xd3\xf9\x7e\x0c\x8c\x0b\x1c\x5d\xe4\xa0\xd3\x32\xbc\x77\xf8\xc0\xbb\x77\xdc\x1c\x1b\xa5\xb5\x2a\x3a\x91\x49\x19\x46\xff\xc5\x4d\x6e\x03\x54\xff\x08\x42\x90\x49\x10\x7f\x8f\xcc\x9d\x05\x21\x73\xd8\x91\x7d\x63\x0e\x3f\xb6\x6f\xf4\x96\xe8\x40\x0a\x9c\x82\x21\x9a\xb1\x59\x5e\x15\x21\x26\x83\xa8\x1c\xc6\xa2\x56\xdd\x51\xdf\x4d\x87\x20\xd8\x80\xc2\x32\x49\x18\x3a\x41\xbe\x35\x7b\x32\xcc\xf2\x43\xb1\xe1\xea\xb9\x0a\x2c\xf3\x0e\x35\x3f\x44\xc0\xd4\x2e\x9e\x3e\xf2\xf3\x89\x2d\xde\xe8\x9c\xad\x9a\x42\x2f\x49\xaa\x77\x23\xba\xbc\x44\xda\x49\x99\x04\xd3\x85\x20\x58\x19\x30\xa8\x4f\x63\xaf\x8e\x96\xaf\x30\x0d\xd2\x14\xc7\xf4\x2d\x07\xbe\xe3\xc0\xb0\x58\x2a\xc3\x5e\xc2\xb8\x35\x6a\x45\xff\x56\x46\x95\xed\x63\x90\x53\x55\x19\x53\x4f\x29\x62\x1a\x1a\x8c\x07\x8a\x90\xfc\xc8\x38\xa8\x50\x1d\xc4\x30\x88\x72\xe8\x29\xce\x1f\x23\x9e\x22\xd7\x12\x31\x68\xde\xdb\x63\x02\xc0\x84\x08\x86\xcc\x52\x39\x1f\xff\xff\x1e\x6b\x5b\xad\x4f\x68\x18\xc1\xfe\xcb\xe4\x72\xb4\x4d\x78\x0a\x2c\x64\xf3\x02\x85\x91\x8c\x70\x26\x8c\xb2\x55\xe8\xef\xe9\x90\xb5\x18\x6d\xae\x62\x21\xf6\x8e\x87\xb5\x01\xb3\x39\xf7\x12\xf4\x63\x6d\x27\x66\x53\x1e\xca\x20\xc8\x3f\x45\x06\x8a\x18\x81\x13\x8d\xc5\xcc\x44\x4c\xfb\x30\x9c\xd7\xe6\xc6\xb8\xf8\x2d\xd5\x90\xf4\x39\x8c\x4d\x48\x26\x6a\x9e\x43\xd9\x68\xa7\xf1\x5e\x6c\x99\xd4\x87\xd5\xfb\x28\xd3\x28\x8e\x8c\x86\x13\x5c\x41\xdc\xe1\x7b\xe3\x44\x71\x0c\x82\x0d\xdc\x87\x6c\x9e\x31\x3d\x40\x1b\x71\x01\x0d\x70\x4a\x60\x6d\xdb\x0b\x13\xcd\xb9\xe5\x88\x12\x20\xbe\x4d\x25\x8a\xb2\x38\xed\xea\xd0\xa5\x8f\xdc\x4a\xd9\x29\xf6\x7e\xcc\xe6\x5e\x0e\x5b\x7e\x73\xb8\xfc\xd1\x7b\xf2\xdd\x42\x3d\x62\x79\xad\xb9\x38\xce\xac\x03\x83\x18\x8d\xa0\xc5\x47\x57\x1a\x18\xe8\xbb\x0c\xa8\x30\x46\x47\xf1\x8b\x18\x69\x16\x06\xde\xdb\x6b\xad\x0f\x11\x18\xfa\xb2\x57\xef\x70\x98\xe3\x4e\xdd\x1f\x3b\x6e\x6e\xcd\xf9\x2b\x35\x8d\x7f\xdc\x52\x01\xa6\xc2\x02\x0c\x23\xd8\xd0\xde\x59\x30\x10\x0b\x5c\x58\x7b\xd7\xb3\xc5\x1a\xc4\x31\xa9\x86\x78\x65\xe1\x28\xcc\x4c\xb0\x14\x80\x48\x8b\x35\x63\xa8\x9e\xaa\x7e\x2a\x6c\xe8\xc3\xcf\xe4\xa6\x2b\x56\x54\x09\xfa\x1d\xf6\xf5\x5a\x47\xf6\x90\x31\x13\x91\x1e\xa3\x1b\x49\x48\x02\x4d\x5e\x08\x82\x1a\xbf\x26\x09\x5c\x20\xa1\x59\x4f\xa1\x2d\x45\x17\xa2\x90\x11\xca\x60\xd4\xc0\xd0\x01\x3e\xcb\x31\x11\x41\x53\x08\x76\xf1\x69\x8f\x7e\x84\x4e\xc4\xfa\x52\x33\x35\x3a\x49\xa2\x16\x38\x7e\x5a\x55\x12\xe8\x49\xa5\xe7\x35\xd9\xbb\xee\x3f\x5d\xe1\x95\x01\xac\x73\x70\xa2\x92\xe9\xfd\x5f\x56\x50\xae\x83\x3d\x7a\x32\xab\x24\x7b\xc2\x6e\x05\xd9\x26\xcd\x12\xe6\x27\x2b\x00\x14\xe0\xbf\x58\xde\xc3\xc7\xb0\x14\x7a\x23\xc0\xf9\x06\xbd\xc7\xb9\x08\x7b\x26\x5c\xa7\x51\x7f\xd8\x1c\x9b\xe8\x5c\x27\x38\xd8\x22\x38\xb3\xd5\x80\x8f\xa4\x12\xa2\x49\xea\x15\xaf\xe2\x6f\x3b\xca\xa6\xfc\xfd\x96\xb3\x4c\x55\xcc\xb3\xdc\x5a\xff\x99\xd4\x47\xed\x94\xac\x16\xbb\xf3\xc5\x5c\xca\xfc\xae\x3e\xea\x55\x31\x3b\x34\x01\x93\x68\x58\x86\xaa\xa4\x09\x5d\x32\x61\x16\x5e\x79\x9f\x31\xca\x54\x70\xa6\x78\x67\x05\x98\x28\x81\x0a\xa5\x67\x30\x2a\x71\x35\x83\x35\x59\x79\xeb\x64\x01\x14\x6a\x3c\x6c\x54\x4f\x57\x02\x79\x90\xbb\xe2\x20\xc6\x3f\x7e\xfd\x17\x0e\x57\x55\xfd\x70\x63\x18\xa9\x30\x36\x89\x66\x9f\xad\x55\x72\xcd\xa3\x47\x88\x1b\xc0\x40\xaa\x9d\x7d\xd3\x4e\xc0\xca\x3a\x92\xfc\x5b\x2f\x92\x82\x22\xb9\xdd\x22\x3b\x08\x68\x4b\xc8\x11\xd7\xb3\x34\x67\x18\x43\x81\x6c\x2d\x44\xb6\xad\x0e\xbb\x89\x2d\x41\x8c\x21\xd8\x48\x88\x0d\x53\xe7\x87\x20\xad\xbf\x22\x7d\x98\xe2\xf0\xb6\x81\xd2\xd2\xd0\x17\x77\xfd\xdb\xfb\x3a\x06\x27\xd8\xae\xd3\x9b\xc0\xd6\xfd\x3b\xc7\xcd\x87\x20\x4b\x0c\xc2\xb9\x31\x69\x07\x0f\x94\x0f\x9f\x1a\xa8\xb9\xa4\x51\x42\x12\x5f\x5b\x45\x4f\x12\x6b\x45\x88\x4a\xbc\x76\x84\xb6\x68\x7a\x22\xe1\x99\x14\x64\xff\x56\xf2\x62\xce\x45\x6f\xe2\x84\xbe\xc2\x24\x06\x99\x15\x6b\x64\x7b\x53\x1a\x5b\x5a\xe7\xe1\xf1\xf0\x30\x44\x66\x94\x6e\x82\xd8\x02\x62\x93\x2c\xbd\xca\xb9\x16\x10\xe5\xfb\x35\x04\x31\x5c\x83\xdd\xbd\xc6\xfe\xb0\xbf\x37\x8c\x1f\x4d\xb3\x14\x49\x57\x2c\x67\x34\xf6\xe6\x2c\xc5\x66\x51\xe5\x9f\xde\xf1\x87\x56\x61\xc9\x35\x8f\x65\xc1\x58\x82\x99\x22\x23\x12\xab\x7c\x48\xbf\x0e\x83\xa8\x38\x53\x2a\x0c\xcb\x89\x11\x40\x4d\x27\x19\x94\x84\x5a\x99\xc0\xe0\x3a\xd7\x14\x57\xe6\xca\x36\x90\x06\x90\x07\x4c\xa5\xd0\x9b\x99\xa7\x10\x80\xb3\x67\xbe\x43\x33\xcc\xf7\xa0\x5c\x90\x19\x56\x9b\xc1\x0c\xab\x7f\xc4\xc9\x16\x78\x03\x44\xea\x68\x1c\x2e\x7b\x0f\xd7\x23\x86\x6b\xd8\xc9\xad\xda\x53\x38\xba\xad\xe3\xab\xcd\xe5\xad\x5f\x07\x87\x60\xfd\x70\xbd\x5f\x83\xdc\x59\x8f\x20\xb2\x39\xfe\x14\x77\xfe\x3c\xb0\x91\x89\x40\x58\x51\x06\x98\x4b\x79\x37\xdf\x9d\x2f\x90\x39\x68\x7a\x07\xa4\x0e\x98\xa0\x7c\xc5\x8f\x46\xcc\x2f\x0f\x00\xdd\x3f\x1f\xb9\xa5\x4c\xd1\xca\x02\x47\x72\x53\xe7\xaa\x79\xab\x6c\xe7\x2c\x8c\xbf\x39\xf7\x71\x13\xea\xc3\x3e\xbe\x7b\x0d\x3a\x02\x98\x8f\xe3\x2d\xe1\x5d\xa0\x2c\x9a\x76\xc2\x61\x1d\x28\xa3\x1e\x1e\xc0\xd1\xe6\xa8\x42\xb1\x4e\x80\x46\x5a\x3f\x90\x89\x6b\x97\xd6\x3f\xd6\x3b\x5e\x41\x52\x93\x79\x73\x58\x63\xf5\x09\x57\x78\xf0\x30\xd1\x14\x60\xde\x50\x7a\x73\x38\x46\x96\xaa\x8b\x62\xd6\x0d\x5d\x5e\xa2\xef\x14\x70\xcc\xdf\x29\xda\x98\x3e\xc6\x90\x68\x56\x64\x0d\x57\x54\xd0\x00\xf1\xb4\xfe\xc2\x18\x09\x6c\x7a\xba\x75\xa2\xf6\x05\x5e\x4b\x93\xef\x7c\x31\xcd\xf8\x1e\x2c\xd4\x6b\xd6\xf6\xad\xae\xde\x7c\x25\xdf\x5b\x74\xca\xb6\xc5\x4a\x3a\xc8\x10\xf9\x2c\x30\x18\x3b\xa5\x6c\xa5\x7b\xd0\xb3\xfe\x1a\x6b\xc1\x84\x52\x2d\x94\xed\x4c\x8e\x2d\x43\x30\x2c\xbe\x82\xa3\x3e\xc6\xea\x9b\x40\xea\x66\x5d\xa6\x5a\x71\x40\xfb\xcd\x57\x44\xb2\x04\x48\x38\x3f\xda\x8e\x00\x6a\x22\x43\x7a\xb5\x25\x6f\x7d\xdc\x9b\xb8\xad\x23\xb5\x38\xbc\xc9\xb8\x86\xa6\x4a\x72\x76\x4f\xa6\x5a\x50\x46\xda\x14\x87\xdd\xb2\x69\x56\xdd\x64\x83\x1e\x2b\x76\xf9\x12\x08\x25\x1c\x9e\x05\xc2\xac\xbf\xb5\xe6\xcd\x6e\xf8\x8b\x40\x0b\x6b\xac\x02\xd1\x2a\x27\xda\x31\xcd\xa3\xf7\x8f\x9a\x32\xc3\xc7\xf7\x54\x6b\x66\xd1\x46\x9b\x4b\xb5\x02\x73\x21\x55\xc3\x74\x38\xe0\x8c\x7a\x99\x8f\xa2\x9f\x9d\x2f\xdc\xa9\x5b\x46\x66\x51\xec\xe0\xc2\x2e\xd7\x6e\xd6\xf0\x19\xc2\xc3\x63\x75\x17\xaa\xf6\xb9\x8f\x19\x3d\xfa\xf8\xa8\x06\xd9\xca\x4f\x7d\xe9\x70\x38\x2e\xea\xca\x16\x9c\x22\xd0\xcd\x5c\xae\x4c\xb6\x09\x23\xfe\xbf\x03\x4c\x40\x5b\x59\xef\x56\x81\xf5\xc6\x35\x82\xf7\x3e\xfb\xcb\x37\x14\x0a\x80\x6e\xf4\x48\x7c\x77\x70\x53\x48\xb5\x0e\xb3\xec\xcf\xbb\x2e\xf3\xdb\x62\x1e\x3d\x34\x57\x36\x58\x0c\xe6\x90\x5b\x6f\xe7\x10\x2d\x31\xd4\x50\xe0\x92\x08\x04\x1a\xd5\x90\xf2\x5d\xa1\x3d\xb3\xc0\xb1\x9e\x78\x4a\xc9\x59\xc4\xb5\xb9\x77\x94\xa0\x94\xcd\x1f\x63\xfe\x0d\xff\x35\x87\x84\x8a\x8c\x88\x44\x00\x56\x32\x91\x36\xd0\x4d\x04\xd7\x2e\xf4\x48\xcc\x2c\x97\x4b\x4c\x1d\xb1\x09\x4d\xf2\x85\xe7\x95\x06\xd2\x85\x7c\xf1\x62\x8a\x25\xa0\xc0\x28\x29\xdf\x03\xf3\x10\x95\x9b\x06\x53\x0d\xc2\x3e\x71\xe4\xfc\x13\xa0\xc7\x8c\x5b\xff\x7b\xe2\xce\xbb\x9f\x90\xf6\xf9\x49\xa5\x5c\x80\x3f\xb9\x2e\x54\x01\x92\x70\x11\x24\x8a\x34\xd6\x4d\x69\x99\xcb\x1b\xdb\xc4\x08\x4b\x3c\xc7\x50\x80\x98\x36\x3b\xc3\x6a\xb8\xce\x8a\x71\xed\x4d\xa2\xeb\x7d\xe8\x26\x6b\xbe\xca\x7b\x23\xf1\xd9\xa7\xdf\xf0\xe3\xd8\x1e\xd6\x8d\x49\xa3\x56\xda\x36\x89\xf0\x97\xd9\x1b\x4f\x06\x57\x76\x41\x9c\x3d\x23\xdf\xe4\x57\x15\xe3\x59\xcb\x02\xa2\xfc\x16\xf4\x29\x70\x62\x94\x2f\xca\xa2\xd0\x91\x13\xa2\xeb\xdf\xbd\x82\xeb\x21\x44\xf7\xc7\x2a\xa2\xa1\xb7\x9a\xc7\x10\xa6\x93\x27\xed\xc1\x65\x75\x59\x99\x67\x5a\xe9\xcb\xbb\x42\x91\x78\xdf\x93\x34\x14\xa1\x58\xea\xf2\x2c\xe0\xb2\x1f\xb4\x06\xa4\x04\x53\x1c\x14\x4d\xfe\x2d\xa2\x64\x1c\xfb\x10\xba\x56\x5b\xaa\x62\xcc\x09\x3a\x9b\xb8\x07\xb3\x96\x84\xc3\xb0\xe6\xcd\xd1\xe9\x41\x45\xea\x0b\xc6\x45\xf7\xc8\x4c\xbe\x3d\xc9\xde\x77\x09\x07\x23\xe5\x5b\x74\xa5\x8d\x49\xf1\x7b\x91\x6f\x97\x17\x48\xf6\xf0\xd9\x33\x42\x56\x15\x41\xad\x94\x6d\x3b\xc5\xdb\xdc\x7f\x30\xab\x8a\xe9\x5a\x5c\x25\x83\xd7\x69\xc5\x27\x36\xe5\x3f\x18\x6d\x6e\x1d\x2b\x00\x5b\x95\x28\x27\x14\x01\x33\x8c\xfa\x94\x78\x1d\x16\xef\xcf\x46\xef\xcd\x16\x32\xdd\x76\x41\xd5\x56\x80\xfd\xf9\x82\xed\x56\x60\x59\xdc\x54\x7b\x74\x02\x64\xe7\xe6\xea\x2c\xee\xd3\xfe\xfe\x7c\x05\x60\xa7\x67\x50\xa9\x9b\x1a\xf1\xa6\x7f\x41\x1c\x15\xec\x8c\x8b\xc1\x53\x14\x1a\x0e\xaa\xa4\xb7\x77\x15\x36\x05\xba\x22\xca\x99\xcb\x29\x6f\x6a\x19\xb8\x8f\xe2\x79\xf4\x19\x96\x9a\x2e\xd9\x0a\x9f\x92\x86\xa8\x88\x42\x7d\xb1\x9a\xec\xd5\x78\x65\x24\x51\x19\x3a\xbd\x2c\x44\xaa\xd3\xab\xc7\xd7\xa5\xc7\x09\x8a\x3d\x05\xc5\xf1\x80\x03\x80\xd0\xcd\xdf\xf0\x6c\x14\x48\x0f\xaa\xb6\x68\xc2\x1b\x3b\x0e\x3e\x22\x1f\xc1\x20\x9b\xa3\x45\x92\x3b\xd5\xe7\x7e\x20\x15\x68\xc7\xf7\x1e\x8e\xd2\x89\x51\xdf\x73\x14\x58\x48\xcd\xfb\xf3\x40\x86\x96\x83\x22\x8e\xc1\x46\xa5\x61\x1e\xe5\xd1\xe8\x00\x61\x9f\xdb\xca\x8f\x60\x14\xeb\x90\xe7\xe0\xd6\xbc\xba\x8c\x1c\x14\x74\x85\x56\x34\x54\x52\x44\xf1\x06\x0a\xd1\x61\x20\x62\x49\x1c\x28\x0b\xcb\x59\x4e\xab\x46\x48\xc5\x00\xd8\xc6\xde\x56\x02\xac\xde\x27\xe6\x36\x09\x77\x18\x80\xe8\x4e\x93\x61\xb9\xdf\x00\x9c\x09\x0e\x77\x9d\x5c\xc3\x29\x81\x92\x66\x54\x38\x1c\xf4\x66\x76\xe4\x6a\x5c\x87\x2e\x1c\x17\x43\x5c\x83\x2a\x20\x29\x53\xf8\x72\xc7\x2a\xc0\xd4\x31\xcb\x00\x8c\x7e\x62\x14\x48\x1c\xfb\xf7\x13\xc6\xad\xe1\xc4\x77\xd5\x09\x1a\xcd\x4b\xba\xc9\xc5\xcd\x44\x38\x26\x76\x1d\x17\x58\xd6\x50\x2e\xf8\xc7\x16\x85\x8b\xd3\xa5\x42\x26\x6b\x4b\xac\xbf\x90\x06\x92\x97\xe8\xa2\x7b\xa8\xa3\xd3\xda\x23\x14\x57\x32\xdd\xa9\xf3\x39\x8a\x52\x53\x28\x0e\x9a\x40\x94\x9a\x10\x0a\xa3\x1a\x02\x0e\x2d\x86\x63\xca\xc6\x63\x32\xb3\x75\x0f\xd6\x35\x11\x02\xe4\x3c\x64\xe5\xe8\xcd\x01\xe6\xc1\x80\x91\x31\x09\x78\xc2\xde\x4b\x6e\x57\x03\x26\xb5\x1d\x5f\x75\xa9\x15\x59\x78\x74\xd1\x26\xb6\x0e\x70\xbd\x79\x80\x4b\x1c\xb8\xaa\x1a\xad\xc4\x71\x9d\x24\x69\x26\xb7\x8a\x00\x5d\x78\x8b\x44\xe8\xb8\xd8\x10\xc2\x7b\x21\x04\xeb\x4a\x36\x0c\x10\x34\x06\x9c\xaa\x8c\xba\x59\x5f\x60\xf3\x40\x62\x1d\x5e\xfe\x5c\xba\x7b\x80\xaa\x34\xe7\x9e\xa1\x81\x48\xf1\xc0\xc4\x2a\xfd\x76\x11\x8d\x31\x78\x9f\x8b\x7a\x99\x9e\xc1\x7c\x1c\x89\x5d\xb8\x18\x31\xec\x4f\xdd\xa0\xdc\x06\xf1\xa2\x2e\x4c\x12\x82\x17\xf9\x29\xc3\x03\xf7\x9a\x08\x87\x5b\x58\xe0\xe6\x1f\x9f\x02\x57\xb6\x41\xf3\xaa\xb0\x4b\x33\x25\x36\x5b\x22\xa0\xc9\xbd\x03\xcf\x32\x80\xbd\xdd\xd3\x80\xfb\x1d\xb7\x82\xa4\x19\xed\xed\x14\xb8\x79\xb7\xb5\x73\xad\xb5\x9d\x3c\x0e\x6a\xd9\x84\xde\x9d\x8d\x40\xe3\xa1\x22\xb4\x23\xca\x0d\x67\xc5\x77\x1f\x7c\x0f\xf2\xda\xf9\xef\x3e\xfc\xde\x25\x71\x0d\x18\xbf\x75\xfe\xbb\xf7\xbf\x77\x23\xb3\xd6\xf5\xd3\x3d\x99\x8b\x36\x35\x42\x75\x2d\x0c\xc5\x4e\xaa\x50\x2a\xdb\x97\xf2\x4e\xd5\x25\x4f\xf3\xde\x20\xe5\x95\xd1\x04\xe3\x27\x74\x79\x8d\x47\x3e\xf3\xb9\x67\x0b\x4f\xf2\x99\xcf\xa9\xe2\xd8\x81\x2f\x56\xfb\xd3\x32\x7f\x17\xa9\x82\xbf\xb4\x12\x41\x80\x94\xa2\x66\x56\x49\xfd\x80\xa3\x06\x24\xe4\x73\x88\x02\x18\xbc\x12\x5e\xff\xc0\xbf\x3e\xa6\xb9\x11\x42\xb8\x99\x1f\x82\x9e\x1c\xed\x06\x41\x9b\x2e\x99\xe9\x30\x48\x6e\xf4\x06\x19\x66\x07\x1b\xfb\xb5\xf6\xd5\x23\x50\x5f\x40\xb3\x84\x39\x72\x50\xa5\x49\xb7\x24\xa1\x47\x78\xfc\x5c\x24\x63\x14\x10\xee\x19\xbd\x77\x61\xd8\xb2\x4d\x98\x62\x20\xb9\x71\x40\xf8\x8a\x42\x74\x68\x2e\xb1\x8a\x90\x65\xb5\x87\xa2\xc8\x63\xec\xff\x3e\xcc\xf1\xb0\x7f\x88\x8c\xea\x77\x37\x63\x0e\xf7\x87\xd0\x72\xe6\x51\xb4\xee\xa1\xe6\x30\x5b\x89\x21\x76\xfd\xc6\xa6\x61\x83\x79\x87\xb7\xc8\xd9\x3d\x82\x0a\x2d\x91\xba\xa0\x8f\x92\x43\xe9\x89\x58\xba\x24\xe9\x4b\x0a\xe8\x86\x5e\x10\x8d\x1e\xec\x60\xb6\x12\xaa\x98\x52\xfd\x5d\x5d\x25\x02\xa5\x05\x14\x47\x64\xd8\xc3\x93\xad\x17\xfb\xea\x96\xb0\x09\x95\x2f\xa6\x55\x48\x3b\x1b\x9f\x61\xf9\x29\x28\x0c\xd5\xb7\x9d\xfd\xd6\xce\x12\x4a\x45\x4b\x6b\xe6\xd5\x96\xf0\x4d\xae\x09\xd6\xc8\x9b\x40\x5a\xa6\xd6\xc2\x6e\x49\x8e\x21\x20\x41\x1c\x97\x17\x71\xa0\x7b\xb7\x73\xf9\x4a\xaa\x79\x78\xbb\x75\x1c\xb0\xa5\x48\x22\x1b\x35\xce\xcc\x25\x3b\xc5\xf7\x17\xf5\x37\xe6\xa3\x72\xdf\xdc\xe0\xfc\x11\x80\xac\x53\x70\x94\x68\xd0\x5e\x5d\x6c\x8d\xfd\x12\x03\x40\x4b\x30\xb3\xf5\x08\x0b\x66\x80\x60\xeb\xbb\x21\xf9\x00\xcd\xd1\x61\x4e\xc5\xf0\x49\xd3\xe2\x92\x50\x3c\x57\xa4\x4c\x2e\x5d\x48\x8c\x46\xd2\x38\x22\x8e\x05\x86\x51\xc6\xe8\x44\xc8\x88\x33\x41\xb0\x14\x8b\x5a\xe0\x59\xa0\x44\x79\x6a\xf8\x02\xd9\xa7\x93\xfb\xd1\x7e\x58\x51\xce\x22\x9e\x49\x51\xc9\xf0\x04\x95\x32\xb0\xcd\x38\x4c\x05\xc3\x52\xf6\xfd\x9d\x39\x51\x8f\xa6\xef\x78\x13\xb7\x3b\x40\xca\x44\x08\xbc\xb1\x87\x3e\x15\xd6\x0c\xdb\xf3\x2f\x02\x3b\x20\x35\x80\x9b\x77\x7a\xb6\xf5\xf2\xb5\x38\x7b\x0c\x25\x90\x03\x48\x42\xcd\x77\x83\x46\x87\xf9\xca\xbc\xd1\x11\xa5\xac\x46\xfa\xe7\xff\x4b\xd7\x61\x18\xe1\x86\xa2\xec\xe2\x75\xa4\xfa\xc3\x30\x04\x10\xee\xb2\xed\x56\x0b\xa8\xa4\x81\x10\x3c\x76\x8c\xf7\xc8\xeb\x37\xe1\x08\x05\x10\x95\x3e\x94\x32\xc8\x6e\x22\x5d\xf1\x70\x6e\x4c\x98\x7d\xea\x5b\x4f\xa8\xbe\x93\x25\x92\x23\x9e\xd0\xda\xc7\x79\x8b\x08\xd8\x98\x22\x86\xf3\x9a\x89\xa4\x80\x60\x19\x6e\x77\x33\x18\x15\xf7\xb1\x81\xa6\x37\x87\x77\x0d\x5e\x0d\xe4\xeb\x3d\x6a\xf0\x3d\x64\xd8\x39\x21\x65\x7f\xa0\x1f\x78\x98\x7f\xd0\x18\x0b\x49\xf3\x21\xdd\x9b\x01\xe8\xa4\x2a\x4b\x1e\xdd\xe9\xdb\x1d\x21\x36\x0e\xac\x33\xac\xc1\x62\x9c\xda\x47\x78\x09\x4c\xd1\x4d\xfa\xdb\x92\x46\xf1\x1a\x9e\x14\x7e\xa8\x0b\x55\x27\xfd\x76\xb9\x57\xf1\x6c\xb1\x89\x93\xb0\xf0\x1f\x41\x6c\xf8\x9d\xfd\x9d\xd6\x9d\xa5\x27\x95\xe9\x46\xde\x8c\x09\xe3\x38\x9e\x91\x09\xa6\x8a\x53\x30\x81\x58\x59\x0f\x6b\xea\x41\x39\xea\xfc\x6e\x2a\xd8\xc9\x2a\x0f\x98\xe6\xac\xb0\x43\x68\x72\x64\x2b\x37\xf8\x93\x89\x6a\x20\xd2\x1c\x76\xc3\x1f\xcd\xb8\x29\x03\x3b\x24\xcb\x10\x80\xb9\x57\xa4\x0c\x79\x92\xd1\xa2\xd0\x79\x3a\xca\xfc\x9d\x0e\x34\x57\x03\xa9\x32\x03\xdb\x9f\x1c\xa2\x91\x7a\x3a\xdf\x12\x48\x6d\x18\x48\x6a\x78\x31\x28\x53\x0d\xd2\x19\x26\x32\x18\x7b\xca\x04\x6a\x70\x02\xc3\xc0\x1e\xbc\xf0\x96\xa6\x8d\x31\xe7\x5d\x20\x02\x76\xf6\x22\x06\x0f\x47\x3a\xe1\x94\x61\xb2\xff\x47\x7e\x69\x6e\x0e\x71\x3c\x52\xc4\x44\xe5\xd5\x5e\x03\xb6\x8c\x84\x0d\xb2\x61\x33\xc5\x34\xb9\x16\x68\xe6\x11\x0f\xba\xb7\x7d\xbf\x39\xb5\x1b\x9f\x14\xa7\x65\xe8\x80\x5e\x68\x91\xcc\xf7\x91\x46\xd9\xbd\x6c\x2e\x3c\x9f\x41\x1e\x32\xfb\x04\xd9\xa2\x4b\x9b\x27\x3c\x45\x0a\x69\xff\x9d\xbd\x06\x4e\x15\x09\xf8\xd0\xa6\x43\x20\xf4\xc3\xaf\x31\x7f\xcd\xfa\xcf\xde\xc8\x73\x1e\x40\x74\x7f\x84\xa9\x46\xd2\x49\xa6\xfd\x58\x2d\xca\x59\x23\x70\xb2\x3a\xba\xa9\x1f\x78\xb9\x4d\x4a\xc3\xd9\x72\x38\x1a\x48\xbc\x0a\x40\xda\xa8\x55\xde\x00\x64\x29\xdf\x0c\x53\xa0\xda\x1f\xce\xe7\xde\x1c\x8e\x99\xb8\x61\x4c\x98\x3b\x5f\x63\xe2\x07\x8a\xae\xd0\xb6\x3c\x32\x1b\x49\x54\x59\xa0\xf6\x1a\xe5\xa6\xb6\x6f\x88\xfd\x06\x44\x48\xdd\x37\x44\xff\x28\x48\x8e\xc9\x8b\x9b\x50\x8e\xe6\xe1\x2a\xec\x00\xd2\xbc\xd8\x44\x5c\xdb\xc4\xd4\x5d\x62\x22\x8b\x8c\x27\xa5\x84\xe3\x68\x17\xa9\xa4\xb6\xed\xcb\xc0\x72\xbb\xfb\xec\x0c\xa5\x38\x20\x92\xab\xa7\x8a\xe1\x1d\xf7\x5e\x78\x6b\x47\xde\xe2\xae\xdc\x82\x60\xd7\x39\x71\x79\xf1\x5e\x04\x7d\x98\x64\x3b\x19\x5d\x5a\xc4\x6a\xaf\xde\x09\x15\xf0\x91\x11\xc3\xb7\xf9\x5d\xcf\xdb\x98\x31\xfa\xcc\x28\x59\x13\xf9\xcc\x42\xb3\xb4\x31\x98\x98\x2c\x70\xa1\x02\x9d\x78\x43\x9a\x43\x59\xb6\x1f\x24\x6f\xb3\x55\xed\x07\x53\xf7\xf5\x26\xd8\xe9\x8b\xce\xa1\x77\x06\xe0\xbf\x77\xfb\xfb\xdf\xcd\xe5\xc8\x61\xe6\x1d\xad\xea\x1c\x4a\x51\x04\x04\x91\x98\x0a\x05\xec\x67\x13\x6b\x51\x20\xca\x18\x35\x0d\x39\x2f\x19\x71\x08\x60\xac\x93\x04\xd8\xc2\xda\x5c\x7f\x00\xd3\xf5\x17\xd8\xe6\x89\xe8\x43\xc2\x4d\x6e\x02\x8c\x61\xaf\x3f\x0d\xd6\x6f\x66\x04\xc3\x89\xb4\xe1\x07\x24\xb3\xa3\x45\x15\x5f\x61\x4e\x22\x2c\x35\x1b\x25\x21\xb1\xf2\xd4\x61\x26\xce\x9f\x64\x41\xf2\x37\x13\x47\xe3\x83\x8d\xe1\x36\xb7\x6a\x51\x74\x44\xc4\xd3\x60\x3f\xaa\x5b\xc5\x71\xd0\x68\x6c\xad\xaa\xf2\x7f\x27\xa2\x26\x75\x14\x9b\x5e\x82\x8c\xaa\xf3\x74\x8a\xbb\x3c\x92\xf5\xb3\x8b\x53\x8f\xb9\xa9\x70\x8a\x3c\x5d\x6c\xe4\x05\x71\xb4\xa6\x46\x19\x41\xf8\x56\x8c\x82\xeb\x73\x9c\x8b\x3a\x80\xf5\x9f\xed\x6e\xab\x7d\xe3\xb1\xb7\x35\x63\x40\xf4\xe6\x2b\x21\x20\xcc\x7c\x17\x03\x02\xd1\x35\x9f\x35\x32\x95\x26\x0f\x2a\x87\xe2\x73\x39\xfd\x77\xb2\x02\x4f\x3e\x6b\x2f\x3c\x96\x70\x13\xbc\x6d\xa1\xa1\x12\x52\xe0\xea\x32\x09\x9e\xd7\x1d\x49\x04\x50\x32\x8a\x24\xfe\x1c\xfd\x49\xbf\xeb\x06\x85\x76\x39\xc5\x6e\x50\xe8\xa6\x2b\x20\x66\xbb\x3d\xc8\xd6\xe8\x02\x98\x80\x73\xdc\xc5\xd2\xd5\x04\xc0\x28\x47\xc7\xd4\x5f\x34\x68\xaa\x0f\x72\x1d\xb2\x16\x76\x9b\x86\xf3\x2b\x05\x51\x6d\xb5\xdb\xc6\x25\x36\xdd\x01\xa5\x9e\xa5\x7b\x9e\x28\x37\xb9\xec\xf6\xc7\x18\x0f\xc3\x19\xa7\xc3\x76\x4c\x56\xc8\xf1\xb0\x86\x87\x36\x58\x26\x53\x31\x84\x75\x54\x8e\xb9\x08\x80\x79\x5e\xa4\x1f\x0e\x95\xa2\xb8\xa7\xf6\xe0\x08\xcc\x4d\x12\x1e\xed\x8d\xf9\x83\x4b\x20\x52\x81\x08\x04\x6c\x33\x3c\x01\x8d\x21\x4c\xee\x06\xc7\x22\xfd\x7e\xea\x5d\x2b\x50\xed\xc3\x88\x6a\xd6\xc5\xe2\xa4\x12\x0e\x4d\x08\xcc\xe1\xdd\xc6\xde\x2a\x26\x5e\x88\x06\xfb\x75\xee\xe7\x83\xd3\xfb\xc1\x05\xb9\xb3\x13\xdc\x8f\x55\x29\x73\x74\x06\x08\xb3\x2b\x75\x75\x07\xc3\x29\x3a\x74\x8b\xfc\x42\x0c\x04\x98\x1a\x86\x2e\x57\x70\xec\x28\x13\x0f\x34\x59\x70\x26\x04\xa3\xf5\xff\x16\xc7\xba\x89\x26\xcc\x4c\xc4\xc1\x93\xe1\xa0\x33\x68\xcb\x88\xea\x06\x99\xf6\xde\x7d\xbf\x7e\x37\x3c\xb0\x48\x73\x1f\x98\xcd\x61\xa8\x05\xf9\xf9\x82\xd0\x3f\xd9\x27\x13\xde\xc4\xb0\x3f\xfe\x94\x93\x67\x93\x4c\xfd\xeb\xe0\x90\xa5\xb8\xf9\x90\x58\x0b\x51\xa8\x52\xc4\x26\x29\x02\xb3\xd3\x20\x28\xb2\x20\x58\x7f\x33\x66\x8b\x43\xb6\x25\x4d\x59\x6d\x01\x37\xb0\xb1\xf3\x60\x63\x49\x04\x62\x38\x35\xb3\xa4\xe5\x3c\x7a\x8a\x59\x95\x6a\x33\xcd\xf1\xa7\xcd\x27\xe3\xfa\x5c\xbc\x7d\x2c\x1f\x24\x8e\x85\xc3\xb4\x78\x20\x48\x41\x66\x30\x6b\x5c\x28\x0e\x32\x3c\x8a\xb7\xf7\xf3\xa1\xb9\x17\xfd\xab\xcf\x5b\x8f\x86\x78\x33\x85\xa3\xb8\xd4\xcd\x4f\x4c\x06\x27\x11\x57\xcc\x10\x4d\x04\x99\xae\x70\x33\x46\x30\x3c\x8a\x08\x25\x0d\xe2\x2e\x0d\x5a\x1a\xbb\x82\x14\xdf\xd5\x62\xf1\x03\xa8\x20\x34\x50\x43\xf5\x67\x2e\x82\xdc\xaa\x48\xa5\xdc\xbe\x30\x08\x66\x52\x83\x1c\x57\xab\xc2\x8d\x34\x49\x55\x17\x6d\xe3\x43\x09\x07\x53\x86\x82\x28\x63\xbd\x60\x50\x7a\xc0\x19\x31\x1d\x03\x85\xa7\xcb\x35\xa3\x04\xf6\x18\xad\x10\xd8\x96\x68\x24\xe6\x25\x18\x5d\x3d\x3c\xbc\xb2\xdd\xef\x50\x22\xb4\x84\x46\xcc\x4b\xf0\xba\xba\xbe\xd6\x80\x97\x1d\xe1\xdc\xd2\xa9\x09\xb7\x49\x77\xe9\xf3\x74\x41\x3a\xcd\xc9\x9f\x12\xee\xd3\x03\xf1\x12\x81\x5b\x5d\x8f\x06\xd5\x8f\x53\x99\xa1\x02\x23\x77\xe4\x0f\x3a\x0c\x1b\x27\x7e\xd9\xee\x46\xce\x2f\xd7\x78\x92\xa5\x03\x12\x0d\x98\x13\x04\xe5\x1c\x1b\x86\x57\xd2\xb7\x8f\xbd\xed\xbb\x18\x71\x4f\xc1\xdd\x8d\xbd\xeb\x18\xf4\x0e\x02\xdb\xc4\x28\xde\x97\x3b\x18\xc7\x04\xa6\x70\x74\x76\xf6\xf9\x0b\xa7\x4f\xa1\xab\x3e\xd6\xd7\x7f\xbd\xf0\x8d\xa5\x6f\x75\x72\x64\xc2\xe9\x41\x37\xff\xcc\xe3\x75\x2d\x23\xb3\xb6\x24\xe1\xa4\xe4\xf5\x5a\x48\x33\xc6\x2f\x73\x8c\x5d\xb8\x48\x9c\x6c\x14\x38\x7a\xe7\xc2\xc0\x00\x8b\x16\x12\x73\x3d\xc5\xd7\xf1\x4d\x51\x11\xe3\x04\x39\x08\x86\x62\x20\x92\x24\xc7\xce\xdd\xaa\xfd\x63\xf4\x17\x15\x20\xa3\x95\xbb\x94\x0a\x2d\x96\x14\x31\x09\x25\x80\xb9\x20\x2d\xa1\xa2\x07\x32\xd1\xc1\x5c\x47\x38\xd6\x22\x30\x58\xeb\x85\xba\x11\x1b\x83\x29\x71\xfe\x1b\x95\xfc\xa6\x53\x53\xdd\x4e\x6e\x40\xba\x6b\x1c\xdd\x4c\x90\x3c\x25\xe1\xb9\x96\x3b\x71\x67\xcf\x3d\x93\xf7\x1b\x9e\xb6\x0e\x9e\xa0\x1d\xe3\xf8\x1e\x1e\x22\x95\x3b\x54\x18\xeb\xde\x01\x6f\x3c\x24\x23\x94\x88\x11\x65\x39\x41\x18\x86\xec\x84\xf7\x82\xf4\x47\x26\x73\x59\x5a\x22\xc9\xd2\x2b\x9a\x05\xf0\xf6\xab\xa6\xfb\x1c\x94\xef\x3f\x78\xdd\x38\x1e\x57\xb7\x48\x31\xa8\x81\x67\x1a\x38\x28\x88\x9c\xcb\x0a\x2d\xcf\x80\xfc\xc2\x0d\x72\x3b\x6c\x83\x69\x3e\x3e\x68\x2e\x1c\xe1\xbe\x5d\x7c\x8a\x97\x04\xa6\x77\x92\x87\x46\x01\xd7\x32\x03\xf1\x2f\xc4\x60\x94\x77\x4e\x86\x4d\x6d\xc6\x09\xbf\x40\x8b\x04\xcd\xb0\x31\x09\xda\xa0\x02\x22\xc0\x52\x36\x0a\x98\x3b\x1c\xcc\xd6\xc9\xa8\x18\x23\xf1\xa8\x2a\x5b\xa4\xb6\xa6\xb6\xb6\x57\xdb\x77\x86\xf9\x8c\xab\x57\x24\x24\x73\x99\x37\x33\x6b\x9e\x77\x95\x53\x47\x4b\xc7\x3a\xc7\x23\x70\x56\x6d\xbb\xe3\xeb\xdf\xa0\x14\x80\xda\x0c\xea\xfb\xff\xbc\xf0\xd7\xaf\xf8\xde\x19\xf5\xfb\xd3\xbb\x97\x2f\x5f\x7e\x17\x65\xac\x77\xab\xe5\x82\x5d\xc4\x8f\x39\x19\x13\x67\x2f\x92\xdb\x6d\x30\xa6\x7f\x27\x2a\x62\x19\x88\x92\xad\x4e\x89\xa7\xc3\xb9\x9e\x4c\x3e\x85\xcb\x62\xe6\xd7\x67\x63\x81\xa9\xfa\xd8\xd9\xb2\xad\xae\x97\xc5\x56\xce\x2d\x64\xb2\x17\x83\x7b\xe3\x12\x52\x1a\xdd\x06\x0c\x95\x87\xee\x38\x0d\xf6\xbd\x63\xff\xc1\x28\xa7\xc1\x8e\xc0\xb0\x33\x8a\xdd\x50\xea\x49\x05\x0d\x62\x5f\xb2\x83\x6b\x04\x92\x75\x93\xae\x37\x4d\xf8\x8b\xf7\x5a\xeb\x8f\x60\x31\x0d\x7a\x87\x74\x8d\x56\x9a\x72\x14\x45\x1a\xa1\x48\x40\xa7\x58\x18\xa0\xdc\xb7\x84\x1d\x59\x35\x2c\x51\x1b\x87\xeb\x87\xb7\x3d\xd7\xa7\x74\x6f\xf0\x67\x79\x80\xdc\x13\x44\xc2\xae\x5f\x37\x44\xde\x41\xaf\x36\x1a\xc8\xbb\x20\xf3\xa1\xf8\x5e\x9b\x8d\x35\xc4\xf7\xca\x25\xcf\xa5\x37\x7b\x84\x09\x4d\x47\x37\xbd\xd7\xcf\x1a\x7b\x75\x6f\x7b\x37\x0e\x6f\x9a\xa3\x3a\x94\x9a\x29\x76\xd9\x83\x81\x31\xbf\xe2\x31\x4b\x40\x84\x6c\x8f\x64\x24\x69\x42\x27\xd2\x4f\x14\x94\x33\x19\xa6\x24\xb9\x0e\x5d\x2e\x8f\x95\xea\x24\x73\x47\x37\x4d\x36\x2b\x8c\x77\xfe\x95\x24\x94\xe1\x54\x0b\xb4\x8e\x20\x14\x18\x4b\x19\x5e\x01\xa4\x00\x74\xfc\xe3\x3c\x27\x76\x9f\x31\x4a\x62\xb4\xfc\x40\x24\x26\x99\xa5\x0a\x68\xa7\x2e\x3a\x0a\xa0\x22\x44\xab\x2e\x4e\xe3\xda\x1c\xa3\x82\xdc\x33\x8f\x99\x78\xd0\xb1\xc1\x81\x2a\x84\x5d\xcc\x79\x49\xaf\xf5\x98\x12\x0d\x1f\x52\xd9\xda\x12\x9b\x1e\x42\x09\x1f\xa0\x80\x2e\xe2\xcd\x34\xbe\x50\xce\xea\x08\xdf\x65\x0d\xf9\x9e\x2f\x60\x15\x76\xe8\xdf\x1b\x81\x29\x85\xf1\xcc\x0d\xf2\x75\x2e\x75\x91\x2b\x52\x18\xc9\xe5\x1f\x3d\xcc\x7d\x99\x22\xbe\x21\xd3\x5e\x9d\x6d\x0f\x85\x95\xf5\x52\xc1\x19\x30\x2f\x2a\x73\xe2\x72\x7d\xc9\xd6\x9c\x57\x00\xac\x2e\x6f\x27\xc3\x52\xb8\x71\xd0\x2e\x8a\x7a\x94\x21\x14\x85\x75\x96\x2c\x29\x48\xd7\xac\x1d\x51\x8b\x43\x66\xdc\x84\xc1\x46\xee\xda\xc6\x88\x61\xf8\x5e\xb0\xd9\x51\xe2\xbd\x60\xb3\xda\x5b\x2e\x07\xc7\xdb\x32\x2e\x07\x87\xb0\x15\xbf\xf4\x6b\xd6\xed\x70\xeb\x37\x69\xae\x51\x6b\x65\x32\xd2\x13\x2a\x44\x6d\x96\x46\xc5\xc0\x66\xa9\x2c\x38\x92\x81\x5e\xd9\x2c\x23\x5a\x79\x67\xf9\x33\xa9\x5f\x1d\xac\x1f\x1b\x70\xc8\x8a\x99\xcb\xf7\xf4\x74\x75\x97\x9d\xcb\x2e\xde\xaa\xad\x96\xb3\xb0\xe6\x2f\xa7\x5b\xeb\x35\xc5\x6f\x08\x00\x3d\xcd\x78\xff\xad\xf6\xaa\x75\xfd\x4a\xf3\xca\xbe\x7c\x66\x2f\xa5\x24\x98\x50\x4e\x4a\x2a\x21\x5f\x5f\x24\x07\x37\x79\x35\x40\x7e\x40\xed\x87\xb8\xab\xc0\xba\x7d\xce\xe5\x34\xfe\x45\xb7\x81\x61\xa1\x58\x6a\x23\x79\xad\x59\x5f\x6e\x6d\xaf\x28\x40\x2c\x16\x84\x0e\x3f\xc3\x47\x3e\x14\x87\xb1\x24\x1e\x83\x5f\x87\x01\x4d\x0b\xc8\xd2\xdc\xbe\x71\xa7\x4f\x59\x45\x54\x85\xf3\xe4\xd5\xf5\xa7\x6f\x78\xc3\x86\x21\x06\x64\xfe\x08\x04\x63\x4f\x43\x28\x7c\xc1\x29\x6f\x1c\x4c\x80\x06\x4f\x77\x19\xe8\x1b\x85\x68\x73\x1a\x1a\xbe\xa1\x2f\xd1\xd9\x3a\x14\xbc\xab\x43\x48\xb8\x2a\xe6\x28\x7e\xfa\x5b\x02\x7a\x70\xc7\x8e\xd5\x02\x88\x5c\x39\xd3\x03\xfa\xc1\xe4\x58\x73\xe3\x24\xf8\x5a\x2a\xdb\xaa\x5a\x7b\x55\x52\x9b\x07\xa5\x80\x33\x44\x7e\x73\xe3\x39\x5d\x44\x56\x9f\x43\x41\x27\xea\x63\x06\x75\x06\x7c\x38\x01\xb3\x6d\x19\x63\x6c\xec\x8f\xa3\xc9\xe2\xf5\x2f\x26\xca\xcf\xe7\x02\xbc\x45\x1c\xe4\x98\x04\xe2\xbc\x6b\xa9\xe0\x06\x3d\x14\xda\x5e\x9c\xae\xd5\x3f\x98\x51\x1b\x4c\x15\x57\x32\xbd\xf2\xea\x50\x28\x3a\x27\x28\x26\x79\xd0\x8c\x44\x08\xd7\x55\x8f\x6e\x70\x04\x37\x26\xfc\x0a\x2e\x3e\x84\x62\x19\xd0\x07\xc4\xdc\x3f\xb2\x32\xfa\x91\x10\x42\xbe\x50\x3e\x05\xa3\xa4\xc3\xcb\x20\x96\xa7\xfb\x15\x65\x0a\x73\x90\x2f\x33\xe5\x8b\x39\xe7\x72\x91\x98\x08\x63\x57\x29\x55\xaa\x99\xcb\x65\x32\x9e\xd3\xd7\x28\xfe\x29\x20\x11\x9d\x91\xb7\x6a\xa8\xd4\xac\x5e\x83\x63\x18\x1f\x80\x19\xc2\xac\xed\x94\xd1\x6e\x50\xd6\xa5\xd4\xf3\xe4\xf3\x06\xfa\xd6\x3a\x3a\x92\xc7\xbc\xa2\xbb\x46\x44\xc8\x93\x05\x7d\xc5\x48\x6f\x23\xf5\x94\x5d\x42\x25\x75\xdf\x50\xa9\x1b\xde\xec\xf5\xe6\xf2\x5a\x90\x28\xb0\x7e\xd0\xda\xde\x46\x2b\xe5\xe2\x53\x3c\x46\x8c\xd2\xeb\xb7\x30\x87\xde\xdc\x72\xe3\x60\xbd\x39\xb5\xe3\xad\x5e\x35\xd2\x3a\xea\x3e\x30\x3d\x95\xdb\x27\xab\x10\x1d\x01\xe5\xac\xe7\x73\xc0\xf1\x5d\xd1\xd3\x40\xaa\xa1\x3a\x0f\xb2\x04\xbc\x89\x45\x09\x8e\x6e\xb7\x74\xa6\x80\x97\x0b\x07\x24\xed\x9a\xb9\x53\x4c\xe6\xc3\x5b\x46\x6c\x76\x3c\xb4\xbb\xd7\x8c\xb4\xff\x67\xcf\x7c\xe7\x94\x7b\xbf\x37\xf2\x66\xaa\xac\xf3\x46\xce\x4c\x2e\xd5\xd9\xaf\x22\x20\xc3\x1b\x24\x36\x04\x0d\x44\xae\xe7\x32\x18\x86\x6e\x52\xa6\x69\xbc\x0b\xb6\x3d\xd8\x5c\xde\x42\xb3\xfd\xce\x4d\xff\xda\x34\xdf\xcd\x25\x03\xe3\x24\xe5\x73\xbd\xa2\xaf\x08\x05\x6f\xdf\xa9\x64\x61\x74\x89\x87\x85\x3b\x7a\x50\x0e\x0d\xb4\xec\xab\xc1\x54\x10\x25\xdb\x29\x21\xd9\x30\xec\x53\x94\x79\x11\x9f\xdb\x72\x9d\x7e\x9b\x02\xcc\xaf\x0c\xd2\x5b\x09\xb7\x31\xbe\x94\x22\x00\x39\x03\xa8\xab\x26\x44\x69\x39\x31\x79\xd7\x65\x4a\x7e\x8e\x66\x30\xbc\x67\x33\xa9\xda\xe3\x82\x70\x1a\xb9\xbd\xcd\x84\xcb\x4d\xd8\x6a\xe8\xe9\x3e\xd5\x34\xe2\x8a\xd3\x0f\xf0\x40\xc5\xb9\x9c\x9c\x1a\x54\xbe\x4b\x90\x05\x7e\x8f\xc1\xeb\x6d\x1d\x49\x8d\xb0\x23\x49\x46\xfc\xa5\x35\x36\x78\x71\x3e\x42\x58\xb2\x06\x08\xf1\x34\x9d\x20\x01\x2a\x76\x10\x5c\x51\x1b\xf4\xa6\x01\x7a\x89\xbb\xe2\x78\x5c\xe9\x1c\xd8\xf9\xd0\x5d\x8e\xc7\x55\x17\x3c\xa9\x7e\xe8\xb6\x21\x6b\x77\x72\xdb\x15\x86\xc1\x55\x31\x79\xc5\x6b\x31\x63\xb3\x13\x6a\x6b\xac\x79\xb0\x4e\xba\x5d\x72\x9e\x3c\x63\x17\xfe\xc3\xa9\xf2\x8c\x36\xde\x72\xbf\x34\x78\xc3\x90\xea\xfc\x5e\xdf\x68\x90\x1f\x2e\x7c\x34\x4c\xcb\xd4\x69\x4e\xc8\x0e\xe9\xe2\xde\xe2\xa4\xec\x30\xd6\x30\x70\x90\xc3\xc3\x80\xee\xac\x05\x89\x87\x13\xf6\xe9\xef\x75\x70\xca\x8e\xee\xe8\xe0\x4c\xce\x52\x26\xf8\xa2\x2c\x65\x6f\xd3\xcd\x52\x66\xea\xcb\xb8\xe6\x96\x94\x86\xa1\x13\xec\xdb\xf3\x31\xe8\x19\x69\x03\xeb\xef\xc9\xc7\xd0\xc1\x97\x90\x98\x98\xa1\xd3\x18\x91\x56\xc8\x03\x38\x8c\xa4\x50\x76\x86\x24\x68\x75\x8d\x58\xe0\xff\xc1\x14\x0d\x49\x96\x78\x0c\x74\xa2\x0b\xa8\xac\x7c\x60\x32\xa2\x98\x69\x9a\x9f\xd0\xab\xed\x06\xa9\x4f\xf7\xd0\x31\xa6\xb1\x25\x9b\x85\xa8\xa5\xc6\x96\x9c\x3f\x21\xb6\xcc\x4c\xb3\x2a\x0b\xa7\x90\xdd\x70\xa1\x0e\xff\xa2\x64\x68\xec\x38\x33\x60\xca\x94\x85\x3e\xc5\xdf\x63\x2d\x70\x69\xb8\x09\xee\x2c\x00\x62\x07\x94\x11\x8a\xae\x0a\xc4\x31\xe2\x2f\x6c\x03\x4d\x8d\x36\x0d\x0b\x9d\xb5\xf1\x36\xfd\xdd\x99\xd6\xfc\x74\xeb\xe0\x49\xa3\x7e\x14\x94\xb2\xcf\x26\x65\xe6\x08\x0e\x0a\x81\xbf\x63\x19\xa5\x97\xd5\x8f\xa8\x48\x99\xb0\x30\x6d\x35\x23\xe1\x09\xb3\xb8\x12\x2f\xa3\x78\x5b\xac\x80\xe2\xab\xf6\xd3\x30\xc5\x23\xda\x1a\x69\x06\x1f\xde\xe0\xa4\x31\x5c\x9f\xf2\xb9\x22\x07\xec\xc2\x74\xa9\x92\x2b\x55\xf1\x2a\x2e\x30\x07\x17\x2e\x41\x29\x44\xb2\xfd\xc0\xd0\xea\x68\xce\x24\xd2\x9e\x50\xae\x11\x6e\xb0\x13\x94\xb5\xc8\xc3\x27\x57\x44\x31\x1b\x1e\xde\x18\x46\x12\xf8\xec\x7e\xd2\xa5\x74\x6e\x96\x04\x52\xd5\xaf\x37\xb2\x80\xf7\xd8\x43\xfd\x9a\x00\xbf\xa1\xe3\x5f\x07\x87\xe4\xaa\xb2\x72\xa0\xbc\x6d\x04\xf2\xea\xa5\x10\x30\x4e\x75\x1a\x1a\x81\x09\xf0\x7b\x46\x80\x09\xed\xd9\xd4\x0b\x43\xe1\x67\xc9\x86\x5f\x81\xbc\x62\x4a\x35\x78\x69\x81\x1a\x49\x1a\x99\xba\xb3\x1d\x30\xde\xd0\xe5\x6d\x06\x0a\x62\x6a\x08\x44\xf1\x0f\x2e\xa4\xcd\xef\xc6\x58\x7a\x90\x94\x84\x27\xb0\xb3\x7f\xfa\xb1\xb6\x98\xdd\x9b\x06\x01\x4a\x11\x30\x07\x35\x15\x8b\x7c\x6d\x6a\x67\x91\x18\x95\x30\x7d\xe0\xa1\x69\x81\x8c\x67\x26\x87\x88\xcb\x92\x19\x64\xd2\x04\x55\x6a\x20\x96\xd0\x8c\x84\x3d\xa1\xbd\x8d\xb6\x18\x92\x6d\xd4\x99\xe7\xd5\x48\xe8\xd9\x68\x4f\xa9\x63\x8c\xa2\x10\xb5\x8e\xc3\x1a\x66\x96\xe4\x7c\x40\xc4\x48\xf5\x42\x9a\x5c\xe8\x74\x02\x6e\x0e\x12\x7d\xfa\x57\x8f\x90\x38\x3f\x7c\xe6\x4d\xd5\xd1\x2b\x1a\xc9\x42\x1d\xcb\x64\x15\x1b\xa8\x36\x47\x91\xe9\x37\x34\xb9\x80\x53\x1b\x27\x3e\x2e\x0d\xaa\xbd\xc8\x49\xb4\x60\x0c\xe1\xf3\xa5\xf7\x00\x13\x11\x43\x4b\x57\xfb\x26\x32\x25\xf4\xe7\x90\x5e\x13\xa1\x1c\xf8\x40\xce\xf4\x26\xb4\x62\x44\x27\x98\x24\xe1\xdf\x6f\x64\xa6\xdd\x85\x49\x50\x28\x8b\x50\x07\x8a\xf1\x96\xfe\x51\xf4\xa6\xbc\x2f\x91\x43\xf1\xdb\x10\x42\x23\x8c\x53\x12\x7e\xc7\x58\x13\x13\x4a\x27\x4e\xf6\x64\xe5\xa4\x37\x46\x19\x52\x6c\xb8\x0b\xa5\xdb\x44\x4e\x85\xf1\xc2\xb6\x79\x32\xc2\xd0\x12\xa7\x40\xb1\x63\xcc\xf8\xe2\xad\x15\x41\x2f\x43\x35\x16\xed\x04\x2a\x3f\xbc\xb7\xbb\xd4\xda\x91\x70\x02\x93\xda\x05\x49\x1b\xc4\x78\xaa\xb3\x96\x07\xa9\x6f\xd4\xe3\x35\x84\xf0\xef\x3b\x3f\xbb\x8f\x2e\x2f\xf5\x60\xb9\xca\x96\x60\x3e\xfb\xae\x04\x53\x55\x96\x90\x3a\x5c\x15\x61\x36\x01\xbc\x4e\xab\x24\x78\x23\xe7\xba\x02\xe1\x37\xeb\x42\x8f\xd5\xa9\x22\x89\xd9\x49\xc9\xf3\x4c\xd3\x33\xf8\x94\xad\x4a\xdf\xe0\x14\xf3\x14\x52\xa2\x5e\xa6\x85\x39\xa8\x09\x80\x50\xe9\xe2\x13\x3a\xbd\xf4\x14\x39\xdd\xf9\xa4\x6c\x88\xf4\xc5\x5f\x7c\x42\x5f\x2a\x4e\x05\x24\x12\x7f\xb0\xde\xda\x5e\xc1\x84\xfc\x39\x32\xa0\x2a\x94\x90\x79\x12\x70\x8f\xf2\x16\xf7\x40\xb6\x4b\x6d\xea\xd4\x70\x4e\xc9\x2e\x87\x12\x7b\xeb\x17\x0e\x42\xad\x0d\xc0\x32\xf6\x93\x49\xb4\xaa\xe6\x03\x63\x6e\xad\x8f\x34\xaf\xbf\xf2\xd1\xe9\x94\xd0\x73\x3a\x5f\xec\x71\xe4\xfd\x02\xfd\xb4\x37\x0d\x03\xaf\xe9\x74\x93\xd1\x8e\x5e\xa3\xd2\xef\x01\x4e\x18\x5f\xf7\x36\x75\x00\x5d\xe8\x2b\x27\x90\x8c\x7e\xd5\x21\x4f\x09\x5f\x39\x4b\x4a\xb4\xac\xf5\xf2\x7e\xe8\x13\xbe\xf8\xbe\x02\x5c\xec\x20\xfc\x75\x69\x85\x0f\x26\x3b\x7e\x42\x65\x98\xfb\x99\x22\xd9\x62\xed\x50\x54\x5b\x6c\x3a\xe1\xc4\x8e\xe1\x32\x96\xed\x12\x07\xca\x39\x8a\x62\x35\x0c\x93\x68\xac\x8c\x9f\xfb\xa4\x37\x5b\x43\x05\x86\x5c\x1f\xeb\x45\x05\x17\x47\x0b\xd8\xd6\x14\x03\xa7\x46\x1a\x75\x38\xc7\x2b\xb1\x15\xa2\x43\x1d\x6b\x47\x62\x6f\x93\x6a\xb4\x17\xae\x29\x67\x6e\xc2\xce\x14\x43\xac\xb0\x41\x79\xfb\x3d\x01\x8c\x9f\x49\xa4\xcb\x08\xc3\xcf\x93\x41\xca\x55\x54\xc3\xd7\xc9\x28\x1d\x94\x63\x14\x3f\x5e\x0a\xa1\xb4\x98\x0e\x65\xa2\x02\x3e\x8d\x92\xdf\xe2\x26\xe7\xc2\x34\xd7\xee\xf4\x9a\x01\x4b\xe5\x58\xb4\x70\x0b\xe2\xc8\x67\x21\xc0\x48\xed\xaa\x1b\x14\xe6\x9c\x2f\x46\x9f\xe6\x52\xbe\x13\xdd\x2c\xfb\x73\x75\xe2\xbf\xdf\xd0\x42\x7c\x68\xba\x0d\x98\xd6\xdb\x07\x45\x46\x3a\xcc\xca\x92\xbf\x64\x87\x87\x23\xe7\x6c\xeb\x0e\xa5\x47\x3b\xbd\x62\x64\x14\x66\xd5\x53\x86\x80\x8f\xae\xf6\x66\xd5\xfb\x91\xea\x6d\x73\xb1\x80\xde\xbf\xea\x2d\x1e\x63\xf0\xdb\xdc\xab\x4e\x75\x92\x7b\x35\x2a\x26\xf6\x5a\xb6\xdd\x81\x62\x36\x4d\x4f\x85\xba\x7d\xe4\xbb\xe4\x4b\x3c\x92\xd7\xf8\x9d\x2e\xf8\xfc\x1e\xa7\x9c\xc9\xff\xdd\x26\x17\x1f\x5a\xb3\xe4\x11\xe7\x5a\x6b\xeb\x91\x37\x7b\xfd\x0d\x46\x1b\xd3\x0b\xad\xea\xe1\x75\x71\xb9\xed\x2f\xcb\xfb\x05\xa2\xbd\x8f\x9d\xde\x77\x64\x0e\x4c\x08\xcd\xf1\xbc\x6d\x0e\x86\xf7\x3c\x3c\x11\x13\x29\x28\xa3\x7c\x4b\x80\x9a\x52\xd4\x38\xbf\xb9\x4e\x5b\xcf\x5c\x4e\xfb\xb7\x38\xa6\xb4\xf3\xf0\xcd\x6e\x13\xd7\x21\xd6\x65\x87\x49\x85\xb8\x0c\x3f\xdd\x5d\x2d\x55\xf2\x3a\xb8\x85\x5f\x9c\xf5\xe7\x5f\xb5\xe7\x5f\x84\x4e\x69\xb5\x8c\x1e\xc3\x74\xaf\x53\x76\xaa\xa0\x43\xd8\xe2\x24\x84\xf5\x90\x0f\xc4\xa1\xda\xa3\xd3\x49\xb5\x40\x4b\x00\x59\x28\x5d\xe5\xfc\x41\xac\x4f\x8c\x0c\xc3\x8e\x95\x8c\x7e\xe1\x5a\xc4\x96\x55\x1d\x34\x56\x66\xd9\xa6\xcd\x81\xe1\xb8\xd6\x23\x88\x3e\x0e\xfb\xc2\x1b\xe1\x41\x55\xa9\xe4\x74\x57\x32\x30\xa4\x5c\x8a\x21\xf8\x71\xaa\x48\x2f\x25\x87\x32\xfc\xa5\x0b\x80\xd3\x6a\x29\x8d\x38\x20\x21\xbe\x7d\xa3\xc6\x09\x91\xd0\x9f\x78\x6b\x37\xa1\x75\x35\x24\xa9\x23\x7d\xd0\xa0\x3a\xd6\xc1\x3b\xf8\x21\xf8\xf6\xe8\x75\x7f\x2e\xa1\x0f\x85\xb2\x3e\x3b\x53\x0a\x21\xcc\xfa\x1c\xbe\x58\xa7\xa0\x8d\x6a\x44\x11\x60\x54\x4a\xc4\x82\x59\x29\x9f\x03\xed\xcc\xa8\xd0\x7c\x7c\xd0\x9e\xff\xe5\xb4\x0a\x14\x0b\x20\x3e\x29\xfd\x18\xb3\x39\xd0\x4e\x35\xc5\x69\x93\xc3\x28\x5a\xc6\xc4\xdb\x2a\x3a\xdd\xff\x62\x67\x81\x84\x33\xcc\xce\x7e\xeb\xd9\x4a\x7c\xbf\x75\x3b\x4e\x05\x1f\x3d\x2f\xa1\x98\x45\x91\x5b\x84\x3f\x0a\x22\xb4\x2e\xe0\x27\x2b\x11\x75\x0c\x1d\xc5\x9d\xb9\xd5\xa4\x76\xc2\x8e\xc3\xbc\x87\xd0\x5d\xb9\x9a\xad\x54\xe1\xc4\x4a\x9f\x5f\x5e\xc0\x6c\x89\x74\xd9\xfb\xda\x29\x6b\x16\xab\x9d\xdc\x79\xbc\xb5\x50\x23\xd9\x4c\xb6\xcf\x4e\x18\xc3\x27\xf8\xfd\x37\x0c\x22\x56\xbf\xc3\x28\xe2\xed\x85\x0e\x14\x3d\xcc\x82\x26\xf5\xee\x6a\xf6\xa2\x5d\xc1\xeb\x31\x7d\x69\x72\x57\x27\x37\xe8\x8d\xdd\xf6\xef\xcf\x78\x37\x6b\xde\xde\x44\x6b\x65\x23\xde\x22\x70\x9e\x7e\xbb\x92\xa1\xd8\x83\xe4\x21\x7d\xf6\x89\xe5\x0d\x5f\x15\xd1\x38\x56\xdf\x01\xcd\xa3\x9c\x16\xc1\x5b\x4e\x2d\x8a\x30\x01\x79\x20\x8d\xcf\x6c\x91\xe5\xf2\x78\x53\x98\x40\x86\x39\x61\x76\x20\x4b\x4f\x05\x8d\xc3\xd9\xa5\xfe\xf9\x70\x11\x07\x8c\x20\x96\x34\x0e\xa8\x44\xf4\xb5\xf5\x7a\xa9\xf9\xa8\xce\x89\xd8\xb1\x5e\x9c\xc6\x32\xdd\x53\xf0\x08\x42\x62\x16\x03\x82\x96\x92\x48\x26\x01\xbc\x94\xc1\x53\x88\xf0\x77\xaf\x78\x43\x8b\x9d\xe0\xd5\x68\x18\xdc\x18\x88\x51\x2b\x82\x7d\x26\x58\xc1\x48\x84\x5a\x89\x7e\xc8\x51\xf1\x92\xd6\x1c\x36\xa8\x5d\x08\x69\x8c\x21\x5d\xb2\x2b\xfe\xc8\xb4\x78\xfe\xd4\xb3\x46\x0c\x15\x79\x57\x94\xbf\x2a\x31\x8c\xae\xae\xab\x20\x3c\x29\x8a\xe6\x45\xe1\xcf\x2c\xe4\x48\x10\x0e\x0e\x99\x3f\x4b\x2a\x28\x35\x00\x99\x32\x97\xc9\x13\xb7\xf2\xac\x2a\xea\x9d\x3d\x03\x40\x3a\x66\x65\x34\xfc\xb0\x2d\x3f\x11\x4d\x1e\x43\xf5\xa4\x6d\x30\xbd\x70\x60\x92\xbc\xd1\x94\x7c\x8d\x94\x2b\x85\x82\x36\x64\x3e\x24\xff\x72\xdc\x0e\x2b\xc9\xa0\x83\xa8\x42\xca\x32\x9a\xe2\xbc\xa2\xa1\x0a\x05\xa7\x57\x3d\xf5\x2f\x9a\x35\xa7\x5d\x11\x49\x9f\x21\x63\x6f\xe2\xee\x8e\x78\x83\x87\xe8\x2d\x7c\x7c\x00\x74\x01\x4d\xa9\x27\x4b\xfe\xc4\x10\x79\x6d\xee\xe8\x27\x04\xb5\xf1\x30\xfa\xf0\x52\xf0\xf8\x78\xf2\xab\x4b\xc1\x1c\x03\xb7\x0e\xcd\xd5\xac\xa5\xc0\xf2\x6e\x3a\x58\x65\xdd\x32\x3f\xbd\x1d\x5e\x71\x84\xa4\x45\x0f\xa0\xd8\x75\x1a\xb6\x90\x6a\xfc\xa0\xb3\x13\x63\xaf\x49\x78\x8a\x56\xe2\x85\x31\x6e\x58\x6a\xeb\x54\xb8\x7e\xbe\xbf\xe4\x94\x2b\x9c\xe6\x35\xd6\x46\xe7\x5c\xb1\xc9\x18\x54\xee\xc9\x04\x34\x24\xba\xea\x74\x7f\x7a\xab\xc6\xde\xd2\xfb\xff\xfb\x60\xa0\x39\x0a\xf5\x6c\xa0\x39\x88\xdf\xfe\x66\x20\xef\xbb\xce\x2f\x07\x1a\x58\x31\x63\xe0\x04\xfd\xf1\x3b\xbc\xf8\x88\x5a\x17\x5d\xd2\x09\x51\x25\xc3\x56\xa5\xa8\x12\x41\x9a\x2e\xe9\x20\xa0\xc3\xed\xe2\xa8\x07\xb1\x22\xde\x52\x5f\x95\x81\x5d\xde\xb0\x64\x4a\x48\x94\x86\xe8\x4d\xb8\x4f\xd3\x08\xd6\xbc\x35\x01\xdd\x2a\xd8\x58\xca\x26\xfe\xdc\x21\xb3\x7b\xd4\x65\xa7\x13\xb6\xba\x5d\x94\xc0\xd6\x56\x6f\xef\xd1\x78\xb8\x00\xd3\xd6\xba\x92\xb7\xd6\xf8\x1c\x4a\x96\x2a\xc3\x47\xf2\x21\x44\x24\x34\x7c\xd3\x40\xa7\x50\xc6\xb0\x94\x5d\xc1\xb8\x85\x45\xf4\x49\x8a\xe2\x4f\x29\x73\x01\x27\x9e\xe6\x26\x25\xb8\x97\x0b\xf8\x19\x33\x49\x49\xb2\x43\xef\xe0\x71\x41\x52\x20\x8b\xa2\xd7\xc6\x98\x3b\x36\x4c\xa5\x1d\xc7\x13\x09\xec\xe5\x8f\x7d\x8e\x8b\x39\xe2\xea\xfe\xe2\x81\x7e\x58\x89\x0a\xf0\xe8\x4b\x41\xf3\xc9\x8e\x37\xfd\xb3\x2a\x20\x93\x45\x0e\x9f\xd1\x45\xf3\x84\xf5\xe9\x57\xa1\x02\xfd\xb8\x17\x17\xab\x07\xbd\x12\x20\xb4\x0f\x4c\xe9\xba\xfc\xdc\x0a\x66\xfc\xe1\x8b\xb6\x98\xed\x7a\x0a\x94\x45\x9d\xc5\x80\x63\xa5\xd0\xeb\xac\xac\x82\x8d\xbd\x2d\x7e\x8b\x15\x1f\xa4\x7e\x34\x24\xc9\x06\xe8\xe0\xb7\x9f\x44\x6f\x36\xeb\x07\x4a\x85\x87\x53\x1e\x24\xb9\xc4\x46\xd9\x62\x39\x09\x51\x08\x06\xe6\x89\x2f\x7f\x1b\xb3\xcc\x54\x2a\xe5\x7c\x77\x15\xfd\xa6\x14\x9a\x43\x41\x4a\xde\xb3\xfb\x94\x95\x3e\x0a\xe2\x56\xf9\x0e\x85\xb7\x7e\xd3\xdf\x9d\xee\x04\x65\xbe\x17\x1e\x02\xe1\x64\x4b\x32\x46\xce\xb5\xd4\x5a\xbf\xe6\xd5\x16\x74\x1b\xe4\x42\x50\x60\x8a\x17\x24\x41\xf6\x23\x03\x49\xbb\x99\xd4\x97\xae\xf5\xc7\x9c\x75\xe1\x8f\xaa\xc0\xed\xaf\x94\x38\x89\xfa\x85\x2f\xbf\xf9\xda\x4a\xda\x56\x08\x42\xfb\x84\x20\x92\x36\x0b\x42\xd0\x86\x31\x20\xc2\xbb\x46\xc2\x6f\x24\xba\xdc\x95\x5d\xd8\x5c\x38\x42\x04\x62\x36\xb1\x44\xb0\x24\xae\x0d\x42\x33\xbd\x51\x32\x09\xfa\x10\xb7\x42\x01\x48\x14\x07\xbe\x30\xe3\xd5\xd0\x1c\x88\xf7\x67\xf6\x36\xb9\xb4\xb1\x3f\x0e\x07\x88\x33\xc4\xab\x5c\xfa\xf3\xde\x34\x08\x29\xff\x01\x65\x94\x91\xf6\x5d\xce\x20\x65\x9e\xcd\x74\x85\x72\x29\xe3\xd9\xb4\xbe\xf9\xe2\x82\xc5\x6f\x6b\xe9\xd9\x5e\xcc\x97\x10\x42\x5e\xdc\x4d\x79\x27\x47\xcd\x5b\x6b\x04\xa8\x92\xcf\xcb\x19\x42\x4f\x99\x5d\xbe\x94\xcf\xca\x6e\xf9\xfa\x8f\x5f\x5a\xe1\xfb\x34\xa1\x5e\x29\x9d\x8d\x92\xc6\x52\x72\xbd\x91\x5c\x07\xb2\x05\x28\x25\x8e\x4a\x67\x27\x54\x26\x5f\x82\xa1\x52\x1e\x0d\x76\x14\xe8\x36\x03\x39\x8b\x17\x55\xb9\x3c\x05\xd3\xa6\xe0\x61\xfa\x27\x54\xbe\x2d\x93\x30\xc5\x05\x3d\xae\x01\x64\xd0\xc2\x98\xd1\x78\xf8\xb9\x49\xd0\x02\xe1\xc9\x18\x47\x4c\x72\x32\x6b\x88\xb0\x90\x34\xee\x50\xd4\x0f\x0c\x9d\x61\xc2\xa5\x69\x26\x93\xec\x78\x65\x40\x96\x2a\xd5\x23\x34\x31\x58\xe5\x7a\x13\x14\x50\x90\x0c\xd7\x4c\x0a\x59\x37\xea\x87\x12\xc1\x29\x9c\x24\xf0\x68\xf6\xf6\x28\xeb\x93\xf8\x7e\x74\xb6\x7e\x36\x8c\x69\xa8\x4c\xa9\x24\xd4\x85\xc3\x67\x64\xaf\x18\xa5\x97\x6c\xed\x01\x92\xd8\x52\xa3\x90\xee\x63\x51\x21\xdf\xc7\x92\x22\x45\xff\xb9\x4d\xe1\x02\x52\xe6\xf4\xf4\x80\x12\x6b\x63\x42\x3e\x8a\xeb\x68\x1e\x9c\xf8\x1b\x2b\x74\x6b\x4c\xd5\xce\xbb\xb4\x47\xd1\xf0\x45\x06\xa4\x5e\x49\xd2\xd3\x7a\x8d\xd7\x24\xfd\xf9\x35\xef\x64\x5e\x43\x97\xab\xea\xc1\x61\x32\xad\x29\x49\xce\x28\xa5\x9e\xc4\xf0\x16\xee\x89\xc4\x8a\xb2\xe3\x54\xf8\x69\x01\xd1\x67\x1e\xec\x73\x32\xf5\x00\x95\xe8\x2e\xca\xa6\x39\x17\xb9\x86\x6e\x2f\x2d\xf8\xa0\xb2\x90\x89\x31\x5e\x07\x46\x1d\xad\xc0\x03\xef\x54\xc1\xcd\x96\xf3\x25\xb9\x4c\xd7\xba\x76\x17\x30\xad\x48\xa3\x1e\x2c\xa6\x41\x93\x5d\x44\x33\xf6\xa6\x27\x41\x81\xc2\xb8\xf0\x99\x11\xb5\x39\x15\x0e\xbb\xf5\xca\x2b\x0e\x16\x59\x79\x80\x30\x2e\xee\xa1\x2c\x15\xee\x0e\xca\x13\x38\x76\x50\xc8\x1e\x0f\x55\x39\xb2\x71\xa0\x5c\xd6\xe4\xbe\x3f\xb5\x16\x59\x13\x28\x74\xdd\x02\x2f\xcb\x85\x0b\x5f\x58\xd1\xe5\x0f\x8a\xcd\xd7\x61\xea\xc3\x40\x73\xad\x73\x98\xc1\xb3\xb7\x6c\x03\x21\x50\x97\x61\xc6\xcc\x9a\x8c\x68\x35\x2a\x7e\x1c\x22\x5a\x6e\xb4\xca\x56\x63\xeb\x9c\xfb\x63\x21\x5f\xb1\x3f\x3c\x47\x9e\xf5\x73\x95\x7c\xae\xfb\x9c\xd9\xb0\xa2\xac\xa1\xc3\x14\xc1\xa7\x56\x6d\x43\x2f\x42\xa6\x44\xa5\x25\x65\x96\xa3\xee\xe2\xfb\x3c\x20\xc3\xb8\xcb\xb9\x06\x5f\xfc\x0d\x46\x80\x77\x3e\x18\x50\xfc\x44\xc0\xcf\x2b\xe8\xef\xe5\xcb\x1f\x54\xc7\x9f\x18\x6b\xdf\x30\x47\xc4\x59\x47\x55\x16\x52\x8a\x95\xe7\x27\x7d\xc4\xfd\x46\x17\x57\x34\xbc\x7a\xf3\x96\xac\x55\xea\x79\x5c\x4e\xc5\x79\x88\xee\x0f\xfd\x98\x2d\x83\xd3\x34\x45\x8f\xe7\xf9\x99\xaf\x8b\xc6\x66\x49\x57\x8b\xf2\x7f\xb7\x39\xdd\x1c\x9c\xfc\x21\xa4\x0d\x7c\xc1\x06\xd3\x1b\x4f\xb7\x6f\x9d\x78\x07\x8f\x38\xc5\x5c\x7c\x4c\x25\x90\xc5\x33\xc2\x28\x99\xf5\xe1\xf5\x09\x5a\x88\x80\x22\xf1\x75\x41\xbc\x30\x91\x2e\x90\x07\x88\x55\x5b\xde\x7f\x1c\x11\x2a\x8f\xc8\x73\x16\x7d\x41\x93\x6b\x57\x02\x59\xd1\xa8\xdd\x1e\xc5\x15\x66\x49\xb1\x53\x6d\x75\x99\x58\xb6\x46\xe0\xbd\x8c\x6c\x8f\x1f\xab\x76\x15\xda\xb5\x8b\xbd\x48\x3a\x30\x84\x65\x9e\x27\x1c\x20\x8a\xaf\xf3\x91\x51\x08\x28\x9f\x5c\xab\x6c\xbd\x1a\x06\xb9\x3c\xd8\x07\x6f\x17\x08\x8c\xe5\x09\xe8\xbf\x2c\x50\x78\x4c\x02\xa2\x95\x04\x42\x6e\x04\xa7\x02\xa3\x56\x11\x8e\x8e\x23\x6b\x67\x7d\xfe\xe7\x2f\xfe\x6a\xe9\x37\x97\x43\xe0\xcc\x52\xf8\x76\xf4\xe0\x70\x84\x38\x08\x0c\x51\x17\x1e\x57\x22\x8d\x11\x30\xa1\x74\xaa\x29\xf1\x6f\x2a\x66\x42\xc4\x50\xe6\x68\x7a\x40\x23\x33\x65\xb8\x53\x27\xca\xdb\x5e\x9a\x62\x4b\x6c\xa4\x11\x39\x18\x39\xd8\x8b\x30\x24\x01\x19\xbc\x02\x50\xc0\x57\x23\x50\xfa\x75\x23\x06\xe3\x77\x8d\xe2\x7d\x15\xa5\x9c\xe9\x24\x88\xf7\xcd\xa7\x8f\x1a\x7b\xbf\x18\x84\x87\xe3\x75\x64\x58\x17\xf8\x67\x74\x60\x0a\xaa\x54\x76\x2e\xe5\xf1\x82\x84\x82\xe3\x34\x02\xf2\xca\x04\x81\x2a\x10\x4d\xca\x14\x44\x74\xae\xb0\xa7\xf3\x22\x4a\x7e\x42\x7f\x5b\x91\x55\x94\x93\x89\x67\x87\x81\x05\xad\x2c\x43\x59\x5c\x49\x43\xf7\x66\x35\x4a\xb4\xf9\x35\x82\x14\x35\x8b\x42\xbe\x87\x5d\x39\x7a\x1a\xf8\x0c\xcf\xec\x51\x04\xbc\xaf\x52\x29\xb9\x7c\x09\x5b\x78\x03\x3d\x54\x14\x9d\x41\xd0\x9a\x4c\x23\xb1\xb1\x52\x9e\x2c\xf3\x0a\x2b\xfc\x5e\x76\x04\x25\x0a\x46\x98\x81\x00\x45\x76\x91\x3a\x27\xbd\xf2\x0e\xb8\x3a\x2b\xfa\x5d\xf0\x08\x11\x45\x31\x41\x2d\x05\x89\x07\x91\x4e\xb1\x9c\x18\xa5\x08\x0f\xc2\x2a\x75\x70\x4e\x57\xb6\x0c\x4c\xe0\x13\xf8\xc7\xe2\xb8\x85\xa0\x44\x0c\x1e\x75\x43\x05\x50\x45\x2e\xec\xb9\x5c\xb5\xa0\x8b\xb7\xc7\xfc\xa9\x1b\x46\x4d\xc9\xe6\x8e\xf6\x68\xc3\x44\x1e\x00\x98\x99\xe0\x3b\x02\xd9\x3f\xd9\xd9\xaa\xf6\xe2\x85\x2d\xdc\x41\x43\x0e\x8b\xeb\x24\x9d\x81\x8e\xdd\x3a\xb9\xd7\xdc\x18\x0f\x00\xe4\xae\x15\x7e\xd4\x99\x10\xd5\x24\x00\x9d\x15\x62\x50\xeb\xe3\xa7\xf5\x4d\x46\xed\xd0\x08\x75\xd8\x93\x0a\x1a\xe2\x9f\xb0\x57\x80\x22\x25\x45\x42\x29\x70\x16\x98\xb8\x48\xa4\x25\xb3\x28\xfd\x7e\x4a\x85\x98\xa9\xcf\xa1\x1c\x8e\xea\xa3\x53\x4a\x29\xb2\x19\xc0\x91\x86\xa0\x0d\x70\xc6\x20\x12\x44\xfc\xef\x90\xd3\x39\x18\x60\x96\xf0\x06\xdb\x81\xe4\xfd\x0a\x5f\xb5\x3b\xef\x72\x6e\xf0\xb2\x5d\xd4\x19\xd5\x80\xbf\xe1\x51\x50\x39\xd3\x74\x22\xde\xf7\x83\x44\xbc\xf4\xba\x5f\xa7\xa7\x05\xd4\x4b\x33\x12\x3a\xc7\x01\x7f\x07\x23\x66\xc7\xef\xb9\xe5\xec\x7b\xe7\xc3\x49\xe4\x55\x56\x64\x49\xba\x5c\xdb\xb5\xc2\x09\x91\xc3\x3d\xf0\x04\x39\xe1\xfd\x0f\x7a\x8a\x6c\x64\x0b\xf5\xc4\xe6\x37\xee\x0c\x33\x28\x4b\x7f\x3f\xe8\x36\x22\xe9\x9a\x75\x53\x46\x6a\xd4\x50\x83\x92\x97\x39\xa1\xbd\x50\x16\xfe\x1f\x38\x96\xea\xf7\x0e\x2a\x21\x19\xec\x0f\x92\xb7\xf5\x1f\x19\x93\x4e\x37\xc5\x5b\x61\x77\x24\xbc\xa6\x7a\x41\x75\x7a\xbe\xe4\xed\x41\x49\x1b\x2a\x99\xde\x60\x35\x39\xb8\xea\xad\x6b\x7a\xfa\x22\x4a\xba\xef\x0f\x74\x9e\x66\xc9\x7e\xf4\x01\xdf\x2a\xa6\x84\x31\x2a\xcd\x0c\xa7\xda\xa6\x6d\x5e\x71\x9c\x02\x6c\xf2\x4c\xaf\x93\xc2\x3b\xb5\x63\xa0\x45\xd2\x2b\x6d\x78\x8f\x80\x2f\xd9\xe2\x09\xba\x9c\xe2\x77\xf6\xcf\x9e\x79\xdf\x4d\xbd\x6f\x35\xd7\x6f\x9c\x77\xe1\xef\x7e\xf8\x1b\x8d\x2e\x37\x96\xe9\x67\x1f\xfe\xa4\x57\x05\xe9\x67\x0e\x7f\x3e\x7c\x4c\x7f\x5f\xc6\xbf\x67\x37\xb8\x16\x90\xd3\xf7\x2d\x7f\xb1\x46\xbf\x06\xb0\x64\xff\x05\xfe\xed\xda\x40\x92\x73\x94\xa2\x5e\x7a\xe8\xcf\x17\x81\xc6\xd0\x97\xa0\x9f\x3e\xa7\x5a\xe6\x4f\xba\xaf\x5c\x66\x80\xbf\x70\x77\x97\x6d\xfb\x22\xff\xe6\x2e\xa1\x47\xd0\xf1\xe9\x89\x0b\xee\x75\xc0\xce\x48\x13\xdc\x73\x39\x73\x39\xad\x7a\x87\xae\xf9\x83\xea\x9c\x7b\x26\x6c\xe5\xca\x4e\x09\x33\x51\x7e\x1f\x3c\xc0\xa8\xde\x94\xf2\xc7\x6f\xfb\xf7\x9e\x4b\xfa\xeb\xda\xae\xdc\xa5\xa9\xdd\x86\xed\xea\x8d\xa2\xd3\xb4\x71\xf8\x80\xee\x2b\x52\x46\xd8\x7c\xb1\x54\x55\x69\x5d\xae\x6c\xa0\xc1\xf3\xea\x11\xc3\xa0\xab\x84\xdf\x9b\x51\x69\xe1\xe5\x39\x2d\x58\xa9\x74\x37\x32\x31\xce\x1a\x74\x74\xb3\xb9\xbe\x03\xfa\xd5\xbf\xfe\x2b\x25\xde\x06\xb1\xff\xdf\xfe\xcd\xfa\xf2\x4f\xa0\x53\x81\x3c\xdb\x3a\x19\xc5\x7d\x85\x2f\xa0\xac\xb3\xe5\xc9\x80\xef\xcf\xfc\xf4\x4f\x91\x2a\x48\xb4\x28\x94\x97\x9c\x3b\x72\x87\x45\xdf\x16\xff\x3f\x01\x00\x00\xff\xff\x3a\xf6\x6a\x1c\x18\xab\x00\x00") func confLocaleLocale_zhCnIniBytes() ([]byte, error) { return bindataRead( @@ -4579,12 +4579,12 @@ func confLocaleLocale_zhCnIni() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "conf/locale/locale_zh-CN.ini", size: 43658, mode: os.FileMode(493), modTime: time.Unix(1446597116, 0)} + info := bindataFileInfo{name: "conf/locale/locale_zh-CN.ini", size: 43800, mode: os.FileMode(493), modTime: time.Unix(1446611908, 0)} a := &asset{bytes: bytes, info: info} return a, nil } -var _confLocaleLocale_zhHkIni = []byte("\x1f\x8b\x08\x00\x00\x09\x6e\x88\x00\xff\xbc\x7d\xfb\x73\x13\x57\xba\xe0\xef\x54\xf1\x3f\xf4\x70\x8b\xca\xbd\x55\xc1\xa9\x24\xfb\xaa\xa9\x28\x77\x13\x32\x33\xc9\x6e\x92\x61\x63\xb2\x53\x5b\xa9\x94\x22\x4b\x6d\xbb\x2f\x92\x5a\xa3\x6e\xe1\x38\xb7\x6e\x95\x0d\x31\x96\x5f\xd8\x80\x6d\x30\x18\x0c\x84\x87\x0d\x18\x6c\x12\xc0\xf8\xc5\xff\xb2\xa3\x6e\x49\x3f\xe5\x5f\xd8\xef\x75\x4e\x9f\x6e\xb5\x0c\x99\xbb\xbb\x53\x53\xc4\xea\xf3\x9d\xf7\x77\xbe\xf3\xbd\x4f\xae\x52\xc9\x16\x6c\x2f\x9f\x09\x56\xb6\xc3\xc5\x5d\xeb\x4f\xae\xd5\x7a\x70\xa3\xb5\x3a\xd2\xbc\xfa\x63\x6b\xfc\x41\x30\xb9\x66\xfd\xc9\xf1\xad\x70\x79\x26\x98\x5a\x3a\x7c\xe8\xf0\xa1\x41\xb7\x64\x67\xda\xf7\x16\xdb\x37\x47\x0f\x1f\x2a\xe4\xbc\xc1\x3e\x37\x57\x2d\x64\xc2\xf3\xf7\x83\xfa\xf3\xf6\xf5\xdb\xcd\x89\xfa\xe1\x43\xf6\xf7\x95\xa2\x5b\xb5\xe1\xeb\xed\xe6\x2f\xb7\xa1\x92\x5d\xac\x64\x82\x97\x0f\xa1\xb9\xc3\x87\x3c\x67\xa0\x9c\x75\xca\x99\xe6\xd2\x4e\x7b\xfa\x47\xf9\xed\xd6\xfc\x4c\x7b\x64\x24\x18\xdf\x96\x0f\xb5\x4a\xa6\xb5\xba\x13\x9c\x9b\x3c\x7c\xa8\x6a\x0f\x38\x9e\x6f\x57\xf5\x87\x21\xbb\xcf\x73\x7c\x3b\x13\x3c\xbe\x12\x2e\xbe\x6c\x3e\x7f\xda\x7c\x08\x63\x3b\x6d\x57\x3d\xc7\x85\x76\x17\x9e\x07\x13\x33\x30\x8e\x70\xf9\xd1\xe1\x43\x95\xdc\x00\x8c\xf7\xe6\x28\x0c\xed\xf0\x21\xdf\x2e\x55\x8a\x39\xa8\x19\xae\xde\xa2\x81\x16\x73\xe5\x81\x1a\x42\xf0\xa4\xdb\xa3\x5b\xed\x9b\x63\x87\x0f\xe5\xab\x36\x40\x65\xcb\xf6\x50\xe6\x38\xfd\xd9\xd3\xd3\x73\xf8\x50\xcd\xb3\xab\xd9\x4a\xd5\xed\x77\x8a\x76\x36\x57\x2e\x64\x4b\x38\xc7\xe6\xfc\x6a\x58\x7f\xde\x78\x75\x2b\x1c\x7d\x12\xcc\x4e\x86\xd7\x7e\x09\xee\x5c\xe5\x49\xd8\x05\x98\x67\x36\xe7\x65\x82\x17\x4f\x79\xb6\x0c\x8c\xeb\x88\x8d\x95\x73\x25\x55\x3f\x98\x9b\x81\x65\x2b\xe5\x9c\x62\xa6\x7d\xf6\x59\xf3\xf1\x26\x8e\xdc\xf3\x86\x5c\x58\xdb\xe0\xc9\xb9\xe6\xed\x5d\x5c\x87\xac\x3f\x5c\x81\x1a\xb7\xb7\x5b\x0f\x66\xd4\xd7\x7c\xae\xe2\xe7\x07\x73\x99\xf6\xda\xe5\xd6\xfa\x04\x7d\x42\xd0\x8a\x0b\x4b\xe4\x56\x87\x33\xc1\xc8\x44\xb0\xfd\xf0\xf0\x21\xb7\x3a\x90\x2b\x3b\x3f\xe4\x7c\x5a\xa3\x67\x3f\x36\x5f\xce\x1f\x3e\x54\x72\xaa\x55\xb7\x9a\x69\xcf\xde\x0a\xce\xce\x1e\x3e\x04\x13\xce\x62\xd5\x4c\x30\xf1\x2c\xd8\x01\x84\xd8\x00\x34\x50\x0d\x60\x61\xc9\x19\xa8\xe2\xfa\xb5\x47\x5f\x34\xef\xef\x04\x77\x16\xdb\x67\x57\xcd\xf2\x7e\xb7\x7a\x2a\xc3\xd5\xc2\x5f\xf6\x9b\xf3\x2b\x66\x21\x8c\x20\xd6\xb0\x1e\x44\xae\x0c\x5b\x40\xc5\xcd\xc7\xb7\x9a\x73\xe7\xc2\xfa\x05\xa3\x38\x57\x28\xc1\x2a\x56\x72\x65\xbb\x28\xe5\x0a\xcd\x72\xf9\xbc\x5b\x2b\xfb\x59\xcf\xf6\x7d\xa7\x3c\x00\xeb\xbc\xf5\x33\xac\x65\x6b\x75\xbd\xb9\xf7\x18\xb6\x20\xfd\xf3\xb0\x5b\xd3\xdb\x08\xab\x33\xd5\xd8\xde\xe6\xdd\x93\x22\x5d\x8d\x77\x46\x55\xa3\x39\x78\xd9\x7e\xdb\x06\x6c\x5f\x1e\x81\x29\x84\xbf\xec\x04\x53\x0b\xb0\x51\xb5\x62\x11\x96\xed\xaf\x35\xdb\xf3\xa1\xb3\xb9\x7a\x63\xef\x59\xeb\xe1\x54\xb8\x79\xe6\xf0\x21\xc7\xf3\xe0\x73\x26\x58\x98\x6d\xdf\x9a\xe6\xd1\x63\x53\xf9\x5c\x39\x0f\xd3\x09\x66\x17\xc3\xe7\x75\xfc\xf0\x8d\x67\xe7\xaa\xf9\xc1\x6f\x71\xd4\xf8\x47\x26\x9c\x5b\x0e\x36\xa6\x08\xef\x52\x36\x13\xb1\x27\xa3\x90\x89\xfa\x00\x1c\xbb\x1b\x2c\xc2\x38\xf3\x6e\x01\x50\x64\x75\x2a\xd8\x9d\x15\x64\xf8\xc6\x29\x7b\x7e\xae\x58\x84\xc6\xe5\x2f\x38\x39\x13\xad\x9f\xae\xeb\x63\xe1\xf8\x45\x3a\xd4\xe1\xa3\x5b\xc1\xca\x8b\xd6\xad\x69\x2e\xc7\x56\xb6\x01\x2d\x0a\x6e\xfe\x14\xa0\x3e\x9e\x62\xe8\xf6\xb3\x7e\x0b\xd6\xe9\xad\xaa\x6d\x55\x6b\xe5\x32\xac\x14\x10\x8d\x01\xcf\x82\xa6\x9d\x82\x6d\x7d\x42\xb0\x6f\x5b\x95\xa2\x9d\xf3\x00\xc4\xce\x15\xac\x0f\x72\x96\x9f\xab\x0e\xd8\x7e\xe6\x48\xb6\x0f\x8e\xdc\xa9\x23\xd6\x60\xd5\xee\xcf\x1c\x39\xea\x1d\xf9\xf0\x4f\x35\xa8\x56\x74\xca\xb6\xf7\xc1\x3b\xb9\x0f\xad\x7c\x0e\x4a\x60\x41\x87\xad\x3e\x1b\xb0\xc9\xc6\xbe\x2c\xc0\xef\xf2\x80\x6d\xe5\xca\xc3\xfe\x20\x76\xe8\x94\x2d\xf8\xc3\xb3\xf0\x70\xff\x0e\x17\xe8\xaf\x35\xa0\x07\xd9\x42\x1f\xd3\x32\x1a\x0f\x7d\xac\xda\x9e\xf5\xc5\x70\xef\xff\xf8\xfc\x6d\xeb\x84\xeb\xf9\x03\x55\x9b\xfe\x86\x7f\x00\xfe\x7d\xcb\xad\x5a\x27\x9d\x4f\x3e\x86\x35\x86\xaa\xbc\x0a\xe1\xc2\x56\x78\xe9\x2a\x2c\xb2\xda\x77\x2c\xc1\x53\xa7\x0b\xda\xb7\x6e\x04\x37\xa6\x90\x12\x7a\x7e\xf4\xb5\xb1\xb5\x13\xae\xad\xc8\xce\xe8\xaf\x6a\x8b\xf4\x59\x4e\x94\xa8\x43\x0c\x9d\x10\x31\xd0\xc5\x40\x0f\x9a\xab\x9b\x54\x20\xcb\x1e\xdc\x3b\x13\xde\x58\x0e\xcf\xac\x36\xf6\x5e\x41\x65\x9e\xd6\xaf\xbb\xd3\x80\x69\xf2\xe5\xb3\x2f\xbf\xfc\xf3\x27\x1f\x5b\xc1\xee\x42\x78\xe9\x7c\x63\xe7\x2e\x50\x23\xab\xe6\xf7\xff\x97\xec\x80\x5d\xb6\xab\xb9\x62\x36\xef\x58\xc1\xfa\xe5\xe6\xa3\x7b\xed\x6b\xe7\xfe\x36\x02\xd8\xe9\x79\x45\x20\x62\x80\x2f\xbd\xbd\x9f\x5b\x40\x13\x01\x67\x70\xac\xfe\x60\x34\x90\x70\x71\xbc\xb1\xf3\xbc\xf5\xe2\x49\xb0\x7f\x01\x2a\xfc\xb5\x88\x0b\x2d\x43\x3a\x39\x68\x5b\x78\x8a\x2c\xac\x62\xb9\xfd\xc9\x75\xb5\x0a\x39\x3f\xd7\x07\x68\x00\x0b\x6c\x57\xab\x59\xa0\xbe\xfe\x30\xee\x12\x75\xd1\x0d\x98\x5b\x83\x13\x52\x76\x7d\x40\x02\x8b\x6a\x49\x0b\x4e\xf9\x74\xae\xe8\x14\x60\xaf\xd4\x8a\xc5\xab\xe2\x27\xab\xe0\xc2\xae\x63\x65\xc0\x74\x77\x08\x91\xa7\x9a\xcb\xc3\xfd\xe1\x59\x47\x7a\x8e\x00\x12\x15\xac\x23\xc7\x8e\x40\x83\x65\x37\xcb\xb4\x05\x69\x79\xc1\xf1\x72\x7d\x40\xd7\xf9\xb2\xa9\x32\x99\xfc\x5f\x88\x7b\x3c\x10\x29\xb7\xcc\x72\x6b\xc8\xf1\x07\xe1\xe6\xb2\xe8\xbe\x40\xc4\xcc\x95\x2d\x6a\xd2\x12\xd2\x14\x9b\xb8\x22\x64\x82\x0a\x1f\x11\xa0\xfa\x99\x32\xe1\xc3\x87\xd4\xc6\x09\x6a\x8e\x4f\xc0\x36\xe3\x45\xbd\xfc\x48\x61\x27\xde\xdf\x8c\x39\x5c\x28\x68\xa3\x3e\xab\x9d\x6a\x9e\xd9\x06\xcc\xd1\x44\x15\xe8\x0e\x10\xbe\xf6\xca\xab\xc6\xf6\xe3\xd6\xc8\x74\x30\x5b\x0f\x46\x27\x82\x3b\xf7\x91\xda\x4b\x0b\x48\x74\x78\x9f\x98\xe6\x84\x37\x5f\x36\xaf\x3d\xa6\x0b\x5b\x17\xa9\xd6\xc3\x89\x91\x70\x79\x82\x18\x85\xf6\xe8\x4d\xa4\x1a\x54\xa5\x7d\x76\x2f\xd8\x18\x6f\xdd\x7e\x18\xac\x5f\x09\xe7\xf7\x81\xbd\x68\xad\x3d\xe5\x46\x08\xfb\x80\x7c\x64\xe9\xb8\x30\xcd\x69\xfe\xbc\xd3\x7c\xb6\xa9\x4e\x8c\x2a\x54\x7d\x60\x55\x3e\x32\xaf\xc6\xda\x37\xeb\xc1\xd8\x0b\xe8\x32\xd8\x98\x49\x8c\x2e\xb8\x38\xcd\xad\x31\x51\xc2\x7b\xe8\xd2\x4c\x63\x6f\x39\x7c\x34\xd9\x5e\x9a\xa3\x6e\x0b\x2e\x5c\xb3\x65\xe8\x74\x85\x2e\x5d\xfe\x69\x74\xc3\x4b\x1b\xec\x6d\xc2\xfa\x58\xbd\xbd\x9f\x5a\xad\x3b\xe3\xad\x9f\xf6\x82\xe5\x8d\xe0\xfa\x88\x1c\x9b\xc1\x6c\xc5\xad\xfa\x19\x2c\x0d\x56\x6e\x46\x5f\xf4\x8a\xd0\x62\x53\x6d\x66\x9d\xc2\xf5\x9f\x82\x65\x39\xba\xe1\xfa\x1d\xa8\xd4\x5a\x5a\xc1\xd3\x3b\x75\xb7\x75\x6f\xb4\x09\xff\x9f\x5f\xa5\xd6\x26\x57\x5a\x67\xf7\xf0\x4c\xbf\xba\x1e\x4e\x8f\x86\x8f\x7e\x6c\xec\xcd\x34\xd7\xb6\x9b\x4b\x7b\xd4\xf5\xa0\xef\x57\xb8\xef\x4f\x4f\x9e\x3c\x61\x35\x1f\x02\xcf\xf1\x13\x34\x65\x94\xe8\x31\x10\x46\x34\xaf\xfd\xd4\x1a\xdd\xc3\x9d\x8f\x40\x11\x3b\x6a\xd5\xa2\x40\x58\x5f\x7f\xf5\xb9\xfe\xd6\x6d\x1d\xb0\xb7\x77\xf0\x9f\xde\xd8\x72\xc0\x72\x37\xb6\x46\x1a\xdb\xd7\x98\x69\x69\x6c\xad\x43\x4f\xed\x91\x9f\x9a\xcf\x78\xad\x81\xed\xa8\xe0\x49\xd1\x38\x1c\xcc\x3e\x01\x26\x4b\x61\x2f\x31\x3c\x52\xd2\xbe\xb6\x13\xac\xcf\x41\x3b\x40\x6e\x78\xcd\x00\x2a\x78\x8c\xac\x54\x09\x66\x46\xd4\xb6\xf7\x0b\x98\xb3\xa2\xb4\xf4\xb9\xbf\xea\x96\x32\x5c\xa9\xb1\x7f\x0e\x38\x56\xe3\xbb\x9a\x8b\x59\xcc\xc3\x86\x85\x6f\x8f\x3e\x0b\xf6\x1f\x58\x5f\xfd\xf1\xb8\xf5\x1f\xdf\x7f\xef\x3d\xa0\x7e\x4b\xc1\x38\x52\x45\x18\x21\xd0\xce\xf0\xca\x13\x98\x18\x1c\x12\xb8\x53\x9b\xbf\xcc\xe3\xac\x68\x86\x5c\x3f\xac\x2f\x0a\xcd\x3d\x82\xa7\xec\x88\xf5\x01\xcd\xe4\xbf\xda\xdf\xe7\x80\xc1\xb4\x7b\xf2\x6e\xe9\x43\xc2\xbd\x9b\xbb\x40\x52\x69\x25\xb0\x1c\xb0\x99\x2f\xee\xa5\xdd\xf6\xc8\xa8\xe2\xf3\xa4\x44\xd3\x05\xb3\x34\x62\xfd\x98\x05\xce\xe6\xdd\x72\xbf\x53\x2d\x01\x43\xb1\x02\xdd\x33\x43\xcc\xa0\xcc\x15\x72\x73\x59\xa0\x24\x4e\xff\xb0\x40\xf1\xfc\xdb\x23\x57\x9b\x2b\x77\xc3\xd9\xb9\xf6\xb9\x8b\xc8\x65\x54\x81\x5f\xce\xe2\x7f\x9c\xbc\x2d\x5b\xd0\xd8\xdd\xc6\x95\x5f\x5a\xc5\x53\x34\xf6\xbc\xb1\xb3\xa8\x37\x82\xb6\xcb\xed\xef\xc7\x8b\x9a\xaf\x8c\x60\xe1\x12\xb6\x7d\xed\x76\xf3\xc5\x55\x75\x75\x98\x00\x80\x8b\x15\x60\xe2\x01\xeb\x81\x47\x6c\xee\x3d\x65\x98\xc6\xd6\x54\xe3\xe5\x0a\xe3\x7b\xb0\x7f\xc3\x3a\xfe\xc9\x97\x56\x73\xe6\x29\x32\x42\x74\xd1\xc0\xce\x30\x35\x41\xf9\xe3\xe7\xf1\x70\x7b\x0e\x48\x08\x00\x02\xc9\x83\xa5\xd7\x03\xe4\x2a\x7c\x9c\x85\x70\x03\x63\x7a\x1a\xae\x01\x58\x5d\x6a\xdc\xfa\x93\xfc\xd6\xb2\x4b\x12\x50\x06\x98\x04\x87\xb9\x23\x9e\x3c\xbe\xda\xdc\x5f\x83\xee\x61\x40\xc1\xd9\x31\xde\xed\xe6\xbc\x90\xa7\xc6\xd6\x64\x70\x06\x78\xca\xc5\xf6\xce\x15\x58\x74\xc4\x8e\x9b\xeb\xc0\x41\xc7\x06\x14\xbb\x49\xa0\x97\x70\xfd\xb6\x70\x94\xe3\x0f\x00\x87\x95\x30\x93\x06\x1e\x0d\x2d\xb5\x12\x13\x09\x1c\xd9\xec\x03\x5c\x2a\x62\x2b\x83\x4b\xb7\x04\x75\x5f\xec\x04\x93\x37\x81\xe7\x85\xb3\x4e\x03\xb2\xcb\xd4\x81\x12\x14\xfe\x40\x3f\xad\xe3\xfc\x33\x59\x2c\x5d\x7f\xc5\xdc\x93\x45\xd7\x2d\x70\xfc\x96\x14\x5b\xc0\x93\x59\x88\xc4\x96\x67\x17\xfb\x8f\x99\x83\xee\x11\x46\x0c\xc4\x14\x11\xf1\xb2\xa7\x1d\x90\xa0\x18\x51\x58\xfe\x69\xad\x3e\x40\x56\x78\x69\x2e\x20\x1a\x9f\x02\xae\xd0\x86\x66\x16\xc9\x4d\x57\x45\x74\x0a\x27\x66\x60\xea\xc1\x9d\x9b\xd2\x12\x71\xb0\xb8\x12\x73\xf7\x82\x89\x71\xc4\x95\xd9\x07\x00\xd0\x5c\x9e\x0a\xea\x1b\x5c\x17\xb6\x49\xce\x09\x01\xd3\x92\xf0\x55\x2c\x9c\xbe\x08\xc0\x24\x99\x44\x6b\x49\xeb\xd7\xd8\xba\xd7\xd8\x9a\x01\x62\xc0\xb7\x0e\x0c\x03\xfb\xba\x76\x13\xee\x53\xeb\xb3\x4f\x32\xef\x5a\x7a\x60\x78\xd3\x01\xda\x4c\x2d\x20\x6a\xee\x5f\xd6\xed\x18\x17\x0f\x77\xca\x47\x2d\xd1\x8f\xbe\xce\x09\x84\xe5\x42\x05\x61\x08\x88\x09\x0e\x22\x6a\x44\xc9\x82\x4c\x1d\x0c\x88\x98\xa8\xc8\xd5\x59\xca\x64\xee\xe3\x0f\xc7\xf0\x87\x96\x0b\xb2\x03\x2e\xca\x3d\x0f\xa7\x82\x99\x9f\x59\x04\x40\x99\xd9\xf3\xb3\x03\x8e\x9f\xed\x47\x3a\x05\x4d\xfe\x78\x2b\xfc\x79\xa1\xb5\x7e\x25\xa8\xdf\xb5\xde\x82\x82\xb7\xac\xe0\xc2\x5e\x63\xe7\xce\xaf\xbb\x57\x8f\x9e\x56\x2c\xe2\xfb\x48\x82\xb2\x70\xa4\x9c\x22\x62\x17\x5e\x88\x70\xae\xe5\x18\xc1\x9a\x2d\xed\xe2\x8d\x4f\x32\x3a\x2e\xf0\xfc\x13\xb8\xec\x14\xfb\xc8\x4c\x2d\x52\x87\xa3\x1e\x50\xfb\xa9\xd6\xee\x04\x4b\xfa\xe1\xfd\x29\xdc\xa2\x89\x3a\x42\x8c\x4c\xf3\xce\x58\x03\x6e\x5f\xcd\x29\x16\x2c\x6e\x8d\x56\x5a\xb1\x89\xc0\x24\xca\x1e\x27\xf9\x7a\xac\xbb\xfe\x13\x2c\x8f\x8c\x5a\xd5\xe8\xca\xf6\xa4\x57\xd3\x5c\x0a\xce\xb6\x94\x83\x13\x92\xc2\xcc\xb4\xaf\xdf\x10\x9d\x04\xfd\xc4\xaa\x9e\x75\xec\x43\x98\x1d\xac\x56\xee\xb4\xcd\x44\x7d\x40\x2d\x30\xdf\xca\xed\xb1\x19\xec\xef\xd5\x75\x60\x9e\x82\x3b\x9b\xe1\xc2\xe5\xc4\x48\x63\x28\x1c\xc3\x27\x2d\xb4\x76\x4e\x92\x77\xd9\xab\xe5\xf3\xb6\xe7\xe1\xa6\x04\x77\x81\x8e\x8c\x82\xc0\x1d\x8c\x5c\x08\xf6\xeb\xed\x87\x57\x5a\xf5\x3a\x7c\x87\x4b\x3a\xbc\x34\x2e\x97\x1c\xb2\x52\xb0\xe4\xcd\xbb\xd7\xb5\xf8\x11\xfe\x38\x11\xbc\x7a\x08\x1f\x1b\x3b\xd0\xc1\x2e\x52\xe8\xf5\x3b\x80\x1a\xd6\xc7\x5f\xff\x09\x1a\x24\xb1\x13\x55\x45\x20\x73\xd6\x98\x11\x75\x8b\x05\x2d\xb3\x02\x32\x23\xf1\x4c\x28\x3a\x14\x8c\x42\x57\x0f\xd8\xeb\xfc\x60\x56\x2b\x99\x70\x9d\x7c\xfb\x7b\x3f\x13\xd4\xc7\xc3\xd9\x6b\xa6\xca\x49\x71\x8d\xa5\x61\xda\x41\x98\x1a\xa9\x10\x94\xb8\x9c\x77\x8b\x80\x86\x2e\xd2\xa9\xd3\xb6\x40\x04\xb3\x67\x5b\xf5\xf1\x60\x66\x1e\xb8\x43\x03\x14\x5a\x70\xab\x03\xaa\x01\xad\xa2\x18\xce\xb2\xaa\x44\x15\x28\x8d\x09\x91\x2c\xd2\x89\x31\x41\xa2\x4d\x55\x62\x7f\x0f\x6c\x10\xa9\x14\xa4\xc7\xcd\x47\xc2\x03\xf3\x22\x50\x8f\xd0\x16\x2d\x96\xa8\xcc\xbe\x15\x71\x5f\x54\x67\x6a\x54\x00\x90\xab\xf9\xa8\x1e\x88\x54\x53\x59\x91\x31\x84\x72\xf1\xc6\x1b\xac\xc2\xa0\x5d\x41\xbe\xa2\xe4\x0d\x90\xfe\xe9\xf9\x25\xa6\x82\xbf\xee\xae\xf0\x01\x67\xea\x48\x9b\xe5\xb9\x79\x27\x57\xcc\xbe\x79\xd5\xe7\xa3\x70\x41\x52\xd5\xf8\xf5\xc5\x0a\x32\x90\x5f\x32\xc0\x9a\x03\xfa\xb5\x9e\xbd\xc0\xb3\x6a\xdc\x5a\xd0\x1e\x48\x04\xed\xcb\xcb\xed\xc5\x09\x38\xab\x70\xd0\x5b\xa3\x4f\xf0\xb4\x90\x16\x4f\xa3\x71\xca\x4d\x8a\x03\x42\xca\xd5\xd9\xb2\xc9\x00\xa5\xf6\x82\xab\x52\xb2\x4b\x7d\xd8\x04\xee\xd4\x95\xc6\xde\xac\x52\x3f\xc2\x85\x36\x00\x87\x37\xd2\xb6\xbd\xba\x02\x00\x0a\x07\xb1\xd4\xee\x52\x0a\xcb\xa1\x95\x95\x40\x00\x86\x32\xed\x33\x3f\x86\x4f\x2f\xf2\x46\x40\x61\xfb\x1e\xd0\xb6\x49\x1e\x22\x0d\x42\xc8\x33\x5f\xf1\xc4\xa7\x79\x76\xd9\x57\x2b\x86\xfc\xe6\xc6\xa8\xa8\xc6\x68\x2e\xcc\xb8\xc9\x0e\xdc\x7e\xc8\x8c\x61\x6b\xfc\x67\xeb\x83\xbe\x0f\x8f\x7a\x1f\xbc\xd3\xf7\x21\x93\xca\xf0\xc1\xed\x10\x58\x3b\x92\x39\xc2\x79\xe0\xdb\x9e\x13\x2f\x7e\x0f\x78\x2f\xeb\x68\xc1\x0a\x36\x66\xc3\xa5\x33\xc1\xd8\xfd\xe0\xf1\x74\x58\x9f\xe3\xb6\x79\x58\x2c\x1c\xf1\xed\x94\xa7\xc3\x41\xf8\xaa\x30\x2b\x7c\x35\x12\xfe\xb2\xc3\x0d\x47\xf8\x45\x83\x2e\x3a\x25\xc7\x4f\xdb\x6c\x80\x66\xe5\x17\x0f\x97\x9b\x10\x16\x74\xf4\x3c\x1c\x80\xf6\xcd\x9d\xe6\xcb\x51\x1e\x79\x73\x7d\x22\xd8\x1f\xb3\xde\xb7\x82\xfa\xb9\xf6\xdc\x95\x60\x7f\x3a\x38\x37\xd3\x5a\xbb\x47\xa8\x35\x98\xf3\xb2\xb5\xb2\x2c\x9a\x5d\xe0\xdd\x07\xd2\xa9\xc8\x16\x76\x05\x4c\x02\xaf\x9b\x5e\x9c\x7f\x8c\x56\xe7\x9f\xac\xc6\xde\xb9\x70\xf9\x01\xae\x1d\x4d\x9a\xd9\x78\x18\x09\xf2\xf9\x4a\x9f\x02\x00\xb0\x68\xc0\x2e\x98\x43\xc5\xd6\x81\x42\x2d\x8f\x80\x74\xd6\x1e\x9f\xc1\x5d\xa1\x0e\xe4\x6e\x5a\x7c\x1c\x5e\x9a\x84\xab\x09\xd5\xcf\xb0\xe6\xd3\x13\xed\xfa\x82\xe0\x19\xac\x8e\x0c\x95\xa1\x80\x2e\xb6\x96\x16\xcc\x36\xcc\xcd\x55\x32\x10\xdd\x96\x1e\x9d\x43\x9f\x6e\xcb\xd6\xee\x56\x30\x76\x37\x29\x77\xd0\x5c\x00\xad\xe1\xcc\xc0\x80\x1b\x3b\x3b\x8d\xbd\x05\xe6\x20\xf8\x1c\x63\xdf\x38\x04\xbf\x73\x04\xbf\xee\xd6\x79\x10\xbf\xee\x4e\xc8\xd6\xf0\xbe\x12\x2e\x43\x11\x5c\x18\x6a\x4c\xdc\x84\x46\x7a\x2e\x54\x47\x42\x5d\x40\xa4\x68\x4c\xec\xbc\x46\x5d\xb9\x16\x5e\x3c\xc5\x3d\x5f\x5e\x81\xb5\x84\xbf\xe9\x1e\xab\xeb\x75\x8a\x7a\xd0\x3a\xae\xf8\x8a\x19\x9d\x6a\x48\xdf\x75\xb3\xde\x20\x0a\xc0\x32\xf0\x85\x17\xc1\x36\x32\x69\x78\xea\x37\x2e\xa0\x0d\xe3\x3f\xc1\xb6\xcf\xa8\x4b\x08\xd7\xe1\x5b\xc1\x6e\x24\x9c\x0a\xb5\x4f\xb0\x7e\x52\x7d\x47\x35\x63\x55\x69\x6d\x0c\x70\x66\x96\xfe\xa7\x5d\x05\x71\x8a\x61\x6c\x62\x99\xac\x5c\xa1\x00\x73\xf0\x3a\xd6\xea\x2b\xfc\xc9\x90\xea\x9b\x41\x93\xd5\xcd\xfb\x95\x7c\xb0\xe4\xc3\xdb\xd6\x5f\xec\x22\x48\x8d\x36\x8f\xd9\x2d\xe4\x70\xd0\xc3\xb6\x27\x1c\x1c\x9f\x53\x54\x59\x89\xce\x58\x7d\x00\x50\x14\xf4\x64\xd1\x5f\x3d\x0e\xe7\x5f\x52\x13\x40\xb7\x4a\xd0\xc2\xd7\xc0\x9b\x7c\x99\xb0\x32\x7c\x05\xf7\x0b\x7d\xe3\xcb\x45\x29\x7c\xfe\x60\x18\x1f\x18\xdb\x0e\x1f\x3a\x91\x34\x41\x7c\x65\xa7\x58\x20\x7a\x7b\x3f\x3d\x49\x4c\x2d\x29\x30\x9e\x9c\x6b\x5f\xd8\x50\x8d\x7e\xea\xfb\x15\xef\xeb\x6a\x31\xc3\xaa\x83\xaf\xbf\xfa\xdc\x8a\xda\x1e\x2e\xba\xb9\x02\x16\x86\xe7\x57\x01\x1d\x55\xc1\x49\x3b\x57\xe2\xf1\x2d\x5f\x69\x5f\x9d\x54\x4d\x7d\x04\xf7\x1f\x7d\x46\xe2\x05\x64\x43\x7d\x46\x36\x88\xc7\xae\x2f\x0f\xc5\x58\x44\x12\x86\x4d\x66\x0e\xc6\x12\xe0\xdd\x9b\x6b\xdb\x4c\xf3\x8a\x15\x90\x78\x90\xc1\x10\x08\x61\xf3\xcf\x6c\xb7\xa6\x36\x41\x20\x0d\xd6\x2f\x87\x4f\x66\xfe\x06\xd2\xf8\x95\x57\xe1\xd4\x44\x63\xf7\x09\xb0\x91\xf8\xb1\xbe\x18\xae\x3d\x04\xc1\x17\x0e\xd5\xb1\x2c\x1c\xa8\x64\x6b\x05\x38\xce\xbf\xa9\x45\xf8\x12\x6f\x91\x84\xcb\x1b\xac\x6e\x72\x7e\x50\x33\x60\x6c\xd7\x6d\x02\xb7\xc1\xca\x05\xe4\x04\x93\x50\xe1\x32\xd0\xc5\x59\x86\xb2\x50\x93\x41\xaa\x5f\x51\x46\x7c\x9f\x0e\x7f\xe7\x7e\x2a\x3c\xd3\x28\xbd\x88\x5a\x39\x02\xd4\x17\x0e\x74\x82\x48\x51\x0d\x54\x25\x1d\x00\x8f\x98\x20\x9c\x7a\xbe\x58\x2b\xa8\x81\x7c\x67\x95\x6a\x9e\x6f\x21\x9f\x97\x03\xe9\xc4\xab\xf5\x81\x70\x89\x7a\xd5\xb7\x8e\x7a\x6f\xf5\x7c\x87\xbc\xe4\x29\xb8\x68\xcb\x02\x0e\xe4\xb0\xb9\x72\xb7\x3d\xfd\xa4\xf5\x00\xa5\x0f\x6d\x0b\x03\x59\x32\xef\x56\xab\x76\xde\x8f\xac\x62\x00\x1b\x4c\xbf\x04\xae\x9a\xba\xd5\xe4\xc4\xe0\xdb\x09\x9b\x81\x25\x34\x91\x3b\x5e\x2b\xb2\xda\x65\xfb\x6c\x1b\x44\xb9\xdc\x29\xbb\x1c\x1d\x2d\x7d\x51\x37\xf6\xe6\xe1\xa3\xd0\x39\x90\x27\x92\x35\xcc\x83\x97\x56\x09\x78\x8e\x8e\x3a\xa2\xb8\xed\x5a\xc7\x87\x53\xd3\xd9\x91\x71\x82\xd2\x2a\xf1\xbe\x52\x05\x98\x59\x21\x76\xfa\x0d\xf8\x57\x0a\xde\x29\x16\xed\x01\xd4\xe5\xa9\xce\xe2\x3d\x4c\x8f\x05\x73\x0f\x61\xbf\x83\xb9\x3a\x88\x88\x06\xfe\xe8\x65\xd3\xeb\x1e\xed\x90\x29\x11\xf0\xa2\x6b\xb1\x45\xb4\x17\x40\x27\xab\x64\x4a\x35\x44\x34\xea\xdc\x64\x7d\xf4\x7d\x69\x2e\x2e\x20\xde\x41\x2d\x01\x26\xa1\xe8\xd6\xb5\x29\xb4\xf1\x91\x32\xaa\x35\x32\x16\x0d\xf3\xca\x93\x60\xee\xde\x41\xcd\xea\xbb\x20\x7d\x7c\x8c\x58\xc9\x56\xb4\x14\x69\x7f\x0f\x37\x43\x06\xd6\x9d\x49\xbc\x56\x30\xe0\xba\x82\x28\xb8\xbc\x4a\x37\x5b\x31\x07\x52\x39\xe2\x09\xcd\x01\xc1\x9b\xf7\x77\xda\x4b\x77\x18\x16\xd5\xfd\x70\x9a\xf7\x49\x39\xbb\x37\x63\x72\xd5\x38\x26\x52\x10\x71\x91\xb0\x9b\x5a\x7a\x3c\x37\xd3\x1e\x79\x8a\xf2\x2b\xb5\x06\xdc\x22\xaa\x30\x68\x20\x72\xa1\xaa\x49\xa2\xc6\xfb\x94\x3d\x9c\x01\xa1\x31\x9c\xdc\x0c\xd7\x27\x88\x63\x42\x31\x92\x15\x04\x7c\xf0\xcc\x89\x5b\xd1\xf5\x40\x22\x30\x49\x86\xc8\xde\x9f\xa6\xdb\x55\xb7\xc8\x8a\xfb\x37\x69\x64\x1a\xd9\x3b\x16\x5d\x47\xc7\x41\xe4\x6d\x9f\xf9\x09\x77\x5c\x11\x19\x0d\x86\x73\x86\x36\xc6\x1f\xe0\xc4\x6e\x6f\xa3\x50\x3d\xf6\x9c\xc1\xc2\x91\xfb\x34\x31\x94\xae\xb4\x00\x7e\xbe\x8e\x5a\x1b\xea\x3b\x26\x7a\x03\x29\xf6\xe1\x08\xe0\x9a\xb3\x99\xdc\xe4\x8c\x1b\x3b\x33\xcd\x1f\x9f\x63\xff\x2b\x73\x8d\xed\x6b\x5a\xba\x0b\x2f\x8d\x32\x06\x31\x87\xa4\xcc\x17\xf5\xd6\xde\x04\x2c\x32\x22\x7d\xfd\x01\x2c\x75\xf0\xf8\x2c\xcc\x43\xd4\x5b\x6c\x83\xe5\xef\xd4\xb8\xb1\x05\x3c\x04\xe4\x8d\xd1\x60\x9e\x18\x41\xab\x3e\xa9\x47\xc0\x14\x03\x47\x40\xbb\x98\xe8\xbe\x7d\xed\x76\x7b\x71\x4a\x77\xcf\xc0\x9a\xfa\x24\xe6\x89\x32\x2b\x01\xfc\x3f\x9a\x24\x37\x1e\xc3\xb3\x68\x04\xa4\x32\x87\x11\xf0\xb6\xf0\xed\xdf\xd8\xbf\x0e\x53\x45\x5e\xf8\xec\x2a\x88\x0e\x72\x42\x88\x50\x09\x87\x3e\x56\xe7\xa6\xa1\xa2\x09\x13\x97\x30\x80\x6c\x92\x5d\x3a\xdb\x57\xcd\x95\xf3\x83\xc6\xf9\x6b\x5e\x7b\x8c\x16\x81\xfa\xb9\x70\xfe\x89\x3e\x79\xc4\x59\xe1\x70\x50\x0e\x27\x93\x74\x56\x74\xce\xc0\x8c\x5b\x4a\xaf\x8c\xda\x7f\x0b\x04\x3f\xe6\xc6\x78\x83\x58\x3d\xac\x6b\xe5\xe1\x96\x73\x4b\x46\x65\x76\x43\x50\x5a\x9b\x75\xae\xaa\x2a\xfd\x8b\x0b\xd7\xbb\x0b\xd4\x7c\xf2\x26\x1c\x02\xe0\x70\x0d\x97\x00\x07\x9d\x0b\x98\xe2\xd5\x2f\xb7\x6e\xad\x0a\xeb\xea\xf8\x70\x32\xc7\x1e\xe1\x0e\x8b\x93\x42\xbf\x8b\xc6\x50\xbb\xea\x65\x50\x7c\x58\xdd\x81\xbd\xc2\x45\xce\x21\xe5\x42\x21\xbf\xf5\xf8\x2a\x08\x55\x0a\x0e\x55\x4a\x0c\x07\xa3\xc1\x69\x23\x3f\xd9\x43\x24\x1c\xf9\xdd\xea\x69\x54\x04\x2a\x8a\x48\xb7\xb3\x05\x48\x81\x97\xc5\xab\xeb\xcd\x85\x25\x98\x31\xa1\x52\x54\xab\x92\xf3\x81\x4a\x96\x59\xce\xa1\x91\x18\x0d\xe0\x02\x8f\x8d\xb6\x56\x37\xb9\xa5\xb8\xe1\x84\x7c\x23\xd8\x23\x03\x96\x3d\xdd\x6f\x43\x53\x5c\x5e\x38\xad\x40\x62\x8a\xe2\x09\x67\x68\xd0\x0e\xa5\xf2\xc8\x34\xef\xec\x37\xb6\xef\xb0\x08\xc5\x5a\x0d\x32\x85\x15\x9d\x3c\x49\xe9\xaa\x2a\xe3\x1e\x6b\xe6\xe8\x84\xa8\x02\xa5\x20\x2a\xd8\x45\x1b\x3d\x92\x8c\x33\x0b\xf4\xcd\x51\x93\xb4\x3e\xfb\x04\x67\x52\xa9\xf5\x41\xcb\x91\xf3\x09\xed\x90\x9e\x84\x78\x16\x91\x36\x5a\xd0\xc6\xbc\x8f\x37\xc6\xc3\xe5\xb3\x68\x4d\xa5\x5a\x48\xfd\xb6\xee\x21\xdd\x87\x0e\x16\x77\xc3\xf3\x77\x51\x88\xa5\x8e\x71\xfd\xe8\xda\x62\x63\x4f\x70\x71\x9a\x6d\x3f\xbc\x25\xe8\xac\xc2\x57\x9e\xb2\x72\x28\x56\x5a\xbb\x55\xd1\xda\x2a\xb7\xaa\xa2\xcb\x4b\x81\x56\x5e\x38\x03\x38\x98\x19\xe0\xd2\x6b\x15\x34\x0b\xe8\xa9\x84\xd7\x7e\x81\xab\x44\x4d\x25\x5e\x68\xea\x1b\xe9\x82\x8e\xb6\x8e\xab\x21\x81\x9a\x64\x09\x56\x0e\x48\xa7\x77\x14\x5b\x92\x95\x84\x93\x00\x53\x7a\x88\x93\xe8\x14\x22\xce\x22\x43\x40\x3f\xac\x5c\x7f\x3f\xf0\x18\x96\x3f\x08\xbf\x73\xc3\xd6\xa0\x3b\x64\x15\x9d\xf2\x29\xf4\x0e\x41\x3f\x30\xcb\x77\x63\x82\x5f\x0f\xe9\x68\x00\xd7\x6a\xd0\xf3\xcb\xdd\xe6\xf6\xb4\x92\xb3\x62\x0e\x3b\xea\x63\x64\x3b\x89\x9f\xe7\x85\x15\x38\x72\x7a\x79\xd5\x31\x4e\x83\xd5\xb6\x5a\x52\x3d\x20\xad\x22\x0f\xb4\xc6\xfe\x39\xb6\xfd\xa0\x12\x5c\x5b\xa6\xd8\xe8\x15\x91\x12\xd7\xf5\x44\x11\xc8\xfd\xb2\xce\x96\x6f\x74\x05\x25\x3b\x21\x10\xbc\xdc\x5c\xa6\x4c\x0e\xb5\x0a\x8a\x61\xc0\xbe\xc8\x88\xe8\x84\x66\x9d\x12\x7a\xc5\xb1\x9d\x8b\x38\x21\x34\xce\x45\xac\xfc\xee\xb3\x60\x79\xb1\x39\x31\x4e\x7b\x56\x76\x13\x93\x32\xd4\xfe\x4f\x2f\xa2\x86\x86\xf4\x14\x89\x05\x41\x85\x32\x5d\xf2\x89\xb9\x33\x37\x64\x0e\x3b\x81\x3f\xe6\xf0\x3b\xf0\x47\xa3\x46\x17\x92\xe0\x16\x0d\xfe\x8c\xb5\xf2\xaa\x08\x57\x32\xf2\xd3\x61\xd7\x37\x6d\x7e\x45\xb1\x37\x1b\x83\x60\x51\xd8\xfa\xd2\x1e\xb2\x4e\x68\x41\x3f\x8d\xbf\x35\x3a\x31\x14\xf2\xa3\x1d\x23\xd5\xd3\x14\x58\xbe\x3e\xd4\xd4\x70\xee\xb3\xfb\x78\x00\xc9\xc8\x27\x5a\x78\x63\x94\xac\xcf\x14\x92\x49\x8c\xbd\x17\xb3\xa9\x2b\xf1\x5a\xbc\xed\x04\x42\x1c\xea\x52\xe0\x58\x36\x30\x88\x11\x9a\x1f\xef\x8d\xb6\xcf\x3c\x36\x48\xd2\x39\x26\x40\x8d\xed\xf3\xa6\x79\x99\xcd\xc7\x70\xd9\x1b\xea\xc5\x4a\x15\x50\xaa\x3a\x9c\xe1\x56\xf4\x6f\x51\xb0\xb4\x1e\xef\x37\xb6\xb6\x55\x19\x13\x53\x29\x62\x92\x1a\x8d\x07\x8a\x90\x1a\xb1\xe5\xca\xfa\x44\x7e\x27\xcb\x79\xe0\x54\x6a\xb3\xaf\x58\x5c\x6f\xc3\xe4\xa1\x6a\x97\xdc\xd3\xb6\x10\x83\x82\xe5\x94\xf1\xc2\x62\xd7\x1e\x74\x20\x88\xd3\x06\xeb\x13\x22\x16\x40\x48\xca\x3e\x12\x0e\x45\x29\xfe\xb9\xa3\x6f\xb5\x91\x32\x46\xe0\xd5\x2c\x94\xb1\x2c\x9e\x57\x41\x29\x7d\xc8\xcd\xed\x77\x68\x96\x2b\x10\x6a\xf1\x7c\x99\x3b\x97\x53\x9c\xb2\x2f\x08\x6d\x42\x9a\x30\x46\x69\x36\xa6\x6c\x46\x95\xad\x28\x98\x83\xfd\xb1\x48\x19\x6a\xb6\x8f\xb6\x56\x54\x0b\x22\x2f\x83\xf7\xb0\x30\x52\xcb\xab\xa6\x0a\x39\x55\xd5\xcc\x77\x91\xa9\x5d\x6e\x8f\x9e\x6f\xae\x4e\x89\xd5\x53\x8d\x48\x1f\x63\x9e\x9b\x81\x48\x32\x67\xc2\x75\xc1\x60\x41\xd3\x83\xae\x70\x6c\x99\x44\x90\xdb\x37\x90\x35\x52\x17\x3b\xaa\x5f\x70\xf3\xf1\x94\x6c\x4d\x21\x5b\x52\x1f\x47\x9e\x94\x19\xe9\x89\x11\x56\x9f\x76\xc8\x12\x5a\x1f\x0c\xab\x00\x27\x0d\xc8\x56\x7b\x69\xba\x39\xbf\x92\x10\x24\xc4\x38\xaa\xd8\x59\x66\xc9\x3d\xed\x0a\xf5\x81\xe7\x57\xdd\xf2\xc0\x87\xac\x39\x66\x97\xe7\xe0\xf2\xf9\x7f\xfe\xe0\x1d\x29\xb0\x50\x18\x59\xb9\xdb\x5c\x46\x65\x08\x0c\x05\x9d\x23\x23\x67\x48\x0b\x46\x01\xa4\x12\xba\x85\xc5\x30\xc6\x47\xae\x91\xa4\x69\x1e\x0f\x66\x50\xfd\x94\xa8\x86\x90\x24\x07\x6c\xb5\xee\x4d\xb1\xb3\xa9\xaa\xd2\x5c\xbc\xd0\xbe\xf6\x53\x78\xfe\x62\xeb\xfe\x4f\x7a\x43\x10\xdd\xa2\xa5\x8b\x33\x46\xbc\xe2\x86\x56\x00\x18\x8e\x60\x6c\x53\x14\x7b\x71\xad\x40\x04\x4e\xd7\x30\x81\x8b\x91\xf7\xda\x56\x30\x37\xcd\xac\x05\x8e\xac\xa3\x0d\x43\x98\x55\xf5\x33\x71\xe5\x21\x7e\x26\x93\x5f\xd9\x57\x25\x68\xc3\x78\xa9\x77\x3e\x81\x51\xc6\x34\x84\x25\x35\xd0\x8a\x8d\x55\x4c\x58\x68\xe6\x42\x56\xd4\xf8\x35\x61\xe1\x02\x6e\x0b\x38\x2d\x73\x49\xe2\xc4\x45\xcb\x17\x06\x2c\x3a\x20\xd0\x67\xd1\x1b\x18\x98\x07\x0b\x02\xdb\x8d\x6e\x2d\x64\x28\xd4\x7e\x01\xac\x09\x60\x6e\xe3\x9f\x53\xfa\x52\x73\x34\x3a\xe1\x1e\xa2\x69\xe1\x72\xe0\xc8\x69\x33\x49\x3e\x20\xf5\x00\xef\xc6\xd6\x64\xf8\xe8\x16\xef\x09\x89\x30\xe8\xf5\xa8\x44\x04\xbe\x9e\x43\xc0\xd5\x57\x17\x94\xa0\x40\xeb\xea\xe3\xed\x4b\xb3\x84\xf9\xc9\xda\x2f\xaf\x5a\xff\xd9\x0a\xee\xac\xc1\x26\xe8\xfd\x87\x73\x0e\x32\x94\x7b\x0a\x50\xc5\xa8\x13\xae\xdf\xa1\x6f\xe8\xfb\x33\x7a\x3e\x38\x0f\x42\xc4\x59\xae\x18\x5e\xdb\x37\xd1\x87\xaa\x47\x67\x5d\x58\x72\xbe\x92\xf8\x94\x2a\xf6\x9c\xf8\x69\x31\x53\xbe\xd9\xe9\x36\x39\xfb\x83\x8f\x37\x57\x31\x8f\x37\x1c\x15\x94\x4a\x23\x2b\x67\xad\xdc\xe7\x94\x0b\x19\xf3\xbb\xfa\xa8\x37\xc8\xec\xd0\x04\x8c\x71\x27\x32\xd5\x1c\x55\xc9\xd2\x2a\x29\xbd\x35\xb1\xc5\x7c\x63\x36\x76\xee\x34\x27\xa6\x95\xff\xa7\x98\x7b\x05\x98\x48\x03\x23\xbc\x02\xa3\x12\x4f\xdf\xd5\xb0\x0a\xcd\xf9\xdb\x3c\x37\xde\x07\xe2\x9d\xf1\x9e\xde\x3f\x87\xc7\x6e\x76\x91\x74\x2c\x1f\x9d\xf8\xcc\x63\xb6\x87\x77\x90\xea\x83\xe0\x8b\x9e\x0a\x67\xb6\x81\xfb\x24\xf3\x3e\xb2\x6e\xdc\x11\xf9\x73\xce\x98\x1a\x07\x16\xfb\x91\xf0\x2f\xfc\x92\xe6\x6a\xc9\xed\xd2\xd1\xe6\x26\xd4\xd1\xd6\x13\x33\x27\xd5\x31\x6b\x41\x2c\x5c\x5f\x5b\x1d\x72\x73\x81\x64\x2d\x0c\x16\x49\x34\xe3\xbc\x89\xec\xa7\x58\xdf\x10\x47\xbe\xc7\x13\xc1\x18\x0d\x7d\x79\x23\x5c\x7c\xa9\xfd\x78\x00\xc1\x65\x6c\xe8\x72\x74\xb6\x7d\x0b\x90\x0e\x38\x91\x11\x38\x35\x26\xcd\xe0\x81\x06\xf5\x9b\xb0\xaf\x6a\xa0\xe6\x2e\x26\x09\x88\x08\x51\xe4\x0d\x09\xc2\x19\xc1\x74\xa9\x61\x92\x13\x38\x3a\x46\x05\x96\xf9\x84\xd0\xd4\xc7\x99\x84\x88\x5f\x27\x7b\xf8\x1b\xde\x96\xb8\xf3\x67\x7f\x46\x6f\x52\xa2\x25\x78\xeb\xc4\x47\x9f\xe4\xa3\x8d\x7e\x5e\x3c\xe5\x55\xe4\xae\xc4\x2e\xbf\x7a\x25\xd8\xbf\x2c\x1c\x36\x5f\xf8\x46\xcf\x72\x4d\x4b\xfb\xda\x15\x81\xd5\x39\xcc\xf2\xca\xa9\x15\x10\x65\x2a\xe6\x69\x32\xa6\x2c\x9f\x0d\x37\xb6\x1a\x2f\xc7\xc2\xad\x31\xfc\x68\xea\xb2\x48\x3c\x64\xc6\xa2\xb1\x35\x6f\xa9\x7b\x15\x55\x05\xb3\x4f\xc2\x51\x90\x8c\xd6\xf4\x9d\xca\xdc\xb4\xf8\x3e\x25\x46\x24\xda\xfc\x98\x5c\x1e\x07\x51\x9e\xa9\x54\x68\x0e\xaf\x03\x50\x13\x44\x06\xa5\x53\x25\x13\x18\xb9\xcf\x35\xc5\x0c\x7a\x7b\x1b\x0e\xbe\xde\x0a\x6e\x0e\x36\x84\x3c\x06\x0e\x1f\xfa\x06\xd5\x37\xdf\x82\x30\x42\xba\x5b\xad\x3b\x33\xac\x05\x09\xdb\x5c\x64\x45\x50\x86\x52\xed\xae\x6d\xc0\x01\xd2\xb6\xea\x8f\xe0\x94\xb6\x76\xcf\x36\x57\xd6\xff\x36\x32\x0a\x88\x8a\x34\xe5\xc5\x66\x50\xdf\x49\x2c\x64\x73\x66\x15\xe0\x41\x02\x6b\x6c\x4f\x47\xcc\x89\x52\xdc\x9c\x76\x3c\xa7\xcf\x29\x92\x1a\x69\xf6\x09\xf2\x14\xdb\xf7\xe4\x2b\x7e\x34\xbc\x84\x45\x05\x78\x66\x1b\x5a\xae\xe4\xca\x56\x1e\xae\x1e\x2f\x73\xa4\xe6\x00\x57\x5d\xb0\xd0\x5d\xe7\xc8\x87\xcd\xfb\xa3\xec\xd1\x09\x1d\x01\xcc\x87\x9d\x2d\x61\xe0\x50\x1e\x6e\xab\x5e\x07\xd8\x75\xf6\xa0\x47\xae\x99\xbf\xa2\x1f\xbf\x05\x64\xca\x32\xb5\x5e\xc8\x81\xf7\xd9\x07\x74\x7a\xa2\x4a\x16\xdc\x94\x2e\x31\x48\x49\xcd\xe0\xd7\xdd\x3a\x0b\x5a\x34\x95\x5d\x39\x70\xe4\xf3\x8c\x1e\x01\xac\x46\x31\x22\x99\x7e\xdd\x9d\x20\xb5\xd6\x29\x51\x00\xc7\x82\x9c\xe8\x3b\x79\x24\xf3\x77\x72\x47\xa6\x8f\x1d\x2b\x67\x56\x64\x31\x58\xe4\x54\x5a\x6d\x40\xa7\xc8\x7a\xc4\xd4\x81\xbd\xd1\x66\x67\x5b\xaf\x36\xe4\x3b\xc6\xae\xc9\x77\x8e\x5e\x33\xbe\xab\x6e\x7a\x01\x81\xf3\xbe\xd5\x33\xe0\xf8\xce\x40\x19\xc3\x69\x50\x21\x03\x54\xbf\xe8\xe4\xe1\xca\xb0\x45\xd7\xdd\x5a\xdd\x84\x8e\xf5\x57\xbd\xbd\x0f\xa7\x44\xa7\x60\x40\xb1\x2a\x00\xfb\x82\x7d\xb2\x41\x0c\xc6\xff\xa8\x9f\x89\x7e\x73\x16\x7f\xb6\x54\xe0\x1d\x29\xda\x5d\x90\x8e\x1d\x3f\xf3\x19\xfc\x03\xd7\xb9\xf3\x83\x08\x68\x51\x98\x13\xc5\x55\xa0\x83\x29\xb4\x01\xfb\x49\x43\xa6\xb8\x8d\xa8\x19\x71\x83\x32\x82\xd5\xd4\x26\x14\xec\xfe\x5c\xad\xa8\x54\xba\x19\xf6\xd0\x65\x45\xae\x8a\x77\x83\xfe\x7d\xbb\x7a\x1a\x78\x0d\x76\xe3\x02\x46\x35\x5c\xbf\x1b\x5c\x58\x0d\x97\xe1\x1e\xa9\xb3\xb0\x43\x3b\x9d\xaa\xf8\x34\xcf\xdc\xdf\xab\xfb\x8c\x9f\xdb\x03\xd5\x9f\x65\x1b\x95\x33\x35\x1f\xe6\x42\x42\x85\x69\x9e\xc0\x19\x0d\xf0\x5d\x89\x76\x79\x0e\xcb\x53\x01\x4a\x66\x51\xc7\x89\x45\x4c\x57\x66\xd9\xf8\x29\xc2\xe3\x63\xf5\x15\x6b\xf6\x91\x0f\x79\x79\xf4\x11\x52\x0d\xd2\xaa\x4b\x08\xa0\x72\x9b\xe3\xa2\x9e\x7c\xd1\x2d\x03\xc1\x64\x21\x3b\x63\x86\x0a\x74\x81\x89\x88\x2a\xab\x14\x94\xf7\xbd\x11\x71\xf0\xce\x9f\x3e\x3b\x49\xae\x03\x68\x76\x27\x3f\x70\x76\xe9\x0e\x96\x56\x39\x2e\x49\x6c\xe0\xdc\xba\x32\x50\xa1\xde\xb2\xc8\xae\x9c\x78\xc0\xc8\x22\xc4\xb5\xb9\x12\xf2\x7b\x6b\x4f\xf9\x6f\xad\xe1\x47\xc7\x7e\xc3\x5e\xcd\xae\x9f\xc2\xba\xe1\x41\x86\x9d\x48\x3d\xdf\x14\x6e\x80\x1e\xd1\xe2\x1e\x2b\xc7\x9b\x04\x1d\xa6\xef\x9a\x56\xcb\x65\x55\x19\xce\xa2\x26\x52\x96\x88\x2f\x71\xe3\xbb\xbe\xab\x8f\xbb\x15\xc7\x2e\xfc\xce\x2c\x62\xe3\xf7\x09\x52\x63\xfc\xef\xe9\x2b\xc7\x8e\x63\x08\xd5\x71\xbf\x5a\x84\xbf\x48\x2f\x51\x19\x06\x70\x38\xcb\xa7\xe0\xde\xcf\xe2\xcf\x8c\xe6\x85\x82\x89\x07\x01\x30\x12\x1b\xaf\xa8\x41\x68\x59\x8a\xf8\xfa\xc7\x6a\xb8\x37\x82\x2c\xb0\x14\x68\x5f\x1f\xbd\xc4\x52\xa9\xb2\xcf\xac\x88\xab\x63\x67\x58\x9f\x29\xc8\x6e\x3d\x06\xd1\xb7\xf5\xe0\x51\x78\xe5\x3c\x89\xa2\xc2\x47\x0f\xb1\xb1\x9d\xf4\xa8\x6c\x61\x38\x7c\x88\xbf\xa9\x5f\x35\xf4\x52\xad\x0a\x88\x32\x4b\xd0\xa7\xc8\x46\x81\x51\xa6\xb4\xc4\x74\x40\x84\x46\x86\x57\x89\x94\x0a\x8d\xfc\x6b\x0d\x17\x60\x00\xa3\x0b\x33\xc1\xab\x87\xed\x91\x15\x15\x80\xcc\x73\x44\x9a\x23\xd6\x2d\x5a\x01\x61\x5a\x94\xc7\x68\xe4\x66\x49\x44\x35\xef\x96\x80\x75\x87\x73\xbb\x7f\x83\xbd\x9d\xd1\x76\x45\x74\x47\x3c\x1b\x62\xa1\xb2\x95\x1a\x7a\x94\xa0\x21\x49\x28\x94\x51\x4b\x9c\x5d\x58\x06\x66\x9f\xf3\xa8\x22\xf5\x05\xe3\xa2\x10\x30\x56\x67\x1b\x64\x11\xb5\x58\x58\xa0\xa3\x2b\xd1\x63\xc8\xea\xcb\xe5\x4f\x59\x48\x15\xab\xbf\xc3\xd5\x38\x7c\x48\x28\x9f\xa2\x79\x7e\xd5\xb6\x33\x8c\xc9\xe1\xea\x4b\x55\x4c\x41\x6f\x7e\x0e\xa3\x63\x09\x0e\xc5\xa8\xd5\xa5\xe6\xe6\x1d\x05\x60\xab\x12\x65\x58\x22\x60\x86\x51\x9f\x52\xa3\x5b\x31\x1c\xd6\xcb\x9c\x80\x7f\xad\xaf\x24\x28\x16\x05\xd2\x3e\xbb\xa8\xaa\xe3\x61\x05\x92\xee\xc3\x36\x78\x99\xf6\xf8\x34\x70\x94\xcd\xdb\x17\x10\x23\x4b\x25\xc7\x07\xa8\xd9\x39\x90\xa4\xc2\xf5\x17\xc1\xec\x53\x5c\x13\x9a\x2c\x08\x58\xe4\xe0\x0d\xf2\x5b\x63\xaf\x0e\x48\x80\x96\x85\x6a\x6e\x28\x13\x9c\x5f\x09\xee\x4f\xa9\x6b\x89\x3e\xc3\xba\x51\xb8\x2c\x7f\x54\x0d\x51\x11\x39\xec\x62\x35\x56\xc2\xa4\x54\x06\xcc\x2f\xe5\xe8\x6c\x32\x6f\xa7\xce\xa6\x1e\x5f\x8f\x1e\x27\x08\xd6\xe4\xe7\xc6\x03\x8e\x00\xa2\x18\xde\xe6\x2f\xb7\xe3\xb3\x51\x20\xfd\x28\x4f\xa2\x2a\x6d\x62\x3f\xfa\x88\x54\x1e\x5d\x66\xf6\x96\x89\x1d\x54\x9f\x4b\x70\xd2\x51\x1d\x1f\x9c\x59\xa2\x13\xa2\xbe\x17\xc8\x57\x90\x9b\xbf\x7c\x17\x2e\xaf\xa8\x88\x3d\xa9\x81\x79\x6f\xd5\x27\x91\xf0\x25\x06\x08\x78\x6d\x2b\x73\x80\x51\xac\x1d\x97\x31\xf2\x5d\xae\x55\xda\x5b\xb3\xa0\x27\xb1\x97\x46\x49\x19\xb9\x0f\x28\x44\xcf\x1c\xe1\x1c\x3a\x81\xf2\xb0\x9d\xd5\xac\x6a\x84\x38\x7f\xf2\x13\xdc\xc2\x13\xdf\x09\xae\x51\xc5\xc4\x94\x78\x9f\x11\x88\xee\x37\x1d\x96\xbb\x36\xc0\xe3\xbd\xa7\x57\x72\x2b\x20\x3a\x19\xa3\x58\x9c\x0a\x16\x56\x24\xd2\xad\x4b\x2f\xae\x87\xee\xaa\xba\x0a\x76\x40\xae\xc8\x5d\xab\xc0\xc5\x8b\xf9\x02\x60\x44\xd3\xe3\x40\xd8\xd8\x62\x9f\x32\x74\x0d\x27\x86\xa8\x6e\xd0\xa8\xe4\xd1\x4d\x2e\x3f\x48\x85\x63\x12\xd7\x75\x9b\x65\x27\x25\x60\xbf\x63\x5f\xb8\x38\x0b\xec\x58\xde\x16\xbf\x7d\xa1\x0d\xc4\xd3\x50\xe0\x7a\xac\xa3\x83\xda\xa3\x25\xf6\x73\x7d\x19\x54\x35\x8f\x4c\xd1\x12\x5f\x22\xcb\xb3\x6a\x02\x97\xd4\x80\xd0\x2b\xaa\x21\xe0\xe8\xa2\x83\xa5\xa0\x1f\x35\xdf\x7c\xb2\x06\xfb\x9a\x0a\x01\xbc\x58\x96\xf9\x4b\xbc\xb0\x19\x30\x31\x26\x01\x4f\x41\xbf\xf4\x76\x35\x60\x5a\xdb\x9d\xbb\x2e\xb5\x12\x1b\x8f\x2a\x83\xd4\xd6\x01\x6e\xc0\x01\xb8\xd4\x81\xab\xaa\xc9\x4a\xcc\x13\x12\x37\x98\xde\x2a\x02\xf4\x60\x44\x88\x10\x72\x96\x77\x12\xb8\x10\x83\xf5\x24\xaf\x05\x30\x16\xc3\x6e\x4d\x46\xdd\x7c\x76\x8f\x65\xf7\xd4\x3a\xbc\xfd\x85\x6c\xdf\x30\x55\x69\xce\x6f\xa2\xa2\x46\xdd\x7c\xa9\x55\x4a\x76\x19\x15\x23\x18\x9b\x45\xbd\xcc\xce\x61\x66\x8d\xd4\x2e\x3c\x74\x05\x0e\xcf\x5f\xa4\x44\x05\x9d\x45\x3d\x78\x31\x62\x9c\x3e\x65\x6c\xe0\x5e\x53\xe1\x10\x85\x05\xee\xf2\xda\x01\x70\x55\x1b\x44\x24\x9f\xed\x93\x19\xd1\x9c\x12\x19\x4d\xef\x1d\x6e\x2e\x03\x18\x1d\x94\xbb\x03\x97\x5c\xcf\x47\x02\x8d\xfa\x6e\x72\xc6\xbc\xda\x5a\x5b\x68\x3d\x5c\xec\xde\xb2\x09\xbd\x71\x21\x01\x8d\x87\x8a\x96\x3d\xc3\x7f\x59\x47\xbf\x79\xf7\x5b\xcf\xea\x1b\x36\x6c\x07\xdf\xbc\xf7\x2d\x30\x6b\x47\xbf\x79\xff\x5b\xca\xbe\xd0\x59\x37\xdb\x9f\x3b\x85\x56\xf8\x4d\x8b\x60\x2d\xf4\xaf\xa6\x76\x12\x4b\x54\xa9\xda\xa7\x1d\xb7\xe6\xa1\xbe\x19\x38\x22\xca\x0e\xa3\x89\xc5\xf7\x68\x7b\x9a\x4a\x7c\xe6\x33\xcf\xa1\xbf\x8a\xa4\xc6\xcf\x7b\x41\x69\x66\x3a\x0e\x7b\xb9\x56\xca\xca\xdc\x3d\xa4\x08\xe1\xed\xeb\x89\xc9\x4b\x29\x4a\x4e\x7e\xe6\x3b\x1c\x35\x4c\xda\x29\xe0\x94\x61\xf0\x2a\xff\xc4\x3f\xf0\xaf\x0f\x69\x6e\xc4\xa5\x72\x33\xdf\x45\x3d\xb9\x91\x09\x62\xe3\x2a\x92\x52\x65\xce\x56\xb6\x88\x18\x85\xe2\x54\x1c\x89\xd1\x72\x91\x8c\x28\x06\x02\x58\x9d\x18\x77\xd5\xa6\x75\x11\x20\xf2\xd7\xe7\xd5\x49\x42\x24\x9a\x33\x20\x3b\x1b\x15\x02\xac\xb0\x25\x59\xca\x6b\xfd\xdb\xd6\x89\xc7\xff\x5d\x62\x54\xbf\xbd\x19\x63\xdc\xdf\xc5\x36\xcf\x41\xd6\xb9\x9f\x9a\x83\xff\xda\x55\xbb\x8c\x9a\x20\x52\x14\x10\x14\x1b\x68\x73\x16\xc3\xbe\x59\x77\x51\x0f\xc0\x52\xfb\x1c\x88\x0d\xbc\x24\xf1\x5a\x52\x40\xba\xa7\xc8\x93\x3c\xc2\x56\x56\xd5\x29\x6f\x50\xfd\x5d\x85\xff\x80\x48\x02\x42\x20\x5e\xcc\x63\x33\xad\xa7\x3a\xb8\xd7\x84\x72\xca\x59\xe5\x8e\xce\x2a\x9d\xd9\x49\xf6\xe8\x42\xb1\x6c\x63\xa6\xb5\xb6\x09\x22\x08\x1c\x02\x33\x36\x25\x1e\x7d\x35\xcd\xd2\x71\x13\x48\xc8\xf9\xbb\x71\x0b\x20\x5b\xff\xf5\xd6\xc7\x0e\xb3\x5d\x70\xe0\xb6\x78\xb1\xda\xda\x7d\x12\x2d\x71\x3c\x01\x8d\x1a\x67\xee\xb4\x9d\xe1\x98\x43\xfd\x8d\xef\x4b\xc9\x40\x61\xdc\xf0\x09\x80\xbc\x5b\x74\x15\x0b\xd0\xbe\x35\xdb\x9a\x78\xda\x01\x80\xea\x58\xbe\xbe\x13\x57\x2d\x03\x44\x88\xef\xc5\xf8\x00\x14\x8f\xe2\x37\x12\xc3\xa7\x4d\x8b\x4b\x62\xce\x58\x89\x32\x09\x98\x10\xef\x8a\xb4\x71\x24\x14\xf9\x07\xc2\x24\x2c\x81\xb2\x3e\xa4\x44\x14\x0f\x5a\xe3\x46\x45\x9e\x31\x32\x02\x4e\x86\xa3\x4f\x12\xe6\x3f\x52\x0f\xa7\xf7\xa3\x55\xf7\x22\x7f\x45\x16\xc0\xdf\xb1\x63\x19\xc8\x5c\x78\x6e\x2a\x39\x40\x2f\x76\x2c\xf1\x30\x38\x27\x7c\x32\x2f\x19\x5c\x1e\x4f\x06\xd3\x8b\x5d\x20\x65\x1a\x04\x1e\x8c\xad\x21\x83\x45\xa2\x5f\x7b\xf1\x92\x76\xfe\xe1\x06\x00\xc3\x30\x76\xf7\xd9\x0b\x31\xaa\x18\xc9\x8e\xd8\xcd\x23\xd6\x3c\xe6\x64\xc9\xe0\x3f\x1d\xfd\xf2\x7f\x33\xf2\x5f\x55\x2c\x17\x9c\x08\xb0\x7f\xa4\x5f\x16\xff\x52\x20\x40\x90\xab\xb6\x57\x2b\xa2\xf8\x05\xd4\x78\x62\x1f\xe3\xbc\x9f\xcd\xc1\x71\x89\x20\x28\x49\x10\xeb\x3e\xb8\x9b\x93\x83\x40\x40\x50\x7c\x96\x32\x56\x93\x50\x99\xd5\x67\xe7\x73\x35\x0f\xc5\x68\x0c\x07\x2a\x17\xac\x41\x4c\x59\xa4\x64\x60\x0b\x41\xec\xd3\x36\x46\xb7\x73\xf3\xe8\x79\x6b\x66\x7c\xca\x7c\xa7\x5b\xcf\x15\x51\xdd\x39\x0c\x54\x09\x01\x2c\x01\x80\x1e\xfc\x21\x74\xff\xf0\xa1\x3d\xdb\xf2\x87\x5c\x51\x9b\x78\xbf\x37\x6f\x62\x20\x55\xef\x50\x0f\xef\xe0\x75\x5c\x10\xb2\xf5\x0f\xf4\x43\x88\x97\xac\x21\xf3\xed\x9c\x98\xcc\x32\xe5\x6c\x05\x41\x87\x95\xf7\x14\x9d\x55\x48\x57\x5e\xb2\xa1\x4b\xba\xba\x0b\x42\x33\x3d\x26\xa1\x1f\x60\x1c\x97\xa2\x91\xf4\xb7\xe5\x94\xa1\x82\xfa\xfe\xbe\xfe\xae\x9a\xa7\xa6\xe4\x72\xe6\x5e\xf8\xcb\xbf\xaf\x75\xa8\xfd\x1f\xbe\xf5\xf4\x14\x72\x7d\x78\xf1\x62\x4e\x37\xf6\x3e\x3c\x6e\xfc\x88\x03\xb1\x2c\x7e\x9c\xff\x6b\x16\x91\xde\x18\xb1\xc8\x56\x4e\x81\x05\x55\x2c\x97\x28\xa0\x08\x0d\x5d\x45\x83\xf1\x67\xc9\x2d\x65\x6e\x21\x8c\xb8\x62\x57\x51\xa5\x2b\x0b\x09\x70\x3a\xeb\x81\xb9\x2a\x99\x2f\xe8\x3f\x26\xb2\x48\xc1\xc9\x8e\x46\xb5\x5f\x90\x2c\x5f\xc2\x2d\x88\x5b\xc0\xd4\x46\x70\x20\xc8\xfa\xf8\x09\xfc\x8d\x69\x96\x3a\xc7\xa7\x9b\x62\x48\xab\x50\x23\xdf\x46\x45\x3e\xb0\x12\x2a\xcd\x4c\x0f\x27\x3d\x70\xc7\x03\x32\x60\xe7\x4f\xa1\xcf\x2f\x66\x74\x42\x43\x5a\xd1\xc9\xfb\x96\xfa\x8a\xa8\x4d\xee\xd8\x98\x77\xab\x52\x75\x07\xaa\x14\xb1\xa6\x33\x7c\xc1\xbd\xe7\x0d\x52\x2e\x2e\x04\xe8\xb7\x87\xac\x92\x4b\xac\x99\xee\x02\x6e\x9b\x2c\x29\xfe\x69\xa6\x8c\x33\x92\x5b\x49\xaf\x2b\x96\x1f\x4b\x2c\xae\xe5\xa6\x6c\x86\xd9\x2a\xa9\xd4\xd3\x1b\x7e\xcb\x3f\xb8\x69\x75\xee\x7d\x3a\xbd\x78\xcc\xd5\xc4\x3d\x7d\x62\x95\xba\xa4\x7b\x8f\xa2\x29\x15\xfc\xa9\xb1\x4e\x0e\x35\x85\xe8\x67\x8a\x7b\xe0\x16\x71\x23\x3c\xb7\x78\x1a\x56\xc7\x8f\x63\x4b\x9c\x8e\x10\xe6\xa4\x9e\x67\xc2\xd5\x5a\x59\xce\x1d\x55\x22\xe5\xa2\x97\xf9\xae\x73\xb2\x82\xc3\xdd\x26\x6a\x92\x29\x82\x2a\xc7\x31\xe9\x1f\xff\xe1\x68\xe1\x9f\xf8\xec\x7a\x98\x4c\xab\xc3\x2a\x83\x1f\x79\x2d\x4d\x77\x39\x9c\x31\x34\x3d\x94\x73\x28\x0f\x16\x66\x09\x41\x20\xf8\x1b\xc3\xb6\x4c\x85\x1f\xe9\x96\xc4\x05\x2c\x92\x8a\x8d\x72\x53\x19\x60\x48\x06\x06\x44\x5c\x1b\x10\x49\x07\x49\x10\x74\xe3\x04\x71\xc5\x4b\x29\x47\x9d\x71\x0d\x10\x86\x04\x33\xd6\x1b\xd7\x1f\x84\xeb\xb7\x95\x1e\x2d\x31\x9e\x8c\x62\xc2\x93\x5d\x64\xd2\xda\xb6\x87\xe0\xbe\xee\xc3\x7b\x04\x4d\xb5\x24\x28\xe9\xa9\x36\xf6\xcf\x61\x8a\xc8\xbb\x68\x15\x91\x98\x8a\xbd\x9b\x06\x8b\x63\x76\x60\x2a\x68\xd2\xd7\x4a\xb3\x65\xc9\xba\xac\x10\x17\x55\xb8\xf9\x5d\x4f\xda\x98\x2e\xda\xbc\x28\x2f\x13\xd9\xbc\x62\x53\xb4\xd1\x6b\x98\xb4\x64\xb1\x02\x9d\x60\x43\x9a\xcb\x32\x26\xc4\x5a\xd5\x76\x2c\x15\xa0\x37\xcd\xde\x19\x68\xdc\x79\x6b\x18\xfe\x77\xac\x54\x3a\x56\x28\x90\xc1\x2b\xd8\xbb\xad\x13\x25\x25\x17\x40\xf3\x3e\x7a\x09\xd8\x4e\x26\x9a\xa4\xc8\xbb\xc6\xa8\x69\xf0\x86\xe9\x0b\x87\x00\xc6\x26\x89\x3b\x2d\x6c\xcc\xe4\x4d\x98\x6e\xb8\xc4\x5a\x51\x5c\x3e\xf4\x99\x21\xc3\x41\x63\x7b\x1b\x83\x57\xf4\xe6\xcd\x9d\x43\x2f\x1f\xad\x14\xba\xfa\x23\x46\x6b\x49\xa0\x9c\x39\x89\x38\xa7\x6d\x94\xc4\x58\xd1\x03\x87\x99\x3a\x7f\xec\x91\x6d\xc6\x24\x89\xb2\xa8\x80\x2e\x31\x0b\xf5\xe4\x72\x24\x58\xda\xf4\xbe\xba\xf0\xb4\x1a\xf8\xb5\x6c\x2d\xfb\x6c\xa4\xf1\xb4\x69\xbd\x74\xcc\xaa\xc3\xad\xcd\xcc\xe0\xc9\x66\xee\x44\x62\xcf\x1e\x4e\x2e\xe6\x65\xe2\x39\xf1\x74\xb1\x91\xf6\xc3\xd5\x42\x1d\x25\xfc\xe0\xe8\x17\x05\x37\xe8\xba\xa7\xb4\x87\xe9\x5f\xec\x3e\xab\x3d\x71\x27\x58\x9f\x33\x20\x06\x30\xd1\x9f\x01\x44\xa9\xee\x92\x40\xc0\x41\x3a\x79\x23\x19\x69\xfa\xa0\x0a\xc8\x88\x54\xb3\x3f\x90\x62\x78\x66\xb3\x7d\xf5\x81\xb8\x87\x60\x54\x85\x86\x4a\xc9\x6f\xab\xcb\xc4\x39\x5e\x77\xc4\x2a\xa5\x2e\x4b\x24\x4e\xe6\x48\xc6\xdf\x24\x52\x22\x2d\x42\x02\xa3\x27\xa2\x6b\xa0\xc7\x68\xdc\x07\x2e\xd9\xeb\x47\xb3\x32\xc5\x79\x89\x93\x02\x3b\x4d\x3c\x9a\x4c\x01\xd4\x3e\x6a\x2c\xc9\xa2\xbb\x24\x0f\x9b\xea\xb7\xc6\x7f\x46\x27\x26\xb6\x97\xc6\x13\x28\x45\x2e\x67\xf5\x45\x23\x56\x4d\x77\x40\xf9\x65\x29\x9c\x13\x59\x2e\x8f\xed\xf5\xe8\xa0\x61\xd8\xe5\xb4\xa3\x8d\xe9\x80\xca\x4e\xaa\x86\x69\x36\xda\x28\x53\x8a\x44\xcb\xb1\xd8\xe8\x12\x00\xe6\x71\x51\xfd\x90\x8b\x1a\x79\x2a\xb5\x47\xce\xc1\xdc\x24\x4d\xe7\xd6\x44\x38\x72\x1d\xf3\x2d\xee\x4f\xb7\x6e\x4d\xc7\x27\xa0\x57\x08\x53\xb7\xc1\xc1\xc8\xbe\x9b\x39\x66\xe1\xed\x4e\xbb\x83\x57\x8d\xc5\xce\x63\x96\xd3\x4f\xce\x30\x34\x5b\xba\xce\xe1\x22\x2e\x38\xa7\x9d\x42\x2d\x57\xa4\xd4\x5c\x69\x3b\xa4\x9b\x7d\xcf\x6c\x16\x38\x1e\xf2\x69\xe8\xda\x34\x70\x08\x46\xda\x60\xbe\xe5\x75\xfa\x57\xc0\x60\xe6\x46\x6d\xae\xe1\xa5\x76\x8c\x37\x83\xa8\x0f\x84\x4b\xa2\x80\x59\x4b\x07\x9a\xc5\xf8\x08\xf6\xab\x47\x47\x2e\x76\xbe\xd7\x6c\xcc\xef\x3b\x17\xde\x5c\x29\xc2\xe7\x88\xe7\x51\x5e\x4e\xc7\x3f\xfa\xf2\xcb\x3f\x9f\x8c\xfc\x9b\xfa\x80\x47\x2b\x17\x60\xe0\x3d\xdd\x9b\x7b\xaf\xb3\x39\x5a\x2c\xb2\x0b\x96\x61\xf0\xc5\x61\xf1\xe4\xa7\xa9\x83\x70\x58\x95\xb4\xb4\x8a\x35\x8f\x0e\xcb\xdb\x16\x07\xb8\x53\x96\x5c\xa0\x19\xc8\xcd\xbf\xcd\x0a\x2c\xe0\xa0\x95\x0a\x93\xd6\x95\xb7\x00\x44\x15\x68\x25\x22\x5c\x6e\x7c\x55\x13\x43\x25\xdf\x03\x9c\xfe\x67\x1d\x3d\x5b\xc4\x35\x63\xb8\xd9\xdb\xe4\x3f\x85\xa0\x12\xf5\xd0\xc7\x42\x6f\x09\x39\xb8\x82\x0d\xdc\x4d\x01\x06\x01\x04\x00\x77\x45\x91\xe7\xd7\x75\xfa\x5e\xf7\x4e\xd9\xef\x2a\xad\x57\x0e\xb7\x80\xa9\x72\x44\x16\xb1\x92\xbe\x53\x3a\x68\x33\xa8\xb3\xf7\xb9\x33\x33\xf8\xe2\x94\x6d\x57\x8c\x1e\xe2\x83\x8f\xec\xe3\x4c\xe0\x22\x6f\xb6\x94\x2d\x22\xd9\x8e\x16\xca\x02\xb4\x23\xf1\xa2\x1b\xa5\x8d\x22\x74\x0c\x5a\xdb\x11\x82\xd4\x79\x04\x44\x79\x08\x50\x91\xab\x9f\x86\x2a\xe5\x4e\x01\x2f\xab\x08\xa9\x24\xe7\x31\xc8\x69\x5a\x83\xec\x12\xab\xbc\x88\x34\xc1\x55\xd1\xb6\x9d\x43\x89\x3b\x47\xc6\x9d\x22\x93\xbd\xa0\x37\xb9\x89\x80\xda\xaf\x9c\x28\x69\xca\xf5\x99\xac\x10\x29\xab\x68\x24\x66\x40\x8b\xae\x1e\x1f\x1e\x23\x46\x7a\x23\x66\x24\xbc\xae\xae\xc3\x10\x30\xe8\xf1\xda\x0d\xbe\x23\xe2\x6d\x52\x40\xbd\x43\x51\xd2\x59\xce\xfd\x94\x12\x54\x0f\x9c\x8a\xc4\x1e\xab\x18\xe9\xe0\xda\x4d\xce\x64\x86\x5e\x3c\x34\xf2\xe6\x99\xed\x2e\xc3\xc6\x89\x0f\xd9\x7d\xc8\x19\x48\x30\x4e\x3a\xf7\x40\xac\x03\xdf\x13\x51\x39\xbb\x7c\x61\x5c\x3a\xa5\x39\x45\xf7\x7a\xf2\xca\x6e\x6c\xa1\x86\x0d\xf9\xb8\xe9\x71\xf8\xde\xd8\x9e\x42\x17\x86\xa5\x33\xa8\x9d\xa3\x2f\xe4\x0a\xc5\xa1\x3a\xd6\x89\x3f\xf7\x9e\xb4\x74\x74\x27\xbb\x34\x1c\x9c\x6e\xfb\x2f\x3c\x5e\xb4\xe4\x8c\x87\x0f\xe6\x39\x4a\x84\x13\x70\x52\xe6\x7a\xcd\xc4\x19\xe3\x97\x39\x46\x9a\x51\x89\xab\x92\xb6\x0e\x80\xec\x0c\xc3\x12\x88\x58\xfc\x15\x6a\x8b\x92\xc2\x24\x9e\x6d\xcc\x0b\x8e\xd4\xd5\x12\x7f\x8e\x83\x42\xb0\xba\x0f\x41\x21\x92\x8c\xf6\xb5\xe1\x58\xc9\x96\x7a\x94\x80\xae\xa5\xf2\x14\x08\xaf\x82\x57\x29\x66\xff\xa1\x3f\x52\x60\x58\xd2\xf0\x32\x9f\xf2\x7f\x53\x20\x2a\x9c\x11\x27\x23\x99\x71\x52\x20\xfa\xdc\xc2\x70\xe6\x63\xf8\x27\x85\x35\x95\xd4\xe7\x9a\x31\x45\xd4\x9e\xdf\x94\xd7\x1b\x1e\xb5\xd0\x79\x74\xae\xb1\x7f\x0d\x4f\x91\x4a\x1f\xca\x31\x14\xe8\xbb\x4b\x98\x87\x74\x84\x12\x31\xa2\x68\xce\x38\x4a\x7e\x3e\x71\x64\x90\xfe\x48\xfd\x2e\xbc\x0f\x59\x2b\xa4\xd7\xe5\x07\x1c\xfe\x8a\x47\x69\x62\x5c\x3b\xd4\x87\xab\x3f\x35\xf6\xa7\x54\x18\xe9\x3a\x45\x04\xa1\xd4\x12\x19\x3b\xc8\x75\x5d\x98\xad\x95\x39\xd4\xfe\x53\x83\xd2\x0e\x39\xa8\x70\x1e\x64\x44\x5c\xe0\xc6\x66\x7e\x06\xf6\x2a\x7d\x68\xe4\x41\x2d\x33\x10\x5b\x45\x07\x8c\xb2\xea\xc9\xb0\xa9\xcd\x4e\xca\x2f\xd0\x2a\x70\x96\x60\x3b\x58\x6c\x83\x0c\x08\x7f\x4b\x39\x29\x70\xee\x23\x57\xdb\xa3\xe7\x45\xd9\x89\x67\x55\xe9\x3a\x59\x63\x8e\x1e\xe4\xab\x67\xda\x8b\x9b\x7c\xc8\xf9\xe8\xe9\x44\x66\xc1\xdc\x05\xe3\xc0\xeb\xdc\x3a\x9a\x79\xd6\x39\x1e\x81\x85\x45\x69\x95\x12\x5c\x72\x1c\x38\x48\x0d\x20\x4e\x83\x58\xff\xdf\x7a\xff\xfc\xa5\x45\xe1\x62\xd4\xef\xf7\xc7\x86\x86\x86\x8e\xe1\x41\x3b\x56\xab\x16\xed\x32\x7e\x2c\xc8\x98\x38\x8b\x91\x84\xa7\xc1\x98\xde\x94\x8c\x50\x44\x1a\x92\x11\xf3\xe2\x14\x54\xe6\x2c\xd3\xb1\xec\x4e\xe6\x95\x84\x1b\x60\x26\xd7\x67\x75\x81\x29\x05\xd9\xf9\xaa\xad\x82\xbf\x3a\xf6\xc8\x2b\xe6\xf2\xa7\xa2\x50\xf1\xaf\xe5\x8f\x0e\x08\x07\xba\xa2\x91\x7c\x06\x7f\x70\xb6\xeb\x04\x04\x1b\xaf\x8e\xe3\xbf\x46\x19\xaa\xfd\x95\xd3\x3f\x86\x43\xd0\x6d\x8f\xa1\x46\xd3\xe1\xf2\xb5\xd6\xfd\x2d\xd8\x29\x83\xde\xa3\x38\x4e\xdb\x48\x99\x88\x12\x8d\x90\x43\xa0\x5b\x2e\x0e\x53\x62\x5b\x5a\x10\xd9\x12\x2c\x51\x58\xc1\xf5\xe3\x38\xcd\xf5\x29\xb1\x5b\xc4\x69\x66\x3e\xb3\xd0\x2b\x58\xb3\xb9\x51\x89\x66\x75\x7b\x3a\xda\xe0\x80\xf1\xcc\xe7\xb6\x6f\x95\x90\x35\xc2\x5f\xd6\xd0\x20\x30\x63\xdc\x5a\x4a\x0d\xd3\xd2\xd0\xa5\x94\xd7\xe7\x63\x32\x97\xbc\x8d\x8e\xa8\x7e\x6e\xc0\x12\x97\x8f\xd4\x65\xc8\x9c\x80\x7f\xd2\x17\x48\x53\x30\xfc\x85\xf4\x3d\x67\xf0\x69\xe6\x81\xa3\x54\x85\x19\xc9\xa1\x43\xe1\xe3\x1d\xa5\x3a\xf3\xfd\xc2\x73\xf3\x22\x95\xab\x75\xe9\x8c\xe4\x8d\xe1\xa4\x0a\xb4\x97\x70\xed\x1b\xdb\x19\xdf\x05\x3c\xe2\x74\xbe\x8d\xcb\x44\xd1\xd9\x64\x90\x61\x92\x86\x68\x0e\x81\x68\x48\x3a\x87\x20\xa0\xdd\xba\xe8\xca\x62\x0a\xb7\xac\xba\x90\xd8\xc5\xd4\x2e\xd8\x71\x25\x2b\x77\x2a\xe6\x0d\x11\xef\x15\xc2\xc6\xd6\xea\x15\x7e\x8c\xc7\xe4\x59\xc4\x81\x88\x5a\x52\x4e\xe5\xb1\x25\xe1\xd3\x13\x11\x3e\xfd\xcc\x80\xf8\x98\x73\x74\x69\xcc\x50\xdd\x8b\x55\xd8\xf6\x7f\xed\x1c\x4c\x29\xbe\xce\xdc\x20\xc7\x5a\xa9\x28\xab\x44\x61\x22\x7d\x7f\xf2\x24\x03\xc7\x8f\x0f\xc5\xb4\x6f\xee\xb4\x47\x2f\xc5\x56\xaa\x52\x74\x87\xcd\x58\x62\x4e\x4b\xae\xc3\x5e\xcd\x79\x45\xc0\x2a\xc8\x3a\x1d\x96\x3c\x8f\xa3\x76\x31\x6f\x2e\xa5\x00\x45\x76\x9c\x93\x2c\x91\xab\x88\x59\x3b\x21\xf5\xc7\xf4\xb7\x29\x83\x4d\x04\xc0\x76\xd0\xc0\x78\xa4\xae\xd9\x51\x22\x52\x37\x8e\x37\x6f\x10\xb1\xdb\xd9\x96\x11\xb1\x1b\x5b\xad\xce\x48\x5c\xb3\x6e\x97\x50\xdc\xb4\xb9\x26\xd5\x94\xe9\x8b\x9e\x52\x21\xa9\xb2\x34\x2a\x46\x2a\x4b\xa5\xc1\x91\xfc\xf2\xca\x12\x9f\x08\x5a\xec\xd0\x5d\x1e\xd8\xaf\x16\x08\x3b\x06\x1c\xd3\x63\x16\x9c\xfe\xfe\x9e\xbe\xaa\x3b\xe4\x61\x94\x6b\xad\x9a\x07\x11\x6c\x64\xb6\x75\x6f\x8f\xdd\x87\x05\x00\xcd\xd1\x18\xb1\x56\x7f\xde\x7c\x32\xd2\xde\xb9\x21\x9f\xd9\x08\x25\x79\x24\x94\xa7\x2e\x95\x90\x6d\x30\x91\x67\x9b\x6c\x19\xc0\x20\xa0\x7c\x43\x97\xaa\xc0\x7a\x83\xee\x50\x16\xff\xa2\x40\x5d\x2f\x23\x6c\x19\x31\x64\xcd\x67\x9b\xad\xd5\xba\x02\xc4\x62\x59\xd0\xb1\x4d\x7c\xd7\x43\xdd\x32\x96\x38\x6f\xb0\x3b\x00\xc8\x52\x40\x96\xe6\x5f\x1a\x51\x78\xd3\xc1\xf4\x58\x38\xf5\x48\x57\x40\xcf\xac\x47\xb7\xc2\xd9\x8b\xc1\xd8\xdd\x48\x07\x13\x5c\x9c\x4e\x40\x70\x54\xa5\x86\x50\xeb\x05\xa7\xbc\xb1\x3d\xdd\x1e\x79\x4a\xc9\xe2\xe9\x1b\x79\x6f\x73\xc2\x19\x8e\xa1\x17\xc7\x6d\xed\x25\xde\xd3\xc5\x5b\x5c\x15\xb3\x43\x3f\xfd\x2d\xde\x3f\x88\xb1\xf2\x56\x98\x02\x2a\x54\x73\xfd\x7e\xa6\x35\x33\xd1\x5c\x7d\x15\x7d\xad\x54\x6d\x55\xb3\x7d\x73\x8e\x2b\x27\x6b\xc2\xe2\xe1\x2e\x34\xd7\xd6\x28\x42\x58\x7d\x8e\xb9\xaa\xa8\x8f\x39\x94\x08\xf0\x7d\x04\xcc\xae\x65\x0c\xb6\xf1\x72\x0a\xb3\x54\xbd\x78\x6a\xae\xfd\xd1\x42\xb4\x80\x09\xb7\x73\xcc\xd7\x80\x19\x1b\xc5\xdd\x5f\x0f\x85\xf0\x8c\xb3\xb4\x86\xdb\x73\x0a\xd3\x54\x31\x5c\xd3\xf2\x70\x4c\xcc\xa7\x27\x2a\x26\xce\xcf\x4c\x83\x15\xaf\xab\xde\xd6\x60\x2f\xef\xfa\xa2\x19\x0c\x81\xa9\x5e\x89\x56\xe0\xf1\x12\xf7\x99\xc4\xfe\xa8\x34\xf8\xbc\x05\x42\xff\x14\x8c\x62\x0d\xd1\xe0\x98\x2d\x29\xfa\x14\xbf\x47\xbe\xc8\x55\x4f\x15\xdc\xa1\x32\x0b\xb0\xb4\xb4\xca\x23\x4f\x35\x33\x54\x25\x25\x3a\x7d\x4d\x2e\x3e\xf9\x2b\xa2\x21\x72\xa1\x8e\xb2\xcb\xcd\x39\x38\x8c\x9d\x03\x30\xbd\x9b\x91\x05\xa4\x2c\x74\xc9\x6e\x90\xd1\xa5\x0c\xf3\xf4\xc4\x0b\x50\xb9\xd6\xee\x84\xbc\xdb\x95\x44\x1c\x3e\x56\xed\x91\x25\x1d\x61\xd4\x15\x93\x8c\x4a\x2a\x64\x50\x49\x15\xc1\x85\x49\x90\xf7\xa3\xac\x80\x3b\xdb\xad\xf5\x0d\xe2\x64\x04\x83\xc2\xc9\x05\xcc\x96\x37\xbf\x82\x61\xe0\x17\x37\x82\xdb\x67\x8d\x1c\x8e\xba\x03\xd4\x79\x01\x3b\xd6\x05\x91\x31\x2f\x3d\x9f\x03\xf4\x07\x03\x24\x4d\x9c\x06\x12\xff\xf4\x49\xa2\xd5\x15\xf4\x95\x1c\x50\x49\x44\xcb\x8a\xd9\x59\x12\xac\x99\x57\x8a\x79\xff\x88\xeb\x36\x3d\x11\xa0\xc7\xa5\x12\x81\xb9\xd5\x81\x6f\x8d\xf4\x98\x2a\xa7\xbc\x91\x1a\x93\x4b\x75\x92\x2b\x05\xf2\x67\x53\x8b\xfd\x47\xb4\x77\x7f\x49\x92\x42\xd4\x54\x22\xae\x96\xdb\x6c\x9f\xdd\x93\x04\xd3\x23\x53\xcd\x8d\x5b\xcd\x95\x75\xd4\xde\x3f\xb9\x14\xfe\x38\xcb\x41\xb5\xfc\x60\x12\xe5\x6f\x3d\xa3\x83\x86\xa2\x77\xee\x54\x76\x30\x0a\xeb\x61\x1e\x8f\x1e\x8f\x83\xf3\x2d\x3c\x1d\x26\x6b\xa8\xd8\x6e\x05\xcf\x82\xa1\x88\xa2\x3c\x8b\xf8\xd2\x96\xe7\x96\x6c\x72\x3e\x3f\x33\x82\x16\x84\x9d\x45\xb4\x42\x92\xd7\x20\xa7\xfc\xf4\xd4\xec\x29\x0f\x27\x66\xeb\x1a\xa2\x24\xe7\xa8\xef\xc2\xb7\xe8\x66\x54\x7b\x5c\x90\xc8\x1b\x37\x95\x12\xee\x84\xad\xc6\xdf\xff\x93\xa6\x71\xad\x98\xcb\xe3\x81\x8a\x71\x39\x3d\x17\xa8\x7c\xe7\x6b\x84\xbe\x77\xc0\x1b\x6f\x25\x99\x39\x8d\x30\x14\x90\xc3\x22\xf7\xcf\x49\x52\xa1\xf9\x97\xd0\x65\x30\xb6\xda\x7e\x28\xcb\x13\x65\x3c\xc5\x0e\xa2\x70\xb5\x91\x60\xf6\x6e\x6b\x6d\x93\xbb\x82\x63\x86\x33\xe4\xce\xe1\x56\x1f\xbd\xda\xd8\x19\x69\x6f\xef\xaa\x00\x4d\xaa\x8f\x4a\x7d\xc7\xf3\x34\x0f\xa1\x43\x5e\x29\x22\x91\xaa\x4e\x8c\xf0\x63\x53\x48\xcc\xd8\x16\xb5\x3e\xd1\xfc\xe5\x2a\x89\x79\xe9\x89\xf1\x0c\x7c\xfc\xbb\x73\xe3\x19\x6d\xbc\x26\x3e\x34\x7a\xaf\x90\xea\xfc\x56\x23\x69\x94\x10\x4e\xfa\x1c\x5b\x8d\x33\xd6\xe9\xaf\x6d\xea\xe2\x2e\xf9\xe1\x5e\x63\xad\xec\x32\xd6\x38\x70\x94\x5a\xc3\x80\xee\x2e\x0c\x89\xa9\x13\xf0\xf4\xdf\x63\xe9\x34\x0d\x5e\x29\xb6\x80\x44\x4a\xb2\x18\x61\x91\x3c\x6d\x52\x25\x52\x34\xca\xc9\x8f\x29\x1a\x3b\x6d\x1e\x19\x33\x17\x66\xa7\x8c\x97\x96\x62\xa1\x1b\xec\xeb\x73\x2d\xe8\x8c\x9e\xe4\x45\xf0\x5b\x73\x2d\x74\xb1\x2b\xa4\x26\x5d\xe8\x36\x46\x24\x27\xc2\x04\x30\xde\xc5\x32\x2f\xa4\x41\xab\x48\x61\x81\xff\x3b\xd3\x2f\xa4\x69\xe5\x31\xf2\x97\x92\xce\x8b\xc6\xff\xea\x8f\x86\x0c\xcd\x3a\x02\x79\x5f\xaf\xbe\x11\xe5\x42\xdd\x9a\x42\x40\xb5\x5a\xe2\x12\x41\x04\x55\xaf\x96\x4a\x66\xc5\xf4\x98\xef\xdc\xbc\xca\xcc\x29\x94\x39\x5e\xa8\x03\xb5\x01\xd9\xcf\x6c\x73\xe6\x04\x03\x86\x8d\x6b\x19\xfe\xde\xd1\x02\x97\xc6\x9b\xe0\xce\x22\x20\x36\x46\x19\x1e\xee\xaa\x40\x8c\x24\xe1\xd2\x63\x20\xbb\xc9\xa6\x61\xa3\xf3\x36\x06\xcc\x5f\xdd\x6c\x5d\x9e\x6d\x6d\x3f\x6c\xec\xec\x45\xa5\xac\xc7\xcf\x98\x49\x83\xa3\x42\x60\x03\x4e\xe3\xf3\x6e\x98\x6f\x56\xbf\xa7\x22\x65\x72\xcb\x69\x1d\x1b\x31\x58\x98\xd6\x95\xae\x3b\x72\xed\xc5\x0a\xc8\xdf\x46\x2f\x2d\x11\x51\x24\xf2\x9b\x68\x06\xdf\xe0\xe0\xdc\x2f\x5c\x9f\x12\xbc\xe2\x25\xd9\x83\x29\x54\x25\x7f\xaa\xba\xce\xb8\xc0\x1c\x5c\xbc\x04\x99\x15\xc9\xd3\x93\x69\x3d\x1e\x41\x03\x09\x51\xff\x94\x72\xcd\x0c\x1b\x37\x0e\x62\x0d\x59\xfb\x24\xce\xf4\xe2\xb4\x04\x5a\x03\x95\xdc\x7c\x14\x25\xce\x35\x92\xe5\x50\xb3\xc4\xb4\xaa\x7e\x83\x27\x0f\x31\xe3\x6b\xac\x5f\x13\xe0\x0d\x3a\xfe\xdb\xc8\xa8\x04\x7f\x5f\x94\xd0\xe3\xd7\x8d\x40\xde\xc4\x14\xca\xcb\xe9\x4f\x63\x23\x30\x01\x7e\xcb\x08\x30\xc7\x3d\xeb\x82\x61\x28\xfc\x48\x19\x3d\x32\x67\x32\x3e\x18\x0b\x41\x8d\xa4\x8d\x4c\x05\x7a\x47\x77\x73\x2c\xe2\x9b\x81\x22\xff\x1b\x02\x51\x57\x0c\x17\xb2\x9f\x42\xc7\xad\x1f\xe5\xbf\x96\x09\xcc\x1c\x7c\xac\x2d\xe6\x08\x4c\xd5\x01\x91\x4f\x20\x4a\x33\xea\x16\x7d\x61\x8a\x6f\x09\x6f\x96\x38\x7d\xe0\xa1\x69\x9e\x8d\x67\x26\x87\x88\xcb\xba\x78\xfc\xa4\x4c\x50\xe5\xfb\x21\x26\xce\x4c\xc6\x13\xc3\x6d\xd4\xda\x10\xfb\xa3\xce\x3c\xef\x46\x4a\xcf\x46\x7b\x2a\x1a\x8b\x97\x28\x46\xad\x3b\x61\xcd\x94\x46\xa9\xb9\x7e\x28\xf9\x9d\xde\x48\xf3\x16\x3a\x98\x80\x9b\x83\xc4\x64\x29\xc8\xa1\x9f\x0d\xee\x6c\x06\xe7\x77\xd0\x42\x9a\x4c\x4b\x9d\x4c\x48\xd5\x31\x50\xad\xb8\x22\x25\x71\x6c\x72\x11\x8b\x61\x9c\xf8\x0e\x86\x51\xe3\x22\xe7\xc2\x82\x31\xc4\xcf\x97\xc6\x01\x26\x22\xa6\x18\x2f\x78\x93\x98\x12\x70\xc2\x9c\x83\x3d\x41\x39\xf0\xad\x9c\xd9\x07\xd0\x8a\x91\x55\xd3\x24\x09\xff\xf7\x46\x66\x6a\x68\x98\x04\xc5\x32\x04\x75\xa1\x18\xaf\xe9\x1f\xb9\xf3\xc7\x57\xcd\x6e\xf9\x50\xbc\xd1\x82\xf0\x08\x3b\x29\x09\xbf\x72\xac\x89\x09\xe5\x17\x27\xcd\xb3\x32\xd8\x1b\xa3\x8c\xcb\x3e\xbc\xd1\x22\xfe\x24\x4e\x85\xf1\xe0\xb6\x79\x32\xe2\xd0\xe2\xb3\x40\x5e\x66\x7c\xf1\x75\xb6\x56\x06\xd1\x0d\xa5\x5d\xd4\x25\xa8\x84\xf1\xc1\x95\xcb\xad\xb5\x7b\xd2\xae\x41\xed\xb8\xb6\x91\xe5\x5f\xa5\x31\x37\xb2\xdb\xa8\x47\x6d\x68\xc1\xbf\xed\xfe\xfe\x3e\xda\xc4\xd4\xfb\xe5\x2a\x2d\x83\xc9\xd7\x2a\x8e\x5a\x95\xa5\xa4\x13\x57\x45\x98\x92\x00\xa3\x71\x15\x93\x6f\x24\x61\x57\x20\xfc\x7c\x5d\xec\xdd\x3a\x55\x24\x6e\x3c\x19\x7e\x0e\x2f\x9c\x9d\x6b\xde\xd9\x56\x65\x25\xb7\x8c\x5d\x46\xef\xd4\xc2\x1c\xd4\x04\xc8\x13\x27\x4b\x6f\xf7\xff\x11\xff\x94\x8c\x86\xf4\xe1\xf3\x1c\xfe\xf6\x5d\x1f\xd8\x91\x93\xf8\xef\xef\xad\xa3\x05\xd2\xb2\xaa\xd5\x20\x1d\x26\x2c\x3b\xb0\x5a\xd2\x38\x29\x38\xb5\x3e\x54\xc3\x69\x0f\x2f\x2f\xba\x02\x74\xee\xaf\xa8\xb5\x61\xd8\xc1\x12\xe9\x4d\x6b\x6a\x2a\xf8\xac\xee\xbd\xc5\xe6\xd4\x48\x38\x36\x95\xda\x73\x16\x1d\x1a\xf8\x2d\x83\xe8\xcd\x6f\x1a\x06\x70\x2e\xf8\x42\x55\x01\x5f\xa8\xc2\x97\x8a\xd4\xab\x80\xd3\xd1\x57\x54\x37\xd0\x06\x25\xbf\x72\x02\xc8\x8e\xaf\x82\x1c\x69\x5f\x39\xab\x4a\xb2\xac\xf5\xcb\x64\xec\x53\xf8\xe8\x16\xbe\x8d\x70\x66\x3b\xfe\xf5\xf6\x75\x3e\x93\x6c\x1d\xea\xe8\x80\xdc\x7f\x3b\xda\xa1\x00\xc4\x8e\xe9\xc4\xb3\x31\xc6\xcb\xf8\x95\xc4\xd4\x81\x72\x06\xa2\x8e\x1a\x86\xba\xb4\xa3\x8c\x1f\xfd\xa4\x97\x5b\x63\x05\x06\x4b\xdf\xd1\x8b\xf2\x41\x4e\x16\xb0\x36\xaa\x03\x9c\x1a\x69\xec\xec\x04\x53\x4b\x1d\x8b\x42\xe7\xb9\xa3\x1d\x4e\x8f\x9e\x5a\xa3\xbd\xf4\xa3\xb2\xfa\xa6\x60\xa6\x28\x69\xf9\x06\x54\x8f\xc2\xa7\x80\xf1\x63\x89\x18\xa7\x00\x0b\x99\x0e\x52\xad\x95\xe5\x75\x4a\xb3\x1c\x7d\xfc\x31\xba\x84\x72\x59\xba\x94\x67\x0a\xae\x68\x64\xfa\x96\x1f\x70\x02\x4b\x73\xef\x0e\xae\x19\xdd\xa6\xec\x92\x16\x6f\x41\x8c\xfc\x7c\xff\x1b\x49\x59\x75\x83\x72\x2f\x3b\xe5\xe4\x6b\x5d\xca\xc0\xa2\x9b\x65\xa3\xaf\xce\xe7\xf7\x06\x2d\x74\x0e\x4d\xb7\x01\xd3\x7a\xfd\xa0\x48\x85\x87\x59\x5d\x9c\xd3\x76\x7c\x38\x72\xe3\xac\x5f\x09\x1f\xcc\xbf\xae\x62\x62\x14\x66\xd5\x03\x86\x80\xaf\xaf\x0e\xe4\xd5\x2b\x92\xea\xcd\x73\x66\x12\x82\x1b\x67\x83\xe5\x7d\xf4\x81\x9b\x7f\xde\xad\x4e\x6a\xaf\x78\xe5\x18\x75\xa3\x14\x90\x94\xc6\x39\x31\x82\xaa\xed\x0d\x97\xf3\x59\x7a\x3c\xd4\x1b\x24\x63\xa7\xbc\x68\xc7\x99\x8a\xdf\xea\x81\xcf\xef\x70\xfa\x1a\xe7\x07\x9b\x6c\x82\xa8\xf7\x92\x37\x9d\xeb\xad\xf5\x7b\xc1\x05\x38\x15\x57\xe5\xcd\x56\xf5\x38\x3b\xdb\xca\x1a\x2f\x57\xe4\x69\x03\x11\xe2\x27\x0e\xee\x3b\x39\x1f\x22\x8a\xe6\x78\x52\x57\xd1\x68\xc7\x30\xb7\xc7\x27\x92\x58\x20\xeb\x6b\x02\xb4\xda\xf5\xf3\x44\x35\xea\xfc\xd8\x82\x7e\x88\x00\x03\x79\x75\x56\x7b\xba\xf8\xd4\x8c\xbb\xcd\xc0\xec\x39\xb2\x1e\xaa\xb5\xff\x0d\x43\x19\x4d\xdc\x78\xfc\x9e\x77\xad\x82\xfe\xb4\x19\xc9\x8f\x46\x67\x3d\x5c\x3a\xd3\x5e\xbc\x14\x3b\xb7\xb5\x2a\x1a\x1a\xb3\x03\x6e\xd5\xad\x81\x40\x61\x8b\x6d\x11\x76\x45\x3e\xd0\x9d\xd5\x1e\x9f\x4d\xab\x05\x22\x03\x30\x46\xd9\x1a\x65\x24\x12\xe1\x62\xec\x3e\xe0\xb0\xa4\xf4\x8d\xd7\xa2\x6b\x5a\xd5\x41\xe5\x66\x9e\x75\xe0\x1c\x48\x8f\x3b\x7e\x0e\x17\x8e\xdd\xc1\x30\xea\x3c\xaa\x2a\x95\xdc\x3e\x7c\x0b\x8c\xd2\x50\x73\x2f\xf3\x9d\xbd\x54\x5c\xca\xe8\x97\x2d\xc2\xb2\xd6\x2a\x59\x5c\x03\xe2\xe8\xdb\xe3\xd7\x39\xc5\x12\x9a\x21\x17\xb6\x52\x5a\x57\x43\x92\x3a\xdc\x07\x0f\xaa\x6b\x1d\x8c\xf3\x8f\xc1\xb7\xc7\xa7\xc2\xf9\x94\x3e\xd4\x92\x0d\xda\xb9\x4a\x6c\xc1\xac\x4f\xe1\x8b\x75\xc0\xb2\x51\x8d\xe4\x02\xc4\x2a\xa5\xac\x82\x59\xc9\x29\x80\xa8\x66\x54\x68\xae\x6d\xb7\x17\x2f\x1e\x54\x81\x5c\x08\xc4\x88\xa5\xdf\x69\x36\x07\xda\xad\xa6\x18\x7a\x0a\xe8\x5e\xcb\x2b\xf1\xba\x8a\x6e\xdf\xbf\xd8\x79\xdf\x93\xf1\x6d\xcc\xb4\x36\x6f\x75\xe2\x5b\x9f\xeb\xfa\xf8\xb4\x78\x05\x19\x2f\xf2\xf3\xa2\x14\x58\xe4\x5c\x68\xf5\xe2\x27\x2b\x75\xe9\x18\x3a\xb9\x76\x26\xaa\x49\xed\x14\x8c\xc3\x3c\x87\xd0\x5d\xb5\x96\xf7\x6b\x70\x68\xa5\xcf\x2f\x7a\x31\x3b\x22\x06\x99\xdf\x9f\x3a\x60\xcf\x3a\x6a\xa7\x77\xde\xd9\x5a\xac\x91\x7c\x2e\x3f\x68\xa7\x8c\xe1\x38\x7e\x7f\x83\x41\x74\xd4\xef\x32\x8a\xce\xf6\x62\x07\x8a\x5e\x6e\x41\x15\x7c\x5f\x2d\x7f\xca\xf6\x31\xaa\x66\x30\x4b\xc6\xed\xf4\x06\x83\x89\xc5\xf0\x06\xc8\x6b\xf5\x60\x6b\xba\x75\x6b\xb5\xb3\x45\xb8\x8b\x4a\xb6\x9f\x23\x97\x85\xf4\x16\xe8\x32\x82\x9b\xa8\x7d\xed\x5c\x30\x76\x56\x98\xe6\x8e\x76\x5c\x0c\x63\xcd\x0a\x4b\x2e\xa7\x17\x99\x1b\x83\x4c\xa0\x18\x68\xb6\xcc\x1c\x7b\x67\x53\x98\x98\x86\xef\xc8\xfc\x30\xf0\x32\x98\xa3\x06\x9d\x11\x62\xe3\x20\x72\x40\x17\x64\x62\xa1\x49\x1e\x81\xca\x44\x6f\x5b\x2f\xae\xb7\xaf\xdd\xe6\x54\xeb\x66\xfd\x4e\xda\xcb\xf4\x50\xd5\x8b\xf5\x65\x50\xeb\xe6\xd6\x5e\x2a\x1d\x85\x7a\x15\x8c\xe5\x8d\x55\x0c\xaf\x3e\x0c\x46\x97\xbb\x55\x54\xe3\xe4\x7a\x29\x43\x34\x6a\x27\xf6\x4b\x48\x5c\xe7\x18\x85\xd0\x89\x9c\xc9\x9e\xf6\x92\xd8\x1c\x70\xdb\x2e\xc6\x24\xcf\x98\x4c\xda\xd3\xf9\x6e\xb5\x18\x19\xd5\x93\x49\x0c\x95\x78\xb2\x94\xbf\x2a\x9e\x8e\xde\xab\x52\x6e\x7f\x52\x94\x4c\xdb\xc2\x9f\x85\x63\x62\xb7\x1f\x1c\x32\x7f\x16\xf7\x44\x35\x00\x99\x3b\x97\xc9\x13\xba\xf2\x5e\x2b\xca\xaf\xfd\xc3\x99\x5e\xf8\x68\xf1\x9b\xad\x12\x11\xf4\x25\x16\x88\x50\x6c\x9d\x74\x2d\x74\x3e\x35\xe7\xa8\xae\x76\x7c\x1e\x46\xe6\xcb\xd6\x3b\x6d\x14\x92\x41\x24\x8d\x42\xdc\x44\xcc\x61\x44\xa6\x48\xfc\x35\x3b\x0f\x7d\x14\x13\xca\xad\x5e\xfa\xaa\x00\x29\xf1\x69\x86\x53\x9d\xc6\x2a\x17\xdd\x01\x47\xe4\x89\x44\x03\x9f\x63\x89\x98\xc4\xb9\x42\xf2\x65\xde\xcf\x51\x4f\x6e\x39\x3e\x27\xa0\x44\x5b\x59\x15\x1f\xf5\x28\x5b\xb5\xb2\xa4\x56\xd0\x63\xef\xf2\xf8\x93\x7e\xf7\xbc\xcb\xcb\x4f\xd1\xc4\x23\x33\x12\xbb\x15\x18\xb5\x14\x98\xe3\x65\x23\x6c\x88\x5e\x54\xa7\x57\xbf\xe3\x98\x81\x90\x84\x1c\x11\x14\x5b\x73\xe3\x1a\x59\xbd\x50\x68\x7f\x45\xb7\x6f\x62\xd1\x8c\x64\xdf\x54\x89\x11\xc6\x88\xfe\xd4\xda\xb0\xf4\xc9\x2b\x63\x67\xca\x0c\x52\xad\x7a\x7a\x8c\x1a\x1b\x3b\xde\xe1\xfb\xff\xfb\xd8\xa0\x39\x0a\xf5\xe4\xa0\x39\x88\x37\x7f\x6f\x10\x6e\x2b\xa0\xcc\xdd\x5f\x1d\x34\x56\xc5\x74\xac\xfb\x48\xce\xce\xeb\x82\x36\xf8\x51\xb6\x1e\x0a\xf6\x89\x51\x22\x43\xcf\xa5\x28\x11\x41\x9a\x16\xef\xc8\x73\xc4\xeb\x61\xa7\x0a\xd1\x40\x22\xc9\xa0\xaf\x4a\x39\x2f\x0f\x62\x32\xf5\x23\xea\x42\x34\x26\xde\xa7\xa9\x40\x6b\x2e\x4c\x43\xb7\x0a\xb6\x23\x8b\x14\x7f\xee\x92\xf1\x3d\x69\xee\xd3\x19\x62\xbd\x1e\xca\x98\x6b\xab\xb7\xfc\x68\x3c\x5c\x80\x79\x72\x3d\x49\x94\x6b\x7c\x8e\x25\x6a\x95\xe1\x23\x4d\x10\xca\x10\x1b\x7e\x82\x36\x7c\x41\x65\xd6\x09\x2c\x53\x95\x30\x85\xc3\x47\x85\x02\x3d\x7e\xa5\x88\x8f\x94\x74\xbe\xd0\xcc\x05\xe4\x4a\xcc\x05\xca\x95\x98\x0b\xf8\x59\x34\xa2\xe9\xc0\xdc\xd1\x9b\x32\x5c\x90\xea\x2f\x23\xb4\xda\x18\x3b\x35\x9c\x18\xf3\x49\xf8\x16\x03\x4a\x23\x7a\x4c\xee\x18\x28\xe1\x54\xcc\x1f\x07\x5d\x0f\x13\xd7\xed\x84\x6b\x2b\xfa\xf1\x25\x2a\xa8\x60\xce\x41\x2e\x68\x3e\x7c\x12\xcc\xfe\xa4\x0a\x48\x13\x52\x80\x8b\x88\xb4\x1e\x9f\x7c\x19\xfb\x1e\x3d\x3b\x46\xa5\xea\x6d\xb1\x14\x08\x45\x74\xff\x92\xab\x62\x0e\xc4\xdf\x73\x38\xaa\x2a\xe5\x74\x2c\x6e\x95\x1e\xac\xb2\x2a\x45\xa4\xc2\x98\xb3\x9b\xa2\xa3\xe0\xc2\xa2\x2c\x24\x39\x6b\xd0\x19\x18\xa4\x60\x4c\xa0\x43\x98\x5d\x26\x7a\xe2\x4e\x96\x17\x6f\x6d\x4a\xd0\x84\x77\x97\xd5\x4b\x29\x6b\xad\x8f\x29\x59\x93\x01\x01\xb3\xa1\xf2\x68\x32\x39\xdf\xaf\x3a\x7d\x35\xb4\xb7\x12\xde\xa2\xff\xd3\x5c\xb0\xf9\x28\x1c\xb9\xdf\x09\xe2\xd5\x38\x38\x23\xb8\x7f\x29\xdc\x98\xed\x06\xc5\x4f\x8f\xab\xc7\xa8\xf0\x59\xa8\x18\x20\xa7\x85\x12\x37\x40\x7c\x8b\x97\x92\x59\x06\x4b\x1a\x55\xd8\x00\x21\x60\x7c\xf0\xd2\xc0\x4a\x78\x17\x64\xbd\x5c\xe6\x0b\xcf\xfa\xa8\x60\xf5\x7e\xa4\x0a\xbc\x92\x5f\xe1\x14\xeb\xbd\x5f\x9c\x3c\x61\x1d\x80\x4d\x08\x49\x78\x41\x80\x69\xc8\x81\x10\x84\x20\x06\x44\x1c\x4b\xc4\xc7\x47\x3c\xd9\x81\xc6\xf1\x6f\xd8\x3e\xfa\xdd\x05\xac\xfb\x4d\x8c\x7b\x0e\x9c\x3e\x2c\x26\xa6\xdc\x2f\x0f\x5b\x52\xa3\xc7\xfa\xa2\x56\xf4\x9d\x4a\xd1\x56\x5f\x2c\x6f\xd0\xad\x15\x0b\x18\x8b\xeb\xd9\x95\x5c\x95\x18\x90\xbe\x61\xce\x59\x63\xbd\xf5\xf6\x5b\x3d\xf1\x53\x99\xf5\x8b\x48\x34\xf0\x54\x5a\x27\x3f\xef\xb5\xf8\x99\x2d\x3d\xd3\x53\x4e\x05\x21\xe4\x01\xdf\x4c\x2f\xfc\x26\x30\x7e\x2e\x5f\x9f\x16\xb4\xb2\xd9\xd5\xd3\x4e\x5e\x30\xe6\xc4\x47\x5f\x58\xa2\xa1\x88\x91\x08\xe9\x93\xb2\xeb\x28\x0e\x2c\x23\x61\x92\x64\x76\xe0\xbb\x11\x35\x2e\x53\x0b\x2a\xc3\x9e\x50\x17\xa7\x02\x03\xa5\x34\x1d\x6c\x64\xd0\x6d\x22\x23\xf5\x07\xf8\x27\xb9\xa9\xbd\x6c\x4b\xd5\x8b\x6d\x72\x13\xa6\x91\x43\xfc\x14\x63\x94\xa9\x83\xc1\x8b\x37\x1d\xe7\xf3\x72\x85\x42\x27\x97\x67\x52\xb8\xe8\xae\x8b\x37\xf3\xa6\x6e\x44\x66\x5b\x19\xd1\x12\x1d\x3c\x59\xf1\x37\x92\xb0\x4c\x22\x2e\xf1\x0a\x71\xc0\x2c\xd3\x59\xb2\xfe\x26\x1a\x8e\x9e\xdf\xeb\xac\x40\x46\x40\x6a\x3c\xb1\x3e\xf0\x65\xc0\x95\x2c\x6c\x80\x89\x72\xa3\xbf\x0d\x48\xda\x2d\xb8\xd3\x68\x3c\xc6\x1c\xc4\xdb\x7d\x3d\x8f\xc0\x96\x2a\xa5\x2c\x53\x76\x2b\xf5\x98\x00\x6b\xf0\x34\x54\xae\x52\x11\xe5\x3b\xbb\xfe\x08\xae\x1a\xa5\xa7\x6d\x6d\xbd\x12\xf7\x59\xa3\x90\x42\xdf\xa8\x90\x43\xce\xa4\x48\x6e\x1a\x69\x53\xee\x1b\x29\x73\xfb\xfb\x31\x6b\x14\xe6\x28\x24\x9f\x94\xe6\x8b\xab\xe1\xea\x2d\x0a\x89\x53\xb5\x1d\x8f\xce\x08\xea\xe9\x48\xdf\x35\x20\x09\x88\x5a\x2f\x30\xda\x33\xbc\x7c\x37\x78\x75\x59\x43\x57\x6b\xf2\x7a\x32\xf3\x78\x8a\xb5\x34\x4a\xa9\x27\x91\xea\xe2\x3d\x11\x5b\x53\x75\x5d\x9f\x9f\x50\x10\x19\xea\xe6\x4b\x4e\x24\x1f\x2d\x25\xda\xbb\xf2\x59\x4e\xc6\xae\xa1\xdb\xd7\x97\xc3\x31\x71\xce\xef\xac\x03\xa3\x4e\x56\xe0\x81\x77\xab\xe0\xe5\xab\x4e\x45\x22\x05\x5b\x63\x3f\xc3\x4a\x2b\x16\x42\x0f\x16\x73\xc3\x09\xde\xf1\x8c\x67\x67\x82\xb9\x0b\xe8\xf4\x0e\x57\x01\x1d\xe4\x68\x0d\xfb\xf4\xce\x2b\xc3\x5c\x62\xe7\x01\xc2\x88\x4a\xc4\xf2\x78\x77\x50\x9e\xc2\x1b\x44\x85\x8c\x35\xaa\x72\x02\x71\xa0\x9c\x46\x18\x59\x05\xe3\xdb\x02\xe5\x9e\x57\xe4\x9d\xe9\xed\xfd\xdc\x4a\x62\x40\x54\x6c\xbc\x61\x13\x9c\x1d\x03\x21\xc4\x3a\x82\x79\x4d\x31\x3d\xdb\x11\x4b\x45\xfd\xc4\xe6\xcd\x6b\xad\x3a\xe6\xb7\x2f\x92\xe5\xaa\xd5\x7f\xc4\x1c\x5e\x47\xbc\xbf\x16\x1d\xdf\x7e\xff\x08\xc5\x64\x1f\xf1\x9d\x42\xdf\x91\x7f\x8a\x9d\x23\x87\x62\x0c\x8c\x83\x94\x58\x4b\x2d\x4a\xc7\x5e\xa5\xcc\x30\xf9\x36\xdf\x9f\x64\x9f\xc1\x4e\x4c\x57\x17\x81\xe0\x39\xd5\xe3\x08\xe6\x68\x1c\x18\xdb\x52\x35\xc4\xf3\x2c\x70\x15\xbe\x5b\x96\x20\x17\xae\x13\x4e\x4f\xb4\xeb\x0b\xc6\xb8\x38\x15\xab\x4a\xcd\x4a\xd1\x00\xc1\xee\x8b\xa0\xfe\x9c\x2d\x88\x1c\xa0\xa3\xe1\xd5\xeb\xbd\xa4\x5e\x53\x0f\xee\x52\x52\xb0\xe6\x8b\x35\xd4\x01\xab\x67\x79\x19\x9c\x26\x2b\xda\x03\x9e\x9f\xf9\x40\x6a\xc7\x2c\x29\x84\xca\xf9\xc1\xe6\x4c\x7c\x99\x4f\xf8\xb3\xf5\x85\x53\x76\x4a\xb5\x92\xf5\xdf\xed\x61\xab\x17\x1f\xca\x39\x8e\xc5\x9d\x63\xaa\x80\x34\x90\xcb\xfc\x81\x7e\x5a\xc7\xf9\x67\x44\x8c\x38\x1e\x12\x03\x41\xb2\x45\xb2\x5e\xb1\x84\x2c\x66\x57\x7a\xdd\x40\x1e\xc3\xe7\x17\x04\x64\x7d\xe0\xfe\x89\x38\x52\xa3\x76\x7b\x1c\x37\x98\xd9\xd7\x6e\xb5\x55\x38\xb4\x60\x46\x64\x79\x4d\x60\xc7\x5f\x6b\x76\x0d\xda\xb5\xcb\x03\x48\x35\xd0\xf3\xe6\x72\x7b\xe1\x05\x3d\x36\xa5\x56\x88\xe3\x15\x49\x19\x05\x44\x4f\xa2\x89\x5b\xcf\xc7\x40\x14\x88\x10\x20\xc1\x89\x04\xaf\xf6\x9a\x0b\x77\x89\x17\x51\xef\xe4\x18\xfb\x12\x91\x7e\xd9\x99\xf8\x98\x04\x44\xcb\x25\x74\xf5\x33\x6e\x27\x61\xd4\xf6\xc1\x91\x71\x33\xcd\x7b\xa3\x48\xec\x3f\xfd\xc3\xe7\x7f\xb6\xf4\xb3\xd1\x31\x70\x96\x39\x39\xbe\x7b\x64\x2c\x41\x17\x04\x86\x08\x0b\x8f\x2b\x95\xbc\x08\x18\x91\x90\xa8\x29\xb1\xcd\xaa\x7b\x84\xe8\xa0\xcc\xd1\xb4\xde\x26\x66\xca\x70\x07\x4e\x94\xf1\x5d\x9a\x62\x9d\x71\xa2\x11\x39\x11\x05\xc0\x3a\x18\x92\x80\x8c\xa2\x39\x8c\x38\xef\x18\x94\x7e\x77\x89\xc1\xf8\xc5\xa5\xce\xbe\xca\xaa\x19\x7a\xa1\x2e\x58\xbf\xdc\x7c\x74\xaf\xb1\xf5\xd4\xa0\x3b\xec\x66\x24\xc3\xea\xe5\x9f\xc9\x81\x29\xa8\x4a\xd5\x3d\xed\x14\xe8\x51\x2a\x86\xe3\x44\x08\xf2\xc2\x06\x81\x2a\x10\x4d\xc9\x14\x44\x72\xae\x80\xd3\x8e\x70\xb1\xc7\xe9\x6f\x2b\xb1\x8b\x72\x24\xf1\xec\x30\xb0\x2c\x2b\x7b\xe9\x59\x5c\x49\x43\x0f\xe4\xf5\x92\xa4\x28\x84\xe3\xab\xa3\xa6\x53\x74\xfa\xd9\xfa\xa4\xe7\x83\x2f\x0d\x5d\xd8\x4b\x80\x0f\xfa\x7e\xc5\x93\x90\x73\xbe\x1c\xe8\x2d\xa5\xe4\x54\xa2\xd6\x64\x3e\xa9\x8d\x55\x1c\x32\x26\xa8\xe5\xe1\xb7\xbf\x13\x6b\xa3\x60\xe4\x52\x10\xa0\x04\x3a\xa9\x03\x33\x20\x6f\x9a\xab\x43\xa3\xdf\x38\x4f\x90\x51\x64\x15\xd4\x9e\x5c\xbe\xdb\x7a\x30\x9d\xe8\x14\xcb\xe9\xa6\xe4\x52\x75\x57\x6a\xe7\xa2\x9e\x7c\x15\x73\xc7\xc2\x3f\x16\x3b\x5f\x44\x25\xf2\x2a\xe5\x8e\x21\x86\xa8\x22\x0f\x90\xaf\x50\x2b\xea\xe2\xc7\x13\xe1\xf9\x8b\x46\x4d\x49\x68\x8f\x9a\xf4\x98\x89\x55\x01\x98\xc9\xf0\xbb\x02\xd9\xdf\xdb\xf9\x5a\x64\x78\x8c\x69\xd6\xa3\x86\x5c\x36\x10\x53\x69\x63\x6b\xbd\x3d\xf2\xb4\xb9\x3a\x15\x01\x48\x3c\x19\x7e\xd4\xc9\x1e\xd5\x24\x60\x39\x7d\xba\xa2\xee\x4f\x1d\xd4\x37\x29\x5e\x62\x23\xd4\x6e\x5b\xca\xf3\x89\x7f\x02\xae\x00\x69\x4a\xf3\xe4\x52\xe0\xcc\x34\x51\x91\xe2\x98\xcc\xa2\xec\xbb\x19\xe5\x22\xa7\x3e\xc7\xd2\x54\xaa\x8f\x6e\x25\xa3\xe8\x67\x04\x47\x72\x85\x8e\x07\x31\x06\x91\x92\x36\xf0\x1b\xbc\xf2\x5c\x74\x90\xeb\x7c\x26\xae\xb1\x7d\x8e\x07\x11\x0f\x27\x3c\x2a\xef\x1f\x54\xed\xb2\xce\x1d\xc7\x7f\x17\xcc\x5c\x51\xb1\x9c\xc6\xef\x46\xb9\x8b\x31\xa3\x71\xf7\x47\x15\x74\x3e\x7b\xf4\x00\x64\xbf\xc5\xed\x73\x66\xff\xef\x78\xd5\xfc\x3b\x47\x63\x99\xf1\x39\xe6\x92\x1e\x79\xc5\xc0\x4d\x0c\xf2\x8c\x27\x8b\x8e\xf7\xc0\xf3\xe4\xc7\x00\xbe\x8b\x66\x4a\xfa\xbe\x58\x4f\xac\x09\xe4\xce\x30\xbb\x74\x94\x1a\x5f\xda\x88\xe7\xb6\x56\x56\x8a\x58\x8e\x58\xb3\x3d\x49\x59\x9d\xd2\x5c\xec\x81\x82\xef\xd8\x2d\xec\xb7\x8e\x29\x25\x4d\xee\x77\x92\x2d\xf9\xb7\x8f\x48\xa7\xcf\x62\x74\x50\xb9\x07\xd5\x7e\xea\xcd\xd4\xc9\x08\xd3\x51\x84\x52\x55\xf8\xb9\x81\x68\x2b\xd9\x4b\xec\xb5\x1b\x7a\xf0\x0e\x4a\x66\xf4\xf7\x74\x46\x6b\xc9\xe6\xf4\x1e\xc7\x50\x53\xfe\x1b\x95\x35\x87\x33\xb5\x13\xaa\x63\x86\x61\x40\xf4\xdc\x80\x9b\xc1\xc0\xe1\x09\xe0\xa0\xe9\x31\x3a\x8c\x85\xe0\x48\x62\x3c\x45\x43\x99\xe6\xec\x3e\x3d\xff\xfc\xae\x97\x79\xd7\x6a\xde\xbf\x78\xd4\x83\xbf\x4b\xf0\x37\x9a\x49\xe7\xae\xd0\xcf\x41\xfc\x49\x8f\x1f\xd2\xcf\x02\xfe\xbc\xb3\x46\x7f\x0f\xe1\xdf\x17\x56\xb9\x16\x90\xd4\x77\xad\x70\xb9\x4e\xbf\x86\xb1\xe4\xe5\x2f\x47\x29\xa3\x11\x90\xe5\x02\x65\xef\x97\x1e\x4a\x20\xc0\xfb\x92\xcf\x5f\xf7\x33\xe8\xd6\xaa\xfc\x49\xf7\x55\xc8\x0d\xf3\x17\xee\x6e\xc8\xb6\x4f\xf1\x6f\xee\x12\x7a\xf4\x07\xf9\xa5\x0f\xee\x75\xd8\xce\x49\x13\xdc\x73\x35\x37\x94\x55\xbd\x43\xd7\xfc\x41\x75\xce\x3d\xd3\x6a\x15\xaa\x6e\x05\x33\x6f\x7e\x1b\xbd\x13\xa9\x1e\xd7\x0a\xa7\x16\xc3\x6b\x3f\xb3\x08\x8a\x4f\x7f\x72\x3c\x50\x7d\x31\x58\x7c\x1c\x5e\x9a\x04\x4a\x1e\x9c\xf9\x99\xc2\x32\x29\xf1\xad\x53\xae\xd4\x54\xee\x9a\x33\xab\x8d\x2d\xb4\xa4\x30\x0c\xe6\x1f\xe0\x27\x77\x54\xe6\x7c\x79\x57\x0c\x76\x2a\xdb\x87\x17\x19\x77\x71\xe7\x3e\x4c\x1f\x44\xb7\x7f\xfd\x57\xca\x53\x0e\xdc\xfd\xbf\xfd\x9b\xf5\xc5\xc7\x20\xb1\x01\x73\xdb\x1e\x3d\x8f\x78\x85\x8f\xc0\xdc\x67\x0d\x98\x01\x5f\xca\x7d\xff\xc7\x44\x15\x24\x5c\xe4\x8e\x4c\x56\x27\x89\xc3\xd1\xb1\xf1\xff\x27\x00\x00\xff\xff\x5f\x5e\x3e\x68\xe5\xab\x00\x00") +var _confLocaleLocale_zhHkIni = []byte("\x1f\x8b\x08\x00\x00\x09\x6e\x88\x00\xff\xbc\x7d\xfb\x73\x13\x57\xba\xe0\xef\x54\xf1\x3f\xf4\x70\x8b\xca\xbd\x55\xc1\xa9\x24\xfb\xaa\xa9\x28\x77\x13\x32\x33\xc9\x6e\x92\x61\x63\xb2\x53\x5b\xa9\x94\x22\x4b\x6d\xbb\x2f\x92\x5a\xa3\x6e\xe1\x38\xb7\x6e\x95\x0d\x31\x96\x5f\xd8\x80\x6d\x30\x18\x0c\x84\x87\x0d\x18\x6c\x12\xc0\xf8\xc5\xff\xb2\xa3\x6e\x49\x3f\xe5\x5f\xd8\xef\x75\x4e\x9f\x6e\xb5\x0c\x99\xbb\xbb\x53\x53\xc4\xea\xf3\x9d\xf7\x77\xbe\xf3\xbd\x4f\xae\x52\xc9\x16\x6c\x2f\x9f\x09\x56\xb6\xc3\xc5\x5d\xeb\x4f\xae\xd5\x7a\x70\xa3\xb5\x3a\xd2\xbc\xfa\x63\x6b\xfc\x41\x30\xb9\x66\xfd\xc9\xf1\xad\x70\x79\x26\x98\x5a\x3a\x7c\xe8\xf0\xa1\x41\xb7\x64\x67\xda\xf7\x16\xdb\x37\x47\x0f\x1f\x2a\xe4\xbc\xc1\x3e\x37\x57\x2d\x64\xc2\xf3\xf7\x83\xfa\xf3\xf6\xf5\xdb\xcd\x89\xfa\xe1\x43\xf6\xf7\x95\xa2\x5b\xb5\xe1\xeb\xed\xe6\x2f\xb7\xa1\x92\x5d\xac\x64\x82\x97\x0f\xa1\xb9\xc3\x87\x3c\x67\xa0\x9c\x75\xca\x99\xe6\xd2\x4e\x7b\xfa\x47\xf9\xed\xd6\xfc\x4c\x7b\x64\x24\x18\xdf\x96\x0f\xb5\x4a\xa6\xb5\xba\x13\x9c\x9b\x3c\x7c\xa8\x6a\x0f\x38\x9e\x6f\x57\xf5\x87\x21\xbb\xcf\x73\x7c\x3b\x13\x3c\xbe\x12\x2e\xbe\x6c\x3e\x7f\xda\x7c\x08\x63\x3b\x6d\x57\x3d\xc7\x85\x76\x17\x9e\x07\x13\x33\x30\x8e\x70\xf9\xd1\xe1\x43\x95\xdc\x00\x8c\xf7\xe6\x28\x0c\xed\xf0\x21\xdf\x2e\x55\x8a\x39\xa8\x19\xae\xde\xa2\x81\x16\x73\xe5\x81\x1a\x42\xf0\xa4\xdb\xa3\x5b\xed\x9b\x63\x87\x0f\xe5\xab\x36\x40\x65\xcb\xf6\x50\xe6\x38\xfd\xd9\xd3\xd3\x73\xf8\x50\xcd\xb3\xab\xd9\x4a\xd5\xed\x77\x8a\x76\x36\x57\x2e\x64\x4b\x38\xc7\xe6\xfc\x6a\x58\x7f\xde\x78\x75\x2b\x1c\x7d\x12\xcc\x4e\x86\xd7\x7e\x09\xee\x5c\xe5\x49\xd8\x05\x98\x67\x36\xe7\x65\x82\x17\x4f\x79\xb6\x0c\x8c\xeb\x88\x8d\x95\x73\x25\x55\x3f\x98\x9b\x81\x65\x2b\xe5\x9c\x62\xa6\x7d\xf6\x59\xf3\xf1\x26\x8e\xdc\xf3\x86\x5c\x58\xdb\xe0\xc9\xb9\xe6\xed\x5d\x5c\x87\xac\x3f\x5c\x81\x1a\xb7\xb7\x5b\x0f\x66\xd4\xd7\x7c\xae\xe2\xe7\x07\x73\x99\xf6\xda\xe5\xd6\xfa\x04\x7d\x42\xd0\x8a\x0b\x4b\xe4\x56\x87\x33\xc1\xc8\x44\xb0\xfd\xf0\xf0\x21\xb7\x3a\x90\x2b\x3b\x3f\xe4\x7c\x5a\xa3\x67\x3f\x36\x5f\xce\x1f\x3e\x54\x72\xaa\x55\xb7\x9a\x69\xcf\xde\x0a\xce\xce\x1e\x3e\x04\x13\xce\x62\xd5\x4c\x30\xf1\x2c\xd8\x01\x84\xd8\x00\x34\x50\x0d\x60\x61\xc9\x19\xa8\xe2\xfa\xb5\x47\x5f\x34\xef\xef\x04\x77\x16\xdb\x67\x57\xcd\xf2\x7e\xb7\x7a\x2a\xc3\xd5\xc2\x5f\xf6\x9b\xf3\x2b\x66\x21\x8c\x20\xd6\xb0\x1e\x44\xae\x0c\x5b\x40\xc5\xcd\xc7\xb7\x9a\x73\xe7\xc2\xfa\x05\xa3\x38\x57\x28\xc1\x2a\x56\x72\x65\xbb\x28\xe5\x0a\xcd\x72\xf9\xbc\x5b\x2b\xfb\x59\xcf\xf6\x7d\xa7\x3c\x00\xeb\xbc\xf5\x33\xac\x65\x6b\x75\xbd\xb9\xf7\x18\xb6\x20\xfd\xf3\xb0\x5b\xd3\xdb\x08\xab\x33\xd5\xd8\xde\xe6\xdd\x93\x22\x5d\x8d\x77\x46\x55\xa3\x39\x78\xd9\x7e\xdb\x06\x6c\x5f\x1e\x81\x29\x84\xbf\xec\x04\x53\x0b\xb0\x51\xb5\x62\x11\x96\xed\xaf\x35\xdb\xf3\xa1\xb3\xb9\x7a\x63\xef\x59\xeb\xe1\x54\xb8\x79\xe6\xf0\x21\xc7\xf3\xe0\x73\x26\x58\x98\x6d\xdf\x9a\xe6\xd1\x63\x53\xf9\x5c\x39\x0f\xd3\x09\x66\x17\xc3\xe7\x75\xfc\xf0\x8d\x67\xe7\xaa\xf9\xc1\x6f\x71\xd4\xf8\x47\x26\x9c\x5b\x0e\x36\xa6\x08\xef\x52\x36\x13\xb1\x27\xa3\x90\x89\xfa\x00\x1c\xbb\x1b\x2c\xc2\x38\xf3\x6e\x01\x50\x64\x75\x2a\xd8\x9d\x15\x64\xf8\xc6\x29\x7b\x7e\xae\x58\x84\xc6\xe5\x2f\x38\x39\x13\xad\x9f\xae\xeb\x63\xe1\xf8\x45\x3a\xd4\xe1\xa3\x5b\xc1\xca\x8b\xd6\xad\x69\x2e\xc7\x56\xb6\x01\x2d\x0a\x6e\xfe\x14\xa0\x3e\x9e\x62\xe8\xf6\xb3\x7e\x0b\xd6\xe9\xad\xaa\x6d\x55\x6b\xe5\x32\xac\x14\x10\x8d\x01\xcf\x82\xa6\x9d\x82\x6d\x7d\x42\xb0\x6f\x5b\x95\xa2\x9d\xf3\x00\xc4\xce\x15\xac\x0f\x72\x96\x9f\xab\x0e\xd8\x7e\xe6\x48\xb6\x0f\x8e\xdc\xa9\x23\xd6\x60\xd5\xee\xcf\x1c\x39\xea\x1d\xf9\xf0\x4f\x35\xa8\x56\x74\xca\xb6\xf7\xc1\x3b\xb9\x0f\xad\x7c\x0e\x4a\x60\x41\x87\xad\x3e\x1b\xb0\xc9\xc6\xbe\x2c\xc0\xef\xf2\x80\x6d\xe5\xca\xc3\xfe\x20\x76\xe8\x94\x2d\xf8\xc3\xb3\xf0\x70\xff\x0e\x17\xe8\xaf\x35\xa0\x07\xd9\x42\x1f\xd3\x32\x1a\x0f\x7d\xac\xda\x9e\xf5\xc5\x70\xef\xff\xf8\xfc\x6d\xeb\x84\xeb\xf9\x03\x55\x9b\xfe\x86\x7f\x00\xfe\x7d\xcb\xad\x5a\x27\x9d\x4f\x3e\x86\x35\x86\xaa\xbc\x0a\xe1\xc2\x56\x78\xe9\x2a\x2c\xb2\xda\x77\x2c\xc1\x53\xa7\x0b\xda\xb7\x6e\x04\x37\xa6\x90\x12\x7a\x7e\xf4\xb5\xb1\xb5\x13\xae\xad\xc8\xce\xe8\xaf\x6a\x8b\xf4\x59\x4e\x94\xa8\x43\x0c\x9d\x10\x31\xd0\xc5\x40\x0f\x9a\xab\x9b\x54\x20\xcb\x1e\xdc\x3b\x13\xde\x58\x0e\xcf\xac\x36\xf6\x5e\x41\x65\x9e\xd6\xaf\xbb\xd3\x80\x69\xf2\xe5\xb3\x2f\xbf\xfc\xf3\x27\x1f\x5b\xc1\xee\x42\x78\xe9\x7c\x63\xe7\x2e\x50\x23\xab\xe6\xf7\xff\x97\xec\x80\x5d\xb6\xab\xb9\x62\x36\xef\x58\xc1\xfa\xe5\xe6\xa3\x7b\xed\x6b\xe7\xfe\x36\x02\xd8\xe9\x79\x45\x20\x62\x80\x2f\xbd\xbd\x9f\x5b\x40\x13\x01\x67\x70\xac\xfe\x60\x34\x90\x70\x71\xbc\xb1\xf3\xbc\xf5\xe2\x49\xb0\x7f\x01\x2a\xfc\xb5\x88\x0b\x2d\x43\x3a\x39\x68\x5b\x78\x8a\x2c\xac\x62\xb9\xfd\xc9\x75\xb5\x0a\x39\x3f\xd7\x07\x68\x00\x0b\x6c\x57\xab\x59\xa0\xbe\xfe\x30\xee\x12\x75\xd1\x0d\x98\x5b\x83\x13\x52\x76\x7d\x40\x02\x8b\x6a\x49\x0b\x4e\xf9\x74\xae\xe8\x14\x60\xaf\xd4\x8a\xc5\xab\xe2\x27\xab\xe0\xc2\xae\x63\x65\xc0\x74\x77\x08\x91\xa7\x9a\xcb\xc3\xfd\xe1\x59\x47\x7a\x8e\x00\x12\x15\xac\x23\xc7\x8e\x40\x83\x65\x37\xcb\xb4\x05\x69\x79\xc1\xf1\x72\x7d\x40\xd7\xf9\xb2\xa9\x32\x99\xfc\x5f\x88\x7b\x3c\x10\x29\xb7\xcc\x72\x6b\xc8\xf1\x07\xe1\xe6\xb2\xe8\xbe\x40\xc4\xcc\x95\x2d\x6a\xd2\x12\xd2\x14\x9b\xb8\x22\x64\x82\x0a\x1f\x11\xa0\xfa\x99\x32\xe1\xc3\x87\xd4\xc6\x09\x6a\x8e\x4f\xc0\x36\xe3\x45\xbd\xfc\x48\x61\x27\xde\xdf\x8c\x39\x5c\x28\x68\xa3\x3e\xab\x9d\x6a\x9e\xd9\x06\xcc\xd1\x44\x15\xe8\x0e\x10\xbe\xf6\xca\xab\xc6\xf6\xe3\xd6\xc8\x74\x30\x5b\x0f\x46\x27\x82\x3b\xf7\x91\xda\x4b\x0b\x48\x74\x78\x9f\x98\xe6\x84\x37\x5f\x36\xaf\x3d\xa6\x0b\x5b\x17\xa9\xd6\xc3\x89\x91\x70\x79\x82\x18\x85\xf6\xe8\x4d\xa4\x1a\x54\xa5\x7d\x76\x2f\xd8\x18\x6f\xdd\x7e\x18\xac\x5f\x09\xe7\xf7\x81\xbd\x68\xad\x3d\xe5\x46\x08\xfb\x80\x7c\x64\xe9\xb8\x30\xcd\x69\xfe\xbc\xd3\x7c\xb6\xa9\x4e\x8c\x2a\x54\x7d\x60\x55\x3e\x32\xaf\xc6\xda\x37\xeb\xc1\xd8\x0b\xe8\x32\xd8\x98\x49\x8c\x2e\xb8\x38\xcd\xad\x31\x51\xc2\x7b\xe8\xd2\x4c\x63\x6f\x39\x7c\x34\xd9\x5e\x9a\xa3\x6e\x0b\x2e\x5c\xb3\x65\xe8\x74\x85\x2e\x5d\xfe\x69\x74\xc3\x4b\x1b\xec\x6d\xc2\xfa\x58\xbd\xbd\x9f\x5a\xad\x3b\xe3\xad\x9f\xf6\x82\xe5\x8d\xe0\xfa\x88\x1c\x9b\xc1\x6c\xc5\xad\xfa\x19\x2c\x0d\x56\x6e\x46\x5f\xf4\x8a\xd0\x62\x53\x6d\x66\x9d\xc2\xf5\x9f\x82\x65\x39\xba\xe1\xfa\x1d\xa8\xd4\x5a\x5a\xc1\xd3\x3b\x75\xb7\x75\x6f\xb4\x09\xff\x9f\x5f\xa5\xd6\x26\x57\x5a\x67\xf7\xf0\x4c\xbf\xba\x1e\x4e\x8f\x86\x8f\x7e\x6c\xec\xcd\x34\xd7\xb6\x9b\x4b\x7b\xd4\xf5\xa0\xef\x57\xb8\xef\x4f\x4f\x9e\x3c\x61\x35\x1f\x02\xcf\xf1\x13\x34\x65\x94\xe8\x31\x10\x46\x34\xaf\xfd\xd4\x1a\xdd\xc3\x9d\x8f\x40\x11\x3b\x6a\xd5\xa2\x40\x58\x5f\x7f\xf5\xb9\xfe\xd6\x6d\x1d\xb0\xb7\x77\xf0\x9f\xde\xd8\x72\xc0\x72\x37\xb6\x46\x1a\xdb\xd7\x98\x69\x69\x6c\xad\x43\x4f\xed\x91\x9f\x9a\xcf\x78\xad\x81\xed\xa8\xe0\x49\xd1\x38\x1c\xcc\x3e\x01\x26\x4b\x61\x2f\x31\x3c\x52\xd2\xbe\xb6\x13\xac\xcf\x41\x3b\x40\x6e\x78\xcd\x00\x2a\x78\x8c\xac\x54\x09\x66\x46\xd4\xb6\xf7\x0b\x98\xb3\xa2\xb4\xf4\xb9\xbf\xea\x96\x32\x5c\xa9\xb1\x7f\x0e\x38\x56\xe3\xbb\x9a\x8b\x59\xcc\xc3\x86\x85\x6f\x8f\x3e\x0b\xf6\x1f\x58\x5f\xfd\xf1\xb8\xf5\x1f\xdf\x7f\xef\x3d\xa0\x7e\x4b\xc1\x38\x52\x45\x18\x21\xd0\xce\xf0\xca\x13\x98\x18\x1c\x12\xb8\x53\x9b\xbf\xcc\xe3\xac\x68\x86\x5c\x3f\xac\x2f\x0a\xcd\x3d\x82\xa7\xec\x88\xf5\x01\xcd\xe4\xbf\xda\xdf\xe7\x80\xc1\xb4\x7b\xf2\x6e\xe9\x43\xc2\xbd\x9b\xbb\x40\x52\x69\x25\xb0\x1c\xb0\x99\x2f\xee\xa5\xdd\xf6\xc8\xa8\xe2\xf3\xa4\x44\xd3\x05\xb3\x34\x62\xfd\x98\x05\xce\xe6\xdd\x72\xbf\x53\x2d\x01\x43\xb1\x02\xdd\x33\x43\xcc\xa0\xcc\x15\x72\x73\x59\xa0\x24\x4e\xff\xb0\x40\xf1\xfc\xdb\x23\x57\x9b\x2b\x77\xc3\xd9\xb9\xf6\xb9\x8b\xc8\x65\x54\x81\x5f\xce\xe2\x7f\x9c\xbc\x2d\x5b\xd0\xd8\xdd\xc6\x95\x5f\x5a\xc5\x53\x34\xf6\xbc\xb1\xb3\xa8\x37\x82\xb6\xcb\xed\xef\xc7\x8b\x9a\xaf\x8c\x60\xe1\x12\xb6\x7d\xed\x76\xf3\xc5\x55\x75\x75\x98\x00\x80\x8b\x15\x60\xe2\x01\xeb\x81\x47\x6c\xee\x3d\x65\x98\xc6\xd6\x54\xe3\xe5\x0a\xe3\x7b\xb0\x7f\xc3\x3a\xfe\xc9\x97\x56\x73\xe6\x29\x32\x42\x74\xd1\xc0\xce\x30\x35\x41\xf9\xe3\xe7\xf1\x70\x7b\x0e\x48\x08\x00\x02\xc9\x83\xa5\xd7\x03\xe4\x2a\x7c\x9c\x85\x70\x03\x63\x7a\x1a\xae\x01\x58\x5d\x6a\xdc\xfa\x93\xfc\xd6\xb2\x4b\x12\x50\x06\x98\x04\x87\xb9\x23\x9e\x3c\xbe\xda\xdc\x5f\x83\xee\x61\x40\xc1\xd9\x31\xde\xed\xe6\xbc\x90\xa7\xc6\xd6\x64\x70\x06\x78\xca\xc5\xf6\xce\x15\x58\x74\xc4\x8e\x9b\xeb\xc0\x41\xc7\x06\x14\xbb\x49\xa0\x97\x70\xfd\xb6\x70\x94\xe3\x0f\x00\x87\x95\x30\x93\x06\x1e\x0d\x2d\xb5\x12\x13\x09\x1c\xd9\xec\x03\x5c\x2a\x62\x2b\x83\x4b\xb7\x04\x75\x5f\xec\x04\x93\x37\x81\xe7\x85\xb3\x4e\x03\xb2\xcb\xd4\x81\x12\x14\xfe\x40\x3f\xad\xe3\xfc\x33\x59\x2c\x5d\x7f\xc5\xdc\x93\x45\xd7\x2d\x70\xfc\x96\x14\x5b\xc0\x93\x59\x88\xc4\x96\x67\x17\xfb\x8f\x99\x83\xee\x11\x46\x0c\xc4\x14\x11\xf1\xb2\xa7\x1d\x90\xa0\x18\x51\x58\xfe\x69\xad\x3e\x40\x56\x78\x69\x2e\x20\x1a\x9f\x02\xae\xd0\x86\x66\x16\xc9\x4d\x57\x45\x74\x0a\x27\x66\x60\xea\xc1\x9d\x9b\xd2\x12\x71\xb0\xb8\x12\x73\xf7\x82\x89\x71\xc4\x95\xd9\x07\x00\xd0\x5c\x9e\x0a\xea\x1b\x5c\x17\xb6\x49\xce\x09\x01\xd3\x92\xf0\x55\x2c\x9c\xbe\x08\xc0\x24\x99\x44\x6b\x49\xeb\xd7\xd8\xba\xd7\xd8\x9a\x01\x62\xc0\xb7\x0e\x0c\x03\xfb\xba\x76\x13\xee\x53\xeb\xb3\x4f\x32\xef\x5a\x7a\x60\x78\xd3\x01\xda\x4c\x2d\x20\x6a\xee\x5f\xd6\xed\x18\x17\x0f\x77\xca\x47\x2d\xd1\x8f\xbe\xce\x09\x84\xe5\x42\x05\x61\x08\x88\x09\x0e\x22\x6a\x44\xc9\x82\x4c\x1d\x0c\x88\x98\xa8\xc8\xd5\x59\xca\x64\xee\xe3\x0f\xc7\xf0\x87\x96\x0b\xb2\x03\x2e\xca\x3d\x0f\xa7\x82\x99\x9f\x59\x04\x40\x99\xd9\xf3\xb3\x03\x8e\x9f\xed\x47\x3a\x05\x4d\xfe\x78\x2b\xfc\x79\xa1\xb5\x7e\x25\xa8\xdf\xb5\xde\x82\x82\xb7\xac\xe0\xc2\x5e\x63\xe7\xce\xaf\xbb\x57\x8f\x9e\x56\x2c\xe2\xfb\x48\x82\xb2\x70\xa4\x9c\x22\x62\x17\x5e\x88\x70\xae\xe5\x18\xc1\x9a\x2d\xed\xe2\x8d\x4f\x32\x3a\x2e\xf0\xfc\x13\xb8\xec\x14\xfb\xc8\x4c\x2d\x52\x87\xa3\x1e\x50\xfb\xa9\xd6\xee\x04\x4b\xfa\xe1\xfd\x29\xdc\xa2\x89\x3a\x42\x8c\x4c\xf3\xce\x58\x03\x6e\x5f\xcd\x29\x16\x2c\x6e\x8d\x56\x5a\xb1\x89\xc0\x24\xca\x1e\x27\xf9\x7a\xac\xbb\xfe\x13\x2c\x8f\x8c\x5a\xd5\xe8\xca\xf6\xa4\x57\xd3\x5c\x0a\xce\xb6\x94\x83\x13\x92\xc2\xcc\xb4\xaf\xdf\x10\x9d\x04\xfd\xc4\xaa\x9e\x75\xec\x43\x98\x1d\xac\x56\xee\xb4\xcd\x44\x7d\x40\x2d\x30\xdf\xca\xed\xb1\x19\xec\xef\xd5\x75\x60\x9e\x82\x3b\x9b\xe1\xc2\xe5\xc4\x48\x63\x28\x1c\xc3\x27\x2d\xb4\x76\x4e\x92\x77\xd9\xab\xe5\xf3\xb6\xe7\xe1\xa6\x04\x77\x81\x8e\x8c\x82\xc0\x1d\x8c\x5c\x08\xf6\xeb\xed\x87\x57\x5a\xf5\x3a\x7c\x87\x4b\x3a\xbc\x34\x2e\x97\x1c\xb2\x52\xb0\xe4\xcd\xbb\xd7\xb5\xf8\x11\xfe\x38\x11\xbc\x7a\x08\x1f\x1b\x3b\xd0\xc1\x2e\x52\xe8\xf5\x3b\x80\x1a\xd6\xc7\x5f\xff\x09\x1a\x24\xb1\x13\x55\x45\x20\x73\xd6\x98\x11\x75\x8b\x05\x2d\xb3\x02\x32\x23\xf1\x4c\x28\x3a\x14\x8c\x42\x57\x0f\xd8\xeb\xfc\x60\x56\x2b\x99\x70\x9d\x7c\xfb\x7b\x3f\x13\xd4\xc7\xc3\xd9\x6b\xa6\xca\x49\x71\x8d\xa5\x61\xda\x41\x98\x1a\xa9\x10\x94\xb8\x9c\x77\x8b\x80\x86\x2e\xd2\xa9\xd3\xb6\x40\x04\xb3\x67\x5b\xf5\xf1\x60\x66\x1e\xb8\x43\x03\x14\x5a\x70\xab\x03\xaa\x01\xad\xa2\x18\xce\xb2\xaa\x44\x15\x28\x8d\x09\x91\x2c\xd2\x89\x31\x41\xa2\x4d\x55\x62\x7f\x0f\x6c\x10\xa9\x14\xa4\xc7\xcd\x47\xc2\x03\xf3\x22\x50\x8f\xd0\x16\x2d\x96\xa8\xcc\xbe\x15\x71\x5f\x54\x67\x6a\x54\x00\x90\xab\xf9\xa8\x1e\x88\x54\x53\x59\x91\x31\x84\x72\xf1\xc6\x1b\xac\xc2\xa0\x5d\x41\xbe\xa2\xe4\x0d\x90\xfe\xe9\xf9\x25\xa6\x82\xbf\xee\xae\xf0\x01\x67\xea\x48\x9b\xe5\xb9\x79\x27\x57\xcc\xbe\x79\xd5\xe7\xa3\x70\x41\x52\xd5\xf8\xf5\xc5\x0a\x32\x90\x5f\x32\xc0\x9a\x03\xfa\xb5\x9e\xbd\xc0\xb3\x6a\xdc\x5a\xd0\x1e\x48\x04\xed\xcb\xcb\xed\xc5\x09\x38\xab\x70\xd0\x5b\xa3\x4f\xf0\xb4\x90\x16\x4f\xa3\x71\xca\x4d\x8a\x03\x42\xca\xd5\xd9\xb2\xc9\x00\xa5\xf6\x82\xab\x52\xb2\x4b\x7d\xd8\x04\xee\xd4\x95\xc6\xde\xac\x52\x3f\xc2\x85\x36\x00\x87\x37\xd2\xb6\xbd\xba\x02\x00\x0a\x07\xb1\xd4\xee\x52\x0a\xcb\xa1\x95\x95\x40\x00\x86\x32\xed\x33\x3f\x86\x4f\x2f\xf2\x46\x40\x61\xfb\x1e\xd0\xb6\x49\x1e\x22\x0d\x42\xc8\x33\x5f\xf1\xc4\xa7\x79\x76\xd9\x57\x2b\x86\xfc\xe6\xc6\xa8\xa8\xc6\x68\x2e\xcc\xb8\xc9\x0e\xdc\x7e\xc8\x8c\x61\x6b\xfc\x67\xeb\x83\xbe\x0f\x8f\x7a\x1f\xbc\xd3\xf7\x21\x93\xca\xf0\xc1\xed\x10\x58\x3b\x92\x39\xc2\x79\xe0\xdb\x9e\x13\x2f\x7e\x0f\x78\x2f\xeb\x68\xc1\x0a\x36\x66\xc3\xa5\x33\xc1\xd8\xfd\xe0\xf1\x74\x58\x9f\xe3\xb6\x79\x58\x2c\x1c\xf1\xed\x94\xa7\xc3\x41\xf8\xaa\x30\x2b\x7c\x35\x12\xfe\xb2\xc3\x0d\x47\xf8\x45\x83\x2e\x3a\x25\xc7\x4f\xdb\x6c\x80\x66\xe5\x17\x0f\x97\x9b\x10\x16\x74\xf4\x3c\x1c\x80\xf6\xcd\x9d\xe6\xcb\x51\x1e\x79\x73\x7d\x22\xd8\x1f\xb3\xde\xb7\x82\xfa\xb9\xf6\xdc\x95\x60\x7f\x3a\x38\x37\xd3\x5a\xbb\x47\xa8\x35\x98\xf3\xb2\xb5\xb2\x2c\x9a\x5d\xe0\xdd\x07\xd2\xa9\xc8\x16\x76\x05\x4c\x02\xaf\x9b\x5e\x9c\x7f\x8c\x56\xe7\x9f\xac\xc6\xde\xb9\x70\xf9\x01\xae\x1d\x4d\x9a\xd9\x78\x18\x09\xf2\xf9\x4a\x9f\x02\x00\xb0\x68\xc0\x2e\x98\x43\xc5\xd6\x81\x42\x2d\x8f\x80\x74\xd6\x1e\x9f\xc1\x5d\xa1\x0e\xe4\x6e\x5a\x7c\x1c\x5e\x9a\x84\xab\x09\xd5\xcf\xb0\xe6\xd3\x13\xed\xfa\x82\xe0\x19\xac\x8e\x0c\x95\xa1\x80\x2e\xb6\x96\x16\xcc\x36\xcc\xcd\x55\x32\x10\xdd\x96\x1e\x9d\x43\x9f\x6e\xcb\xd6\xee\x56\x30\x76\x37\x29\x77\xd0\x5c\x00\xad\xe1\xcc\xc0\x80\x1b\x3b\x3b\x8d\xbd\x05\xe6\x20\xf8\x1c\x63\xdf\x38\x04\xbf\x73\x04\xbf\xee\xd6\x79\x10\xbf\xee\x4e\xc8\xd6\xf0\xbe\x12\x2e\x43\x11\x5c\x18\x6a\x4c\xdc\x84\x46\x7a\x2e\x54\x47\x42\x5d\x40\xa4\x68\x4c\xec\xbc\x46\x5d\xb9\x16\x5e\x3c\xc5\x3d\x5f\x5e\x81\xb5\x84\xbf\xe9\x1e\xab\xeb\x75\x8a\x7a\xd0\x3a\xae\xf8\x8a\x19\x9d\x6a\x48\xdf\x75\xb3\xde\x20\x0a\xc0\x32\xf0\x85\x17\xc1\x36\x32\x69\x78\xea\x37\x2e\xa0\x0d\xe3\x3f\xc1\xb6\xcf\xa8\x4b\x08\xd7\xe1\x5b\xc1\x6e\x24\x9c\x0a\xb5\x4f\xb0\x7e\x52\x7d\x47\x35\x63\x55\x69\x6d\x0c\x70\x66\x96\xfe\xa7\x5d\x05\x71\x8a\x61\x6c\x62\x99\xac\x5c\xa1\x00\x73\xf0\x3a\xd6\xea\x2b\xfc\xc9\x90\xea\x9b\x41\x93\xd5\xcd\xfb\x95\x7c\xb0\xe4\xc3\xdb\xd6\x5f\xec\x22\x48\x8d\x36\x8f\xd9\x2d\xe4\x70\xd0\xc3\xb6\x27\x1c\x1c\x9f\x53\x54\x59\x89\xce\x58\x7d\x00\x50\x14\xf4\x64\xd1\x5f\x3d\x0e\xe7\x5f\x52\x13\x40\xb7\x4a\xd0\xc2\xd7\xc0\x9b\x7c\x99\xb0\x32\x7c\x05\xf7\x0b\x7d\xe3\xcb\x45\x29\x7c\xfe\x60\x18\x1f\x18\xdb\x0e\x1f\x3a\x91\x34\x41\x7c\x65\xa7\x58\x20\x7a\x7b\x3f\x3d\x49\x4c\x2d\x29\x30\x9e\x9c\x6b\x5f\xd8\x50\x8d\x7e\xea\xfb\x15\xef\xeb\x6a\x31\xc3\xaa\x83\xaf\xbf\xfa\xdc\x8a\xda\x1e\x2e\xba\xb9\x02\x16\x86\xe7\x57\x01\x1d\x55\xc1\x49\x3b\x57\xe2\xf1\x2d\x5f\x69\x5f\x9d\x54\x4d\x7d\x04\xf7\x1f\x7d\x46\xe2\x05\x64\x43\x7d\x46\x36\x88\xc7\xae\x2f\x0f\xc5\x58\x44\x12\x86\x4d\x66\x0e\xc6\x12\xe0\xdd\x9b\x6b\xdb\x4c\xf3\x8a\x15\x90\x78\x90\xc1\x10\x08\x61\xf3\xcf\x6c\xb7\xa6\x36\x41\x20\x0d\xd6\x2f\x87\x4f\x66\xfe\x06\xd2\xf8\x95\x57\xe1\xd4\x44\x63\xf7\x09\xb0\x91\xf8\xb1\xbe\x18\xae\x3d\x04\xc1\x17\x0e\xd5\xb1\x2c\x1c\xa8\x64\x6b\x05\x38\xce\xbf\xa9\x45\xf8\x12\x6f\x91\x84\xcb\x1b\xac\x6e\x72\x7e\x50\x33\x60\x6c\xd7\x6d\x02\xb7\xc1\xca\x05\xe4\x04\x93\x50\xe1\x32\xd0\xc5\x59\x86\xb2\x50\x93\x41\xaa\x5f\x51\x46\x7c\x9f\x0e\x7f\xe7\x7e\x2a\x3c\xd3\x28\xbd\x88\x5a\x39\x02\xd4\x17\x0e\x74\x82\x48\x51\x0d\x54\x25\x1d\x00\x8f\x98\x20\x9c\x7a\xbe\x58\x2b\xa8\x81\x7c\x67\x95\x6a\x9e\x6f\x21\x9f\x97\x03\xe9\xc4\xab\xf5\x81\x70\x89\x7a\xd5\xb7\x8e\x7a\x6f\xf5\x7c\x87\xbc\xe4\x29\xb8\x68\xcb\x02\x0e\xe4\xb0\xb9\x72\xb7\x3d\xfd\xa4\xf5\x00\xa5\x0f\x6d\x0b\x03\x59\x32\xef\x56\xab\x76\xde\x8f\xac\x62\x00\x1b\x4c\xbf\x04\xae\x9a\xba\xd5\xe4\xc4\xe0\xdb\x09\x9b\x81\x25\x34\x91\x3b\x5e\x2b\xb2\xda\x65\xfb\x6c\x1b\x44\xb9\xdc\x29\xbb\x1c\x1d\x2d\x7d\x51\x37\xf6\xe6\xe1\xa3\xd0\x39\x90\x27\x92\x35\xcc\x83\x97\x56\x09\x78\x8e\x8e\x3a\xa2\xb8\xed\x5a\xc7\x87\x53\xd3\xd9\x91\x71\x82\xd2\x2a\xf1\xbe\x52\x05\x98\x59\x21\x76\xfa\x0d\xf8\x57\x0a\xde\x29\x16\xed\x01\xd4\xe5\xa9\xce\xe2\x3d\x4c\x8f\x05\x73\x0f\x61\xbf\x83\xb9\x3a\x88\x88\x06\xfe\xe8\x65\xd3\xeb\x1e\xed\x90\x29\x11\xf0\xa2\x6b\xb1\x45\xb4\x17\x40\x27\xab\x64\x4a\x35\x44\x34\xea\xdc\x64\x7d\xf4\x7d\x69\x2e\x2e\x20\xde\x41\x2d\x01\x26\xa1\xe8\xd6\xb5\x29\xb4\xf1\x91\x32\xaa\x35\x32\x16\x0d\xf3\xca\x93\x60\xee\xde\x41\xcd\xea\xbb\x20\x7d\x7c\x8c\x58\xc9\x56\xb4\x14\x69\x7f\x0f\x37\x43\x06\xd6\x9d\x49\xbc\x56\x30\xe0\xba\x82\x28\xb8\xbc\x4a\x37\x5b\x31\x07\x52\x39\xe2\x09\xcd\x01\xc1\x9b\xf7\x77\xda\x4b\x77\x18\x16\xd5\xfd\x70\x9a\xf7\x49\x39\xbb\x37\x63\x72\xd5\x38\x26\x52\x10\x71\x91\xb0\x9b\x5a\x7a\x3c\x37\xd3\x1e\x79\x8a\xf2\x2b\xb5\x06\xdc\x22\xaa\x30\x68\x20\x72\xa1\xaa\x49\xa2\xc6\xfb\x94\x3d\x9c\x01\xa1\x31\x9c\xdc\x0c\xd7\x27\x88\x63\x42\x31\x92\x15\x04\x7c\xf0\xcc\x89\x5b\xd1\xf5\x40\x22\x30\x49\x86\xc8\xde\x9f\xa6\xdb\x55\xb7\xc8\x8a\xfb\x37\x69\x64\x1a\xd9\x3b\x16\x5d\x47\xc7\x41\xe4\x6d\x9f\xf9\x09\x77\x5c\x11\x19\x0d\x86\x73\x86\x36\xc6\x1f\xe0\xc4\x6e\x6f\xa3\x50\x3d\xf6\x9c\xc1\xc2\x91\xfb\x34\x31\x94\xae\xb4\x00\x7e\xbe\x8e\x5a\x1b\xea\x3b\x26\x7a\x03\x29\xf6\xe1\x08\xe0\x9a\xb3\x99\xdc\xe4\x8c\x1b\x3b\x33\xcd\x1f\x9f\x63\xff\x2b\x73\x8d\xed\x6b\x5a\xba\x0b\x2f\x8d\x32\x06\x31\x87\xa4\xcc\x17\xf5\xd6\xde\x04\x2c\x32\x22\x7d\xfd\x01\x2c\x75\xf0\xf8\x2c\xcc\x43\xd4\x5b\x6c\x83\xe5\xef\xd4\xb8\xb1\x05\x3c\x04\xe4\x8d\xd1\x60\x9e\x18\x41\xab\x3e\xa9\x47\xc0\x14\x03\x47\x40\xbb\x98\xe8\xbe\x7d\xed\x76\x7b\x71\x4a\x77\xcf\xc0\x9a\xfa\x24\xe6\x89\x32\x2b\x01\xfc\x3f\x9a\x24\x37\x1e\xc3\xb3\x68\x04\xa4\x32\x87\x11\xf0\xb6\xf0\xed\xdf\xd8\xbf\x0e\x53\x45\x5e\xf8\xec\x2a\x88\x0e\x72\x42\x88\x50\x09\x87\x3e\x56\xe7\xa6\xa1\xa2\x09\x13\x97\x30\x80\x6c\x92\x5d\x3a\xdb\x57\xcd\x95\xf3\x83\xc6\xf9\x6b\x5e\x7b\x8c\x16\x81\xfa\xb9\x70\xfe\x89\x3e\x79\xc4\x59\xe1\x70\x50\x0e\x27\x93\x74\x56\x74\xce\xc0\x8c\x5b\x4a\xaf\x8c\xda\x7f\x0b\x04\x3f\xe6\xc6\x78\x83\x58\x3d\xac\x6b\xe5\xe1\x96\x73\x4b\x46\x65\x76\x43\x50\x5a\x9b\x75\xae\xaa\x2a\xfd\x8b\x0b\xd7\xbb\x0b\xd4\x7c\xf2\x26\x1c\x02\xe0\x70\x0d\x97\x00\x07\x9d\x0b\x98\xe2\xd5\x2f\xb7\x6e\xad\x0a\xeb\xea\xf8\x70\x32\xc7\x1e\xe1\x0e\x8b\x93\x42\xbf\x8b\xc6\x50\xbb\xea\x65\x50\x7c\x58\xdd\x81\xbd\xc2\x45\xce\x21\xe5\x42\x21\xbf\xf5\xf8\x2a\x08\x55\x0a\x0e\x55\x4a\x0c\x07\xa3\xc1\x69\x23\x3f\xd9\x43\x24\x1c\xf9\xdd\xea\x69\x54\x04\x2a\x8a\x48\xb7\xb3\x05\x48\x81\x97\xc5\xab\xeb\xcd\x85\x25\x98\x31\xa1\x52\x54\xab\x92\xf3\x81\x4a\x96\x59\xce\xa1\x91\x18\x0d\xe0\x02\x8f\x8d\xb6\x56\x37\xb9\xa5\xb8\xe1\x84\x7c\x23\xd8\x23\x03\x96\x3d\xdd\x6f\x43\x53\x5c\x5e\x38\xad\x40\x62\x8a\xe2\x09\x67\x68\xd0\x0e\xa5\xf2\xc8\x34\xef\xec\x37\xb6\xef\xb0\x08\xc5\x5a\x0d\x32\x85\x15\x9d\x3c\x49\xe9\xaa\x2a\xe3\x1e\x6b\xe6\xe8\x84\xa8\x02\xa5\x20\x2a\xd8\x45\x1b\x3d\x92\x8c\x33\x0b\xf4\xcd\x51\x93\xb4\x3e\xfb\x04\x67\x52\xa9\xf5\x41\xcb\x91\xf3\x09\xed\x90\x9e\x84\x78\x16\x91\x36\x5a\xd0\xc6\xbc\x8f\x37\xc6\xc3\xe5\xb3\x68\x4d\xa5\x5a\x48\xfd\xb6\xee\x21\xdd\x87\x0e\x16\x77\xc3\xf3\x77\x51\x88\xa5\x8e\x71\xfd\xe8\xda\x62\x63\x4f\x70\x71\x9a\x6d\x3f\xbc\x25\xe8\xac\xc2\x57\x9e\xb2\x72\x28\x56\x5a\xbb\x55\xd1\xda\x2a\xb7\xaa\xa2\xcb\x4b\x81\x56\x5e\x38\x03\x38\x98\x19\xe0\xd2\x6b\x15\x34\x0b\xe8\xa9\x84\xd7\x7e\x81\xab\x44\x4d\x25\x5e\x68\xea\x1b\xe9\x82\x8e\xb6\x8e\xab\x21\x81\x9a\x64\x09\x56\x0e\x48\xa7\x77\x14\x5b\x92\x95\x84\x93\x00\x53\x7a\x88\x93\xe8\x14\x22\xce\x22\x43\x40\x3f\xac\x5c\x7f\x3f\xf0\x18\x96\x3f\x08\xbf\x73\xc3\xd6\xa0\x3b\x64\x15\x9d\xf2\x29\xf4\x0e\x41\x3f\x30\xcb\x77\x63\x82\x5f\x0f\xe9\x68\x00\xd7\x6a\xd0\xf3\xcb\xdd\xe6\xf6\xb4\x92\xb3\x62\x0e\x3b\xea\x63\x64\x3b\x89\x9f\xe7\x85\x15\x38\x72\x7a\x79\xd5\x31\x4e\x83\xd5\xb6\x5a\x52\x3d\x20\xad\x22\x0f\xb4\xc6\xfe\x39\xb6\xfd\xa0\x12\x5c\x5b\xa6\xd8\xe8\x15\x91\x12\xd7\xf5\x44\x11\xc8\xfd\xb2\xce\x96\x6f\x74\x05\x25\x3b\x21\x10\xbc\xdc\x5c\xa6\x4c\x0e\xb5\x0a\x8a\x61\xc0\xbe\xc8\x88\xe8\x84\x66\x9d\x12\x7a\xc5\xb1\x9d\x8b\x38\x21\x34\xce\x45\xac\xfc\xee\xb3\x60\x79\xb1\x39\x31\x4e\x7b\x56\x76\x13\x93\x32\xd4\xfe\x4f\x2f\xa2\x86\x86\xf4\x14\x89\x05\x41\x85\x32\x5d\xf2\x89\xb9\x33\x37\x64\x0e\x3b\x81\x3f\xe6\xf0\x3b\xf0\x47\xa3\x46\x17\x92\xe0\x16\x0d\xfe\x8c\xb5\xf2\xaa\x08\x57\x32\xf2\xd3\x61\xd7\x37\x6d\x7e\x45\xb1\x37\x1b\x83\x60\x51\xd8\xfa\xd2\x1e\xb2\x4e\x68\x41\x3f\x8d\xbf\x35\x3a\x31\x14\xf2\xa3\x1d\x23\xd5\xd3\x14\x58\xbe\x3e\xd4\xd4\x70\xee\xb3\xfb\x78\x00\xc9\xc8\x27\x5a\x78\x63\x94\xac\xcf\x14\x92\x49\x8c\xbd\x17\xb3\xa9\x2b\xf1\x5a\xbc\xed\x04\x42\x1c\xea\x52\xe0\x58\x36\x30\x88\x11\x9a\x1f\xef\x8d\xb6\xcf\x3c\x36\x48\xd2\x39\x26\x40\x8d\xed\xf3\xa6\x79\x99\xcd\xc7\x70\xd9\x1b\xea\xc5\x4a\x15\x50\xaa\x3a\x9c\xe1\x56\xf4\x6f\x51\xb0\xb4\x1e\xef\x37\xb6\xb6\x55\x19\x13\x53\x29\x62\x92\x1a\x8d\x07\x8a\x90\x1a\xb1\xe5\xca\xfa\x44\x7e\x27\xcb\x79\xe0\x54\x6a\xb3\xaf\x58\x5c\x6f\xc3\xe4\xa1\x6a\x97\xdc\xd3\xb6\x10\x83\x82\xe5\x94\xf1\xc2\x62\xd7\x1e\x74\x20\x88\xd3\x06\xeb\x13\x22\x16\x40\x48\xca\x3e\x12\x0e\x45\x29\xfe\xb9\xa3\x6f\xb5\x91\x32\x46\xe0\xd5\x2c\x94\xb1\x2c\x9e\x57\x41\x29\x7d\xc8\xcd\xed\x77\x68\x96\x2b\x10\x6a\xf1\x7c\x99\x3b\x97\x53\x9c\xb2\x2f\x08\x6d\x42\x9a\x30\x46\x69\x36\xa6\x6c\x46\x95\xad\x28\x98\x83\xfd\xb1\x48\x19\x6a\xb6\x8f\xb6\x56\x54\x0b\x22\x2f\x83\xf7\xb0\x30\x52\xcb\xab\xa6\x0a\x39\x55\xd5\xcc\x77\x91\xa9\x5d\x6e\x8f\x9e\x6f\xae\x4e\x89\xd5\x53\x8d\x48\x1f\x63\x9e\x9b\x81\x48\x32\x67\xc2\x75\xc1\x60\x41\xd3\x83\xae\x70\x6c\x99\x44\x90\xdb\x37\x90\x35\x52\x17\x3b\xaa\x5f\x70\xf3\xf1\x94\x6c\x4d\x21\x5b\x52\x1f\x47\x9e\x94\x19\xe9\x89\x11\x56\x9f\x76\xc8\x12\x5a\x1f\x0c\xab\x00\x27\x0d\xc8\x56\x7b\x69\xba\x39\xbf\x92\x10\x24\xc4\x38\xaa\xd8\x59\x66\xc9\x3d\xed\x0a\xf5\x81\xe7\x57\xdd\xf2\xc0\x87\xac\x39\x66\x97\xe7\xe0\xf2\xf9\x7f\xfe\xe0\x1d\x29\xb0\x50\x18\x59\xb9\xdb\x5c\x46\x65\x08\x0c\x05\x9d\x23\x23\x67\x48\x0b\x46\x01\xa4\x12\xba\x85\xc5\x30\xc6\x47\xae\x91\xa4\x69\x1e\x0f\x66\x50\xfd\x94\xa8\x86\x90\x24\x07\x6c\xb5\xee\x4d\xb1\xb3\xa9\xaa\xd2\x5c\xbc\xd0\xbe\xf6\x53\x78\xfe\x62\xeb\xfe\x4f\x7a\x43\x10\xdd\xa2\xa5\x8b\x33\x46\xbc\xe2\x86\x56\x00\x18\x8e\x60\x6c\x53\x14\x7b\x71\xad\x40\x04\x4e\xd7\x30\x81\x8b\x91\xf7\xda\x56\x30\x37\xcd\xac\x05\x8e\xac\xa3\x0d\x43\x98\x55\xf5\x33\x71\xe5\x21\x7e\x26\x93\x5f\xd9\x57\x25\x68\xc3\x78\xa9\x77\x3e\x81\x51\xc6\x34\x84\x25\x35\xd0\x8a\x8d\x55\x4c\x58\x68\xe6\x42\x56\xd4\xf8\x35\x61\xe1\x02\x6e\x0b\x38\x2d\x73\x49\xe2\xc4\x45\xcb\x17\x06\x2c\x3a\x20\xd0\x67\xd1\x1b\x18\x98\x07\x0b\x02\xdb\x8d\x6e\x2d\x64\x28\xd4\x7e\x01\xac\x09\x60\x6e\xe3\x9f\x53\xfa\x52\x73\x34\x3a\xe1\x1e\xa2\x69\xe1\x72\xe0\xc8\x69\x33\x49\x3e\x20\xf5\x00\xef\xc6\xd6\x64\xf8\xe8\x16\xef\x09\x89\x30\xe8\xf5\xa8\x44\x04\xbe\x9e\x43\xc0\xd5\x57\x17\x94\xa0\x40\xeb\xea\xe3\xed\x4b\xb3\x84\xf9\xc9\xda\x2f\xaf\x5a\xff\xd9\x0a\xee\xac\xc1\x26\xe8\xfd\x87\x73\x0e\x32\x94\x7b\x0a\x50\xc5\xa8\x13\xae\xdf\xa1\x6f\xe8\xfb\x33\x7a\x3e\x38\x0f\x42\xc4\x59\xae\x18\x5e\xdb\x37\xd1\x87\xaa\x47\x67\x5d\x58\x72\xbe\x92\xf8\x94\x2a\xf6\x9c\xf8\x69\x31\x53\xbe\xd9\xe9\x36\x39\xfb\x83\x8f\x37\x57\x31\x8f\x37\x1c\x15\x94\x4a\x23\x2b\x67\xad\xdc\xe7\x94\x0b\x19\xf3\xbb\xfa\xa8\x37\xc8\xec\xd0\x04\x8c\x71\x27\x32\xd5\x1c\x55\xc9\xd2\x2a\x29\xbd\x35\xb1\xc5\x7c\x63\x36\x76\xee\x34\x27\xa6\x95\xff\xa7\x98\x7b\x05\x98\x48\x03\x23\xbc\x02\xa3\x12\x4f\xdf\xd5\xb0\x0a\xcd\xf9\xdb\x3c\x37\xde\x07\xe2\x9d\xf1\x9e\xde\x3f\x87\xc7\x6e\x76\x91\x74\x2c\x1f\x9d\xf8\xcc\x63\xb6\x87\x77\x90\xea\x83\xe0\x8b\x9e\x0a\x67\xb6\x81\xfb\x24\xf3\x3e\xb2\x6e\xdc\x11\xf9\x73\xce\x98\x1a\x07\x16\xfb\x91\xf0\x2f\xfc\x92\xe6\x6a\xc9\xed\xd2\xd1\xe6\x26\xd4\xd1\xd6\x13\x33\x27\xd5\x31\x6b\x41\x2c\x5c\x5f\x5b\x1d\x72\x73\x81\x64\x2d\x0c\x16\x49\x34\xe3\xbc\x89\xec\xa7\x58\xdf\x10\x47\xbe\xc7\x13\xc1\x18\x0d\x7d\x79\x23\x5c\x7c\xa9\xfd\x78\x00\xc1\x65\x6c\xe8\x72\x74\xb6\x7d\x0b\x90\x0e\x38\x91\x11\x38\x35\x26\xcd\xe0\x81\x06\xf5\x9b\xb0\xaf\x6a\xa0\xe6\x2e\x26\x09\x88\x08\x51\xe4\x0d\x09\xc2\x19\xc1\x74\xa9\x61\x92\x13\x38\x3a\x46\x05\x96\xf9\x84\xd0\xd4\xc7\x99\x84\x88\x5f\x27\x7b\xf8\x1b\xde\x96\xb8\xf3\x67\x7f\x46\x6f\x52\xa2\x25\x78\xeb\xc4\x47\x9f\xe4\xa3\x8d\x7e\x5e\x3c\xe5\x55\xe4\xae\xc4\x2e\xbf\x7a\x25\xd8\xbf\x2c\x1c\x36\x5f\xf8\x46\xcf\x72\x4d\x4b\xfb\xda\x15\x81\xd5\x39\xcc\xf2\xca\xa9\x15\x10\x65\x2a\xe6\x69\x32\xa6\x2c\x9f\x0d\x37\xb6\x1a\x2f\xc7\xc2\xad\x31\xfc\x68\xea\xb2\x48\x3c\x64\xc6\xa2\xb1\x35\x6f\xa9\x7b\x15\x55\x05\xb3\x4f\xc2\x51\x90\x8c\xd6\xf4\x9d\xca\xdc\xb4\xf8\x3e\x25\x46\x24\xda\xfc\x98\x5c\x1e\x07\x51\x9e\xa9\x54\x68\x0e\xaf\x03\x50\x13\x44\x06\xa5\x53\x25\x13\x18\xb9\xcf\x35\xc5\x0c\x7a\x7b\x1b\x0e\xbe\xde\x0a\x6e\x0e\x36\x84\x3c\x06\x0e\x1f\xfa\x06\xd5\x37\xdf\x82\x30\x42\xba\x5b\xad\x3b\x33\xac\x05\x09\xdb\x5c\x64\x45\x50\x86\x52\xed\xae\x6d\xc0\x01\xd2\xb6\xea\x8f\xe0\x94\xb6\x76\xcf\x36\x57\xd6\xff\x36\x32\x0a\x88\x8a\x34\xe5\xc5\x66\x50\xdf\x49\x2c\x64\x73\x66\x15\xe0\x41\x02\x6b\x6c\x4f\x47\xcc\x89\x52\xdc\x9c\x76\x3c\xa7\xcf\x29\x92\x1a\x69\xf6\x09\xf2\x14\xdb\xf7\xe4\x2b\x7e\x34\xbc\x84\x45\x05\x78\x66\x1b\x5a\xae\xe4\xca\x56\x1e\xae\x1e\x2f\x73\xa4\xe6\x00\x57\x5d\xb0\xd0\x5d\xe7\xc8\x87\xcd\xfb\xa3\xec\xd1\x09\x1d\x01\xcc\x87\x9d\x2d\x61\xe0\x50\x1e\x6e\xab\x5e\x07\xd8\x75\xf6\xa0\x47\xae\x99\xbf\xa2\x1f\xbf\x05\x64\xca\x32\xb5\x5e\xc8\x81\xf7\xd9\x07\x74\x7a\xa2\x4a\x16\xdc\x94\x2e\x31\x48\x49\xcd\xe0\xd7\xdd\x3a\x0b\x5a\x34\x95\x5d\x39\x70\xe4\xf3\x8c\x1e\x01\xac\x46\x31\x22\x99\x7e\xdd\x9d\x20\xb5\xd6\x29\x51\x00\xc7\x82\x9c\xe8\x3b\x79\x24\xf3\x77\x72\x47\xa6\x8f\x1d\x2b\x67\x56\x64\x31\x58\xe4\x54\x5a\x6d\x40\xa7\xc8\x7a\xc4\xd4\x81\xbd\xd1\x66\x67\x5b\xaf\x36\xe4\x3b\xc6\xae\xc9\x77\x8e\x5e\x33\xbe\xab\x6e\x7a\x01\x81\xf3\xbe\xd5\x33\xe0\xf8\xce\x40\x19\xc3\x69\x50\x21\x03\x54\xbf\xe8\xe4\xe1\xca\xb0\x45\xd7\xdd\x5a\xdd\x84\x8e\xf5\x57\xbd\xbd\x0f\xa7\x44\xa7\x60\x40\xb1\x2a\x00\xfb\x82\x7d\xb2\x41\x0c\xc6\xff\xa8\x9f\x89\x7e\x73\x16\x7f\xb6\x54\xe0\x1d\x29\xda\x5d\x90\x8e\x1d\x3f\xf3\x19\xfc\x03\xd7\xb9\xf3\x83\x08\x68\x51\x98\x13\xc5\x55\xa0\x83\x29\xb4\x01\xfb\x49\x43\xa6\xb8\x8d\xa8\x19\x71\x83\x32\x82\xd5\xd4\x26\x14\xec\xfe\x5c\xad\xa8\x54\xba\x19\xf6\xd0\x65\x45\xae\x8a\x77\x83\xfe\x7d\xbb\x7a\x1a\x78\x0d\x76\xe3\x02\x46\x35\x5c\xbf\x1b\x5c\x58\x0d\x97\xe1\x1e\xa9\xb3\xb0\x43\x3b\x9d\xaa\xf8\x34\xcf\xdc\xdf\xab\xfb\x8c\x9f\xdb\x03\xd5\x9f\x65\x1b\x95\x33\x35\x1f\xe6\x42\x42\x85\x69\x9e\xc0\x19\x0d\xf0\x5d\x89\x76\x79\x0e\xcb\x53\x01\x4a\x66\x51\xc7\x89\x45\x4c\x57\x66\xd9\xf8\x29\xc2\xe3\x63\xf5\x15\x6b\xf6\x91\x0f\x79\x79\xf4\x11\x52\x0d\xd2\xaa\x4b\x08\xa0\x72\x9b\xe3\xa2\x9e\x7c\xd1\x2d\x03\xc1\x64\x21\x3b\x63\x86\x0a\x74\x81\x89\x88\x2a\xab\x14\x94\xf7\xbd\x11\x71\xf0\xce\x9f\x3e\x3b\x49\xae\x03\x68\x76\x27\x3f\x70\x76\xe9\x0e\x96\x56\x39\x2e\x49\x6c\xe0\xdc\x3a\xcc\xb2\xe4\x78\x1e\xdf\xab\x65\x07\xd6\x1a\xa3\x78\x72\x80\xfa\x3a\x24\x08\x69\x84\x6b\x39\x25\x8c\x96\xb0\x50\xbf\x59\x8c\x91\x96\x9e\xa8\x31\x65\xed\x22\x20\xf6\x0b\xc5\xd3\x4a\xe6\x25\x1e\x0a\x8f\x00\x99\xc7\xb5\xa7\xfc\xb7\x36\x17\x60\x94\x80\x61\xfc\x66\x3f\x52\xe1\x03\x91\x2a\xc0\xb6\xa6\x12\x0b\x8a\x5d\x40\xf7\x6a\xf1\xb5\x15\x5a\x41\x52\x13\x5f\x16\x9a\xf0\xcb\xcd\x57\x19\xce\xa2\x5a\x53\xd6\x9b\x39\x02\xe3\xbb\xbe\xf8\x8f\xbb\x15\x58\x90\xdf\x99\x45\x6c\x49\x3f\x41\x3a\x91\xff\x3d\x7d\xe5\xd8\x71\x8c\xc7\x3a\xee\x57\x8b\xf0\x17\x29\x39\x2a\xc3\x00\x0e\x84\xe1\x14\x30\x11\x59\xfc\x99\xd1\x8c\x55\x30\xf1\x20\x00\xae\x64\xe3\x15\x35\x88\x4b\xcd\x45\xcc\x4b\x60\x35\xdc\x68\xc1\x3c\x58\x0a\x34\xd6\x8f\x5e\x62\x11\x57\x19\x7b\x56\xc4\x6f\xb2\x33\x46\xd0\x94\x8a\xb7\x1e\x83\x1c\xdd\x7a\xf0\x28\xbc\x72\x9e\xe4\x5a\x61\xca\x87\xd8\x72\x4f\x4a\x59\x36\x57\x1c\x3e\xc4\xdf\xd4\xaf\x1a\xba\xbc\x56\x05\x44\xd9\x38\xe8\x53\x64\xf0\xc0\x90\x55\x5a\x62\x3a\x6d\x42\x70\xc3\xab\x44\x97\x85\xe0\xfe\xb5\x86\x0b\x30\x80\xa1\x8a\x99\xe0\xd5\xc3\xf6\xc8\x8a\x8a\x66\xe6\x39\x22\x01\x13\x53\x19\xad\x80\x70\x40\xca\xfd\x34\xf2\xd9\x24\x0a\x9d\x77\x4b\x20\x07\x00\x11\xd8\xbf\xc1\xae\xd3\x68\x08\x23\x22\x26\x6e\x12\xb1\xb8\xdb\x4a\x0d\xdd\x53\xd0\x2a\x25\xe4\xce\xa8\x25\x9e\x33\x2c\x50\xb3\x03\x7b\x54\x91\xfa\x82\x71\x51\x3c\x19\xeb\xc6\x0d\x1a\x8b\x2a\x31\x2c\xd0\xa1\x9a\xe8\x7e\x64\xf5\xe5\xf2\xa7\x2c\x24\xb1\xd5\xdf\xe1\x6a\x1c\x3e\x24\x64\x54\x11\x50\xbf\x6a\xdb\x19\xc6\xe4\x70\xf5\xa5\x2a\xa6\x08\x3a\x3f\x87\xa1\xb6\x04\x87\x32\xd9\xea\x52\x73\xf3\x8e\x02\xb0\x55\x89\xb2\x52\x11\x30\xc3\xa8\x4f\xa9\xa1\xb2\x18\x5b\xeb\x65\x4e\xc0\xbf\xd6\x57\x12\x61\x8b\xd2\x6d\x9f\x5d\x54\xd5\xf1\xb0\xc2\xfd\xe0\xc3\x36\x78\x99\xf6\xf8\x34\xb0\xa7\xcd\xdb\x17\x10\x23\x4b\x25\xc7\x07\xa8\xd9\x39\x10\xcb\xc2\xf5\x17\xc1\xec\x53\x5c\x13\x9a\x2c\x48\x6b\xe4\x2d\x0e\xc2\x60\x63\xaf\x0e\x48\x80\x66\x8a\x6a\x6e\x28\x13\x9c\x5f\x09\xee\x4f\xa9\x3b\x8e\x3e\xc3\xba\x51\xec\x2d\x7f\x54\x0d\x51\x11\x79\xff\x62\x35\xd6\xe8\xa4\x54\x46\x6a\x94\xa3\xb3\xc9\x8c\xa2\x3a\x9b\x7a\x7c\x3d\x7a\x9c\x20\xa5\x93\xd3\x1c\x0f\x38\x02\x88\x02\x82\x9b\xbf\xdc\x8e\xcf\x46\x81\xf4\xa3\x70\x8a\x7a\xb9\x89\xfd\xe8\x23\x5e\x19\xe8\x7f\xb3\xb7\x4c\xbc\xa5\xfa\x5c\x82\x93\x8e\xba\xfd\xe0\xcc\x12\x9d\x10\xf5\xbd\x40\x8e\x87\xdc\xfc\xe5\xbb\x70\x13\x46\x45\xec\x96\x0d\x92\x40\xab\x3e\x89\x84\x2f\x31\x40\xc0\x6b\x5b\xd9\x16\x8c\x62\xed\x05\x8d\x61\xf4\x72\x47\xd3\xde\x9a\x05\x3d\x89\xbd\x34\x4a\xca\xc8\xca\x40\x21\xba\xf9\x08\x1b\xd2\x09\x94\x87\xed\xac\x66\x55\x23\x24\x46\x90\xd3\xe1\x16\x9e\xf8\x4e\x70\x8d\x2a\x26\xa6\xc4\xfb\x8c\x40\x74\xbf\xe9\xb0\xdc\xb5\x01\x1e\xef\x3d\xbd\x92\x5b\x01\x39\xcc\x18\xc5\xe2\x54\xb0\xb0\x22\x61\x73\x5d\x7a\x71\x3d\xf4\x7d\xd5\x55\xb0\x03\xf2\x6b\xee\x5a\x05\x6e\x71\x4c\x3e\x00\x23\x9a\x1e\x07\xc2\xc6\xe6\xff\x94\xa1\x6b\x38\xb1\x6a\x75\x83\x46\x8d\x91\x6e\x72\xf9\x41\x2a\x1c\x93\xb8\xae\xdb\x2c\x3b\x29\xd1\xff\x1d\xfb\xc2\xc5\x59\xe0\xed\xf2\xb6\x04\x01\x08\x6d\x20\x06\x89\xa2\xe0\x63\x1d\x1d\xd4\x1e\x2d\xb1\x9f\xeb\xcb\xa0\xde\x7a\x64\x8a\x96\xf8\x12\x99\xb1\x55\x13\xb8\xa4\x06\x84\x5e\x51\x0d\x01\x47\x17\xbd\x35\x05\xfd\xa8\xf9\xe6\x93\x35\xd8\xd7\x54\x08\x60\xec\xb2\xcc\xac\xe2\x85\xcd\x80\x89\x31\x09\x78\x0a\xfa\xa5\xb7\xab\x01\xd3\xda\xee\xdc\x75\xa9\x95\xd8\x78\xd4\x3f\xa4\xb6\x0e\x70\x03\x0e\xc0\xa5\x0e\x5c\x55\x4d\x56\x62\x06\x93\x58\xcb\xf4\x56\x11\xa0\x07\xc3\x4b\x84\x90\xb3\xf0\x94\xc0\x85\x18\xac\x27\x49\x32\x80\xb1\x18\x76\x6b\x32\xea\xe6\xb3\x7b\xac\x08\x48\xad\xc3\xdb\x5f\xc8\xf6\x0d\x53\x95\xe6\xfc\x26\x6a\x7d\xd4\xcd\x97\x5a\xa5\x64\x97\x51\xcb\x82\x81\x5e\xd4\xcb\xec\x1c\xa6\xe9\x48\xed\xc2\x43\xbf\xe2\xf0\xfc\x45\xca\x7a\xd0\x59\xd4\x83\x17\x23\x06\xfd\x53\xfa\x07\xee\x35\x15\x0e\x51\x58\xe0\x2e\xaf\x1d\x00\x57\xb5\x41\xde\xf2\xd9\xd8\x99\x11\x35\x2c\x91\xd1\xf4\xde\xe1\xe6\x32\x80\xd1\xdb\xb9\x3b\x70\xc9\xf5\x7c\x24\xd0\xa8\x3c\x27\xcf\xce\xab\xad\xb5\x85\xd6\xc3\xc5\xee\x2d\x9b\xd0\x1b\x17\x12\xd0\x78\xa8\x68\xd9\x33\xfc\x97\x75\xf4\x9b\x77\xbf\xf5\xac\xbe\x61\xc3\x10\xf1\xcd\x7b\xdf\x02\xb3\x76\xf4\x9b\xf7\xbf\xa5\x54\x0e\x9d\x75\xb3\xfd\xb9\x53\x68\xd2\xdf\xb4\x08\xd6\x42\x67\x6d\x6a\x27\xb1\x44\x95\xaa\x7d\xda\x71\x6b\x1e\x2a\xaf\x81\x23\xa2\x54\x33\x9a\x58\x7c\x8f\x86\xac\xa9\xc4\x67\x3e\xf3\x1c\x47\xac\x48\x6a\xfc\xbc\x17\x94\x9a\xa7\xe3\xb0\x97\x6b\xa5\xac\xcc\xdd\x43\x8a\x10\xde\xbe\x9e\x98\xbc\x94\xa2\x18\xe6\x67\xbe\xc3\x51\xc3\xa4\x9d\x02\x4e\x19\x06\xaf\x92\x59\xfc\x03\xff\xfa\x90\xe6\x46\x5c\x2a\x37\xf3\x5d\xd4\x93\x1b\xd9\x33\x36\xae\x22\x29\x55\xb6\x71\x65\xd8\x88\x51\x28\xce\xeb\x91\x18\x2d\x17\xc9\x88\x62\x20\x80\xd5\x89\x71\x57\x6d\x5a\x17\x01\x22\xe7\x7f\x5e\x9d\x24\x44\xa2\x39\x03\xb2\xb3\x51\x21\xc0\x0a\x5b\x92\xa5\xbc\xd6\xbf\x6d\x9d\x78\xfc\xdf\x25\x46\xf5\xdb\x9b\x31\xc6\xfd\x5d\x6c\xf3\x1c\x64\x9d\xfb\xa9\x39\xf8\xaf\x5d\xb5\xcb\xa8\x56\x22\xad\x03\x41\xb1\xb5\x37\x67\x31\xec\x9b\x75\x17\xf5\x00\x2c\xb5\xcf\x51\xdd\xc0\x4b\x12\xaf\x25\x05\xa4\xc8\x8a\xdc\xd2\x23\x6c\x65\xbd\x9f\x72\x2d\xd5\xdf\x55\x2c\x11\x88\x24\x20\x04\xe2\xc5\x3c\x36\xd3\x7a\xaa\x23\x85\x4d\x28\xa7\x9c\x55\xbe\xed\xac\x1f\x9a\x9d\x64\xf7\x30\x14\xcb\x36\x66\x5a\x6b\x9b\x20\x82\xc0\x21\x30\x03\x5d\xe2\xa1\x5c\xd3\x2c\x6a\x37\x81\x84\x9c\xbf\x1b\x37\x27\xb2\x2b\x81\xde\xfa\xd8\x61\xb6\x0b\x0e\xdc\x16\x2f\x56\x5b\xbb\x4f\xa2\x25\x8e\x67\xb3\x51\xe3\xcc\x9d\xb6\x33\x1c\xc0\xa8\xbf\xf1\x7d\x29\xe9\x2c\x8c\x1b\x3e\x01\x90\x77\x8b\xae\x62\x01\xda\xb7\x66\x5b\x13\x4f\x3b\x00\x50\xb7\xcb\xd7\x77\xe2\xaa\x65\x80\x08\xf1\xbd\x18\x1f\x80\xe2\x51\xfc\x46\x62\xf8\xb4\x69\x71\x49\xcc\xb3\x2b\x51\x26\xd1\x17\xe2\xaa\x91\x36\x8e\x84\x55\xe0\x40\x98\x84\x59\x51\xd6\x87\x34\x92\xe2\x8e\x6b\xdc\xa8\xc8\x33\x46\x16\xc5\xc9\x70\xf4\x49\xc2\x96\x48\xba\xe6\xf4\x7e\xb4\x1d\x40\xe4\xaf\xc8\x9c\xf8\x3b\xf6\x52\x03\x99\x0b\xcf\x4d\x25\x07\xe8\xc5\x5e\x2a\x1e\x46\xfa\x84\x4f\xe6\x25\x1d\xcc\xe3\xc9\x60\x7a\xb1\x0b\xa4\x4c\x83\xc0\x83\xb1\x35\x64\xb0\x48\xf4\x6b\x2f\x5e\xd2\x9e\x44\xdc\x00\x60\x18\x06\x02\x3f\x7b\x21\x16\x1a\x23\x73\x12\xfb\x8c\xc4\x9a\xc7\x04\x2f\x19\xfc\xa7\xa3\x5f\xfe\x6f\x46\xfe\xab\x8a\xe5\x82\x13\x01\xf6\x8f\xf4\xcb\xe2\x5f\x0a\x04\x08\x72\xd5\xf6\x6a\x45\x14\xbf\x80\x1a\x4f\xec\x63\xd0\xf8\xb3\x39\x38\x2e\x11\x04\x65\x1c\x62\xdd\x07\x77\x73\x72\x10\x08\x08\x8a\xcf\x52\xc6\x6a\x12\x2a\xb3\xfa\xec\x7c\xae\xe6\xa1\x18\x8d\xb1\x45\xe5\x82\x35\x88\xf9\x8f\x94\x0c\x4c\x5a\x28\xfb\xb4\x8d\xa1\xf2\xdc\x3c\xba\xf1\x9a\xe9\xa3\x32\xdf\xe9\xd6\x73\x45\xd4\x9d\x0e\x03\x55\x42\x00\x4b\x00\xa0\x07\x7f\x08\x7d\x49\x7c\x68\xcf\xb6\xfc\x21\x57\xd4\x26\xde\xef\xcd\x9b\x18\x48\xd5\x3b\xd4\xc3\x3b\x78\x1d\x17\x84\x6c\xfd\x03\xfd\x10\xe2\x25\x6b\xc8\x7c\x3b\x67\x39\xb3\x4c\x39\x5b\x41\xd0\x61\xe5\x3d\x45\xcf\x17\x52\xbc\x97\x6c\xe8\x92\xae\xee\x82\xd0\x4c\x8f\x49\xe8\x07\x18\x14\xa6\x68\x24\xfd\x6d\x39\x65\xa8\xa0\xbe\xbf\xaf\xbf\xab\xe6\xa9\x29\xb9\x9c\xb9\x17\xfe\xf2\xef\x6b\x1d\x6a\xff\x87\x6f\x3d\x3d\x85\x5c\x1f\x5e\xbc\x98\x20\x8e\x5d\x19\x8f\x1b\x3f\xe2\x40\x2c\x8b\x1f\xe7\xff\x9a\x45\xa4\x84\x46\x2c\xb2\x95\x87\x61\x41\x15\xcb\x25\x0a\x28\x42\x43\x57\xa1\x65\xfc\x59\x12\x55\x99\x5b\x08\x23\xae\xd8\x55\xd4\x0f\xcb\x42\x02\x9c\x4e\xa1\x60\xae\x4a\xe6\x0b\xfa\x8f\x89\x2c\x52\x70\xb2\xa3\x51\xed\x64\x24\xcb\x97\xf0\x31\xe2\x16\x30\x4f\x12\x1c\x08\x32\x65\x7e\x02\x7f\x63\xce\xa6\xce\xf1\xe9\xa6\x18\xd2\x2a\xd4\xc8\x51\x52\x91\x0f\xac\x84\x4a\x33\xd3\x5d\x4a\x0f\xdc\xf1\x80\x0c\xd8\xf9\x53\xe8\x40\x8c\xe9\xa1\xd0\x2a\x57\x74\xf2\xbe\xa5\xbe\x22\x6a\x93\x6f\x37\x26\xf1\xaa\x54\xdd\x81\x2a\x85\xbf\xe9\x74\x61\x70\xef\x79\x83\x94\xd8\x0b\x01\xfa\xed\x21\xab\xe4\x12\x6b\xa6\xbb\x80\xdb\x26\x4b\x56\x04\x9a\x29\xe3\x8c\x24\x6a\xd2\xeb\x8a\xe5\xc7\x12\x8b\x6b\xb9\x29\x9b\x61\xb6\x4a\xfa\xf9\xf4\x86\xdf\xf2\x0f\x6e\x5a\x9d\x7b\x9f\x4e\x2f\x1e\x73\x35\x71\x4f\x9f\x58\xa5\x2e\xe9\xde\xa3\x68\x4a\x05\x7f\x6a\xac\x93\x43\x4d\x21\x3a\xad\xe2\x1e\xb8\x45\xdc\x08\xcf\x2d\x9e\x86\xd5\xf1\xe3\xd8\x12\xa7\x23\x84\x39\xa9\xe7\x99\x70\xb5\x56\x96\x73\x47\x95\x48\xb9\xe8\x65\xbe\xeb\x9c\xac\xe0\x70\xb7\x89\x9a\x64\x8a\xa0\xca\x71\x4c\xfa\xc7\x7f\x38\x5a\xf8\x27\x3e\xbb\x1e\x66\xe6\xea\x30\xf1\xe0\x47\x5e\x4b\xd3\xf7\x0e\x67\x0c\x4d\x0f\xe5\x1c\x4a\xaa\x85\x29\x47\x10\x08\xfe\xc6\x18\x30\x53\xe1\x47\xba\x25\xf1\x27\x8b\xa4\x62\xa3\xdc\x54\x06\x18\x92\x81\x01\x11\xd7\x06\x44\xd2\x41\x12\x04\x7d\x42\x41\x5c\xf1\x52\xca\x51\x67\x5c\x03\x84\x21\xc1\x8c\xf5\xc6\xf5\x07\xe1\xfa\x6d\xa5\x47\x4b\x8c\x27\xa3\x98\xf0\x64\x17\x99\xb4\xb6\xed\x21\xb8\xaf\xfb\xf0\x1e\x41\xbb\x2f\x09\x4a\x7a\xaa\x8d\xfd\x73\x98\x6f\xf2\x2e\x9a\x58\x24\x40\x63\xef\xa6\xc1\xe2\x98\x1d\x98\x0a\x9a\xf4\xb5\xd2\x6c\x59\xb2\x2e\x2b\xc4\x45\x15\x6e\x7e\xd7\x93\x36\xa6\x8b\x06\x34\x4a\xf2\x44\x06\xb4\xd8\x14\x6d\x74\x41\x26\x2d\x59\xac\x40\x67\xeb\x90\xe6\xb2\x8c\x09\xb1\x56\xb5\x51\x4c\x45\xfb\x4d\xb3\xab\x07\x5a\x8a\xde\x1a\x86\xff\x1d\x2b\x95\x8e\x15\x0a\x64\x3d\x0b\xf6\x6e\xeb\xac\x4b\xc9\x05\xd0\xbc\x8f\x5e\x02\x36\xba\x89\x26\x29\x72\xd5\x31\x6a\x1a\xbc\x61\xfa\xc2\x21\x80\xb1\x49\xe2\x9b\x0b\x1b\x33\x79\x13\xa6\x1b\x2e\xb1\x56\x14\x97\x0f\x1d\x70\xc8\x70\xd0\xd8\xde\xc6\x48\x18\xbd\x79\x73\xe7\xd0\x65\x48\x2b\x85\xae\xfe\x88\xa1\x5f\x12\x75\x67\x4e\x22\xce\x69\x1b\x25\x31\x56\xf4\xc0\x61\xa6\xce\x1f\x7b\x64\x03\x34\x49\xa2\x2c\x2a\xa0\x7f\xcd\x42\x3d\xb9\x1c\x09\x96\x36\xbd\xaf\x2e\x3c\xad\x06\x7e\x2d\x5b\xcb\x0e\x20\x69\x3c\x6d\x5a\x2f\x1d\xb3\xea\xf0\x91\x33\xd3\x81\xb2\xcd\x3c\x91\x25\xb4\x87\x33\x95\x79\x99\x78\x82\x3d\x5d\x6c\xe4\x10\x71\xb5\x50\x47\xd9\x43\x38\x94\x46\xc1\x0d\xba\xee\x29\xed\xae\xfa\x17\xbb\xcf\x6a\x4f\xdc\x09\xd6\xe7\x0c\x88\x01\xcc\x1a\x68\x00\x51\xde\xbc\x24\x10\x70\x90\x4e\xde\xc8\x6c\x9a\x3e\xa8\x02\x32\x22\xd5\xec\x0f\xa4\x18\x9e\xd9\x6c\x5f\x7d\x20\xbe\x26\x18\xa2\xa1\xa1\x52\x92\xe5\xea\x32\xf1\xb4\xd7\x1d\xb1\x4a\xa9\xcb\x12\x89\xc7\x3a\x92\xf1\x37\x09\xbb\x48\x0b\xb7\xc0\x50\x8c\xe8\x1a\xe8\x31\x1a\xf7\x81\x4b\xf6\xfa\xd1\x46\x4d\x41\x63\xe2\xf1\xc0\x1e\x18\x8f\x26\x53\x00\xb5\xc3\x1b\x4b\xb2\xe8\x7b\xc9\xc3\xa6\xfa\xad\xf1\x9f\xd1\x23\x8a\xed\xa5\xf1\x6c\x4c\x91\xff\x5a\x7d\xd1\x08\x7c\xd3\x1d\x50\xb2\x5a\x8a\x0d\x45\x96\xcb\x63\xe3\x3f\x7a\x7b\x18\x76\x39\xed\xb5\x63\x7a\xb3\xb2\xc7\xab\x61\x9a\x8d\x36\xca\x94\x22\xd1\x72\x2c\x36\xba\x04\x80\x79\x5c\x54\x3f\xe4\xef\x46\x6e\x4f\xed\x91\x73\x30\x37\xc9\xf9\xb9\x35\x11\x8e\x5c\xc7\xe4\x8d\xfb\xd3\xad\x5b\xd3\xf1\x09\xe8\x15\xc2\x3c\x70\x70\x30\xb2\xef\x66\x8e\x59\x78\xbb\xd3\xee\xe0\x55\x63\xb1\x27\x9a\xe5\xf4\x93\x67\x0d\xcd\x96\xae\x73\xb8\x88\x0b\xce\x69\xa7\x50\xcb\x15\x29\xcf\x57\xda\x0e\xe9\x66\xdf\x33\x9b\x05\x8e\x87\x1c\x24\xba\x36\x0d\x1c\x82\x91\x83\x98\x6f\x79\x9d\x4b\x16\x30\x98\xb9\x51\x9b\x6b\x78\xa9\x1d\xe3\xcd\x20\xea\x03\xe1\x92\x28\xfa\xd6\xd2\x51\x6b\x31\x3e\x82\x9d\xf4\xd1\x2b\x8c\x3d\xf9\x35\x1b\xf3\xfb\xce\x85\x37\x57\x8a\xf0\x39\xe2\x79\x94\xcb\xd4\xf1\x8f\xbe\xfc\xf2\xcf\x27\x23\x67\xa9\x3e\xe0\xd1\xca\x05\x18\x78\x4f\xf7\xe6\xde\xeb\x6c\x8e\x16\x8b\xec\x82\x65\x18\x7c\x71\x58\xc2\x02\x68\xea\x20\x1c\x56\x25\xc7\xad\x62\xcd\xa3\xc3\xf2\xb6\xc5\xd1\xf2\x94\x72\x17\x68\x06\x72\xf3\x6f\xb3\x02\x0b\x38\x68\xa5\xc2\xa4\x75\xe5\x2d\x00\x51\x05\x5a\x89\x08\x97\x1b\x5f\xd5\xc4\x50\xc9\xf7\x00\xa7\xff\x59\x47\xcf\x16\x71\xcd\x18\xbb\xf6\x36\x39\x63\x21\xa8\x84\x50\xf4\xb1\xd0\x5b\x42\x0e\xae\x60\x03\x77\x53\x80\x41\x00\x01\xc0\x5d\x51\xe4\xf9\x75\x9d\xbe\xd7\xbd\x53\x76\xe2\x4a\xeb\x95\x63\x37\x60\xaa\x1c\xde\x45\xac\xa4\xef\x94\x0e\xda\x0c\xea\xec\x7d\xee\xcc\x8c\xe4\x38\x65\xdb\x15\xa3\x87\xf8\xe0\x23\xfb\x38\x13\xb8\xc8\x35\x2e\x65\x8b\x48\xb6\xa3\x85\xb2\x00\xed\x48\xbc\xe8\x46\x69\xa3\x70\x1f\x83\xd6\x76\xc4\x33\x75\x1e\x01\x51\x1e\x02\x54\xe4\x37\xa8\xa1\x4a\xb9\x53\xc0\xcb\x2a\x42\x2a\x99\x7e\x0c\x72\x9a\xd6\x20\xfb\xd7\x2a\x97\x24\x4d\x70\x55\xe8\x6e\xe7\x50\xe2\x9e\x96\x71\x0f\xcb\x64\x2f\xe8\x9a\x6e\x22\xa0\x76\x52\x27\x4a\x9a\x72\x7d\x26\x2b\x44\xca\x2a\x1a\x89\x19\x1d\xa3\xab\xc7\x87\xc7\x88\x91\xde\x88\x19\x56\xaf\xab\xeb\x98\x06\x8c\xa0\xbc\x76\x83\xef\x88\x78\x9b\x14\x9d\xef\x50\xc8\x75\x96\x13\x49\xa5\x44\xe8\x03\xa7\x22\x81\xcc\x2a\xe0\x3a\xb8\x76\x93\xd3\xa2\xa1\x17\x0f\x8d\xbc\x79\x66\xbb\xcb\xb0\x71\xe2\x43\x76\x1f\x72\x06\x12\xd9\x93\xce\x3d\x10\xeb\xc0\xf7\x44\x54\xce\xfe\x63\x18\xe4\x4e\x39\x53\xd1\x57\x9f\x5c\xbc\x1b\x5b\xa8\x61\x43\x3e\x6e\x7a\x1c\xbe\x37\xb6\xa7\xd0\x85\x61\xe9\x0c\x6a\xe7\xe8\x0b\xf9\x55\x71\xdc\x8f\x75\xe2\xcf\xbd\x27\x2d\x1d\x2a\xca\x2e\x0d\x07\xe7\xee\xfe\x0b\x8f\x17\x2d\x39\xe3\xe1\x83\x79\x0e\x39\xe1\x6c\x9e\x94\x06\x5f\x33\x71\xc6\xf8\x65\x8e\x91\x66\x54\x82\xb4\xa4\xad\x03\x20\x3b\x63\xba\x04\x22\x16\xcc\x85\xda\xa2\xa4\x30\x89\x67\x1b\x93\x8c\x23\x75\xb5\xc4\x9f\xe3\xa0\x78\xae\xee\x43\x50\x88\x24\xa3\x7d\x6d\x6c\x57\xb2\xa5\x1e\x25\xa0\x6b\xa9\x3c\x05\xc2\xab\xe0\x55\x8a\xa9\x84\xe8\x8f\x14\x18\x96\x34\xbc\xcc\xa7\xfc\xdf\x14\x88\x0a\xa7\xd7\xc9\x48\x9a\x9d\x14\x88\x3e\xb7\x30\x9c\xf9\x18\xfe\x49\x61\x4d\x25\x8f\xba\x66\x4c\x11\xb5\xe7\x37\xe5\x29\x88\x47\x2d\xf4\x44\x9d\x6b\xec\x5f\xc3\x53\xa4\x72\x91\x72\x40\x06\x3a\x02\x13\xe6\x21\x1d\xa1\xac\x8e\x28\x9a\x33\x8e\x92\x9f\x4f\x1c\x19\xa4\x3f\x52\xbf\x0b\xef\x43\xd6\x0a\xe9\x75\xf9\x01\xc7\xd2\xe2\x51\x9a\x18\xd7\xde\xf9\xe1\xea\x4f\x8d\xfd\x29\x15\x93\xba\x4e\xe1\x45\x28\xb5\x44\xc6\x0e\xf2\x83\x17\x66\x6b\x65\x0e\xb5\xff\xd4\xa0\xb4\x43\x0e\x2a\x9c\x54\x19\x11\x17\xb8\xb1\x99\x9f\x81\xbd\x4a\x1f\x1a\xb9\x63\xcb\x0c\xc4\x56\xd1\x01\xa3\xac\x7a\x32\x6c\x6a\xb3\x93\xf2\x0b\xb4\x8a\xc2\x25\xd8\x0e\x16\xdb\x20\x03\xc2\xdf\x52\x82\x0b\x9c\xfb\xc8\xd5\xf6\xe8\x79\x51\x76\xe2\x59\x55\xba\x4e\xd6\x98\xa3\x3b\xfa\xea\x99\xf6\xe2\x26\x1f\x72\x3e\x7a\x3a\x2b\x5a\x30\x77\xc1\x38\xf0\x3a\x51\x8f\x66\x9e\x75\xc2\x48\x60\x61\x51\x5a\xa5\x6c\x99\x1c\x54\x0e\x52\x03\x88\xd3\x20\xd6\xff\xb7\xde\x3f\x7f\x69\x51\xec\x19\xf5\xfb\xfd\xb1\xa1\xa1\xa1\x63\x78\xd0\x8e\xd5\xaa\x45\xbb\x8c\x1f\x0b\x32\x26\x4e\x89\x24\xb1\x6e\x30\xa6\x37\x25\x23\x14\xde\x86\x64\xc4\xbc\x38\x05\x95\x39\x65\x75\x2c\x55\x94\x79\x25\xe1\x06\x98\x99\xfa\x59\x5d\x60\x4a\x41\x76\xbe\x6a\xab\x48\xb2\x8e\x3d\xf2\x8a\xb9\xfc\xa9\x28\xee\xfc\x6b\xf9\xa3\x03\xc2\x81\xae\x68\x24\x9f\xc1\x1f\x9c\x3a\x3b\x01\xc1\xc6\xab\xe3\xf8\xaf\x51\x86\x6a\x7f\x15\x41\x80\xb1\x15\x74\xdb\x63\xdc\xd2\x74\xb8\x7c\xad\x75\x7f\x0b\x76\xca\xa0\xf7\x28\x8e\xd3\x36\x52\x5a\xa3\x44\x23\xe4\x10\xe8\x96\x8b\xc3\x94\x25\x97\x16\x44\xb6\x04\x4b\x14\x56\x70\xfd\x38\x4e\x73\x7d\xca\x12\x17\x71\x9a\x99\xcf\x2c\x74\x31\xd6\x6c\x6e\x54\xa2\x59\xdd\x9e\x8e\x36\x38\xfa\x3c\xf3\xb9\xed\x5b\x25\x64\x8d\xf0\x97\x35\x34\x08\xcc\x18\xb7\x96\x52\xc3\xb4\x34\x74\x29\xe5\xf5\xf9\x98\xcc\x25\x6f\xa3\x23\xaa\x9f\x1b\xb0\xc4\xe5\x23\x75\x19\x32\x27\xe0\x9f\xf4\x05\xd2\x14\x0c\x7f\x21\x7d\xcf\x19\x7c\x9a\x79\xe0\x28\xef\x61\x46\x12\xf2\x50\x2c\x7a\x47\xa9\x4e\xa3\xbf\xf0\xdc\xbc\x48\xe5\x6a\x5d\x3a\x23\x49\x68\x38\x43\x03\xed\x25\x5c\xfb\xc6\x76\xc6\x77\x01\x8f\x38\x9d\x6f\xe3\x32\x51\x74\x36\x19\xb1\x98\xa4\x21\x9a\x43\x20\x1a\x92\xce\x21\x08\x68\xb7\x2e\xba\xb2\x98\xc2\x2d\xab\x2e\x24\x10\x32\xb5\x0b\x76\x5c\xc9\xca\x9d\x8a\x49\x48\xc4\x7b\x85\xb0\xb1\xb5\x7a\x85\x5f\xf6\x31\x79\x16\x71\x20\xa2\x96\x94\x87\x7a\x6c\x49\xf8\xf4\x44\x84\x4f\xbf\x59\x20\x0e\xeb\x1c\xaa\x1a\x33\x54\xf7\x62\x15\xb6\xfd\x5f\x3b\x07\x53\x8a\xaf\x33\x37\xc8\x81\x5b\x2a\x64\x2b\x51\x98\x78\x0b\x20\x79\x92\x81\xe3\xc7\x57\x67\xda\x37\x77\xda\xa3\x97\x62\x2b\x55\x29\xba\xc3\x66\x60\x32\xe7\x38\xd7\x31\xb4\xe6\xbc\x22\x60\x15\xb1\x9d\x0e\x4b\x9e\xc7\x51\xbb\x98\x84\x97\xf2\x89\x22\x3b\xce\x19\x9b\xc8\x55\xc4\xac\x9d\x90\xfa\x63\xfa\xdb\x94\xc1\x26\xa2\x69\x3b\x68\x60\x3c\xec\xd7\xec\x28\x11\xf6\x1b\xc7\x9b\x37\x08\xff\xed\x6c\xcb\x08\xff\x8d\xad\x56\x67\x58\xaf\x59\xb7\x4b\x5c\x6f\xda\x5c\x93\x6a\xca\xf4\x45\x4f\xa9\x90\x54\x59\x1a\x15\x23\x95\xa5\xd2\xe0\x48\xb2\x7a\x65\x89\x4f\x44\x40\x76\xe8\x2e\x0f\xec\x57\x0b\x84\x1d\x03\x8e\xe9\x31\x0b\x4e\x7f\x7f\x4f\x5f\xd5\x1d\xf2\x30\x64\xb6\x56\xcd\x83\x08\x36\x32\xdb\xba\xb7\xc7\xee\xc3\x02\x80\xe6\x68\x0c\x7f\xab\x3f\x6f\x3e\x19\x69\xef\xdc\x90\xcf\x6c\x84\x92\xa4\x14\xca\x53\x97\x4a\xc8\x36\x98\x48\xda\x4d\xb6\x0c\x60\x10\x50\xbe\xa1\x4b\x55\x60\xbd\x41\x77\x28\x8b\x7f\x51\xd4\xaf\x97\x11\xb6\x8c\x18\xb2\xe6\xb3\xcd\xd6\x6a\x5d\x01\x62\xb1\x2c\xe8\xd8\x26\x3e\x12\xa2\x6e\x19\x4b\x9c\x37\xd8\x1d\x00\x64\x29\x20\x4b\xf3\x2f\x8d\x90\xbe\xe9\x60\x7a\x2c\x9c\x7a\xa4\x2b\xa0\x67\xd6\xa3\x5b\xe1\xec\xc5\x60\xec\x6e\xa4\x83\x09\x2e\x4e\x27\x20\x38\x44\x53\x43\xa8\xf5\x82\x53\xde\xd8\x9e\x6e\x8f\x3c\xa5\xcc\xf3\xf4\x8d\xbc\xb7\x39\x7b\x0d\x07\xe4\x8b\xe3\xb6\xf6\x12\xef\xe9\xe2\x2d\xae\x8a\xd9\xa1\x9f\xfe\x16\xef\x1f\xc4\x58\x79\x78\x4c\x01\x15\xaa\xb9\x7e\x3f\xd3\x9a\x99\x68\xae\xbe\x8a\xbe\x56\xaa\xb6\xaa\xd9\xbe\x39\xc7\x95\x93\x35\x61\xf1\x70\x17\x9a\x6b\x6b\x14\x6e\xac\x3e\xc7\x5c\x55\xd4\xc7\x1c\x4a\x04\xf8\xd8\x02\xa6\xea\x32\x06\xdb\x78\x39\x85\x29\xaf\x5e\x3c\x35\xd7\xfe\x68\x21\x5a\xc0\x84\xdb\x39\x26\x7f\xc0\xf4\x8f\xe2\xee\xaf\x87\x42\x78\xc6\x29\x5f\xc3\xed\x39\x85\x69\xaa\x18\xae\x69\x79\x85\x26\xe6\xd3\x13\x15\x13\xe7\x67\xe6\xd4\x8a\xd7\x55\x0f\x75\xb0\x97\x77\x7d\xd1\x0c\x86\xc0\xbc\xb1\x44\x2b\xf0\x78\x89\xfb\x4c\x62\x7f\x54\x4e\x7d\xde\x02\xa1\x7f\x0a\x46\xb1\x86\x68\x70\xcc\x96\x14\x7d\x8a\xdf\x23\x5f\xe4\xaa\xa7\x0a\xee\x50\x99\x05\x58\x5a\x5a\xe5\x91\xa7\x9a\x19\xaa\x92\x12\x9d\xbe\x26\x17\x9f\xfc\x15\xd1\x10\xb9\x50\x47\xd9\xe5\xe6\x1c\x1c\xc6\xce\x01\x98\xde\xcd\xc8\x02\x52\x4a\xbb\x64\x37\xc8\xe8\x52\xba\x7a\x7a\x2f\x06\xa8\x5c\x6b\x77\x42\x1e\x01\x4b\x22\x0e\x1f\xab\xf6\xc8\x92\x8e\x30\xea\x8a\x49\x46\x25\x15\x7f\xa8\xa4\x8a\xe0\xc2\x24\xc8\xfb\x51\x8a\xc1\x9d\xed\xd6\xfa\x06\x71\x32\x82\x41\xe1\xe4\x02\xa6\xde\x9b\x5f\xc1\x98\xf2\x8b\x1b\xc1\xed\xb3\x46\x42\x48\xdd\x01\xea\xbc\x80\x1d\xeb\x82\xc8\x98\xe4\x9e\xcf\x01\xfa\x83\x01\x92\x26\x4e\x03\x89\x7f\xfa\x24\xd1\xea\x0a\xfa\x4a\x42\xa9\x24\xa2\x65\xc5\xec\x2c\xd9\xda\xcc\x2b\xc5\xbc\x7f\xc4\x75\x9b\xde\x1b\xd0\xe3\x52\x59\xc5\xdc\xea\xc0\xb7\x46\xae\x4d\x95\xa0\xde\xc8\xb3\xc9\xa5\x3a\x63\x96\x02\xf9\xb3\xa9\xc5\xfe\x23\xda\xbb\xbf\x24\x49\x21\x6a\x2a\x11\xa4\xcb\x6d\xb6\xcf\xee\x49\xb6\xea\x91\xa9\xe6\xc6\xad\xe6\xca\x3a\x6a\xef\x9f\x5c\x0a\x7f\x9c\xe5\x08\x5d\x7e\x7d\x89\x92\xc1\x9e\xd1\x41\x43\xd1\xa3\x79\x2a\xd5\x18\x85\xf5\x30\x8f\x47\x2f\xd1\xc1\xf9\x16\x9e\x0e\x33\x3f\x54\x6c\xb7\x82\x67\xc1\x50\x44\x51\xd2\x46\x7c\xb6\xcb\x73\x4b\x36\x39\x9f\x9f\x19\x41\x0b\xc2\xce\x22\x5a\x21\xc9\x6b\x90\xf3\x87\x7a\x6a\xf6\x94\xd4\x13\x53\x7f\x0d\x51\xc6\x74\xd4\x77\xe1\xc3\x76\x33\xaa\x3d\x2e\x48\x24\xa1\x9b\x4a\x09\x77\xc2\x56\xe3\x8f\x09\x4a\xd3\xb8\x56\xcc\xe5\xf1\x40\xc5\xb8\x9c\x9e\x58\x54\xbe\xf3\x35\x42\xdf\x3b\xe0\x8d\x87\x97\xcc\x04\x49\x18\x57\xc8\x31\x96\xfb\xe7\x24\x43\xd1\xfc\x4b\xe8\x32\x18\x5b\x6d\x3f\x94\xe5\x89\xd2\xa7\x62\x07\x51\xb8\xda\x48\x30\x7b\xb7\xb5\xb6\xc9\x5d\xc1\x31\xc3\x19\x72\xe7\x70\xab\x8f\x5e\x6d\xec\x8c\xb4\xb7\x77\x55\xb4\x27\xd5\x8f\x85\x1e\xb2\xa0\xc7\x24\x8d\xc2\x1b\xa9\xea\xc4\x08\xbf\x5c\x85\xc4\x8c\x6d\x51\xeb\x13\xcd\x5f\xae\x92\x98\x97\x9e\x65\xcf\xc0\xc7\xbf\x3b\xd1\x9e\xd1\xc6\x6b\x82\x4d\xa3\xc7\x0f\xa9\xce\x6f\x35\x92\x46\xd9\xe5\xa4\xcf\xb1\xd5\x38\x63\x9d\xfe\x74\xa7\x2e\xee\x92\x6c\xee\x35\xd6\xca\x2e\x63\x8d\x03\x47\x79\x3a\x0c\xe8\xee\xc2\x90\x98\x3a\x01\x4f\xff\x3d\x96\x4e\xd3\xe0\x95\x62\x0b\x48\xe4\x37\x8b\x11\x16\x49\xfa\x26\x55\x22\x45\xa3\x9c\xfc\x98\xa2\xb1\xd3\xe6\x91\x31\x13\x6b\x76\xca\x78\x69\xf9\x1a\xba\xc1\xbe\x3e\x71\x83\x4e\x0f\x4a\x5e\x04\xbf\x35\x71\x43\x17\xbb\x42\x6a\x06\x87\x6e\x63\x44\x72\x22\x4c\x00\xe3\x5d\x2c\x8d\x43\x1a\xb4\x0a\x3b\x16\xf8\xbf\x33\x97\x43\x9a\x56\x1e\x23\x7f\x29\x83\xbd\x68\xfc\xaf\xfe\x68\xc8\xd0\xac\x23\x90\xc7\xfa\xea\x1b\x51\x62\xd5\xad\x29\x04\x54\xab\x25\x2e\x11\x44\x50\xf5\x6a\xa9\xcc\x58\x4c\x8f\xf9\xce\xcd\xab\x34\x9f\x42\x99\xe3\x85\x3a\xea\x1b\x90\xfd\xcc\x36\xa7\x61\x30\x60\xd8\xb8\x96\xe1\xef\x1d\x2d\x70\x69\xbc\x09\xee\x2c\x02\x62\x63\x94\xe1\xe1\xae\x0a\xc4\x48\x12\x2e\x3d\x06\xb2\x9b\x6c\x1a\x36\x3a\x6f\x63\xf4\xfd\xd5\xcd\xd6\xe5\xd9\xd6\xf6\xc3\xc6\xce\x5e\x54\xca\x7a\xfc\x8c\x99\x81\x38\x2a\x04\x36\xe0\x34\xbe\x15\x87\xc9\x6b\xf5\xe3\x2c\x52\x26\xb7\x9c\xd6\xb1\x11\x83\x85\x39\x62\xe9\xba\x23\xd7\x5e\xac\x80\xfc\x6d\xf4\x6c\x13\x11\x45\x22\xbf\x89\x66\xf0\x41\x0f\x4e\x24\xc3\xf5\x29\x5b\x2c\x5e\x92\x3d\x98\x8f\x55\x92\xb1\xaa\xeb\x8c\x0b\xcc\xc1\xc5\x4b\x90\x59\x91\xa4\x3f\x99\xd6\xe3\x11\x34\x90\x10\xf5\x4f\x29\xd7\xcc\xb0\x71\xe3\x20\xd6\x90\xb5\x4f\xe2\x4c\x2f\x4e\x4b\xa0\x35\x50\xc9\xcd\x47\x51\x16\x5e\x23\xf3\x0e\x35\x4b\x4c\xab\xea\x37\x78\xf2\x10\xd3\xc7\xc6\xfa\x35\x01\xde\xa0\xe3\xbf\x8d\x8c\x4a\xf0\xf7\x45\x09\x3d\x7e\xdd\x08\xe4\x81\x4d\xa1\xbc\x9c\x4b\x35\x36\x02\x13\xe0\xb7\x8c\x00\x13\xe6\xb3\x2e\x18\x86\xc2\x2f\x9e\xd1\x8b\x75\x26\xe3\x83\xb1\x10\xd4\x48\xda\xc8\x54\xa0\x77\x74\x37\xc7\x22\xbe\x19\x28\xf2\xbf\x21\x10\x75\xc5\x70\x21\xfb\x29\x74\xdc\xfa\x51\x32\x6d\x99\xc0\xcc\xc1\xc7\xda\x62\x8e\xc0\x54\x1d\x10\xf9\x04\xa2\x34\xa3\x6e\xd1\x17\xa6\xf8\x96\xf0\x66\x89\xd3\x07\x1e\x9a\xe6\xd9\x78\x66\x72\x88\xb8\xac\x8b\xc7\x4f\xca\x04\x55\xf2\x20\x62\xe2\xcc\xcc\x3e\x31\xdc\x46\xad\x0d\xb1\x3f\xea\xcc\xf3\x6e\xa4\xf4\x6c\xb4\xa7\xa2\xb1\x78\x89\x62\xd4\xba\x13\xd6\xcc\x8f\x94\x9a\x38\x88\x32\xe9\xe9\x8d\x34\x6f\xa1\x83\x09\xb8\x39\x48\xcc\xbc\x82\x1c\xfa\xd9\xe0\xce\x66\x70\x7e\x07\x2d\xa4\xc9\x1c\xd7\xc9\xec\x56\x1d\x03\xd5\x8a\x2b\x52\x12\xc7\x26\x17\xb1\x18\xc6\x89\xef\x60\x18\x35\x2e\x72\x62\x2d\x18\x43\xfc\x7c\x69\x1c\x60\x22\x62\x8a\xf1\x82\x37\x89\x29\x01\x27\xcc\x09\xdd\x13\x94\x03\x1f\xde\x99\x7d\x00\xad\x18\x29\x3a\x4d\x92\xf0\x7f\x6f\x64\xa6\x86\x86\x49\x50\x2c\xdd\x50\x17\x8a\xf1\x9a\xfe\x91\x3b\x7f\x7c\xd5\xec\x96\x0f\xc5\x1b\x2d\x08\x8f\xb0\x93\x92\xf0\x93\xc9\x9a\x98\x50\xb2\x72\xd2\x3c\x2b\x83\xbd\x31\xca\xb8\xec\xc3\x1b\x2d\xe2\x4f\xe2\x54\x18\xaf\x77\x9b\x27\x23\x0e\x2d\x3e\x0b\xe4\x65\xc6\x17\x5f\x67\x6b\x65\x10\xdd\x50\xda\x45\x5d\x82\xca\x3e\x1f\x5c\xb9\xdc\x5a\xbb\x27\xed\x1a\xd4\x8e\x6b\x1b\x4f\x06\xa8\x9c\xe8\x46\xaa\x1c\xf5\x42\x0e\x2d\xf8\xb7\xdd\x1f\xf3\x47\x9b\x98\x7a\x0c\x5d\xa5\x65\x30\xf9\x5a\xc5\x51\xab\xb2\x94\xdc\xe4\xaa\x08\x53\x12\x60\x34\xae\x62\xf2\x8d\x8c\xee\x0a\x84\xdf\xc2\x8b\x3d\x82\xa7\x8a\xc4\x8d\x27\xc3\x6f\xeb\x85\xb3\x73\xcd\x3b\xdb\xaa\xac\xe4\x96\xb1\xcb\xe8\xd1\x5b\x98\x83\x9a\x00\x79\xe2\x64\x31\xa4\x20\xf3\x47\xfc\x53\xd2\x23\xd2\x87\xcf\x73\xf8\xdb\x77\x7d\x60\x47\x4e\xe2\xbf\xbf\xb7\x8e\x16\x48\xcb\xaa\x56\x83\x74\x98\xb0\xec\xc0\x6a\x49\xe3\xa4\xe0\xd4\xfa\x50\x0d\xa7\x3d\xbc\xbc\xe8\x0a\xd0\x89\xc4\xa2\xd6\x86\x61\x07\x4b\xa4\x37\xad\xa9\xa9\xe0\x1b\xbd\xf7\x16\x9b\x53\x23\xe1\xd8\x54\x6a\xcf\x59\x74\x68\xe0\x87\x11\xa2\x07\xc4\x69\x18\xc0\xb9\xe0\x73\x57\x05\x7c\xee\x0a\x9f\x3d\x52\x4f\x0c\x4e\x47\x5f\x51\xdd\x40\x1b\x94\xfc\xca\xd9\x24\x3b\xbe\x0a\x72\xa4\x7d\xe5\xac\x2a\xc9\xb2\xd6\x2f\x93\xb1\x4f\xe1\xa3\x5b\xf8\xd0\xc2\x99\xed\xf8\xd7\xdb\xd7\xf9\x4c\xb2\x75\xa8\xa3\x03\x72\xff\xed\x68\x87\x02\x10\x3b\xa6\x13\x4f\xed\x18\x2f\xe3\x27\x17\x53\x07\xca\xe9\x8c\x3a\x6a\x18\xea\xd2\x8e\x32\x7e\x41\x94\x9e\x81\x8d\x15\x18\x2c\x7d\x47\x2f\xca\x07\x39\x59\xc0\xda\xa8\x0e\x70\x6a\xa4\xb1\xb3\x13\x4c\x2d\x75\x2c\x0a\x9d\xe7\x8e\x76\x38\xd7\x7a\x6a\x8d\xf6\xd2\x8f\xca\xea\x9b\x82\x99\xa2\xa4\xe5\x1b\x50\xbd\x30\x9f\x02\xc6\x2f\x2f\x62\x9c\x02\x2c\x64\x3a\x48\xb5\x56\x96\xa7\x2e\xcd\x72\xf4\xf1\xc7\xe8\x12\x4a\x8c\xe9\x52\xd2\x2a\xb8\xa2\x91\xe9\x5b\x7e\xc0\xd9\x30\xcd\xbd\x3b\xb8\x66\x74\x9b\xb2\x4b\x5a\xbc\x05\x31\xf2\xf3\xfd\x6f\x64\x78\xd5\x0d\xca\xbd\xec\x94\x93\x4f\x7f\x29\x03\x8b\x6e\x96\x8d\xbe\x3a\x39\xe0\x1b\xb4\xd0\x39\x34\xdd\x06\x4c\xeb\xf5\x83\x22\x15\x1e\x66\x75\x71\x4e\xdb\xf1\xe1\xc8\x8d\xb3\x7e\x25\x7c\x30\xff\xba\x8a\x89\x51\x98\x55\x0f\x18\x02\x3e\xe5\x3a\x90\x57\x4f\x52\xaa\x07\xd4\x99\x49\x08\x6e\x9c\x0d\x96\xf7\xd1\x07\x6e\xfe\x79\xb7\x3a\xa9\xbd\xe2\x95\x63\xd4\x8d\xf2\x49\x52\x4e\xe8\xc4\x08\xaa\xb6\x37\x5c\xce\x67\xe9\x25\x52\x6f\x90\x8c\x9d\xf2\x3c\x1e\xa7\x3d\x7e\xab\x07\x3e\xbf\xc3\xe9\x6b\x9c\x1f\x6c\xb2\x09\xa2\xde\x4b\x1e\x88\xae\xb7\xd6\xef\x05\x17\xe0\x54\x5c\x95\x07\x60\xd5\x4b\xef\x6c\x2b\x6b\xbc\x5c\x91\x77\x12\x44\x88\x9f\x38\xb8\xef\xe4\x7c\x88\x28\x9a\xe3\x49\x5d\x45\xa3\x1d\xc3\xdc\x1e\x9f\x48\x62\x81\xac\xaf\x09\xd0\x6a\xd7\xcf\x13\xd5\xa8\xf3\xcb\x0d\xfa\x55\x03\x0c\xe4\xd5\x29\xf2\xe9\xe2\x53\x33\xee\x36\x03\xb3\xe7\xc8\x7a\xa8\xd6\xfe\x37\x0c\x65\x34\x71\xe3\xf1\xe3\xe0\xb5\x0a\xfa\xd3\x66\x24\xd9\x1a\x9d\xf5\x70\xe9\x4c\x7b\xf1\x52\xec\xdc\xd6\xaa\x68\x68\xcc\x0e\xb8\x55\xb7\x06\x02\x85\x2d\xb6\x45\xd8\x15\xf9\x40\x77\x56\x7b\x7c\x36\xad\x16\x88\x0c\xc0\x18\x65\x6b\x94\x91\x48\x84\x8b\xb1\xfb\x80\xc3\x92\x1f\x38\x5e\x8b\xae\x69\x55\x07\x95\x9b\x79\xd6\x81\x73\x20\x3d\xee\xf8\x39\x5c\x38\x76\x07\xc3\xa8\xf3\xa8\xaa\x54\x72\xfb\xf0\x61\x31\xca\x69\xcd\xbd\xcc\x77\xf6\x52\x71\x29\x3d\x60\xb6\x08\xcb\x5a\xab\x64\x71\x0d\x88\xa3\x6f\x8f\x5f\xe7\x14\x4b\x68\x86\x5c\xd8\x4a\x69\x5d\x0d\x49\xea\x70\x1f\x3c\xa8\xae\x75\x30\xce\x3f\x06\xdf\x1e\x9f\x0a\xe7\x53\xfa\x50\x4b\x36\x68\xe7\x2a\xb1\x05\xb3\x3e\x85\x2f\xd6\x01\xcb\x46\x35\x92\x0b\x10\xab\x94\xb2\x0a\x66\x25\xa7\x00\xa2\x9a\x51\xa1\xb9\xb6\xdd\x5e\xbc\x78\x50\x05\x72\x21\x10\x23\x96\x7e\xf4\xd9\x1c\x68\xb7\x9a\x62\xe8\x29\xa0\x7b\x2d\xaf\xc4\xeb\x2a\xba\x7d\xff\x62\xe7\x7d\x4f\xc6\xb7\x31\xd3\xda\xbc\xd5\x89\x6f\x7d\xae\xeb\xe3\x3b\xe5\x15\x64\xbc\xc8\xcf\x8b\x52\x60\x91\x73\xa1\xd5\x8b\x9f\xac\xd4\xa5\x63\xe8\xe4\xda\x99\xa8\x26\xb5\x53\x30\x0e\x93\x26\x42\x77\xd5\x5a\xde\xaf\xc1\xa1\x95\x3e\xbf\xe8\xc5\x54\x8b\x18\x64\x7e\x7f\xea\x80\x3d\xeb\xa8\x9d\xde\x79\x67\x6b\xb1\x46\xf2\xb9\xfc\xa0\x9d\x32\x86\xe3\xf8\xfd\x0d\x06\xd1\x51\xbf\xcb\x28\x3a\xdb\x8b\x1d\x28\x7a\x06\x06\x55\xf0\x7d\xb5\xfc\x29\xdb\xc7\xa8\x9a\xc1\x2c\x19\xb7\xd3\x1b\x0c\x26\x16\xc3\x1b\x20\xaf\xd5\x83\xad\xe9\xd6\xad\xd5\xce\x16\xe1\x2e\x2a\xd9\x7e\x8e\x5c\x16\xd2\x5b\xa0\xcb\x08\x6e\xa2\xf6\xb5\x73\xc1\xd8\x59\x61\x9a\x3b\xda\x71\x31\x8c\x35\x2b\x2c\xb9\x9c\x5e\x64\x6e\x0c\x32\x81\x62\xa0\xd9\x32\x73\xec\x9d\x4d\x61\x62\x1a\xbe\x23\xf3\xc3\xc0\xcb\x60\x8e\x1a\x74\x46\x88\x8d\x83\xc8\x01\x5d\x90\x89\x85\x26\x79\x04\x2a\x13\xbd\x6d\xbd\xb8\xde\xbe\x76\x9b\xf3\xb6\x9b\xf5\x3b\x69\x2f\xd3\x43\x55\x2f\xd6\x97\x41\xad\x9b\x5b\x7b\xa9\x74\x14\xea\x55\x30\x96\x37\x56\x31\xbc\xfa\x30\x18\x5d\xee\x56\x51\x8d\x93\xeb\xa5\x0c\xd1\xa8\x9d\xd8\x2f\x21\x71\x9d\x63\x14\x42\x27\x72\x26\x7b\xda\x4b\x96\x74\xc0\x6d\xbb\x18\x93\x3c\x63\x32\x69\x4f\xe7\x23\xd8\x62\x64\x54\xef\x2f\x31\x54\xe2\xfd\x53\xfe\xaa\x78\x3a\x7a\xfc\x4a\xb9\xfd\x49\x51\x32\x6d\x0b\x7f\x16\x8e\x89\xdd\x7e\x70\xc8\xfc\x59\xdc\x13\xd5\x00\x64\xee\x5c\x26\xef\xf1\xca\xe3\xaf\x28\xbf\xf6\x0f\x67\x7a\xe1\xa3\xc5\x0f\xc0\x4a\x44\xd0\x97\x58\x20\x42\xb1\x75\xd2\xb5\xd0\xf9\xd4\x9c\xa3\xba\xda\xf1\xad\x19\x99\x2f\x5b\xef\xb4\x51\x48\x06\x91\x34\x0a\x71\x13\x31\x87\x11\x99\x22\xf1\xd7\xec\x3c\xf4\x51\x4c\x28\xb7\x7a\xe9\xab\x02\xa4\xc4\xa7\x19\x4e\x75\x1a\xab\x5c\x74\x07\x1c\x91\x27\x12\x0d\x7c\x8e\x25\x62\x12\xe7\x0a\xc9\x67\x7e\x3f\x47\x3d\xb9\xe5\xf8\x9c\x80\x12\x6d\x65\x55\x7c\x21\xa4\x6c\xd5\xca\x92\x5a\x41\x8f\xbd\xcb\x4b\x52\xfa\x11\xf5\x2e\xcf\x48\x45\x13\x8f\xcc\x48\xec\x56\x60\xd4\x52\x60\x8e\x97\x8d\xb0\x21\x7a\x9e\x9d\x9e\x10\x8f\x63\x06\x42\x12\x72\x44\x50\x6c\xcd\x8d\x6b\x64\xf5\x42\xa1\xfd\x15\xdd\xbe\x89\x45\x33\x32\x87\x53\x25\x46\x18\x23\xfa\x53\x6b\xc3\xe2\xf5\x39\x4f\x2d\xa7\xa0\x65\x03\xa4\xc2\x01\xdc\xfe\x48\x51\xe6\x1d\x98\xd4\x36\x7d\x41\x95\x01\x35\x65\x55\x52\x2d\x85\x7a\xde\x1a\xc3\x3b\x1e\x0a\xfc\xff\xfb\x1a\xa2\x39\x0a\xf5\x26\xa2\x39\x88\x37\x7f\x10\x11\x6e\x40\xa0\xf6\xdd\x9f\x45\x34\x56\xc5\x74\xd6\xfb\xc8\xd8\x8b\x83\x02\x41\xf8\xd5\xb8\x1e\x0a\x20\x8a\x51\x37\x43\x77\xa6\xa8\x1b\x41\x9a\x56\xf4\xc8\x1b\xc5\xeb\x61\x47\x0d\xd1\x6a\x22\x19\xa2\xaf\x4a\xe1\x2f\x2f\x76\x32\x45\xa5\xfd\x27\xba\x15\xef\xd3\x54\xca\x35\x17\xa6\xa1\x5b\x05\xdb\x91\x99\x8a\x3f\x77\x49\x49\x9f\x34\x21\xea\xac\xb3\x5e\x0f\x65\xe1\xb5\xd5\x63\x83\x34\x1e\x2e\xc0\xdc\xbb\x9e\x24\xdf\x35\x3e\xc7\x92\xbf\xca\xf0\x91\xce\x08\xb5\x89\x0d\x3f\x41\x6f\xbe\xa0\x32\xeb\x04\x96\xa9\x4a\x98\x16\xe2\xa3\x42\x81\x5e\xe7\x52\x04\x4d\x4a\x3a\x9f\x90\xe6\x02\x72\x4f\xe6\x02\xe5\x9e\xcc\x05\xfc\x6e\x1b\xdd\x13\xc0\x30\xd2\xa3\x37\x5c\x90\xea\x83\x23\xf4\xdf\x18\x3b\x35\x9c\x18\xf3\x49\xf8\x16\x03\x4a\x23\xa4\x4c\x42\x19\x28\xe1\xa8\xcc\x1f\x07\x5d\x0f\x93\xe1\xed\x84\x6b\x2b\xfa\x75\x28\x2a\x40\x1a\x20\x05\xcd\x87\x4f\x82\xd9\x9f\x54\x01\x69\x57\x0a\x70\xb9\x91\x26\xe5\x93\x2f\x63\xdf\xa3\x77\xd1\xa8\x54\x3d\x7e\x96\x02\xa1\x08\xf9\x5f\x72\x55\xcc\xab\xf8\x7b\x0e\x71\x55\xa5\x9c\xe2\xc5\xad\xd2\x8b\x5a\x56\xa5\x88\x94\x1d\x93\x8a\x53\xc4\x15\x26\xe1\xc6\x04\x22\x39\x6b\xd0\x19\x18\xa4\x00\x4f\xa0\x43\x98\xb1\x26\x7a\x83\x4f\x96\x17\x39\x01\x4a\xfa\x84\xf7\xa1\xd5\x4b\x69\x70\xad\x8f\x29\x01\x94\x01\x01\xb3\xa1\xf2\x68\x32\x39\xdf\xaf\x3a\x7d\x35\xb4\xe1\x12\xde\xa2\x4f\xd5\x5c\xb0\xf9\x28\x1c\xb9\xdf\x09\xe2\xd5\x38\xe0\x23\xb8\x7f\x29\xdc\x98\xed\x06\xc5\x6f\xa3\xab\xd7\xb2\xf0\xdd\xaa\x18\x20\xa7\x9a\x12\xd7\x42\x7c\x2c\x98\x12\x64\x06\x4b\x1a\x55\xd8\xa8\x21\x60\x7c\xf0\xd2\xc0\x4a\x78\xbf\x64\xbd\x5c\xe6\x0b\xcf\xfa\xa8\x60\xf5\x7e\xa4\x0a\xbc\x92\x5f\xe1\x1c\xf0\xbd\x5f\x9c\x3c\x61\x1d\x80\x4d\x08\x49\x78\x41\x80\x69\xc8\x81\x10\x84\x20\x06\x44\x1c\x4b\xc4\x6f\x48\xbc\xe3\x81\xc6\x49\xd2\xf4\x4f\xf8\x77\x17\xb0\xee\xb7\x3b\xee\x39\x48\x0f\xb0\x98\xf8\x26\x40\x79\xd8\x92\x1a\x3d\xd6\x17\xb5\xa2\xef\x54\x8a\xb6\xfa\x62\x79\x83\x6e\xad\x58\xc0\xf8\x5e\xcf\xae\xe4\xaa\xc4\xd4\xf4\x0d\x73\x1e\x1c\xeb\xad\xb7\xdf\xea\x89\x9f\xca\xac\x5f\x44\xa2\x81\xa7\xd2\x3a\xf9\x79\xaf\xc5\xef\x80\xe9\x99\x9e\x72\x2a\x08\x21\x2f\x0c\x67\x7a\xe1\x37\x81\xf1\x7b\xfe\xfa\xb4\xa0\xe5\xce\xae\x9e\x76\xf2\x82\x31\x27\x3e\xfa\xc2\x12\xad\x47\x8c\x44\x48\x9f\x94\xb1\x47\x71\x75\x19\x09\xbd\x24\x53\x06\xdf\x8d\xa8\xc5\x99\x5a\x50\x59\xfb\x84\xba\x38\x15\x18\x28\xa5\xfe\x60\xc3\x85\x6e\x13\x99\xb3\x3f\xc0\x3f\xc9\x4d\xed\x65\xfb\xac\x5e\x6c\x93\x43\x31\x0d\x27\xe2\xfb\x18\xa3\x4c\x1d\x4c\x63\xbc\xe9\x38\xef\x98\x2b\x14\x3a\x39\x47\x93\xc2\x45\x77\x5d\xbc\x99\x37\x75\x4d\x32\xdb\xca\x88\xe6\xe9\xe0\xc9\x8a\x0f\x93\x84\x7a\x12\x71\x89\x57\x88\x03\x66\x99\xce\x92\x45\x39\xd1\x70\xf4\x3e\x60\x67\x05\x32\x2c\x32\x43\x15\xaf\x04\x5f\x06\x5c\xc9\xec\x06\x98\x28\x37\xfa\xdb\x80\xa4\xdd\x02\x46\x8d\xc6\x63\xcc\x41\xbc\xdd\xd7\xf3\x08\x6c\xfd\x52\x0a\x38\x65\x0b\x53\xaf\x1d\xb0\x56\x50\x43\xe5\x2a\x15\x51\xe8\xb3\x3b\x91\xe0\xaa\x51\x7a\xda\xd6\x16\x31\x71\xc9\x35\x0a\x29\x9c\x8e\x0a\x39\x8c\x4d\x8a\xe4\xa6\x91\x36\xe5\xbe\x91\x32\xb7\xbf\x1f\x33\x51\x61\xde\x43\xf2\x73\x69\xbe\xb8\x1a\xae\xde\xa2\x30\x3b\x55\xdb\xf1\xe8\x8c\xa0\xee\x8f\x74\x68\x03\x92\xd4\xa8\xf5\x02\x23\x48\xc3\xcb\x77\x83\x57\x97\x35\x74\xb5\x26\xcf\x3b\x33\x8f\xa7\x58\x4b\xa3\x94\x7a\x12\x49\x31\xde\x13\xb1\x35\x55\xd7\xf5\xf9\x59\x06\x91\xcb\x6e\xbe\xe4\xe4\xf4\xd1\x52\xa2\x0d\x2d\x9f\xe5\x04\xef\x1a\xba\x7d\x7d\x39\x1c\x13\x87\xff\xce\x3a\x30\xea\x64\x05\x1e\x78\xb7\x0a\x5e\xbe\xea\x54\x24\xfa\xb0\x35\xf6\x33\xac\xb4\x62\x21\xf4\x60\x31\xdf\x9c\xe0\x1d\xcf\x78\x76\x26\x98\xbb\x80\x8e\xf4\x70\x15\xd0\x41\x8e\xd6\xb0\x4f\xef\xbc\x32\xf6\x25\x76\x1e\x20\x8c\x48\x47\x2c\x8f\x77\x07\xe5\x29\xbc\x41\x54\xc8\x58\xa3\x2a\x27\x10\x07\xca\x69\x84\x91\xa5\x31\xbe\x2d\x50\xee\x79\x45\xde\x99\xde\xde\xcf\xad\x24\x06\x44\xc5\xc6\x23\x3b\xc1\xd9\x31\x10\x6c\xac\x23\x98\x2b\x15\x53\xbe\x1d\xb1\x54\x24\x51\x6c\xde\xbc\xd6\xaa\x63\x7e\x4f\x23\x59\xae\x5a\xfd\x47\xcc\x0b\x76\xc4\xfb\x6b\xd1\xf1\xed\xf7\x8f\x50\x9c\xf7\x11\xdf\x29\xf4\x1d\xf9\xa7\xd8\x39\x72\x28\x6e\xc1\x38\x48\x89\xb5\xd4\xe2\x79\xec\xd9\xcc\x0c\x93\x6f\xf3\x81\x4c\xf6\x43\xec\xc4\x74\x75\x11\x08\x9e\x53\x3d\x8e\x8a\x8e\xc6\x81\xf1\x32\x55\x43\xe4\xcf\x02\x57\xe1\xbb\x65\x09\x9c\xe1\x3a\xe1\xf4\x44\xbb\xbe\x60\x8c\x8b\xd3\xbb\xaa\x74\xaf\x14\x61\x10\xec\xbe\x08\xea\xcf\xd9\x2a\xc9\x41\x3f\x1a\x5e\x3d\x2f\x4c\x2a\x3b\xf5\x22\x30\x25\x1a\x6b\xbe\x58\x43\xbd\xb2\x7a\x37\x98\xc1\x69\xb2\xa2\x91\xe0\xf9\x99\x2f\xb8\x76\xcc\x92\xc2\xb2\x9c\x1f\x6c\xce\xee\x97\xf9\x84\x3f\x5b\x5f\x38\x65\xa7\x54\x2b\x59\xff\xdd\x1e\xb6\x7a\xf1\x25\x9f\xe3\x58\xdc\x39\xa6\x0a\x48\x03\xb9\xcc\x1f\xe8\xa7\x75\x9c\x7f\x46\xc4\x88\x63\x2c\x31\xb8\x24\x5b\x24\x8b\x18\x4b\xdd\x62\xca\xa5\x17\x13\xe4\xb5\x7e\x7e\x95\x40\xd6\x07\xee\x9f\x88\x23\x35\x6a\xb7\xc7\x71\x83\x99\x7d\xed\x56\x5b\x85\x58\x0b\x66\x44\xd6\xdc\x04\x76\xfc\xb5\x66\xd7\xa0\x5d\xbb\x3c\x80\x54\x03\xbd\x79\x2e\xb7\x17\x5e\xd0\x6b\x58\x6a\x85\x38\x06\x92\x14\x5c\x40\xf4\x24\x42\xb9\xf5\x7c\x0c\x44\x81\x08\x01\x12\x9c\x48\xf0\x6a\xaf\xb9\x70\x97\x78\x11\xf5\x90\x8f\xb1\x2f\x11\xe9\x97\x9d\x89\x8f\x49\x40\xb4\x5c\x42\x57\x3f\xe3\x76\x12\x46\x6d\x1f\x1c\x19\x37\xd3\xbc\x37\x8a\xc4\xfe\xd3\x3f\x7c\xfe\x67\x4b\xbf\x6b\x1d\x03\x67\x99\x93\x63\xc6\x47\xc6\x12\x74\x41\x60\x88\xb0\xf0\xb8\x52\xc9\x8b\x80\x11\x09\x89\x9a\x12\x7b\xaf\xba\x47\x88\x0e\xca\x1c\x4d\x8b\x70\x62\xa6\x0c\x77\xe0\x44\x19\xdf\xa5\x29\xd6\x43\x27\x1a\x91\x13\x51\x00\xac\x83\x21\x09\xc8\x28\x9a\xd8\x88\xf3\x8e\x41\xe9\x87\xa1\x18\x8c\x9f\x84\xea\xec\xab\xac\x9a\xa1\x27\xf4\x82\xf5\xcb\xcd\x47\xf7\x1a\x5b\x4f\x0d\xba\xc3\xae\x4b\x32\xac\x5e\xfe\x99\x1c\x98\x82\xaa\x54\xdd\xd3\x4e\x81\x5e\xcd\x62\x38\x4e\xae\x20\xaf\x76\x10\xa8\x02\xd1\x94\x4c\x41\x24\xe7\x0a\x38\xed\x08\x17\x7b\x9c\xfe\xb6\x12\xbb\x28\x47\x12\xcf\x0e\x03\xcb\xb2\xb2\xe7\x9f\xc5\x95\x34\xf4\x40\x5e\x2f\x49\x8a\x92\x39\xbe\x3a\x6a\x3a\x45\xa7\x9f\x2d\x5a\x7a\x3e\xf8\x7a\xd1\x85\xbd\x04\xf8\xa0\xef\x57\x3c\x09\x63\xe7\xcb\x81\x1e\x7b\x4a\x4e\x25\x6a\x4d\xe6\x93\xda\x58\xc5\x21\x03\x85\x5a\x1e\x7e\x9c\x3c\xb1\x36\x0a\x46\x2e\x05\x01\x4a\xa0\x93\x3a\x30\x03\xf2\xe8\xba\x3a\x34\xfa\x11\xf6\x04\x19\x45\x56\x41\xed\xc9\xe5\xbb\xad\x07\xd3\x89\x4e\xb1\x9c\x6e\x4a\x2e\x55\x77\xa5\x76\x58\xea\xc9\x57\x31\x1f\x2d\xfc\x63\xb1\x43\x47\x54\x22\xcf\x66\xee\x18\x62\x88\x2a\xf2\x00\xf9\x0a\xb5\xa2\x2e\x7e\x3c\x11\x9e\xbf\x68\xd4\x94\x24\xf9\xa8\x9d\x8f\x99\x6d\x15\x80\x99\x60\xbf\x2b\x90\xfd\xbd\x9d\xaf\x45\xc6\xcc\x98\xb6\x3e\x6a\xc8\x65\xa3\x33\x95\x36\xb6\xd6\xdb\x23\x4f\x9b\xab\x53\x11\x80\xc4\xa8\xe1\x47\x9d\x40\x52\x4d\x02\x96\xd3\xa7\x2b\xea\xfe\xd4\x41\x7d\x93\xe2\x25\x36\x42\xed\x0a\xa6\xbc\xa9\xf8\x27\xe0\x0a\x90\xa6\x34\xef\x30\x05\xce\x4c\x13\x15\x29\x8e\xc9\x2c\xca\xbe\x9b\x51\x6e\x77\xea\x73\x2c\xf5\xa5\xfa\xe8\x56\x32\x8a\x7e\x46\x70\x24\x57\xe8\x18\x13\x63\x10\x29\xa9\x08\xbf\xc1\x2b\xcf\x45\xa7\xbb\xce\x77\xec\x1a\xdb\xe7\x78\x10\xf1\x10\xc5\xa3\xf2\xa6\x42\xd5\x2e\xeb\x7c\x74\xfc\x77\xc1\xcc\x3f\x15\xcb\x93\xfc\x6e\x94\x0f\x19\xb3\x24\x77\x7f\xa8\x41\xe7\xc8\x47\xaf\x42\xf6\x85\xdc\x3e\x67\xf6\xff\x8e\x57\xcd\xbf\x73\x34\x96\x6d\x9f\xe3\x38\xe9\x15\x5a\x0c\x06\xc5\xc0\xd1\x78\x02\xea\x78\x0f\x3c\x4f\x7e\x60\xe0\xbb\x68\xa6\xa4\xef\x8b\xf5\xc4\x9a\x40\xee\x0c\x33\x56\x47\xe9\xf6\xa5\x8d\x78\xbe\x6c\x65\xf9\x88\xe5\x9d\x35\xdb\x93\x34\xd8\x29\xcd\xc5\x1e\x3d\xf8\x8e\x5d\xcd\x7e\xeb\x98\x52\x52\xef\x7e\x27\x19\x98\x7f\xfb\x88\x74\x4a\x2e\x46\x07\x95\xcf\x50\xed\xa7\xde\x4c\x9d\xe0\x30\x1d\x45\x28\xfd\x85\x9f\x1b\x88\xb6\x92\x3d\xcf\x5e\xbb\xa1\x07\xef\xa0\x64\x5b\x7f\x4f\x67\xc9\x96\x0c\x51\xef\x71\x5c\x36\xe5\xd4\x51\x99\x78\x38\xfb\x3b\xa1\x3a\x66\x2d\x06\x44\xcf\x0d\xb8\x19\x0c\x46\x9e\x00\x0e\x9a\x1e\xb8\xc3\xf8\x0a\x8e\x4e\xc6\x53\x34\x94\x69\xce\xee\xd3\xfb\xd4\xef\x7a\x99\x77\xad\xe6\xfd\x8b\x47\x3d\xf8\xbb\x04\x7f\xa3\xe9\x75\xee\x0a\xfd\x1c\xc4\x9f\xf4\x3a\x23\xfd\x2c\xe0\xcf\x3b\x6b\xf4\xf7\x10\xfe\x7d\x61\x95\x6b\x01\x49\x7d\xd7\x0a\x97\xeb\xf4\x6b\x18\x4b\x5e\xfe\x72\x94\xb2\x24\x01\x59\x2e\xd0\x8b\x00\xd2\x43\x09\x04\x78\x5f\xde\x08\xd0\xfd\x0c\xba\xb5\x2a\x7f\xd2\x7d\x15\x72\xc3\xfc\x85\xbb\x1b\xb2\xed\x53\xfc\x9b\xbb\x84\x1e\xfd\x41\x7e\x3d\x84\x7b\x1d\xb6\x73\xd2\x04\xf7\x5c\xcd\x0d\x65\x55\xef\xd0\x35\x7f\x50\x9d\x73\xcf\xb4\x5a\x85\xaa\x5b\xc1\x6c\x9e\xdf\x46\x0f\x59\xaa\x07\xbb\xc2\xa9\xc5\xf0\xda\xcf\x2c\x82\xe2\xdb\xa4\x1c\x63\x54\x5f\x0c\x16\x1f\x87\x97\x26\x81\x92\x07\x67\x7e\xa6\x50\x4f\x4a\xa6\xeb\x94\x2b\x35\x95\x0f\xe7\xcc\x6a\x63\x0b\x2d\x29\x0c\x83\x39\x0d\xf8\x19\x1f\x95\x8d\x5f\xde\x2a\x83\x9d\xca\xf6\xe1\x45\xc6\x5d\xdc\xb9\x0f\xd3\x07\xd1\xed\x5f\xff\x95\x72\x9f\x03\x77\xff\x6f\xff\x66\x7d\xf1\x31\x48\x6c\xc0\xdc\xb6\x47\xcf\x23\x5e\xe1\xc3\x32\xf7\x59\x03\x66\xc0\x97\x72\xdf\xff\x31\x51\x05\x09\x17\xb9\x38\x93\xd5\x49\x62\x7b\x74\xbc\xfd\xff\x09\x00\x00\xff\xff\xe0\x7a\xa6\x76\x86\xac\x00\x00") func confLocaleLocale_zhHkIniBytes() ([]byte, error) { return bindataRead( @@ -4599,7 +4599,7 @@ func confLocaleLocale_zhHkIni() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "conf/locale/locale_zh-HK.ini", size: 44005, mode: os.FileMode(493), modTime: time.Unix(1446597116, 0)} + info := bindataFileInfo{name: "conf/locale/locale_zh-HK.ini", size: 44166, mode: os.FileMode(493), modTime: time.Unix(1446611908, 0)} a := &asset{bytes: bytes, info: info} return a, nil } diff --git a/modules/middleware/repo.go b/modules/middleware/repo.go index 97d9050b..1b3288e5 100644 --- a/modules/middleware/repo.go +++ b/modules/middleware/repo.go @@ -420,7 +420,7 @@ func RequireRepoAdmin() macaron.Handler { // GitHookService checks if repository Git hooks service has been enabled. func GitHookService() macaron.Handler { return func(ctx *Context) { - if !ctx.User.AllowGitHook && !ctx.User.IsAdmin { + if !ctx.User.CanEditGitHook() { ctx.Handle(404, "GitHookService", nil) return } diff --git a/routers/admin/users.go b/routers/admin/users.go index ac0f5381..d5358553 100644 --- a/routers/admin/users.go +++ b/routers/admin/users.go @@ -213,6 +213,7 @@ func EditUserPost(ctx *middleware.Context, form auth.AdminEditUserForm) { u.IsActive = form.Active u.IsAdmin = form.Admin u.AllowGitHook = form.AllowGitHook + u.AllowImportLocal = form.AllowImportLocal if err := models.UpdateUser(u); err != nil { if models.IsErrEmailAlreadyUsed(err) { diff --git a/routers/api/v1/repo.go b/routers/api/v1/repo.go index 5a002677..2341e288 100644 --- a/routers/api/v1/repo.go +++ b/routers/api/v1/repo.go @@ -5,9 +5,7 @@ package v1 import ( - "net/url" "path" - "strings" "github.com/Unknwon/com" @@ -218,22 +216,23 @@ func MigrateRepo(ctx *middleware.Context, form auth.MigrateRepoForm) { } } - // Remote address can be HTTP/HTTPS/Git URL or local path. - remoteAddr := form.CloneAddr - if strings.HasPrefix(form.CloneAddr, "http://") || - strings.HasPrefix(form.CloneAddr, "https://") || - strings.HasPrefix(form.CloneAddr, "git://") { - u, err := url.Parse(form.CloneAddr) - if err != nil { - ctx.APIError(422, "", err) - return - } - if len(form.AuthUsername) > 0 || len(form.AuthPassword) > 0 { - u.User = url.UserPassword(form.AuthUsername, form.AuthPassword) + remoteAddr, err := form.ParseRemoteAddr(ctx.User) + if err != nil { + if models.IsErrInvalidCloneAddr(err) { + addrErr := err.(models.ErrInvalidCloneAddr) + switch { + case addrErr.IsURLError: + ctx.APIError(422, "", err) + case addrErr.IsPermissionDenied: + ctx.APIError(422, "", "You are not allowed to import local repositories.") + case addrErr.IsInvalidPath: + ctx.APIError(422, "", "Invalid local path, it does not exist or not a directory.") + default: + ctx.APIError(500, "ParseRemoteAddr", "Unknown error type (ErrInvalidCloneAddr): "+err.Error()) + } + } else { + ctx.APIError(500, "ParseRemoteAddr", err) } - remoteAddr = u.String() - } else if !com.IsDir(remoteAddr) { - ctx.APIError(422, "", "Invalid local path, it does not exist or not a directory.") return } diff --git a/routers/repo/repo.go b/routers/repo/repo.go index f7e7e320..dab9dba1 100644 --- a/routers/repo/repo.go +++ b/routers/repo/repo.go @@ -6,7 +6,6 @@ package repo import ( "fmt" - "net/url" "os" "path" "strings" @@ -164,26 +163,24 @@ func MigratePost(ctx *middleware.Context, form auth.MigrateRepoForm) { return } - // Remote address can be HTTP/HTTPS/Git URL or local path. - // Note: remember to change api/v1/repo.go: MigrateRepo - // FIXME: merge these two functions with better error handling - remoteAddr := form.CloneAddr - if strings.HasPrefix(form.CloneAddr, "http://") || - strings.HasPrefix(form.CloneAddr, "https://") || - strings.HasPrefix(form.CloneAddr, "git://") { - u, err := url.Parse(form.CloneAddr) - if err != nil { + remoteAddr, err := form.ParseRemoteAddr(ctx.User) + if err != nil { + if models.IsErrInvalidCloneAddr(err) { ctx.Data["Err_CloneAddr"] = true - ctx.RenderWithErr(ctx.Tr("form.url_error"), MIGRATE, &form) - return - } - if len(form.AuthUsername) > 0 || len(form.AuthPassword) > 0 { - u.User = url.UserPassword(form.AuthUsername, form.AuthPassword) + addrErr := err.(models.ErrInvalidCloneAddr) + switch { + case addrErr.IsURLError: + ctx.RenderWithErr(ctx.Tr("form.url_error"), MIGRATE, &form) + case addrErr.IsPermissionDenied: + ctx.RenderWithErr(ctx.Tr("repo.migrate.permission_denied"), MIGRATE, &form) + case addrErr.IsInvalidPath: + ctx.RenderWithErr(ctx.Tr("repo.migrate.invalid_local_path"), MIGRATE, &form) + default: + ctx.Handle(500, "Unknown error", err) + } + } else { + ctx.Handle(500, "ParseRemoteAddr", err) } - remoteAddr = u.String() - } else if !com.IsDir(remoteAddr) { - ctx.Data["Err_CloneAddr"] = true - ctx.RenderWithErr(ctx.Tr("repo.migrate.invalid_local_path"), MIGRATE, &form) return } diff --git a/templates/.VERSION b/templates/.VERSION index 815df4fe..05e36c46 100644 --- a/templates/.VERSION +++ b/templates/.VERSION @@ -1 +1 @@ -0.6.23.1103 Beta \ No newline at end of file +0.6.24.1103 Beta \ No newline at end of file diff --git a/templates/admin/user/edit.tmpl b/templates/admin/user/edit.tmpl index d4e83d6f..6f30f05c 100644 --- a/templates/admin/user/edit.tmpl +++ b/templates/admin/user/edit.tmpl @@ -72,7 +72,13 @@
- + +
+
+
+
+ +
diff --git a/templates/repo/settings/navbar.tmpl b/templates/repo/settings/navbar.tmpl index fb2e8c24..512ee300 100644 --- a/templates/repo/settings/navbar.tmpl +++ b/templates/repo/settings/navbar.tmpl @@ -10,7 +10,7 @@ {{.i18n.Tr "repo.settings.hooks"}} - {{if or .SignedUser.AllowGitHook .SignedUser.IsAdmin}} + {{if .SignedUser.CanEditGitHook}} {{.i18n.Tr "repo.settings.githooks"}} -- cgit v1.2.3 From 00eb2b221ff189a658cf4a7d7fa40e55ae66dfd9 Mon Sep 17 00:00:00 2001 From: Unknwon Date: Wed, 4 Nov 2015 10:16:50 -0500 Subject: fix #1876 --- gogs.go | 2 +- routers/repo/issue.go | 5 +++-- templates/.VERSION | 2 +- 3 files changed, 5 insertions(+), 4 deletions(-) (limited to 'gogs.go') diff --git a/gogs.go b/gogs.go index 4cf63ac9..c903192b 100644 --- a/gogs.go +++ b/gogs.go @@ -17,7 +17,7 @@ import ( "github.com/gogits/gogs/modules/setting" ) -const APP_VER = "0.6.24.1103 Beta" +const APP_VER = "0.6.24.1104 Beta" func init() { runtime.GOMAXPROCS(runtime.NumCPU()) diff --git a/routers/repo/issue.go b/routers/repo/issue.go index fb64f6a3..763d395b 100644 --- a/routers/repo/issue.go +++ b/routers/repo/issue.go @@ -124,7 +124,8 @@ func Issues(ctx *middleware.Context) { } else { total = int(issueStats.ClosedCount) } - ctx.Data["Page"] = paginater.New(total, setting.IssuePagingNum, page, 5) + pager := paginater.New(total, setting.IssuePagingNum, page, 5) + ctx.Data["Page"] = pager // Get issues. issues, err := models.Issues(&models.IssuesOptions{ @@ -133,7 +134,7 @@ func Issues(ctx *middleware.Context) { RepoID: repo.ID, PosterID: posterID, MilestoneID: milestoneID, - Page: page, + Page: pager.Current(), IsClosed: isShowClosed, IsMention: filterMode == models.FM_MENTION, IsPull: isPullList, diff --git a/templates/.VERSION b/templates/.VERSION index 05e36c46..fee1aa35 100644 --- a/templates/.VERSION +++ b/templates/.VERSION @@ -1 +1 @@ -0.6.24.1103 Beta \ No newline at end of file +0.6.24.1104 Beta \ No newline at end of file -- cgit v1.2.3 From 603c7389b8e56740033e51b36b79e61136b46002 Mon Sep 17 00:00:00 2001 From: Unknwon Date: Wed, 4 Nov 2015 12:50:02 -0500 Subject: #1459 Dashboard issues lacks sorting --- README.md | 2 +- gogs.go | 2 +- public/css/gogs.css | 16 +++++++++++----- public/less/_dashboard.less | 18 +++++++++++++----- routers/user/home.go | 3 +++ templates/.VERSION | 2 +- templates/user/dashboard/issues.tmpl | 29 +++++++++++++++++++++++------ 7 files changed, 53 insertions(+), 19 deletions(-) (limited to 'gogs.go') diff --git a/README.md b/README.md index 59ba8e21..9b7d71c4 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.24 Beta +##### Current version: 0.6.25 Beta
diff --git a/gogs.go b/gogs.go index c903192b..8fe723fb 100644 --- a/gogs.go +++ b/gogs.go @@ -17,7 +17,7 @@ import ( "github.com/gogits/gogs/modules/setting" ) -const APP_VER = "0.6.24.1104 Beta" +const APP_VER = "0.6.25.1104 Beta" func init() { runtime.GOMAXPROCS(runtime.NumCPU()) diff --git a/public/css/gogs.css b/public/css/gogs.css index 8448d618..8c66cdb3 100755 --- a/public/css/gogs.css +++ b/public/css/gogs.css @@ -2554,17 +2554,23 @@ ol.linenums { height: 16px; vertical-align: middle; } +.dashboard.issues .filter.menu .item .text.truncate { + width: 85%; +} .dashboard.issues .filter.menu .item .floating.label { top: 7px; left: 90%; width: 15%; } -.dashboard.issues .filter.menu .item.active { - background-color: #4183c4; - color: #FFF; +.dashboard.issues .filter.menu .jump.item { + margin: 1px; + padding-right: 0; } -.dashboard.issues .filter.menu .item .text { - width: 85%; +.dashboard.issues .filter.menu .menu { + max-height: 300px; + overflow-x: auto; + right: 0!important; + left: auto!important; } .dashboard.issues .ui.right .head.menu { margin-top: -5px; diff --git a/public/less/_dashboard.less b/public/less/_dashboard.less index d1b194bd..19264b09 100644 --- a/public/less/_dashboard.less +++ b/public/less/_dashboard.less @@ -17,6 +17,9 @@ .text { height: 16px; vertical-align: middle; + &.truncate { + width: 85%; + } } .floating.label { top: 7px; @@ -24,12 +27,17 @@ width: 15%; } } - .item.active { - background-color: #4183c4; - color: #FFF; + + // Sort + .jump.item { + margin: 1px; + padding-right: 0; } - .item .text { - width: 85%; + .menu { + max-height: 300px; + overflow-x: auto; + right: 0!important; + left: auto!important; } } .ui.right .head.menu { diff --git a/routers/user/home.go b/routers/user/home.go index 581bb063..c5c42694 100644 --- a/routers/user/home.go +++ b/routers/user/home.go @@ -156,6 +156,7 @@ func Issues(ctx *middleware.Context) { // Organization does not have view type and filter mode. var ( viewType string + sortType = ctx.Query("sort") filterMode = models.FM_ALL assigneeID int64 posterID int64 @@ -248,6 +249,7 @@ func Issues(ctx *middleware.Context) { Page: page, IsClosed: isShowClosed, IsPull: isPullList, + SortType: sortType, }) if err != nil { ctx.Handle(500, "Issues: %v", err) @@ -276,6 +278,7 @@ func Issues(ctx *middleware.Context) { ctx.Data["IssueStats"] = issueStats ctx.Data["ViewType"] = viewType + ctx.Data["SortType"] = sortType ctx.Data["RepoID"] = repoID ctx.Data["IsShowClosed"] = isShowClosed if isShowClosed { diff --git a/templates/.VERSION b/templates/.VERSION index fee1aa35..f116ce5c 100644 --- a/templates/.VERSION +++ b/templates/.VERSION @@ -1 +1 @@ -0.6.24.1104 Beta \ No newline at end of file +0.6.25.1104 Beta \ No newline at end of file diff --git a/templates/user/dashboard/issues.tmpl b/templates/user/dashboard/issues.tmpl index 092c2523..678dfecf 100644 --- a/templates/user/dashboard/issues.tmpl +++ b/templates/user/dashboard/issues.tmpl @@ -5,23 +5,23 @@
+
{{range .Issues}} -- 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 'gogs.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 2bd64621fc7bff3fa5cf25b438b4e2895d58db54 Mon Sep 17 00:00:00 2001 From: Unknwon Date: Thu, 5 Nov 2015 19:18:59 -0500 Subject: #1900 last updatede time not update after push --- README.md | 2 +- gogs.go | 2 +- models/action.go | 8 +++----- models/update.go | 30 +++++++++++++++--------------- templates/.VERSION | 2 +- 5 files changed, 21 insertions(+), 23 deletions(-) (limited to 'gogs.go') diff --git a/README.md b/README.md index d77fddf3..af73f126 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.26 Beta +##### Current version: 0.6.27 Beta
diff --git a/gogs.go b/gogs.go index cdf761c8..742075af 100644 --- a/gogs.go +++ b/gogs.go @@ -17,7 +17,7 @@ import ( "github.com/gogits/gogs/modules/setting" ) -const APP_VER = "0.6.26.1104 Beta" +const APP_VER = "0.6.27.1105 Beta" func init() { runtime.GOMAXPROCS(runtime.NumCPU()) diff --git a/models/action.go b/models/action.go index 6e3587e0..cfa6e14d 100644 --- a/models/action.go +++ b/models/action.go @@ -338,11 +338,9 @@ func CommitRepoAction( } // Change repository bare status and update last updated time. - if repo.IsBare { - repo.IsBare = false - if err = UpdateRepository(repo, false); err != nil { - return fmt.Errorf("UpdateRepository: %v", err) - } + repo.IsBare = false + if err = UpdateRepository(repo, false); err != nil { + return fmt.Errorf("UpdateRepository: %v", err) } isNewBranch := false diff --git a/models/update.go b/models/update.go index 0ca20221..7992313a 100644 --- a/models/update.go +++ b/models/update.go @@ -47,10 +47,10 @@ func DeleteUpdateTaskByUUID(uuid string) error { return err } -func Update(refName, oldCommitId, newCommitId, userName, repoUserName, repoName string, userId int64) error { - isNew := strings.HasPrefix(oldCommitId, "0000000") +func Update(refName, oldCommitID, newCommitID, userName, repoUserName, repoName string, userID int64) error { + isNew := strings.HasPrefix(oldCommitID, "0000000") if isNew && - strings.HasPrefix(newCommitId, "0000000") { + strings.HasPrefix(newCommitID, "0000000") { return fmt.Errorf("old rev and new rev both 000000") } @@ -60,23 +60,23 @@ func Update(refName, oldCommitId, newCommitId, userName, repoUserName, repoName gitUpdate.Dir = f gitUpdate.Run() - isDel := strings.HasPrefix(newCommitId, "0000000") + isDel := strings.HasPrefix(newCommitID, "0000000") if isDel { - log.GitLogger.Info("del rev", refName, "from", userName+"/"+repoName+".git", "by", userId) + log.GitLogger.Info("del rev", refName, "from", userName+"/"+repoName+".git", "by", userID) return nil } - repo, err := git.OpenRepository(f) + gitRepo, err := git.OpenRepository(f) if err != nil { return fmt.Errorf("runUpdate.Open repoId: %v", err) } - ru, err := GetUserByName(repoUserName) + user, err := GetUserByName(repoUserName) if err != nil { return fmt.Errorf("runUpdate.GetUserByName: %v", err) } - repos, err := GetRepositoryByName(ru.Id, repoName) + repo, err := GetRepositoryByName(user.Id, repoName) if err != nil { return fmt.Errorf("runUpdate.GetRepositoryByName userId: %v", err) } @@ -84,7 +84,7 @@ func Update(refName, oldCommitId, newCommitId, userName, repoUserName, repoName // Push tags. if strings.HasPrefix(refName, "refs/tags/") { tagName := git.RefEndName(refName) - tag, err := repo.GetTag(tagName) + tag, err := gitRepo.GetTag(tagName) if err != nil { log.GitLogger.Fatal(4, "runUpdate.GetTag: %v", err) } @@ -102,14 +102,14 @@ func Update(refName, oldCommitId, newCommitId, userName, repoUserName, repoName commit := &base.PushCommits{} - if err = CommitRepoAction(userId, ru.Id, userName, actEmail, - repos.ID, repoUserName, repoName, refName, commit, oldCommitId, newCommitId); err != nil { + if err = CommitRepoAction(userID, user.Id, userName, actEmail, + repo.ID, repoUserName, repoName, refName, commit, oldCommitID, newCommitID); err != nil { log.GitLogger.Fatal(4, "CommitRepoAction: %s/%s:%v", repoUserName, repoName, err) } return err } - newCommit, err := repo.GetCommit(newCommitId) + newCommit, err := gitRepo.GetCommit(newCommitID) if err != nil { return fmt.Errorf("runUpdate GetCommit of newCommitId: %v", err) } @@ -122,7 +122,7 @@ func Update(refName, oldCommitId, newCommitId, userName, repoUserName, repoName return fmt.Errorf("CommitsBefore: %v", err) } } else { - l, err = newCommit.CommitsBeforeUntil(oldCommitId) + l, err = newCommit.CommitsBeforeUntil(oldCommitID) if err != nil { return fmt.Errorf("CommitsBeforeUntil: %v", err) } @@ -148,8 +148,8 @@ func Update(refName, oldCommitId, newCommitId, userName, repoUserName, repoName }) } - if err = CommitRepoAction(userId, ru.Id, userName, actEmail, - repos.ID, repoUserName, repoName, refName, &base.PushCommits{l.Len(), commits, ""}, oldCommitId, newCommitId); err != nil { + if err = CommitRepoAction(userID, user.Id, userName, actEmail, + repo.ID, repoUserName, repoName, refName, &base.PushCommits{l.Len(), commits, ""}, oldCommitID, newCommitID); err != nil { return fmt.Errorf("runUpdate.models.CommitRepoAction: %s/%s:%v", repoUserName, repoName, err) } return nil diff --git a/templates/.VERSION b/templates/.VERSION index 59a9512a..5e5efc30 100644 --- a/templates/.VERSION +++ b/templates/.VERSION @@ -1 +1 @@ -0.6.26.1104 Beta \ No newline at end of file +0.6.27.1105 Beta \ No newline at end of file -- cgit v1.2.3 From 54ca0b2f0923b01ba152a3e2a9efdb6256d95571 Mon Sep 17 00:00:00 2001 From: Unknwon Date: Fri, 6 Nov 2015 11:10:27 -0500 Subject: #1433 images with links in Markdown - #1904 minor fix on image link --- README.md | 2 +- gogs.go | 2 +- modules/base/markdown.go | 11 ++++++++++- templates/.VERSION | 2 +- 4 files changed, 13 insertions(+), 4 deletions(-) (limited to 'gogs.go') diff --git a/README.md b/README.md index af73f126..3e300519 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.27 Beta +##### Current version: 0.6.28 Beta
diff --git a/gogs.go b/gogs.go index 742075af..a05efadf 100644 --- a/gogs.go +++ b/gogs.go @@ -17,7 +17,7 @@ import ( "github.com/gogits/gogs/modules/setting" ) -const APP_VER = "0.6.27.1105 Beta" +const APP_VER = "0.6.28.1106 Beta" func init() { runtime.GOMAXPROCS(runtime.NumCPU()) diff --git a/modules/base/markdown.go b/modules/base/markdown.go index 540ee58f..e59a6273 100644 --- a/modules/base/markdown.go +++ b/modules/base/markdown.go @@ -100,11 +100,20 @@ func (options *CustomRender) Link(out *bytes.Buffer, link []byte, title []byte, } func (options *CustomRender) Image(out *bytes.Buffer, link []byte, title []byte, alt []byte) { + prefix := strings.Replace(options.urlPrefix, "/src/", "/raw/", 1) if len(link) > 0 && !isLink(link) { - link = []byte(path.Join(strings.Replace(options.urlPrefix, "/src/", "/raw/", 1), string(link))) + if link[0] != '/' { + prefix += "/" + } + link = []byte(prefix + string(link)) } + fmt.Println(2, string(link)) + out.WriteString(``) options.Renderer.Image(out, link, title, alt) + out.WriteString("") } var ( diff --git a/templates/.VERSION b/templates/.VERSION index 5e5efc30..a943b65b 100644 --- a/templates/.VERSION +++ b/templates/.VERSION @@ -1 +1 @@ -0.6.27.1105 Beta \ No newline at end of file +0.6.28.1106 Beta \ No newline at end of file -- cgit v1.2.3 From 676d774d8825ba5c87285989230ebb4b4a4dc522 Mon Sep 17 00:00:00 2001 From: Unknwon Date: Sat, 7 Nov 2015 00:39:45 -0500 Subject: fix #1902 --- cmd/web.go | 2 +- conf/locale/locale_bg-BG.ini | 4 +++- conf/locale/locale_de-DE.ini | 6 +++--- conf/locale/locale_es-ES.ini | 30 ++++++++++++++------------- conf/locale/locale_fr-FR.ini | 6 ++++-- conf/locale/locale_it-IT.ini | 2 ++ conf/locale/locale_ja-JP.ini | 2 ++ conf/locale/locale_lv-LV.ini | 2 ++ conf/locale/locale_nl-NL.ini | 2 ++ conf/locale/locale_pl-PL.ini | 2 ++ conf/locale/locale_pt-BR.ini | 10 +++++---- conf/locale/locale_ru-RU.ini | 2 ++ gogs.go | 2 +- models/models.go | 2 +- modules/bindata/bindata.go | 48 ++++++++++++++++++++++---------------------- templates/.VERSION | 2 +- 16 files changed, 72 insertions(+), 52 deletions(-) (limited to 'gogs.go') diff --git a/cmd/web.go b/cmd/web.go index e52138c7..9ed9d567 100644 --- a/cmd/web.go +++ b/cmd/web.go @@ -80,7 +80,7 @@ func checkVersion() { // Check dependency version. checkers := []VerChecker{ - {"github.com/go-xorm/xorm", func() string { return xorm.Version }, "0.4.3.0806"}, + {"github.com/go-xorm/xorm", func() string { return xorm.Version }, "0.4.4.1029"}, {"github.com/Unknwon/macaron", macaron.Version, "0.5.4"}, {"github.com/go-macaron/binding", binding.Version, "0.1.0"}, {"github.com/go-macaron/cache", cache.Version, "0.1.2"}, diff --git a/conf/locale/locale_bg-BG.ini b/conf/locale/locale_bg-BG.ini index 2396b4ec..00342a19 100755 --- a/conf/locale/locale_bg-BG.ini +++ b/conf/locale/locale_bg-BG.ini @@ -360,6 +360,7 @@ migrate_type_helper=Това хранилище ще бъде Spiegelalle Repositorys dieser Organisation ausgelöst werden. +settings.hooks_desc=Füge Webhooks hinzu, die für alle Repositories dieser Organisation ausgelöst werden. members.public=Öffentlich members.public_helper=Privat machen @@ -809,7 +809,7 @@ users.edit_account=Konto bearbeiten users.is_activated=Dieses Konto ist aktiviert users.is_admin=Dieses Konto hat Administratorrechte users.allow_git_hook=Dieses Konto ist berechtigt, Git-Hooks zu erstellen -users.allow_import_local=This account has permissions to import local repositories +users.allow_import_local=Dieses Konto ist berechtigt, lokale Repositorys zu importieren users.update_profile=Kontoprofil aktualisieren users.delete_account=Dieses Konto löschen users.still_own_repo=Dieses Konto besitzt noch Repositories. Diese müssen zuerst gelöscht oder übertragen werden. diff --git a/conf/locale/locale_es-ES.ini b/conf/locale/locale_es-ES.ini index 9719d7fc..3376d55a 100755 --- a/conf/locale/locale_es-ES.ini +++ b/conf/locale/locale_es-ES.ini @@ -360,6 +360,7 @@ migrate_type_helper=Este repositorio será un mirror miroir migrate_repo=Migrer le dépôt migrate.clone_address=Adresse du clone migrate.clone_address_desc=Cela peut être une URL HTTP/HTTPS/GIT ou un chemin d'accès local. +migrate.permission_denied=Vous n'êtes pas autorisé à importer des dépôts locaux. migrate.invalid_local_path=Chemin local non valide, non existant ou n'étant pas un dossier. forked_from=dérivé depuis @@ -651,7 +652,7 @@ release.tag_name_already_exist=Une publication avec ce nom de tag a déjà exist [org] org_name_holder=Nom d'organisation -org_full_name_holder=Organization Full Name +org_full_name_holder=Nom complet de l'organisation org_name_helper=Idéalement, un nom d'organisation devrait être court et mémorable. create_org=Créer une organisation repo_updated=Mis à jour @@ -808,6 +809,7 @@ users.edit_account=Modifier le Compte users.is_activated=Ce compte est activé users.is_admin=Ce compte possède un niveau d'accès administrateur users.allow_git_hook=Ce compte dispose des autorisations pour créer des crochets de Git +users.allow_import_local=Ce compte dispose des permissions nécessaire à l'import des dépôts locaux users.update_profile=Mettre le profil à jour users.delete_account=Supprimer ce Compte users.still_own_repo=Ce compte possède toujours des dépôts. Vous devez d'abord les supprimer ou les transférer. diff --git a/conf/locale/locale_it-IT.ini b/conf/locale/locale_it-IT.ini index e2a22c32..211693c4 100755 --- a/conf/locale/locale_it-IT.ini +++ b/conf/locale/locale_it-IT.ini @@ -360,6 +360,7 @@ migrate_type_helper=This repository will be a mirror ミラ migrate_repo=リポジトリを移行 migrate.clone_address=クローンアドレス migrate.clone_address_desc=これは、HTTP/HTTPS/GIT URL またはローカル サーバー パスを設定できます。 +migrate.permission_denied=You are not allowed to import local repositories. migrate.invalid_local_path=ローカルパスが無効です。存在しないかディレクトリではありません。 forked_from=フォーク元 @@ -808,6 +809,7 @@ users.edit_account=アカウントの編集 users.is_activated=アカウントがアクティブされました users.is_admin=このアカウントには管理者の権限を持つ users.allow_git_hook=このアカウントには Git のフックを作成する権限を持つ +users.allow_import_local=This account has permissions to import local repositories users.update_profile=アカウント ・ プロファイルを更新 users.delete_account=このアカウントを削除 users.still_own_repo=アカウント所有のリポジトリがあり、リポジトリの削除または所有者の移譲が必要です。 diff --git a/conf/locale/locale_lv-LV.ini b/conf/locale/locale_lv-LV.ini index 5ba88f93..1deb4261 100755 --- a/conf/locale/locale_lv-LV.ini +++ b/conf/locale/locale_lv-LV.ini @@ -360,6 +360,7 @@ migrate_type_helper=Šis repozitorijs būs spogulismirrormirror espelho< migrate_repo=Migrar Repositório migrate.clone_address=Endereço de Clone migrate.clone_address_desc=Isto pode ser uma URL de HTTP/HTTPS/GIT ou um caminho de diretório local. +migrate.permission_denied=Você não pode importar repositórios locais. migrate.invalid_local_path=Caminho local inválido, não existe ou não é um diretório. forked_from=forkado de @@ -457,7 +458,7 @@ issues.no_content=Nenhum conteúdo textual. issues.close_issue=Fechar issues.close_comment_issue=Comentar e fechar issues.reopen_issue=Reabrir -issues.reopen_comment_issue=Reabrir e comentar +issues.reopen_comment_issue=Comentar e reabrir issues.create_comment=Comentar issues.closed_at=`fechado em %[2]s` issues.reopened_at=`reaberto em %[2]s` @@ -651,7 +652,7 @@ release.tag_name_already_exist=Já existiu versão com esse nome de tag. [org] org_name_holder=Nome da Organização -org_full_name_holder=Organization Full Name +org_full_name_holder=Nome completo da organização org_name_helper=Nomes de grandes organizações são curtos e memoráveis. create_org=Criar Organização repo_updated=Atualizado @@ -808,6 +809,7 @@ users.edit_account=Editar Conta users.is_activated=Esta conta está ativada users.is_admin=Esta conta tem permissões de administrador users.allow_git_hook=Esta conta tem permissões para criar hooks do Git +users.allow_import_local=Esta conta tem permissões para importar repositórios locais users.update_profile=Atualizar Perfil da Conta users.delete_account=Deletar Esta Conta users.still_own_repo=Sua conta ainda é proprietária do repositório, você tem que excluir ou transferi-lo primeiro. diff --git a/conf/locale/locale_ru-RU.ini b/conf/locale/locale_ru-RU.ini index a5be90b4..1adc07c6 100755 --- a/conf/locale/locale_ru-RU.ini +++ b/conf/locale/locale_ru-RU.ini @@ -360,6 +360,7 @@ migrate_type_helper=Этот репозиторий будет
diff --git a/gogs.go b/gogs.go index a756ccfe..c4466d0a 100644 --- a/gogs.go +++ b/gogs.go @@ -17,7 +17,7 @@ import ( "github.com/gogits/gogs/modules/setting" ) -const APP_VER = "0.6.28.1107 Beta" +const APP_VER = "0.7.0.1107 Beta" func init() { runtime.GOMAXPROCS(runtime.NumCPU()) diff --git a/templates/.VERSION b/templates/.VERSION index c4eb6e13..23a2f182 100644 --- a/templates/.VERSION +++ b/templates/.VERSION @@ -1 +1 @@ -0.6.28.1107 Beta \ No newline at end of file +0.7.0.1107 Beta \ No newline at end of file -- cgit v1.2.3 From b55499d039c5e35130057b8af16401c558e79e79 Mon Sep 17 00:00:00 2001 From: Unknwon Date: Sun, 8 Nov 2015 14:31:49 -0500 Subject: go vet and fix #1890 --- .bra.toml | 4 ++-- Makefile | 9 +++++++-- cmd/serve.go | 14 +++++++++++++- gogs.go | 2 +- models/action.go | 4 ++-- models/migrations/migrations.go | 4 ++-- modules/cron/parser_test.go | 2 +- routers/repo/commit.go | 2 -- routers/repo/http.go | 2 +- routers/repo/repo.go | 5 ----- templates/.VERSION | 2 +- 11 files changed, 30 insertions(+), 20 deletions(-) (limited to 'gogs.go') diff --git a/.bra.toml b/.bra.toml index bd245653..8789ca8f 100644 --- a/.bra.toml +++ b/.bra.toml @@ -13,7 +13,7 @@ watch_dirs = [ watch_exts = [".go"] build_delay = 1500 cmds = [ - ["go", "install", "-tags", "sqlite"],# redis memcache cert pam tidb - ["go", "build", "-tags", "sqlite"], + ["go", "install"], # sqlite redis memcache cert pam tidb + ["go", "build"], ["./gogs", "web"] ] \ No newline at end of file diff --git a/Makefile b/Makefile index 971727d7..ee495078 100644 --- a/Makefile +++ b/Makefile @@ -13,8 +13,10 @@ build: go install -ldflags '$(LDFLAGS)' -tags '$(TAGS)' go build -ldflags '$(LDFLAGS)' -tags '$(TAGS)' +govet: + go tool vet -composites=false -methods=false -structtags=false . + pack: - find . -name ".DS_Store" -print0 | xargs -0 rm rm -rf $(RELEASE_GOGS) mkdir -p $(RELEASE_GOGS) cp -r gogs LICENSE README.md README_ZH.md templates public scripts $(RELEASE_GOGS) @@ -27,4 +29,7 @@ bindata: go-bindata -o=modules/bindata/bindata.go -ignore="\\.DS_Store|README.md" -pkg=bindata conf/... clean: - go clean -i ./... \ No newline at end of file + go clean -i ./... + +clean-mac: clean + find . -name ".DS_Store" -print0 | xargs -0 rm \ No newline at end of file diff --git a/cmd/serve.go b/cmd/serve.go index c3c66318..301a0c74 100644 --- a/cmd/serve.go +++ b/cmd/serve.go @@ -74,7 +74,14 @@ var ( func fail(userMessage, logMessage string, args ...interface{}) { fmt.Fprintln(os.Stderr, "Gogs:", userMessage) - log.GitLogger.Fatal(3, logMessage, args...) + + if len(logMessage) > 0 { + log.GitLogger.Fatal(3, logMessage, args...) + return + } + + log.GitLogger.Close() + os.Exit(1) } func handleUpdateTask(uuid string, user *models.User, repoUserName, repoName string) { @@ -161,6 +168,11 @@ func runServ(c *cli.Context) { fail("Unknown git command", "Unknown git command %s", verb) } + // Prohibit push to mirror repositories. + if requestedMode > models.ACCESS_MODE_READ && repo.IsMirror { + fail("mirror repository is read-only", "") + } + // Allow anonymous clone for public repositories. var ( keyID int64 diff --git a/gogs.go b/gogs.go index c4466d0a..fc63c7d3 100644 --- a/gogs.go +++ b/gogs.go @@ -17,7 +17,7 @@ import ( "github.com/gogits/gogs/modules/setting" ) -const APP_VER = "0.7.0.1107 Beta" +const APP_VER = "0.7.0.1108 Beta" func init() { runtime.GOMAXPROCS(runtime.NumCPU()) diff --git a/models/action.go b/models/action.go index cfa6e14d..e94bb944 100644 --- a/models/action.go +++ b/models/action.go @@ -147,7 +147,7 @@ func newRepoAction(e Engine, u *User, repo *Repository) (err error) { RepoName: repo.Name, IsPrivate: repo.IsPrivate, }); err != nil { - return fmt.Errorf("notify watchers '%d/%s': %v", u.Id, repo.ID, err) + return fmt.Errorf("notify watchers '%d/%d': %v", u.Id, repo.ID, err) } log.Trace("action.newRepoAction: %s/%s", u.Name, repo.Name) @@ -488,7 +488,7 @@ func transferRepoAction(e Engine, actUser, oldOwner, newOwner *User, repo *Repos IsPrivate: repo.IsPrivate, Content: path.Join(oldOwner.LowerName, repo.LowerName), }); err != nil { - return fmt.Errorf("notify watchers '%d/%s': %v", actUser.Id, repo.ID, err) + return fmt.Errorf("notify watchers '%d/%d': %v", actUser.Id, repo.ID, err) } // Remove watch for organization. diff --git a/models/migrations/migrations.go b/models/migrations/migrations.go index d7549d07..0d17cf26 100644 --- a/models/migrations/migrations.go +++ b/models/migrations/migrations.go @@ -456,7 +456,7 @@ func trimCommitActionAppUrlPrefix(x *xorm.Engine) error { pushCommits = new(PushCommits) if err = json.Unmarshal(action["content"], pushCommits); err != nil { - return fmt.Errorf("unmarshal action content[%s]: %v", actID, err) + return fmt.Errorf("unmarshal action content[%d]: %v", actID, err) } infos := strings.Split(pushCommits.CompareUrl, "/") @@ -467,7 +467,7 @@ func trimCommitActionAppUrlPrefix(x *xorm.Engine) error { p, err := json.Marshal(pushCommits) if err != nil { - return fmt.Errorf("marshal action content[%s]: %v", actID, err) + return fmt.Errorf("marshal action content[%d]: %v", actID, err) } if _, err = sess.Id(actID).Update(&Action{ diff --git a/modules/cron/parser_test.go b/modules/cron/parser_test.go index 9050cf78..f03299e5 100644 --- a/modules/cron/parser_test.go +++ b/modules/cron/parser_test.go @@ -111,7 +111,7 @@ func TestSpecSchedule(t *testing.T) { t.Error(err) } if !reflect.DeepEqual(actual, c.expected) { - t.Errorf("%s => (expected) %b != %b (actual)", c.expr, c.expected, actual) + t.Errorf("%s => (expected) %v != %v (actual)", c.expr, c.expected, actual) } } } diff --git a/routers/repo/commit.go b/routers/repo/commit.go index 13483cc8..d0dd01de 100644 --- a/routers/repo/commit.go +++ b/routers/repo/commit.go @@ -38,7 +38,6 @@ func RenderIssueLinks(oldCommits *list.List, repoLink string) *list.List { newCommits := list.New() for e := oldCommits.Front(); e != nil; e = e.Next() { c := e.Value.(*git.Commit) - c.CommitMessage = c.CommitMessage newCommits.PushBack(c) } return newCommits @@ -196,7 +195,6 @@ func Diff(ctx *middleware.Context) { commitID := ctx.Repo.CommitID commit := ctx.Repo.Commit - commit.CommitMessage = commit.CommitMessage diff, err := models.GetDiffCommit(models.RepoPath(userName, repoName), commitID, setting.Git.MaxGitDiffLines) if err != nil { diff --git a/routers/repo/http.go b/routers/repo/http.go index 178ae92c..214cc9ba 100644 --- a/routers/repo/http.go +++ b/routers/repo/http.go @@ -158,7 +158,7 @@ func HTTP(ctx *middleware.Context) { } if !isPull && repo.IsMirror { - ctx.HandleText(401, "can't push to mirror") + ctx.HandleText(401, "mirror repository is read-only") return } } diff --git a/routers/repo/repo.go b/routers/repo/repo.go index a13526ed..ab7b4b99 100644 --- a/routers/repo/repo.go +++ b/routers/repo/repo.go @@ -250,11 +250,6 @@ func Action(ctx *middleware.Context) { redirectTo = ctx.Repo.RepoLink } ctx.Redirect(redirectTo) - - return - ctx.JSON(200, map[string]interface{}{ - "ok": true, - }) } func Download(ctx *middleware.Context) { diff --git a/templates/.VERSION b/templates/.VERSION index 23a2f182..b2e3cc9c 100644 --- a/templates/.VERSION +++ b/templates/.VERSION @@ -1 +1 @@ -0.7.0.1107 Beta \ No newline at end of file +0.7.0.1108 Beta \ No newline at end of file -- cgit v1.2.3 From 3ec650b0efee126c78c81751fff0f39f89c9ac5d Mon Sep 17 00:00:00 2001 From: Unknwon Date: Sun, 8 Nov 2015 17:03:21 -0500 Subject: update version --- README.md | 2 +- gogs.go | 2 +- templates/.VERSION | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) (limited to 'gogs.go') diff --git a/README.md b/README.md index 583f2f38..be6f5a80 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.0 Beta +##### Current version: 0.7.1 Beta
diff --git a/gogs.go b/gogs.go index fc63c7d3..407abe67 100644 --- a/gogs.go +++ b/gogs.go @@ -17,7 +17,7 @@ import ( "github.com/gogits/gogs/modules/setting" ) -const APP_VER = "0.7.0.1108 Beta" +const APP_VER = "0.7.1.1108 Beta" func init() { runtime.GOMAXPROCS(runtime.NumCPU()) diff --git a/templates/.VERSION b/templates/.VERSION index b2e3cc9c..21f4732c 100644 --- a/templates/.VERSION +++ b/templates/.VERSION @@ -1 +1 @@ -0.7.0.1108 Beta \ No newline at end of file +0.7.1.1108 Beta \ No newline at end of file -- cgit v1.2.3 From 0d4498429cd912f78a508a4f4bc6856b15c73ac4 Mon Sep 17 00:00:00 2001 From: Unknwon Date: Mon, 9 Nov 2015 02:13:25 -0500 Subject: work on #1904 --- README.md | 2 +- gogs.go | 2 +- routers/repo/view.go | 15 ++++++++++----- templates/.VERSION | 2 +- 4 files changed, 13 insertions(+), 8 deletions(-) (limited to 'gogs.go') diff --git a/README.md b/README.md index be6f5a80..a8389038 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.1 Beta +##### Current version: 0.7.2 Beta
diff --git a/gogs.go b/gogs.go index 407abe67..74e5bd64 100644 --- a/gogs.go +++ b/gogs.go @@ -17,7 +17,7 @@ import ( "github.com/gogits/gogs/modules/setting" ) -const APP_VER = "0.7.1.1108 Beta" +const APP_VER = "0.7.2.1109 Beta" func init() { runtime.GOMAXPROCS(runtime.NumCPU()) diff --git a/routers/repo/view.go b/routers/repo/view.go index bc05b680..6a3e0cb3 100644 --- a/routers/repo/view.go +++ b/routers/repo/view.go @@ -31,14 +31,19 @@ func Home(ctx *middleware.Context) { repoLink := ctx.Repo.RepoLink branchLink := ctx.Repo.RepoLink + "/src/" + branchName + treeLink := branchLink rawLink := ctx.Repo.RepoLink + "/raw/" + branchName // Get tree path treename := ctx.Repo.TreeName - if len(treename) > 0 && treename[len(treename)-1] == '/' { - ctx.Redirect(repoLink + "/src/" + branchName + "/" + treename[:len(treename)-1]) - return + if len(treename) > 0 { + if treename[len(treename)-1] == '/' { + ctx.Redirect(repoLink + "/src/" + branchName + "/" + treename[:len(treename)-1]) + return + } + + treeLink += "/" + treename } ctx.Data["IsRepoToolbarSource"] = true @@ -98,7 +103,7 @@ func Home(ctx *middleware.Context) { readmeExist := base.IsMarkdownFile(blob.Name()) || base.IsReadmeFile(blob.Name()) ctx.Data["ReadmeExist"] = readmeExist if readmeExist { - ctx.Data["FileContent"] = string(base.RenderMarkdown(buf, branchLink)) + ctx.Data["FileContent"] = string(base.RenderMarkdown(buf, path.Dir(treeLink))) } else { if err, content := base.ToUtf8WithErr(buf); err != nil { if err != nil { @@ -191,7 +196,7 @@ func Home(ctx *middleware.Context) { buf = append(buf, d...) switch { case base.IsMarkdownFile(readmeFile.Name()): - buf = base.RenderMarkdown(buf, branchLink) + buf = base.RenderMarkdown(buf, treeLink) default: buf = bytes.Replace(buf, []byte("\n"), []byte(`
`), -1) } diff --git a/templates/.VERSION b/templates/.VERSION index 21f4732c..c5c0c2ee 100644 --- a/templates/.VERSION +++ b/templates/.VERSION @@ -1 +1 @@ -0.7.1.1108 Beta \ No newline at end of file +0.7.2.1109 Beta \ No newline at end of file -- cgit v1.2.3 From 3b62a0fe0edad32c201ca0fce9b39bc540f6d5f4 Mon Sep 17 00:00:00 2001 From: Unknwon Date: Tue, 10 Nov 2015 16:46:17 -0500 Subject: fix #1572 fix file histrory paging issue --- README.md | 2 +- gogs.go | 2 +- modules/base/markdown.go | 1 - routers/repo/commit.go | 83 +++++++++------------------------------ templates/.VERSION | 2 +- templates/repo/commits_table.tmpl | 2 +- 6 files changed, 23 insertions(+), 69 deletions(-) (limited to 'gogs.go') diff --git a/README.md b/README.md index 567777b4..25b84d8e 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.2 Beta +##### Current version: 0.7.4 Beta
diff --git a/gogs.go b/gogs.go index 74e5bd64..d56dd2c4 100644 --- a/gogs.go +++ b/gogs.go @@ -17,7 +17,7 @@ import ( "github.com/gogits/gogs/modules/setting" ) -const APP_VER = "0.7.2.1109 Beta" +const APP_VER = "0.7.4.1110 Beta" func init() { runtime.GOMAXPROCS(runtime.NumCPU()) diff --git a/modules/base/markdown.go b/modules/base/markdown.go index e59a6273..8f3d6bef 100644 --- a/modules/base/markdown.go +++ b/modules/base/markdown.go @@ -107,7 +107,6 @@ func (options *CustomRender) Image(out *bytes.Buffer, link []byte, title []byte, } link = []byte(prefix + string(link)) } - fmt.Println(2, string(link)) out.WriteString(` commitsCount { - nextPage = 0 - } + ctx.Data["Page"] = paginater.New(commitsCount, git.CommitsRangeSize, page, 5) - commits, err := ctx.Repo.GitRepo.CommitsByFileAndRange( - branchName, fileName, page) + commits, err := ctx.Repo.GitRepo.CommitsByFileAndRange(branchName, fileName, page) if err != nil { - ctx.Handle(500, "repo.FileHistory(CommitsByRange)", err) + ctx.Handle(500, "CommitsByFileAndRange", err) return } commits = RenderIssueLinks(commits, ctx.Repo.RepoLink) commits = models.ValidateCommitsWithEmails(commits) - ctx.Data["Commits"] = commits - ctx.Data["Username"] = userName - ctx.Data["Reponame"] = repoName + + ctx.Data["Username"] = ctx.Repo.Owner.Name + ctx.Data["Reponame"] = ctx.Repo.Repository.Name ctx.Data["FileName"] = fileName ctx.Data["CommitCount"] = commitsCount - ctx.Data["LastPageNum"] = lastPage - ctx.Data["NextPageNum"] = nextPage + ctx.Data["Branch"] = branchName ctx.HTML(200, COMMITS) } diff --git a/templates/.VERSION b/templates/.VERSION index c5c0c2ee..ba0a4803 100644 --- a/templates/.VERSION +++ b/templates/.VERSION @@ -1 +1 @@ -0.7.2.1109 Beta \ No newline at end of file +0.7.4.1110 Beta \ No newline at end of file diff --git a/templates/repo/commits_table.tmpl b/templates/repo/commits_table.tmpl index 6fc17508..58ab1ebb 100644 --- a/templates/repo/commits_table.tmpl +++ b/templates/repo/commits_table.tmpl @@ -1,5 +1,5 @@

- {{.CommitCount}} {{.i18n.Tr "repo.commits.commits"}} + {{.CommitCount}} {{.i18n.Tr "repo.commits.commits"}} {{if .Branch}}({{.Branch}}){{end}} {{if .PageIsCommits}}
-- cgit v1.2.3 From 908f2924ceacc89bd75c5b89f68a653a16dcfbec Mon Sep 17 00:00:00 2001 From: Unknwon Date: Wed, 11 Nov 2015 16:19:28 -0500 Subject: fix #1824 and fix #1917 --- README.md | 2 +- gogs.go | 2 +- public/js/gogs.js | 11 +++++++++++ templates/.VERSION | 2 +- templates/repo/issue/comment_tab.tmpl | 2 +- templates/repo/issue/view_content.tmpl | 4 ++-- 6 files changed, 17 insertions(+), 6 deletions(-) (limited to 'gogs.go') diff --git a/README.md b/README.md index 25b84d8e..25497f42 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.4 Beta +##### Current version: 0.7.5 Beta

diff --git a/gogs.go b/gogs.go index d56dd2c4..c0662952 100644 --- a/gogs.go +++ b/gogs.go @@ -17,7 +17,7 @@ import ( "github.com/gogits/gogs/modules/setting" ) -const APP_VER = "0.7.4.1110 Beta" +const APP_VER = "0.7.5.1111 Beta" func init() { runtime.GOMAXPROCS(runtime.NumCPU()) diff --git a/public/js/gogs.js b/public/js/gogs.js index f297191a..68e286bc 100644 --- a/public/js/gogs.js +++ b/public/js/gogs.js @@ -21,6 +21,8 @@ function initCommentPreviewTab($form) { } ); }); + + buttonsClickOnEnter(); } function initCommentForm() { @@ -537,6 +539,13 @@ function initAdmin() { } } +function buttonsClickOnEnter() { + $('.ui.button').keypress(function(e){ + if (e.keyCode == 13) + $(this).click(); + }); +} + $(document).ready(function () { csrf = $('meta[name=_csrf]').attr("content"); suburl = $('meta[name=_suburl]').attr("content"); @@ -670,6 +679,8 @@ $(document).ready(function () { $($(this).data('modal')).modal('show'); }); + buttonsClickOnEnter(); + initCommentForm(); initInstall(); initRepository(); diff --git a/templates/.VERSION b/templates/.VERSION index ba0a4803..27f1c9ed 100644 --- a/templates/.VERSION +++ b/templates/.VERSION @@ -1 +1 @@ -0.7.4.1110 Beta \ No newline at end of file +0.7.5.1111 Beta \ No newline at end of file diff --git a/templates/repo/issue/comment_tab.tmpl b/templates/repo/issue/comment_tab.tmpl index a2b5bea2..5ffe1e04 100644 --- a/templates/repo/issue/comment_tab.tmpl +++ b/templates/repo/issue/comment_tab.tmpl @@ -4,7 +4,7 @@ {{.i18n.Tr "repo.release.preview"}}
- +
{{.i18n.Tr "repo.release.loading"}} diff --git a/templates/repo/issue/view_content.tmpl b/templates/repo/issue/view_content.tmpl index 7c413fb3..f838072c 100644 --- a/templates/repo/issue/view_content.tmpl +++ b/templates/repo/issue/view_content.tmpl @@ -210,12 +210,12 @@ {{.i18n.Tr "repo.issues.reopen_issue"}}
{{else}} -
+
{{.i18n.Tr "repo.issues.close_issue"}}
{{end}} {{end}} -
-- cgit v1.2.3 From 10427b217804486a9964129ee7a509d157987fe6 Mon Sep 17 00:00:00 2001 From: Unknwon Date: Thu, 12 Nov 2015 12:32:40 -0500 Subject: fix #1930 --- README.md | 2 +- gogs.go | 2 +- routers/admin/notice.go | 2 +- templates/.VERSION | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) (limited to 'gogs.go') diff --git a/README.md b/README.md index 25497f42..5f11a63c 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.5 Beta +##### Current version: 0.7.6 Beta
diff --git a/gogs.go b/gogs.go index c0662952..0ae13028 100644 --- a/gogs.go +++ b/gogs.go @@ -17,7 +17,7 @@ import ( "github.com/gogits/gogs/modules/setting" ) -const APP_VER = "0.7.5.1111 Beta" +const APP_VER = "0.7.6.1112 Beta" func init() { runtime.GOMAXPROCS(runtime.NumCPU()) diff --git a/routers/admin/notice.go b/routers/admin/notice.go index 512c3f59..b076994d 100644 --- a/routers/admin/notice.go +++ b/routers/admin/notice.go @@ -49,5 +49,5 @@ func DeleteNotice(ctx *middleware.Context) { } log.Trace("System notice deleted by admin(%s): %d", ctx.User.Name, id) ctx.Flash.Success(ctx.Tr("admin.notices.delete_success")) - ctx.Redirect("/admin/notices") + ctx.Redirect(setting.AppSubUrl + "/admin/notices") } diff --git a/templates/.VERSION b/templates/.VERSION index 27f1c9ed..6e7925e4 100644 --- a/templates/.VERSION +++ b/templates/.VERSION @@ -1 +1 @@ -0.7.5.1111 Beta \ No newline at end of file +0.7.6.1112 Beta \ No newline at end of file -- cgit v1.2.3 From a6c7716742943aa492545716b629a566c4d923de Mon Sep 17 00:00:00 2001 From: Unknwon Date: Fri, 13 Nov 2015 10:05:50 -0500 Subject: minor fix for #1935 and fix #1854 --- README.md | 2 +- gogs.go | 2 +- models/action.go | 8 ++++---- templates/.VERSION | 2 +- 4 files changed, 7 insertions(+), 7 deletions(-) (limited to 'gogs.go') diff --git a/README.md b/README.md index 5f11a63c..df8fa611 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.6 Beta +##### Current version: 0.7.7 Beta
diff --git a/gogs.go b/gogs.go index 0ae13028..67b1cc08 100644 --- a/gogs.go +++ b/gogs.go @@ -17,7 +17,7 @@ import ( "github.com/gogits/gogs/modules/setting" ) -const APP_VER = "0.7.6.1112 Beta" +const APP_VER = "0.7.7.1113 Beta" func init() { runtime.GOMAXPROCS(runtime.NumCPU()) diff --git a/models/action.go b/models/action.go index 19fd9102..c514a4c4 100644 --- a/models/action.go +++ b/models/action.go @@ -14,8 +14,8 @@ import ( "time" "unicode" - "github.com/go-xorm/xorm" "github.com/Unknwon/com" + "github.com/go-xorm/xorm" api "github.com/gogits/go-gogs-client" @@ -138,10 +138,10 @@ func (a Action) GetIssueInfos() []string { } func (a Action) GetIssueTitle() string { - issueIndex := com.StrTo(a.GetIssueInfos()[0]).MustInt64() - issue, err := GetIssueByIndex(a.RepoID, issueIndex) + index := com.StrTo(a.GetIssueInfos()[0]).MustInt64() + issue, err := GetIssueByIndex(a.RepoID, index) if err != nil { - log.Error(4, "GetIssueByID: %v", err) + log.Error(4, "GetIssueByIndex: %v", err) return "500 when get title" } return issue.Name diff --git a/templates/.VERSION b/templates/.VERSION index 6e7925e4..e6ef9167 100644 --- a/templates/.VERSION +++ b/templates/.VERSION @@ -1 +1 @@ -0.7.6.1112 Beta \ No newline at end of file +0.7.7.1113 Beta \ No newline at end of file -- cgit v1.2.3 From 1d57f0d64fcd9aec16b4003d5664f31ea748da03 Mon Sep 17 00:00:00 2001 From: Unknwon Date: Fri, 13 Nov 2015 17:10:25 -0500 Subject: Show custom avatars in commits --- README.md | 2 +- cmd/web.go | 6 +- gogs.go | 2 +- models/action.go | 46 ++++- models/update.go | 9 +- models/user.go | 2 +- modules/base/template.go | 313 -------------------------------- modules/base/tool.go | 18 ++ modules/template/template.go | 285 +++++++++++++++++++++++++++++ routers/repo/view.go | 3 +- templates/.VERSION | 2 +- templates/user/dashboard/dashboard.tmpl | 8 +- templates/user/dashboard/feeds.tmpl | 2 +- 13 files changed, 364 insertions(+), 334 deletions(-) delete mode 100644 modules/base/template.go create mode 100644 modules/template/template.go (limited to 'gogs.go') diff --git a/README.md b/README.md index df8fa611..a01b83cc 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.7 Beta +##### Current version: 0.7.8 Beta
diff --git a/cmd/web.go b/cmd/web.go index 9ed9d567..e51b1bb9 100644 --- a/cmd/web.go +++ b/cmd/web.go @@ -7,7 +7,7 @@ package cmd import ( "crypto/tls" "fmt" - "html/template" + gotmpl "html/template" "io/ioutil" "net/http" "net/http/fcgi" @@ -35,11 +35,11 @@ import ( "github.com/gogits/gogs/modules/auth" "github.com/gogits/gogs/modules/auth/apiv1" "github.com/gogits/gogs/modules/avatar" - "github.com/gogits/gogs/modules/base" "github.com/gogits/gogs/modules/bindata" "github.com/gogits/gogs/modules/log" "github.com/gogits/gogs/modules/middleware" "github.com/gogits/gogs/modules/setting" + "github.com/gogits/gogs/modules/template" "github.com/gogits/gogs/routers" "github.com/gogits/gogs/routers/admin" "github.com/gogits/gogs/routers/api/v1" @@ -124,7 +124,7 @@ func newMacaron() *macaron.Macaron { )) m.Use(macaron.Renderer(macaron.RenderOptions{ Directory: path.Join(setting.StaticRootPath, "templates"), - Funcs: []template.FuncMap{base.TemplateFuncs}, + Funcs: []gotmpl.FuncMap{template.Funcs}, IndentJSON: macaron.Env != macaron.PROD, })) diff --git a/gogs.go b/gogs.go index 67b1cc08..65571c06 100644 --- a/gogs.go +++ b/gogs.go @@ -17,7 +17,7 @@ import ( "github.com/gogits/gogs/modules/setting" ) -const APP_VER = "0.7.7.1113 Beta" +const APP_VER = "0.7.8.1113 Beta" func init() { runtime.GOMAXPROCS(runtime.NumCPU()) diff --git a/models/action.go b/models/action.go index 536476d7..bb15d4a3 100644 --- a/models/action.go +++ b/models/action.go @@ -208,8 +208,48 @@ func issueIndexTrimRight(c rune) bool { return !unicode.IsDigit(c) } +type PushCommit struct { + Sha1 string + Message string + AuthorEmail string + AuthorName string +} + +type PushCommits struct { + Len int + Commits []*PushCommit + CompareUrl string + + avatars map[string]string +} + +func NewPushCommits() *PushCommits { + return &PushCommits{ + avatars: make(map[string]string), + } +} + +// AvatarLink tries to match user in database with e-mail +// in order to show custom avatar, and falls back to general avatar link. +func (push *PushCommits) AvatarLink(email string) string { + _, ok := push.avatars[email] + if !ok { + u, err := GetUserByEmail(email) + if err != nil { + push.avatars[email] = base.AvatarLink(email) + if !IsErrUserNotExist(err) { + log.Error(4, "GetUserByEmail: %v", err) + } + } else { + push.avatars[email] = u.AvatarLink() + } + } + + return push.avatars[email] +} + // updateIssuesCommit checks if issues are manipulated by commit message. -func updateIssuesCommit(u *User, repo *Repository, repoUserName, repoName string, commits []*base.PushCommit) error { +func updateIssuesCommit(u *User, repo *Repository, repoUserName, repoName string, commits []*PushCommit) error { // Commits are appended in the reverse order. for i := len(commits) - 1; i >= 0; i-- { c := commits[i] @@ -343,7 +383,7 @@ func CommitRepoAction( repoID int64, repoUserName, repoName string, refFullName string, - commit *base.PushCommits, + commit *PushCommits, oldCommitID string, newCommitID string) error { u, err := GetUserByID(userID) @@ -369,7 +409,7 @@ func CommitRepoAction( // Check it's tag push or branch. if strings.HasPrefix(refFullName, "refs/tags/") { opType = PUSH_TAG - commit = &base.PushCommits{} + commit = &PushCommits{} } else { // if not the first commit, set the compareUrl if !strings.HasPrefix(oldCommitID, "0000000") { diff --git a/models/update.go b/models/update.go index 7992313a..14e56ce8 100644 --- a/models/update.go +++ b/models/update.go @@ -10,7 +10,6 @@ import ( "os/exec" "strings" - "github.com/gogits/gogs/modules/base" "github.com/gogits/gogs/modules/git" "github.com/gogits/gogs/modules/log" ) @@ -100,7 +99,7 @@ func Update(refName, oldCommitID, newCommitID, userName, repoUserName, repoName actEmail = cmt.Committer.Email } - commit := &base.PushCommits{} + commit := &PushCommits{} if err = CommitRepoAction(userID, user.Id, userName, actEmail, repo.ID, repoUserName, repoName, refName, commit, oldCommitID, newCommitID); err != nil { @@ -133,7 +132,7 @@ func Update(refName, oldCommitID, newCommitID, userName, repoUserName, repoName } // Push commits. - commits := make([]*base.PushCommit, 0) + commits := make([]*PushCommit, 0) var actEmail string for e := l.Front(); e != nil; e = e.Next() { commit := e.Value.(*git.Commit) @@ -141,7 +140,7 @@ func Update(refName, oldCommitID, newCommitID, userName, repoUserName, repoName actEmail = commit.Committer.Email } commits = append(commits, - &base.PushCommit{commit.ID.String(), + &PushCommit{commit.ID.String(), commit.Message(), commit.Author.Email, commit.Author.Name, @@ -149,7 +148,7 @@ func Update(refName, oldCommitID, newCommitID, userName, repoUserName, repoName } if err = CommitRepoAction(userID, user.Id, userName, actEmail, - repo.ID, repoUserName, repoName, refName, &base.PushCommits{l.Len(), commits, ""}, oldCommitID, newCommitID); err != nil { + repo.ID, repoUserName, repoName, refName, &PushCommits{l.Len(), commits, "", nil}, oldCommitID, newCommitID); err != nil { return fmt.Errorf("runUpdate.models.CommitRepoAction: %s/%s:%v", repoUserName, repoName, err) } return nil diff --git a/models/user.go b/models/user.go index 628a50f7..5aaf630f 100644 --- a/models/user.go +++ b/models/user.go @@ -991,7 +991,7 @@ func GetUserByEmail(email string) (*User, error) { return GetUserByID(emailAddress.UID) } - return nil, ErrUserNotExist{0, "email"} + return nil, ErrUserNotExist{0, email} } // SearchUserByName returns given number of users whose name contains keyword. diff --git a/modules/base/template.go b/modules/base/template.go deleted file mode 100644 index ff743e95..00000000 --- a/modules/base/template.go +++ /dev/null @@ -1,313 +0,0 @@ -// Copyright 2014 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 base - -import ( - "container/list" - "encoding/json" - "fmt" - "html/template" - "runtime" - "strings" - "time" - - "golang.org/x/net/html/charset" - "golang.org/x/text/transform" - - "github.com/gogits/chardet" - "github.com/gogits/gogs/modules/setting" -) - -func Safe(raw string) template.HTML { - return template.HTML(raw) -} - -func Str2html(raw string) template.HTML { - return template.HTML(Sanitizer.Sanitize(raw)) -} - -func Range(l int) []int { - return make([]int, l) -} - -func List(l *list.List) chan interface{} { - e := l.Front() - c := make(chan interface{}) - go func() { - for e != nil { - c <- e.Value - e = e.Next() - } - close(c) - }() - return c -} - -func Sha1(str string) string { - return EncodeSha1(str) -} - -func ShortSha(sha1 string) string { - if len(sha1) == 40 { - return sha1[:10] - } - return sha1 -} - -func DetectEncoding(content []byte) (string, error) { - detector := chardet.NewTextDetector() - result, err := detector.DetectBest(content) - if result.Charset != "UTF-8" && len(setting.Repository.AnsiCharset) > 0 { - return setting.Repository.AnsiCharset, err - } - return result.Charset, err -} - -func ToUtf8WithErr(content []byte) (error, string) { - charsetLabel, err := DetectEncoding(content) - if err != nil { - return err, "" - } - - if charsetLabel == "UTF-8" { - return nil, string(content) - } - - encoding, _ := charset.Lookup(charsetLabel) - if encoding == nil { - return fmt.Errorf("unknown char decoder %s", charsetLabel), string(content) - } - - result, n, err := transform.String(encoding.NewDecoder(), string(content)) - - // If there is an error, we concatenate the nicely decoded part and the - // original left over. This way we won't loose data. - if err != nil { - result = result + string(content[n:]) - } - - return err, result -} - -func ToUtf8(content string) string { - _, res := ToUtf8WithErr([]byte(content)) - return res -} - -// Replaces all prefixes 'old' in 's' with 'new'. -func ReplaceLeft(s, old, new string) string { - old_len, new_len, i, n := len(old), len(new), 0, 0 - for ; i < len(s) && strings.HasPrefix(s[i:], old); n += 1 { - i += old_len - } - - // simple optimization - if n == 0 { - return s - } - - // allocating space for the new string - newLen := n*new_len + len(s[i:]) - replacement := make([]byte, newLen, newLen) - - j := 0 - for ; j < n*new_len; j += new_len { - copy(replacement[j:j+new_len], new) - } - - copy(replacement[j:], s[i:]) - return string(replacement) -} - -// RenderCommitMessage renders commit message with XSS-safe and special links. -func RenderCommitMessage(msg, urlPrefix string) template.HTML { - cleanMsg := template.HTMLEscapeString(msg) - fullMessage := string(RenderIssueIndexPattern([]byte(cleanMsg), urlPrefix)) - msgLines := strings.Split(strings.TrimSpace(fullMessage), "\n") - for i := range msgLines { - msgLines[i] = ReplaceLeft(msgLines[i], " ", " ") - } - - fullMessage = strings.Join(msgLines, "
") - return template.HTML(fullMessage) -} - -var TemplateFuncs template.FuncMap = map[string]interface{}{ - "GoVer": func() string { - return strings.Title(runtime.Version()) - }, - "AppName": func() string { - return setting.AppName - }, - "AppSubUrl": func() string { - return setting.AppSubUrl - }, - "AppVer": func() string { - return setting.AppVer - }, - "AppDomain": func() string { - return setting.Domain - }, - "DisableGravatar": func() bool { - return setting.DisableGravatar - }, - "LoadTimes": func(startTime time.Time) string { - return fmt.Sprint(time.Since(startTime).Nanoseconds()/1e6) + "ms" - }, - "AvatarLink": AvatarLink, - "Safe": Safe, - "Str2html": Str2html, - "TimeSince": TimeSince, - "RawTimeSince": RawTimeSince, - "FileSize": FileSize, - "Subtract": Subtract, - "Add": func(a, b int) int { - return a + b - }, - "ActionIcon": ActionIcon, - "DateFmtLong": func(t time.Time) string { - return t.Format(time.RFC1123Z) - }, - "DateFmtShort": func(t time.Time) string { - return t.Format("Jan 02, 2006") - }, - "List": List, - "Mail2Domain": func(mail string) string { - if !strings.Contains(mail, "@") { - return "try.gogs.io" - } - - return strings.SplitN(mail, "@", 2)[1] - }, - "SubStr": func(str string, start, length int) string { - if len(str) == 0 { - return "" - } - end := start + length - if length == -1 { - end = len(str) - } - if len(str) < end { - return str - } - return str[start:end] - }, - "DiffTypeToStr": DiffTypeToStr, - "DiffLineTypeToStr": DiffLineTypeToStr, - "Sha1": Sha1, - "ShortSha": ShortSha, - "Md5": EncodeMd5, - "ActionContent2Commits": ActionContent2Commits, - "Oauth2Icon": Oauth2Icon, - "Oauth2Name": Oauth2Name, - "ToUtf8": ToUtf8, - "EscapePound": func(str string) string { - return strings.Replace(strings.Replace(str, "%", "%25", -1), "#", "%23", -1) - }, - "RenderCommitMessage": RenderCommitMessage, -} - -type Actioner interface { - GetOpType() int - GetActUserName() string - GetActEmail() string - GetRepoUserName() string - GetRepoName() string - GetRepoPath() string - GetRepoLink() string - GetBranch() string - GetContent() string - GetCreate() time.Time - GetIssueInfos() []string -} - -// ActionIcon accepts a int that represents action operation type -// and returns a icon class name. -func ActionIcon(opType int) string { - switch opType { - case 1, 8: // Create, transfer repository. - return "repo" - case 5, 9: // Commit repository. - return "git-commit" - case 6: // Create issue. - return "issue-opened" - case 10: // Comment issue. - return "comment" - default: - return "invalid type" - } -} - -type PushCommit struct { - Sha1 string - Message string - AuthorEmail string - AuthorName string -} - -type PushCommits struct { - Len int - Commits []*PushCommit - CompareUrl string -} - -func ActionContent2Commits(act Actioner) *PushCommits { - var push *PushCommits - if err := json.Unmarshal([]byte(act.GetContent()), &push); err != nil { - return nil - } - return push -} - -func DiffTypeToStr(diffType int) string { - diffTypes := map[int]string{ - 1: "add", 2: "modify", 3: "del", 4: "rename", - } - return diffTypes[diffType] -} - -func DiffLineTypeToStr(diffType int) string { - switch diffType { - case 2: - return "add" - case 3: - return "del" - case 4: - return "tag" - } - return "same" -} - -func Oauth2Icon(t int) string { - switch t { - case 1: - return "fa-github-square" - case 2: - return "fa-google-plus-square" - case 3: - return "fa-twitter-square" - case 4: - return "fa-qq" - case 5: - return "fa-weibo" - } - return "" -} - -func Oauth2Name(t int) string { - switch t { - case 1: - return "GitHub" - case 2: - return "Google+" - case 3: - return "Twitter" - case 4: - return "腾讯 QQ" - case 5: - return "Weibo" - } - return "" -} diff --git a/modules/base/tool.go b/modules/base/tool.go index b9a97c9c..78983b36 100644 --- a/modules/base/tool.go +++ b/modules/base/tool.go @@ -23,6 +23,8 @@ import ( "github.com/Unknwon/i18n" "github.com/microcosm-cc/bluemonday" + "github.com/gogits/chardet" + "github.com/gogits/gogs/modules/avatar" "github.com/gogits/gogs/modules/setting" ) @@ -43,6 +45,22 @@ func EncodeSha1(str string) string { return hex.EncodeToString(h.Sum(nil)) } +func ShortSha(sha1 string) string { + if len(sha1) == 40 { + return sha1[:10] + } + return sha1 +} + +func DetectEncoding(content []byte) (string, error) { + detector := chardet.NewTextDetector() + result, err := detector.DetectBest(content) + if result.Charset != "UTF-8" && len(setting.Repository.AnsiCharset) > 0 { + return setting.Repository.AnsiCharset, err + } + return result.Charset, err +} + func BasicAuthDecode(encoded string) (string, string, error) { s, err := base64.StdEncoding.DecodeString(encoded) if err != nil { diff --git a/modules/template/template.go b/modules/template/template.go new file mode 100644 index 00000000..d56b10d7 --- /dev/null +++ b/modules/template/template.go @@ -0,0 +1,285 @@ +// Copyright 2014 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 template + +import ( + "container/list" + "encoding/json" + "fmt" + "html/template" + "runtime" + "strings" + "time" + + "golang.org/x/net/html/charset" + "golang.org/x/text/transform" + + "github.com/gogits/gogs/models" + "github.com/gogits/gogs/modules/base" + "github.com/gogits/gogs/modules/setting" +) + +func Safe(raw string) template.HTML { + return template.HTML(raw) +} + +func Str2html(raw string) template.HTML { + return template.HTML(base.Sanitizer.Sanitize(raw)) +} + +func Range(l int) []int { + return make([]int, l) +} + +func List(l *list.List) chan interface{} { + e := l.Front() + c := make(chan interface{}) + go func() { + for e != nil { + c <- e.Value + e = e.Next() + } + close(c) + }() + return c +} + +func Sha1(str string) string { + return base.EncodeSha1(str) +} + +func ToUtf8WithErr(content []byte) (error, string) { + charsetLabel, err := base.DetectEncoding(content) + if err != nil { + return err, "" + } + + if charsetLabel == "UTF-8" { + return nil, string(content) + } + + encoding, _ := charset.Lookup(charsetLabel) + if encoding == nil { + return fmt.Errorf("unknown char decoder %s", charsetLabel), string(content) + } + + result, n, err := transform.String(encoding.NewDecoder(), string(content)) + + // If there is an error, we concatenate the nicely decoded part and the + // original left over. This way we won't loose data. + if err != nil { + result = result + string(content[n:]) + } + + return err, result +} + +func ToUtf8(content string) string { + _, res := ToUtf8WithErr([]byte(content)) + return res +} + +// Replaces all prefixes 'old' in 's' with 'new'. +func ReplaceLeft(s, old, new string) string { + old_len, new_len, i, n := len(old), len(new), 0, 0 + for ; i < len(s) && strings.HasPrefix(s[i:], old); n += 1 { + i += old_len + } + + // simple optimization + if n == 0 { + return s + } + + // allocating space for the new string + newLen := n*new_len + len(s[i:]) + replacement := make([]byte, newLen, newLen) + + j := 0 + for ; j < n*new_len; j += new_len { + copy(replacement[j:j+new_len], new) + } + + copy(replacement[j:], s[i:]) + return string(replacement) +} + +// RenderCommitMessage renders commit message with XSS-safe and special links. +func RenderCommitMessage(msg, urlPrefix string) template.HTML { + cleanMsg := template.HTMLEscapeString(msg) + fullMessage := string(base.RenderIssueIndexPattern([]byte(cleanMsg), urlPrefix)) + msgLines := strings.Split(strings.TrimSpace(fullMessage), "\n") + for i := range msgLines { + msgLines[i] = ReplaceLeft(msgLines[i], " ", " ") + } + + fullMessage = strings.Join(msgLines, "
") + return template.HTML(fullMessage) +} + +var Funcs template.FuncMap = map[string]interface{}{ + "GoVer": func() string { + return strings.Title(runtime.Version()) + }, + "AppName": func() string { + return setting.AppName + }, + "AppSubUrl": func() string { + return setting.AppSubUrl + }, + "AppVer": func() string { + return setting.AppVer + }, + "AppDomain": func() string { + return setting.Domain + }, + "DisableGravatar": func() bool { + return setting.DisableGravatar + }, + "LoadTimes": func(startTime time.Time) string { + return fmt.Sprint(time.Since(startTime).Nanoseconds()/1e6) + "ms" + }, + "AvatarLink": base.AvatarLink, + "Safe": Safe, + "Str2html": Str2html, + "TimeSince": base.TimeSince, + "RawTimeSince": base.RawTimeSince, + "FileSize": base.FileSize, + "Subtract": base.Subtract, + "Add": func(a, b int) int { + return a + b + }, + "ActionIcon": ActionIcon, + "DateFmtLong": func(t time.Time) string { + return t.Format(time.RFC1123Z) + }, + "DateFmtShort": func(t time.Time) string { + return t.Format("Jan 02, 2006") + }, + "List": List, + "Mail2Domain": func(mail string) string { + if !strings.Contains(mail, "@") { + return "try.gogs.io" + } + + return strings.SplitN(mail, "@", 2)[1] + }, + "SubStr": func(str string, start, length int) string { + if len(str) == 0 { + return "" + } + end := start + length + if length == -1 { + end = len(str) + } + if len(str) < end { + return str + } + return str[start:end] + }, + "DiffTypeToStr": DiffTypeToStr, + "DiffLineTypeToStr": DiffLineTypeToStr, + "Sha1": Sha1, + "ShortSha": base.ShortSha, + "Md5": base.EncodeMd5, + "ActionContent2Commits": ActionContent2Commits, + "Oauth2Icon": Oauth2Icon, + "Oauth2Name": Oauth2Name, + "ToUtf8": ToUtf8, + "EscapePound": func(str string) string { + return strings.Replace(strings.Replace(str, "%", "%25", -1), "#", "%23", -1) + }, + "RenderCommitMessage": RenderCommitMessage, +} + +type Actioner interface { + GetOpType() int + GetActUserName() string + GetActEmail() string + GetRepoUserName() string + GetRepoName() string + GetRepoPath() string + GetRepoLink() string + GetBranch() string + GetContent() string + GetCreate() time.Time + GetIssueInfos() []string +} + +// ActionIcon accepts a int that represents action operation type +// and returns a icon class name. +func ActionIcon(opType int) string { + switch opType { + case 1, 8: // Create, transfer repository. + return "repo" + case 5, 9: // Commit repository. + return "git-commit" + case 6: // Create issue. + return "issue-opened" + case 10: // Comment issue. + return "comment" + default: + return "invalid type" + } +} + +func ActionContent2Commits(act Actioner) *models.PushCommits { + push := models.NewPushCommits() + if err := json.Unmarshal([]byte(act.GetContent()), push); err != nil { + return nil + } + return push +} + +func DiffTypeToStr(diffType int) string { + diffTypes := map[int]string{ + 1: "add", 2: "modify", 3: "del", 4: "rename", + } + return diffTypes[diffType] +} + +func DiffLineTypeToStr(diffType int) string { + switch diffType { + case 2: + return "add" + case 3: + return "del" + case 4: + return "tag" + } + return "same" +} + +func Oauth2Icon(t int) string { + switch t { + case 1: + return "fa-github-square" + case 2: + return "fa-google-plus-square" + case 3: + return "fa-twitter-square" + case 4: + return "fa-qq" + case 5: + return "fa-weibo" + } + return "" +} + +func Oauth2Name(t int) string { + switch t { + case 1: + return "GitHub" + case 2: + return "Google+" + case 3: + return "Twitter" + case 4: + return "腾讯 QQ" + case 5: + return "Weibo" + } + return "" +} diff --git a/routers/repo/view.go b/routers/repo/view.go index 6a3e0cb3..1d9f1f3d 100644 --- a/routers/repo/view.go +++ b/routers/repo/view.go @@ -16,6 +16,7 @@ import ( "github.com/gogits/gogs/modules/git" "github.com/gogits/gogs/modules/log" "github.com/gogits/gogs/modules/middleware" + "github.com/gogits/gogs/modules/template" ) const ( @@ -105,7 +106,7 @@ func Home(ctx *middleware.Context) { if readmeExist { ctx.Data["FileContent"] = string(base.RenderMarkdown(buf, path.Dir(treeLink))) } else { - if err, content := base.ToUtf8WithErr(buf); err != nil { + if err, content := template.ToUtf8WithErr(buf); err != nil { if err != nil { log.Error(4, "Convert content encoding: %s", err) } diff --git a/templates/.VERSION b/templates/.VERSION index e6ef9167..0c08e60d 100644 --- a/templates/.VERSION +++ b/templates/.VERSION @@ -1 +1 @@ -0.7.7.1113 Beta \ No newline at end of file +0.7.8.1113 Beta \ No newline at end of file diff --git a/templates/user/dashboard/dashboard.tmpl b/templates/user/dashboard/dashboard.tmpl index d8791241..eed5b407 100644 --- a/templates/user/dashboard/dashboard.tmpl +++ b/templates/user/dashboard/dashboard.tmpl @@ -26,7 +26,7 @@ {{range .Repos}}
  • - + {{.Name}} {{.NumStars}} @@ -46,7 +46,7 @@ {{range .CollaborativeRepos}}
  • - + {{.Owner.Name}} / {{.Name}} {{.NumStars}} @@ -72,7 +72,7 @@ {{range .ContextUser.Orgs}}
  • - + {{.Name}} {{.NumRepos}} @@ -94,7 +94,7 @@ {{range .Mirrors}}
  • - + {{.Name}} {{.Interval}}H diff --git a/templates/user/dashboard/feeds.tmpl b/templates/user/dashboard/feeds.tmpl index c814a283..70142f9a 100644 --- a/templates/user/dashboard/feeds.tmpl +++ b/templates/user/dashboard/feeds.tmpl @@ -39,7 +39,7 @@ {{ $repoLink := .GetRepoLink}} {{if $push.Commits}} {{range $push.Commits}} -
  • {{ShortSha .Sha1}} {{.Message}}
  • +
  • {{ShortSha .Sha1}} {{.Message}}
  • {{end}} {{end}} {{if $push.CompareUrl}}
  • {{$.i18n.Tr "action.compare_2_commits"}} »
  • {{end}} -- cgit v1.2.3 From 7b1c10ea7eadf83706ca7e27094104749636d26a Mon Sep 17 00:00:00 2001 From: Unknwon Date: Sat, 14 Nov 2015 04:34:01 -0500 Subject: new repo ui - copy link button: #1396, #1168, #1668, - synxtax highlight: #1712, #1549, #1315, #670 - z-index: #1942 --- README.md | 2 +- conf/locale/locale_en-US.ini | 2 +- gogs.go | 2 +- modules/bindata/bindata.go | 4 +- public/config.codekit | 11 +- public/css/gogs.css | 306 ++++++++++++++++++++++-------------- public/css/highlight-8.7/github.css | 98 ++++++++++++ public/fonts/octicons.eot | Bin 29160 -> 30172 bytes public/fonts/octicons.svg | 21 +-- public/fonts/octicons.ttf | Bin 28992 -> 30004 bytes public/fonts/octicons.woff | Bin 16060 -> 16740 bytes public/js/gogs.js | 210 +++++++++++++++++++------ public/less/_base.less | 9 ++ public/less/_markdown.less | 174 ++++---------------- public/less/_octicons.less | 11 +- public/less/_repository.less | 175 +++++++++++++++++++++ routers/repo/view.go | 1 + templates/.VERSION | 2 +- templates/base/footer.tmpl | 2 +- templates/repo/home.tmpl | 186 +++++++++++++--------- templates/repo/sidebar.tmpl | 47 +++--- templates/repo/sidebar_mini.tmpl | 12 -- templates/repo/view_file.tmpl | 86 +++++----- templates/repo/view_list.tmpl | 121 +++++++------- 24 files changed, 931 insertions(+), 551 deletions(-) create mode 100644 public/css/highlight-8.7/github.css mode change 100755 => 100644 public/fonts/octicons.eot mode change 100755 => 100644 public/fonts/octicons.svg mode change 100755 => 100644 public/fonts/octicons.ttf mode change 100755 => 100644 public/fonts/octicons.woff delete mode 100644 templates/repo/sidebar_mini.tmpl (limited to 'gogs.go') diff --git a/README.md b/README.md index a01b83cc..03cb070e 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.8 Beta +##### Current version: 0.7.9 Beta
    diff --git a/conf/locale/locale_en-US.ini b/conf/locale/locale_en-US.ini index 96bf2401..93180daa 100644 --- a/conf/locale/locale_en-US.ini +++ b/conf/locale/locale_en-US.ini @@ -387,7 +387,7 @@ repo_is_empty = This repository is empty, please come back later! branch = Branch tree = Tree -branch_and_tags = Branches & Tags +filter_branch_and_tag = Filter branch or tag branches = Branches tags = Tags issues = Issues diff --git a/gogs.go b/gogs.go index 65571c06..37259d36 100644 --- a/gogs.go +++ b/gogs.go @@ -17,7 +17,7 @@ import ( "github.com/gogits/gogs/modules/setting" ) -const APP_VER = "0.7.8.1113 Beta" +const APP_VER = "0.7.9.1114 Beta" func init() { runtime.GOMAXPROCS(runtime.NumCPU()) diff --git a/modules/bindata/bindata.go b/modules/bindata/bindata.go index 23f6e64a..d5e9ded5 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\x5e\xdb\x11\x72\x39\xba\x7b\x6f\xd1\xd1\x76\xaf\x2c\xb5\x2f\x73\x2c\x4b\x63\xa9\x67\x76\xd6\xe1\x60\xb3\x8a\xac\x2a\x8e\xab\xc8\x6a\x92\x65\x59\x73\xe2\x44\xec\x03\xec\x03\xec\xbe\xde\x79\x92\x05\x3e\x00\x79\x21\x59\x92\xdd\x33\x71\xfc\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\x91\xaf\xe4\x53\xd9\x76\x55\xc3\xb5\xff\x59\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\xbf\xd2\xcf\xf4\x42\x7e\x4a\x5e\x50\x08\x99\xae\x24\x8f\xa4\xcb\x96\x65\x59\xc8\x58\xba\xf4\x05\x7d\x27\xbb\xfd\x66\x43\x58\xfb\x6d\x5f\x76\x3d\x17\xba\xa0\xdf\x34\x7e\xf9\x9d\x54\x5d\x47\x1f\x94\xfc\x1a\x1f\x09\x4d\x5d\xbd\xc0\x60\x4e\xf0\x91\x24\xef\xbb\x32\x6f\x17\xeb\x0f\x89\xfc\x45\x5f\xf9\x83\x69\xef\xd0\xa4\x32\x21\x29\x11\x49\x0b\xd6\x40\xb2\x68\x0a\xfe\x71\x42\x7f\xa8\xea\xaa\xee\xfa\x7c\xb3\xf9\x90\xe8\x07\x83\xc9\x97\x4c\x40\x5f\xf5\xc0\x82\x26\xa6\x97\x7d\xb9\xeb\x78\x06\xd3\x17\x55\xdb\xf5\x8f\xfb\x8a\x88\xf5\xdd\xbe\x4e\x8a\x66\xf1\x91\x96\x01\x2f\x69\xb4\xfc\x7a\x99\x12\xb2\x1e\xd0\x42\x68\xf7\x75\x4d\xe8\x49\x5f\x36\x84\x32\x6a\xa6\xa2\xf6\x4f\x01\x7d\x94\xee\x36\x65\xde\x11\x48\x99\x17\xe9\x8f\x79\xda\xe7\xed\xaa\xec\x9f\xde\xcb\xe6\xb4\xfc\x3e\xde\x4b\xd7\x6d\xb9\x7c\x7a\xef\x7e\x77\xef\xd9\xcb\x3d\x15\xdb\x54\x75\xd9\xfd\xf8\x24\x7f\x96\x2e\x72\xca\x21\x34\xde\xa4\xf3\x72\xc9\xab\x8d\xda\x4a\x89\xca\xeb\x15\xaf\xb4\x9b\x7e\xcd\x0d\x12\x25\xd0\x47\x97\xf2\x52\xff\x26\xe1\x09\x20\x56\x90\x15\x73\x63\x6b\xe8\x10\x92\x5b\x9a\x80\xb3\x9b\xcb\x3f\xbd\x39\x4a\x2f\x88\xb7\xad\xda\x12\xdf\xf4\x1f\x95\xf8\x3e\xa5\xd1\x5e\x55\xa7\xcf\x67\x09\x95\x35\x84\x9c\xe6\x7d\x3e\xe7\xbe\xbb\xd9\xe7\x4c\x59\x84\x2e\x0f\x4b\x91\xb9\x25\x38\x63\xd7\x47\xd3\x32\xb5\x90\xa9\x0e\x5d\xfe\xae\x8e\xb7\xcc\x03\x28\xdd\x61\xf6\x42\x70\x46\x55\xa5\xaf\xdf\xbe\x3d\x3f\x7d\x9e\x96\xf5\x8a\x30\x93\x5e\x57\xfd\x3a\xdd\xf7\xcb\xff\x9e\xad\xca\xba\x6c\xf3\x4d\xb6\xa8\x18\x29\x2d\x11\x6c\x4a\x58\x92\x21\xce\x92\xae\xdb\x10\x8b\x02\x15\x5c\x5e\xbe\x49\xcf\x98\x12\x76\x79\xbf\x46\x47\xfa\x75\xd2\xfd\xb6\x61\x44\xb9\x06\xaf\xd6\x65\x8a\xc5\x00\xa0\x66\x39\xc4\x4b\x5a\x68\x5f\x67\x49\xd9\xb6\x19\x71\xd0\xfe\x86\xd1\xac\x75\x1e\x82\x96\xea\x88\xda\xeb\xa6\xa7\x69\x4c\x51\x4e\xaa\xa8\xea\x4f\xf9\xa6\x2a\x08\xd9\x1e\x21\x71\x59\x24\x16\x0d\xcd\x1b\x97\x26\xca\x6c\xae\x31\xd4\x7c\x41\x1b\x40\x97\xde\x9b\xdd\x03\xc7\xbd\xf7\xf8\xde\x2c\xa9\x9b\x4c\xb8\x04\xf3\xe6\xa2\xea\xf2\x39\xf1\x69\xd9\x37\x5a\xe3\x7a\x7f\x65\xfa\x91\xae\x28\x44\x1a\x41\x30\x6e\x79\x2f\xc2\x16\xc0\xc4\x95\x13\xc3\x06\xb3\x51\x36\x13\x8e\xdd\x78\x92\x9b\x5f\x61\x4b\x2e\x61\x34\xe6\xc4\x26\xcc\xa8\xeb\x78\xb7\xdb\x54\x0b\x69\xfa\xa5\xe4\x79\x42\xe3\x9d\x59\x91\x12\xc2\x81\x50\x2c\x2f\x20\x17\xea\x35\xb3\xad\x34\xe2\xf3\x28\xbf\x2e\x69\xe5\xac\xf7\x2b\xd9\x9d\x36\xcd\xbe\xf8\x06\x0c\xc5\x66\xce\xf3\x93\xf4\x5d\x43\x1d\x06\x75\x38\x00\xdf\xc4\x31\x31\x06\x16\x06\xda\x72\xdb\xf4\x8c\x38\x2d\x56\xd1\xf4\x5c\x57\x94\x49\x23\xed\xf2\x4f\xc4\x16\xfb\x46\x96\x64\x41\x4b\x6e\xc1\x15\x13\x07\xdb\xd3\x8e\x2e\xcb\x82\xf8\x88\x2c\x0d\x4b\x8b\x69\x10\x50\xdb\x3d\xad\xa6\x35\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\xcb\x25\xf5\xaa\xa3\x55\xf1\x2a\x5d\x6c\x1a\x5a\x52\xbf\xbc\x7b\xd3\xf1\x82\x59\x67\xbb\xa6\x85\x24\x42\x59\x17\xf4\xe9\xd2\x02\x44\x33\x44\xbd\xdf\xce\xe9\xd7\xf5\xba\x22\x46\x0d\xb4\x73\x09\x96\x92\x28\x95\x9a\xd8\x77\x34\x85\x47\x29\x2d\x61\x1a\x01\xa1\x0c\x04\xc0\x63\x30\xaa\x63\xf0\x25\xd1\xd8\xbe\xa5\xe5\xb4\xee\xfb\x9d\xb5\xfc\xea\xea\xea\x42\x9a\x76\xa9\xb7\xb5\x9d\x07\x94\x81\x39\xd8\xb0\x6c\x54\xa7\x4d\x3d\x03\x91\xec\xdb\xcd\x80\x7e\x68\xac\x96\x73\x00\x2f\xdc\x85\x27\xfc\xdf\xa5\x47\x0f\xf0\xdc\x91\xd4\x77\x0d\x6a\x22\x1c\x97\x90\x53\x88\xa8\x9b\x1d\xd7\x1b\x50\xf5\xb9\x26\x78\x52\x86\x6c\xe3\xf2\x45\xc2\xa1\x5c\xc8\x94\xc1\x2e\xbd\xa5\x01\x2b\x1b\xbd\x3c\x23\x34\x80\x97\x22\x75\xd9\x36\x5b\x4a\x7d\x41\x7f\x7c\x82\xef\xfe\x19\xd7\x07\x98\xbc\x28\x88\xcb\x77\x47\xe9\xbb\x17\x27\xe9\x7f\xf9\xfe\xbb\xef\x66\xe9\xeb\x9e\x57\x22\x13\xe7\xdf\x98\xa8\xe8\x53\x44\x2d\x07\x4a\x1c\xab\x27\xba\xbb\xc7\x2b\xeb\x5e\xfa\x23\x72\xff\x47\xf9\x39\x27\x11\xb1\x9c\x2d\x9a\xed\x33\xe6\xaa\xdb\x9c\xd6\x3e\xe7\x10\xb9\x2a\x1d\x5f\x96\x75\x41\x1f\x2a\xb0\x69\x5e\xc0\x0e\x34\x3f\x10\xdf\x44\x70\xcd\x16\x4d\xbd\xac\x5a\x1e\xd0\xcf\x35\xa8\xc1\x44\x5a\xda\xae\x91\x63\x52\x11\x21\x8d\x38\x48\xb5\xbc\xf1\xa0\x18\xea\x5b\x4e\xd4\x09\x4d\x84\xea\x32\x15\xd1\x1d\x96\x2f\x85\x18\x79\xde\xce\x69\x78\xad\xe1\xbb\xf3\x08\x6f\x96\x4b\xde\x6b\x6d\x97\xd0\x16\xce\x25\x55\x36\x8c\x10\x84\x88\x71\x07\xa1\xfc\x54\x89\xf8\xe4\xf4\x6d\x5a\x7e\x22\x6a\x63\xae\xd7\x36\xc5\x7e\x01\x0a\x63\xd8\x23\x66\xd6\xc4\x22\x3a\x5a\x1b\x0b\xd9\x57\x02\x26\xc1\x5d\x63\x4e\xb4\x20\x20\xe2\x0d\xc6\xac\x49\x90\xfc\x44\x9c\xbf\x0d\x9a\x78\x69\x49\xda\xfb\x11\xec\xa8\x53\xae\x04\x8f\x7c\x41\x33\x4e\x54\x21\xbd\xe8\xa4\x53\x92\x4d\xe4\x4e\x74\xbc\xa7\x13\x4a\x5e\x50\x5f\xe6\x37\xe0\x3b\x1d\x13\x43\x51\x2e\xf3\xfd\xa6\xf7\xfd\x1a\x6c\x22\xd6\xd2\x25\x1f\x92\xc2\xbc\xc9\x02\xa3\x0e\x82\x7a\xba\x61\x59\x22\xc3\x9a\xe4\x1c\xd9\x6c\x98\x5e\xe5\x14\x62\xfb\x0e\xb1\xa7\x12\xd3\x93\x79\x91\x5f\xe7\xcb\x24\xff\x38\xdf\x35\xfb\x4e\x24\x9f\x14\x5b\x2d\xd7\x68\x15\xb0\xa8\x30\xdd\x97\x59\xa2\xe2\x52\xa6\xc7\xb5\xec\x53\x85\xc3\x90\x23\x57\xa9\x52\x8f\x70\xcc\xd7\xfe\xcc\x00\x7c\xca\xea\x26\xcb\xba\xde\x9c\xf3\x20\x3b\x77\x18\x12\x9c\xf3\x70\xd1\x02\x8b\x70\x34\x4b\x9f\x2a\xb0\x79\x25\x18\xe0\x85\xa8\x06\x4d\x53\x53\x5d\x59\xa2\x06\x2a\xff\x84\xea\x44\x99\x99\x1e\x10\x54\x66\x37\xd1\x8f\xb7\xfb\xa2\x81\xec\x80\xbd\x84\x4a\x1b\x5a\x07\xfb\x7a\xda\x56\xab\x35\xf1\xd6\xe6\xfa\x48\x90\x72\xbd\x6e\x4a\x5e\x3f\xaf\x4f\x9f\x7e\x2b\xfd\x58\xf1\xce\xe2\x0a\xf1\x9e\x94\xef\x89\xb8\x08\x63\x4a\xc6\xd2\x05\xb7\xb7\x03\x72\x74\x14\x11\xa0\xe1\xe1\x6f\x24\x4a\x38\xa6\xa1\xbc\x22\xcc\x53\x26\xe1\x61\xa4\xb4\x1d\x20\xa5\x61\xe5\x4a\x2a\xef\x67\xab\x06\x07\x19\x93\xef\x79\xb7\xa4\xf3\x70\xd7\x67\xab\xaa\xcf\x96\xcc\xba\xb8\xe6\x17\x5c\x03\x6f\xde\x94\x93\x3e\xa0\xac\x07\x29\xf1\x3f\x3a\x9d\x15\x3f\xa4\xf7\x3f\xa9\xc4\xf8\x3d\xf3\xa4\x8c\x56\x51\xb5\xc1\x94\xe8\xf1\xa8\x2d\x45\x60\xb5\x33\xb8\x93\xda\xba\xfd\x0e\x7b\x9b\x0a\x88\xee\x34\x50\x34\xd7\x35\xaf\x3e\x30\x5f\xe2\x33\xd5\xa2\xa2\x3d\x63\x5e\xd5\x39\x6d\xf0\x56\x0b\x98\xfa\x7d\xa2\x89\xb7\xe7\x57\x00\x5c\x35\xf3\x7d\xb5\x29\x0c\x60\x96\x98\x10\x49\x22\xa4\xce\x7e\x28\x56\x5b\x52\x25\x7d\x59\x34\x2d\x4b\x24\x18\x8d\x15\x3c\x20\x0a\xb5\x2c\x62\x20\xb9\xe2\xf3\x0c\x60\x51\xce\x49\x2d\x8c\x06\x9a\x7e\x1c\xd5\x58\xa6\x01\xdd\x54\x5d\xfd\xa0\x47\x4f\x17\x7b\x6a\x8b\xa6\x9e\x93\xa9\x60\x97\x3e\x7e\x46\xff\x27\x2c\x21\xc9\x0e\xb0\x1a\x23\x9e\x33\x53\xc9\xdc\xcb\x5a\x8c\xba\x1a\x11\xb9\x9b\x6a\x23\xe1\x60\xac\x61\x7f\x8d\x04\xba\xbd\x50\x2d\xab\x4b\x36\x34\xad\xe5\x37\xf4\xc1\x27\xb7\xd5\x06\x93\x90\xf7\x7a\xbc\x6a\x08\x6f\x4c\x20\x47\xb2\x68\x96\x34\x34\xe6\xa5\x7d\xfe\xb1\xc4\x89\x8c\xf6\xfc\xf7\xac\x07\xfa\x90\xec\x45\x06\x6d\x36\x85\x3b\xef\x80\xb2\x9b\x76\xa8\xc6\xf0\x40\x8e\x6a\x3b\x12\xb6\x17\xeb\xcc\x69\x91\x18\x29\x7d\xf9\x19\xbb\x3f\xb2\xbc\x52\x89\x49\x9e\xb3\x92\xed\x0d\xa6\x8b\x07\x71\x76\xe3\x67\x8b\x24\x50\x5a\x28\x74\x98\x9d\x37\x8c\xb5\x4f\xa5\x83\x3a\x09\x53\xe3\x02\x54\x17\xc9\xca\x5a\x55\xac\x6d\xa0\x2c\x51\x89\x68\xae\xa8\x45\xba\x04\xac\x4c\x55\x60\xe0\x78\x34\x9f\x7a\xb2\x9f\xd1\xc4\x40\x6d\x60\x2d\x13\x5f\xbc\x91\x75\x11\xb4\x99\xbc\x57\xf5\xd8\x87\xc4\xe0\xde\xc5\xf9\xc4\x53\xd6\x1f\x02\x15\x54\x66\xb3\x6b\xaa\x28\x68\x4f\x94\xad\x78\x91\x62\x5d\xee\x58\xfa\xd8\x76\x20\x8b\x0d\x9f\xb4\x6f\x54\x7e\x76\x04\xf2\x93\x30\x6c\xa2\x18\x62\x73\xdf\x24\x5d\xc3\x0b\x2e\xfb\xca\x2a\x9e\x57\x44\x0a\x28\x1f\x6f\x76\xa2\x1b\x23\x31\x97\xa7\x8f\x56\xd9\xcd\x51\x7c\xb2\x5a\xe7\x1d\x31\x71\x92\x15\xb4\x58\x31\xb3\x13\x2e\x4f\x3b\x9d\xe7\xb0\x66\xa0\xcf\x03\x95\x4b\xc9\xa6\x1d\xee\xc2\xdc\x43\xe1\x73\xda\x8a\x93\x9d\x20\x19\x85\x02\xd4\x44\x9b\x84\xb0\x6d\xc9\xe2\x73\xb6\x15\x35\x9a\xfc\x4a\xcf\xca\x84\xb6\xc3\x15\x2d\x68\x23\xd8\xa7\xac\xfd\x58\xe1\x94\xa1\xf4\xca\x00\x65\x1f\x32\x62\x85\xb0\x94\x9f\x4c\x6f\x49\x9c\xe1\x1a\xaa\x21\x5a\xdb\x23\xf4\xd3\x96\x45\xd9\x33\x63\xec\x22\x23\x40\xd4\xeb\x88\x5b\x78\x24\x1e\xa7\xac\x80\x0c\xa1\x54\xe4\xf6\xc3\xe2\x02\xcc\x35\x7e\x9c\x3f\xbb\xdf\xfd\xf8\x64\xfe\xcc\xf1\xd6\xc5\xba\x5c\x7c\x14\xfa\xab\xea\x79\xf3\x19\x07\x5b\x28\x4a\xe8\x4c\xcd\x6b\xec\x7e\x91\xd2\x41\xb7\xc5\xb9\x8a\x78\x01\x15\x23\xc4\x73\x6e\x34\x69\xd4\x19\x66\x19\xb4\xb5\x2d\xb0\xaa\x40\xe0\x9e\x20\x8f\x39\x95\x49\x12\x1b\x80\xa7\x49\x0c\x64\x53\x6d\xab\x7e\x44\x13\xcc\x61\x72\xa5\x2d\xd5\x95\x19\x92\x50\x17\x86\x89\x51\x12\x9f\xa6\x6a\x68\x5f\x35\x3a\xb9\xce\xe9\x20\xf5\x7d\x4a\xb4\xb1\xa7\xfd\x89\x3b\x4b\xe3\x21\x46\x9d\xf3\xc6\x4c\x87\xa8\xbc\xcb\xf6\xb5\xe2\xab\x2c\x8c\x4a\x5e\x55\xd8\x3e\xb8\x5d\xa3\xe5\x00\xca\x50\xaa\x67\x81\xf4\xa1\x43\xe5\xa3\x99\xea\xb6\x50\x8c\x79\x3a\x77\xa8\x62\xb9\x35\x9f\x9c\x15\xe2\x79\x75\x29\x67\x5f\x60\x80\xe1\x78\x06\xe9\x00\xe5\xa7\x85\x4e\x61\x1f\x29\x05\x98\x9e\xef\xfb\xbe\xe1\x73\xc9\x86\xc9\x41\xca\x58\xaf\x4f\x00\x88\xa3\x96\xaf\x0f\xd3\x19\xe2\x49\x58\x6c\x69\xe7\x84\x8c\xe8\x90\xd7\xb4\x68\xb8\xf9\x44\x37\x18\x9d\x6e\x82\x0e\xac\x10\x5d\x52\x5e\xdf\x78\xf5\x06\x7a\xc1\x0d\xf6\xd3\x7d\x79\xd8\x96\x8f\x7c\x6f\xdc\x62\x40\x09\xeb\x91\x14\x0f\x16\xca\x3b\xe4\x8a\x8a\xd5\x96\x93\xed\x69\xaa\xa8\xf4\xf4\xd1\xc6\xe8\x45\x3e\x93\x3c\x71\x4e\x12\x2b\x0b\x20\x9a\x46\x81\xd2\xb3\x41\x5b\xfe\x48\x38\xc6\x60\x1f\x77\xd9\x6f\x4d\x7d\xd3\x64\xdd\x5a\x8e\xdf\xd6\x3d\x3a\xba\xd7\xab\x48\x6f\x85\x7b\x11\x10\xdd\x7f\xe5\x0d\x90\x07\xfa\x21\xd1\xd9\x28\x83\x45\xa1\xd4\x6a\x39\x36\x6b\xb2\x36\x1c\xbc\x09\x6b\x7f\x2e\x5b\x3e\xde\x01\x28\x9e\xad\x43\x58\x8c\x07\xe1\x98\xa2\xdf\xdd\x1d\x43\xd4\xa4\x23\xdb\xef\xb9\xd7\x4d\x91\x53\xb7\x6f\xa0\x89\xfe\x2b\x6d\x38\x35\x74\xfc\x4d\x42\x19\x72\xcc\x3c\xc3\x07\x81\xf2\x99\xf7\x43\xc2\x5b\xfa\xdb\x81\xb0\xca\x3b\x96\xa6\x05\xf2\x12\xb2\x7e\x8e\x2e\x31\xdc\x50\x2e\x26\x04\xdb\x77\xa5\xbf\xcb\xc0\x97\x1b\xd3\xe5\xe5\xab\x2b\x3b\xc4\x5e\xbe\x4a\x3f\x96\x5a\xf9\xab\xbe\xdf\x75\xbf\x40\xa1\x21\xda\x09\x56\x65\x5c\xe4\x37\x2c\x44\x4a\xb2\xfe\x40\xc6\x55\x99\x6f\xb5\x97\xfc\x29\x55\x1c\xd3\xee\xaa\x89\xfc\x49\x9b\x6e\xa0\x28\x4b\x20\x4e\xfd\x3c\x25\x46\xbb\x43\x4d\xa9\x17\x25\xbf\x8e\xb4\x7b\xbf\x26\xf9\x66\x47\xe7\x2e\x96\x67\x02\x30\x28\xb2\xe6\x7a\xfc\x4a\x01\x02\x0a\xde\x6f\x69\xe6\x17\x38\x6e\x52\x81\x87\x8f\xb3\x47\x81\x62\x33\xae\xac\xa0\xa5\xfd\xbb\x2a\xe4\x6f\x16\x7a\xc3\x7a\xbb\xea\xef\x36\x8a\xa8\x3a\x4e\x27\x4e\x49\x10\x10\x31\x3d\x94\x03\xc2\x3e\xcd\xe2\x66\xcf\x7a\x2d\x4a\x20\x91\x36\xaa\x7a\x9b\x7f\xbe\xab\xe0\xb6\x99\x28\x27\x0c\xcc\x17\x32\x36\xa5\x43\x8c\x97\x05\xc1\xb3\xe6\xea\x20\x34\x4d\x3d\x81\x54\xf5\x62\xb3\x2f\x0e\xf6\xa4\xdb\xcf\x69\x8f\x63\x59\xf9\xc1\xfd\xee\x01\x57\x59\x7f\xa4\x4d\xb9\x76\xf0\xbf\xc8\xef\x14\xbf\x7f\xb0\x6b\x36\x3a\xcd\xea\x01\x22\x75\x17\x6e\x24\x5b\x14\xbc\x3b\xe0\x20\x30\xf3\x4c\x25\x3c\x1c\x38\xf2\x87\x4a\x42\x4f\x6f\x6e\x61\xb3\x1e\x02\xe7\x24\x22\xc1\x99\xbf\x1b\xcc\x78\x8b\xcf\x58\xe8\xae\x43\xd1\xda\x6d\xfe\xb6\x8b\x02\x42\x6e\x88\xb2\x71\xb9\xc1\x02\x3d\x58\x9c\x24\x99\x89\xd2\xe7\x63\x5d\xf2\x81\xf2\x3d\x2d\xb1\x89\x0a\xdc\xca\x3b\x58\x50\x26\x1f\x85\x68\xe4\xc5\x88\x77\x8c\x0b\x32\x18\x1d\xfb\x36\x9b\x72\xc5\x4a\x47\x6b\x38\x6a\x4d\x27\x9a\xb6\x3c\x01\x0b\x09\xce\x63\xd8\x4d\x56\x38\xaf\xe1\x21\xc6\xcd\x51\x7c\x7c\x64\x5d\x0c\x55\xd5\xe2\x7e\x37\x38\x44\x6a\x37\x74\x07\xd8\xf2\x79\xa9\xdb\xf3\x06\xc4\x67\x2b\x11\xae\xe2\xd9\x60\xf1\x02\x55\x95\x68\xe2\x70\xf5\x44\x8b\x7c\xe0\xbc\xab\x7e\x80\x7d\x65\xd5\xa1\xd2\x61\x5c\xb1\x56\xee\x80\x0e\x55\xeb\x0e\xc4\xe5\xe7\x0a\x0a\xdc\x97\x15\x2b\x06\x71\x24\x76\x9a\x00\xe4\xcd\x92\x0d\x31\x0f\x3e\x7a\xc9\xa8\x44\x0c\x6f\x3e\xf1\x6a\xe4\xf6\x38\x57\xca\x89\x42\x57\x07\xc5\xf3\xac\x87\x6b\x5c\x03\x95\xc5\x11\x09\x32\x5c\x82\xfa\x89\xc5\x9d\x6f\xae\xf3\x9b\x0e\x9a\x22\xe3\x50\xac\xbc\x96\xe2\xcc\x7e\x48\xcc\x59\xa1\x57\xe1\x15\x09\xad\x38\xc3\x04\xeb\xfa\x79\xb3\x71\xc2\xc8\x35\x8e\xc7\xe0\x2e\xaa\x7b\xfa\x14\x6c\xd7\xba\x37\xf1\xd1\x9e\x0f\xc2\x7c\x44\x91\xec\xa0\x22\xdc\x3d\xea\x4e\x31\x51\xf6\x88\x85\x40\x6a\x86\x45\x32\xe2\xdf\x82\x6b\x92\x72\x09\xb3\xe8\x52\xa0\x2b\xd9\x53\xfd\x8f\x45\xac\xaf\x08\x87\x7c\x4c\xf4\xea\x03\xde\xcb\x68\x56\x4c\xc5\x2f\xe9\x38\xfc\x27\x5d\x4f\x4b\x80\x31\x6d\x17\xfa\x7f\x0d\xe4\x91\x14\xb9\x58\x62\x40\x53\xb7\xae\x76\x69\x03\xb5\x71\x88\x42\x4f\xb6\x81\x20\xcd\x97\x19\x25\x8e\x0d\xac\x3f\x6f\xf3\xba\x5b\x96\x50\xa4\x6f\xd3\x25\xdf\x19\xcf\xb4\x69\x96\xcb\xe5\x62\xff\x40\xcb\x72\x04\x43\xd3\xe1\xee\x82\xb9\x0b\x26\x2a\x6e\x5a\x6e\x56\xa0\xac\x45\x1f\x80\x55\x5f\x53\x67\x7d\x60\x32\x1b\xa1\x00\xb2\x71\x74\x4f\x66\xbd\xf9\x54\x86\x88\x58\xfe\xde\x91\x07\x58\xd7\xbb\x02\xb9\x60\x89\xa7\x49\x1a\x85\xb6\x06\xd7\xbc\xf3\x9b\x78\xf4\x5c\x34\xb8\x3b\xa7\x35\x52\x6a\x2b\xbc\x30\x78\xad\x0c\x2a\x84\x96\xc6\x9f\x88\x12\xb9\x67\xcf\xe6\xd4\xc5\xc5\x3a\x5a\x9d\x57\xc8\x49\x25\x67\xb4\x40\x93\xf7\xdc\xf4\x87\x44\x6e\xda\x33\xa7\x94\x3f\x91\x9b\x77\x91\x68\x55\xc9\xde\xa7\xa6\x89\xe7\xab\x12\x2b\x22\x7a\xf7\x5b\x4b\xf2\x36\x6c\x4a\xd1\xbf\x35\x24\x73\x40\xb7\xfe\x47\xfa\x62\x19\xbf\x4e\xa2\xeb\xc5\x81\x9a\x04\x62\x74\xd5\xf3\x0a\xbb\xa0\x85\x41\x62\xcf\xb1\xa6\xd0\x29\x1d\xdc\x01\x9a\x9b\x17\xf6\x4d\xf3\x91\x33\xd3\xe3\xa5\x2d\x5f\x0a\x27\x6a\xb4\x17\xf6\x9d\xf0\x21\x7f\x3b\xc3\xe6\xc0\xe2\x37\xae\x29\x82\x2d\x81\xa5\x05\x9e\x30\xcb\x9b\x05\xf0\xbb\xbc\x27\xb6\x58\xcb\x41\x4c\x38\x54\x58\x54\xb3\x5d\x15\xee\x3e\x9b\x6b\x61\xdb\x0f\x41\xc5\x87\xc4\x9b\xa4\x98\x35\xca\x94\x5a\x58\x59\x4c\xa7\x32\xf2\xbf\xd0\xa7\x2a\x74\xc0\xbe\xf0\xa1\x07\x72\xdc\x24\xdb\xf5\x1f\xcc\x63\x82\x9f\x89\xaa\xc0\x62\xfd\x97\x92\xf7\xd3\xf4\x54\x3e\xec\x68\xbf\xaf\x30\xa6\xaa\x48\x92\x1d\xf0\x1e\x18\xd0\xe8\x44\xb8\x4e\xab\xa1\x94\xd7\xc4\xb7\xc3\x9d\x9d\x6d\x36\xa4\x10\x13\xae\x5d\x0e\x41\x0a\xe0\xbb\x89\xe0\x58\xca\xca\x65\x9c\x57\xeb\xe0\xe2\x8b\xaf\x73\xf8\x94\x4d\x60\xd7\xe5\x3c\x65\x75\x2f\x11\x0e\x9d\xfe\x74\xa0\xdb\x9c\x0e\x8e\x9f\xaa\xdc\x29\x96\x68\xb6\xd8\x44\x47\x77\xd1\x17\x6c\x9e\x83\xcb\xf4\xb1\x1d\x19\xdf\x4c\xe9\x65\xcf\x1b\xfd\x4c\xf6\x3b\xbe\x3d\x09\x06\xfc\x0b\x12\xdc\x80\xe3\xfc\xe0\x3c\x86\xa1\x5b\x31\x27\xcd\x08\x78\x61\x87\x34\x58\xb9\xcc\x6c\xf9\x4c\xd8\x87\xe9\x12\x2a\x86\x20\x5e\xc3\x02\x16\xa3\xc6\x31\x40\xa6\xdc\xe7\x62\xf8\xb4\x33\xa6\xeb\xe6\x3a\xdd\x54\xf5\xc7\x4e\xb1\xc9\x7c\x2c\x3c\x9c\x42\x25\x45\x44\xb8\x17\xbb\x21\xf9\x1c\x9b\x29\xd9\x35\xd3\x60\x85\xdb\x65\x94\x5c\xb8\x1d\x23\x79\x12\xd6\x1f\xd1\xed\x42\x6c\x59\xb2\x98\x0c\xa6\x66\x97\x77\x34\xca\xa6\xe9\x54\x01\xea\x99\x08\xa7\x41\xa9\xa2\x50\x8a\x73\x07\xa1\x53\x72\x6c\x57\x86\x58\x53\x89\x5d\xf2\x59\x07\xb0\x42\xb3\x6a\x2b\x66\x7f\xbf\xd8\x15\x20\xe6\xc7\x9d\x26\x90\x0d\xa3\x92\xb8\xf7\xe1\xbd\xc7\xdb\xc6\x2e\x18\x8d\x1b\x5a\xe6\x91\x6d\xfa\x82\x01\x6c\xd9\x51\x67\x87\xf4\xa1\x15\x98\x0a\xff\x0e\x32\x31\x22\x08\x2f\x85\x64\xe2\x1d\x83\x68\x36\x91\x68\x77\xa2\x97\x11\x2e\x9f\x31\x1b\xe4\xbf\xc5\xf5\x9d\x53\x2a\xf0\x81\x3c\x1b\x80\xe8\x81\x3d\x82\x9c\x94\xa0\xad\xad\x83\xd2\xf3\xa0\xf7\xa3\xb5\x62\xe5\xae\x09\x0b\xe1\xc0\x95\xba\x8b\x99\xd9\xf1\xb0\x26\x55\xee\x02\x61\x70\x21\x46\x27\x35\x2e\x12\xa5\x0a\x42\x15\x0e\x18\x9d\x3f\x57\x1c\x0b\xf7\xe1\x0b\x00\xb1\x3a\x74\x00\x6a\x78\x18\x9f\x37\x4b\xb3\x5e\x08\x19\xd9\xae\x25\xf2\xa0\x8d\x76\xa0\x5f\x1b\xb1\xb0\x88\x5d\x81\x5b\x35\xb8\x8a\xf7\x5c\x8a\x4e\x8c\x5a\x17\xf3\x7b\x7c\x59\x8a\xd3\x11\x11\x1d\xb3\xa8\xab\xc9\xca\x9c\x5d\xae\xb0\x68\xd7\x49\xfa\x21\x8c\x4b\x87\x7b\xaa\x29\x03\x00\x1b\x8e\x32\xf8\x7e\x42\x5b\x88\xd1\xa8\xd8\x61\xfc\xb7\xaa\xc5\x14\xc2\x5d\xcd\x45\x0c\x24\x3d\x05\x47\xa1\x79\x13\xbd\xb4\xf1\x93\x9f\x86\x8d\xfb\x09\xff\x79\xa0\xd2\x96\xc1\xc5\xf4\xfe\x4d\x42\x5d\x02\x35\xfa\x2b\xce\x02\xd3\x3c\xd0\x98\x31\x58\x08\xa2\xea\x48\x97\x9c\x45\x3a\x77\x68\xcf\xbf\x4a\xcf\xce\x7b\xf7\x3f\x41\xc5\x1e\xb5\xe5\x55\xec\xae\x97\x83\xe5\xc0\xdd\x1b\xec\x9c\xa3\x85\x41\x19\x90\x23\x94\xa4\x03\xe9\x40\x89\xda\x09\x09\xdc\x8c\x9c\x4d\x18\x43\x94\x04\x51\x42\xa9\x01\x5b\x08\x0b\xaa\x30\x23\x82\x0d\xa0\x1c\x54\xba\x91\xd2\x38\x9e\xf8\x63\x9c\xc4\x08\x2b\x02\x0b\x3b\x3d\xda\x98\x45\x8a\xd5\x93\xdd\x96\x11\x21\x97\xe8\xce\xa4\x6b\x74\x43\x76\xa4\xc7\x9f\x75\xb5\x5a\xd3\xb8\xaa\x2d\x5f\x1d\x83\x9c\xec\x7e\xd2\x9f\x4e\xf9\x17\x31\x94\x66\x55\xb3\xee\x8a\x5b\x10\x1b\x2e\xb7\xc1\xfc\xd8\xf5\x6d\x53\xaf\x9e\x9d\x36\x7c\x6c\x64\x8d\x0e\x6f\x82\x3f\xfd\xf8\x44\xd3\x89\x69\xf2\x1c\xb2\xc1\xdf\xcb\xaa\x7f\xb5\x9f\x3f\xe8\xd2\x15\x5b\xa0\xe2\x52\x25\x0f\xec\x52\xd5\x6a\x40\x0c\xec\xae\x6b\x87\x16\x58\xa9\xd2\x42\xef\x9a\x0d\xad\x92\xb8\x48\xb3\xdd\xca\xfc\xd2\x06\xb0\x15\x48\xf4\x1f\x86\x06\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\x73\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\xb9\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\x58\x28\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\xd6\xad\xfe\xd4\xf3\xb6\xd1\xfb\xb1\xd4\x12\x31\x27\x74\xcc\xe9\xcb\x68\x31\x73\x27\x60\x8f\x28\xf6\x36\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\x3d\xf3\x41\x16\x13\x70\x16\xad\xd5\xd9\x3c\x89\x66\x08\xb6\xde\x6c\x18\x52\x08\x27\x51\x46\xa0\x86\x3d\x8e\x03\x90\x84\x55\x33\x10\xd4\xb7\xfc\xa1\xbf\xc3\x69\x89\xea\x0f\x96\x0b\x31\xf0\x7d\x1d\x30\x50\x21\x87\x4c\x50\xe1\x06\x79\x41\x47\x49\x18\x36\x1e\x4b\x85\x57\x9c\xdd\xa9\x55\xaf\x5e\xd7\x5b\x91\x97\x9a\x88\x35\x00\x40\x41\x78\xe7\x10\x81\x5f\x5e\xab\x60\xb5\xa8\x29\x86\x9a\x2c\x62\x0e\x88\xea\x8c\x65\xae\xc5\x34\x23\x3d\xbe\x78\x4d\x7b\x86\x6b\xd0\x2a\xfd\x39\x27\x49\x5a\xba\x70\xed\x34\x1a\x4c\x6c\x43\x9e\xeb\x64\x7e\x29\x6e\x0a\x54\x94\xc4\x12\x77\x83\x1a\x0d\x48\x06\x13\xe7\x0b\x8e\xcb\x2e\xd0\xf2\x48\x6b\xe8\xc9\x70\xb7\x72\x43\xfd\x86\x30\xeb\x74\x8d\xbc\xb4\x76\x37\xcc\xff\x03\x5b\xac\x5c\x30\x74\x0d\x0e\x3e\x30\x02\x23\x48\x68\x3a\x52\x5e\xc2\xad\xe3\x1f\xd6\x61\xe5\x20\xe1\x54\x86\x6c\x64\x72\x32\x3d\x53\x99\x2c\x36\xc5\x59\x76\x56\x4f\x3c\xe6\xbb\xf8\x0c\x13\xbe\x3f\x87\xdf\xc2\x65\xc2\x51\x05\xa4\x7c\x31\xd9\xac\xa3\x68\x69\x7a\xc0\x6f\x52\xd9\x08\xc5\x90\x81\x5b\x91\xd3\x85\x52\x44\x60\x23\x4c\xb5\x5c\x97\x1b\x36\xee\xd5\xd6\xfd\xf5\xa6\x0e\x3d\xba\xf1\x57\xa0\xe0\x24\x5a\x7a\x11\x57\x50\x11\xaa\xe9\xac\x32\x82\xa0\xe5\x86\x4b\x7e\x39\xca\xdb\x7e\x7d\x72\xfc\xf6\xed\xf9\x95\xdf\xa6\x79\x1d\xd4\x05\x09\x13\xdf\x38\x73\xb8\x51\xbf\xcc\x28\xce\x4d\x60\x0c\xe1\xcd\xf2\xb4\xc4\x21\xb8\x90\x4d\x59\xed\xf4\xb9\x6a\xc0\x7b\x1a\xee\x8b\xf1\xf2\xa8\xff\xc5\xa1\xf9\x4b\xde\xb3\x7c\xf3\x21\x31\x65\xf7\x39\xff\x4d\xc2\xfb\x82\xe0\x8e\x06\x4b\xcf\x5f\xe5\x78\xd3\x7b\xea\x40\x53\x8c\xee\x0f\xc0\xa4\xf7\x39\x8e\x46\x84\xfb\x06\x7b\xc5\x32\xc5\x65\xf6\x11\xab\x43\x9b\x16\x0b\x86\x91\xbb\xaf\xab\xdf\xf6\x10\xd0\xf8\x60\x44\xcc\x83\xad\x2c\xe7\xd5\x46\x36\x94\x3f\xbb\x1f\x92\xce\x5f\x03\xf3\xf0\xa0\x71\xfa\xf5\x63\xb7\x63\x23\x55\xda\x1b\xba\xa7\xf7\xf6\x55\xca\xda\x35\x36\xd1\xba\xf7\x8c\x8e\x31\x7c\xc5\x4d\xd3\x47\x10\xcf\x46\xd5\xb1\x8b\xd8\x42\x54\x71\xce\xd8\x07\x74\xab\xe9\xbc\x5a\x58\xe4\x8d\xf4\x7f\x82\xf8\xdf\xd1\x26\xfb\xa3\xf9\x71\x3c\xd4\x53\x32\xe1\x08\x6b\xf7\x53\xbe\xd9\xc7\xca\x12\x6e\x9d\xcb\x74\x8f\x12\x14\x55\x8d\xf1\xd0\x97\x0d\x79\x66\x94\xce\x79\xb0\x4c\x47\xea\x04\xfa\x02\xaf\x93\x7c\xd3\x8b\xae\x38\x0d\xd0\xcf\xbc\x00\xad\x96\xe1\x14\xeb\x9d\x9e\x63\x39\xdd\xa2\xad\x60\x59\x2f\xe9\xec\xb9\x98\x06\x5e\x8b\x2e\xd1\xb7\x7b\x49\x84\x4a\x63\x9a\xad\xaa\x9e\xce\xc8\xec\x3f\x05\x3b\xec\x84\xd6\x39\x6d\x3d\xf0\x79\x94\x2f\x4b\x19\x15\xe5\x5d\x5a\x60\xa1\xe3\x62\xd9\x50\x49\x96\x3f\xf4\xf7\x44\x29\x05\x34\x8f\x4b\xbe\xae\x68\xb2\xaa\xae\x78\xa5\xbe\xa6\x3f\xb4\x0b\x8b\xcc\x1e\xd3\x95\x08\xa4\xa8\x44\x15\x32\x72\x6a\x76\xf5\xa8\x5d\x9c\xce\x8a\x1a\xc4\x05\xf3\xa2\xa6\xdb\xaa\xf2\x06\xda\x90\x90\x3e\x47\x82\x3a\x3a\x52\x4f\x68\x16\x3e\x89\xfc\x22\xae\x8f\xaf\x2d\xe5\x21\x9f\xd9\x1e\x1d\x50\x04\x0f\x6f\x53\xbf\x5e\x1f\x3c\xac\xe1\x76\xb5\x30\x1b\x14\x65\xac\xe4\x4f\xd5\x9a\x2c\x32\x5a\x48\xd4\x11\xd3\xfc\xd1\x9c\x27\xa6\x38\xa4\x85\xb9\x87\x97\xb2\xe9\x2c\xf2\x78\x75\xc1\x10\x73\x4e\xab\xe3\xde\x33\xc1\x99\x2d\x2d\xab\x55\xa7\xe0\x4c\x7d\x41\x83\x39\x50\x88\x19\x7c\x47\x32\x3b\xb2\xb2\x45\x0e\x1f\x07\x55\xfd\x32\x0d\x15\x71\x5f\x95\x80\xf2\xc0\x1f\xe5\xc9\xcb\xd7\x57\xf0\x46\xa1\x19\x83\xf7\x80\xb9\xdc\xb0\x9d\xee\xcc\xd5\xc9\x8c\xb9\xea\x3a\xd9\xb0\xeb\x0a\x88\xe7\x35\x68\x37\xed\x36\x1d\xc4\x55\xe4\x80\xa9\x95\x85\x2c\xc7\xd7\x66\xd7\x83\x80\x31\x43\xe1\xd7\x92\xa8\x05\x39\x11\x27\xd7\xf8\x26\xc5\x4c\x95\xf2\xd0\x11\x2a\x91\x85\x6e\xdc\x43\x97\xfd\xd2\xf1\x0f\x78\xb6\xb0\x49\x7e\xcc\x38\xe0\x58\x1b\xcc\x5b\x68\x48\xc7\x5b\x4b\xc1\x7b\xe3\xee\x26\x63\x0d\x2f\xb6\xc3\xdd\x8d\x4f\x08\xe4\x06\xca\xa8\x22\x60\x67\xf3\x70\x81\x79\xfa\xf7\xff\xf3\x7f\x1f\x9f\x70\xc7\x4f\xfa\x76\x43\x5f\x2a\x96\x25\x30\x5d\x23\x29\x24\x83\x90\x26\x0d\x20\x73\x53\xed\xc4\xf1\x7b\x81\x9a\x5d\x13\xe9\xf9\xbf\x24\x32\xb9\x8e\xf6\x40\xc2\xf0\x06\xe7\x0c\xda\x50\x7f\xc2\xbe\xd3\xdf\xee\x13\xca\x7e\xe3\x7c\x7a\xfe\x86\xe4\xf9\x6b\xb5\xa8\xf8\x45\xbe\x12\xfb\xfd\x17\xfc\xda\xb3\xa5\xb3\x98\x6f\xf0\x47\xa2\xbf\xf8\xca\x27\x51\xc7\x64\x66\xd6\x09\x1f\xa6\x94\xd2\xe8\x20\x15\x72\xd6\xdf\xf6\x3c\x4a\xd1\x01\x3c\x4d\xff\xc4\xbf\x52\xf8\xa4\xea\x50\x98\x61\x39\xee\x03\x7a\x1e\xb0\xb0\xd0\x72\x17\x1c\x59\xed\xe7\x3d\xb7\xca\xe3\xdd\xed\xc6\xcc\x01\x0d\x90\xdd\x6d\x92\xdd\x9e\x8d\x88\x98\x86\xac\xb5\x0b\x4a\x81\xef\x12\x27\xb2\x2c\x12\xd4\xe0\xee\x03\xa3\x3a\xd0\x3c\x75\x57\x7c\xcf\x26\x37\x71\x64\x79\x8d\x16\x1b\x36\xcf\x73\x1a\xb2\x0a\xd4\x49\xe2\xf8\xa8\xf2\xcf\xbe\x2d\x71\x4e\xa0\x3f\x9a\x07\x6f\xcb\x3e\xc7\x25\x92\x00\xd1\x0a\xf8\x4f\xe9\x15\xa5\x28\x44\x19\x66\x25\x0a\x8a\xfc\xa1\x4f\x34\x7b\x50\x8f\x3d\xa7\x37\xf9\xbc\x44\xf2\x1b\x7c\xd0\xba\xa4\x6d\xa1\x27\xdc\x43\xbd\xe5\x7e\x24\x3c\xf8\xaa\x17\x1a\xc7\x57\xa2\x2e\x09\x72\x7d\x28\x9f\x09\x2e\x67\xda\x9c\xed\x73\xdf\xe5\xd7\xf2\x93\x10\xa3\xae\xd5\xaf\xe4\x4b\x92\x61\xed\x2d\xa0\x30\xf6\x76\xf0\x10\xfc\x74\xa1\x5d\xd8\x77\x62\x1d\x98\x8d\x3b\x62\x39\x03\xcf\xee\x74\x31\xc8\x5f\xca\xf1\xf5\x05\x1f\x5e\x2d\x2d\x07\xcb\x4f\xcd\x60\xcd\xa5\x6f\x69\xb5\xca\x0d\xc6\x99\x7c\xb9\x9c\x42\x2c\x40\x4f\xb1\x61\x6a\x9a\x59\xdf\x9f\xf3\x5f\x97\x4a\x94\xa8\x0b\x93\xfe\x3a\x4b\x76\x09\x7c\xc0\xe7\x56\x71\x25\xf7\xc9\xb3\xe1\x5c\x04\x59\x35\x4b\x1f\x73\x5c\x15\xd1\xa2\x42\x7e\x98\xbd\x20\xfc\xb7\x99\x2b\x7f\xc2\x3f\xd3\xcd\xa8\x16\x37\xb9\xe1\xdc\x0e\x9a\x09\x61\xa8\xa9\x49\x30\x69\x2e\x84\x94\x16\xb7\x53\xc0\x74\x56\xa9\x23\xd8\x73\x4a\x08\x49\x2b\xaa\x98\xa5\xec\x41\xcd\x10\xbc\xa7\xe1\x69\x37\x65\x6f\x27\x1c\x3d\xf4\x73\xdc\xcf\x00\x48\xba\x99\x4f\x80\xb2\x06\xc8\xc3\xd1\xc0\x87\x40\xaa\xa4\x74\x9c\x66\x38\x7b\x7e\x7e\x68\x6a\x87\x13\x24\x99\x19\x89\x59\x8b\xd2\xf9\x6a\x00\x08\x82\x0a\x07\x21\x88\x9a\x71\x95\x69\x63\x51\x7d\x40\x68\x9f\xcf\x29\xfb\x7e\x01\x6c\xba\xc2\x8c\x2b\x9f\x25\xa8\xb3\x4c\x5a\x5c\x6c\xca\x6a\x35\x47\x55\x86\x79\x24\x53\x65\x22\x25\x0a\x22\x9c\xc4\xb8\x99\x28\x71\x2b\x45\x0d\x61\x0e\xd6\x3c\xa2\x1b\x2d\x79\xcb\xf4\x7a\x08\x76\xdb\x3f\x5c\xf5\x81\x72\x2a\xd4\x41\x94\x1b\xe7\xcc\xd8\xa3\xc7\xf1\xcf\x63\xd8\x91\x80\x87\x4e\x81\x76\x1a\x8c\x84\x76\x6f\x16\x1b\x5c\x57\x0b\x55\x07\x4d\x15\x92\x59\x2e\xb2\xf9\x8d\x96\x91\x79\x86\xa7\xe4\x81\x22\x5b\x36\x45\xc1\xbe\xae\x45\xce\x5c\xc2\x44\x91\x4e\x3d\xad\xd9\xd5\x79\x9c\x33\xe3\x2d\x08\xa6\x2a\xcc\x9b\xba\x49\x10\xa6\x52\x80\x9c\xe3\x63\x0a\x44\x94\xa4\xaa\xe6\xe0\x5d\x40\x7c\x0a\xec\x5a\x75\xb2\x61\xb6\xbf\x71\x25\xde\xc0\x1a\xa7\xfd\x82\x72\x6c\xda\xca\x7c\x55\x74\xe2\x67\x0d\xcc\x4d\xf1\xf3\x96\x76\x7c\x01\x69\x68\x54\x82\x57\x12\x66\x81\x40\xe4\x3b\xbd\xff\xfe\xdb\x0f\x1d\x4f\x83\xbf\x6e\x78\xff\xdd\x07\x12\x94\xee\xbf\xff\xfe\x03\xee\x19\x46\x85\xb3\x25\xab\xd9\xc6\x35\xa0\xa0\x41\xef\xda\xf2\x53\xd5\xec\x3b\x11\x05\xf1\xe9\xf9\xc3\x67\x99\x8a\xcf\x7d\xbc\xc4\x9d\xc7\xf7\x60\x85\x17\x2e\x2b\x5e\xe1\xf5\x7e\x9b\xe9\x18\x3b\xe1\x00\xf6\xcb\x15\x37\x0c\x64\x39\x37\xf9\xab\xfb\xcd\xc3\xad\x0a\x1e\x2c\x75\xde\xe4\xc3\x3f\xc8\xaf\x67\x18\x08\x0f\xfd\x57\xd7\x52\x13\xdc\x50\x5c\x89\xd3\x3a\x8b\xe6\xee\xae\xe4\xa6\xec\x67\x31\x57\xb2\x00\x2a\xe8\x72\x9c\xa5\xbd\xf0\x20\x3a\x6f\x30\xe8\x0d\xc1\xdb\x12\x88\x31\xb8\x77\xf8\x39\xc8\xbc\xad\xb2\x36\x2a\xa0\xac\xd6\x53\x89\x82\x0e\x70\xad\x98\x92\x6d\xe8\xeb\xd0\x24\xed\xb9\x3a\xec\xe7\x57\xd6\x22\xf2\x04\x89\xaa\x4b\x57\xcf\x92\x30\x5e\x2f\xa0\xcd\x86\xc2\x9f\x87\xaa\x06\x9d\x02\xfd\x95\x4d\xec\x1a\x0d\xff\x74\x81\x0f\x4b\x16\xf5\x91\x5a\xeb\x3b\xda\x8c\x54\x6d\x9a\x68\xbe\x59\x74\x10\xa0\x33\x16\x38\xb6\xf9\x63\xf1\x9d\x0f\x27\x45\xa0\x55\x9d\x99\xd1\xbf\x9e\x15\x88\x59\xb2\xa1\x9a\x8c\x88\xc8\x88\x5d\x50\x55\x7b\x7b\xd0\x5d\x2e\xba\x12\x34\xf7\x3b\xb9\x10\xe6\x89\x0c\x57\x6b\x59\x40\x3d\xf2\x33\xfd\x71\x78\x1d\x18\xdf\x58\xff\xb8\x15\xea\x3e\xfd\xb1\x24\xd9\x17\x6d\xd1\xf9\x7d\x3b\xce\x5f\x34\x9b\xc6\xef\xeb\xf8\x35\x04\x10\x6d\xea\xfd\x62\x20\x9b\x49\xb6\xa7\x6d\x5d\xbd\x9c\x30\xd8\x79\x04\x72\x62\x30\x92\x31\x30\x2d\x8b\x33\x9d\x17\x8a\x74\x10\xbe\x28\x16\xe6\x60\x5c\x8b\x1a\x68\x01\xd4\xa9\x73\x27\xc1\xa6\xf4\xf6\x22\x65\x84\x7a\x7a\x96\xd9\x43\x03\x07\xbe\xa9\x0e\x54\xf7\x5a\xf3\x61\x4d\xfd\x74\xd3\xfe\xe8\x2d\x3d\xbd\xe3\x4a\x50\x0e\x41\xbc\xa2\x76\x39\x91\x9e\x58\xbc\xe8\x59\x82\x53\xd4\xd0\xa7\x9b\x86\xb3\x81\x1a\x70\x7f\xdd\xa4\xee\x14\x86\xd8\x64\xbc\x11\xe4\x29\x17\x36\xff\x3b\x90\xbf\x96\x9f\x0d\xaa\x85\x0f\xf5\x53\xd8\xd6\x0d\x1b\xd4\x16\x9e\xa6\xfa\xa5\xf9\xba\xc5\xb9\x83\xe3\x0b\xfc\xd6\x4e\x28\x0c\xf1\xe6\xb6\xec\xf6\x1b\xec\x01\xb8\xca\x94\x1f\x4b\xb9\x84\x33\x20\x84\x77\x12\x95\x83\xb5\x15\x30\x72\x09\xfe\xa4\xb6\x15\x9c\x3b\x2f\x17\x39\xcc\x68\xe1\x7e\x55\xb3\xa6\x21\x2f\x82\xd1\x13\x08\x07\xab\xb0\xfa\xd9\x2e\x39\x0c\xd9\xc5\x6c\xcb\x55\x6f\x9a\x95\x01\xa6\xe6\x65\x7f\xcd\x53\x27\xb6\x0e\x8c\x5c\x51\x5b\x74\x3f\x84\x9b\x31\x71\xb0\x27\x68\xe3\x09\xef\xc8\x85\x72\xb3\x3f\xe0\x87\xf0\x34\x45\xe5\x40\x5e\x0f\x8f\xbd\x0a\x82\x05\x6d\x93\xca\x14\x07\x55\xf8\xb6\xa4\x46\xb1\x8b\x17\x76\x84\x14\xde\xfa\x23\x3b\xcb\x19\xf3\xc4\x37\x11\x31\xdb\x32\x68\xfa\xf7\x2e\x5d\xeb\x47\x4d\xba\x59\x5b\x33\x92\xf6\x8f\x55\x4f\xa5\xff\xf3\x07\xa3\x51\x92\xf6\xb3\x90\x5d\x82\x3e\xfd\xcf\x08\x6a\x78\x72\xf6\x79\xa2\x0d\x06\x41\x95\x66\xe7\x58\x68\xbe\x6e\xac\x44\x2a\x82\x1a\xe7\xca\x20\x19\x7a\x51\x17\xce\x24\xf5\x9a\x4e\xf1\xbc\xd6\x15\x9b\xee\xbe\x6a\x16\xa1\x06\x52\x6c\xeb\x5b\x62\xaa\x71\x39\x57\xa3\x6a\xdd\xe2\x56\x98\x78\x6d\x4b\x15\x1c\xdc\x8a\xd6\x87\xdd\x52\xd2\x2f\x77\x1f\x31\x5d\x97\xc2\x16\x7b\x6f\x7a\xce\x58\xa4\x42\x50\x6a\x05\x2c\xcb\xfa\x5e\x75\x19\xcc\x93\xc4\xbc\xf9\x4a\x6d\x8e\x36\xd5\xa2\x4f\x5d\x3a\x35\xa7\x06\xe8\x30\x52\x59\x49\x2c\x1c\x67\x6d\x4e\xfb\x61\xb7\x46\x70\x0d\x06\x58\xd2\x89\x71\xdb\x40\x50\x73\x2c\x22\xaf\x33\xa8\xf5\x31\xd4\x30\xe2\x06\x2b\x6e\x0d\xb9\x0c\xf1\x78\x80\x61\xd1\x78\x0d\x86\x1b\x54\x0b\x8d\xf9\xa1\x9a\x1f\xf4\xb7\xd7\x6d\x5c\x40\x1c\x43\x78\xd1\xdb\xd0\x3b\xb7\x7c\x4d\xfd\x71\xb0\xc9\xa9\x20\x6c\xa1\x6e\x8d\xe6\xa1\x91\x78\x0d\xb0\xfb\xa9\xfa\x88\x68\x86\x6c\x05\x04\x34\xb5\xba\x41\xb4\xfb\x5a\x17\x21\x4a\x41\xbd\xc7\x64\xfe\xeb\x78\xbc\x4a\xcc\x87\xc6\x1a\xb2\xad\x5a\x76\xe6\x88\x9e\x1e\xfe\xe1\x7e\xf1\x48\x16\x32\x6c\x7e\x46\xf7\x2e\x9c\x28\xe8\x0c\x77\x41\x1e\x73\xd5\xc1\xfb\x9a\xc9\x86\x37\x0b\x06\xa2\xef\xd9\xaf\x49\xa0\x8c\x0b\xd4\x46\xfe\x98\x1d\x64\x4f\xe8\x04\x82\xdc\x69\xbd\xc0\x10\xa0\xf0\xda\x96\xfb\x5d\xd4\x76\x93\xd1\xf2\xc8\xf4\xd0\x46\x5b\x0a\x2f\x16\xfc\x1a\x76\xc1\x4e\x2b\xc3\xaa\x9d\xdc\x1f\x8f\x88\xb6\xef\x39\xef\x23\xe2\x53\x2c\x7c\x3a\x50\x40\x12\x09\xa8\x1f\x89\xde\x6d\xab\x0c\x10\x55\x3f\x60\xf3\x93\xd8\x31\xc9\x0d\x8e\xaf\x61\xc6\xc4\xf5\x5f\x98\xeb\x07\x7d\x4a\x23\x66\x95\x5f\xfa\xd0\x02\x72\x3d\x8a\x07\x59\x8a\x11\x35\xff\x0d\x33\x5c\xfc\x14\xad\x2a\x93\xa9\xd7\x1a\x51\xb9\xa6\xf8\xb8\x22\x47\xce\x6d\xf4\xc1\x0d\xfd\x7b\xbc\xdd\x3e\x2e\x8a\x07\x13\xa3\x0e\xa4\x1f\x37\xec\x81\x25\x98\x2a\x1a\x06\xac\x32\xa8\x29\x10\x25\xa7\x71\xc7\x00\xd1\x3c\xfd\xc2\x52\x40\xc9\x17\x6b\x69\xe1\xf1\x26\xa4\xeb\xe7\xae\xe3\x2d\xa0\x21\x86\xe7\xad\x4b\x98\x55\x88\x7b\x61\x38\x92\x81\x10\x1e\x64\x0d\xbc\xa6\x6f\xed\x9e\xbb\x80\x51\x89\x8e\xd8\xf7\xf6\x00\x4a\x24\x88\xde\x41\x84\x04\xc2\xaf\x47\xaa\x13\x80\x27\x00\xa7\xc4\x5f\xdf\xf6\x3f\x53\x04\x9e\x6a\x7c\x8a\x04\xee\x12\x82\xa7\x02\xb6\x5a\xda\x4c\xe8\x1b\x5e\x2b\xf2\xe5\xb3\x82\x20\x30\x2a\x67\x04\xbf\x3d\xd8\xba\x69\x3e\x4a\x20\x9c\x39\x3e\x7d\xce\x8a\x03\x40\x4a\x26\x87\x3a\x7c\x15\xe7\x92\x68\x59\x2d\xc2\xc0\xb0\xcf\x39\x61\xa2\x8b\x05\xcf\x71\x9b\xfd\x5d\xd4\x8e\xa7\xf8\x95\xfe\x2f\x26\x0c\x07\xa2\x2e\x27\xe7\x16\xf8\x88\xad\x21\x7c\xae\x3a\x0b\x04\x4d\xa9\x6f\xc3\xb8\x2d\xb5\xa6\x67\x76\xfe\x65\x0e\x21\x53\x8e\x20\xb1\x77\xea\xcc\xd7\xee\xfc\xdb\xf8\xd6\x47\x3f\xcf\xcd\x45\x6e\x0c\xe6\x6e\x70\xbd\x5b\x5c\x7c\xeb\xc4\xb6\x6c\xb5\x58\xc1\xc3\x35\x8e\x5d\xe8\x1a\x6c\x58\xa1\x3f\x1e\xd1\x9d\x8b\xad\xa8\x87\x6a\x1c\xf4\x61\x19\xd6\x05\xdd\x43\x50\x61\x38\xc7\xb2\x64\xd6\xc9\x7d\xbd\x3a\xf9\x89\xab\x88\x28\x03\x72\x77\x40\xef\x60\x9e\x30\xb1\xf5\x41\xcd\xed\x82\xd2\x88\xaf\x89\x75\x15\x79\xc1\xf4\x0e\xfc\xa3\x80\xe9\xe0\x0a\x7c\x00\x68\x48\x39\x27\xfe\x21\xa6\x8b\x52\x2c\x8f\xfc\x0b\xfb\x40\x49\x25\xe6\x46\x7c\x17\xe7\x7a\xc4\xec\xa9\x6c\x7b\x78\xf6\x8d\xd1\xce\x9e\x06\xb4\x80\xb2\x6f\xa9\x99\xc7\x90\x95\x24\x1a\x24\x06\x21\xeb\xaf\x5a\x06\xf8\x80\x05\x26\x5b\x54\x7e\xaa\x8a\x3d\x51\x1f\xcf\xc5\x6d\xf5\x7e\x17\xd7\x4b\x2b\x1e\x37\xef\x07\xeb\x1e\xcc\x27\x84\x08\x17\x2a\x18\xae\x9d\x4b\xef\xb1\xdc\x4d\xb5\xcc\x4c\xc8\x29\x34\x14\x07\xf0\x3c\x4e\xbd\xeb\x5e\xc8\xaa\x84\x0f\xc1\x06\x4c\xcc\xb4\x4d\x4c\xfa\x21\x1d\xcd\x47\x8c\x2d\x71\x07\x75\x52\xd5\x9d\x56\x68\x23\x42\x18\x60\x69\x50\x1f\x10\x16\xd8\x8a\xd9\xec\xf3\xf0\x39\xc4\x9c\x86\x31\xb6\x33\x40\x48\x12\x12\xc6\x00\x51\x95\xd9\xb8\x80\x8e\x0a\x47\xca\x83\x8f\x9c\xe2\x54\x9c\xe0\x02\xb3\x42\xcf\x03\x9b\x08\xb3\x83\xbe\xc2\xd8\x40\x10\xf0\x7a\xd4\xb4\xf7\xcd\x3b\xf2\x26\x51\xce\x56\x84\xe5\x4e\xb6\x3e\xab\x8b\x72\xc7\x31\x2e\x59\x77\xb9\x94\xdd\x56\x78\xfe\x1d\xad\x7e\x77\x5b\xab\x62\xc9\x35\xd5\xac\xd9\x34\xaa\xb3\x3b\x16\x2d\x07\xa6\xbe\xa3\xb5\xef\xad\xb5\x70\xcb\xfa\x58\x96\xbb\xa0\x89\xb8\xfb\x81\x8f\x07\x98\x67\x6c\xaa\x35\xc1\xd1\xd4\x8d\xd1\xfc\x9e\x0f\x30\xf1\x28\x46\x8b\xbf\xfe\xd7\xdd\xec\x0e\x97\xaf\xf1\x02\x31\x2d\x27\xa2\xa9\x43\xd3\xe9\x60\x58\xcb\x93\x05\x9c\x1b\x56\xb6\xc6\x92\x27\xaa\x12\xeb\xdd\x81\x7d\x92\x77\x84\x76\x5d\xb3\x02\xed\xe1\xee\xc5\x06\x9a\xe9\x84\x61\xa6\x03\x65\xeb\xf7\x90\x58\x53\xf1\x79\xe0\xf1\x9c\x04\xc9\x87\x0b\x0c\x3c\x0d\xa2\xba\x62\x4f\x83\xa0\x83\x42\x45\x87\xea\x39\x99\xac\x43\x29\x2f\x9c\x5a\x8e\x77\x50\xc1\xb3\x3d\xd3\x18\x62\xfa\x12\xc0\xd0\xb5\x5c\x73\xaf\xd7\x4d\x10\x32\x46\xdc\x1f\xb0\x17\x85\x1d\x99\xc5\x63\xbd\x16\xf1\x44\xf1\xa2\xc2\xca\x40\x8a\xb1\xbd\xc5\x44\x19\x1c\x79\xb7\x7b\xda\x3a\x37\xd5\x47\x28\xc3\x88\x30\x25\xa8\xf0\xf9\xe5\x15\x34\x60\xb4\x00\x68\x1f\x5d\x31\xdf\x4d\xff\xb2\x2e\x6b\xc4\xb9\xe4\xd8\xbe\xca\x88\x16\x0b\xf6\x5a\xaa\x6a\x0d\x02\x78\x5d\x9a\x2d\x79\x5d\x6c\x84\x6d\x85\x7e\x6d\x26\x3d\x88\x26\x2c\x45\xfc\x5e\x5e\x69\xdd\xae\x5c\x90\x4c\x3c\xe3\x9b\xad\xb6\xc6\xa3\x08\x2e\x54\xfb\xad\xf6\x3e\x6e\x24\x30\xbc\x61\x85\x59\x80\x16\x45\x49\xa8\x00\xd6\x3d\x78\x84\x9e\x21\xe8\x94\x14\x6c\x18\xbe\x4d\x06\x06\x7f\x15\x13\xe6\x8a\xd9\x75\xaa\xe6\x22\xb7\x79\x86\x1c\xec\x43\x18\x84\x51\x9a\xbe\x43\x14\x1e\x56\x35\xf3\x7a\x05\x53\x26\x4c\x80\x74\xbb\x46\x0c\x3c\xdf\xe9\xe7\x18\x48\x4e\x4b\xdc\x93\x57\xf2\x35\x06\xd9\x69\x38\x25\x17\x58\x69\x0c\x32\x6f\x0a\x3e\xff\x3c\xa7\x3f\x63\x21\xda\x45\xe0\x37\x49\x1a\xc4\xb9\x63\x97\x7c\xb9\x48\xe6\x0c\x42\x77\xb9\x59\x4a\x78\x05\xd6\x1c\xe1\xb8\x27\xca\x3e\x36\x65\x96\xe0\xa1\x6c\x37\x86\x0a\xd4\xc1\x0e\xbe\x23\x88\x9c\x16\x6a\xf2\xd4\x19\x37\xf4\xae\x1c\xf6\x09\x17\x13\xd6\xaf\xd7\x22\x83\x60\x1a\x70\xb8\x95\x30\x77\x47\xbc\xb5\xf0\xb9\xd0\xae\x0a\x6d\x03\xda\x49\x68\x3b\x76\x8b\x22\xa2\x46\xc4\x12\x03\x11\x19\x56\x4c\xad\x02\xab\x62\x0b\xf7\x0d\x62\x03\xc2\xc6\x3d\x52\x2b\x70\x46\x90\xd8\x7f\x8f\x20\xfc\x45\x26\x80\xcc\xdf\x6a\xb8\xcf\x28\xb8\x3f\x2b\xbc\x8a\xd6\x43\xc0\x51\xa2\xa7\x11\xd0\x51\x0d\x58\x27\x9a\x5c\xe6\x14\xa6\xc8\x0d\x14\xa6\x8c\x2b\x36\xbe\x0c\x56\x37\x6f\xd3\x24\x1c\x89\x14\xdd\x96\xab\xbc\x2d\x2c\x8e\x8b\x72\x1a\xf6\x65\x01\x47\x09\xdd\x76\xf3\x0d\x1d\xbe\xb5\x0a\xe2\x8c\x04\xf2\x91\x2d\x9f\x68\xbe\x59\xc6\x31\x7d\x03\x4b\x8b\x85\xb0\x31\xf6\x1c\x24\xe6\xb2\xdf\x31\xbf\x11\xe6\x65\xed\x60\xc8\x0f\xff\x78\x79\xfe\xf6\x28\xfd\xfc\xf8\xfa\xfa\xfa\x31\x17\x7f\xbc\x6f\x37\xec\x63\x57\x70\x9c\x98\xff\x79\xf6\xe6\x28\x2d\xfb\xc5\xa3\x19\x1d\xd4\xdb\x58\xbd\xa5\x56\xa6\xb8\x7a\x60\xea\x62\xd1\xf1\xf7\xb3\x27\x5d\x31\x1a\x76\x3d\x0c\x47\x16\x6e\x90\x3c\x7b\x66\xdf\xa1\x93\x29\x76\x1e\xfe\x70\x58\x2e\xda\x12\xe6\x11\xf8\x08\x32\x36\x74\x26\x98\x8a\x0f\x30\x04\xa9\xa8\x1d\xed\xc6\xeb\x85\x86\x7d\x1f\x80\xd8\x6d\xe0\x09\xee\x01\x5d\x26\x26\xce\x6d\x2b\x1c\xf0\xae\x5b\x37\xfb\x4d\x11\x73\x4c\xc2\x99\x4e\x44\x59\xfc\x34\x2c\x0c\xf3\x45\xc4\x6d\x7e\x9a\xfe\x91\x35\x45\x3c\x51\x42\x5b\x9c\x65\xb4\x05\xe0\xd9\xb0\x30\x22\x10\x06\x82\x31\x0d\x40\x22\x2b\x9a\x60\xee\xf3\x9c\x70\x3e\xaa\x44\xcf\x6f\x6c\x57\xd1\xa7\x5b\x77\x9e\x03\xad\x49\x75\xe3\x22\xb1\x9e\x6e\x3a\xdb\xf0\x22\xf6\x8c\x12\x3b\x3e\x5f\x99\x12\x6b\x0a\x0f\xa9\xd8\x6e\x4e\xa2\x28\xe0\x8f\x00\x65\x2e\x12\x1a\x93\xfa\xb5\x0b\xc6\x94\x6a\xc8\xcd\x72\x98\x11\xc4\x54\x28\x7b\x78\xb3\x4f\xad\x45\x39\x51\xbb\x59\xf3\xab\xc7\xf8\x9b\xee\x70\x22\x99\x88\x03\x50\xc4\x3d\xc0\x3a\x62\x99\xeb\x7a\xb8\x8b\x0d\xc5\x2d\xe5\x4d\x5e\x94\x51\xde\x34\xda\xae\x15\x70\xd0\xc6\x68\x97\x54\xe9\x78\x2c\xf3\xfb\x16\x0e\x09\x04\x62\xc5\x93\xe9\x28\x2d\xac\x0c\xbc\x28\x4f\x5d\x5a\x2c\x5e\xd9\x2a\x05\xdf\x8d\x97\x28\x23\x44\xd6\x51\xc8\x51\x59\x50\x8b\xef\xfc\x19\x04\xce\xbf\xec\x74\x60\x06\xfa\x23\xd7\xe7\x50\x84\x96\x5a\xcd\x8d\x4d\xdc\xed\x06\x99\xc3\x77\x2e\x86\x2b\x9b\x64\x35\x79\x29\xe9\x44\xbe\x42\x6c\xed\x36\xcd\x8d\x79\x87\x9f\xe2\x97\x86\x8f\x09\x47\xe6\xc1\x74\x50\x1e\x32\x50\xbe\x34\x59\x5c\xdd\x5f\x83\x70\xa9\x2a\xe2\xd6\x7c\xde\x45\x51\x82\x09\x8f\x31\x91\xc2\x7b\xa2\x7b\x13\x0e\xc6\x0e\x6a\xe8\x0a\x7d\xea\x5a\x38\xe0\x0a\x1d\x17\x0d\xdd\xa1\x83\xa2\x5f\xe0\x0e\x1d\x23\x69\xec\xec\xec\x87\xfa\x05\xfe\xce\x53\x83\x1e\xcb\xb5\x53\x88\x9f\x28\x30\x25\xdd\x16\xe1\xd8\xbe\xc0\xef\x79\x70\xb2\xfd\x12\x01\x77\xaa\x27\x1e\x25\x01\x72\xef\xd2\xf8\x16\xd5\x72\x39\x9b\xb7\xcd\x75\xc7\xce\xc5\x78\x34\x82\xb9\x2c\xff\x4e\x2f\xf1\x5b\x40\xf8\xaa\x1f\x44\x21\x1f\x92\xa8\x16\x45\x4f\xf5\x66\x4f\x12\x71\xcf\x3a\x0c\x55\x7f\x4a\x39\x72\xe7\xfa\x96\x4e\x62\xc7\x96\x33\x93\x22\xb4\xd1\x5d\x67\xfc\x05\xb7\x68\x68\x9f\x59\x59\x8a\x42\x97\x9c\xa2\x60\xfc\x69\x08\xb7\x5d\x09\xc6\x6c\x72\x2b\x2d\xe2\xab\xd7\x1c\x81\xb0\x0c\x8e\xc0\x88\x18\x2a\xc8\xa7\x1e\x24\x74\x7f\x24\x08\xc3\xa5\x87\x50\x04\x61\xd1\x3f\x7f\xfd\x56\x7e\xc2\x42\x5d\xc3\x11\xc1\x44\x9d\x2f\xc7\x13\xb3\x7b\x9f\x4d\xd9\xbf\x5b\x9e\x38\x28\x88\x9a\xc3\x5e\x79\xc3\x2f\x07\x51\xb4\xf9\x12\xd7\x40\xfc\xd7\xa5\x92\x0c\xec\x8b\x5d\xb4\xe5\xe3\x61\x31\x42\x8e\xa0\xfa\x12\x1f\x2e\x5d\xaf\x71\xf8\x8f\x4b\xcb\x61\xa2\xf1\x34\x18\xb9\xc7\x88\xd9\x02\x10\xdd\xdd\xef\xd2\xae\x62\xdd\xa9\x12\xe8\xa0\x41\x50\x87\x8f\x23\x0c\xda\xc1\xbb\x67\x06\x41\x3b\xb4\xf3\x70\xa6\xcd\xba\x16\x27\x4b\xcb\xc3\xb1\xd5\x42\xa2\x45\x65\x7c\x30\x61\xd3\x06\x7b\xf7\x0b\xca\xc7\xee\xbf\x08\xbd\x3a\x58\x14\xe0\x98\x0f\xac\x0e\xea\xd6\xb3\xe1\x44\x38\x75\xa6\xe2\x2c\xc5\x6f\x07\x65\x92\x21\x93\x4b\xb6\x2d\x02\xe1\x50\x08\x28\xdc\x56\xce\xf2\xf6\x23\x3f\xa0\x00\x03\x32\xab\xe0\xba\xd5\x30\x56\xfc\x37\x9c\x31\x7d\xbe\xe3\x42\xbe\x46\x0d\xc6\x46\xdf\x28\x0d\x7d\x80\x31\x53\x57\x80\xa5\x59\x11\xc9\xde\xc8\x97\xbc\x4d\x37\xa4\x8c\xb1\xaf\x3f\xe5\x3d\x1e\xce\x5b\x00\xef\x10\xfd\x97\xf2\xdf\xff\xf7\xff\x63\x75\x69\x43\xbb\x25\x02\x73\x68\x6c\x4b\x3f\xef\xe6\x25\xe7\x1f\x9c\x79\x0c\x1e\x1d\x74\x44\xd0\x9f\x6a\xac\x0b\xfa\x1a\xd1\x28\xbf\xc1\x60\xf4\xcd\x66\x74\x03\x22\xc7\x21\xd1\x93\x39\xae\x1e\x87\x75\x18\x51\x65\xba\x47\xb8\xd8\x7a\x36\xb9\x98\x34\xf4\xbc\x57\xa2\x9b\xde\x52\x92\xf7\x4d\xbb\xfa\xe0\x23\xb0\xba\x89\x88\xa2\xaf\xe2\x64\xc8\x30\x2e\x86\xd9\x01\x40\x1f\xd7\xcc\xd7\x68\xe8\x7d\xc9\xc4\x3a\x7e\x21\x4c\xce\xe5\x12\x02\x1b\x46\x62\xe6\x38\x3c\x33\x77\x26\x09\xe0\xa8\x17\xd8\xd1\xd3\x8d\xf0\x32\x32\x95\xa5\x49\x77\x45\xa2\x37\xab\xec\x1f\xc3\x1f\x1c\x63\x93\x1f\x9b\x63\xaa\x92\x3b\xb1\xd7\x48\xa0\xe5\x8a\x04\xc4\x8f\x85\x5f\x10\xff\x4d\x10\xb5\x4f\xf5\x6a\x9c\xaa\x5f\x9a\x3e\x88\x0c\x18\x3d\xb0\x10\xb8\x5f\x21\x62\x68\xf4\x6a\x02\x57\x0e\xac\x4c\x5c\xaa\x8f\xe2\xc8\x02\x85\x48\xbd\x0d\x3a\x72\xf2\x7d\xb0\xc1\x45\x8a\x86\xa1\x82\x7a\x9a\x8d\xb5\x6a\x11\xf9\x40\x09\x88\x62\x5a\x47\xd6\xa3\xdd\xcc\x37\x13\xac\x84\xb5\xdc\xb8\xfb\x62\x78\xbb\x68\x4e\x6b\xe2\x27\x81\x8f\xbc\x1c\xf5\xb0\x96\x8b\x57\xbd\x24\xa7\x1b\x92\xfb\x37\xd1\xe9\x0d\x15\xb1\x84\xf6\xd3\x01\x0f\xd7\x71\xc4\xdf\xaf\xf7\x71\x1d\xd7\x71\xbb\x97\xeb\xef\xbd\xec\x9d\x8e\xe6\x17\xaa\xa8\x06\x61\xfd\x5c\xd6\x54\x7c\xbf\xdf\x73\xf5\x1a\x83\x06\x82\x4f\x84\x02\x57\xd3\x97\xaa\xf8\xf5\x46\x97\x28\xf5\x1f\xbb\xd0\x8d\xe3\xdc\x0e\x7b\x3d\x0a\x44\x17\x75\xfa\xeb\x02\xd2\x1d\xbc\x19\x8d\x78\xc5\xf0\xc8\x36\x8a\x2a\x81\x01\xde\x5a\x24\x8e\x31\x11\x76\xd8\x29\xe9\x82\x9b\x36\xd5\xdb\x4b\x74\x09\xd1\x3c\xdf\x1d\x62\xe2\xc0\x55\xc6\x6d\xb1\x26\x86\xbd\x64\x1e\xe3\x7c\x23\xc2\x4e\xde\x5a\x22\xdc\x35\xe3\xdb\xf0\x7f\x24\xfe\xc4\xf4\x75\x01\x1f\xe9\xae\x4d\x93\x85\x3d\xd6\xf0\xe7\xf5\x03\x7c\x24\x30\x7c\xc9\x99\xc1\x33\x5a\x8f\xb9\x3d\x1e\xb9\xeb\x87\x9d\xe6\x58\x3a\xc2\xb5\x67\x7a\x3b\x66\xa1\xa7\x06\xe9\x9e\xe5\xc1\x36\x59\xef\xff\x3c\x90\xfc\x86\xf4\x32\x99\x33\x2c\x1f\xb7\x11\xbb\x02\x58\xaa\xbb\xb1\x39\xc3\x87\x4b\x27\xac\x2d\x4a\x84\x05\x38\x91\x2f\x97\xa3\x47\x27\x8d\x55\xed\x3b\x21\x71\x88\xe1\xbe\x13\xa4\xea\x6e\xa7\xb8\x66\xff\x63\x9a\x94\x9b\x1d\x4f\x61\x9e\x3a\xe5\x1d\xbb\x9f\xcb\x2e\x28\xd2\xa3\xf6\x0a\x02\xef\x0f\xc3\xba\xe4\x49\x19\xdd\x35\xdf\x36\xd7\x89\x6c\x99\x33\x78\x24\x48\xdc\x5c\x4d\x89\xbb\x24\x69\x2c\x72\x68\x50\xa3\x54\xa2\x37\x68\xd8\x9b\x71\xfe\x20\x54\x00\x76\x0c\x17\x24\xc0\xc2\x60\xb3\x3c\xa9\xbe\x2f\xb5\xdc\x98\xc4\xbe\xf3\x52\x2b\xe4\x51\xdf\xac\x08\x96\x51\xbb\x21\xc4\x97\x34\x8c\x17\x84\x87\xcd\x1d\x99\xba\x0a\x51\x12\x55\x8f\x26\xe1\xe0\xa4\x15\x7d\x16\xd6\xfa\xe1\x5e\x66\xf3\xfd\x08\x21\xbe\xa4\x1f\xdc\x0a\x6c\xbc\x31\x89\xb7\xf5\x87\xce\x7a\x1a\xf4\x31\xba\x97\x1f\x76\xd1\x7b\xa4\x5f\x05\xfb\x34\x6c\x41\x8a\x81\xdc\xc1\xda\xe1\xf1\x86\x29\x39\x72\x67\x3b\x21\x1a\x88\xc9\xce\x64\x3c\xa8\xbb\x97\x38\x8c\xe9\xb9\xa4\x03\x0d\x8c\x71\x3c\xd8\xe4\xae\x23\xfd\xf2\xa2\x1c\x64\xab\x33\x95\xe7\x24\xf3\xee\x0d\x57\xe0\x2c\x12\x92\xc8\x75\xe1\x96\x01\xc1\xce\x66\xb2\x90\x37\x01\xdc\x1a\x67\x56\x17\xb4\x3a\xae\xcc\xb1\x6a\x40\x39\x16\x3d\x86\x33\xde\x19\x4a\x65\x81\xee\x94\x99\xf2\x91\xc9\xaa\xce\x52\x00\x50\xdb\xfc\x26\xb2\xc5\x81\xe9\xf0\x36\x7e\x43\xf7\x16\x75\xcb\xb8\x2b\x7e\xd7\x96\x40\xfb\x8e\x60\x0e\xea\x58\x66\xe1\x52\x1f\x13\x88\x27\xbb\x55\x0b\x3f\x03\x9b\x6b\x66\x16\x01\x29\xa0\xc2\x1f\xdc\x28\xdd\xd3\x8d\x9e\x1b\xe0\x32\x98\x2a\x7a\x70\x1b\x53\xf8\x8a\x0e\x80\x6d\xdc\xde\x03\xb0\x05\xf1\x2e\xa3\x6e\x04\x2c\xe0\xb6\x8e\xe8\x9b\x8b\x5f\xde\x11\xf0\x8d\x2f\xec\xc8\x91\xf5\x42\x83\x54\x17\xc5\xe4\xfa\xbf\xad\x7f\x83\x63\x0e\x88\x33\x8a\x82\x3e\x20\xf8\xe8\x8d\x78\x47\xf4\x81\x55\x9a\x55\x0b\xfb\x07\xb5\x92\xd3\xed\xcc\x57\x55\xd3\x14\xe2\x64\x5a\xf7\xa1\x25\x5d\x1c\x79\x84\x8d\xb8\xfa\xf6\x46\x45\x12\x1e\x5c\x1c\xf8\xc4\x1b\xd0\xc8\xe1\x0b\x37\xba\x12\x19\xff\x3d\xd0\xfe\x21\x71\xcf\xfe\xf1\x52\xb6\xef\x44\xde\x03\x95\x5b\x2d\xc4\x26\xf7\x41\xc9\xd3\x61\x90\xf2\x5b\x03\xc4\xc7\x81\xf1\x87\x2f\x24\x74\x12\x47\x6c\x65\xb2\x9c\x3d\xb6\x98\xa8\xe1\x10\x33\xd6\x1b\xc2\xc1\x16\x2f\xed\x2e\x38\x56\x70\x53\x57\x62\xa2\x72\x26\x5f\x34\xf6\x04\x63\xca\x76\x12\x85\x01\x0f\xe5\x4b\xfc\x46\x4d\xe1\xf8\x8d\x49\xdf\xf4\x10\x28\xae\xf8\xef\x0f\xe9\xfd\x22\xf1\x43\x87\x22\x91\xf5\x49\x2a\x25\xc8\x77\x90\x1f\x44\x33\x87\xd9\x7a\x6b\xf1\xd9\x7d\x0d\xe8\x26\xd4\x95\xfb\xa0\xdb\xda\x49\x54\xba\xef\xa6\x5a\xcc\xf8\x12\x34\xd5\x2b\x60\xf7\xde\x3a\x73\x10\x7e\x02\xad\xe0\x27\xd0\xe4\x75\xd6\xa3\x20\x21\x9a\x90\x30\x63\xe7\x82\x8a\x46\xc9\xf1\xae\xe8\xd3\x11\xb6\x25\x4e\xe2\x58\x2d\x51\x42\xbe\x18\xb5\x62\xca\xea\x30\xcd\xcc\xe1\x7c\x8a\x19\xc6\x45\xb5\xc7\x81\x25\xc3\x2c\xb1\x26\x8c\x92\xf4\xed\xc7\x78\x24\xa2\x3f\x0d\xd3\x36\xcd\x8a\x1f\x31\xb0\xb7\x85\x83\xe1\xa9\x60\x1d\xd7\x69\x96\xd1\x51\x15\x70\xb2\x0c\x53\x70\x87\xd5\xe7\x5d\x5c\x1a\xeb\x33\x4c\x50\x07\xf5\x11\x20\x1d\xb4\xf3\xc5\x5a\x1d\x75\x26\x08\xc9\xce\xcb\x8e\x98\xe4\xd0\x3c\x05\x29\xef\x73\xa6\xf6\x1a\xe7\x24\x0c\xbf\xbc\x8e\xc7\x4f\x83\x5c\xf6\x34\x60\xb7\x16\xc4\xde\x6c\x34\x7a\x15\xbb\x1d\xb8\x38\x9b\xe9\x39\x96\x63\x77\x6b\xa1\x60\x8b\xe3\xf0\x06\x1a\xdb\x53\x4b\x8a\x38\x72\xcb\x5e\xe7\x6b\xd6\x5d\x53\x8d\x3b\x82\xb7\xda\x3a\x2f\x44\xe4\x70\x83\xd2\x4b\x56\xcb\xfe\xa2\x3a\x06\xbd\xf4\x10\xae\x9a\xaf\xef\x2a\x54\x6a\x1c\x1f\x86\x7a\x33\xe8\x64\xc4\xf3\x0c\xe4\x8e\x1a\x06\x5d\x9c\xac\xe2\x2b\x3a\xc9\x0f\x06\xaf\x16\xee\x99\xd3\x53\x8e\xe9\xdc\xce\x99\xe3\xf1\x06\x57\x2e\xcc\xc3\x2b\x52\xcb\x4d\x17\xbf\xad\x67\xe8\x10\x1f\xc8\xa7\xaa\x3f\xd4\xb7\xb6\xec\x6e\xea\x45\x86\xd7\x6e\xbb\xb5\x5e\x4a\xbe\x2b\x45\x2f\xfe\x60\x46\x69\x4f\x72\x8d\xa0\x56\xe2\xfa\xae\x7b\x20\x61\xff\x1f\x2e\x28\x1d\xb6\xc2\xb4\xff\x3d\x06\x4f\x44\x69\x93\xee\x48\x76\xeb\x1f\xdd\xda\xd0\x60\x2c\x01\x43\x0c\x70\xdb\xa2\x2b\xfc\x3e\xff\x17\x8c\x20\xb8\x10\x0f\x87\xc1\x64\xa0\xab\x1f\xbc\x22\x7c\xa5\x86\x11\xf7\x90\x8d\x1b\x38\x4a\x37\x5b\x6e\xa8\x45\x94\xee\x76\xf6\x9a\xb1\x5e\x53\x1d\x18\x50\xd8\xee\x2d\x33\xf4\x20\xea\xc5\xdd\x63\x0c\x37\x21\x79\xb1\x7e\xbf\x63\xeb\xdd\xd4\x3d\x55\xff\x0b\x7e\x87\x4c\x41\x1e\x12\xc8\x56\x4d\xdb\xd0\xf4\x48\xb0\x1d\x7d\x5c\xe0\xa5\xa5\x75\x13\x05\xa0\xc0\xbe\xc9\xf6\x1a\x20\xc9\xca\x9c\x21\x99\x84\x0b\x8e\x96\xe4\x4b\x61\x8b\xb6\x32\xac\x96\x5c\xa8\x32\x1b\x7b\xb6\x95\x3a\xb6\x8c\xa0\xa4\x96\x69\xe6\x6c\x96\xaf\xce\xa2\x00\x3e\xd7\x94\x00\x16\x57\x1a\x1c\xc1\x86\xd0\xb5\xdf\x65\x3c\x54\x84\xda\x90\xe4\xf4\x0d\x92\xd3\x2b\x4e\x1e\xb7\x60\xbd\x72\xc5\x06\x9d\x3a\x54\x8e\xa3\x1a\x0c\xcb\xbc\xe0\xe0\x07\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\xdc\xf6\x0f\xe1\x6b\x16\x15\x0f\x94\xd0\x3d\x7b\xd8\x2b\xbd\x9f\x19\xf5\xaa\x99\xff\xad\x5c\xf4\x9d\x41\x9f\xcb\xcf\x00\x6a\xde\x34\x3d\x3f\x8d\xbb\x63\x71\x0b\x56\x58\x82\xa6\xe7\x96\xce\xe2\xd6\xe2\xe3\x08\x53\x02\x3d\x46\x95\x40\x1f\xc6\xd5\x96\x23\x2e\x52\x5b\xed\x7e\xd1\xef\x69\x81\xba\x06\xcf\x2e\x39\x52\xe3\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\xde\xca\x61\x85\xfa\x7c\xbf\xf8\x58\xf6\xec\xda\xb3\xce\x70\x9b\x1c\xd6\x75\x61\x60\xe9\x73\x80\xa5\xaf\x08\x2c\xbd\x82\x8a\x66\xa2\x56\xda\x74\xb6\x65\x9f\xc3\x2a\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\x8e\xa3\x23\xbb\xdf\xe2\x66\x21\x4f\xc8\x70\x64\x1d\xea\xc3\x3b\x49\x09\x60\x71\x92\x20\x58\xe3\x91\xb8\x00\x47\x48\x78\x02\xbf\x8a\x19\xa5\x70\x30\x0f\x2c\x8c\x8b\xe0\x2e\xd8\x3f\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\x8d\xbc\x06\x54\x27\x9a\x83\x3d\x12\x4c\xe4\x2d\x9c\x3a\xa7\x29\xec\x9d\x2f\x9d\x2b\x98\x48\xaf\x90\x59\x25\xc5\xe4\x2d\x3c\x83\x67\xdf\x96\x17\x05\x87\x91\xb4\xe8\xd9\x75\x4d\x33\x17\x54\x17\xe4\x4a\xd3\xf5\x2d\x64\x7d\x61\x17\x46\xef\x78\x1d\x90\x6d\x65\xdf\x85\xef\x64\xbf\x0d\xed\xe1\xaf\x1a\x8c\x32\x18\x58\x6c\x23\x64\xc3\xbc\xdb\x0d\x76\xa6\x75\x84\xc1\x54\x74\x64\x10\x90\xcd\x4c\x66\xf0\xfc\x9f\x9a\xcb\x08\xa4\x04\x28\x95\x7b\xae\x4d\x58\x1a\xa7\x17\x3b\x0e\x0c\x6a\x78\x83\x93\x4d\x80\xe5\xf1\xfb\xca\xd0\x2e\xf3\xc1\x5e\x6c\x9e\xa1\x9b\x85\x4d\xda\xbe\xb6\x57\x7a\x8c\x0c\x0e\x3d\x8c\x65\xa1\xb8\xbf\xf0\x6d\x2c\x8f\x8b\x80\x52\x70\x35\x1f\xd3\x48\xd5\x65\x21\x51\x0c\x23\x79\xe7\x03\x22\x61\x70\xa5\x93\x08\x14\x77\xf5\xe1\x4b\xf4\xc1\xcd\xaa\x11\x0e\xee\x30\xd9\xee\x3a\x53\xd3\xc3\x51\x0d\x41\x19\xa8\xf4\x84\xb0\xd9\xe0\x53\x1c\x4f\xc3\x7a\x24\x16\x6d\x66\x33\x76\x57\x5d\x07\x43\xd7\x4e\xe2\xdd\x6b\x55\x0d\xed\xee\xe1\x32\x40\xdf\x7a\x25\x17\x23\x78\xfa\x3d\xc5\xff\x90\x27\x25\xc3\x0e\xf8\x87\x25\x0f\xb4\xff\x4f\x79\x58\x72\xa8\xd1\xee\xe2\xae\x4c\x18\xbd\x1d\x0f\x5f\x97\x38\x60\xf1\xc6\x2f\xef\xcd\xe0\x3f\x14\xb3\xc8\xe8\xc2\x30\x62\x95\x28\x11\xb2\x40\x24\xc4\xa6\x13\x48\xf2\xea\x76\xd3\xb4\x8b\xb6\x0c\xdc\x6f\xd8\x5e\xe0\xf2\x15\xb5\x26\x25\xc6\x61\xeb\xe3\x2e\x48\xca\xf8\x96\x4e\xd2\x55\xd1\x93\x6a\x84\xde\x52\xb5\x76\x33\x68\x7b\xf4\x6a\xcc\xd2\x86\xd1\x60\xa1\xc4\x53\x66\x35\xe8\xf2\x80\x5d\x45\xdd\x96\x52\x12\x8c\xc2\xdc\xc9\x94\x23\x6a\x56\xd0\x7b\x49\x09\x43\x2d\x4a\x8a\x3c\xdb\x86\xd7\x88\xe5\x4b\xd3\xc7\x86\x2e\x41\x27\xb5\x9a\x41\xe7\x82\x5a\x01\x35\xcd\x71\x83\xde\x0c\x6d\x7b\x25\x15\x7e\x55\x6c\x88\xdc\xf5\x9a\xb2\xd3\x17\xeb\x39\x80\xa2\xa4\x40\x79\x52\xc0\x42\x90\x75\x25\xa7\x6f\xc3\xf4\xe0\x25\x37\xe4\xba\x37\xdc\x26\x60\x02\x33\x94\xbc\xe5\xf8\x8d\x3f\x68\xac\x9b\xe0\x45\x37\xf6\x81\x92\xf7\x61\x76\x1b\xee\x2f\x47\x0c\xc7\x15\x06\x6b\x81\x59\x66\xc8\xf1\x88\x13\x2e\x74\x89\xcd\xac\xc4\xd8\x54\x1e\x1d\x51\x64\xb2\x7c\xa0\x11\xa6\x20\x17\x68\x54\xdc\xe7\x6c\x66\x15\x80\x14\xf6\x00\xb6\x1f\x51\xde\xf7\x6d\x35\xdf\xf3\xbd\xa8\xda\x7f\xf0\xa2\x14\x63\x13\x97\x37\x82\xed\xf6\xe6\x35\x71\xa9\x5f\x87\x61\x07\x0f\xd9\x0f\xe0\x24\xca\x95\x75\x4b\x62\x5c\x59\x15\xb8\x56\x70\x00\x72\xd9\x18\x41\x6c\x79\xc7\xc9\xba\x9c\x97\x27\xf1\xd6\x22\xbd\x3c\xd6\x9c\x6e\xdb\xef\x2c\xde\xfb\xe5\xd9\xd5\xc5\x2d\xb4\xc4\xa0\x4a\x13\x80\x0c\x08\x83\xb3\x94\x38\x90\x15\x50\x88\x1a\xdd\xa8\xfd\xb8\x1e\xeb\x61\xb6\x23\xc4\xd6\x4d\xc3\xdd\xb6\xed\xcb\x1b\x3c\xfc\x9c\x3a\x47\xfe\x67\x73\x6f\x29\x33\x4b\xcf\xf6\x9b\xbe\x62\x2b\x30\x6b\x4d\x2d\x91\xf8\xb5\xf9\x72\x97\xb7\x16\x4e\x14\x91\x75\xd2\x07\x47\x0f\x66\xd1\xea\xcb\x7a\x79\xb6\x4f\x5e\x50\xbc\x7a\x73\x49\x9f\x8b\xf6\x46\x2e\x42\x75\xa4\x1f\xab\x1d\x83\xe9\xc3\xcb\x3c\x60\x4a\x01\xec\x9f\x91\x62\x4b\x85\x6f\xcc\xca\xf6\x53\xb5\x70\x04\x73\x71\x7c\x06\xbd\x03\x25\x85\x8b\x4f\x9b\x46\x2c\x20\x93\xfc\x7c\x27\x68\x3a\x9a\x48\xf2\x33\x06\xc2\x2f\x0e\xb3\x2d\xfb\xce\x10\x18\x06\x2d\x19\x8a\x67\xfa\x2c\xa5\x62\x7a\x24\xaa\xc4\xd0\x81\xc4\xe2\x59\xdb\x50\xa2\x8c\x8b\xdc\x65\x79\x3e\x8b\x98\x59\xb8\x73\x0d\xde\x27\xfe\x32\xdb\x9f\xb0\xb2\x40\xca\xb8\x6d\xd0\x93\xf1\x13\xe2\x12\x11\x64\x26\xfc\xd5\x9e\x70\x89\xab\xf6\x4f\xf6\x8c\x4a\x44\x8f\xb9\x8c\xf0\x3a\x61\x53\x73\x8b\x1d\x4d\x50\xfb\x60\xbf\x8f\x2b\xbe\x6b\xdb\x17\x5d\x9c\xe9\xc0\xdc\x3d\x94\xea\xc0\xe2\xeb\x28\x85\xcd\x77\x3b\xb7\x6d\x04\xaf\xf4\x80\x6c\x03\x90\x4f\xc2\x70\x02\x08\x5a\x04\xdd\xa0\x1e\x71\x09\x0b\x81\xd8\x33\x4c\x01\x86\x5b\x8f\x26\x37\xcb\x25\x47\xbd\xe2\xf0\x8c\x1a\xb2\x04\x41\xb0\xce\xd8\xc6\xda\x4a\x8a\xa3\x63\xc6\x4a\x39\x28\xb9\x78\x4c\xf6\xc0\xeb\x3b\x24\xf2\xa9\xc2\xc0\xdb\xbd\x7b\x19\xfb\xdd\xbe\x96\xf3\x52\x90\xa5\x0d\x71\x56\xd8\x08\xa4\x97\xb6\x69\x7a\x7b\x85\x21\x10\x5d\xde\x51\x32\xed\x69\xfd\xda\x21\x98\x6f\xba\x16\x99\xc4\x7b\x0f\xca\xe0\x9e\x6d\x01\x4b\xf9\x71\x21\xea\xf7\xb8\x04\xf5\xfb\x00\xb8\x18\x66\xd8\xc6\x7f\x89\x5f\xc2\xa4\x5d\x8f\xd9\xcc\x53\xa9\xd1\x06\x2c\x69\x43\xba\x09\x71\x50\xcc\x3d\x61\x9c\xda\xdd\xdc\x24\x69\x10\x64\x28\xbd\xf8\xd4\x50\x5e\xf0\xa9\xa1\xec\xe3\x53\xb5\x63\x83\x1e\x74\xdd\xc6\x26\xe2\xf2\xf2\x4d\x3c\xdb\x3e\x37\x78\x5c\x87\xed\xc5\xee\x71\x9c\x56\x8e\x25\x77\x2f\x65\xff\xbf\x47\x41\x09\xc5\x66\x88\x3f\x4d\x1d\xd6\xd1\xfd\xb6\xa9\xfa\xf2\xfb\x7b\xb8\x3a\xbf\xd7\x57\xc5\xfc\xde\xa3\x70\xdd\x54\x30\xf7\x0f\x16\x4e\xb5\x38\x80\x1e\x77\x78\x8f\xde\xff\x4c\xc5\x77\xba\x6a\x4b\xdb\xdf\x4f\x82\x27\x39\x47\x24\xed\xb7\x01\x47\xd0\xe1\x16\x60\x1d\x63\xdf\x91\x36\xc8\xc8\x48\x5e\xe8\xe5\xc5\x42\x36\xd0\x7c\x67\xd5\x3c\x47\xb2\xef\xa1\xc4\x98\xb5\x98\xb3\x6a\xaa\x6f\xfd\x43\xc8\xd8\xd7\x35\xbc\x3b\xac\x88\xbd\xaa\x0c\x3d\xdb\xe8\x01\x66\x28\xd8\xf4\xfd\x65\x2d\x80\xb1\x3b\xf5\xc5\x19\x0f\x38\xd4\x58\x0c\x07\x0c\xb7\xa6\xea\xef\xa5\xc4\x10\x0c\x86\x7d\x46\x87\xe1\xed\x7e\x8b\xd7\x17\x2f\x39\xe4\x19\xde\xcf\x1c\x75\x6b\x47\x92\x7e\x1e\xf6\x08\x09\x8e\x09\x89\xc7\x22\xbb\x6b\x64\x1b\xbd\xe1\x12\xaf\x46\x38\x6d\xa4\x6f\x70\xa5\xe5\xb0\x43\x9b\x90\x17\x4b\xa3\x42\xef\x38\xcf\x89\xb1\x13\x85\xcd\xd9\xd9\x91\x8a\x39\x13\x4e\x92\xca\x6f\xfb\x72\x4f\x95\x97\xf5\x0a\x64\xfa\x27\xfe\x49\xe2\x0e\xff\x74\x08\x12\x2f\x41\x28\xbc\xd8\x37\xe1\xa9\xf9\x0d\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\xb6\xd6\x0d\x01\x37\xb4\xd3\x23\x10\xc8\x83\x03\x10\x82\xf6\x96\x19\xa0\xe4\xc9\x8a\x94\xf4\x0b\xa2\x2c\xf1\xcf\x11\xa2\x97\xdf\x31\x50\xf0\xd4\x93\x40\xd9\x4b\x4f\xa3\x56\xeb\xb0\xcd\x5a\x6e\x1a\x3d\xd7\x11\x13\xa1\x80\xeb\x88\x89\xfd\x64\xf7\x0c\x7a\xd7\x36\x9f\xaa\x42\x5f\xc6\x12\xf8\x0b\x4d\x32\x50\x03\xf1\x35\x1b\x84\x56\xed\xba\x49\x84\x5b\x39\xe9\xf5\x04\xbf\xa2\xa9\xd3\xe5\xc7\xeb\x45\x60\xfd\x0a\xe4\x07\xa4\xa5\x84\x01\xaf\x16\x0e\x31\xa6\x33\x7e\x79\xe2\x1f\xc1\x82\x7a\x79\x30\x98\x4d\xb5\x2c\x9d\x32\x5a\x47\xf3\x86\xd2\x22\xe0\x75\xdf\xef\x3a\xf3\xfc\xc6\x93\x4d\xe9\x39\xfd\x18\x0c\x22\xac\x4a\x47\x32\xaa\x69\x57\xe1\x82\x20\xc0\x8b\x24\x4c\x63\xdc\xa0\x75\x77\x08\xc0\x75\x7b\x18\xf2\xb8\x55\xeb\x18\xa7\xad\x10\xff\xf6\xbc\x97\x05\x5c\xeb\x2c\x03\x4c\xb6\xcc\x50\xba\x4b\x32\x0c\x76\x49\xb3\x16\x9a\x2d\x5a\x89\x42\xc7\x7f\xae\xd8\x54\xc3\xe5\x84\x6b\xcf\xd2\x3a\xa2\xbd\x62\x2f\xbe\x73\xfa\xe9\xe1\x7d\x04\x7e\x41\x93\x65\x4c\x44\xed\x8f\x01\xca\xcf\xe5\x62\x1f\xdc\x1c\xfe\x2c\xbf\x55\x55\xef\xab\x69\xcc\x38\x78\x5f\xe3\xc5\x86\x0b\x49\x09\x60\xa6\x42\x51\x5a\xd7\x61\xe2\x6c\xa6\xce\x07\xdb\x77\xcd\xe3\x30\xcb\x50\x66\x71\x65\x86\x4c\xf2\x33\xdb\x88\x2b\xd5\xc0\x08\xcb\x60\x43\x89\x27\x4c\x43\x38\xab\xc0\xe0\xcd\xf2\x26\x3a\x6e\x59\xcd\x8e\x59\xd6\x6e\x16\xc0\xe2\xf8\x10\xbc\x19\x2b\x7d\x90\xfc\xbb\x4c\x2c\x93\xf7\x62\xb6\xf4\x61\xf0\x52\x9d\x69\xf7\x03\x33\xba\xc8\x9d\xef\x7e\xa7\x8e\x7c\x75\x10\xc1\x4e\x7e\x15\xa3\x97\x9e\x2c\xdc\xf2\xb7\x3e\xdc\x72\xf4\x5e\xf5\xf0\x35\x08\x17\x9d\x1f\xb5\xb2\x5d\xa2\xbc\xfc\x11\xf4\xe0\x49\xd7\x2e\x9e\xdc\x0f\x03\xef\xb3\xbe\x34\x8e\x69\x1d\x55\x29\xa3\xb3\x17\x0c\x7e\xd5\x57\x03\xe4\x77\x58\xaf\x28\xf5\xa4\x6a\x0e\x81\xed\xc2\xfa\x6b\x0d\xc3\x08\xdc\x86\xa8\x28\x72\x6d\x58\xa1\x06\xd6\x1e\xd7\x37\x78\x54\x21\x78\x38\xa2\xa9\xbf\xa6\x63\x93\x21\x7c\x7f\xd5\x78\xce\x5f\xdd\x2d\x17\x62\x4b\xb1\x6f\xbf\x07\xb4\x20\x33\x3a\x3d\x9d\x9e\x3c\x10\x33\x82\x9d\x09\xfd\x2c\xd2\x8f\xdb\xa7\x31\xa6\x8c\xe1\x34\x6a\x30\xf7\xef\x82\xc8\xdb\xf0\x23\x96\x8c\xaa\xd3\xa8\xa9\x12\xef\xfc\x3b\xf7\x5e\x55\xf2\x9e\x03\x20\x7f\x48\xf2\x15\x8f\x89\xfe\x4f\xf0\x6a\x9d\xf8\x28\x80\x46\xe9\x33\x91\x9f\xfc\xf5\x2d\x57\xfc\x6d\xda\x95\xc4\x34\x11\xba\xf7\xdb\x2d\x12\xb6\x74\xb4\x26\x56\xc4\x09\x6b\x24\xf0\xe3\x8b\xf8\x59\xe0\x67\x91\xdf\xe0\xd7\x35\x7e\x5d\x97\xe5\x47\x29\x0c\xae\x4a\xc5\xe9\x70\xbe\x46\xca\x0d\x7e\xdf\x70\x88\xdb\xfb\xec\x9f\xc5\xed\xe8\x13\x05\xf6\x03\x01\x83\xb9\x39\x4d\xb7\x1f\x94\x2e\xcf\xf4\x3f\xf5\x2f\xf6\xdf\xe7\x6b\xff\x1b\x4d\xc2\x17\xa5\x70\xf3\x9a\x24\x9f\xf7\xc1\x1a\xfb\xb5\x55\x28\xdf\x94\xca\xfd\xd0\x44\xf9\xa4\xb4\x36\xbf\xce\x7c\xbf\xf4\x0b\xa9\xbe\x57\xfa\x45\xe8\x2d\xda\x66\xc7\xc1\x43\x3f\xb8\x17\x2d\xfd\x73\x5f\xa7\x94\xa7\x01\x92\x10\x31\x92\x9d\x90\xf9\x71\x3e\x79\xd0\x97\x5d\x74\x67\x89\x05\xf5\xad\xea\xdd\xde\x9d\x4f\x7d\x44\x69\x01\xf3\x51\x96\xc4\x50\x9d\xdf\xf0\x91\x07\xce\x68\x76\xb3\x39\xf6\x3d\x9c\x7b\xf9\x30\xf0\xf0\x5f\xff\x15\xe0\xf4\xf9\x6f\xff\x96\x9e\x3d\x7f\x94\x96\x9f\x39\x66\x5c\x97\x6e\xf3\xcf\x38\x15\x28\x14\xfd\x7c\x11\x01\xb2\x63\x2e\x4c\x8e\xf5\x1a\x4a\xdf\xf4\xc6\xdd\xd3\xff\x0f\x00\x00\xff\xff\xbe\xe6\xd3\x04\x7e\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\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") 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: 44670, mode: os.FileMode(420), modTime: time.Unix(1447011494, 0)} + info := bindataFileInfo{name: "conf/locale/locale_en-US.ini", size: 44681, mode: os.FileMode(420), modTime: time.Unix(1447476053, 0)} a := &asset{bytes: bytes, info: info} return a, nil } diff --git a/public/config.codekit b/public/config.codekit index f5d95f6d..f57092c9 100644 --- a/public/config.codekit +++ b/public/config.codekit @@ -56,6 +56,15 @@ "outputPathIsOutsideProject": 0, "outputPathIsSetByUser": 0 }, + "\/css\/highlight-8.7\/github.css": { + "fileType": 16, + "ignore": 0, + "ignoreWasSetByUser": 0, + "inputAbbreviatedPath": "\/css\/highlight-8.7\/github.css", + "outputAbbreviatedPath": "No Output Path", + "outputPathIsOutsideProject": 0, + "outputPathIsSetByUser": 0 + }, "\/css\/jquery.datetimepicker-2.4.5.css": { "fileType": 16, "ignore": 0, @@ -191,7 +200,7 @@ "outputPathIsOutsideProject": 0, "outputPathIsSetByUser": 0, "outputStyle": 1, - "syntaxCheckerStyle": 1 + "syntaxCheckerStyle": 0 }, "\/js\/jquery-1.11.3.min.js": { "fileType": 64, diff --git a/public/css/gogs.css b/public/css/gogs.css index 145f38ad..4e16ff6f 100755 --- a/public/css/gogs.css +++ b/public/css/gogs.css @@ -1,6 +1,6 @@ @font-face { font-family: 'octicons'; - src: url('../fonts/octicons.eot?#iefix&v=396334ee3da78f4302d25c758ae3e3ce5dc3c97d') format('embedded-opentype'), url('../fonts/octicons.woff?v=396334ee3da78f4302d25c758ae3e3ce5dc3c97d') format('woff'), url('../fonts/octicons.ttf?v=396334ee3da78f4302d25c758ae3e3ce5dc3c97d') format('truetype'), url('../fonts/octicons.svg?v=396334ee3da78f4302d25c758ae3e3ce5dc3c97d#octicons') format('svg'); + src: url('../fonts/octicons.eot?#iefix&v=30e752e9a0821a0a098947055eeece0b0f46bc34') format('embedded-opentype'), url('../fonts/octicons.woff?v=30e752e9a0821a0a098947055eeece0b0f46bc34') format('woff'), url('../fonts/octicons.ttf?v=30e752e9a0821a0a098947055eeece0b0f46bc34') format('truetype'), url('../fonts/octicons.svg?v=30e752e9a0821a0a098947055eeece0b0f46bc34#octicons') format('svg'); font-weight: normal; font-style: normal; } @@ -65,6 +65,10 @@ content: '\f0de'; } /*  */ +.octicon-bold:before { + content: '\f0e2'; +} +/*  */ .octicon-book:before { content: '\f007'; } @@ -364,6 +368,10 @@ content: '\f027'; } /*  */ +.octicon-italic:before { + content: '\f0e4'; +} +/*  */ .octicon-jersey:before { content: '\f019'; } @@ -411,6 +419,10 @@ content: '\f06a'; } /*  */ +.octicon-logo-gist:before { + content: '\f0ad'; +} +/*  */ .octicon-logo-github:before { content: '\f092'; } @@ -568,14 +580,6 @@ content: '\f047'; } /*  */ -.octicon-screen-full:before { - content: '\f066'; -} -/*  */ -.octicon-screen-normal:before { - content: '\f067'; -} -/*  */ .octicon-search-save:before, .octicon-search:before { content: '\f02e'; @@ -628,6 +632,10 @@ content: '\f015'; } /*  */ +.octicon-tasklist:before { + content: '\f0e5'; +} +/*  */ .octicon-telescope:before { content: '\f088'; } @@ -636,6 +644,10 @@ content: '\f0c8'; } /*  */ +.octicon-text-size:before { + content: '\f0e3'; +} +/*  */ .octicon-three-bars:before { content: '\f05e'; } @@ -809,6 +821,12 @@ pre.raw { .ui .text.blue a:hover { color: #428bca !important; } +.ui .text.black { + color: #444; +} +.ui .text.black:hover { + color: #000; +} .ui .text.grey { color: #767676 !important; } @@ -839,6 +857,9 @@ pre.raw { .ui .text.small { font-size: 0.75em; } +.ui .text.normal { + font-weight: normal; +} .ui .text.bold { font-weight: bold; } @@ -1049,8 +1070,9 @@ footer .container .links > *:first-child { overflow: hidden; font-family: "Helvetica Neue", Helvetica, "Segoe UI", Arial, freesans, sans-serif; font-size: 16px; - line-height: 1.6; + line-height: 1.6 !important; word-wrap: break-word; + padding: 5px 2em 2em !important; } .markdown > *:first-child { margin-top: 0 !important; @@ -1185,6 +1207,9 @@ footer .container .links > *:first-child { margin-top: 0; margin-bottom: 16px; } +.markdown blockquote { + margin-left: 0; +} .markdown hr { height: 4px; padding: 0; @@ -1449,115 +1474,6 @@ footer .container .links > *:first-child { background: #f8f8f8; border-top: 0; } -/* Author: jmblog */ -/* Project: https://github.com/jmblog/color-themes-for-google-code-prettify */ -/* GitHub Theme */ -/* Pretty printing styles. Used with prettify.js. */ -/* SPAN elements with the classes below are added by prettyprint. */ -/* plain text */ -.pln { - color: #333333; -} -@media screen { - /* string content */ - .str { - color: #dd1144; - } - /* a keyword */ - .kwd { - color: #333333; - } - /* a comment */ - .com { - color: #999988; - font-style: italic; - } - /* a type name */ - .typ { - color: #445588; - } - /* a literal value */ - .lit { - color: #445588; - } - /* punctuation */ - .pun { - color: #333333; - } - /* lisp open bracket */ - .opn { - color: #333333; - } - /* lisp close bracket */ - .clo { - color: #333333; - } - /* a markup tag name */ - .tag { - color: navy; - } - /* a markup attribute name */ - .atn { - color: teal; - } - /* a markup attribute value */ - .atv { - color: #dd1144; - } - /* a declaration */ - .dec { - color: #333333; - } - /* a variable name */ - .var { - color: teal; - } - /* a function name */ - .fun { - color: #990000; - } -} -/* Use higher contrast and text-weight for printable form. */ -@media print, projection { - .str { - color: #006600; - } - .kwd { - color: #006; - font-weight: bold; - } - .com { - color: #600; - font-style: italic; - } - .typ { - color: #404; - font-weight: bold; - } - .lit { - color: #004444; - } - .pun, - .opn, - .clo { - color: #444400; - } - .tag { - color: #006; - font-weight: bold; - } - .atn { - color: #440044; - } - .atv { - color: #006600; - } -} -/* Specify class=linenums on a pre to get line numbering */ -ol.linenums { - margin-top: 0; - margin-bottom: 0; -} .home { padding-bottom: 80px; } @@ -1877,6 +1793,158 @@ ol.linenums { margin: 1px; padding-right: 0; } +.repository.file.list #repo-desc { + font-size: 1.2em; +} +.repository.file.list .choose.reference .header .icon { + font-size: 1.4em; +} +.repository.file.list .head.meta { + padding: 0; +} +.repository.file.list .head.meta li { + list-style: none; + display: inline-block; +} +.repository.file.list .head.meta li .ui.breadcrumb { + margin-top: -5px; +} +.repository.file.list .head.meta li .ui.breadcrumb span, +.repository.file.list .head.meta li .ui.breadcrumb a { + font-size: 16px; +} +.repository.file.list .clone.input { + margin-top: -8px; + width: 100%; +} +.repository.file.list .clone.input input { + border-radius: 0; + padding: 5px 10px; +} +.repository.file.list .clone.input .clone.button { + font-size: 13px; + padding: 0 5px; +} +.repository.file.list .clone.input .clone.button:first-child { + border-radius: .28571429rem 0 0 .28571429rem; +} +.repository.file.list .clone.input .icon.button { + padding: 0 10px; +} +.repository.file.list .clone.input .dropdown .menu { + right: 0!important; + left: auto!important; +} +.repository.file.list #repo-files-table .table.list { + width: 80% !important; +} +.repository.file.list #repo-files-table thead th { + padding-top: 8px; + padding-bottom: 5px; + font-weight: normal; +} +.repository.file.list #repo-files-table thead th #last-commit-message { + margin-left: 5px; + margin-bottom: -4px; + width: 400px; +} +.repository.file.list #repo-files-table thead th .age { + margin-top: 2px; +} +.repository.file.list #repo-files-table thead .ui.avatar { + margin-bottom: 5px; +} +.repository.file.list #repo-files-table tbody .icon { + margin-left: 5px; +} +.repository.file.list #repo-files-table tbody .name { + max-width: 120px; +} +.repository.file.list #repo-files-table tbody .message { + max-width: 300px; +} +.repository.file.list #repo-files-table tbody .age { + min-width: 150px; +} +.repository.file.list #repo-files-table tbody .text.truncate { + margin-bottom: -5px; + max-width: 100%; +} +.repository.file.list #repo-files-table td { + padding-top: 8px; + padding-bottom: 8px; +} +.repository.file.list #repo-files-table tr:hover { + background-color: #ffffEE; +} +.repository.file.list #file-content .header .icon { + font-size: 1em; + margin-top: -2px; +} +.repository.file.list #file-content .view-raw * { + width: 100%; +} +.repository.file.list #file-content .view-raw img { + padding: 5px 5px 0 5px; +} +.repository.file.list #file-content .code-view * { + font-size: 13px; + font-family: monospace; + line-height: 20px; +} +.repository.file.list #file-content .code-view table { + width: 100%; +} +.repository.file.list #file-content .code-view .lines-num { + vertical-align: top; + text-align: right; + color: #999; + background: #f5f5f5; + width: 1%; +} +.repository.file.list #file-content .code-view .lines-num span { + font-family: Monaco, Menlo, Consolas, "Courier New", monospace; + line-height: 20px; + padding: 0 10px; + cursor: pointer; + display: block; +} +.repository.file.list #file-content .code-view .lines-num, +.repository.file.list #file-content .code-view .lines-code { + padding: 0; +} +.repository.file.list #file-content .code-view .lines-num pre, +.repository.file.list #file-content .code-view .lines-code pre, +.repository.file.list #file-content .code-view .lines-num ol, +.repository.file.list #file-content .code-view .lines-code ol, +.repository.file.list #file-content .code-view .lines-num .hljs, +.repository.file.list #file-content .code-view .lines-code .hljs { + background-color: white; + margin: 0; + padding: 0 !important; +} +.repository.file.list #file-content .code-view .lines-num pre li, +.repository.file.list #file-content .code-view .lines-code pre li, +.repository.file.list #file-content .code-view .lines-num ol li, +.repository.file.list #file-content .code-view .lines-code ol li, +.repository.file.list #file-content .code-view .lines-num .hljs li, +.repository.file.list #file-content .code-view .lines-code .hljs li { + padding-left: 5px; +} +.repository.file.list #file-content .code-view .lines-num pre li.active, +.repository.file.list #file-content .code-view .lines-code pre li.active, +.repository.file.list #file-content .code-view .lines-num ol li.active, +.repository.file.list #file-content .code-view .lines-code ol li.active, +.repository.file.list #file-content .code-view .lines-num .hljs li.active, +.repository.file.list #file-content .code-view .lines-code .hljs li.active { + background: #ffffdd; +} +.repository.file.list .sidebar { + padding-left: 0; +} +.repository.file.list .sidebar .octicon { + width: 16px; +} .repository.options #interval { width: 100px!important; min-width: 100px; diff --git a/public/css/highlight-8.7/github.css b/public/css/highlight-8.7/github.css new file mode 100644 index 00000000..6edb9ea9 --- /dev/null +++ b/public/css/highlight-8.7/github.css @@ -0,0 +1,98 @@ +/* + +github.com style (c) Vasily Polovnyov + +*/ + +.hljs { + display: block; + overflow-x: auto; + padding: 0.5em; + color: #333; + background: #f8f8f8; +} + +.hljs-comment, +.hljs-quote { + color: #998; + font-style: italic; +} + +.hljs-keyword, +.hljs-selector-tag, +.hljs-subst { + color: #333; + font-weight: bold; +} + +.hljs-number, +.hljs-literal, +.hljs-variable, +.hljs-template-variable, +.hljs-tag .hljs-attr { + color: #008080; +} + +.hljs-string, +.hljs-doctag { + color: #d14; +} + +.hljs-title, +.hljs-section, +.hljs-selector-id { + color: #900; + font-weight: bold; +} + +.hljs-subst { + font-weight: normal; +} + +.hljs-type, +.hljs-class .hljs-title { + color: #458; + font-weight: bold; +} + +.hljs-tag, +.hljs-name, +.hljs-attribute { + color: #000080; + font-weight: normal; +} + +.hljs-regexp, +.hljs-link { + color: #009926; +} + +.hljs-symbol, +.hljs-bullet { + color: #990073; +} + +.hljs-built_in { + color: #0086b3; +} + +.hljs-meta { + color: #999; + font-weight: bold; +} + +.hljs-deletion { + background: #fdd; +} + +.hljs-addition { + background: #dfd; +} + +.hljs-emphasis { + font-style: italic; +} + +.hljs-strong { + font-weight: bold; +} diff --git a/public/fonts/octicons.eot b/public/fonts/octicons.eot old mode 100755 new mode 100644 index 2bf20bca..2df623f2 Binary files a/public/fonts/octicons.eot and b/public/fonts/octicons.eot differ diff --git a/public/fonts/octicons.svg b/public/fonts/octicons.svg old mode 100755 new mode 100644 index d932988b..259a28e9 --- a/public/fonts/octicons.svg +++ b/public/fonts/octicons.svg @@ -27,15 +27,16 @@ Applies to all other files + - + - + @@ -100,6 +101,7 @@ Applies to all other files + @@ -107,10 +109,11 @@ Applies to all other files - - + + + @@ -118,7 +121,7 @@ Applies to all other files - + @@ -137,7 +140,7 @@ Applies to all other files - + @@ -148,8 +151,6 @@ Applies to all other files - - @@ -161,9 +162,11 @@ Applies to all other files + - + + diff --git a/public/fonts/octicons.ttf b/public/fonts/octicons.ttf old mode 100755 new mode 100644 index 32e6720a..15a42d17 Binary files a/public/fonts/octicons.ttf and b/public/fonts/octicons.ttf differ diff --git a/public/fonts/octicons.woff b/public/fonts/octicons.woff old mode 100755 new mode 100644 index cbf9f62e..51e10f1c Binary files a/public/fonts/octicons.woff and b/public/fonts/octicons.woff differ diff --git a/public/js/gogs.js b/public/js/gogs.js index 34c8c922..e0738a50 100644 --- a/public/js/gogs.js +++ b/public/js/gogs.js @@ -206,6 +206,31 @@ function initRepository() { return; } + function initFilterSearchDropdown(selector) { + var $dropdown = $(selector); + $dropdown.dropdown({ + fullTextSearch: true, + onChange: function (text, value, $choice) { + window.location.href = $choice.data('url'); + console.log($choice.data('url')) + }, + message: {noResults: $dropdown.data('no-results')} + }); + } + + // File list + if ($('.repository.file.list').length > 0) { + initFilterSearchDropdown('.choose.reference .dropdown'); + + $('.reference.column').click(function () { + $('.choose.reference .scrolling.menu').css('display', 'none'); + $('.choose.reference .text').removeClass('black'); + $($(this).data('target')).css('display', 'block'); + $(this).find('.text').addClass('black'); + return false; + }); + } + // Options if ($('.repository.settings.options').length > 0) { $('#repo_name').keyup(function () { @@ -289,23 +314,23 @@ function initRepository() { $('#edit-title').click(editTitleToggle); $('#cancel-edit-title').click(editTitleToggle); $('#save-edit-title').click(editTitleToggle). - click(function () { - if ($edit_input.val().length == 0 || - $edit_input.val() == $issue_title.text()) { - $edit_input.val($issue_title.text()); - return false; - } - - $.post($(this).data('update-url'), { - "_csrf": csrf, - "title": $edit_input.val() - }, - function (data) { - $edit_input.val(data.title); - $issue_title.text(data.title); - }); + click(function () { + if ($edit_input.val().length == 0 || + $edit_input.val() == $issue_title.text()) { + $edit_input.val($issue_title.text()); return false; - }); + } + + $.post($(this).data('update-url'), { + "_csrf": csrf, + "title": $edit_input.val() + }, + function (data) { + $edit_input.val(data.title); + $issue_title.text(data.title); + }); + return false; + }); // Edit issue or comment content $('.edit-content').click(function () { @@ -397,33 +422,26 @@ function initRepository() { } } - // Quick start - if ($('.repository.quickstart').length > 0) { - $('#repo-clone-ssh').click(function () { - $('.clone-url').text($(this).data('link')); - $('#repo-clone-url').val($(this).data('link')); - $(this).addClass('blue'); - $('#repo-clone-https').removeClass('blue'); - }); - $('#repo-clone-https').click(function () { - $('.clone-url').text($(this).data('link')); - $('#repo-clone-url').val($(this).data('link')); - $(this).addClass('blue'); - $('#repo-clone-ssh').removeClass('blue'); - }); - } + // Quick start and repository home + $('#repo-clone-ssh').click(function () { + $('.clone-url').text($(this).data('link')); + $('#repo-clone-url').val($(this).data('link')); + $(this).addClass('blue'); + $('#repo-clone-https').removeClass('blue'); + }); + $('#repo-clone-https').click(function () { + $('.clone-url').text($(this).data('link')); + $('#repo-clone-url').val($(this).data('link')); + $(this).addClass('blue'); + $('#repo-clone-ssh').removeClass('blue'); + }); + $('#repo-clone-url').click(function () { + $(this).select(); + }); // Pull request if ($('.repository.compare.pull').length > 0) { - var $branch_dropdown = $('.choose.branch .dropdown'); - $branch_dropdown.dropdown({ - fullTextSearch: true, - onChange: function (text, value, $choice) { - window.location.href = $choice.data('url'); - console.log($choice.data('url')) - }, - message: {noResults: $branch_dropdown.data('no-results')} - }); + initFilterSearchDropdown('.choose.branch .dropdown'); } } @@ -540,7 +558,7 @@ function initAdmin() { } function buttonsClickOnEnter() { - $('.ui.button').keypress(function(e){ + $('.ui.button').keypress(function (e) { if (e.keyCode == 13 || e.keyCode == 32) // enter key or space bar $(this).click(); }); @@ -553,9 +571,9 @@ $(document).ready(function () { // Show exact time $('.time-since').each(function () { $(this).addClass('poping up'). - attr('data-content', $(this).attr('title')). - attr('data-variation', 'inverted tiny'). - attr('title', ''); + attr('data-content', $(this).attr('title')). + attr('data-variation', 'inverted tiny'). + attr('title', ''); }); // Semantic UI modules. @@ -678,6 +696,26 @@ $(document).ready(function () { $($(this).data('modal')).modal('show'); }); + // Set anchor. + $('.markdown').each(function () { + var headers = {}; + $(this).find('h1, h2, h3, h4, h5, h6').each(function () { + var node = $(this); + var val = encodeURIComponent(node.text().toLowerCase().replace(/[^\w\- ]/g, '').replace(/[ ]/g, '-')); + var name = val; + if (headers[val] > 0) { + name = val + '-' + headers[val]; + } + if (headers[val] == undefined) { + headers[val] = 1; + } else { + headers[val] += 1; + } + node = node.wrap('
    '); + node.append(''); + }); + }); + buttonsClickOnEnter(); initCommentForm(); @@ -687,4 +725,88 @@ $(document).ready(function () { initUser(); initWebhook(); initAdmin(); +}); + +$(window).load(function () { + function changeHash(hash) { + if (history.pushState) { + history.pushState(null, null, hash); + } + else { + location.hash = hash; + } + } + + function deSelect() { + if (window.getSelection) { + window.getSelection().removeAllRanges(); + } else { + document.selection.empty(); + } + } + + function selectRange($list, $select, $from) { + $list.removeClass('active'); + if ($from) { + var a = parseInt($select.attr('rel').substr(1)); + var b = parseInt($from.attr('rel').substr(1)); + var c; + if (a != b) { + if (a > b) { + c = a; + a = b; + b = c; + } + var classes = []; + for (i = a; i <= b; i++) { + classes.push('.L' + i); + } + $list.filter(classes.join(',')).addClass('active'); + changeHash('#L' + a + '-' + 'L' + b); + return + } + } + $select.addClass('active'); + changeHash('#' + $select.attr('rel')); + } + + // Code view. + if ($('.code-view').length > 0) { + var $block = $('.code-view .linenums'); + var lines = $block.html().split("\n"); + $block.html(''); + + var $num_list = $('.code-view .lines-num'); + + // Building blocks. + for (var i = 0; i < lines.length; i++) { + $block.append('
  • ' + lines[i] + '
  • '); + $num_list.append('' + (i + 1) + ''); + } + + $(document).on('click', '.lines-num span', function (e) { + var $select = $(this); + var $list = $select.parent().siblings('.lines-code').find('ol.linenums > li'); + selectRange($list, $list.filter('[rel=' + $select.attr('id') + ']'), (e.shiftKey ? $list.filter('.active').eq(0) : null)); + deSelect(); + }); + + $(window).on('hashchange', function (e) { + var m = window.location.hash.match(/^#(L\d+)\-(L\d+)$/); + var $list = $('.code-view ol.linenums > li'); + var $first; + if (m) { + $first = $list.filter('.' + m[1]); + selectRange($list, $first, $list.filter('.' + m[2])); + $("html, body").scrollTop($first.offset().top - 200); + return; + } + m = window.location.hash.match(/^#(L\d+)$/); + if (m) { + $first = $list.filter('.' + m[1]); + selectRange($list, $first); + $("html, body").scrollTop($first.offset().top - 200); + } + }).trigger('hashchange'); + } }); \ No newline at end of file diff --git a/public/less/_base.less b/public/less/_base.less index 21591cb1..fca214b3 100644 --- a/public/less/_base.less +++ b/public/less/_base.less @@ -112,6 +112,12 @@ pre { } } } + &.black { + color: #444; + &:hover { + color: #000; + } + } &.grey { color: #767676 !important; a { @@ -143,6 +149,9 @@ pre { &.small { font-size: 0.75em; } + &.normal { + font-weight: normal; + } &.bold { font-weight: bold; } diff --git a/public/less/_markdown.less b/public/less/_markdown.less index d51c1afc..6b88e48b 100644 --- a/public/less/_markdown.less +++ b/public/less/_markdown.less @@ -1,39 +1,40 @@ .markdown { - overflow:hidden; - font-family:"Helvetica Neue", Helvetica, "Segoe UI", Arial, freesans, sans-serif; - font-size:16px; - line-height:1.6; - word-wrap:break-word; + overflow: hidden; + font-family: "Helvetica Neue", Helvetica, "Segoe UI", Arial, freesans, sans-serif; + font-size: 16px; + line-height: 1.6 !important; + word-wrap: break-word; + padding: 5px 2em 2em !important; >*:first-child { - margin-top:0 !important; + margin-top: 0 !important; } >*:last-child { - margin-bottom:0 !important; + margin-bottom: 0 !important; } a:not([href]) { - color:inherit; - text-decoration:none; + color: inherit; + text-decoration: none; } .absent { - color:#c00; + color: #c00; } .anchor { - position:absolute; - top:0; - left:0; - display:block; - padding-right:6px; - padding-left:30px; - margin-left:-30px; + position: absolute; + top: 0; + left: 0; + display: block; + padding-right: 6px; + padding-left: 30px; + margin-left: -30px; } .anchor:focus { - outline:none; + outline: none; } h1, @@ -42,11 +43,11 @@ h4, h5, h6 { - position:relative; - margin-top:1em; - margin-bottom:16px; - font-weight:bold; - line-height:1.4; + position: relative; + margin-top: 1em; + margin-bottom: 16px; + font-weight: bold; + line-height: 1.4; } h1 .octicon-link, @@ -157,8 +158,11 @@ dl, table, pre { - margin-top:0; - margin-bottom:16px; + margin-top: 0; + margin-bottom: 16px; + } + blockquote { + margin-left: 0; } hr { @@ -471,124 +475,4 @@ font-weight:bold; background:#f8f8f8;border-top:0; } - -} - -/* Author: jmblog */ - -/* Project: https://github.com/jmblog/color-themes-for-google-code-prettify */ - -/* GitHub Theme */ - -/* Pretty printing styles. Used with prettify.js. */ - -/* SPAN elements with the classes below are added by prettyprint. */ - -/* plain text */ - -.pln { - color: #333333; -} -@media screen { - /* string content */ - .str { - color: #dd1144; - } - /* a keyword */ - .kwd { - color: #333333; - } - /* a comment */ - .com { - color: #999988; - font-style: italic; - } - /* a type name */ - .typ { - color: #445588; - } - /* a literal value */ - .lit { - color: #445588; - } - /* punctuation */ - .pun { - color: #333333; - } - /* lisp open bracket */ - .opn { - color: #333333; - } - /* lisp close bracket */ - .clo { - color: #333333; - } - /* a markup tag name */ - .tag { - color: navy; - } - /* a markup attribute name */ - .atn { - color: teal; - } - /* a markup attribute value */ - .atv { - color: #dd1144; - } - /* a declaration */ - .dec { - color: #333333; - } - /* a variable name */ - .var { - color: teal; - } - /* a function name */ - .fun { - color: #990000; - } -} -/* Use higher contrast and text-weight for printable form. */ - -@media print, -projection { - .str { - color: #006600; - } - .kwd { - color: #006; - font-weight: bold; - } - .com { - color: #600; - font-style: italic; - } - .typ { - color: #404; - font-weight: bold; - } - .lit { - color: #004444; - } - .pun, - .opn, - .clo { - color: #444400; - } - .tag { - color: #006; - font-weight: bold; - } - .atn { - color: #440044; - } - .atv { - color: #006600; - } -} -/* Specify class=linenums on a pre to get line numbering */ - -ol.linenums { - margin-top: 0; - margin-bottom: 0; } \ No newline at end of file diff --git a/public/less/_octicons.less b/public/less/_octicons.less index be97b690..dfd437e6 100755 --- a/public/less/_octicons.less +++ b/public/less/_octicons.less @@ -1,6 +1,6 @@ -// v3.1.0 +// v3.3.0 @octicons-font-path: "../fonts"; -@octicons-version: "396334ee3da78f4302d25c758ae3e3ce5dc3c97d"; +@octicons-version: "30e752e9a0821a0a098947055eeece0b0f46bc34"; @font-face { font-family: 'octicons'; @@ -40,6 +40,7 @@ .octicon-microscope:before, .octicon-beaker:before { content: '\f0dd'} /*  */ .octicon-bell:before { content: '\f0de'} /*  */ +.octicon-bold:before { content: '\f0e2'} /*  */ .octicon-book:before { content: '\f007'} /*  */ .octicon-bookmark:before { content: '\f07b'} /*  */ .octicon-briefcase:before { content: '\f0d3'} /*  */ @@ -120,6 +121,7 @@ .octicon-issue-closed:before { content: '\f028'} /*  */ .octicon-issue-opened:before { content: '\f026'} /*  */ .octicon-issue-reopened:before { content: '\f027'} /*  */ +.octicon-italic:before { content: '\f0e4'} /*  */ .octicon-jersey:before { content: '\f019'} /*  */ .octicon-key:before { content: '\f049'} /*  */ .octicon-keyboard:before { content: '\f00d'} /*  */ @@ -134,6 +136,7 @@ .octicon-mirror-private:before, .octicon-git-fork-private:before, .octicon-lock:before { content: '\f06a'} /*  */ +.octicon-logo-gist:before { content: '\f0ad'} /*  */ .octicon-logo-github:before { content: '\f092'} /*  */ .octicon-mail:before { content: '\f03b'} /*  */ .octicon-mail-read:before { content: '\f03c'} /*  */ @@ -180,8 +183,6 @@ .octicon-rocket:before { content: '\f033'} /*  */ .octicon-rss:before { content: '\f034'} /*  */ .octicon-ruby:before { content: '\f047'} /*  */ -.octicon-screen-full:before { content: '\f066'} /*  */ -.octicon-screen-normal:before { content: '\f067'} /*  */ .octicon-search-save:before, .octicon-search:before { content: '\f02e'} /*  */ .octicon-server:before { content: '\f097'} /*  */ @@ -201,8 +202,10 @@ .octicon-tag-remove:before, .octicon-tag-add:before, .octicon-tag:before { content: '\f015'} /*  */ +.octicon-tasklist:before { content: '\f0e5'} /*  */ .octicon-telescope:before { content: '\f088'} /*  */ .octicon-terminal:before { content: '\f0c8'} /*  */ +.octicon-text-size:before { content: '\f0e3'} /*  */ .octicon-three-bars:before { content: '\f05e'} /*  */ .octicon-thumbsdown:before { content: '\f0db'} /*  */ .octicon-thumbsup:before { content: '\f0da'} /*  */ diff --git a/public/less/_repository.less b/public/less/_repository.less index 9035d558..e73d78c4 100644 --- a/public/less/_repository.less +++ b/public/less/_repository.less @@ -78,6 +78,181 @@ padding-right: 0; } } + + &.file.list { + #repo-desc { + font-size: 1.2em; + } + .choose.reference { + .header .icon { + font-size: 1.4em; + } + } + .head.meta { + padding: 0; + li { + list-style: none; + display: inline-block; + + .ui.breadcrumb { + margin-top: -5px; + + span, + a { + font-size: 16px; + } + } + } + } + + .clone.input { + margin-top: -8px; + width: 100%; + + input { + border-radius: 0; + padding: 5px 10px; + } + + .clone.button { + font-size: 13px; + padding: 0 5px; + &:first-child { + border-radius: .28571429rem 0 0 .28571429rem; + } + } + .icon.button { + padding: 0 10px; + } + .dropdown .menu { + right: 0!important; + left: auto!important; + } + } + + #repo-files-table { + .table.list { + width: 80% !important; + } + + thead { + th { + padding-top: 8px; + padding-bottom: 5px; + font-weight: normal; + + #last-commit-message { + margin-left: 5px; + margin-bottom: -4px; + width: 400px; + } + .age { + margin-top: 2px; + } + } + .ui.avatar { + margin-bottom: 5px; + } + } + tbody { + .icon { + margin-left: 5px; + } + .name { + max-width: 120px; + } + .message { + max-width: 300px; + } + .age { + min-width: 150px; + } + + .text.truncate { + margin-bottom: -5px; + max-width: 100%; + } + } + td { + padding-top: 8px; + padding-bottom: 8px; + } + tr:hover { + background-color: #ffffEE; + } + } + + #file-content { + .header { + .icon { + font-size: 1em; + margin-top: -2px; + } + } + .view-raw { + * { + width: 100%; + } + img { + padding: 5px 5px 0 5px; + } + } + + .code-view { + * { + font-size: 13px; + font-family: monospace; + line-height: 20px; + } + + table { + width: 100%; + } + .lines-num { + vertical-align: top; + text-align: right; + color: #999; + background: #f5f5f5; + width: 1%; + + span { + font-family: Monaco, Menlo, Consolas, "Courier New", monospace; + line-height: 20px; + padding: 0 10px; + cursor: pointer; + display: block; + } + } + .lines-num, + .lines-code { + padding: 0; + + + pre, + ol, + .hljs { + background-color: white; + margin: 0; + padding: 0 !important; + li { + padding-left: 5px; + &.active { + background: #ffffdd; + } + } + } + } + } + } + + .sidebar { + padding-left: 0; + + .octicon { + width: 16px; + } + } + } &.options { #interval { diff --git a/routers/repo/view.go b/routers/repo/view.go index 1d9f1f3d..e9cb7b33 100644 --- a/routers/repo/view.go +++ b/routers/repo/view.go @@ -25,6 +25,7 @@ const ( func Home(ctx *middleware.Context) { ctx.Data["Title"] = ctx.Repo.Repository.Name + ctx.Data["RequireHighlightJS"] = true branchName := ctx.Repo.BranchName userName := ctx.Repo.Owner.Name diff --git a/templates/.VERSION b/templates/.VERSION index 0c08e60d..548d9a0e 100644 --- a/templates/.VERSION +++ b/templates/.VERSION @@ -1 +1 @@ -0.7.8.1113 Beta \ No newline at end of file +0.7.9.1114 Beta \ No newline at end of file diff --git a/templates/base/footer.tmpl b/templates/base/footer.tmpl index 689aac81..686b82f2 100644 --- a/templates/base/footer.tmpl +++ b/templates/base/footer.tmpl @@ -28,7 +28,7 @@ {{if .RequireHighlightJS}} - + {{end}} {{if .RequireMinicolors}} diff --git a/templates/repo/home.tmpl b/templates/repo/home.tmpl index 0be1b84d..d15e7b30 100644 --- a/templates/repo/home.tmpl +++ b/templates/repo/home.tmpl @@ -1,81 +1,117 @@ -{{template "ng/base/head" .}} -{{template "ng/base/header" .}} -
    - {{template "repo/header_old" .}} -
    -
    -

    - {{if .Repository.DescriptionHtml}}{{.Repository.DescriptionHtml}}{{else}}{{.i18n.Tr "repo.no_desc"}}{{end}} - {{.Repository.Website}} -

    - - {{if .IsFile}} - {{template "repo/view_file" .}} +
    +
    +
    + + + + + + +
  • + - {{template "repo/sidebar" .}} - +
  • + + {{if .IsFile}} + {{template "repo/view_file" .}} + {{else}} + {{template "repo/view_list" .}} + {{end}} + -{{template "ng/base/footer" .}} +{{template "base/footer" .}} diff --git a/templates/repo/sidebar.tmpl b/templates/repo/sidebar.tmpl index 6859dabf..df033c0e 100644 --- a/templates/repo/sidebar.tmpl +++ b/templates/repo/sidebar.tmpl @@ -1,30 +1,19 @@ -
    - + \ No newline at end of file diff --git a/templates/repo/sidebar_mini.tmpl b/templates/repo/sidebar_mini.tmpl deleted file mode 100644 index dfd48c84..00000000 --- a/templates/repo/sidebar_mini.tmpl +++ /dev/null @@ -1,12 +0,0 @@ - \ No newline at end of file diff --git a/templates/repo/view_file.tmpl b/templates/repo/view_file.tmpl index a0d6781c..827e5193 100644 --- a/templates/repo/view_file.tmpl +++ b/templates/repo/view_file.tmpl @@ -1,50 +1,50 @@ -
    -

    - {{if .ReadmeExist}} - - {{if .ReadmeInList}} - {{.FileName}} - {{else}} - {{.FileName}}{{FileSize .FileSize}} - {{end}} - {{else}} - - {{.FileName}}{{FileSize .FileSize}} - {{end}} - {{if not .ReadmeInList}} - {{if not .IsCommit}} - - - - {{end}} - - - - - - +

    +

    + {{if .ReadmeExist}} + + {{if .ReadmeInList}} + {{.FileName}} + {{else}} + {{.FileName}} {{FileSize .FileSize}} + {{end}} + {{else}} + + {{.FileName}} {{FileSize .FileSize}} + {{end}} + {{if not .ReadmeInList}} +
    +
    + {{if not .IsCommit}} + {{.i18n.Tr "repo.file_permalink"}} {{end}} -

    -
    - {{if .ReadmeExist}} - {{if .FileContent}}{{.FileContent | Str2html}}{{end}} + {{.i18n.Tr "repo.file_history"}} + {{.i18n.Tr "repo.file_raw"}} +
    +
    + {{end}} +

    +
    +
    + {{if .ReadmeExist}} + {{if .FileContent}}{{.FileContent | Str2html}}{{end}} {{else if not .IsFileText}}
    - {{if .IsImageFile}} - - {{else}} - {{.i18n.Tr "repo.file_view_raw"}} - {{end}} + {{if .IsImageFile}} + + {{else}} + {{.i18n.Tr "repo.file_view_raw"}} + {{end}}
    - {{else if .FileSize}} + {{else if .FileSize}}
    - - - - - - + + + + + +
    {{.FileContent}}
      {{.FileContent}}
    - {{end}} + {{end}} - + + \ No newline at end of file diff --git a/templates/repo/view_list.tmpl b/templates/repo/view_list.tmpl index 50d0074b..9edbd687 100644 --- a/templates/repo/view_list.tmpl +++ b/templates/repo/view_list.tmpl @@ -1,69 +1,64 @@ - - +
    + - + - - - {{if .HasParentPath}} - - - - - - - - {{end}} - {{range $item := .Files}} - {{$entry := index $item 0}} - {{$commit := index $item 1}} - - {{if $entry.IsSubModule}} - - - {{else}} - - - {{end}} - - - - + + + {{if .HasParentPath}} + + + + + {{end}} + {{range $item := .Files}} + {{$entry := index $item 0}} + {{$commit := index $item 1}} + + {{if $entry.IsSubModule}} + + + {{else}} + + {{end}} - + + + + + {{end}} +
    - - {{if .LastCommitUser}} - - {{.LastCommit.Author.Name}}: - {{else}} - - {{.LastCommit.Author.Name}}: - {{end}} -   - - - {{ShortSha .LastCommit.ID.String}} - {{RenderCommitMessage .LastCommit.Summary .RepoLink}} - - {{TimeSince .LastCommit.Author.When $.Lang}} - + + {{if .LastCommitUser}} + + {{.LastCommit.Author.Name}}: + {{else}} + + {{.LastCommit.Author.Name}}: + {{end}} + + + {{ShortSha .LastCommit.ID.String}} + {{RenderCommitMessage .LastCommit.Summary .RepoLink}} + {{TimeSince .LastCommit.Author.When $.Lang}} +
    ..SHA1
    - - - {{if $commit.RefUrl}} - {{$entry.Name}} @ {{ShortSha $commit.RefId}} - {{else}} - {{$entry.Name}} @ {{ShortSha $commit.RefId}} - {{end}} - - - - {{$entry.Name}} - - {{SubStr $commit.ID.String 0 10}} - - {{RenderCommitMessage $commit.Summary $.RepoLink}} - {{TimeSince $commit.Committer.When $.Lang}}
    ..
    + + + {{if $commit.RefUrl}} + {{$entry.Name}} @ {{ShortSha $commit.RefId}} + {{else}} + {{$entry.Name}} @ {{ShortSha $commit.RefId}} + {{end}} + + + + {{$entry.Name}} +
    + {{SubStr $commit.ID.String 0 10}} + + {{RenderCommitMessage $commit.Summary $.RepoLink}} + {{TimeSince $commit.Committer.When $.Lang}}
    {{if .ReadmeExist}} - {{template "repo/view_file" .}} + {{template "repo/view_file" .}} {{end}} -- cgit v1.2.3 From 7c80eba77f727c2b80b4091c850dc38d47532b8d Mon Sep 17 00:00:00 2001 From: Unknwon Date: Sat, 14 Nov 2015 13:21:31 -0500 Subject: minor UI fix and fix ssh race --- README.md | 2 +- cmd/web.go | 3 ++- gogs.go | 2 +- modules/ssh/ssh.go | 24 ++++++++++++++++++------ routers/repo/commit.go | 3 +++ templates/.VERSION | 2 +- templates/repo/commits.tmpl | 1 + templates/repo/settings/deploy_keys.tmpl | 1 + templates/repo/settings/githook_edit.tmpl | 1 + templates/repo/settings/githooks.tmpl | 1 + templates/repo/settings/hook_new.tmpl | 1 + templates/repo/settings/hooks.tmpl | 1 + templates/repo/settings/options.tmpl | 1 + 13 files changed, 33 insertions(+), 10 deletions(-) (limited to 'gogs.go') diff --git a/README.md b/README.md index 03cb070e..02e624c0 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.9 Beta +##### Current version: 0.7.10 Beta diff --git a/cmd/web.go b/cmd/web.go index e51b1bb9..950c3d48 100644 --- a/cmd/web.go +++ b/cmd/web.go @@ -87,6 +87,7 @@ func checkVersion() { {"github.com/go-macaron/csrf", csrf.Version, "0.0.3"}, {"github.com/go-macaron/i18n", i18n.Version, "0.0.7"}, {"github.com/go-macaron/session", session.Version, "0.1.6"}, + {"github.com/go-macaron/toolbox", toolbox.Version, "0.1.0"}, {"gopkg.in/ini.v1", ini.Version, "1.3.4"}, } for _, c := range checkers { @@ -463,7 +464,7 @@ func runWeb(ctx *cli.Context) { }) }) - }, reqSignIn, middleware.RepoAssignment(true), reqRepoAdmin) + }, reqSignIn, middleware.RepoAssignment(true), reqRepoAdmin, middleware.RepoRef()) m.Group("/:username/:reponame", func() { m.Get("/action/:action", repo.Action) diff --git a/gogs.go b/gogs.go index 37259d36..95b8e931 100644 --- a/gogs.go +++ b/gogs.go @@ -17,7 +17,7 @@ import ( "github.com/gogits/gogs/modules/setting" ) -const APP_VER = "0.7.9.1114 Beta" +const APP_VER = "0.7.10.1114 Beta" func init() { runtime.GOMAXPROCS(runtime.NumCPU()) diff --git a/modules/ssh/ssh.go b/modules/ssh/ssh.go index 5e3761ca..706f5e75 100644 --- a/modules/ssh/ssh.go +++ b/modules/ssh/ssh.go @@ -7,6 +7,7 @@ package ssh import ( + "fmt" "io" "io/ioutil" "net" @@ -82,14 +83,16 @@ func handleServerConn(keyID string, chans <-chan ssh.NewChannel) { return } - go io.Copy(ch, stdout) - go io.Copy(ch.Stderr(), stderr) - go io.Copy(input, ch) - if err = cmd.Start(); err != nil { log.Error(3, "Start: %v", err) return - } else if err = cmd.Wait(); err != nil { + } + + go io.Copy(input, ch) + io.Copy(ch, stdout) + io.Copy(ch.Stderr(), stderr) + + if err = cmd.Wait(); err != nil { log.Error(3, "Wait: %v", err) return } @@ -142,7 +145,16 @@ func Listen(port int) { }, } - privateBytes, err := ioutil.ReadFile(filepath.Join(models.SSHPath, "id_rsa")) + keyPath := filepath.Join(setting.AppDataPath, "ssh/gogs.rsa") + if !com.IsExist(keyPath) { + os.MkdirAll(filepath.Dir(keyPath), os.ModePerm) + _, stderr, err := com.ExecCmd("ssh-keygen", "-f", keyPath, "-t", "rsa", "-N", "") + if err != nil { + panic(fmt.Sprintf("Fail to generate private key: %v - %s", err, stderr)) + } + } + + privateBytes, err := ioutil.ReadFile(keyPath) if err != nil { panic("Fail to load private key") } diff --git a/routers/repo/commit.go b/routers/repo/commit.go index 101cb5c5..0c9e7817 100644 --- a/routers/repo/commit.go +++ b/routers/repo/commit.go @@ -17,6 +17,8 @@ import ( "github.com/gogits/gogs/modules/setting" ) +import "github.com/davecheney/profile" + const ( COMMITS base.TplName = "repo/commits" DIFF base.TplName = "repo/diff" @@ -43,6 +45,7 @@ func RenderIssueLinks(oldCommits *list.List, repoLink string) *list.List { } func Commits(ctx *middleware.Context) { + defer profile.Start(profile.CPUProfile).Stop() ctx.Data["PageIsCommits"] = true commitsCount, err := ctx.Repo.Commit.CommitsCount() diff --git a/templates/.VERSION b/templates/.VERSION index 548d9a0e..32d6c06d 100644 --- a/templates/.VERSION +++ b/templates/.VERSION @@ -1 +1 @@ -0.7.9.1114 Beta \ No newline at end of file +0.7.10.1114 Beta \ No newline at end of file diff --git a/templates/repo/commits.tmpl b/templates/repo/commits.tmpl index e54c9ed7..769841de 100644 --- a/templates/repo/commits.tmpl +++ b/templates/repo/commits.tmpl @@ -2,6 +2,7 @@
    {{template "repo/header" .}}
    + {{template "repo/sidebar" .}} {{template "repo/commits_table" .}}
    diff --git a/templates/repo/settings/deploy_keys.tmpl b/templates/repo/settings/deploy_keys.tmpl index 0574e9d8..5a695838 100644 --- a/templates/repo/settings/deploy_keys.tmpl +++ b/templates/repo/settings/deploy_keys.tmpl @@ -2,6 +2,7 @@
    {{template "repo/header" .}}
    + {{template "repo/sidebar" .}}
    {{template "repo/settings/navbar" .}}
    diff --git a/templates/repo/settings/githook_edit.tmpl b/templates/repo/settings/githook_edit.tmpl index b9b75a3a..2f79481a 100644 --- a/templates/repo/settings/githook_edit.tmpl +++ b/templates/repo/settings/githook_edit.tmpl @@ -2,6 +2,7 @@
    {{template "repo/header" .}}
    + {{template "repo/sidebar" .}}
    {{template "repo/settings/navbar" .}}
    diff --git a/templates/repo/settings/githooks.tmpl b/templates/repo/settings/githooks.tmpl index 8120b80e..980b98fd 100644 --- a/templates/repo/settings/githooks.tmpl +++ b/templates/repo/settings/githooks.tmpl @@ -2,6 +2,7 @@
    {{template "repo/header" .}}
    + {{template "repo/sidebar" .}}
    {{template "repo/settings/navbar" .}}
    diff --git a/templates/repo/settings/hook_new.tmpl b/templates/repo/settings/hook_new.tmpl index 7c9a5de1..ac69b02f 100644 --- a/templates/repo/settings/hook_new.tmpl +++ b/templates/repo/settings/hook_new.tmpl @@ -2,6 +2,7 @@
    {{template "repo/header" .}}
    + {{template "repo/sidebar" .}}
    {{template "repo/settings/navbar" .}}
    diff --git a/templates/repo/settings/hooks.tmpl b/templates/repo/settings/hooks.tmpl index e3f6f4dd..187bd563 100644 --- a/templates/repo/settings/hooks.tmpl +++ b/templates/repo/settings/hooks.tmpl @@ -2,6 +2,7 @@
    {{template "repo/header" .}}
    + {{template "repo/sidebar" .}}
    {{template "repo/settings/navbar" .}} {{template "repo/settings/hook_list" .}} diff --git a/templates/repo/settings/options.tmpl b/templates/repo/settings/options.tmpl index 474d719e..e109ec11 100644 --- a/templates/repo/settings/options.tmpl +++ b/templates/repo/settings/options.tmpl @@ -2,6 +2,7 @@
    {{template "repo/header" .}}
    + {{template "repo/sidebar" .}}
    {{template "repo/settings/navbar" .}}
    -- cgit v1.2.3 From b4970b3cc31d09b2b74d1ace4bfb39ab494d8d24 Mon Sep 17 00:00:00 2001 From: Unknwon Date: Sun, 15 Nov 2015 14:05:51 -0500 Subject: fix #1948 --- README.md | 2 +- gogs.go | 2 +- modules/middleware/repo.go | 6 ++++++ templates/.VERSION | 2 +- templates/repo/header_old.tmpl | 23 ----------------------- 5 files changed, 9 insertions(+), 26 deletions(-) (limited to 'gogs.go') diff --git a/README.md b/README.md index 02e624c0..73e35c4b 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.10 Beta +##### Current version: 0.7.11 Beta
    diff --git a/gogs.go b/gogs.go index 95b8e931..04e1cf65 100644 --- a/gogs.go +++ b/gogs.go @@ -17,7 +17,7 @@ import ( "github.com/gogits/gogs/modules/setting" ) -const APP_VER = "0.7.10.1114 Beta" +const APP_VER = "0.7.11.1115 Beta" func init() { runtime.GOMAXPROCS(runtime.NumCPU()) diff --git a/modules/middleware/repo.go b/modules/middleware/repo.go index 14184864..afa95a25 100644 --- a/modules/middleware/repo.go +++ b/modules/middleware/repo.go @@ -79,6 +79,12 @@ func ApiRepoAssignment() macaron.Handler { // RepoRef handles repository reference name including those contain `/`. func RepoRef() macaron.Handler { return func(ctx *Context) { + // Empty repository does not have reference information. + if ctx.Repo.Repository.IsBare { + ctx.Data["CommitsCount"] = 0 + return + } + var ( refName string err error diff --git a/templates/.VERSION b/templates/.VERSION index 32d6c06d..7b98f0fd 100644 --- a/templates/.VERSION +++ b/templates/.VERSION @@ -1 +1 @@ -0.7.10.1114 Beta \ No newline at end of file +0.7.11.1115 Beta \ No newline at end of file diff --git a/templates/repo/header_old.tmpl b/templates/repo/header_old.tmpl index 23a3e088..7a510095 100644 --- a/templates/repo/header_old.tmpl +++ b/templates/repo/header_old.tmpl @@ -10,29 +10,6 @@ {{if .IsFork}}forked from {{SubStr .BaseRepo.RepoLink 1 -1}}{{end}}
    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 7046df6028d3e910a3c5a1434d1240f65508eda8 Mon Sep 17 00:00:00 2001 From: Unknwon Date: Mon, 16 Nov 2015 00:16:03 -0500 Subject: UI fix --- gogs.go | 2 +- public/css/gogs.css | 5 --- public/less/_repository.less | 5 --- templates/.VERSION | 2 +- templates/repo/header.tmpl | 84 ++++++++++++++++++++++---------------------- 5 files changed, 44 insertions(+), 54 deletions(-) (limited to 'gogs.go') diff --git a/gogs.go b/gogs.go index a2ff0b5e..157133ed 100644 --- a/gogs.go +++ b/gogs.go @@ -17,7 +17,7 @@ import ( "github.com/gogits/gogs/modules/setting" ) -const APP_VER = "0.7.12.1115 Beta" +const APP_VER = "0.7.12.1116 Beta" func init() { runtime.GOMAXPROCS(runtime.NumCPU()) diff --git a/public/css/gogs.css b/public/css/gogs.css index b4f4782d..6300dfaa 100755 --- a/public/css/gogs.css +++ b/public/css/gogs.css @@ -2235,11 +2235,6 @@ footer .container .links > *:first-child { font-weight: normal; padding: 5px 10px; } -.repository.commits .header .ui.right .button { - float: right; - margin-left: 5px; - margin-top: 1px; -} .repository .commits.table { font-size: 13px; } diff --git a/public/less/_repository.less b/public/less/_repository.less index 004e7233..75070f74 100644 --- a/public/less/_repository.less +++ b/public/less/_repository.less @@ -595,11 +595,6 @@ padding: 5px 10px; } } - .button { - float: right; - margin-left: 5px; - margin-top: 1px; - } } } } diff --git a/templates/.VERSION b/templates/.VERSION index 21364203..3501f163 100644 --- a/templates/.VERSION +++ b/templates/.VERSION @@ -1 +1 @@ -0.7.12.1115 Beta \ No newline at end of file +0.7.12.1116 Beta \ No newline at end of file diff --git a/templates/repo/header.tmpl b/templates/repo/header.tmpl index 048939f2..5a811d6a 100644 --- a/templates/repo/header.tmpl +++ b/templates/repo/header.tmpl @@ -1,48 +1,48 @@ {{with .Repository}}
    {{end}} -- cgit v1.2.3 From 5dc3dd17049a5c097122c6159aa7a915658c263a Mon Sep 17 00:00:00 2001 From: Unknwon Date: Mon, 16 Nov 2015 11:11:59 -0500 Subject: fix #1960 --- README.md | 2 +- cmd/web.go | 7 +- gogs.go | 2 +- models/user.go | 2 +- modules/avatar/avatar.go | 4 +- public/css/gogs.css | 34 ++++++-- public/less/_base.less | 3 + public/less/_explore.less | 44 +++++----- public/less/_user.less | 25 ++++++ templates/.VERSION | 2 +- templates/explore/repos.tmpl | 2 +- templates/repo/issue/navbar.tmpl | 2 +- templates/user/profile.tmpl | 178 ++++++++++++++++++--------------------- 13 files changed, 172 insertions(+), 135 deletions(-) (limited to 'gogs.go') diff --git a/README.md b/README.md index 8be1adc6..1e363ded 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.12 Beta +##### Current version: 0.7.13 Beta
    diff --git a/cmd/web.go b/cmd/web.go index 095ddeb1..dfe47021 100644 --- a/cmd/web.go +++ b/cmd/web.go @@ -515,10 +515,13 @@ func runWeb(ctx *cli.Context) { m.Group("", func() { m.Get("/releases", repo.Releases) m.Get("/^:type(issues|pulls)$", repo.RetrieveLabels, repo.Issues) - m.Get("/^:type(issues|pulls)$/:index", repo.ViewIssue) m.Get("/labels/", repo.RetrieveLabels, repo.Labels) m.Get("/milestones", repo.Milestones) - }, middleware.RepoRef()) + }, middleware.RepoRef(), + func(ctx *middleware.Context) { + ctx.Data["PageIsList"] = true + }) + m.Get("/^:type(issues|pulls)$/:index", repo.ViewIssue) m.Get("/branches", repo.Branches) m.Get("/archive/*", repo.Download) diff --git a/gogs.go b/gogs.go index 157133ed..f8a39f3f 100644 --- a/gogs.go +++ b/gogs.go @@ -17,7 +17,7 @@ import ( "github.com/gogits/gogs/modules/setting" ) -const APP_VER = "0.7.12.1116 Beta" +const APP_VER = "0.7.13.1116 Beta" func init() { runtime.GOMAXPROCS(runtime.NumCPU()) diff --git a/models/user.go b/models/user.go index 18dce976..3131a88d 100644 --- a/models/user.go +++ b/models/user.go @@ -265,7 +265,7 @@ func (u *User) UploadAvatar(data []byte) error { return fmt.Errorf("Decode: %v", err) } - m := resize.Resize(234, 234, img, resize.NearestNeighbor) + m := resize.Resize(290, 290, img, resize.NearestNeighbor) sess := x.NewSession() defer sessionRelease(sess) diff --git a/modules/avatar/avatar.go b/modules/avatar/avatar.go index 60f7e2ec..b25b1bfe 100644 --- a/modules/avatar/avatar.go +++ b/modules/avatar/avatar.go @@ -104,7 +104,7 @@ func New(hash string, cacheDir string) *Avatar { expireDuration: time.Minute * 10, reqParams: url.Values{ "d": {"retro"}, - "size": {"200"}, + "size": {"290"}, "r": {"pg"}}.Encode(), imagePath: filepath.Join(cacheDir, hash+".image"), //maybe png or jpeg } @@ -194,7 +194,7 @@ func (this *service) mustInt(r *http.Request, defaultValue int, keys ...string) func (this *service) ServeHTTP(w http.ResponseWriter, r *http.Request) { urlPath := r.URL.Path hash := urlPath[strings.LastIndex(urlPath, "/")+1:] - size := this.mustInt(r, 80, "s", "size") // default size = 80*80 + size := this.mustInt(r, 290, "s", "size") // default size = 290*290 avatar := New(hash, this.cacheDir) avatar.AlterImage = this.altImage diff --git a/public/css/gogs.css b/public/css/gogs.css index 6300dfaa..db86e3de 100755 --- a/public/css/gogs.css +++ b/public/css/gogs.css @@ -848,6 +848,9 @@ pre.raw { .ui .text.yellow { color: #FBBD08 !important; } +.ui .text.gold { + color: #a1882b !important; +} .ui .text.left { text-align: left !important; } @@ -2688,6 +2691,23 @@ footer .container .links > *:first-child { .user.settings .email.list .item:not(:first-child) .button { margin-top: -10px; } +.user.profile .ui.card .username { + display: block; +} +.user.profile .ui.card .extra.content { + padding: 0; +} +.user.profile .ui.card .extra.content ul { + margin: 0; + padding: 0; +} +.user.profile .ui.card .extra.content ul li { + padding: 10px; + list-style: none; +} +.user.profile .ui.card .extra.content ul li:not(:last-child) { + border-bottom: 1px solid #eaeaea; +} .dashboard { padding-top: 15px; padding-bottom: 80px; @@ -2820,24 +2840,26 @@ footer .container .links > *:first-child { padding-top: 15px; padding-bottom: 80px; } -.explore.repositories .ui.repository.list .item { +.ui.repository.list .item { + padding-bottom: 25px; +} +.ui.repository.list .item:not(:first-child) { border-top: 1px solid #eee; padding-top: 25px; - padding-bottom: 25px; } -.explore.repositories .ui.repository.list .item .ui.header { +.ui.repository.list .item .ui.header { font-size: 1.5rem; padding-bottom: 10px; } -.explore.repositories .ui.repository.list .item .ui.header .metas { +.ui.repository.list .item .ui.header .metas { color: #888; font-size: 13px; font-weight: normal; } -.explore.repositories .ui.repository.list .item .ui.header .metas span:not(:last-child) { +.ui.repository.list .item .ui.header .metas span:not(:last-child) { margin-right: 5px; } -.explore.repositories .ui.repository.list .item .time { +.ui.repository.list .item .time { font-size: 12px; color: #808080; } diff --git a/public/less/_base.less b/public/less/_base.less index fca214b3..086c6877 100644 --- a/public/less/_base.less +++ b/public/less/_base.less @@ -139,6 +139,9 @@ pre { &.yellow { color: #FBBD08 !important; } + &.gold { + color: #a1882b !important; + } &.left { text-align: left !important; diff --git a/public/less/_explore.less b/public/less/_explore.less index 5d6be537..b510c71a 100644 --- a/public/less/_explore.less +++ b/public/less/_explore.less @@ -1,30 +1,32 @@ .explore { padding-top: 15px; padding-bottom: @footer-margin * 2; +} - &.repositories { - .ui.repository.list { - .item { - border-top: 1px solid #eee; - padding-top: 25px; - padding-bottom: 25px; - .ui.header { - font-size: 1.5rem; - padding-bottom: 10px; - .metas { - color: #888; - font-size: 13px; - font-weight: normal; - span:not(:last-child) { - margin-right: 5px; - } - } - } - .time { - font-size: 12px; - color: #808080; +.ui.repository.list { + .item { + padding-bottom: 25px; + + &:not(:first-child) { + border-top: 1px solid #eee; + padding-top: 25px; + } + + .ui.header { + font-size: 1.5rem; + padding-bottom: 10px; + .metas { + color: #888; + font-size: 13px; + font-weight: normal; + span:not(:last-child) { + margin-right: 5px; } } } + .time { + font-size: 12px; + color: #808080; + } } } \ No newline at end of file diff --git a/public/less/_user.less b/public/less/_user.less index c403e358..bf0de506 100644 --- a/public/less/_user.less +++ b/public/less/_user.less @@ -18,4 +18,29 @@ } } } + + &.profile { + .ui.card { + .username { + display: block; + } + .extra.content { + padding: 0; + + ul { + margin: 0; + padding: 0; + + li { + padding: 10px; + list-style: none; + + &:not(:last-child) { + border-bottom: 1px solid #eaeaea; + } + } + } + } + } + } } \ No newline at end of file diff --git a/templates/.VERSION b/templates/.VERSION index 3501f163..87a10ba3 100644 --- a/templates/.VERSION +++ b/templates/.VERSION @@ -1 +1 @@ -0.7.12.1116 Beta \ No newline at end of file +0.7.13.1116 Beta \ No newline at end of file diff --git a/templates/explore/repos.tmpl b/templates/explore/repos.tmpl index 75940e11..6654a315 100644 --- a/templates/explore/repos.tmpl +++ b/templates/explore/repos.tmpl @@ -5,7 +5,7 @@ {{template "explore/navbar" .}}
    - {{range $i, $v := .Repos}} + {{range .Repos}}
    {{.Owner.Name}} / {{.Name}} diff --git a/templates/repo/issue/navbar.tmpl b/templates/repo/issue/navbar.tmpl index 7fdc41aa..d6d1074c 100644 --- a/templates/repo/issue/navbar.tmpl +++ b/templates/repo/issue/navbar.tmpl @@ -1,5 +1,5 @@
    diff --git a/gogs.go b/gogs.go index f8a39f3f..80f780e8 100644 --- a/gogs.go +++ b/gogs.go @@ -17,7 +17,7 @@ import ( "github.com/gogits/gogs/modules/setting" ) -const APP_VER = "0.7.13.1116 Beta" +const APP_VER = "0.7.14.1116 Beta" func init() { runtime.GOMAXPROCS(runtime.NumCPU()) diff --git a/models/pull.go b/models/pull.go index 094cb9b2..5c7d4a3f 100644 --- a/models/pull.go +++ b/models/pull.go @@ -260,6 +260,7 @@ func (pr *PullRequest) testPatch() (err error) { for i := range patchConflicts { if strings.Contains(stderr, patchConflicts[i]) { log.Trace("PullRequest[%d].testPatch(apply): has conflit", pr.ID) + fmt.Println(stderr) pr.Status = PULL_REQUEST_STATUS_CONFLICT return nil } diff --git a/modules/git/repo_pull.go b/modules/git/repo_pull.go index 16b9536f..f9ea7100 100644 --- a/modules/git/repo_pull.go +++ b/modules/git/repo_pull.go @@ -89,7 +89,7 @@ func (repo *Repository) GetPullRequestInfo(basePath, baseBranch, headBranch stri // GetPatch generates and returns patch data between given branches. func (repo *Repository) GetPatch(mergeBase, headBranch string) ([]byte, error) { - stdout, stderr, err := com.ExecCmdDirBytes(repo.Path, "git", "diff", "-p", mergeBase, headBranch) + stdout, stderr, err := com.ExecCmdDirBytes(repo.Path, "git", "diff", "-p", "--binary", mergeBase, headBranch) if err != nil { return nil, concatenateError(err, string(stderr)) } diff --git a/templates/.VERSION b/templates/.VERSION index 87a10ba3..b0072b13 100644 --- a/templates/.VERSION +++ b/templates/.VERSION @@ -1 +1 @@ -0.7.13.1116 Beta \ No newline at end of file +0.7.14.1116 Beta \ No newline at end of file -- cgit v1.2.3 From ec5f881384f7a76a7e0cc0853814a24bb22287bc Mon Sep 17 00:00:00 2001 From: Unknwon Date: Mon, 16 Nov 2015 23:30:05 -0500 Subject: fix CSS --- README.md | 2 +- gogs.go | 2 +- public/css/gogs.css | 2 +- public/less/_repository.less | 2 +- templates/.VERSION | 2 +- 5 files changed, 5 insertions(+), 5 deletions(-) (limited to 'gogs.go') diff --git a/README.md b/README.md index c649a382..83ab5195 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.14 Beta +##### Current version: 0.7.15 Beta
    diff --git a/gogs.go b/gogs.go index 80f780e8..4a8efe80 100644 --- a/gogs.go +++ b/gogs.go @@ -17,7 +17,7 @@ import ( "github.com/gogits/gogs/modules/setting" ) -const APP_VER = "0.7.14.1116 Beta" +const APP_VER = "0.7.15.1116 Beta" func init() { runtime.GOMAXPROCS(runtime.NumCPU()) diff --git a/public/css/gogs.css b/public/css/gogs.css index fb0b7715..55445a63 100755 --- a/public/css/gogs.css +++ b/public/css/gogs.css @@ -2475,7 +2475,7 @@ footer .container .links > *:first-child { } .repository.watchers .list .item { list-style: none; - width: 25%; + width: 33%; margin: 10px 10px 10px 0; padding-bottom: 14px; float: left; diff --git a/public/less/_repository.less b/public/less/_repository.less index 2ff7d053..961e068c 100644 --- a/public/less/_repository.less +++ b/public/less/_repository.less @@ -892,7 +892,7 @@ .item { list-style: none; - width: 25%; + width: 33%; margin: 10px 10px 10px 0; padding-bottom: 14px; float: left; diff --git a/templates/.VERSION b/templates/.VERSION index b0072b13..482a1f39 100644 --- a/templates/.VERSION +++ b/templates/.VERSION @@ -1 +1 @@ -0.7.14.1116 Beta \ No newline at end of file +0.7.15.1116 Beta \ No newline at end of file -- cgit v1.2.3 From ff5f14431eb2df2e68e6b3765607fa4aef99c707 Mon Sep 17 00:00:00 2001 From: Unknwon Date: Tue, 17 Nov 2015 02:18:05 -0500 Subject: fix #1448 --- README.md | 2 +- conf/locale/locale_en-US.ini | 1 + gogs.go | 2 +- modules/bindata/bindata.go | 4 +- public/css/gogs.css | 34 +++++++++++- public/js/gogs.js | 60 +++++++++++++++++++++ public/less/_repository.less | 48 ++++++++++++++++- public/less/_user.less | 4 ++ routers/api/v1/user.go | 2 +- templates/.VERSION | 2 +- templates/repo/settings/collaboration.tmpl | 87 +++++++++++++++--------------- templates/user/profile.tmpl | 1 + 12 files changed, 194 insertions(+), 53 deletions(-) (limited to 'gogs.go') diff --git a/README.md b/README.md index 83ab5195..4d683ead 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.15 Beta +##### Current version: 0.7.16 Beta
    diff --git a/conf/locale/locale_en-US.ini b/conf/locale/locale_en-US.ini index 1fb3f2fa..efeb4ff9 100644 --- a/conf/locale/locale_en-US.ini +++ b/conf/locale/locale_en-US.ini @@ -563,6 +563,7 @@ settings.confirm_delete = Confirm Deletion settings.add_collaborator = Add New Collaborator settings.add_collaborator_success = New collaborator has been added. settings.remove_collaborator_success = Collaborator has been removed. +settings.search_user_placeholder = Search user... settings.user_is_org_member = User is organization member who cannot be added as a collaborator. settings.add_webhook = Add Webhook settings.hooks_desc = Webhooks are much like basic HTTP POST event triggers. Whenever something occurs in Gogs, we will handle the notification to the target host you specify. Learn more in this Webhooks Guide. diff --git a/gogs.go b/gogs.go index 4a8efe80..4ef58f57 100644 --- a/gogs.go +++ b/gogs.go @@ -17,7 +17,7 @@ import ( "github.com/gogits/gogs/modules/setting" ) -const APP_VER = "0.7.15.1116 Beta" +const APP_VER = "0.7.16.1117 Beta" func init() { runtime.GOMAXPROCS(runtime.NumCPU()) diff --git a/modules/bindata/bindata.go b/modules/bindata/bindata.go index 33e44645..99d1a5e1 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\xec\xac\xc3\xc1\x66\x15\xa9\x2a\x8e\xab\xc8\x6a\x92\xe5\xb2\xfa\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\x76\x9b\x15\x65\xb7\x48\x9f\xa6\xc7\xe9\x36\xaf\xea\x75\xd9\x75\x69\x57\xae\xaf\x1f\xaf\x9a\xae\x2f\x8b\xf4\x65\xd5\xd3\xef\xf6\x53\xb5\x28\x93\x64\xd5\x6c\x4a\x02\x7d\x45\x7f\x92\x22\xef\x56\xf3\x26\x6f\x0b\x4a\x38\xb5\xef\xa4\xfc\xbc\x5d\x37\x2d\x03\xfd\x2c\x5f\xc9\xaa\x5c\x6f\xb9\x0c\xfd\x49\xba\x6a\x59\x67\x55\x4d\x3f\x2f\xe9\x2b\x7d\x5d\x4b\x4a\xb3\xeb\x2d\xe9\x7c\xd7\x4b\xda\x6e\x6b\x49\xbf\x6c\x93\xb6\x5c\x56\xd4\x9b\x96\x92\xde\xe9\x67\xb2\x2f\xe7\x5d\xd5\x73\x4b\x7f\x95\xaf\xe4\x53\xd9\x76\x55\xc3\xb5\xff\x45\xbe\x92\x6d\xbe\x64\x80\x0b\xfa\x93\xf4\xe5\x66\xbb\xce\x51\xe0\x4a\x3f\x93\x75\x5e\x2f\x77\x02\xf3\x46\x3f\x93\x45\x5b\x52\x56\x56\x97\x7b\x4a\x3d\xc1\x8f\xd9\x6c\x96\xec\x08\x09\xd9\xb6\x6d\xae\xab\x75\x99\xe5\x75\x91\x6d\x64\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\x8d\x95\xe6\xcf\xa4\xdc\xe4\xd5\x9a\xb1\xf6\x98\x3f\xa8\xe3\x5d\xb7\x6f\x80\xdb\x0b\xfd\x24\x24\x64\xfd\xcd\xb6\x04\x0e\x1e\x5f\xd1\x57\xb2\xc8\xb7\xfd\x62\x95\x73\x3f\xe5\x2b\x21\xa0\x6d\x43\xc8\x68\xda\x1b\xc0\xd9\x8f\xa4\x69\x97\x79\x5d\xfd\x9e\xf7\x82\xa0\xf3\xe0\x67\xb2\xa9\xda\xb6\x61\xdc\x9e\xe1\x23\xa1\xa1\x67\x5c\x0f\xa5\xbc\x25\x2c\x04\xb5\x70\xce\xa6\x5a\xb6\x82\x46\xce\x3c\xc3\x2f\xae\x85\xf3\xae\x9b\xf6\xa3\x66\xbc\xe0\xcf\x41\x51\xea\x84\xe6\xc6\xed\xe7\x35\x21\x5e\x73\xcf\xf0\x23\x02\xe8\x92\xbc\xd8\x10\x2a\xb7\x79\x5d\x32\x8e\x8e\xf9\x17\xe1\x85\x7e\x25\xf9\x62\xd1\xec\xea\x3e\xeb\xca\xbe\xaf\xea\x25\x23\xfb\x58\x92\xd2\x4b\x4d\x4a\x82\x3c\x97\x76\xd3\xec\xdc\x74\x52\xfa\xdf\xe8\x67\x7a\x21\x3f\x25\x2f\x28\x84\x4c\x57\x92\x47\xd2\x65\xd7\x65\x59\xc8\x58\xba\xf4\x05\x7d\x27\xdb\xdd\x7a\x4d\x58\xfb\x6d\x57\x76\x3d\x17\xba\xa0\xdf\x34\x7e\xf9\x9d\x54\x5d\x47\x1f\x94\xfc\x1a\x1f\x09\x4d\x5d\xbd\xc0\x60\x4e\xf0\x91\x24\xef\xbb\x32\x6f\x17\xab\x0f\x89\xfc\x45\x5f\xf9\x83\x69\xef\xd0\xa4\x32\x21\x29\x11\x49\x0b\xd6\x40\xb2\x68\x0a\xfe\x71\x42\x7f\xa8\xea\xaa\xee\xfa\x7c\xbd\xfe\x90\xe8\x07\x83\xc9\x97\x4c\x40\x5f\xf5\xc0\x82\x26\xa6\x97\x7d\xb9\xed\x78\x06\xd3\x17\x55\xdb\xf5\x8f\xfb\x8a\x88\xf5\xdd\xae\x4e\x8a\x66\xf1\x91\x96\x01\x2f\x69\xb4\xfc\xfa\x3a\x25\x64\x3d\xa0\x85\xd0\xee\xea\x9a\xd0\x93\xbe\x6c\x08\x65\xd4\x4c\x45\xed\x9f\x02\xfa\x28\xdd\xae\xcb\xbc\x23\x90\x32\x2f\xd2\x1f\xf3\xb4\xcf\xdb\x65\xd9\x3f\xbd\x97\xcd\x69\xf9\x7d\xbc\x97\xae\xda\xf2\xfa\xe9\xbd\xfb\xdd\xbd\x67\x2f\x77\x54\x6c\x5d\xd5\x65\xf7\xe3\x93\xfc\x59\xba\xc8\x29\x87\xd0\x78\x93\xce\xcb\x6b\x5e\x6d\xd4\x56\x4a\x54\x5e\x2f\x79\xa5\xdd\xf4\x2b\x6e\x90\x28\x81\x3e\xba\x94\x97\xfa\x37\x09\x4f\x00\xb1\x82\xac\x98\x1b\x5b\x43\x87\x90\xdc\xd2\x04\x9c\xdd\x5c\xfe\xf9\xcd\x51\x7a\x41\xbc\x6d\xd9\x96\xf8\xa6\xff\xa8\xc4\xf7\x29\x8d\xf6\xaa\x3a\x7d\x3e\x4b\xa8\xac\x21\xe4\x34\xef\xf3\x39\xf7\xdd\xcd\x3e\x67\xca\x22\x74\x79\x58\x8a\xcc\x2d\xc1\x19\xbb\x3e\x9a\x96\xa9\x85\x4c\x75\xe8\xf2\x77\x75\xbc\x65\x1e\x40\xe9\x0e\xb3\x17\x82\x33\xaa\x2a\x7d\xfd\xf6\xed\xf9\xe9\xf3\xb4\xac\x97\x84\x99\x74\x5f\xf5\xab\x74\xd7\x5f\xff\xb7\x6c\x59\xd6\x65\x9b\xaf\xb3\x45\xc5\x48\x69\x89\x60\x53\xc2\x92\x0c\x71\x96\x74\xdd\x9a\x58\x14\xa8\xe0\xf2\xf2\x4d\x7a\xc6\x94\xb0\xcd\xfb\x15\x3a\xd2\xaf\x92\xee\xb7\x35\x23\xca\x35\x78\xb5\x2a\x53\x2c\x06\x00\x35\xd7\x43\xbc\xa4\x85\xf6\x75\x96\x94\x6d\x9b\x11\x07\xed\x6f\x18\xcd\x5a\xe7\x21\x68\xa9\x8e\xa8\xbd\x6e\x7a\x9a\xc6\x14\xe5\xa4\x8a\xaa\xfe\x94\xaf\xab\x82\x90\xed\x11\x12\x97\x45\x62\xd1\xd0\xbc\x71\x69\xa2\xcc\x66\x8f\xa1\xe6\x0b\xda\x00\xba\xf4\xde\xec\x1e\x38\xee\xbd\xc7\xf7\x66\x49\xdd\x64\xc2\x25\x98\x37\x17\x55\x97\xcf\x89\x4f\xcb\xbe\xd1\x1a\xd7\xfb\x1b\xd3\x8f\x74\x45\x21\xd2\x08\x82\x71\xcb\x7b\x11\xb6\x00\x26\xae\x9c\x18\x36\x98\x8d\xb2\x99\x70\xec\xc6\x93\xdc\xfc\x0a\x5b\x72\x09\xa3\x31\x27\x36\x61\x46\x5d\xc7\xdb\xed\xba\x5a\x48\xd3\x2f\x25\xcf\x13\x1a\xef\xcc\x8a\x94\x10\x0e\x84\x62\x79\x01\xb9\x50\xaf\x99\x6d\xa5\x11\x9f\x47\xf9\x55\x49\x2b\x67\xb5\x5b\xca\xee\xb4\x6e\x76\xc5\x37\x60\x28\x36\x73\x9e\x9f\xa4\xef\x1a\xea\x30\xa8\xc3\x01\xf8\x26\x8e\x89\x31\xb0\x30\xd0\x96\x9b\xa6\x67\xc4\x69\xb1\x8a\xa6\x67\x5f\x51\x26\x8d\xb4\xcb\x3f\x11\x5b\xec\x1b\x59\x92\x05\x2d\xb9\x05\x57\x4c\x1c\x6c\x47\x3b\xba\x2c\x0b\xe2\x23\xb2\x34\x2c\x2d\xa6\x41\x40\x6d\x76\xb4\x9a\x56\x54\x19\x23\x9e\x25\x12\xaa\x72\xaa\x9f\x18\x12\xd5\x83\x55\x4e\x2b\xb7\xa1\xcd\x93\x27\xfa\x14\x1f\xfa\x3b\xac\x9f\x7a\x95\x5f\x5f\x53\xaf\x3a\x5a\x15\xaf\xd2\xc5\xba\xa1\x25\xf5\xcb\xbb\x37\x1d\x2f\x98\x55\xb6\x6d\x5a\x48\x22\x94\x75\x41\x9f\x2e\x2d\x40\x34\x43\xd4\xbb\xcd\x9c\x7e\xed\x57\x15\x31\x6a\xa0\x9d\x4b\xb0\x94\x44\xa9\xd4\xc4\xae\xa3\x29\x3c\x4a\x69\x09\xd3\x08\x08\x65\x20\x00\x1e\x83\x51\x1d\x83\x5f\x13\x8d\xed\x5a\x5a\x4e\xab\xbe\xdf\x5a\xcb\xaf\xae\xae\x2e\xa4\x69\x97\x7a\x5b\xdb\x79\x40\x19\x98\x83\x35\xcb\x46\x75\xda\xd4\x33\x10\xc9\xae\x5d\x0f\xe8\x87\xc6\x6a\x39\x07\xf0\xc2\x5d\x78\xc2\xff\x5d\x7a\xf4\x00\xcf\x1d\x49\x7d\x7b\x50\x13\xe1\xb8\x84\x9c\x42\x44\xdd\x6c\xb9\xde\x80\xaa\xcf\x35\xc1\x93\x32\x64\x1b\x97\x2f\x12\x0e\xe5\x42\xa6\x0c\x76\xe9\x0d\x0d\x58\xd9\xe8\xe5\x19\xa1\x01\xbc\x14\xa9\xd7\x6d\xb3\xa1\xd4\x17\xf4\xc7\x27\xf8\xee\x9f\x71\x7d\x80\xc9\x8b\x82\xb8\x7c\x77\x94\xbe\x7b\x71\x92\xfe\xe7\xef\xbf\xfb\x6e\x96\xbe\xee\x79\x25\x32\x71\xfe\x9d\x89\x8a\x3e\x45\xd4\x72\xa0\xc4\xb1\x7a\xa2\xbb\x7b\xbc\xb2\xee\xa5\x3f\x22\xf7\xbf\x97\x9f\x73\x12\x11\xcb\xd9\xa2\xd9\x3c\x63\xae\xba\xc9\x69\xed\x73\x0e\x91\xab\xd2\xf1\x65\x59\x17\xf4\xa1\x02\x9b\xe6\x05\xec\x40\xf3\x03\xf1\x4d\x04\xd7\x6c\xd1\xd4\xd7\x55\xcb\x03\xfa\xb9\x06\x35\x98\x48\x4b\xdb\x35\x72\x4c\x2a\x22\xa4\x11\x07\xa9\xae\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\xeb\x6b\xde\x6b\x6d\x97\xd0\x16\xce\x25\x55\x36\x8c\x10\x84\x88\x71\x0b\xa1\xfc\x54\x89\xf8\xe4\xf4\x6d\x5a\x7e\x22\x6a\x63\xae\xd7\x36\xc5\x6e\x01\x0a\x63\xd8\x23\x66\xd6\xc4\x22\x3a\x5a\x1b\x0b\xd9\x57\x02\x26\xc1\x5d\x63\x4e\xb4\x20\x20\xe2\x0d\xc6\xac\x49\x90\xfc\x44\x9c\xbf\x0d\x9a\x78\x69\x49\xda\xfb\x11\xec\xa8\x53\xae\x04\x8f\x7c\x41\x33\x4e\x54\x21\xbd\xe8\xa4\x53\x92\x4d\xe4\x4e\x74\xbc\xa3\x13\x4a\x5e\x50\x5f\xe6\x37\xe0\x3b\x1d\x13\x43\x51\x5e\xe7\xbb\x75\xef\xfb\x35\xd8\x44\xac\xa5\x4b\x3e\x24\x85\x79\x93\x05\x46\x1d\x04\xf5\x74\xc3\xb2\x44\x86\x35\xc9\x39\xb2\xd9\x30\xbd\xca\x29\xc4\xf6\x1d\x62\x4f\x25\xa6\x27\xf3\x22\xbf\xce\x97\x49\xfe\x71\xbe\x6b\xf6\x9d\x48\x3e\x29\xb6\x5a\xae\xd1\x2a\x60\x51\x61\xba\x2f\xb3\x44\xc5\xa5\x4c\x8f\x6b\xd9\xa7\x0a\x87\x21\x47\xae\x52\xa5\x1e\xe1\x98\xaf\xfd\x85\x01\xf8\x94\xd5\x4d\x96\x75\xbd\x39\xe7\x41\x76\xee\x30\x24\x38\xe7\xe1\xa2\x05\x16\xe1\x68\x96\x3e\x55\x60\xf3\x4a\x30\xc0\x0b\x51\x0d\x9a\xa6\xa6\xba\xb2\x44\x0d\x54\xfe\x09\xd5\x89\x32\x33\x3d\x20\xa8\xcc\x6e\xa2\x1f\x6f\xf7\x45\x03\xd9\x01\x7b\x09\x95\x36\xb4\x0e\xf6\xf5\xb4\xad\x96\x2b\xe2\xad\xcd\xfe\x48\x90\xb2\x5f\x35\x25\xaf\x9f\xd7\xa7\x4f\xbf\x95\x7e\x2c\x79\x67\x71\x85\x78\x4f\xca\x77\x44\x5c\x84\x31\x25\x63\xe9\x82\xdb\xdb\x01\x39\x3a\x8a\x08\xd0\xf0\xf0\x37\x12\x25\x1c\xd3\x50\x5e\x11\xe6\x29\x93\xf0\x30\x52\xda\x0e\x90\xd2\xb0\x72\x25\x95\xf7\xb3\x65\x83\x83\x8c\xc9\xf7\xbc\x5b\xd2\x79\xb8\xeb\xb3\x65\xd5\x67\xd7\xcc\xba\xb8\xe6\x17\x5c\x03\x6f\xde\x94\x93\x3e\xa0\xac\x07\x29\xf1\x3f\x3a\x9d\x15\x3f\xa4\xf7\x3f\xa9\xc4\xf8\x3d\xf3\xa4\x8c\x56\x51\xb5\xc6\x94\xe8\xf1\xa8\x2d\x45\x60\xb5\x33\xb8\x93\xda\xba\xdd\x16\x7b\x9b\x0a\x88\xee\x34\x50\x34\xfb\x9a\x57\x1f\x98\x2f\xf1\x99\x6a\x51\xd1\x9e\x31\xaf\xea\x9c\x36\x78\xab\x05\x4c\xfd\x3e\xd1\xc4\xdb\xf3\x2b\x00\x2e\x9b\xf9\xae\x5a\x17\x06\x30\x4b\x4c\x88\x24\x11\x52\x67\x3f\x14\xab\x2d\xa9\x92\xbe\x2c\x9a\x96\x25\x12\x8c\xc6\x0a\x1e\x10\x85\x5a\x16\x31\x90\x5c\xf1\x79\x06\xb0\x28\xe7\xa4\x16\x46\x03\x4d\x3f\x8e\x6a\x2c\xd3\x80\x6e\xaa\xae\x7e\xd0\xa3\xa7\x8b\x1d\xb5\x45\x53\xcf\xc9\x54\xb0\x4b\x1f\x3f\xa3\xff\x13\x96\x90\x64\x07\x58\x8e\x11\xcf\x99\xa9\x64\xee\x64\x2d\x46\x5d\x8d\x88\xdc\x4d\xb5\x91\x70\x30\xd6\xb0\xbf\x46\x02\xdd\x4e\xa8\x96\xd5\x25\x6b\x9a\xd6\xf2\x1b\xfa\xe0\x93\xdb\x72\x8d\x49\xc8\x7b\x3d\x5e\x35\x84\x37\x26\x90\x23\x59\x34\xd7\x34\x34\xe6\xa5\x7d\xfe\xb1\xc4\x89\x8c\xf6\xfc\xf7\xac\x07\xfa\x90\xec\x44\x06\x6d\xd6\x85\x3b\xef\x80\xb2\x9b\x76\xa8\xc6\xf0\x40\x8e\x6a\x3b\x12\xb6\x17\xab\xcc\x69\x91\x18\x29\x7d\xf9\x19\xbb\x3f\xb2\xbc\x52\x89\x49\x9e\xb3\x92\xcd\x0d\xa6\x8b\x07\x71\x76\xe3\x67\x8b\x24\x50\x5a\x28\x74\x98\x9d\x37\x8c\xb5\x4f\xa5\x83\x3a\x09\x53\xe3\x02\x54\x17\xc9\xca\x5a\x55\xac\x6d\xa0\x2c\x51\x89\x68\xae\xa8\x45\xba\x04\xac\x4c\x55\x60\xe0\x78\x34\x9f\x7a\xb2\x9f\xd1\xc4\x40\x6d\x60\x2d\x13\x5f\xbc\x91\x75\x11\xb4\x99\xbc\x57\xf5\xd8\x87\xc4\xe0\xde\xc5\xf9\xc4\x53\x56\x1f\x02\x15\x54\x66\xb3\x6b\xaa\x28\x68\x4f\x94\xad\x78\x91\x62\x55\x6e\x59\xfa\xd8\x74\x20\x8b\x35\x9f\xb4\x6f\x54\x7e\x76\x04\xf2\x93\x30\x6c\xa2\x18\x62\x73\xdf\x24\x5d\xc3\x0b\x2e\xfb\xca\x2a\x9e\x57\x44\x0a\x28\x1f\x6f\x76\xa2\x1b\x23\x31\x97\xa7\x8f\x56\xd9\xcd\x51\x7c\xb2\x5a\xe5\x1d\x31\x71\x92\x15\xb4\x58\x31\xb3\x13\x2e\x4f\x3b\x9d\xe7\xb0\x66\xa0\xcf\x03\x95\x4b\xc9\xa6\x1d\xee\xc2\xdc\x43\xe1\x73\xda\x8a\x93\x9d\x20\x19\x85\x02\xd4\x44\x9b\x84\xb0\x4d\xc9\xe2\x73\xb6\x11\x35\x9a\xfc\x4a\xcf\xca\x84\xb6\xc3\x25\x2d\x68\x23\xd8\xa7\xac\xfd\x58\xe2\x94\xa1\xf4\xca\x00\x65\x1f\x32\x62\x85\xb0\x94\x9f\x4c\x6f\x49\x9c\x61\x0f\xd5\x10\xad\xed\x11\xfa\x69\xcb\xa2\xec\x99\x31\x76\x91\x11\x20\xea\x75\xc4\x2d\x3c\x12\x8f\x53\x56\x40\x86\x50\x2a\x72\xfb\x61\x71\x01\xe6\x1a\x3f\xce\x9f\xdd\xef\x7e\x7c\x32\x7f\xe6\x78\xeb\x62\x55\x2e\x3e\x0a\xfd\x55\xf5\xbc\xf9\x8c\x83\x2d\x14\x25\x74\xa6\xe6\x35\x76\xbf\x48\xe9\xa0\xdb\xe2\x5c\x45\xbc\x80\x8a\x11\xe2\x39\x37\x9a\x34\xea\x0c\xb3\x0c\xda\xda\x16\x58\x55\x20\x70\x4f\x90\xc7\x9c\xca\x24\x89\x0d\xc0\xd3\x24\x06\xb2\xae\x36\x55\x3f\xa2\x09\xe6\x30\xb9\xd2\x96\xea\xca\x0c\x49\xa8\x0b\xc3\xc4\x28\x89\x4f\x53\x35\xb4\xaf\x1a\x9d\xec\x73\x3a\x48\x7d\x9f\x12\x6d\xec\x68\x7f\xe2\xce\xd2\x78\x88\x51\xe7\xbc\x31\xd3\x21\x2a\xef\xb2\x5d\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\xbb\xbe\x6f\xf8\x5c\xb2\x66\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\x92\xe3\xb7\x75\x8f\x8e\xee\xf5\x32\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\xff\x46\x1b\x4e\x0d\x1d\x7f\x93\x50\x86\x1c\x33\xcf\xf0\x41\xa0\x7c\xe6\xfd\x90\xf0\x96\xfe\x76\x20\xac\xf2\x8e\xa5\x69\x81\xbc\x84\xac\x9f\xa3\x4b\x0c\x37\x94\x8b\x09\xc1\xf6\x5d\xe9\xef\x32\xf0\xe5\xc6\x74\x79\xf9\xea\xca\x0e\xb1\x97\xaf\xd2\x8f\xa5\x56\xfe\xaa\xef\xb7\xdd\x2f\x50\x68\x88\x76\x82\x55\x19\x17\xf9\x0d\x0b\x91\x92\xac\x3f\x90\x71\x55\xe6\x1b\xed\x25\x7f\x4a\x15\xc7\xb4\xbb\x6a\x22\x7f\xd2\xa6\x1b\x28\xca\x12\x88\x53\x3f\x4f\x89\xd1\xee\x50\x53\xea\x45\xc9\xaf\x23\xed\xde\xaf\x49\xbe\xde\xd2\xb9\x8b\xe5\x99\x00\x0c\x8a\xac\xb9\x1e\xbf\x52\x80\x80\x82\x77\x1b\x9a\xf9\x05\x8e\x9b\x54\xe0\xe1\xe3\xec\x51\xa0\xd8\x8c\x2b\x2b\x68\x69\xff\xa1\x0a\xf9\x9b\x85\xde\xb0\xde\xae\xfa\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\xf2\xcf\x77\x15\xdc\x34\x13\xe5\x84\x81\xf9\x42\xc6\xa6\x74\x88\xf1\xb2\x20\x78\xd6\x5c\x1d\x84\xa6\xa9\x27\x90\xaa\x5e\xac\x77\xc5\xc1\x9e\x74\xbb\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\x7a\x5d\x2e\x59\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\x1b\x3e\x2f\x75\x3b\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\x26\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\xf5\x3e\xbf\xe9\xa0\x29\x32\x0e\xc5\xca\x6b\x29\xce\xec\x87\xc4\x9c\x25\x7a\x15\x5e\x91\xd0\x8a\x33\x4c\xb0\xae\x9f\x37\x1b\x27\x8c\xec\x71\x3c\x06\x77\x51\xdd\xd3\xa7\x60\xbb\xd6\xbd\x89\x8f\xf6\x7c\x10\xe6\x23\x8a\x64\x07\x15\xe1\xee\x51\x77\x8a\x89\xb2\x47\x2c\x04\x52\x33\x2c\x92\x11\xff\x16\x5c\x93\x94\x4b\x98\x45\x97\x02\x5d\xc9\x8e\xea\x7f\x2c\x62\x7d\x45\x38\xe4\x63\xa2\x57\x1f\xf0\x5e\x46\xb3\x62\x2a\x7e\x49\xc7\xe1\x3f\xe9\x7a\x5a\x02\x8c\x69\xbb\xd0\xff\x5b\x20\x8f\xa4\xc8\xc5\x12\x03\x9a\xba\x55\xb5\x4d\x1b\xa8\x8d\x43\x14\x7a\xb2\x0d\x04\x69\xbe\xcc\x28\x71\x6c\x60\xfd\x79\x9b\xd7\xdd\x75\x09\x45\xfa\x26\xbd\xe6\x3b\xe3\x99\x36\xcd\x72\xb9\x5c\xec\x1f\x68\x59\x8e\x60\x68\x3a\xdc\x5d\x30\x77\xc1\x44\xc5\x4d\xcb\xcd\x0a\x94\xb5\xe8\x03\xb0\xea\x6b\xea\xac\x0f\x4c\x66\x23\x14\x40\x36\x8e\xee\xc9\xac\x37\x9f\xca\x10\x11\xd7\x7f\x74\xe4\x01\xd6\xf5\xae\x40\x2e\x58\xe2\x69\x92\x46\xa1\xad\xc1\x35\xef\xfc\x26\x1e\x3d\x17\x0d\xee\xce\x69\x8d\x94\xda\x0a\x2f\x0c\x5e\x2b\x83\x0a\xa1\xa5\xf1\x27\xa2\x44\xee\xd9\xb3\x39\x75\x71\xb1\x8a\x56\xe7\x15\x72\x52\xc9\x19\x2d\xd0\xe4\x3d\x37\xfd\x21\x91\x9b\xf6\xcc\x29\xe5\x4f\xe4\xe6\x5d\x24\x5a\x55\xb2\xf7\xa9\x69\xe2\xf9\xaa\xc4\x8a\x88\xde\xfd\xd6\x92\xbc\x0d\x9b\x52\xf4\xef\x0d\xc9\x1c\xd0\xad\xff\x89\xbe\x58\xc6\xaf\x93\xe8\x7a\x71\xa0\x26\x81\x18\x5d\xf5\xbc\xc2\x2e\x68\x61\x90\xd8\x73\xac\x29\x74\x4a\x07\x77\x80\xe6\xe6\x85\x7d\xd3\x7c\xe4\xcc\xf4\x78\x69\xcb\x97\xc2\x89\x1a\xed\x85\x7d\x27\x7c\xc8\xdf\xcc\xb0\x39\xb0\xf8\x8d\x6b\x8a\x60\x4b\x60\x69\x81\x27\xcc\xf2\x66\x01\xfc\x36\xef\x89\x2d\xd6\x72\x10\x13\x0e\x15\x16\xd5\x6c\x57\x85\xbb\xcf\xe6\x5a\xd8\xf6\x43\x50\xf1\x21\xf1\x26\x29\x66\x8d\x32\xa5\x16\x56\x16\xd3\xa9\x8c\xfc\xaf\xf4\xa9\x0a\x1d\xb0\x2f\x7c\xe8\x81\x1c\x37\xc9\x76\xfd\x07\xf3\x98\xe0\x67\xa2\x2a\xb0\x58\xff\xa5\xe4\xfd\x34\x3d\x95\x0f\x3b\xda\xef\x2a\x8c\xa9\x2a\x92\x64\x0b\xbc\x07\x06\x34\x3a\x11\xae\xd3\x6a\x28\xe5\x35\xf1\xed\x70\x67\x67\x9b\x0d\x29\xc4\x84\x6b\x97\x43\x90\x02\xf8\x6e\x22\x38\x96\xb2\x72\x19\xe7\xd5\x3a\xb8\xf8\xe2\xeb\x1c\x3e\x65\x13\xd8\xbe\x9c\xa7\xac\xee\x25\xc2\xa1\xd3\x9f\x0e\x74\x93\xd3\xc1\xf1\x53\x95\x3b\xc5\x12\xcd\x16\x9b\xe8\xe8\x2e\xfa\x82\xcd\x73\x70\x99\x3e\xb6\x23\xe3\x9b\x29\xbd\xec\x79\xa3\x9f\xc9\x6e\xcb\xb7\x27\xc1\x80\x7f\x41\x82\x1b\x70\x9c\x1f\x9c\xc7\x30\x74\x2b\xe6\xa4\x19\x01\x2f\xec\x90\x06\x2b\x97\x99\x2d\x9f\x09\xfb\x30\x5d\x42\xc5\x10\xc4\x6b\x58\xc0\x62\xd4\x38\x06\xc8\x94\xfb\x5c\x0c\x9f\x76\xc6\x74\xd5\xec\xd3\x75\x55\x7f\xec\x14\x9b\xcc\xc7\xc2\xc3\x29\x54\x52\x44\x84\x3b\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\xae\x4b\x16\x93\xc1\xd4\xec\xf2\x8e\x46\xd9\x34\x9d\x2a\x40\x3d\x13\xe1\x34\x28\x55\x14\x4a\x71\xee\x20\x74\x4a\x8e\xed\xca\x10\x6b\x2a\xb1\x4b\x3e\xeb\x00\x56\x68\x56\x6d\xc4\xec\xef\x17\xbb\x02\xc4\xfc\xb8\xd3\x04\xb2\x61\x54\x12\xf7\x3e\xbc\xf7\x78\xdb\xd8\x05\xa3\x71\x43\xcb\x3c\xb2\x4d\x5f\x30\x80\x2d\x3b\xea\xec\x90\x3e\xb4\x02\x53\xe1\xdf\x41\x26\x46\x04\xe1\xa5\x90\x4c\xbc\x63\x10\xcd\x3a\x12\xed\x4e\xf4\x32\xc2\xe5\x33\x66\x83\xfc\xb7\xb8\xbe\x73\x4a\x05\x3e\x90\x67\x03\x10\x3d\xb0\x47\x90\x93\x12\xb4\xb5\x75\x50\x7a\x1e\xf4\x7e\xb4\x56\xac\xdc\x9e\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\x6d\x5b\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\x18\x11\x72\x89\xee\x4c\xba\x46\x37\x64\x47\x7a\xfc\x59\x55\xcb\x15\x8d\xab\xda\xf0\xd5\x31\xc8\xc9\xee\x27\xfd\xe9\x94\x7f\x11\x43\x69\x96\x35\xeb\xae\xb8\x05\xb1\xe1\x72\x1b\xcc\x8f\x5d\xdf\x36\xf5\xf2\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\xbb\xf9\x83\x2e\x5d\xb2\x05\x2a\x2e\x55\xf2\xc0\x2e\x55\xad\x06\xc4\xc0\x6e\x5f\x3b\xb4\xc0\x4a\x95\x16\x7a\xd7\xac\x69\x95\xc4\x45\x9a\xcd\x46\xe6\x97\x36\x80\x8d\x40\xa2\xff\x30\x34\x28\x6b\x60\xae\x6c\x15\x3f\x54\xe1\xcc\x91\xb9\x9f\x1f\x9d\x36\x13\xf7\x22\x3d\x89\x0a\x5c\x0c\x8c\x9b\xd3\xba\x0f\xb6\x0d\xd6\x91\xa4\xae\x18\x04\x85\x71\x31\x4c\x24\xab\x9d\xbc\x8a\xc6\x94\x2c\x38\x09\xa0\x0e\x2b\x4f\x45\xa9\x27\x22\x31\x71\x9a\xb5\x29\xb2\x42\xc9\xca\x6d\x21\xad\x80\x7e\x79\xaf\x30\x15\x2e\x04\x5f\xaf\xcc\x61\x82\x1d\xac\x72\x65\x6c\x32\x7a\x65\x6b\x36\x82\x80\xb1\x29\x4e\x3c\x67\x1b\xc2\x4c\xf1\x36\xeb\x45\xc8\xd4\xc4\x42\x49\x18\x9b\x90\x24\x9d\x34\x98\x6d\x7f\x21\x53\x1b\xb5\xeb\x07\x6e\xcd\x7d\x01\x5f\xc3\x98\x8e\x81\x0e\x1a\x0b\x74\x23\x3a\x53\x6f\x54\x13\x82\x0c\xb6\x6e\xf5\xa7\x9e\xb7\x8d\xde\x8f\xa5\x96\x88\x39\xa1\x63\x4e\x5f\x46\x8b\x99\x3b\x01\x7b\x44\xb1\xb7\x81\x72\xe5\xbf\xa6\x45\x4e\x9c\xa0\x6f\x3e\x12\x31\x8d\x8b\x20\xfd\x50\x21\xc7\x61\xec\xac\xa1\xfc\xe5\xd8\xb3\x87\xe1\xe9\x43\xef\x99\x0f\xb2\x98\x80\xb3\x68\xad\xce\xe6\x49\x34\x43\xb0\xf5\x66\xc3\x90\x42\x38\x89\x32\x02\x35\xec\x71\x1c\x80\x24\xac\x9a\x81\xa0\xbe\xe5\x0f\xfd\x1d\x4e\x4b\x54\x7f\xb0\x5c\x88\x81\xef\xea\x80\x81\x0a\x39\x64\x82\x0a\x37\xc8\x0b\x3a\x4a\xc2\xb0\xf1\x58\x2a\xbc\xe2\xec\x4e\xad\x7a\xf5\xba\xde\x8a\xbc\xd4\x44\xac\x01\x00\x0a\xc2\x3b\x87\x08\xfc\xf2\x5a\x05\xab\x45\x4d\x31\xd4\x64\x11\x73\x40\x54\x67\x2c\x73\x25\xa6\x19\xe9\xf1\xc5\x6b\xda\x33\x5c\x83\x56\xe9\xcf\x39\x49\xd2\xd2\x85\xbd\xd3\x68\x30\xb1\x0d\x79\xae\x93\xf9\xa5\xb8\x29\x50\x51\x12\x4b\xdc\x0d\x6a\x34\x20\x19\x4c\x9c\x2f\x38\x2e\xbb\x40\xcb\x23\xad\xa1\x27\xc3\xdd\xca\x0d\xf5\x1b\xc2\xac\xd3\x35\xf2\xd2\xda\xde\x30\xff\x0f\x6c\xb1\x72\xc1\xd0\x1e\x1c\x7c\x60\x04\x46\x90\xd0\x74\xa4\xbc\x84\x5b\xc7\x3f\xac\xc3\xca\x41\xc2\xa9\x0c\xd9\xc8\xe4\x64\x7a\xa6\x32\x59\x6c\x8a\xb3\x6c\xad\x9e\x78\xcc\x77\xf1\x19\x26\x7c\x7f\x0e\xbf\x85\xcb\x84\xa3\x0a\x48\xf9\x62\xb2\x59\x47\xd1\xd2\xf4\x80\xdf\xa4\xb2\x11\x8a\x21\x03\xb7\x22\xa7\x0b\xa5\x88\xc0\x46\x98\x6a\xd9\x97\x6b\x36\xee\xd5\xd6\xfd\xf5\xa6\x0e\x3d\xba\xf1\x57\xa0\xe0\x24\x5a\x7a\x11\x57\x50\x11\xaa\xe9\xac\x32\x82\xa0\xe5\x86\x4b\x7e\x39\xca\xdb\x7e\x7d\x72\xfc\xf6\xed\xf9\x95\xdf\xa6\x79\x1d\xd4\x05\x09\x13\xdf\x38\x73\xb8\x51\xbf\xcc\x28\xce\x4d\x60\x0c\xe1\xcd\xf2\xb4\xc4\x21\xb8\x90\x4d\x59\xed\xf4\xb9\x6c\xc0\x7b\x1a\xee\x8b\xf1\xf2\xa8\xff\xc5\xa1\xf9\x4b\xde\xb3\x7c\xf3\x21\x31\x65\xf7\x39\xff\x4d\xc2\xfb\x82\xe0\x8e\x06\x4b\xcf\x5f\xe5\x78\xd3\x7b\xea\x40\x53\x8c\xee\x0f\xc0\xa4\x77\x39\x8e\x46\x84\xfb\x06\x7b\xc5\x75\x8a\xcb\xec\x23\x56\x87\x36\x2d\x16\x0c\x23\x77\x57\x57\xbf\xed\x20\xa0\xf1\xc1\x88\x98\x07\x5b\x59\xce\xab\xb5\x6c\x28\x7f\x71\x3f\x24\x9d\xbf\x06\xe6\xe1\x41\xe3\xf4\xeb\xc7\x6e\xcb\x46\xaa\xb4\x37\x74\x4f\xef\xed\xaa\x94\xb5\x6b\x6c\xa2\x75\xef\x19\x1d\x63\xf8\x8a\x9b\xa6\x8f\x20\x9e\x8d\xaa\x63\x17\xb1\x85\xa8\xe2\x9c\xb1\x0f\xe8\x56\xd3\x79\xb5\xb0\xc8\x1b\xe9\xff\x04\xf1\x7f\xa0\x4d\xf6\x47\xf3\xe3\x78\xa8\xa7\x64\xc2\x11\xd6\xee\xa7\x7c\xbd\x8b\x95\x25\xdc\x3a\x97\xe9\x1e\x25\x28\xaa\x1a\xe3\xa1\x2f\x1b\xf2\xcc\x28\x9d\xf3\x60\x99\x8e\xd4\x09\xf4\x05\x5e\x27\xf9\xba\x17\x5d\x71\x1a\xa0\x9f\x79\x01\x5a\x2d\xc3\x29\xd6\x3b\x3d\xc7\x72\xba\x45\x5b\xc1\xb2\x5e\xd2\xd9\x73\x31\x0d\xbc\x16\x5d\xa2\x6f\xf7\x92\x08\x95\xc6\x34\x5b\x56\x3d\x9d\x91\xd9\x7f\x0a\x76\xd8\x09\xad\x73\xda\x7a\xe0\xf3\x28\x5f\x96\x32\x2a\xca\xbb\xb4\xc0\x42\xc7\xc5\xb2\xa1\x92\x2c\x7f\xe8\xef\x89\x52\x0a\x68\x1e\x97\x7c\x5d\xd1\x64\x55\x5d\xf1\x4a\x7d\x4d\x7f\x68\x17\x16\x99\x3d\xa6\x2b\x11\x48\x51\x89\x2a\x64\xe4\xd4\xec\xea\x51\xbb\x38\x9d\x15\x35\x88\x0b\xe6\x45\x4d\xb7\x55\xe5\x0d\xb4\x21\x21\x7d\x8e\x04\x75\x74\xa4\x9e\xd0\x2c\x7c\x12\xf9\x45\x5c\x1f\x5f\x5b\xca\x43\x3e\xb3\x3d\x4a\xf6\x7c\x75\x2b\x5a\xe4\xbf\xea\x27\x94\xc8\xcb\xfc\x77\x49\xbd\x74\x3f\x30\xed\x9d\x12\x42\x77\x40\x85\x3c\xbc\x87\xfd\x7a\x4d\xf2\xb0\x86\xdb\x15\xca\x6c\x8a\x94\xf1\xf5\x40\xaa\x76\x68\x91\xb9\x43\xa2\x2e\x9c\xe6\xc9\xe6\x7c\x38\xc5\x95\x2d\xcc\x3d\xcc\x04\x4c\xdb\x91\xc7\xeb\x12\x26\x9c\x73\x5a\x57\xf7\x9e\x09\xb6\x6d\x51\x5a\xad\x3a\x79\x67\xea\x45\x1a\xcc\x9e\x42\xcc\xe0\x75\x92\xd9\x61\x97\x6d\x79\xf8\x20\xa9\x8a\x9b\x69\xa8\x88\x6f\xab\xec\x94\x07\x9e\x2c\x4f\x5e\xbe\xbe\x82\x1f\x0b\xcd\x35\xfc\x0e\xcc\x59\x87\x2d\x7c\x67\xae\x4e\x66\xe9\x55\xd7\xc9\x56\x5f\x57\x40\x3c\xaf\x5e\xbb\xa3\xb7\xe9\x20\x7e\x24\x47\x53\xad\x2c\x64\x56\xbe\x36\xbb\x58\x04\x8c\x99\x18\xbf\x96\x44\x2d\xc8\x89\x38\xf3\xc6\x77\x30\x66\xe4\x94\x87\x2e\x54\x89\xb0\x08\xe3\x3b\xca\x30\xae\x1d\xe7\x81\x4f\x0c\x1b\xf3\xc7\x2c\x07\x2e\xb9\xc1\xbc\x85\x26\x78\xbc\x29\x15\xbc\xab\x6e\x6f\x32\xd6\x0d\x63\x23\xdd\xde\xf8\x84\x40\xe2\xa0\x8c\x2a\x02\x76\xd6\x12\x17\x98\xa7\xff\xf8\xdf\xff\xe7\xf1\x09\x77\xfc\xa4\x6f\xd7\xf4\xa5\x02\x1d\xc3\x0b\x22\xa5\x82\xf4\xfc\x5f\x49\x30\xdf\xab\x69\xc4\x2f\xf2\x95\xd8\x6f\x2c\x36\xca\xef\x54\xa1\x8b\x8f\x44\x7f\xf1\x9a\x4b\xd4\xc3\x98\x17\x5b\xc2\xa7\x22\x9d\x78\x3a\x11\x85\x2c\xf2\xb7\x5d\xb5\xf8\x98\xc9\x61\xfe\x69\xfa\x67\xfe\x95\xc2\xb9\x34\x11\xb2\x61\xce\xe3\xd8\x08\xc8\x6b\xc0\x8b\x42\x13\x5c\xb0\x56\x35\x84\xf7\x6c\x27\x8f\xb7\xa9\x1b\xb3\xeb\x33\x40\xf6\x9b\x49\xb6\x3b\xb6\x06\xe2\x29\xb5\xd6\x2e\x28\x05\x4e\x48\x9c\xc8\x42\x45\x50\x83\xbb\xd8\x8b\xea\x40\xf3\xd4\x5d\x71\x22\x9b\xdc\x8d\x91\xe5\x55\x53\x6c\xa1\x3c\xcf\x69\xc8\x2a\x19\x27\x8e\x1f\x2a\x1f\xec\xdb\x12\xf2\x3e\xfd\x49\x88\xcd\xb2\x01\x99\xde\x12\xb2\xf3\x64\x9f\xe3\x56\x0c\xe9\x76\x47\xc8\x57\x9d\xf9\x52\x2b\x82\xa0\xff\x5c\x3f\x13\x4a\xe7\xdf\x57\xf4\x67\xe4\xe6\xcc\x4e\xd1\x63\x67\xe8\x75\x3e\x2f\x91\xfc\x06\x1f\xb4\x60\x88\xd3\xf7\x34\x0b\xd0\x58\xb9\x1f\x09\xa3\xa1\xea\x85\xf8\xf0\x95\xa8\x97\x81\xdc\x08\xca\x67\x82\xfb\x96\x36\x67\x93\xdb\x77\xf9\x5e\x7e\x12\x8a\xd4\x5b\xfa\x95\x7c\x49\x32\x0c\xb8\x05\x14\xf6\xdb\x0e\x1e\xb2\x9c\xae\x80\x0b\xfb\x4e\xac\x03\xb3\x71\x47\x2c\x67\xe0\xac\x9d\x2e\x06\xf9\xd7\x72\x22\x7d\xc1\xe7\x51\x4b\xcb\xc1\x8b\x53\xb3\x41\x73\xe9\x1b\x5a\x46\x72\x29\x71\x26\x5f\x2e\xa7\x10\xa3\xce\x53\xec\x81\x9a\x66\x06\xf5\xe7\xfc\xd7\xa5\x12\x4d\x22\xf5\x2d\xff\x75\xc6\xe9\x12\xcb\x80\x8f\xa2\xe2\x1d\xee\x93\x67\xc3\xb9\x08\xb2\x6a\x16\x28\xe6\xb8\xfd\xa1\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\xf8\x51\x47\xb0\xe7\x94\x10\x92\x56\x54\x31\x0b\xce\x83\x9a\x21\x4b\x4f\xc3\xd3\x36\xc7\x0e\x4c\x38\x4d\xe8\xe7\xb8\x9f\x01\x90\x74\x33\x9f\x00\x65\xa5\x8e\x87\xa3\x81\x0f\x81\x54\xef\xe8\x78\xce\x70\xf6\xfc\xfc\xd0\xd4\x0e\x27\x48\x32\x33\x92\x9c\x16\xa5\x73\xbf\x00\x10\x24\x08\x8e\x2b\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\x84\x9d\x4c\x04\x3f\x41\x84\x13\x02\xd7\x13\x25\x6e\xa5\xa8\x21\xcc\xc1\x9a\x47\x74\xa3\x25\x6f\x99\x5e\x0f\xc1\x9e\xf8\x87\xab\x3e\x50\x4e\xa5\x2d\xc8\x58\xe3\x9c\x19\x3b\xe9\x38\xfe\x79\x0c\xd3\x10\xf0\xd0\x29\xd0\x4e\xe3\x8b\x90\x58\xcd\xfb\xb9\xeb\x6a\xa1\x1a\x9e\xa9\x42\x32\xcb\x45\x36\xbf\xd1\x32\x32\xcf\x70\x7e\x3c\x50\x64\xc3\xd6\x25\x0d\xc7\x75\xd0\x22\x67\x2e\x61\xa2\x48\xa7\xce\xd3\xec\xbd\x3c\xce\x99\xf1\x66\x04\xeb\x13\xe6\x4d\xdd\x24\x08\x53\x29\x40\xce\xf1\x31\x05\x22\x7a\x4f\xd5\x5c\xf0\x2e\x20\x6e\x02\x76\x53\x3a\xd9\x30\x9b\xd4\xb8\x12\x6f\x60\x60\xd3\x7e\x41\x39\xb6\x56\x65\xbe\x2a\x6a\xee\xb3\x06\x16\xa4\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\xdf\x20\xbc\xff\xee\x43\x77\xef\xd9\xfd\xf7\xdf\x7f\xc0\xd5\xc1\xa8\x70\x76\xcd\x9a\xb3\x71\x0d\x28\x68\xd0\xdb\xb6\xfc\x54\x35\xbb\x4e\x64\x34\x7c\x7a\xfe\xf0\x59\xa6\xe2\x73\x1f\x2f\x71\xe7\xc4\x3d\x58\xe1\x85\xcb\x8a\x57\x78\xbd\xdb\x64\x3a\xc6\x4e\x38\x80\xfd\x72\xc5\x0d\x03\x59\xce\x4d\xfe\xea\x7e\xf3\x70\xab\x82\x07\x4b\x9d\xb7\x30\x20\xff\x22\xbf\x9e\x61\x20\x3c\xf4\x5f\x5d\x4b\x4d\x70\xe9\x70\x25\x7e\xe8\x2c\x33\xbb\xeb\x8f\x9b\xb2\x9f\xc5\x5c\xc9\x62\xa2\xa0\xcb\x71\x96\xf6\xc2\x83\xe8\xbc\xc1\x46\x37\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\x0a\x6a\xe8\xf0\x79\xa8\x6a\xa3\x29\xd0\x5f\xd9\xc4\xb6\xd1\x88\x4e\x17\xf8\xb0\x64\xd1\x08\xa9\x01\xbe\xa3\xcd\x48\x7b\xa6\x89\xe6\x6e\x45\x47\x02\x3a\xfc\x80\x63\x9b\x8b\x15\x5f\xe3\x70\x52\x04\x5a\xd5\x99\xd9\xf1\xeb\xa9\x81\x98\x25\xdb\x9e\xc9\x88\x88\x8c\xd8\xab\x54\x15\xb2\x07\x3d\xe0\xa2\x5b\x3e\xf3\xa8\x93\x3b\x5e\x9e\xc8\x70\xb5\x96\x05\x34\x1e\x3f\xd3\x1f\x87\xd7\x81\x3d\x8d\xf5\x8f\x5b\xa1\xee\xd3\x1f\x4b\x92\x7d\xd1\x16\x9d\xdf\xb7\xe3\xfc\x45\xb3\x6e\xfc\xbe\x8e\x5f\x43\x00\x51\x90\xde\x2f\x06\xb2\x99\x64\x7b\xda\xd6\xd5\xcb\x09\x83\x9d\x47\x20\x27\x06\x23\x19\x03\x6b\xb1\x38\xd3\x39\x96\x48\x07\xe1\x5e\x62\x91\x0b\xc6\xb5\xa8\xcd\x15\x40\x9d\x86\x76\x12\x6c\x4a\x15\x2f\x52\x46\xa8\x7a\x67\x99\x3d\xb4\x59\xe0\xcb\xe7\x40\x1b\xaf\x35\x1f\x56\xbe\x4f\x37\xed\xcf\xc4\xd2\xd3\x3b\x6e\xf9\xe4\x10\x14\xc8\xe0\xe1\x61\x48\x33\x59\x7d\x9b\x13\x5d\x8a\x85\x8b\x1e\x34\x38\x45\x0d\x7b\xba\x69\x38\xc3\x82\x01\xf7\xfb\x26\x75\x47\x34\xc4\x22\xe3\x5d\x22\x4f\xb9\xb0\xf9\xdb\x61\x6d\x68\xf9\xd9\xa0\x5a\xf8\x4c\x3f\x85\x2d\xdd\xb0\x41\x6d\xe1\x69\xaa\x5f\x9a\x1f\x9d\x1e\x87\xa7\x46\x1b\x79\xc3\xaa\xb0\xdd\x1a\x1b\x04\xae\x2e\xe5\xc7\xb5\x5c\xba\x19\x10\xc2\x39\xb1\x44\xe3\xdb\x0a\xb8\xbc\x04\x7b\x52\x5b\x0a\xce\x9d\x97\x8b\x1c\x66\xb3\x70\xb7\xa2\xb1\xae\x38\xbc\x94\x1f\x3d\x81\x70\x70\x0a\xab\x9f\xed\x90\xc3\x10\x5d\xcc\xd3\x5c\xf5\xa6\x0f\x19\x60\x6a\x5e\xf6\x7b\x9e\x57\xb1\x6d\x60\xe4\x8a\x49\x6d\xf7\x43\xb8\x53\x13\x7b\x7b\x82\x36\x9e\xf0\x76\x5d\x28\xab\xfb\x17\xfc\x10\x86\xa7\xa8\x1c\x08\xf3\x13\x64\x80\xd5\x6e\x93\xca\xe4\x08\xd5\xf7\xa6\xa4\x46\xb1\xc5\x17\x76\xbe\x14\xc6\xfb\x23\x3b\xc7\x19\x67\xc5\x37\x51\x38\xdb\x2e\x68\xfa\xf7\x2e\x5d\xeb\x47\x4d\xba\x93\x5b\x33\x92\xf6\x8f\x55\x4f\xa5\xff\xd3\x07\xa3\x51\x3a\x0a\x64\x21\x2f\x05\x7d\xfa\x9f\x11\xd4\xf0\x58\xed\xf3\x44\xfb\x0b\x82\x2a\xcd\xae\xb1\xd0\x7c\xdd\x75\x89\x54\x04\x35\xce\x75\x41\x32\xf4\x62\x2e\x9c\x49\xea\x35\x1d\xf1\x99\x11\x28\x36\xdd\xfd\xd4\x2c\x42\x0d\x44\xdc\xd6\xb7\xc4\x54\xe3\x72\xae\x46\xd5\xba\x95\xaf\x30\xf1\xc2\x97\x2a\x38\x98\x15\xad\x0f\xbb\x95\xa4\x5f\xee\xfe\x61\xba\x2e\x85\x2d\x76\xde\xd4\x9c\xb1\x48\x85\xa0\xfb\x0a\xf8\x99\xf5\xbd\xea\x32\x98\x23\x89\x39\xf3\x95\xda\x18\xad\xab\x45\x9f\xba\x74\x6a\x4e\x0d\xce\x61\x94\xb2\x94\xd8\x37\xce\xba\x9c\x36\xcb\x6e\x85\x60\x1a\x0c\x70\x4d\x5c\x6a\xd3\x40\x8a\x73\x2c\x22\xaf\x33\xa8\xf1\x31\xd4\x30\xc2\x06\xab\x5b\x0d\xb9\x0c\xf1\x78\x80\x61\x51\x8c\x0d\x86\x1b\x54\x0b\x3d\xf7\xa1\x9a\x1f\xf4\xb7\xd7\x6d\x5c\x40\x1c\x41\x78\xd1\xdb\xd0\x3b\xb7\x7c\x4d\x37\x72\xb0\xc9\xa9\xa0\x6b\xa1\x0a\x8e\xe6\xa1\x91\xf8\x0c\xb0\xf3\xa9\xfa\x88\x68\x86\x6c\x05\x04\x34\xb5\xba\x41\xb4\xbb\x5a\x17\x21\x4a\x41\x0b\xc8\x64\xfe\xeb\x78\xbc\x4a\xcc\x87\xc6\x1a\xb2\xad\x5a\xb6\xed\x88\x9e\x1e\xfe\xcb\xfd\xe2\x91\x2c\x64\xd8\xf8\x8c\xee\x59\x38\x51\xd0\x19\x6e\x91\x3c\xe6\xaa\x83\xb7\x35\x93\x0d\x6f\x16\x0c\x44\xdf\xb3\x5f\x93\x40\x53\x17\xec\x67\xfe\x0c\x1e\x64\x4f\x28\x0c\x82\xdc\x69\xa5\xc1\x10\xa0\xf0\xaa\x98\xfb\x5d\xd4\x76\x93\xd1\xf2\xc8\xf4\x44\x47\x5b\x0a\x2f\x16\xfc\x1a\x76\xc1\x8e\x32\xc3\xaa\xdd\xa1\x20\x1e\x11\xed\xed\x73\xde\x47\xc4\x87\x58\xf8\x74\xa0\x9d\x24\x12\x50\xbf\x11\xbd\xcb\x56\x01\x21\xaa\x7e\xc0\xe6\x27\xb1\x63\x62\x1d\x1c\x5d\xc3\x8c\x89\xeb\xbe\x30\xd7\x0f\xfa\x94\x46\xcc\xfa\xc0\xf4\xa1\x05\xe0\x7a\x14\x0f\xb2\x14\xa3\x69\xfe\x1b\x66\xb8\x78\x29\x5a\x55\x26\x53\xaf\x35\xa2\x72\x4d\xf1\x71\x44\x8e\x9c\x9b\xe8\x83\x1b\xfa\xf7\x78\xb3\x79\x5c\x14\x0f\x26\x46\x1d\x88\x46\x6e\xd8\x03\xcb\x2f\xd5\x42\x0c\x58\x65\x50\x53\x20\x67\x4e\xe3\x8e\x01\xa2\x79\xfa\x85\xa5\x80\x92\xaf\xc3\xd2\xc2\xe3\x4d\x48\xd7\xcf\x5d\xc7\x5b\x40\x43\x0c\xcf\x5b\x93\x30\xab\x10\x77\xc2\x70\x24\x03\x09\x3d\xc8\x1a\x78\x49\xdf\xda\x3d\x77\x6d\xa2\x12\x1d\xb1\xef\xcd\x01\x94\x48\xd0\xbc\x83\x08\x09\x24\x63\x8f\x54\x27\x1d\x4f\x00\x4e\xc9\xc6\xbe\xed\x7f\xa6\x7c\x3c\xd5\xf8\x14\x09\xdc\x25\x21\x4f\x05\x68\xb5\xb4\x99\xd0\x37\xbc\x54\xe4\xcb\x67\x05\x41\x5f\x54\xce\x08\x7e\x7b\xb0\x55\xd3\x7c\x94\xc0\x37\x73\x7c\xfa\x9c\x25\x07\x7c\x94\x4c\x0e\x6d\xf8\x2a\xce\x25\xd1\xb2\x5a\x84\x81\x60\x9f\x73\xc2\x44\x17\x0b\x9e\xe3\x36\xfb\x5d\x74\x92\xa7\xf8\x95\xfe\x4f\x26\x0c\x07\xa2\x2e\x26\xe7\x16\xe8\x88\xad\x1f\x7c\xae\x3a\x07\x04\x4d\xa9\x2f\xc3\xb8\x2d\xb5\x9e\x67\x76\xfe\x65\x0e\x20\x53\x8e\x1f\xb1\x37\xea\xcc\xd7\xee\xfc\xd9\xf8\x76\x48\x3f\xcf\xcd\x25\x6e\x0c\xe6\xee\x5d\xbd\x1b\x5c\x7c\x39\xc5\xb6\x6b\xb5\x58\xbd\xc3\x15\x8e\xef\x91\x1a\x6c\x58\xa1\xff\x1d\xd1\x9d\x8b\xa5\xa8\x27\x6e\x68\x01\x60\x09\xd6\x05\xdd\x43\x10\x61\x38\xc3\xb2\x64\xd6\xc9\x2d\xbb\x3a\xf5\x89\x6b\x88\x68\x0a\x72\x77\x7a\xef\x60\x8e\x30\xb1\xf5\x41\x07\xee\x82\xd0\x88\x6f\x89\x75\x15\x79\xc1\xf4\x0e\xfc\xa1\x80\xe9\xe0\xe2\x7a\x00\x68\x48\x39\x27\xfe\x21\xa6\x8a\x52\x2c\x8f\xfc\x09\xfb\x40\x83\x25\xe6\x45\x7c\x65\xe7\x7a\xc4\xec\xa9\x6c\x7b\x78\xf2\x8d\xd1\xce\x9e\x05\xb4\x80\xb2\x6f\xa9\x99\xc7\x90\x95\x24\xfa\x23\x06\x21\xeb\xaf\xba\x0e\xf0\x01\x8b\x4b\xb6\xa0\xfc\x54\x15\x3b\xa2\x3e\x9e\x8b\xdb\xea\xfd\x2e\xae\x97\x56\x3c\xee\xcb\x0f\xd6\x3d\x98\x4f\x08\x11\x2e\x34\x30\x5c\x39\xaf\xbd\x87\x72\x37\xd5\x32\x33\x21\xa7\xed\x50\x1c\xc0\xd3\x38\xf5\xae\x7a\x21\xab\x12\x3e\x04\x9b\x2f\x31\xcb\x36\x31\xe9\x87\x74\x34\x1f\x31\xb6\xc4\xfd\xd3\x49\x55\x77\x5a\x9d\x8d\x08\x61\x80\xa5\x41\x7d\x40\x58\x60\x1b\x66\xb3\xcf\xc3\xe7\x90\x72\x1a\xb6\xd8\xce\x00\x21\x49\x48\xd8\x02\x44\x51\x66\x93\x00\x3a\x2a\x1c\x29\x0f\x3e\x72\x5a\x55\x71\x7a\x0b\xcc\x08\x3d\x0f\x6c\x22\xcc\x0e\xfa\x0a\x13\x01\x41\xc0\xeb\x51\xd3\xde\x17\xef\xc8\x9b\x40\x39\x0b\x0f\x96\x3b\xd9\xda\xac\x2e\xca\x2d\xc7\xb4\x64\xc5\xe6\xb5\xec\xb6\xc2\xf3\xef\x68\xf5\xbb\xdb\x5a\x15\xcb\xad\xa9\x66\xcd\x86\x51\x9d\xdb\xb1\x68\x39\x10\xf5\x1d\xad\x7d\x6f\xad\x85\x5b\xd6\xc7\xb2\xdc\x06\x4d\xc4\xdd\x0f\x7c\x3a\xc0\x3c\x63\xd3\xac\x09\x8e\xa6\x6e\x8b\xe6\xe7\x7c\x80\x89\x47\x31\x59\xbc\x95\x80\xee\x66\x77\xb8\x78\x8d\x17\x88\xa9\x40\x11\x3d\x1d\x6a\x50\x07\xc3\x5a\x9e\x2c\xe0\xdc\xb0\xaa\x35\x96\x3c\x51\x95\x58\xeb\x0e\xac\x8a\xbc\xe3\xb3\xeb\x9a\x15\x68\x0f\x77\x2f\x36\xc8\x4c\x27\x0c\x31\x1d\x28\x5b\xbb\x87\xc4\x9a\x8a\x8f\x03\x8f\xe7\x24\x48\x3e\x5c\x60\xe0\x59\x10\xd5\x15\x7b\x16\x04\x1d\x14\x2a\x3a\x54\xcf\xc9\x64\x1d\x4a\x79\xe1\xd4\x72\x7c\x83\x0a\x9e\xec\x99\xc6\x0c\xd3\xc8\xff\x43\x57\x72\xcd\xdd\xaf\x9a\x20\x44\x8c\xb8\x3b\x60\x2f\x0a\x3b\x32\x8b\xc7\xba\x17\xf1\x44\xf1\xa2\xc2\xca\x40\x8a\xb1\xbd\xc5\x44\x19\x1c\x79\x37\x3b\xda\x3a\xd7\xd5\x47\x28\xc3\x88\x30\x25\x88\xf0\xf9\xe5\x15\x34\x60\xb4\x00\x68\x1f\x5d\x32\xdf\x4d\xff\xba\x2a\x6b\xc4\xb5\xe4\x58\xbe\xca\x88\x16\x0b\xf6\x52\xaa\x6a\x0d\xfa\xb7\x2f\xcd\x76\xbc\x2e\xd6\xc2\xb6\x42\x3f\x36\x93\x1e\x44\x13\x96\x22\x5e\x2f\xaf\xb4\x6e\x5b\x2e\x48\x26\x9e\xf1\xb5\x57\x5b\xe3\x11\x04\x17\x9a\xfd\xd6\x98\xef\x6e\x24\xb0\xcf\x61\x85\x59\x80\x16\x45\x49\xa8\x1d\xd6\x3d\x78\x84\x9e\x21\xe8\x94\x14\x6c\x18\xbe\x4d\x06\x06\x7f\x15\x93\xe5\x8a\xd9\x75\xaa\xb6\x24\xb7\x79\x82\x1c\xec\x43\x18\x74\x51\x9a\xbe\x43\x14\x1e\x56\x35\xf3\x7a\x05\x53\x26\x4c\x80\x74\xdb\x46\x0c\x3a\xdf\xe9\xe7\x18\x48\x4e\x4b\xdc\x93\x57\xf2\x35\x06\xd9\x6a\xf8\x24\x17\x48\x69\x0c\x32\x6f\x0a\x3e\xff\x3c\xa7\x3f\x63\x21\xda\x45\xdc\x37\x49\x1a\xc4\xb9\x65\x17\x7c\xb9\x65\xe6\x0c\x42\x77\xb9\xbe\x96\x70\x0a\xac\x39\xc2\x71\x4f\x94\x7d\x6c\xba\x2c\xc1\x42\x4b\xf6\x9d\xe3\x0a\xd4\xa1\x0e\xbe\x22\x88\x94\x16\x6a\xf2\xd4\xf9\x36\xf4\xa6\x1c\xf6\x09\xb7\x16\xd6\xaf\xd7\x22\x83\x60\x1a\x70\xb8\x95\xb0\x76\x47\xbc\xb5\xf0\xb9\xd0\xee\x11\x6d\x03\xda\x4a\x28\x3b\x76\x83\x22\xa2\x46\x84\x12\x03\x11\x19\x56\x2c\xb2\x02\x2b\x62\x0b\xef\x0d\x62\x03\xc2\xc6\x3d\x52\xab\x6f\x46\x90\xd8\x7b\x8f\x20\xfc\x2d\x27\x80\xcc\xbf\x6a\xb8\xcf\x28\xb8\x3f\x2b\xbc\x8a\xd6\x43\xc0\x51\xa2\xa7\x10\xd0\x51\x0d\x50\x27\x9a\x5c\xe6\x14\xa6\xc8\x0d\x14\xa6\x8c\x2b\x36\x99\x0c\x56\x37\x6f\xd3\x24\x1c\x89\x14\xdd\x96\xcb\xbc\x2d\x2c\x6e\x8b\x72\x1a\xf6\x5d\x01\x47\x09\xdd\x74\xf3\x35\x1d\xbe\xb5\x0a\xe2\x8c\x04\xf2\x91\xcd\xa2\x68\xbe\x59\xc6\x31\x7d\x03\x4b\x8b\x85\xb0\x31\xf6\x14\x24\xe6\xb2\xdb\x32\xbf\x11\xe6\x65\xed\x60\xc8\x0f\xff\x74\x79\xfe\xf6\x28\xfd\xfc\x78\xbf\xdf\x3f\xe6\xe2\x8f\x77\xed\x9a\x7d\xea\x0a\x8e\x0b\xf3\x3f\xce\xde\x1c\xa5\x65\xbf\x78\x34\xa3\x83\x7a\x1b\xab\xb7\xd4\x36\x14\x57\x0f\x4c\x5d\x2c\x3a\xfe\x71\xf6\xa4\x2b\x46\xc3\xac\x87\xe1\xc7\xc2\x0d\x92\x67\xcf\x8c\x3f\x74\x32\xc5\x08\xc4\x1f\x0e\xcb\x45\x5b\xc2\x76\x02\x1f\x41\xc6\x9a\xce\x04\x53\xf1\x00\x86\x20\x15\xb5\xa3\xdd\x78\xbd\xd0\x30\xef\x03\x10\xbb\x2a\x3c\xc1\x25\xa1\xcb\xc4\xc4\xb9\x6d\x85\x03\xdc\x75\xab\x66\xb7\x2e\x62\x8e\x49\x38\xd3\x89\x28\x8b\x9f\x86\x85\x61\xe5\x88\x38\xcd\x4f\xd3\x3f\xb1\xa6\x88\x27\x4a\x68\x8b\xb3\x8c\xb6\x00\x3c\x1b\x16\x46\xc4\xc1\x40\x30\xa6\x01\x48\x24\x45\x13\xcc\x7d\x9e\x13\xce\x47\x95\xe8\xf9\x8d\x8d\x2e\xfa\x74\xe3\xce\x73\xa0\x35\xa9\x6e\x5c\x24\xd6\xd3\x4d\x67\x1b\x5e\xc4\xd8\xf1\x48\xcd\x20\x4d\x89\x35\x85\x87\x54\x4c\x3c\x27\x51\x14\xf0\x47\x80\x32\x17\x09\x6d\x4e\xfd\xda\x05\x63\x4a\x35\xc4\x66\x39\xcc\x08\x62\x28\x94\x3d\xbc\xd7\xa7\xd6\xa2\x9c\xa8\xdd\xac\xf9\xd5\x63\xfc\x4d\x77\x38\x91\x4c\xc4\xe1\x27\xe2\x1e\x60\x1d\xb1\xcc\xb5\x1f\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\x98\xf8\x64\x3a\x4a\x0b\x23\x03\xaf\xc9\x53\x97\x16\x8b\x57\xb6\x4a\xc1\x77\xe3\x25\xca\x08\x91\x75\x14\x72\x54\x16\xd4\x62\x83\x00\x06\x81\xb3\x2f\x3b\x19\x98\x59\xfd\xc8\xd5\x39\x14\xa1\xa5\x56\x73\x5b\x13\xf7\xba\x41\xe6\xf0\x5d\x8b\xe1\xca\x26\x59\x4d\x5e\x46\x3a\x91\xaf\x10\x5b\xdb\x75\x73\x63\xde\xe0\xa7\xf8\xa5\xe1\x62\xc2\x91\x79\x30\x1d\x94\x87\x0c\x94\x2f\x4d\x16\x57\xf7\xb7\x20\x3c\xaa\x8a\xb8\x35\x9f\x77\x51\x94\x60\xc2\x63\x4c\xa4\xf0\x9e\xe8\xde\x84\x43\xb1\x83\x1a\xba\x3e\x9f\xba\x16\x0e\xb8\x3e\xc7\x45\x43\xf7\xe7\xa0\xe8\x17\xb8\x3f\xc7\x48\x1a\x3b\x37\xfb\xa1\x7e\x81\x7f\xf3\xd4\xa0\xc7\x72\xed\x14\xe2\x27\x0a\x4c\x49\xb7\x45\x38\xb6\x2f\xf0\x73\x1e\x9c\x6c\xbf\x44\xc0\x9d\xea\x89\x47\x49\x80\xdc\xbb\x34\xbe\x45\x75\x7d\x3d\x9b\xb7\xcd\xbe\x63\x67\x62\x3c\x12\xc1\x5c\x96\x7f\xa7\x97\xf8\x2d\x20\x7c\xd5\x0f\xa2\x90\x0f\x49\x54\x73\xa3\xa7\x7a\xb3\x27\x89\xb8\x67\x1d\x86\xa6\x3f\xa5\x1c\xb9\x73\x7d\x4b\x27\xb1\x63\xcb\x99\x49\x11\xda\xe8\xf6\x19\x7f\xc1\x0d\x1a\xda\x67\x56\x96\xa2\xd0\x25\xa7\x28\x18\x7f\x1a\xc2\x6d\x57\x82\xa5\x9b\xdc\x4a\x8b\xf8\xea\x35\x47\x20\x2c\x83\x23\x30\x22\x86\x0a\xf2\xa9\x07\x09\xdd\x1d\x09\xc2\x70\xe9\x21\x14\x41\x58\xf4\xcf\x5f\xbf\x95\x9f\x30\x5f\xd7\xf0\x43\xb0\x5f\xe7\xcb\xf1\xc4\x8c\xe2\x67\x53\xc6\xf1\x96\x27\x7e\x0c\xa2\xe6\xb0\x57\xdd\xf0\xcb\x41\x14\x6d\x7e\x8d\x6b\x20\xfe\xeb\x52\x49\x06\xf6\xc5\x2e\xda\xf2\xf1\xb0\x18\x21\x47\x50\x7d\x89\x0f\x97\xae\xd7\x38\xfc\xc7\xa5\xe5\x30\xd1\x78\x1a\x8c\xdc\x63\xc4\x6c\x01\x88\xee\xee\x77\x69\x57\xb1\xee\x54\x09\x74\xd0\x20\xa8\xc3\xc7\x0d\x06\xed\xe0\x9d\xb3\x70\xac\xe1\xfd\x10\x42\x1e\x74\xab\xd4\xe1\x87\xdd\x77\x7a\xf1\x66\xd6\x77\x4b\x66\x51\xbf\xa3\xd2\xb2\xc5\x96\x36\xdb\xe9\xba\x59\x42\x8a\xc4\xb3\x86\xf2\x80\xc5\x8e\x1f\x7a\x21\x44\x70\x18\x2b\x96\x38\x1c\xf1\x57\x1b\xaa\xff\x93\x04\x1e\x97\xea\x49\x7a\x70\xde\xd6\x24\x48\xd4\xe2\xf0\x69\x79\x38\x52\x5b\x78\xb6\xa8\x8c\x0f\x6c\x6c\x9a\x6a\xef\x41\x42\xf9\x90\x4c\x16\xa1\x63\x0a\x8b\x29\x1c\x7f\x42\xc6\x1e\x74\x20\x62\xc4\x96\x3a\x66\xbe\x96\xb3\x6f\x35\x36\x16\xff\x0d\xc9\x42\xdf\x04\xb9\x90\x2f\x97\xc3\x12\xb0\x88\x71\x6f\xe4\x4b\xde\xaf\x1b\x52\xd3\x38\x1e\x00\xe5\x3d\x1e\xce\x75\x00\xef\x10\xf0\xd7\xf2\x3f\xfe\xd7\xff\x65\x15\x6b\x43\x3b\x2c\x82\x77\x68\xfc\x4b\x4f\x2b\xe6\x0f\xe7\x1f\xa5\x79\x0c\xbe\xee\x3b\x32\xbc\xe4\x73\x0d\x2a\xa9\x78\xa2\x19\xd1\x3b\xbf\xdf\x60\x6b\x85\xed\xf5\x06\x0b\x06\xf4\xe3\x97\x0c\xae\x31\x87\x75\x18\x11\x64\xba\xdf\xb8\xb8\x7c\x0a\x28\x1c\x04\x23\xea\x95\x48\xa6\xb7\x27\xb7\x76\xf5\x2d\x0d\x30\x61\xfb\x4e\x92\xf7\x4d\xbb\xfc\xe0\x63\xbb\x3a\x27\x80\x28\xae\x2b\xce\xa0\x0c\xe3\xa2\xa3\x1d\x00\xf4\x11\xd3\x7c\x8d\x36\x29\x2f\x99\xf4\xc6\x6f\x8f\x89\x06\x40\x82\x6b\xc3\x1c\xcd\x5c\x92\x67\xe6\x5f\x25\xa1\x21\xf5\xaa\x3c\x7a\x14\x12\x6e\x4f\xa6\x1c\x35\x39\xb2\x48\xf4\x0e\x97\xdd\x74\xf8\x83\xa3\x77\xf2\x33\x76\xac\xcf\x92\xdb\xb7\xd7\x48\x20\xc6\x80\x04\x44\xa6\x85\x7b\x12\xff\x4d\x10\x0f\x50\x35\x78\x9c\xaa\x5f\x9a\x3e\x88\x39\x18\x3d\xdd\x10\xf8\x83\x21\x16\x69\xf4\x1e\x03\x57\x0e\xac\x4c\x5c\xdf\x8f\x22\xd4\x02\x85\x48\xbd\x0d\x3a\x72\x1f\x7e\xb0\xc6\x95\x8d\x06\xb8\x82\x22\x9c\xcd\xc2\x6a\x11\x2e\x41\x27\x88\x8f\x5a\x47\x46\xac\xdd\xcc\x37\x13\xac\x9f\x95\xdc\xed\xfb\x62\x78\x15\x69\x4e\x2b\xe9\x27\x81\x8f\xbc\x20\xf5\x58\x98\x8b\xbf\xbe\x24\xa7\x6b\x3a\x61\xac\xa3\x73\x22\x2a\x62\x59\xf0\xa7\x03\x1e\xb0\xe3\x58\xc2\x5f\xef\x03\x3b\xae\xe3\x76\x2f\xd8\x3f\x7a\xad\x3c\x1d\x27\x30\x54\x86\x0d\x02\x06\xba\xac\xa9\xc8\x81\x7f\xe4\x92\x37\x06\x0d\x44\xac\x08\x05\xae\xa6\x2f\xbd\x4c\xd0\xbb\x63\xa2\xd4\x7f\xec\xea\x38\x8e\xa0\x3b\xec\xf5\x28\xc4\x5d\xd4\xe9\xaf\x0b\x75\x77\xf0\x0e\x36\xe2\x15\xc3\xc3\xe1\x28\x5e\x05\x06\x78\x6b\x91\x38\x7a\x45\xd8\x61\xa7\x0e\x0c\xee\xf4\xf4\x86\x40\xe2\x56\x88\x8e\xfb\xee\xe0\x15\x07\x2e\x4d\x6e\x8b\x62\x31\xec\x25\xf3\x18\xe7\xa2\x11\x76\xf2\xd6\x12\xe1\x5e\x1b\xdf\xbb\xff\x23\x91\x2d\xa6\x2f\x26\xf8\xf0\xb8\x37\x9d\x19\x76\x66\xc3\x9f\xd7\x44\xf0\xe1\xc3\xf0\x25\xa7\x13\xcf\x68\x3d\xe6\x20\x55\x09\x72\x07\x11\x9b\x95\x6b\xcf\xf4\x1e\xce\x82\x5a\x0d\xd2\x3d\xcb\x83\x15\xb4\xde\x34\x7a\x20\xf9\x0d\x11\x66\x32\x67\x58\x3e\x6e\x23\xf6\x48\xb0\x54\x77\x37\x74\x86\x0f\x97\x4e\x58\x5b\x94\x08\x38\x70\x22\x5f\x2e\x47\x0f\x69\x1a\x05\xdb\x77\x42\x22\x1c\xc3\x8b\x28\x48\xd5\xdd\x4e\x71\xcd\x0e\xd1\x34\x29\x37\x5b\x9e\xc2\x3c\x75\x6a\x42\x96\x6f\x65\x17\x14\x59\x50\x7b\x05\xd1\xfa\x87\x61\x5d\xf2\x58\x8d\xee\x9a\x6f\x9b\x7d\x22\x5b\xe6\x0c\x8e\x11\x12\x91\x57\x53\xe2\x2e\x49\x1a\x0b\x24\x1a\x2e\x29\x95\xb8\x10\x1a\x50\x67\x9c\x3f\x08\x25\x80\x1d\xc3\x05\x11\xb0\x00\xdb\x2c\x54\xaa\x0b\x4e\x2d\x77\x33\xb1\x6f\xbd\xd4\x0a\xa1\xd4\x37\x0b\xd9\x34\x6e\x37\x84\xf8\x92\x86\xf1\x36\xf1\xb0\xb9\x23\x53\x8c\x21\xfe\xa2\x6a\xec\x24\xd0\x9c\xb4\xa2\x0f\xce\x5a\x3f\xdc\x9b\x6f\xbe\x1f\x21\xc4\x97\xf4\x83\x5b\x81\x35\xb9\x1c\x52\x6e\xe9\x0f\x9d\x2a\x35\x9c\x64\x64\x01\x30\xec\xa2\x77\x91\xbf\x0a\xf6\x69\x58\x9d\x14\x03\xb9\x83\xf5\xd0\xe3\x0d\x53\x72\xe4\x76\x78\x42\x34\x10\xe3\xa0\xc9\x48\x53\x77\x2f\x71\x98\xed\x73\x49\x07\x1a\x98\xfd\x78\xb0\xc9\x5d\x47\xfa\xe5\x45\x39\xc8\x56\x67\x2a\xcf\x49\xe6\xdd\x1b\xae\xc0\x59\x8c\x25\x91\xeb\xc2\x2d\x03\x82\x9d\xcd\x64\x21\xaf\x0d\xb8\x35\xce\xac\x2e\x68\x75\x5c\x99\x63\xd5\x80\x72\x2c\x7a\x0c\x67\xbc\x33\x94\xca\x02\x2d\x2d\x33\xe5\x23\x93\x55\x9d\x4d\x02\xa0\x36\xf9\x4d\x64\xf5\x03\x23\xe5\x4d\xfc\x3a\xef\x2d\x8a\x9d\x71\x57\xfc\xae\x2d\x21\xfc\x1d\xc1\x1c\xd4\xe6\xcc\xc2\xa5\x3e\x26\x10\x4f\x76\xcb\x16\x1e\x0d\x36\xd7\xcc\x2c\x02\x52\x40\x85\x3f\xb8\x51\xba\x47\x21\x3d\x37\xc0\xb5\x33\x55\xf4\xe0\x36\xa6\xf0\x15\x1d\x00\xdb\xb8\xbd\x07\x60\x0b\xe2\xe4\x46\xdd\x08\x58\xc0\x6d\x1d\xd1\xd7\x1c\xbf\xbc\x23\xe0\x1b\x5f\xd8\x91\x23\xeb\x85\x86\xbf\x2e\x8a\xc9\xf5\x7f\x5b\xff\x06\xc7\x1c\x10\x67\x14\x5f\x7d\x40\xf0\xd1\xeb\xf3\x8e\xe8\x03\xfb\x37\xab\x16\x96\x16\x6a\x8f\xa7\xdb\x99\xaf\xaa\xa6\x29\xc4\xb9\xb5\xee\x43\x9b\xbd\x38\x32\x09\x9b\x8b\xf5\xed\x8d\x8a\x24\x3c\xb8\x38\x30\x8a\x37\xd5\x91\xc3\x17\xee\x8e\x25\xe6\xfe\x7b\xa0\xfd\x43\xe2\x1e\x14\xe4\xa5\x6c\xdf\x89\x28\x6a\xe4\xfe\x0c\x51\xcf\x7d\xb8\xf3\x74\x18\xfe\xfc\xd6\xd0\xf3\x71\xc8\xfd\xe1\xdb\x0b\x9d\x44\x28\x5b\x9a\x2c\x67\xcf\x38\x26\x6a\xa2\xc4\x8c\xf5\x86\x70\xb0\xc1\x1b\xbe\x0b\x8e\x42\xdc\xd4\x95\x18\xc3\x9c\xc9\x17\x8d\x3d\xc1\x98\xb2\xad\x04\x83\xc0\x13\xfc\x12\x19\x52\x53\x38\x32\x64\xd2\x37\x3d\x04\x8a\x2b\xfe\xfb\x43\x7a\xbf\x48\xfc\xd0\xa1\xb2\x64\xed\x90\x4a\x09\xf2\x1d\xe4\x07\x71\xd2\x61\x20\xdf\x5a\xe4\x77\x5f\x03\xba\x09\xc5\xe8\x2e\xe8\xb6\x76\x12\x95\xee\xba\xa9\x16\x33\xbe\x6e\x4d\xf5\xb2\xd9\xbd\xe4\xce\x1c\x84\x1f\x57\x2b\xf8\x71\x35\x51\x9b\x1d\x05\x09\xd1\x84\x84\x19\x5b\x17\xae\x34\x4a\x8e\x77\x45\x9f\x2e\x71\x9b\xa2\x24\x0e\x1e\x13\x25\xe4\x8b\x51\x2b\xa6\x16\x0f\xd3\xcc\xf0\xce\xa7\x98\x09\x5e\x54\x7b\x1c\xb2\x32\xcc\x12\xbb\xc5\x28\x49\x5f\x95\x8c\x47\x22\x4a\xc9\x30\x6d\xdd\x2c\xf9\x79\x04\x7b\xb5\x38\x18\x9e\x0a\xd6\x71\x9d\x66\x83\x1d\x55\x01\x5f\xcf\x30\x05\xb7\x65\x7d\xde\xc5\xa5\xb1\x3e\xc3\x04\xf5\x93\x1f\x01\xd2\x41\x3b\x5f\xac\xd4\x25\x68\x82\x90\xec\xbc\xec\x88\x49\x0e\xcd\x53\x90\xf2\xf2\x67\x6a\xef\x7c\x4e\xc2\xf0\x9b\xee\x78\x56\x35\xc8\x65\x9f\x06\x76\xa0\x41\x54\xcf\x46\xa3\x5b\xb1\x83\x83\x8b\xe0\x99\x9e\x63\x39\x76\xb7\x16\x0a\xb6\x38\x8e\xb2\xa0\x51\x43\xb5\xa4\x88\x23\xb7\xec\x75\xbe\x66\xdd\x35\xd5\x8c\x24\x78\x05\xae\xf3\x42\x44\x0e\x87\x2b\xbd\xce\xb5\xec\x2f\xaa\x63\xd0\x4b\x0f\xe1\xaa\xf9\xfa\xae\x42\xa5\xc6\x61\x6a\xa8\x37\x83\x4e\x46\x3c\xcf\x40\xee\xa8\x61\xd0\xc5\xc9\x2a\xbe\xa2\x93\xfc\x14\xf1\x72\xe1\x1e\x50\x3d\xe5\x68\xd1\xed\x9c\x39\x1e\x6f\x70\xe5\xc2\x7c\xc9\x22\xb5\xdc\x74\xf1\xdb\x7a\x86\x0e\xf1\x81\x7c\xaa\xfa\x43\x7d\x6b\xcb\xee\xa6\x5e\x64\x78\x47\xb7\x5b\xe9\xf5\xe7\xbb\x52\x94\xe3\x0f\x66\x94\xf6\x24\xd7\x08\x6b\x25\x2e\x0a\xbb\x07\xf2\xa0\xc0\xc3\x05\xa5\xc3\x2a\x99\xf6\xbf\xc7\xe0\x89\x28\x6d\xd2\x1d\xc9\x6e\xfd\xa3\x5b\x1b\x1a\x8c\x25\x60\x88\x01\x6e\x5b\x74\x85\x5f\xfe\xff\x82\x11\x04\x57\xef\xe1\x30\x98\x0c\x74\xf5\x83\x57\x84\xef\xdf\x30\xe2\x1e\xb2\x19\x05\xc7\xff\x66\x1b\x11\xb5\xbd\xd2\xdd\xce\xde\x49\xd6\x0b\xb1\x03\x03\x0a\xdb\xbd\x65\x86\x1e\x44\xbd\xb8\x7b\x8c\xe1\x26\x24\x6f\xe1\xef\xb6\x6c\x27\x9c\xba\x47\xf0\x7f\xc1\xef\x90\x29\xc8\x13\x05\xd9\xb2\x69\x1b\x9a\x1e\x89\xf9\xa3\xcf\x16\xbc\xb4\xb4\x6e\xa2\x00\x14\xd8\x37\xd9\x4e\xe3\x34\x59\x99\x33\x24\x93\x70\xc1\x41\x9b\x7c\x29\x6c\xd1\x56\x86\xd5\x92\x0b\x55\x66\x63\xcf\xb6\x52\xc7\x96\x11\x94\xd4\x32\xcd\x9c\x1d\x00\xd4\x2d\x15\xc0\xe7\x9a\x12\xc0\xe2\x22\x84\x03\xe9\x10\xba\x76\xdb\x8c\x87\x8a\x88\x1f\x92\x9c\xbe\x41\x72\x7a\xc5\xc9\xe3\x16\xac\x57\xae\xd8\xa0\x53\x87\xca\x71\x70\x85\x61\x99\x17\x1c\x83\x61\x08\x6f\x98\x5b\x95\xf9\x76\x84\xb7\x57\x94\x38\xc2\x1a\x20\xc7\x08\x00\xec\x61\x2c\x84\xa5\xaa\x02\xa7\xae\xb0\xc4\x6b\x4a\x3a\x04\x0d\xbb\x82\x21\x7c\xcd\xa2\xe2\x81\x12\xba\x67\x0f\x7b\xa5\xb7\x37\xa3\x5e\x35\xf3\xbf\x97\x8b\xbe\x33\xe8\x73\xf9\x19\x40\xcd\x9b\xa6\xe7\x47\x77\xb7\x2c\x6e\xc1\xde\x4b\xd0\xf4\xdc\xd2\x59\xdc\x5a\x7c\x1c\x61\x4a\xa0\xc7\xa8\x12\xe8\xc3\xb8\xda\x70\x44\x46\x6a\xab\xdd\x2d\xfa\x1d\x2d\x50\xd7\xe0\xd9\x25\x47\x72\xbc\x74\x19\xa3\x16\x47\x25\x43\x0a\x1d\x16\x9e\x6a\x79\x41\x42\x44\x39\xd9\xf4\x09\xe7\xdc\xda\xf6\xa8\x6c\xd8\xf8\xa8\xf8\xd4\x4a\xc1\x2b\x3c\xac\x50\x9f\xef\x16\x1f\xcb\x9e\x9d\x88\x56\x19\xee\xad\xc3\xba\x2e\x0c\x2c\x7d\x0e\xb0\xf4\x15\x81\xa5\x57\x50\xd1\x4c\xd4\x4a\x9b\xce\xa6\xec\x73\xd8\x1f\x04\xb5\xbc\x3c\xa1\x19\xe0\xe4\x22\x9f\x2a\x05\xd5\x4d\xa6\x52\xb6\xae\x42\x16\x7c\x82\x1a\xce\xa1\xdd\x51\xc1\xfb\xd8\x81\x4c\xd5\xc6\xe1\x7c\x64\xf7\x5b\xdc\x2c\xe4\x71\x1a\x0e\xf0\x43\x7d\x78\x27\x29\x01\x2c\x4e\x12\x04\x6b\x3c\x12\x57\xed\x08\x36\x4f\xe0\x57\x31\xa3\x14\x0e\xe6\x81\x85\x71\x11\xdc\x05\x7b\x22\x4f\x01\x6e\x73\x59\x4c\x07\x21\xad\x79\x03\xb4\x96\x87\x70\xda\x68\x27\xa8\x14\xb6\x22\xc7\x38\xb1\xc6\xd7\x50\xed\x44\x73\xb8\xc8\x85\x31\xbe\x05\x6a\xe7\x34\x85\xbd\xf3\x0d\x75\x05\x13\xe9\x15\x32\xab\xa4\x98\xbc\x85\x07\xf6\xec\xdb\xf2\xa2\x18\x35\x92\x16\x3d\xe8\xae\x69\xe6\xec\xea\x62\x6d\x69\xba\xbe\xb2\xac\x6f\xf7\xc2\xbc\x1e\xef\x0e\xb2\x55\xee\xbb\xf0\x05\xee\xb7\xa1\xe5\xfd\x55\x83\x51\x06\x03\x8b\xad\x91\x6c\x98\x77\x3b\xdc\xce\xb4\x8e\x30\xa6\x8b\x8e\x0c\x02\xb2\x19\xe4\x0c\x1e\x16\x54\xc3\x1c\x81\x94\x00\xa6\x72\xcf\xb5\x0e\x4b\xe3\xf4\x62\xc7\x81\x41\x0d\x6f\x70\xb2\x09\xb0\x3c\x7e\xb9\x19\xda\x65\x3e\xd8\x8b\x75\x35\x74\xb3\xb0\x7e\xdb\xd5\xf6\xfe\x8f\x91\xc1\xa1\x27\xb7\x2c\xc8\xf7\x17\xbe\xba\xe5\x71\x11\x50\x0a\x2e\xee\x63\x1a\xa9\xba\x2c\x24\x8a\x61\x8c\xf0\x7c\x40\x24\x0c\xae\x74\x12\x81\xe2\x26\x3f\x7c\xe3\x3e\xb8\x59\x35\xc2\xc1\x1d\x26\x5b\x78\x67\x6a\xe4\x38\xaa\x21\x28\x03\x95\x9e\x10\x36\x9b\x96\x8a\x8b\x6b\x58\x8f\xc4\xaa\xcd\x6c\xc6\xee\xaa\xeb\x60\x68\xdb\x49\xbc\x7b\xad\xaa\xa1\xdd\x3d\x89\x06\xe8\x5b\xaf\xe4\x62\x04\x4f\xbf\xd4\xf8\xff\xe5\xb1\xca\xb0\x03\xfe\xc9\xca\x03\xed\xff\x53\x9e\xac\x1c\x6a\xb4\xbb\xb8\x2b\x13\xe6\x75\xc7\xc3\x77\x2b\x0e\xd8\xd6\xf1\x9b\x7e\x33\x78\x2a\xc5\x2c\x32\xba\x30\x8c\x58\x25\x4a\x84\x2c\x10\x09\xb1\xe9\x04\x92\xbc\xba\xdd\x34\xed\xa2\x2d\x03\xf7\x1b\xb6\x17\x38\x97\x45\xad\x49\x89\x71\x40\xfc\xb8\x0b\x92\x32\xbe\xa5\x93\x74\x55\xf4\xa4\x16\x9f\x5b\xb5\x76\x33\x68\x7b\xf4\x6a\xcc\xd2\x86\x41\x69\xa1\xc4\x53\x66\x35\xe8\xf2\x80\x5d\x45\xdd\x96\x52\x12\xf6\xc2\x1c\xd7\x94\x23\x6a\x56\xd0\x7b\x49\x09\x23\x3e\x4a\x8a\x3c\x08\x87\x77\x8e\xe5\x4b\xd3\xc7\x86\x2e\x41\x27\xb5\x9a\x41\xe7\x82\x5a\x01\x35\xcd\x71\x83\xde\x0c\xad\x88\x25\x15\x1e\x5c\x6c\xf2\xdc\xf5\x9a\xb2\xd5\xb7\xf0\x39\x8e\xa3\xa4\x40\x79\x52\xc0\x16\x91\x75\x25\xa7\x6f\xc3\xf4\xe0\x8d\x38\xe4\xba\xd7\xe1\x26\x60\x02\x33\x94\xbc\xe5\x30\x92\x3f\x68\x54\x9d\xe0\xad\x38\xf6\xb6\x92\x97\x67\xb6\x6b\xee\x2f\x47\x14\xc7\x15\x06\x6b\x81\x59\x66\xc8\xf1\x3c\x14\x2e\x74\x89\xcd\x2c\xc5\xac\x55\x9e\x33\x51\x64\xb2\x7c\xa0\xb1\xac\x20\x17\x68\x70\xde\xe7\x6c\x84\x15\x80\x14\xf6\xb4\xb6\x1f\x51\xde\xf7\x6d\x35\xdf\xf1\xbd\xa8\xda\x7f\xf0\xa2\x14\x63\x13\x97\x37\x82\xed\x76\xe6\x9f\x71\xa9\x5f\x87\x61\x07\x4f\xe4\x0f\xe0\x24\x9e\x96\x75\x4b\xa2\x69\x59\x15\xb8\x56\x70\x00\x72\xd9\x18\x41\x6c\x78\xc7\xc9\xba\x9c\x97\x27\xf1\xd6\x22\xbd\x3c\xd6\x9c\x6e\xd3\x6f\x2d\x1e\xfc\xe5\xd9\xd5\xc5\x2d\xb4\xc4\xa0\x4a\x13\x80\x0c\x08\x83\xb3\x94\x38\x90\x15\x50\x88\x1a\xdd\xa8\xa5\xba\x1e\xeb\x61\xb6\x23\xc4\xd6\x4d\xc3\xdd\xb6\xed\xcb\xeb\x3e\xfc\x50\x3b\xbf\x29\xc0\x86\xe5\x52\x66\x96\x9e\xed\xd6\x7d\xc5\x56\x60\xd6\x9a\x5a\x22\xf1\x3b\xf6\xe5\x36\x6f\x2d\xaa\x29\x62\xf8\xa4\x0f\x8e\x1e\xcc\xa2\xd5\x97\xf5\xf2\x20\xa0\xbc\xcd\x78\xf5\xe6\x92\x3e\x17\xed\x8d\x5c\x84\xea\x48\x3f\x56\x5b\x06\xd3\x27\x9d\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\xa8\x43\x26\xf9\xf9\x4e\xd0\x74\x34\x91\xe4\x67\x0c\x84\xdf\x32\x66\x63\xcd\xad\x21\x30\x0c\x8f\x32\x14\xcf\xf4\xc1\x4b\xc5\xf4\x48\x54\x89\xa1\x03\x89\xc5\xb3\xb6\xa1\x44\x19\x17\xb9\xcb\xc6\x7d\x16\x31\xb3\x70\xe7\x1a\xbc\x7c\xfc\x65\xb6\x3f\x61\x65\x81\x94\x71\xdb\xa0\x27\x23\x35\xc4\x25\x22\xc8\x4c\xf8\xab\x3d\x0e\x13\x57\xed\x1f\x03\x1a\x95\x88\x9e\x89\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\x6f\xb7\x6e\xdb\x08\xde\xff\x01\xd9\x06\x20\x9f\x84\xe1\x04\x10\xb4\x08\xba\x41\x3d\xe2\x7c\x16\x02\xb1\x0f\x9a\x02\x0c\xb7\x1e\x4d\x6e\xae\xaf\x39\xbe\x16\x47\x89\xd4\xe0\x28\x08\xb7\x75\xc6\xd6\xdc\x56\x52\x5c\x2a\x33\x56\xca\x41\xc9\xc5\x63\xb2\xa7\x63\xdf\x21\x91\x4f\x15\x06\xde\xee\xdc\x9b\xdb\xef\x76\xb5\x9c\x97\x82\x2c\x6d\x88\xb3\xc2\x46\x20\xbd\xb4\x4d\xd3\xdb\x2b\x0d\x81\xe8\xf2\x8e\x92\x69\x4f\xeb\x57\x0e\xc1\x7c\xd3\xb5\xc8\x24\xec\x7c\x50\x06\xf7\x6c\x0b\xd8\xe4\x8f\x0b\x51\xbf\xc7\x25\xa8\xdf\x07\xc0\xc5\x30\xc3\x36\xfe\x4b\xfc\x12\x26\xed\x7a\xcc\x66\x9e\x4a\x8d\x36\x60\x49\x1b\xd2\x4d\x88\x83\x62\xee\x09\xe3\xd4\xee\xe6\x26\x49\x83\x20\x43\xe9\xc5\xa7\x86\xf2\x82\x4f\x0d\x65\x1f\x9f\xaa\x1d\x1b\xf4\xa0\xeb\xd6\x36\x11\x97\x97\x6f\xe2\xd9\xf6\xb9\xc1\xb3\x3d\x6c\x2f\x76\x8f\xc3\xc5\x72\xd4\xba\x7b\x29\x7b\x1a\x3e\x0a\x4a\x28\x36\x43\xfc\x69\xea\xb0\x8e\xee\xb7\x75\xd5\x97\xdf\xdf\xc3\xd5\xf9\xbd\xbe\x2a\xe6\xf7\x1e\x85\xeb\xa6\x82\x63\x41\xb0\x70\xaa\xc5\x01\xf4\xb8\xc3\x7b\xf4\xb2\x68\x2a\x5e\xda\x55\x5b\xda\xfe\x7e\x12\x3c\xf6\x39\x22\x69\xbf\x0d\x38\x82\x0e\xb7\x00\xeb\x18\x7b\xa9\xb4\x41\x46\x46\xf2\x42\x2f\x6f\x21\xb2\x81\xe6\x3b\xab\xe6\x39\x92\x7d\x0f\x25\xd4\xad\x85\xbe\x55\x7b\x7d\xeb\x1f\x22\xd7\xbe\xae\xe1\x47\x62\x45\xec\xbd\x66\xe8\xd9\x46\x4f\x3b\x43\xc1\xa6\x2f\x3b\x6b\x01\x8c\xdd\xa9\x2f\xce\x78\xc0\xa1\xc6\x62\x38\x60\x38\x50\x55\xbf\x97\x12\xad\x30\x18\xf6\x19\x1d\x86\x37\xbb\x0d\xde\x75\xbc\xe4\xe0\x6a\x78\x99\x73\xd4\xad\x2d\x49\xfa\x79\xd8\x23\x24\x38\x26\x24\xbe\x91\xec\x18\x92\xad\xf5\x86\x4b\xfc\x27\xe1\x1e\x92\xbe\xc1\x95\x96\xc3\x0e\x6d\x42\x5e\x2c\x8d\x0a\xbd\xe3\x3c\x27\xc6\x4e\x14\x36\xb7\x6a\x47\x2a\xe6\xb6\x38\x49\x2a\xbf\xed\xca\x1d\x55\x5e\xd6\x4b\x90\xe9\x9f\xf9\x27\x89\x3b\xfc\xd3\x21\x48\xfc\x11\xa1\xf0\x62\x8f\x86\xa7\xe6\xa1\x08\xbd\x17\xa5\x38\x5a\xb8\x53\x2e\x09\x66\x26\xdc\x05\xce\xf0\x7b\xba\x83\x0a\x3b\x3e\x9a\xc4\xf9\x36\x8b\xb4\xa6\x9a\x60\xee\x5e\xfd\xfc\xe6\x7c\x00\x39\xc1\x0c\x34\x67\x82\x79\x68\xce\x04\xab\x90\xdb\x5a\x37\x04\xdc\xd0\x4e\x8f\x40\x20\x0f\x0e\x40\x08\xda\x5b\x66\x80\x92\x27\x2b\x52\xd2\x2f\x88\xb2\xc4\xdb\x46\x88\x5e\x7e\xc7\x40\xc1\x23\x52\x02\x65\x6f\x48\x8d\x5a\xad\xc3\x36\x6b\xb9\x69\xf4\x5c\x47\x4c\x84\x02\xae\x23\x26\xf6\x93\xdd\x33\x68\xf6\x2a\xaa\x0a\x7d\x73\x4b\xe0\x2f\x34\xc9\x40\x0d\xc4\xd7\x6c\x10\x5a\xb5\xeb\x26\x11\x6e\xe5\xa4\xd7\x13\xfc\x8a\xa6\x4e\x97\x1f\xaf\x17\x81\xf5\x2b\x90\x9f\xa6\x96\x12\x06\xbc\x5c\x38\xc4\x98\xce\xf8\xe5\x89\x7f\x5e\x0b\xea\xe5\xc1\x60\xd6\xd5\x75\xe9\x94\xd1\x3a\x9a\x37\x94\x16\x01\xaf\xfa\x7e\xdb\x99\x8f\x39\x9e\x74\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\xf8\x57\xed\xbd\x2c\xe0\x5a\x67\x19\x60\xb2\x65\x86\xd2\x5d\x92\x61\xb0\x4b\x9a\xb5\xd0\x6c\xd1\x4a\xbc\x3b\xfe\x73\xc5\xa6\x1a\x2e\x27\x5c\x7b\x96\xd6\x11\xed\x15\x3b\xf1\xd2\xd3\x4f\x0f\xef\x1f\x02\x10\x34\x59\xc6\xc4\xe3\x01\x31\x40\xf9\xb9\x5c\xec\x82\x9b\xc3\x9f\xe5\xb7\xaa\xea\x7d\x35\x8d\x19\x07\xef\x6a\x3c\x1c\x71\x21\x29\x01\xcc\x54\xd0\x4b\xeb\x3a\x4c\x9c\xcd\xd4\xf9\x60\xfb\xae\x79\x1c\x66\x19\xca\x2c\xae\xcc\x90\x49\x7e\x66\x6b\x71\xb4\x1a\x18\x61\x19\x6c\x28\xf1\x84\x69\x08\x9c\x15\x18\xbc\x59\xde\x44\xc7\x2d\xab\xd9\x32\xcb\xda\xce\x02\x58\x1c\x1f\x82\xd7\x68\xa5\x0f\x92\x7f\x97\x89\x65\xf2\x5e\xcc\x96\x3e\x0c\xde\xc0\x33\xed\x7e\x60\x46\x17\xf9\xa3\xdf\x97\xe7\x23\xda\xb2\x0e\x62\xe5\xc9\xaf\x62\xf4\xf4\x94\x05\x76\xfe\xd6\x07\x76\x8e\x5e\xc2\x1e\x3e\x4a\xe1\x1e\x09\x40\xad\x6c\x97\x28\x0f\x90\x04\x3d\x78\xd2\xb5\x8b\x27\xf7\xc3\xf8\xff\xac\x2f\x8d\xa3\x67\x47\x55\xca\xe8\xec\x21\x85\x5f\xf5\xf1\x02\xf9\x1d\xd6\x2b\x4a\x3d\xa9\x9a\x83\x6d\xbb\xd7\x05\xb4\x86\x61\xac\x6f\x43\x54\x14\x23\x37\xac\x50\x43\x78\x8f\xeb\x1b\xbc\xed\x10\xbc\x5f\xd1\xd4\x5f\xd3\xb1\xc9\x60\xc1\xbf\x6a\xe4\xe8\xaf\xee\x96\x0b\xe6\xa5\xd8\xb7\xdf\x03\x5a\x90\x19\x9d\x9e\x4e\x4f\x1e\x88\x4e\x21\xcf\x7e\xd9\x2c\xd2\x8f\xdb\xa7\x31\xa6\x8c\xe1\x34\x6a\xd8\xf8\xef\x82\x18\xdf\xf0\x58\x96\x8c\xaa\xd3\xf8\xac\x12\x59\xfd\x3b\xf7\x6c\x56\xf2\x9e\x43\x2d\x7f\x48\xf2\x25\x8f\x89\xfe\x4f\xf0\xaa\x9d\xf8\x28\x80\x46\xe9\x33\x91\x9f\xfc\xf5\x2d\x57\xfc\x6d\xda\x95\xc4\x34\x11\x24\xf8\xdb\x0d\x12\x36\x74\xb4\x26\x56\xc4\x09\x2b\x24\xf0\xb3\x8e\xf8\x59\xe0\x67\x91\xdf\xe0\xd7\x1e\xbf\xf6\x65\xf9\x51\x0a\x83\xab\x52\x71\x3a\x9c\xaf\x90\x72\x83\xdf\x37\x1c\x4c\xf7\x3e\xfb\x67\x71\x3b\xfa\x52\x82\xfd\x40\x68\x62\x6e\x4e\xd3\xed\x07\xa5\x73\xab\x9a\x2a\x9f\xf7\xf9\xda\xff\x46\x93\xf0\x45\x29\xdc\xbc\x26\xc9\xe7\x7d\xb0\xc6\x7e\x65\x15\xca\x37\xa5\x72\x3f\x34\x51\x3e\x29\xad\xcd\xf7\x99\xef\x97\x7e\x21\xd5\xf7\x4a\xbf\x08\xbd\x45\xdb\x6c\x39\x4c\xe9\x07\xf7\x56\xa6\x7f\x75\xec\x94\xf2\x34\x14\x13\x62\x53\xb2\x4b\xf1\x9a\x5f\xce\xc3\x53\xc1\xec\x53\x3a\x4b\x2c\x7c\x70\x55\x6f\x77\xee\x7c\xea\x63\x57\x0b\x98\x8f\xe7\x24\x86\xea\xfc\x94\x90\xbc\xb3\x46\xb3\x9b\xcd\x2b\x7d\x5e\xae\x4c\xf9\x30\xf0\xf0\xdf\xfe\x0d\xe0\xf4\xf9\xef\xff\x9e\x9e\x3d\x7f\x94\x96\x9f\x39\x3a\x5d\x97\x6e\xf2\xcf\x38\x15\x28\x14\xfd\x7c\x11\x01\xb2\xff\x2b\x4c\x8e\xf5\x1a\x4a\x5f\x0b\xc7\xdd\xd3\xff\x0b\x00\x00\xff\xff\x17\x8a\x67\x7c\xd8\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\xec\xac\xc3\xc1\x66\x15\xa9\x2a\x8e\xab\xc8\x6a\x92\xe5\xb2\xfa\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\x76\x9b\x15\x65\xb7\x48\x9f\xa6\xc7\xe9\x36\xaf\xea\x75\xd9\x75\x69\x57\xae\xaf\x1f\xaf\x9a\xae\x2f\x8b\xf4\x65\xd5\xd3\xef\xf6\x53\xb5\x28\x93\x64\xd5\x6c\x4a\x02\x7d\x45\x7f\x92\x22\xef\x56\xf3\x26\x6f\x0b\x4a\x38\xb5\xef\xa4\xfc\xbc\x5d\x37\x2d\x03\xfd\x2c\x5f\xc9\xaa\x5c\x6f\xb9\x0c\xfd\x49\xba\x6a\x59\x67\x55\x4d\x3f\x2f\xe9\x2b\x7d\x5d\x4b\x4a\xb3\xeb\x2d\xe9\x7c\xd7\x4b\xda\x6e\x6b\x49\xbf\x6c\x93\xb6\x5c\x56\xd4\x9b\x96\x92\xde\xe9\x67\xb2\x2f\xe7\x5d\xd5\x73\x4b\x7f\x95\xaf\xe4\x53\xd9\x76\x55\xc3\xb5\xff\x45\xbe\x92\x6d\xbe\x64\x80\x0b\xfa\x93\xf4\xe5\x66\xbb\xce\x51\xe0\x4a\x3f\x93\x75\x5e\x2f\x77\x02\xf3\x46\x3f\x93\x45\x5b\x52\x56\x56\x97\x7b\x4a\x3d\xc1\x8f\xd9\x6c\x96\xec\x08\x09\xd9\xb6\x6d\xae\xab\x75\x99\xe5\x75\x91\x6d\x64\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\x8d\x95\xe6\xcf\xa4\xdc\xe4\xd5\x9a\xb1\xf6\x98\x3f\xa8\xe3\x5d\xb7\x6f\x80\xdb\x0b\xfd\x24\x24\x64\xfd\xcd\xb6\x04\x0e\x1e\x5f\xd1\x57\xb2\xc8\xb7\xfd\x62\x95\x73\x3f\xe5\x2b\x21\xa0\x6d\x43\xc8\x68\xda\x1b\xc0\xd9\x8f\xa4\x69\x97\x79\x5d\xfd\x9e\xf7\x82\xa0\xf3\xe0\x67\xb2\xa9\xda\xb6\x61\xdc\x9e\xe1\x23\xa1\xa1\x67\x5c\x0f\xa5\xbc\x25\x2c\x04\xb5\x70\xce\xa6\x5a\xb6\x82\x46\xce\x3c\xc3\x2f\xae\x85\xf3\xae\x9b\xf6\xa3\x66\xbc\xe0\xcf\x41\x51\xea\x84\xe6\xc6\xed\xe7\x35\x21\x5e\x73\xcf\xf0\x23\x02\xe8\x92\xbc\xd8\x10\x2a\xb7\x79\x5d\x32\x8e\x8e\xf9\x17\xe1\x85\x7e\x25\xf9\x62\xd1\xec\xea\x3e\xeb\xca\xbe\xaf\xea\x25\x23\xfb\x58\x92\xd2\x4b\x4d\x4a\x82\x3c\x97\x76\xd3\xec\xdc\x74\x52\xfa\xdf\xe8\x67\x7a\x21\x3f\x25\x2f\x28\x84\x4c\x57\x92\x47\xd2\x65\xd7\x65\x59\xc8\x58\xba\xf4\x05\x7d\x27\xdb\xdd\x7a\x4d\x58\xfb\x6d\x57\x76\x3d\x17\xba\xa0\xdf\x34\x7e\xf9\x9d\x54\x5d\x47\x1f\x94\xfc\x1a\x1f\x09\x4d\x5d\xbd\xc0\x60\x4e\xf0\x91\x24\xef\xbb\x32\x6f\x17\xab\x0f\x89\xfc\x45\x5f\xf9\x83\x69\xef\xd0\xa4\x32\x21\x29\x11\x49\x0b\xd6\x40\xb2\x68\x0a\xfe\x71\x42\x7f\xa8\xea\xaa\xee\xfa\x7c\xbd\xfe\x90\xe8\x07\x83\xc9\x97\x4c\x40\x5f\xf5\xc0\x82\x26\xa6\x97\x7d\xb9\xed\x78\x06\xd3\x17\x55\xdb\xf5\x8f\xfb\x8a\x88\xf5\xdd\xae\x4e\x8a\x66\xf1\x91\x96\x01\x2f\x69\xb4\xfc\xfa\x3a\x25\x64\x3d\xa0\x85\xd0\xee\xea\x9a\xd0\x93\xbe\x6c\x08\x65\xd4\x4c\x45\xed\x9f\x02\xfa\x28\xdd\xae\xcb\xbc\x23\x90\x32\x2f\xd2\x1f\xf3\xb4\xcf\xdb\x65\xd9\x3f\xbd\x97\xcd\x69\xf9\x7d\xbc\x97\xae\xda\xf2\xfa\xe9\xbd\xfb\xdd\xbd\x67\x2f\x77\x54\x6c\x5d\xd5\x65\xf7\xe3\x93\xfc\x59\xba\xc8\x29\x87\xd0\x78\x93\xce\xcb\x6b\x5e\x6d\xd4\x56\x4a\x54\x5e\x2f\x79\xa5\xdd\xf4\x2b\x6e\x90\x28\x81\x3e\xba\x94\x97\xfa\x37\x09\x4f\x00\xb1\x82\xac\x98\x1b\x5b\x43\x87\x90\xdc\xd2\x04\x9c\xdd\x5c\xfe\xf9\xcd\x51\x7a\x41\xbc\x6d\xd9\x96\xf8\xa6\xff\xa8\xc4\xf7\x29\x8d\xf6\xaa\x3a\x7d\x3e\x4b\xa8\xac\x21\xe4\x34\xef\xf3\x39\xf7\xdd\xcd\x3e\x67\xca\x22\x74\x79\x58\x8a\xcc\x2d\xc1\x19\xbb\x3e\x9a\x96\xa9\x85\x4c\x75\xe8\xf2\x77\x75\xbc\x65\x1e\x40\xe9\x0e\xb3\x17\x82\x33\xaa\x2a\x7d\xfd\xf6\xed\xf9\xe9\xf3\xb4\xac\x97\x84\x99\x74\x5f\xf5\xab\x74\xd7\x5f\xff\xb7\x6c\x59\xd6\x65\x9b\xaf\xb3\x45\xc5\x48\x69\x89\x60\x53\xc2\x92\x0c\x71\x96\x74\xdd\x9a\x58\x14\xa8\xe0\xf2\xf2\x4d\x7a\xc6\x94\xb0\xcd\xfb\x15\x3a\xd2\xaf\x92\xee\xb7\x35\x23\xca\x35\x78\xb5\x2a\x53\x2c\x06\x00\x35\xd7\x43\xbc\xa4\x85\xf6\x75\x96\x94\x6d\x9b\x11\x07\xed\x6f\x18\xcd\x5a\xe7\x21\x68\xa9\x8e\xa8\xbd\x6e\x7a\x9a\xc6\x14\xe5\xa4\x8a\xaa\xfe\x94\xaf\xab\x82\x90\xed\x11\x12\x97\x45\x62\xd1\xd0\xbc\x71\x69\xa2\xcc\x66\x8f\xa1\xe6\x0b\xda\x00\xba\xf4\xde\xec\x1e\x38\xee\xbd\xc7\xf7\x66\x49\xdd\x64\xc2\x25\x98\x37\x17\x55\x97\xcf\x89\x4f\xcb\xbe\xd1\x1a\xd7\xfb\x1b\xd3\x8f\x74\x45\x21\xd2\x08\x82\x71\xcb\x7b\x11\xb6\x00\x26\xae\x9c\x18\x36\x98\x8d\xb2\x99\x70\xec\xc6\x93\xdc\xfc\x0a\x5b\x72\x09\xa3\x31\x27\x36\x61\x46\x5d\xc7\xdb\xed\xba\x5a\x48\xd3\x2f\x25\xcf\x13\x1a\xef\xcc\x8a\x94\x10\x0e\x84\x62\x79\x01\xb9\x50\xaf\x99\x6d\xa5\x11\x9f\x47\xf9\x55\x49\x2b\x67\xb5\x5b\xca\xee\xb4\x6e\x76\xc5\x37\x60\x28\x36\x73\x9e\x9f\xa4\xef\x1a\xea\x30\xa8\xc3\x01\xf8\x26\x8e\x89\x31\xb0\x30\xd0\x96\x9b\xa6\x67\xc4\x69\xb1\x8a\xa6\x67\x5f\x51\x26\x8d\xb4\xcb\x3f\x11\x5b\xec\x1b\x59\x92\x05\x2d\xb9\x05\x57\x4c\x1c\x6c\x47\x3b\xba\x2c\x0b\xe2\x23\xb2\x34\x2c\x2d\xa6\x41\x40\x6d\x76\xb4\x9a\x56\x54\x19\x23\x9e\x25\x12\xaa\x72\xaa\x9f\x18\x12\xd5\x83\x55\x4e\x2b\xb7\xa1\xcd\x93\x27\xfa\x14\x1f\xfa\x3b\xac\x9f\x7a\x95\x5f\x5f\x53\xaf\x3a\x5a\x15\xaf\xd2\xc5\xba\xa1\x25\xf5\xcb\xbb\x37\x1d\x2f\x98\x55\xb6\x6d\x5a\x48\x22\x94\x75\x41\x9f\x2e\x2d\x40\x34\x43\xd4\xbb\xcd\x9c\x7e\xed\x57\x15\x31\x6a\xa0\x9d\x4b\xb0\x94\x44\xa9\xd4\xc4\xae\xa3\x29\x3c\x4a\x69\x09\xd3\x08\x08\x65\x20\x00\x1e\x83\x51\x1d\x83\x5f\x13\x8d\xed\x5a\x5a\x4e\xab\xbe\xdf\x5a\xcb\xaf\xae\xae\x2e\xa4\x69\x97\x7a\x5b\xdb\x79\x40\x19\x98\x83\x35\xcb\x46\x75\xda\xd4\x33\x10\xc9\xae\x5d\x0f\xe8\x87\xc6\x6a\x39\x07\xf0\xc2\x5d\x78\xc2\xff\x5d\x7a\xf4\x00\xcf\x1d\x49\x7d\x7b\x50\x13\xe1\xb8\x84\x9c\x42\x44\xdd\x6c\xb9\xde\x80\xaa\xcf\x35\xc1\x93\x32\x64\x1b\x97\x2f\x12\x0e\xe5\x42\xa6\x0c\x76\xe9\x0d\x0d\x58\xd9\xe8\xe5\x19\xa1\x01\xbc\x14\xa9\xd7\x6d\xb3\xa1\xd4\x17\xf4\xc7\x27\xf8\xee\x9f\x71\x7d\x80\xc9\x8b\x82\xb8\x7c\x77\x94\xbe\x7b\x71\x92\xfe\xe7\xef\xbf\xfb\x6e\x96\xbe\xee\x79\x25\x32\x71\xfe\x9d\x89\x8a\x3e\x45\xd4\x72\xa0\xc4\xb1\x7a\xa2\xbb\x7b\xbc\xb2\xee\xa5\x3f\x22\xf7\xbf\x97\x9f\x73\x12\x11\xcb\xd9\xa2\xd9\x3c\x63\xae\xba\xc9\x69\xed\x73\x0e\x91\xab\xd2\xf1\x65\x59\x17\xf4\xa1\x02\x9b\xe6\x05\xec\x40\xf3\x03\xf1\x4d\x04\xd7\x6c\xd1\xd4\xd7\x55\xcb\x03\xfa\xb9\x06\x35\x98\x48\x4b\xdb\x35\x72\x4c\x2a\x22\xa4\x11\x07\xa9\xae\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\xeb\x6b\xde\x6b\x6d\x97\xd0\x16\xce\x25\x55\x36\x8c\x10\x84\x88\x71\x0b\xa1\xfc\x54\x89\xf8\xe4\xf4\x6d\x5a\x7e\x22\x6a\x63\xae\xd7\x36\xc5\x6e\x01\x0a\x63\xd8\x23\x66\xd6\xc4\x22\x3a\x5a\x1b\x0b\xd9\x57\x02\x26\xc1\x5d\x63\x4e\xb4\x20\x20\xe2\x0d\xc6\xac\x49\x90\xfc\x44\x9c\xbf\x0d\x9a\x78\x69\x49\xda\xfb\x11\xec\xa8\x53\xae\x04\x8f\x7c\x41\x33\x4e\x54\x21\xbd\xe8\xa4\x53\x92\x4d\xe4\x4e\x74\xbc\xa3\x13\x4a\x5e\x50\x5f\xe6\x37\xe0\x3b\x1d\x13\x43\x51\x5e\xe7\xbb\x75\xef\xfb\x35\xd8\x44\xac\xa5\x4b\x3e\x24\x85\x79\x93\x05\x46\x1d\x04\xf5\x74\xc3\xb2\x44\x86\x35\xc9\x39\xb2\xd9\x30\xbd\xca\x29\xc4\xf6\x1d\x62\x4f\x25\xa6\x27\xf3\x22\xbf\xce\x97\x49\xfe\x71\xbe\x6b\xf6\x9d\x48\x3e\x29\xb6\x5a\xae\xd1\x2a\x60\x51\x61\xba\x2f\xb3\x44\xc5\xa5\x4c\x8f\x6b\xd9\xa7\x0a\x87\x21\x47\xae\x52\xa5\x1e\xe1\x98\xaf\xfd\x85\x01\xf8\x94\xd5\x4d\x96\x75\xbd\x39\xe7\x41\x76\xee\x30\x24\x38\xe7\xe1\xa2\x05\x16\xe1\x68\x96\x3e\x55\x60\xf3\x4a\x30\xc0\x0b\x51\x0d\x9a\xa6\xa6\xba\xb2\x44\x0d\x54\xfe\x09\xd5\x89\x32\x33\x3d\x20\xa8\xcc\x6e\xa2\x1f\x6f\xf7\x45\x03\xd9\x01\x7b\x09\x95\x36\xb4\x0e\xf6\xf5\xb4\xad\x96\x2b\xe2\xad\xcd\xfe\x48\x90\xb2\x5f\x35\x25\xaf\x9f\xd7\xa7\x4f\xbf\x95\x7e\x2c\x79\x67\x71\x85\x78\x4f\xca\x77\x44\x5c\x84\x31\x25\x63\xe9\x82\xdb\xdb\x01\x39\x3a\x8a\x08\xd0\xf0\xf0\x37\x12\x25\x1c\xd3\x50\x5e\x11\xe6\x29\x93\xf0\x30\x52\xda\x0e\x90\xd2\xb0\x72\x25\x95\xf7\xb3\x65\x83\x83\x8c\xc9\xf7\xbc\x5b\xd2\x79\xb8\xeb\xb3\x65\xd5\x67\xd7\xcc\xba\xb8\xe6\x17\x5c\x03\x6f\xde\x94\x93\x3e\xa0\xac\x07\x29\xf1\x3f\x3a\x9d\x15\x3f\xa4\xf7\x3f\xa9\xc4\xf8\x3d\xf3\xa4\x8c\x56\x51\xb5\xc6\x94\xe8\xf1\xa8\x2d\x45\x60\xb5\x33\xb8\x93\xda\xba\xdd\x16\x7b\x9b\x0a\x88\xee\x34\x50\x34\xfb\x9a\x57\x1f\x98\x2f\xf1\x99\x6a\x51\xd1\x9e\x31\xaf\xea\x9c\x36\x78\xab\x05\x4c\xfd\x3e\xd1\xc4\xdb\xf3\x2b\x00\x2e\x9b\xf9\xae\x5a\x17\x06\x30\x4b\x4c\x88\x24\x11\x52\x67\x3f\x14\xab\x2d\xa9\x92\xbe\x2c\x9a\x96\x25\x12\x8c\xc6\x0a\x1e\x10\x85\x5a\x16\x31\x90\x5c\xf1\x79\x06\xb0\x28\xe7\xa4\x16\x46\x03\x4d\x3f\x8e\x6a\x2c\xd3\x80\x6e\xaa\xae\x7e\xd0\xa3\xa7\x8b\x1d\xb5\x45\x53\xcf\xc9\x54\xb0\x4b\x1f\x3f\xa3\xff\x13\x96\x90\x64\x07\x58\x8e\x11\xcf\x99\xa9\x64\xee\x64\x2d\x46\x5d\x8d\x88\xdc\x4d\xb5\x91\x70\x30\xd6\xb0\xbf\x46\x02\xdd\x4e\xa8\x96\xd5\x25\x6b\x9a\xd6\xf2\x1b\xfa\xe0\x93\xdb\x72\x8d\x49\xc8\x7b\x3d\x5e\x35\x84\x37\x26\x90\x23\x59\x34\xd7\x34\x34\xe6\xa5\x7d\xfe\xb1\xc4\x89\x8c\xf6\xfc\xf7\xac\x07\xfa\x90\xec\x44\x06\x6d\xd6\x85\x3b\xef\x80\xb2\x9b\x76\xa8\xc6\xf0\x40\x8e\x6a\x3b\x12\xb6\x17\xab\xcc\x69\x91\x18\x29\x7d\xf9\x19\xbb\x3f\xb2\xbc\x52\x89\x49\x9e\xb3\x92\xcd\x0d\xa6\x8b\x07\x71\x76\xe3\x67\x8b\x24\x50\x5a\x28\x74\x98\x9d\x37\x8c\xb5\x4f\xa5\x83\x3a\x09\x53\xe3\x02\x54\x17\xc9\xca\x5a\x55\xac\x6d\xa0\x2c\x51\x89\x68\xae\xa8\x45\xba\x04\xac\x4c\x55\x60\xe0\x78\x34\x9f\x7a\xb2\x9f\xd1\xc4\x40\x6d\x60\x2d\x13\x5f\xbc\x91\x75\x11\xb4\x99\xbc\x57\xf5\xd8\x87\xc4\xe0\xde\xc5\xf9\xc4\x53\x56\x1f\x02\x15\x54\x66\xb3\x6b\xaa\x28\x68\x4f\x94\xad\x78\x91\x62\x55\x6e\x59\xfa\xd8\x74\x20\x8b\x35\x9f\xb4\x6f\x54\x7e\x76\x04\xf2\x93\x30\x6c\xa2\x18\x62\x73\xdf\x24\x5d\xc3\x0b\x2e\xfb\xca\x2a\x9e\x57\x44\x0a\x28\x1f\x6f\x76\xa2\x1b\x23\x31\x97\xa7\x8f\x56\xd9\xcd\x51\x7c\xb2\x5a\xe5\x1d\x31\x71\x92\x15\xb4\x58\x31\xb3\x13\x2e\x4f\x3b\x9d\xe7\xb0\x66\xa0\xcf\x03\x95\x4b\xc9\xa6\x1d\xee\xc2\xdc\x43\xe1\x73\xda\x8a\x93\x9d\x20\x19\x85\x02\xd4\x44\x9b\x84\xb0\x4d\xc9\xe2\x73\xb6\x11\x35\x9a\xfc\x4a\xcf\xca\x84\xb6\xc3\x25\x2d\x68\x23\xd8\xa7\xac\xfd\x58\xe2\x94\xa1\xf4\xca\x00\x65\x1f\x32\x62\x85\xb0\x94\x9f\x4c\x6f\x49\x9c\x61\x0f\xd5\x10\xad\xed\x11\xfa\x69\xcb\xa2\xec\x99\x31\x76\x91\x11\x20\xea\x75\xc4\x2d\x3c\x12\x8f\x53\x56\x40\x86\x50\x2a\x72\xfb\x61\x71\x01\xe6\x1a\x3f\xce\x9f\xdd\xef\x7e\x7c\x32\x7f\xe6\x78\xeb\x62\x55\x2e\x3e\x0a\xfd\x55\xf5\xbc\xf9\x8c\x83\x2d\x14\x25\x74\xa6\xe6\x35\x76\xbf\x48\xe9\xa0\xdb\xe2\x5c\x45\xbc\x80\x8a\x11\xe2\x39\x37\x9a\x34\xea\x0c\xb3\x0c\xda\xda\x16\x58\x55\x20\x70\x4f\x90\xc7\x9c\xca\x24\x89\x0d\xc0\xd3\x24\x06\xb2\xae\x36\x55\x3f\xa2\x09\xe6\x30\xb9\xd2\x96\xea\xca\x0c\x49\xa8\x0b\xc3\xc4\x28\x89\x4f\x53\x35\xb4\xaf\x1a\x9d\xec\x73\x3a\x48\x7d\x9f\x12\x6d\xec\x68\x7f\xe2\xce\xd2\x78\x88\x51\xe7\xbc\x31\xd3\x21\x2a\xef\xb2\x5d\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\xbb\xbe\x6f\xf8\x5c\xb2\x66\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\x92\xe3\xb7\x75\x8f\x8e\xee\xf5\x32\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\xff\x46\x1b\x4e\x0d\x1d\x7f\x93\x50\x86\x1c\x33\xcf\xf0\x41\xa0\x7c\xe6\xfd\x90\xf0\x96\xfe\x76\x20\xac\xf2\x8e\xa5\x69\x81\xbc\x84\xac\x9f\xa3\x4b\x0c\x37\x94\x8b\x09\xc1\xf6\x5d\xe9\xef\x32\xf0\xe5\xc6\x74\x79\xf9\xea\xca\x0e\xb1\x97\xaf\xd2\x8f\xa5\x56\xfe\xaa\xef\xb7\xdd\x2f\x50\x68\x88\x76\x82\x55\x19\x17\xf9\x0d\x0b\x91\x92\xac\x3f\x90\x71\x55\xe6\x1b\xed\x25\x7f\x4a\x15\xc7\xb4\xbb\x6a\x22\x7f\xd2\xa6\x1b\x28\xca\x12\x88\x53\x3f\x4f\x89\xd1\xee\x50\x53\xea\x45\xc9\xaf\x23\xed\xde\xaf\x49\xbe\xde\xd2\xb9\x8b\xe5\x99\x00\x0c\x8a\xac\xb9\x1e\xbf\x52\x80\x80\x82\x77\x1b\x9a\xf9\x05\x8e\x9b\x54\xe0\xe1\xe3\xec\x51\xa0\xd8\x8c\x2b\x2b\x68\x69\xff\xa1\x0a\xf9\x9b\x85\xde\xb0\xde\xae\xfa\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\xf2\xcf\x77\x15\xdc\x34\x13\xe5\x84\x81\xf9\x42\xc6\xa6\x74\x88\xf1\xb2\x20\x78\xd6\x5c\x1d\x84\xa6\xa9\x27\x90\xaa\x5e\xac\x77\xc5\xc1\x9e\x74\xbb\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\x7a\x5d\x2e\x59\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\x1b\x3e\x2f\x75\x3b\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\x26\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\xf5\x3e\xbf\xe9\xa0\x29\x32\x0e\xc5\xca\x6b\x29\xce\xec\x87\xc4\x9c\x25\x7a\x15\x5e\x91\xd0\x8a\x33\x4c\xb0\xae\x9f\x37\x1b\x27\x8c\xec\x71\x3c\x06\x77\x51\xdd\xd3\xa7\x60\xbb\xd6\xbd\x89\x8f\xf6\x7c\x10\xe6\x23\x8a\x64\x07\x15\xe1\xee\x51\x77\x8a\x89\xb2\x47\x2c\x04\x52\x33\x2c\x92\x11\xff\x16\x5c\x93\x94\x4b\x98\x45\x97\x02\x5d\xc9\x8e\xea\x7f\x2c\x62\x7d\x45\x38\xe4\x63\xa2\x57\x1f\xf0\x5e\x46\xb3\x62\x2a\x7e\x49\xc7\xe1\x3f\xe9\x7a\x5a\x02\x8c\x69\xbb\xd0\xff\x5b\x20\x8f\xa4\xc8\xc5\x12\x03\x9a\xba\x55\xb5\x4d\x1b\xa8\x8d\x43\x14\x7a\xb2\x0d\x04\x69\xbe\xcc\x28\x71\x6c\x60\xfd\x79\x9b\xd7\xdd\x75\x09\x45\xfa\x26\xbd\xe6\x3b\xe3\x99\x36\xcd\x72\xb9\x5c\xec\x1f\x68\x59\x8e\x60\x68\x3a\xdc\x5d\x30\x77\xc1\x44\xc5\x4d\xcb\xcd\x0a\x94\xb5\xe8\x03\xb0\xea\x6b\xea\xac\x0f\x4c\x66\x23\x14\x40\x36\x8e\xee\xc9\xac\x37\x9f\xca\x10\x11\xd7\x7f\x74\xe4\x01\xd6\xf5\xae\x40\x2e\x58\xe2\x69\x92\x46\xa1\xad\xc1\x35\xef\xfc\x26\x1e\x3d\x17\x0d\xee\xce\x69\x8d\x94\xda\x0a\x2f\x0c\x5e\x2b\x83\x0a\xa1\xa5\xf1\x27\xa2\x44\xee\xd9\xb3\x39\x75\x71\xb1\x8a\x56\xe7\x15\x72\x52\xc9\x19\x2d\xd0\xe4\x3d\x37\xfd\x21\x91\x9b\xf6\xcc\x29\xe5\x4f\xe4\xe6\x5d\x24\x5a\x55\xb2\xf7\xa9\x69\xe2\xf9\xaa\xc4\x8a\x88\xde\xfd\xd6\x92\xbc\x0d\x9b\x52\xf4\xef\x0d\xc9\x1c\xd0\xad\xff\x89\xbe\x58\xc6\xaf\x93\xe8\x7a\x71\xa0\x26\x81\x18\x5d\xf5\xbc\xc2\x2e\x68\x61\x90\xd8\x73\xac\x29\x74\x4a\x07\x77\x80\xe6\xe6\x85\x7d\xd3\x7c\xe4\xcc\xf4\x78\x69\xcb\x97\xc2\x89\x1a\xed\x85\x7d\x27\x7c\xc8\xdf\xcc\xb0\x39\xb0\xf8\x8d\x6b\x8a\x60\x4b\x60\x69\x81\x27\xcc\xf2\x66\x01\xfc\x36\xef\x89\x2d\xd6\x72\x10\x13\x0e\x15\x16\xd5\x6c\x57\x85\xbb\xcf\xe6\x5a\xd8\xf6\x43\x50\xf1\x21\xf1\x26\x29\x66\x8d\x32\xa5\x16\x56\x16\xd3\xa9\x8c\xfc\xaf\xf4\xa9\x0a\x1d\xb0\x2f\x7c\xe8\x81\x1c\x37\xc9\x76\xfd\x07\xf3\x98\xe0\x67\xa2\x2a\xb0\x58\xff\xa5\xe4\xfd\x34\x3d\x95\x0f\x3b\xda\xef\x2a\x8c\xa9\x2a\x92\x64\x0b\xbc\x07\x06\x34\x3a\x11\xae\xd3\x6a\x28\xe5\x35\xf1\xed\x70\x67\x67\x9b\x0d\x29\xc4\x84\x6b\x97\x43\x90\x02\xf8\x6e\x22\x38\x96\xb2\x72\x19\xe7\xd5\x3a\xb8\xf8\xe2\xeb\x1c\x3e\x65\x13\xd8\xbe\x9c\xa7\xac\xee\x25\xc2\xa1\xd3\x9f\x0e\x74\x93\xd3\xc1\xf1\x53\x95\x3b\xc5\x12\xcd\x16\x9b\xe8\xe8\x2e\xfa\x82\xcd\x73\x70\x99\x3e\xb6\x23\xe3\x9b\x29\xbd\xec\x79\xa3\x9f\xc9\x6e\xcb\xb7\x27\xc1\x80\x7f\x41\x82\x1b\x70\x9c\x1f\x9c\xc7\x30\x74\x2b\xe6\xa4\x19\x01\x2f\xec\x90\x06\x2b\x97\x99\x2d\x9f\x09\xfb\x30\x5d\x42\xc5\x10\xc4\x6b\x58\xc0\x62\xd4\x38\x06\xc8\x94\xfb\x5c\x0c\x9f\x76\xc6\x74\xd5\xec\xd3\x75\x55\x7f\xec\x14\x9b\xcc\xc7\xc2\xc3\x29\x54\x52\x44\x84\x3b\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\xae\x4b\x16\x93\xc1\xd4\xec\xf2\x8e\x46\xd9\x34\x9d\x2a\x40\x3d\x13\xe1\x34\x28\x55\x14\x4a\x71\xee\x20\x74\x4a\x8e\xed\xca\x10\x6b\x2a\xb1\x4b\x3e\xeb\x00\x56\x68\x56\x6d\xc4\xec\xef\x17\xbb\x02\xc4\xfc\xb8\xd3\x04\xb2\x61\x54\x12\xf7\x3e\xbc\xf7\x78\xdb\xd8\x05\xa3\x71\x43\xcb\x3c\xb2\x4d\x5f\x30\x80\x2d\x3b\xea\xec\x90\x3e\xb4\x02\x53\xe1\xdf\x41\x26\x46\x04\xe1\xa5\x90\x4c\xbc\x63\x10\xcd\x3a\x12\xed\x4e\xf4\x32\xc2\xe5\x33\x66\x83\xfc\xb7\xb8\xbe\x73\x4a\x05\x3e\x90\x67\x03\x10\x3d\xb0\x47\x90\x93\x12\xb4\xb5\x75\x50\x7a\x1e\xf4\x7e\xb4\x56\xac\xdc\x9e\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\x6d\x5b\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\x18\x11\x72\x89\xee\x4c\xba\x46\x37\x64\x47\x7a\xfc\x59\x55\xcb\x15\x8d\xab\xda\xf0\xd5\x31\xc8\xc9\xee\x27\xfd\xe9\x94\x7f\x11\x43\x69\x96\x35\xeb\xae\xb8\x05\xb1\xe1\x72\x1b\xcc\x8f\x5d\xdf\x36\xf5\xf2\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\xbb\xf9\x83\x2e\x5d\xb2\x05\x2a\x2e\x55\xf2\xc0\x2e\x55\xad\x06\xc4\xc0\x6e\x5f\x3b\xb4\xc0\x4a\x95\x16\x7a\xd7\xac\x69\x95\xc4\x45\x9a\xcd\x46\xe6\x97\x36\x80\x8d\x40\xa2\xff\x30\x34\x28\x6b\x60\xae\x6c\x15\x3f\x54\xe1\xcc\x91\xb9\x9f\x1f\x9d\x36\x13\xf7\x22\x3d\x89\x0a\x5c\x0c\x8c\x9b\xd3\xba\x0f\xb6\x0d\xd6\x91\xa4\xae\x18\x04\x85\x71\x31\x4c\x24\xab\x9d\xbc\x8a\xc6\x94\x2c\x38\x09\xa0\x0e\x2b\x4f\x45\xa9\x27\x22\x31\x71\x9a\xb5\x29\xb2\x42\xc9\xca\x6d\x21\xad\x80\x7e\x79\xaf\x30\x15\x2e\x04\x5f\xaf\xcc\x61\x82\x1d\xac\x72\x65\x6c\x32\x7a\x65\x6b\x36\x82\x80\xb1\x29\x4e\x3c\x67\x1b\xc2\x4c\xf1\x36\xeb\x45\xc8\xd4\xc4\x42\x49\x18\x9b\x90\x24\x9d\x34\x98\x6d\x7f\x21\x53\x1b\xb5\xeb\x07\x6e\xcd\x7d\x01\x5f\xc3\x98\x8e\x81\x0e\x1a\x0b\x74\x23\x3a\x53\x6f\x54\x13\x82\x0c\xb6\x6e\xf5\xa7\x9e\xb7\x8d\xde\x8f\xa5\x96\x88\x39\xa1\x63\x4e\x5f\x46\x8b\x99\x3b\x01\x7b\x44\xb1\xb7\x81\x72\xe5\xbf\xa6\x45\x4e\x9c\xa0\x6f\x3e\x12\x31\x8d\x8b\x20\xfd\x50\x21\xc7\x61\xec\xac\xa1\xfc\xe5\xd8\xb3\x87\xe1\xe9\x43\xef\x99\x0f\xb2\x98\x80\xb3\x68\xad\xce\xe6\x49\x34\x43\xb0\xf5\x66\xc3\x90\x42\x38\x89\x32\x02\x35\xec\x71\x1c\x80\x24\xac\x9a\x81\xa0\xbe\xe5\x0f\xfd\x1d\x4e\x4b\x54\x7f\xb0\x5c\x88\x81\xef\xea\x80\x81\x0a\x39\x64\x82\x0a\x37\xc8\x0b\x3a\x4a\xc2\xb0\xf1\x58\x2a\xbc\xe2\xec\x4e\xad\x7a\xf5\xba\xde\x8a\xbc\xd4\x44\xac\x01\x00\x0a\xc2\x3b\x87\x08\xfc\xf2\x5a\x05\xab\x45\x4d\x31\xd4\x64\x11\x73\x40\x54\x67\x2c\x73\x25\xa6\x19\xe9\xf1\xc5\x6b\xda\x33\x5c\x83\x56\xe9\xcf\x39\x49\xd2\xd2\x85\xbd\xd3\x68\x30\xb1\x0d\x79\xae\x93\xf9\xa5\xb8\x29\x50\x51\x12\x4b\xdc\x0d\x6a\x34\x20\x19\x4c\x9c\x2f\x38\x2e\xbb\x40\xcb\x23\xad\xa1\x27\xc3\xdd\xca\x0d\xf5\x1b\xc2\xac\xd3\x35\xf2\xd2\xda\xde\x30\xff\x0f\x6c\xb1\x72\xc1\xd0\x1e\x1c\x7c\x60\x04\x46\x90\xd0\x74\xa4\xbc\x84\x5b\xc7\x3f\xac\xc3\xca\x41\xc2\xa9\x0c\xd9\xc8\xe4\x64\x7a\xa6\x32\x59\x6c\x8a\xb3\x6c\xad\x9e\x78\xcc\x77\xf1\x19\x26\x7c\x7f\x0e\xbf\x85\xcb\x84\xa3\x0a\x48\xf9\x62\xb2\x59\x47\xd1\xd2\xf4\x80\xdf\xa4\xb2\x11\x8a\x21\x03\xb7\x22\xa7\x0b\xa5\x88\xc0\x46\x98\x6a\xd9\x97\x6b\x36\xee\xd5\xd6\xfd\xf5\xa6\x0e\x3d\xba\xf1\x57\xa0\xe0\x24\x5a\x7a\x11\x57\x50\x11\xaa\xe9\xac\x32\x82\xa0\xe5\x86\x4b\x7e\x39\xca\xdb\x7e\x7d\x72\xfc\xf6\xed\xf9\x95\xdf\xa6\x79\x1d\xd4\x05\x09\x13\xdf\x38\x73\xb8\x51\xbf\xcc\x28\xce\x4d\x60\x0c\xe1\xcd\xf2\xb4\xc4\x21\xb8\x90\x4d\x59\xed\xf4\xb9\x6c\xc0\x7b\x1a\xee\x8b\xf1\xf2\xa8\xff\xc5\xa1\xf9\x4b\xde\xb3\x7c\xf3\x21\x31\x65\xf7\x39\xff\x4d\xc2\xfb\x82\xe0\x8e\x06\x4b\xcf\x5f\xe5\x78\xd3\x7b\xea\x40\x53\x8c\xee\x0f\xc0\xa4\x77\x39\x8e\x46\x84\xfb\x06\x7b\xc5\x75\x8a\xcb\xec\x23\x56\x87\x36\x2d\x16\x0c\x23\x77\x57\x57\xbf\xed\x20\xa0\xf1\xc1\x88\x98\x07\x5b\x59\xce\xab\xb5\x6c\x28\x7f\x71\x3f\x24\x9d\xbf\x06\xe6\xe1\x41\xe3\xf4\xeb\xc7\x6e\xcb\x46\xaa\xb4\x37\x74\x4f\xef\xed\xaa\x94\xb5\x6b\x6c\xa2\x75\xef\x19\x1d\x63\xf8\x8a\x9b\xa6\x8f\x20\x9e\x8d\xaa\x63\x17\xb1\x85\xa8\xe2\x9c\xb1\x0f\xe8\x56\xd3\x79\xb5\xb0\xc8\x1b\xe9\xff\x04\xf1\x7f\xa0\x4d\xf6\x47\xf3\xe3\x78\xa8\xa7\x64\xc2\x11\xd6\xee\xa7\x7c\xbd\x8b\x95\x25\xdc\x3a\x97\xe9\x1e\x25\x28\xaa\x1a\xe3\xa1\x2f\x1b\xf2\xcc\x28\x9d\xf3\x60\x99\x8e\xd4\x09\xf4\x05\x5e\x27\xf9\xba\x17\x5d\x71\x1a\xa0\x9f\x79\x01\x5a\x2d\xc3\x29\xd6\x3b\x3d\xc7\x72\xba\x45\x5b\xc1\xb2\x5e\xd2\xd9\x73\x31\x0d\xbc\x16\x5d\xa2\x6f\xf7\x92\x08\x95\xc6\x34\x5b\x56\x3d\x9d\x91\xd9\x7f\x0a\x76\xd8\x09\xad\x73\xda\x7a\xe0\xf3\x28\x5f\x96\x32\x2a\xca\xbb\xb4\xc0\x42\xc7\xc5\xb2\xa1\x92\x2c\x7f\xe8\xef\x89\x52\x0a\x68\x1e\x97\x7c\x5d\xd1\x64\x55\x5d\xf1\x4a\x7d\x4d\x7f\x68\x17\x16\x99\x3d\xa6\x2b\x11\x48\x51\x89\x2a\x64\xe4\xd4\xec\xea\x51\xbb\x38\x9d\x15\x35\x88\x0b\xe6\x45\x4d\xb7\x55\xe5\x0d\xb4\x21\x21\x7d\x8e\x04\x75\x74\xa4\x9e\xd0\x2c\x7c\x12\xf9\x45\x5c\x1f\x5f\x5b\xca\x43\x3e\xb3\x3d\x4a\xf6\x7c\x75\x2b\x5a\xe4\xbf\xea\x27\x94\xc8\xcb\xfc\x77\x49\xbd\x74\x3f\x30\xed\x9d\x12\x42\x77\x40\x85\x3c\xbc\x87\xfd\x7a\x4d\xf2\xb0\x86\xdb\x15\xca\x6c\x8a\x94\xf1\xf5\x40\xaa\x76\x68\x91\xb9\x43\xa2\x2e\x9c\xe6\xc9\xe6\x7c\x38\xc5\x95\x2d\xcc\x3d\xcc\x04\x4c\xdb\x91\xc7\xeb\x12\x26\x9c\x73\x5a\x57\xf7\x9e\x09\xb6\x6d\x51\x5a\xad\x3a\x79\x67\xea\x45\x1a\xcc\x9e\x42\xcc\xe0\x75\x92\xd9\x61\x97\x6d\x79\xf8\x20\xa9\x8a\x9b\x69\xa8\x88\x6f\xab\xec\x94\x07\x9e\x2c\x4f\x5e\xbe\xbe\x82\x1f\x0b\xcd\x35\xfc\x0e\xcc\x59\x87\x2d\x7c\x67\xae\x4e\x66\xe9\x55\xd7\xc9\x56\x5f\x57\x40\x3c\xaf\x5e\xbb\xa3\xb7\xe9\x20\x7e\x24\x47\x53\xad\x2c\x64\x56\xbe\x36\xbb\x58\x04\x8c\x99\x18\xbf\x96\x44\x2d\xc8\x89\x38\xf3\xc6\x77\x30\x66\xe4\x94\x87\x2e\x54\x89\xb0\x08\xe3\x3b\xca\x30\xae\x1d\xe7\x81\x4f\x0c\x1b\xf3\xc7\x2c\x07\x2e\xb9\xc1\xbc\x85\x26\x78\xbc\x29\x15\xbc\xab\x6e\x6f\x32\xd6\x0d\x63\x23\xdd\xde\xf8\x84\x40\xe2\xa0\x8c\x2a\x02\x76\xd6\x12\x17\x98\xa7\xff\xf8\xdf\xff\xe7\xf1\x09\x77\xfc\xa4\x6f\xd7\xf4\xa5\x02\x1d\xc3\x0b\x22\xa5\x82\xf4\xfc\x5f\x49\x30\xdf\xab\x69\xc4\x2f\xf2\x95\xd8\x6f\x2c\x36\xca\xef\x54\xa1\x8b\x8f\x44\x7f\xf1\x9a\x4b\xd4\xc3\x98\x17\x5b\xc2\xa7\x22\x9d\x78\x3a\x11\x85\x2c\xf2\xb7\x5d\xb5\xf8\x98\xc9\x61\xfe\x69\xfa\x67\xfe\x95\xc2\xb9\x34\x11\xb2\x61\xce\xe3\xd8\x08\xc8\x6b\xc0\x8b\x42\x13\x5c\xb0\x56\x35\x84\xf7\x6c\x27\x8f\xb7\xa9\x1b\xb3\xeb\x33\x40\xf6\x9b\x49\xb6\x3b\xb6\x06\xe2\x29\xb5\xd6\x2e\x28\x05\x4e\x48\x9c\xc8\x42\x45\x50\x83\xbb\xd8\x8b\xea\x40\xf3\xd4\x5d\x71\x22\x9b\xdc\x8d\x91\xe5\x55\x53\x6c\xa1\x3c\xcf\x69\xc8\x2a\x19\x27\x8e\x1f\x2a\x1f\xec\xdb\x12\xf2\x3e\xfd\x49\x88\xcd\xb2\x01\x99\xde\x12\xb2\xf3\x64\x9f\xe3\x56\x0c\xe9\x76\x47\xc8\x57\x9d\xf9\x52\x2b\x82\xa0\xff\x5c\x3f\x13\x4a\xe7\xdf\x57\xf4\x67\xe4\xe6\xcc\x4e\xd1\x63\x67\xe8\x75\x3e\x2f\x91\xfc\x06\x1f\xb4\x60\x88\xd3\xf7\x34\x0b\xd0\x58\xb9\x1f\x09\xa3\xa1\xea\x85\xf8\xf0\x95\xa8\x97\x81\xdc\x08\xca\x67\x82\xfb\x96\x36\x67\x93\xdb\x77\xf9\x5e\x7e\x12\x8a\xd4\x5b\xfa\x95\x7c\x49\x32\x0c\xb8\x05\x14\xf6\xdb\x0e\x1e\xb2\x9c\xae\x80\x0b\xfb\x4e\xac\x03\xb3\x71\x47\x2c\x67\xe0\xac\x9d\x2e\x06\xf9\xd7\x72\x22\x7d\xc1\xe7\x51\x4b\xcb\xc1\x8b\x53\xb3\x41\x73\xe9\x1b\x5a\x46\x72\x29\x71\x26\x5f\x2e\xa7\x10\xa3\xce\x53\xec\x81\x9a\x66\x06\xf5\xe7\xfc\xd7\xa5\x12\x4d\x22\xf5\x2d\xff\x75\xc6\xe9\x12\xcb\x80\x8f\xa2\xe2\x1d\xee\x93\x67\xc3\xb9\x08\xb2\x6a\x16\x28\xe6\xb8\xfd\xa1\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\xf8\x51\x47\xb0\xe7\x94\x10\x92\x56\x54\x31\x0b\xce\x83\x9a\x21\x4b\x4f\xc3\xd3\x36\xc7\x0e\x4c\x38\x4d\xe8\xe7\xb8\x9f\x01\x90\x74\x33\x9f\x00\x65\xa5\x8e\x87\xa3\x81\x0f\x81\x54\xef\xe8\x78\xce\x70\xf6\xfc\xfc\xd0\xd4\x0e\x27\x48\x32\x33\x92\x9c\x16\xa5\x73\xbf\x00\x10\x24\x08\x8e\x2b\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\x84\x9d\x4c\x04\x3f\x41\x84\x13\x02\xd7\x13\x25\x6e\xa5\xa8\x21\xcc\xc1\x9a\x47\x74\xa3\x25\x6f\x99\x5e\x0f\xc1\x9e\xf8\x87\xab\x3e\x50\x4e\xa5\x2d\xc8\x58\xe3\x9c\x19\x3b\xe9\x38\xfe\x79\x0c\xd3\x10\xf0\xd0\x29\xd0\x4e\xe3\x8b\x90\x58\xcd\xfb\xb9\xeb\x6a\xa1\x1a\x9e\xa9\x42\x32\xcb\x45\x36\xbf\xd1\x32\x32\xcf\x70\x7e\x3c\x50\x64\xc3\xd6\x25\x0d\xc7\x75\xd0\x22\x67\x2e\x61\xa2\x48\xa7\xce\xd3\xec\xbd\x3c\xce\x99\xf1\x66\x04\xeb\x13\xe6\x4d\xdd\x24\x08\x53\x29\x40\xce\xf1\x31\x05\x22\x7a\x4f\xd5\x5c\xf0\x2e\x20\x6e\x02\x76\x53\x3a\xd9\x30\x9b\xd4\xb8\x12\x6f\x60\x60\xd3\x7e\x41\x39\xb6\x56\x65\xbe\x2a\x6a\xee\xb3\x06\x16\xa4\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\xdf\x20\xbc\xff\xee\x43\x77\xef\xd9\xfd\xf7\xdf\x7f\xc0\xd5\xc1\xa8\x70\x76\xcd\x9a\xb3\x71\x0d\x28\x68\xd0\xdb\xb6\xfc\x54\x35\xbb\x4e\x64\x34\x7c\x7a\xfe\xf0\x59\xa6\xe2\x73\x1f\x2f\x71\xe7\xc4\x3d\x58\xe1\x85\xcb\x8a\x57\x78\xbd\xdb\x64\x3a\xc6\x4e\x38\x80\xfd\x72\xc5\x0d\x03\x59\xce\x4d\xfe\xea\x7e\xf3\x70\xab\x82\x07\x4b\x9d\xb7\x30\x20\xff\x22\xbf\x9e\x61\x20\x3c\xf4\x5f\x5d\x4b\x4d\x70\xe9\x70\x25\x7e\xe8\x2c\x33\xbb\xeb\x8f\x9b\xb2\x9f\xc5\x5c\xc9\x62\xa2\xa0\xcb\x71\x96\xf6\xc2\x83\xe8\xbc\xc1\x46\x37\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\x0a\x6a\xe8\xf0\x79\xa8\x6a\xa3\x29\xd0\x5f\xd9\xc4\xb6\xd1\x88\x4e\x17\xf8\xb0\x64\xd1\x08\xa9\x01\xbe\xa3\xcd\x48\x7b\xa6\x89\xe6\x6e\x45\x47\x02\x3a\xfc\x80\x63\x9b\x8b\x15\x5f\xe3\x70\x52\x04\x5a\xd5\x99\xd9\xf1\xeb\xa9\x81\x98\x25\xdb\x9e\xc9\x88\x88\x8c\xd8\xab\x54\x15\xb2\x07\x3d\xe0\xa2\x5b\x3e\xf3\xa8\x93\x3b\x5e\x9e\xc8\x70\xb5\x96\x05\x34\x1e\x3f\xd3\x1f\x87\xd7\x81\x3d\x8d\xf5\x8f\x5b\xa1\xee\xd3\x1f\x4b\x92\x7d\xd1\x16\x9d\xdf\xb7\xe3\xfc\x45\xb3\x6e\xfc\xbe\x8e\x5f\x43\x00\x51\x90\xde\x2f\x06\xb2\x99\x64\x7b\xda\xd6\xd5\xcb\x09\x83\x9d\x47\x20\x27\x06\x23\x19\x03\x6b\xb1\x38\xd3\x39\x96\x48\x07\xe1\x5e\x62\x91\x0b\xc6\xb5\xa8\xcd\x15\x40\x9d\x86\x76\x12\x6c\x4a\x15\x2f\x52\x46\xa8\x7a\x67\x99\x3d\xb4\x59\xe0\xcb\xe7\x40\x1b\xaf\x35\x1f\x56\xbe\x4f\x37\xed\xcf\xc4\xd2\xd3\x3b\x6e\xf9\xe4\x10\x14\xc8\xe0\xe1\x61\x48\x33\x59\x7d\x9b\x13\x5d\x8a\x85\x8b\x1e\x34\x38\x45\x0d\x7b\xba\x69\x38\xc3\x82\x01\xf7\xfb\x26\x75\x47\x34\xc4\x22\xe3\x5d\x22\x4f\xb9\xb0\xf9\xdb\x61\x6d\x68\xf9\xd9\xa0\x5a\xf8\x4c\x3f\x85\x2d\xdd\xb0\x41\x6d\xe1\x69\xaa\x5f\x9a\x1f\x9d\x1e\x87\xa7\x46\x1b\x79\xc3\xaa\xb0\xdd\x1a\x1b\x04\xae\x2e\xe5\xc7\xb5\x5c\xba\x19\x10\xc2\x39\xb1\x44\xe3\xdb\x0a\xb8\xbc\x04\x7b\x52\x5b\x0a\xce\x9d\x97\x8b\x1c\x66\xb3\x70\xb7\xa2\xb1\xae\x38\xbc\x94\x1f\x3d\x81\x70\x70\x0a\xab\x9f\xed\x90\xc3\x10\x5d\xcc\xd3\x5c\xf5\xa6\x0f\x19\x60\x6a\x5e\xf6\x7b\x9e\x57\xb1\x6d\x60\xe4\x8a\x49\x6d\xf7\x43\xb8\x53\x13\x7b\x7b\x82\x36\x9e\xf0\x76\x5d\x28\xab\xfb\x17\xfc\x10\x86\xa7\xa8\x1c\x08\xf3\x13\x64\x80\xd5\x6e\x93\xca\xe4\x08\xd5\xf7\xa6\xa4\x46\xb1\xc5\x17\x76\xbe\x14\xc6\xfb\x23\x3b\xc7\x19\x67\xc5\x37\x51\x38\xdb\x2e\x68\xfa\xf7\x2e\x5d\xeb\x47\x4d\xba\x93\x5b\x33\x92\xf6\x8f\x55\x4f\xa5\xff\xd3\x07\xa3\x51\x3a\x0a\x64\x21\x2f\x05\x7d\xfa\x9f\x11\xd4\xf0\x58\xed\xf3\x44\xfb\x0b\x82\x2a\xcd\xae\xb1\xd0\x7c\xdd\x75\x89\x54\x04\x35\xce\x75\x41\x32\xf4\x62\x2e\x9c\x49\xea\x35\x1d\xf1\x99\x11\x28\x36\xdd\xfd\xd4\x2c\x42\x0d\x44\xdc\xd6\xb7\xc4\x54\xe3\x72\xae\x46\xd5\xba\x95\xaf\x30\xf1\xc2\x97\x2a\x38\x98\x15\xad\x0f\xbb\x95\xa4\x5f\xee\xfe\x61\xba\x2e\x85\x2d\x76\xde\xd4\x9c\xb1\x48\x85\xa0\xfb\x0a\xf8\x99\xf5\xbd\xea\x32\x98\x23\x89\x39\xf3\x95\xda\x18\xad\xab\x45\x9f\xba\x74\x6a\x4e\x0d\xce\x61\x94\xb2\x94\xd8\x37\xce\xba\x9c\x36\xcb\x6e\x85\x60\x1a\x0c\x70\x4d\x5c\x6a\xd3\x40\x8a\x73\x2c\x22\xaf\x33\xa8\xf1\x31\xd4\x30\xc2\x06\xab\x5b\x0d\xb9\x0c\xf1\x78\x80\x61\x51\x8c\x0d\x86\x1b\x54\x0b\x3d\xf7\xa1\x9a\x1f\xf4\xb7\xd7\x6d\x5c\x40\x1c\x41\x78\xd1\xdb\xd0\x3b\xb7\x7c\x4d\x37\x72\xb0\xc9\xa9\xa0\x6b\xa1\x0a\x8e\xe6\xa1\x91\xf8\x0c\xb0\xf3\xa9\xfa\x88\x68\x86\x6c\x05\x04\x34\xb5\xba\x41\xb4\xbb\x5a\x17\x21\x4a\x41\x0b\xc8\x64\xfe\xeb\x78\xbc\x4a\xcc\x87\xc6\x1a\xb2\xad\x5a\xb6\xed\x88\x9e\x1e\xfe\xcb\xfd\xe2\x91\x2c\x64\xd8\xf8\x8c\xee\x59\x38\x51\xd0\x19\x6e\x91\x3c\xe6\xaa\x83\xb7\x35\x93\x0d\x6f\x16\x0c\x44\xdf\xb3\x5f\x93\x40\x53\x17\xec\x67\xfe\x0c\x1e\x64\x4f\x28\x0c\x82\xdc\x69\xa5\xc1\x10\xa0\xf0\xaa\x98\xfb\x5d\xd4\x76\x93\xd1\xf2\xc8\xf4\x44\x47\x5b\x0a\x2f\x16\xfc\x1a\x76\xc1\x8e\x32\xc3\xaa\xdd\xa1\x20\x1e\x11\xed\xed\x73\xde\x47\xc4\x87\x58\xf8\x74\xa0\x9d\x24\x12\x50\xbf\x11\xbd\xcb\x56\x01\x21\xaa\x7e\xc0\xe6\x27\xb1\x63\x62\x1d\x1c\x5d\xc3\x8c\x89\xeb\xbe\x30\xd7\x0f\xfa\x94\x46\xcc\xfa\xc0\xf4\xa1\x05\xe0\x7a\x14\x0f\xb2\x14\xa3\x69\xfe\x1b\x66\xb8\x78\x29\x5a\x55\x26\x53\xaf\x35\xa2\x72\x4d\xf1\x71\x44\x8e\x9c\x9b\xe8\x83\x1b\xfa\xf7\x78\xb3\x79\x5c\x14\x0f\x26\x46\x1d\x88\x46\x6e\xd8\x03\xcb\x2f\xd5\x42\x0c\x58\x65\x50\x53\x20\x67\x4e\xe3\x8e\x01\xa2\x79\xfa\x85\xa5\x80\x92\xaf\xc3\xd2\xc2\xe3\x4d\x48\xd7\xcf\x5d\xc7\x5b\x40\x43\x0c\xcf\x5b\x93\x30\xab\x10\x77\xc2\x70\x24\x03\x09\x3d\xc8\x1a\x78\x49\xdf\xda\x3d\x77\x6d\xa2\x12\x1d\xb1\xef\xcd\x01\x94\x48\xd0\xbc\x83\x08\x09\x24\x63\x8f\x54\x27\x1d\x4f\x00\x4e\xc9\xc6\xbe\xed\x7f\xa6\x7c\x3c\xd5\xf8\x14\x09\xdc\x25\x21\x4f\x05\x68\xb5\xb4\x99\xd0\x37\xbc\x54\xe4\xcb\x67\x05\x41\x5f\x54\xce\x08\x7e\x7b\xb0\x55\xd3\x7c\x94\xc0\x37\x73\x7c\xfa\x9c\x25\x07\x7c\x94\x4c\x0e\x6d\xf8\x2a\xce\x25\xd1\xb2\x5a\x84\x81\x60\x9f\x73\xc2\x44\x17\x0b\x9e\xe3\x36\xfb\x5d\x74\x92\xa7\xf8\x95\xfe\x4f\x26\x0c\x07\xa2\x2e\x26\xe7\x16\xe8\x88\xad\x1f\x7c\xae\x3a\x07\x04\x4d\xa9\x2f\xc3\xb8\x2d\xb5\x9e\x67\x76\xfe\x65\x0e\x20\x53\x8e\x1f\xb1\x37\xea\xcc\xd7\xee\xfc\xd9\xf8\x76\x48\x3f\xcf\xcd\x25\x6e\x0c\xe6\xee\x5d\xbd\x1b\x5c\x7c\x39\xc5\xb6\x6b\xb5\x58\xbd\xc3\x15\x8e\xef\x91\x1a\x6c\x58\xa1\xff\x1d\xd1\x9d\x8b\xa5\xa8\x27\x6e\x68\x01\x60\x09\xd6\x05\xdd\x43\x10\x61\x38\xc3\xb2\x64\xd6\xc9\x2d\xbb\x3a\xf5\x89\x6b\x88\x68\x0a\x72\x77\x7a\xef\x60\x8e\x30\xb1\xf5\x41\x07\xee\x82\xd0\x88\x6f\x89\x75\x15\x79\xc1\xf4\x0e\xfc\xa1\x80\xe9\xe0\xe2\x7a\x00\x68\x48\x39\x27\xfe\x21\xa6\x8a\x52\x2c\x8f\xfc\x09\xfb\x40\x83\x25\xe6\x45\x7c\x65\xe7\x7a\xc4\xec\xa9\x6c\x7b\x78\xf2\x8d\xd1\xce\x9e\x05\xb4\x80\xb2\x6f\xa9\x99\xc7\x90\x95\x24\xfa\x23\x06\x21\xeb\xaf\xba\x0e\xf0\x01\x8b\x4b\xb6\xa0\xfc\x54\x15\x3b\xa2\x3e\x9e\x8b\xdb\xea\xfd\x2e\xae\x97\x56\x3c\xee\xcb\x0f\xd6\x3d\x98\x4f\x08\x11\x2e\x34\x30\x5c\x39\xaf\xbd\x87\x72\x37\xd5\x32\x33\x21\xa7\xed\x50\x1c\xc0\xd3\x38\xf5\xae\x7a\x21\xab\x12\x3e\x04\x9b\x2f\x31\xcb\x36\x31\xe9\x87\x74\x34\x1f\x31\xb6\xc4\xfd\xd3\x49\x55\x77\x5a\x9d\x8d\x08\x61\x80\xa5\x41\x7d\x40\x58\x60\x1b\x66\xb3\xcf\xc3\xe7\x90\x72\x1a\xb6\xd8\xce\x00\x21\x49\x48\xd8\x02\x44\x51\x66\x93\x00\x3a\x2a\x1c\x29\x0f\x3e\x72\x5a\x55\x71\x7a\x0b\xcc\x08\x3d\x0f\x6c\x22\xcc\x0e\xfa\x0a\x13\x01\x41\xc0\xeb\x51\xd3\xde\x17\xef\xc8\x9b\x40\x39\x0b\x0f\x96\x3b\xd9\xda\xac\x2e\xca\x2d\xc7\xb4\x64\xc5\xe6\xb5\xec\xb6\xc2\xf3\xef\x68\xf5\xbb\xdb\x5a\x15\xcb\xad\xa9\x66\xcd\x86\x51\x9d\xdb\xb1\x68\x39\x10\xf5\x1d\xad\x7d\x6f\xad\x85\x5b\xd6\xc7\xb2\xdc\x06\x4d\xc4\xdd\x0f\x7c\x3a\xc0\x3c\x63\xd3\xac\x09\x8e\xa6\x6e\x8b\xe6\xe7\x7c\x80\x89\x47\x31\x59\xbc\x95\x80\xee\x66\x77\xb8\x78\x8d\x17\x88\xa9\x40\x11\x3d\x1d\x6a\x50\x07\xc3\x5a\x9e\x2c\xe0\xdc\xb0\xaa\x35\x96\x3c\x51\x95\x58\xeb\x0e\xac\x8a\xbc\xe3\xb3\xeb\x9a\x15\x68\x0f\x77\x2f\x36\xc8\x4c\x27\x0c\x31\x1d\x28\x5b\xbb\x87\xc4\x9a\x8a\x8f\x03\x8f\xe7\x24\x48\x3e\x5c\x60\xe0\x59\x10\xd5\x15\x7b\x16\x04\x1d\x14\x2a\x3a\x54\xcf\xc9\x64\x1d\x4a\x79\x41\x2d\x72\xcd\x2f\x71\xff\xe2\x0b\x55\xbd\xf7\x07\x43\x9d\x85\xc4\xc0\xa0\x15\x7c\xdf\x33\x8d\x32\xa6\x6f\x05\x0c\x9d\xcf\x35\x77\xbf\x6a\x82\xa0\x32\xe2\x20\x81\xdd\x2b\xec\xfa\x2c\xc6\xce\x5e\x04\x1a\xc5\xa4\x8a\x37\x03\xb9\xc7\x76\x23\x13\x7e\x70\x48\xde\xec\xa8\xcf\xeb\xea\x23\xd4\x67\x44\xca\x12\x76\xf8\xfc\xf2\x0a\x3a\x33\x5a\x32\xb4\xf3\x2e\x99\x53\xa7\x7f\x5d\x95\x35\x22\x61\x72\xf4\x5f\x65\x5d\x8b\x05\xfb\x35\x55\xb5\x86\x09\xdc\x97\x66\x6d\x5e\x17\x6b\x61\x74\xa1\xe7\x9b\xc9\x1b\xa2\x3b\x4b\x11\xe1\x97\xd7\x66\xb7\x2d\x17\x24\x45\xcf\xf8\xa2\xac\xad\xf1\x6c\x82\x0b\xe6\x7e\x6b\x94\x78\x37\x12\x58\xf4\xb0\x8a\x2d\x40\x8b\xa2\x24\xd4\x27\xeb\xae\x3d\x42\xcf\x10\x74\x4a\x6e\x36\x0c\xdf\x26\x35\x83\x23\x8b\x91\x73\xc5\x0c\x3e\x55\xeb\x93\xdb\x7c\x47\x0e\xf6\x21\x0c\xd3\x28\x4d\xdf\x21\x3c\x0f\xab\x9a\x79\x4d\x84\xa9\x1f\x26\x40\xba\x6d\x23\x26\xa0\xef\xf4\x73\x0c\x24\xe7\x2b\xee\xc9\x2b\xf9\x1a\x83\x6c\x35\xe0\x92\x0b\xbd\x34\x06\x99\x37\x05\x9f\x98\x9e\xd3\x9f\xb1\xd8\xed\x62\xf4\x9b\xec\x0d\xe2\xdc\xb2\xd3\xbe\xdc\x4b\x73\x06\xa1\xbb\x5c\x5f\x4b\x00\x06\xd6\x35\xe1\x80\x28\xea\x41\x36\x76\x96\xf0\xa2\x25\x7b\xdb\x71\x05\xea\x82\x07\xef\x12\xc4\x56\x0b\x75\x7f\xea\xae\x1b\xfa\x5f\x0e\xfb\x84\x7b\x0e\xeb\xd7\x6b\x91\x5a\x30\x0d\x38\x0e\x4b\x20\xbc\x23\xde\x8c\xf8\x24\x69\x37\x8f\xb6\x65\x6d\x25\xf8\x1d\x3b\x4e\x11\x51\x23\xa6\x89\x81\x88\xd4\x2b\x36\x5c\x81\xdd\xb1\x05\x04\x07\xb1\x01\x61\xe3\x1e\xa9\x9d\x38\x23\x48\x2c\xc4\x47\x10\xfe\x5e\x14\x40\xe6\x91\x35\xdc\x99\x14\xdc\x9f\x2e\x5e\x45\xeb\x21\xe0\x28\xd1\xe3\x09\xe8\xa8\x86\xb4\x13\xdd\x2f\x73\x0a\x53\xfd\x06\x2a\x56\xc6\x15\x1b\x59\x06\xab\x9b\x37\x76\x12\xa7\x44\xee\x6e\xcb\x65\xde\x16\x16\xe9\x45\x39\x0d\x7b\xbb\x80\xa3\x84\x8e\xbd\xf9\x9a\x8e\xeb\x5a\x05\x71\x46\x02\xf9\xc8\x86\x54\x34\xdf\x2c\x15\x99\x86\x82\xe5\xcb\x42\xd8\x18\xfb\x16\x12\x73\xd9\x6d\x99\xdf\x08\xf3\xb2\x76\x30\xe4\x87\x7f\xba\x3c\x7f\x7b\x94\x7e\x7e\xbc\xdf\xef\x1f\x73\xf1\xc7\xbb\x76\xcd\x5e\x78\x05\x47\x92\xf9\x1f\x67\x6f\x8e\xd2\xb2\x5f\x3c\x9a\xd1\xd1\xbe\x8d\x15\x62\x6a\x4d\x8a\xcb\x0a\xa6\x2e\x16\x36\xff\x38\x7b\xd2\x15\xa3\x81\xd9\xc3\x80\x65\xe1\x96\xca\xb3\x67\xe6\x22\x3a\x99\x62\x36\x12\x6c\x48\x8b\xb6\x84\xb5\x05\x3e\x82\x0c\xda\x9d\x3e\x4e\x45\x10\x18\x82\x54\xd4\x8e\x76\xe3\xf5\x42\x03\xc3\x0f\x40\xec\x72\xf1\x04\xd7\x8a\x2e\x13\x13\xe7\xb6\x15\x0e\x89\xd7\xad\x9a\xdd\xba\x88\x39\x26\xe1\x4c\x27\xa2\x2c\x7e\x1a\x16\x86\x5d\x24\x22\x3b\x3f\x4d\xff\xc4\xba\x25\x9e\x28\xa1\x2d\xce\x32\xda\x02\xf0\x6c\x58\x18\x31\x0a\x03\x51\x9a\x06\x20\xb1\x17\x4d\x94\xf7\x79\x4e\x9c\x1f\x55\xa2\x27\x3e\x36\xd3\xe8\xd3\x8d\x3b\x01\x82\xd6\xa4\xba\x71\x91\x58\xb3\x37\x9d\x6d\x78\x11\xf3\xc8\x23\x35\x9c\x34\xb5\xd7\x14\x1e\x52\x31\x0a\x9d\x44\x51\xc0\x1f\x01\xca\x5c\x24\xb4\x52\xf5\x6b\x17\x8c\x29\xd5\xa0\x9c\xe5\x30\x23\x88\xba\x50\xf6\xf0\x77\x9f\x5a\x8b\x72\x06\x77\xb3\xe6\x57\x8f\xf1\x37\xdd\xe1\x44\x32\x11\x17\xa1\x88\x7b\x80\x75\xc4\x52\xda\x7e\xb8\x8b\x0d\x05\x34\xe5\x4d\x5e\x94\x51\xde\x34\xda\xae\x15\x70\xd0\xc6\x68\x97\x54\x79\x7a\x7c\x4a\xf0\x2d\x1c\x12\x08\xc4\x28\x28\xd3\x51\x5a\xe0\x19\xf8\x59\x9e\xba\xb4\x58\xbc\xb2\x55\x0a\xbe\x1b\x2f\x51\x46\x88\xac\xa3\x90\xa3\xb2\xa0\x16\x9b\x10\x30\x08\xdc\x83\xd9\x2d\xc1\x0c\xf1\x47\xce\xd1\xa1\xd0\x2d\xb5\x9a\xa3\x9b\x38\xe4\x0d\x32\x87\x2f\x61\x0c\x57\x36\xc9\x6a\xf2\x96\xd2\x89\x7c\x85\xd8\xda\xae\x9b\x1b\xf3\x1f\x3f\xc5\x2f\x0d\x30\x13\x8e\xcc\x83\xe9\xa0\x3c\x64\xa0\xae\x69\xb2\xb8\xba\xbf\x05\x01\x55\x55\xc4\xad\xf9\x84\x8c\xa2\x04\x13\x1e\x7c\x22\x15\xf9\x44\xf7\x26\x5c\x90\x1d\xd4\xd0\x59\xfa\xd4\xb5\x70\xc0\x59\x3a\x2e\x1a\x3a\x4c\x07\x45\xbf\xc0\x61\x3a\x46\xd2\xd8\x1d\xda\x0f\xf5\x0b\x3c\xa2\xa7\x06\x3d\x96\x6b\xa7\x10\x3f\x51\x60\x4a\xba\x2d\xc2\xb1\x7d\x81\x67\xf4\xe0\x2c\xfc\x25\x02\xee\x54\x4f\x3c\x4a\x02\xe4\xde\xa5\x23\x2e\xaa\xeb\xeb\xd9\xbc\x6d\xf6\x1d\xbb\x1f\xe3\x59\x09\xe6\xb2\xfc\x3b\xbd\xc4\x6f\x01\x61\xe3\x00\x10\x85\x7c\x48\xa2\x1a\x28\x3d\xd5\xbb\x40\x49\xc4\xcd\xec\x30\x98\xfd\x29\xe5\xc8\x2d\xed\x5b\x3a\x89\x1d\x5b\xce\x4c\x8a\xd0\x46\xb7\xcf\xf8\x0b\x8e\xd3\xd0\x57\xb3\x7a\x15\x85\x2e\x39\x45\xc1\xf8\xd3\x10\x6e\xbb\x12\x6c\xe3\xe4\x1e\x5b\xc4\x57\xaf\x6b\x02\x61\x19\x1c\x81\x11\x31\x54\x90\x4f\x3d\x48\xe8\x20\x49\x10\x86\x4b\x0f\xa1\x08\xc2\xa2\x7f\xfe\xfa\xad\xfc\x84\xc1\xbb\x06\x2c\x82\xc5\x3b\x5f\xa7\x27\x66\x46\x3f\x9b\x32\xa7\xb7\x3c\xf1\x7c\x10\xc5\x88\xbd\x03\x87\x5f\x0e\xa2\x68\xf3\x6b\x5c\x1c\xf1\x5f\x97\x4a\x32\xb0\x2f\x76\xd1\x96\x8f\x87\xc5\x08\x39\x82\xea\x4b\x7c\xb8\x74\xbd\xf8\xe1\x3f\x2e\x2d\x87\x51\xc7\xd3\x60\xe4\x1e\x23\x66\x3d\x40\x74\x77\xbf\x4b\xbb\x8a\xb5\xad\x4a\xa0\x83\x06\x41\x1d\x3e\xd2\x30\x68\x07\x2f\xa3\x85\x63\x0d\x6f\x94\x10\x24\xa1\x5b\xa5\x0e\x3f\xec\xf0\xd3\x8b\xff\xb3\xbe\x74\x32\x8b\xfa\x1d\x95\x96\x2d\xb6\xb4\xd9\x4e\xd7\xcd\x12\x52\x24\x1e\x42\x94\x27\x2f\x76\xfc\x34\x0c\x21\x82\x03\x5f\xb1\xc4\xe1\x88\xbf\xda\x50\xfd\x9f\x24\x54\xb9\x54\x4f\xd2\x83\xf3\xcf\x26\x41\xa2\x16\x17\x51\xcb\xc3\x91\xda\x02\xba\x45\x65\x7c\x28\x64\xd3\x6d\x7b\x9f\x13\xca\x87\x64\xb2\x08\x5d\x59\x58\x4c\xe1\x88\x15\x32\xf6\xa0\x03\x11\x23\xb6\xd4\x31\xf3\xb5\x9c\x7d\xab\xd1\xb4\xf8\x6f\x48\x16\xfa\x8a\xc8\x85\x7c\xb9\x1c\x96\x80\x45\x8c\x7b\x23\x5f\xf2\xe2\xdd\x90\x9a\xc6\x11\x04\x28\xef\xf1\x70\xae\x03\x78\x87\x80\xbf\x96\xff\xf1\xbf\xfe\x2f\x2b\x65\x1b\xda\x61\x11\xee\x43\x23\x66\x7a\x5a\x31\x0f\x3a\xff\x8c\xcd\x63\xf0\x75\xdf\x91\xe1\xb5\xa0\x6b\x50\x49\xc5\x13\xcd\x88\xde\xf9\xc5\x07\x5b\x2b\x6c\xe1\x37\x58\x30\xa0\x1f\xbf\x64\x70\xf1\x39\xac\xc3\x88\x20\xd3\xfd\xc6\x45\xf2\x53\x40\xe1\x20\x18\x51\xaf\x44\x32\xbd\x3d\xb9\xb5\xab\xaf\x6f\x80\x09\xdb\x77\x92\xbc\x6f\xda\xe5\x07\x1f\x0d\xd6\x69\xb9\xa2\x48\xb0\x38\x83\x32\x8c\x8b\xa7\x76\x00\xd0\xc7\x58\xf3\x35\xda\xa4\xbc\x64\xd2\x1b\xbf\x56\x26\x1a\x00\x09\xc7\x0d\x03\x36\x73\x62\x9e\x99\x47\x96\x04\x93\xd4\xcb\xf5\xe8\x19\x49\x38\x4a\x99\x3a\xd5\xe4\xc8\x22\xd1\x5b\x5f\x76\xec\xe1\x0f\x8e\xf7\xc9\x0f\xdf\xb1\x3e\x4b\xee\xeb\x5e\x23\x81\x18\x03\x12\x10\xcb\x16\x0e\x4d\xfc\x37\x41\x04\x41\xd5\xe0\x71\xaa\x7e\x69\xfa\x20\x4a\x61\xf4\xd8\x43\xe0\x41\x86\xe8\xa5\xd1\x0b\x0e\x5c\x39\xb0\x32\x71\xe1\x3f\x8a\x69\x0b\x14\x22\xf5\x36\xe8\xc8\xe1\xf8\xc1\x1a\x97\x3c\x1a\x12\x0b\xaa\x73\x36\x24\xab\x45\xb8\x04\x9d\x20\xa2\x6a\x1d\x99\xbd\x76\x33\xdf\x4c\xb0\x7e\x56\x62\x0d\xe0\x8b\xe1\x1d\xa5\x39\xad\xa4\x9f\x04\x3e\xf2\x9b\xd4\x63\x61\x2e\x1e\xfe\x92\x9c\xae\xe9\x84\xb1\x8e\xce\x89\xa8\x88\x65\xc1\x9f\x0e\xf8\xcc\x8e\xa3\x0f\x7f\xbd\xd7\xec\xb8\x8e\xdb\xfd\x66\xff\xe8\x45\xf4\x74\x64\xc1\x50\x19\x36\x08\x31\xe8\xb2\xa6\x62\x0d\xfe\x91\x6b\xe1\x18\x34\x10\xb1\x22\x14\xb8\x9a\xbe\xf4\xfa\x41\x6f\x9b\x89\x52\xff\xb1\xcb\xe6\x38\xe6\xee\xb0\xd7\xa3\xa0\x78\x51\xa7\xbf\x2e\x38\xde\xc1\x5b\xdb\x88\x57\x0c\x0f\x87\xa3\x08\x17\x18\xe0\xad\x45\xe2\x78\x17\x61\x87\x9d\x3a\x30\xb8\x05\xd4\x3b\x05\x89\x74\x21\x3a\xee\xbb\xc3\x5d\x1c\xb8\x66\xb9\x2d\xee\xc5\xb0\x97\xcc\x63\x9c\x53\x47\xd8\xc9\x5b\x4b\x84\x7b\x6d\x7c\x53\xff\x8f\xc4\xc2\x98\xbe\x98\xe0\xc3\xe3\xde\x74\x66\xd8\x99\x0d\x7f\x5e\x13\xc1\x87\x0f\xc3\x97\x9c\x4e\x3c\xa3\xf5\x98\x83\x54\x25\xc8\x1d\xc4\x78\x56\xae\x3d\xd3\x9b\x3b\x0b\x83\x35\x48\xf7\x2c\x0f\x76\xd3\x7a\x37\xe9\x81\xe4\x37\x44\x98\xc9\x9c\x61\xf9\xb8\x8d\xd8\x87\xc1\x52\xdd\xdd\xd0\x19\x3e\x5c\x3a\x61\x6d\x51\x22\x44\xc1\x89\x7c\xb9\x1c\x3d\xa4\x69\xdc\x6c\xdf\x09\x89\x89\x0c\xbf\xa3\x20\x55\x77\x3b\xc5\x35\xbb\x50\xd3\xa4\xdc\x6c\x79\x0a\xf3\xd4\xa9\x09\x59\xbe\x95\x5d\x50\x64\x41\xed\x15\x44\xeb\x1f\x86\x75\xc9\xf3\x36\xba\x6b\xbe\x6d\xf6\x89\x6c\x99\x33\xb8\x52\x48\x0c\x5f\x4d\x89\xbb\x24\x69\x2c\x90\x68\x80\xa5\x54\x22\x49\x68\x08\x9e\x71\xfe\x20\xf8\x00\x76\x0c\x17\x76\xc0\x42\x72\xb3\x50\xa9\x4e\x3b\xb5\xdc\xcd\xc4\xde\xf8\x52\x2b\x84\x52\xdf\x2c\x64\xd3\xb8\xdd\x10\xe2\x4b\x1a\xc6\x6b\xc6\xc3\xe6\x8e\x4c\x31\x86\x88\x8d\xaa\xb1\x93\xd0\x74\xd2\x8a\x3e\x51\x6b\xfd\x70\xaf\xc4\xf9\x7e\x84\x10\x5f\xd2\x0f\x6e\x05\xf6\xe7\x72\x48\xb9\xa5\x3f\x74\xaa\xd4\x00\x94\x91\xcd\xc0\xb0\x8b\xde\xa9\xfe\x2a\xd8\xa7\x61\xa7\x52\x0c\xe4\x0e\xd6\x43\x8f\x37\x4c\xc9\x91\xfb\xe4\x09\xd1\x40\xcc\x89\x26\x63\x53\xdd\xbd\xc4\x61\xe8\xcf\x25\x1d\x68\x60\x28\xe4\xc1\x26\x77\x1d\xe9\x97\x17\xe5\x20\x5b\x9d\xa9\x3c\x27\x99\x77\x6f\xb8\x02\x67\x51\x99\x44\xae\x0b\xb7\x0c\x08\x76\x36\x93\x85\xbc\x4f\xe0\xd6\x38\xb3\xba\xa0\xd5\x71\x65\x8e\x55\x03\xca\xb1\xe8\x31\x9c\xf1\xce\x50\x2a\x0b\xb4\xb4\xcc\x94\x8f\x4c\x56\x75\x56\x0c\x80\xda\xe4\x37\x91\x9d\x10\xcc\x9a\x37\xf1\x7b\xbe\xb7\x28\x76\xc6\x5d\xf1\xbb\xb6\x04\xfd\x77\x04\x73\x50\x9b\x33\x0b\x97\xfa\x98\x40\x3c\xd9\x2d\x5b\xf8\x40\xd8\x5c\x33\xb3\x08\x48\x01\x15\xfe\xe0\x46\xe9\x9e\x91\xf4\xdc\x00\xd7\xce\x54\xd1\x83\xdb\x98\xc2\x57\x74\x00\x6c\xe3\xf6\x1e\x80\x2d\x88\x5b\x1c\x75\x23\x60\x01\xb7\x75\x44\xdf\x7f\xfc\xf2\x8e\x80\x6f\x7c\x61\x47\x8e\xac\x17\x1a\x30\xbb\x28\x26\xd7\xff\x6d\xfd\x1b\x1c\x73\x40\x9c\x51\x44\xf6\x01\xc1\x47\xef\xd5\x3b\xa2\x0f\x2c\xe6\xac\x5a\xd8\x66\xa8\x05\x9f\x6e\x67\xbe\xaa\x9a\xa6\x10\xe7\xd6\xba\x0f\xad\xfc\xe2\x58\x26\x6c\x60\xd6\xb7\x37\x2a\x92\xf0\xe0\xe2\x50\x2a\xde\xb8\x47\x0e\x5f\xb8\x3b\x96\x28\xfd\xef\x81\xf6\x0f\x89\x7b\x82\x90\x97\xb2\x7d\x27\xa2\xa8\x91\xfb\x33\xc4\x49\xf7\x01\xd2\xd3\x61\xc0\xf4\x5b\x83\xd5\xc7\x41\xfa\x87\xaf\x35\x74\x12\xd3\x6c\x69\xb2\x9c\x3d\xfc\x98\xa8\x51\x13\x33\xd6\x1b\xc2\xc1\x06\xaf\xfe\x2e\x38\x6e\x71\x53\x57\x62\x3e\x73\x26\x5f\x34\xf6\x04\x63\xca\xb6\x12\x3e\x02\x8f\xf6\x4b\x2c\x49\x4d\xe1\x58\x92\x49\xdf\xf4\x10\x28\xae\xf8\xef\x0f\xe9\xfd\x22\xf1\x43\x87\xca\x92\xb5\x43\x2a\x25\xc8\x77\x90\x1f\x44\x56\x87\x49\x7d\x6b\xb1\xe2\x7d\x0d\xe8\x26\x14\xa3\xbb\xa0\xdb\xda\x49\x54\xba\xeb\xa6\x5a\xcc\xf8\xba\x35\xd5\xcb\x66\xf7\xf6\x3b\x73\x10\x7e\x8e\xad\xe0\xe7\xd8\x44\x6d\x76\x14\x24\x44\x13\x12\x66\x6c\x5d\x80\xd3\x28\x39\xde\x15\x7d\xba\x44\x7a\x8a\x92\x38\xdc\x4c\x94\x90\x2f\x46\xad\x98\x5a\x3c\x4c\x33\x53\x3d\x9f\x62\x46\x7b\x51\xed\x71\x90\xcb\x30\x4b\x2c\x1d\xa3\x24\x7d\x87\x32\x1e\x89\x28\x25\xc3\xb4\x75\xb3\xe4\x07\x15\xec\x9d\xe3\x60\x78\x2a\x58\xc7\x75\x9a\xd5\x76\x54\x05\xbc\x43\xc3\x14\xdc\x96\xf5\x79\x17\x97\xc6\xfa\x0c\x13\xd4\xb3\x7e\x04\x48\x07\xed\x7c\xb1\x52\x27\xa2\x09\x42\xb2\xf3\xb2\x23\x26\x39\x34\x4f\x41\xca\x5b\xa1\xa9\xbd\x0c\x3a\x09\xc3\xaf\xc0\xe3\x21\xd6\x20\x97\xbd\x20\xd8\xe5\x06\x71\x40\x1b\x8d\x87\xc5\x2e\x11\x2e\xe6\x67\x7a\x8e\xe5\xd8\xdd\x5a\x28\xd8\xe2\x38\x2e\x83\xc6\x19\xd5\x92\x22\x8e\xdc\xb2\xd7\xf9\x9a\x75\xd7\x54\x33\x92\xe0\xdd\xb8\xce\x0b\x11\x39\x5c\xb4\xf4\x3a\xd7\xb2\xbf\xa8\x8e\x41\x2f\x3d\x84\xab\xe6\xeb\xbb\x0a\x95\x1a\x1b\xb8\x51\x6f\x06\x9d\x8c\x78\x9e\x81\xdc\x51\xc3\xa0\x8b\x93\x55\x7c\x45\x27\xf9\xf1\xe2\xe5\xc2\x3d\xb9\x7a\xca\xf1\xa5\xdb\x39\x73\x3c\xde\xe0\xca\x85\x79\x9f\x45\x6a\xb9\xe9\xe2\xb7\xf5\x0c\x1d\xe2\x03\xf9\x54\xf5\x87\xfa\xd6\x96\xdd\x4d\xbd\xc8\xf0\xf2\x6e\xb7\xd2\xeb\xcf\x77\xa5\x28\xc7\x1f\xcc\x28\xed\x49\xae\x31\xd9\x4a\x5c\x14\x76\x0f\xe4\x09\x82\x87\x0b\x4a\x87\x1d\x33\xed\x7f\x8f\xc1\x13\x51\xda\xa4\x3b\x92\xdd\xfa\x47\xb7\x36\x34\x18\x4b\xc0\x10\x03\xdc\xb6\xe8\x4a\x5f\x7e\xd1\x08\x82\xab\xf7\x70\x18\x4c\x06\xba\xfa\xc1\x2b\xc2\x17\x73\x18\x71\x0f\xd9\x8c\x82\x23\x86\xb3\x8d\x88\xda\x5e\xe9\x6e\x67\x2f\x2b\xeb\x85\xd8\x81\x01\x85\xed\xde\x32\x43\x0f\xa2\x5e\xdc\x3d\xc6\x70\x13\x92\xd7\xf3\x77\x5b\xb6\x2c\x4e\xdd\xb3\xf9\xbf\xe0\x77\xc8\x14\xe4\x51\x83\x6c\xd9\xb4\x0d\x4d\x8f\x44\x09\xd2\x87\x0e\x5e\x5a\x5a\x37\x51\x00\x0a\xec\x9b\x6c\xa7\x91\x9d\xac\xcc\x19\x92\x49\xb8\xe0\x30\x4f\xbe\x14\xb6\x68\x2b\xc3\x6a\xc9\x85\x2a\xb3\xb1\x67\x5b\xa9\x63\xcb\x08\x4a\x6a\x99\x66\xce\x2e\x03\xea\xc8\x0a\xe0\x73\x4d\x09\x60\x71\x11\xc2\xa1\x77\x08\x5d\xbb\x6d\xc6\x43\x45\x8c\x10\x49\x4e\xdf\x20\x39\xbd\xe2\xe4\x71\x0b\xd6\x2b\x57\x6c\xd0\xa9\x43\xe5\x38\x1c\xc3\xb0\xcc\x0b\x8e\xda\x30\x84\x37\xcc\xad\xca\x7c\x3b\xc2\xdb\x2b\x4a\x1c\x61\x0d\x90\x63\x04\x00\xf6\x30\x16\xc2\x52\x55\x81\x53\x57\x58\xe2\x35\x25\x1d\x82\x86\x5d\xc1\x10\xbe\x66\x51\xf1\x40\x09\xdd\xb3\x87\xbd\xd2\xdb\x9b\x51\xaf\x9a\xf9\xdf\xcb\x45\xdf\x19\xf4\xb9\xfc\x0c\xa0\xe6\x4d\xd3\xf3\x33\xbd\x5b\x16\xb7\x60\xef\x25\x68\x7a\x6e\xe9\x2c\x6e\x2d\x3e\x8e\x30\x25\xd0\x63\x54\x09\xf4\x61\x5c\x6d\x38\x86\x23\xb5\xd5\xee\x16\xfd\x8e\x16\xa8\x6b\xf0\xec\x92\x63\x3f\x5e\xba\x8c\x51\x8b\xa3\x92\x21\x85\x0e\x0b\x4f\xb5\xbc\x20\x21\xa2\x9c\x6c\xfa\x84\x73\x6e\x6d\x7b\x54\x36\x6c\x7c\x54\x7c\x6a\xa5\xe0\xdd\x1e\x56\xa8\xcf\x77\x8b\x8f\x65\xcf\x6e\x47\xab\x0c\xf7\xd6\x61\x5d\x17\x06\x96\x3e\x07\x58\xfa\x8a\xc0\xd2\x2b\xa8\x68\x26\x6a\xa5\x4d\x67\x53\xf6\x39\xec\x0f\x82\x5a\x5e\x9e\xd0\x0c\x70\x72\x91\x4f\x95\x82\xea\x26\x53\x29\x5b\x57\x21\x0b\x3e\x41\x0d\xe7\xd0\xee\xa8\xe0\x7d\xec\x40\xa6\x6a\xe3\x00\x40\xb2\xfb\x2d\x6e\x16\xf2\x9c\x0d\x87\x04\xa2\x3e\xbc\x93\x94\x00\x16\x27\x09\x82\x35\x1e\x89\xab\x76\x84\xa7\x27\xf0\xab\x98\x51\x0a\x07\xf3\xc0\xc2\xb8\x08\xee\x82\x7d\x97\xa7\x00\xb7\xb9\x2c\xa6\x83\x90\xd6\xbc\x01\x5a\xcb\x43\x38\x6d\xb4\x13\x54\x0a\x5b\x91\x63\x9c\x58\xe3\x6b\x70\x77\xa2\x39\x5c\xe4\xc2\x18\xdf\x42\xbb\x73\x9a\xc2\xde\xf9\xea\xba\x82\x89\xf4\x0a\x99\x55\x52\x4c\xde\xc2\x93\x7c\xf6\x6d\x79\x51\x54\x1b\x49\x8b\x9e\x80\xd7\x34\x73\x8f\x75\xd1\xb9\x34\x5d\xdf\x65\xd6\xd7\x7e\x61\x5e\x8f\x97\x0a\xd9\x2a\xf7\x5d\xf8\x66\xf7\xdb\xd0\xf2\xfe\xaa\xc1\x28\x83\x81\xc5\xd6\x48\x36\xcc\xbb\x5d\x74\x67\x5a\x47\x18\x05\x46\x47\x06\x01\xd9\x0c\x72\x06\x4f\x11\xaa\x61\x8e\x40\x4a\xc8\x53\xb9\xe7\x5a\x87\xa5\x71\x7a\xb1\xe3\xc0\xa0\x86\x37\x38\xd9\x04\x58\x1e\xbf\xf5\x0c\xed\x32\x1f\xec\xc5\xba\x1a\xba\x59\x58\xbf\xed\x6a\x7b\x31\xc8\xc8\xe0\xd0\x23\x5d\x16\x16\xfc\x0b\xdf\xe9\xf2\xb8\x08\x28\x05\x17\xf7\x31\x8d\x54\x5d\x16\x12\xc5\x30\xaa\x78\x3e\x20\x12\x06\x57\x3a\x89\x40\x71\x93\x1f\xbe\x8a\x1f\xdc\xac\x1a\xe1\xe0\x0e\x93\x2d\xbc\x33\x35\x72\x1c\xd5\x10\x94\x81\x4a\x4f\x08\x9b\x4d\x4b\xc5\x29\x36\xac\x47\xa2\xdb\x66\x36\x63\x77\xd5\x75\x30\x18\xee\x24\xde\xbd\x56\xd5\xd0\xee\x1e\x51\x03\xf4\xad\x57\x72\x31\x82\xa7\xdf\x76\xfc\xff\xf2\xbc\x65\xd8\x01\xff\xc8\xe5\x81\xf6\xff\x29\x8f\x5c\x0e\x35\xda\x5d\xdc\x95\x09\xf3\xba\xe3\xe1\x4b\x17\x07\x6c\xeb\xf8\x15\xc0\x19\x3c\x95\x62\x16\x19\x5d\x18\x46\xac\x12\x25\x42\x16\x88\x84\xd8\x74\x02\x49\x5e\xdd\x6e\x9a\x76\xd1\x96\x81\xfb\x0d\xdb\x0b\xdc\xd1\xa2\xd6\xa4\xc4\x38\x84\x7e\xdc\x05\x49\x19\xdf\xd2\x49\xba\x2a\x7a\x52\x8b\xe8\xad\x5a\xbb\x19\xb4\x3d\x7a\x35\x66\x69\xc3\x30\xb6\x50\xe2\x29\xb3\x1a\x74\x79\xc0\xae\xa2\x6e\x4b\x29\x09\x94\x61\xae\x6e\xca\x11\x35\x2b\xe8\xbd\xa4\x84\x31\x22\x25\x45\x9e\x90\xc3\xcb\xc8\xf2\xa5\xe9\x63\x43\x97\xa0\x93\x5a\xcd\xa0\x73\x41\xad\x80\x9a\xe6\xb8\x41\x6f\x86\x56\xc4\x92\x0a\x0f\x2e\x36\x79\xee\x7a\x4d\xd9\xea\xeb\xf9\x1c\xf9\x51\x52\xa0\x3c\x29\x60\x8b\xc8\xba\x92\xd3\xb7\x61\x7a\xf0\xaa\x1c\x72\xdd\x7b\x72\x13\x30\x81\x19\x4a\xde\x72\xe0\xc9\x1f\x34\x0e\x4f\xf0\xba\x1c\x7b\x5b\xc9\x5b\x35\xdb\x35\xf7\x97\x63\x90\xe3\x0a\x83\xb5\xc0\x2c\x33\xe4\x78\x50\x0a\x17\xba\xc4\x66\x96\x62\xd6\x2a\x0f\xa0\x28\x32\x59\x3e\xd0\xe8\x57\x90\x0b\xd4\xad\xef\x39\x1b\x61\x05\x20\x85\x3d\xc6\xed\x47\x94\xf7\x7d\x5b\xcd\x77\x7c\x2f\xaa\xf6\x1f\xbc\x28\xc5\xd8\xc4\xe5\x8d\x60\xbb\x9d\xf9\x67\x5c\xea\xd7\x61\xd8\xc1\xa3\xfa\x03\x38\x89\xc0\x65\xdd\x92\xf8\x5b\x56\x05\xae\x15\x1c\x80\x5c\x36\x46\x10\x1b\xde\x71\xb2\x2e\xe7\xe5\x49\xbc\xb5\x48\x2f\x8f\x35\xa7\xdb\xf4\x5b\x8b\x20\x7f\x79\x76\x75\x71\x0b\x2d\x31\xa8\xd2\x04\x20\x03\xc2\xe0\x2c\x25\x0e\x64\x05\x14\xa2\x46\x37\x6a\xa9\xae\xc7\x7a\x98\xed\x08\xb1\x75\xd3\x70\xb7\x6d\xfb\xf2\x1e\x10\x3f\xed\xce\xaf\x10\xb0\x61\xb9\x94\x99\xa5\x67\xbb\x75\x5f\xb1\x15\x98\xb5\xa6\x96\x48\xfc\xf2\x7d\xb9\xcd\x5b\x8b\x83\x8a\xa8\x3f\xe9\x83\xa3\x07\xb3\x68\xf5\x65\xbd\x3c\x21\x28\xaf\x39\x5e\xbd\xb9\xa4\xcf\x45\x7b\x23\x17\xa1\x3a\xd2\x8f\xd5\x96\xc1\xf4\x11\x68\x1e\x30\xa5\x00\xf6\x2f\x48\xb1\xa5\xc2\x37\x66\x65\xfb\xa9\x5a\x38\x82\xb9\x38\x3e\x83\xde\x81\x92\xc2\xc5\xa7\x4d\x23\x4e\x91\x49\x7e\xbe\x13\x34\x1d\x4d\x24\xf9\x19\x03\xe1\xd7\x8f\xd9\x58\x73\x6b\x08\x0c\x03\xaa\x0c\xc5\x33\x7d\x22\x53\x31\x3d\x12\x55\x62\xe8\x40\x62\xf1\xac\x6d\x28\x51\xc6\x45\xee\xb2\x71\x9f\x45\xcc\x2c\xdc\xb9\x06\x6f\x25\x7f\x99\xed\x4f\x58\x59\x20\x65\xdc\x36\xe8\xc9\xd8\x0e\x71\x89\x08\x32\x13\xfe\x6a\xcf\xc9\xc4\x55\xfb\xe7\x83\x46\x25\xa2\x87\x65\x46\x78\x9d\xb0\xa9\xb9\xc5\x8e\x26\xa8\x7d\xb0\xdf\xc7\x15\xdf\xb5\xed\x8b\x2e\xce\x74\x60\xee\x1e\x4a\x75\x60\xf1\x75\x94\xc2\xe6\xdb\xad\xdb\x36\x82\x17\x83\x40\xb6\x01\xc8\x27\x61\x38\x01\x04\x2d\x82\x6e\x50\x8f\x38\x9f\x85\x40\xec\x83\xa6\x00\xc3\xad\x47\x93\x9b\xeb\x6b\x8e\xc8\xc5\x71\x25\x35\x9c\x0a\x02\x74\x9d\xb1\x35\xb7\x95\x14\x97\xca\x8c\x95\x72\x50\x72\xf1\x98\xec\xb1\xd9\x77\x48\xe4\x53\x85\x81\xb7\x3b\xf7\x4a\xf7\xbb\x5d\x2d\xe7\xa5\x20\x4b\x1b\xe2\xac\xb0\x11\x48\x2f\x6d\xd3\xf4\xf6\xae\x43\x20\xba\xbc\xa3\x64\xda\xd3\xfa\x95\x43\x30\xdf\x74\x2d\x32\x09\x54\x1f\x94\xc1\x3d\xdb\x02\x36\xf9\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\xb5\x4d\xc4\xe5\xe5\x9b\x78\xb6\x7d\x6e\xf0\xd0\x0f\xdb\x8b\xdd\xe3\x00\xb3\x1c\xe7\xee\x5e\xca\x9e\x86\x8f\x82\x12\x8a\xcd\x10\x7f\x9a\x3a\xac\xa3\xfb\x6d\x5d\xf5\xe5\xf7\xf7\x70\x75\x7e\xaf\xaf\x8a\xf9\xbd\x47\xe1\xba\xa9\xe0\x58\x10\x2c\x9c\x6a\x71\x00\x3d\xee\xf0\x1e\xbd\x45\x9a\x8a\x97\x76\xd5\x96\xb6\xbf\x9f\x04\xcf\x83\x8e\x48\xda\x6f\x03\x8e\xa0\xc3\x2d\xc0\x3a\xc6\x5e\x2a\x6d\x90\x91\x91\xbc\xd0\xcb\xeb\x89\x6c\xa0\xf9\xce\xaa\x79\x8e\x64\xdf\x43\x09\x8e\x6b\xc1\x72\xd5\x5e\xdf\xfa\x87\x58\xb7\xaf\x6b\xf8\x91\x58\x11\x7b\xe1\x19\x7a\xb6\xd1\x63\xd0\x50\xb0\xe9\x5b\xd0\x5a\x00\x63\x77\xea\x8b\x33\x1e\x70\xa8\xb1\x18\x0e\x18\x0e\x54\xd5\xef\xa5\xc4\x37\x0c\x86\x7d\x46\x87\xe1\xcd\x6e\x83\x97\x20\x2f\x39\x1c\x1b\xde\xf2\x1c\x75\x6b\x4b\x92\x7e\x1e\xf6\x08\x09\x8e\x09\x89\x6f\x24\x3b\x86\x64\x6b\xbd\xe1\x12\xff\x49\xb8\x87\xa4\x6f\x70\xa5\xe5\xb0\x43\x9b\x90\x17\x4b\xa3\x42\xef\x38\xcf\x89\xb1\x13\x85\xcd\xad\xda\x91\x8a\xb9\x2d\x4e\x92\xca\x6f\xbb\x72\x47\x95\x97\xf5\x12\x64\xfa\x67\xfe\x49\xe2\x0e\xff\x74\x08\x12\x7f\x44\x28\xbc\xd8\xa3\xe1\xa9\x79\x28\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\xb6\xd6\x0d\x01\x37\xb4\xd3\x23\x10\xc8\x83\x03\x10\x82\xf6\x96\x19\xa0\xe4\xc9\x8a\x94\xf4\x0b\xa2\x2c\xf1\xb6\x11\xa2\x97\xdf\x31\x50\xf0\xec\x94\x40\xd9\xab\x53\xa3\x56\xeb\xb0\xcd\x5a\x6e\x1a\x3d\xd7\x11\x13\xa1\x80\xeb\x88\x89\xfd\x64\xf7\x0c\x9a\xbd\x8a\x2a\x8b\x58\x22\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\x8f\x59\x4b\x09\x03\x5e\x2e\x1c\x62\x4c\x67\xfc\xf2\xc4\x3f\xc8\x05\xf5\xf2\x60\x30\xeb\xea\xba\x74\xca\x68\x1d\xcd\x1b\x4a\x8b\x80\x57\x7d\xbf\xed\xcc\xc7\x1c\x8f\x40\xa5\xe7\xf4\x63\x30\x88\xb0\x2a\x1d\xc9\xa8\xa6\x6d\x85\x0b\x82\x00\x2f\x92\x30\x8d\x71\x83\xd6\xdd\x21\x00\xd7\xed\x61\xc8\xe3\x96\xad\x63\x9c\xb6\x42\xfc\x3b\xf8\x5e\x16\x70\xad\xb3\x0c\x30\xd9\x32\x43\xe9\x2e\xc9\x30\xd8\x25\xcd\x5a\x68\xb6\x68\x25\x42\x1e\xff\xb9\x62\x53\x0d\x97\x13\xae\x3d\x4b\xeb\x88\xf6\x8a\x9d\x78\xe9\xe9\xa7\x87\xf7\x4f\x07\x08\x9a\x2c\x63\xe2\xb9\x81\x18\xa0\xfc\x5c\x2e\x76\xc1\xcd\xe1\xcf\xf2\x5b\x55\xf5\xbe\x9a\xc6\x8c\x83\x77\x35\x9e\x9a\xb8\x90\x94\x00\x66\x2a\x4c\xa6\x75\x1d\x26\xce\x66\xea\x7c\xb0\x7d\xd7\x3c\x0e\xb3\x0c\x65\x16\x57\x66\xc8\x24\x3f\xb3\xb5\x38\x5a\x0d\x8c\xb0\x0c\x36\x94\x78\xc2\x34\x84\xda\x0a\x0c\xde\x2c\x6f\xa2\xe3\x96\xd5\x6c\x99\x65\x6d\x67\x01\x2c\x8e\x0f\xc1\xfb\xb5\xd2\x07\xc9\xbf\xcb\xc4\x32\x79\x2f\x66\x4b\x1f\x06\xaf\xe6\x99\x76\x3f\x30\xa3\x8b\xfc\xd1\xef\xcb\x83\x13\x6d\x59\x07\xd1\xf5\xe4\x57\x31\x7a\xac\xca\x42\x41\x7f\xeb\x43\x41\x47\x6f\x67\x0f\x9f\xb1\x70\xcf\x0a\xa0\x56\xb6\x4b\x94\x27\x4b\x82\x1e\x3c\xe9\xda\xc5\x93\xfb\xe1\x8b\x01\xac\x2f\x8d\xe3\x6d\x47\x55\xca\xe8\xec\xe9\x85\x5f\xf5\xb9\x03\xf9\x1d\xd6\x2b\x4a\x3d\xa9\x9a\xc3\x73\xbb\xf7\x08\xb4\x86\x61\x74\x70\x43\x54\x14\x55\x37\xac\x50\x83\x7e\x8f\xeb\x1b\xbc\x06\x11\xbc\x78\xd1\xd4\x5f\xd3\xb1\xc9\xf0\xc2\xbf\x6a\xac\xe9\xaf\xee\x96\x0b\xff\xa5\xd8\xb7\xdf\x03\x5a\x90\x19\x9d\x9e\x4e\x4f\x1e\x88\x4e\x21\x0f\x85\xd9\x2c\xd2\x8f\xdb\xa7\x31\xa6\x8c\xe1\x34\x6a\xa0\xf9\xef\x82\xa8\xe0\xf0\x58\x96\x8c\xaa\xd3\x88\xae\x12\x8b\xfd\x3b\xf7\xd0\x56\xf2\x9e\x83\x33\x7f\x48\xf2\x25\x8f\x89\xfe\x4f\xf0\x0e\x9e\xf8\x28\x80\x46\xe9\x33\x91\x9f\xfc\xf5\x2d\x57\xfc\x6d\xda\x95\xc4\x34\x11\x56\xf8\xdb\x0d\x12\x36\x74\xb4\x26\x56\xc4\x09\x2b\x24\xf0\x43\x90\xf8\x59\xe0\x67\x91\xdf\xe0\xd7\x1e\xbf\xf6\x65\xf9\x51\x0a\x83\xab\x52\x71\x3a\x9c\xaf\x90\x72\x83\xdf\x37\x1c\x7e\xf7\x3e\xfb\x67\x71\x3b\xfa\xb6\x82\xfd\x40\x30\x63\x6e\x4e\xd3\xed\x07\xa5\x73\xab\x9a\x2a\x9f\xf7\xf9\xda\xff\x46\x93\xf0\x45\x29\xdc\xbc\x26\xc9\xe7\x7d\xb0\xc6\x7e\x65\x15\xca\x37\xa5\x72\x3f\x34\x51\x3e\x29\xad\xcd\xf7\x99\xef\x97\x7e\x21\xd5\xf7\x4a\xbf\x08\xbd\x45\xdb\x6c\x39\xb0\xe9\x07\xf7\xba\xa6\x7f\xa7\xec\x94\xf2\x34\x14\x13\xa2\x59\xb2\x4b\xf1\x9a\xdf\xda\xc3\xe3\xc2\xec\x53\x3a\x4b\x2c\xe0\x70\x55\x6f\x77\xee\x7c\xea\xa3\x5d\x0b\x98\x8f\xe7\x24\x86\xea\xfc\xf8\x90\xbc\xcc\x46\xb3\x9b\xcd\x2b\x7d\x90\xae\x4c\xf9\x30\xf0\xf0\xdf\xfe\x0d\xe0\xf4\xf9\xef\xff\x9e\x9e\x3d\x7f\x94\x96\x9f\x39\x9e\x5d\x97\x6e\xf2\xcf\x38\x15\x28\x14\xfd\x7c\x11\x01\xb2\xff\x2b\x4c\x8e\xf5\x1a\x4a\xdf\x17\xc7\xdd\xd3\xff\x0b\x00\x00\xff\xff\x65\xdd\x71\x87\x0a\xaf\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: 44760, mode: os.FileMode(420), modTime: time.Unix(1447733937, 0)} + info := bindataFileInfo{name: "conf/locale/locale_en-US.ini", size: 44810, mode: os.FileMode(420), modTime: time.Unix(1447743886, 0)} a := &asset{bytes: bytes, info: info} return a, nil } diff --git a/public/css/gogs.css b/public/css/gogs.css index d0db002a..906f8d31 100755 --- a/public/css/gogs.css +++ b/public/css/gogs.css @@ -2510,6 +2510,35 @@ footer .container .links > *:first-child { .repository.forks .list .item .link { padding-top: 5px; } +.repository.settings.collaboration .collaborator.list { + padding: 0; +} +.repository.settings.collaboration .collaborator.list .item { + padding: 10px 20px; +} +.repository.settings.collaboration .collaborator.list .item:not(:last-child) { + border-bottom: 1px solid #DDD; +} +.repository.settings.collaboration #repo-collab-form #search-user-box .results { + left: 7px; +} +.repository.settings.collaboration #repo-collab-form .ui.button { + margin-left: 5px; + margin-top: -3px; +} +#search-user-box .results { + padding: 0; + position: absolute; +} +#search-user-box .results .item { + padding: 10px 15px; + border-bottom: 1px solid #DDD; + cursor: pointer; +} +#search-user-box .results .item:hover { + background: rgba(0, 0, 0, 0.05) !important; + color: rgba(0, 0, 0, 0.95) !important; +} .issue.list { list-style: none; padding-top: 15px; @@ -2562,7 +2591,7 @@ footer .container .links > *:first-child { .settings .content { margin-top: 2px; } -.settings .content .header, +.settings .content > .header, .settings .content .segment { box-shadow: 0 1px 2px 0 rgba(34, 36, 38, 0.15); } @@ -2748,6 +2777,9 @@ footer .container .links > *:first-child { .user.profile .ui.card .extra.content ul li:not(:last-child) { border-bottom: 1px solid #eaeaea; } +.user.profile .ui.repository.list { + margin-top: 25px; +} .dashboard { padding-top: 15px; padding-bottom: 80px; diff --git a/public/js/gogs.js b/public/js/gogs.js index e0738a50..d429516e 100644 --- a/public/js/gogs.js +++ b/public/js/gogs.js @@ -564,6 +564,64 @@ function buttonsClickOnEnter() { }); } +function searchUsers() { + if (!$('#search-user-box .results').length) { + return; + } + + var $search_user_box = $('#search-user-box'); + var $result_list = $search_user_box.find('.results'); + $search_user_box.keyup(function () { + var $this = $(this); + var keyword = $this.find('input').val(); + if (keyword.length < 2) { + $result_list.hide(); + return; + } + + $.ajax({ + url: suburl + '/api/v1/users/search?q=' + keyword, + dataType: "json", + success: function (response) { + var notEmpty = function (str) { + return str && str.length > 0; + }; + + $result_list.html(''); + + if (response.ok && response.data.length) { + var html = ''; + $.each(response.data, function (i, item) { + html += '
    ' + item.username + ''; + if (notEmpty(item.full_name)) { + html += ' (' + item.full_name + ')'; + } + html += '
    '; + }); + $result_list.html(html); + $this.find('.results .item').click(function () { + $this.find('input').val($(this).find('.username').text()); + $result_list.hide(); + }); + $result_list.show(); + } else { + $result_list.hide(); + } + } + }); + }); + $search_user_box.find('input').focus(function () { + $search_user_box.keyup(); + }); + $(document).click(function (e) { + var target = e.target; + + if (!$(target).is('#search-user-box .results') && !$(target).parents().is('#search-user-box')) { + $('#search-user-box .results').hide(); + } + }); +} + $(document).ready(function () { csrf = $('meta[name=_csrf]').attr("content"); suburl = $('meta[name=_suburl]').attr("content"); @@ -717,6 +775,8 @@ $(document).ready(function () { }); buttonsClickOnEnter(); + searchUsers(); + initCommentForm(); initInstall(); diff --git a/public/less/_repository.less b/public/less/_repository.less index 24fe4888..86c8fe33 100644 --- a/public/less/_repository.less +++ b/public/less/_repository.less @@ -934,9 +934,55 @@ } } } + + &.settings { + &.collaboration { + .collaborator.list { + padding: 0; + + .item { + padding: 10px 20px; + + &:not(:last-child) { + border-bottom: 1px solid #DDD; + } + } + } + + #repo-collab-form { + #search-user-box { + .results { + left: 7px; + } + } + .ui.button { + margin-left: 5px; + margin-top: -3px; + } + } + } + } } // End of .repository +#search-user-box { + .results { + padding: 0; + position: absolute; + + .item { + padding: 10px 15px; + border-bottom: 1px solid #DDD; + cursor: pointer; + + &:hover { + background: rgba(0,0,0,.05)!important; + color: rgba(0,0,0,.95)!important; + } + } + } +} + .issue.list { list-style: none; padding-top: 15px; @@ -994,7 +1040,7 @@ .settings { .content { margin-top: 2px; - .header, + >.header, .segment { box-shadow: 0 1px 2px 0 rgba(34,36,38,.15); } diff --git a/public/less/_user.less b/public/less/_user.less index bf0de506..171fccd0 100644 --- a/public/less/_user.less +++ b/public/less/_user.less @@ -42,5 +42,9 @@ } } } + + .ui.repository.list { + margin-top: 25px; + } } } \ No newline at end of file diff --git a/routers/api/v1/user.go b/routers/api/v1/user.go index f27cd3ae..ec4f720c 100644 --- a/routers/api/v1/user.go +++ b/routers/api/v1/user.go @@ -55,7 +55,7 @@ func SearchUsers(ctx *middleware.Context) { } } - ctx.Render.JSON(200, map[string]interface{}{ + ctx.JSON(200, map[string]interface{}{ "ok": true, "data": results, }) diff --git a/templates/.VERSION b/templates/.VERSION index 482a1f39..fe3bbea3 100644 --- a/templates/.VERSION +++ b/templates/.VERSION @@ -1 +1 @@ -0.7.15.1116 Beta \ No newline at end of file +0.7.16.1117 Beta \ No newline at end of file diff --git a/templates/repo/settings/collaboration.tmpl b/templates/repo/settings/collaboration.tmpl index 4781f667..c9915110 100644 --- a/templates/repo/settings/collaboration.tmpl +++ b/templates/repo/settings/collaboration.tmpl @@ -1,47 +1,44 @@ -{{template "ng/base/head" .}} -{{template "ng/base/header" .}} -
    - {{template "repo/header_old" .}} -
    -
    - {{template "repo/settings/nav" .}} -
    -
    - {{template "ng/base/alert" .}} -
    -
    -
    - {{.i18n.Tr "repo.settings.collaboration"}} -
    -
    - -
    - -
    -
    -
    -
    -
    +{{template "base/head" .}} +
    + {{template "repo/header" .}} +
    + {{template "repo/sidebar" .}} +
    + {{template "repo/settings/navbar" .}} +
    + {{template "base/alert" .}} +

    + {{.i18n.Tr "repo.settings.collaboration"}} +

    +
    + {{range .Collaborators}} +
    + {{if not (eq .Id $.Owner.Id)}} + + {{end}} + + + {{.DisplayName}} + +
    + {{end}} +
    +
    +
    + {{.CsrfTokenHtml}} +
    +
    +
    + +
    +
    +
    +
    + + +
    +
    +
    -{{template "ng/base/footer" .}} \ No newline at end of file +{{template "base/footer" .}} \ No newline at end of file diff --git a/templates/user/profile.tmpl b/templates/user/profile.tmpl index 9acf30ad..d1d92e8a 100644 --- a/templates/user/profile.tmpl +++ b/templates/user/profile.tmpl @@ -82,6 +82,7 @@ {{template "user/dashboard/feeds" .}}
    {{end}} +
    -- cgit v1.2.3 From 62533560ced1024c6897a16eccfa68d0e5df59b4 Mon Sep 17 00:00:00 2001 From: Unknwon Date: Wed, 18 Nov 2015 13:14:46 -0500 Subject: fix #1988 --- conf/locale/locale_en-US.ini | 1 + gogs.go | 2 +- modules/bindata/bindata.go | 436 +++++++++++++++++++++---------------------- templates/.VERSION | 2 +- 4 files changed, 221 insertions(+), 220 deletions(-) (limited to 'gogs.go') diff --git a/conf/locale/locale_en-US.ini b/conf/locale/locale_en-US.ini index efeb4ff9..29e4e59f 100644 --- a/conf/locale/locale_en-US.ini +++ b/conf/locale/locale_en-US.ini @@ -336,6 +336,7 @@ visibility = Visibility visiblity_helper = This repository is Private visiblity_helper_forced = Site admin has forced all new repositories to be Private visiblity_fork_helper = (Change of this value will affect all forks) +clone_helper = Need help cloning? Visit Help! fork_repo = Fork Repository fork_from = Fork From fork_visiblity_helper = You cannot alter the visibility of a forked repository. diff --git a/gogs.go b/gogs.go index 4ef58f57..95c21a5d 100644 --- a/gogs.go +++ b/gogs.go @@ -17,7 +17,7 @@ import ( "github.com/gogits/gogs/modules/setting" ) -const APP_VER = "0.7.16.1117 Beta" +const APP_VER = "0.7.16.1118 Beta" func init() { runtime.GOMAXPROCS(runtime.NumCPU()) diff --git a/modules/bindata/bindata.go b/modules/bindata/bindata.go index 99d1a5e1..a81a8d35 100644 --- a/modules/bindata/bindata.go +++ b/modules/bindata/bindata.go @@ -299,7 +299,7 @@ func confAppIni() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "conf/app.ini", size: 9660, mode: os.FileMode(420), modTime: time.Unix(1447018851, 0)} + info := bindataFileInfo{name: "conf/app.ini", size: 9660, mode: os.FileMode(420), modTime: time.Unix(1447073714, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -319,7 +319,7 @@ func confGitignoreActionscript() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "conf/gitignore/Actionscript", size: 300, mode: os.FileMode(420), modTime: time.Unix(1444419364, 0)} + info := bindataFileInfo{name: "conf/gitignore/Actionscript", size: 300, mode: os.FileMode(420), modTime: time.Unix(1441006036, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -339,7 +339,7 @@ func confGitignoreAda() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "conf/gitignore/Ada", size: 51, mode: os.FileMode(420), modTime: time.Unix(1444419364, 0)} + info := bindataFileInfo{name: "conf/gitignore/Ada", size: 51, mode: os.FileMode(420), modTime: time.Unix(1441006036, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -359,7 +359,7 @@ func confGitignoreAgda() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "conf/gitignore/Agda", size: 8, mode: os.FileMode(420), modTime: time.Unix(1444419364, 0)} + info := bindataFileInfo{name: "conf/gitignore/Agda", size: 8, mode: os.FileMode(420), modTime: time.Unix(1441006036, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -379,7 +379,7 @@ func confGitignoreAndroid() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "conf/gitignore/Android", size: 394, mode: os.FileMode(420), modTime: time.Unix(1444419364, 0)} + info := bindataFileInfo{name: "conf/gitignore/Android", size: 394, mode: os.FileMode(420), modTime: time.Unix(1441006036, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -399,7 +399,7 @@ func confGitignoreAnjuta() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "conf/gitignore/Anjuta", size: 78, mode: os.FileMode(420), modTime: time.Unix(1444419364, 0)} + info := bindataFileInfo{name: "conf/gitignore/Anjuta", size: 78, mode: os.FileMode(420), modTime: time.Unix(1441006036, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -419,7 +419,7 @@ func confGitignoreAppengine() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "conf/gitignore/AppEngine", size: 58, mode: os.FileMode(420), modTime: time.Unix(1444419364, 0)} + info := bindataFileInfo{name: "conf/gitignore/AppEngine", size: 58, mode: os.FileMode(420), modTime: time.Unix(1441006036, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -439,7 +439,7 @@ func confGitignoreAppceleratortitanium() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "conf/gitignore/AppceleratorTitanium", size: 45, mode: os.FileMode(420), modTime: time.Unix(1444419364, 0)} + info := bindataFileInfo{name: "conf/gitignore/AppceleratorTitanium", size: 45, mode: os.FileMode(420), modTime: time.Unix(1441006036, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -459,7 +459,7 @@ func confGitignoreArchlinuxpackages() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "conf/gitignore/ArchLinuxPackages", size: 75, mode: os.FileMode(420), modTime: time.Unix(1444419364, 0)} + info := bindataFileInfo{name: "conf/gitignore/ArchLinuxPackages", size: 75, mode: os.FileMode(420), modTime: time.Unix(1441006036, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -479,7 +479,7 @@ func confGitignoreArchives() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "conf/gitignore/Archives", size: 295, mode: os.FileMode(420), modTime: time.Unix(1444419364, 0)} + info := bindataFileInfo{name: "conf/gitignore/Archives", size: 295, mode: os.FileMode(420), modTime: time.Unix(1441006036, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -499,7 +499,7 @@ func confGitignoreAutotools() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "conf/gitignore/Autotools", size: 181, mode: os.FileMode(420), modTime: time.Unix(1444419364, 0)} + info := bindataFileInfo{name: "conf/gitignore/Autotools", size: 181, mode: os.FileMode(420), modTime: time.Unix(1441006036, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -519,7 +519,7 @@ func confGitignoreBricxcc() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "conf/gitignore/BricxCC", size: 72, mode: os.FileMode(420), modTime: time.Unix(1444419364, 0)} + info := bindataFileInfo{name: "conf/gitignore/BricxCC", size: 72, mode: os.FileMode(420), modTime: time.Unix(1441006036, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -539,7 +539,7 @@ func confGitignoreC() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "conf/gitignore/C", size: 246, mode: os.FileMode(420), modTime: time.Unix(1444419364, 0)} + info := bindataFileInfo{name: "conf/gitignore/C", size: 246, mode: os.FileMode(420), modTime: time.Unix(1441006036, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -559,7 +559,7 @@ func confGitignoreCSharp() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "conf/gitignore/C Sharp", size: 1521, mode: os.FileMode(420), modTime: time.Unix(1444419364, 0)} + info := bindataFileInfo{name: "conf/gitignore/C Sharp", size: 1521, mode: os.FileMode(420), modTime: time.Unix(1441006036, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -579,7 +579,7 @@ func confGitignoreC2() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "conf/gitignore/C++", size: 242, mode: os.FileMode(420), modTime: time.Unix(1444419364, 0)} + info := bindataFileInfo{name: "conf/gitignore/C++", size: 242, mode: os.FileMode(420), modTime: time.Unix(1441006036, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -599,7 +599,7 @@ func confGitignoreCfwheels() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "conf/gitignore/CFWheels", size: 205, mode: os.FileMode(420), modTime: time.Unix(1444419364, 0)} + info := bindataFileInfo{name: "conf/gitignore/CFWheels", size: 205, mode: os.FileMode(420), modTime: time.Unix(1441006036, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -619,7 +619,7 @@ func confGitignoreCmake() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "conf/gitignore/CMake", size: 89, mode: os.FileMode(420), modTime: time.Unix(1444419364, 0)} + info := bindataFileInfo{name: "conf/gitignore/CMake", size: 89, mode: os.FileMode(420), modTime: time.Unix(1441006036, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -639,7 +639,7 @@ func confGitignoreCuda() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "conf/gitignore/CUDA", size: 38, mode: os.FileMode(420), modTime: time.Unix(1444419364, 0)} + info := bindataFileInfo{name: "conf/gitignore/CUDA", size: 38, mode: os.FileMode(420), modTime: time.Unix(1441006036, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -659,7 +659,7 @@ func confGitignoreCvs() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "conf/gitignore/CVS", size: 39, mode: os.FileMode(420), modTime: time.Unix(1444419364, 0)} + info := bindataFileInfo{name: "conf/gitignore/CVS", size: 39, mode: os.FileMode(420), modTime: time.Unix(1441006036, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -679,7 +679,7 @@ func confGitignoreCakephp() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "conf/gitignore/CakePHP", size: 136, mode: os.FileMode(420), modTime: time.Unix(1444419364, 0)} + info := bindataFileInfo{name: "conf/gitignore/CakePHP", size: 136, mode: os.FileMode(420), modTime: time.Unix(1441006036, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -699,7 +699,7 @@ func confGitignoreChefcookbook() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "conf/gitignore/ChefCookbook", size: 77, mode: os.FileMode(420), modTime: time.Unix(1444419364, 0)} + info := bindataFileInfo{name: "conf/gitignore/ChefCookbook", size: 77, mode: os.FileMode(420), modTime: time.Unix(1441006036, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -719,7 +719,7 @@ func confGitignoreCloud9() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "conf/gitignore/Cloud9", size: 45, mode: os.FileMode(420), modTime: time.Unix(1444419364, 0)} + info := bindataFileInfo{name: "conf/gitignore/Cloud9", size: 45, mode: os.FileMode(420), modTime: time.Unix(1441006036, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -739,7 +739,7 @@ func confGitignoreCodeigniter() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "conf/gitignore/CodeIgniter", size: 106, mode: os.FileMode(420), modTime: time.Unix(1444419364, 0)} + info := bindataFileInfo{name: "conf/gitignore/CodeIgniter", size: 106, mode: os.FileMode(420), modTime: time.Unix(1441006036, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -759,7 +759,7 @@ func confGitignoreCodekit() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "conf/gitignore/CodeKit", size: 54, mode: os.FileMode(420), modTime: time.Unix(1444419364, 0)} + info := bindataFileInfo{name: "conf/gitignore/CodeKit", size: 54, mode: os.FileMode(420), modTime: time.Unix(1441006036, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -779,7 +779,7 @@ func confGitignoreCommonlisp() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "conf/gitignore/CommonLisp", size: 26, mode: os.FileMode(420), modTime: time.Unix(1444419364, 0)} + info := bindataFileInfo{name: "conf/gitignore/CommonLisp", size: 26, mode: os.FileMode(420), modTime: time.Unix(1441006036, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -799,7 +799,7 @@ func confGitignoreComposer() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "conf/gitignore/Composer", size: 250, mode: os.FileMode(420), modTime: time.Unix(1444419364, 0)} + info := bindataFileInfo{name: "conf/gitignore/Composer", size: 250, mode: os.FileMode(420), modTime: time.Unix(1441006036, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -819,7 +819,7 @@ func confGitignoreConcrete5() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "conf/gitignore/Concrete5", size: 42, mode: os.FileMode(420), modTime: time.Unix(1444419364, 0)} + info := bindataFileInfo{name: "conf/gitignore/Concrete5", size: 42, mode: os.FileMode(420), modTime: time.Unix(1441006036, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -839,7 +839,7 @@ func confGitignoreCoq() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "conf/gitignore/Coq", size: 18, mode: os.FileMode(420), modTime: time.Unix(1444419364, 0)} + info := bindataFileInfo{name: "conf/gitignore/Coq", size: 18, mode: os.FileMode(420), modTime: time.Unix(1441006036, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -859,7 +859,7 @@ func confGitignoreCraftcms() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "conf/gitignore/CraftCMS", size: 120, mode: os.FileMode(420), modTime: time.Unix(1444419364, 0)} + info := bindataFileInfo{name: "conf/gitignore/CraftCMS", size: 120, mode: os.FileMode(420), modTime: time.Unix(1441006036, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -879,7 +879,7 @@ func confGitignoreDm() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "conf/gitignore/DM", size: 29, mode: os.FileMode(420), modTime: time.Unix(1444419364, 0)} + info := bindataFileInfo{name: "conf/gitignore/DM", size: 29, mode: os.FileMode(420), modTime: time.Unix(1441006036, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -899,7 +899,7 @@ func confGitignoreDart() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "conf/gitignore/Dart", size: 234, mode: os.FileMode(420), modTime: time.Unix(1444419364, 0)} + info := bindataFileInfo{name: "conf/gitignore/Dart", size: 234, mode: os.FileMode(420), modTime: time.Unix(1441006036, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -919,7 +919,7 @@ func confGitignoreDarteditor() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "conf/gitignore/DartEditor", size: 19, mode: os.FileMode(420), modTime: time.Unix(1444419364, 0)} + info := bindataFileInfo{name: "conf/gitignore/DartEditor", size: 19, mode: os.FileMode(420), modTime: time.Unix(1441006036, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -939,7 +939,7 @@ func confGitignoreDelphi() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "conf/gitignore/Delphi", size: 1347, mode: os.FileMode(420), modTime: time.Unix(1444419364, 0)} + info := bindataFileInfo{name: "conf/gitignore/Delphi", size: 1347, mode: os.FileMode(420), modTime: time.Unix(1441006036, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -959,7 +959,7 @@ func confGitignoreDreamweaver() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "conf/gitignore/Dreamweaver", size: 47, mode: os.FileMode(420), modTime: time.Unix(1444419364, 0)} + info := bindataFileInfo{name: "conf/gitignore/Dreamweaver", size: 47, mode: os.FileMode(420), modTime: time.Unix(1441006036, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -979,7 +979,7 @@ func confGitignoreDrupal() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "conf/gitignore/Drupal", size: 605, mode: os.FileMode(420), modTime: time.Unix(1444419364, 0)} + info := bindataFileInfo{name: "conf/gitignore/Drupal", size: 605, mode: os.FileMode(420), modTime: time.Unix(1441006036, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -999,7 +999,7 @@ func confGitignoreEpiserver() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "conf/gitignore/EPiServer", size: 81, mode: os.FileMode(420), modTime: time.Unix(1444419364, 0)} + info := bindataFileInfo{name: "conf/gitignore/EPiServer", size: 81, mode: os.FileMode(420), modTime: time.Unix(1441006036, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -1019,7 +1019,7 @@ func confGitignoreEagle() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "conf/gitignore/Eagle", size: 401, mode: os.FileMode(420), modTime: time.Unix(1444419364, 0)} + info := bindataFileInfo{name: "conf/gitignore/Eagle", size: 401, mode: os.FileMode(420), modTime: time.Unix(1441006036, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -1039,7 +1039,7 @@ func confGitignoreEclipse() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "conf/gitignore/Eclipse", size: 458, mode: os.FileMode(420), modTime: time.Unix(1444419364, 0)} + info := bindataFileInfo{name: "conf/gitignore/Eclipse", size: 458, mode: os.FileMode(420), modTime: time.Unix(1441006036, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -1059,7 +1059,7 @@ func confGitignoreEiffelstudio() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "conf/gitignore/EiffelStudio", size: 35, mode: os.FileMode(420), modTime: time.Unix(1444419364, 0)} + info := bindataFileInfo{name: "conf/gitignore/EiffelStudio", size: 35, mode: os.FileMode(420), modTime: time.Unix(1441006036, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -1079,7 +1079,7 @@ func confGitignoreElisp() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "conf/gitignore/Elisp", size: 36, mode: os.FileMode(420), modTime: time.Unix(1444419364, 0)} + info := bindataFileInfo{name: "conf/gitignore/Elisp", size: 36, mode: os.FileMode(420), modTime: time.Unix(1441006036, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -1099,7 +1099,7 @@ func confGitignoreElixir() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "conf/gitignore/Elixir", size: 34, mode: os.FileMode(420), modTime: time.Unix(1444419364, 0)} + info := bindataFileInfo{name: "conf/gitignore/Elixir", size: 34, mode: os.FileMode(420), modTime: time.Unix(1441006036, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -1119,7 +1119,7 @@ func confGitignoreEmacs() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "conf/gitignore/Emacs", size: 320, mode: os.FileMode(420), modTime: time.Unix(1444419364, 0)} + info := bindataFileInfo{name: "conf/gitignore/Emacs", size: 320, mode: os.FileMode(420), modTime: time.Unix(1441006036, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -1139,7 +1139,7 @@ func confGitignoreEnsime() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "conf/gitignore/Ensime", size: 57, mode: os.FileMode(420), modTime: time.Unix(1444419364, 0)} + info := bindataFileInfo{name: "conf/gitignore/Ensime", size: 57, mode: os.FileMode(420), modTime: time.Unix(1441006036, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -1159,7 +1159,7 @@ func confGitignoreErlang() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "conf/gitignore/Erlang", size: 95, mode: os.FileMode(420), modTime: time.Unix(1444419364, 0)} + info := bindataFileInfo{name: "conf/gitignore/Erlang", size: 95, mode: os.FileMode(420), modTime: time.Unix(1441006036, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -1179,7 +1179,7 @@ func confGitignoreEspresso() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "conf/gitignore/Espresso", size: 9, mode: os.FileMode(420), modTime: time.Unix(1444419364, 0)} + info := bindataFileInfo{name: "conf/gitignore/Espresso", size: 9, mode: os.FileMode(420), modTime: time.Unix(1441006036, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -1199,7 +1199,7 @@ func confGitignoreExpressionengine() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "conf/gitignore/ExpressionEngine", size: 342, mode: os.FileMode(420), modTime: time.Unix(1444419364, 0)} + info := bindataFileInfo{name: "conf/gitignore/ExpressionEngine", size: 342, mode: os.FileMode(420), modTime: time.Unix(1441006036, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -1219,7 +1219,7 @@ func confGitignoreExtjs() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "conf/gitignore/ExtJs", size: 38, mode: os.FileMode(420), modTime: time.Unix(1444419364, 0)} + info := bindataFileInfo{name: "conf/gitignore/ExtJs", size: 38, mode: os.FileMode(420), modTime: time.Unix(1441006036, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -1239,7 +1239,7 @@ func confGitignoreFancy() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "conf/gitignore/Fancy", size: 12, mode: os.FileMode(420), modTime: time.Unix(1444419364, 0)} + info := bindataFileInfo{name: "conf/gitignore/Fancy", size: 12, mode: os.FileMode(420), modTime: time.Unix(1441006036, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -1259,7 +1259,7 @@ func confGitignoreFinale() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "conf/gitignore/Finale", size: 184, mode: os.FileMode(420), modTime: time.Unix(1444419364, 0)} + info := bindataFileInfo{name: "conf/gitignore/Finale", size: 184, mode: os.FileMode(420), modTime: time.Unix(1441006036, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -1279,7 +1279,7 @@ func confGitignoreFlexbuilder() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "conf/gitignore/FlexBuilder", size: 29, mode: os.FileMode(420), modTime: time.Unix(1444419364, 0)} + info := bindataFileInfo{name: "conf/gitignore/FlexBuilder", size: 29, mode: os.FileMode(420), modTime: time.Unix(1441006036, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -1299,7 +1299,7 @@ func confGitignoreForcedotcom() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "conf/gitignore/ForceDotCom", size: 57, mode: os.FileMode(420), modTime: time.Unix(1444419364, 0)} + info := bindataFileInfo{name: "conf/gitignore/ForceDotCom", size: 57, mode: os.FileMode(420), modTime: time.Unix(1441006036, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -1319,7 +1319,7 @@ func confGitignoreFuelphp() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "conf/gitignore/FuelPHP", size: 39, mode: os.FileMode(420), modTime: time.Unix(1444419364, 0)} + info := bindataFileInfo{name: "conf/gitignore/FuelPHP", size: 39, mode: os.FileMode(420), modTime: time.Unix(1441006036, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -1339,7 +1339,7 @@ func confGitignoreGwt() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "conf/gitignore/GWT", size: 395, mode: os.FileMode(420), modTime: time.Unix(1444419364, 0)} + info := bindataFileInfo{name: "conf/gitignore/GWT", size: 395, mode: os.FileMode(420), modTime: time.Unix(1441006036, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -1359,7 +1359,7 @@ func confGitignoreGcov() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "conf/gitignore/Gcov", size: 56, mode: os.FileMode(420), modTime: time.Unix(1444419364, 0)} + info := bindataFileInfo{name: "conf/gitignore/Gcov", size: 56, mode: os.FileMode(420), modTime: time.Unix(1441006036, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -1379,7 +1379,7 @@ func confGitignoreGitbook() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "conf/gitignore/GitBook", size: 353, mode: os.FileMode(420), modTime: time.Unix(1444419364, 0)} + info := bindataFileInfo{name: "conf/gitignore/GitBook", size: 353, mode: os.FileMode(420), modTime: time.Unix(1441006036, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -1399,7 +1399,7 @@ func confGitignoreGo() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "conf/gitignore/Go", size: 266, mode: os.FileMode(420), modTime: time.Unix(1444419364, 0)} + info := bindataFileInfo{name: "conf/gitignore/Go", size: 266, mode: os.FileMode(420), modTime: time.Unix(1441006036, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -1419,7 +1419,7 @@ func confGitignoreGradle() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "conf/gitignore/Gradle", size: 157, mode: os.FileMode(420), modTime: time.Unix(1444419364, 0)} + info := bindataFileInfo{name: "conf/gitignore/Gradle", size: 157, mode: os.FileMode(420), modTime: time.Unix(1441006036, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -1439,7 +1439,7 @@ func confGitignoreGrails() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "conf/gitignore/Grails", size: 583, mode: os.FileMode(420), modTime: time.Unix(1444419364, 0)} + info := bindataFileInfo{name: "conf/gitignore/Grails", size: 583, mode: os.FileMode(420), modTime: time.Unix(1441006036, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -1459,7 +1459,7 @@ func confGitignoreHaskell() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "conf/gitignore/Haskell", size: 135, mode: os.FileMode(420), modTime: time.Unix(1444419364, 0)} + info := bindataFileInfo{name: "conf/gitignore/Haskell", size: 135, mode: os.FileMode(420), modTime: time.Unix(1441006036, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -1479,7 +1479,7 @@ func confGitignoreIgorpro() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "conf/gitignore/IGORPro", size: 121, mode: os.FileMode(420), modTime: time.Unix(1444419364, 0)} + info := bindataFileInfo{name: "conf/gitignore/IGORPro", size: 121, mode: os.FileMode(420), modTime: time.Unix(1441006036, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -1499,7 +1499,7 @@ func confGitignoreIpythonnotebook() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "conf/gitignore/IPythonNotebook", size: 37, mode: os.FileMode(420), modTime: time.Unix(1444419364, 0)} + info := bindataFileInfo{name: "conf/gitignore/IPythonNotebook", size: 37, mode: os.FileMode(420), modTime: time.Unix(1441006036, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -1519,7 +1519,7 @@ func confGitignoreIdris() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "conf/gitignore/Idris", size: 10, mode: os.FileMode(420), modTime: time.Unix(1444419364, 0)} + info := bindataFileInfo{name: "conf/gitignore/Idris", size: 10, mode: os.FileMode(420), modTime: time.Unix(1441006036, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -1539,7 +1539,7 @@ func confGitignoreJdeveloper() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "conf/gitignore/JDeveloper", size: 255, mode: os.FileMode(420), modTime: time.Unix(1444419364, 0)} + info := bindataFileInfo{name: "conf/gitignore/JDeveloper", size: 255, mode: os.FileMode(420), modTime: time.Unix(1441006036, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -1559,7 +1559,7 @@ func confGitignoreJava() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "conf/gitignore/Java", size: 189, mode: os.FileMode(420), modTime: time.Unix(1444419364, 0)} + info := bindataFileInfo{name: "conf/gitignore/Java", size: 189, mode: os.FileMode(420), modTime: time.Unix(1441006036, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -1579,7 +1579,7 @@ func confGitignoreJboss() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "conf/gitignore/Jboss", size: 509, mode: os.FileMode(420), modTime: time.Unix(1444419364, 0)} + info := bindataFileInfo{name: "conf/gitignore/Jboss", size: 509, mode: os.FileMode(420), modTime: time.Unix(1441006036, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -1599,7 +1599,7 @@ func confGitignoreJekyll() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "conf/gitignore/Jekyll", size: 37, mode: os.FileMode(420), modTime: time.Unix(1444419364, 0)} + info := bindataFileInfo{name: "conf/gitignore/Jekyll", size: 37, mode: os.FileMode(420), modTime: time.Unix(1441006036, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -1619,7 +1619,7 @@ func confGitignoreJetbrains() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "conf/gitignore/JetBrains", size: 860, mode: os.FileMode(420), modTime: time.Unix(1444419364, 0)} + info := bindataFileInfo{name: "conf/gitignore/JetBrains", size: 860, mode: os.FileMode(420), modTime: time.Unix(1441006036, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -1639,7 +1639,7 @@ func confGitignoreJoomla() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "conf/gitignore/Joomla", size: 22387, mode: os.FileMode(420), modTime: time.Unix(1444419364, 0)} + info := bindataFileInfo{name: "conf/gitignore/Joomla", size: 22387, mode: os.FileMode(420), modTime: time.Unix(1441006036, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -1659,7 +1659,7 @@ func confGitignoreKdevelop4() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "conf/gitignore/KDevelop4", size: 16, mode: os.FileMode(420), modTime: time.Unix(1444419364, 0)} + info := bindataFileInfo{name: "conf/gitignore/KDevelop4", size: 16, mode: os.FileMode(420), modTime: time.Unix(1441006036, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -1679,7 +1679,7 @@ func confGitignoreKate() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "conf/gitignore/Kate", size: 34, mode: os.FileMode(420), modTime: time.Unix(1444419364, 0)} + info := bindataFileInfo{name: "conf/gitignore/Kate", size: 34, mode: os.FileMode(420), modTime: time.Unix(1441006036, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -1699,7 +1699,7 @@ func confGitignoreKicad() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "conf/gitignore/KiCAD", size: 208, mode: os.FileMode(420), modTime: time.Unix(1444419364, 0)} + info := bindataFileInfo{name: "conf/gitignore/KiCAD", size: 208, mode: os.FileMode(420), modTime: time.Unix(1441006036, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -1719,7 +1719,7 @@ func confGitignoreKohana() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "conf/gitignore/Kohana", size: 39, mode: os.FileMode(420), modTime: time.Unix(1444419364, 0)} + info := bindataFileInfo{name: "conf/gitignore/Kohana", size: 39, mode: os.FileMode(420), modTime: time.Unix(1441006036, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -1739,7 +1739,7 @@ func confGitignoreLabview() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "conf/gitignore/LabVIEW", size: 142, mode: os.FileMode(420), modTime: time.Unix(1444419364, 0)} + info := bindataFileInfo{name: "conf/gitignore/LabVIEW", size: 142, mode: os.FileMode(420), modTime: time.Unix(1441006036, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -1759,7 +1759,7 @@ func confGitignoreLaravel() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "conf/gitignore/Laravel", size: 49, mode: os.FileMode(420), modTime: time.Unix(1444419364, 0)} + info := bindataFileInfo{name: "conf/gitignore/Laravel", size: 49, mode: os.FileMode(420), modTime: time.Unix(1441006036, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -1779,7 +1779,7 @@ func confGitignoreLazarus() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "conf/gitignore/Lazarus", size: 407, mode: os.FileMode(420), modTime: time.Unix(1444419364, 0)} + info := bindataFileInfo{name: "conf/gitignore/Lazarus", size: 407, mode: os.FileMode(420), modTime: time.Unix(1441006036, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -1799,7 +1799,7 @@ func confGitignoreLeiningen() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "conf/gitignore/Leiningen", size: 138, mode: os.FileMode(420), modTime: time.Unix(1444419364, 0)} + info := bindataFileInfo{name: "conf/gitignore/Leiningen", size: 138, mode: os.FileMode(420), modTime: time.Unix(1441006036, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -1819,7 +1819,7 @@ func confGitignoreLemonstand() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "conf/gitignore/LemonStand", size: 348, mode: os.FileMode(420), modTime: time.Unix(1444419364, 0)} + info := bindataFileInfo{name: "conf/gitignore/LemonStand", size: 348, mode: os.FileMode(420), modTime: time.Unix(1441006036, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -1839,7 +1839,7 @@ func confGitignoreLibreoffice() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "conf/gitignore/LibreOffice", size: 30, mode: os.FileMode(420), modTime: time.Unix(1444419364, 0)} + info := bindataFileInfo{name: "conf/gitignore/LibreOffice", size: 30, mode: os.FileMode(420), modTime: time.Unix(1441006036, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -1859,7 +1859,7 @@ func confGitignoreLilypond() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "conf/gitignore/Lilypond", size: 33, mode: os.FileMode(420), modTime: time.Unix(1444419364, 0)} + info := bindataFileInfo{name: "conf/gitignore/Lilypond", size: 33, mode: os.FileMode(420), modTime: time.Unix(1441006036, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -1879,7 +1879,7 @@ func confGitignoreLinux() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "conf/gitignore/Linux", size: 118, mode: os.FileMode(420), modTime: time.Unix(1444419364, 0)} + info := bindataFileInfo{name: "conf/gitignore/Linux", size: 118, mode: os.FileMode(420), modTime: time.Unix(1441006036, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -1899,7 +1899,7 @@ func confGitignoreLithium() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "conf/gitignore/Lithium", size: 28, mode: os.FileMode(420), modTime: time.Unix(1444419364, 0)} + info := bindataFileInfo{name: "conf/gitignore/Lithium", size: 28, mode: os.FileMode(420), modTime: time.Unix(1441006036, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -1919,7 +1919,7 @@ func confGitignoreLua() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "conf/gitignore/Lua", size: 324, mode: os.FileMode(420), modTime: time.Unix(1444419364, 0)} + info := bindataFileInfo{name: "conf/gitignore/Lua", size: 324, mode: os.FileMode(420), modTime: time.Unix(1441006036, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -1939,7 +1939,7 @@ func confGitignoreLyx() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "conf/gitignore/LyX", size: 75, mode: os.FileMode(420), modTime: time.Unix(1444419364, 0)} + info := bindataFileInfo{name: "conf/gitignore/LyX", size: 75, mode: os.FileMode(420), modTime: time.Unix(1441006036, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -1959,7 +1959,7 @@ func confGitignoreMagento() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "conf/gitignore/Magento", size: 2599, mode: os.FileMode(420), modTime: time.Unix(1444419364, 0)} + info := bindataFileInfo{name: "conf/gitignore/Magento", size: 2599, mode: os.FileMode(420), modTime: time.Unix(1441006036, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -1979,7 +1979,7 @@ func confGitignoreMatlab() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "conf/gitignore/Matlab", size: 360, mode: os.FileMode(420), modTime: time.Unix(1444419364, 0)} + info := bindataFileInfo{name: "conf/gitignore/Matlab", size: 360, mode: os.FileMode(420), modTime: time.Unix(1441006036, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -1999,7 +1999,7 @@ func confGitignoreMaven() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "conf/gitignore/Maven", size: 170, mode: os.FileMode(420), modTime: time.Unix(1444419364, 0)} + info := bindataFileInfo{name: "conf/gitignore/Maven", size: 170, mode: os.FileMode(420), modTime: time.Unix(1441006036, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -2019,7 +2019,7 @@ func confGitignoreMercurial() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "conf/gitignore/Mercurial", size: 50, mode: os.FileMode(420), modTime: time.Unix(1444419364, 0)} + info := bindataFileInfo{name: "conf/gitignore/Mercurial", size: 50, mode: os.FileMode(420), modTime: time.Unix(1441006036, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -2039,7 +2039,7 @@ func confGitignoreMercury() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "conf/gitignore/Mercury", size: 93, mode: os.FileMode(420), modTime: time.Unix(1444419364, 0)} + info := bindataFileInfo{name: "conf/gitignore/Mercury", size: 93, mode: os.FileMode(420), modTime: time.Unix(1441006036, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -2059,7 +2059,7 @@ func confGitignoreMetaprogrammingsystem() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "conf/gitignore/MetaProgrammingSystem", size: 391, mode: os.FileMode(420), modTime: time.Unix(1444419364, 0)} + info := bindataFileInfo{name: "conf/gitignore/MetaProgrammingSystem", size: 391, mode: os.FileMode(420), modTime: time.Unix(1441006036, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -2079,7 +2079,7 @@ func confGitignoreMicrosoftoffice() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "conf/gitignore/MicrosoftOffice", size: 88, mode: os.FileMode(420), modTime: time.Unix(1444419364, 0)} + info := bindataFileInfo{name: "conf/gitignore/MicrosoftOffice", size: 88, mode: os.FileMode(420), modTime: time.Unix(1441006036, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -2099,7 +2099,7 @@ func confGitignoreModelsim() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "conf/gitignore/ModelSim", size: 282, mode: os.FileMode(420), modTime: time.Unix(1444419364, 0)} + info := bindataFileInfo{name: "conf/gitignore/ModelSim", size: 282, mode: os.FileMode(420), modTime: time.Unix(1441006036, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -2119,7 +2119,7 @@ func confGitignoreMomentics() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "conf/gitignore/Momentics", size: 76, mode: os.FileMode(420), modTime: time.Unix(1444419364, 0)} + info := bindataFileInfo{name: "conf/gitignore/Momentics", size: 76, mode: os.FileMode(420), modTime: time.Unix(1441006036, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -2139,7 +2139,7 @@ func confGitignoreMonodevelop() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "conf/gitignore/MonoDevelop", size: 93, mode: os.FileMode(420), modTime: time.Unix(1444419364, 0)} + info := bindataFileInfo{name: "conf/gitignore/MonoDevelop", size: 93, mode: os.FileMode(420), modTime: time.Unix(1441006036, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -2159,7 +2159,7 @@ func confGitignoreNanoc() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "conf/gitignore/Nanoc", size: 197, mode: os.FileMode(420), modTime: time.Unix(1444419364, 0)} + info := bindataFileInfo{name: "conf/gitignore/Nanoc", size: 197, mode: os.FileMode(420), modTime: time.Unix(1441006036, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -2179,7 +2179,7 @@ func confGitignoreNetbeans() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "conf/gitignore/NetBeans", size: 96, mode: os.FileMode(420), modTime: time.Unix(1444419364, 0)} + info := bindataFileInfo{name: "conf/gitignore/NetBeans", size: 96, mode: os.FileMode(420), modTime: time.Unix(1441006036, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -2199,7 +2199,7 @@ func confGitignoreNim() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "conf/gitignore/Nim", size: 10, mode: os.FileMode(420), modTime: time.Unix(1444419364, 0)} + info := bindataFileInfo{name: "conf/gitignore/Nim", size: 10, mode: os.FileMode(420), modTime: time.Unix(1441006036, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -2219,7 +2219,7 @@ func confGitignoreNinja() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "conf/gitignore/Ninja", size: 23, mode: os.FileMode(420), modTime: time.Unix(1444419364, 0)} + info := bindataFileInfo{name: "conf/gitignore/Ninja", size: 23, mode: os.FileMode(420), modTime: time.Unix(1441006036, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -2239,7 +2239,7 @@ func confGitignoreNode() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "conf/gitignore/Node", size: 529, mode: os.FileMode(420), modTime: time.Unix(1444419364, 0)} + info := bindataFileInfo{name: "conf/gitignore/Node", size: 529, mode: os.FileMode(420), modTime: time.Unix(1441006036, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -2259,7 +2259,7 @@ func confGitignoreNotepadpp() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "conf/gitignore/NotepadPP", size: 30, mode: os.FileMode(420), modTime: time.Unix(1444419364, 0)} + info := bindataFileInfo{name: "conf/gitignore/NotepadPP", size: 30, mode: os.FileMode(420), modTime: time.Unix(1441006036, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -2279,7 +2279,7 @@ func confGitignoreOcaml() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "conf/gitignore/OCaml", size: 178, mode: os.FileMode(420), modTime: time.Unix(1444419364, 0)} + info := bindataFileInfo{name: "conf/gitignore/OCaml", size: 178, mode: os.FileMode(420), modTime: time.Unix(1441006036, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -2299,7 +2299,7 @@ func confGitignoreOsx() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "conf/gitignore/OSX", size: 356, mode: os.FileMode(420), modTime: time.Unix(1444419364, 0)} + info := bindataFileInfo{name: "conf/gitignore/OSX", size: 356, mode: os.FileMode(420), modTime: time.Unix(1441006036, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -2319,7 +2319,7 @@ func confGitignoreObjectiveC() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "conf/gitignore/Objective-C", size: 837, mode: os.FileMode(420), modTime: time.Unix(1444419364, 0)} + info := bindataFileInfo{name: "conf/gitignore/Objective-C", size: 837, mode: os.FileMode(420), modTime: time.Unix(1441006036, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -2339,7 +2339,7 @@ func confGitignoreOpa() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "conf/gitignore/Opa", size: 90, mode: os.FileMode(420), modTime: time.Unix(1444419364, 0)} + info := bindataFileInfo{name: "conf/gitignore/Opa", size: 90, mode: os.FileMode(420), modTime: time.Unix(1441006036, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -2359,7 +2359,7 @@ func confGitignoreOpencart() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "conf/gitignore/OpenCart", size: 115, mode: os.FileMode(420), modTime: time.Unix(1444419364, 0)} + info := bindataFileInfo{name: "conf/gitignore/OpenCart", size: 115, mode: os.FileMode(420), modTime: time.Unix(1441006036, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -2379,7 +2379,7 @@ func confGitignoreOracleforms() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "conf/gitignore/OracleForms", size: 100, mode: os.FileMode(420), modTime: time.Unix(1444419364, 0)} + info := bindataFileInfo{name: "conf/gitignore/OracleForms", size: 100, mode: os.FileMode(420), modTime: time.Unix(1441006036, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -2399,7 +2399,7 @@ func confGitignorePacker() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "conf/gitignore/Packer", size: 55, mode: os.FileMode(420), modTime: time.Unix(1444419364, 0)} + info := bindataFileInfo{name: "conf/gitignore/Packer", size: 55, mode: os.FileMode(420), modTime: time.Unix(1441006036, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -2419,7 +2419,7 @@ func confGitignorePerl() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "conf/gitignore/Perl", size: 191, mode: os.FileMode(420), modTime: time.Unix(1444419364, 0)} + info := bindataFileInfo{name: "conf/gitignore/Perl", size: 191, mode: os.FileMode(420), modTime: time.Unix(1441006036, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -2439,7 +2439,7 @@ func confGitignorePhalcon() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "conf/gitignore/Phalcon", size: 29, mode: os.FileMode(420), modTime: time.Unix(1444419364, 0)} + info := bindataFileInfo{name: "conf/gitignore/Phalcon", size: 29, mode: os.FileMode(420), modTime: time.Unix(1441006036, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -2459,7 +2459,7 @@ func confGitignorePlayframework() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "conf/gitignore/PlayFramework", size: 170, mode: os.FileMode(420), modTime: time.Unix(1444419364, 0)} + info := bindataFileInfo{name: "conf/gitignore/PlayFramework", size: 170, mode: os.FileMode(420), modTime: time.Unix(1441006036, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -2479,7 +2479,7 @@ func confGitignorePlone() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "conf/gitignore/Plone", size: 137, mode: os.FileMode(420), modTime: time.Unix(1444419364, 0)} + info := bindataFileInfo{name: "conf/gitignore/Plone", size: 137, mode: os.FileMode(420), modTime: time.Unix(1441006036, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -2499,7 +2499,7 @@ func confGitignorePrestashop() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "conf/gitignore/Prestashop", size: 483, mode: os.FileMode(420), modTime: time.Unix(1444419364, 0)} + info := bindataFileInfo{name: "conf/gitignore/Prestashop", size: 483, mode: os.FileMode(420), modTime: time.Unix(1441006036, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -2519,7 +2519,7 @@ func confGitignoreProcessing() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "conf/gitignore/Processing", size: 120, mode: os.FileMode(420), modTime: time.Unix(1444419364, 0)} + info := bindataFileInfo{name: "conf/gitignore/Processing", size: 120, mode: os.FileMode(420), modTime: time.Unix(1441006036, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -2539,7 +2539,7 @@ func confGitignorePython() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "conf/gitignore/Python", size: 713, mode: os.FileMode(420), modTime: time.Unix(1444419364, 0)} + info := bindataFileInfo{name: "conf/gitignore/Python", size: 713, mode: os.FileMode(420), modTime: time.Unix(1441006036, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -2559,7 +2559,7 @@ func confGitignoreQooxdoo() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "conf/gitignore/Qooxdoo", size: 58, mode: os.FileMode(420), modTime: time.Unix(1444419364, 0)} + info := bindataFileInfo{name: "conf/gitignore/Qooxdoo", size: 58, mode: os.FileMode(420), modTime: time.Unix(1441006036, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -2579,7 +2579,7 @@ func confGitignoreQt() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "conf/gitignore/Qt", size: 292, mode: os.FileMode(420), modTime: time.Unix(1444419364, 0)} + info := bindataFileInfo{name: "conf/gitignore/Qt", size: 292, mode: os.FileMode(420), modTime: time.Unix(1441006036, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -2599,7 +2599,7 @@ func confGitignoreR() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "conf/gitignore/R", size: 255, mode: os.FileMode(420), modTime: time.Unix(1444419364, 0)} + info := bindataFileInfo{name: "conf/gitignore/R", size: 255, mode: os.FileMode(420), modTime: time.Unix(1441006036, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -2619,7 +2619,7 @@ func confGitignoreRos() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "conf/gitignore/ROS", size: 493, mode: os.FileMode(420), modTime: time.Unix(1444419364, 0)} + info := bindataFileInfo{name: "conf/gitignore/ROS", size: 493, mode: os.FileMode(420), modTime: time.Unix(1441006036, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -2639,7 +2639,7 @@ func confGitignoreRails() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "conf/gitignore/Rails", size: 707, mode: os.FileMode(420), modTime: time.Unix(1444419364, 0)} + info := bindataFileInfo{name: "conf/gitignore/Rails", size: 707, mode: os.FileMode(420), modTime: time.Unix(1441006036, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -2659,7 +2659,7 @@ func confGitignoreRedcar() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "conf/gitignore/Redcar", size: 8, mode: os.FileMode(420), modTime: time.Unix(1444419364, 0)} + info := bindataFileInfo{name: "conf/gitignore/Redcar", size: 8, mode: os.FileMode(420), modTime: time.Unix(1441006036, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -2679,7 +2679,7 @@ func confGitignoreRedis() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "conf/gitignore/Redis", size: 51, mode: os.FileMode(420), modTime: time.Unix(1444419364, 0)} + info := bindataFileInfo{name: "conf/gitignore/Redis", size: 51, mode: os.FileMode(420), modTime: time.Unix(1441006036, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -2699,7 +2699,7 @@ func confGitignoreRhodesrhomobile() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "conf/gitignore/RhodesRhomobile", size: 77, mode: os.FileMode(420), modTime: time.Unix(1444419364, 0)} + info := bindataFileInfo{name: "conf/gitignore/RhodesRhomobile", size: 77, mode: os.FileMode(420), modTime: time.Unix(1441006036, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -2719,7 +2719,7 @@ func confGitignoreRuby() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "conf/gitignore/Ruby", size: 607, mode: os.FileMode(420), modTime: time.Unix(1444419364, 0)} + info := bindataFileInfo{name: "conf/gitignore/Ruby", size: 607, mode: os.FileMode(420), modTime: time.Unix(1441006036, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -2739,7 +2739,7 @@ func confGitignoreRust() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "conf/gitignore/Rust", size: 91, mode: os.FileMode(420), modTime: time.Unix(1444419364, 0)} + info := bindataFileInfo{name: "conf/gitignore/Rust", size: 91, mode: os.FileMode(420), modTime: time.Unix(1441006036, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -2759,7 +2759,7 @@ func confGitignoreSbt() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "conf/gitignore/SBT", size: 186, mode: os.FileMode(420), modTime: time.Unix(1444419364, 0)} + info := bindataFileInfo{name: "conf/gitignore/SBT", size: 186, mode: os.FileMode(420), modTime: time.Unix(1441006036, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -2779,7 +2779,7 @@ func confGitignoreScons() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "conf/gitignore/SCons", size: 90, mode: os.FileMode(420), modTime: time.Unix(1444419364, 0)} + info := bindataFileInfo{name: "conf/gitignore/SCons", size: 90, mode: os.FileMode(420), modTime: time.Unix(1441006036, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -2799,7 +2799,7 @@ func confGitignoreSvn() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "conf/gitignore/SVN", size: 6, mode: os.FileMode(420), modTime: time.Unix(1444419364, 0)} + info := bindataFileInfo{name: "conf/gitignore/SVN", size: 6, mode: os.FileMode(420), modTime: time.Unix(1441006036, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -2819,7 +2819,7 @@ func confGitignoreSass() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "conf/gitignore/Sass", size: 23, mode: os.FileMode(420), modTime: time.Unix(1444419364, 0)} + info := bindataFileInfo{name: "conf/gitignore/Sass", size: 23, mode: os.FileMode(420), modTime: time.Unix(1441006036, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -2839,7 +2839,7 @@ func confGitignoreScala() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "conf/gitignore/Scala", size: 185, mode: os.FileMode(420), modTime: time.Unix(1444419364, 0)} + info := bindataFileInfo{name: "conf/gitignore/Scala", size: 185, mode: os.FileMode(420), modTime: time.Unix(1441006036, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -2859,7 +2859,7 @@ func confGitignoreScrivener() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "conf/gitignore/Scrivener", size: 140, mode: os.FileMode(420), modTime: time.Unix(1444419364, 0)} + info := bindataFileInfo{name: "conf/gitignore/Scrivener", size: 140, mode: os.FileMode(420), modTime: time.Unix(1441006036, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -2879,7 +2879,7 @@ func confGitignoreSdcc() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "conf/gitignore/Sdcc", size: 55, mode: os.FileMode(420), modTime: time.Unix(1444419364, 0)} + info := bindataFileInfo{name: "conf/gitignore/Sdcc", size: 55, mode: os.FileMode(420), modTime: time.Unix(1441006036, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -2899,7 +2899,7 @@ func confGitignoreSeamgen() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "conf/gitignore/SeamGen", size: 961, mode: os.FileMode(420), modTime: time.Unix(1444419364, 0)} + info := bindataFileInfo{name: "conf/gitignore/SeamGen", size: 961, mode: os.FileMode(420), modTime: time.Unix(1441006036, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -2919,7 +2919,7 @@ func confGitignoreSketchup() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "conf/gitignore/SketchUp", size: 6, mode: os.FileMode(420), modTime: time.Unix(1444419364, 0)} + info := bindataFileInfo{name: "conf/gitignore/SketchUp", size: 6, mode: os.FileMode(420), modTime: time.Unix(1441006036, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -2939,7 +2939,7 @@ func confGitignoreSlickedit() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "conf/gitignore/SlickEdit", size: 323, mode: os.FileMode(420), modTime: time.Unix(1444419364, 0)} + info := bindataFileInfo{name: "conf/gitignore/SlickEdit", size: 323, mode: os.FileMode(420), modTime: time.Unix(1441006036, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -2959,7 +2959,7 @@ func confGitignoreStella() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "conf/gitignore/Stella", size: 207, mode: os.FileMode(420), modTime: time.Unix(1444419364, 0)} + info := bindataFileInfo{name: "conf/gitignore/Stella", size: 207, mode: os.FileMode(420), modTime: time.Unix(1441006036, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -2979,7 +2979,7 @@ func confGitignoreSublimetext() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "conf/gitignore/SublimeText", size: 354, mode: os.FileMode(420), modTime: time.Unix(1444419364, 0)} + info := bindataFileInfo{name: "conf/gitignore/SublimeText", size: 354, mode: os.FileMode(420), modTime: time.Unix(1441006036, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -2999,7 +2999,7 @@ func confGitignoreSugarcrm() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "conf/gitignore/SugarCRM", size: 734, mode: os.FileMode(420), modTime: time.Unix(1444419364, 0)} + info := bindataFileInfo{name: "conf/gitignore/SugarCRM", size: 734, mode: os.FileMode(420), modTime: time.Unix(1441006036, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -3019,7 +3019,7 @@ func confGitignoreSwift() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "conf/gitignore/Swift", size: 837, mode: os.FileMode(420), modTime: time.Unix(1444419364, 0)} + info := bindataFileInfo{name: "conf/gitignore/Swift", size: 837, mode: os.FileMode(420), modTime: time.Unix(1441006036, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -3039,7 +3039,7 @@ func confGitignoreSymfony() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "conf/gitignore/Symfony", size: 531, mode: os.FileMode(420), modTime: time.Unix(1444419364, 0)} + info := bindataFileInfo{name: "conf/gitignore/Symfony", size: 531, mode: os.FileMode(420), modTime: time.Unix(1441006036, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -3059,7 +3059,7 @@ func confGitignoreSymphonycms() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "conf/gitignore/SymphonyCMS", size: 90, mode: os.FileMode(420), modTime: time.Unix(1444419364, 0)} + info := bindataFileInfo{name: "conf/gitignore/SymphonyCMS", size: 90, mode: os.FileMode(420), modTime: time.Unix(1441006036, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -3079,7 +3079,7 @@ func confGitignoreSynopsysvcs() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "conf/gitignore/SynopsysVCS", size: 971, mode: os.FileMode(420), modTime: time.Unix(1444419364, 0)} + info := bindataFileInfo{name: "conf/gitignore/SynopsysVCS", size: 971, mode: os.FileMode(420), modTime: time.Unix(1441006036, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -3099,7 +3099,7 @@ func confGitignoreTags() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "conf/gitignore/Tags", size: 177, mode: os.FileMode(420), modTime: time.Unix(1444419364, 0)} + info := bindataFileInfo{name: "conf/gitignore/Tags", size: 177, mode: os.FileMode(420), modTime: time.Unix(1441006036, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -3119,7 +3119,7 @@ func confGitignoreTex() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "conf/gitignore/TeX", size: 1328, mode: os.FileMode(420), modTime: time.Unix(1444419364, 0)} + info := bindataFileInfo{name: "conf/gitignore/TeX", size: 1328, mode: os.FileMode(420), modTime: time.Unix(1441006036, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -3139,7 +3139,7 @@ func confGitignoreTextmate() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "conf/gitignore/TextMate", size: 28, mode: os.FileMode(420), modTime: time.Unix(1444419364, 0)} + info := bindataFileInfo{name: "conf/gitignore/TextMate", size: 28, mode: os.FileMode(420), modTime: time.Unix(1441006036, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -3159,7 +3159,7 @@ func confGitignoreTextpattern() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "conf/gitignore/Textpattern", size: 177, mode: os.FileMode(420), modTime: time.Unix(1444419364, 0)} + info := bindataFileInfo{name: "conf/gitignore/Textpattern", size: 177, mode: os.FileMode(420), modTime: time.Unix(1441006036, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -3179,7 +3179,7 @@ func confGitignoreTortoisegit() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "conf/gitignore/TortoiseGit", size: 38, mode: os.FileMode(420), modTime: time.Unix(1444419364, 0)} + info := bindataFileInfo{name: "conf/gitignore/TortoiseGit", size: 38, mode: os.FileMode(420), modTime: time.Unix(1441006036, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -3199,7 +3199,7 @@ func confGitignoreTurbogears2() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "conf/gitignore/TurboGears2", size: 202, mode: os.FileMode(420), modTime: time.Unix(1444419364, 0)} + info := bindataFileInfo{name: "conf/gitignore/TurboGears2", size: 202, mode: os.FileMode(420), modTime: time.Unix(1441006036, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -3219,7 +3219,7 @@ func confGitignoreTypo3() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "conf/gitignore/Typo3", size: 466, mode: os.FileMode(420), modTime: time.Unix(1444419364, 0)} + info := bindataFileInfo{name: "conf/gitignore/Typo3", size: 466, mode: os.FileMode(420), modTime: time.Unix(1441006036, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -3239,7 +3239,7 @@ func confGitignoreUmbraco() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "conf/gitignore/Umbraco", size: 536, mode: os.FileMode(420), modTime: time.Unix(1444419364, 0)} + info := bindataFileInfo{name: "conf/gitignore/Umbraco", size: 536, mode: os.FileMode(420), modTime: time.Unix(1441006036, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -3259,7 +3259,7 @@ func confGitignoreUnity() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "conf/gitignore/Unity", size: 267, mode: os.FileMode(420), modTime: time.Unix(1444419364, 0)} + info := bindataFileInfo{name: "conf/gitignore/Unity", size: 267, mode: os.FileMode(420), modTime: time.Unix(1441006036, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -3279,7 +3279,7 @@ func confGitignoreVvvv() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "conf/gitignore/VVVV", size: 57, mode: os.FileMode(420), modTime: time.Unix(1444419364, 0)} + info := bindataFileInfo{name: "conf/gitignore/VVVV", size: 57, mode: os.FileMode(420), modTime: time.Unix(1441006036, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -3299,7 +3299,7 @@ func confGitignoreVagrant() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "conf/gitignore/Vagrant", size: 10, mode: os.FileMode(420), modTime: time.Unix(1444419364, 0)} + info := bindataFileInfo{name: "conf/gitignore/Vagrant", size: 10, mode: os.FileMode(420), modTime: time.Unix(1441006036, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -3319,7 +3319,7 @@ func confGitignoreVim() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "conf/gitignore/Vim", size: 66, mode: os.FileMode(420), modTime: time.Unix(1444419364, 0)} + info := bindataFileInfo{name: "conf/gitignore/Vim", size: 66, mode: os.FileMode(420), modTime: time.Unix(1441006036, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -3339,7 +3339,7 @@ func confGitignoreVirtualenv() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "conf/gitignore/VirtualEnv", size: 151, mode: os.FileMode(420), modTime: time.Unix(1444419364, 0)} + info := bindataFileInfo{name: "conf/gitignore/VirtualEnv", size: 151, mode: os.FileMode(420), modTime: time.Unix(1441006036, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -3359,7 +3359,7 @@ func confGitignoreVisualstudio() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "conf/gitignore/VisualStudio", size: 3412, mode: os.FileMode(420), modTime: time.Unix(1444419364, 0)} + info := bindataFileInfo{name: "conf/gitignore/VisualStudio", size: 3412, mode: os.FileMode(420), modTime: time.Unix(1441006036, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -3379,7 +3379,7 @@ func confGitignoreVisualstudiocode() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "conf/gitignore/VisualStudioCode", size: 11, mode: os.FileMode(420), modTime: time.Unix(1444419364, 0)} + info := bindataFileInfo{name: "conf/gitignore/VisualStudioCode", size: 11, mode: os.FileMode(420), modTime: time.Unix(1441006036, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -3399,7 +3399,7 @@ func confGitignoreWaf() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "conf/gitignore/Waf", size: 87, mode: os.FileMode(420), modTime: time.Unix(1444419364, 0)} + info := bindataFileInfo{name: "conf/gitignore/Waf", size: 87, mode: os.FileMode(420), modTime: time.Unix(1441006036, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -3419,7 +3419,7 @@ func confGitignoreWebmethods() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "conf/gitignore/WebMethods", size: 424, mode: os.FileMode(420), modTime: time.Unix(1444419364, 0)} + info := bindataFileInfo{name: "conf/gitignore/WebMethods", size: 424, mode: os.FileMode(420), modTime: time.Unix(1441006036, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -3439,7 +3439,7 @@ func confGitignoreWindows() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "conf/gitignore/Windows", size: 211, mode: os.FileMode(420), modTime: time.Unix(1444419364, 0)} + info := bindataFileInfo{name: "conf/gitignore/Windows", size: 211, mode: os.FileMode(420), modTime: time.Unix(1441006036, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -3459,7 +3459,7 @@ func confGitignoreWordpress() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "conf/gitignore/WordPress", size: 297, mode: os.FileMode(420), modTime: time.Unix(1444419364, 0)} + info := bindataFileInfo{name: "conf/gitignore/WordPress", size: 297, mode: os.FileMode(420), modTime: time.Unix(1441006036, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -3479,7 +3479,7 @@ func confGitignoreXcode() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "conf/gitignore/Xcode", size: 361, mode: os.FileMode(420), modTime: time.Unix(1444419364, 0)} + info := bindataFileInfo{name: "conf/gitignore/Xcode", size: 361, mode: os.FileMode(420), modTime: time.Unix(1441006036, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -3499,7 +3499,7 @@ func confGitignoreXilinxise() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "conf/gitignore/XilinxISE", size: 566, mode: os.FileMode(420), modTime: time.Unix(1444419364, 0)} + info := bindataFileInfo{name: "conf/gitignore/XilinxISE", size: 566, mode: os.FileMode(420), modTime: time.Unix(1441006036, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -3519,7 +3519,7 @@ func confGitignoreXojo() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "conf/gitignore/Xojo", size: 160, mode: os.FileMode(420), modTime: time.Unix(1444419364, 0)} + info := bindataFileInfo{name: "conf/gitignore/Xojo", size: 160, mode: os.FileMode(420), modTime: time.Unix(1441006036, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -3539,7 +3539,7 @@ func confGitignoreYeoman() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "conf/gitignore/Yeoman", size: 52, mode: os.FileMode(420), modTime: time.Unix(1444419364, 0)} + info := bindataFileInfo{name: "conf/gitignore/Yeoman", size: 52, mode: os.FileMode(420), modTime: time.Unix(1441006036, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -3559,7 +3559,7 @@ func confGitignoreYii() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "conf/gitignore/Yii", size: 120, mode: os.FileMode(420), modTime: time.Unix(1444419364, 0)} + info := bindataFileInfo{name: "conf/gitignore/Yii", size: 120, mode: os.FileMode(420), modTime: time.Unix(1441006036, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -3579,7 +3579,7 @@ func confGitignoreZendframework() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "conf/gitignore/ZendFramework", size: 217, mode: os.FileMode(420), modTime: time.Unix(1444419364, 0)} + info := bindataFileInfo{name: "conf/gitignore/ZendFramework", size: 217, mode: os.FileMode(420), modTime: time.Unix(1441006036, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -3599,7 +3599,7 @@ func confGitignoreZephir() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "conf/gitignore/Zephir", size: 387, mode: os.FileMode(420), modTime: time.Unix(1444419364, 0)} + info := bindataFileInfo{name: "conf/gitignore/Zephir", size: 387, mode: os.FileMode(420), modTime: time.Unix(1441006036, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -3619,7 +3619,7 @@ func confLicenseAbstylesLicense() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "conf/license/Abstyles License", size: 730, mode: os.FileMode(420), modTime: time.Unix(1444419364, 0)} + info := bindataFileInfo{name: "conf/license/Abstyles License", size: 730, mode: os.FileMode(420), modTime: time.Unix(1441006036, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -3639,7 +3639,7 @@ func confLicenseAcademicFreeLicenseV11() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "conf/license/Academic Free License v1.1", size: 4660, mode: os.FileMode(420), modTime: time.Unix(1444419364, 0)} + info := bindataFileInfo{name: "conf/license/Academic Free License v1.1", size: 4660, mode: os.FileMode(420), modTime: time.Unix(1441006036, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -3659,7 +3659,7 @@ func confLicenseAcademicFreeLicenseV12() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "conf/license/Academic Free License v1.2", size: 4949, mode: os.FileMode(420), modTime: time.Unix(1444419364, 0)} + info := bindataFileInfo{name: "conf/license/Academic Free License v1.2", size: 4949, mode: os.FileMode(420), modTime: time.Unix(1441006036, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -3679,7 +3679,7 @@ func confLicenseAcademicFreeLicenseV20() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "conf/license/Academic Free License v2.0", size: 8937, mode: os.FileMode(420), modTime: time.Unix(1444419364, 0)} + info := bindataFileInfo{name: "conf/license/Academic Free License v2.0", size: 8937, mode: os.FileMode(420), modTime: time.Unix(1441006036, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -3699,7 +3699,7 @@ func confLicenseAcademicFreeLicenseV21() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "conf/license/Academic Free License v2.1", size: 8922, mode: os.FileMode(420), modTime: time.Unix(1444419364, 0)} + info := bindataFileInfo{name: "conf/license/Academic Free License v2.1", size: 8922, mode: os.FileMode(420), modTime: time.Unix(1441006036, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -3719,7 +3719,7 @@ func confLicenseAcademicFreeLicenseV30() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "conf/license/Academic Free License v3.0", size: 10306, mode: os.FileMode(420), modTime: time.Unix(1444419364, 0)} + info := bindataFileInfo{name: "conf/license/Academic Free License v3.0", size: 10306, mode: os.FileMode(420), modTime: time.Unix(1441006036, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -3739,7 +3739,7 @@ func confLicenseAfferoGeneralPublicLicenseV10() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "conf/license/Affero General Public License v1.0", size: 15837, mode: os.FileMode(420), modTime: time.Unix(1444419364, 0)} + info := bindataFileInfo{name: "conf/license/Affero General Public License v1.0", size: 15837, mode: os.FileMode(420), modTime: time.Unix(1441006036, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -3759,7 +3759,7 @@ func confLicenseApacheLicense10() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "conf/license/Apache License 1.0", size: 2475, mode: os.FileMode(420), modTime: time.Unix(1444419364, 0)} + info := bindataFileInfo{name: "conf/license/Apache License 1.0", size: 2475, mode: os.FileMode(420), modTime: time.Unix(1441006036, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -3779,7 +3779,7 @@ func confLicenseApacheLicense11() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "conf/license/Apache License 1.1", size: 2508, mode: os.FileMode(420), modTime: time.Unix(1444419364, 0)} + info := bindataFileInfo{name: "conf/license/Apache License 1.1", size: 2508, mode: os.FileMode(420), modTime: time.Unix(1441006036, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -3799,7 +3799,7 @@ func confLicenseApacheLicense20() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "conf/license/Apache License 2.0", size: 10261, mode: os.FileMode(420), modTime: time.Unix(1444419364, 0)} + info := bindataFileInfo{name: "conf/license/Apache License 2.0", size: 10261, mode: os.FileMode(420), modTime: time.Unix(1441006036, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -3819,7 +3819,7 @@ func confLicenseArtisticLicense10() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "conf/license/Artistic License 1.0", size: 4789, mode: os.FileMode(420), modTime: time.Unix(1444419364, 0)} + info := bindataFileInfo{name: "conf/license/Artistic License 1.0", size: 4789, mode: os.FileMode(420), modTime: time.Unix(1441006036, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -3839,7 +3839,7 @@ func confLicenseArtisticLicense20() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "conf/license/Artistic License 2.0", size: 8661, mode: os.FileMode(420), modTime: time.Unix(1444419364, 0)} + info := bindataFileInfo{name: "conf/license/Artistic License 2.0", size: 8661, mode: os.FileMode(420), modTime: time.Unix(1441006036, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -3859,7 +3859,7 @@ func confLicenseBsd2ClauseLicense() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "conf/license/BSD 2-clause License", size: 1286, mode: os.FileMode(420), modTime: time.Unix(1444419364, 0)} + info := bindataFileInfo{name: "conf/license/BSD 2-clause License", size: 1286, mode: os.FileMode(420), modTime: time.Unix(1441006036, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -3879,7 +3879,7 @@ func confLicenseBsd3ClauseLicense() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "conf/license/BSD 3-clause License", size: 1480, mode: os.FileMode(420), modTime: time.Unix(1444419364, 0)} + info := bindataFileInfo{name: "conf/license/BSD 3-clause License", size: 1480, mode: os.FileMode(420), modTime: time.Unix(1441006036, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -3899,7 +3899,7 @@ func confLicenseBsd4ClauseLicense() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "conf/license/BSD 4-clause License", size: 1624, mode: os.FileMode(420), modTime: time.Unix(1444419364, 0)} + info := bindataFileInfo{name: "conf/license/BSD 4-clause License", size: 1624, mode: os.FileMode(420), modTime: time.Unix(1441006036, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -3919,7 +3919,7 @@ func confLicenseCreativeCommonsCc010Universal() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "conf/license/Creative Commons CC0 1.0 Universal", size: 6894, mode: os.FileMode(420), modTime: time.Unix(1444419364, 0)} + info := bindataFileInfo{name: "conf/license/Creative Commons CC0 1.0 Universal", size: 6894, mode: os.FileMode(420), modTime: time.Unix(1441006036, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -3939,7 +3939,7 @@ func confLicenseCreativeCommonsZeroV10Universal() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "conf/license/Creative Commons Zero v1.0 Universal", size: 6894, mode: os.FileMode(420), modTime: time.Unix(1444419364, 0)} + info := bindataFileInfo{name: "conf/license/Creative Commons Zero v1.0 Universal", size: 6894, mode: os.FileMode(420), modTime: time.Unix(1441006036, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -3959,7 +3959,7 @@ func confLicenseEclipsePublicLicense10() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "conf/license/Eclipse Public License 1.0", size: 11248, mode: os.FileMode(420), modTime: time.Unix(1444419364, 0)} + info := bindataFileInfo{name: "conf/license/Eclipse Public License 1.0", size: 11248, mode: os.FileMode(420), modTime: time.Unix(1441006036, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -3979,7 +3979,7 @@ func confLicenseEducationalCommunityLicenseV10() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "conf/license/Educational Community License v1.0", size: 2394, mode: os.FileMode(420), modTime: time.Unix(1444419364, 0)} + info := bindataFileInfo{name: "conf/license/Educational Community License v1.0", size: 2394, mode: os.FileMode(420), modTime: time.Unix(1441006036, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -3999,7 +3999,7 @@ func confLicenseEducationalCommunityLicenseV20() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "conf/license/Educational Community License v2.0", size: 11085, mode: os.FileMode(420), modTime: time.Unix(1444419364, 0)} + info := bindataFileInfo{name: "conf/license/Educational Community License v2.0", size: 11085, mode: os.FileMode(420), modTime: time.Unix(1441006036, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -4019,7 +4019,7 @@ func confLicenseGnuAfferoGeneralPublicLicenseV30() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "conf/license/GNU Affero General Public License v3.0", size: 33818, mode: os.FileMode(420), modTime: time.Unix(1444419364, 0)} + info := bindataFileInfo{name: "conf/license/GNU Affero General Public License v3.0", size: 33818, mode: os.FileMode(420), modTime: time.Unix(1441006036, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -4039,7 +4039,7 @@ func confLicenseGnuFreeDocumentationLicenseV11() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "conf/license/GNU Free Documentation License v1.1", size: 17912, mode: os.FileMode(420), modTime: time.Unix(1444419364, 0)} + info := bindataFileInfo{name: "conf/license/GNU Free Documentation License v1.1", size: 17912, mode: os.FileMode(420), modTime: time.Unix(1441006036, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -4059,7 +4059,7 @@ func confLicenseGnuFreeDocumentationLicenseV12() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "conf/license/GNU Free Documentation License v1.2", size: 20209, mode: os.FileMode(420), modTime: time.Unix(1444419364, 0)} + info := bindataFileInfo{name: "conf/license/GNU Free Documentation License v1.2", size: 20209, mode: os.FileMode(420), modTime: time.Unix(1441006036, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -4079,7 +4079,7 @@ func confLicenseGnuFreeDocumentationLicenseV13() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "conf/license/GNU Free Documentation License v1.3", size: 22732, mode: os.FileMode(420), modTime: time.Unix(1444419364, 0)} + info := bindataFileInfo{name: "conf/license/GNU Free Documentation License v1.3", size: 22732, mode: os.FileMode(420), modTime: time.Unix(1441006036, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -4099,7 +4099,7 @@ func confLicenseGnuGeneralPublicLicenseV10() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "conf/license/GNU General Public License v1.0", size: 12165, mode: os.FileMode(420), modTime: time.Unix(1444419364, 0)} + info := bindataFileInfo{name: "conf/license/GNU General Public License v1.0", size: 12165, mode: os.FileMode(420), modTime: time.Unix(1441006036, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -4119,7 +4119,7 @@ func confLicenseGnuGeneralPublicLicenseV20() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "conf/license/GNU General Public License v2.0", size: 17277, mode: os.FileMode(420), modTime: time.Unix(1444419364, 0)} + info := bindataFileInfo{name: "conf/license/GNU General Public License v2.0", size: 17277, mode: os.FileMode(420), modTime: time.Unix(1441006036, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -4139,7 +4139,7 @@ func confLicenseGnuGeneralPublicLicenseV30() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "conf/license/GNU General Public License v3.0", size: 34570, mode: os.FileMode(420), modTime: time.Unix(1444419364, 0)} + info := bindataFileInfo{name: "conf/license/GNU General Public License v3.0", size: 34570, mode: os.FileMode(420), modTime: time.Unix(1441006036, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -4159,7 +4159,7 @@ func confLicenseGnuLesserGeneralPublicLicenseV21() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "conf/license/GNU Lesser General Public License v2.1", size: 25885, mode: os.FileMode(420), modTime: time.Unix(1444419364, 0)} + info := bindataFileInfo{name: "conf/license/GNU Lesser General Public License v2.1", size: 25885, mode: os.FileMode(420), modTime: time.Unix(1441006036, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -4179,7 +4179,7 @@ func confLicenseGnuLesserGeneralPublicLicenseV30() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "conf/license/GNU Lesser General Public License v3.0", size: 7355, mode: os.FileMode(420), modTime: time.Unix(1444419364, 0)} + info := bindataFileInfo{name: "conf/license/GNU Lesser General Public License v3.0", size: 7355, mode: os.FileMode(420), modTime: time.Unix(1441006036, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -4199,7 +4199,7 @@ func confLicenseGnuLibraryGeneralPublicLicenseV20() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "conf/license/GNU Library General Public License v2.0", size: 24758, mode: os.FileMode(420), modTime: time.Unix(1444419364, 0)} + info := bindataFileInfo{name: "conf/license/GNU Library General Public License v2.0", size: 24758, mode: os.FileMode(420), modTime: time.Unix(1441006036, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -4219,7 +4219,7 @@ func confLicenseIscLicense() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "conf/license/ISC license", size: 823, mode: os.FileMode(420), modTime: time.Unix(1444419364, 0)} + info := bindataFileInfo{name: "conf/license/ISC license", size: 823, mode: os.FileMode(420), modTime: time.Unix(1441006036, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -4239,7 +4239,7 @@ func confLicenseMitLicense() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "conf/license/MIT License", size: 1077, mode: os.FileMode(420), modTime: time.Unix(1444419364, 0)} + info := bindataFileInfo{name: "conf/license/MIT License", size: 1077, mode: os.FileMode(420), modTime: time.Unix(1441006036, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -4259,7 +4259,7 @@ func confLicenseMozillaPublicLicense10() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "conf/license/Mozilla Public License 1.0", size: 18026, mode: os.FileMode(420), modTime: time.Unix(1444419364, 0)} + info := bindataFileInfo{name: "conf/license/Mozilla Public License 1.0", size: 18026, mode: os.FileMode(420), modTime: time.Unix(1441006036, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -4279,7 +4279,7 @@ func confLicenseMozillaPublicLicense11() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "conf/license/Mozilla Public License 1.1", size: 23361, mode: os.FileMode(420), modTime: time.Unix(1444419364, 0)} + info := bindataFileInfo{name: "conf/license/Mozilla Public License 1.1", size: 23361, mode: os.FileMode(420), modTime: time.Unix(1441006036, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -4299,7 +4299,7 @@ func confLicenseMozillaPublicLicense20() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "conf/license/Mozilla Public License 2.0", size: 14827, mode: os.FileMode(420), modTime: time.Unix(1444419364, 0)} + info := bindataFileInfo{name: "conf/license/Mozilla Public License 2.0", size: 14827, mode: os.FileMode(420), modTime: time.Unix(1441006036, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -4319,7 +4319,7 @@ func confLocaleTranslators() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "conf/locale/TRANSLATORS", size: 1298, mode: os.FileMode(420), modTime: time.Unix(1447011494, 0)} + info := bindataFileInfo{name: "conf/locale/TRANSLATORS", size: 1298, mode: os.FileMode(420), modTime: time.Unix(1446489150, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -4339,7 +4339,7 @@ func confLocaleLocale_bgBgIni() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "conf/locale/locale_bg-BG.ini", size: 69171, mode: os.FileMode(493), modTime: time.Unix(1447368024, 0)} + info := bindataFileInfo{name: "conf/locale/locale_bg-BG.ini", size: 69171, mode: os.FileMode(493), modTime: time.Unix(1447073714, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -4359,12 +4359,12 @@ func confLocaleLocale_deDeIni() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "conf/locale/locale_de-DE.ini", size: 48284, mode: os.FileMode(493), modTime: time.Unix(1447368024, 0)} + info := bindataFileInfo{name: "conf/locale/locale_de-DE.ini", size: 48284, mode: os.FileMode(493), modTime: time.Unix(1447073714, 0)} a := &asset{bytes: bytes, info: info} 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\xec\xac\xc3\xc1\x66\x15\xa9\x2a\x8e\xab\xc8\x6a\x92\xe5\xb2\xfa\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\x76\x9b\x15\x65\xb7\x48\x9f\xa6\xc7\xe9\x36\xaf\xea\x75\xd9\x75\x69\x57\xae\xaf\x1f\xaf\x9a\xae\x2f\x8b\xf4\x65\xd5\xd3\xef\xf6\x53\xb5\x28\x93\x64\xd5\x6c\x4a\x02\x7d\x45\x7f\x92\x22\xef\x56\xf3\x26\x6f\x0b\x4a\x38\xb5\xef\xa4\xfc\xbc\x5d\x37\x2d\x03\xfd\x2c\x5f\xc9\xaa\x5c\x6f\xb9\x0c\xfd\x49\xba\x6a\x59\x67\x55\x4d\x3f\x2f\xe9\x2b\x7d\x5d\x4b\x4a\xb3\xeb\x2d\xe9\x7c\xd7\x4b\xda\x6e\x6b\x49\xbf\x6c\x93\xb6\x5c\x56\xd4\x9b\x96\x92\xde\xe9\x67\xb2\x2f\xe7\x5d\xd5\x73\x4b\x7f\x95\xaf\xe4\x53\xd9\x76\x55\xc3\xb5\xff\x45\xbe\x92\x6d\xbe\x64\x80\x0b\xfa\x93\xf4\xe5\x66\xbb\xce\x51\xe0\x4a\x3f\x93\x75\x5e\x2f\x77\x02\xf3\x46\x3f\x93\x45\x5b\x52\x56\x56\x97\x7b\x4a\x3d\xc1\x8f\xd9\x6c\x96\xec\x08\x09\xd9\xb6\x6d\xae\xab\x75\x99\xe5\x75\x91\x6d\x64\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\x8d\x95\xe6\xcf\xa4\xdc\xe4\xd5\x9a\xb1\xf6\x98\x3f\xa8\xe3\x5d\xb7\x6f\x80\xdb\x0b\xfd\x24\x24\x64\xfd\xcd\xb6\x04\x0e\x1e\x5f\xd1\x57\xb2\xc8\xb7\xfd\x62\x95\x73\x3f\xe5\x2b\x21\xa0\x6d\x43\xc8\x68\xda\x1b\xc0\xd9\x8f\xa4\x69\x97\x79\x5d\xfd\x9e\xf7\x82\xa0\xf3\xe0\x67\xb2\xa9\xda\xb6\x61\xdc\x9e\xe1\x23\xa1\xa1\x67\x5c\x0f\xa5\xbc\x25\x2c\x04\xb5\x70\xce\xa6\x5a\xb6\x82\x46\xce\x3c\xc3\x2f\xae\x85\xf3\xae\x9b\xf6\xa3\x66\xbc\xe0\xcf\x41\x51\xea\x84\xe6\xc6\xed\xe7\x35\x21\x5e\x73\xcf\xf0\x23\x02\xe8\x92\xbc\xd8\x10\x2a\xb7\x79\x5d\x32\x8e\x8e\xf9\x17\xe1\x85\x7e\x25\xf9\x62\xd1\xec\xea\x3e\xeb\xca\xbe\xaf\xea\x25\x23\xfb\x58\x92\xd2\x4b\x4d\x4a\x82\x3c\x97\x76\xd3\xec\xdc\x74\x52\xfa\xdf\xe8\x67\x7a\x21\x3f\x25\x2f\x28\x84\x4c\x57\x92\x47\xd2\x65\xd7\x65\x59\xc8\x58\xba\xf4\x05\x7d\x27\xdb\xdd\x7a\x4d\x58\xfb\x6d\x57\x76\x3d\x17\xba\xa0\xdf\x34\x7e\xf9\x9d\x54\x5d\x47\x1f\x94\xfc\x1a\x1f\x09\x4d\x5d\xbd\xc0\x60\x4e\xf0\x91\x24\xef\xbb\x32\x6f\x17\xab\x0f\x89\xfc\x45\x5f\xf9\x83\x69\xef\xd0\xa4\x32\x21\x29\x11\x49\x0b\xd6\x40\xb2\x68\x0a\xfe\x71\x42\x7f\xa8\xea\xaa\xee\xfa\x7c\xbd\xfe\x90\xe8\x07\x83\xc9\x97\x4c\x40\x5f\xf5\xc0\x82\x26\xa6\x97\x7d\xb9\xed\x78\x06\xd3\x17\x55\xdb\xf5\x8f\xfb\x8a\x88\xf5\xdd\xae\x4e\x8a\x66\xf1\x91\x96\x01\x2f\x69\xb4\xfc\xfa\x3a\x25\x64\x3d\xa0\x85\xd0\xee\xea\x9a\xd0\x93\xbe\x6c\x08\x65\xd4\x4c\x45\xed\x9f\x02\xfa\x28\xdd\xae\xcb\xbc\x23\x90\x32\x2f\xd2\x1f\xf3\xb4\xcf\xdb\x65\xd9\x3f\xbd\x97\xcd\x69\xf9\x7d\xbc\x97\xae\xda\xf2\xfa\xe9\xbd\xfb\xdd\xbd\x67\x2f\x77\x54\x6c\x5d\xd5\x65\xf7\xe3\x93\xfc\x59\xba\xc8\x29\x87\xd0\x78\x93\xce\xcb\x6b\x5e\x6d\xd4\x56\x4a\x54\x5e\x2f\x79\xa5\xdd\xf4\x2b\x6e\x90\x28\x81\x3e\xba\x94\x97\xfa\x37\x09\x4f\x00\xb1\x82\xac\x98\x1b\x5b\x43\x87\x90\xdc\xd2\x04\x9c\xdd\x5c\xfe\xf9\xcd\x51\x7a\x41\xbc\x6d\xd9\x96\xf8\xa6\xff\xa8\xc4\xf7\x29\x8d\xf6\xaa\x3a\x7d\x3e\x4b\xa8\xac\x21\xe4\x34\xef\xf3\x39\xf7\xdd\xcd\x3e\x67\xca\x22\x74\x79\x58\x8a\xcc\x2d\xc1\x19\xbb\x3e\x9a\x96\xa9\x85\x4c\x75\xe8\xf2\x77\x75\xbc\x65\x1e\x40\xe9\x0e\xb3\x17\x82\x33\xaa\x2a\x7d\xfd\xf6\xed\xf9\xe9\xf3\xb4\xac\x97\x84\x99\x74\x5f\xf5\xab\x74\xd7\x5f\xff\xb7\x6c\x59\xd6\x65\x9b\xaf\xb3\x45\xc5\x48\x69\x89\x60\x53\xc2\x92\x0c\x71\x96\x74\xdd\x9a\x58\x14\xa8\xe0\xf2\xf2\x4d\x7a\xc6\x94\xb0\xcd\xfb\x15\x3a\xd2\xaf\x92\xee\xb7\x35\x23\xca\x35\x78\xb5\x2a\x53\x2c\x06\x00\x35\xd7\x43\xbc\xa4\x85\xf6\x75\x96\x94\x6d\x9b\x11\x07\xed\x6f\x18\xcd\x5a\xe7\x21\x68\xa9\x8e\xa8\xbd\x6e\x7a\x9a\xc6\x14\xe5\xa4\x8a\xaa\xfe\x94\xaf\xab\x82\x90\xed\x11\x12\x97\x45\x62\xd1\xd0\xbc\x71\x69\xa2\xcc\x66\x8f\xa1\xe6\x0b\xda\x00\xba\xf4\xde\xec\x1e\x38\xee\xbd\xc7\xf7\x66\x49\xdd\x64\xc2\x25\x98\x37\x17\x55\x97\xcf\x89\x4f\xcb\xbe\xd1\x1a\xd7\xfb\x1b\xd3\x8f\x74\x45\x21\xd2\x08\x82\x71\xcb\x7b\x11\xb6\x00\x26\xae\x9c\x18\x36\x98\x8d\xb2\x99\x70\xec\xc6\x93\xdc\xfc\x0a\x5b\x72\x09\xa3\x31\x27\x36\x61\x46\x5d\xc7\xdb\xed\xba\x5a\x48\xd3\x2f\x25\xcf\x13\x1a\xef\xcc\x8a\x94\x10\x0e\x84\x62\x79\x01\xb9\x50\xaf\x99\x6d\xa5\x11\x9f\x47\xf9\x55\x49\x2b\x67\xb5\x5b\xca\xee\xb4\x6e\x76\xc5\x37\x60\x28\x36\x73\x9e\x9f\xa4\xef\x1a\xea\x30\xa8\xc3\x01\xf8\x26\x8e\x89\x31\xb0\x30\xd0\x96\x9b\xa6\x67\xc4\x69\xb1\x8a\xa6\x67\x5f\x51\x26\x8d\xb4\xcb\x3f\x11\x5b\xec\x1b\x59\x92\x05\x2d\xb9\x05\x57\x4c\x1c\x6c\x47\x3b\xba\x2c\x0b\xe2\x23\xb2\x34\x2c\x2d\xa6\x41\x40\x6d\x76\xb4\x9a\x56\x54\x19\x23\x9e\x25\x12\xaa\x72\xaa\x9f\x18\x12\xd5\x83\x55\x4e\x2b\xb7\xa1\xcd\x93\x27\xfa\x14\x1f\xfa\x3b\xac\x9f\x7a\x95\x5f\x5f\x53\xaf\x3a\x5a\x15\xaf\xd2\xc5\xba\xa1\x25\xf5\xcb\xbb\x37\x1d\x2f\x98\x55\xb6\x6d\x5a\x48\x22\x94\x75\x41\x9f\x2e\x2d\x40\x34\x43\xd4\xbb\xcd\x9c\x7e\xed\x57\x15\x31\x6a\xa0\x9d\x4b\xb0\x94\x44\xa9\xd4\xc4\xae\xa3\x29\x3c\x4a\x69\x09\xd3\x08\x08\x65\x20\x00\x1e\x83\x51\x1d\x83\x5f\x13\x8d\xed\x5a\x5a\x4e\xab\xbe\xdf\x5a\xcb\xaf\xae\xae\x2e\xa4\x69\x97\x7a\x5b\xdb\x79\x40\x19\x98\x83\x35\xcb\x46\x75\xda\xd4\x33\x10\xc9\xae\x5d\x0f\xe8\x87\xc6\x6a\x39\x07\xf0\xc2\x5d\x78\xc2\xff\x5d\x7a\xf4\x00\xcf\x1d\x49\x7d\x7b\x50\x13\xe1\xb8\x84\x9c\x42\x44\xdd\x6c\xb9\xde\x80\xaa\xcf\x35\xc1\x93\x32\x64\x1b\x97\x2f\x12\x0e\xe5\x42\xa6\x0c\x76\xe9\x0d\x0d\x58\xd9\xe8\xe5\x19\xa1\x01\xbc\x14\xa9\xd7\x6d\xb3\xa1\xd4\x17\xf4\xc7\x27\xf8\xee\x9f\x71\x7d\x80\xc9\x8b\x82\xb8\x7c\x77\x94\xbe\x7b\x71\x92\xfe\xe7\xef\xbf\xfb\x6e\x96\xbe\xee\x79\x25\x32\x71\xfe\x9d\x89\x8a\x3e\x45\xd4\x72\xa0\xc4\xb1\x7a\xa2\xbb\x7b\xbc\xb2\xee\xa5\x3f\x22\xf7\xbf\x97\x9f\x73\x12\x11\xcb\xd9\xa2\xd9\x3c\x63\xae\xba\xc9\x69\xed\x73\x0e\x91\xab\xd2\xf1\x65\x59\x17\xf4\xa1\x02\x9b\xe6\x05\xec\x40\xf3\x03\xf1\x4d\x04\xd7\x6c\xd1\xd4\xd7\x55\xcb\x03\xfa\xb9\x06\x35\x98\x48\x4b\xdb\x35\x72\x4c\x2a\x22\xa4\x11\x07\xa9\xae\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\xeb\x6b\xde\x6b\x6d\x97\xd0\x16\xce\x25\x55\x36\x8c\x10\x84\x88\x71\x0b\xa1\xfc\x54\x89\xf8\xe4\xf4\x6d\x5a\x7e\x22\x6a\x63\xae\xd7\x36\xc5\x6e\x01\x0a\x63\xd8\x23\x66\xd6\xc4\x22\x3a\x5a\x1b\x0b\xd9\x57\x02\x26\xc1\x5d\x63\x4e\xb4\x20\x20\xe2\x0d\xc6\xac\x49\x90\xfc\x44\x9c\xbf\x0d\x9a\x78\x69\x49\xda\xfb\x11\xec\xa8\x53\xae\x04\x8f\x7c\x41\x33\x4e\x54\x21\xbd\xe8\xa4\x53\x92\x4d\xe4\x4e\x74\xbc\xa3\x13\x4a\x5e\x50\x5f\xe6\x37\xe0\x3b\x1d\x13\x43\x51\x5e\xe7\xbb\x75\xef\xfb\x35\xd8\x44\xac\xa5\x4b\x3e\x24\x85\x79\x93\x05\x46\x1d\x04\xf5\x74\xc3\xb2\x44\x86\x35\xc9\x39\xb2\xd9\x30\xbd\xca\x29\xc4\xf6\x1d\x62\x4f\x25\xa6\x27\xf3\x22\xbf\xce\x97\x49\xfe\x71\xbe\x6b\xf6\x9d\x48\x3e\x29\xb6\x5a\xae\xd1\x2a\x60\x51\x61\xba\x2f\xb3\x44\xc5\xa5\x4c\x8f\x6b\xd9\xa7\x0a\x87\x21\x47\xae\x52\xa5\x1e\xe1\x98\xaf\xfd\x85\x01\xf8\x94\xd5\x4d\x96\x75\xbd\x39\xe7\x41\x76\xee\x30\x24\x38\xe7\xe1\xa2\x05\x16\xe1\x68\x96\x3e\x55\x60\xf3\x4a\x30\xc0\x0b\x51\x0d\x9a\xa6\xa6\xba\xb2\x44\x0d\x54\xfe\x09\xd5\x89\x32\x33\x3d\x20\xa8\xcc\x6e\xa2\x1f\x6f\xf7\x45\x03\xd9\x01\x7b\x09\x95\x36\xb4\x0e\xf6\xf5\xb4\xad\x96\x2b\xe2\xad\xcd\xfe\x48\x90\xb2\x5f\x35\x25\xaf\x9f\xd7\xa7\x4f\xbf\x95\x7e\x2c\x79\x67\x71\x85\x78\x4f\xca\x77\x44\x5c\x84\x31\x25\x63\xe9\x82\xdb\xdb\x01\x39\x3a\x8a\x08\xd0\xf0\xf0\x37\x12\x25\x1c\xd3\x50\x5e\x11\xe6\x29\x93\xf0\x30\x52\xda\x0e\x90\xd2\xb0\x72\x25\x95\xf7\xb3\x65\x83\x83\x8c\xc9\xf7\xbc\x5b\xd2\x79\xb8\xeb\xb3\x65\xd5\x67\xd7\xcc\xba\xb8\xe6\x17\x5c\x03\x6f\xde\x94\x93\x3e\xa0\xac\x07\x29\xf1\x3f\x3a\x9d\x15\x3f\xa4\xf7\x3f\xa9\xc4\xf8\x3d\xf3\xa4\x8c\x56\x51\xb5\xc6\x94\xe8\xf1\xa8\x2d\x45\x60\xb5\x33\xb8\x93\xda\xba\xdd\x16\x7b\x9b\x0a\x88\xee\x34\x50\x34\xfb\x9a\x57\x1f\x98\x2f\xf1\x99\x6a\x51\xd1\x9e\x31\xaf\xea\x9c\x36\x78\xab\x05\x4c\xfd\x3e\xd1\xc4\xdb\xf3\x2b\x00\x2e\x9b\xf9\xae\x5a\x17\x06\x30\x4b\x4c\x88\x24\x11\x52\x67\x3f\x14\xab\x2d\xa9\x92\xbe\x2c\x9a\x96\x25\x12\x8c\xc6\x0a\x1e\x10\x85\x5a\x16\x31\x90\x5c\xf1\x79\x06\xb0\x28\xe7\xa4\x16\x46\x03\x4d\x3f\x8e\x6a\x2c\xd3\x80\x6e\xaa\xae\x7e\xd0\xa3\xa7\x8b\x1d\xb5\x45\x53\xcf\xc9\x54\xb0\x4b\x1f\x3f\xa3\xff\x13\x96\x90\x64\x07\x58\x8e\x11\xcf\x99\xa9\x64\xee\x64\x2d\x46\x5d\x8d\x88\xdc\x4d\xb5\x91\x70\x30\xd6\xb0\xbf\x46\x02\xdd\x4e\xa8\x96\xd5\x25\x6b\x9a\xd6\xf2\x1b\xfa\xe0\x93\xdb\x72\x8d\x49\xc8\x7b\x3d\x5e\x35\x84\x37\x26\x90\x23\x59\x34\xd7\x34\x34\xe6\xa5\x7d\xfe\xb1\xc4\x89\x8c\xf6\xfc\xf7\xac\x07\xfa\x90\xec\x44\x06\x6d\xd6\x85\x3b\xef\x80\xb2\x9b\x76\xa8\xc6\xf0\x40\x8e\x6a\x3b\x12\xb6\x17\xab\xcc\x69\x91\x18\x29\x7d\xf9\x19\xbb\x3f\xb2\xbc\x52\x89\x49\x9e\xb3\x92\xcd\x0d\xa6\x8b\x07\x71\x76\xe3\x67\x8b\x24\x50\x5a\x28\x74\x98\x9d\x37\x8c\xb5\x4f\xa5\x83\x3a\x09\x53\xe3\x02\x54\x17\xc9\xca\x5a\x55\xac\x6d\xa0\x2c\x51\x89\x68\xae\xa8\x45\xba\x04\xac\x4c\x55\x60\xe0\x78\x34\x9f\x7a\xb2\x9f\xd1\xc4\x40\x6d\x60\x2d\x13\x5f\xbc\x91\x75\x11\xb4\x99\xbc\x57\xf5\xd8\x87\xc4\xe0\xde\xc5\xf9\xc4\x53\x56\x1f\x02\x15\x54\x66\xb3\x6b\xaa\x28\x68\x4f\x94\xad\x78\x91\x62\x55\x6e\x59\xfa\xd8\x74\x20\x8b\x35\x9f\xb4\x6f\x54\x7e\x76\x04\xf2\x93\x30\x6c\xa2\x18\x62\x73\xdf\x24\x5d\xc3\x0b\x2e\xfb\xca\x2a\x9e\x57\x44\x0a\x28\x1f\x6f\x76\xa2\x1b\x23\x31\x97\xa7\x8f\x56\xd9\xcd\x51\x7c\xb2\x5a\xe5\x1d\x31\x71\x92\x15\xb4\x58\x31\xb3\x13\x2e\x4f\x3b\x9d\xe7\xb0\x66\xa0\xcf\x03\x95\x4b\xc9\xa6\x1d\xee\xc2\xdc\x43\xe1\x73\xda\x8a\x93\x9d\x20\x19\x85\x02\xd4\x44\x9b\x84\xb0\x4d\xc9\xe2\x73\xb6\x11\x35\x9a\xfc\x4a\xcf\xca\x84\xb6\xc3\x25\x2d\x68\x23\xd8\xa7\xac\xfd\x58\xe2\x94\xa1\xf4\xca\x00\x65\x1f\x32\x62\x85\xb0\x94\x9f\x4c\x6f\x49\x9c\x61\x0f\xd5\x10\xad\xed\x11\xfa\x69\xcb\xa2\xec\x99\x31\x76\x91\x11\x20\xea\x75\xc4\x2d\x3c\x12\x8f\x53\x56\x40\x86\x50\x2a\x72\xfb\x61\x71\x01\xe6\x1a\x3f\xce\x9f\xdd\xef\x7e\x7c\x32\x7f\xe6\x78\xeb\x62\x55\x2e\x3e\x0a\xfd\x55\xf5\xbc\xf9\x8c\x83\x2d\x14\x25\x74\xa6\xe6\x35\x76\xbf\x48\xe9\xa0\xdb\xe2\x5c\x45\xbc\x80\x8a\x11\xe2\x39\x37\x9a\x34\xea\x0c\xb3\x0c\xda\xda\x16\x58\x55\x20\x70\x4f\x90\xc7\x9c\xca\x24\x89\x0d\xc0\xd3\x24\x06\xb2\xae\x36\x55\x3f\xa2\x09\xe6\x30\xb9\xd2\x96\xea\xca\x0c\x49\xa8\x0b\xc3\xc4\x28\x89\x4f\x53\x35\xb4\xaf\x1a\x9d\xec\x73\x3a\x48\x7d\x9f\x12\x6d\xec\x68\x7f\xe2\xce\xd2\x78\x88\x51\xe7\xbc\x31\xd3\x21\x2a\xef\xb2\x5d\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\xbb\xbe\x6f\xf8\x5c\xb2\x66\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\x92\xe3\xb7\x75\x8f\x8e\xee\xf5\x32\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\xff\x46\x1b\x4e\x0d\x1d\x7f\x93\x50\x86\x1c\x33\xcf\xf0\x41\xa0\x7c\xe6\xfd\x90\xf0\x96\xfe\x76\x20\xac\xf2\x8e\xa5\x69\x81\xbc\x84\xac\x9f\xa3\x4b\x0c\x37\x94\x8b\x09\xc1\xf6\x5d\xe9\xef\x32\xf0\xe5\xc6\x74\x79\xf9\xea\xca\x0e\xb1\x97\xaf\xd2\x8f\xa5\x56\xfe\xaa\xef\xb7\xdd\x2f\x50\x68\x88\x76\x82\x55\x19\x17\xf9\x0d\x0b\x91\x92\xac\x3f\x90\x71\x55\xe6\x1b\xed\x25\x7f\x4a\x15\xc7\xb4\xbb\x6a\x22\x7f\xd2\xa6\x1b\x28\xca\x12\x88\x53\x3f\x4f\x89\xd1\xee\x50\x53\xea\x45\xc9\xaf\x23\xed\xde\xaf\x49\xbe\xde\xd2\xb9\x8b\xe5\x99\x00\x0c\x8a\xac\xb9\x1e\xbf\x52\x80\x80\x82\x77\x1b\x9a\xf9\x05\x8e\x9b\x54\xe0\xe1\xe3\xec\x51\xa0\xd8\x8c\x2b\x2b\x68\x69\xff\xa1\x0a\xf9\x9b\x85\xde\xb0\xde\xae\xfa\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\xf2\xcf\x77\x15\xdc\x34\x13\xe5\x84\x81\xf9\x42\xc6\xa6\x74\x88\xf1\xb2\x20\x78\xd6\x5c\x1d\x84\xa6\xa9\x27\x90\xaa\x5e\xac\x77\xc5\xc1\x9e\x74\xbb\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\x7a\x5d\x2e\x59\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\x1b\x3e\x2f\x75\x3b\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\x26\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\xf5\x3e\xbf\xe9\xa0\x29\x32\x0e\xc5\xca\x6b\x29\xce\xec\x87\xc4\x9c\x25\x7a\x15\x5e\x91\xd0\x8a\x33\x4c\xb0\xae\x9f\x37\x1b\x27\x8c\xec\x71\x3c\x06\x77\x51\xdd\xd3\xa7\x60\xbb\xd6\xbd\x89\x8f\xf6\x7c\x10\xe6\x23\x8a\x64\x07\x15\xe1\xee\x51\x77\x8a\x89\xb2\x47\x2c\x04\x52\x33\x2c\x92\x11\xff\x16\x5c\x93\x94\x4b\x98\x45\x97\x02\x5d\xc9\x8e\xea\x7f\x2c\x62\x7d\x45\x38\xe4\x63\xa2\x57\x1f\xf0\x5e\x46\xb3\x62\x2a\x7e\x49\xc7\xe1\x3f\xe9\x7a\x5a\x02\x8c\x69\xbb\xd0\xff\x5b\x20\x8f\xa4\xc8\xc5\x12\x03\x9a\xba\x55\xb5\x4d\x1b\xa8\x8d\x43\x14\x7a\xb2\x0d\x04\x69\xbe\xcc\x28\x71\x6c\x60\xfd\x79\x9b\xd7\xdd\x75\x09\x45\xfa\x26\xbd\xe6\x3b\xe3\x99\x36\xcd\x72\xb9\x5c\xec\x1f\x68\x59\x8e\x60\x68\x3a\xdc\x5d\x30\x77\xc1\x44\xc5\x4d\xcb\xcd\x0a\x94\xb5\xe8\x03\xb0\xea\x6b\xea\xac\x0f\x4c\x66\x23\x14\x40\x36\x8e\xee\xc9\xac\x37\x9f\xca\x10\x11\xd7\x7f\x74\xe4\x01\xd6\xf5\xae\x40\x2e\x58\xe2\x69\x92\x46\xa1\xad\xc1\x35\xef\xfc\x26\x1e\x3d\x17\x0d\xee\xce\x69\x8d\x94\xda\x0a\x2f\x0c\x5e\x2b\x83\x0a\xa1\xa5\xf1\x27\xa2\x44\xee\xd9\xb3\x39\x75\x71\xb1\x8a\x56\xe7\x15\x72\x52\xc9\x19\x2d\xd0\xe4\x3d\x37\xfd\x21\x91\x9b\xf6\xcc\x29\xe5\x4f\xe4\xe6\x5d\x24\x5a\x55\xb2\xf7\xa9\x69\xe2\xf9\xaa\xc4\x8a\x88\xde\xfd\xd6\x92\xbc\x0d\x9b\x52\xf4\xef\x0d\xc9\x1c\xd0\xad\xff\x89\xbe\x58\xc6\xaf\x93\xe8\x7a\x71\xa0\x26\x81\x18\x5d\xf5\xbc\xc2\x2e\x68\x61\x90\xd8\x73\xac\x29\x74\x4a\x07\x77\x80\xe6\xe6\x85\x7d\xd3\x7c\xe4\xcc\xf4\x78\x69\xcb\x97\xc2\x89\x1a\xed\x85\x7d\x27\x7c\xc8\xdf\xcc\xb0\x39\xb0\xf8\x8d\x6b\x8a\x60\x4b\x60\x69\x81\x27\xcc\xf2\x66\x01\xfc\x36\xef\x89\x2d\xd6\x72\x10\x13\x0e\x15\x16\xd5\x6c\x57\x85\xbb\xcf\xe6\x5a\xd8\xf6\x43\x50\xf1\x21\xf1\x26\x29\x66\x8d\x32\xa5\x16\x56\x16\xd3\xa9\x8c\xfc\xaf\xf4\xa9\x0a\x1d\xb0\x2f\x7c\xe8\x81\x1c\x37\xc9\x76\xfd\x07\xf3\x98\xe0\x67\xa2\x2a\xb0\x58\xff\xa5\xe4\xfd\x34\x3d\x95\x0f\x3b\xda\xef\x2a\x8c\xa9\x2a\x92\x64\x0b\xbc\x07\x06\x34\x3a\x11\xae\xd3\x6a\x28\xe5\x35\xf1\xed\x70\x67\x67\x9b\x0d\x29\xc4\x84\x6b\x97\x43\x90\x02\xf8\x6e\x22\x38\x96\xb2\x72\x19\xe7\xd5\x3a\xb8\xf8\xe2\xeb\x1c\x3e\x65\x13\xd8\xbe\x9c\xa7\xac\xee\x25\xc2\xa1\xd3\x9f\x0e\x74\x93\xd3\xc1\xf1\x53\x95\x3b\xc5\x12\xcd\x16\x9b\xe8\xe8\x2e\xfa\x82\xcd\x73\x70\x99\x3e\xb6\x23\xe3\x9b\x29\xbd\xec\x79\xa3\x9f\xc9\x6e\xcb\xb7\x27\xc1\x80\x7f\x41\x82\x1b\x70\x9c\x1f\x9c\xc7\x30\x74\x2b\xe6\xa4\x19\x01\x2f\xec\x90\x06\x2b\x97\x99\x2d\x9f\x09\xfb\x30\x5d\x42\xc5\x10\xc4\x6b\x58\xc0\x62\xd4\x38\x06\xc8\x94\xfb\x5c\x0c\x9f\x76\xc6\x74\xd5\xec\xd3\x75\x55\x7f\xec\x14\x9b\xcc\xc7\xc2\xc3\x29\x54\x52\x44\x84\x3b\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\xae\x4b\x16\x93\xc1\xd4\xec\xf2\x8e\x46\xd9\x34\x9d\x2a\x40\x3d\x13\xe1\x34\x28\x55\x14\x4a\x71\xee\x20\x74\x4a\x8e\xed\xca\x10\x6b\x2a\xb1\x4b\x3e\xeb\x00\x56\x68\x56\x6d\xc4\xec\xef\x17\xbb\x02\xc4\xfc\xb8\xd3\x04\xb2\x61\x54\x12\xf7\x3e\xbc\xf7\x78\xdb\xd8\x05\xa3\x71\x43\xcb\x3c\xb2\x4d\x5f\x30\x80\x2d\x3b\xea\xec\x90\x3e\xb4\x02\x53\xe1\xdf\x41\x26\x46\x04\xe1\xa5\x90\x4c\xbc\x63\x10\xcd\x3a\x12\xed\x4e\xf4\x32\xc2\xe5\x33\x66\x83\xfc\xb7\xb8\xbe\x73\x4a\x05\x3e\x90\x67\x03\x10\x3d\xb0\x47\x90\x93\x12\xb4\xb5\x75\x50\x7a\x1e\xf4\x7e\xb4\x56\xac\xdc\x9e\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\x6d\x5b\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\x18\x11\x72\x89\xee\x4c\xba\x46\x37\x64\x47\x7a\xfc\x59\x55\xcb\x15\x8d\xab\xda\xf0\xd5\x31\xc8\xc9\xee\x27\xfd\xe9\x94\x7f\x11\x43\x69\x96\x35\xeb\xae\xb8\x05\xb1\xe1\x72\x1b\xcc\x8f\x5d\xdf\x36\xf5\xf2\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\xbb\xf9\x83\x2e\x5d\xb2\x05\x2a\x2e\x55\xf2\xc0\x2e\x55\xad\x06\xc4\xc0\x6e\x5f\x3b\xb4\xc0\x4a\x95\x16\x7a\xd7\xac\x69\x95\xc4\x45\x9a\xcd\x46\xe6\x97\x36\x80\x8d\x40\xa2\xff\x30\x34\x28\x6b\x60\xae\x6c\x15\x3f\x54\xe1\xcc\x91\xb9\x9f\x1f\x9d\x36\x13\xf7\x22\x3d\x89\x0a\x5c\x0c\x8c\x9b\xd3\xba\x0f\xb6\x0d\xd6\x91\xa4\xae\x18\x04\x85\x71\x31\x4c\x24\xab\x9d\xbc\x8a\xc6\x94\x2c\x38\x09\xa0\x0e\x2b\x4f\x45\xa9\x27\x22\x31\x71\x9a\xb5\x29\xb2\x42\xc9\xca\x6d\x21\xad\x80\x7e\x79\xaf\x30\x15\x2e\x04\x5f\xaf\xcc\x61\x82\x1d\xac\x72\x65\x6c\x32\x7a\x65\x6b\x36\x82\x80\xb1\x29\x4e\x3c\x67\x1b\xc2\x4c\xf1\x36\xeb\x45\xc8\xd4\xc4\x42\x49\x18\x9b\x90\x24\x9d\x34\x98\x6d\x7f\x21\x53\x1b\xb5\xeb\x07\x6e\xcd\x7d\x01\x5f\xc3\x98\x8e\x81\x0e\x1a\x0b\x74\x23\x3a\x53\x6f\x54\x13\x82\x0c\xb6\x6e\xf5\xa7\x9e\xb7\x8d\xde\x8f\xa5\x96\x88\x39\xa1\x63\x4e\x5f\x46\x8b\x99\x3b\x01\x7b\x44\xb1\xb7\x81\x72\xe5\xbf\xa6\x45\x4e\x9c\xa0\x6f\x3e\x12\x31\x8d\x8b\x20\xfd\x50\x21\xc7\x61\xec\xac\xa1\xfc\xe5\xd8\xb3\x87\xe1\xe9\x43\xef\x99\x0f\xb2\x98\x80\xb3\x68\xad\xce\xe6\x49\x34\x43\xb0\xf5\x66\xc3\x90\x42\x38\x89\x32\x02\x35\xec\x71\x1c\x80\x24\xac\x9a\x81\xa0\xbe\xe5\x0f\xfd\x1d\x4e\x4b\x54\x7f\xb0\x5c\x88\x81\xef\xea\x80\x81\x0a\x39\x64\x82\x0a\x37\xc8\x0b\x3a\x4a\xc2\xb0\xf1\x58\x2a\xbc\xe2\xec\x4e\xad\x7a\xf5\xba\xde\x8a\xbc\xd4\x44\xac\x01\x00\x0a\xc2\x3b\x87\x08\xfc\xf2\x5a\x05\xab\x45\x4d\x31\xd4\x64\x11\x73\x40\x54\x67\x2c\x73\x25\xa6\x19\xe9\xf1\xc5\x6b\xda\x33\x5c\x83\x56\xe9\xcf\x39\x49\xd2\xd2\x85\xbd\xd3\x68\x30\xb1\x0d\x79\xae\x93\xf9\xa5\xb8\x29\x50\x51\x12\x4b\xdc\x0d\x6a\x34\x20\x19\x4c\x9c\x2f\x38\x2e\xbb\x40\xcb\x23\xad\xa1\x27\xc3\xdd\xca\x0d\xf5\x1b\xc2\xac\xd3\x35\xf2\xd2\xda\xde\x30\xff\x0f\x6c\xb1\x72\xc1\xd0\x1e\x1c\x7c\x60\x04\x46\x90\xd0\x74\xa4\xbc\x84\x5b\xc7\x3f\xac\xc3\xca\x41\xc2\xa9\x0c\xd9\xc8\xe4\x64\x7a\xa6\x32\x59\x6c\x8a\xb3\x6c\xad\x9e\x78\xcc\x77\xf1\x19\x26\x7c\x7f\x0e\xbf\x85\xcb\x84\xa3\x0a\x48\xf9\x62\xb2\x59\x47\xd1\xd2\xf4\x80\xdf\xa4\xb2\x11\x8a\x21\x03\xb7\x22\xa7\x0b\xa5\x88\xc0\x46\x98\x6a\xd9\x97\x6b\x36\xee\xd5\xd6\xfd\xf5\xa6\x0e\x3d\xba\xf1\x57\xa0\xe0\x24\x5a\x7a\x11\x57\x50\x11\xaa\xe9\xac\x32\x82\xa0\xe5\x86\x4b\x7e\x39\xca\xdb\x7e\x7d\x72\xfc\xf6\xed\xf9\x95\xdf\xa6\x79\x1d\xd4\x05\x09\x13\xdf\x38\x73\xb8\x51\xbf\xcc\x28\xce\x4d\x60\x0c\xe1\xcd\xf2\xb4\xc4\x21\xb8\x90\x4d\x59\xed\xf4\xb9\x6c\xc0\x7b\x1a\xee\x8b\xf1\xf2\xa8\xff\xc5\xa1\xf9\x4b\xde\xb3\x7c\xf3\x21\x31\x65\xf7\x39\xff\x4d\xc2\xfb\x82\xe0\x8e\x06\x4b\xcf\x5f\xe5\x78\xd3\x7b\xea\x40\x53\x8c\xee\x0f\xc0\xa4\x77\x39\x8e\x46\x84\xfb\x06\x7b\xc5\x75\x8a\xcb\xec\x23\x56\x87\x36\x2d\x16\x0c\x23\x77\x57\x57\xbf\xed\x20\xa0\xf1\xc1\x88\x98\x07\x5b\x59\xce\xab\xb5\x6c\x28\x7f\x71\x3f\x24\x9d\xbf\x06\xe6\xe1\x41\xe3\xf4\xeb\xc7\x6e\xcb\x46\xaa\xb4\x37\x74\x4f\xef\xed\xaa\x94\xb5\x6b\x6c\xa2\x75\xef\x19\x1d\x63\xf8\x8a\x9b\xa6\x8f\x20\x9e\x8d\xaa\x63\x17\xb1\x85\xa8\xe2\x9c\xb1\x0f\xe8\x56\xd3\x79\xb5\xb0\xc8\x1b\xe9\xff\x04\xf1\x7f\xa0\x4d\xf6\x47\xf3\xe3\x78\xa8\xa7\x64\xc2\x11\xd6\xee\xa7\x7c\xbd\x8b\x95\x25\xdc\x3a\x97\xe9\x1e\x25\x28\xaa\x1a\xe3\xa1\x2f\x1b\xf2\xcc\x28\x9d\xf3\x60\x99\x8e\xd4\x09\xf4\x05\x5e\x27\xf9\xba\x17\x5d\x71\x1a\xa0\x9f\x79\x01\x5a\x2d\xc3\x29\xd6\x3b\x3d\xc7\x72\xba\x45\x5b\xc1\xb2\x5e\xd2\xd9\x73\x31\x0d\xbc\x16\x5d\xa2\x6f\xf7\x92\x08\x95\xc6\x34\x5b\x56\x3d\x9d\x91\xd9\x7f\x0a\x76\xd8\x09\xad\x73\xda\x7a\xe0\xf3\x28\x5f\x96\x32\x2a\xca\xbb\xb4\xc0\x42\xc7\xc5\xb2\xa1\x92\x2c\x7f\xe8\xef\x89\x52\x0a\x68\x1e\x97\x7c\x5d\xd1\x64\x55\x5d\xf1\x4a\x7d\x4d\x7f\x68\x17\x16\x99\x3d\xa6\x2b\x11\x48\x51\x89\x2a\x64\xe4\xd4\xec\xea\x51\xbb\x38\x9d\x15\x35\x88\x0b\xe6\x45\x4d\xb7\x55\xe5\x0d\xb4\x21\x21\x7d\x8e\x04\x75\x74\xa4\x9e\xd0\x2c\x7c\x12\xf9\x45\x5c\x1f\x5f\x5b\xca\x43\x3e\xb3\x3d\x4a\xf6\x7c\x75\x2b\x5a\xe4\xbf\xea\x27\x94\xc8\xcb\xfc\x77\x49\xbd\x74\x3f\x30\xed\x9d\x12\x42\x77\x40\x85\x3c\xbc\x87\xfd\x7a\x4d\xf2\xb0\x86\xdb\x15\xca\x6c\x8a\x94\xf1\xf5\x40\xaa\x76\x68\x91\xb9\x43\xa2\x2e\x9c\xe6\xc9\xe6\x7c\x38\xc5\x95\x2d\xcc\x3d\xcc\x04\x4c\xdb\x91\xc7\xeb\x12\x26\x9c\x73\x5a\x57\xf7\x9e\x09\xb6\x6d\x51\x5a\xad\x3a\x79\x67\xea\x45\x1a\xcc\x9e\x42\xcc\xe0\x75\x92\xd9\x61\x97\x6d\x79\xf8\x20\xa9\x8a\x9b\x69\xa8\x88\x6f\xab\xec\x94\x07\x9e\x2c\x4f\x5e\xbe\xbe\x82\x1f\x0b\xcd\x35\xfc\x0e\xcc\x59\x87\x2d\x7c\x67\xae\x4e\x66\xe9\x55\xd7\xc9\x56\x5f\x57\x40\x3c\xaf\x5e\xbb\xa3\xb7\xe9\x20\x7e\x24\x47\x53\xad\x2c\x64\x56\xbe\x36\xbb\x58\x04\x8c\x99\x18\xbf\x96\x44\x2d\xc8\x89\x38\xf3\xc6\x77\x30\x66\xe4\x94\x87\x2e\x54\x89\xb0\x08\xe3\x3b\xca\x30\xae\x1d\xe7\x81\x4f\x0c\x1b\xf3\xc7\x2c\x07\x2e\xb9\xc1\xbc\x85\x26\x78\xbc\x29\x15\xbc\xab\x6e\x6f\x32\xd6\x0d\x63\x23\xdd\xde\xf8\x84\x40\xe2\xa0\x8c\x2a\x02\x76\xd6\x12\x17\x98\xa7\xff\xf8\xdf\xff\xe7\xf1\x09\x77\xfc\xa4\x6f\xd7\xf4\xa5\x02\x1d\xc3\x0b\x22\xa5\x82\xf4\xfc\x5f\x49\x30\xdf\xab\x69\xc4\x2f\xf2\x95\xd8\x6f\x2c\x36\xca\xef\x54\xa1\x8b\x8f\x44\x7f\xf1\x9a\x4b\xd4\xc3\x98\x17\x5b\xc2\xa7\x22\x9d\x78\x3a\x11\x85\x2c\xf2\xb7\x5d\xb5\xf8\x98\xc9\x61\xfe\x69\xfa\x67\xfe\x95\xc2\xb9\x34\x11\xb2\x61\xce\xe3\xd8\x08\xc8\x6b\xc0\x8b\x42\x13\x5c\xb0\x56\x35\x84\xf7\x6c\x27\x8f\xb7\xa9\x1b\xb3\xeb\x33\x40\xf6\x9b\x49\xb6\x3b\xb6\x06\xe2\x29\xb5\xd6\x2e\x28\x05\x4e\x48\x9c\xc8\x42\x45\x50\x83\xbb\xd8\x8b\xea\x40\xf3\xd4\x5d\x71\x22\x9b\xdc\x8d\x91\xe5\x55\x53\x6c\xa1\x3c\xcf\x69\xc8\x2a\x19\x27\x8e\x1f\x2a\x1f\xec\xdb\x12\xf2\x3e\xfd\x49\x88\xcd\xb2\x01\x99\xde\x12\xb2\xf3\x64\x9f\xe3\x56\x0c\xe9\x76\x47\xc8\x57\x9d\xf9\x52\x2b\x82\xa0\xff\x5c\x3f\x13\x4a\xe7\xdf\x57\xf4\x67\xe4\xe6\xcc\x4e\xd1\x63\x67\xe8\x75\x3e\x2f\x91\xfc\x06\x1f\xb4\x60\x88\xd3\xf7\x34\x0b\xd0\x58\xb9\x1f\x09\xa3\xa1\xea\x85\xf8\xf0\x95\xa8\x97\x81\xdc\x08\xca\x67\x82\xfb\x96\x36\x67\x93\xdb\x77\xf9\x5e\x7e\x12\x8a\xd4\x5b\xfa\x95\x7c\x49\x32\x0c\xb8\x05\x14\xf6\xdb\x0e\x1e\xb2\x9c\xae\x80\x0b\xfb\x4e\xac\x03\xb3\x71\x47\x2c\x67\xe0\xac\x9d\x2e\x06\xf9\xd7\x72\x22\x7d\xc1\xe7\x51\x4b\xcb\xc1\x8b\x53\xb3\x41\x73\xe9\x1b\x5a\x46\x72\x29\x71\x26\x5f\x2e\xa7\x10\xa3\xce\x53\xec\x81\x9a\x66\x06\xf5\xe7\xfc\xd7\xa5\x12\x4d\x22\xf5\x2d\xff\x75\xc6\xe9\x12\xcb\x80\x8f\xa2\xe2\x1d\xee\x93\x67\xc3\xb9\x08\xb2\x6a\x16\x28\xe6\xb8\xfd\xa1\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\xf8\x51\x47\xb0\xe7\x94\x10\x92\x56\x54\x31\x0b\xce\x83\x9a\x21\x4b\x4f\xc3\xd3\x36\xc7\x0e\x4c\x38\x4d\xe8\xe7\xb8\x9f\x01\x90\x74\x33\x9f\x00\x65\xa5\x8e\x87\xa3\x81\x0f\x81\x54\xef\xe8\x78\xce\x70\xf6\xfc\xfc\xd0\xd4\x0e\x27\x48\x32\x33\x92\x9c\x16\xa5\x73\xbf\x00\x10\x24\x08\x8e\x2b\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\x84\x9d\x4c\x04\x3f\x41\x84\x13\x02\xd7\x13\x25\x6e\xa5\xa8\x21\xcc\xc1\x9a\x47\x74\xa3\x25\x6f\x99\x5e\x0f\xc1\x9e\xf8\x87\xab\x3e\x50\x4e\xa5\x2d\xc8\x58\xe3\x9c\x19\x3b\xe9\x38\xfe\x79\x0c\xd3\x10\xf0\xd0\x29\xd0\x4e\xe3\x8b\x90\x58\xcd\xfb\xb9\xeb\x6a\xa1\x1a\x9e\xa9\x42\x32\xcb\x45\x36\xbf\xd1\x32\x32\xcf\x70\x7e\x3c\x50\x64\xc3\xd6\x25\x0d\xc7\x75\xd0\x22\x67\x2e\x61\xa2\x48\xa7\xce\xd3\xec\xbd\x3c\xce\x99\xf1\x66\x04\xeb\x13\xe6\x4d\xdd\x24\x08\x53\x29\x40\xce\xf1\x31\x05\x22\x7a\x4f\xd5\x5c\xf0\x2e\x20\x6e\x02\x76\x53\x3a\xd9\x30\x9b\xd4\xb8\x12\x6f\x60\x60\xd3\x7e\x41\x39\xb6\x56\x65\xbe\x2a\x6a\xee\xb3\x06\x16\xa4\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\xdf\x20\xbc\xff\xee\x43\x77\xef\xd9\xfd\xf7\xdf\x7f\xc0\xd5\xc1\xa8\x70\x76\xcd\x9a\xb3\x71\x0d\x28\x68\xd0\xdb\xb6\xfc\x54\x35\xbb\x4e\x64\x34\x7c\x7a\xfe\xf0\x59\xa6\xe2\x73\x1f\x2f\x71\xe7\xc4\x3d\x58\xe1\x85\xcb\x8a\x57\x78\xbd\xdb\x64\x3a\xc6\x4e\x38\x80\xfd\x72\xc5\x0d\x03\x59\xce\x4d\xfe\xea\x7e\xf3\x70\xab\x82\x07\x4b\x9d\xb7\x30\x20\xff\x22\xbf\x9e\x61\x20\x3c\xf4\x5f\x5d\x4b\x4d\x70\xe9\x70\x25\x7e\xe8\x2c\x33\xbb\xeb\x8f\x9b\xb2\x9f\xc5\x5c\xc9\x62\xa2\xa0\xcb\x71\x96\xf6\xc2\x83\xe8\xbc\xc1\x46\x37\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\x0a\x6a\xe8\xf0\x79\xa8\x6a\xa3\x29\xd0\x5f\xd9\xc4\xb6\xd1\x88\x4e\x17\xf8\xb0\x64\xd1\x08\xa9\x01\xbe\xa3\xcd\x48\x7b\xa6\x89\xe6\x6e\x45\x47\x02\x3a\xfc\x80\x63\x9b\x8b\x15\x5f\xe3\x70\x52\x04\x5a\xd5\x99\xd9\xf1\xeb\xa9\x81\x98\x25\xdb\x9e\xc9\x88\x88\x8c\xd8\xab\x54\x15\xb2\x07\x3d\xe0\xa2\x5b\x3e\xf3\xa8\x93\x3b\x5e\x9e\xc8\x70\xb5\x96\x05\x34\x1e\x3f\xd3\x1f\x87\xd7\x81\x3d\x8d\xf5\x8f\x5b\xa1\xee\xd3\x1f\x4b\x92\x7d\xd1\x16\x9d\xdf\xb7\xe3\xfc\x45\xb3\x6e\xfc\xbe\x8e\x5f\x43\x00\x51\x90\xde\x2f\x06\xb2\x99\x64\x7b\xda\xd6\xd5\xcb\x09\x83\x9d\x47\x20\x27\x06\x23\x19\x03\x6b\xb1\x38\xd3\x39\x96\x48\x07\xe1\x5e\x62\x91\x0b\xc6\xb5\xa8\xcd\x15\x40\x9d\x86\x76\x12\x6c\x4a\x15\x2f\x52\x46\xa8\x7a\x67\x99\x3d\xb4\x59\xe0\xcb\xe7\x40\x1b\xaf\x35\x1f\x56\xbe\x4f\x37\xed\xcf\xc4\xd2\xd3\x3b\x6e\xf9\xe4\x10\x14\xc8\xe0\xe1\x61\x48\x33\x59\x7d\x9b\x13\x5d\x8a\x85\x8b\x1e\x34\x38\x45\x0d\x7b\xba\x69\x38\xc3\x82\x01\xf7\xfb\x26\x75\x47\x34\xc4\x22\xe3\x5d\x22\x4f\xb9\xb0\xf9\xdb\x61\x6d\x68\xf9\xd9\xa0\x5a\xf8\x4c\x3f\x85\x2d\xdd\xb0\x41\x6d\xe1\x69\xaa\x5f\x9a\x1f\x9d\x1e\x87\xa7\x46\x1b\x79\xc3\xaa\xb0\xdd\x1a\x1b\x04\xae\x2e\xe5\xc7\xb5\x5c\xba\x19\x10\xc2\x39\xb1\x44\xe3\xdb\x0a\xb8\xbc\x04\x7b\x52\x5b\x0a\xce\x9d\x97\x8b\x1c\x66\xb3\x70\xb7\xa2\xb1\xae\x38\xbc\x94\x1f\x3d\x81\x70\x70\x0a\xab\x9f\xed\x90\xc3\x10\x5d\xcc\xd3\x5c\xf5\xa6\x0f\x19\x60\x6a\x5e\xf6\x7b\x9e\x57\xb1\x6d\x60\xe4\x8a\x49\x6d\xf7\x43\xb8\x53\x13\x7b\x7b\x82\x36\x9e\xf0\x76\x5d\x28\xab\xfb\x17\xfc\x10\x86\xa7\xa8\x1c\x08\xf3\x13\x64\x80\xd5\x6e\x93\xca\xe4\x08\xd5\xf7\xa6\xa4\x46\xb1\xc5\x17\x76\xbe\x14\xc6\xfb\x23\x3b\xc7\x19\x67\xc5\x37\x51\x38\xdb\x2e\x68\xfa\xf7\x2e\x5d\xeb\x47\x4d\xba\x93\x5b\x33\x92\xf6\x8f\x55\x4f\xa5\xff\xd3\x07\xa3\x51\x3a\x0a\x64\x21\x2f\x05\x7d\xfa\x9f\x11\xd4\xf0\x58\xed\xf3\x44\xfb\x0b\x82\x2a\xcd\xae\xb1\xd0\x7c\xdd\x75\x89\x54\x04\x35\xce\x75\x41\x32\xf4\x62\x2e\x9c\x49\xea\x35\x1d\xf1\x99\x11\x28\x36\xdd\xfd\xd4\x2c\x42\x0d\x44\xdc\xd6\xb7\xc4\x54\xe3\x72\xae\x46\xd5\xba\x95\xaf\x30\xf1\xc2\x97\x2a\x38\x98\x15\xad\x0f\xbb\x95\xa4\x5f\xee\xfe\x61\xba\x2e\x85\x2d\x76\xde\xd4\x9c\xb1\x48\x85\xa0\xfb\x0a\xf8\x99\xf5\xbd\xea\x32\x98\x23\x89\x39\xf3\x95\xda\x18\xad\xab\x45\x9f\xba\x74\x6a\x4e\x0d\xce\x61\x94\xb2\x94\xd8\x37\xce\xba\x9c\x36\xcb\x6e\x85\x60\x1a\x0c\x70\x4d\x5c\x6a\xd3\x40\x8a\x73\x2c\x22\xaf\x33\xa8\xf1\x31\xd4\x30\xc2\x06\xab\x5b\x0d\xb9\x0c\xf1\x78\x80\x61\x51\x8c\x0d\x86\x1b\x54\x0b\x3d\xf7\xa1\x9a\x1f\xf4\xb7\xd7\x6d\x5c\x40\x1c\x41\x78\xd1\xdb\xd0\x3b\xb7\x7c\x4d\x37\x72\xb0\xc9\xa9\xa0\x6b\xa1\x0a\x8e\xe6\xa1\x91\xf8\x0c\xb0\xf3\xa9\xfa\x88\x68\x86\x6c\x05\x04\x34\xb5\xba\x41\xb4\xbb\x5a\x17\x21\x4a\x41\x0b\xc8\x64\xfe\xeb\x78\xbc\x4a\xcc\x87\xc6\x1a\xb2\xad\x5a\xb6\xed\x88\x9e\x1e\xfe\xcb\xfd\xe2\x91\x2c\x64\xd8\xf8\x8c\xee\x59\x38\x51\xd0\x19\x6e\x91\x3c\xe6\xaa\x83\xb7\x35\x93\x0d\x6f\x16\x0c\x44\xdf\xb3\x5f\x93\x40\x53\x17\xec\x67\xfe\x0c\x1e\x64\x4f\x28\x0c\x82\xdc\x69\xa5\xc1\x10\xa0\xf0\xaa\x98\xfb\x5d\xd4\x76\x93\xd1\xf2\xc8\xf4\x44\x47\x5b\x0a\x2f\x16\xfc\x1a\x76\xc1\x8e\x32\xc3\xaa\xdd\xa1\x20\x1e\x11\xed\xed\x73\xde\x47\xc4\x87\x58\xf8\x74\xa0\x9d\x24\x12\x50\xbf\x11\xbd\xcb\x56\x01\x21\xaa\x7e\xc0\xe6\x27\xb1\x63\x62\x1d\x1c\x5d\xc3\x8c\x89\xeb\xbe\x30\xd7\x0f\xfa\x94\x46\xcc\xfa\xc0\xf4\xa1\x05\xe0\x7a\x14\x0f\xb2\x14\xa3\x69\xfe\x1b\x66\xb8\x78\x29\x5a\x55\x26\x53\xaf\x35\xa2\x72\x4d\xf1\x71\x44\x8e\x9c\x9b\xe8\x83\x1b\xfa\xf7\x78\xb3\x79\x5c\x14\x0f\x26\x46\x1d\x88\x46\x6e\xd8\x03\xcb\x2f\xd5\x42\x0c\x58\x65\x50\x53\x20\x67\x4e\xe3\x8e\x01\xa2\x79\xfa\x85\xa5\x80\x92\xaf\xc3\xd2\xc2\xe3\x4d\x48\xd7\xcf\x5d\xc7\x5b\x40\x43\x0c\xcf\x5b\x93\x30\xab\x10\x77\xc2\x70\x24\x03\x09\x3d\xc8\x1a\x78\x49\xdf\xda\x3d\x77\x6d\xa2\x12\x1d\xb1\xef\xcd\x01\x94\x48\xd0\xbc\x83\x08\x09\x24\x63\x8f\x54\x27\x1d\x4f\x00\x4e\xc9\xc6\xbe\xed\x7f\xa6\x7c\x3c\xd5\xf8\x14\x09\xdc\x25\x21\x4f\x05\x68\xb5\xb4\x99\xd0\x37\xbc\x54\xe4\xcb\x67\x05\x41\x5f\x54\xce\x08\x7e\x7b\xb0\x55\xd3\x7c\x94\xc0\x37\x73\x7c\xfa\x9c\x25\x07\x7c\x94\x4c\x0e\x6d\xf8\x2a\xce\x25\xd1\xb2\x5a\x84\x81\x60\x9f\x73\xc2\x44\x17\x0b\x9e\xe3\x36\xfb\x5d\x74\x92\xa7\xf8\x95\xfe\x4f\x26\x0c\x07\xa2\x2e\x26\xe7\x16\xe8\x88\xad\x1f\x7c\xae\x3a\x07\x04\x4d\xa9\x2f\xc3\xb8\x2d\xb5\x9e\x67\x76\xfe\x65\x0e\x20\x53\x8e\x1f\xb1\x37\xea\xcc\xd7\xee\xfc\xd9\xf8\x76\x48\x3f\xcf\xcd\x25\x6e\x0c\xe6\xee\x5d\xbd\x1b\x5c\x7c\x39\xc5\xb6\x6b\xb5\x58\xbd\xc3\x15\x8e\xef\x91\x1a\x6c\x58\xa1\xff\x1d\xd1\x9d\x8b\xa5\xa8\x27\x6e\x68\x01\x60\x09\xd6\x05\xdd\x43\x10\x61\x38\xc3\xb2\x64\xd6\xc9\x2d\xbb\x3a\xf5\x89\x6b\x88\x68\x0a\x72\x77\x7a\xef\x60\x8e\x30\xb1\xf5\x41\x07\xee\x82\xd0\x88\x6f\x89\x75\x15\x79\xc1\xf4\x0e\xfc\xa1\x80\xe9\xe0\xe2\x7a\x00\x68\x48\x39\x27\xfe\x21\xa6\x8a\x52\x2c\x8f\xfc\x09\xfb\x40\x83\x25\xe6\x45\x7c\x65\xe7\x7a\xc4\xec\xa9\x6c\x7b\x78\xf2\x8d\xd1\xce\x9e\x05\xb4\x80\xb2\x6f\xa9\x99\xc7\x90\x95\x24\xfa\x23\x06\x21\xeb\xaf\xba\x0e\xf0\x01\x8b\x4b\xb6\xa0\xfc\x54\x15\x3b\xa2\x3e\x9e\x8b\xdb\xea\xfd\x2e\xae\x97\x56\x3c\xee\xcb\x0f\xd6\x3d\x98\x4f\x08\x11\x2e\x34\x30\x5c\x39\xaf\xbd\x87\x72\x37\xd5\x32\x33\x21\xa7\xed\x50\x1c\xc0\xd3\x38\xf5\xae\x7a\x21\xab\x12\x3e\x04\x9b\x2f\x31\xcb\x36\x31\xe9\x87\x74\x34\x1f\x31\xb6\xc4\xfd\xd3\x49\x55\x77\x5a\x9d\x8d\x08\x61\x80\xa5\x41\x7d\x40\x58\x60\x1b\x66\xb3\xcf\xc3\xe7\x90\x72\x1a\xb6\xd8\xce\x00\x21\x49\x48\xd8\x02\x44\x51\x66\x93\x00\x3a\x2a\x1c\x29\x0f\x3e\x72\x5a\x55\x71\x7a\x0b\xcc\x08\x3d\x0f\x6c\x22\xcc\x0e\xfa\x0a\x13\x01\x41\xc0\xeb\x51\xd3\xde\x17\xef\xc8\x9b\x40\x39\x0b\x0f\x96\x3b\xd9\xda\xac\x2e\xca\x2d\xc7\xb4\x64\xc5\xe6\xb5\xec\xb6\xc2\xf3\xef\x68\xf5\xbb\xdb\x5a\x15\xcb\xad\xa9\x66\xcd\x86\x51\x9d\xdb\xb1\x68\x39\x10\xf5\x1d\xad\x7d\x6f\xad\x85\x5b\xd6\xc7\xb2\xdc\x06\x4d\xc4\xdd\x0f\x7c\x3a\xc0\x3c\x63\xd3\xac\x09\x8e\xa6\x6e\x8b\xe6\xe7\x7c\x80\x89\x47\x31\x59\xbc\x95\x80\xee\x66\x77\xb8\x78\x8d\x17\x88\xa9\x40\x11\x3d\x1d\x6a\x50\x07\xc3\x5a\x9e\x2c\xe0\xdc\xb0\xaa\x35\x96\x3c\x51\x95\x58\xeb\x0e\xac\x8a\xbc\xe3\xb3\xeb\x9a\x15\x68\x0f\x77\x2f\x36\xc8\x4c\x27\x0c\x31\x1d\x28\x5b\xbb\x87\xc4\x9a\x8a\x8f\x03\x8f\xe7\x24\x48\x3e\x5c\x60\xe0\x59\x10\xd5\x15\x7b\x16\x04\x1d\x14\x2a\x3a\x54\xcf\xc9\x64\x1d\x4a\x79\x41\x2d\x72\xcd\x2f\x71\xff\xe2\x0b\x55\xbd\xf7\x07\x43\x9d\x85\xc4\xc0\xa0\x15\x7c\xdf\x33\x8d\x32\xa6\x6f\x05\x0c\x9d\xcf\x35\x77\xbf\x6a\x82\xa0\x32\xe2\x20\x81\xdd\x2b\xec\xfa\x2c\xc6\xce\x5e\x04\x1a\xc5\xa4\x8a\x37\x03\xb9\xc7\x76\x23\x13\x7e\x70\x48\xde\xec\xa8\xcf\xeb\xea\x23\xd4\x67\x44\xca\x12\x76\xf8\xfc\xf2\x0a\x3a\x33\x5a\x32\xb4\xf3\x2e\x99\x53\xa7\x7f\x5d\x95\x35\x22\x61\x72\xf4\x5f\x65\x5d\x8b\x05\xfb\x35\x55\xb5\x86\x09\xdc\x97\x66\x6d\x5e\x17\x6b\x61\x74\xa1\xe7\x9b\xc9\x1b\xa2\x3b\x4b\x11\xe1\x97\xd7\x66\xb7\x2d\x17\x24\x45\xcf\xf8\xa2\xac\xad\xf1\x6c\x82\x0b\xe6\x7e\x6b\x94\x78\x37\x12\x58\xf4\xb0\x8a\x2d\x40\x8b\xa2\x24\xd4\x27\xeb\xae\x3d\x42\xcf\x10\x74\x4a\x6e\x36\x0c\xdf\x26\x35\x83\x23\x8b\x91\x73\xc5\x0c\x3e\x55\xeb\x93\xdb\x7c\x47\x0e\xf6\x21\x0c\xd3\x28\x4d\xdf\x21\x3c\x0f\xab\x9a\x79\x4d\x84\xa9\x1f\x26\x40\xba\x6d\x23\x26\xa0\xef\xf4\x73\x0c\x24\xe7\x2b\xee\xc9\x2b\xf9\x1a\x83\x6c\x35\xe0\x92\x0b\xbd\x34\x06\x99\x37\x05\x9f\x98\x9e\xd3\x9f\xb1\xd8\xed\x62\xf4\x9b\xec\x0d\xe2\xdc\xb2\xd3\xbe\xdc\x4b\x73\x06\xa1\xbb\x5c\x5f\x4b\x00\x06\xd6\x35\xe1\x80\x28\xea\x41\x36\x76\x96\xf0\xa2\x25\x7b\xdb\x71\x05\xea\x82\x07\xef\x12\xc4\x56\x0b\x75\x7f\xea\xae\x1b\xfa\x5f\x0e\xfb\x84\x7b\x0e\xeb\xd7\x6b\x91\x5a\x30\x0d\x38\x0e\x4b\x20\xbc\x23\xde\x8c\xf8\x24\x69\x37\x8f\xb6\x65\x6d\x25\xf8\x1d\x3b\x4e\x11\x51\x23\xa6\x89\x81\x88\xd4\x2b\x36\x5c\x81\xdd\xb1\x05\x04\x07\xb1\x01\x61\xe3\x1e\xa9\x9d\x38\x23\x48\x2c\xc4\x47\x10\xfe\x5e\x14\x40\xe6\x91\x35\xdc\x99\x14\xdc\x9f\x2e\x5e\x45\xeb\x21\xe0\x28\xd1\xe3\x09\xe8\xa8\x86\xb4\x13\xdd\x2f\x73\x0a\x53\xfd\x06\x2a\x56\xc6\x15\x1b\x59\x06\xab\x9b\x37\x76\x12\xa7\x44\xee\x6e\xcb\x65\xde\x16\x16\xe9\x45\x39\x0d\x7b\xbb\x80\xa3\x84\x8e\xbd\xf9\x9a\x8e\xeb\x5a\x05\x71\x46\x02\xf9\xc8\x86\x54\x34\xdf\x2c\x15\x99\x86\x82\xe5\xcb\x42\xd8\x18\xfb\x16\x12\x73\xd9\x6d\x99\xdf\x08\xf3\xb2\x76\x30\xe4\x87\x7f\xba\x3c\x7f\x7b\x94\x7e\x7e\xbc\xdf\xef\x1f\x73\xf1\xc7\xbb\x76\xcd\x5e\x78\x05\x47\x92\xf9\x1f\x67\x6f\x8e\xd2\xb2\x5f\x3c\x9a\xd1\xd1\xbe\x8d\x15\x62\x6a\x4d\x8a\xcb\x0a\xa6\x2e\x16\x36\xff\x38\x7b\xd2\x15\xa3\x81\xd9\xc3\x80\x65\xe1\x96\xca\xb3\x67\xe6\x22\x3a\x99\x62\x36\x12\x6c\x48\x8b\xb6\x84\xb5\x05\x3e\x82\x0c\xda\x9d\x3e\x4e\x45\x10\x18\x82\x54\xd4\x8e\x76\xe3\xf5\x42\x03\xc3\x0f\x40\xec\x72\xf1\x04\xd7\x8a\x2e\x13\x13\xe7\xb6\x15\x0e\x89\xd7\xad\x9a\xdd\xba\x88\x39\x26\xe1\x4c\x27\xa2\x2c\x7e\x1a\x16\x86\x5d\x24\x22\x3b\x3f\x4d\xff\xc4\xba\x25\x9e\x28\xa1\x2d\xce\x32\xda\x02\xf0\x6c\x58\x18\x31\x0a\x03\x51\x9a\x06\x20\xb1\x17\x4d\x94\xf7\x79\x4e\x9c\x1f\x55\xa2\x27\x3e\x36\xd3\xe8\xd3\x8d\x3b\x01\x82\xd6\xa4\xba\x71\x91\x58\xb3\x37\x9d\x6d\x78\x11\xf3\xc8\x23\x35\x9c\x34\xb5\xd7\x14\x1e\x52\x31\x0a\x9d\x44\x51\xc0\x1f\x01\xca\x5c\x24\xb4\x52\xf5\x6b\x17\x8c\x29\xd5\xa0\x9c\xe5\x30\x23\x88\xba\x50\xf6\xf0\x77\x9f\x5a\x8b\x72\x06\x77\xb3\xe6\x57\x8f\xf1\x37\xdd\xe1\x44\x32\x11\x17\xa1\x88\x7b\x80\x75\xc4\x52\xda\x7e\xb8\x8b\x0d\x05\x34\xe5\x4d\x5e\x94\x51\xde\x34\xda\xae\x15\x70\xd0\xc6\x68\x97\x54\x79\x7a\x7c\x4a\xf0\x2d\x1c\x12\x08\xc4\x28\x28\xd3\x51\x5a\xe0\x19\xf8\x59\x9e\xba\xb4\x58\xbc\xb2\x55\x0a\xbe\x1b\x2f\x51\x46\x88\xac\xa3\x90\xa3\xb2\xa0\x16\x9b\x10\x30\x08\xdc\x83\xd9\x2d\xc1\x0c\xf1\x47\xce\xd1\xa1\xd0\x2d\xb5\x9a\xa3\x9b\x38\xe4\x0d\x32\x87\x2f\x61\x0c\x57\x36\xc9\x6a\xf2\x96\xd2\x89\x7c\x85\xd8\xda\xae\x9b\x1b\xf3\x1f\x3f\xc5\x2f\x0d\x30\x13\x8e\xcc\x83\xe9\xa0\x3c\x64\xa0\xae\x69\xb2\xb8\xba\xbf\x05\x01\x55\x55\xc4\xad\xf9\x84\x8c\xa2\x04\x13\x1e\x7c\x22\x15\xf9\x44\xf7\x26\x5c\x90\x1d\xd4\xd0\x59\xfa\xd4\xb5\x70\xc0\x59\x3a\x2e\x1a\x3a\x4c\x07\x45\xbf\xc0\x61\x3a\x46\xd2\xd8\x1d\xda\x0f\xf5\x0b\x3c\xa2\xa7\x06\x3d\x96\x6b\xa7\x10\x3f\x51\x60\x4a\xba\x2d\xc2\xb1\x7d\x81\x67\xf4\xe0\x2c\xfc\x25\x02\xee\x54\x4f\x3c\x4a\x02\xe4\xde\xa5\x23\x2e\xaa\xeb\xeb\xd9\xbc\x6d\xf6\x1d\xbb\x1f\xe3\x59\x09\xe6\xb2\xfc\x3b\xbd\xc4\x6f\x01\x61\xe3\x00\x10\x85\x7c\x48\xa2\x1a\x28\x3d\xd5\xbb\x40\x49\xc4\xcd\xec\x30\x98\xfd\x29\xe5\xc8\x2d\xed\x5b\x3a\x89\x1d\x5b\xce\x4c\x8a\xd0\x46\xb7\xcf\xf8\x0b\x8e\xd3\xd0\x57\xb3\x7a\x15\x85\x2e\x39\x45\xc1\xf8\xd3\x10\x6e\xbb\x12\x6c\xe3\xe4\x1e\x5b\xc4\x57\xaf\x6b\x02\x61\x19\x1c\x81\x11\x31\x54\x90\x4f\x3d\x48\xe8\x20\x49\x10\x86\x4b\x0f\xa1\x08\xc2\xa2\x7f\xfe\xfa\xad\xfc\x84\xc1\xbb\x06\x2c\x82\xc5\x3b\x5f\xa7\x27\x66\x46\x3f\x9b\x32\xa7\xb7\x3c\xf1\x7c\x10\xc5\x88\xbd\x03\x87\x5f\x0e\xa2\x68\xf3\x6b\x5c\x1c\xf1\x5f\x97\x4a\x32\xb0\x2f\x76\xd1\x96\x8f\x87\xc5\x08\x39\x82\xea\x4b\x7c\xb8\x74\xbd\xf8\xe1\x3f\x2e\x2d\x87\x51\xc7\xd3\x60\xe4\x1e\x23\x66\x3d\x40\x74\x77\xbf\x4b\xbb\x8a\xb5\xad\x4a\xa0\x83\x06\x41\x1d\x3e\xd2\x30\x68\x07\x2f\xa3\x85\x63\x0d\x6f\x94\x10\x24\xa1\x5b\xa5\x0e\x3f\xec\xf0\xd3\x8b\xff\xb3\xbe\x74\x32\x8b\xfa\x1d\x95\x96\x2d\xb6\xb4\xd9\x4e\xd7\xcd\x12\x52\x24\x1e\x42\x94\x27\x2f\x76\xfc\x34\x0c\x21\x82\x03\x5f\xb1\xc4\xe1\x88\xbf\xda\x50\xfd\x9f\x24\x54\xb9\x54\x4f\xd2\x83\xf3\xcf\x26\x41\xa2\x16\x17\x51\xcb\xc3\x91\xda\x02\xba\x45\x65\x7c\x28\x64\xd3\x6d\x7b\x9f\x13\xca\x87\x64\xb2\x08\x5d\x59\x58\x4c\xe1\x88\x15\x32\xf6\xa0\x03\x11\x23\xb6\xd4\x31\xf3\xb5\x9c\x7d\xab\xd1\xb4\xf8\x6f\x48\x16\xfa\x8a\xc8\x85\x7c\xb9\x1c\x96\x80\x45\x8c\x7b\x23\x5f\xf2\xe2\xdd\x90\x9a\xc6\x11\x04\x28\xef\xf1\x70\xae\x03\x78\x87\x80\xbf\x96\xff\xf1\xbf\xfe\x2f\x2b\x65\x1b\xda\x61\x11\xee\x43\x23\x66\x7a\x5a\x31\x0f\x3a\xff\x8c\xcd\x63\xf0\x75\xdf\x91\xe1\xb5\xa0\x6b\x50\x49\xc5\x13\xcd\x88\xde\xf9\xc5\x07\x5b\x2b\x6c\xe1\x37\x58\x30\xa0\x1f\xbf\x64\x70\xf1\x39\xac\xc3\x88\x20\xd3\xfd\xc6\x45\xf2\x53\x40\xe1\x20\x18\x51\xaf\x44\x32\xbd\x3d\xb9\xb5\xab\xaf\x6f\x80\x09\xdb\x77\x92\xbc\x6f\xda\xe5\x07\x1f\x0d\xd6\x69\xb9\xa2\x48\xb0\x38\x83\x32\x8c\x8b\xa7\x76\x00\xd0\xc7\x58\xf3\x35\xda\xa4\xbc\x64\xd2\x1b\xbf\x56\x26\x1a\x00\x09\xc7\x0d\x03\x36\x73\x62\x9e\x99\x47\x96\x04\x93\xd4\xcb\xf5\xe8\x19\x49\x38\x4a\x99\x3a\xd5\xe4\xc8\x22\xd1\x5b\x5f\x76\xec\xe1\x0f\x8e\xf7\xc9\x0f\xdf\xb1\x3e\x4b\xee\xeb\x5e\x23\x81\x18\x03\x12\x10\xcb\x16\x0e\x4d\xfc\x37\x41\x04\x41\xd5\xe0\x71\xaa\x7e\x69\xfa\x20\x4a\x61\xf4\xd8\x43\xe0\x41\x86\xe8\xa5\xd1\x0b\x0e\x5c\x39\xb0\x32\x71\xe1\x3f\x8a\x69\x0b\x14\x22\xf5\x36\xe8\xc8\xe1\xf8\xc1\x1a\x97\x3c\x1a\x12\x0b\xaa\x73\x36\x24\xab\x45\xb8\x04\x9d\x20\xa2\x6a\x1d\x99\xbd\x76\x33\xdf\x4c\xb0\x7e\x56\x62\x0d\xe0\x8b\xe1\x1d\xa5\x39\xad\xa4\x9f\x04\x3e\xf2\x9b\xd4\x63\x61\x2e\x1e\xfe\x92\x9c\xae\xe9\x84\xb1\x8e\xce\x89\xa8\x88\x65\xc1\x9f\x0e\xf8\xcc\x8e\xa3\x0f\x7f\xbd\xd7\xec\xb8\x8e\xdb\xfd\x66\xff\xe8\x45\xf4\x74\x64\xc1\x50\x19\x36\x08\x31\xe8\xb2\xa6\x62\x0d\xfe\x91\x6b\xe1\x18\x34\x10\xb1\x22\x14\xb8\x9a\xbe\xf4\xfa\x41\x6f\x9b\x89\x52\xff\xb1\xcb\xe6\x38\xe6\xee\xb0\xd7\xa3\xa0\x78\x51\xa7\xbf\x2e\x38\xde\xc1\x5b\xdb\x88\x57\x0c\x0f\x87\xa3\x08\x17\x18\xe0\xad\x45\xe2\x78\x17\x61\x87\x9d\x3a\x30\xb8\x05\xd4\x3b\x05\x89\x74\x21\x3a\xee\xbb\xc3\x5d\x1c\xb8\x66\xb9\x2d\xee\xc5\xb0\x97\xcc\x63\x9c\x53\x47\xd8\xc9\x5b\x4b\x84\x7b\x6d\x7c\x53\xff\x8f\xc4\xc2\x98\xbe\x98\xe0\xc3\xe3\xde\x74\x66\xd8\x99\x0d\x7f\x5e\x13\xc1\x87\x0f\xc3\x97\x9c\x4e\x3c\xa3\xf5\x98\x83\x54\x25\xc8\x1d\xc4\x78\x56\xae\x3d\xd3\x9b\x3b\x0b\x83\x35\x48\xf7\x2c\x0f\x76\xd3\x7a\x37\xe9\x81\xe4\x37\x44\x98\xc9\x9c\x61\xf9\xb8\x8d\xd8\x87\xc1\x52\xdd\xdd\xd0\x19\x3e\x5c\x3a\x61\x6d\x51\x22\x44\xc1\x89\x7c\xb9\x1c\x3d\xa4\x69\xdc\x6c\xdf\x09\x89\x89\x0c\xbf\xa3\x20\x55\x77\x3b\xc5\x35\xbb\x50\xd3\xa4\xdc\x6c\x79\x0a\xf3\xd4\xa9\x09\x59\xbe\x95\x5d\x50\x64\x41\xed\x15\x44\xeb\x1f\x86\x75\xc9\xf3\x36\xba\x6b\xbe\x6d\xf6\x89\x6c\x99\x33\xb8\x52\x48\x0c\x5f\x4d\x89\xbb\x24\x69\x2c\x90\x68\x80\xa5\x54\x22\x49\x68\x08\x9e\x71\xfe\x20\xf8\x00\x76\x0c\x17\x76\xc0\x42\x72\xb3\x50\xa9\x4e\x3b\xb5\xdc\xcd\xc4\xde\xf8\x52\x2b\x84\x52\xdf\x2c\x64\xd3\xb8\xdd\x10\xe2\x4b\x1a\xc6\x6b\xc6\xc3\xe6\x8e\x4c\x31\x86\x88\x8d\xaa\xb1\x93\xd0\x74\xd2\x8a\x3e\x51\x6b\xfd\x70\xaf\xc4\xf9\x7e\x84\x10\x5f\xd2\x0f\x6e\x05\xf6\xe7\x72\x48\xb9\xa5\x3f\x74\xaa\xd4\x00\x94\x91\xcd\xc0\xb0\x8b\xde\xa9\xfe\x2a\xd8\xa7\x61\xa7\x52\x0c\xe4\x0e\xd6\x43\x8f\x37\x4c\xc9\x91\xfb\xe4\x09\xd1\x40\xcc\x89\x26\x63\x53\xdd\xbd\xc4\x61\xe8\xcf\x25\x1d\x68\x60\x28\xe4\xc1\x26\x77\x1d\xe9\x97\x17\xe5\x20\x5b\x9d\xa9\x3c\x27\x99\x77\x6f\xb8\x02\x67\x51\x99\x44\xae\x0b\xb7\x0c\x08\x76\x36\x93\x85\xbc\x4f\xe0\xd6\x38\xb3\xba\xa0\xd5\x71\x65\x8e\x55\x03\xca\xb1\xe8\x31\x9c\xf1\xce\x50\x2a\x0b\xb4\xb4\xcc\x94\x8f\x4c\x56\x75\x56\x0c\x80\xda\xe4\x37\x91\x9d\x10\xcc\x9a\x37\xf1\x7b\xbe\xb7\x28\x76\xc6\x5d\xf1\xbb\xb6\x04\xfd\x77\x04\x73\x50\x9b\x33\x0b\x97\xfa\x98\x40\x3c\xd9\x2d\x5b\xf8\x40\xd8\x5c\x33\xb3\x08\x48\x01\x15\xfe\xe0\x46\xe9\x9e\x91\xf4\xdc\x00\xd7\xce\x54\xd1\x83\xdb\x98\xc2\x57\x74\x00\x6c\xe3\xf6\x1e\x80\x2d\x88\x5b\x1c\x75\x23\x60\x01\xb7\x75\x44\xdf\x7f\xfc\xf2\x8e\x80\x6f\x7c\x61\x47\x8e\xac\x17\x1a\x30\xbb\x28\x26\xd7\xff\x6d\xfd\x1b\x1c\x73\x40\x9c\x51\x44\xf6\x01\xc1\x47\xef\xd5\x3b\xa2\x0f\x2c\xe6\xac\x5a\xd8\x66\xa8\x05\x9f\x6e\x67\xbe\xaa\x9a\xa6\x10\xe7\xd6\xba\x0f\xad\xfc\xe2\x58\x26\x6c\x60\xd6\xb7\x37\x2a\x92\xf0\xe0\xe2\x50\x2a\xde\xb8\x47\x0e\x5f\xb8\x3b\x96\x28\xfd\xef\x81\xf6\x0f\x89\x7b\x82\x90\x97\xb2\x7d\x27\xa2\xa8\x91\xfb\x33\xc4\x49\xf7\x01\xd2\xd3\x61\xc0\xf4\x5b\x83\xd5\xc7\x41\xfa\x87\xaf\x35\x74\x12\xd3\x6c\x69\xb2\x9c\x3d\xfc\x98\xa8\x51\x13\x33\xd6\x1b\xc2\xc1\x06\xaf\xfe\x2e\x38\x6e\x71\x53\x57\x62\x3e\x73\x26\x5f\x34\xf6\x04\x63\xca\xb6\x12\x3e\x02\x8f\xf6\x4b\x2c\x49\x4d\xe1\x58\x92\x49\xdf\xf4\x10\x28\xae\xf8\xef\x0f\xe9\xfd\x22\xf1\x43\x87\xca\x92\xb5\x43\x2a\x25\xc8\x77\x90\x1f\x44\x56\x87\x49\x7d\x6b\xb1\xe2\x7d\x0d\xe8\x26\x14\xa3\xbb\xa0\xdb\xda\x49\x54\xba\xeb\xa6\x5a\xcc\xf8\xba\x35\xd5\xcb\x66\xf7\xf6\x3b\x73\x10\x7e\x8e\xad\xe0\xe7\xd8\x44\x6d\x76\x14\x24\x44\x13\x12\x66\x6c\x5d\x80\xd3\x28\x39\xde\x15\x7d\xba\x44\x7a\x8a\x92\x38\xdc\x4c\x94\x90\x2f\x46\xad\x98\x5a\x3c\x4c\x33\x53\x3d\x9f\x62\x46\x7b\x51\xed\x71\x90\xcb\x30\x4b\x2c\x1d\xa3\x24\x7d\x87\x32\x1e\x89\x28\x25\xc3\xb4\x75\xb3\xe4\x07\x15\xec\x9d\xe3\x60\x78\x2a\x58\xc7\x75\x9a\xd5\x76\x54\x05\xbc\x43\xc3\x14\xdc\x96\xf5\x79\x17\x97\xc6\xfa\x0c\x13\xd4\xb3\x7e\x04\x48\x07\xed\x7c\xb1\x52\x27\xa2\x09\x42\xb2\xf3\xb2\x23\x26\x39\x34\x4f\x41\xca\x5b\xa1\xa9\xbd\x0c\x3a\x09\xc3\xaf\xc0\xe3\x21\xd6\x20\x97\xbd\x20\xd8\xe5\x06\x71\x40\x1b\x8d\x87\xc5\x2e\x11\x2e\xe6\x67\x7a\x8e\xe5\xd8\xdd\x5a\x28\xd8\xe2\x38\x2e\x83\xc6\x19\xd5\x92\x22\x8e\xdc\xb2\xd7\xf9\x9a\x75\xd7\x54\x33\x92\xe0\xdd\xb8\xce\x0b\x11\x39\x5c\xb4\xf4\x3a\xd7\xb2\xbf\xa8\x8e\x41\x2f\x3d\x84\xab\xe6\xeb\xbb\x0a\x95\x1a\x1b\xb8\x51\x6f\x06\x9d\x8c\x78\x9e\x81\xdc\x51\xc3\xa0\x8b\x93\x55\x7c\x45\x27\xf9\xf1\xe2\xe5\xc2\x3d\xb9\x7a\xca\xf1\xa5\xdb\x39\x73\x3c\xde\xe0\xca\x85\x79\x9f\x45\x6a\xb9\xe9\xe2\xb7\xf5\x0c\x1d\xe2\x03\xf9\x54\xf5\x87\xfa\xd6\x96\xdd\x4d\xbd\xc8\xf0\xf2\x6e\xb7\xd2\xeb\xcf\x77\xa5\x28\xc7\x1f\xcc\x28\xed\x49\xae\x31\xd9\x4a\x5c\x14\x76\x0f\xe4\x09\x82\x87\x0b\x4a\x87\x1d\x33\xed\x7f\x8f\xc1\x13\x51\xda\xa4\x3b\x92\xdd\xfa\x47\xb7\x36\x34\x18\x4b\xc0\x10\x03\xdc\xb6\xe8\x4a\x5f\x7e\xd1\x08\x82\xab\xf7\x70\x18\x4c\x06\xba\xfa\xc1\x2b\xc2\x17\x73\x18\x71\x0f\xd9\x8c\x82\x23\x86\xb3\x8d\x88\xda\x5e\xe9\x6e\x67\x2f\x2b\xeb\x85\xd8\x81\x01\x85\xed\xde\x32\x43\x0f\xa2\x5e\xdc\x3d\xc6\x70\x13\x92\xd7\xf3\x77\x5b\xb6\x2c\x4e\xdd\xb3\xf9\xbf\xe0\x77\xc8\x14\xe4\x51\x83\x6c\xd9\xb4\x0d\x4d\x8f\x44\x09\xd2\x87\x0e\x5e\x5a\x5a\x37\x51\x00\x0a\xec\x9b\x6c\xa7\x91\x9d\xac\xcc\x19\x92\x49\xb8\xe0\x30\x4f\xbe\x14\xb6\x68\x2b\xc3\x6a\xc9\x85\x2a\xb3\xb1\x67\x5b\xa9\x63\xcb\x08\x4a\x6a\x99\x66\xce\x2e\x03\xea\xc8\x0a\xe0\x73\x4d\x09\x60\x71\x11\xc2\xa1\x77\x08\x5d\xbb\x6d\xc6\x43\x45\x8c\x10\x49\x4e\xdf\x20\x39\xbd\xe2\xe4\x71\x0b\xd6\x2b\x57\x6c\xd0\xa9\x43\xe5\x38\x1c\xc3\xb0\xcc\x0b\x8e\xda\x30\x84\x37\xcc\xad\xca\x7c\x3b\xc2\xdb\x2b\x4a\x1c\x61\x0d\x90\x63\x04\x00\xf6\x30\x16\xc2\x52\x55\x81\x53\x57\x58\xe2\x35\x25\x1d\x82\x86\x5d\xc1\x10\xbe\x66\x51\xf1\x40\x09\xdd\xb3\x87\xbd\xd2\xdb\x9b\x51\xaf\x9a\xf9\xdf\xcb\x45\xdf\x19\xf4\xb9\xfc\x0c\xa0\xe6\x4d\xd3\xf3\x33\xbd\x5b\x16\xb7\x60\xef\x25\x68\x7a\x6e\xe9\x2c\x6e\x2d\x3e\x8e\x30\x25\xd0\x63\x54\x09\xf4\x61\x5c\x6d\x38\x86\x23\xb5\xd5\xee\x16\xfd\x8e\x16\xa8\x6b\xf0\xec\x92\x63\x3f\x5e\xba\x8c\x51\x8b\xa3\x92\x21\x85\x0e\x0b\x4f\xb5\xbc\x20\x21\xa2\x9c\x6c\xfa\x84\x73\x6e\x6d\x7b\x54\x36\x6c\x7c\x54\x7c\x6a\xa5\xe0\xdd\x1e\x56\xa8\xcf\x77\x8b\x8f\x65\xcf\x6e\x47\xab\x0c\xf7\xd6\x61\x5d\x17\x06\x96\x3e\x07\x58\xfa\x8a\xc0\xd2\x2b\xa8\x68\x26\x6a\xa5\x4d\x67\x53\xf6\x39\xec\x0f\x82\x5a\x5e\x9e\xd0\x0c\x70\x72\x91\x4f\x95\x82\xea\x26\x53\x29\x5b\x57\x21\x0b\x3e\x41\x0d\xe7\xd0\xee\xa8\xe0\x7d\xec\x40\xa6\x6a\xe3\x00\x40\xb2\xfb\x2d\x6e\x16\xf2\x9c\x0d\x87\x04\xa2\x3e\xbc\x93\x94\x00\x16\x27\x09\x82\x35\x1e\x89\xab\x76\x84\xa7\x27\xf0\xab\x98\x51\x0a\x07\xf3\xc0\xc2\xb8\x08\xee\x82\x7d\x97\xa7\x00\xb7\xb9\x2c\xa6\x83\x90\xd6\xbc\x01\x5a\xcb\x43\x38\x6d\xb4\x13\x54\x0a\x5b\x91\x63\x9c\x58\xe3\x6b\x70\x77\xa2\x39\x5c\xe4\xc2\x18\xdf\x42\xbb\x73\x9a\xc2\xde\xf9\xea\xba\x82\x89\xf4\x0a\x99\x55\x52\x4c\xde\xc2\x93\x7c\xf6\x6d\x79\x51\x54\x1b\x49\x8b\x9e\x80\xd7\x34\x73\x8f\x75\xd1\xb9\x34\x5d\xdf\x65\xd6\xd7\x7e\x61\x5e\x8f\x97\x0a\xd9\x2a\xf7\x5d\xf8\x66\xf7\xdb\xd0\xf2\xfe\xaa\xc1\x28\x83\x81\xc5\xd6\x48\x36\xcc\xbb\x5d\x74\x67\x5a\x47\x18\x05\x46\x47\x06\x01\xd9\x0c\x72\x06\x4f\x11\xaa\x61\x8e\x40\x4a\xc8\x53\xb9\xe7\x5a\x87\xa5\x71\x7a\xb1\xe3\xc0\xa0\x86\x37\x38\xd9\x04\x58\x1e\xbf\xf5\x0c\xed\x32\x1f\xec\xc5\xba\x1a\xba\x59\x58\xbf\xed\x6a\x7b\x31\xc8\xc8\xe0\xd0\x23\x5d\x16\x16\xfc\x0b\xdf\xe9\xf2\xb8\x08\x28\x05\x17\xf7\x31\x8d\x54\x5d\x16\x12\xc5\x30\xaa\x78\x3e\x20\x12\x06\x57\x3a\x89\x40\x71\x93\x1f\xbe\x8a\x1f\xdc\xac\x1a\xe1\xe0\x0e\x93\x2d\xbc\x33\x35\x72\x1c\xd5\x10\x94\x81\x4a\x4f\x08\x9b\x4d\x4b\xc5\x29\x36\xac\x47\xa2\xdb\x66\x36\x63\x77\xd5\x75\x30\x18\xee\x24\xde\xbd\x56\xd5\xd0\xee\x1e\x51\x03\xf4\xad\x57\x72\x31\x82\xa7\xdf\x76\xfc\xff\xf2\xbc\x65\xd8\x01\xff\xc8\xe5\x81\xf6\xff\x29\x8f\x5c\x0e\x35\xda\x5d\xdc\x95\x09\xf3\xba\xe3\xe1\x4b\x17\x07\x6c\xeb\xf8\x15\xc0\x19\x3c\x95\x62\x16\x19\x5d\x18\x46\xac\x12\x25\x42\x16\x88\x84\xd8\x74\x02\x49\x5e\xdd\x6e\x9a\x76\xd1\x96\x81\xfb\x0d\xdb\x0b\xdc\xd1\xa2\xd6\xa4\xc4\x38\x84\x7e\xdc\x05\x49\x19\xdf\xd2\x49\xba\x2a\x7a\x52\x8b\xe8\xad\x5a\xbb\x19\xb4\x3d\x7a\x35\x66\x69\xc3\x30\xb6\x50\xe2\x29\xb3\x1a\x74\x79\xc0\xae\xa2\x6e\x4b\x29\x09\x94\x61\xae\x6e\xca\x11\x35\x2b\xe8\xbd\xa4\x84\x31\x22\x25\x45\x9e\x90\xc3\xcb\xc8\xf2\xa5\xe9\x63\x43\x97\xa0\x93\x5a\xcd\xa0\x73\x41\xad\x80\x9a\xe6\xb8\x41\x6f\x86\x56\xc4\x92\x0a\x0f\x2e\x36\x79\xee\x7a\x4d\xd9\xea\xeb\xf9\x1c\xf9\x51\x52\xa0\x3c\x29\x60\x8b\xc8\xba\x92\xd3\xb7\x61\x7a\xf0\xaa\x1c\x72\xdd\x7b\x72\x13\x30\x81\x19\x4a\xde\x72\xe0\xc9\x1f\x34\x0e\x4f\xf0\xba\x1c\x7b\x5b\xc9\x5b\x35\xdb\x35\xf7\x97\x63\x90\xe3\x0a\x83\xb5\xc0\x2c\x33\xe4\x78\x50\x0a\x17\xba\xc4\x66\x96\x62\xd6\x2a\x0f\xa0\x28\x32\x59\x3e\xd0\xe8\x57\x90\x0b\xd4\xad\xef\x39\x1b\x61\x05\x20\x85\x3d\xc6\xed\x47\x94\xf7\x7d\x5b\xcd\x77\x7c\x2f\xaa\xf6\x1f\xbc\x28\xc5\xd8\xc4\xe5\x8d\x60\xbb\x9d\xf9\x67\x5c\xea\xd7\x61\xd8\xc1\xa3\xfa\x03\x38\x89\xc0\x65\xdd\x92\xf8\x5b\x56\x05\xae\x15\x1c\x80\x5c\x36\x46\x10\x1b\xde\x71\xb2\x2e\xe7\xe5\x49\xbc\xb5\x48\x2f\x8f\x35\xa7\xdb\xf4\x5b\x8b\x20\x7f\x79\x76\x75\x71\x0b\x2d\x31\xa8\xd2\x04\x20\x03\xc2\xe0\x2c\x25\x0e\x64\x05\x14\xa2\x46\x37\x6a\xa9\xae\xc7\x7a\x98\xed\x08\xb1\x75\xd3\x70\xb7\x6d\xfb\xf2\x1e\x10\x3f\xed\xce\xaf\x10\xb0\x61\xb9\x94\x99\xa5\x67\xbb\x75\x5f\xb1\x15\x98\xb5\xa6\x96\x48\xfc\xf2\x7d\xb9\xcd\x5b\x8b\x83\x8a\xa8\x3f\xe9\x83\xa3\x07\xb3\x68\xf5\x65\xbd\x3c\x21\x28\xaf\x39\x5e\xbd\xb9\xa4\xcf\x45\x7b\x23\x17\xa1\x3a\xd2\x8f\xd5\x96\xc1\xf4\x11\x68\x1e\x30\xa5\x00\xf6\x2f\x48\xb1\xa5\xc2\x37\x66\x65\xfb\xa9\x5a\x38\x82\xb9\x38\x3e\x83\xde\x81\x92\xc2\xc5\xa7\x4d\x23\x4e\x91\x49\x7e\xbe\x13\x34\x1d\x4d\x24\xf9\x19\x03\xe1\xd7\x8f\xd9\x58\x73\x6b\x08\x0c\x03\xaa\x0c\xc5\x33\x7d\x22\x53\x31\x3d\x12\x55\x62\xe8\x40\x62\xf1\xac\x6d\x28\x51\xc6\x45\xee\xb2\x71\x9f\x45\xcc\x2c\xdc\xb9\x06\x6f\x25\x7f\x99\xed\x4f\x58\x59\x20\x65\xdc\x36\xe8\xc9\xd8\x0e\x71\x89\x08\x32\x13\xfe\x6a\xcf\xc9\xc4\x55\xfb\xe7\x83\x46\x25\xa2\x87\x65\x46\x78\x9d\xb0\xa9\xb9\xc5\x8e\x26\xa8\x7d\xb0\xdf\xc7\x15\xdf\xb5\xed\x8b\x2e\xce\x74\x60\xee\x1e\x4a\x75\x60\xf1\x75\x94\xc2\xe6\xdb\xad\xdb\x36\x82\x17\x83\x40\xb6\x01\xc8\x27\x61\x38\x01\x04\x2d\x82\x6e\x50\x8f\x38\x9f\x85\x40\xec\x83\xa6\x00\xc3\xad\x47\x93\x9b\xeb\x6b\x8e\xc8\xc5\x71\x25\x35\x9c\x0a\x02\x74\x9d\xb1\x35\xb7\x95\x14\x97\xca\x8c\x95\x72\x50\x72\xf1\x98\xec\xb1\xd9\x77\x48\xe4\x53\x85\x81\xb7\x3b\xf7\x4a\xf7\xbb\x5d\x2d\xe7\xa5\x20\x4b\x1b\xe2\xac\xb0\x11\x48\x2f\x6d\xd3\xf4\xf6\xae\x43\x20\xba\xbc\xa3\x64\xda\xd3\xfa\x95\x43\x30\xdf\x74\x2d\x32\x09\x54\x1f\x94\xc1\x3d\xdb\x02\x36\xf9\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\xb5\x4d\xc4\xe5\xe5\x9b\x78\xb6\x7d\x6e\xf0\xd0\x0f\xdb\x8b\xdd\xe3\x00\xb3\x1c\xe7\xee\x5e\xca\x9e\x86\x8f\x82\x12\x8a\xcd\x10\x7f\x9a\x3a\xac\xa3\xfb\x6d\x5d\xf5\xe5\xf7\xf7\x70\x75\x7e\xaf\xaf\x8a\xf9\xbd\x47\xe1\xba\xa9\xe0\x58\x10\x2c\x9c\x6a\x71\x00\x3d\xee\xf0\x1e\xbd\x45\x9a\x8a\x97\x76\xd5\x96\xb6\xbf\x9f\x04\xcf\x83\x8e\x48\xda\x6f\x03\x8e\xa0\xc3\x2d\xc0\x3a\xc6\x5e\x2a\x6d\x90\x91\x91\xbc\xd0\xcb\xeb\x89\x6c\xa0\xf9\xce\xaa\x79\x8e\x64\xdf\x43\x09\x8e\x6b\xc1\x72\xd5\x5e\xdf\xfa\x87\x58\xb7\xaf\x6b\xf8\x91\x58\x11\x7b\xe1\x19\x7a\xb6\xd1\x63\xd0\x50\xb0\xe9\x5b\xd0\x5a\x00\x63\x77\xea\x8b\x33\x1e\x70\xa8\xb1\x18\x0e\x18\x0e\x54\xd5\xef\xa5\xc4\x37\x0c\x86\x7d\x46\x87\xe1\xcd\x6e\x83\x97\x20\x2f\x39\x1c\x1b\xde\xf2\x1c\x75\x6b\x4b\x92\x7e\x1e\xf6\x08\x09\x8e\x09\x89\x6f\x24\x3b\x86\x64\x6b\xbd\xe1\x12\xff\x49\xb8\x87\xa4\x6f\x70\xa5\xe5\xb0\x43\x9b\x90\x17\x4b\xa3\x42\xef\x38\xcf\x89\xb1\x13\x85\xcd\xad\xda\x91\x8a\xb9\x2d\x4e\x92\xca\x6f\xbb\x72\x47\x95\x97\xf5\x12\x64\xfa\x67\xfe\x49\xe2\x0e\xff\x74\x08\x12\x7f\x44\x28\xbc\xd8\xa3\xe1\xa9\x79\x28\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\xb6\xd6\x0d\x01\x37\xb4\xd3\x23\x10\xc8\x83\x03\x10\x82\xf6\x96\x19\xa0\xe4\xc9\x8a\x94\xf4\x0b\xa2\x2c\xf1\xb6\x11\xa2\x97\xdf\x31\x50\xf0\xec\x94\x40\xd9\xab\x53\xa3\x56\xeb\xb0\xcd\x5a\x6e\x1a\x3d\xd7\x11\x13\xa1\x80\xeb\x88\x89\xfd\x64\xf7\x0c\x9a\xbd\x8a\x2a\x8b\x58\x22\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\x8f\x59\x4b\x09\x03\x5e\x2e\x1c\x62\x4c\x67\xfc\xf2\xc4\x3f\xc8\x05\xf5\xf2\x60\x30\xeb\xea\xba\x74\xca\x68\x1d\xcd\x1b\x4a\x8b\x80\x57\x7d\xbf\xed\xcc\xc7\x1c\x8f\x40\xa5\xe7\xf4\x63\x30\x88\xb0\x2a\x1d\xc9\xa8\xa6\x6d\x85\x0b\x82\x00\x2f\x92\x30\x8d\x71\x83\xd6\xdd\x21\x00\xd7\xed\x61\xc8\xe3\x96\xad\x63\x9c\xb6\x42\xfc\x3b\xf8\x5e\x16\x70\xad\xb3\x0c\x30\xd9\x32\x43\xe9\x2e\xc9\x30\xd8\x25\xcd\x5a\x68\xb6\x68\x25\x42\x1e\xff\xb9\x62\x53\x0d\x97\x13\xae\x3d\x4b\xeb\x88\xf6\x8a\x9d\x78\xe9\xe9\xa7\x87\xf7\x4f\x07\x08\x9a\x2c\x63\xe2\xb9\x81\x18\xa0\xfc\x5c\x2e\x76\xc1\xcd\xe1\xcf\xf2\x5b\x55\xf5\xbe\x9a\xc6\x8c\x83\x77\x35\x9e\x9a\xb8\x90\x94\x00\x66\x2a\x4c\xa6\x75\x1d\x26\xce\x66\xea\x7c\xb0\x7d\xd7\x3c\x0e\xb3\x0c\x65\x16\x57\x66\xc8\x24\x3f\xb3\xb5\x38\x5a\x0d\x8c\xb0\x0c\x36\x94\x78\xc2\x34\x84\xda\x0a\x0c\xde\x2c\x6f\xa2\xe3\x96\xd5\x6c\x99\x65\x6d\x67\x01\x2c\x8e\x0f\xc1\xfb\xb5\xd2\x07\xc9\xbf\xcb\xc4\x32\x79\x2f\x66\x4b\x1f\x06\xaf\xe6\x99\x76\x3f\x30\xa3\x8b\xfc\xd1\xef\xcb\x83\x13\x6d\x59\x07\xd1\xf5\xe4\x57\x31\x7a\xac\xca\x42\x41\x7f\xeb\x43\x41\x47\x6f\x67\x0f\x9f\xb1\x70\xcf\x0a\xa0\x56\xb6\x4b\x94\x27\x4b\x82\x1e\x3c\xe9\xda\xc5\x93\xfb\xe1\x8b\x01\xac\x2f\x8d\xe3\x6d\x47\x55\xca\xe8\xec\xe9\x85\x5f\xf5\xb9\x03\xf9\x1d\xd6\x2b\x4a\x3d\xa9\x9a\xc3\x73\xbb\xf7\x08\xb4\x86\x61\x74\x70\x43\x54\x14\x55\x37\xac\x50\x83\x7e\x8f\xeb\x1b\xbc\x06\x11\xbc\x78\xd1\xd4\x5f\xd3\xb1\xc9\xf0\xc2\xbf\x6a\xac\xe9\xaf\xee\x96\x0b\xff\xa5\xd8\xb7\xdf\x03\x5a\x90\x19\x9d\x9e\x4e\x4f\x1e\x88\x4e\x21\x0f\x85\xd9\x2c\xd2\x8f\xdb\xa7\x31\xa6\x8c\xe1\x34\x6a\xa0\xf9\xef\x82\xa8\xe0\xf0\x58\x96\x8c\xaa\xd3\x88\xae\x12\x8b\xfd\x3b\xf7\xd0\x56\xf2\x9e\x83\x33\x7f\x48\xf2\x25\x8f\x89\xfe\x4f\xf0\x0e\x9e\xf8\x28\x80\x46\xe9\x33\x91\x9f\xfc\xf5\x2d\x57\xfc\x6d\xda\x95\xc4\x34\x11\x56\xf8\xdb\x0d\x12\x36\x74\xb4\x26\x56\xc4\x09\x2b\x24\xf0\x43\x90\xf8\x59\xe0\x67\x91\xdf\xe0\xd7\x1e\xbf\xf6\x65\xf9\x51\x0a\x83\xab\x52\x71\x3a\x9c\xaf\x90\x72\x83\xdf\x37\x1c\x7e\xf7\x3e\xfb\x67\x71\x3b\xfa\xb6\x82\xfd\x40\x30\x63\x6e\x4e\xd3\xed\x07\xa5\x73\xab\x9a\x2a\x9f\xf7\xf9\xda\xff\x46\x93\xf0\x45\x29\xdc\xbc\x26\xc9\xe7\x7d\xb0\xc6\x7e\x65\x15\xca\x37\xa5\x72\x3f\x34\x51\x3e\x29\xad\xcd\xf7\x99\xef\x97\x7e\x21\xd5\xf7\x4a\xbf\x08\xbd\x45\xdb\x6c\x39\xb0\xe9\x07\xf7\xba\xa6\x7f\xa7\xec\x94\xf2\x34\x14\x13\xa2\x59\xb2\x4b\xf1\x9a\xdf\xda\xc3\xe3\xc2\xec\x53\x3a\x4b\x2c\xe0\x70\x55\x6f\x77\xee\x7c\xea\xa3\x5d\x0b\x98\x8f\xe7\x24\x86\xea\xfc\xf8\x90\xbc\xcc\x46\xb3\x9b\xcd\x2b\x7d\x90\xae\x4c\xf9\x30\xf0\xf0\xdf\xfe\x0d\xe0\xf4\xf9\xef\xff\x9e\x9e\x3d\x7f\x94\x96\x9f\x39\x9e\x5d\x97\x6e\xf2\xcf\x38\x15\x28\x14\xfd\x7c\x11\x01\xb2\xff\x2b\x4c\x8e\xf5\x1a\x4a\xdf\x17\xc7\xdd\xd3\xff\x0b\x00\x00\xff\xff\x65\xdd\x71\x87\x0a\xaf\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\xec\xac\xc3\xc1\x66\x15\xa9\x2a\x8e\xab\xc8\x6a\x92\xe5\xb2\xfa\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\x76\x9b\x15\x65\xb7\x48\x9f\xa6\xc7\xe9\x36\xaf\xea\x75\xd9\x75\x69\x57\xae\xaf\x1f\xaf\x9a\xae\x2f\x8b\xf4\x65\xd5\xd3\xef\xf6\x53\xb5\x28\x93\x64\xd5\x6c\x4a\x02\x7d\x45\x7f\x92\x22\xef\x56\xf3\x26\x6f\x0b\x4a\x38\xb5\xef\xa4\xfc\xbc\x5d\x37\x2d\x03\xfd\x2c\x5f\xc9\xaa\x5c\x6f\xb9\x0c\xfd\x49\xba\x6a\x59\x67\x55\x4d\x3f\x2f\xe9\x2b\x7d\x5d\x4b\x4a\xb3\xeb\x2d\xe9\x7c\xd7\x4b\xda\x6e\x6b\x49\xbf\x6c\x93\xb6\x5c\x56\xd4\x9b\x96\x92\xde\xe9\x67\xb2\x2f\xe7\x5d\xd5\x73\x4b\x7f\x95\xaf\xe4\x53\xd9\x76\x55\xc3\xb5\xff\x45\xbe\x92\x6d\xbe\x64\x80\x0b\xfa\x93\xf4\xe5\x66\xbb\xce\x51\xe0\x4a\x3f\x93\x75\x5e\x2f\x77\x02\xf3\x46\x3f\x93\x45\x5b\x52\x56\x56\x97\x7b\x4a\x3d\xc1\x8f\xd9\x6c\x96\xec\x08\x09\xd9\xb6\x6d\xae\xab\x75\x99\xe5\x75\x91\x6d\x64\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\x8d\x95\xe6\xcf\xa4\xdc\xe4\xd5\x9a\xb1\xf6\x98\x3f\xa8\xe3\x5d\xb7\x6f\x80\xdb\x0b\xfd\x24\x24\x64\xfd\xcd\xb6\x04\x0e\x1e\x5f\xd1\x57\xb2\xc8\xb7\xfd\x62\x95\x73\x3f\xe5\x2b\x21\xa0\x6d\x43\xc8\x68\xda\x1b\xc0\xd9\x8f\xa4\x69\x97\x79\x5d\xfd\x9e\xf7\x82\xa0\xf3\xe0\x67\xb2\xa9\xda\xb6\x61\xdc\x9e\xe1\x23\xa1\xa1\x67\x5c\x0f\xa5\xbc\x25\x2c\x04\xb5\x70\xce\xa6\x5a\xb6\x82\x46\xce\x3c\xc3\x2f\xae\x85\xf3\xae\x9b\xf6\xa3\x66\xbc\xe0\xcf\x41\x51\xea\x84\xe6\xc6\xed\xe7\x35\x21\x5e\x73\xcf\xf0\x23\x02\xe8\x92\xbc\xd8\x10\x2a\xb7\x79\x5d\x32\x8e\x8e\xf9\x17\xe1\x85\x7e\x25\xf9\x62\xd1\xec\xea\x3e\xeb\xca\xbe\xaf\xea\x25\x23\xfb\x58\x92\xd2\x4b\x4d\x4a\x82\x3c\x97\x76\xd3\xec\xdc\x74\x52\xfa\xdf\xe8\x67\x7a\x21\x3f\x25\x2f\x28\x84\x4c\x57\x92\x47\xd2\x65\xd7\x65\x59\xc8\x58\xba\xf4\x05\x7d\x27\xdb\xdd\x7a\x4d\x58\xfb\x6d\x57\x76\x3d\x17\xba\xa0\xdf\x34\x7e\xf9\x9d\x54\x5d\x47\x1f\x94\xfc\x1a\x1f\x09\x4d\x5d\xbd\xc0\x60\x4e\xf0\x91\x24\xef\xbb\x32\x6f\x17\xab\x0f\x89\xfc\x45\x5f\xf9\x83\x69\xef\xd0\xa4\x32\x21\x29\x11\x49\x0b\xd6\x40\xb2\x68\x0a\xfe\x71\x42\x7f\xa8\xea\xaa\xee\xfa\x7c\xbd\xfe\x90\xe8\x07\x83\xc9\x97\x4c\x40\x5f\xf5\xc0\x82\x26\xa6\x97\x7d\xb9\xed\x78\x06\xd3\x17\x55\xdb\xf5\x8f\xfb\x8a\x88\xf5\xdd\xae\x4e\x8a\x66\xf1\x91\x96\x01\x2f\x69\xb4\xfc\xfa\x3a\x25\x64\x3d\xa0\x85\xd0\xee\xea\x9a\xd0\x93\xbe\x6c\x08\x65\xd4\x4c\x45\xed\x9f\x02\xfa\x28\xdd\xae\xcb\xbc\x23\x90\x32\x2f\xd2\x1f\xf3\xb4\xcf\xdb\x65\xd9\x3f\xbd\x97\xcd\x69\xf9\x7d\xbc\x97\xae\xda\xf2\xfa\xe9\xbd\xfb\xdd\xbd\x67\x2f\x77\x54\x6c\x5d\xd5\x65\xf7\xe3\x93\xfc\x59\xba\xc8\x29\x87\xd0\x78\x93\xce\xcb\x6b\x5e\x6d\xd4\x56\x4a\x54\x5e\x2f\x79\xa5\xdd\xf4\x2b\x6e\x90\x28\x81\x3e\xba\x94\x97\xfa\x37\x09\x4f\x00\xb1\x82\xac\x98\x1b\x5b\x43\x87\x90\xdc\xd2\x04\x9c\xdd\x5c\xfe\xf9\xcd\x51\x7a\x41\xbc\x6d\xd9\x96\xf8\xa6\xff\xa8\xc4\xf7\x29\x8d\xf6\xaa\x3a\x7d\x3e\x4b\xa8\xac\x21\xe4\x34\xef\xf3\x39\xf7\xdd\xcd\x3e\x67\xca\x22\x74\x79\x58\x8a\xcc\x2d\xc1\x19\xbb\x3e\x9a\x96\xa9\x85\x4c\x75\xe8\xf2\x77\x75\xbc\x65\x1e\x40\xe9\x0e\xb3\x17\x82\x33\xaa\x2a\x7d\xfd\xf6\xed\xf9\xe9\xf3\xb4\xac\x97\x84\x99\x74\x5f\xf5\xab\x74\xd7\x5f\xff\xb7\x6c\x59\xd6\x65\x9b\xaf\xb3\x45\xc5\x48\x69\x89\x60\x53\xc2\x92\x0c\x71\x96\x74\xdd\x9a\x58\x14\xa8\xe0\xf2\xf2\x4d\x7a\xc6\x94\xb0\xcd\xfb\x15\x3a\xd2\xaf\x92\xee\xb7\x35\x23\xca\x35\x78\xb5\x2a\x53\x2c\x06\x00\x35\xd7\x43\xbc\xa4\x85\xf6\x75\x96\x94\x6d\x9b\x11\x07\xed\x6f\x18\xcd\x5a\xe7\x21\x68\xa9\x8e\xa8\xbd\x6e\x7a\x9a\xc6\x14\xe5\xa4\x8a\xaa\xfe\x94\xaf\xab\x82\x90\xed\x11\x12\x97\x45\x62\xd1\xd0\xbc\x71\x69\xa2\xcc\x66\x8f\xa1\xe6\x0b\xda\x00\xba\xf4\xde\xec\x1e\x38\xee\xbd\xc7\xf7\x66\x49\xdd\x64\xc2\x25\x98\x37\x17\x55\x97\xcf\x89\x4f\xcb\xbe\xd1\x1a\xd7\xfb\x1b\xd3\x8f\x74\x45\x21\xd2\x08\x82\x71\xcb\x7b\x11\xb6\x00\x26\xae\x9c\x18\x36\x98\x8d\xb2\x99\x70\xec\xc6\x93\xdc\xfc\x0a\x5b\x72\x09\xa3\x31\x27\x36\x61\x46\x5d\xc7\xdb\xed\xba\x5a\x48\xd3\x2f\x25\xcf\x13\x1a\xef\xcc\x8a\x94\x10\x0e\x84\x62\x79\x01\xb9\x50\xaf\x99\x6d\xa5\x11\x9f\x47\xf9\x55\x49\x2b\x67\xb5\x5b\xca\xee\xb4\x6e\x76\xc5\x37\x60\x28\x36\x73\x9e\x9f\xa4\xef\x1a\xea\x30\xa8\xc3\x01\xf8\x26\x8e\x89\x31\xb0\x30\xd0\x96\x9b\xa6\x67\xc4\x69\xb1\x8a\xa6\x67\x5f\x51\x26\x8d\xb4\xcb\x3f\x11\x5b\xec\x1b\x59\x92\x05\x2d\xb9\x05\x57\x4c\x1c\x6c\x47\x3b\xba\x2c\x0b\xe2\x23\xb2\x34\x2c\x2d\xa6\x41\x40\x6d\x76\xb4\x9a\x56\x54\x19\x23\x9e\x25\x12\xaa\x72\xaa\x9f\x18\x12\xd5\x83\x55\x4e\x2b\xb7\xa1\xcd\x93\x27\xfa\x14\x1f\xfa\x3b\xac\x9f\x7a\x95\x5f\x5f\x53\xaf\x3a\x5a\x15\xaf\xd2\xc5\xba\xa1\x25\xf5\xcb\xbb\x37\x1d\x2f\x98\x55\xb6\x6d\x5a\x48\x22\x94\x75\x41\x9f\x2e\x2d\x40\x34\x43\xd4\xbb\xcd\x9c\x7e\xed\x57\x15\x31\x6a\xa0\x9d\x4b\xb0\x94\x44\xa9\xd4\xc4\xae\xa3\x29\x3c\x4a\x69\x09\xd3\x08\x08\x65\x20\x00\x1e\x83\x51\x1d\x83\x5f\x13\x8d\xed\x5a\x5a\x4e\xab\xbe\xdf\x5a\xcb\xaf\xae\xae\x2e\xa4\x69\x97\x7a\x5b\xdb\x79\x40\x19\x98\x83\x35\xcb\x46\x75\xda\xd4\x33\x10\xc9\xae\x5d\x0f\xe8\x87\xc6\x6a\x39\x07\xf0\xc2\x5d\x78\xc2\xff\x5d\x7a\xf4\x00\xcf\x1d\x49\x7d\x7b\x50\x13\xe1\xb8\x84\x9c\x42\x44\xdd\x6c\xb9\xde\x80\xaa\xcf\x35\xc1\x93\x32\x64\x1b\x97\x2f\x12\x0e\xe5\x42\xa6\x0c\x76\xe9\x0d\x0d\x58\xd9\xe8\xe5\x19\xa1\x01\xbc\x14\xa9\xd7\x6d\xb3\xa1\xd4\x17\xf4\xc7\x27\xf8\xee\x9f\x71\x7d\x80\xc9\x8b\x82\xb8\x7c\x77\x94\xbe\x7b\x71\x92\xfe\xe7\xef\xbf\xfb\x6e\x96\xbe\xee\x79\x25\x32\x71\xfe\x9d\x89\x8a\x3e\x45\xd4\x72\xa0\xc4\xb1\x7a\xa2\xbb\x7b\xbc\xb2\xee\xa5\x3f\x22\xf7\xbf\x97\x9f\x73\x12\x11\xcb\xd9\xa2\xd9\x3c\x63\xae\xba\xc9\x69\xed\x73\x0e\x91\xab\xd2\xf1\x65\x59\x17\xf4\xa1\x02\x9b\xe6\x05\xec\x40\xf3\x03\xf1\x4d\x04\xd7\x6c\xd1\xd4\xd7\x55\xcb\x03\xfa\xb9\x06\x35\x98\x48\x4b\xdb\x35\x72\x4c\x2a\x22\xa4\x11\x07\xa9\xae\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\xeb\x6b\xde\x6b\x6d\x97\xd0\x16\xce\x25\x55\x36\x8c\x10\x84\x88\x71\x0b\xa1\xfc\x54\x89\xf8\xe4\xf4\x6d\x5a\x7e\x22\x6a\x63\xae\xd7\x36\xc5\x6e\x01\x0a\x63\xd8\x23\x66\xd6\xc4\x22\x3a\x5a\x1b\x0b\xd9\x57\x02\x26\xc1\x5d\x63\x4e\xb4\x20\x20\xe2\x0d\xc6\xac\x49\x90\xfc\x44\x9c\xbf\x0d\x9a\x78\x69\x49\xda\xfb\x11\xec\xa8\x53\xae\x04\x8f\x7c\x41\x33\x4e\x54\x21\xbd\xe8\xa4\x53\x92\x4d\xe4\x4e\x74\xbc\xa3\x13\x4a\x5e\x50\x5f\xe6\x37\xe0\x3b\x1d\x13\x43\x51\x5e\xe7\xbb\x75\xef\xfb\x35\xd8\x44\xac\xa5\x4b\x3e\x24\x85\x79\x93\x05\x46\x1d\x04\xf5\x74\xc3\xb2\x44\x86\x35\xc9\x39\xb2\xd9\x30\xbd\xca\x29\xc4\xf6\x1d\x62\x4f\x25\xa6\x27\xf3\x22\xbf\xce\x97\x49\xfe\x71\xbe\x6b\xf6\x9d\x48\x3e\x29\xb6\x5a\xae\xd1\x2a\x60\x51\x61\xba\x2f\xb3\x44\xc5\xa5\x4c\x8f\x6b\xd9\xa7\x0a\x87\x21\x47\xae\x52\xa5\x1e\xe1\x98\xaf\xfd\x85\x01\xf8\x94\xd5\x4d\x96\x75\xbd\x39\xe7\x41\x76\xee\x30\x24\x38\xe7\xe1\xa2\x05\x16\xe1\x68\x96\x3e\x55\x60\xf3\x4a\x30\xc0\x0b\x51\x0d\x9a\xa6\xa6\xba\xb2\x44\x0d\x54\xfe\x09\xd5\x89\x32\x33\x3d\x20\xa8\xcc\x6e\xa2\x1f\x6f\xf7\x45\x03\xd9\x01\x7b\x09\x95\x36\xb4\x0e\xf6\xf5\xb4\xad\x96\x2b\xe2\xad\xcd\xfe\x48\x90\xb2\x5f\x35\x25\xaf\x9f\xd7\xa7\x4f\xbf\x95\x7e\x2c\x79\x67\x71\x85\x78\x4f\xca\x77\x44\x5c\x84\x31\x25\x63\xe9\x82\xdb\xdb\x01\x39\x3a\x8a\x08\xd0\xf0\xf0\x37\x12\x25\x1c\xd3\x50\x5e\x11\xe6\x29\x93\xf0\x30\x52\xda\x0e\x90\xd2\xb0\x72\x25\x95\xf7\xb3\x65\x83\x83\x8c\xc9\xf7\xbc\x5b\xd2\x79\xb8\xeb\xb3\x65\xd5\x67\xd7\xcc\xba\xb8\xe6\x17\x5c\x03\x6f\xde\x94\x93\x3e\xa0\xac\x07\x29\xf1\x3f\x3a\x9d\x15\x3f\xa4\xf7\x3f\xa9\xc4\xf8\x3d\xf3\xa4\x8c\x56\x51\xb5\xc6\x94\xe8\xf1\xa8\x2d\x45\x60\xb5\x33\xb8\x93\xda\xba\xdd\x16\x7b\x9b\x0a\x88\xee\x34\x50\x34\xfb\x9a\x57\x1f\x98\x2f\xf1\x99\x6a\x51\xd1\x9e\x31\xaf\xea\x9c\x36\x78\xab\x05\x4c\xfd\x3e\xd1\xc4\xdb\xf3\x2b\x00\x2e\x9b\xf9\xae\x5a\x17\x06\x30\x4b\x4c\x88\x24\x11\x52\x67\x3f\x14\xab\x2d\xa9\x92\xbe\x2c\x9a\x96\x25\x12\x8c\xc6\x0a\x1e\x10\x85\x5a\x16\x31\x90\x5c\xf1\x79\x06\xb0\x28\xe7\xa4\x16\x46\x03\x4d\x3f\x8e\x6a\x2c\xd3\x80\x6e\xaa\xae\x7e\xd0\xa3\xa7\x8b\x1d\xb5\x45\x53\xcf\xc9\x54\xb0\x4b\x1f\x3f\xa3\xff\x13\x96\x90\x64\x07\x58\x8e\x11\xcf\x99\xa9\x64\xee\x64\x2d\x46\x5d\x8d\x88\xdc\x4d\xb5\x91\x70\x30\xd6\xb0\xbf\x46\x02\xdd\x4e\xa8\x96\xd5\x25\x6b\x9a\xd6\xf2\x1b\xfa\xe0\x93\xdb\x72\x8d\x49\xc8\x7b\x3d\x5e\x35\x84\x37\x26\x90\x23\x59\x34\xd7\x34\x34\xe6\xa5\x7d\xfe\xb1\xc4\x89\x8c\xf6\xfc\xf7\xac\x07\xfa\x90\xec\x44\x06\x6d\xd6\x85\x3b\xef\x80\xb2\x9b\x76\xa8\xc6\xf0\x40\x8e\x6a\x3b\x12\xb6\x17\xab\xcc\x69\x91\x18\x29\x7d\xf9\x19\xbb\x3f\xb2\xbc\x52\x89\x49\x9e\xb3\x92\xcd\x0d\xa6\x8b\x07\x71\x76\xe3\x67\x8b\x24\x50\x5a\x28\x74\x98\x9d\x37\x8c\xb5\x4f\xa5\x83\x3a\x09\x53\xe3\x02\x54\x17\xc9\xca\x5a\x55\xac\x6d\xa0\x2c\x51\x89\x68\xae\xa8\x45\xba\x04\xac\x4c\x55\x60\xe0\x78\x34\x9f\x7a\xb2\x9f\xd1\xc4\x40\x6d\x60\x2d\x13\x5f\xbc\x91\x75\x11\xb4\x99\xbc\x57\xf5\xd8\x87\xc4\xe0\xde\xc5\xf9\xc4\x53\x56\x1f\x02\x15\x54\x66\xb3\x6b\xaa\x28\x68\x4f\x94\xad\x78\x91\x62\x55\x6e\x59\xfa\xd8\x74\x20\x8b\x35\x9f\xb4\x6f\x54\x7e\x76\x04\xf2\x93\x30\x6c\xa2\x18\x62\x73\xdf\x24\x5d\xc3\x0b\x2e\xfb\xca\x2a\x9e\x57\x44\x0a\x28\x1f\x6f\x76\xa2\x1b\x23\x31\x97\xa7\x8f\x56\xd9\xcd\x51\x7c\xb2\x5a\xe5\x1d\x31\x71\x92\x15\xb4\x58\x31\xb3\x13\x2e\x4f\x3b\x9d\xe7\xb0\x66\xa0\xcf\x03\x95\x4b\xc9\xa6\x1d\xee\xc2\xdc\x43\xe1\x73\xda\x8a\x93\x9d\x20\x19\x85\x02\xd4\x44\x9b\x84\xb0\x4d\xc9\xe2\x73\xb6\x11\x35\x9a\xfc\x4a\xcf\xca\x84\xb6\xc3\x25\x2d\x68\x23\xd8\xa7\xac\xfd\x58\xe2\x94\xa1\xf4\xca\x00\x65\x1f\x32\x62\x85\xb0\x94\x9f\x4c\x6f\x49\x9c\x61\x0f\xd5\x10\xad\xed\x11\xfa\x69\xcb\xa2\xec\x99\x31\x76\x91\x11\x20\xea\x75\xc4\x2d\x3c\x12\x8f\x53\x56\x40\x86\x50\x2a\x72\xfb\x61\x71\x01\xe6\x1a\x3f\xce\x9f\xdd\xef\x7e\x7c\x32\x7f\xe6\x78\xeb\x62\x55\x2e\x3e\x0a\xfd\x55\xf5\xbc\xf9\x8c\x83\x2d\x14\x25\x74\xa6\xe6\x35\x76\xbf\x48\xe9\xa0\xdb\xe2\x5c\x45\xbc\x80\x8a\x11\xe2\x39\x37\x9a\x34\xea\x0c\xb3\x0c\xda\xda\x16\x58\x55\x20\x70\x4f\x90\xc7\x9c\xca\x24\x89\x0d\xc0\xd3\x24\x06\xb2\xae\x36\x55\x3f\xa2\x09\xe6\x30\xb9\xd2\x96\xea\xca\x0c\x49\xa8\x0b\xc3\xc4\x28\x89\x4f\x53\x35\xb4\xaf\x1a\x9d\xec\x73\x3a\x48\x7d\x9f\x12\x6d\xec\x68\x7f\xe2\xce\xd2\x78\x88\x51\xe7\xbc\x31\xd3\x21\x2a\xef\xb2\x5d\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\xbb\xbe\x6f\xf8\x5c\xb2\x66\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\x92\xe3\xb7\x75\x8f\x8e\xee\xf5\x32\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\xff\x46\x1b\x4e\x0d\x1d\x7f\x93\x50\x86\x1c\x33\xcf\xf0\x41\xa0\x7c\xe6\xfd\x90\xf0\x96\xfe\x76\x20\xac\xf2\x8e\xa5\x69\x81\xbc\x84\xac\x9f\xa3\x4b\x0c\x37\x94\x8b\x09\xc1\xf6\x5d\xe9\xef\x32\xf0\xe5\xc6\x74\x79\xf9\xea\xca\x0e\xb1\x97\xaf\xd2\x8f\xa5\x56\xfe\xaa\xef\xb7\xdd\x2f\x50\x68\x88\x76\x82\x55\x19\x17\xf9\x0d\x0b\x91\x92\xac\x3f\x90\x71\x55\xe6\x1b\xed\x25\x7f\x4a\x15\xc7\xb4\xbb\x6a\x22\x7f\xd2\xa6\x1b\x28\xca\x12\x88\x53\x3f\x4f\x89\xd1\xee\x50\x53\xea\x45\xc9\xaf\x23\xed\xde\xaf\x49\xbe\xde\xd2\xb9\x8b\xe5\x99\x00\x0c\x8a\xac\xb9\x1e\xbf\x52\x80\x80\x82\x77\x1b\x9a\xf9\x05\x8e\x9b\x54\xe0\xe1\xe3\xec\x51\xa0\xd8\x8c\x2b\x2b\x68\x69\xff\xa1\x0a\xf9\x9b\x85\xde\xb0\xde\xae\xfa\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\xf2\xcf\x77\x15\xdc\x34\x13\xe5\x84\x81\xf9\x42\xc6\xa6\x74\x88\xf1\xb2\x20\x78\xd6\x5c\x1d\x84\xa6\xa9\x27\x90\xaa\x5e\xac\x77\xc5\xc1\x9e\x74\xbb\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\x7a\x5d\x2e\x59\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\x1b\x3e\x2f\x75\x3b\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\x26\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\xf5\x3e\xbf\xe9\xa0\x29\x32\x0e\xc5\xca\x6b\x29\xce\xec\x87\xc4\x9c\x25\x7a\x15\x5e\x91\xd0\x8a\x33\x4c\xb0\xae\x9f\x37\x1b\x27\x8c\xec\x71\x3c\x06\x77\x51\xdd\xd3\xa7\x60\xbb\xd6\xbd\x89\x8f\xf6\x7c\x10\xe6\x23\x8a\x64\x07\x15\xe1\xee\x51\x77\x8a\x89\xb2\x47\x2c\x04\x52\x33\x2c\x92\x11\xff\x16\x5c\x93\x94\x4b\x98\x45\x97\x02\x5d\xc9\x8e\xea\x7f\x2c\x62\x7d\x45\x38\xe4\x63\xa2\x57\x1f\xf0\x5e\x46\xb3\x62\x2a\x7e\x49\xc7\xe1\x3f\xe9\x7a\x5a\x02\x8c\x69\xbb\xd0\xff\x5b\x20\x8f\xa4\xc8\xc5\x12\x03\x9a\xba\x55\xb5\x4d\x1b\xa8\x8d\x43\x14\x7a\xb2\x0d\x04\x69\xbe\xcc\x28\x71\x6c\x60\xfd\x79\x9b\xd7\xdd\x75\x09\x45\xfa\x26\xbd\xe6\x3b\xe3\x99\x36\xcd\x72\xb9\x5c\xec\x1f\x68\x59\x8e\x60\x68\x3a\xdc\x5d\x30\x77\xc1\x44\xc5\x4d\xcb\xcd\x0a\x94\xb5\xe8\x03\xb0\xea\x6b\xea\xac\x0f\x4c\x66\x23\x14\x40\x36\x8e\xee\xc9\xac\x37\x9f\xca\x10\x11\xd7\x7f\x74\xe4\x01\xd6\xf5\xae\x40\x2e\x58\xe2\x69\x92\x46\xa1\xad\xc1\x35\xef\xfc\x26\x1e\x3d\x17\x0d\xee\xce\x69\x8d\x94\xda\x0a\x2f\x0c\x5e\x2b\x83\x0a\xa1\xa5\xf1\x27\xa2\x44\xee\xd9\xb3\x39\x75\x71\xb1\x8a\x56\xe7\x15\x72\x52\xc9\x19\x2d\xd0\xe4\x3d\x37\xfd\x21\x91\x9b\xf6\xcc\x29\xe5\x4f\xe4\xe6\x5d\x24\x5a\x55\xb2\xf7\xa9\x69\xe2\xf9\xaa\xc4\x8a\x88\xde\xfd\xd6\x92\xbc\x0d\x9b\x52\xf4\xef\x0d\xc9\x1c\xd0\xad\xff\x89\xbe\x58\xc6\xaf\x93\xe8\x7a\x71\xa0\x26\x81\x18\x5d\xf5\xbc\xc2\x2e\x68\x61\x90\xd8\x73\xac\x29\x74\x4a\x07\x77\x80\xe6\xe6\x85\x7d\xd3\x7c\xe4\xcc\xf4\x78\x69\xcb\x97\xc2\x89\x1a\xed\x85\x7d\x27\x7c\xc8\xdf\xcc\xb0\x39\xb0\xf8\x8d\x6b\x8a\x60\x4b\x60\x69\x81\x27\xcc\xf2\x66\x01\xfc\x36\xef\x89\x2d\xd6\x72\x10\x13\x0e\x15\x16\xd5\x6c\x57\x85\xbb\xcf\xe6\x5a\xd8\xf6\x43\x50\xf1\x21\xf1\x26\x29\x66\x8d\x32\xa5\x16\x56\x16\xd3\xa9\x8c\xfc\xaf\xf4\xa9\x0a\x1d\xb0\x2f\x7c\xe8\x81\x1c\x37\xc9\x76\xfd\x07\xf3\x98\xe0\x67\xa2\x2a\xb0\x58\xff\xa5\xe4\xfd\x34\x3d\x95\x0f\x3b\xda\xef\x2a\x8c\xa9\x2a\x92\x64\x0b\xbc\x07\x06\x34\x3a\x11\xae\xd3\x6a\x28\xe5\x35\xf1\xed\x70\x67\x67\x9b\x0d\x29\xc4\x84\x6b\x97\x43\x90\x02\xf8\x6e\x22\x38\x96\xb2\x72\x19\xe7\xd5\x3a\xb8\xf8\xe2\xeb\x1c\x3e\x65\x13\xd8\xbe\x9c\xa7\xac\xee\x25\xc2\xa1\xd3\x9f\x0e\x74\x93\xd3\xc1\xf1\x53\x95\x3b\xc5\x12\xcd\x16\x9b\xe8\xe8\x2e\xfa\x82\xcd\x73\x70\x99\x3e\xb6\x23\xe3\x9b\x29\xbd\xec\x79\xa3\x9f\xc9\x6e\xcb\xb7\x27\xc1\x80\x7f\x41\x82\x1b\x70\x9c\x1f\x9c\xc7\x30\x74\x2b\xe6\xa4\x19\x01\x2f\xec\x90\x06\x2b\x97\x99\x2d\x9f\x09\xfb\x30\x5d\x42\xc5\x10\xc4\x6b\x58\xc0\x62\xd4\x38\x06\xc8\x94\xfb\x5c\x0c\x9f\x76\xc6\x74\xd5\xec\xd3\x75\x55\x7f\xec\x14\x9b\xcc\xc7\xc2\xc3\x29\x54\x52\x44\x84\x3b\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\xae\x4b\x16\x93\xc1\xd4\xec\xf2\x8e\x46\xd9\x34\x9d\x2a\x40\x3d\x13\xe1\x34\x28\x55\x14\x4a\x71\xee\x20\x74\x4a\x8e\xed\xca\x10\x6b\x2a\xb1\x4b\x3e\xeb\x00\x56\x68\x56\x6d\xc4\xec\xef\x17\xbb\x02\xc4\xfc\xb8\xd3\x04\xb2\x61\x54\x12\xf7\x3e\xbc\xf7\x78\xdb\xd8\x05\xa3\x71\x43\xcb\x3c\xb2\x4d\x5f\x30\x80\x2d\x3b\xea\xec\x90\x3e\xb4\x02\x53\xe1\xdf\x41\x26\x46\x04\xe1\xa5\x90\x4c\xbc\x63\x10\xcd\x3a\x12\xed\x4e\xf4\x32\xc2\xe5\x33\x66\x83\xfc\xb7\xb8\xbe\x73\x4a\x05\x3e\x90\x67\x03\x10\x3d\xb0\x47\x90\x93\x12\xb4\xb5\x75\x50\x7a\x1e\xf4\x7e\xb4\x56\xac\xdc\x9e\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\x6d\x5b\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\x18\x11\x72\x89\xee\x4c\xba\x46\x37\x64\x47\x7a\xfc\x59\x55\xcb\x15\x8d\xab\xda\xf0\xd5\x31\xc8\xc9\xee\x27\xfd\xe9\x94\x7f\x11\x43\x69\x96\x35\xeb\xae\xb8\x05\xb1\xe1\x72\x1b\xcc\x8f\x5d\xdf\x36\xf5\xf2\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\xbb\xf9\x83\x2e\x5d\xb2\x05\x2a\x2e\x55\xf2\xc0\x2e\x55\xad\x06\xc4\xc0\x6e\x5f\x3b\xb4\xc0\x4a\x95\x16\x7a\xd7\xac\x69\x95\xc4\x45\x9a\xcd\x46\xe6\x97\x36\x80\x8d\x40\xa2\xff\x30\x34\x28\x6b\x60\xae\x6c\x15\x3f\x54\xe1\xcc\x91\xb9\x9f\x1f\x9d\x36\x13\xf7\x22\x3d\x89\x0a\x5c\x0c\x8c\x9b\xd3\xba\x0f\xb6\x0d\xd6\x91\xa4\xae\x18\x04\x85\x71\x31\x4c\x24\xab\x9d\xbc\x8a\xc6\x94\x2c\x38\x09\xa0\x0e\x2b\x4f\x45\xa9\x27\x22\x31\x71\x9a\xb5\x29\xb2\x42\xc9\xca\x6d\x21\xad\x80\x7e\x79\xaf\x30\x15\x2e\x04\x5f\xaf\xcc\x61\x82\x1d\xac\x72\x65\x6c\x32\x7a\x65\x6b\x36\x82\x80\xb1\x29\x4e\x3c\x67\x1b\xc2\x4c\xf1\x36\xeb\x45\xc8\xd4\xc4\x42\x49\x18\x9b\x90\x24\x9d\x34\x98\x6d\x7f\x21\x53\x1b\xb5\xeb\x07\x6e\xcd\x7d\x01\x5f\xc3\x98\x8e\x81\x0e\x1a\x0b\x74\x23\x3a\x53\x6f\x54\x13\x82\x0c\xb6\x6e\xf5\xa7\x9e\xb7\x8d\xde\x8f\xa5\x96\x88\x39\xa1\x63\x4e\x5f\x46\x8b\x99\x3b\x01\x7b\x44\xb1\xb7\x81\x72\xe5\xbf\xa6\x45\x4e\x9c\xa0\x6f\x3e\x12\x31\x8d\x8b\x20\xfd\x50\x21\xc7\x61\xec\xac\xa1\xfc\xe5\xd8\xb3\x87\xe1\xe9\x43\xef\x99\x0f\xb2\x98\x80\xb3\x68\xad\xce\xe6\x49\x34\x43\xb0\xf5\x66\xc3\x90\x42\x38\x89\x32\x02\x35\xec\x71\x1c\x80\x24\xac\x9a\x81\xa0\xbe\xe5\x0f\xfd\x1d\x4e\x4b\x54\x7f\xb0\x5c\x88\x81\xef\xea\x80\x81\x0a\x39\x64\x82\x0a\x37\xc8\x0b\x3a\x4a\xc2\xb0\xf1\x58\x2a\xbc\xe2\xec\x4e\xad\x7a\xf5\xba\xde\x8a\xbc\xd4\x44\xac\x01\x00\x0a\xc2\x3b\x87\x08\xfc\xf2\x5a\x05\xab\x45\x4d\x31\xd4\x64\x11\x73\x40\x54\x67\x2c\x73\x25\xa6\x19\xe9\xf1\xc5\x6b\xda\x33\x5c\x83\x56\xe9\xcf\x39\x49\xd2\xd2\x85\xbd\xd3\x68\x30\xb1\x0d\x79\xae\x93\xf9\xa5\xb8\x29\x50\x51\x12\x4b\xdc\x0d\x6a\x34\x20\x19\x4c\x9c\x2f\x38\x2e\xbb\x40\xcb\x23\xad\xa1\x27\xc3\xdd\xca\x0d\xf5\x1b\xc2\xac\xd3\x35\xf2\xd2\xda\xde\x30\xff\x0f\x6c\xb1\x72\xc1\xd0\x1e\x1c\x7c\x60\x04\x46\x90\xd0\x74\xa4\xbc\x84\x5b\xc7\x3f\xac\xc3\xca\x41\xc2\xa9\x0c\xd9\xc8\xe4\x64\x7a\xa6\x32\x59\x6c\x8a\xb3\x6c\xad\x9e\x78\xcc\x77\xf1\x19\x26\x7c\x7f\x0e\xbf\x85\xcb\x84\xa3\x0a\x48\xf9\x62\xb2\x59\x47\xd1\xd2\xf4\x80\xdf\xa4\xb2\x11\x8a\x21\x03\xb7\x22\xa7\x0b\xa5\x88\xc0\x46\x98\x6a\xd9\x97\x6b\x36\xee\xd5\xd6\xfd\xf5\xa6\x0e\x3d\xba\xf1\x57\xa0\xe0\x24\x5a\x7a\x11\x57\x50\x11\xaa\xe9\xac\x32\x82\xa0\xe5\x86\x4b\x7e\x39\xca\xdb\x7e\x7d\x72\xfc\xf6\xed\xf9\x95\xdf\xa6\x79\x1d\xd4\x05\x09\x13\xdf\x38\x73\xb8\x51\xbf\xcc\x28\xce\x4d\x60\x0c\xe1\xcd\xf2\xb4\xc4\x21\xb8\x90\x4d\x59\xed\xf4\xb9\x6c\xc0\x7b\x1a\xee\x8b\xf1\xf2\xa8\xff\xc5\xa1\xf9\x4b\xde\xb3\x7c\xf3\x21\x31\x65\xf7\x39\xff\x4d\xc2\xfb\x82\xe0\x8e\x06\x4b\xcf\x5f\xe5\x78\xd3\x7b\xea\x40\x53\x8c\xee\x0f\xc0\xa4\x77\x39\x8e\x46\x84\xfb\x06\x7b\xc5\x75\x8a\xcb\xec\x23\x56\x87\x36\x2d\x16\x0c\x23\x77\x57\x57\xbf\xed\x20\xa0\xf1\xc1\x88\x98\x07\x5b\x59\xce\xab\xb5\x6c\x28\x7f\x71\x3f\x24\x9d\xbf\x06\xe6\xe1\x41\xe3\xf4\xeb\xc7\x6e\xcb\x46\xaa\xb4\x37\x74\x4f\xef\xed\xaa\x94\xb5\x6b\x6c\xa2\x75\xef\x19\x1d\x63\xf8\x8a\x9b\xa6\x8f\x20\x9e\x8d\xaa\x63\x17\xb1\x85\xa8\xe2\x9c\xb1\x0f\xe8\x56\xd3\x79\xb5\xb0\xc8\x1b\xe9\xff\x04\xf1\x7f\xa0\x4d\xf6\x47\xf3\xe3\x78\xa8\xa7\x64\xc2\x11\xd6\xee\xa7\x7c\xbd\x8b\x95\x25\xdc\x3a\x97\xe9\x1e\x25\xb0\x7d\xf7\x65\x61\xcd\x03\x57\x46\xce\x20\x6a\xf8\x09\x48\xeb\x6f\x77\x68\x62\xa7\x47\x16\xfd\xbe\x49\xd0\x13\x55\x40\x0f\x5d\xe3\x90\x67\x36\xee\x9c\x07\x43\x77\xa4\x4e\xcc\x46\xe0\xc4\x92\xaf\x7b\x51\x3d\xa7\xc1\x6c\x32\x6b\xc1\x20\xca\x90\x62\xf4\x8a\xd0\x71\xb0\x6e\xd1\x56\x30\xd4\x97\x74\x76\x84\x4c\x03\x27\x48\x97\xe8\xdb\xbd\x24\xba\x27\x14\xcd\x96\x55\x4f\x47\x6e\x76\xc7\x82\x59\x77\x42\x6c\x83\x76\x32\xb8\x50\xca\x97\xa5\x8c\x8a\xf2\xa6\x2f\xb0\x50\x99\xb1\xa8\xa9\x2b\x80\x3f\xf4\xf7\x44\x29\x05\x34\x07\x4e\xbe\xfd\x68\xb2\xaa\xae\x78\xe1\xbf\xa6\x3f\xb4\xa9\xcb\x11\x20\x26\x53\x91\x6f\x51\x89\xea\x77\xe4\x10\xee\xea\x51\x33\x3b\x9d\x15\xb5\xaf\x0b\xe6\x45\x2d\xc1\x55\x83\x0e\xb4\x21\x21\x7d\x8e\x04\xf5\x9b\xa4\x9e\xd0\x2c\x7c\x12\x71\x48\x3c\x29\x5f\x5b\xca\x43\x3e\x02\x3e\x4a\xf6\x7c\x13\x2c\x4a\xe9\xbf\xea\x27\x74\xd2\xcb\xfc\x77\x49\xbd\x74\x3f\x30\xed\x9d\x12\x42\x77\x40\x23\x3d\xbc\xd6\xfd\x7a\xc5\xf4\xb0\x86\xdb\xf5\xd3\x6c\xd9\x94\xf1\x6d\x83\x2d\x84\xc8\x7a\x22\x51\x8f\x50\x73\x8c\x73\x2e\xa1\xe2\x19\x17\xe6\x1e\xe6\x29\xa6\x3c\xc9\xe3\x65\x0e\x8b\xd0\x39\x2d\xd3\x7b\xcf\x04\xdb\xb6\xc6\xad\x56\x9d\xbc\x33\x75\x4a\x0d\x66\x4f\x21\x66\xb2\x90\xed\xec\xcc\xa6\x41\x7c\x2e\x55\x3d\xd0\x34\x54\xb4\x0d\xa8\x28\x96\x07\x8e\x31\x4f\x5e\xbe\xbe\x82\x5b\x0c\xcd\x35\xdc\x18\xcc\xf7\x87\x0d\x86\x67\xae\x4e\xde\x21\xaa\xae\x13\xc9\xa1\xae\x80\x78\x5e\xbd\x76\xe5\x6f\xd3\x41\xec\x4d\x4e\xba\x5a\x59\xc8\xfb\x7c\x6d\x76\x4f\x09\x18\xb3\x58\x7e\x2d\x89\x5a\x90\x13\x71\x84\x8e\xaf\x74\xcc\x66\x2a\x0f\x3d\xb2\x12\x61\x11\xc6\x77\x94\x61\x5c\x3b\xce\x03\x17\x1b\xf6\x0d\x88\x59\x0e\x3c\x7c\x83\x79\x0b\x2d\xfa\x78\x8f\x2b\x78\x93\xde\xde\x64\xac\x6a\xc6\xbe\xbc\xbd\xf1\x09\x81\x00\x43\x19\x55\x04\xec\x8c\x2f\x2e\x30\x4f\xff\xf1\xbf\xff\xcf\xe3\x13\xee\xf8\x49\xdf\xae\xe9\x4b\xe5\x43\x86\x17\x44\x4a\x05\xe9\xf9\xbf\x92\x9c\xbf\x57\x4b\x8b\x5f\xe4\x2b\xb1\xdf\x58\x6c\x94\xdf\xa9\x7e\x18\x1f\x89\xfe\xe2\x35\x97\xa8\xc3\x32\x2f\xb6\x84\x0f\x59\x3a\xf1\x74\xc0\x0a\x59\xe4\x6f\xbb\x6a\xf1\x31\x13\xdd\xc0\xd3\xf4\xcf\xfc\x2b\x85\xaf\xaa\xee\x12\xcc\x79\x1c\x1b\x01\x79\x0d\x78\x51\x68\xd1\x0b\xd6\xaa\x76\xf5\x9e\xed\xe4\xf1\xae\x77\x63\x66\x82\x06\xc8\x6e\x38\xc9\x76\xc7\xc6\x45\x3c\xa5\xd6\xda\x05\xa5\xc0\xa7\x89\x13\x59\x46\x09\x6a\x70\xf7\x84\x51\x1d\x68\x9e\xba\x2b\x3e\x69\x93\x9b\x3b\xb2\xbc\xa6\x8b\x0d\x9e\xe7\x39\x0d\x59\x05\xed\xc4\xf1\x43\xe5\x83\x7d\x5b\xe2\xf8\x40\x7f\x12\x62\xb3\x6c\x8f\xa6\x97\x8e\xec\x8b\xd9\xe7\xb8\x64\x43\xba\x5d\x39\xf2\xcd\x69\xbe\xd4\x8a\x70\x6e\x78\xae\x9f\x09\xa5\xf3\xef\x2b\xfa\x33\xf2\x9a\x66\x1f\xeb\xb1\x6f\xf5\x3a\x9f\x97\x48\x7e\x83\x0f\x5a\x30\xc4\xe9\x7b\x9a\x05\x28\xc0\xdc\x8f\x84\xd1\x50\xf5\x42\x7c\xf8\x4a\xd4\x69\x41\x2e\x18\xe5\x33\xc1\xf5\x4d\x9b\xb3\x05\xef\xbb\x7c\x2f\x3f\x09\x45\xea\x7c\xfd\x4a\xbe\x24\x19\xf6\xe0\x02\x0a\x73\x70\x07\x0f\xd1\x50\x57\xc0\x85\x7d\x27\xd6\x81\xd9\xb8\x23\x96\x33\xf0\xfd\x4e\x17\x83\xfc\x6b\x39\xe0\xbe\xe0\xe3\xad\xa5\xe5\xe0\xc5\xa9\x99\xb4\xb9\xf4\x0d\x2d\x23\xb9\xe3\x38\x93\x2f\x97\x53\x88\x8d\xe8\x29\xf6\x40\x4d\x33\xfb\xfc\x73\xfe\xeb\x52\x89\x26\x55\xfa\xa1\xbf\xce\xd6\x5d\x42\x23\xf0\xc9\x56\x9c\xcd\x7d\xf2\x6c\x38\x17\x41\x56\xcd\x02\xc5\x1c\x97\x49\xb4\xbc\x90\x1f\x66\x2f\x08\xff\x6d\xe6\xca\x9f\xf0\xcf\x74\x3d\xaa\xc5\x4d\x6e\x38\xb7\x83\x66\x42\x18\x6a\x6a\x12\x4c\x9a\x0b\x21\xa5\xc5\xcd\x14\x30\x9d\x66\xea\x08\xf6\x9c\x12\x42\xd2\x8a\x2a\x66\x39\x7c\x50\x33\x44\xf3\x69\x78\xda\xe6\xd8\x1f\x0a\x87\x13\xfd\x1c\xf7\x33\x00\x92\x6e\xe6\x13\xa0\xac\x23\xf2\x70\x34\xf0\x21\x90\xaa\x31\x1d\xcf\x19\xce\x9e\x9f\x1f\x9a\xda\xe1\x04\x49\x66\x46\x92\xd3\xa2\x74\xde\x1c\x00\x82\x04\xc1\x61\x0a\xa2\x66\x5c\x65\xda\x58\x54\x1f\x10\xda\xe7\x73\xca\xbe\x5f\x00\x9b\xae\x30\xe3\xca\x67\x09\xea\x2c\x53\x99\x8b\xd5\x1c\x55\x19\xe6\x91\xb0\x93\x89\xe0\x27\x88\x70\x42\xe0\x7a\xa2\xc4\xad\x14\x35\x84\x39\x58\xf3\x88\x6e\xb4\xe4\x2d\xd3\xeb\x21\xd8\xb1\xff\x70\xd5\x07\xca\xa9\xb4\x05\x19\x6b\x9c\x33\x63\x9f\x1f\xc7\x3f\x8f\x61\x69\x02\x1e\x3a\x05\xda\x69\xb8\x12\x12\xab\x79\x3f\x77\x5d\x2d\x54\x61\x34\x55\x48\x66\xb9\xc8\xe6\x37\x5a\x46\xe6\x19\xbe\x94\x07\x8a\x6c\xd8\x58\x05\x87\x27\x2d\x72\xe6\x12\x26\x8a\x74\xea\x8b\xcd\xce\xd0\xe3\x9c\x19\x6f\x46\x30\x66\x61\xde\xd4\x4d\x82\x30\x95\x02\xe4\x1c\x1f\x53\x20\xa2\x46\x55\x45\x08\xef\x02\xe2\x75\x60\x17\xaf\x93\x0d\xb3\x85\x8e\x2b\xf1\x06\xf6\x3a\xed\x17\x94\x63\xe3\x57\xe6\xab\xa2\x35\x3f\x6b\x60\x90\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\x85\xc4\xfb\xef\x3e\xd0\x69\xf4\xfe\xfb\xef\x3f\xe0\x26\x62\x54\x38\xbb\x66\x45\xdc\xb8\x06\x14\x34\xe8\x6d\x5b\x7e\xaa\x9a\x5d\x27\x32\x1a\x3e\x3d\x7f\xf8\x2c\x53\xf1\xb9\x8f\x97\xb8\xf3\x09\x1f\xac\xf0\xc2\x65\xc5\x2b\xbc\xde\x6d\x32\x1d\x63\x27\x1c\xc0\x7e\xb9\xe2\x86\x81\x2c\xe7\x26\x7f\x75\xbf\x79\xb8\x55\xc1\x83\xa5\xce\xdb\x21\xfc\x5f\xe4\xd7\x33\x0c\x84\x87\xfe\xab\x6b\xa9\x09\xee\x30\xae\xc4\xad\x9d\x65\x66\x77\x9b\x72\x53\xf6\xb3\x98\x2b\x59\x88\x15\x74\x39\xce\xd2\x5e\x78\x10\x9d\x37\x98\xfc\x86\xe0\x6d\x09\xc4\x18\xdc\x3b\xfc\x1c\x64\xde\x56\x59\x1b\x15\x50\x56\xeb\xa9\x44\x41\x07\xb8\x56\x4c\xc9\x36\xf4\x75\x68\x92\xf6\x5c\x1d\xf6\xf3\x2b\x6b\x11\x79\x82\x84\xd6\x6b\x57\xcf\x35\x61\xbc\x5e\x40\xdf\x8d\x2b\x01\x1e\xaa\x9a\x7c\x0a\xf4\x57\x36\xb1\x6d\x34\x40\xd4\x05\x3e\x2c\x59\x14\x4c\x6a\xcf\xef\x68\x33\x52\xc6\x69\xa2\x79\x6f\xd1\x91\x80\x0e\x3f\xe0\xd8\xe6\xb1\xc5\xb7\x42\x9c\x14\x81\x56\x75\x66\x6e\x01\x7a\x6a\x20\x66\xc9\xa6\x6c\x32\x22\x22\x23\x76\x52\x55\xfd\xee\x41\x87\xba\xe8\xd2\xd0\x1c\xf4\xe4\xca\x98\x27\x32\x5c\xad\x65\x01\x8d\xc7\xcf\xf4\xc7\xe1\x75\x60\x9e\x63\xfd\xe3\x56\xa8\xfb\xf4\xc7\x92\x64\x5f\xb4\x45\xe7\xf7\xed\x38\x7f\xd1\xac\x1b\xbf\xaf\xe3\xd7\x10\x40\xf4\xad\xf7\x8b\x81\x6c\x26\xd9\x9e\xb6\x75\xf5\x72\xc2\x60\xe7\x11\xc8\x89\xc1\x48\xc6\xc0\xf8\x2c\xce\x74\x7e\x2a\xd2\x41\x78\xab\x58\x20\x84\x71\x2d\x6a\xc2\x05\x50\xa7\xf0\x9d\x04\x9b\xd2\xec\x8b\x94\x11\x6a\xf2\x59\x66\x0f\x4d\x20\xf8\x2e\x3b\x50\xee\x6b\xcd\x87\x75\xf9\xd3\x4d\xfb\x33\xb1\xf4\xf4\x8e\x4b\x43\x39\x04\x05\x32\x78\x78\x18\xd2\x4c\xd6\x06\xe7\x44\x97\x62\x30\xa3\x07\x0d\x4e\x51\x3b\xa1\x6e\x1a\xce\xb0\x60\xc0\xfd\xbe\x49\xdd\x11\x0d\xa1\xcd\x78\x97\xc8\x53\x2e\x6c\xee\x7b\x58\x1b\x5a\x7e\x36\xa8\x16\x2e\xd8\x4f\x61\x9a\x37\x6c\x50\x5b\x78\x9a\xea\x97\xe6\x47\xa7\xc7\xe1\xa9\xd1\x46\xde\xb0\x2a\x6c\xb7\xc6\x06\x81\x9b\x50\xf9\x71\x2d\x77\x78\x06\x84\xe8\x50\x2c\xd1\xf8\xb6\x02\x2e\x2f\xb1\xa3\xd4\x34\x83\x73\xe7\xe5\x22\x87\x15\x2e\xbc\xb7\x6a\xd6\xf5\xe6\x45\x30\x7a\x02\xe1\x58\x17\x56\x3f\x9b\x35\x87\x11\xbf\x98\xa7\xb9\xea\x4d\x1f\x32\xc0\xd4\xbc\xec\xf7\x3c\xaf\x62\x2a\xc1\xc8\x15\xc5\x71\xf7\x43\xb8\x53\x13\x7b\x7b\x82\x36\x9e\xf0\x76\x5d\x28\xab\xfb\x17\xfc\x10\x86\xa7\xa8\x1c\x08\xf3\x13\x64\x80\xd5\x6e\x93\xca\xe4\x08\x4d\xfa\xa6\xa4\x46\xb1\xc5\x17\x76\xbe\x14\xc6\xfb\x23\xfb\xda\x19\x67\xc5\x37\x51\x38\x9b\x42\x68\xfa\xf7\x2e\x5d\xeb\x47\x4d\xba\x93\x5b\x33\x92\xf6\x8f\x55\x4f\xa5\xff\xd3\x07\xa3\x51\x3a\x0a\x64\x21\x2f\x05\x7d\xfa\x9f\x11\xd4\xf0\x58\xed\xf3\x44\xfb\x0b\x82\x2a\xcd\x4c\xb2\xd0\x7c\xdd\x75\x89\x54\x04\x35\xce\x13\x42\x32\xf4\x9e\x2f\x9c\x49\xea\x35\x1d\xf1\x99\x11\x28\x36\xdd\x75\xd7\x2c\x42\x0d\x44\xdc\xd6\xb7\xc4\x54\xe3\x72\xae\x46\xd5\xba\x95\xaf\x30\xf1\xc2\x97\x2a\x38\x36\x16\xad\x0f\xbb\xe4\xa4\x5f\xee\x3a\x63\xba\x2e\x85\x2d\x76\xde\x72\x9d\xb1\x48\x85\xa0\xfb\x0a\xf8\x99\xf5\xbd\xea\x32\x58\x37\x89\x75\xf4\x95\x9a\x2c\xad\xab\x45\x9f\xba\x74\x6a\x4e\xed\xd7\x61\xe3\xb2\x94\x50\x3a\xce\x58\x9d\x36\xcb\x6e\x85\xd8\x1c\x0c\x70\x4d\x5c\x6a\xd3\x40\x8a\x73\x2c\x22\xaf\x33\xa8\xf1\x31\xd4\x30\x60\x07\xab\x5b\x0d\xb9\x0c\xf1\x78\x80\x61\x51\x8c\x0d\x86\x1b\x54\x0b\x3d\xf7\xa1\x9a\x1f\xf4\xb7\xd7\x6d\x5c\x40\xfc\x4a\x78\xd1\xdb\xd0\x3b\xb7\x7c\x4d\x37\x72\xb0\xc9\xa9\x18\x6e\xa1\x0a\x8e\xe6\xa1\x91\x70\x0f\x30\x1b\xaa\xfa\x88\x68\x86\x6c\x05\x04\x34\xb5\xba\x41\xb4\xbb\x5a\x17\x21\x4a\x41\x0b\xc8\x64\xfe\xeb\x78\xbc\x4a\xcc\x87\xc6\x1a\xb2\xad\x5a\xb6\xed\x88\x9e\x1e\xfe\xcb\xfd\xe2\x91\x2c\x64\x98\x0c\x8d\xee\x59\x38\x51\xd0\x19\x6e\x91\x3c\xe6\xaa\x83\xf3\x36\x93\x0d\x6f\x16\x0c\x44\xdf\xb3\x5f\x93\x40\x53\x17\xec\x67\xfe\x0c\x1e\x64\x4f\x28\x0c\x82\xdc\x69\xa5\xc1\x10\xa0\xf0\xaa\x98\xfb\x5d\xd4\x76\x93\xd1\xf2\xc8\xf4\x44\x47\x5b\x0a\x2f\x16\xfc\x1a\x76\xc1\x8e\x32\xc3\xaa\xdd\xa1\x20\x1e\x11\xed\xed\x73\xde\x47\xc4\x25\x59\xf8\x74\xa0\x9d\x24\x12\x50\x37\x14\xbd\x1a\x57\x01\x21\xaa\x7e\xc0\xe6\x27\xb1\x63\x62\x1d\xfc\x66\xc3\x8c\x89\xeb\xbe\x30\xd7\x0f\xfa\x94\x46\xcc\xfa\xc0\xf4\xa1\xc5\xf3\x7a\x14\x0f\xb2\x14\x1b\x6c\xfe\x1b\x66\xb8\xf0\x2b\x5a\x55\x26\x53\xaf\x35\xa2\x72\x4d\xf1\x61\x49\x8e\x9c\xd7\xe9\x83\x1b\xfa\xf7\x78\xb3\x79\x5c\x14\x0f\x26\x46\x1d\x88\x46\x6e\xd8\x03\x43\x32\xd5\x42\x0c\x58\x65\x50\x53\x20\x67\x4e\xe3\x8e\x01\xa2\x79\xfa\x85\xa5\x80\x92\xaf\xc3\xd2\xc2\xe3\x4d\x48\xd7\xcf\x5d\xc7\x5b\x40\x43\x0c\xcf\x1b\xa7\x30\xab\x10\xef\xc4\x70\x24\x03\x09\x3d\xc8\x1a\x38\x5d\xdf\xda\x3d\x77\x6d\xa2\x12\x1d\xb1\xef\xcd\x01\x94\x48\x0c\xbe\x83\x08\x09\x24\x63\x8f\x54\x27\x1d\x4f\x00\x4e\xc9\xc6\xbe\xed\x7f\xa6\x7c\x3c\xd5\xf8\x14\x09\xdc\x25\x21\x4f\xc5\x7b\xb5\xb4\x99\xd0\x37\x9c\x5e\xe4\xcb\x67\x05\x31\x64\x54\xce\x08\x7e\x7b\xb0\x55\xd3\x7c\x94\x38\x3a\x73\x7c\xfa\x9c\x25\xc7\x8f\x94\x4c\x8e\x94\xf8\x2a\xce\x25\xd1\xb2\x5a\x84\x71\x65\x9f\x73\xc2\x44\x17\x0b\x9e\xe3\x36\xfb\x5d\x74\x92\xa7\xf8\x95\xfe\x4f\x26\x0c\x07\xa2\x1e\x2b\xe7\x16\x37\x89\x8d\x29\x7c\xae\xfa\x1a\x04\x4d\xa9\x6b\xc4\xb8\x2d\x35\xc6\x67\x76\xfe\x65\xfe\x24\x53\x7e\x24\xb1\x73\xeb\xcc\xd7\xee\xdc\xe3\xf8\x76\x48\x3f\xcf\xcd\xc3\x6e\x0c\xe6\xee\x5d\xbd\x57\x5d\x7c\x39\xc5\xa6\x70\xb5\x18\xd1\xc3\xb3\x8e\xef\x91\x1a\x6c\x58\xa1\x3b\x1f\xd1\x9d\x0b\xcd\xa8\x27\x6e\x68\x01\x60\x58\xd6\x05\xdd\x43\x4c\x62\xf8\xd6\xb2\x64\xd6\xc9\x2d\xbb\xfa\x08\x8a\xa7\x89\x68\x0a\x72\x77\x7a\xef\x60\x8e\x30\xb1\xf5\x41\x07\xee\x62\xda\x88\xab\x8a\x75\x15\x79\xc1\xf4\x0e\xdc\xab\x80\xe9\xe0\xe2\x7a\x00\x68\x48\x39\x27\xfe\x21\x96\x8f\x52\x2c\x8f\xdc\x13\xfb\x40\x83\x25\xd6\x4a\x7c\x65\xe7\x7a\xc4\xec\xa9\x6c\x7b\x38\x06\x8e\xd1\xce\x8e\x0a\xb4\x80\xb2\x6f\xa9\x99\xc7\x90\x95\x24\x98\x24\x06\x21\xeb\xaf\xba\x0e\xf0\x01\x03\x4e\x36\xc8\xfc\x54\x15\x3b\xa2\x3e\x9e\x8b\xdb\xea\xfd\x2e\xae\x97\x56\x3c\xee\xcb\x0f\xd6\x3d\x98\x4f\x08\x11\x2e\xd2\x30\x3c\x43\xaf\xbd\xc3\x73\x37\xd5\x32\x33\x21\xa7\xed\x50\x1c\xc0\x71\x39\xf5\x9e\x7f\x21\xab\x12\x3e\x04\x13\x32\xb1\xf2\x36\x31\xe9\x87\x74\x34\x1f\x31\xb6\xc4\x9b\xd4\x49\x55\x77\x1a\xb1\x8d\x08\x61\x80\xa5\x41\x7d\x40\x58\x60\x6a\x66\xb3\xcf\xc3\xe7\x08\x75\x1a\x05\xd9\xce\x00\x21\x49\x48\x14\x04\x04\x65\x66\x93\x00\x3a\x2a\x1c\x29\x0f\x3e\x72\x5a\x55\xf1\xa1\x0b\xac\x12\x3d\x0f\x6c\x22\xcc\x0e\xfa\x0a\x13\x01\x41\xc0\xeb\x51\xd3\xde\xb5\xef\xc8\x5b\x54\x39\x0b\x0f\x96\x3b\xd9\x78\xad\x2e\xca\x2d\x87\xc8\x64\xc5\xe6\xb5\xec\xb6\xc2\xf3\xef\x68\xf5\xbb\xdb\x5a\x15\x43\xb0\xa9\x66\xcd\x24\x52\x7d\xe5\xb1\x68\x39\xae\xf5\x1d\xad\x7d\x6f\xad\x85\x5b\xd6\xc7\xb2\xdc\x06\x4d\xc4\xdd\x0f\x5c\x44\xc0\x3c\x63\xd3\xac\x09\x8e\xa6\x5e\x90\xe6\x36\x7d\x80\x89\x47\x21\x5e\xbc\x95\x80\xee\x66\x77\x78\x8c\x8d\x17\x88\xa9\x40\x11\x8c\x1d\x6a\x50\x07\xc3\x5a\x9e\x2c\xe0\xdc\x30\xd2\x35\x96\x3c\x51\x95\x18\xff\x0e\xac\x8a\xbc\x1f\xb5\xeb\x9a\x15\x68\x0f\x77\x2f\xb6\xef\x4c\x27\xec\x3a\x1d\x28\x1b\xcf\x87\xc4\x9a\x8a\xcb\x04\x8f\xe7\x24\x48\x3e\x5c\x60\xe0\xa8\x10\xd5\x15\x3b\x2a\x04\x1d\x14\x2a\x3a\x54\xcf\xc9\x64\x1d\x4a\x79\x41\x2d\x72\xcd\x2f\x61\x04\xe3\x0b\x55\xbd\xf7\x07\x43\x9d\x85\xc4\xc0\xa0\x15\x5c\xe9\x33\x0d\x5a\xa6\x4f\x0f\x0c\x7d\xd9\x35\x77\xbf\x6a\x82\x18\x35\xe2\x6f\x81\xdd\x2b\xec\xfa\x2c\xc6\xce\x5e\x04\x1a\xc5\xa4\x8a\x37\x03\xb9\xc7\x76\x23\x13\x7e\x70\x48\xde\xec\xa8\xcf\xeb\xea\x23\xd4\x67\x44\xca\x12\xc5\xf8\xfc\xf2\x0a\x3a\x33\x5a\x32\xb4\xf3\x2e\x99\x53\xa7\x7f\x5d\x95\x35\x02\x6b\x72\x30\x61\x65\x5d\x8b\x05\xbb\x49\x55\xb5\x46\x1d\xdc\x97\x66\xbc\x5e\x17\x6b\x61\x74\xa1\x23\x9d\xc9\x1b\xa2\x3b\x4b\x11\x30\x98\xd7\x66\xb7\x2d\x17\x24\x45\xcf\xf8\xa2\xac\xad\xf1\x0a\x83\x8b\x0d\x7f\xab\x8d\xa6\x1b\x09\x2c\x7a\x58\xc5\x16\xa0\x45\x51\x12\xea\x93\x75\xd7\x1e\xa1\x67\x08\x3a\x25\x37\x1b\x86\x6f\x93\x9a\xc1\x91\xc5\x66\xba\x62\x06\x9f\xaa\xf5\xc9\x6d\xae\x28\x07\xfb\x10\x46\x7d\x94\xa6\xef\x10\x9e\x87\x55\xcd\xbc\x26\xc2\xd4\x0f\x13\x20\xdd\xb6\x11\x13\xd0\x77\xfa\x39\x06\x92\xf3\x15\xf7\xe4\x95\x7c\x8d\x41\xb6\x1a\xbf\xc9\x45\x72\x1a\x83\xcc\x9b\x82\x4f\x4c\xcf\xe9\xcf\x58\xec\x76\x21\xff\x4d\xf6\x06\x71\x6e\x39\x06\x80\xdc\x4b\x73\x06\xa1\xbb\x5c\x5f\x4b\x3c\x07\xd6\x35\xe1\x80\x28\xea\x41\xb6\x9d\x96\x68\xa5\x6c\xeb\x8b\x0a\xd4\xa3\x0f\xce\x2a\x08\xd5\x16\xea\xfe\xd4\xfb\x37\x74\xe7\x1c\xf6\x09\xf7\x1c\xd6\xaf\xd7\x22\xb5\x60\x1a\x70\x1c\x96\xb8\x7a\x47\xbc\x19\xf1\x49\xd2\x6e\x1e\x6d\xcb\xda\x4a\x2c\x3d\xf6\xc3\x22\xa2\x46\x88\x14\x03\x11\xa9\x57\x6c\xb8\x02\x33\x66\x8b\x2f\x0e\x62\x03\xc2\xc6\x3d\x52\xb3\x73\x46\x90\x18\x9c\x8f\x20\xfc\xbd\x28\x80\xcc\xc1\x6b\xb8\x33\x29\xb8\x3f\x5d\xbc\x8a\xd6\x43\xc0\x51\xa2\xb7\x18\xd0\x51\x8d\x90\x27\xba\x5f\xe6\x14\xa6\xfa\x0d\x54\xac\x8c\x2b\x36\xb2\x0c\x56\x37\x6f\xec\x24\x4e\x89\xdc\xdd\x96\xcb\xbc\x2d\x2c\x70\x8c\x72\x1a\x76\x9e\x01\x47\x09\xfd\x84\xf3\x35\x1d\xd7\xb5\x0a\xe2\x8c\x04\xf2\x91\x0d\xa9\x68\xbe\x59\x2a\x32\x0d\x05\xcb\x97\x85\xb0\x31\x76\x55\x24\xe6\xb2\xdb\x32\xbf\x11\xe6\x65\xed\x60\xc8\x0f\xff\x74\x79\xfe\xf6\x28\xfd\xfc\x78\xbf\xdf\x3f\xe6\xe2\x8f\x77\xed\x9a\x9d\xfa\x0a\x0e\x4c\xf3\x3f\xce\xde\x1c\xa5\x65\xbf\x78\x34\xa3\xa3\x7d\x1b\x2b\xc4\xd4\x9a\x14\x97\x15\x4c\x5d\x2c\x6c\xfe\x71\xf6\xa4\x2b\x46\xe3\xbc\x87\xf1\xcf\xc2\x2d\x95\x67\xcf\xcc\x45\x74\x32\xc5\x6c\x24\xd8\x90\x16\x6d\x09\x6b\x0b\x7c\x04\x19\xb4\x3b\x7d\x9c\x0a\x48\x30\x04\xa9\xa8\x1d\xed\xc6\xeb\x85\xc6\x99\x1f\x80\xd8\xe5\xe2\x09\xae\x15\x5d\x26\x26\xce\x6d\x2b\x1c\x61\xaf\x5b\x35\xbb\x75\x11\x73\x4c\xc2\x99\x4e\x44\x59\xfc\x34\x2c\x0c\xbb\x48\x04\x8a\x7e\x9a\xfe\x89\x75\x4b\x3c\x51\x42\x5b\x9c\x65\xb4\x05\xe0\xd9\xb0\x30\x42\x1e\x06\xa2\x34\x0d\x40\x42\x39\x9a\x28\xef\xf3\x9c\x38\x3f\xaa\x44\x4f\x7c\x6c\xa6\xd1\xa7\x1b\x77\x02\x04\xad\x49\x75\xe3\x22\xb1\x66\x6f\x3a\xdb\xf0\x22\xe6\x91\x47\x6a\x38\x69\x6a\xaf\x29\x3c\xa4\x62\x14\x3a\x89\xa2\x80\x3f\x02\x94\xb9\x48\x68\xa5\xea\xd7\x2e\x18\x53\xaa\x31\x3e\xcb\x61\x46\x10\xc4\xa1\xec\xe1\x3e\x3f\xb5\x16\xe5\x0c\xee\x66\xcd\xaf\x1e\xe3\x6f\xba\xc3\x89\x64\x22\x1e\x47\x11\xf7\x00\xeb\x88\xa5\xb4\xfd\x70\x17\x1b\x0a\x68\xca\x9b\xbc\x28\xa3\xbc\x69\xb4\x5d\x2b\xe0\xa0\x8d\xd1\x2e\xa9\xf2\xf4\xf8\x94\xe0\x5b\x38\x24\x10\x88\x51\x50\xa6\xa3\xb4\x38\x36\x70\xdb\x3c\x75\x69\xb1\x78\x65\xab\x14\x7c\x37\x5e\xa2\x8c\x10\x59\x47\x21\x47\x65\x41\x2d\x36\x21\x60\x10\x78\x1b\xb3\x5b\x82\x19\xe2\x8f\x7c\xad\x43\xa1\x5b\x6a\x35\xbf\x39\xf1\xef\x1b\x64\x0e\x1f\xd6\x18\xae\x6c\x92\xd5\xe4\x69\xa6\x13\xf9\x0a\xb1\xb5\x5d\x37\x37\xe6\x8e\x7e\x8a\x5f\x1a\xaf\x26\x1c\x99\x07\xd3\x41\x79\xc8\x40\x5d\xd3\x64\x71\x75\x7f\x0b\xe2\xb3\xaa\x88\x5b\xf3\x09\x19\x45\x09\x26\x3c\xf8\x44\x2a\xf2\x89\xee\x4d\x78\x34\x3b\xa8\xa1\xef\xf5\xa9\x6b\xe1\x80\xef\x75\x5c\x34\xf4\xbf\x0e\x8a\x7e\x81\xff\x75\x8c\xa4\xb1\x77\xb5\x1f\xea\x17\x38\x58\x4f\x0d\x7a\x2c\xd7\x4e\x21\x7e\xa2\xc0\x94\x74\x5b\x84\x63\xfb\x02\x47\xeb\xc1\x59\xf8\x4b\x04\xdc\xa9\x9e\x78\x94\x04\xc8\xbd\x4b\x47\x5c\x54\xd7\xd7\xb3\x79\xdb\xec\x3b\xf6\x66\xc6\x2b\x15\xcc\x65\xf9\x77\x7a\x89\xdf\x02\xc2\xc6\x01\x20\x0a\xf9\x90\x44\x35\x50\x7a\xaa\x77\x81\x92\x88\x9b\xd9\x61\x6c\xfc\x53\xca\x91\x5b\xda\xb7\x74\x12\x3b\xb6\x9c\x99\x14\xa1\x8d\x6e\x9f\xf1\x17\xfc\xb0\xa1\xaf\x66\xf5\x2a\x0a\x5d\x72\x8a\x82\xf1\xa7\x21\xdc\x76\x25\xd8\xc6\xc9\x3d\xb6\x88\xaf\x5e\xd7\x04\xc2\x32\x38\x02\x23\x62\xa8\x20\x9f\x7a\x90\xd0\xdf\x92\x20\x0c\x97\x1e\x42\x11\x84\x45\xff\xfc\xf5\x5b\xf9\x09\x83\x77\x8d\x7f\x04\x8b\x77\xbe\x4e\x4f\xcc\x8c\x7e\x36\x65\x4e\x6f\x79\xe2\xf9\x20\x8a\x11\x7b\x56\x0e\xbf\x1c\x44\xd1\xe6\xd7\xb8\x38\xe2\xbf\x2e\x95\x64\x60\x5f\xec\xa2\x2d\x1f\x0f\x8b\x11\x72\x04\xd5\x97\xf8\x70\xe9\x7a\xf1\xc3\x7f\x5c\x5a\x0e\xa3\x8e\xa7\xc1\xc8\x3d\x46\xcc\x7a\x80\xe8\xee\x7e\x97\x76\x15\x6b\x5b\x95\x40\x07\x0d\x82\x3a\x7c\xe0\x62\xd0\x0e\x1e\x5a\x0b\xc7\x1a\xde\x28\x21\xe6\x42\xb7\x4a\x1d\x7e\xd8\xe1\xa7\x17\x77\x6a\x7d\x38\x65\x16\xf5\x3b\x2a\x2d\x5b\x6c\x69\xb3\x9d\xae\x9b\x25\xa4\x48\x38\x23\xca\x0b\x1a\x3b\x7e\x69\x86\x10\xc1\x71\xb4\x58\xe2\x70\xc4\x5f\x6d\xa8\xfe\x4f\x12\xf9\x5c\xaa\x27\xe9\xc1\xb9\x7b\x93\x20\x51\x8b\xc7\xa9\xe5\xe1\x48\x6d\xf1\xe1\xa2\x32\x3e\xb2\xb2\xe9\xb6\xbd\xcf\x09\xe5\x43\x32\x59\x84\xae\x2c\x2c\xa6\x70\x00\x0c\x19\x7b\xd0\x81\x88\x11\x5b\xea\x98\xf9\x5a\xce\xbe\xd5\xe0\x5c\xfc\x37\x24\x0b\x7d\x94\xe4\x42\xbe\x5c\x0e\x4b\xc0\x22\xc6\xbd\x91\x2f\x79\x40\x6f\x48\x4d\xe3\x80\x04\x94\xf7\x78\x38\xd7\x01\xbc\x43\xc0\x5f\xcb\xff\xf8\x5f\xff\x97\x95\xb2\x0d\xed\xb0\x88\x1e\xa2\x01\x38\x3d\xad\x98\x07\x9d\x7f\x15\xe7\x31\xf8\xba\xef\xc8\xf0\x5a\xd0\x35\xa8\xa4\xe2\x89\x66\x44\xef\xfc\x80\x84\xad\x15\xb6\xf0\x1b\x2c\x18\xd0\x8f\x5f\x32\xb8\xf8\x1c\xd6\x61\x44\x90\xe9\x7e\xe3\x02\x03\x2a\xa0\x70\x10\x8c\xa8\x57\x22\x99\xde\x9e\xdc\xda\xd5\xc7\x3c\xc0\x84\xed\x3b\x49\xde\x37\xed\xf2\x83\x0f\x2e\xeb\xb4\x5c\x51\x60\x59\x9c\x41\x19\xc6\x85\x67\x3b\x00\xe8\x43\xb6\xf9\x1a\x6d\x52\x5e\x32\xe9\x8d\x1f\x3f\x13\x0d\x80\x44\xf7\x86\x01\x9b\xf9\x44\xcf\xcc\x23\x4b\x62\x53\xea\xe5\x7a\xf4\x2a\x25\x1c\xa5\x4c\x9d\x6a\x72\x64\x91\xe8\xad\x2f\x3b\xf6\xf0\x07\x87\x0f\xe5\x77\xf4\x58\x9f\x25\xf7\x75\xaf\x91\x40\x8c\x01\x09\x08\x8d\x0b\x87\x26\xfe\x9b\x20\x20\xa1\x6a\xf0\x38\x55\xbf\x34\x7d\x10\xf4\x30\x7a\x3b\x22\xf0\x20\x43\x30\xd4\xe8\x41\x08\xae\x1c\x58\x99\xb8\xf0\x1f\x85\xc8\x05\x0a\x91\x7a\x1b\x74\xe4\x70\xfc\x60\x8d\x4b\x1e\x8d\xb0\x05\xd5\x39\x1b\x92\xd5\x22\x5c\x82\x4e\x10\xa0\xb5\x8e\xcc\x5e\xbb\x99\x6f\x26\x58\x3f\x2b\xb1\x06\xf0\xc5\xf0\x2c\xd3\x9c\x56\xd2\x4f\x02\x1f\xf9\x4d\xea\xb1\x30\x97\x80\x01\x92\x9c\xae\xe9\x84\xb1\x8e\xce\x89\xa8\x88\x65\xc1\x9f\x0e\xf8\xcc\x8e\x83\x19\x7f\xbd\xd7\xec\xb8\x8e\xdb\xfd\x66\xff\xe8\x45\xf4\x74\xa0\xc2\x50\x19\x36\x88\x58\xe8\xb2\xa6\x42\x17\xfe\x91\x6b\xe1\x18\x34\x10\xb1\x22\x14\xb8\x9a\xbe\xf4\xfa\x41\x6f\x9b\x89\x52\xff\xb1\xcb\xe6\x38\x84\xef\xb0\xd7\xa3\x18\x7b\x51\xa7\xbf\x2e\xd6\xde\xc1\x5b\xdb\x88\x57\x0c\x0f\x87\xa3\x80\x19\x18\xe0\xad\x45\xe2\xf0\x19\x61\x87\x9d\x3a\x30\xb8\x05\xd4\x3b\x05\x09\x9c\x21\x3a\xee\xbb\xa3\x67\x1c\xb8\x66\xb9\x2d\x8c\xc6\xb0\x97\xcc\x63\x9c\x53\x47\xd8\xc9\x5b\x4b\x84\x7b\x6d\x7c\x53\xff\x8f\x84\xd6\x98\xbe\x98\xe0\xc3\xe3\xde\x74\x66\xd8\x99\x0d\x7f\x5e\x13\xc1\x87\x0f\xc3\x97\x9c\x4e\x3c\xa3\xf5\x98\x83\x54\x25\xc8\x1d\x84\x8c\x56\xae\x3d\xd3\x9b\x3b\x8b\xaa\x35\x48\xf7\x2c\x0f\x76\xd3\x7a\x37\xe9\x81\xe4\x37\x44\x98\xc9\x9c\x61\xf9\xb8\x8d\xd8\x87\xc1\x52\xdd\xdd\xd0\x19\x3e\x5c\x3a\x61\x6d\x51\x22\x44\xc1\x89\x7c\xb9\x1c\x3d\xa4\x69\x18\x6e\xdf\x09\x09\xb1\x0c\xbf\xa3\x20\x55\x77\x3b\xc5\x35\xbb\x50\xd3\xa4\xdc\x6c\x79\x0a\xf3\xd4\xa9\x09\x59\xbe\x95\x5d\x50\x64\x41\xed\x15\x44\xeb\x1f\x86\x75\xc9\x6b\x39\xba\x6b\xbe\x6d\xf6\x89\x6c\x99\x33\xb8\x52\x48\x48\x60\x4d\x89\xbb\x24\x69\x2c\x90\x68\xbc\xa6\x54\x22\x49\x68\x44\x9f\x71\xfe\x20\xf8\x00\x76\x0c\x17\x76\xc0\x22\x7c\xb3\x50\xa9\x4e\x3b\xb5\xdc\xcd\xc4\xde\xf8\x52\x2b\x84\x52\xdf\x2c\x64\xd3\xb8\xdd\x10\xe2\x4b\x1a\xc6\xe3\xc8\xc3\xe6\x8e\x4c\x31\x86\x00\x90\xaa\xb1\x93\x48\x77\xd2\x8a\xbe\x78\x6b\xfd\x70\x8f\xce\xf9\x7e\x84\x10\x5f\xd2\x0f\x6e\x05\xf6\xe7\x72\x48\xb9\xa5\x3f\x74\xaa\xd4\x78\x96\x91\xcd\xc0\xb0\x8b\xde\xa9\xfe\x2a\xd8\xa7\x61\xa7\x52\x0c\xe4\x0e\xd6\x43\x8f\x37\x4c\xc9\x91\xfb\xe4\x09\xd1\x40\xcc\x89\x26\x43\x5d\xdd\xbd\xc4\x61\xe8\xcf\x25\x1d\x68\x60\x28\xe4\xc1\x26\x77\x1d\xe9\x97\x17\xe5\x20\x5b\x9d\xa9\x3c\x27\x99\x77\x6f\xb8\x02\x67\x41\x9e\x44\xae\x0b\xb7\x0c\x08\x76\x36\x93\x85\x3c\x77\xe0\xd6\x38\xb3\xba\xa0\xd5\x71\x65\x8e\x55\x03\xca\xb1\xe8\x31\x9c\xf1\xce\x50\x2a\x0b\xb4\xb4\xcc\x94\x8f\x4c\x56\x75\x56\x0c\x80\xda\xe4\x37\x91\x9d\x10\xcc\x9a\x37\xf1\xf3\xc0\xb7\x28\x76\xc6\x5d\xf1\xbb\xb6\xbc\x21\xe0\x08\xe6\xa0\x36\x67\x16\x2e\xf5\x31\x81\x78\xb2\x5b\xb6\xf0\x81\xb0\xb9\x66\x66\x11\x90\x02\x2a\xfc\xc1\x8d\xd2\xbd\x4a\xe9\xb9\x01\xae\x9d\xa9\xa2\x07\xb7\x31\x85\xaf\xe8\x00\xd8\xc6\xed\x3d\x00\x5b\x10\xb7\x38\xea\x46\xc0\x02\x6e\xeb\x88\x3e\x27\xf9\xe5\x1d\x01\xdf\xf8\xc2\x8e\x1c\x59\x2f\x34\xfe\x76\x51\x4c\xae\xff\xdb\xfa\x37\x38\xe6\x80\x38\xa3\x00\xef\x03\x82\x8f\x9e\xbf\x77\x44\x1f\x58\xcc\x59\xb5\xb0\xcd\x50\x0b\x3e\xdd\xce\x7c\x55\x35\x4d\x21\xce\xad\x75\x1f\x5a\xf9\xc5\xb1\x4c\xd8\xc0\xac\x6f\x6f\x54\x24\xe1\xc1\xc5\xa1\x54\xbc\x71\x8f\x1c\xbe\x70\x77\x2c\x41\xff\xdf\x03\xed\x1f\x12\xf7\xa2\x21\x2f\x65\xfb\x4e\x44\x51\x23\xf7\x67\x08\xbb\xee\xe3\xad\xa7\xc3\xf8\xeb\xb7\xc6\xbe\x8f\x63\xfe\x0f\x1f\x7f\xe8\x24\x44\xda\xd2\x64\x39\x7b\x47\x32\x51\xa3\x26\x66\xac\x37\x84\x83\x0d\x1e\x11\x5e\x70\x18\xe4\xa6\xae\xc4\x7c\xe6\x4c\xbe\x68\xec\x09\xc6\x94\x6d\x25\x7c\xc4\x0b\xfe\x21\xa1\x29\x35\x85\x43\x53\x26\x7d\xd3\x43\xa0\xb8\xe2\xbf\x3f\xa4\xf7\x8b\xc4\x0f\x1d\x2a\x4b\xd6\x0e\xa9\x94\x20\xdf\x41\x7e\x10\xa8\x1d\x26\xf5\xad\x85\x9e\xf7\x35\xa0\x9b\x50\x8c\xee\x82\x6e\x6b\x27\x51\xe9\xae\x9b\x6a\x31\xe3\xeb\xd6\x54\x2f\x9b\xdd\x53\xf2\xcc\x41\xf8\x75\xb7\x82\x5f\x77\x13\xb5\xd9\x51\x90\x10\x4d\x48\x98\xb1\x75\xf1\x52\xa3\xe4\x78\x57\xf4\xe9\x12\xe9\x29\x4a\xe2\x70\x33\x51\x42\xbe\x18\xb5\x62\x6a\xf1\x30\xcd\x4c\xf5\x7c\x8a\x19\xed\x45\xb5\xc7\x31\x33\xc3\x2c\xb1\x74\x8c\x92\xf4\x59\xcb\x78\x24\xa2\x94\x0c\xd3\xd6\xcd\x92\xdf\x67\xb0\x67\x93\x83\xe1\xa9\x60\x1d\xd7\x69\x56\xdb\x51\x15\xf0\x0e\x0d\x53\x70\x5b\xd6\xe7\x5d\x5c\x1a\xeb\x33\x4c\x50\xcf\xfa\x11\x20\x1d\xb4\xf3\xc5\x4a\x9d\x88\x26\x08\xc9\xce\xcb\x8e\x98\xe4\xd0\x3c\x05\x29\x4f\x8f\xa6\xf6\xd0\xe8\x24\x0c\x3f\x2a\x8f\x77\x5d\x83\x5c\xf6\x82\x60\x97\x1b\x84\x15\x6d\x34\x1e\x16\xbb\x44\xb8\x10\xa2\xe9\x39\x96\x63\x77\x6b\xa1\x60\x8b\xe3\xb8\x0c\x1a\xb6\x54\x4b\x8a\x38\x72\xcb\x5e\xe7\x6b\xd6\x5d\x53\xcd\x48\x82\x67\xe8\x3a\x2f\x44\xe4\x70\xd1\xd2\xeb\x5c\xcb\xfe\xa2\x3a\x06\xbd\xf4\x10\xae\x9a\xaf\xef\x2a\x54\x6a\x6c\xe0\x46\xbd\x19\x74\x32\xe2\x79\x06\x72\x47\x0d\x83\x2e\x4e\x56\xf1\x15\x9d\xe4\xb7\x90\x97\x0b\xf7\x82\xeb\x29\x87\xab\x6e\xe7\xcc\xf1\x78\x83\x2b\x17\xe6\x7d\x16\xa9\xe5\xa6\x8b\xdf\xd6\x33\x74\x88\x0f\xe4\x53\xd5\x1f\xea\x5b\x5b\x76\x37\xf5\x22\xc3\x43\xbe\xdd\x4a\xaf\x3f\xdf\x95\xa2\x1c\x7f\x30\xa3\xb4\x27\xb9\xc6\x64\x2b\x71\x51\xd8\x3d\x90\x17\x0d\x1e\x2e\x28\x1d\x76\xcc\xb4\xff\x3d\x06\x4f\x44\x69\x93\xee\x48\x76\xeb\x1f\xdd\xda\xd0\x60\x2c\x01\x43\x0c\x70\xdb\xa2\x2b\x7d\xf9\x45\x23\x08\xae\xde\xc3\x61\x30\x19\xe8\xea\x07\xaf\x08\x1f\xe0\x61\xc4\x3d\x64\x33\x0a\x0e\x40\xce\x36\x22\x6a\x7b\xa5\xbb\x9d\x3d\xd4\xac\x17\x62\x07\x06\x14\xb6\x7b\xcb\x0c\x3d\x88\x7a\x71\xf7\x18\xc3\x4d\x48\x1e\xe3\xdf\x6d\xd9\xb2\x38\x75\xaf\xf0\xff\x82\xdf\x21\x53\x90\x37\x12\xb2\x65\xd3\x36\x34\x3d\x12\x25\x48\xdf\x4d\x78\x69\x69\xdd\x44\x01\x28\xb0\x6f\xb2\x9d\x46\x76\xb2\x32\x67\x48\x26\xe1\x82\xc3\x3c\xf9\x52\xd8\xa2\xad\x0c\xab\x25\x17\xaa\xcc\xc6\x9e\x6d\xa5\x8e\x2d\x23\x28\xa9\x65\x9a\x39\xbb\x0c\xa8\x23\x2b\x80\xcf\x35\x25\x80\xc5\x45\x08\x87\xde\x21\x74\xed\xb6\x19\x0f\x15\x31\x42\x24\x39\x7d\x83\xe4\xf4\x8a\x93\xc7\x2d\x58\xaf\x5c\xb1\x41\xa7\x0e\x95\xe3\x70\x0c\xc3\x32\x2f\x38\x6a\xc3\x10\xde\x30\xb7\x2a\xf3\xed\x08\x6f\xaf\x28\x71\x84\x35\x40\x8e\x11\x00\xd8\xc3\x58\x08\x4b\x55\x05\x4e\x5d\x61\x89\xd7\x94\x74\x08\x1a\x76\x05\x43\xf8\x9a\x45\xc5\x03\x25\x74\xcf\x1e\xf6\x4a\x6f\x6f\x46\xbd\x6a\xe6\x7f\x2f\x17\x7d\x67\xd0\xe7\xf2\x33\x80\x9a\x37\x4d\xcf\xaf\xfe\x6e\x59\xdc\x82\xbd\x97\xa0\xe9\xb9\xa5\xb3\xb8\xb5\xf8\x38\xc2\x94\x40\x8f\x51\x25\xd0\x87\x71\xb5\xe1\x18\x8e\xd4\x56\xbb\x5b\xf4\x3b\x5a\xa0\xae\xc1\xb3\x4b\x8e\xfd\x78\xe9\x32\x46\x2d\x8e\x4a\x86\x14\x3a\x2c\x3c\xd5\xf2\x82\x84\x88\x72\xb2\xe9\x13\xce\xb9\xb5\xed\x51\xd9\xb0\xf1\x51\xf1\xa9\x95\x82\x67\x80\x58\xa1\x3e\xdf\x2d\x3e\x96\x3d\xbb\x1d\xad\x32\xdc\x5b\x87\x75\x5d\x18\x58\xfa\x1c\x60\xe9\x2b\x02\x4b\xaf\xa0\xa2\x99\xa8\x95\x36\x9d\x4d\xd9\xe7\xb0\x3f\x08\x6a\x79\x79\x42\x33\xc0\xc9\x45\x3e\x55\x0a\xaa\x9b\x4c\xa5\x6c\x5d\x85\x2c\xf8\x04\x35\x9c\x43\xbb\xa3\x82\xf7\xb1\x03\x99\xaa\x8d\x03\x00\xc9\xee\xb7\xb8\x59\xc8\xeb\x38\x1c\x12\x88\xfa\xf0\x4e\x52\x02\x58\x9c\x24\x08\xd6\x78\x24\xae\xda\x11\xed\x9e\xc0\xaf\x62\x46\x29\x1c\xcc\x03\x0b\xe3\x22\xb8\x0b\xf6\x5d\x9e\x02\xdc\xe6\xb2\x98\x0e\x42\x5a\xf3\x06\x68\x2d\x0f\xe1\xb4\xd1\x4e\x50\x29\x6c\x45\x8e\x71\x62\x8d\xaf\xb1\xe2\x89\xe6\x70\x91\x0b\x63\x7c\x8b\x14\xcf\x69\x0a\x7b\xe7\x23\xee\x0a\x26\xd2\x2b\x64\x56\x49\x31\x79\x0b\x2f\xfc\xd9\xb7\xe5\x45\x51\x6d\x24\x2d\x7a\x51\x5e\xd3\xcc\x3d\xd6\x45\xe7\xd2\x74\x7d\xe6\x59\x1f\x0f\x86\x79\x3d\x1e\x3e\x64\xab\xdc\x77\xe1\x13\xe0\x6f\x43\xcb\xfb\xab\x06\xa3\x0c\x06\x16\x5b\x23\xd9\x30\xef\x76\xd1\x9d\x69\x1d\x61\x14\x18\x1d\x19\x04\x64\x33\xc8\x19\xbc\x6c\xa8\x86\x39\x02\x29\x21\x4f\xe5\x9e\x6b\x1d\x96\xc6\xe9\xc5\x8e\x03\x83\x1a\xde\xe0\x64\x13\x60\x79\xfc\x74\x34\xb4\xcb\x7c\xb0\x17\xeb\x6a\xe8\x66\x61\xfd\xb6\xab\xed\x01\x22\x23\x83\x43\x6f\x7e\x59\x94\xf1\x2f\x7c\xf6\xcb\xe3\x22\xa0\x14\x5c\xdc\xc7\x34\x52\x75\x59\x48\x14\xc3\x20\xe5\xf9\x80\x48\x18\x5c\xe9\x24\x02\xc5\x4d\x7e\xf8\xc8\x7e\x70\xb3\x6a\x84\x83\x3b\x4c\xb6\xf0\xce\xd4\xc8\x71\x54\x43\x50\x06\x2a\x3d\x21\x6c\x36\x2d\x15\xa7\xd8\xb0\x1e\x89\x6e\x9b\xd9\x8c\xdd\x55\xd7\xc1\x60\xb8\x93\x78\xf7\x5a\x55\x43\xbb\x7b\x93\x0d\xd0\xb7\x5e\xc9\xc5\x08\x9e\x7e\x2a\xf2\xff\xcb\x6b\x99\x61\x07\xfc\x9b\x99\x07\xda\xff\xa7\xbc\x99\x39\xd4\x68\x77\x71\x57\x26\xcc\xeb\x8e\x87\x0f\x67\x1c\xb0\xad\xe3\x47\x05\x67\xf0\x54\x8a\x59\x64\x74\x61\x18\xb1\x4a\x94\x08\x59\x20\x12\x62\xd3\x09\x24\x79\x75\xbb\x69\xda\x45\x5b\x06\xee\x37\x6c\x2f\x70\x47\x8b\x5a\x93\x12\xe3\x88\xfc\x71\x17\x24\x65\x7c\x4b\x27\xe9\xaa\xe8\x49\x2d\xa2\xb7\x6a\xed\x66\xd0\xf6\xe8\xd5\x98\xa5\x0d\xc3\xd8\x42\x89\xa7\xcc\x6a\xd0\xe5\x01\xbb\x8a\xba\x2d\xa5\x24\x50\x86\xb9\xba\x29\x47\xd4\xac\xa0\xf7\x92\x12\xc6\x88\x94\x14\x79\x91\x0e\x0f\x2d\xcb\x97\xa6\x8f\x0d\x5d\x82\x4e\x6a\x35\x83\xce\x05\xb5\x02\x6a\x9a\xe3\x06\xbd\x19\x5a\x11\x4b\x2a\x3c\xb8\xd8\xe4\xb9\xeb\x35\x65\xab\x8f\xf1\x73\xe4\x47\x49\x81\xf2\xa4\x80\x2d\x22\xeb\x4a\x4e\xdf\x86\xe9\xc1\x23\x75\xc8\x75\xcf\xd3\x4d\xc0\x04\x66\x28\x79\xcb\x81\x27\x7f\xd0\x38\x3c\xc1\x63\x75\xec\x6d\x25\x4f\xdf\x6c\xd7\xdc\x5f\x8e\x41\x8e\x2b\x0c\xd6\x02\xb3\xcc\x90\xe3\x7d\x2a\x5c\xe8\x12\x9b\x59\x8a\x59\xab\xbc\xa7\xa2\xc8\x64\xf9\x40\xa3\x5f\x41\x2e\x50\xb7\xbe\xe7\x6c\x84\x15\x80\x14\xf6\xb6\xb7\x1f\x51\xde\xf7\x6d\x35\xdf\xf1\xbd\xa8\xda\x7f\xf0\xa2\x14\x63\x13\x97\x37\x82\xed\x76\xe6\x9f\x71\xa9\x5f\x87\x61\x07\x6f\xf4\x0f\xe0\x24\x02\x97\x75\x4b\xe2\x6f\x59\x15\xb8\x56\x70\x00\x72\xd9\x18\x41\x6c\x78\xc7\xc9\xba\x9c\x97\x27\xf1\xd6\x22\xbd\x3c\xd6\x9c\x6e\xd3\x6f\x2d\x82\xfc\xe5\xd9\xd5\xc5\x2d\xb4\xc4\xa0\x4a\x13\x80\x0c\x08\x83\xb3\x94\x38\x90\x15\x50\x88\x1a\xdd\xa8\xa5\xba\x1e\xeb\x61\xb6\x23\xc4\xd6\x4d\xc3\xdd\xb6\xed\xcb\xf3\x42\xfc\x52\x3c\xbf\x42\xc0\x86\xe5\x52\x66\x96\x9e\xed\xd6\x7d\xc5\x56\x60\xd6\x9a\x5a\x22\xf1\x43\xfa\xe5\x36\x6f\x2d\x0e\x2a\xa2\xfe\xa4\x0f\x8e\x1e\xcc\xa2\xd5\x97\xf5\xf2\x22\xa1\x3c\x0e\x79\xf5\xe6\x92\x3e\x17\xed\x8d\x5c\x84\xea\x48\x3f\x56\x5b\x06\xd3\x37\xa5\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\x38\x45\x26\xf9\xf9\x4e\xd0\x74\x34\x91\xe4\x67\x0c\x84\x1f\x53\x66\x63\xcd\xad\x21\x30\x0c\xa8\x32\x14\xcf\xf4\xc5\x4d\xc5\xf4\x48\x54\x89\xa1\x03\x89\xc5\xb3\xb6\xa1\x44\x19\x17\xb9\xcb\xc6\x7d\x16\x31\xb3\x70\xe7\x1a\x3c\xbd\xfc\x65\xb6\x3f\x61\x65\x81\x94\x71\xdb\xa0\x27\x63\x3b\xc4\x25\x22\xc8\x4c\xf8\xab\xbd\x4e\x13\x57\xed\x5f\x23\x1a\x95\x88\xde\xa9\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\x6f\xb7\x6e\xdb\x08\x1e\x20\x02\xd9\x06\x20\x9f\x84\xe1\x04\x10\xb4\x08\xba\x41\x3d\xe2\x7c\x16\x02\xb1\x0f\x9a\x02\x0c\xb7\x1e\x4d\x6e\xae\xaf\x39\x22\x17\xc7\x95\xd4\x70\x2a\x08\xd0\x75\xc6\xd6\xdc\x56\x52\x5c\x2a\x33\x56\xca\x41\xc9\xc5\x63\xb2\xb7\x6b\xdf\x21\x91\x4f\x15\x06\xde\xee\xdc\xa3\xdf\xef\x76\xb5\x9c\x97\x82\x2c\x6d\x88\xb3\xc2\x46\x20\xbd\xb4\x4d\xd3\xdb\xbb\x0e\x81\xe8\xf2\x8e\x92\x69\x4f\xeb\x57\x0e\xc1\x7c\xd3\xb5\xc8\x24\x50\x7d\x50\x06\xf7\x6c\x0b\xd8\xe4\x8f\x0b\x51\xbf\xc7\x25\xa8\xdf\x07\xc0\xc5\x30\xc3\x36\xfe\x4b\xfc\x12\x26\xed\x7a\xcc\x66\x9e\x4a\x8d\x36\x60\x49\x1b\xd2\x4d\x88\x83\x62\xee\x09\xe3\xd4\xee\xe6\x26\x49\x83\x20\x43\xe9\xc5\xa7\x86\xf2\x82\x4f\x0d\x65\x1f\x9f\xaa\x1d\x1b\xf4\xa0\xeb\xd6\x36\x11\x97\x97\x6f\xe2\xd9\xf6\xb9\xc1\xbb\x41\x6c\x2f\x76\x8f\x03\xcc\x72\x9c\xbb\x7b\x29\x7b\x1a\x3e\x0a\x4a\x28\x36\x43\xfc\x69\xea\xb0\x8e\xee\xb7\x75\xd5\x97\xdf\xdf\xc3\xd5\xf9\xbd\xbe\x2a\xe6\xf7\x1e\x85\xeb\xa6\x82\x63\x41\xb0\x70\xaa\xc5\x01\xf4\xb8\xc3\x7b\xf4\xb4\x69\x2a\x5e\xda\x55\x5b\xda\xfe\x7e\x12\xbc\x36\x3a\x22\x69\xbf\x0d\x38\x82\x0e\xb7\x00\xeb\x18\x7b\xa9\xb4\x41\x46\x46\xf2\x42\x2f\x8f\x31\xb2\x81\xe6\x3b\xab\xe6\x39\x92\x7d\x0f\x25\x38\xae\x05\xcb\x55\x7b\x7d\xeb\x1f\x62\xdd\xbe\xae\xe1\x47\x62\x45\xec\xc1\x68\xe8\xd9\x46\x6f\x4b\x43\xc1\xa6\x4f\x4b\x6b\x01\x8c\xdd\xa9\x2f\xce\x78\xc0\xa1\xc6\x62\x38\x60\x38\x50\x55\xbf\x97\x12\xdf\x30\x18\xf6\x19\x1d\x86\x37\xbb\x0d\x1e\x96\xbc\xe4\x70\x6c\x78\x1a\x74\xd4\xad\x2d\x49\xfa\x79\xd8\x23\x24\x38\x26\x24\xbe\x91\xec\x18\x92\xad\xf5\x86\x4b\xfc\x27\xe1\x1e\x92\xbe\xc1\x95\x96\xc3\x0e\x6d\x42\x5e\x2c\x8d\x0a\xbd\xe3\x3c\x27\xc6\x4e\x14\x36\xb7\x6a\x47\x2a\xe6\xb6\x38\x49\x2a\xbf\xed\xca\x1d\x55\x5e\xd6\x4b\x90\xe9\x9f\xf9\x27\x89\x3b\xfc\xd3\x21\x48\xfc\x11\xa1\xf0\x62\x8f\x86\xa7\xe6\xa1\x08\xbd\x17\xa5\x38\x5a\xb8\x53\x2e\x09\x66\x26\xdc\x05\xce\xf0\x7b\xba\x83\x0a\x3b\x3e\x9a\xc4\xf9\x36\x8b\xb4\xa6\x9a\x60\xee\x5e\xfd\xfc\xe6\x7c\x00\x39\xc1\x0c\x34\x67\x82\x79\x68\xce\x04\xab\x90\xdb\x5a\x37\x04\xdc\xd0\x4e\x8f\x40\x20\x0f\x0e\x40\x08\xda\x5b\x66\x80\x92\x27\x2b\x52\xd2\x2f\x88\xb2\xc4\xdb\x46\x88\x5e\x7e\xc7\x40\xc1\xb3\x53\x02\x65\xaf\x4e\x8d\x5a\xad\xc3\x36\x6b\xb9\x69\xf4\x5c\x47\x4c\x84\x02\xae\x23\x26\xf6\x93\xdd\x33\x68\xf6\x2a\xaa\x2c\x62\x89\xc0\x5f\x68\x92\x81\x1a\x88\xaf\xd9\x20\xb4\x6a\xd7\x4d\x22\xdc\xca\x49\xaf\x27\xf8\x15\x4d\x9d\x2e\x3f\x5e\x2f\x02\xeb\x57\x20\xbf\x8d\x2d\x25\x0c\x78\xb9\x70\x88\x31\x9d\xf1\xcb\x13\xff\x20\x17\xd4\xcb\x83\xc1\xac\xab\xeb\xd2\x29\xa3\x75\x34\x6f\x28\x2d\x02\x5e\xf5\xfd\xb6\x33\x1f\x73\x3c\x02\x95\x9e\xd3\x8f\xc1\x20\xc2\xaa\x74\x24\xa3\x9a\xb6\x15\x2e\x08\x02\xbc\x48\xc2\x34\xc6\x0d\x5a\x77\x87\x00\x5c\xb7\x87\x21\x8f\x5b\xb6\x8e\x71\xda\x0a\xf1\xcf\xea\x7b\x59\xc0\xb5\xce\x32\xc0\x64\xcb\x0c\xa5\xbb\x24\xc3\x60\x97\x34\x6b\xa1\xd9\xa2\x95\x08\x79\xfc\xe7\x8a\x4d\x35\x5c\x4e\xb8\xf6\x2c\xad\x23\xda\x2b\x76\xe2\xa5\xa7\x9f\x1e\xde\x3f\x1d\x20\x68\xb2\x8c\x89\xe7\x06\x62\x80\xf2\x73\xb9\xd8\x05\x37\x87\x3f\xcb\x6f\x55\xd5\xfb\x6a\x1a\x33\x0e\xde\xd5\x78\x6a\xe2\x42\x52\x02\x98\xa9\x30\x99\xd6\x75\x98\x38\x9b\xa9\xf3\xc1\xf6\x5d\xf3\x38\xcc\x32\x94\x59\x5c\x99\x21\x93\xfc\xcc\xd6\xe2\x68\x35\x30\xc2\x32\xd8\x50\xe2\x09\xd3\x10\x6a\x2b\x30\x78\xb3\xbc\x89\x8e\x5b\x56\xb3\x65\x96\xb5\x9d\x05\xb0\x38\x3e\x04\xcf\xe1\x4a\x1f\x24\xff\x2e\x13\xcb\xe4\xbd\x98\x2d\x7d\x18\xbc\x9a\x67\xda\xfd\xc0\x8c\x2e\xf2\x47\xbf\x2f\x0f\x4e\xb4\x65\x1d\x44\xd7\x93\x5f\xc5\xe8\xb1\x2a\x0b\x05\xfd\xad\x0f\x05\x1d\x3d\xc5\x3d\x7c\xc6\xc2\x3d\x2b\x80\x5a\xd9\x2e\x51\x9e\x2c\x09\x7a\xf0\xa4\x6b\x17\x4f\xee\x87\x2f\x06\xb0\xbe\x34\x8e\xb7\x1d\x55\x29\xa3\xb3\xa7\x17\x7e\xd5\xe7\x0e\xe4\x77\x58\xaf\x28\xf5\xa4\x6a\x0e\xcf\xed\xde\x23\xd0\x1a\x86\xd1\xc1\x0d\x51\x51\x54\xdd\xb0\x42\x0d\xfa\x3d\xae\x6f\xf0\x1a\x44\xf0\xe2\x45\x53\x7f\x4d\xc7\x26\xc3\x0b\xff\xaa\xb1\xa6\xbf\xba\x5b\x2e\xfc\x97\x62\xdf\x7e\x0f\x68\x41\x66\x74\x7a\x3a\x3d\x79\x20\x3a\x85\x3c\x14\x66\xb3\x48\x3f\x6e\x9f\xc6\x98\x32\x86\xd3\xa8\x81\xe6\xbf\x0b\xa2\x82\xc3\x63\x59\x32\xaa\x4e\x23\xba\x4a\x2c\xf6\xef\xdc\x43\x5b\xc9\x7b\x0e\xce\xfc\x21\xc9\x97\x3c\x26\xfa\x3f\xc1\x3b\x78\xe2\xa3\x00\x1a\xa5\xcf\x44\x7e\xf2\xd7\xb7\x5c\xf1\xb7\x69\x57\x12\xd3\x44\x58\xe1\x6f\x37\x48\xd8\xd0\xd1\x9a\x58\x11\x27\xac\x90\xc0\x0f\x41\xe2\x67\x81\x9f\x45\x7e\x83\x5f\x7b\xfc\xda\x97\xe5\x47\x29\x0c\xae\x4a\xc5\xe9\x70\xbe\x42\xca\x0d\x7e\xdf\x70\xf8\xdd\xfb\xec\x9f\xc5\xed\xe8\xdb\x0a\xf6\x03\xc1\x8c\xb9\x39\x4d\xb7\x1f\x94\xce\xad\x6a\xaa\x7c\xde\xe7\x6b\xff\x1b\x4d\xc2\x17\xa5\x70\xf3\x9a\x24\x9f\xf7\xc1\x1a\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\xc0\xa6\x1f\xdc\xeb\x9a\xfe\x9d\xb2\x53\xca\xd3\x50\x4c\x88\x66\xc9\x2e\xc5\x6b\x7e\x6b\x0f\x6f\x15\xb3\x4f\xe9\x2c\xb1\x80\xc3\x55\xbd\xdd\xb9\xf3\xa9\x8f\x76\x2d\x60\x3e\x9e\x93\x18\xaa\xf3\xe3\x43\xf2\x32\x1b\xcd\x6e\x36\xaf\xf4\x41\xba\x32\xe5\xc3\xc0\xc3\x7f\xfb\x37\x80\xd3\xe7\xbf\xff\x7b\x7a\xf6\xfc\x51\x5a\x7e\xe6\x78\x76\x5d\xba\xc9\x3f\xe3\x54\xa0\x50\xf4\xf3\x45\x04\xc8\xfe\xaf\x30\x39\xd6\x6b\x28\x7d\xae\x1c\x77\x4f\xff\x2f\x00\x00\xff\xff\xe7\xb1\xc9\xd0\x59\xaf\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: 44810, mode: os.FileMode(420), modTime: time.Unix(1447743886, 0)} + info := bindataFileInfo{name: "conf/locale/locale_en-US.ini", size: 44889, mode: os.FileMode(420), modTime: time.Unix(1447870376, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -4399,7 +4399,7 @@ func confLocaleLocale_esEsIni() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "conf/locale/locale_es-ES.ini", size: 49309, mode: os.FileMode(493), modTime: time.Unix(1447368022, 0)} + info := bindataFileInfo{name: "conf/locale/locale_es-ES.ini", size: 49309, mode: os.FileMode(493), modTime: time.Unix(1447073714, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -4419,7 +4419,7 @@ func confLocaleLocale_frFrIni() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "conf/locale/locale_fr-FR.ini", size: 49356, mode: os.FileMode(493), modTime: time.Unix(1447368022, 0)} + info := bindataFileInfo{name: "conf/locale/locale_fr-FR.ini", size: 49356, mode: os.FileMode(493), modTime: time.Unix(1447073714, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -4439,7 +4439,7 @@ func confLocaleLocale_itItIni() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "conf/locale/locale_it-IT.ini", size: 46771, mode: os.FileMode(493), modTime: time.Unix(1447368024, 0)} + info := bindataFileInfo{name: "conf/locale/locale_it-IT.ini", size: 46771, mode: os.FileMode(493), modTime: time.Unix(1447073714, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -4459,7 +4459,7 @@ func confLocaleLocale_jaJpIni() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "conf/locale/locale_ja-JP.ini", size: 54545, mode: os.FileMode(493), modTime: time.Unix(1447368024, 0)} + info := bindataFileInfo{name: "conf/locale/locale_ja-JP.ini", size: 54545, mode: os.FileMode(493), modTime: time.Unix(1447868865, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -4479,7 +4479,7 @@ func confLocaleLocale_lvLvIni() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "conf/locale/locale_lv-LV.ini", size: 49623, mode: os.FileMode(493), modTime: time.Unix(1447368030, 0)} + info := bindataFileInfo{name: "conf/locale/locale_lv-LV.ini", size: 49623, mode: os.FileMode(493), modTime: time.Unix(1447868865, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -4499,7 +4499,7 @@ func confLocaleLocale_nlNlIni() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "conf/locale/locale_nl-NL.ini", size: 46178, mode: os.FileMode(493), modTime: time.Unix(1447368024, 0)} + info := bindataFileInfo{name: "conf/locale/locale_nl-NL.ini", size: 46178, mode: os.FileMode(493), modTime: time.Unix(1447073714, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -4519,7 +4519,7 @@ func confLocaleLocale_plPlIni() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "conf/locale/locale_pl-PL.ini", size: 46875, mode: os.FileMode(493), modTime: time.Unix(1447368024, 0)} + info := bindataFileInfo{name: "conf/locale/locale_pl-PL.ini", size: 46875, mode: os.FileMode(493), modTime: time.Unix(1447073714, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -4539,7 +4539,7 @@ func confLocaleLocale_ptBrIni() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "conf/locale/locale_pt-BR.ini", size: 47920, mode: os.FileMode(493), modTime: time.Unix(1447368028, 0)} + info := bindataFileInfo{name: "conf/locale/locale_pt-BR.ini", size: 47920, mode: os.FileMode(493), modTime: time.Unix(1447073714, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -4559,7 +4559,7 @@ func confLocaleLocale_ruRuIni() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "conf/locale/locale_ru-RU.ini", size: 69906, mode: os.FileMode(493), modTime: time.Unix(1447368026, 0)} + info := bindataFileInfo{name: "conf/locale/locale_ru-RU.ini", size: 69906, mode: os.FileMode(493), modTime: time.Unix(1447868865, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -4579,7 +4579,7 @@ func confLocaleLocale_zhCnIni() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "conf/locale/locale_zh-CN.ini", size: 43800, mode: os.FileMode(493), modTime: time.Unix(1447368028, 0)} + info := bindataFileInfo{name: "conf/locale/locale_zh-CN.ini", size: 43800, mode: os.FileMode(493), modTime: time.Unix(1446671437, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -4599,7 +4599,7 @@ func confLocaleLocale_zhHkIni() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "conf/locale/locale_zh-HK.ini", size: 44044, mode: os.FileMode(493), modTime: time.Unix(1447368028, 0)} + info := bindataFileInfo{name: "conf/locale/locale_zh-HK.ini", size: 44044, mode: os.FileMode(493), modTime: time.Unix(1447868865, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -4619,7 +4619,7 @@ func confReadmeDefault() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "conf/readme/Default", size: 23, mode: os.FileMode(420), modTime: time.Unix(1444419364, 0)} + info := bindataFileInfo{name: "conf/readme/Default", size: 23, mode: os.FileMode(420), modTime: time.Unix(1441006036, 0)} a := &asset{bytes: bytes, info: info} return a, nil } diff --git a/templates/.VERSION b/templates/.VERSION index fe3bbea3..38e57d5a 100644 --- a/templates/.VERSION +++ b/templates/.VERSION @@ -1 +1 @@ -0.7.16.1117 Beta \ No newline at end of file +0.7.16.1118 Beta \ No newline at end of file -- cgit v1.2.3 From 2c653141a83eb5bc3fb1baaff0449195b9e1f6a6 Mon Sep 17 00:00:00 2001 From: Unknwon Date: Wed, 18 Nov 2015 19:32:23 -0500 Subject: #1742 Update default branch in git repository while change in web view --- .bra.toml | 1 + README.md | 2 +- gogs.go | 2 +- modules/git/error.go | 22 ++++++++++++++++++++++ modules/git/repo_branch.go | 13 +++++++++++++ routers/repo/setting.go | 9 ++++++++- templates/.VERSION | 2 +- 7 files changed, 47 insertions(+), 4 deletions(-) create mode 100644 modules/git/error.go (limited to 'gogs.go') diff --git a/.bra.toml b/.bra.toml index 7d49786d..f1da310a 100644 --- a/.bra.toml +++ b/.bra.toml @@ -13,6 +13,7 @@ watch_dirs = [ watch_exts = [".go"] build_delay = 1500 cmds = [ + ["go", "install"], ["go", "install", "-race"], # sqlite redis memcache cert pam tidb ["go", "build", "-race"], ["./gogs", "web"] diff --git a/README.md b/README.md index 4d683ead..437ac802 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.16 Beta +##### Current version: 0.7.17 Beta
    diff --git a/gogs.go b/gogs.go index 95c21a5d..a9601bfb 100644 --- a/gogs.go +++ b/gogs.go @@ -17,7 +17,7 @@ import ( "github.com/gogits/gogs/modules/setting" ) -const APP_VER = "0.7.16.1118 Beta" +const APP_VER = "0.7.17.1118 Beta" func init() { runtime.GOMAXPROCS(runtime.NumCPU()) diff --git a/modules/git/error.go b/modules/git/error.go new file mode 100644 index 00000000..c86c56e5 --- /dev/null +++ b/modules/git/error.go @@ -0,0 +1,22 @@ +// 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 git + +import ( + "fmt" +) + +type ErrUnsupportedVersion struct { + Required string +} + +func IsErrUnsupportedVersion(err error) bool { + _, ok := err.(ErrUnsupportedVersion) + return ok +} + +func (err ErrUnsupportedVersion) Error() string { + return fmt.Sprintf("Operation requires higher version [required: %s]", err.Required) +} diff --git a/modules/git/repo_branch.go b/modules/git/repo_branch.go index a4e06053..86c4f538 100644 --- a/modules/git/repo_branch.go +++ b/modules/git/repo_branch.go @@ -35,3 +35,16 @@ func (repo *Repository) GetBranches() ([]string, error) { } return branches, nil } + +// SetDefaultBranch sets default branch of repository. +func (repo *Repository) SetDefaultBranch(branchName string) error { + if gitVer.LessThan(MustParseVersion("1.7.10")) { + return ErrUnsupportedVersion{"1.7.10"} + } + + _, stderr, err := com.ExecCmdDir(repo.Path, "git", "symbolic-ref", "HEAD", "refs/heads/"+branchName) + if err != nil { + return concatenateError(err, stderr) + } + return nil +} diff --git a/routers/repo/setting.go b/routers/repo/setting.go index bee29254..019949b7 100644 --- a/routers/repo/setting.go +++ b/routers/repo/setting.go @@ -80,8 +80,15 @@ func SettingsPost(ctx *middleware.Context, form auth.RepoSettingForm) { repo.Name = newRepoName repo.LowerName = strings.ToLower(newRepoName) - if ctx.Repo.GitRepo.IsBranchExist(form.Branch) { + if ctx.Repo.GitRepo.IsBranchExist(form.Branch) && + repo.DefaultBranch != form.Branch { repo.DefaultBranch = form.Branch + if err := ctx.Repo.GitRepo.SetDefaultBranch(form.Branch); err != nil { + if !git.IsErrUnsupportedVersion(err) { + ctx.Handle(500, "SetDefaultBranch", err) + return + } + } } repo.Description = form.Description repo.Website = form.Website diff --git a/templates/.VERSION b/templates/.VERSION index 38e57d5a..9233e6e7 100644 --- a/templates/.VERSION +++ b/templates/.VERSION @@ -1 +1 @@ -0.7.16.1118 Beta \ No newline at end of file +0.7.17.1118 Beta \ 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 'gogs.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 2158e6fc43a17e8290f2ae1123d67ba01fab0f3f Mon Sep 17 00:00:00 2001 From: Unknwon Date: Thu, 19 Nov 2015 11:40:00 -0500 Subject: fix #1997 --- gogs.go | 2 +- models/access.go | 20 ++++++++++---------- modules/middleware/repo.go | 2 +- templates/.VERSION | 2 +- 4 files changed, 13 insertions(+), 13 deletions(-) (limited to 'gogs.go') diff --git a/gogs.go b/gogs.go index af403e00..4e3cf117 100644 --- a/gogs.go +++ b/gogs.go @@ -17,7 +17,7 @@ import ( "github.com/gogits/gogs/modules/setting" ) -const APP_VER = "0.7.18.1118 Beta" +const APP_VER = "0.7.18.1119 Beta" func init() { runtime.GOMAXPROCS(runtime.NumCPU()) diff --git a/models/access.go b/models/access.go index 8a7729b7..5eef3281 100644 --- a/models/access.go +++ b/models/access.go @@ -36,19 +36,19 @@ func accessLevel(e Engine, u *User, repo *Repository) (AccessMode, error) { mode = ACCESS_MODE_READ } - if u != nil { - if u.Id == repo.OwnerID { - return ACCESS_MODE_OWNER, nil - } + if u == nil { + return mode, nil + } - a := &Access{UserID: u.Id, RepoID: repo.ID} - if has, err := e.Get(a); !has || err != nil { - return mode, err - } - return a.Mode, nil + if u.Id == repo.OwnerID { + return ACCESS_MODE_OWNER, nil } - return mode, nil + a := &Access{UserID: u.Id, RepoID: repo.ID} + if has, err := e.Get(a); !has || err != nil { + return mode, err + } + return a.Mode, nil } // AccessLevel returns the Access a user has to a repository. Will return NoneAccess if the diff --git a/modules/middleware/repo.go b/modules/middleware/repo.go index a78e079d..7780fa5c 100644 --- a/modules/middleware/repo.go +++ b/modules/middleware/repo.go @@ -275,7 +275,7 @@ func RepoAssignment(redirect bool, args ...bool) macaron.Handler { } // Admin has super access. - if ctx.User.IsAdmin { + if ctx.IsSigned && ctx.User.IsAdmin { ctx.Repo.AccessMode = models.ACCESS_MODE_OWNER } else { mode, err := models.AccessLevel(ctx.User, repo) diff --git a/templates/.VERSION b/templates/.VERSION index a2ed39f2..aa65a45b 100644 --- a/templates/.VERSION +++ b/templates/.VERSION @@ -1 +1 @@ -0.7.18.1118 Beta \ No newline at end of file +0.7.18.1119 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 'gogs.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 From eea2e05da65c66d9739cecbad77741a0b7c320b0 Mon Sep 17 00:00:00 2001 From: Unknwon Date: Sat, 21 Nov 2015 12:58:31 -0500 Subject: minor fix on #1694 --- gogs.go | 2 +- models/login.go | 7 +++---- templates/.VERSION | 2 +- templates/admin/config.tmpl | 30 +++++++++++++++--------------- 4 files changed, 20 insertions(+), 21 deletions(-) (limited to 'gogs.go') diff --git a/gogs.go b/gogs.go index 8059086b..e54eba82 100644 --- a/gogs.go +++ b/gogs.go @@ -17,7 +17,7 @@ import ( "github.com/gogits/gogs/modules/setting" ) -const APP_VER = "0.7.19.1120 Beta" +const APP_VER = "0.7.19.1121 Beta" func init() { runtime.GOMAXPROCS(runtime.NumCPU()) diff --git a/models/login.go b/models/login.go index 79a262c5..011d946a 100644 --- a/models/login.go +++ b/models/login.go @@ -225,10 +225,9 @@ func DeleteSource(source *LoginSource) error { // |_______ \/_______ /\____|__ /____| // \/ \/ \/ -// Query if name/passwd can login against the LDAP directory pool -// Create a local user if success -// Return the same LoginUserPlain semantic -// FIXME: https://github.com/gogits/gogs/issues/672 +// LoginUserLDAPSource queries if name/passwd can login against the LDAP directory pool, +// and create a local user if success when enabled. +// It returns the same LoginUserPlain semantic. func LoginUserLDAPSource(u *User, name, passwd string, source *LoginSource, autoRegister bool) (*User, error) { cfg := source.Cfg.(*LDAPConfig) directBind := (source.Type == DLDAP) diff --git a/templates/.VERSION b/templates/.VERSION index 8c46b68d..d5e40739 100644 --- a/templates/.VERSION +++ b/templates/.VERSION @@ -1 +1 @@ -0.7.19.1120 Beta \ No newline at end of file +0.7.19.1121 Beta \ No newline at end of file diff --git a/templates/admin/config.tmpl b/templates/admin/config.tmpl index 571ea1a9..1a4efa8f 100644 --- a/templates/admin/config.tmpl +++ b/templates/admin/config.tmpl @@ -9,7 +9,7 @@ {{.i18n.Tr "admin.config.server_config"}}
    -
    +
    {{.i18n.Tr "admin.config.app_name"}}
    {{AppName}}
    {{.i18n.Tr "admin.config.app_ver"}}
    @@ -22,12 +22,12 @@
    {{.i18n.Tr "admin.config.disable_router_log"}}
    -
    +
    {{.i18n.Tr "admin.config.run_user"}}
    {{.RunUser}}
    {{.i18n.Tr "admin.config.run_mode"}}
    {{.RunMode}}
    -
    +
    {{.i18n.Tr "admin.config.repo_root_path"}}
    {{.RepoRootPath}}
    {{.i18n.Tr "admin.config.static_file_root_path"}}
    @@ -39,7 +39,7 @@
    {{.i18n.Tr "admin.config.reverse_auth_user"}}
    {{.ReverseProxyAuthUser}}
    -
    +

    {{.i18n.Tr "admin.config.db_config"}} @@ -59,13 +59,13 @@
    {{.i18n.Tr "admin.config.db_path"}}
    {{.DbCfg.Path}} {{.i18n.Tr "admin.config.db_path_helper"}}
    - +

    {{.i18n.Tr "admin.config.service_config"}}

    -
    +
    {{.i18n.Tr "admin.config.register_email_confirm"}}
    {{.i18n.Tr "admin.config.disable_register"}}
    @@ -82,19 +82,19 @@
    {{.i18n.Tr "admin.config.enable_captcha"}}
    -
    +
    {{.i18n.Tr "admin.config.active_code_lives"}}
    {{.Service.ActiveCodeLives}} {{.i18n.Tr "tool.raw_minutes"}}
    {{.i18n.Tr "admin.config.reset_password_code_lives"}}
    {{.Service.ResetPwdCodeLives}} {{.i18n.Tr "tool.raw_minutes"}}
    -
    +

    {{.i18n.Tr "admin.config.webhook_config"}}

    -
    +
    {{.i18n.Tr "admin.config.queue_length"}}
    {{.Webhook.QueueLength}}
    {{.i18n.Tr "admin.config.deliver_timeout"}}
    @@ -102,7 +102,7 @@
    {{.i18n.Tr "admin.config.skip_tls_verify"}}
    -
    +

    {{.i18n.Tr "admin.config.mailer_config"}} @@ -120,7 +120,7 @@
    {{.i18n.Tr "admin.config.mailer_user"}}
    {{.Mailer.User}}
    {{end}} - +

    {{.i18n.Tr "admin.config.cache_config"}} @@ -134,7 +134,7 @@
    {{.i18n.Tr "admin.config.cache_conn"}}
    {{.CacheConn}}
    - +

    {{.i18n.Tr "admin.config.session_config"}} @@ -156,7 +156,7 @@
    {{.i18n.Tr "admin.config.cookie_life_time"}}
    {{.SessionConfig.CookieLifeTime}} {{.i18n.Tr "tool.raw_seconds"}}
    - +

    {{.i18n.Tr "admin.config.picture_config"}} @@ -168,7 +168,7 @@
    {{.i18n.Tr "admin.config.disable_gravatar"}}
    - +

    {{.i18n.Tr "admin.config.log_config"}} @@ -182,7 +182,7 @@
    {{.Config}}
    {{end}} - + -- cgit v1.2.3 From 52c8f691630548fe091d30bcfe8164545a05d3d5 Mon Sep 17 00:00:00 2001 From: Unknwon Date: Sun, 22 Nov 2015 01:32:09 -0500 Subject: fix #650 --- README.md | 2 +- cmd/web.go | 4 +- conf/locale/locale_en-US.ini | 6 +- gogs.go | 2 +- modules/bindata/bindata.go | 4 +- public/config.codekit | 633 ------ public/css/gogs.css | 89 + public/js/gogs.js | 60 +- public/less/_organization.less | 129 ++ public/less/_repository.less | 1 + public/ng/css/font-awesome.min.css | 4 - public/ng/css/gogs.css | 3015 ------------------------- public/ng/css/magnific-popup.css | 368 --- public/ng/css/tipsy.css | 25 - public/ng/css/ui.css | 945 -------- public/ng/fonts/FontAwesome.otf | Bin 106260 -> 0 bytes public/ng/fonts/fontawesome-webfont.eot | Bin 68875 -> 0 bytes public/ng/fonts/fontawesome-webfont.svg | 640 ------ public/ng/fonts/fontawesome-webfont.ttf | Bin 138204 -> 0 bytes public/ng/fonts/fontawesome-webfont.woff | Bin 81284 -> 0 bytes public/ng/fonts/fontawesome-webfont.woff2 | Bin 64464 -> 0 bytes public/ng/fonts/octicons.css | 235 -- public/ng/fonts/octicons.eot | Bin 31440 -> 0 bytes public/ng/fonts/octicons.svg | 198 -- public/ng/fonts/octicons.ttf | Bin 31272 -> 0 bytes public/ng/fonts/octicons.woff | Bin 17492 -> 0 bytes public/ng/js/gogs.js | 970 -------- public/ng/js/gogs/issue_label.js | 97 - public/ng/js/lib/jquery-1.11.1.min.js | 4 - public/ng/js/lib/jquery.magnific-popup.min.js | 4 - public/ng/js/lib/jquery.tipsy.js | 258 --- public/ng/js/lib/lib.js | 168 -- public/ng/js/min/gogs-min.js | 6 - public/ng/js/utils/preview.js | 53 - public/ng/js/utils/tabs.js | 45 - public/ng/less/gogs.less | 11 - public/ng/less/gogs/admin.less | 26 - public/ng/less/gogs/base.less | 306 --- public/ng/less/gogs/dashboard.less | 260 --- public/ng/less/gogs/external.less | 105 - public/ng/less/gogs/issue.less | 540 ----- public/ng/less/gogs/markdown.less | 595 ----- public/ng/less/gogs/organization.less | 232 -- public/ng/less/gogs/profile.less | 59 - public/ng/less/gogs/repository.less | 878 ------- public/ng/less/gogs/settings.less | 131 -- public/ng/less/gogs/sign.less | 68 - public/ng/less/ui.less | 11 - public/ng/less/ui/alert.less | 55 - public/ng/less/ui/bread.less | 18 - public/ng/less/ui/form.less | 230 -- public/ng/less/ui/grid.less | 99 - public/ng/less/ui/label.less | 43 - public/ng/less/ui/menu.less | 170 -- public/ng/less/ui/pager.less | 28 - public/ng/less/ui/panel.less | 54 - public/ng/less/ui/reset.less | 368 --- public/ng/less/ui/table.less | 63 - public/ng/less/ui/var.less | 96 - routers/org/members.go | 2 +- routers/org/teams.go | 13 +- routers/user/home.go | 104 +- templates/.VERSION | 2 +- templates/explore/repo_list.tmpl | 23 + templates/explore/repos.tmpl | 17 +- templates/ng/base/alert.tmpl | 3 - templates/ng/base/footer.tmpl | 29 - templates/ng/base/head.tmpl | 45 - templates/ng/base/header.tmpl | 60 - templates/org/base/header.tmpl | 16 - templates/org/home.tmpl | 170 +- templates/org/member/invite.tmpl | 37 +- templates/org/member/members.tmpl | 97 +- templates/org/team/members.tmpl | 81 +- templates/org/team/new.tmpl | 132 +- templates/org/team/repositories.tmpl | 79 +- templates/org/team/sidebar.tmpl | 67 +- templates/org/team/teams.tmpl | 59 +- templates/repo/create.tmpl | 2 +- templates/repo/migrate.tmpl | 8 +- templates/repo/settings/collaboration.tmpl | 2 +- templates/user/dashboard/dashboard.tmpl | 2 +- templates/user/dashboard/navbar.tmpl | 6 +- templates/user/profile.tmpl | 22 +- 84 files changed, 740 insertions(+), 12749 deletions(-) delete mode 100644 public/ng/css/font-awesome.min.css delete mode 100644 public/ng/css/gogs.css delete mode 100644 public/ng/css/magnific-popup.css delete mode 100644 public/ng/css/tipsy.css delete mode 100644 public/ng/css/ui.css delete mode 100644 public/ng/fonts/FontAwesome.otf delete mode 100644 public/ng/fonts/fontawesome-webfont.eot delete mode 100644 public/ng/fonts/fontawesome-webfont.svg delete mode 100644 public/ng/fonts/fontawesome-webfont.ttf delete mode 100644 public/ng/fonts/fontawesome-webfont.woff delete mode 100644 public/ng/fonts/fontawesome-webfont.woff2 delete mode 100755 public/ng/fonts/octicons.css delete mode 100755 public/ng/fonts/octicons.eot delete mode 100755 public/ng/fonts/octicons.svg delete mode 100755 public/ng/fonts/octicons.ttf delete mode 100755 public/ng/fonts/octicons.woff delete mode 100644 public/ng/js/gogs.js delete mode 100644 public/ng/js/gogs/issue_label.js delete mode 100644 public/ng/js/lib/jquery-1.11.1.min.js delete mode 100644 public/ng/js/lib/jquery.magnific-popup.min.js delete mode 100644 public/ng/js/lib/jquery.tipsy.js delete mode 100644 public/ng/js/lib/lib.js delete mode 100644 public/ng/js/min/gogs-min.js delete mode 100644 public/ng/js/utils/preview.js delete mode 100644 public/ng/js/utils/tabs.js delete mode 100644 public/ng/less/gogs.less delete mode 100644 public/ng/less/gogs/admin.less delete mode 100644 public/ng/less/gogs/base.less delete mode 100644 public/ng/less/gogs/dashboard.less delete mode 100644 public/ng/less/gogs/external.less delete mode 100644 public/ng/less/gogs/issue.less delete mode 100644 public/ng/less/gogs/markdown.less delete mode 100644 public/ng/less/gogs/organization.less delete mode 100644 public/ng/less/gogs/profile.less delete mode 100644 public/ng/less/gogs/repository.less delete mode 100644 public/ng/less/gogs/settings.less delete mode 100644 public/ng/less/gogs/sign.less delete mode 100644 public/ng/less/ui.less delete mode 100644 public/ng/less/ui/alert.less delete mode 100644 public/ng/less/ui/bread.less delete mode 100644 public/ng/less/ui/form.less delete mode 100644 public/ng/less/ui/grid.less delete mode 100644 public/ng/less/ui/label.less delete mode 100644 public/ng/less/ui/menu.less delete mode 100644 public/ng/less/ui/pager.less delete mode 100644 public/ng/less/ui/panel.less delete mode 100644 public/ng/less/ui/reset.less delete mode 100644 public/ng/less/ui/table.less delete mode 100644 public/ng/less/ui/var.less create mode 100644 templates/explore/repo_list.tmpl delete mode 100644 templates/ng/base/alert.tmpl delete mode 100644 templates/ng/base/footer.tmpl delete mode 100644 templates/ng/base/head.tmpl delete mode 100644 templates/ng/base/header.tmpl delete mode 100644 templates/org/base/header.tmpl (limited to 'gogs.go') diff --git a/README.md b/README.md index 0236fdaa..8d5471ae 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.19 Beta +##### Current version: 0.7.20 Beta

    diff --git a/cmd/web.go b/cmd/web.go index 0ca9f4f5..bf94ad19 100644 --- a/cmd/web.go +++ b/cmd/web.go @@ -393,8 +393,8 @@ func runWeb(ctx *cli.Context) { m.Get("/teams", org.Teams) m.Get("/teams/:team", org.TeamMembers) m.Get("/teams/:team/repositories", org.TeamRepositories) - m.Get("/teams/:team/action/:action", org.TeamsAction) - m.Get("/teams/:team/action/repo/:action", org.TeamsRepoAction) + m.Route("/teams/:team/action/:action", "GET,POST", org.TeamsAction) + m.Route("/teams/:team/action/repo/:action", "GET,POST", org.TeamsRepoAction) }, middleware.OrgAssignment(true, true)) m.Group("/:org", func() { diff --git a/conf/locale/locale_en-US.ini b/conf/locale/locale_en-US.ini index 3906cdb5..a1168fee 100644 --- a/conf/locale/locale_en-US.ini +++ b/conf/locale/locale_en-US.ini @@ -701,16 +701,17 @@ settings.delete_org_title = Organization Deletion settings.delete_org_desc = This organization is going to be deleted permanently, do you want to continue? settings.hooks_desc = Add webhooks that will be triggered for all repositories under this organization. +members.membership_visibility = Membership Visibility: members.public = Public members.public_helper = make private members.private = Private members.private_helper = make public +members.member_role = Member Role: members.owner = Owner members.member = Member -members.conceal = Conceal members.remove = Remove members.leave = Leave -members.invite_desc = Start typing a username to invite a new member to %s: +members.invite_desc = Add a new member to %s: members.invite_now = Invite Now teams.join = Join @@ -735,6 +736,7 @@ teams.read_permission_desc = This team grants Read access: memb teams.write_permission_desc = This team grants Write access: members can read from and push to the team's repositories. teams.admin_permission_desc = This team grants Admin access: members can read from, push to, and add collaborators to the team's repositories. teams.repositories = Team Repositories +teams.search_repo_placeholder = Search repository... teams.add_team_repository = Add Team Repository teams.remove_repo = Remove teams.add_nonexistent_repo = The repository you're trying to add does not exist, please create it first. diff --git a/gogs.go b/gogs.go index e54eba82..87f46415 100644 --- a/gogs.go +++ b/gogs.go @@ -17,7 +17,7 @@ import ( "github.com/gogits/gogs/modules/setting" ) -const APP_VER = "0.7.19.1121 Beta" +const APP_VER = "0.7.20.1121 Beta" func init() { runtime.GOMAXPROCS(runtime.NumCPU()) diff --git a/modules/bindata/bindata.go b/modules/bindata/bindata.go index 2bae2c7a..b4a9e44d 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\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") +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\x24\xf5\xcc\xce\x3a\x1c\x6c\x56\x91\xaa\xe2\xb8\x8a\xac\x26\x59\x92\x35\x27\x4e\xc4\x3e\xc0\x3e\xc0\xee\xeb\x9d\x27\x59\xe0\x03\x90\x17\x92\x25\xd9\x3d\x13\xc7\x3f\x2c\x56\x26\xf2\x86\x44\x22\x91\x48\x00\x99\x6f\xb7\x59\x51\x76\x8b\xf4\x79\x7a\x98\x6e\xf3\xaa\x5e\x97\x5d\x97\x76\xe5\xfa\xea\xe9\xaa\xe9\xfa\xb2\x48\x5f\x57\x3d\xfd\x6e\xaf\xab\x45\x99\x24\xab\x66\x53\x12\xe8\x1b\xfa\x93\x14\x79\xb7\x9a\x37\x79\x5b\x50\xc2\xb1\x7d\x27\xe5\xe7\xed\xba\x69\x19\xe8\x67\xf9\x4a\x56\xe5\x7a\xcb\x65\xe8\x4f\xd2\x55\xcb\x3a\xab\x6a\xfa\x79\x41\x5f\xe9\xdb\x5a\x52\x9a\x5d\x6f\x49\xa7\xbb\x5e\xd2\x76\x5b\x4b\xfa\x65\x9b\xb4\xe5\xb2\xa2\xde\xb4\x94\x74\xae\x9f\xc9\x4d\x39\xef\xaa\x9e\x5b\xfa\x8b\x7c\x25\xd7\x65\xdb\x55\x0d\xd7\xfe\x67\xf9\x4a\xb6\xf9\x92\x01\xce\xe8\x4f\xd2\x97\x9b\xed\x3a\x47\x81\x4b\xfd\x4c\xd6\x79\xbd\xdc\x09\xcc\x3b\xfd\x4c\x16\x6d\x49\x59\x59\x5d\xde\x50\xea\x11\x7e\xcc\x66\xb3\x64\x47\x48\xc8\xb6\x6d\x73\x55\xad\xcb\x2c\xaf\x8b\x6c\x23\xc3\xfc\x85\xd2\x53\x4d\x4f\x29\x3d\xe5\x74\x0c\xa1\x2c\x68\xa8\x59\xde\xe9\x38\x08\x97\x34\xf2\xbc\x4b\x50\x55\x9d\x6f\xac\x34\x7f\x26\xe5\x26\xaf\xd6\x8c\xb5\xa7\xfc\x41\x1d\xef\xba\x9b\x06\xb8\x3d\xd3\x4f\x42\x42\xd6\xdf\x6e\x4b\xe0\xe0\xe9\x25\x7d\x25\x8b\x7c\xdb\x2f\x56\x39\xf7\x53\xbe\x12\x02\xda\x36\x84\x8c\xa6\xbd\x05\x9c\xfd\x48\x9a\x76\x99\xd7\xd5\xdf\xf3\x5e\x10\x74\x1a\xfc\x4c\x36\x55\xdb\x36\x8c\xdb\x13\x7c\x24\x34\xf4\x8c\xeb\xa1\x94\xf7\x84\x85\xa0\x16\xce\xd9\x54\xcb\x56\xd0\xc8\x99\x27\xf8\xc5\xb5\x70\xde\x55\xd3\x7e\xd2\x8c\x57\xfc\x39\x28\x4a\x9d\xd0\xdc\xb8\xfd\xbc\x26\xc4\x6b\xee\x09\x7e\x44\x00\x5d\x92\x17\x1b\x42\xe5\x36\xaf\x4b\xc6\xd1\x21\xff\x22\xbc\xd0\xaf\x24\x5f\x2c\x9a\x5d\xdd\x67\x5d\xd9\xf7\x55\xbd\x64\x64\x1f\x4a\x52\x7a\xa1\x49\x49\x90\xe7\xd2\x6e\x9b\x9d\x9b\x4e\x4a\xff\x2b\xfd\x4c\xcf\xe4\xa7\xe4\x05\x85\x90\xe9\x4a\xf2\x48\xba\xec\xaa\x2c\x0b\x19\x4b\x97\xbe\xa2\xef\x64\xbb\x5b\xaf\x09\x6b\xbf\xed\xca\xae\xe7\x42\x67\xf4\x9b\xc6\x2f\xbf\x93\xaa\xeb\xe8\x83\x92\xdf\xe2\x23\xa1\xa9\xab\x17\x18\xcc\x11\x3e\x92\xe4\x43\x57\xe6\xed\x62\xf5\x31\x91\xbf\xe8\x2b\x7f\x30\xed\xed\x9b\x54\x26\x24\x25\x22\x69\xc1\x1a\x48\x16\x4d\xc1\x3f\x8e\xe8\x0f\x55\x5d\xd5\x5d\x9f\xaf\xd7\x1f\x13\xfd\x60\x30\xf9\x92\x09\xe8\xab\x1e\x58\xd0\xc4\xf4\xa2\x2f\xb7\x1d\xcf\x60\xfa\xaa\x6a\xbb\xfe\x69\x5f\x11\xb1\x9e\xef\xea\xa4\x68\x16\x9f\x68\x19\xf0\x92\x46\xcb\x6f\xaf\x52\x42\xd6\x23\x5a\x08\xed\xae\xae\x09\x3d\xe9\xeb\x86\x50\x46\xcd\x54\xd4\xfe\x31\xa0\x0f\xd2\xed\xba\xcc\x3b\x02\x29\xf3\x22\xfd\x31\x4f\xfb\xbc\x5d\x96\xfd\xf3\x07\xd9\x9c\x96\xdf\xa7\x07\xe9\xaa\x2d\xaf\x9e\x3f\x78\xd8\x3d\x78\xf1\x7a\x47\xc5\xd6\x55\x5d\x76\x3f\x3e\xcb\x5f\xa4\x8b\x9c\x72\x08\x8d\xb7\xe9\xbc\xbc\xe2\xd5\x46\x6d\xa5\x44\xe5\xf5\x92\x57\xda\x6d\xbf\xe2\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\xc9\xed\xc5\x9f\xde\x1d\xa4\x67\xc4\xdb\x96\x6d\x89\x6f\xfa\x8f\x4a\x7c\x9f\xd2\x68\x2f\xab\xe3\x97\xb3\x84\xca\x1a\x42\x8e\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\x7b\xe6\x01\x94\xee\x30\x7b\x26\x38\xa3\xaa\xd2\xb7\xef\xdf\x9f\x1e\xbf\x4c\xcb\x7a\x49\x98\x49\x6f\xaa\x7e\x95\xee\xfa\xab\xff\x9e\x2d\xcb\xba\x6c\xf3\x75\xb6\xa8\x18\x29\x2d\x11\x6c\x4a\x58\x92\x21\xce\x92\xae\x5b\x13\x8b\x02\x15\x5c\x5c\xbc\x4b\x4f\x98\x12\xb6\x79\xbf\x42\x47\xfa\x55\xd2\xfd\xb6\x66\x44\xb9\x06\x2f\x57\x65\x8a\xc5\x00\xa0\xe6\x6a\x88\x97\xb4\xd0\xbe\xce\x92\xb2\x6d\x33\xe2\xa0\xfd\x2d\xa3\x59\xeb\xdc\x07\x2d\xd5\x11\xb5\xd7\x4d\x4f\xd3\x98\xa2\x9c\x54\x51\xd5\xd7\xf9\xba\x2a\x08\xd9\x1e\x21\x71\x59\x24\x16\x0d\xcd\x1b\x97\x26\xca\x6c\x6e\x30\xd4\x7c\x41\x1b\x40\x97\x3e\x98\x3d\x00\xc7\x7d\xf0\xf4\xc1\x2c\xa9\x9b\x4c\xb8\x04\xf3\xe6\xa2\xea\xf2\x39\xf1\x69\xd9\x37\x5a\xe3\x7a\x7f\x65\xfa\x91\xae\x28\x44\x1a\x41\x30\x6e\x79\x2f\xc2\x16\xc0\xc4\x95\x13\xc3\x06\xb3\x51\x36\x13\x8e\xdd\x78\x92\x9b\x5f\x61\x4b\x2e\x61\x34\xe6\xc4\x26\xcc\xa8\xeb\x70\xbb\x5d\x57\x0b\x69\xfa\xb5\xe4\x79\x42\xe3\x9d\x59\x91\x12\xc2\x81\x50\x2c\x2f\x20\x17\xea\x35\xb3\xad\x34\xe2\xf3\x28\xbf\x2a\x69\xe5\xac\x76\x4b\xd9\x9d\xd6\xcd\xae\xf8\x06\x0c\xc5\x66\xce\xf3\x93\xf4\xbc\xa1\x0e\x83\x3a\x1c\x80\x6f\xe2\x90\x18\x03\x0b\x03\x6d\xb9\x69\x7a\x46\x9c\x16\xab\x68\x7a\x6e\x2a\xca\xa4\x91\x76\xf9\x35\xb1\xc5\xbe\x91\x25\x59\xd0\x92\x5b\x70\xc5\xc4\xc1\x76\xb4\xa3\xcb\xb2\x20\x3e\x22\x4b\xc3\xd2\x62\x1a\x04\xd4\x66\x47\xab\x69\x45\x95\x31\xe2\x59\x22\xa1\x2a\xa7\xfa\x89\x21\x51\x3d\x58\xe5\xb4\x72\x1b\xda\x3c\x79\xa2\x8f\xf1\xa1\xbf\xc3\xfa\xa9\x57\xf9\xd5\x15\xf5\xaa\xa3\x55\xf1\x26\x5d\xac\x1b\x5a\x52\xbf\x9c\xbf\xeb\x78\xc1\xac\xb2\x6d\xd3\x42\x12\xa1\xac\x33\xfa\x74\x69\x01\xa2\x19\xa2\xde\x6d\xe6\xf4\xeb\x66\x55\x11\xa3\x06\xda\xb9\x04\x4b\x49\x94\x4a\x4d\xec\x3a\x9a\xc2\x83\x94\x96\x30\x8d\x80\x50\x06\x02\xe0\x31\x18\xd5\x31\xf8\x15\xd1\xd8\xae\xa5\xe5\xb4\xea\xfb\xad\xb5\xfc\xe6\xf2\xf2\x4c\x9a\x76\xa9\x77\xb5\x9d\x07\x94\x81\x39\x58\xb3\x6c\x54\xa7\x4d\x3d\x03\x91\xec\xda\xf5\x80\x7e\x68\xac\x96\xb3\x07\x2f\xdc\x85\x67\xfc\xdf\x85\x47\x0f\xf0\xdc\x91\xd4\x77\x03\x6a\x22\x1c\x97\x90\x53\x88\xa8\x9b\x2d\xd7\x1b\x50\xf5\xa9\x26\x78\x52\x86\x6c\xe3\xf2\x45\xc2\xa1\x5c\xc8\x94\xc1\x2e\xbd\xa1\x01\x2b\x1b\xbd\x38\x21\x34\x80\x97\x22\xf5\xaa\x6d\x36\x94\xfa\x8a\xfe\xf8\x04\xdf\xfd\x13\xae\x0f\x30\x79\x51\x10\x97\xef\x0e\xd2\xf3\x57\x47\xe9\x7f\xf9\xfe\xbb\xef\x66\xe9\xdb\x9e\x57\x22\x13\xe7\xdf\x98\xa8\xe8\x53\x44\x2d\x07\x4a\x1c\xab\x27\xba\x7b\xc0\x2b\xeb\x41\xfa\x23\x72\xff\x47\xf9\x39\x27\x11\xb1\x9c\x2d\x9a\xcd\x0b\xe6\xaa\x9b\x9c\xd6\x3e\xe7\x10\xb9\x2a\x1d\x5f\x94\x75\x41\x1f\x2a\xb0\x69\x5e\xc0\x0e\x34\x3f\x10\xdf\x44\x70\xcd\x16\x4d\x7d\x55\xb5\x3c\xa0\x9f\x6b\x50\x83\x89\xb4\xb4\x5d\x23\xc7\xa4\x22\x42\x1a\x71\x90\xea\xea\xd6\x83\x62\xa8\xef\x39\x51\x27\x34\x11\xaa\xcb\x54\x44\x77\x58\xbe\x10\x62\xe4\x79\x3b\xa5\xe1\xb5\x86\xef\xce\x23\xbc\xb9\xba\xe2\xbd\xd6\x76\x09\x6d\xe1\x54\x52\x65\xc3\x08\x41\x88\x18\xb7\x10\xca\x8f\x95\x88\x8f\x8e\xdf\xa7\xe5\x35\x51\x1b\x73\xbd\xb6\x29\x76\x0b\x50\x18\xc3\x1e\x30\xb3\x26\x16\xd1\xd1\xda\x58\xc8\xbe\x12\x30\x09\xee\x1a\x73\xa2\x05\x01\x11\x6f\x30\x66\x4d\x82\xe4\x35\x71\xfe\x36\x68\xe2\xb5\x25\x69\xef\x47\xb0\xa3\x4e\xb9\x12\x3c\xf2\x05\xcd\x38\x51\x85\xf4\xa2\x93\x4e\x49\x36\x91\x3b\xd1\xf1\x8e\x4e\x28\x79\x41\x7d\x99\xdf\x82\xef\x74\x4c\x0c\x45\x79\x95\xef\xd6\xbd\xef\xd7\x60\x13\xb1\x96\x2e\xf8\x90\x14\xe6\x4d\x16\x18\x75\x10\xd4\xd3\x0d\xcb\x12\x19\xd6\x24\xe7\xc8\x66\xc3\xf4\x2a\xa7\x10\xdb\x77\x88\x3d\x95\x98\x9e\xcc\x8b\xfc\x3a\x5f\x26\xf9\xc7\xf9\xae\xd9\x73\x91\x7c\x52\x6c\xb5\x5c\xa3\x55\xc0\xa2\xc2\x74\x5f\x66\x89\x8a\x4b\x99\x1e\xd7\xb2\xeb\x0a\x87\x21\x47\xae\x52\xa5\x1e\xe1\x98\xaf\xfd\x99\x01\xf8\x94\xd5\x4d\x96\x75\xbd\x39\xe5\x41\x76\xee\x30\x24\x38\xe7\xe1\xa2\x05\x16\xe1\x68\x96\xae\x2b\xb0\x79\x25\x18\xe0\x85\xa8\x06\x4d\x53\x53\x5d\x59\xa2\x06\x2a\xff\x8c\xea\x44\x99\x99\x1e\x10\x54\x66\x37\xd1\x8f\xb7\xfb\xa2\x81\xec\x80\xbd\x84\x4a\x1b\x5a\x07\xfb\x7a\xda\x56\xcb\x15\xf1\xd6\xe6\xe6\x40\x90\x72\xb3\x6a\x4a\x5e\x3f\x6f\x8f\x9f\x7f\x2b\xfd\x58\xf2\xce\xe2\x0a\xf1\x9e\x94\xef\x88\xb8\x08\x63\x4a\xc6\xd2\x05\xb7\xb7\x03\x72\x74\x14\x11\xa0\xe1\xe1\x6f\x24\x4a\x38\xa6\xa1\xbc\x22\xcc\x53\x26\xe1\x61\xa4\xb4\x1d\x20\xa5\x61\xe5\x4a\x2a\xef\x67\xcb\x06\x07\x19\x93\xef\x79\xb7\xa4\xf3\x70\xd7\x67\xcb\xaa\xcf\xae\x98\x75\x71\xcd\xaf\xb8\x06\xde\xbc\x29\x27\x7d\x44\x59\x8f\x52\xe2\x7f\x74\x3a\x2b\x7e\x48\x1f\x5e\xab\xc4\xf8\x3d\xf3\xa4\x8c\x56\x51\xb5\xc6\x94\xe8\xf1\xa8\x2d\x45\x60\xb5\x33\xb8\x93\xda\xba\xdd\x16\x7b\x9b\x0a\x88\xee\x34\x50\x34\x37\x35\xaf\x3e\x30\x5f\xe2\x33\xd5\xa2\xa2\x3d\x63\x5e\xd5\x39\x6d\xf0\x56\x0b\x98\xfa\x43\xa2\x89\xf7\xa7\x97\x00\x5c\x36\xf3\x5d\xb5\x2e\x0c\x60\x96\x98\x10\x49\x22\xa4\xce\x7e\x28\x56\x5b\x52\x25\x7d\x59\x34\x2d\x4b\x24\x18\x8d\x15\xdc\x23\x0a\xb5\x2c\x62\x20\xb9\xe2\xf3\x0c\x60\x51\xce\x49\x2d\x8c\x06\x9a\x7e\x1c\xd5\x58\xa6\x01\xdd\x54\x5d\xfd\xa8\x47\x4f\x17\x3b\x6a\x8b\xa6\x9e\x93\xa9\x60\x97\x3e\x7d\x41\xff\x27\x2c\x21\xc9\x0e\xb0\x1c\x23\x9e\x33\x53\xc9\xdc\xc9\x5a\x8c\xba\x1a\x11\xb9\x9b\x6a\x23\xe1\x60\xac\x61\x7f\x8d\x04\xba\x9d\x50\x2d\xab\x4b\xd6\x34\xad\xe5\x37\xf4\xc1\x27\xb7\xe5\x1a\x93\x90\xf7\x7a\xbc\x6a\x08\x6f\x4c\x20\x07\xb2\x68\xae\x68\x68\xcc\x4b\xfb\xfc\x53\x89\x13\x19\xed\xf9\x1f\x58\x0f\xf4\x31\xd9\x89\x0c\xda\xac\x0b\x77\xde\x01\x65\x37\xed\x50\x8d\xe1\x81\x1c\xd5\x76\x24\x6c\x2f\x56\x99\xd3\x22\x31\x52\xfa\xf2\x33\x76\x7f\x64\x79\xa5\x12\x93\x3c\x67\x25\x9b\x5b\x4c\x17\x0f\xe2\xe4\xd6\xcf\x16\x49\xa0\xb4\x50\xe8\x30\x3b\x6f\x18\x6b\xd7\xa5\x83\x3a\x0a\x53\xe3\x02\x54\x17\xc9\xca\x5a\x55\xac\x6d\xa0\x2c\x51\x89\x68\xae\xa8\x45\xba\x04\xac\x4c\x55\x60\xe0\x78\x34\x9f\x7a\xb2\x9f\xd1\xc4\x40\x6d\x60\x2d\x13\x5f\xbc\x95\x75\x11\xb4\x99\x7c\x50\xf5\xd8\xc7\xc4\xe0\xce\xe3\x7c\xe2\x29\xab\x8f\x81\x0a\x2a\xb3\xd9\x35\x55\x14\xb4\x27\xca\x56\xbc\x48\xb1\x2a\xb7\x2c\x7d\x6c\x3a\x90\xc5\x9a\x4f\xda\xb7\x2a\x3f\x3b\x02\xf9\x49\x18\x36\x51\x0c\xb1\xb9\x6f\x92\xae\xe1\x05\x97\x7d\x65\x15\x2f\x2b\x22\x05\x94\x8f\x37\x3b\xd1\x8d\x91\x98\xcb\xd3\x47\xab\xec\xf6\x20\x3e\x59\xad\xf2\x8e\x98\x38\xc9\x0a\x5a\xac\x98\xd9\x09\x97\xa7\x9d\xce\x73\x58\x33\xd0\xe7\x81\xca\xa5\x64\xd3\x0e\x77\x61\xee\xa1\xf0\x39\x6d\xc5\xc9\x4e\x90\x8c\x42\x01\x6a\xa2\x4d\x42\xd8\xa6\x64\xf1\x39\xdb\x88\x1a\x4d\x7e\xa5\x27\x65\x42\xdb\xe1\x92\x16\xb4\x11\xec\x73\xd6\x7e\x2c\x71\xca\x50\x7a\x65\x80\xb2\x0f\x19\xb1\x42\x58\xca\x4f\xa6\xb7\x24\xce\x70\x03\xd5\x10\xad\xed\x11\xfa\x69\xcb\xa2\xec\x99\x31\x76\x91\x11\x20\xea\x75\xc4\x2d\x3c\x12\x0f\x53\x56\x40\x86\x50\x2a\x72\xfb\x61\x71\x01\xe6\x1a\x3f\xce\x5f\x3c\xec\x7e\x7c\x36\x7f\xe1\x78\xeb\x62\x55\x2e\x3e\x09\xfd\x55\xf5\xbc\xf9\x8c\x83\x2d\x14\x25\x74\xa6\xe6\x35\xf6\xb0\x48\xe9\xa0\xdb\xe2\x5c\x45\xbc\x80\x8a\x11\xe2\x39\x37\x9a\x34\xea\x0c\xb3\x0c\xda\xda\x16\x58\x55\x20\x70\x4f\x90\x87\x9c\xca\x24\x89\x0d\xc0\xd3\x24\x06\xb2\xae\x36\x55\x3f\xa2\x09\xe6\x30\xb9\xd2\x96\xea\xca\x0c\x49\xa8\x0b\xc3\xc4\x28\x89\x4f\x53\x35\xb4\xaf\x1a\x9d\xdc\xe4\x74\x90\xfa\x3e\x25\xda\xd8\xd1\xfe\xc4\x9d\xa5\xf1\x10\xa3\xce\x79\x63\xa6\x43\x54\xde\x65\xbb\x5a\xf1\x55\x16\x46\x25\x6f\x2a\x6c\x1f\xdc\xae\xd1\x72\x00\x65\x28\xd5\xb3\x40\xfa\xd8\xa1\xf2\xc9\x4c\x75\x5b\x28\xc6\x3c\x9d\x3b\x54\xb1\xdc\x9a\x4f\xce\x0a\xf1\xbc\xba\x94\xb3\x2f\x30\xc0\x70\x3c\x83\x74\x80\xf2\xd3\x42\xa7\xb0\x4f\x94\x02\x4c\xcf\x77\x7d\xdf\xf0\xb9\x64\xcd\xe4\x20\x65\xac\xd7\x47\x00\xc4\x51\xcb\xd7\x87\xe9\x0c\xf1\x24\x2c\xb6\xb4\x73\x42\x46\x74\xc8\x6b\x5a\x34\xdc\x7c\xa2\x1b\x8c\x4e\x37\x41\x07\x56\x88\x2e\x29\xaf\x6f\xbd\x7a\x03\xbd\xe0\x06\xfb\xe9\xbe\x3c\x6e\xcb\x27\xbe\x37\x6e\x31\xa0\x84\xf5\x48\x8a\x07\x0b\xe5\x1c\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\x92\xe3\xb7\x75\x8f\x8e\xee\xf5\x32\xd2\x5b\xe1\x5e\x04\x44\xf7\x5f\x79\x03\xe4\x81\x7e\x4c\x74\x36\xca\x60\x51\x28\xb5\x5a\x8e\xcd\x9a\xac\x0d\x07\x6f\xc2\xda\x9f\xcb\x96\x8f\x77\x00\x8a\x67\x6b\x1f\x16\xe3\x41\x38\xa6\xe8\x77\x77\xc7\x10\x35\xe9\xc0\xf6\x7b\x0f\xec\x0e\x95\x9a\xc3\x24\x29\xb7\x37\x34\xb0\xa6\xc8\x69\x64\xb7\x50\x56\xff\x95\xf6\xa4\x1a\xd7\x00\x4d\x42\x19\x52\xe8\x04\x1f\x04\xca\xc7\xe2\x8f\x09\xef\xfa\xef\x07\xf2\x2c\x6f\x6a\x9a\x16\x88\x54\xc8\xfa\x39\xba\xe7\x70\xa3\x3d\x9b\x90\x7d\xcf\x4b\x7f\xdd\x81\x2f\x37\xec\x8b\x8b\x37\x97\x76\xce\xbd\x78\x93\x7e\x2a\xb5\xf2\x37\x7d\xbf\xed\x7e\x81\xce\x43\x14\x18\xac\xed\x38\xcb\x6f\x59\xce\x94\x64\xfd\x81\x8c\xcb\x32\xdf\x68\x2f\xf9\x53\xaa\x38\xa4\x0d\x58\x13\xf9\x93\xf6\xe5\x40\x97\x96\x40\xe2\xfa\x79\x4a\xd2\x76\xe7\x9e\x52\xef\x52\x7e\x1d\x29\x00\x7f\x4d\xf2\xf5\x96\x8e\x66\x2c\xf2\x04\x60\xd0\x75\xcd\xf5\x84\x96\x02\x04\x44\xbe\xdb\x10\x71\x2c\x70\x22\xa5\x02\x8f\x9f\x66\x4f\x02\xdd\x67\x5c\x59\x41\xab\xff\x77\x55\xc8\xdf\x2c\x17\x87\xf5\x76\xd5\xdf\x6d\x14\x51\x75\x9c\x4e\xcc\x94\x20\x20\x85\x7a\x28\x07\x84\xad\x9c\x25\xd2\x9e\x55\x5f\x94\x40\x52\x6f\x54\xf5\x26\xff\x7c\x5f\xc1\x4d\x33\x51\x4e\x78\x9c\x2f\x64\x9c\x4c\x87\x18\xaf\x1c\x82\x67\xe5\xd6\x5e\x68\x9a\x7a\x02\xa9\xea\xc5\x7a\x57\xec\xed\x49\xb7\x9b\xd3\x36\xc8\xe2\xf4\xa3\x87\xdd\x23\xae\xb2\xfe\x44\xfb\x76\xed\xe0\x7f\x91\xdf\x29\x7e\xff\x60\x37\x71\x74\xe0\xd5\x33\x46\xea\xee\xe4\x48\xfc\x28\x78\x03\xc1\x59\x61\xe6\xf9\x4e\x78\x7e\x70\xe4\x0f\xad\x85\x1e\xf0\xdc\xda\x67\x55\x05\x8e\x52\x44\x82\x33\x7f\x7d\x98\xb1\x14\x90\xb1\x5c\x5e\x87\xd2\xb7\x93\x0f\x6c\xa3\x05\x84\x5c\x22\x65\xe3\x72\x83\x05\xba\xb7\x38\x09\x3b\x13\xa5\x4f\xc7\xea\xe6\x3d\xe5\x7b\x5a\x62\x13\x15\xb8\x95\xb7\xb7\xa0\x4c\x3e\x0a\xd1\xc8\x8b\x11\xef\x18\x17\x64\x30\x3a\x19\xae\xd7\xe5\x92\xf5\x92\xd6\x70\xd4\x9a\x4e\x34\xed\x8a\x02\x16\x12\x9c\xc7\xb0\x9b\xac\x70\x5e\xc3\x73\x8e\x9b\xa3\xf8\x84\xc9\xea\x1a\xaa\xaa\xc5\x15\x70\x70\xce\xd4\x6e\xe8\x26\xb1\xe1\x23\x55\xb7\xe3\x3d\x8a\x8f\x5f\x22\x7f\xc5\xb3\xc1\x12\x08\xaa\x2a\xd1\xc4\xfe\xea\x89\x16\x99\xb3\xdf\x57\x3f\xc0\xbe\xb2\xea\x50\x2f\x31\xae\x58\x2b\x77\x40\xfb\xaa\x75\x67\xe6\xf2\x73\x05\x1d\xef\xeb\x8a\x75\x87\x38\x35\x3b\x65\x01\xf2\x66\xc9\x9a\x98\x07\x9f\xce\x64\x54\x22\xa9\x37\xd7\xbc\x1a\xb9\x3d\xce\x95\x72\xa2\xf3\xd5\x41\xf1\x3c\xeb\xf9\x1b\x37\x45\x65\x71\x40\xb2\x0e\x97\xa0\x7e\x62\x71\xe7\xeb\x9b\xfc\xb6\x83\x32\xc9\x38\x14\xeb\xb7\xa5\x38\xb3\x1f\x92\x84\x96\xe8\x55\x78\x8b\x42\x2b\xce\x30\xc1\xd7\x01\xbc\xd9\x38\x79\xe5\x06\x27\x68\x70\x17\x55\x4f\x5d\x07\x3b\xba\xee\x4d\x7c\xfa\xe7\xb3\x32\x9f\x62\x24\x3b\xa8\x08\xd7\x93\xba\x53\x4c\x94\x3d\x60\x39\x91\x9a\x61\xa9\x8d\xf8\xb7\xe0\x9a\x04\x61\xc2\x2c\xba\x14\xa8\x53\x76\x54\xff\x53\x91\xfc\x2b\xc2\x21\x9f\x24\xbd\x86\x81\xf7\x32\x9a\x15\xbb\x05\x90\x74\xe8\x07\x92\xae\xa7\x25\xc0\x98\xb6\x3b\xff\xbf\x06\x22\x4b\x8a\x5c\x2c\x31\xa0\xa9\x5b\x55\xdb\xb4\x81\x66\x39\x44\xa1\x27\xdb\x40\xd6\xe6\xfb\x8e\x12\x27\x0b\x56\xb1\xb7\x79\xdd\x5d\x95\xd0\xb5\x6f\xd2\x2b\xbe\x56\x9e\x69\xd3\x2c\xba\xcb\xdd\xff\x9e\x96\xe5\x94\x86\xa6\xc3\xdd\x05\x73\x17\x4c\x54\xdc\xb4\x5c\xbe\x40\x9f\x8b\x3e\x00\xab\xbe\xa6\xce\xfa\xc0\x64\x36\x42\x01\xc4\xe7\xe8\x2a\xcd\x7a\x73\x5d\x86\x88\xb8\xfa\xbd\x23\x0f\xb0\xae\xd7\x09\x72\x07\x13\x4f\x93\x34\x0a\x85\x0e\x6e\x82\xe7\xb7\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\x2f\x91\x93\x4a\xce\x68\x81\x26\x1f\xb8\xe9\x8f\x89\x5c\xc6\x67\x4e\x6f\x7f\x24\x97\xf3\x22\xf4\xaa\x1e\xbe\x4f\x4d\x59\xcf\xb7\x29\x56\x44\x54\xf3\x77\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\x8c\x16\x06\x89\x3d\x87\x9a\x42\x07\x79\x70\x07\x28\x77\x5e\xd9\x37\xcd\x47\xce\x4c\x8f\x97\xb6\x7c\x29\x9c\x68\xda\x5e\xd9\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\x13\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\xcf\xd3\x63\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\xbb\x29\xe7\x29\x6b\x84\x89\x70\xe8\x80\xa8\x03\xdd\xe4\x74\xb6\xbc\xae\x72\xa7\x7b\xa2\xd9\x62\x2b\x1e\xdd\x45\x5f\xb1\x05\x0f\xee\xdb\xc7\xa6\x66\x7c\x79\xa5\xf7\x41\xef\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\x9b\x74\x5d\xd5\x9f\x3a\xc5\x26\xf3\xb1\xf0\xfc\x0a\xad\x15\x11\xe1\x4e\x4c\x8b\xe4\x73\x6c\xc9\x64\x37\x51\x83\x15\x6e\xf7\x55\x72\x27\x77\x88\xe4\x49\x58\x7f\x8a\xb7\x3b\xb3\xab\x92\xc5\x64\x30\x35\xbb\xdf\xa3\x51\x36\x4d\xa7\x3a\x52\xcf\x44\x38\x0d\x7a\x17\x85\x52\x9c\x3b\x08\x9d\x92\x43\xbb\x55\xc4\x9a\x4a\xec\x1e\xd0\x3a\x80\x15\x9a\x55\x1b\xb1\x0c\xfc\xc5\x6e\x09\x31\x3f\xee\x34\x81\x6c\xd8\x9d\xc4\xbd\x0f\xaf\x46\xde\x37\x76\x07\x69\xdc\xd0\x32\x0f\x6c\xd3\x17\x0c\x60\xcb\x8e\x3a\x3b\xa4\x0f\xad\xc0\xb4\xfc\xf7\x90\x89\x11\x41\x78\x6f\x24\x13\xef\x18\x44\xb3\x8e\x44\xbb\x23\xbd\xaf\x70\xf9\x8c\xd9\x20\xff\x3d\x6e\xf8\x9c\xde\x81\x0f\xe4\xd9\x00\x44\x0f\xec\x11\xe4\xa4\x04\x6d\x6d\xed\x95\x9e\x07\xbd\x1f\xad\x15\x2b\x77\x43\x58\x08\x07\xae\xd4\x5d\xcc\xcc\xd4\x87\x95\xad\x72\x5d\x08\x9b\x0c\xb1\x4b\xa9\x71\xd7\x28\x55\x10\xaa\x70\xc0\xe8\xfc\xb9\xe2\x50\xb8\x0f\xdf\x11\x88\x61\xa2\x03\x50\xdb\xc4\xf8\xbc\x59\x9a\x81\x43\xc8\xc8\xb6\x2d\x91\x07\x6d\xb4\x03\x15\xdc\x88\x85\x45\xec\x0a\xdc\xaa\xc1\x6d\xbd\xe7\x52\x74\x62\xd4\xba\x98\xdf\xe3\xcb\x52\x9c\x1a\x89\xe8\x98\x45\x5d\x4d\x56\xe6\xec\x72\x85\x45\xbb\x4e\xd2\x0f\x61\x5c\x3a\xdc\x63\x4d\x19\x00\xd8\x70\x94\xc1\xf7\x13\x0a\x45\x8c\x46\xc5\x0e\xe3\xbf\x55\x2d\xd6\x12\xee\xf6\x2e\x62\x20\xe9\x31\x38\x0a\xcd\x9b\xa8\xae\x8d\x9f\xfc\x34\x6c\xdc\x4f\xf8\xcf\x03\xad\xb7\x0c\x2e\xa6\xf7\x6f\x12\xea\x12\xa8\xd1\xdf\x82\x16\x98\xe6\x81\x52\x8d\xc1\x42\x10\xd5\x58\xba\xe4\x2c\x52\xcb\x43\xc1\xfe\x55\xaa\x78\xde\xbb\xff\x09\x5a\xf8\xa8\x2d\xaf\x85\x77\xbd\x1c\x2c\x07\xee\xde\x60\xe7\x1c\x2d\x0c\xca\x80\x1c\xa1\x24\x1d\x48\x07\x4a\xd4\x4e\x48\xe0\x66\xe4\x6c\xc2\x18\xa2\x24\x88\x12\x4a\x0d\xd8\x42\x58\x50\x85\xa5\x11\xcc\x04\xe5\xa0\xd2\x8d\xf4\xca\xf1\xc4\x1f\xe2\x24\x46\x58\x11\x58\x98\xf2\xd1\xc6\x2c\x52\xac\x9e\xec\x36\x8c\x08\xb9\x67\x77\x56\x5f\xa3\x4b\xb4\x03\x3d\xfe\xac\xaa\xe5\x8a\xc6\x55\x6d\xf8\x76\x19\xe4\x64\x57\x98\xfe\x74\xca\xbf\x88\xa1\x34\xcb\x9a\x75\x57\xdc\x82\x98\x79\xb9\x0d\xe6\xc7\xae\x6f\x9b\x7a\xf9\xe2\xb8\xe1\x63\x23\x6b\x74\x78\x13\xfc\xe9\xc7\x67\x9a\x4e\x4c\x93\xe7\x90\x6d\x02\x5f\x57\xfd\x9b\xdd\xfc\x51\x97\x2e\xd9\x48\x15\xf7\x2e\x79\x60\xba\xaa\x86\x05\x62\x83\x77\x53\x3b\xb4\xc0\x90\x95\x16\x7a\xd7\xac\x69\x95\xc4\x45\x9a\xcd\x46\xe6\x97\x36\x80\x8d\x40\xa2\xff\xb0\x45\x28\x6b\x60\xae\x6c\x15\x3f\x54\xe1\xcc\x91\xb9\x9f\x1f\x9d\x36\x13\xf7\x22\x3d\x89\x0a\x5c\x0c\x8c\xcb\xd5\xba\x0f\xb6\x0d\xd6\x91\xa4\xae\x18\x04\x85\x71\x31\x4c\x24\xab\x9d\xbc\x8a\xc6\x94\x2c\x38\x09\xa0\x0e\x2b\x4f\x45\xa9\x27\x22\x31\x71\x9a\xb5\x29\xb2\x42\xc9\xfa\x6f\x21\xad\x80\x7e\x79\xaf\x30\x15\x2e\x04\x5f\xaf\xcc\x61\x82\x1d\xac\x72\x65\x6c\x32\x7a\x65\x6b\x36\x82\x80\xb1\x29\x4e\x3c\x67\x1b\xc2\x4c\xf1\x36\xeb\x45\xc8\xd4\xc4\x88\x49\x18\x9b\x90\x24\x9d\x34\x98\x6d\x7f\x21\x53\x1b\xb5\xeb\x07\x6e\xcd\x7d\x01\x5f\xc3\x98\x0e\x81\x0e\x1a\x0b\x74\x23\x3a\x53\xef\x54\x13\x82\x0c\x36\x80\xf5\xa7\x9e\xf7\x8d\x5e\xa1\xa5\x96\x88\x39\xa1\x63\x4e\x5f\x46\x8b\x99\x3b\x01\x93\x45\x31\xc9\x81\x72\xe5\xbf\xa5\x45\x4e\x9c\xa0\x6f\x3e\x11\x31\x8d\x8b\x20\x7d\x5f\x21\xc7\x61\xec\xac\xa1\xfc\xe5\xd0\xb3\x87\xe1\xe9\x43\xaf\xa2\xf7\xb2\x98\x80\xb3\x68\xad\xce\x2c\x4a\x34\x43\x30\x07\x67\xdb\x91\x42\x38\x89\x32\x02\xb5\xfd\x71\x1c\x80\x24\xac\x9a\x81\xa0\xbe\xe5\x0f\xfd\x1d\x4e\x4b\x54\x7f\xb0\x5c\x88\x81\xef\xea\x80\x81\x0a\x39\x64\x82\x0a\x37\xc8\x33\x3a\x4a\xc2\xf6\xf1\x50\x2a\xbc\xe4\xec\x4e\x0d\x7f\xf5\x46\xdf\x8a\xbc\xd6\x44\xac\x01\x00\x0a\xc2\x3b\x87\x08\xfc\xf2\x5a\x05\xab\x45\xad\x35\xd4\xaa\x11\x73\x40\x54\x67\x2c\x73\x25\xd6\x1b\xe9\xe1\xd9\x5b\xda\x33\x5c\x83\x56\xe9\xcf\x39\x49\xd2\xd2\x85\x1b\xa7\xd1\x60\x62\x1b\xf2\x5c\x27\xf3\x4b\x71\x53\xa0\xa2\x24\x96\xb8\x1b\xd4\x68\x40\x32\x98\x38\x5f\x70\x5c\x76\x81\x96\x47\x5a\x43\x4f\x86\xbb\x95\x1b\xea\x37\x84\x59\xa7\x6b\xe4\xa5\xb5\xbd\x65\xfe\x1f\x98\x6b\xe5\x82\xa1\x1b\x70\xf0\x81\x9d\x18\x41\x42\xd3\x91\xf2\x12\x6e\x1d\xff\xb0\x0e\x2b\x07\x09\xa7\x32\x64\x23\x93\x93\xe9\x99\xca\x64\xb1\x29\xce\xb2\xb5\x7a\xe2\x31\xdf\xc7\x67\x98\xf0\xfd\x39\xfc\x0e\x2e\x13\x8e\x2a\x20\xe5\xb3\xc9\x66\x1d\x45\x4b\xd3\x03\x7e\x93\xca\x46\x28\xb6\x0e\xdc\x8a\x9c\x2e\x94\x22\x02\x33\x62\xaa\xe5\xa6\x5c\xb3\xfd\xaf\xb6\xee\x6f\x40\x75\xe8\x91\x51\x80\x02\x05\x27\xd1\xd2\x8b\xb8\x82\x8a\x50\x4d\x67\x95\x11\x04\x2d\x37\xd8\x01\xc8\x51\xde\xf6\xeb\xa3\xc3\xf7\xef\x4f\x2f\xfd\x36\xcd\xeb\xa0\x2e\x48\x98\xf8\xc6\x59\xcc\x8d\xfa\x65\x76\x73\x6e\x02\x63\x08\x6f\xb9\xa7\x25\xf6\xc1\x85\x6c\xca\x6a\xa7\xcf\x65\x03\xde\xd3\x70\x5f\x8c\x97\x47\xfd\x2f\xf6\xcd\x5f\xf2\x81\xe5\x9b\x8f\x89\x29\xbb\x4f\xf9\x6f\x12\xde\x17\x04\x77\x34\x58\x7a\xfe\x2a\xc7\x5b\xe7\x53\x07\x9a\x62\x74\x7f\x00\x26\xbd\xcb\x71\x34\x22\xdc\x37\xd8\x2b\xae\x52\xdc\x77\x1f\xb0\x3a\xb4\x69\xb1\x60\x18\xb9\xbb\xba\xfa\x6d\x07\x01\x8d\x0f\x46\xc4\x3c\xd8\x10\x73\x5e\xad\x65\x43\xf9\xb3\xfb\x21\xe9\xfc\x35\xb0\x20\x0f\x1a\xa7\x5f\x3f\x76\x5b\xb6\x63\xa5\xbd\xa1\x7b\xfe\x60\x57\xa5\xac\x5d\x63\x2b\xae\x07\x2f\xe8\x18\xc3\xb7\xe0\x34\x7d\x04\xf1\x62\x54\x1d\x7b\x91\x2d\x44\x15\xe7\xec\x81\x40\xb7\x9a\xce\xab\x85\x45\xde\x48\xff\x27\x88\xff\x1d\x6d\xb2\xcb\x9a\x1f\xc7\x63\x3d\x25\x13\x8e\xb0\x76\xaf\xf3\xf5\x2e\x56\x96\x70\xeb\x5c\xa6\x7b\x92\xc0\x3c\xde\x97\x85\xc1\x0f\xbc\x1d\x39\x83\xa8\xe1\x27\x20\xad\xbf\xdb\xe7\x89\xfd\x22\x59\xf4\xfb\x26\x41\x4f\x54\x01\x3d\xf4\x9e\x43\x9e\x99\xc1\x73\x1e\x6c\xe1\x91\x3a\x31\x1b\x81\x9f\x4b\xbe\xee\x45\xf5\x9c\x06\xb3\xc9\xac\x05\x83\x28\x43\x8a\xd1\x2b\x42\xc7\xc1\xba\x45\x5b\xc1\x96\x5f\xd2\xd9\x57\x32\x0d\xfc\x24\x5d\xa2\x6f\xf7\x82\xe8\x9e\x50\x34\x5b\x56\x3d\x1d\xb9\xd9\x63\x0b\x96\xdf\x09\xb1\x0d\xda\xc9\xe0\x65\x29\x5f\x96\x32\x2a\xca\x9b\xbe\xc0\x42\x65\xc6\xa2\xa6\xae\x00\xfe\xd0\xdf\x13\xa5\x14\xd0\x7c\x3c\xf9\xf6\xa3\xc9\xaa\xba\xe2\x85\xff\x96\xfe\xd0\xa6\x2e\x47\x80\x98\x4c\x45\xbe\x45\x25\xaa\xdf\x91\x43\xb8\xab\x47\x2d\xf1\x74\x56\xd4\x04\x2f\x98\x17\x35\x16\x57\x0d\x3a\xd0\x86\x84\xf4\x25\x12\xd4\xb5\x92\x7a\x42\xb3\x70\x2d\xe2\x90\x38\x5b\xbe\xb5\x94\xc7\x7c\x04\x7c\x92\xdc\xf0\x4d\xb0\x28\xa5\xff\xa2\x9f\xd0\x49\x2f\xf3\xbf\x4b\xea\x85\xfb\x81\x69\xef\x94\x10\xba\x3d\x1a\xe9\xe1\xb5\xee\xd7\x2b\xa6\x87\x35\xdc\xad\x9f\x66\xe3\xa7\x8c\x6f\x1b\x6c\x21\x44\xd6\x13\x89\x3a\x8d\x9a\xef\x9c\xf3\x1a\x15\xe7\xb9\x30\x77\x3f\x4f\x31\xe5\x49\x1e\x2f\x73\x18\x8d\xce\x69\x99\x3e\x78\x21\xd8\xb6\x35\x6e\xb5\xea\xe4\x9d\xa8\xdf\x6a\x30\x7b\x0a\x31\x93\x85\x6c\x67\x67\xb6\x1e\xe2\x73\xa9\xea\x81\xa6\xa1\xa2\x6d\x40\x45\xb1\x3c\xf0\x9d\x79\xf6\xfa\xed\x25\x3c\x67\x68\xae\xe1\xe9\x60\xee\x41\x6c\x53\x3c\x73\x75\xf2\x0e\x51\x75\x9d\x48\x0e\x75\x05\xc4\xf3\xea\xb5\x2b\x7f\x9b\x0e\x62\x6f\x72\xd2\xd5\xca\x42\xde\xe7\x6b\xb3\x7b\x4a\xc0\x98\x51\xf3\x5b\x49\xd4\x82\x9c\x88\x23\x74\x7c\xa5\x63\x66\x55\x79\xe8\xb4\x65\xd5\xba\x5b\x44\x3f\x6d\xe1\x05\xa2\x30\x12\xe3\x4e\xca\x56\xae\x1c\x7f\x82\xaf\x0e\x3b\x19\xc4\x8c\x09\xae\xc2\xc1\xec\x86\xa6\x81\xbc\x13\x16\xbc\x95\x6f\x6f\x33\x56\x48\x63\xf7\xde\xde\xfa\x84\x40\xcc\xa1\x8c\x2a\x02\x76\x26\x1a\x67\x98\xcd\xff\xf8\x3f\xff\xf7\xe9\x11\x0f\xef\xa8\x6f\xd7\xf4\xa5\x52\x24\xc3\x0b\xba\xa5\x82\xf4\xf4\x5f\xe9\x34\x70\xa3\xf6\x18\xbf\xc8\x57\x62\xbf\xb1\x24\x29\xbf\x53\x2d\x32\x3e\x12\xfd\xc5\x2b\x33\x51\xcf\x67\x5e\x92\x09\x1f\xc5\x94\x3c\xe8\x18\x16\x32\xd2\xdf\x76\xd5\xe2\x53\x26\x1a\x84\xe7\xe9\x9f\xf8\x57\x0a\xa7\x57\xdd\x4b\x98\x3f\x39\x66\x03\x22\x1c\x70\xac\xd0\x34\x18\x0c\x58\x0d\xf4\x3d\x73\xca\xe3\xbd\xf1\xd6\xec\x0d\x0d\x90\xfd\x79\x92\xed\x8e\x4d\x90\x78\xe2\xad\xb5\x33\x4a\x81\x73\x14\x27\xb2\x24\x13\xd4\xe0\x6e\x13\xa3\x3a\xd0\x3c\x75\x57\x9c\xdb\x26\x45\x00\x64\x79\x7d\x18\x9b\x9a\xcd\x73\x1a\xb2\x8a\xe3\x89\xe3\x9a\xca\x2d\xfb\xb6\xc4\x21\x83\xfe\x24\xc4\x8c\xd9\x56\x4d\xaf\x26\xd9\xa9\xb3\xcf\x71\x15\x87\x74\xbb\x98\xe4\xfb\xd5\x7c\xa9\x15\xe1\x74\xf1\x52\x3f\x13\x4a\xe7\xdf\x97\xf4\x67\xe4\x7e\xcd\xce\xda\x63\x27\xed\x75\x3e\x2f\x91\xfc\x0e\x1f\x44\xff\xb4\x1f\xf4\x34\x0b\x50\x93\xb9\x1f\x09\xa3\xa1\xea\x85\xf8\xf0\x95\xa8\xf7\x83\x5c\x43\xca\x67\x82\x4b\x9e\x36\x67\x53\xe0\xf3\xfc\x46\x7e\x12\x8a\xd4\x8b\xfb\x8d\x7c\x49\x32\x0c\xcb\x05\x14\x76\xe5\x0e\x1e\x02\xa4\xae\x80\x33\xfb\x4e\xac\x03\xb3\x71\x47\x2c\x67\xe0\x44\x9e\x2e\x06\xf9\x57\x72\x0c\x7e\xc5\x87\x60\x4b\xcb\xc1\xb1\x53\x33\x7c\x73\xe9\x1b\x5a\x46\x72\x13\x72\x22\x5f\x2e\xa7\x10\x63\xd3\x63\xec\x94\x9a\x66\x86\xfe\xa7\xfc\xd7\xa5\x12\x4d\xaa\x8c\x44\x7f\x9d\xd1\xbc\xc4\x58\xe0\xf3\xaf\x78\xad\xfb\xe4\xd9\x70\x2e\x82\xac\x9a\xc5\x8e\x39\xae\x9c\x68\x79\x21\x3f\xcc\x5e\x10\xfe\xdb\xcc\x95\x3f\xe2\x9f\xe9\x7a\x54\x8b\x9b\xdc\x70\x6e\x07\xcd\x84\x30\xd4\xd4\x24\x98\x34\x17\x42\x4a\x8b\x9b\x29\x60\x3a\xf3\xd4\x11\xec\x29\x25\x84\xa4\x15\x55\xcc\xd2\xfa\xa0\x66\x08\xf0\xd3\xf0\xb4\x19\xb2\x63\x15\x8e\x30\xfa\x39\xee\x67\x00\x24\xdd\xcc\x27\x40\x59\x93\xe4\xe1\x68\xe0\x43\x20\x55\x76\x3a\x9e\x33\x9c\x3d\x3f\x3f\x34\xb5\xc3\x09\x92\xcc\x8c\xe4\xab\x45\xe9\xdc\x42\x00\x04\x39\x83\xe3\x1d\x44\xcd\xb8\xca\xb4\xb1\xa8\x3e\x20\xb4\xcf\xe7\x94\xfd\xb0\x00\x36\x5d\x61\xc6\x95\xcf\x12\xd4\x59\xa6\x32\x17\xab\x39\xaa\x32\xcc\x23\x91\x28\x13\xf1\x50\x10\xe1\x44\xc5\xf5\x44\x89\x3b\x29\x6a\x08\xb3\xb7\xe6\x11\xdd\x68\xc9\x3b\xa6\xd7\x43\x70\x84\x80\xfd\x55\xef\x29\xa7\x32\x19\x24\xb1\x71\xce\x8c\x9d\x87\x1c\xff\x3c\x84\x3d\x0a\x78\xe8\x14\x68\xa7\x71\x4f\x48\xf8\xe6\xfd\xdc\x75\xb5\x50\xb5\xd2\x54\x21\x99\xe5\x22\x9b\xdf\x6a\x19\x99\x67\x38\x65\xee\x29\xb2\x61\x93\x16\x1c\xb1\xb4\xc8\x89\x4b\x98\x28\xd2\xa9\x53\x37\x7b\x55\x8f\x73\x66\xbc\x19\xc1\xe4\x85\x79\x53\x37\x09\xc2\x54\x0a\x90\x53\x7c\x4c\x81\x88\xb2\x55\xd5\x25\xbc\x0b\x88\xfb\x82\x5d\xcf\x4e\x36\xcc\x76\x3c\xae\xc4\x3b\x58\xf5\xb4\x5f\x50\x8e\x4d\x64\x99\xaf\x8a\x6e\xfd\xa4\x81\xd9\x2a\x7e\xde\xd1\x8e\x2f\x20\x0d\x8d\x4a\xf0\x4a\xc2\x2c\x10\x88\x7c\xa7\x0f\x3f\x7c\xfb\xb1\xe3\x69\xf0\xd7\x16\x1f\xbe\xfb\x48\x67\xd6\x87\x1f\xbe\xff\x88\xfb\x8a\x51\xe1\xec\x8a\xd5\x75\xe3\x1a\x50\xd0\xa0\xb7\x6d\x79\x5d\x35\xbb\x4e\x64\x34\x7c\x7a\xfe\xf0\x59\xa6\xe2\x73\x1f\x2f\x71\xe7\x5c\x3e\x58\xe1\x85\xcb\x8a\x57\x78\xbd\xdb\x64\x3a\xc6\x4e\x38\x80\xfd\x72\xc5\x0d\x03\x59\xce\x4d\xfe\xea\x7e\xf3\x70\xab\x82\x07\x4b\x9d\xb7\xa3\xfa\x1f\xe4\xd7\x0b\x0c\x84\x87\xfe\xab\x6b\xa9\x09\x6e\x3a\x2e\xc5\x3f\x9e\x25\x6b\x77\xe7\x72\x5b\xf6\xb3\x98\x2b\x59\xac\x16\x74\x39\xce\xd2\x5e\x78\x10\x9d\x37\x18\x06\x87\xe0\x6d\x09\xc4\x18\xdc\x39\x7e\x0e\x32\xef\xaa\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\x42\xeb\x95\xab\xe7\x8a\x30\x5e\x2f\xa0\x15\xc7\xc5\x01\x0f\x55\x0d\x43\x05\xfa\x2b\x9b\xd8\x36\x1a\x69\xea\x0c\x1f\x96\x2c\x6a\x28\xb5\xfa\x77\xb4\x19\xa9\xec\x34\xd1\xdc\xc0\xe8\x48\x40\x87\x1f\x70\x6c\x73\xfd\xe2\xbb\x23\x4e\x8a\x40\xab\x3a\x33\xe7\x01\x3d\x35\x10\xb3\x64\x83\x37\x19\x11\x91\x11\x7b\xbb\xaa\x16\x78\xaf\x67\x5e\x74\xb5\x68\x9e\x7e\x72\xb1\xcc\x13\x19\xae\xd6\xb2\x80\x5e\xe4\x67\xfa\xe3\xf0\x3a\x30\xe2\xb1\xfe\x71\x2b\xd4\x7d\xfa\x63\x49\xb2\x2f\xda\xa2\xf3\xfb\x76\x9c\xbf\x68\xd6\x8d\xdf\xd7\xf1\x6b\x08\x20\x5a\xd9\x87\xc5\x40\x36\x93\x6c\x4f\xdb\xba\x7a\x39\x61\xb0\xf3\x08\xe4\xc4\x60\x24\x63\x60\xa2\x16\x67\x3a\x6f\x16\xe9\x20\x7c\x5a\x2c\xa2\xc2\xb8\x16\x35\xf4\x02\xa8\x53\x0b\x4f\x82\x4d\xe9\xff\x45\xca\x08\xf5\xfd\x2c\xb3\x87\x86\x12\x7c\xe3\x1d\x5c\x01\x68\xcd\xfb\x35\xfe\xd3\x4d\xfb\x33\xb1\xf4\xf4\x9e\xab\x45\x39\x04\x05\x32\x78\x78\x18\xd2\x4c\xd6\x19\xe7\x44\x97\x62\x56\xa3\x07\x0d\x4e\x51\x6b\xa2\x6e\x1a\xce\xb0\x60\xc0\xfd\x4d\x93\xba\x23\x1a\x62\xa4\xf1\x2e\x91\xa7\x5c\xd8\xfc\x00\xb1\x36\xb4\xfc\x6c\x50\x2d\x7c\xb9\x9f\xc3\x80\x6f\xd8\xa0\xb6\xf0\x3c\xd5\x2f\xcd\x8f\x4e\x8f\xc3\x53\xa3\x8d\xbc\x61\x85\xd9\x6e\x8d\x0d\x02\xf7\xa5\xf2\xe3\x4a\x6e\xfa\x0c\x08\x61\xa6\x58\xa2\xf1\x6d\x05\x5c\x5e\x82\x50\xa9\x01\x07\xe7\xce\xcb\x45\x0e\x5b\x5d\xb8\x81\xd5\xac\x11\xce\x8b\x60\xf4\x04\xc2\x41\x33\xac\x7e\x36\x7e\x0e\x43\x87\x31\x4f\x73\xd5\x9b\x3e\x64\x80\xa9\x79\xd9\xdf\xf0\xbc\x8a\x41\x05\x23\x57\xd4\xcb\xdd\x0f\xe1\x4e\x4d\xec\xed\x19\xda\x78\xc6\xdb\x75\xa1\xac\xee\x0f\xf8\x21\x0c\x4f\x51\x39\x10\xe6\x27\xc8\x00\xab\xdd\x26\x95\xc9\x11\xfa\xf6\x4d\x49\x8d\x62\x8b\x2f\xec\x7c\x29\x8c\xf7\x47\x76\xda\x33\xce\x8a\x6f\xa2\x70\x36\x98\xd0\xf4\xef\x5d\xba\xd6\x8f\x9a\x74\x27\xb7\x66\x24\xed\x1f\xab\x9e\x4a\xff\xcb\x47\xa3\x51\x3a\x0a\x64\x21\x2f\x05\x7d\xfa\x9f\x11\xd4\xf0\x58\xed\xf3\x44\x47\x0c\x82\x2a\xcd\x98\xb2\xd0\x7c\xdd\x75\x89\x54\x04\x35\xce\x5f\x42\x32\xf4\x36\x30\x9c\x49\xea\x35\x1d\xf1\x99\x11\x28\x36\xdd\xa5\xd8\x2c\x42\x0d\x44\xdc\xd6\xb7\xc4\x54\xe3\x72\x2e\x47\xd5\xba\x95\xaf\x30\xf1\xc2\x97\x2a\x38\xc8\x16\xad\x0f\xbb\x0a\xa5\x5f\xee\xd2\x63\xba\x2e\x85\x2d\x76\xde\xbe\x9d\xb1\x48\x85\xa0\xfb\x0a\xf8\x99\xf5\xbd\xea\x32\xd8\x40\x89\x0d\xf5\xa5\x1a\x36\xad\xab\x45\x9f\xba\x74\x6a\x4e\xad\xdc\x61\x09\xb3\x94\x98\x3c\xce\xa4\x9d\x36\xcb\x6e\x85\x20\x1f\x0c\x70\x45\x5c\x6a\xd3\x40\x8a\x73\x2c\x22\xaf\x33\x28\xfb\x31\xd4\x30\xf2\x07\x2b\x65\x0d\xb9\x0c\xf1\x74\x80\x61\x51\x8c\x0d\x86\x1b\x54\x0b\x6d\xf8\xbe\x9a\x1f\xf5\x77\xd7\x6d\x5c\x40\xbc\x4f\x78\xd1\xdb\xd0\x3b\xb7\x7c\x4d\x37\xb2\xb7\xc9\xa9\x60\x70\xa1\x0a\x8e\xe6\xa1\x91\xb8\x11\x30\x2e\xaa\xfa\x88\x68\x86\x6c\x05\x04\x34\xb5\xba\x41\xb4\xbb\x5a\x17\x21\x4a\x41\x0b\xc8\x64\xfe\xeb\x78\xbc\x4a\xcc\xfb\xc6\x1a\xb2\xad\x5a\xb6\xed\x88\x9e\x1e\xff\xe1\x61\xf1\x44\x16\x32\x0c\x8b\x46\xb7\x31\x9c\x28\xe8\x0c\xb7\x48\x1e\x73\xd5\xc1\x0b\x9c\xc9\x86\x37\x0b\x06\xa2\xef\xd9\xaf\x49\xa0\xa9\x0b\xf6\x33\x7f\x06\x0f\xb2\x27\x14\x06\x41\xee\xb4\xd2\x60\x08\x50\x78\x55\xcc\xc3\x2e\x6a\xbb\xc9\x68\x79\x64\x7a\xa2\xa3\x2d\x85\x17\x0b\x7e\x0d\xbb\x60\x47\x99\x61\xd5\xee\x50\x10\x8f\x88\xf6\xf6\x39\xef\x23\xe2\xdb\x2c\x7c\x3a\xd0\x4e\x12\x09\xa8\xb3\x8a\x5e\xa0\xab\x80\x10\x55\x3f\x60\xf3\x93\xd8\x31\xb1\x0e\xde\xb5\x61\xc6\xc4\xa5\x60\x98\xeb\x07\x7d\x4c\x23\x66\x7d\x60\xfa\xd8\x02\x83\x3d\x89\x07\x59\x8a\xa5\x36\xff\x0d\x33\x5c\x1c\x17\xad\x2a\x93\xa9\xd7\x1a\x51\xb9\xa6\xf8\xf8\x26\x07\xce\x37\xf5\xd1\x2d\xfd\x7b\xba\xd9\x3c\x2d\x8a\x47\x13\xa3\x0e\x44\x23\x37\xec\x81\xb9\x99\x6a\x21\x06\xac\x32\xa8\x29\x90\x33\xa7\x71\xc7\x00\xd1\x3c\xfd\xc2\x52\x40\xc9\x97\x66\x69\xe1\xf1\x26\xa4\xeb\xe7\xae\xe3\x2d\xa0\x21\x86\xe7\x4d\x58\x98\x55\x88\x0f\x63\x38\x92\x81\x84\x1e\x64\x0d\x5c\xb3\xef\xec\x9e\xbb\x36\x51\x89\x8e\xd8\xf7\x66\x0f\x4a\x24\x98\xdf\x5e\x84\x04\x92\xb1\x47\xaa\x93\x8e\x27\x00\xa7\x64\x63\xdf\xf6\x3f\x53\x3e\x9e\x6a\x7c\x8a\x04\xee\x93\x90\xa7\x02\xc7\x5a\xda\x4c\xe8\x1b\xae\x31\xf2\xe5\xb3\x82\x60\x34\x2a\x67\x04\xbf\x3d\xd8\xaa\x69\x3e\x49\x40\x9e\x39\x3e\x7d\xce\x92\x03\x51\x4a\x26\x87\x5c\x7c\x13\xe7\x92\x68\x59\x2d\xc2\x00\xb5\x2f\x39\x61\xa2\x8b\x05\xcf\x71\x9b\xfd\x5d\x74\x92\xc7\xf8\x95\xfe\x2f\x26\x0c\x07\xa2\x7e\x2d\xa7\x16\x80\x89\x4d\x2e\x7c\xae\x7a\x24\x04\x4d\xa9\x03\xc5\xb8\x2d\x35\xd9\x67\x76\xfe\x65\x5e\x27\x53\xde\x26\xb1\x0b\xec\xcc\xd7\xee\x9c\xe8\xf8\x76\x48\x3f\x4f\xcd\x0f\x6f\x0c\xe6\x6e\x67\xbd\xef\x5d\x7c\x39\xc5\x06\x73\xb5\x98\xda\xc3\xff\x8e\xef\x91\x1a\x6c\x58\xa1\xd3\x1f\xd1\x9d\x8b\xf1\xa8\x27\x6e\x68\x01\x60\x7e\xd6\x05\xdd\x43\x70\x63\x78\xe0\xb2\x64\xd6\xc9\x5d\xbc\x7a\x12\x8a\x3f\x8a\x68\x0a\x72\x77\x7a\xef\x60\xb4\x30\xb1\xf5\x41\x07\xee\x82\xe3\x88\x43\x8b\x75\x15\x79\xc1\xf4\x0e\x9c\xb0\x80\xe9\xe0\x7a\x7b\x00\x68\x48\x39\x25\xfe\x21\xf6\x91\x52\x2c\x8f\x9c\x18\xfb\x40\x83\x25\x36\x4d\x7c\x65\xe7\x7a\xc4\xec\xa9\x6c\x7b\xb8\x0f\x8e\xd1\xce\xee\x0c\xb4\x80\xb2\x6f\xa9\x99\xa7\x90\x95\x24\x2a\x25\x06\x21\xeb\xaf\xba\x0a\xf0\x01\x33\x4f\x36\xdb\xbc\xae\x8a\x1d\x51\x1f\xcf\xc5\x5d\xf5\x7e\x17\xd7\x4b\x2b\x1e\xb7\xea\x7b\xeb\x1e\xcc\x27\x84\x08\x17\xb2\x18\xfe\xa3\x57\xde\x2d\xba\x9b\x6a\x99\x99\x90\xd3\x76\x28\x0e\xe0\xde\x9c\x7a\xff\xc0\x90\x55\x09\x1f\x82\xa1\x99\xd8\x82\x9b\x98\xf4\x43\x3a\x9a\x8f\x18\x5b\xe2\x73\xea\xa4\xaa\x7b\x4d\xdd\x46\x84\x30\xc0\xd2\xa0\x3e\x20\x2c\x30\x48\xb3\xd9\xe7\xe1\x73\xa8\x3b\x0d\xa7\x6c\x67\x80\x90\x24\x24\x56\x02\xa2\x3b\xb3\xe1\x00\x1d\x15\x0e\x94\x07\x1f\x38\xad\xaa\x78\xda\x05\xb6\x8b\x9e\x07\x36\x11\x66\x07\x7d\x85\x89\x80\x20\xe0\xed\xa8\x69\xef\x00\x78\xe0\xed\xae\x9c\x1d\x08\xcb\x9d\x6c\xe2\x56\x17\xe5\x96\x63\x6d\xb2\x62\xf3\x4a\x76\x5b\xe1\xf9\xf7\xb4\xfa\xdd\x5d\xad\x8a\xb9\xd8\x54\xb3\x66\x38\xa9\x1e\xf5\x58\xb4\x1c\x20\xfb\x9e\xd6\xbe\xb7\xd6\xc2\x2d\xeb\x53\x59\x6e\x83\x26\xe2\xee\x07\x8e\x24\x60\x9e\xb1\x01\xd7\x04\x47\x53\x5f\x49\x73\xae\xde\xc3\xc4\xa3\x58\x31\xde\x4a\x40\x77\xb3\x7b\xfc\xca\xc6\x0b\xc4\x54\xa0\x88\xea\x0e\x35\xa8\x83\x61\x2d\x4f\x16\x70\x6e\x98\xf2\x1a\x4b\x9e\xa8\x4a\x4c\x84\x07\xb6\x47\xde\xdb\xda\x75\xcd\x0a\xb4\xfb\xbb\x17\x5b\x81\xa6\x13\xd6\x9f\x0e\x94\x4d\xec\x43\x62\x4d\xc5\xb1\x82\xc7\x73\x14\x24\xef\x2f\x30\x70\x67\x88\xea\x8a\xdd\x19\x82\x0e\x0a\x15\xed\xab\xe7\x68\xb2\x0e\xa5\xbc\xa0\x16\xb9\xe6\x97\x78\x84\xf1\x85\xaa\xde\xfb\x83\xa1\xce\x42\x62\x60\xd0\x0a\x0e\xf7\x99\x46\x3f\xd3\x37\x0c\x86\x1e\xef\x9a\x7b\xb3\x6a\x82\x48\x36\xe2\x95\x81\xdd\x2b\xec\xfa\x2c\xc6\xce\x8d\x08\x34\x8a\x49\x15\x6f\x06\x72\x8f\xed\x46\x26\xfc\xe0\x90\xbc\xd9\x51\x9f\xd7\xd5\x27\xa8\xcf\x88\x94\x25\x1c\xf2\xe9\xc5\x25\x74\x66\xb4\x64\x68\xe7\x5d\x32\xa7\x4e\xff\xb2\x2a\x6b\x44\xe8\xe4\xa8\xc4\xca\xba\x16\x0b\x76\xa6\xaa\x6a\x0d\x5f\x78\x53\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\x9d\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\x4b\x6a\x06\x47\x16\xcb\xea\x8a\x19\x7c\xaa\xd6\x27\x77\x39\xac\xec\xed\x43\x18\x3e\x52\x9a\xbe\x47\x78\x1e\x56\x35\xf3\x9a\x08\x53\x3f\x4c\x80\x74\xdb\x46\x0c\x45\xcf\xf5\x73\x0c\x24\xe7\x2b\xee\xc9\x1b\xf9\x1a\x83\x6c\x35\xca\x93\x8b\xf7\x34\x06\x99\x37\x05\x9f\x98\x5e\xd2\x9f\xb1\xd8\xed\xde\x0e\x30\xd9\x1b\xc4\xb9\xe5\x48\x01\x72\x2f\xcd\x19\x84\xee\x72\x7d\x25\x51\x1f\x58\xd7\x84\x03\xa2\xa8\x07\xd9\xc2\x5a\xc2\x9e\xb2\x45\x30\x2a\x50\xbf\x3f\xb8\xb4\x20\xe6\x5b\xa8\xfb\x53\x1f\xe1\xd0\xe9\x73\xd8\x27\xdc\x73\x58\xbf\xde\x8a\xd4\x82\x69\xc0\x71\x58\x02\xf4\x1d\xf0\x66\xc4\x27\x49\xbb\x79\xb4\x2d\x6b\x2b\x41\xf9\xd8\x5b\x8b\x88\x1a\x81\x54\x0c\x44\xa4\x5e\xb1\xe1\x0a\x8c\x9d\x2d\x50\x39\x88\x0d\x08\x1b\xf7\x48\x8d\xd3\x19\x41\x62\x96\x3e\x82\xf0\xf7\xa2\x00\x32\x37\xb0\xe1\xce\xa4\xe0\xfe\x74\xf1\x26\x5a\x0f\x01\x47\x89\x1e\x75\x40\x47\x35\xd4\x9e\xe8\x7e\x99\x53\x98\xea\x37\x50\xb1\x32\xae\xd8\x14\x33\x58\xdd\xbc\xb1\x93\x38\x25\x72\x77\x5b\x2e\xf3\xb6\xb0\xf0\x32\xca\x69\xd8\xc5\x06\x1c\x25\xf4\x26\xce\xd7\x74\x5c\xd7\x2a\x88\x33\x12\xc8\x27\x36\xa4\xa2\xf9\x66\xa9\xc8\x34\x14\x2c\x5f\x16\xc2\xc6\xd8\xa1\x91\x98\xcb\x6e\xcb\xfc\x46\x98\x97\xb5\x83\x21\x3f\xfe\xe3\xc5\xe9\xfb\x83\xf4\xf3\xd3\x9b\x9b\x9b\xa7\x5c\xfc\xe9\xae\x5d\xb3\xeb\x5f\xc1\xe1\x6b\xfe\xe7\xc9\xbb\x83\xb4\xec\x17\x4f\x66\x74\xb4\x6f\x63\x85\x98\xda\x9c\xe2\xb2\x82\xa9\x8b\x85\xcd\xdf\xcf\x9e\x74\xc5\x68\xc0\xf8\x30\x4a\x5a\xb8\xa5\xf2\xec\x99\xb9\x88\x4e\xa6\x98\x8d\x04\x1b\xd2\xa2\x2d\x61\x6d\x81\x8f\x20\x83\x76\xa7\x4f\x53\x61\x0b\x86\x20\x15\xb5\xa3\xdd\x78\xbb\xd0\x80\xf5\x03\x10\xbb\x5c\x3c\xc2\xb5\xa2\xcb\xc4\xc4\xb9\x6d\x85\x43\xf5\x75\xab\x66\xb7\x2e\x62\x8e\x49\x38\xd3\x89\x28\x8b\x9f\x86\x85\x61\x17\x89\x88\xd3\xcf\xd3\x3f\xb2\x6e\x89\x27\x4a\x68\x8b\xb3\x8c\xb6\x00\x3c\x1b\x16\x46\xec\xc4\x40\x94\xa6\x01\x48\x4c\x48\x13\xe5\x7d\x9e\x13\xe7\x47\x95\xe8\x89\x8f\xcd\x34\xfa\x74\xe3\x4e\x80\xa0\x35\xa9\x6e\x5c\x24\xd6\xec\x4d\x67\x1b\x5e\xc4\x3c\xf2\x40\x0d\x27\x4d\xed\x35\x85\x87\x54\x8c\x42\x27\x51\x14\xf0\x47\x80\x32\x17\x09\xad\x54\xfd\xda\x05\x63\x4a\x35\x58\x68\x39\xcc\x08\x42\x3d\x94\x3d\x9c\xec\xa7\xd6\xa2\x9c\xc1\xdd\xac\xf9\xd5\x63\xfc\x4d\x77\x38\x91\x4c\xc4\x2f\x29\xe2\x1e\x60\x1d\xb1\x94\x76\x33\xdc\xc5\x86\x02\x9a\xf2\x26\x2f\xca\x28\x6f\x1a\x6d\xd7\x0a\x38\x68\x63\xb4\x4b\xaa\x3c\x3d\x3e\x25\xf8\x16\xf6\x09\x04\x62\x14\x94\xe9\x28\x2d\xda\x0d\x9c\x3b\x8f\x5d\x5a\x2c\x5e\xd9\x2a\x05\xdf\x8d\x97\x28\x23\x44\xd6\x51\xc8\x51\x59\x50\x8b\x4d\x08\x18\x04\x3e\xc9\xec\xbc\x60\x76\xdf\x23\x8f\xec\x50\xe8\x96\x5a\xcd\xbb\x4e\xbc\x00\x07\x99\xc3\x17\x3a\x86\x2b\x9b\x64\x35\x79\xe3\xe9\x48\xbe\x42\x6c\x6d\xd7\xcd\xad\x39\xad\x1f\xe3\x97\x46\xb5\x09\x47\xe6\xc1\x74\x50\x1e\x32\x50\xd7\x34\x59\x5c\xdd\x5f\x83\x40\xaf\x2a\xe2\xd6\x7c\x42\x46\x51\x82\x09\x0f\x3e\x91\x8a\x7c\xa2\x7b\x13\x7e\xcf\x0e\x6a\xe8\xa1\x7d\xec\x5a\xd8\xe3\xa1\x1d\x17\x0d\xbd\xb4\x83\xa2\x5f\xe0\xa5\x1d\x23\x69\xec\x83\xed\x87\xfa\x05\x6e\xd8\x53\x83\x1e\xcb\xb5\x53\x88\x9f\x28\x30\x25\xdd\x16\xe1\xd8\xbe\xc0\x1d\x7b\x70\x16\xfe\x12\x01\x77\xaa\x27\x1e\x25\x01\x72\xef\xd3\x11\x17\xd5\xd5\xd5\x6c\xde\x36\x37\x1d\xfb\x3c\xe3\xb9\x0b\xe6\xb2\xfc\x3b\xbd\xc0\x6f\x01\x61\xe3\x00\x10\x85\x7c\x48\xa2\x1a\x28\x3d\xd7\xbb\x40\x49\xc4\xcd\xec\x30\xc8\xfe\x31\xe5\xc8\x2d\xed\x7b\x3a\x89\x1d\x5a\xce\x4c\x8a\xd0\x46\x77\x93\xf1\x17\xbc\xb5\xa1\xaf\x66\xf5\x2a\x0a\x5d\x70\x8a\x82\xf1\xa7\x21\xdc\x76\x25\xd8\xc6\xc9\x3d\xb6\x88\xaf\x5e\xd7\x04\xc2\x32\x38\x02\x23\x62\xa8\x20\x9f\x7a\x90\xd0\x2b\x93\x20\x0c\x97\x1e\x42\x11\x84\x45\xff\xf2\xed\x7b\xf9\x09\x83\x77\x8d\x92\x04\x8b\x77\xbe\x4e\x4f\xcc\x8c\x7e\x36\x65\x4e\x6f\x79\xe2\xf9\x20\x8a\x11\x7b\x9f\x0e\xbf\x1c\x44\xd1\xe6\x57\xb8\x38\xe2\xbf\x2e\x95\x64\x60\x5f\xec\xac\x2d\x9f\x0e\x8b\x11\x72\x04\xd5\x17\xf8\x70\xe9\x7a\xf1\xc3\x7f\x5c\x5a\x0e\xa3\x8e\xe7\xc1\xc8\x3d\x46\xcc\x7a\x80\xe8\xee\x61\x97\x76\x15\x6b\x5b\x95\x40\x07\x0d\x82\x3a\x7c\x04\x64\xd0\x0e\x5e\x6c\x0b\xc7\x1a\xde\x28\x21\x32\x43\xb7\x4a\x1d\x7e\xd8\x2d\xa8\x17\xa7\x6b\x7d\x81\x65\x16\xf5\x3b\x2a\x2d\x5b\x6c\x69\xb3\x9d\xae\x9b\x25\xa4\x48\xb8\x2c\xca\x53\x1c\x3b\x7e\xb2\x86\x10\xc1\xd1\xb6\x58\xe2\x70\xc4\x5f\x6d\xa8\xfe\x6b\x09\xa1\x2e\xd5\x93\xf4\xe0\x9c\xc2\x49\x90\xa8\xc5\x2f\xd5\xf2\x70\xa4\xb6\x28\x72\x51\x19\x1f\xa2\xd9\x74\xdb\xde\xe7\x84\xf2\x21\x99\x2c\x42\x57\x16\x16\x53\x38\x4c\x86\x8c\x3d\xe8\x40\xc4\x88\x2d\x75\xcc\x7c\x2d\xe7\xa6\xd5\x10\x5e\xfc\x37\x24\x0b\x7d\xdd\xe4\x4c\xbe\x5c\x0e\x4b\xc0\x22\xc6\xbd\x93\x2f\x79\x89\x6f\x48\x4d\xe3\xb0\x05\x94\xf7\x74\x38\xd7\x01\xbc\x43\xc0\x5f\xca\xff\xf8\xdf\xff\x8f\x95\xb2\x0d\xed\xb0\x88\x31\xa2\x61\x3a\x3d\xad\x98\x9f\x9d\x7f\x5e\xe7\x29\xf8\xba\xef\xc8\xf0\x5a\xd0\x35\xa8\xa4\xe2\x89\x66\x44\xef\xfc\x12\x85\xad\x15\xb6\xf0\x1b\x2c\x18\xd0\x8f\x5f\x32\xb8\xf8\x1c\x2d\x35\x11\x61\x3c\x54\x7c\x13\x31\x01\x2c\x5b\x84\x66\x79\x6d\xdc\x10\x66\x6a\x57\xb0\x56\x42\x77\x71\x44\x8c\x62\x4d\x81\x53\x4f\x13\xb9\xdc\xc1\xff\x47\xed\x84\xca\x50\xa9\xfe\x1e\x86\x3f\xa4\xff\x4c\xb7\x5a\x17\x39\xf1\xdc\x75\x93\x98\x27\x3a\xde\xeb\xfa\x98\xde\x99\x5d\x97\xf4\x41\x14\xec\x3f\xf6\x9d\x24\x1f\x9a\x76\xf9\xd1\x47\xdf\x75\x0a\xbe\x28\xf2\x2e\x8e\xdf\x0c\xe3\xe2\xd7\xed\x01\xf4\x31\xed\x7c\x8d\x46\x8f\xaf\x79\xd5\x8d\x1f\x90\x13\xe5\x87\x44\x48\x87\xed\x9e\x39\x8d\xcf\xcc\x19\x4d\x82\x77\xaa\x5d\x41\xf4\xb2\x27\x7c\xc4\x4c\x93\x6c\x22\x74\x91\xe8\x85\x37\xfb\x34\xf1\x07\xc7\x57\xe5\xb7\x08\x59\x95\x27\x57\x95\x6f\x91\x40\x3c\x11\x09\x88\x1d\x0c\x5f\x2e\xfe\x9b\x20\x62\xa3\x2a\x2f\x39\x55\xbf\x34\x7d\x10\x15\x32\x7a\x7f\x23\x70\x9e\x43\xb4\xd8\xe8\x51\x0d\xae\x1c\x58\x99\xb0\x75\x18\xc5\x10\x06\x0a\x91\x7a\x17\x74\xe4\x91\xfd\x68\x8d\xfb\x2d\x0d\x41\x86\x5b\x03\xb6\xa1\xab\x45\xae\x06\x9d\x20\x82\x6d\x1d\x59\xfc\x76\x33\xdf\x4c\xc0\x3a\x56\x62\x08\xe1\x8b\xe1\x69\xab\x39\x31\x91\x9f\x04\x3e\x72\x2c\xd5\x13\x71\x2e\x11\x15\x24\x39\x5d\xd3\xe1\x6a\x1d\x1d\x91\x51\x11\x8b\xc1\x3f\xed\x71\x2a\x1e\x47\x7b\xfe\x7a\xb7\xe2\x71\x1d\x77\x3b\x16\xff\xde\x3b\xf8\xe9\x48\x8e\xa1\x1e\x70\x10\xd2\xd1\x65\x4d\xc5\x76\xfc\x3d\x37\xe2\x31\x68\xc0\x69\x22\x14\xb8\x9a\xbe\xf4\xe6\x45\x2f\xda\x89\x52\xff\xb1\x7b\xf6\x38\xc6\xf1\xb0\xd7\xa3\x20\x84\x51\xa7\xbf\x2e\x18\xe1\xde\x0b\xeb\x88\x57\x0c\xcf\xc5\xa3\x88\x22\x18\xe0\x9d\x45\xe2\xf8\x22\x61\x87\x9d\x26\x34\xb8\x00\xd5\xeb\x14\x89\x2c\x22\xea\xfd\xfb\xc3\x8b\xec\xb9\x61\xba\x2b\xce\xc8\xb0\x97\xcc\x63\x9c\x3f\x4b\xd8\xc9\x3b\x4b\x84\x62\x46\x6c\xa4\xf0\x8f\xc4\x1e\x99\xbe\x93\xe1\x73\xf3\x8d\xa9\x0b\x21\x94\x18\xfe\xbc\x12\x86\xcf\x5d\x86\x2f\x39\x98\x79\x46\xeb\x31\x07\x81\x52\x90\x3b\x88\xa9\xad\x5c\x7b\xe6\x43\x32\x67\x51\xbc\x91\x13\x1f\xf4\xd9\x87\x1e\xf9\xc1\x15\xd3\xbb\x4e\x8b\x56\x36\x48\xf7\x9c\x12\x96\xe6\x7a\x9b\xeb\x81\xe4\x37\x84\xbe\xc9\x9c\x61\xf9\xb8\x0d\x7d\x43\xa8\x6d\xd6\xa5\xeb\x68\x7a\x4e\xbf\x7c\xf7\x62\xc7\x90\xb8\xa0\x2b\xe3\xd2\xf5\x7c\xab\x71\xce\x7d\x6f\x24\x86\x35\x5c\xb6\x82\x54\xdd\x2d\x83\xb9\x12\x41\x59\x6b\xc7\xb9\xe3\x87\x21\xb4\xbc\x49\xa4\xfb\xea\xfb\xe6\x26\x91\x4d\x75\x06\x3f\x13\x89\xaa\xac\x29\x71\xa3\x92\xc6\x22\x8b\x86\xbc\x4a\x25\x18\x87\x06\x45\x1a\xe7\x0f\xe2\x37\x60\x4f\x71\x91\x1b\x2c\x48\x3a\x4b\xdc\xea\xd1\x54\xcb\xc5\x55\x1c\xd0\x40\x6a\x85\xc4\xee\x9b\x85\xe0\x1e\xb7\x1b\x42\x7c\x49\xc3\x78\x82\x7a\xd8\xdc\x81\x69\x0d\x11\x43\x53\xd5\x99\x12\x2c\x50\x5a\xd1\x77\x85\xad\x1f\xee\x69\x3f\xdf\x8f\x10\xe2\x4b\xfa\xc1\xad\xc0\x38\x5f\x4e\x70\x77\xf4\x87\x8e\xdc\x1a\x12\x34\x32\xa8\x18\x76\xd1\x47\x1c\xb8\x0c\x76\x72\x18\xf1\x14\x03\xc9\x84\x95\xf4\xe3\x2d\x55\x72\xe4\xb2\x7d\x42\x78\x10\x5b\xab\xc9\x68\x61\xf7\x33\x01\x78\x41\x70\x49\x07\x1a\x58\x51\x79\xb0\xc9\x7d\x49\xfa\xe5\x85\x3d\x48\x5f\xca\x1b\x34\xf3\xfe\x2d\x59\xe0\x2c\x4e\x96\x48\x7e\xe1\xa6\x02\xd1\xcf\x66\xb2\x90\x17\x23\xdc\x5a\xe5\x05\x16\xb4\x3a\xae\xcc\x31\x73\x40\x39\x26\x3e\x86\xb3\x15\x1b\xca\x6d\x81\x0a\x9b\xd9\xf6\x81\x49\xb3\xce\xc4\x03\x50\x9b\xfc\x36\x32\xa2\x82\xcd\xf7\x26\x7e\x84\xf9\x8e\x53\xcf\xb8\x2b\x7e\x5f\x97\x67\x18\x1c\xc1\xec\x3d\xf9\xcc\xc2\xa5\x3e\x26\x10\x4f\x76\xcb\x16\x0e\x22\x36\xd7\xcc\x2c\x02\x52\x40\x85\x3f\xb8\x51\xba\xb7\x3f\x3d\x37\xc0\x9d\x3c\x55\xf4\xe8\x2e\xa6\xf0\x15\x1d\x00\xdb\xb8\xbb\x07\x60\x0b\xe2\x33\x48\xdd\x08\x58\xc0\x5d\x1d\xd1\x47\x3b\xbf\xbc\x23\xe0\x1b\x5f\xd8\x91\x03\xeb\x85\x86\x30\x2f\x8a\xc9\xf5\x7f\x57\xff\x06\x07\x21\x10\x67\x14\x23\xdf\x98\x01\x4c\x48\xe4\x19\xcc\x29\x13\x92\x40\xaf\x3a\x9b\x0d\x57\x49\x60\x80\x14\xac\x94\xc0\x06\xd1\xfa\x02\x6b\x17\xb5\x89\xd4\x5d\xce\x57\x55\xd3\xbc\xe3\x38\x5c\xf7\xa1\xdd\x64\x1c\x1d\x86\x4d\xf6\xfa\xf6\x56\x25\x1d\xc6\x48\x1c\xc2\xc6\x9b\x4b\xc9\x99\x0e\xb7\xf1\xf2\xd8\xc2\x07\xcc\xd5\xc7\xc4\x3d\x36\xc9\xeb\xdf\xbe\x13\x51\x7d\xc9\x8d\x24\xc2\xdd\xfb\x38\xf7\xe9\x30\xee\xfd\x9d\x6f\x0e\xc4\x6f\x2d\x0c\x1f\xdd\xe8\x24\x34\xdd\xd2\x44\x44\x7b\xe2\x33\x51\x33\x31\xc6\xf8\x2d\xe1\x60\x83\xf7\x9d\x17\x1c\x7e\xba\xa9\x2b\x31\x48\x3a\x91\x2f\x1a\x7b\x82\x31\x65\x5b\x09\xc8\xf1\x8a\x7f\x48\x48\x50\x4d\xe1\x90\xa0\x49\xdf\xf4\x88\x35\x75\xc9\x7f\x7f\x48\x1f\x16\x89\x1f\x3a\x94\xc0\xac\x6f\x5b\x88\xaa\x53\xbe\x83\xfc\x20\x40\x3e\x9c\x14\x5a\x0b\xf9\xef\x6b\x40\x37\xa1\x6a\xde\x05\xdd\xd6\x4e\xa2\xd2\x5d\x37\xd5\x62\xc6\x17\xd8\xa9\x5e\xdf\xbb\x57\xfe\x99\xed\xf0\xc3\x7b\x05\x3f\xbc\x27\x8a\xc8\x83\x20\x21\x9a\x90\x30\x63\xeb\xe2\xd4\x46\xc9\xf1\x56\xea\xd3\x25\xc2\x56\x94\xc4\x01\x7c\xa2\x84\x7c\x31\x6a\xc5\x2e\x1a\xc2\x34\x33\x7e\xf4\x29\x66\x06\x19\xd5\x1e\xc7\x2a\x0d\xb3\xc4\x76\x34\x4a\xd2\x17\x47\xe3\x91\x88\x9a\x37\x4c\x5b\x37\x4b\x7e\x17\xc3\x5e\xb4\x0e\x86\xa7\xf2\x7a\x5c\xa7\xd9\xc1\x47\x55\xc0\xdf\x36\x4c\xc1\xfd\x63\x9f\x77\x71\x69\xac\xcf\x30\x41\x63\x15\x8c\x00\xe9\xfc\x9e\x2f\x56\xea\x96\x35\x41\x48\x76\x0c\x77\xc4\x24\x67\xf1\x29\x48\x79\x15\x36\xb5\x37\x60\x27\x61\xf8\xbd\x7f\x3c\xb9\x1b\xe4\xb2\x5f\x09\x3b\x31\x21\x9c\x6b\xa3\x71\xc8\xd8\xc9\xc4\x85\x6e\x4d\x4f\xb1\x1c\xbb\x3b\x0b\x05\xfb\x22\x47\xba\xd0\x70\xb1\x5a\x52\x64\x98\x3b\x36\x48\x5f\xb3\x6e\xb5\x6a\x98\x13\xbc\x10\xd8\x79\xc9\x23\x87\xd3\x9b\x5e\x90\x5b\xf6\x17\xd5\x31\xe8\xa5\x87\x70\xd5\x7c\x7d\x57\xc1\xff\x99\xdf\x53\x6f\x06\x9d\x8c\x78\x9e\x81\xdc\x53\xc3\xa0\x8b\x93\x55\x7c\x7d\x27\xb1\xd3\xd6\x4b\xf7\xc8\xee\x54\x27\x6f\x11\xef\xb7\x2d\xf4\xe0\xba\x66\xb3\xbe\xd7\x66\x99\x75\x4f\x95\xfb\x7a\x7d\x67\x9d\x5f\x31\x0c\x7e\x6d\x7b\xb9\xf0\xdd\xe7\x68\xe7\xed\x9c\x19\x37\x6f\xee\xe5\xc2\xdc\x12\x23\xa5\xe5\x74\xf1\xbb\x10\x8c\x0e\xb1\xba\x62\xaa\xfa\x7d\x7d\x6b\xcb\xee\xb6\x5e\x64\x78\x2a\xba\x5b\xe9\xbd\xf8\x79\x29\xb7\x26\x8f\x66\x94\xf6\x2c\xd7\x90\x7e\x25\x6e\x90\xbb\x47\xf2\x20\xc6\xe3\x05\xa5\xc3\xc0\x9d\xb6\xf1\xa7\x60\xed\x28\x6d\x92\x2d\x63\xeb\xc9\x9d\x0d\x0d\xc6\x12\xf0\xf5\x00\xb7\x2d\xba\xd2\x97\x5f\x34\x82\xc0\x26\x23\x1c\x06\x13\x8a\x32\x31\xb0\xbc\xf0\xfd\x26\x46\xdc\x63\xb6\xaf\xe1\xf8\xf5\x6c\x3c\xa4\x46\x79\xba\x69\xdb\x53\xe0\x7a\x53\xba\x67\x40\x61\xbb\x77\xcc\xd0\xa3\xa8\x17\xf7\x8f\x31\xdc\x4b\x11\x45\x90\x1a\x62\x93\x73\x08\x69\x88\x2a\xf8\x0b\x7e\x87\xbc\x4d\x9e\xd8\xc8\x96\x4d\xdb\xd0\xf4\x48\xf8\x28\x7d\x76\xe3\xb5\xa5\x75\x13\x05\xa0\xde\xbf\xcd\x76\x1a\xf2\xcb\xca\x9c\x20\x99\x64\x24\x8e\xff\xe5\x4b\x41\xd2\xb0\x32\xac\xb4\x5d\xa8\xaa\x1f\xa2\x87\x95\x3a\xb4\x8c\xa0\xa4\x96\x69\xe6\xec\x4b\xa2\x1e\xce\x00\x3e\xd5\x94\x00\x16\x37\x64\x1c\x93\x89\xd0\xb5\xdb\x66\x3c\x54\x04\x8f\x91\xe4\xf4\x1d\x92\xd3\x4b\x4e\x1e\xb7\x60\xbd\x72\xc5\x06\x9d\xda\x57\x8e\xe3\x74\x0c\xcb\xbc\xe2\x70\x1e\x43\x78\xc3\xdc\xaa\xcc\xb7\x23\xbc\xbd\xa1\xc4\x11\xd6\x00\x39\x46\x00\x60\xf7\x63\x21\x2c\x55\x15\x38\x71\x86\x25\xde\x52\xd2\x3e\x68\x18\x9c\x0c\xe1\x6b\x96\x78\xf7\x94\x50\xd1\x63\xd8\x2b\xbd\xdb\x1a\xf5\xaa\x99\xff\xad\x5c\xf4\x9d\x41\x9f\xca\xcf\x00\x6a\xde\x34\x3d\xbf\x2b\xbd\x65\xa9\x11\x86\x80\x82\xa6\x97\x96\xce\x52\xe3\xe2\xd3\x08\x53\x02\x3d\x46\x95\x40\xef\xc7\xd5\x86\x43\x80\x52\x5b\xed\x6e\xd1\xef\x68\x81\xba\x06\x4f\x2e\x38\x74\xe8\x85\xcb\x18\xb5\x38\x2a\x19\x52\xe8\xb0\xf0\x54\xcb\x0b\x92\x85\xca\xc9\xa6\x8f\x38\xe7\xce\xb6\x47\x65\xc3\xc6\x47\xc5\xa7\x56\x0a\x5e\x91\xe2\x0d\x6d\xbe\x5b\x7c\x2a\x7b\xf6\x47\x5b\x65\x30\x68\x08\xeb\x3a\x33\xb0\xf4\x25\xc0\xd2\x37\x04\x96\x5e\x42\x3d\x35\x51\x2b\x6d\x3a\x9b\xb2\xcf\x61\x98\x12\xd4\xf2\xfa\x88\x66\x80\x93\x8b\x7c\xaa\x14\xd4\x56\x99\x1e\x16\x74\x15\xb2\xfc\x16\xd4\x70\x0a\xcd\x96\x9e\x1f\x0e\x1d\xc8\x54\x6d\x1c\x19\x4a\x76\xbf\xc5\xed\x42\x1e\x57\xe2\x58\x51\xd4\x87\x73\x49\x09\x60\x71\x20\x22\x58\xe3\x91\xb0\xc1\xc0\x63\x09\x04\x7e\x19\x33\x4a\xe1\x60\x1e\x58\x18\x17\xc1\x9d\xb1\x53\xfb\x14\xe0\x36\x97\xc5\xb4\x17\xd2\x9a\x37\x40\x6b\x79\x08\xa7\x8d\x76\x82\x4a\x61\x2b\x72\x1a\x15\x37\x0d\x7d\x6a\x80\x68\x0e\x37\xfc\xf0\xd2\xb0\x87\x06\x38\x4d\x61\xf1\x04\x96\xbf\x7e\xf0\x37\x9a\xee\x51\x36\x01\x13\x21\x1c\xa2\xb7\xa4\x98\xd8\x88\x07\x22\xed\xdb\xf2\xa2\x70\x47\x92\x66\x72\x0b\x4e\xbd\x9a\x66\x7e\xd3\x2e\x6c\x9b\xa6\xeb\x43\xe2\xc3\x17\xa7\x2f\xd8\x5c\xfb\x3c\x7c\x64\xfe\x7d\xe8\x92\x71\xd9\x60\x94\xc1\xc0\x62\x33\x35\x1b\xe6\xfd\xbe\xdb\x33\xad\x23\x0c\x0f\xa4\x23\x83\x9c\x6f\x96\x5a\x83\x87\x31\xd5\x62\x4b\x20\x25\x62\xae\xdc\x02\xae\xc3\xd2\x38\x84\xd9\xa9\x66\x50\xc3\x3b\x1c\xd0\x02\x2c\x8f\x1f\x27\x87\x66\x9d\xf5\x13\x62\x76\x0f\xbd\x34\xcc\x22\x77\xb5\xbd\x5f\x65\x64\xb0\xef\xc9\x38\x0b\x52\xff\x85\xaf\xc6\x79\x5c\x04\x94\x02\x8b\x8e\x98\x46\xaa\x2e\x0b\x89\x62\x18\xe3\x3e\x1f\x10\x09\x83\x2b\x9d\x44\xa0\xb0\x73\xe0\x0c\x99\x66\x7e\x27\xd7\xa9\xc9\x8c\x70\x70\xc3\xcb\xa6\xff\x99\x5a\xbf\x8e\x6a\x08\xca\x40\x9d\x29\x84\xcd\x72\xb7\x78\x4b\x87\xf5\x48\x70\xe4\xcc\x66\xec\xbe\xba\xf6\xc6\x52\x9e\xc4\xbb\xd7\x28\x1b\xda\xdd\x93\x7e\x80\xbe\xf3\xc2\x32\x46\xf0\xf4\x4b\xa3\xff\x29\x8f\xad\x86\x1d\xf0\x4f\xae\xee\x69\xff\x9f\xf2\xe4\xea\x50\x9b\xdf\xc5\x5d\x99\xb0\xc1\x39\x1c\xbe\xbb\xb2\xc7\xe8\x92\xdf\xa4\x9c\xc1\x85\x2d\x66\x91\xd1\x75\x6a\xc4\x2a\x51\x22\x64\x81\x48\x88\x0d\x4b\x90\xe4\xaf\x1a\xec\x96\x41\x94\x7e\xe0\x7e\xc3\xf6\x02\x3f\xc5\xa8\x35\x29\x31\x7e\xd0\x21\xee\x82\xa4\x8c\x2f\x23\x25\x5d\xf5\x55\xa9\x05\x84\x57\xe5\xe3\x0c\x4a\x2b\x11\x81\x5a\x4b\x1b\xc6\x37\x86\x2e\x52\x99\xd5\xa0\xcb\x03\x76\x15\x75\x5b\x4a\x49\x04\x15\xf3\x81\x54\x8e\xa8\x59\x41\xef\x25\x25\x0c\x1e\x2a\x29\xf2\xa0\x21\xde\xe9\x96\x2f\x4d\x1f\x9b\x01\x05\x9d\xd4\x6a\x06\x9d\x0b\x6a\x05\xd4\x34\xc7\x0d\x7a\x33\x34\x2f\x97\x54\xb8\xf6\xb1\x2d\x7c\xd7\x6b\xca\x56\x42\x82\x9e\x71\x48\x50\x49\x81\x0e\xa8\x80\x91\x2a\xab\x7c\x8e\xdf\x87\xe9\xc1\x1b\x87\xc8\x75\xaf\x1b\x4e\xc0\x04\x46\x3a\x79\xcb\x11\x49\x7f\xd0\x00\x4d\xc1\x5b\x87\xec\x86\x27\x2f\x27\x6d\xd7\xdc\x5f\x0e\x61\x8f\xeb\x1b\x56\x66\xb3\xcc\x90\xe3\x79\x33\xdc\x5b\x13\x9b\x59\x8a\xbd\xb3\x3c\xc7\xa3\xc8\x64\xf9\x40\xc3\xa2\x41\x2e\x50\x65\xfd\x4b\x36\xb8\x0b\x40\x0a\x7b\x1a\xde\x8f\x28\xef\xfb\xb6\x9a\xef\xf8\x4e\x58\xad\x63\x78\x51\x8a\x29\x8e\xcb\x1b\xc1\x76\x3b\x73\xdc\xb9\xd0\xaf\xfd\xb0\xfa\xc0\x9e\x3d\x49\x37\x80\x93\xd0\x6c\xd6\x2d\x09\xcc\x66\x55\xe0\x4a\xc5\x01\xc8\x45\x6b\x04\xb1\xe1\x1d\x27\xeb\x72\x5e\x9e\xc4\x5b\x8b\xf4\xe2\x50\x73\xba\x4d\xbf\xb5\x07\x08\x2e\x4e\x2e\xcf\xee\xa0\x25\x06\x55\x9a\x00\x64\x40\x18\x9c\xa5\xc4\x81\xac\x80\x42\xd4\x24\x49\x5d\x18\xf4\x58\x0f\xa3\x26\x21\xb6\x6e\x1a\xee\xae\x6d\x5f\x5e\xa7\xa2\x3d\x92\x43\x62\xc1\xe3\x40\xca\xcc\xd2\x93\xdd\xba\xaf\xd8\x46\xce\x5a\x53\x3b\xad\x79\x99\x76\xe5\x36\x6f\x2d\x40\x2e\xc2\x41\xa5\x8f\x0e\x1e\xcd\xa2\xd5\x97\xf5\xf2\xa0\xa5\xbc\x2d\x7a\xf9\xee\x82\x3e\x17\xed\xad\x5c\x02\xeb\x48\x3f\x55\x5b\x06\xd3\x27\xc9\x79\xc0\x94\x02\xd8\x3f\x23\xc5\x96\x0a\xdf\x16\x96\xed\x75\xb5\x70\x04\x73\x76\x78\x02\xbd\x03\x25\x85\x8b\x4f\x9b\x46\x00\x2b\x93\xfc\x7c\x27\x68\x3a\x9a\x48\xf2\x33\x06\xc2\x6f\x71\xb3\x15\xef\xd6\x10\x18\x46\xda\x19\x8a\x67\xfa\x60\xab\x62\x7a\x24\xaa\xc4\xd0\x81\xc4\xe2\x59\xdb\x50\xa2\x8c\x8b\xdc\xe7\xfc\x30\x8b\x98\x59\xb8\x73\x0d\x5e\xee\xfe\x32\xcb\xa8\xb0\xb2\x40\xca\xb8\x6b\xd0\x93\x41\x3f\xe2\x12\x11\x64\x26\xfc\xd5\x1e\x37\x8a\xab\xf6\x8f\x59\x8d\x4a\x44\xcf\x1c\x8d\xf0\x3a\x61\x71\x74\x87\x95\x51\x50\xfb\x60\xbf\x8f\x2b\xbe\x6f\xdb\x17\x5d\x9c\xe9\xc0\xdc\x75\x9a\xea\xc0\xe2\x5b\x35\x85\xcd\xb7\x5b\xb7\x6d\x04\xef\x57\x81\x6c\x03\x90\x6b\x61\x38\x01\x04\x2d\x82\x6e\x50\x8f\x78\x25\x86\x40\xec\x9c\xa8\x00\xc3\xad\x47\x93\x9b\xab\x2b\x0e\xd5\xc6\x01\x47\x35\xce\x0e\x22\xb7\x9d\xb0\x99\xbf\x95\x14\x5f\xdb\x8c\x95\x72\x50\x72\xf1\x98\xec\xe9\xe3\x73\x24\xf2\xa9\xc2\xc0\xdb\x9d\x7b\x33\xfe\x7c\x57\xcb\x79\x29\xc8\xd2\x86\x38\x2b\x6c\x04\xd2\x4b\xdb\x34\xbd\x3d\x0b\x12\x88\x2e\xe7\x94\x4c\x7b\x5a\xbf\x72\x08\xe6\x0b\xbb\x45\x26\x2f\x18\x04\x65\x70\x5d\xb8\x80\xb3\xc6\xb8\x10\xf5\x7b\x5c\x82\xfa\xbd\x07\x5c\x8c\x52\x6c\xe3\xbf\xc0\x2f\x61\xd2\xae\xc7\x6c\x04\xab\xd4\x68\x03\x96\xb4\x21\xdd\x84\x38\x28\xe6\x9e\x30\x8e\xed\x8a\x71\x92\x34\x08\x32\x94\x5e\x7c\x6a\x28\x2f\xf8\xd4\x50\xf6\xf1\xa9\xda\xb1\x41\x0f\xba\x6e\x6d\x13\x71\x71\xf1\x2e\x9e\x6d\x9f\x1b\x3c\x3b\xc5\xd6\x74\x0f\x38\xf2\x30\x07\x40\x7c\x90\xb2\x0b\xea\x93\xa0\x84\x62\x33\xc4\x9f\xa6\x0e\xeb\xe8\x7e\x5b\x57\x7d\xf9\xfd\x03\x98\x0d\x3c\xe8\xab\x62\xfe\xe0\x49\xb8\x6e\x2a\x78\x9c\x04\x0b\xa7\x5a\xec\x41\x8f\x3b\xbc\x47\x2f\xe3\xa6\xe2\xbe\x5f\xb5\xa5\xed\xef\x47\xc1\x63\xb5\x23\x92\xf6\xdb\x80\x23\xe8\x70\x0b\xb0\x8e\xb1\xfb\x52\x1b\x64\x64\x24\x2f\xf4\xf2\x96\x27\x9b\xaf\x9e\x5b\x35\x2f\x91\xec\x7b\x28\x51\x93\x2d\x8a\xb2\x3a\x72\x58\xff\x10\x04\xf9\x6d\x0d\x07\x23\x2b\x62\xef\x8d\x43\xcf\x36\x7a\x9a\x1c\x0a\x36\x7d\x99\x5c\x0b\x60\xec\x4e\x7d\x71\xc2\x03\x0e\x35\x16\xc3\x01\xc3\xb3\xae\xfa\x7b\x29\x81\x2f\x83\x61\x9f\xd0\x61\x78\xb3\xdb\xe0\x5d\xd2\x0b\x8e\xd3\x87\x97\x65\x47\xdd\xda\x92\xa4\x9f\x87\x3d\x42\x82\x63\x42\xe2\x34\xcb\x1e\x43\xd9\x5a\x2f\xea\xc4\xb1\x16\x7e\x43\xe9\x3b\xdc\xcc\x39\xec\xd0\x26\xe4\xc5\xd2\xa8\xd0\x39\xe7\x39\x31\x76\xa2\xb0\xf9\xdb\x3b\x52\x31\x7f\xd6\x49\x52\xf9\x6d\x57\xee\xa8\xf2\xb2\x5e\x82\x4c\xff\xc4\x3f\x49\xdc\xe1\x9f\x0e\x41\xe2\xa8\x0a\x85\x17\xbb\xba\x3c\x37\xd7\x55\xe8\xbd\x28\xc5\xd1\xc2\xbd\x72\x49\x30\x33\xe1\x2e\x70\x82\xdf\xd3\x1d\x54\xd8\xf1\xd1\x24\xce\xb7\x59\xa4\x35\xd5\x04\x73\xf7\xe6\xe7\x77\xa7\x03\xc8\x09\x66\xa0\x39\x13\xcc\x43\x73\x26\x58\x85\x5c\x3a\xbb\x21\xe0\xa2\x79\x7a\x04\x02\xb9\x77\x00\x42\xd0\xde\xc0\x04\x94\x3c\x59\x91\x92\x7e\x41\x94\x25\x6e\x58\x42\xf4\xf2\x3b\x06\x0a\x5e\x2d\x13\x28\x7b\xb4\x6c\xd4\x6a\x1d\xb6\x59\xcb\x4d\xa3\xe7\x3a\x62\x1e\x15\x70\x1d\x71\x40\x98\xec\x9e\x41\xb3\xbb\x59\x65\x76\x48\x02\x7f\xa6\x49\x06\x6a\x20\xbe\x66\x83\xd0\xaa\x5d\x37\x89\x70\x2b\x27\xbd\x1e\xe1\x57\x34\x75\xba\xfc\x78\xbd\x08\xac\x5f\x81\xfc\xb4\xba\x94\x30\xe0\xe5\xc2\x21\xc6\x74\xc6\xaf\x8f\xfc\x7b\x6e\x50\x2f\x0f\x06\xb3\xae\xae\x4a\xa7\x8c\xd6\xd1\xbc\xa3\xb4\x08\x78\xd5\xf7\xdb\xce\x82\x0f\xe0\x0d\xb1\xf4\x94\x7e\x0c\x06\x11\x56\xa5\x23\x19\xd5\xb4\xad\x70\x41\x10\xe0\x45\x12\xa6\x31\x6e\xd0\xba\x3b\x04\xe0\xba\x3d\x0c\x79\xdc\xb2\x75\x8c\xd3\x56\xc8\x6b\x4d\x0a\x65\x01\xd7\x3a\xcb\x00\x93\x2d\x33\x94\xee\x92\x0c\x83\x5d\xd2\x8c\x9e\x66\x8b\x56\x42\x27\xf2\x9f\x4b\xb6\x38\x71\x39\xe1\xda\xb3\xb4\x8e\x68\xaf\xd8\x89\xfb\xa6\x7e\x7a\x78\xff\xa6\x84\xa0\xc9\x32\x26\xde\xa1\x88\x01\xca\xcf\xe5\x62\x17\xdc\x1c\xfe\x2c\xbf\x55\x55\xef\xab\x69\xcc\x30\x7a\x57\xe3\x0d\x92\x33\x49\x09\x60\xa6\xe2\xa7\x5a\xd7\x09\x6f\xbd\xea\x73\xfa\xfd\xed\xbb\xe6\x71\x98\x65\x28\x33\x1c\x33\x7b\x2c\xf9\x99\xad\xc5\x0d\x6d\x60\x4b\x66\xb0\xa1\xc4\x13\xa6\x21\x06\x5b\x60\xb7\x67\x79\x13\x1d\xb7\xac\x66\xcb\x2c\x6b\x3b\x0b\x60\x71\x7c\x08\x5e\x53\x96\x3e\x48\xfe\x7d\xe6\xa5\xc9\x07\xb1\xbe\xfa\x38\x78\x74\xd1\xb4\xfb\x81\x35\x46\x14\xa8\xe0\xa1\xbc\x44\xd2\x96\x75\x10\x76\x51\x7e\x15\xa3\x57\xcc\x2c\x46\xf8\xb7\x3e\x46\x78\xf4\x92\xfb\xf0\x7d\x13\xf7\xde\x04\x6a\x65\x9b\x4c\x79\xcb\x66\x10\x67\xbd\x6b\x17\xcf\x86\x65\x59\x6b\x1a\x83\x71\xe6\xbf\x58\xc5\x32\x46\x7b\x99\xe3\x57\x7d\x0d\x43\x7e\x07\xe3\x7b\x26\xaa\xbd\x67\x32\xd2\x3f\x04\xcf\x55\x68\x0d\xc3\xe0\xf1\x86\xae\x28\xe8\x72\x58\xa1\xc6\x84\x1f\xd7\x37\x78\x2c\x24\x78\x10\xa5\xa9\xbf\xa6\x63\x93\xd1\xa7\x7f\xd5\x50\xe4\x5f\xdd\x2d\x17\x1d\x4e\xe7\xc0\x7e\x0f\x28\x42\xe6\x75\x7a\x52\x3d\x91\x20\x78\x89\xbc\x23\x67\x73\x49\x3f\xc2\x6e\x60\x26\xc3\x77\x41\xc6\xb3\x3d\xa0\x0f\xbc\x43\xf0\x5d\x10\x34\x1e\x0e\xed\x92\x51\x75\x1a\xf0\x57\x42\xf5\x7f\xe7\xde\x61\x4b\x3e\x70\xec\xee\x8f\x49\xbe\xe4\x31\xd1\xff\x09\x9e\x49\x14\x2f\x0d\x50\x2a\x7d\x26\xf2\x93\xbf\xbe\xe5\x8a\xbf\x4d\xbb\x92\x58\x27\xa2\x4e\x7f\xbb\x41\xc2\x86\x0e\xd8\xc4\x90\x38\x61\x85\x04\x7e\x4d\x14\x3f\x0b\xfc\x2c\xf2\x5b\xfc\xba\xc1\xaf\x9b\xb2\xfc\x24\x85\xc1\x5b\xa9\x38\x1d\xd1\x57\x48\xb9\xc5\xef\x5b\x8e\xce\xfc\x90\x7d\xd8\xb8\x1d\x7d\x7a\xc3\x7e\x20\xd6\x35\x37\xa7\xe9\xf6\x83\xd2\xb9\x55\x4d\x95\xcf\x87\x7c\xf9\x7f\xab\x49\xf8\xa2\x14\x6e\x5e\x93\xe4\xf3\x21\x18\x64\xbf\xb2\x0a\xe5\x9b\x52\xb9\x1f\x9a\x28\x9f\x94\xd6\xe6\x37\x99\xef\x97\x7e\x21\xd5\xf7\x4a\xbf\x08\xbd\x45\xdb\x6c\x39\xee\xed\x47\xf7\x44\xab\x7f\xc6\xee\x98\xf2\xcc\x76\x8b\x83\x9d\xb2\xc7\xf9\x9a\x9f\x62\xc4\x83\xd7\xec\x77\x3b\x4b\x2c\x1e\x75\x55\x6f\x77\xee\x94\xea\x83\xa1\x0b\x98\x0f\xf7\x25\xa6\xfa\xfc\x36\x95\x3c\xdc\x47\xb3\x9b\xcd\x2b\x7d\xaf\xb0\x4c\xf9\x48\xf0\xf8\xdf\xfe\x0d\xe0\xf4\xf9\xef\xff\x9e\x9e\xbc\x7c\x92\x96\x9f\x39\xdc\x61\x97\x6e\xf2\xcf\x38\x1b\x28\x14\xfd\x7c\x15\x01\xb2\x8f\x30\xec\xa7\xf5\x32\x4a\xdf\xbc\xc7\x0d\xd4\xff\x0f\x00\x00\xff\xff\x7b\x4e\x01\x54\xc1\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: 45418, mode: os.FileMode(420), modTime: time.Unix(1448004807, 0)} + info := bindataFileInfo{name: "conf/locale/locale_en-US.ini", size: 45505, mode: os.FileMode(420), modTime: time.Unix(1448170884, 0)} a := &asset{bytes: bytes, info: info} return a, nil } diff --git a/public/config.codekit b/public/config.codekit index 29b17aa0..29dd366c 100644 --- a/public/config.codekit +++ b/public/config.codekit @@ -503,639 +503,6 @@ "strictImports": 0, "strictMath": 0, "strictUnits": 0 - }, - "\/ng\/css\/font-awesome.min.css": { - "fileType": 16, - "ignore": 0, - "ignoreWasSetByUser": 0, - "inputAbbreviatedPath": "\/ng\/css\/font-awesome.min.css", - "outputAbbreviatedPath": "No Output Path", - "outputPathIsOutsideProject": 0, - "outputPathIsSetByUser": 0 - }, - "\/ng\/css\/gogs.css": { - "fileType": 16, - "ignore": 1, - "ignoreWasSetByUser": 0, - "inputAbbreviatedPath": "\/ng\/css\/gogs.css", - "outputAbbreviatedPath": "No Output Path", - "outputPathIsOutsideProject": 0, - "outputPathIsSetByUser": 0 - }, - "\/ng\/css\/magnific-popup.css": { - "fileType": 16, - "ignore": 0, - "ignoreWasSetByUser": 0, - "inputAbbreviatedPath": "\/ng\/css\/magnific-popup.css", - "outputAbbreviatedPath": "No Output Path", - "outputPathIsOutsideProject": 0, - "outputPathIsSetByUser": 0 - }, - "\/ng\/css\/tipsy.css": { - "fileType": 16, - "ignore": 0, - "ignoreWasSetByUser": 0, - "inputAbbreviatedPath": "\/ng\/css\/tipsy.css", - "outputAbbreviatedPath": "No Output Path", - "outputPathIsOutsideProject": 0, - "outputPathIsSetByUser": 0 - }, - "\/ng\/css\/ui.css": { - "fileType": 16, - "ignore": 1, - "ignoreWasSetByUser": 0, - "inputAbbreviatedPath": "\/ng\/css\/ui.css", - "outputAbbreviatedPath": "No Output Path", - "outputPathIsOutsideProject": 0, - "outputPathIsSetByUser": 0 - }, - "\/ng\/fonts\/octicons.css": { - "fileType": 16, - "ignore": 0, - "ignoreWasSetByUser": 0, - "inputAbbreviatedPath": "\/ng\/fonts\/octicons.css", - "outputAbbreviatedPath": "No Output Path", - "outputPathIsOutsideProject": 0, - "outputPathIsSetByUser": 0 - }, - "\/ng\/js\/gogs.js": { - "fileType": 64, - "ignore": 1, - "ignoreWasSetByUser": 1, - "inputAbbreviatedPath": "\/ng\/js\/gogs.js", - "outputAbbreviatedPath": "\/ng\/js\/min\/gogs-min.js", - "outputPathIsOutsideProject": 0, - "outputPathIsSetByUser": 0, - "outputStyle": 1, - "syntaxCheckerStyle": 1 - }, - "\/ng\/js\/gogs\/issue_label.js": { - "fileType": 64, - "ignore": 1, - "ignoreWasSetByUser": 0, - "inputAbbreviatedPath": "\/ng\/js\/gogs\/issue_label.js", - "outputAbbreviatedPath": "\/ng\/js\/gogs\/min\/issue_label-min.js", - "outputPathIsOutsideProject": 0, - "outputPathIsSetByUser": 0, - "outputStyle": 1, - "syntaxCheckerStyle": 1 - }, - "\/ng\/js\/lib\/jquery-1.11.1.min.js": { - "fileType": 64, - "ignore": 1, - "ignoreWasSetByUser": 0, - "inputAbbreviatedPath": "\/ng\/js\/lib\/jquery-1.11.1.min.js", - "outputAbbreviatedPath": "\/ng\/js\/lib\/min\/jquery-1.11.1.min-min.js", - "outputPathIsOutsideProject": 0, - "outputPathIsSetByUser": 0, - "outputStyle": 1, - "syntaxCheckerStyle": 1 - }, - "\/ng\/js\/lib\/jquery.magnific-popup.min.js": { - "fileType": 64, - "ignore": 0, - "ignoreWasSetByUser": 0, - "inputAbbreviatedPath": "\/ng\/js\/lib\/jquery.magnific-popup.min.js", - "outputAbbreviatedPath": "\/ng\/js\/lib\/min\/jquery.magnific-popup.min-min.js", - "outputPathIsOutsideProject": 0, - "outputPathIsSetByUser": 0, - "outputStyle": 1, - "syntaxCheckerStyle": 1 - }, - "\/ng\/js\/lib\/jquery.tipsy.js": { - "fileType": 64, - "ignore": 1, - "ignoreWasSetByUser": 0, - "inputAbbreviatedPath": "\/ng\/js\/lib\/jquery.tipsy.js", - "outputAbbreviatedPath": "\/ng\/js\/lib\/min\/jquery.tipsy-min.js", - "outputPathIsOutsideProject": 0, - "outputPathIsSetByUser": 0, - "outputStyle": 1, - "syntaxCheckerStyle": 1 - }, - "\/ng\/js\/lib\/lib.js": { - "fileType": 64, - "ignore": 1, - "ignoreWasSetByUser": 0, - "inputAbbreviatedPath": "\/ng\/js\/lib\/lib.js", - "outputAbbreviatedPath": "\/ng\/js\/lib\/min\/lib-min.js", - "outputPathIsOutsideProject": 0, - "outputPathIsSetByUser": 0, - "outputStyle": 1, - "syntaxCheckerStyle": 1 - }, - "\/ng\/js\/min\/gogs-min.js": { - "fileType": 64, - "ignore": 1, - "ignoreWasSetByUser": 0, - "inputAbbreviatedPath": "\/ng\/js\/min\/gogs-min.js", - "outputAbbreviatedPath": "\/ng\/js\/min\/min\/gogs-min-min.js", - "outputPathIsOutsideProject": 0, - "outputPathIsSetByUser": 0, - "outputStyle": 1, - "syntaxCheckerStyle": 1 - }, - "\/ng\/js\/utils\/preview.js": { - "fileType": 64, - "ignore": 1, - "ignoreWasSetByUser": 0, - "inputAbbreviatedPath": "\/ng\/js\/utils\/preview.js", - "outputAbbreviatedPath": "\/ng\/js\/utils\/min\/preview-min.js", - "outputPathIsOutsideProject": 0, - "outputPathIsSetByUser": 0, - "outputStyle": 1, - "syntaxCheckerStyle": 1 - }, - "\/ng\/js\/utils\/tabs.js": { - "fileType": 64, - "ignore": 1, - "ignoreWasSetByUser": 0, - "inputAbbreviatedPath": "\/ng\/js\/utils\/tabs.js", - "outputAbbreviatedPath": "\/ng\/js\/utils\/min\/tabs-min.js", - "outputPathIsOutsideProject": 0, - "outputPathIsSetByUser": 0, - "outputStyle": 1, - "syntaxCheckerStyle": 1 - }, - "\/ng\/less\/gogs.less": { - "allowInsecureImports": 0, - "createSourceMap": 0, - "disableJavascript": 0, - "fileType": 1, - "ieCompatibility": 1, - "ignore": 0, - "ignoreWasSetByUser": 0, - "inputAbbreviatedPath": "\/ng\/less\/gogs.less", - "outputAbbreviatedPath": "\/ng\/css\/gogs.css", - "outputPathIsOutsideProject": 0, - "outputPathIsSetByUser": 0, - "outputStyle": 0, - "relativeURLS": 0, - "shouldRunAutoprefixer": 0, - "shouldRunBless": 0, - "strictImports": 0, - "strictMath": 0, - "strictUnits": 0 - }, - "\/ng\/less\/gogs\/admin.less": { - "allowInsecureImports": 0, - "createSourceMap": 0, - "disableJavascript": 0, - "fileType": 1, - "ieCompatibility": 1, - "ignore": 1, - "ignoreWasSetByUser": 0, - "inputAbbreviatedPath": "\/ng\/less\/gogs\/admin.less", - "outputAbbreviatedPath": "\/ng\/less\/css\/admin.css", - "outputPathIsOutsideProject": 0, - "outputPathIsSetByUser": 0, - "outputStyle": 0, - "relativeURLS": 0, - "shouldRunAutoprefixer": 0, - "shouldRunBless": 0, - "strictImports": 0, - "strictMath": 0, - "strictUnits": 0 - }, - "\/ng\/less\/gogs\/base.less": { - "allowInsecureImports": 0, - "createSourceMap": 0, - "disableJavascript": 0, - "fileType": 1, - "ieCompatibility": 1, - "ignore": 1, - "ignoreWasSetByUser": 0, - "inputAbbreviatedPath": "\/ng\/less\/gogs\/base.less", - "outputAbbreviatedPath": "\/ng\/less\/css\/base.css", - "outputPathIsOutsideProject": 0, - "outputPathIsSetByUser": 0, - "outputStyle": 0, - "relativeURLS": 0, - "shouldRunAutoprefixer": 0, - "shouldRunBless": 0, - "strictImports": 0, - "strictMath": 0, - "strictUnits": 0 - }, - "\/ng\/less\/gogs\/dashboard.less": { - "allowInsecureImports": 0, - "createSourceMap": 0, - "disableJavascript": 0, - "fileType": 1, - "ieCompatibility": 1, - "ignore": 1, - "ignoreWasSetByUser": 0, - "inputAbbreviatedPath": "\/ng\/less\/gogs\/dashboard.less", - "outputAbbreviatedPath": "\/ng\/less\/css\/dashboard.css", - "outputPathIsOutsideProject": 0, - "outputPathIsSetByUser": 0, - "outputStyle": 0, - "relativeURLS": 0, - "shouldRunAutoprefixer": 0, - "shouldRunBless": 0, - "strictImports": 0, - "strictMath": 0, - "strictUnits": 0 - }, - "\/ng\/less\/gogs\/external.less": { - "allowInsecureImports": 0, - "createSourceMap": 0, - "disableJavascript": 0, - "fileType": 1, - "ieCompatibility": 1, - "ignore": 1, - "ignoreWasSetByUser": 0, - "inputAbbreviatedPath": "\/ng\/less\/gogs\/external.less", - "outputAbbreviatedPath": "\/ng\/less\/css\/external.css", - "outputPathIsOutsideProject": 0, - "outputPathIsSetByUser": 0, - "outputStyle": 0, - "relativeURLS": 0, - "shouldRunAutoprefixer": 0, - "shouldRunBless": 0, - "strictImports": 0, - "strictMath": 0, - "strictUnits": 0 - }, - "\/ng\/less\/gogs\/issue.less": { - "allowInsecureImports": 0, - "createSourceMap": 0, - "disableJavascript": 0, - "fileType": 1, - "ieCompatibility": 1, - "ignore": 1, - "ignoreWasSetByUser": 0, - "inputAbbreviatedPath": "\/ng\/less\/gogs\/issue.less", - "outputAbbreviatedPath": "\/ng\/less\/css\/issue.css", - "outputPathIsOutsideProject": 0, - "outputPathIsSetByUser": 0, - "outputStyle": 0, - "relativeURLS": 0, - "shouldRunAutoprefixer": 0, - "shouldRunBless": 0, - "strictImports": 0, - "strictMath": 0, - "strictUnits": 0 - }, - "\/ng\/less\/gogs\/markdown.less": { - "allowInsecureImports": 0, - "createSourceMap": 0, - "disableJavascript": 0, - "fileType": 1, - "ieCompatibility": 1, - "ignore": 1, - "ignoreWasSetByUser": 0, - "inputAbbreviatedPath": "\/ng\/less\/gogs\/markdown.less", - "outputAbbreviatedPath": "\/ng\/less\/css\/markdown.css", - "outputPathIsOutsideProject": 0, - "outputPathIsSetByUser": 0, - "outputStyle": 0, - "relativeURLS": 0, - "shouldRunAutoprefixer": 0, - "shouldRunBless": 0, - "strictImports": 0, - "strictMath": 0, - "strictUnits": 0 - }, - "\/ng\/less\/gogs\/organization.less": { - "allowInsecureImports": 0, - "createSourceMap": 0, - "disableJavascript": 0, - "fileType": 1, - "ieCompatibility": 1, - "ignore": 1, - "ignoreWasSetByUser": 0, - "inputAbbreviatedPath": "\/ng\/less\/gogs\/organization.less", - "outputAbbreviatedPath": "\/ng\/less\/css\/organization.css", - "outputPathIsOutsideProject": 0, - "outputPathIsSetByUser": 0, - "outputStyle": 0, - "relativeURLS": 0, - "shouldRunAutoprefixer": 0, - "shouldRunBless": 0, - "strictImports": 0, - "strictMath": 0, - "strictUnits": 0 - }, - "\/ng\/less\/gogs\/profile.less": { - "allowInsecureImports": 0, - "createSourceMap": 0, - "disableJavascript": 0, - "fileType": 1, - "ieCompatibility": 1, - "ignore": 1, - "ignoreWasSetByUser": 0, - "inputAbbreviatedPath": "\/ng\/less\/gogs\/profile.less", - "outputAbbreviatedPath": "\/ng\/less\/css\/profile.css", - "outputPathIsOutsideProject": 0, - "outputPathIsSetByUser": 0, - "outputStyle": 0, - "relativeURLS": 0, - "shouldRunAutoprefixer": 0, - "shouldRunBless": 0, - "strictImports": 0, - "strictMath": 0, - "strictUnits": 0 - }, - "\/ng\/less\/gogs\/repository.less": { - "allowInsecureImports": 0, - "createSourceMap": 0, - "disableJavascript": 0, - "fileType": 1, - "ieCompatibility": 1, - "ignore": 1, - "ignoreWasSetByUser": 0, - "inputAbbreviatedPath": "\/ng\/less\/gogs\/repository.less", - "outputAbbreviatedPath": "\/ng\/less\/css\/repository.css", - "outputPathIsOutsideProject": 0, - "outputPathIsSetByUser": 0, - "outputStyle": 0, - "relativeURLS": 0, - "shouldRunAutoprefixer": 0, - "shouldRunBless": 0, - "strictImports": 0, - "strictMath": 0, - "strictUnits": 0 - }, - "\/ng\/less\/gogs\/settings.less": { - "allowInsecureImports": 0, - "createSourceMap": 0, - "disableJavascript": 0, - "fileType": 1, - "ieCompatibility": 1, - "ignore": 1, - "ignoreWasSetByUser": 0, - "inputAbbreviatedPath": "\/ng\/less\/gogs\/settings.less", - "outputAbbreviatedPath": "\/ng\/less\/css\/settings.css", - "outputPathIsOutsideProject": 0, - "outputPathIsSetByUser": 0, - "outputStyle": 0, - "relativeURLS": 0, - "shouldRunAutoprefixer": 0, - "shouldRunBless": 0, - "strictImports": 0, - "strictMath": 0, - "strictUnits": 0 - }, - "\/ng\/less\/gogs\/sign.less": { - "allowInsecureImports": 0, - "createSourceMap": 0, - "disableJavascript": 0, - "fileType": 1, - "ieCompatibility": 1, - "ignore": 1, - "ignoreWasSetByUser": 0, - "inputAbbreviatedPath": "\/ng\/less\/gogs\/sign.less", - "outputAbbreviatedPath": "\/ng\/less\/css\/sign.css", - "outputPathIsOutsideProject": 0, - "outputPathIsSetByUser": 0, - "outputStyle": 0, - "relativeURLS": 0, - "shouldRunAutoprefixer": 0, - "shouldRunBless": 0, - "strictImports": 0, - "strictMath": 0, - "strictUnits": 0 - }, - "\/ng\/less\/ui.less": { - "allowInsecureImports": 0, - "createSourceMap": 0, - "disableJavascript": 0, - "fileType": 1, - "ieCompatibility": 1, - "ignore": 0, - "ignoreWasSetByUser": 0, - "inputAbbreviatedPath": "\/ng\/less\/ui.less", - "outputAbbreviatedPath": "\/ng\/css\/ui.css", - "outputPathIsOutsideProject": 0, - "outputPathIsSetByUser": 0, - "outputStyle": 0, - "relativeURLS": 0, - "shouldRunAutoprefixer": 0, - "shouldRunBless": 0, - "strictImports": 0, - "strictMath": 0, - "strictUnits": 0 - }, - "\/ng\/less\/ui\/alert.less": { - "allowInsecureImports": 0, - "createSourceMap": 0, - "disableJavascript": 0, - "fileType": 1, - "ieCompatibility": 1, - "ignore": 1, - "ignoreWasSetByUser": 0, - "inputAbbreviatedPath": "\/ng\/less\/ui\/alert.less", - "outputAbbreviatedPath": "\/ng\/less\/css\/alert.css", - "outputPathIsOutsideProject": 0, - "outputPathIsSetByUser": 0, - "outputStyle": 0, - "relativeURLS": 0, - "shouldRunAutoprefixer": 0, - "shouldRunBless": 0, - "strictImports": 0, - "strictMath": 0, - "strictUnits": 0 - }, - "\/ng\/less\/ui\/bread.less": { - "allowInsecureImports": 0, - "createSourceMap": 0, - "disableJavascript": 0, - "fileType": 1, - "ieCompatibility": 1, - "ignore": 1, - "ignoreWasSetByUser": 0, - "inputAbbreviatedPath": "\/ng\/less\/ui\/bread.less", - "outputAbbreviatedPath": "\/ng\/less\/css\/bread.css", - "outputPathIsOutsideProject": 0, - "outputPathIsSetByUser": 0, - "outputStyle": 0, - "relativeURLS": 0, - "shouldRunAutoprefixer": 0, - "shouldRunBless": 0, - "strictImports": 0, - "strictMath": 0, - "strictUnits": 0 - }, - "\/ng\/less\/ui\/form.less": { - "allowInsecureImports": 0, - "createSourceMap": 0, - "disableJavascript": 0, - "fileType": 1, - "ieCompatibility": 1, - "ignore": 1, - "ignoreWasSetByUser": 0, - "inputAbbreviatedPath": "\/ng\/less\/ui\/form.less", - "outputAbbreviatedPath": "\/ng\/less\/css\/form.css", - "outputPathIsOutsideProject": 0, - "outputPathIsSetByUser": 0, - "outputStyle": 0, - "relativeURLS": 0, - "shouldRunAutoprefixer": 0, - "shouldRunBless": 0, - "strictImports": 0, - "strictMath": 0, - "strictUnits": 0 - }, - "\/ng\/less\/ui\/grid.less": { - "allowInsecureImports": 0, - "createSourceMap": 0, - "disableJavascript": 0, - "fileType": 1, - "ieCompatibility": 1, - "ignore": 1, - "ignoreWasSetByUser": 0, - "inputAbbreviatedPath": "\/ng\/less\/ui\/grid.less", - "outputAbbreviatedPath": "\/ng\/less\/css\/grid.css", - "outputPathIsOutsideProject": 0, - "outputPathIsSetByUser": 0, - "outputStyle": 0, - "relativeURLS": 0, - "shouldRunAutoprefixer": 0, - "shouldRunBless": 0, - "strictImports": 0, - "strictMath": 0, - "strictUnits": 0 - }, - "\/ng\/less\/ui\/label.less": { - "allowInsecureImports": 0, - "createSourceMap": 0, - "disableJavascript": 0, - "fileType": 1, - "ieCompatibility": 1, - "ignore": 1, - "ignoreWasSetByUser": 0, - "inputAbbreviatedPath": "\/ng\/less\/ui\/label.less", - "outputAbbreviatedPath": "\/ng\/less\/css\/label.css", - "outputPathIsOutsideProject": 0, - "outputPathIsSetByUser": 0, - "outputStyle": 0, - "relativeURLS": 0, - "shouldRunAutoprefixer": 0, - "shouldRunBless": 0, - "strictImports": 0, - "strictMath": 0, - "strictUnits": 0 - }, - "\/ng\/less\/ui\/menu.less": { - "allowInsecureImports": 0, - "createSourceMap": 0, - "disableJavascript": 0, - "fileType": 1, - "ieCompatibility": 1, - "ignore": 1, - "ignoreWasSetByUser": 0, - "inputAbbreviatedPath": "\/ng\/less\/ui\/menu.less", - "outputAbbreviatedPath": "\/ng\/less\/css\/menu.css", - "outputPathIsOutsideProject": 0, - "outputPathIsSetByUser": 0, - "outputStyle": 0, - "relativeURLS": 0, - "shouldRunAutoprefixer": 0, - "shouldRunBless": 0, - "strictImports": 0, - "strictMath": 0, - "strictUnits": 0 - }, - "\/ng\/less\/ui\/pager.less": { - "allowInsecureImports": 0, - "createSourceMap": 0, - "disableJavascript": 0, - "fileType": 1, - "ieCompatibility": 1, - "ignore": 1, - "ignoreWasSetByUser": 0, - "inputAbbreviatedPath": "\/ng\/less\/ui\/pager.less", - "outputAbbreviatedPath": "\/ng\/less\/css\/pager.css", - "outputPathIsOutsideProject": 0, - "outputPathIsSetByUser": 0, - "outputStyle": 0, - "relativeURLS": 0, - "shouldRunAutoprefixer": 0, - "shouldRunBless": 0, - "strictImports": 0, - "strictMath": 0, - "strictUnits": 0 - }, - "\/ng\/less\/ui\/panel.less": { - "allowInsecureImports": 0, - "createSourceMap": 0, - "disableJavascript": 0, - "fileType": 1, - "ieCompatibility": 1, - "ignore": 1, - "ignoreWasSetByUser": 0, - "inputAbbreviatedPath": "\/ng\/less\/ui\/panel.less", - "outputAbbreviatedPath": "\/ng\/less\/css\/panel.css", - "outputPathIsOutsideProject": 0, - "outputPathIsSetByUser": 0, - "outputStyle": 0, - "relativeURLS": 0, - "shouldRunAutoprefixer": 0, - "shouldRunBless": 0, - "strictImports": 0, - "strictMath": 0, - "strictUnits": 0 - }, - "\/ng\/less\/ui\/reset.less": { - "allowInsecureImports": 0, - "createSourceMap": 0, - "disableJavascript": 0, - "fileType": 1, - "ieCompatibility": 1, - "ignore": 1, - "ignoreWasSetByUser": 0, - "inputAbbreviatedPath": "\/ng\/less\/ui\/reset.less", - "outputAbbreviatedPath": "\/ng\/less\/css\/reset.css", - "outputPathIsOutsideProject": 0, - "outputPathIsSetByUser": 0, - "outputStyle": 0, - "relativeURLS": 0, - "shouldRunAutoprefixer": 0, - "shouldRunBless": 0, - "strictImports": 0, - "strictMath": 0, - "strictUnits": 0 - }, - "\/ng\/less\/ui\/table.less": { - "allowInsecureImports": 0, - "createSourceMap": 0, - "disableJavascript": 0, - "fileType": 1, - "ieCompatibility": 1, - "ignore": 1, - "ignoreWasSetByUser": 0, - "inputAbbreviatedPath": "\/ng\/less\/ui\/table.less", - "outputAbbreviatedPath": "\/ng\/less\/css\/table.css", - "outputPathIsOutsideProject": 0, - "outputPathIsSetByUser": 0, - "outputStyle": 0, - "relativeURLS": 0, - "shouldRunAutoprefixer": 0, - "shouldRunBless": 0, - "strictImports": 0, - "strictMath": 0, - "strictUnits": 0 - }, - "\/ng\/less\/ui\/var.less": { - "allowInsecureImports": 0, - "createSourceMap": 0, - "disableJavascript": 0, - "fileType": 1, - "ieCompatibility": 1, - "ignore": 1, - "ignoreWasSetByUser": 0, - "inputAbbreviatedPath": "\/ng\/less\/ui\/var.less", - "outputAbbreviatedPath": "\/ng\/less\/css\/var.css", - "outputPathIsOutsideProject": 0, - "outputPathIsSetByUser": 0, - "outputStyle": 0, - "relativeURLS": 0, - "shouldRunAutoprefixer": 0, - "shouldRunBless": 0, - "strictImports": 0, - "strictMath": 0, - "strictUnits": 0 } }, "hooks": [ diff --git a/public/css/gogs.css b/public/css/gogs.css index 46340efa..5d613829 100755 --- a/public/css/gogs.css +++ b/public/css/gogs.css @@ -2529,19 +2529,23 @@ footer .container .links > *:first-child { margin-left: 5px; margin-top: -3px; } +#search-repo-box .results, #search-user-box .results { padding: 0; position: absolute; } +#search-repo-box .results .item, #search-user-box .results .item { padding: 10px 15px; border-bottom: 1px solid #DDD; cursor: pointer; } +#search-repo-box .results .item:hover, #search-user-box .results .item:hover { background: rgba(0, 0, 0, 0.05) !important; color: rgba(0, 0, 0, 0.95) !important; } +#search-repo-box .results .item img, #search-user-box .results .item img { margin-right: 8px; } @@ -2752,6 +2756,91 @@ footer .container .links > *:first-child { width: 50%!important; min-width: 300px; } +.organization.profile #org-avatar { + width: 100px; + height: 100px; + margin-right: 15px; +} +.organization.profile #org-info .ui.header { + font-size: 36px; + margin-bottom: 0; +} +.organization.profile #org-info .desc { + font-size: 16px; + margin-bottom: 10px; +} +.organization.profile #org-info .meta .item { + display: inline-block; + margin-right: 10px; +} +.organization.profile #org-info .meta .item .icon { + margin-right: 5px; +} +.organization.profile .ui.top.header .ui.right { + margin-top: 0; +} +.organization.profile .teams .item { + padding: 10px 15px; +} +.organization.teams .members .ui.avatar, +.organization.profile .members .ui.avatar { + width: 48px; + height: 48px; + margin-right: 5px; +} +.organization.invite #invite-box { + margin: auto; + margin-top: 50px; + width: 500px !important; +} +.organization.invite #invite-box #search-user-box input { + margin-left: 0; + width: 300px; +} +.organization.invite #invite-box .ui.button { + margin-left: 5px; + margin-top: -3px; +} +.organization.members .list .item { + margin-left: 0; + margin-right: 0; + border-bottom: 1px solid #eee; +} +.organization.members .list .item .ui.avatar { + width: 48px; + height: 48px; +} +.organization.members .list .item .meta { + line-height: 24px; +} +.organization.teams .detail .item { + padding: 10px 15px; +} +.organization.teams .detail .item:not(:last-child) { + border-bottom: 1px solid #eee; +} +.organization.teams .repositories .item, +.organization.teams .members .item { + padding: 10px 20px; + line-height: 32px; +} +.organization.teams .repositories .item:not(:last-child), +.organization.teams .members .item:not(:last-child) { + border-bottom: 1px solid #DDD; +} +.organization.teams .repositories .item .button, +.organization.teams .members .item .button { + padding: 9px 10px; +} +.organization.teams #add-repo-form input, +.organization.teams #add-member-form input { + margin-left: 0; +} +.organization.teams #add-repo-form .ui.button, +.organization.teams #add-member-form .ui.button { + margin-left: 5px; + margin-top: -3px; +} .user { padding-top: 15px; padding-bottom: 80px; diff --git a/public/js/gogs.js b/public/js/gogs.js index d429516e..0fd2b46a 100644 --- a/public/js/gogs.js +++ b/public/js/gogs.js @@ -564,6 +564,16 @@ function buttonsClickOnEnter() { }); } +function hideWhenLostFocus(body, parent) { + $(document).click(function (e) { + var target = e.target; + + if (!$(target).is(body) && !$(target).parents().is(parent)) { + $(body).hide(); + } + }); +} + function searchUsers() { if (!$('#search-user-box .results').length) { return; @@ -613,12 +623,53 @@ function searchUsers() { $search_user_box.find('input').focus(function () { $search_user_box.keyup(); }); - $(document).click(function (e) { - var target = e.target; + hideWhenLostFocus('#search-user-box .results', '#search-user-box'); +} + +function searchRepositories() { + if (!$('#search-repo-box .results').length) { + return; + } - if (!$(target).is('#search-user-box .results') && !$(target).parents().is('#search-user-box')) { - $('#search-user-box .results').hide(); + var $search_repo_box = $('#search-repo-box'); + var $result_list = $search_repo_box.find('.results'); + $search_repo_box.keyup(function () { + var $this = $(this); + var keyword = $this.find('input').val(); + if (keyword.length < 2) { + $result_list.hide(); + return; } + + $.ajax({ + url: suburl + '/api/v1/repos/search?q=' + keyword + "&uid=" + $search_repo_box.data('uid'), + dataType: "json", + success: function (response) { + var notEmpty = function (str) { + return str && str.length > 0; + }; + + $result_list.html(''); + + if (response.ok && response.data.length) { + var html = ''; + $.each(response.data, function (i, item) { + html += '
    ' + item.full_name + '
    '; + }); + $result_list.html(html); + $this.find('.results .item').click(function () { + $this.find('input').val($(this).find('.fullname').text().split("/")[1]); + $result_list.hide(); + }); + $result_list.show(); + } else { + $result_list.hide(); + } + } + }); + }); + $search_repo_box.find('input').focus(function () { + $search_repo_box.keyup(); }); } @@ -776,6 +827,7 @@ $(document).ready(function () { buttonsClickOnEnter(); searchUsers(); + searchRepositories(); initCommentForm(); diff --git a/public/less/_organization.less b/public/less/_organization.less index fc3e8260..3fa54b6e 100644 --- a/public/less/_organization.less +++ b/public/less/_organization.less @@ -25,4 +25,133 @@ min-width: 300px; } } + + &.profile { + #org-avatar { + width: 100px; + height: 100px; + margin-right: 15px; + } + + #org-info { + .ui.header { + font-size: 36px; + margin-bottom: 0; + } + .desc { + font-size: 16px; + margin-bottom: 10px; + } + .meta { + .item { + display: inline-block; + margin-right: 10px; + + .icon { + margin-right: 5px; + } + } + } + } + + .ui.top.header { + .ui.right { + margin-top: 0; + } + } + + .teams { + .item { + padding: 10px 15px; + } + } + } + + &.teams, + &.profile { + .members { + .ui.avatar { + width: 48px; + height: 48px; + margin-right: 5px; + } + } + } + + &.invite { + #invite-box { + margin: auto; + margin-top: 50px; + width: 500px !important; + + #search-user-box { + input { + margin-left: 0; + width: 300px; + } + } + .ui.button { + margin-left: 5px; + margin-top: -3px; + } + } + } + + &.members { + .list { + .item { + margin-left: 0; + margin-right: 0; + border-bottom: 1px solid #eee; + + .ui.avatar { + width: 48px; + height: 48px; + } + .meta { + line-height: 24px; + } + } + } + } + + &.teams { + .detail { + .item { + padding: 10px 15px; + + &:not(:last-child) { + border-bottom: 1px solid #eee; + } + } + } + + .repositories, + .members { + .item { + padding: 10px 20px; + line-height: 32px; + + &:not(:last-child) { + border-bottom: 1px solid #DDD; + } + + .button { + padding: 9px 10px; + } + } + } + + #add-repo-form, + #add-member-form { + input { + margin-left: 0; + } + + .ui.button { + margin-left: 5px; + margin-top: -3px; + } + } + } } \ No newline at end of file diff --git a/public/less/_repository.less b/public/less/_repository.less index 0ea1e711..6f03819c 100644 --- a/public/less/_repository.less +++ b/public/less/_repository.less @@ -969,6 +969,7 @@ } // End of .repository +#search-repo-box, #search-user-box { .results { padding: 0; diff --git a/public/ng/css/font-awesome.min.css b/public/ng/css/font-awesome.min.css deleted file mode 100644 index ee4e9782..00000000 --- a/public/ng/css/font-awesome.min.css +++ /dev/null @@ -1,4 +0,0 @@ -/*! - * Font Awesome 4.4.0 by @davegandy - http://fontawesome.io - @fontawesome - * License - http://fontawesome.io/license (Font: SIL OFL 1.1, CSS: MIT License) - */@font-face{font-family:'FontAwesome';src:url('../fonts/fontawesome-webfont.eot?v=4.4.0');src:url('../fonts/fontawesome-webfont.eot?#iefix&v=4.4.0') format('embedded-opentype'),url('../fonts/fontawesome-webfont.woff2?v=4.4.0') format('woff2'),url('../fonts/fontawesome-webfont.woff?v=4.4.0') format('woff'),url('../fonts/fontawesome-webfont.ttf?v=4.4.0') format('truetype'),url('../fonts/fontawesome-webfont.svg?v=4.4.0#fontawesomeregular') format('svg');font-weight:normal;font-style:normal}.fa{display:inline-block;font:normal normal normal 14px/1 FontAwesome;font-size:inherit;text-rendering:auto;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.fa-lg{font-size:1.33333333em;line-height:.75em;vertical-align:-15%}.fa-2x{font-size:2em}.fa-3x{font-size:3em}.fa-4x{font-size:4em}.fa-5x{font-size:5em}.fa-fw{width:1.28571429em;text-align:center}.fa-ul{padding-left:0;margin-left:2.14285714em;list-style-type:none}.fa-ul>li{position:relative}.fa-li{position:absolute;left:-2.14285714em;width:2.14285714em;top:.14285714em;text-align:center}.fa-li.fa-lg{left:-1.85714286em}.fa-border{padding:.2em .25em .15em;border:solid .08em #eee;border-radius:.1em}.fa-pull-left{float:left}.fa-pull-right{float:right}.fa.fa-pull-left{margin-right:.3em}.fa.fa-pull-right{margin-left:.3em}.pull-right{float:right}.pull-left{float:left}.fa.pull-left{margin-right:.3em}.fa.pull-right{margin-left:.3em}.fa-spin{-webkit-animation:fa-spin 2s infinite linear;animation:fa-spin 2s infinite linear}.fa-pulse{-webkit-animation:fa-spin 1s infinite steps(8);animation:fa-spin 1s infinite steps(8)}@-webkit-keyframes fa-spin{0%{-webkit-transform:rotate(0deg);transform:rotate(0deg)}100%{-webkit-transform:rotate(359deg);transform:rotate(359deg)}}@keyframes fa-spin{0%{-webkit-transform:rotate(0deg);transform:rotate(0deg)}100%{-webkit-transform:rotate(359deg);transform:rotate(359deg)}}.fa-rotate-90{filter:progid:DXImageTransform.Microsoft.BasicImage(rotation=1);-webkit-transform:rotate(90deg);-ms-transform:rotate(90deg);transform:rotate(90deg)}.fa-rotate-180{filter:progid:DXImageTransform.Microsoft.BasicImage(rotation=2);-webkit-transform:rotate(180deg);-ms-transform:rotate(180deg);transform:rotate(180deg)}.fa-rotate-270{filter:progid:DXImageTransform.Microsoft.BasicImage(rotation=3);-webkit-transform:rotate(270deg);-ms-transform:rotate(270deg);transform:rotate(270deg)}.fa-flip-horizontal{filter:progid:DXImageTransform.Microsoft.BasicImage(rotation=0, mirror=1);-webkit-transform:scale(-1, 1);-ms-transform:scale(-1, 1);transform:scale(-1, 1)}.fa-flip-vertical{filter:progid:DXImageTransform.Microsoft.BasicImage(rotation=2, mirror=1);-webkit-transform:scale(1, -1);-ms-transform:scale(1, -1);transform:scale(1, -1)}:root .fa-rotate-90,:root .fa-rotate-180,:root .fa-rotate-270,:root .fa-flip-horizontal,:root .fa-flip-vertical{filter:none}.fa-stack{position:relative;display:inline-block;width:2em;height:2em;line-height:2em;vertical-align:middle}.fa-stack-1x,.fa-stack-2x{position:absolute;left:0;width:100%;text-align:center}.fa-stack-1x{line-height:inherit}.fa-stack-2x{font-size:2em}.fa-inverse{color:#fff}.fa-glass:before{content:"\f000"}.fa-music:before{content:"\f001"}.fa-search:before{content:"\f002"}.fa-envelope-o:before{content:"\f003"}.fa-heart:before{content:"\f004"}.fa-star:before{content:"\f005"}.fa-star-o:before{content:"\f006"}.fa-user:before{content:"\f007"}.fa-film:before{content:"\f008"}.fa-th-large:before{content:"\f009"}.fa-th:before{content:"\f00a"}.fa-th-list:before{content:"\f00b"}.fa-check:before{content:"\f00c"}.fa-remove:before,.fa-close:before,.fa-times:before{content:"\f00d"}.fa-search-plus:before{content:"\f00e"}.fa-search-minus:before{content:"\f010"}.fa-power-off:before{content:"\f011"}.fa-signal:before{content:"\f012"}.fa-gear:before,.fa-cog:before{content:"\f013"}.fa-trash-o:before{content:"\f014"}.fa-home:before{content:"\f015"}.fa-file-o:before{content:"\f016"}.fa-clock-o:before{content:"\f017"}.fa-road:before{content:"\f018"}.fa-download:before{content:"\f019"}.fa-arrow-circle-o-down:before{content:"\f01a"}.fa-arrow-circle-o-up:before{content:"\f01b"}.fa-inbox:before{content:"\f01c"}.fa-play-circle-o:before{content:"\f01d"}.fa-rotate-right:before,.fa-repeat:before{content:"\f01e"}.fa-refresh:before{content:"\f021"}.fa-list-alt:before{content:"\f022"}.fa-lock:before{content:"\f023"}.fa-flag:before{content:"\f024"}.fa-headphones:before{content:"\f025"}.fa-volume-off:before{content:"\f026"}.fa-volume-down:before{content:"\f027"}.fa-volume-up:before{content:"\f028"}.fa-qrcode:before{content:"\f029"}.fa-barcode:before{content:"\f02a"}.fa-tag:before{content:"\f02b"}.fa-tags:before{content:"\f02c"}.fa-book:before{content:"\f02d"}.fa-bookmark:before{content:"\f02e"}.fa-print:before{content:"\f02f"}.fa-camera:before{content:"\f030"}.fa-font:before{content:"\f031"}.fa-bold:before{content:"\f032"}.fa-italic:before{content:"\f033"}.fa-text-height:before{content:"\f034"}.fa-text-width:before{content:"\f035"}.fa-align-left:before{content:"\f036"}.fa-align-center:before{content:"\f037"}.fa-align-right:before{content:"\f038"}.fa-align-justify:before{content:"\f039"}.fa-list:before{content:"\f03a"}.fa-dedent:before,.fa-outdent:before{content:"\f03b"}.fa-indent:before{content:"\f03c"}.fa-video-camera:before{content:"\f03d"}.fa-photo:before,.fa-image:before,.fa-picture-o:before{content:"\f03e"}.fa-pencil:before{content:"\f040"}.fa-map-marker:before{content:"\f041"}.fa-adjust:before{content:"\f042"}.fa-tint:before{content:"\f043"}.fa-edit:before,.fa-pencil-square-o:before{content:"\f044"}.fa-share-square-o:before{content:"\f045"}.fa-check-square-o:before{content:"\f046"}.fa-arrows:before{content:"\f047"}.fa-step-backward:before{content:"\f048"}.fa-fast-backward:before{content:"\f049"}.fa-backward:before{content:"\f04a"}.fa-play:before{content:"\f04b"}.fa-pause:before{content:"\f04c"}.fa-stop:before{content:"\f04d"}.fa-forward:before{content:"\f04e"}.fa-fast-forward:before{content:"\f050"}.fa-step-forward:before{content:"\f051"}.fa-eject:before{content:"\f052"}.fa-chevron-left:before{content:"\f053"}.fa-chevron-right:before{content:"\f054"}.fa-plus-circle:before{content:"\f055"}.fa-minus-circle:before{content:"\f056"}.fa-times-circle:before{content:"\f057"}.fa-check-circle:before{content:"\f058"}.fa-question-circle:before{content:"\f059"}.fa-info-circle:before{content:"\f05a"}.fa-crosshairs:before{content:"\f05b"}.fa-times-circle-o:before{content:"\f05c"}.fa-check-circle-o:before{content:"\f05d"}.fa-ban:before{content:"\f05e"}.fa-arrow-left:before{content:"\f060"}.fa-arrow-right:before{content:"\f061"}.fa-arrow-up:before{content:"\f062"}.fa-arrow-down:before{content:"\f063"}.fa-mail-forward:before,.fa-share:before{content:"\f064"}.fa-expand:before{content:"\f065"}.fa-compress:before{content:"\f066"}.fa-plus:before{content:"\f067"}.fa-minus:before{content:"\f068"}.fa-asterisk:before{content:"\f069"}.fa-exclamation-circle:before{content:"\f06a"}.fa-gift:before{content:"\f06b"}.fa-leaf:before{content:"\f06c"}.fa-fire:before{content:"\f06d"}.fa-eye:before{content:"\f06e"}.fa-eye-slash:before{content:"\f070"}.fa-warning:before,.fa-exclamation-triangle:before{content:"\f071"}.fa-plane:before{content:"\f072"}.fa-calendar:before{content:"\f073"}.fa-random:before{content:"\f074"}.fa-comment:before{content:"\f075"}.fa-magnet:before{content:"\f076"}.fa-chevron-up:before{content:"\f077"}.fa-chevron-down:before{content:"\f078"}.fa-retweet:before{content:"\f079"}.fa-shopping-cart:before{content:"\f07a"}.fa-folder:before{content:"\f07b"}.fa-folder-open:before{content:"\f07c"}.fa-arrows-v:before{content:"\f07d"}.fa-arrows-h:before{content:"\f07e"}.fa-bar-chart-o:before,.fa-bar-chart:before{content:"\f080"}.fa-twitter-square:before{content:"\f081"}.fa-facebook-square:before{content:"\f082"}.fa-camera-retro:before{content:"\f083"}.fa-key:before{content:"\f084"}.fa-gears:before,.fa-cogs:before{content:"\f085"}.fa-comments:before{content:"\f086"}.fa-thumbs-o-up:before{content:"\f087"}.fa-thumbs-o-down:before{content:"\f088"}.fa-star-half:before{content:"\f089"}.fa-heart-o:before{content:"\f08a"}.fa-sign-out:before{content:"\f08b"}.fa-linkedin-square:before{content:"\f08c"}.fa-thumb-tack:before{content:"\f08d"}.fa-external-link:before{content:"\f08e"}.fa-sign-in:before{content:"\f090"}.fa-trophy:before{content:"\f091"}.fa-github-square:before{content:"\f092"}.fa-upload:before{content:"\f093"}.fa-lemon-o:before{content:"\f094"}.fa-phone:before{content:"\f095"}.fa-square-o:before{content:"\f096"}.fa-bookmark-o:before{content:"\f097"}.fa-phone-square:before{content:"\f098"}.fa-twitter:before{content:"\f099"}.fa-facebook-f:before,.fa-facebook:before{content:"\f09a"}.fa-github:before{content:"\f09b"}.fa-unlock:before{content:"\f09c"}.fa-credit-card:before{content:"\f09d"}.fa-feed:before,.fa-rss:before{content:"\f09e"}.fa-hdd-o:before{content:"\f0a0"}.fa-bullhorn:before{content:"\f0a1"}.fa-bell:before{content:"\f0f3"}.fa-certificate:before{content:"\f0a3"}.fa-hand-o-right:before{content:"\f0a4"}.fa-hand-o-left:before{content:"\f0a5"}.fa-hand-o-up:before{content:"\f0a6"}.fa-hand-o-down:before{content:"\f0a7"}.fa-arrow-circle-left:before{content:"\f0a8"}.fa-arrow-circle-right:before{content:"\f0a9"}.fa-arrow-circle-up:before{content:"\f0aa"}.fa-arrow-circle-down:before{content:"\f0ab"}.fa-globe:before{content:"\f0ac"}.fa-wrench:before{content:"\f0ad"}.fa-tasks:before{content:"\f0ae"}.fa-filter:before{content:"\f0b0"}.fa-briefcase:before{content:"\f0b1"}.fa-arrows-alt:before{content:"\f0b2"}.fa-group:before,.fa-users:before{content:"\f0c0"}.fa-chain:before,.fa-link:before{content:"\f0c1"}.fa-cloud:before{content:"\f0c2"}.fa-flask:before{content:"\f0c3"}.fa-cut:before,.fa-scissors:before{content:"\f0c4"}.fa-copy:before,.fa-files-o:before{content:"\f0c5"}.fa-paperclip:before{content:"\f0c6"}.fa-save:before,.fa-floppy-o:before{content:"\f0c7"}.fa-square:before{content:"\f0c8"}.fa-navicon:before,.fa-reorder:before,.fa-bars:before{content:"\f0c9"}.fa-list-ul:before{content:"\f0ca"}.fa-list-ol:before{content:"\f0cb"}.fa-strikethrough:before{content:"\f0cc"}.fa-underline:before{content:"\f0cd"}.fa-table:before{content:"\f0ce"}.fa-magic:before{content:"\f0d0"}.fa-truck:before{content:"\f0d1"}.fa-pinterest:before{content:"\f0d2"}.fa-pinterest-square:before{content:"\f0d3"}.fa-google-plus-square:before{content:"\f0d4"}.fa-google-plus:before{content:"\f0d5"}.fa-money:before{content:"\f0d6"}.fa-caret-down:before{content:"\f0d7"}.fa-caret-up:before{content:"\f0d8"}.fa-caret-left:before{content:"\f0d9"}.fa-caret-right:before{content:"\f0da"}.fa-columns:before{content:"\f0db"}.fa-unsorted:before,.fa-sort:before{content:"\f0dc"}.fa-sort-down:before,.fa-sort-desc:before{content:"\f0dd"}.fa-sort-up:before,.fa-sort-asc:before{content:"\f0de"}.fa-envelope:before{content:"\f0e0"}.fa-linkedin:before{content:"\f0e1"}.fa-rotate-left:before,.fa-undo:before{content:"\f0e2"}.fa-legal:before,.fa-gavel:before{content:"\f0e3"}.fa-dashboard:before,.fa-tachometer:before{content:"\f0e4"}.fa-comment-o:before{content:"\f0e5"}.fa-comments-o:before{content:"\f0e6"}.fa-flash:before,.fa-bolt:before{content:"\f0e7"}.fa-sitemap:before{content:"\f0e8"}.fa-umbrella:before{content:"\f0e9"}.fa-paste:before,.fa-clipboard:before{content:"\f0ea"}.fa-lightbulb-o:before{content:"\f0eb"}.fa-exchange:before{content:"\f0ec"}.fa-cloud-download:before{content:"\f0ed"}.fa-cloud-upload:before{content:"\f0ee"}.fa-user-md:before{content:"\f0f0"}.fa-stethoscope:before{content:"\f0f1"}.fa-suitcase:before{content:"\f0f2"}.fa-bell-o:before{content:"\f0a2"}.fa-coffee:before{content:"\f0f4"}.fa-cutlery:before{content:"\f0f5"}.fa-file-text-o:before{content:"\f0f6"}.fa-building-o:before{content:"\f0f7"}.fa-hospital-o:before{content:"\f0f8"}.fa-ambulance:before{content:"\f0f9"}.fa-medkit:before{content:"\f0fa"}.fa-fighter-jet:before{content:"\f0fb"}.fa-beer:before{content:"\f0fc"}.fa-h-square:before{content:"\f0fd"}.fa-plus-square:before{content:"\f0fe"}.fa-angle-double-left:before{content:"\f100"}.fa-angle-double-right:before{content:"\f101"}.fa-angle-double-up:before{content:"\f102"}.fa-angle-double-down:before{content:"\f103"}.fa-angle-left:before{content:"\f104"}.fa-angle-right:before{content:"\f105"}.fa-angle-up:before{content:"\f106"}.fa-angle-down:before{content:"\f107"}.fa-desktop:before{content:"\f108"}.fa-laptop:before{content:"\f109"}.fa-tablet:before{content:"\f10a"}.fa-mobile-phone:before,.fa-mobile:before{content:"\f10b"}.fa-circle-o:before{content:"\f10c"}.fa-quote-left:before{content:"\f10d"}.fa-quote-right:before{content:"\f10e"}.fa-spinner:before{content:"\f110"}.fa-circle:before{content:"\f111"}.fa-mail-reply:before,.fa-reply:before{content:"\f112"}.fa-github-alt:before{content:"\f113"}.fa-folder-o:before{content:"\f114"}.fa-folder-open-o:before{content:"\f115"}.fa-smile-o:before{content:"\f118"}.fa-frown-o:before{content:"\f119"}.fa-meh-o:before{content:"\f11a"}.fa-gamepad:before{content:"\f11b"}.fa-keyboard-o:before{content:"\f11c"}.fa-flag-o:before{content:"\f11d"}.fa-flag-checkered:before{content:"\f11e"}.fa-terminal:before{content:"\f120"}.fa-code:before{content:"\f121"}.fa-mail-reply-all:before,.fa-reply-all:before{content:"\f122"}.fa-star-half-empty:before,.fa-star-half-full:before,.fa-star-half-o:before{content:"\f123"}.fa-location-arrow:before{content:"\f124"}.fa-crop:before{content:"\f125"}.fa-code-fork:before{content:"\f126"}.fa-unlink:before,.fa-chain-broken:before{content:"\f127"}.fa-question:before{content:"\f128"}.fa-info:before{content:"\f129"}.fa-exclamation:before{content:"\f12a"}.fa-superscript:before{content:"\f12b"}.fa-subscript:before{content:"\f12c"}.fa-eraser:before{content:"\f12d"}.fa-puzzle-piece:before{content:"\f12e"}.fa-microphone:before{content:"\f130"}.fa-microphone-slash:before{content:"\f131"}.fa-shield:before{content:"\f132"}.fa-calendar-o:before{content:"\f133"}.fa-fire-extinguisher:before{content:"\f134"}.fa-rocket:before{content:"\f135"}.fa-maxcdn:before{content:"\f136"}.fa-chevron-circle-left:before{content:"\f137"}.fa-chevron-circle-right:before{content:"\f138"}.fa-chevron-circle-up:before{content:"\f139"}.fa-chevron-circle-down:before{content:"\f13a"}.fa-html5:before{content:"\f13b"}.fa-css3:before{content:"\f13c"}.fa-anchor:before{content:"\f13d"}.fa-unlock-alt:before{content:"\f13e"}.fa-bullseye:before{content:"\f140"}.fa-ellipsis-h:before{content:"\f141"}.fa-ellipsis-v:before{content:"\f142"}.fa-rss-square:before{content:"\f143"}.fa-play-circle:before{content:"\f144"}.fa-ticket:before{content:"\f145"}.fa-minus-square:before{content:"\f146"}.fa-minus-square-o:before{content:"\f147"}.fa-level-up:before{content:"\f148"}.fa-level-down:before{content:"\f149"}.fa-check-square:before{content:"\f14a"}.fa-pencil-square:before{content:"\f14b"}.fa-external-link-square:before{content:"\f14c"}.fa-share-square:before{content:"\f14d"}.fa-compass:before{content:"\f14e"}.fa-toggle-down:before,.fa-caret-square-o-down:before{content:"\f150"}.fa-toggle-up:before,.fa-caret-square-o-up:before{content:"\f151"}.fa-toggle-right:before,.fa-caret-square-o-right:before{content:"\f152"}.fa-euro:before,.fa-eur:before{content:"\f153"}.fa-gbp:before{content:"\f154"}.fa-dollar:before,.fa-usd:before{content:"\f155"}.fa-rupee:before,.fa-inr:before{content:"\f156"}.fa-cny:before,.fa-rmb:before,.fa-yen:before,.fa-jpy:before{content:"\f157"}.fa-ruble:before,.fa-rouble:before,.fa-rub:before{content:"\f158"}.fa-won:before,.fa-krw:before{content:"\f159"}.fa-bitcoin:before,.fa-btc:before{content:"\f15a"}.fa-file:before{content:"\f15b"}.fa-file-text:before{content:"\f15c"}.fa-sort-alpha-asc:before{content:"\f15d"}.fa-sort-alpha-desc:before{content:"\f15e"}.fa-sort-amount-asc:before{content:"\f160"}.fa-sort-amount-desc:before{content:"\f161"}.fa-sort-numeric-asc:before{content:"\f162"}.fa-sort-numeric-desc:before{content:"\f163"}.fa-thumbs-up:before{content:"\f164"}.fa-thumbs-down:before{content:"\f165"}.fa-youtube-square:before{content:"\f166"}.fa-youtube:before{content:"\f167"}.fa-xing:before{content:"\f168"}.fa-xing-square:before{content:"\f169"}.fa-youtube-play:before{content:"\f16a"}.fa-dropbox:before{content:"\f16b"}.fa-stack-overflow:before{content:"\f16c"}.fa-instagram:before{content:"\f16d"}.fa-flickr:before{content:"\f16e"}.fa-adn:before{content:"\f170"}.fa-bitbucket:before{content:"\f171"}.fa-bitbucket-square:before{content:"\f172"}.fa-tumblr:before{content:"\f173"}.fa-tumblr-square:before{content:"\f174"}.fa-long-arrow-down:before{content:"\f175"}.fa-long-arrow-up:before{content:"\f176"}.fa-long-arrow-left:before{content:"\f177"}.fa-long-arrow-right:before{content:"\f178"}.fa-apple:before{content:"\f179"}.fa-windows:before{content:"\f17a"}.fa-android:before{content:"\f17b"}.fa-linux:before{content:"\f17c"}.fa-dribbble:before{content:"\f17d"}.fa-skype:before{content:"\f17e"}.fa-foursquare:before{content:"\f180"}.fa-trello:before{content:"\f181"}.fa-female:before{content:"\f182"}.fa-male:before{content:"\f183"}.fa-gittip:before,.fa-gratipay:before{content:"\f184"}.fa-sun-o:before{content:"\f185"}.fa-moon-o:before{content:"\f186"}.fa-archive:before{content:"\f187"}.fa-bug:before{content:"\f188"}.fa-vk:before{content:"\f189"}.fa-weibo:before{content:"\f18a"}.fa-renren:before{content:"\f18b"}.fa-pagelines:before{content:"\f18c"}.fa-stack-exchange:before{content:"\f18d"}.fa-arrow-circle-o-right:before{content:"\f18e"}.fa-arrow-circle-o-left:before{content:"\f190"}.fa-toggle-left:before,.fa-caret-square-o-left:before{content:"\f191"}.fa-dot-circle-o:before{content:"\f192"}.fa-wheelchair:before{content:"\f193"}.fa-vimeo-square:before{content:"\f194"}.fa-turkish-lira:before,.fa-try:before{content:"\f195"}.fa-plus-square-o:before{content:"\f196"}.fa-space-shuttle:before{content:"\f197"}.fa-slack:before{content:"\f198"}.fa-envelope-square:before{content:"\f199"}.fa-wordpress:before{content:"\f19a"}.fa-openid:before{content:"\f19b"}.fa-institution:before,.fa-bank:before,.fa-university:before{content:"\f19c"}.fa-mortar-board:before,.fa-graduation-cap:before{content:"\f19d"}.fa-yahoo:before{content:"\f19e"}.fa-google:before{content:"\f1a0"}.fa-reddit:before{content:"\f1a1"}.fa-reddit-square:before{content:"\f1a2"}.fa-stumbleupon-circle:before{content:"\f1a3"}.fa-stumbleupon:before{content:"\f1a4"}.fa-delicious:before{content:"\f1a5"}.fa-digg:before{content:"\f1a6"}.fa-pied-piper:before{content:"\f1a7"}.fa-pied-piper-alt:before{content:"\f1a8"}.fa-drupal:before{content:"\f1a9"}.fa-joomla:before{content:"\f1aa"}.fa-language:before{content:"\f1ab"}.fa-fax:before{content:"\f1ac"}.fa-building:before{content:"\f1ad"}.fa-child:before{content:"\f1ae"}.fa-paw:before{content:"\f1b0"}.fa-spoon:before{content:"\f1b1"}.fa-cube:before{content:"\f1b2"}.fa-cubes:before{content:"\f1b3"}.fa-behance:before{content:"\f1b4"}.fa-behance-square:before{content:"\f1b5"}.fa-steam:before{content:"\f1b6"}.fa-steam-square:before{content:"\f1b7"}.fa-recycle:before{content:"\f1b8"}.fa-automobile:before,.fa-car:before{content:"\f1b9"}.fa-cab:before,.fa-taxi:before{content:"\f1ba"}.fa-tree:before{content:"\f1bb"}.fa-spotify:before{content:"\f1bc"}.fa-deviantart:before{content:"\f1bd"}.fa-soundcloud:before{content:"\f1be"}.fa-database:before{content:"\f1c0"}.fa-file-pdf-o:before{content:"\f1c1"}.fa-file-word-o:before{content:"\f1c2"}.fa-file-excel-o:before{content:"\f1c3"}.fa-file-powerpoint-o:before{content:"\f1c4"}.fa-file-photo-o:before,.fa-file-picture-o:before,.fa-file-image-o:before{content:"\f1c5"}.fa-file-zip-o:before,.fa-file-archive-o:before{content:"\f1c6"}.fa-file-sound-o:before,.fa-file-audio-o:before{content:"\f1c7"}.fa-file-movie-o:before,.fa-file-video-o:before{content:"\f1c8"}.fa-file-code-o:before{content:"\f1c9"}.fa-vine:before{content:"\f1ca"}.fa-codepen:before{content:"\f1cb"}.fa-jsfiddle:before{content:"\f1cc"}.fa-life-bouy:before,.fa-life-buoy:before,.fa-life-saver:before,.fa-support:before,.fa-life-ring:before{content:"\f1cd"}.fa-circle-o-notch:before{content:"\f1ce"}.fa-ra:before,.fa-rebel:before{content:"\f1d0"}.fa-ge:before,.fa-empire:before{content:"\f1d1"}.fa-git-square:before{content:"\f1d2"}.fa-git:before{content:"\f1d3"}.fa-y-combinator-square:before,.fa-yc-square:before,.fa-hacker-news:before{content:"\f1d4"}.fa-tencent-weibo:before{content:"\f1d5"}.fa-qq:before{content:"\f1d6"}.fa-wechat:before,.fa-weixin:before{content:"\f1d7"}.fa-send:before,.fa-paper-plane:before{content:"\f1d8"}.fa-send-o:before,.fa-paper-plane-o:before{content:"\f1d9"}.fa-history:before{content:"\f1da"}.fa-circle-thin:before{content:"\f1db"}.fa-header:before{content:"\f1dc"}.fa-paragraph:before{content:"\f1dd"}.fa-sliders:before{content:"\f1de"}.fa-share-alt:before{content:"\f1e0"}.fa-share-alt-square:before{content:"\f1e1"}.fa-bomb:before{content:"\f1e2"}.fa-soccer-ball-o:before,.fa-futbol-o:before{content:"\f1e3"}.fa-tty:before{content:"\f1e4"}.fa-binoculars:before{content:"\f1e5"}.fa-plug:before{content:"\f1e6"}.fa-slideshare:before{content:"\f1e7"}.fa-twitch:before{content:"\f1e8"}.fa-yelp:before{content:"\f1e9"}.fa-newspaper-o:before{content:"\f1ea"}.fa-wifi:before{content:"\f1eb"}.fa-calculator:before{content:"\f1ec"}.fa-paypal:before{content:"\f1ed"}.fa-google-wallet:before{content:"\f1ee"}.fa-cc-visa:before{content:"\f1f0"}.fa-cc-mastercard:before{content:"\f1f1"}.fa-cc-discover:before{content:"\f1f2"}.fa-cc-amex:before{content:"\f1f3"}.fa-cc-paypal:before{content:"\f1f4"}.fa-cc-stripe:before{content:"\f1f5"}.fa-bell-slash:before{content:"\f1f6"}.fa-bell-slash-o:before{content:"\f1f7"}.fa-trash:before{content:"\f1f8"}.fa-copyright:before{content:"\f1f9"}.fa-at:before{content:"\f1fa"}.fa-eyedropper:before{content:"\f1fb"}.fa-paint-brush:before{content:"\f1fc"}.fa-birthday-cake:before{content:"\f1fd"}.fa-area-chart:before{content:"\f1fe"}.fa-pie-chart:before{content:"\f200"}.fa-line-chart:before{content:"\f201"}.fa-lastfm:before{content:"\f202"}.fa-lastfm-square:before{content:"\f203"}.fa-toggle-off:before{content:"\f204"}.fa-toggle-on:before{content:"\f205"}.fa-bicycle:before{content:"\f206"}.fa-bus:before{content:"\f207"}.fa-ioxhost:before{content:"\f208"}.fa-angellist:before{content:"\f209"}.fa-cc:before{content:"\f20a"}.fa-shekel:before,.fa-sheqel:before,.fa-ils:before{content:"\f20b"}.fa-meanpath:before{content:"\f20c"}.fa-buysellads:before{content:"\f20d"}.fa-connectdevelop:before{content:"\f20e"}.fa-dashcube:before{content:"\f210"}.fa-forumbee:before{content:"\f211"}.fa-leanpub:before{content:"\f212"}.fa-sellsy:before{content:"\f213"}.fa-shirtsinbulk:before{content:"\f214"}.fa-simplybuilt:before{content:"\f215"}.fa-skyatlas:before{content:"\f216"}.fa-cart-plus:before{content:"\f217"}.fa-cart-arrow-down:before{content:"\f218"}.fa-diamond:before{content:"\f219"}.fa-ship:before{content:"\f21a"}.fa-user-secret:before{content:"\f21b"}.fa-motorcycle:before{content:"\f21c"}.fa-street-view:before{content:"\f21d"}.fa-heartbeat:before{content:"\f21e"}.fa-venus:before{content:"\f221"}.fa-mars:before{content:"\f222"}.fa-mercury:before{content:"\f223"}.fa-intersex:before,.fa-transgender:before{content:"\f224"}.fa-transgender-alt:before{content:"\f225"}.fa-venus-double:before{content:"\f226"}.fa-mars-double:before{content:"\f227"}.fa-venus-mars:before{content:"\f228"}.fa-mars-stroke:before{content:"\f229"}.fa-mars-stroke-v:before{content:"\f22a"}.fa-mars-stroke-h:before{content:"\f22b"}.fa-neuter:before{content:"\f22c"}.fa-genderless:before{content:"\f22d"}.fa-facebook-official:before{content:"\f230"}.fa-pinterest-p:before{content:"\f231"}.fa-whatsapp:before{content:"\f232"}.fa-server:before{content:"\f233"}.fa-user-plus:before{content:"\f234"}.fa-user-times:before{content:"\f235"}.fa-hotel:before,.fa-bed:before{content:"\f236"}.fa-viacoin:before{content:"\f237"}.fa-train:before{content:"\f238"}.fa-subway:before{content:"\f239"}.fa-medium:before{content:"\f23a"}.fa-yc:before,.fa-y-combinator:before{content:"\f23b"}.fa-optin-monster:before{content:"\f23c"}.fa-opencart:before{content:"\f23d"}.fa-expeditedssl:before{content:"\f23e"}.fa-battery-4:before,.fa-battery-full:before{content:"\f240"}.fa-battery-3:before,.fa-battery-three-quarters:before{content:"\f241"}.fa-battery-2:before,.fa-battery-half:before{content:"\f242"}.fa-battery-1:before,.fa-battery-quarter:before{content:"\f243"}.fa-battery-0:before,.fa-battery-empty:before{content:"\f244"}.fa-mouse-pointer:before{content:"\f245"}.fa-i-cursor:before{content:"\f246"}.fa-object-group:before{content:"\f247"}.fa-object-ungroup:before{content:"\f248"}.fa-sticky-note:before{content:"\f249"}.fa-sticky-note-o:before{content:"\f24a"}.fa-cc-jcb:before{content:"\f24b"}.fa-cc-diners-club:before{content:"\f24c"}.fa-clone:before{content:"\f24d"}.fa-balance-scale:before{content:"\f24e"}.fa-hourglass-o:before{content:"\f250"}.fa-hourglass-1:before,.fa-hourglass-start:before{content:"\f251"}.fa-hourglass-2:before,.fa-hourglass-half:before{content:"\f252"}.fa-hourglass-3:before,.fa-hourglass-end:before{content:"\f253"}.fa-hourglass:before{content:"\f254"}.fa-hand-grab-o:before,.fa-hand-rock-o:before{content:"\f255"}.fa-hand-stop-o:before,.fa-hand-paper-o:before{content:"\f256"}.fa-hand-scissors-o:before{content:"\f257"}.fa-hand-lizard-o:before{content:"\f258"}.fa-hand-spock-o:before{content:"\f259"}.fa-hand-pointer-o:before{content:"\f25a"}.fa-hand-peace-o:before{content:"\f25b"}.fa-trademark:before{content:"\f25c"}.fa-registered:before{content:"\f25d"}.fa-creative-commons:before{content:"\f25e"}.fa-gg:before{content:"\f260"}.fa-gg-circle:before{content:"\f261"}.fa-tripadvisor:before{content:"\f262"}.fa-odnoklassniki:before{content:"\f263"}.fa-odnoklassniki-square:before{content:"\f264"}.fa-get-pocket:before{content:"\f265"}.fa-wikipedia-w:before{content:"\f266"}.fa-safari:before{content:"\f267"}.fa-chrome:before{content:"\f268"}.fa-firefox:before{content:"\f269"}.fa-opera:before{content:"\f26a"}.fa-internet-explorer:before{content:"\f26b"}.fa-tv:before,.fa-television:before{content:"\f26c"}.fa-contao:before{content:"\f26d"}.fa-500px:before{content:"\f26e"}.fa-amazon:before{content:"\f270"}.fa-calendar-plus-o:before{content:"\f271"}.fa-calendar-minus-o:before{content:"\f272"}.fa-calendar-times-o:before{content:"\f273"}.fa-calendar-check-o:before{content:"\f274"}.fa-industry:before{content:"\f275"}.fa-map-pin:before{content:"\f276"}.fa-map-signs:before{content:"\f277"}.fa-map-o:before{content:"\f278"}.fa-map:before{content:"\f279"}.fa-commenting:before{content:"\f27a"}.fa-commenting-o:before{content:"\f27b"}.fa-houzz:before{content:"\f27c"}.fa-vimeo:before{content:"\f27d"}.fa-black-tie:before{content:"\f27e"}.fa-fonticons:before{content:"\f280"} diff --git a/public/ng/css/gogs.css b/public/ng/css/gogs.css deleted file mode 100644 index caecfe25..00000000 --- a/public/ng/css/gogs.css +++ /dev/null @@ -1,3015 +0,0 @@ -html, -body { - height: 100%; -} -.octicon, -.fa { - width: 16px; - text-align: center; -} -.container { - max-width: 1170px; - padding: 0 1.5em; - margin: auto; -} -img.avatar-16 { - width: 16px; - height: 16px; - vertical-align: middle; -} -img.avatar-20 { - width: 20px; - height: 20px; - vertical-align: middle; -} -img.avatar-24 { - width: 24px; - height: 24px; - vertical-align: middle; -} -img.avatar-30 { - width: 30px; - height: 30px; - vertical-align: middle; -} -img.avatar-40 { - width: 40px; - height: 40px; - vertical-align: middle; -} -img.avatar-48 { - width: 48px; - height: 48px; - vertical-align: middle; -} -img.avatar-100 { - width: 100px; - height: 100px; - vertical-align: middle; -} -.drop-down .panel-header { - font-size: 14px; -} -#wrapper { - padding: 0; - margin: 0 0 -55px 0; - min-height: 100%; -} -#footer { - background-color: white; - border-top: 1px solid #d6d6d6; - clear: both; - width: 100%; - color: #888888; -} -#footer .container { - padding: 15px; -} -#footer .official, -#footer .version { - color: #888888; -} -#footer-links > * { - border-left: 1px solid #d6d6d6; - padding-left: 8px; - margin-left: 5px; -} -#footer-links > *:first-child { - border-left: none; -} -#footer-lang { - position: relative; -} -#footer-lang .drop-down { - top: -64px; - left: -2px; - position: absolute; - height: 59px; - z-index: 100; - font-size: 12px; - width: 170%; - min-width: 140px; -} -#footer-lang .drop-down li > a { - padding: 3px 9px; -} -#header { - background-color: #428bca; - height: 45px; -} -#header > .menu-line > li > a { - display: inline-block; - color: #ffffff; -} -#header > .menu-line > li > a:hover { - background-color: transparent; - color: #fff65f; -} -#header > .menu-line > li.head { - color: #ffffff; -} -#header > .menu-line > li.hover a:after { - bottom: -9px; - color: #ffffff; -} -#header > .menu-line > li.current > a { - color: #fff65f; - font-weight: bold; -} -#header-nav-user { - height: 44px; -} -#header-nav-user img { - margin: -2px 10px 0 0; - border-radius: 3px; -} -#header-nav-sign-out > a:hover { - color: #ff908b !important; -} -#header-nav-logo { - padding: 6px 1.2em 6px 0; -} -#header-nav-explore, -#header-nav-help { - font-size: 14px; -} -#header-new-repo-menu { - width: 180px; - background-color: #FFF; - top: 44px; - border-top: none; - left: -66px; -} -#header-new-repo-menu .octicon { - margin-right: 6px; - font-size: 1.1em; -} -.switching-list { - width: 100%; - list-style: none; -} -.switching-list > li { - border-bottom: 1px solid #eaeaea; -} -.switching-list > li:last-child { - border-bottom: none; -} -.switching-list > li > a { - padding: .4em 1.2em; - display: block; - color: #444; -} -.switching-list > li > a:hover { - background-color: #428bca !important; - color: #fff !important; -} -.social-buttons .btn { - border: none; - font-size: 16px; - border-radius: 4px; - margin-right: 12px; - font-family: 'PT Sans Narrow', sans-serif; - padding: 5px 12px; - color: #FFF; -} -.social-buttons .btn .fa { - margin-right: 6px; - font-size: 16px; -} -.social-buttons .twitter { - background-color: #1c6399; -} -.social-buttons .twitter:hover { - background-color: #1c5487; -} -.social-buttons .github { - background-color: #444; -} -.social-buttons .github:hover { - background-color: #333; -} -.social-buttons .google { - background-color: #C03D20; -} -.social-buttons .google:hover { - background-color: #D56060; -} -.social-buttons .weibo { - background-color: #bf1324; -} -.social-buttons .weibo:hover { - background-color: #b94c4a; -} -.social-buttons .qq { - background-color: #03a2ef; -} -.social-buttons .qq:hover { - background-color: #3cb3ff; -} -.main-wrapper { - padding: 20px 0 40px; -} -.user-list { - width: auto; - min-width: 180px; - max-width: 300px; -} -.user-list img { - width: 28px; - height: 28px; - margin-right: 1em; - margin-top: 1px; - vertical-align: middle; -} -.user-list li { - cursor: pointer; - font-weight: bold; -} -.text-success { - color: #3c763d; -} -.text-blue { - color: #15c; -} -.text-red { - color: #DD4B39; -} -.text-grey { - color: #999999; -} -.text-black { - color: #444444; -} -.text-gold { - color: #a1882b; -} -.table { - width: 100%; - max-width: 100%; -} -.table > thead > tr > th, -.table > tbody > tr > th, -.table > tfoot > tr > th, -.table > thead > tr > td, -.table > tbody > tr > td, -.table > tfoot > tr > td { - border-top: 1px solid #e7eaec; - line-height: 1.42857; - padding: 8px; - vertical-align: top; -} -.table th { - text-align: left; -} -.table-striped > tbody > tr:nth-child(odd) > td, -.table-striped > tbody > tr:nth-child(odd) > th { - background-color: #f9f9f9; -} -.pagination { - display: inline-block; - padding-left: 0; - margin: 20px 0; - border-radius: 4px; -} -.pagination li { - display: inline; -} -.list-unstyled { - padding-left: 0; - list-style: none; -} -.emoji { - width: 1.5em; - height: 1.5em; - display: inline-block; -} -.markdown { - overflow: hidden; - font-family: "Helvetica Neue", Helvetica, "Segoe UI", Arial, freesans, sans-serif; - font-size: 16px; - line-height: 1.6; - word-wrap: break-word; - padding: 5px 2em 2em !important; -} -.markdown > *:first-child { - margin-top: 0 !important; -} -.markdown > *:last-child { - margin-bottom: 0 !important; -} -.markdown a:not([href]) { - color: inherit; - text-decoration: none; -} -.markdown .absent { - color: #c00; -} -.markdown .anchor { - position: absolute; - top: 0; - left: 0; - display: block; - padding-right: 6px; - padding-left: 30px; - margin-left: -30px; -} -.markdown .anchor:focus { - outline: none; -} -.markdown h1, -.markdown h2, -.markdown h3, -.markdown h4, -.markdown h5, -.markdown h6 { - position: relative; - margin-top: 1em; - margin-bottom: 16px; - font-weight: bold; - line-height: 1.4; -} -.markdown h1 .octicon-link, -.markdown h2 .octicon-link, -.markdown h3 .octicon-link, -.markdown h4 .octicon-link, -.markdown h5 .octicon-link, -.markdown h6 .octicon-link { - display: none; - color: #000; - vertical-align: middle; -} -.markdown h1:hover .anchor, -.markdown h2:hover .anchor, -.markdown h3:hover .anchor, -.markdown h4:hover .anchor, -.markdown h5:hover .anchor, -.markdown h6:hover .anchor { - padding-left: 8px; - margin-left: -30px; - text-decoration: none; -} -.markdown h1:hover .anchor .octicon-link, -.markdown h2:hover .anchor .octicon-link, -.markdown h3:hover .anchor .octicon-link, -.markdown h4:hover .anchor .octicon-link, -.markdown h5:hover .anchor .octicon-link, -.markdown h6:hover .anchor .octicon-link { - display: inline-block; -} -.markdown h1 tt, -.markdown h1 code, -.markdown h2 tt, -.markdown h2 code, -.markdown h3 tt, -.markdown h3 code, -.markdown h4 tt, -.markdown h4 code, -.markdown h5 tt, -.markdown h5 code, -.markdown h6 tt, -.markdown h6 code { - font-size: inherit; -} -.markdown h1 { - padding-bottom: 0.3em; - font-size: 2.25em; - line-height: 1.2; - border-bottom: 1px solid #eee; -} -.markdown h1 .anchor { - line-height: 1; -} -.markdown h2 { - padding-bottom: 0.3em; - font-size: 1.75em; - line-height: 1.225; - border-bottom: 1px solid #eee; -} -.markdown h2 .anchor { - line-height: 1; -} -.markdown h3 { - font-size: 1.5em; - line-height: 1.43; -} -.markdown h3 .anchor { - line-height: 1.2; -} -.markdown h4 { - font-size: 1.25em; -} -.markdown h4 .anchor { - line-height: 1.2; -} -.markdown h5 { - font-size: 1em; -} -.markdown h5 .anchor { - line-height: 1.1; -} -.markdown h6 { - font-size: 1em; - color: #777; -} -.markdown h6 .anchor { - line-height: 1.1; -} -.markdown p, -.markdown blockquote, -.markdown ul, -.markdown ol, -.markdown dl, -.markdown table, -.markdown pre { - margin-top: 0; - margin-bottom: 16px; -} -.markdown hr { - height: 4px; - padding: 0; - margin: 16px 0; - background-color: #e7e7e7; - border: 0 none; -} -.markdown ul, -.markdown ol { - padding-left: 2em; -} -.markdown ul.no-list, -.markdown ol.no-list { - padding: 0; - list-style-type: none; -} -.markdown ul ul, -.markdown ul ol, -.markdown ol ol, -.markdown ol ul { - margin-top: 0; - margin-bottom: 0; -} -.markdown ol ol, -.markdown ul ol { - list-style-type: lower-roman; -} -.markdown li > p { - margin-top: 16px; -} -.markdown dl { - padding: 0; -} -.markdown dl dt { - padding: 0; - margin-top: 16px; - font-size: 1em; - font-style: italic; - font-weight: bold; -} -.markdown dl dd { - padding: 0 16px; - margin-bottom: 16px; -} -.markdown blockquote { - padding: 0 15px; - color: #777; - border-left: 4px solid #ddd; -} -.markdown blockquote > :first-child { - margin-top: 0; -} -.markdown blockquote > :last-child { - margin-bottom: 0; -} -.markdown table { - display: block; - width: 100%; - overflow: auto; - word-break: normal; - word-break: keep-all; -} -.markdown table th { - font-weight: bold; -} -.markdown table th, -.markdown table td { - padding: 6px 13px !important; - border: 1px solid #ddd; -} -.markdown table tr { - background-color: #fff; - border-top: 1px solid #ccc; -} -.markdown table tr:nth-child(2n) { - background-color: #f8f8f8; -} -.markdown img { - max-width: 100%; - box-sizing: border-box; -} -.markdown .emoji { - max-width: none; -} -.markdown span.frame { - display: block; - overflow: hidden; -} -.markdown span.frame > span { - display: block; - float: left; - width: auto; - padding: 7px; - margin: 13px 0 0; - overflow: hidden; - border: 1px solid #ddd; -} -.markdown span.frame span img { - display: block; - float: left; -} -.markdown span.frame span span { - display: block; - padding: 5px 0 0; - clear: both; - color: #333; -} -.markdown span.align-center { - display: block; - overflow: hidden; - clear: both; -} -.markdown span.align-center > span { - display: block; - margin: 13px auto 0; - overflow: hidden; - text-align: center; -} -.markdown span.align-center span img { - margin: 0 auto; - text-align: center; -} -.markdown span.align-right { - display: block; - overflow: hidden; - clear: both; -} -.markdown span.align-right > span { - display: block; - margin: 13px 0 0; - overflow: hidden; - text-align: right; -} -.markdown span.align-right span img { - margin: 0; - text-align: right; -} -.markdown span.float-left { - display: block; - float: left; - margin-right: 13px; - overflow: hidden; -} -.markdown span.float-left span { - margin: 13px 0 0; -} -.markdown span.float-right { - display: block; - float: right; - margin-left: 13px; - overflow: hidden; -} -.markdown span.float-right > span { - display: block; - margin: 13px auto 0; - overflow: hidden; - text-align: right; -} -.markdown code, -.markdown tt { - padding: 0; - padding-top: 0.2em; - padding-bottom: 0.2em; - margin: 0; - font-size: 85%; - background-color: rgba(0, 0, 0, 0.04); - border-radius: 3px; -} -.markdown code:before, -.markdown code:after, -.markdown tt:before, -.markdown tt:after { - letter-spacing: -0.2em; - content: "\00a0"; -} -.markdown code br, -.markdown tt br { - display: none; -} -.markdown del code { - text-decoration: inherit; -} -.markdown pre > code { - padding: 0; - margin: 0; - font-size: 100%; - word-break: normal; - white-space: pre; - background: transparent; - border: 0; -} -.markdown .highlight { - margin-bottom: 16px; -} -.markdown .highlight pre, -.markdown pre { - padding: 16px; - overflow: auto; - font-size: 85%; - line-height: 1.45; - background-color: #f7f7f7; - border-radius: 3px; -} -.markdown .highlight pre { - margin-bottom: 0; - word-break: normal; -} -.markdown pre { - word-wrap: normal; -} -.markdown pre code, -.markdown pre tt { - display: inline; - max-width: initial; - padding: 0; - margin: 0; - overflow: initial; - line-height: inherit; - word-wrap: normal; - background-color: transparent; - border: 0; -} -.markdown pre code:before, -.markdown pre code:after, -.markdown pre tt:before, -.markdown pre tt:after { - content: normal; -} -.markdown kbd { - display: inline-block; - padding: 3px 5px; - font-size: 11px; - line-height: 10px; - color: #555; - vertical-align: middle; - background-color: #fcfcfc; - border: solid 1px #ccc; - border-bottom-color: #bbb; - border-radius: 3px; - box-shadow: inset 0 -1px 0 #bbbbbb; -} -.markdown .csv-data td, -.markdown .csv-data th { - padding: 5px; - overflow: hidden; - font-size: 12px; - line-height: 1; - text-align: left; - white-space: nowrap; -} -.markdown .csv-data .blob-num { - padding: 10px 8px 9px; - text-align: right; - background: #fff; - border: 0; -} -.markdown .csv-data tr { - border-top: 0; -} -.markdown .csv-data th { - font-weight: bold; - background: #f8f8f8; - border-top: 0; -} -/* Author: jmblog */ -/* Project: https://github.com/jmblog/color-themes-for-google-code-prettify */ -/* GitHub Theme */ -/* Pretty printing styles. Used with prettify.js. */ -/* SPAN elements with the classes below are added by prettyprint. */ -/* plain text */ -.pln { - color: #333333; -} -@media screen { - /* string content */ - .str { - color: #dd1144; - } - /* a keyword */ - .kwd { - color: #333333; - } - /* a comment */ - .com { - color: #999988; - font-style: italic; - } - /* a type name */ - .typ { - color: #445588; - } - /* a literal value */ - .lit { - color: #445588; - } - /* punctuation */ - .pun { - color: #333333; - } - /* lisp open bracket */ - .opn { - color: #333333; - } - /* lisp close bracket */ - .clo { - color: #333333; - } - /* a markup tag name */ - .tag { - color: navy; - } - /* a markup attribute name */ - .atn { - color: teal; - } - /* a markup attribute value */ - .atv { - color: #dd1144; - } - /* a declaration */ - .dec { - color: #333333; - } - /* a variable name */ - .var { - color: teal; - } - /* a function name */ - .fun { - color: #990000; - } -} -/* Use higher contrast and text-weight for printable form. */ -@media print, projection { - .str { - color: #006600; - } - .kwd { - color: #006; - font-weight: bold; - } - .com { - color: #600; - font-style: italic; - } - .typ { - color: #404; - font-weight: bold; - } - .lit { - color: #004444; - } - .pun, - .opn, - .clo { - color: #444400; - } - .tag { - color: #006; - font-weight: bold; - } - .atn { - color: #440044; - } - .atv { - color: #006600; - } -} -/* Specify class=linenums on a pre to get line numbering */ -ol.linenums { - margin-top: 0; - margin-bottom: 0; -} -#promo-wrapper { - padding-top: 50px; - background-color: #428bca; -} -#promo-logo { - margin-right: 50px; - padding-bottom: 50px; -} -#promo-logo img { - max-width: 250px; -} -#promo-content { - color: #FFF; - margin-left: 300px; -} -#promo-content h1, -#promo-content h2 { - font-family: 'PT Sans Narrow', sans-serif; - line-height: 60px; - margin-bottom: 0; - text-shadow: 0 2px 1px rgba(0, 0, 0, 0.5); -} -#promo-content h1 { - font-size: 96px; - line-height: 96px; - margin-bottom: 30px; -} -#promo-content h2 { - font-size: 52px; - line-height: 70px; - font-weight: normal; -} -#promo-form { - padding: 40px 0; -} -#promo-form .ipt-large { - border: none; - border-radius: 4px; - font-size: 18px; - margin-right: 12px; -} -#promo-form .ipt-large:focus { - box-shadow: 0 0 3px #FFF; -} -#promo-form .btn-large { - border-radius: 4px; - font-size: 18px; - margin-right: 12px; -} -#promo-social { - padding-bottom: 60px; -} -#promo-social .qq { - box-shadow: 0 0 1px #1c6399; -} -#feature-wrapper { - font-family: Lato, sans-serif; - font-size: 18px; - padding: 50px 0 100px 0; -} -#feature-wrapper .octicon { - color: #d9453d; - font-size: 60px; - height: 60px; - width: 60px; - line-height: 60px; - margin-right: 12px; - vertical-align: middle; - display: inline-block; -} -#feature-wrapper b { - color: #000; - font-size: 24px; - display: inline-block; - line-height: 60px; -} -#feature-wrapper p { - margin: 1em 0; - line-height: 40px; - padding-right: 30px; -} -#feature-wrapper a { - color: #d9453d; -} -#feature-wrapper a:hover { - color: #ff635a; -} -#feature-wrapper .grid-1-2 { - margin-bottom: 30px; -} -#install-form { - padding: 15px; -} -#install-form label { - width: 35%; -} -#install-form input { - width: 30%; -} -#install-form input[type="checkbox"], -#install-form input[type="radio"] { - width: auto; -} -/* - The dashboard page style -*/ -#dashboard-header { - border-bottom: 1px solid #d6d6d6; - height: 69px; - background-color: #FFF; -} -#dashboard-header > .menu-line > li { - padding: 12px 6px; -} -#dashboard-header > .menu-line > li.drop { - margin-left: -22px; -} -#dashboard-header > .menu-line > li.drop:hover a { - background-color: transparent; -} -#dashboard-header > .menu-line > li.right > a { - font-size: 1.2em; - color: #444444; - margin: -12px 0px; - padding: 22px 0.8em; -} -#dashboard-header > .menu-line > li.right > a:hover { - background-color: transparent; - color: #d9453d; -} -#dashboard-header > .menu-line > li.right > a .octicon { - margin-right: 6px; -} -#dashboard-header > .menu-line > li.right .current { - border-bottom: 2px solid #D26911; -} -#dashboard-selection-menu a img { - margin: -4px 10px 0 0; -} -#dashboard { - padding: 1.5em; -} -#dashboard-sidebar .panel-header h4 { - margin: 0; -} -#dashboard-sidebar > .panel { - margin-bottom: 24px; - border-bottom-left-radius: .3em; - border-bottom-right-radius: .3em; -} -#dashboard-sidebar-menu { - border-top-left-radius: .3em; - border-top-right-radius: .3em; - width: 100%; - height: 32px; -} -#dashboard-sidebar-menu > li { - border: 1px solid #d6d6d6; - float: left; - margin-right: -1px; - border-bottom: none; -} -#dashboard-sidebar-menu > li > a { - padding-top: .3em; - padding-bottom: .3em; -} -#dashboard-sidebar-menu > li.first { - border-top-left-radius: .3em; -} -#dashboard-sidebar-menu > li.first > a { - border-top-left-radius: .3em; -} -#dashboard-sidebar-menu > li.drop { - border: none; - float: right; -} -#dashboard-sidebar-menu > li.js-tab-nav-show { - background-color: #EEEEEE; -} -#dashboard-sidebar-menu > li.last { - border-top-right-radius: .3em; -} -#dashboard-sidebar-menu > li.last > a { - border-top-right-radius: .3em; -} -#dashboard-my-mirror li, -#dashboard-my-org li, -#dashboard-my-repo li { - border-bottom: 1px solid #EAEAEA; -} -#dashboard-my-mirror li.private, -#dashboard-my-org li.private, -#dashboard-my-repo li.private { - background-color: #fcf8e9; -} -#dashboard-my-mirror li:last-child, -#dashboard-my-org li:last-child, -#dashboard-my-repo li:last-child { - border-bottom: none; -} -#dashboard-my-mirror li a, -#dashboard-my-org li a, -#dashboard-my-repo li a { - padding: 6px 1.2em; - display: block; -} -#dashboard-my-mirror li a .octicon, -#dashboard-my-org li a .octicon, -#dashboard-my-repo li a .octicon { - margin-right: 6px; - color: #888; -} -#dashboard-my-mirror li a:hover .repo-name, -#dashboard-my-org li a:hover .repo-name, -#dashboard-my-repo li a:hover .repo-name { - text-decoration: underline; -} -#dashboard-my-mirror .repo-name, -#dashboard-my-org .repo-name, -#dashboard-my-repo .repo-name { - font-size: 1.1em; -} -#dashboard-my-mirror .repo-star, -#dashboard-my-org .repo-star, -#dashboard-my-repo .repo-star { - color: #888; -} -#dashboard-my-mirror .repo-contrib-header, -#dashboard-my-org .repo-contrib-header, -#dashboard-my-repo .repo-contrib-header { - border-top: 1px solid #d6d6d6; -} -#dashboard-my-mirror .panel-header, -#dashboard-my-org .panel-header, -#dashboard-my-repo .panel-header { - font-size: 14px; -} -#dashboard-my-repo .panel-header .octicon { - margin-right: 6px; - font-size: 12px; -} -#dashboard-my-repo .repo-count { - margin-left: 4px; -} -#dashboard-my-org, -#dashboard-my-mirror { - display: none; -} -#dashboard-new-repo { - width: 50px; - height: 33px; - padding-top: 6px; - margin-right: 1px; - border-top-left-radius: .3em; - border-top-right-radius: .3em; -} -#dashboard-new-repo .octicon { - font-size: 20px; -} -#dashboard-new-repo-menu { - top: 33px; - width: 180px; - background-color: #FFF; - left: -132px; -} -#dashboard-new-repo-menu .octicon { - margin-right: 6px; - font-size: 1.1em; -} -#dashboard-selection-menu { - width: auto; - max-width: 300px; -} -#dashboard-selection-menu > .drop-down { - top: 56px; - left: 22px; -} -#dashboard-selection-menu li { - white-space: nowrap; -} -#dashboard-selection-menu li.checked .octicon { - opacity: 1; -} -#dashboard-selection-menu li a { - text-overflow: ellipsis; - -o-text-overflow: ellipsis; - overflow: hidden; -} -#dashboard-switch-menu { - border-bottom-left-radius: .3em; - border-bottom-right-radius: .3em; -} -#dashboard-switch-menu > li > a img { - margin-top: 0; -} -#dashboard-switch-menu > li > a .octicon { - margin-right: 12px; -} -#dashboard-switch-menu > li:last-child > a { - border-bottom-left-radius: .3em; - border-bottom-right-radius: .3em; -} -#dashboard-switch-menu > li.org > a .octicon { - opacity: 0; -} -#dashboard-switch-menu > li.checked > a { - font-weight: bold; -} -#dashboard-switch-menu > li.checked > a .octicon { - opacity: 1; -} -#dashboard-news { - padding-bottom: 60px; -} -#dashboard-news .news { - margin-right: 2.4em; - padding-bottom: 1em; - margin-bottom: 1em; - border-bottom: 1px solid #E6E6E6; - min-height: 30px; -} -#dashboard-news .news .mega-octicon { - color: #CCC; -} -#dashboard-news .news .avatar { - margin-right: 1.2em; -} -#dashboard-news .news .news-content, -#dashboard-news .news .news-time { - color: #888; -} -#dashboard-news .push-news .news-content li { - margin-left: 1em; -} -#dashboard-news .push-news .news-content li img { - vertical-align: inherit; - margin-bottom: -2px; -} -/* -The register and sign-in page style -*/ -#sign-wrapper { - padding: 60px 0; -} -.sign-panel { - background-color: #ffffff; -} -.sign-form.form-align .field { - margin: 1.2em 0 2em 0; -} -.sign-form.form-align .ipt-large { - width: 300px; -} -.sign-form.form-align label, -.sign-form.form-align .form-label { - width: 160px; -} -.sign-form.form-align .chk-label { - width: auto; - text-align: left; - margin-left: 176px; -} -.sign-form.form-align .alert { - margin: 0 30px 24px 30px; -} -.sign-form.form-align:hover { - box-shadow: 0 0 6px #CCC; -} -.sign-form.container { - padding: 0; - width: 600px; - margin-bottom: 80px; -} -#sign-up-form .panel-content { - margin-top: 1.2em; -} -#sign-up-form h2 { - margin: .5em 1em; -} -#sign-social { - position: relative; - margin: 40px 0; -} -#sign-social .or { - position: absolute; - width: 30px; - top: -52px; - left: 50%; - background-color: #FFF; - margin-left: -15px; -} -#repo-wrapper { - padding-bottom: 100px; -} -#repo-header { - height: 69px; - border-bottom: 1px solid #d6d6d6; - background-color: #ffffff; -} -#repo-header-name { - line-height: 66px; - color: #888888; - font-size: 1.6em; - font-weight: normal; - margin-bottom: 0; -} -#repo-header-name i { - margin-right: 12px; - vertical-align: middle; -} -#repo-header-name .divider { - margin: 0 4px; -} -#repo-header-meta { - line-height: 66px; -} -#repo-header-meta li > a { - padding: 0; -} -#repo-header-meta li > a:hover { - background-color: transparent; -} -#repo-header-meta a > .btn { - line-height: 16px; - margin-left: 16px; - font-size: 13px; -} -#repo-header-meta a > .btn i { - margin-right: 6px; -} -#repo-header-meta a > .btn .num { - margin-left: 6px; -} -#repo-header-download-btn > .btn > i { - margin-right: 0 !important; -} -#repo-header-download-btn:hover:after, -#repo-header-download-btn:hover .btn { - background-color: #383838; - color: #FFF; -} -#repo-header-download-btn:after { - background-color: #444444; - padding: 9px 16px 8px 0; - margin-left: -8px !important; - color: #FFF; - border-top: 1px solid #444444; - border-bottom: 1px solid #444444; - border-top-right-radius: .25em; - border-bottom-right-radius: .25em; -} -#repo-header-download-drop { - line-height: 24px; - width: 460px; - top: 50px; - left: -390px; - padding: 20px; - box-sizing: border-box; - z-index: 1; -} -#repo-header-download-drop .btn > i { - margin-right: 6px; -} -#repo-header-download-drop button, -#repo-header-download-drop input { - font-size: 11px; -} -#repo-header-download-drop #repo-clone-copy { - width: 85px; - text-overflow: clip; -} -#repo-content { - padding-top: 18px; - padding-bottom: 18px; -} -.repo-wide-wrapper { - padding: 18px; - position: relative; -} -#repo-clone-url { - border-right: none; - width: 190px; - border-left: none; - cursor: default; -} -#repo-clone-help { - clear: both; - line-height: 48px; -} -#repo-clone-zip { - line-height: 48px; -} -#repo-clone-zip a { - cursor: pointer; - color: white; - overflow: visible; - padding: .6em 1.2em; -} -#repo-clone-zip .btn { - margin: 0 6px; -} -#repo-desc { - font-size: 1.2em; -} -#repo-desc .no-description { - color: #999; -} -#repo-sidebar-nav .label { - font-size: 12px; - line-height: 1.4em; - margin-top: 2px; -} -#repo-sidebar-nav i { - margin-right: 6px; -} -#repo-sidebar-mini { - margin-top: 6px; - width: 60px; -} -#repo-sidebar-mini li { - margin-bottom: 4px; -} -#repo-sidebar-mini li > a { - position: relative; - padding-left: 12px; - width: 24px; - text-align: center; -} -#repo-sidebar-mini li > a > i.octicon { - font-size: 21px; -} -#repo-sidebar-mini .num { - position: absolute; - font-size: 12px; - top: 0; - left: 36px; - padding: 0 2px; - min-width: 16px; - height: 16px; - text-align: center; - line-height: 16px; - border-radius: 4px; - opacity: 0.7; - -webkit-transform: scale(0.9); - font-weight: bold; -} -#repo-file-nav { - padding: .6em 0 1em 0; -} -#repo-file-nav > li > a { - padding-left: 0; -} -#repo-file-nav > li > a:hover { - background-color: transparent; -} -#repo-file-nav li.repo-jump > a { - padding-right: 0; -} -#repo-file-nav li.repo-jump > a .btn { - margin-left: -1px; -} -#repo-branch-switch > a .btn { - padding-right: 30px; -} -#repo-branch-switch > a:after { - position: absolute; - top: 12px; - right: 30px; - margin-left: 0; - color: #444444; -} -#repo-branch-switch > .drop-down { - top: 40px; - left: 0; -} -#repo-branch-filter-ipt { - width: 100%; - border-left: none; - border-right: none; - box-sizing: border-box; -} -#repo-branch-tag .tab-nav { - border-bottom: 1px solid #EAEAEA; -} -#repo-branch-tag .tab-nav a { - padding: .3em .8em; -} -#repo-branch-tag .tab-nav .js-tab-nav-show { - background-color: #EEE; - font-weight: bold; -} -#repo-branch-tag .switching-list { - max-height: 300px; - overflow-y: auto; -} -#repo-branch-list li i, -#repo-tag-list li i { - margin-right: 12px; - opacity: 0; -} -#repo-branch-list li.checked i, -#repo-tag-list li.checked i { - opacity: 1; -} -#repo-bread .bread { - padding-right: 0; - font-size: 16px; - font-weight: bold; -} -#repo-main { - padding-right: 40px; - box-sizing: border-box; -} -#repo-files-table { - margin-bottom: 20px; -} -#repo-files-table .sha .label { - font-family: Monaco, Menlo, Consolas, "Courier New", monospace; -} -#repo-files-table th, -#repo-files-table td { - text-align: left; - line-height: 32px; -} -#repo-files-table td.icon { - width: 16px; - padding-right: .1em; - padding-left: 1em; -} -#repo-files-table td.name { - max-width: 120px; -} -#repo-files-table td.name .text-truncate { - max-width: 100%; -} -#repo-files-table td.age { - max-width: 120px; - text-align: right; -} -#repo-files-table td.msg { - max-width: 440px; -} -#repo-files-table td.msg .text-truncate { - max-width: 100%; -} -#repo-files-table td.age, -#repo-files-table td.size, -#repo-files-table td.msg a { - color: #888; -} -#repo-files-table td.msg a:hover { - color: #428BCA; - text-decoration: underline; -} -#repo-files-table td.message .text-truncate { - max-width: 360px; -} -#repo-files-table tbody { - background-color: #FFF; -} -#repo-files-table tbody tr:hover { - background-color: #ffffEE; -} -#repo-files-table thead { - background-color: #F0F0F0; -} -#repo-files-table thead .author a { - margin: 0 .4em; -} -#repo-files-table thead .last-commit strong { - color: #444; -} -#repo-files-table thead .last-commit .text-truncate { - max-width: 440px; - margin-left: .4em; -} -#repo-files-table thead .last-commit .text-truncate, -#repo-files-table thead .age { - font-weight: normal; - color: #888; -} -#repo-readme, -#repo-read-file { - margin-bottom: 80px; -} -#repo-bare-start { - margin-bottom: 100px; -} -#repo-bare-start .panel-content { - background-color: #FFF; -} -#repo-bare-start pre { - margin: 0 40px; - padding: 6px 10px; - border: 1px solid #ddd; - background: #f8f8f8; -} -.repo-bare #repo-bare-start h2 { - margin-top: 30px; - margin-bottom: 24px; -} -.repo-bare #repo-header-meta { - display: none; -} -.repo-bare .btn-first { - margin-left: 200px; -} -.repo-bare #repo-clone-copy { - margin-right: 200px; -} -.repo-bare #repo-clone-help { - clear: both; - width: 100%; -} -.repo-bare #repo-clone-url { - width: 520px; -} -/* repository create */ -#team-create-form, -#repo-migrate-form, -#repo-create-form { - width: 800px; - margin: 60px auto auto auto; - background: white; -} -#team-create-form h2, -#repo-migrate-form h2, -#repo-create-form h2 { - margin: .5em 1em; -} -#team-create-form .field, -#repo-migrate-form .field, -#repo-create-form .field { - margin: 1.2em 0 2em 0; -} -#team-create-form .ipt, -#repo-migrate-form .ipt, -#repo-create-form .ipt { - width: 540px; -} -#team-create-form textarea, -#repo-migrate-form textarea, -#repo-create-form textarea { - height: 120px; -} -#team-create-form .avatar, -#repo-migrate-form .avatar, -#repo-create-form .avatar { - vertical-align: middle; - margin-right: .6em; - width: 28px; - height: 28px; -} -#team-create-form:hover, -#repo-migrate-form:hover, -#repo-create-form:hover { - box-shadow: 0px 0px 6px #CCC; -} -#repo-create-cancel { - margin-left: 4em; -} -#release-new-target-branch-list, -#repo-create-owner-list { - top: 30px; - left: 0; - width: auto; - max-width: 300px; -} -#release-new-target-branch-list .octicon, -#repo-create-owner-list .octicon { - margin-right: 12px; - opacity: 0; -} -#release-new-target-branch-list .avatar, -#repo-create-owner-list .avatar { - width: 20px; - height: 20px; -} -#release-new-target-branch-list li, -#repo-create-owner-list li { - white-space: nowrap; -} -#release-new-target-branch-list li.checked .octicon, -#repo-create-owner-list li.checked .octicon { - opacity: 1; -} -#release-new-target-branch-list li a, -#repo-create-owner-list li a { - text-overflow: ellipsis; - -o-text-overflow: ellipsis; - overflow: hidden; -} -#release-new-target-branch-list { - margin-top: -1px; - min-width: 150px; -} -#release-new-title { - margin-top: 10px; -} -#release-new-content { - width: 100%; -} -#release-preview-btn .btn { - border-left: 0; -} -#release-preview.markdown { - margin-top: 5px; - background-color: transparent; -} -.file-name { - margin-left: 1em; -} -.file-size { - font-size: 13px; - color: #888; - margin-left: 1em; -} -.code-view { - overflow: auto; - overflow-x: auto; - overflow-y: hidden; - background: white; -} -.code-view .view-raw { - min-height: 40px; - text-align: center; - padding-top: 20px; -} -.code-view .view-raw .btn { - font-size: 1.05em; - line-height: 16px; - padding: 6px 8px; -} -.code-view table { - width: 100%; -} -.code-view table td { - padding: 0; -} -.code-view .lines-num { - vertical-align: top; - text-align: right; - color: #999; - background: #f5f5f5; - width: 1%; -} -.code-view .lines-num span { - font-family: Monaco, Menlo, Consolas, "Courier New", monospace; - line-height: 20px; - padding: 0 10px; - cursor: pointer; - display: block; -} -.code-view .lines-code > pre { - border: none; - border-left: 1px solid #ddd; -} -.code-view .lines-code > pre > ol.linenums > li { - padding: 0 10px; - line-height: 20px; -} -.code-view .lines-code > pre > ol.linenums > li.active { - background: #ffffdd; -} -.repo-setting-zone { - padding: 30px; -} -#team-repositories-list, -#team-members-list, -#repo-collab-list { - list-style: none; - padding: 10px 0 5px 0; -} -#team-repositories-list li.collab, -#team-members-list li.collab, -#repo-collab-list li.collab { - clear: both; - height: 50px; - padding: 0 15px 0 15px; -} -#team-repositories-list a.member, -#team-members-list a.member, -#repo-collab-list a.member { - color: #444; - height: 50px; - line-height: 50px; -} -#team-repositories-list a.member:hover, -#team-members-list a.member:hover, -#repo-collab-list a.member:hover { - color: #4183C4; -} -#team-repositories-list .avatar, -#team-members-list .avatar, -#repo-collab-list .avatar { - margin-right: 1em; - width: 40px; -} -#team-repositories-list .remove-collab, -#team-members-list .remove-collab, -#repo-collab-list .remove-collab { - color: #DD4B39; -} -.repo-user-list-block { - position: relative; - top: 5px; -} -.setting-list { - width: 100%; - list-style: none; -} -#commits-list { - padding-top: 20px; -} -#commits-list h4 { - line-height: 30px; - margin-bottom: 0; -} -.commit-list th { - background-color: #FFF; - line-height: 28px !important; -} -.commit-list .date { - width: 120px; -} -.commit-list .author { - padding-left: 20px; - min-width: 180px; -} -.commit-list .author img { - margin-top: -4px; -} -.commit-list .sha a { - font-family: Consolas, Menlo, Monaco, "Lucida Console", monospace; - font-size: 14px; -} -.commit-list .message { - width: 60%; -} -.commit-list .message span { - max-width: 500px; -} -.commit-message { - white-space: pre-wrap; -} -.diff-head-box { - margin-top: 10px; -} -.diff-head-box .panel-body { - padding: 10px 15px 5px 10px; -} -.diff-head-box .author img { - margin-top: -7px; -} -.diff-detail-box { - margin: 15px 0; - line-height: 30px; -} -.diff-detail-box ol { - clear: both; - padding-left: 0; - margin-bottom: 28px; -} -.diff-detail-box ol li { - list-style: none; - padding-bottom: 4px; - margin-bottom: 4px; - border-bottom: 1px dashed #DDD; - padding-left: 6px; -} -.diff-detail-box span.status { - display: inline-block; - width: 12px; - height: 12px; - margin-right: 8px; - vertical-align: middle; -} -.diff-detail-box span.status.modify { - background-color: #f0db88; -} -.diff-detail-box span.status.add { - background-color: #b4e2b4; -} -.diff-detail-box span.status.del { - background-color: #e9aeae; -} -.diff-detail-box span.status.rename { - background-color: #dad8ff; -} -.diff-box .count { - margin-right: 12px; -} -.diff-box .count .bar { - background-color: #e75316; - height: 12px; - width: 40px; - display: inline-block; - margin: 2px 4px 0 4px; - vertical-align: text-top; -} -.diff-box .count .bar .add { - background-color: #77c64a; - height: 12px; -} -.diff-box .file { - color: #888; -} -.diff-box .panel-header { - font-size: 14px; -} -.diff-file-box .file-body.file-code .lines-num { - text-align: right; - color: #999; - background: #fafafa; - width: 1%; -} -.diff-file-box .file-body.file-code .lines-num-old { - border-right: 1px solid #DDD; -} -.diff-file-box .code-diff tbody tr.tag-code td, -.diff-file-box .code-diff tbody tr.tag-code pre { - background-color: #E0E0E0 !important; - border-color: #ADADAD !important; -} -.diff-file-box .code-diff tbody tr.tag-code td.selected-line, -.diff-file-box .code-diff tbody tr.tag-code td.selected-line pre { - background-color: #ffffdd !important; -} -.diff-file-box .code-diff tbody tr.same-code td.selected-line, -.diff-file-box .code-diff tbody tr.same-code td.selected-line pre { - background-color: #ffffdd !important; -} -.diff-file-box .code-diff tbody tr.del-code td, -.diff-file-box .code-diff tbody tr.del-code pre { - background-color: #ffe2dd !important; - border-color: #e9aeae !important; -} -.diff-file-box .code-diff tbody tr.del-code td.selected-line, -.diff-file-box .code-diff tbody tr.del-code td.selected-line pre { - background-color: #ffffdd !important; -} -.diff-file-box .code-diff tbody tr.add-code td, -.diff-file-box .code-diff tbody tr.add-code pre { - background-color: #d1ffd6 !important; - border-color: #b4e2b4 !important; -} -.diff-file-box .code-diff tbody tr.add-code td.selected-line, -.diff-file-box .code-diff tbody tr.add-code td.selected-line pre { - background-color: #ffffdd !important; -} -.diff-file-box .code-diff tbody tr:hover td, -.diff-file-box .code-diff tbody tr:hover pre { - background-color: #FFF8D2 !important; - border-color: #F0DB88 !important; -} -.compare-head-box { - margin-top: 10px; -} -.compare-head-box .compare { - padding: 0 15px 15px 15px; -} -.fork-flag { - display: block; - font-size: 11px; - line-height: 10px; - white-space: nowrap; - margin-left: 44px; - margin-top: -15px; -} -#release h4 { - font-size: 18px; -} -#release h4 small { - font-weight: 400; - line-height: 1; - color: #999; -} -#release #release-head { - margin-top: 0; - margin-bottom: 0; - padding-bottom: 20px; - border-bottom: 1px solid #DDD; -} -#release #release-head .btn { - margin-left: 10px; -} -#release .release-item > div { - padding-top: 20px; - padding-bottom: 20px; -} -#release .release-item .label-green:hover { - background-color: #65ad4e; -} -#release .release-item .release-meta { - position: relative; - float: left; - padding-right: 15px; -} -#release .release-item .tag, -#release .release-item .commit { - display: block; - margin-top: 12px; - line-height: 20px; -} -#release .release-item .release-detail { - margin-top: -1px; - border-left: 1px solid #DDD; - position: relative; - float: left; - padding-left: 15px; -} -#release .release-item .title { - line-height: 25px; - margin-top: 0; -} -#release .release-item p.info { - line-height: 20px; - color: #666; - margin-bottom: 15px; -} -#release .release-item p.info > * { - margin-right: 10px; -} -#release .release-item .author img { - margin-top: -3px; -} -#release .release-item div.desc { - margin-bottom: 25px; -} -#release .release-item div.desc.markdown { - background-color: transparent; -} -#release .release-item .download a { - margin-right: 10px; -} -#release .release-item .dot { - width: 9px; - height: 9px; - background-color: #ccc; - z-index: 999; - position: absolute; - display: block; - left: -6px; - top: 27px; - border-radius: 6px; - border: 1px solid #FFF; -} -#release #release-new-form { - padding-top: 15px; -} -#stars h4, -#watchers h4, -#forks h4 { - font-size: 18px; - padding-bottom: 20px; - text-transform: capitalize; - border-bottom: 1px solid #DDD; -} -#stars h3, -#watchers h3, -#forks h3 { - margin: -4px 0 0 0; - padding: 0; -} -#stars .avatar, -#watchers .avatar, -#forks .avatar { - width: 75px; - height: 75px; - float: left; - display: block; - margin-right: 10px; -} -#stars .avatar-small, -#watchers .avatar-small, -#forks .avatar-small { - width: 24px; - height: 24px; - float: left; - display: block; - margin-right: 10px; -} -#stars ol, -#watchers ol, -#forks ol { - margin-top: 10px; - list-style: none; - width: 100%; - overflow: hidden; -} -#stars li, -#watchers li, -#forks li { - width: 32.25%; - margin: 10px 10px 10px 0; - border-bottom: 1px solid #DDD; - float: left; - padding-bottom: 10px; -} -#stars .pagination, -#watchers .pagination, -#forks .pagination { - width: 100%; - text-align: center; - text-transform: capitalize; -} -#stars .pagination a, -#watchers .pagination a, -#forks .pagination a { - border-radius: 3px; - border: 1px solid #399ADE; - padding: 8px; - margin: 0; -} -#stars .pagination .active, -#watchers .pagination .active, -#forks .pagination .active { - border-radius: 3px; - border: 1px solid #399ADE; - background: #399ADE; - cursor: default; - padding: 8px; - margin: 0; - color: #FFFFFF; -} -#stars .pagination .disabled, -#watchers .pagination .disabled, -#forks .pagination .disabled { - border-radius: 3px; - border: 1px solid #DDD; - color: #D3D3D3; - cursor: default; - padding: 8px; - margin: 0; -} -#forks p { - padding: 5px 0; -} -#admin-wrapper, -#setting-wrapper { - padding-bottom: 100px; -} -#setting-menu { - box-sizing: border-box; -} -#setting-menu li > a { - border-left: 2px solid #FFF; - background-color: #FFF; -} -#setting-menu li:hover { - border-color: #EAEAEA; -} -#setting-menu li:hover a { - border-left: 2px solid #EFEFEF; - background-color: #EFEFEF !important; - color: #000 !important; -} -#setting-menu li.current a { - color: #000 !important; - font-weight: bold; - border-left: 2px solid #d26911; -} -.setting-content { - margin-left: 32px; -} -#auth-setting-form, -#org-setting-form, -#repo-setting-form, -#user-profile-form, -#add-email-form, -.repo-setting-form { - background-color: #FFF; - padding: 30px 0; -} -#auth-setting-form textarea, -#org-setting-form textarea, -#repo-setting-form textarea, -#user-profile-form textarea, -#add-email-form textarea, -.repo-setting-form textarea { - margin-left: 4px; - height: 100px; -} -#auth-setting-form label, -#org-setting-form label, -#repo-setting-form label, -#user-profile-form label, -#add-email-form label, -.repo-setting-form label, -#auth-setting-form .form-label, -#org-setting-form .form-label, -#repo-setting-form .form-label, -#user-profile-form .form-label, -#add-email-form .form-label, -.repo-setting-form .form-label { - width: 240px; -} -#auth-setting-form .ipt, -#org-setting-form .ipt, -#repo-setting-form .ipt, -#user-profile-form .ipt, -#add-email-form .ipt, -.repo-setting-form .ipt { - width: 360px; -} -#auth-setting-form .field, -#org-setting-form .field, -#repo-setting-form .field, -#user-profile-form .field, -#add-email-form .field, -.repo-setting-form .field { - margin-bottom: 24px; -} -#hook-type { - padding: 10px 0 0 0; - background-color: #fff; -} -#hook-type .field { - margin-bottom: 24px; -} -#hook-type label { - width: 240px; -} -#repo-hooks-panel, -#repo-hooks-history-panel, -#user-social-panel, -#user-applications-panel, -#user-email-panel, -#user-ssh-panel { - margin-bottom: 20px; -} -#repo-hooks-panel .setting-list, -#repo-hooks-history-panel .setting-list, -#user-social-panel .setting-list, -#user-applications-panel .setting-list, -#user-email-panel .setting-list, -#user-ssh-panel .setting-list { - background-color: #FFF; -} -#repo-hooks-panel .setting-list li, -#repo-hooks-history-panel .setting-list li, -#user-social-panel .setting-list li, -#user-applications-panel .setting-list li, -#user-email-panel .setting-list li, -#user-ssh-panel .setting-list li { - padding: 8px 20px; - border-bottom: 1px solid #eaeaea; -} -#repo-hooks-panel .setting-list li.ssh:hover, -#repo-hooks-history-panel .setting-list li.ssh:hover, -#user-social-panel .setting-list li.ssh:hover, -#user-applications-panel .setting-list li.ssh:hover, -#user-email-panel .setting-list li.ssh:hover, -#user-ssh-panel .setting-list li.ssh:hover { - background-color: #ffffEE; -} -#repo-hooks-panel .setting-list li i, -#repo-hooks-history-panel .setting-list li i, -#user-social-panel .setting-list li i, -#user-applications-panel .setting-list li i, -#user-email-panel .setting-list li i, -#user-ssh-panel .setting-list li i { - padding-right: 5px; -} -#repo-hooks-panel .active-icon, -#repo-hooks-history-panel .active-icon, -#user-social-panel .active-icon, -#user-applications-panel .active-icon, -#user-email-panel .active-icon, -#user-ssh-panel .active-icon { - width: 10px; - height: 10px; - border-radius: 6px; - padding: 0; - margin-right: 20px; - margin-top: 10px; -} -#repo-hooks-panel .ssh-content, -#repo-hooks-history-panel .ssh-content, -#user-social-panel .ssh-content, -#user-applications-panel .ssh-content, -#user-email-panel .ssh-content, -#user-ssh-panel .ssh-content { - margin-left: 24px; -} -#repo-hooks-panel .ssh-content .octicon, -#repo-hooks-history-panel .ssh-content .octicon, -#user-social-panel .ssh-content .octicon, -#user-applications-panel .ssh-content .octicon, -#user-email-panel .ssh-content .octicon, -#user-ssh-panel .ssh-content .octicon { - margin-right: 4px; -} -#repo-hooks-panel .ssh-content .print, -#repo-hooks-history-panel .ssh-content .print, -#user-social-panel .ssh-content .print, -#user-applications-panel .ssh-content .print, -#user-email-panel .ssh-content .print, -#user-ssh-panel .ssh-content .print, -#repo-hooks-panel .ssh-content .access, -#repo-hooks-history-panel .ssh-content .access, -#user-social-panel .ssh-content .access, -#user-applications-panel .ssh-content .access, -#user-email-panel .ssh-content .access, -#user-ssh-panel .ssh-content .access, -#repo-hooks-panel .ssh-content .activity, -#repo-hooks-history-panel .ssh-content .activity, -#user-social-panel .ssh-content .activity, -#user-applications-panel .ssh-content .activity, -#user-email-panel .ssh-content .activity, -#user-ssh-panel .ssh-content .activity { - color: #888; -} -#repo-hooks-panel .ssh-content .access, -#repo-hooks-history-panel .ssh-content .access, -#user-social-panel .ssh-content .access, -#user-applications-panel .ssh-content .access, -#user-email-panel .ssh-content .access, -#user-ssh-panel .ssh-content .access { - max-width: 500px; -} -#repo-hooks-panel .ssh-btn, -#repo-hooks-history-panel .ssh-btn, -#user-social-panel .ssh-btn, -#user-applications-panel .ssh-btn, -#user-email-panel .ssh-btn, -#user-ssh-panel .ssh-btn { - margin-top: 6px; -} -.form-settings-add .panel-body { - background-color: #FFF; - padding: 30px 0; -} -.form-settings-add .ipt { - width: 500px; -} -.form-settings-add textarea { - height: 120px; - margin-left: 3px; -} -.form-settings-add .field { - margin-bottom: 24px; -} -.pr-main { - margin-right: 100px; -} -.pr-sidebar { - border-left: 1px solid #DDD; - box-sizing: border-box; - position: absolute; - right: 0; - top: 12px; -} -.pr-title { - padding: 4px 0; -} -.pr-title .pr-num { - font-weight: normal; - color: #888; -} -.pr-meta { - color: #888; - padding: 4px 0 8px 0; -} -.pr-meta .pr-author { - margin: 0 8px; - color: #444; -} -.pr-meta .pr-author:hover { - text-decoration: underline; -} -.pr-meta .pr-branch { - margin: 0 4px; - font-size: 12px; - padding: 4px 6px; -} -.pr-nav { - border-bottom: 1px solid #DDD; - margin-top: 16px; - margin-bottom: 16px; -} -.pr-nav .octicon { - margin-right: 4px; -} -.pr-nav li > a { - padding: 3px 9px !important; - border: 1px solid transparent; - border-bottom: none; - border-top-left-radius: .2em; - border-top-right-radius: .2em; -} -.pr-nav li > a .label { - padding: 1px 5px; - font-size: 12px; - margin-left: 4px; -} -.pr-nav li.js-tab-nav-show > a { - background-color: #FFF; - border-color: #E6E6E6; -} -.diff-bar .diff-add { - color: #65ad4e; -} -.diff-bar .diff-delete { - color: #d9453d; -} -.diff-bar .diff-status { - width: 50px; - background-color: #d9453d; - height: 10px; - margin-top: 7px; - margin-left: 4px; - margin-right: 4px; - border-radius: .2em; -} -.diff-bar .diff-status-inner { - width: 45%; - background-color: #65ad4e; - height: 10px; - border-top-left-radius: .2em; - border-bottom-left-radius: .2em; -} -#pr-commit, -#pr-file-diff, -#issue-add-comment-preview { - display: none; -} -#pr-conversation-list { - padding-right: 30px; - box-sizing: border-box; -} -.issue-comment, -.issue-commit, -.issue-line, -.issue-merge, -.issue-add-comment { - margin-bottom: 24px; -} -.issue-comment .author-avatar img { - margin-right: 12px; -} -.issue-comment .panel { - margin-left: 60px; - margin-top: -40px; -} -.issue-comment .panel-header { - font-size: 13px; -} -.issue-comment .author-name { - font-weight: bold; -} -.issue-comment .date { - margin-left: 4px; - font-style: italic; - color: #888; -} -.issue-comment .action > * { - margin-left: 4px; - font-size: 12px; -} -.issue-comment .action i { - font-size: 13px; -} -.issue-commit { - line-height: 32px; -} -.issue-commit i, -.issue-commit .author-avatar img { - margin-right: 16px; -} -.issue-commit .sha { - margin-left: 24px; -} -.issue-commit .message { - display: block; - margin-left: 88px; - padding-top: 4px; - line-height: 24px; -} -.issue-merge .ico { - width: 40px; - height: 40px; - text-align: center; - color: #FFF; - margin-right: 12px; -} -.issue-merge .ico i { - margin-top: 8px; - font-size: 24px; -} -.issue-merge .panel { - margin-left: 60px; - margin-top: -40px; -} -.issue-merge .panel-header { - font-size: 13px; -} -.issue-merge-ok .ico { - background-color: #65AD4E; -} -.issue-merge-ok .panel, -.issue-merge-ok .panel-content, -.issue-merge-ok .panel-header { - border-color: #65AD4E; - background-color: #FFF; -} -.issue-merge-ok .panel-header { - color: #508a3e; -} -.issue-line { - height: 4px; - background-color: #E6E6E6; -} -.issue-add-comment .panel { - margin-left: 60px; - margin-top: -40px; -} -.issue-add-comment .panel-header { - font-size: 13px; - padding-bottom: 0; -} -.issue-add-comment .add-nav > li > a { - padding: 4px 12px; - color: #444; - border: 1px solid #CCC; - margin-bottom: -1px; - font-size: 14px; - border-top-left-radius: .3em; - border-top-right-radius: .3em; -} -.issue-add-comment .add-nav > li > a:hover { - background-color: #FFF; -} -.issue-add-comment .add-nav > li.js-tab-nav-show > a { - background-color: #FFF; -} -textarea#issue-add-content { - width: 100%; - box-sizing: border-box; - height: 120px; - resize: vertical; -} -#issue-list-nav { - border-bottom: 1px solid #DDD; - padding-bottom: 12px; -} -#issue-list-nav li > a { - font-size: 13px; - font-weight: bold; - padding: .2em .8em; -} -#issue-list-nav li.current > a { - background-color: #0079bc; - color: #FAFAFA; -} -#issue-list-nav li.right { - margin-left: 4px; -} -#issue-new > a, -#label-new > a, -#milestone-new > a { - padding: 0 !important; -} -#issue-new > a button, -#label-new > a button, -#milestone-new > a button { - height: 29px; -} -#issue-list-menu { - padding: 16px 0 12px 0; - border-bottom: 1px solid #BBB; - margin-bottom: 12px; -} -#issue-list-menu .mark a { - color: #AAA; -} -#issue-list-menu .mark a:hover { - color: #444; -} -#issue-list-menu .mark.hover a { - color: #222; - font-weight: bold; -} -#issue-list-menu > .left .mark { - margin-right: 12px; -} -#issue-list-menu > .right .mark { - margin-left: 12px; -} -#issue-list .item, -#pull-list .item { - position: relative; - padding-bottom: 12px; - margin-bottom: 12px; - border-bottom: 1px dashed #AAA; -} -#issue-list .item .title > .title-text, -#pull-list .item .title > .title-text { - color: #444; - font-size: 15px; - margin: 0 6px; -} -#issue-list .comment, -#pull-list .comment { - color: #666; - position: absolute; - top: 6px; - right: 0; -} -#issue-list .issue-label a, -#pull-list .issue-label a { - color: #FFF; -} -#issue-list .desc, -#pull-list .desc { - color: #999; -} -#issue-list .desc a, -#pull-list .desc a { - color: #999; -} -#issue-list .desc a:hover, -#pull-list .desc a:hover { - color: #03a2ef; -} -#issue-list-filter .drop > a { - width: 90px; - padding: 0; - margin-left: 12px; - text-align: center; -} -#issue-list-filter .drop-down { - z-index: 999; - width: 236px; - left: -158px; - top: 22px; - padding: 0 12px; -} -#issue-list-filter .drop-down h4 { - line-height: 40px; - border-bottom: 1px solid #CCC; - margin-bottom: 0; -} -#issue-list-filter .drop-down li { - line-height: 30px; - border-bottom: 1px dashed #EEE; - padding-left: 9px; -} -#issue-list-filter .drop-down li:hover { - background-color: #fcffec; -} -#issue-list-filter .drop-down > ul > li > a { - display: block; -} -#issue-list-filter .labels .color { - margin-top: 8px; - display: inline-block; - width: 12px; - height: 12px; - background-color: red; - margin-right: 9px; - margin-left: 9px; -} -#issue-list-filter .labels .name { - vertical-align: top; - display: inline-block; - color: #444; -} -#issue-list-filter .milestones a { - color: #444; - font-weight: bold; -} -#issue-list-pager { - margin: 18px 0 24px 0; - font-size: 14px; - line-height: 24px; -} -#labels-num { - margin-right: 1em; -} -#label-list a.right { - margin-left: 1em; - color: #999; - line-height: 30px; -} -#label-list a.right i { - margin-right: 3px; -} -#label-list a.right:hover { - color: #444444; -} -#label-list .num { - margin-right: 3px; -} -#label-list .issue-num { - margin-right: 4em; -} -#label-list .label:hover { - color: #FFF; -} -#label-list .label i { - margin-right: 6px; -} -#label-list .item { - height: 30px; - padding-bottom: 12px; - margin-bottom: 12px; - border-bottom: 1px dashed #AAA; -} -#label-add-form .ipt, -#label-edit-form .ipt, -#label-delete-form .ipt { - font-size: 14px; -} -#label-add-form .ipt[name=name], -#label-edit-form .ipt[name=name], -#label-delete-form .ipt[name=name] { - width: 300px; -} -#label-add-form .btn, -#label-edit-form .btn, -#label-delete-form .btn { - height: 33px; - font-size: 14px; - margin-left: 12px; -} -#label-add-form { - padding: 18px 0; - border-bottom: 1px solid #DDD; -} -#label-delete-form span { - line-height: 33px; -} -.label-color-drop .ipt { - width: 100px; -} -.label-color-drop .drop-down { - width: 128px !important; - top: 22px !important; - left: 50px !important; - padding: 12px; - line-height: 16px; -} -.label-color-drop .drop-down a.color { - width: 16px; - height: 16px; - display: inline-block; -} -.label-color-drop label { - width: 24px; - height: 24px; - display: inline-block; - margin: 0 1em; - vertical-align: middle; -} -#milestone-list { - padding-top: 6px; -} -#milestone-list .title-text { - font-size: 16px; -} -#milestone-list .desc { - color: #999; - line-height: 30px; -} -#milestone-list .content { - width: 400px; -} -#milestone-list .item { - padding-bottom: 18px; - margin-bottom: 18px; - border-bottom: 1px dashed #AAA; - position: relative; -} -#milestone-list .action { - position: absolute; - top: 0; - right: 0; -} -#milestone-list .status-bar > .bar { - margin: -2px 8px 0 8px; - width: 360px; - background-color: #DDD; - height: 14px; - vertical-align: middle; -} -#milestone-list .status-bar .opening { - background-color: #65ad4e; - width: 40%; - height: 14px; - vertical-align: top; -} -#milestone-list .action-bar { - margin-top: 8px; -} -#milestone-list .action-bar a { - margin-left: 12px; -} -.issues.list-group { - margin: 10px 0 20px 0; -} -.issues.list-group > .list-group-item { - background-color: #FFF; - border: 1px solid #e5e5e5; - display: block; - padding: 10px 15px; - margin-bottom: -1px; -} -.issues.list-group > .list-group-item:hover { - background-color: rgba(19, 95, 215, 0.03); -} -.issues.list-group > .list-group-item > .title { - margin-bottom: 16px; - font-weight: bold; - font-size: 1.2em; -} -.issues.list-group > .list-group-item > .title > a { - color: #444; -} -.issues.list-group > .list-group-item > .info span { - margin-right: 12px; - color: #888; - line-height: 20px; -} -.issues.list-group > .list-group-item > .info span > a { - color: #444; -} -.org-header-alert .alert { - margin-top: 10px; -} -.org-header { - padding: 16px 0; - background-color: #FFF; - border-bottom: 1px solid #DDD; -} -.org-header img { - padding-right: 10px; -} -#org-home-header { - min-height: 100px; -} -#org-header { - height: 48px; -} -#org-header .org-name { - padding-left: 10px; - font-size: 1.4em; - height: 50px; - line-height: 50px; - margin-bottom: 0; -} -#org-header > div > .menu-line > li.right > a { - font-size: 1.2em; - color: #444444; -} -#org-header > div > .menu-line > li.right > a:hover { - background-color: transparent; - color: #d9453d; -} -#org-header > div > .menu-line > li.right > a .octicon { - margin-right: 4px; -} -#org-header > div > .menu-line > li.right > a .label { - margin-left: 4px; -} -#org-header > div > .menu-line > li.right .current { - border-bottom: 2px solid #D26911; -} -#org-home-header-info { - padding-top: 10px; -} -#org-home-header-info h2 { - font-size: 30px; -} -#org-home-header-info ul { - list-style: none; -} -#org-home-header-info ul li { - float: left; - padding-right: 5px; -} -#org-home-repo-list { - padding: 10px 0; -} -#org-repo-list { - padding: 10px 0; -} -#org-repo-list .org-repo-item { - border-top: 1px solid #eee; - padding: 30px 20px; -} -#org-repo-list .org-repo-item .org-repo-status { - list-style: none; - color: #888; -} -#org-repo-list .org-repo-item .org-repo-status li { - float: left; - margin-right: 6px; -} -#org-repo-list .org-repo-item h2 { - margin-bottom: 5px; -} -#org-repo-list .org-repo-item .org-repo-description { - margin: 0; - font-size: 14px; - color: #666; -} -#org-repo-list .org-repo-item .org-repo-updated { - font-size: 12px; - display: block; - margin: 5px 0 0; - color: #808080; -} -.org-sidebar { - margin: -80px 0 0 20px; -} -.org-sidebar .panel-footer { - padding: .8em 1.2em; -} -.org-sidebar .member-avatar-group { - padding: 15px; -} -.org-sidebar .member-avatar-group img { - width: 59px; - height: 59px; - border-radius: 3px; -} -#org-home-team-list { - padding: 0 15px; -} -#org-home-team-list ul { - list-style: none; - padding-top: 10px; -} -#org-home-team-list ul li { - padding: 10px 0; - border-bottom: 1px solid #eee; -} -#org-home-team-list ul li:last-child { - border-bottom: 0; -} -.team-name { - display: block; - font-size: 14px; - overflow: hidden; - text-overflow: ellipsis; - white-space: nowrap; -} -.team-meta { - margin-top: 0; - margin-bottom: 0; - color: #777; -} -.org-toolbar { - padding: 10px 0; - border-bottom: 1px solid #eee; -} -#org-member-list .org-member-item { - height: 50px; - line-height: 50px; - border-bottom: 1px solid #eee; - padding: 15px 20px; -} -#org-member-list .org-member-item .member-name { - padding-left: 15px; -} -#org-member-list .org-member-item ul { - list-style: none; -} -#org-member-list .org-member-item ul li { - text-align: center; - display: inline-block; -} -.invite-box { - padding: 50px 0; - min-height: 130px; - margin: 0 auto; - width: 50%; -} -.invite-box input { - width: 300px; -} -#org-member-list-block { - padding-top: 2px; -} -.org-team-list .org-team-list-item { - float: left; - padding: 15px; - width: 555px; -} -.org-team-list .org-team-list-item .member-avatar-group { - padding: 5px 15px; -} -.org-team-list .org-team-list-item .member-avatar-group img { - width: 38px; - height: 38px; - border-radius: 3px; -} -#team-create-form .note { - margin-left: 153px; -} -#org-team-card .desc { - font-size: 14px; - padding: 10px 20px; -} -#org-team-card .team-stats { - padding: 0 20px 10px 20px; - text-transform: uppercase; - border-bottom: 1px solid #dddddd; -} -#org-team-card .panel-footer { - padding: 10px 20px; -} -#team-repositories-list .panel-body .search, -#team-members-list .panel-body .search { - padding: 4px 0 10px 10px; - border-bottom: 1px solid #dddddd; -} -#team-repositories-list li.collab, -#team-members-list li.collab { - padding-top: 10px !important; - border-bottom: 1px solid #dddddd; -} -#team-repositories-list li:last-child, -#team-members-list li:last-child { - border-bottom: 0 !important; -} -#team-repositories-list li a .octicon { - color: #888; -} -#team-repositories-list li .member { - color: #428bca; - font-size: 14px; - height: 40px; - line-height: 40px; -} -.admin-panel { - padding: 10px 20px; -} -.admin-desc { - padding: 10px 20px; -} -.admin-table { - padding: 15px 0 5px 0; -} -.dl-horizontal dt { - float: left; - width: 160px; - clear: left; - overflow: hidden; - text-overflow: ellipsis; - white-space: nowrap; -} -.admin-dl-horizontal { - padding: 20px; -} -.admin-dl-horizontal > dt { - width: 250px; -} -.admin-dl-horizontal > dd { - margin-left: 240px; -} -.profile-avatar { - width: 100%; - border-radius: 6px; -} -#profile-name { - padding: 10px 0; -} -#profile-fullname { - font-size: 1.6em; -} -#profile-username { - font-size: 1.6em; - font-weight: bold; -} -.profile-info { - font-size: 14px; -} -.profile-info ul { - padding-bottom: 10px; -} -.profile-info ul .list-group-item { - background-color: transparent; - padding-top: 5px; - color: #666; -} -.profile-info ul .profile-rel { - width: 31%; - text-align: center; - display: inline-block; -} -.profile-info ul .profile-rel strong { - display: block; - font-size: 28px; - font-weight: bold; - line-height: 1; -} -.profile-info ul .profile-rel p { - font-size: 12px; -} -#profile-header li a { - font-size: 1.2em; - color: #444444; - padding: .4em .8em; -} -#profile-header li a:hover { - background-color: transparent; - color: #d9453d; -} -#profile-header li .current { - border-bottom: 2px solid #D26911; -} -#profile-body { - margin-left: 20px; -} diff --git a/public/ng/css/magnific-popup.css b/public/ng/css/magnific-popup.css deleted file mode 100644 index 798ac9d8..00000000 --- a/public/ng/css/magnific-popup.css +++ /dev/null @@ -1,368 +0,0 @@ -/* Magnific Popup CSS */ -.mfp-bg { - top: 0; - left: 0; - width: 100%; - height: 100%; - z-index: 1042; - overflow: hidden; - position: fixed; - background: #0b0b0b; - opacity: 0.8; - filter: alpha(opacity=80); } - -.mfp-wrap { - top: 0; - left: 0; - width: 100%; - height: 100%; - z-index: 1043; - position: fixed; - outline: none !important; - -webkit-backface-visibility: hidden; } - -.mfp-container { - text-align: center; - position: absolute; - width: 100%; - height: 100%; - left: 0; - top: 0; - padding: 0 8px; - -webkit-box-sizing: border-box; - -moz-box-sizing: border-box; - box-sizing: border-box; } - -.mfp-container:before { - content: ''; - display: inline-block; - height: 100%; - vertical-align: middle; } - -.mfp-align-top .mfp-container:before { - display: none; } - -.mfp-content { - position: relative; - display: inline-block; - vertical-align: middle; - margin: 0 auto; - text-align: left; - z-index: 1045; } - -.mfp-inline-holder .mfp-content, .mfp-ajax-holder .mfp-content { - width: 100%; - cursor: auto; } - -.mfp-ajax-cur { - cursor: progress; } - -.mfp-zoom-out-cur, .mfp-zoom-out-cur .mfp-image-holder .mfp-close { - cursor: -moz-zoom-out; - cursor: -webkit-zoom-out; - cursor: zoom-out; } - -.mfp-zoom { - cursor: pointer; - cursor: -webkit-zoom-in; - cursor: -moz-zoom-in; - cursor: zoom-in; } - -.mfp-auto-cursor .mfp-content { - cursor: auto; } - -.mfp-close, .mfp-arrow, .mfp-preloader, .mfp-counter { - -webkit-user-select: none; - -moz-user-select: none; - user-select: none; } - -.mfp-loading.mfp-figure { - display: none; } - -.mfp-hide { - display: none !important; } - -.mfp-preloader { - color: #cccccc; - position: absolute; - top: 50%; - width: auto; - text-align: center; - margin-top: -0.8em; - left: 8px; - right: 8px; - z-index: 1044; } - .mfp-preloader a { - color: #cccccc; } - .mfp-preloader a:hover { - color: white; } - -.mfp-s-ready .mfp-preloader { - display: none; } - -.mfp-s-error .mfp-content { - display: none; } - -button.mfp-close, button.mfp-arrow { - overflow: visible; - cursor: pointer; - background: transparent; - border: 0; - -webkit-appearance: none; - display: block; - outline: none; - padding: 0; - z-index: 1046; - -webkit-box-shadow: none; - box-shadow: none; } -button::-moz-focus-inner { - padding: 0; - border: 0; } - -.mfp-close { - width: 44px; - height: 44px; - line-height: 44px; - position: absolute; - right: 0; - top: 0; - text-decoration: none; - text-align: center; - opacity: 0.65; - filter: alpha(opacity=65); - padding: 0 0 18px 10px; - color: white; - font-style: normal; - font-size: 28px; - font-family: Arial, Baskerville, monospace; } - .mfp-close:hover, .mfp-close:focus { - opacity: 1; - filter: alpha(opacity=100); } - .mfp-close:active { - top: 1px; } - -.mfp-close-btn-in .mfp-close { - color: #333333; } - -.mfp-image-holder .mfp-close, .mfp-iframe-holder .mfp-close { - color: white; - right: -6px; - text-align: right; - padding-right: 6px; - width: 100%; } - -.mfp-counter { - position: absolute; - top: 0; - right: 0; - color: #cccccc; - font-size: 12px; - line-height: 18px; } - -.mfp-arrow { - position: absolute; - opacity: 0.65; - filter: alpha(opacity=65); - margin: 0; - top: 50%; - margin-top: -55px; - padding: 0; - width: 90px; - height: 110px; - -webkit-tap-highlight-color: rgba(0, 0, 0, 0); } - .mfp-arrow:active { - margin-top: -54px; } - .mfp-arrow:hover, .mfp-arrow:focus { - opacity: 1; - filter: alpha(opacity=100); } - .mfp-arrow:before, .mfp-arrow:after, .mfp-arrow .mfp-b, .mfp-arrow .mfp-a { - content: ''; - display: block; - width: 0; - height: 0; - position: absolute; - left: 0; - top: 0; - margin-top: 35px; - margin-left: 35px; - border: medium inset transparent; } - .mfp-arrow:after, .mfp-arrow .mfp-a { - border-top-width: 13px; - border-bottom-width: 13px; - top: 8px; } - .mfp-arrow:before, .mfp-arrow .mfp-b { - border-top-width: 21px; - border-bottom-width: 21px; - opacity: 0.7; } - -.mfp-arrow-left { - left: 0; } - .mfp-arrow-left:after, .mfp-arrow-left .mfp-a { - border-right: 17px solid white; - margin-left: 31px; } - .mfp-arrow-left:before, .mfp-arrow-left .mfp-b { - margin-left: 25px; - border-right: 27px solid #3f3f3f; } - -.mfp-arrow-right { - right: 0; } - .mfp-arrow-right:after, .mfp-arrow-right .mfp-a { - border-left: 17px solid white; - margin-left: 39px; } - .mfp-arrow-right:before, .mfp-arrow-right .mfp-b { - border-left: 27px solid #3f3f3f; } - -.mfp-iframe-holder { - padding-top: 40px; - padding-bottom: 40px; } - .mfp-iframe-holder .mfp-content { - line-height: 0; - width: 100%; - max-width: 900px; } - .mfp-iframe-holder .mfp-close { - top: -40px; } - -.mfp-iframe-scaler { - width: 100%; - height: 0; - overflow: hidden; - padding-top: 56.25%; } - .mfp-iframe-scaler iframe { - position: absolute; - display: block; - top: 0; - left: 0; - width: 100%; - height: 100%; - box-shadow: 0 0 8px rgba(0, 0, 0, 0.6); - background: black; } - -/* Main image in popup */ -img.mfp-img { - width: auto; - max-width: 100%; - height: auto; - display: block; - line-height: 0; - -webkit-box-sizing: border-box; - -moz-box-sizing: border-box; - box-sizing: border-box; - padding: 40px 0 40px; - margin: 0 auto; } - -/* The shadow behind the image */ -.mfp-figure { - line-height: 0; } - .mfp-figure:after { - content: ''; - position: absolute; - left: 0; - top: 40px; - bottom: 40px; - display: block; - right: 0; - width: auto; - height: auto; - z-index: -1; - box-shadow: 0 0 8px rgba(0, 0, 0, 0.6); - background: #444444; } - .mfp-figure small { - color: #bdbdbd; - display: block; - font-size: 12px; - line-height: 14px; } - .mfp-figure figure { - margin: 0; } - -.mfp-bottom-bar { - margin-top: -36px; - position: absolute; - top: 100%; - left: 0; - width: 100%; - cursor: auto; } - -.mfp-title { - text-align: left; - line-height: 18px; - color: #f3f3f3; - word-wrap: break-word; - padding-right: 36px; } - -.mfp-image-holder .mfp-content { - max-width: 100%; } - -.mfp-gallery .mfp-image-holder .mfp-figure { - cursor: pointer; } - -@media screen and (max-width: 800px) and (orientation: landscape), screen and (max-height: 300px) { - /** - * Remove all paddings around the image on small screen - */ - .mfp-img-mobile .mfp-image-holder { - padding-left: 0; - padding-right: 0; } - .mfp-img-mobile img.mfp-img { - padding: 0; } - .mfp-img-mobile .mfp-figure:after { - top: 0; - bottom: 0; } - .mfp-img-mobile .mfp-figure small { - display: inline; - margin-left: 5px; } - .mfp-img-mobile .mfp-bottom-bar { - background: rgba(0, 0, 0, 0.6); - bottom: 0; - margin: 0; - top: auto; - padding: 3px 5px; - position: fixed; - -webkit-box-sizing: border-box; - -moz-box-sizing: border-box; - box-sizing: border-box; } - .mfp-img-mobile .mfp-bottom-bar:empty { - padding: 0; } - .mfp-img-mobile .mfp-counter { - right: 5px; - top: 3px; } - .mfp-img-mobile .mfp-close { - top: 0; - right: 0; - width: 35px; - height: 35px; - line-height: 35px; - background: rgba(0, 0, 0, 0.6); - position: fixed; - text-align: center; - padding: 0; } } - -@media all and (max-width: 900px) { - .mfp-arrow { - -webkit-transform: scale(0.75); - transform: scale(0.75); } - .mfp-arrow-left { - -webkit-transform-origin: 0; - transform-origin: 0; } - .mfp-arrow-right { - -webkit-transform-origin: 100%; - transform-origin: 100%; } - .mfp-container { - padding-left: 6px; - padding-right: 6px; } } - -.mfp-ie7 .mfp-img { - padding: 0; } -.mfp-ie7 .mfp-bottom-bar { - width: 600px; - left: 50%; - margin-left: -300px; - margin-top: 5px; - padding-bottom: 5px; } -.mfp-ie7 .mfp-container { - padding: 0; } -.mfp-ie7 .mfp-content { - padding-top: 44px; } -.mfp-ie7 .mfp-close { - top: 0; - right: 0; - padding-top: 0; } diff --git a/public/ng/css/tipsy.css b/public/ng/css/tipsy.css deleted file mode 100644 index f170fb71..00000000 --- a/public/ng/css/tipsy.css +++ /dev/null @@ -1,25 +0,0 @@ -.tipsy { font-size: 10px; position: absolute; padding: 5px; z-index: 100000; } - .tipsy-inner { background-color: #000; color: #FFF; max-width: 200px; padding: 5px 8px 4px 8px; text-align: center; } - - /* Rounded corners */ - .tipsy-inner { border-radius: 3px; -moz-border-radius: 3px; -webkit-border-radius: 3px; } - - /* Uncomment for shadow */ - /*.tipsy-inner { box-shadow: 0 0 5px #000000; -webkit-box-shadow: 0 0 5px #000000; -moz-box-shadow: 0 0 5px #000000; }*/ - - .tipsy-arrow { position: absolute; width: 0; height: 0; line-height: 0; border: 5px dashed #000; } - - /* Rules to colour arrows */ - .tipsy-arrow-n { border-bottom-color: #000; } - .tipsy-arrow-s { border-top-color: #000; } - .tipsy-arrow-e { border-left-color: #000; } - .tipsy-arrow-w { border-right-color: #000; } - - .tipsy-n .tipsy-arrow { top: 0px; left: 50%; margin-left: -5px; border-bottom-style: solid; border-top: none; border-left-color: transparent; border-right-color: transparent; } - .tipsy-nw .tipsy-arrow { top: 0; left: 10px; border-bottom-style: solid; border-top: none; border-left-color: transparent; border-right-color: transparent;} - .tipsy-ne .tipsy-arrow { top: 0; right: 10px; border-bottom-style: solid; border-top: none; border-left-color: transparent; border-right-color: transparent;} - .tipsy-s .tipsy-arrow { bottom: 0; left: 50%; margin-left: -5px; border-top-style: solid; border-bottom: none; border-left-color: transparent; border-right-color: transparent; } - .tipsy-sw .tipsy-arrow { bottom: 0; left: 10px; border-top-style: solid; border-bottom: none; border-left-color: transparent; border-right-color: transparent; } - .tipsy-se .tipsy-arrow { bottom: 0; right: 10px; border-top-style: solid; border-bottom: none; border-left-color: transparent; border-right-color: transparent; } - .tipsy-e .tipsy-arrow { right: 0; top: 50%; margin-top: -5px; border-left-style: solid; border-right: none; border-top-color: transparent; border-bottom-color: transparent; } - .tipsy-w .tipsy-arrow { left: 0; top: 50%; margin-top: -5px; border-right-style: solid; border-left: none; border-top-color: transparent; border-bottom-color: transparent; } diff --git a/public/ng/css/ui.css b/public/ng/css/ui.css deleted file mode 100644 index fc128ff7..00000000 --- a/public/ng/css/ui.css +++ /dev/null @@ -1,945 +0,0 @@ -* { - padding: 0; - margin: 0; -} -html { - font-size: 13px; - font-family: Helvetica, "Microsoft Yahei", Arial, sans-serif; - -ms-text-size-adjust: 100%; - -webkit-text-size-adjust: 100%; - line-height: 24px; - color: #444444; - background-color: #fafafa; -} -input, -textarea, -select, -option, -button { - font-family: Helvetica, "Microsoft Yahei", Arial, sans-serif; -} -article, -aside, -details, -figcaption, -figure, -footer, -header, -main, -nav, -section, -summary, -.block { - display: block; -} -.inline { - display: inline; -} -.inline-block { - display: inline-block; -} -.dis-table { - display: table; -} -.dis-table-cell { - display: table-cell; -} -.dis-flex { - display: flex; -} -audio, -canvas, -progress, -video { - display: inline-block; - vertical-align: baseline; -} -audio:not([controls]) { - display: none; - height: 0; -} -[hidden], -template, -.hidden { - display: none; -} -.opacity { - opacity: 0; -} -.opacity-half { - opacity: .5; -} -a, -.text-link { - color: #428bca; - text-decoration: none; - cursor: pointer; -} -a:hover, -.text-link:hover { - color: #399ade; - text-decoration: none; -} -a:focus, -.text-link:focus { - outline: none; -} -b, -strong, -.text-bold { - font-weight: bold; -} -dfn, -.text-italic { - font-style: italic; -} -h1, -.text-h1 { - font-size: 2em; - margin-bottom: 0.67em; -} -h2, -.text-h2 { - font-size: 1.6em; - margin-bottom: 0.625em; -} -h3, -.text-h3 { - font: 1.2em; - margin-bottom: 0.5em; -} -h4, -h5, -h6, -.text-h4, -.text-h5, -.text-h6 { - font-size: 1em; - margin-bottom: .3em; -} -small, -.text-small { - font-size: .8em; -} -sub, -sup, -.text-sup, -.text-sub { - font-size: .7em; - line-height: 0; - position: relative; - vertical-align: baseline; -} -sup, -.text-sup { - top: -0.5em; -} -sub, -.text-sub { - bottom: -0.25em; -} -.figure, -.blockquote { - margin: 1em 1.5em; -} -pre { - overflow: auto; - margin: 0; - padding: .4em 1em; -} -code, -kbd, -pre, -samp { - font-family: monospace; - font-size: 1em; -} -.text-left { - text-align: left; -} -.text-right { - text-align: right; -} -.text-center { - text-align: center; -} -.list-no-style { - list-style: none; -} -img { - border: none; -} -svg:not(:root) { - overflow: hidden; -} -label { - font-weight: bold; -} -textarea, -input, -.ipt { - padding: .6em; - line-height: normal; - border: 1px solid #bbbbbb; -} -textarea:focus, -input:focus, -.ipt:focus { - background-color: #f2fffc; - outline: none; -} -button, -.btn { - overflow: visible; - padding: .6em 1.2em; -} -button, -select { - text-transform: none; -} -button:focus, -select:focus { - outline: none; -} -button, -input[type="button"], -input[type="reset"], -input[type="submit"] { - -webkit-appearance: button; - -moz-appearance: button; - cursor: pointer; - background-color: #888888; - color: #fafafa; - border: none; -} -button:hover, -input[type="button"]:hover, -input[type="reset"]:hover, -input[type="submit"]:hover { - background-color: #444444; - color: #ffffff; -} -button[disabled], -html input[disabled] { - cursor: default; -} -button::-moz-focus-inner, -input::-moz-focus-inner { - border: 0; - padding: 0; -} -input[type="checkbox"], -input[type="radio"] { - box-sizing: border-box; - padding: 0; -} -input[type="search"] { - -webkit-appearance: textfield; - -moz-appearance: textfield; - -moz-box-sizing: content-box; - -webkit-box-sizing: content-box; - box-sizing: content-box; -} -fieldset { - border: 1px solid #bbbbbb; - margin: 0 2px; - padding: 0.4em 0.8em 0.8em; -} -legend { - border: 0; - padding: 0; -} -textarea { - overflow: auto; - border: 1px solid #bbbbbb; - padding: .6em; -} -textarea:focus { - background-color: #f2fffc; - outline: none; -} -optgroup { - font-weight: bold; -} -table { - background-color: transparent; - border-collapse: collapse; - border-spacing: 0; -} -td, -th { - padding: 0; -} -hr { - -moz-box-sizing: content-box; - box-sizing: content-box; - height: 0; - border: none; - border-bottom: 1px solid #dddddd; - margin-bottom: .75em; -} -.radius { - border-radius: .25em; -} -.text-truncate { - overflow: hidden; - text-overflow: ellipsis; - white-space: nowrap; - display: inline-block; - vertical-align: top; -} -pre { - line-height: 1.6; - overflow: auto; - padding: 0; -} -dt { - font-weight: bold; -} -.left { - float: left; -} -.right { - float: right; -} -.clear::after { - clear: both; - content: " "; - width: 0; - height: 0; - display: block; -} -.hide { - display: none; -} -.grid-1-12 { - width: 8.33%; -} -.grid-2-12, -.grid-1-6 { - width: 16.67%; -} -.grid-3-12, -.grid-1-4 { - width: 25%; -} -.grid-4-12, -.grid-1-3 { - width: 33%; -} -.grid-5-12 { - width: 41.67%; -} -.grid-6-12, -.grid-1-2 { - width: 50%; -} -.grid-7-12 { - width: 58.33%; -} -.grid-8-12, -.grid-2-3 { - width: 66.67%; -} -.grid-9-12, -.grid-3-4 { - width: 75%; -} -.grid-10-12, -.grid-5-6 { - width: 83.33%; -} -.grid-11-12 { - width: 91.67%; -} -*[class*="grid-"] { - box-sizing: content-box; -} -.grid-1-5 { - width: 20%; -} -.grid-2-5 { - width: 40%; -} -.grid-3-5 { - width: 60%; -} -.grid-4-5 { - width: 80%; -} -.btn { - white-space: nowrap; -} -.btn-small { - font-size: 10.8px; - padding: .4em .9em; -} -.btn-medium { - font-size: 12px; - padding: .4em .9em; -} -.btn-large { - font-size: 14.4px; - padding: .4em .9em; -} -.btn-green { - background-color: #65ad4e; - border: 1px solid #65ad4e; -} -.btn-green:hover { - background-color: #71bf57; - color: #FFF; -} -.btn-blue { - background-color: #428bca; - border: 1px solid #428bca; -} -.btn-blue:hover { - background-color: #539cdb; - color: #FFF; -} -.btn-red { - color: #FFF; - background-color: #d9453d; - border: 1px solid #d9453d; -} -.btn-red:hover { - background-color: #ff635a; - color: #FFF; -} -.btn-orange { - background-color: #df7514; - border: 1px solid #df7514; -} -.btn-orange:hover { - background-color: #df8229; - color: #FFF; -} -.btn-black { - background-color: #444444; - border: 1px solid #444444; -} -.btn-black:hover { - background-color: #383838; - color: #FFF; -} -.btn-gray { - background-color: #f0f0f0; - color: #444444; - border: 1px solid #d0d0d0; -} -.btn-gray:hover { - background-color: #fafafa; - color: #444444; -} -.btn-white { - background-color: #ffffff; - color: #444444; - border: 1px solid #c6c6c6; -} -.btn-white:hover { - background-color: #e8e8e8; - color: #444444; -} -.btn-white.active { - background-color: #e8e8e8; - color: #444444; -} -.btn-active { - box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.1) inset, 0 0 4px rgba(0, 0, 0, 0.15) inset; -} -.btn-header { - margin-top: -1px; - color: white; - padding: 0 10px; -} -.btn-link { - overflow: visible; - color: white; - padding: .6em 1.2em; -} -.btn-radius { - border-radius: .25em; -} -.btn-left-radius { - border-top-left-radius: .25em; - border-bottom-left-radius: .25em; -} -.btn-right-radius { - border-top-right-radius: .25em; - border-bottom-right-radius: .25em; -} -.btn-block { - display: block; - width: 100%; - box-sizing: content-box; - text-align: center; -} -.btn-comb { - margin-left: -1px; -} -.btn-disabled { - opacity: .6; - cursor: not-allowed; - box-shadow: none; - background-image: none !important; - border: none; -} -.btn-disabled:hover { - background-image: none !important; - color: #ffffff; -} -.btn-group { - display: inline-block; -} -.btn-group > .btn { - position: relative; - float: left; - margin-right: -1px; -} -.btn-group > .btn:first-child { - border-bottom-left-radius: .25em; - border-top-left-radius: .25em; -} -.btn-group > .btn:last-child { - border-bottom-right-radius: .25em; - border-top-right-radius: .25em; -} -.ipt:focus { - border-color: #428bca; -} -.ipt-radius { - border-radius: .25em; -} -.ipt-small { - font-size: 9.6px; -} -.ipt-large { - font-size: 14.4px; -} -.ipt-textarea { - height: auto !important; - width: auto; -} -.ipt-disabled, -input[disabled] { - background-color: #f2f2f2 !important; - color: #888; - cursor: not-allowed; -} -.ipt-disabled:focus, -input[disabled]:focus { - background-color: #f2f2f2 !important; -} -.ipt-readonly:focus, -input[readonly]:focus { - background-color: #f2f2f2 !important; -} -.ipt-error { - border-color: #b63b2c !important; - background-color: #fff0f0 !important; -} -.form label { - margin-right: 1em; -} -.form .help { - color: #999999; - padding-top: .6em; - display: inline-block; -} -.form-stack label { - display: block; -} -.form-stack .field { - margin-bottom: 1em; -} -.form-align label, -.form-align .form-label { - display: inline-block; - width: 120px; - text-align: right; - margin-right: 1em; -} -.form-align .field { - margin-bottom: 1em; -} -label.text-left { - text-align: left; -} -label.req:after { - content: "*"; - color: #d9453d; -} -ul.menu > li { - list-style: none; -} -ul.menu > li > a { - padding: .8em 1.2em; -} -ul.menu > li > a:hover { - background-color: #eaeaea; - color: #444444; -} -ul.menu > li > a.active { - background-color: #4183c4; - color: #FFF; -} -ul.menu > li.current > a, -ul.menu > li.hover > a { - color: #444444; -} -ul.menu > li.head { - font-weight: bold; - padding: .8em 1.2em; -} -ul.menu > li.down:hover > ul.menu-down { - display: block; -} -ul.menu > li.border-bottom { - border-bottom: 1px solid #bbbbbb; - height: 0; - margin: .5em 0; -} -ul.menu-line > li, -ul.menu-line > li > a { - display: inline-block; -} -ul.menu-line > li.down { - position: relative; -} -ul.menu-line > li.down > a:after { - content: "\25BE"; - margin-left: .4em; -} -ul.menu-line > li.down > ul.menu-down { - top: 2.1em; - width: 150%; -} -ul.menu-line > li.hover { - position: relative; -} -ul.menu-line > li.hover > a:after { - position: absolute; - content: "\25B4"; - left: 50%; - bottom: -1.1em; - margin-left: -4px; -} -ul.menu-vertical > li > a, -ul.menu-down > li > a, -ul.menu-vertical > li.head, -ul.menu-down > li.head { - display: block; - padding: .4em 1.2em; -} -ul.menu-vertical > li.down, -ul.menu-down > li.down { - position: relative; -} -ul.menu-vertical > li.down > a:after, -ul.menu-down > li.down > a:after { - content: "\25B8"; - position: absolute; - right: .6em; -} -ul.menu-vertical > li.hover, -ul.menu-down > li.hover { - position: relative; -} -ul.menu-vertical > li.hover > a:after, -ul.menu-down > li.hover > a:after { - content: "\25B8"; - position: absolute; - left: .5em; -} -ul.menu-border, -ul.menu-down { - border: 1px solid #bbbbbb; -} -ul.menu-border > li.head, -ul.menu-down > li.head { - border-bottom: 1px solid #bbbbbb; -} -ul.menu-down { - position: absolute; - display: none; - z-index: 99; - box-shadow: 0 0 2px #666666; - background-color: #ffffff; -} -ul.menu-down-show { - position: absolute; - z-index: 99; - box-shadow: 0 0 2px #666666; - background-color: #ffffff; -} -ul.menu-radius { - border-radius: .3em; -} -ul.menu-radius > li:first-child { - border-top-left-radius: .3em; - border-top-right-radius: .3em; -} -ul.menu-radius > li:first-child > a { - border-top-left-radius: .2em; - border-top-right-radius: .2em; -} -ul.menu-radius > li:last-child { - border-bottom-left-radius: .3em; - border-bottom-right-radius: .3em; -} -ul.menu-radius > li:last-child > a { - border-bottom-left-radius: .2em; - border-bottom-right-radius: .2em; -} -.drop { - position: relative; -} -.drop:hover > .drop-down { - position: absolute; - top: 0; - left: 0; - width: 200%; - display: block; -} -.drop > .drop-down { - display: none; - border: 1px solid #bbbbbb; - box-shadow: 0 0 3px #666666; - background-color: #ffffff; -} -.drop-bottom:after { - content: "\25BE"; - margin-left: .4em; -} -.drop-top:after { - content: "\25B4"; - margin-left: .4em; -} -.panel { - border: 1px solid #cccccc; -} -.panel .panel-header { - font-size: 16px; - padding: .6em 1.2em; - background-color: #eeeeee; - border-bottom: 1px solid #cccccc; -} -.panel .panel-body { - background-color: white; -} -.panel .panel-body .panel-desc { - padding: 0 40px 20px 40px; -} -.panel .panel-content { - padding: 1em 1.2em; -} -.panel .panel-footer { - padding: .6em 1.2em; - background-color: #eeeeee; - border-top: 1px solid #cccccc; -} -.panel.panel-radius { - border-radius: .3em; -} -.panel.panel-radius .panel-header { - border-top-left-radius: .3em; - border-top-right-radius: .3em; -} -.panel.panel-radius .panel-footer { - border-bottom-left-radius: .3em; - border-bottom-right-radius: .3em; -} -.panel.panel-radius .panel-content { - border-bottom-left-radius: .3em; - border-bottom-right-radius: .3em; -} -.panel.panel-info { - border-color: #85c5e5; -} -.panel.panel-info > .panel-header { - color: #31708f; - background-color: #d9edf7; - border-color: #85c5e5; -} -.panel.panel-warning { - border-color: #F0C36D; -} -.panel.panel-warning > .panel-header { - background-color: #F9EDBE; - border-color: #F0C36D; -} -.label { - padding: .3em .6em .2em .6em; - color: #ffffff; -} -.label-red { - background-color: #d9453d; -} -.label-blue { - background-color: #428bca; -} -.label-gray { - background-color: #999999; -} -.label-green { - background-color: #65ad4e; -} -.label-green:hover { - background-color: #71bf57; - color: #FFF; -} -.label-orange { - background-color: #df7514; -} -.label-black { - background-color: #444444; -} -.label-radius { - border-radius: .2em; -} -.label-link { - color: #ffffff; -} -.label-link:hover { - color: #ffffff; -} -.breads .bread:after { - content: "/"; - font-weight: bold; - margin: 0 4px 0 7px; - color: #444444; -} -.breads .bread:last-child:after { - content: ""; - margin: 0; -} -.alert { - padding: .6em 1.5em; - margin-bottom: 10px; -} -.alert i { - margin-right: 8px; -} -.alert-radius { - border-radius: .25em; -} -.alert-red { - color: #d9453d; - border: 1px solid #be2d25; - background-color: #fae9e8; -} -.alert-blue { - color: #428bca; - border: 1px solid #3071a9; - background-color: #f5f9fc; -} -.alert-green { - color: #65ad4e; - border: 1px solid #508a3e; - background-color: #edf6eb; -} -.alert-gray { - color: #999999; - border: 1px solid #808080; - background-color: #f2f2f2; -} -.alert-orange { - color: #df7514; - border: 1px solid #b05c10; - background-color: #fcecdd; -} -.white-popup-block { - background: #FFF; - padding: 20px 30px; - text-align: left; - max-width: 650px; - margin: 40px auto; - position: relative; -} -.white-popup-block p { - font-size: 14px; -} -table th, -table td { - padding: .3em .6em; - line-height: 30px; -} -.table-border { - border: 1px solid #d6d6d6; -} -.table-border tr { - border-top: 1px solid #eaeaea; -} -.table-border tr th, -.table-border tr td { - border-top: 1px solid #eaeaea; -} -.table-border tr:first-child { - border-top: none; -} -.table-border thead { - border-bottom: 1px solid #d6d6d6; -} -.table-block { - width: 100%; - box-sizing: border-box; -} -.table-radius { - border-collapse: separate !important; - border-radius: .3em; -} -.table-radius thead:first-child { - border-top-left-radius: .3em; - border-top-right-radius: .3em; -} -.table-radius thead:first-child tr:first-child { - border-top-left-radius: .3em; -} -.table-radius thead:first-child tr:first-child > th:first-child { - border-top-left-radius: .3em; -} -.table-radius thead:first-child tr:first-child > th:last-child { - border-top-right-radius: .3em; -} -.table-radius tbody { - border-bottom-left-radius: .3em; - border-bottom-right-radius: .3em; -} -.table-radius tbody tr:last-child { - border-bottom-left-radius: .3em; - border-bottom-right-radius: .3em; -} -.table-radius tbody tr:last-child > td:first-child { - border-bottom-left-radius: .3em; -} -.table-radius tbody tr:last-child > td:last-child { - border-bottom-right-radius: .3em; -} -.pager .page { - padding: .3em .5em .2em .5em; - margin: 0 .3em; - background-color: #cccccc; - color: #444444; -} -.pager .page:hover, -.pager .page.hover { - background-color: #428bca; - color: #ffffff; -} -.pager .prev, -.pager .next { - padding: .4em .6em; - margin: 0 .3em; - background-color: #505050; - color: #fafafa; -} -.pager .prev.invalid, -.pager .next.invalid { - background-color: #eeeeee; - color: #aaaaaa; - cursor: not-allowed; -} -.pager .page-radius { - border-radius: .2em; -} diff --git a/public/ng/fonts/FontAwesome.otf b/public/ng/fonts/FontAwesome.otf deleted file mode 100644 index 681bdd4d..00000000 Binary files a/public/ng/fonts/FontAwesome.otf and /dev/null differ diff --git a/public/ng/fonts/fontawesome-webfont.eot b/public/ng/fonts/fontawesome-webfont.eot deleted file mode 100644 index a30335d7..00000000 Binary files a/public/ng/fonts/fontawesome-webfont.eot and /dev/null differ diff --git a/public/ng/fonts/fontawesome-webfont.svg b/public/ng/fonts/fontawesome-webfont.svg deleted file mode 100644 index 6fd19abc..00000000 --- a/public/ng/fonts/fontawesome-webfont.svg +++ /dev/null @@ -1,640 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/public/ng/fonts/fontawesome-webfont.ttf b/public/ng/fonts/fontawesome-webfont.ttf deleted file mode 100644 index d7994e13..00000000 Binary files a/public/ng/fonts/fontawesome-webfont.ttf and /dev/null differ diff --git a/public/ng/fonts/fontawesome-webfont.woff b/public/ng/fonts/fontawesome-webfont.woff deleted file mode 100644 index 6fd4ede0..00000000 Binary files a/public/ng/fonts/fontawesome-webfont.woff and /dev/null differ diff --git a/public/ng/fonts/fontawesome-webfont.woff2 b/public/ng/fonts/fontawesome-webfont.woff2 deleted file mode 100644 index 5560193c..00000000 Binary files a/public/ng/fonts/fontawesome-webfont.woff2 and /dev/null differ diff --git a/public/ng/fonts/octicons.css b/public/ng/fonts/octicons.css deleted file mode 100755 index a5dcd153..00000000 --- a/public/ng/fonts/octicons.css +++ /dev/null @@ -1,235 +0,0 @@ -@font-face { - font-family: 'octicons'; - src: url('octicons.eot?#iefix') format('embedded-opentype'), - url('octicons.woff') format('woff'), - url('octicons.ttf') format('truetype'), - url('octicons.svg#octicons') format('svg'); - font-weight: normal; - font-style: normal; -} - -/* - -.octicon is optimized for 16px. -.mega-octicon is optimized for 32px but can be used larger. - -*/ -.octicon, .mega-octicon { - font: normal normal normal 16px/1 octicons; - display: inline-block; - text-decoration: none; - text-rendering: auto; - -webkit-font-smoothing: antialiased; - -moz-osx-font-smoothing: grayscale; - -webkit-user-select: none; - -moz-user-select: none; - -ms-user-select: none; - user-select: none; -} -.mega-octicon { font-size: 32px; } - - -.octicon-alert:before { content: '\f02d'} /*  */ -.octicon-alignment-align:before { content: '\f08a'} /*  */ -.octicon-alignment-aligned-to:before { content: '\f08e'} /*  */ -.octicon-alignment-unalign:before { content: '\f08b'} /*  */ -.octicon-arrow-down:before { content: '\f03f'} /*  */ -.octicon-arrow-left:before { content: '\f040'} /*  */ -.octicon-arrow-right:before { content: '\f03e'} /*  */ -.octicon-arrow-small-down:before { content: '\f0a0'} /*  */ -.octicon-arrow-small-left:before { content: '\f0a1'} /*  */ -.octicon-arrow-small-right:before { content: '\f071'} /*  */ -.octicon-arrow-small-up:before { content: '\f09f'} /*  */ -.octicon-arrow-up:before { content: '\f03d'} /*  */ -.octicon-beer:before { content: '\f069'} /*  */ -.octicon-book:before { content: '\f007'} /*  */ -.octicon-bookmark:before { content: '\f07b'} /*  */ -.octicon-briefcase:before { content: '\f0d3'} /*  */ -.octicon-broadcast:before { content: '\f048'} /*  */ -.octicon-browser:before { content: '\f0c5'} /*  */ -.octicon-bug:before { content: '\f091'} /*  */ -.octicon-calendar:before { content: '\f068'} /*  */ -.octicon-check:before { content: '\f03a'} /*  */ -.octicon-checklist:before { content: '\f076'} /*  */ -.octicon-chevron-down:before { content: '\f0a3'} /*  */ -.octicon-chevron-left:before { content: '\f0a4'} /*  */ -.octicon-chevron-right:before { content: '\f078'} /*  */ -.octicon-chevron-up:before { content: '\f0a2'} /*  */ -.octicon-circle-slash:before { content: '\f084'} /*  */ -.octicon-circuit-board:before { content: '\f0d6'} /*  */ -.octicon-clippy:before { content: '\f035'} /*  */ -.octicon-clock:before { content: '\f046'} /*  */ -.octicon-cloud-download:before { content: '\f00b'} /*  */ -.octicon-cloud-upload:before { content: '\f00c'} /*  */ -.octicon-code:before { content: '\f05f'} /*  */ -.octicon-color-mode:before { content: '\f065'} /*  */ -.octicon-comment-add:before, -.octicon-comment:before { content: '\f02b'} /*  */ -.octicon-comment-discussion:before { content: '\f04f'} /*  */ -.octicon-credit-card:before { content: '\f045'} /*  */ -.octicon-dash:before { content: '\f0ca'} /*  */ -.octicon-dashboard:before { content: '\f07d'} /*  */ -.octicon-database:before { content: '\f096'} /*  */ -.octicon-device-camera:before { content: '\f056'} /*  */ -.octicon-device-camera-video:before { content: '\f057'} /*  */ -.octicon-device-desktop:before { content: '\f27c'} /*  */ -.octicon-device-mobile:before { content: '\f038'} /*  */ -.octicon-diff:before { content: '\f04d'} /*  */ -.octicon-diff-added:before { content: '\f06b'} /*  */ -.octicon-diff-ignored:before { content: '\f099'} /*  */ -.octicon-diff-modified:before { content: '\f06d'} /*  */ -.octicon-diff-removed:before { content: '\f06c'} /*  */ -.octicon-diff-renamed:before { content: '\f06e'} /*  */ -.octicon-ellipsis:before { content: '\f09a'} /*  */ -.octicon-eye-unwatch:before, -.octicon-eye-watch:before, -.octicon-eye:before { content: '\f04e'} /*  */ -.octicon-file-binary:before { content: '\f094'} /*  */ -.octicon-file-code:before { content: '\f010'} /*  */ -.octicon-file-directory:before { content: '\f016'} /*  */ -.octicon-file-media:before { content: '\f012'} /*  */ -.octicon-file-pdf:before { content: '\f014'} /*  */ -.octicon-file-submodule:before { content: '\f017'} /*  */ -.octicon-file-symlink-directory:before { content: '\f0b1'} /*  */ -.octicon-file-symlink-file:before { content: '\f0b0'} /*  */ -.octicon-file-text:before { content: '\f011'} /*  */ -.octicon-file-zip:before { content: '\f013'} /*  */ -.octicon-flame:before { content: '\f0d2'} /*  */ -.octicon-fold:before { content: '\f0cc'} /*  */ -.octicon-gear:before { content: '\f02f'} /*  */ -.octicon-gift:before { content: '\f042'} /*  */ -.octicon-gist:before { content: '\f00e'} /*  */ -.octicon-gist-secret:before { content: '\f08c'} /*  */ -.octicon-git-branch-create:before, -.octicon-git-branch-delete:before, -.octicon-git-branch:before { content: '\f020'} /*  */ -.octicon-git-commit:before { content: '\f01f'} /*  */ -.octicon-git-compare:before { content: '\f0ac'} /*  */ -.octicon-git-merge:before { content: '\f023'} /*  */ -.octicon-git-pull-request-abandoned:before, -.octicon-git-pull-request:before { content: '\f009'} /*  */ -.octicon-globe:before { content: '\f0b6'} /*  */ -.octicon-graph:before { content: '\f043'} /*  */ -.octicon-heart:before { content: '\2665'} /* ♥ */ -.octicon-history:before { content: '\f07e'} /*  */ -.octicon-home:before { content: '\f08d'} /*  */ -.octicon-horizontal-rule:before { content: '\f070'} /*  */ -.octicon-hourglass:before { content: '\f09e'} /*  */ -.octicon-hubot:before { content: '\f09d'} /*  */ -.octicon-inbox:before { content: '\f0cf'} /*  */ -.octicon-info:before { content: '\f059'} /*  */ -.octicon-issue-closed:before { content: '\f028'} /*  */ -.octicon-issue-opened:before { content: '\f026'} /*  */ -.octicon-issue-reopened:before { content: '\f027'} /*  */ -.octicon-jersey:before { content: '\f019'} /*  */ -.octicon-jump-down:before { content: '\f072'} /*  */ -.octicon-jump-left:before { content: '\f0a5'} /*  */ -.octicon-jump-right:before { content: '\f0a6'} /*  */ -.octicon-jump-up:before { content: '\f073'} /*  */ -.octicon-key:before { content: '\f049'} /*  */ -.octicon-keyboard:before { content: '\f00d'} /*  */ -.octicon-law:before { content: '\f0d8'} /* */ -.octicon-light-bulb:before { content: '\f000'} /*  */ -.octicon-link:before { content: '\f05c'} /*  */ -.octicon-link-external:before { content: '\f07f'} /*  */ -.octicon-list-ordered:before { content: '\f062'} /*  */ -.octicon-list-unordered:before { content: '\f061'} /*  */ -.octicon-location:before { content: '\f060'} /*  */ -.octicon-gist-private:before, -.octicon-mirror-private:before, -.octicon-git-fork-private:before, -.octicon-lock:before { content: '\f06a'} /*  */ -.octicon-logo-github:before { content: '\f092'} /*  */ -.octicon-mail:before { content: '\f03b'} /*  */ -.octicon-mail-read:before { content: '\f03c'} /*  */ -.octicon-mail-reply:before { content: '\f051'} /*  */ -.octicon-mark-github:before { content: '\f00a'} /*  */ -.octicon-markdown:before { content: '\f0c9'} /*  */ -.octicon-megaphone:before { content: '\f077'} /*  */ -.octicon-mention:before { content: '\f0be'} /*  */ -.octicon-microscope:before { content: '\f089'} /*  */ -.octicon-milestone:before { content: '\f075'} /*  */ -.octicon-mirror-public:before, -.octicon-mirror:before { content: '\f024'} /*  */ -.octicon-mortar-board:before { content: '\f0d7'} /* */ -.octicon-move-down:before { content: '\f0a8'} /*  */ -.octicon-move-left:before { content: '\f074'} /*  */ -.octicon-move-right:before { content: '\f0a9'} /*  */ -.octicon-move-up:before { content: '\f0a7'} /*  */ -.octicon-mute:before { content: '\f080'} /*  */ -.octicon-no-newline:before { content: '\f09c'} /*  */ -.octicon-octoface:before { content: '\f008'} /*  */ -.octicon-organization:before { content: '\f037'} /*  */ -.octicon-package:before { content: '\f0c4'} /*  */ -.octicon-paintcan:before { content: '\f0d1'} /*  */ -.octicon-pencil:before { content: '\f058'} /*  */ -.octicon-person-add:before, -.octicon-person-follow:before, -.octicon-person:before { content: '\f018'} /*  */ -.octicon-pin:before { content: '\f041'} /*  */ -.octicon-playback-fast-forward:before { content: '\f0bd'} /*  */ -.octicon-playback-pause:before { content: '\f0bb'} /*  */ -.octicon-playback-play:before { content: '\f0bf'} /*  */ -.octicon-playback-rewind:before { content: '\f0bc'} /*  */ -.octicon-plug:before { content: '\f0d4'} /*  */ -.octicon-repo-create:before, -.octicon-gist-new:before, -.octicon-file-directory-create:before, -.octicon-file-add:before, -.octicon-plus:before { content: '\f05d'} /*  */ -.octicon-podium:before { content: '\f0af'} /*  */ -.octicon-primitive-dot:before { content: '\f052'} /*  */ -.octicon-primitive-square:before { content: '\f053'} /*  */ -.octicon-pulse:before { content: '\f085'} /*  */ -.octicon-puzzle:before { content: '\f0c0'} /*  */ -.octicon-question:before { content: '\f02c'} /*  */ -.octicon-quote:before { content: '\f063'} /*  */ -.octicon-radio-tower:before { content: '\f030'} /*  */ -.octicon-repo-delete:before, -.octicon-repo:before { content: '\f001'} /*  */ -.octicon-repo-clone:before { content: '\f04c'} /*  */ -.octicon-repo-force-push:before { content: '\f04a'} /*  */ -.octicon-gist-fork:before, -.octicon-repo-forked:before { content: '\f002'} /*  */ -.octicon-repo-pull:before { content: '\f006'} /*  */ -.octicon-repo-push:before { content: '\f005'} /*  */ -.octicon-rocket:before { content: '\f033'} /*  */ -.octicon-rss:before { content: '\f034'} /*  */ -.octicon-ruby:before { content: '\f047'} /*  */ -.octicon-screen-full:before { content: '\f066'} /*  */ -.octicon-screen-normal:before { content: '\f067'} /*  */ -.octicon-search-save:before, -.octicon-search:before { content: '\f02e'} /*  */ -.octicon-server:before { content: '\f097'} /*  */ -.octicon-settings:before { content: '\f07c'} /*  */ -.octicon-log-in:before, -.octicon-sign-in:before { content: '\f036'} /*  */ -.octicon-log-out:before, -.octicon-sign-out:before { content: '\f032'} /*  */ -.octicon-split:before { content: '\f0c6'} /*  */ -.octicon-squirrel:before { content: '\f0b2'} /*  */ -.octicon-star-add:before, -.octicon-star-delete:before, -.octicon-star:before { content: '\f02a'} /*  */ -.octicon-steps:before { content: '\f0c7'} /*  */ -.octicon-stop:before { content: '\f08f'} /*  */ -.octicon-repo-sync:before, -.octicon-sync:before { content: '\f087'} /*  */ -.octicon-tag-remove:before, -.octicon-tag-add:before, -.octicon-tag:before { content: '\f015'} /*  */ -.octicon-telescope:before { content: '\f088'} /*  */ -.octicon-terminal:before { content: '\f0c8'} /*  */ -.octicon-three-bars:before { content: '\f05e'} /*  */ -.octicon-tools:before { content: '\f031'} /*  */ -.octicon-trashcan:before { content: '\f0d0'} /*  */ -.octicon-triangle-down:before { content: '\f05b'} /*  */ -.octicon-triangle-left:before { content: '\f044'} /*  */ -.octicon-triangle-right:before { content: '\f05a'} /*  */ -.octicon-triangle-up:before { content: '\f0aa'} /*  */ -.octicon-unfold:before { content: '\f039'} /*  */ -.octicon-unmute:before { content: '\f0ba'} /*  */ -.octicon-versions:before { content: '\f064'} /*  */ -.octicon-remove-close:before, -.octicon-x:before { content: '\f081'} /*  */ -.octicon-zap:before { content: '\26A1'} /* ⚡ */ diff --git a/public/ng/fonts/octicons.eot b/public/ng/fonts/octicons.eot deleted file mode 100755 index 22881a8b..00000000 Binary files a/public/ng/fonts/octicons.eot and /dev/null differ diff --git a/public/ng/fonts/octicons.svg b/public/ng/fonts/octicons.svg deleted file mode 100755 index ea3e0f16..00000000 --- a/public/ng/fonts/octicons.svg +++ /dev/null @@ -1,198 +0,0 @@ - - - - -(c) 2012-2014 GitHub - -When using the GitHub logos, be sure to follow the GitHub logo guidelines (https://github.com/logos) - -Font License: SIL OFL 1.1 (http://scripts.sil.org/OFL) -Applies to all font files - -Code License: MIT (http://choosealicense.com/licenses/mit/) -Applies to all other files - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/public/ng/fonts/octicons.ttf b/public/ng/fonts/octicons.ttf deleted file mode 100755 index 189ca281..00000000 Binary files a/public/ng/fonts/octicons.ttf and /dev/null differ diff --git a/public/ng/fonts/octicons.woff b/public/ng/fonts/octicons.woff deleted file mode 100755 index 2b770e42..00000000 Binary files a/public/ng/fonts/octicons.woff and /dev/null differ diff --git a/public/ng/js/gogs.js b/public/ng/js/gogs.js deleted file mode 100644 index f8048162..00000000 --- a/public/ng/js/gogs.js +++ /dev/null @@ -1,970 +0,0 @@ -// @codekit-prepend "lib/jquery-1.11.1.min.js" -// @codekit-prepend "lib/lib.js" -// @codekit-prepend "utils/tabs.js" -// @codekit-prepend "utils/preview.js" -// @codekit-prepend "gogs/issue_label.js" -// @codekit-prepend "lib/jquery.tipsy.js" - -var Gogs = {}; - -(function ($) { - // Extend jQuery ajax, set CSRF token value. - var ajax = $.ajax; - $.extend({ - ajax: function (url, options) { - if (typeof url === 'object') { - options = url; - url = undefined; - } - options = options || {}; - url = options.url; - var csrftoken = $('meta[name=_csrf]').attr('content'); - var headers = options.headers || {}; - var domain = document.domain.replace(/\./ig, '\\.'); - if (!/^(http:|https:).*/.test(url) || eval('/^(http:|https:)\\/\\/(.+\\.)*' + domain + '.*/').test(url)) { - headers = $.extend(headers, {'X-Csrf-Token': csrftoken}); - } - options.headers = headers; - var callback = options.success; - options.success = function (data) { - if (data.once) { - // change all _once value if ajax data.once exist - $('[name=_once]').val(data.once); - } - if (callback) { - callback.apply(this, arguments); - } - }; - return ajax(url, options); - }, - - changeHash: function (hash) { - if (history.pushState) { - history.pushState(null, null, hash); - } - else { - location.hash = hash; - } - }, - - deSelect: function () { - if (window.getSelection) { - window.getSelection().removeAllRanges(); - } else { - document.selection.empty(); - } - } - }); - $.fn.extend({ - toggleHide: function () { - $(this).each(function(n, v) { $(v).addClass("hidden"); }); - }, - toggleShow: function () { - $(this).each(function(n, v) { $(v).removeClass("hidden"); }); - }, - toggleAjax: function (successCallback, errorCallback) { - var url = $(this).data("ajax"); - var method = $(this).data('ajax-method') || 'get'; - var ajaxName = $(this).data('ajax-name'); - var data = {}; - - if (ajaxName.endsWith("preview")) { - data["mode"] = "gfm"; - data["context"] = $(this).data('ajax-context'); - } - - $('[data-ajax-rel=' + ajaxName + ']').each(function () { - var field = $(this).data("ajax-field"); - var t = $(this).data("ajax-val"); - if (t == "val") { - data[field] = $(this).val(); - return true; - } - if (t == "txt") { - data[field] = $(this).text(); - return true; - } - if (t == "html") { - data[field] = $(this).html(); - return true; - } - if (t == "data") { - data[field] = $(this).data("ajax-data"); - return true; - } - return true; - }); - console.log("toggleAjax:", method, url, data); - $.ajax({ - url: url, - method: method.toUpperCase(), - data: data, - error: errorCallback, - success: function (d) { - if (successCallback) { - successCallback(d); - } - } - }) - } - }); -}(jQuery)); - -(function ($) { - // Render markdown. - Gogs.renderMarkdown = function () { - var $md = $('.markdown'); - var $pre = $md.find('pre > code').parent(); - $pre.addClass('prettyprint'); - prettyPrint(); - - // Set anchor. - var headers = {}; - $md.find('h1, h2, h3, h4, h5, h6').each(function () { - var node = $(this); - var val = encodeURIComponent(node.text().toLowerCase().replace(/[^\w\- ]/g, '').replace(/[ ]/g, '-')); - var name = val; - if (headers[val] > 0) { - name = val + '-' + headers[val]; - } - if (headers[val] == undefined) { - headers[val] = 1; - } else { - headers[val] += 1; - } - node = node.wrap('
    '); - node.append(''); - }); - }; - - // Render code view. - Gogs.renderCodeView = function () { - function selectRange($list, $select, $from) { - $list.removeClass('active'); - if ($from) { - var a = parseInt($select.attr('rel').substr(1)); - var b = parseInt($from.attr('rel').substr(1)); - var c; - if (a != b) { - if (a > b) { - c = a; - a = b; - b = c; - } - var classes = []; - for (i = a; i <= b; i++) { - classes.push('.L' + i); - } - $list.filter(classes.join(',')).addClass('active'); - $.changeHash('#L' + a + '-' + 'L' + b); - return - } - } - $select.addClass('active'); - $.changeHash('#' + $select.attr('rel')); - } - - $(document).on('click', '.lines-num span', function (e) { - var $select = $(this); - var $list = $select.parent().siblings('.lines-code').find('ol.linenums > li'); - selectRange($list, $list.filter('[rel=' + $select.attr('rel') + ']'), (e.shiftKey ? $list.filter('.active').eq(0) : null)); - $.deSelect(); - }); - - $('.code-view .lines-code > pre').each(function () { - var $pre = $(this); - var $lineCode = $pre.parent(); - var $lineNums = $lineCode.siblings('.lines-num'); - if ($lineNums.length > 0) { - var nums = $pre.find('ol.linenums > li').length; - for (var i = 1; i <= nums; i++) { - $lineNums.append('' + i + ''); - } - } - }); - - $(window).on('hashchange', function (e) { - var m = window.location.hash.match(/^#(L\d+)\-(L\d+)$/); - var $list = $('.code-view ol.linenums > li'); - var $first; - if (m) { - $first = $list.filter('.' + m[1]); - selectRange($list, $first, $list.filter('.' + m[2])); - $("html, body").scrollTop($first.offset().top - 200); - return; - } - m = window.location.hash.match(/^#(L\d+)$/); - if (m) { - $first = $list.filter('.' + m[1]); - selectRange($list, $first); - $("html, body").scrollTop($first.offset().top - 200); - } - }).trigger('hashchange'); - }; - - // Render diff view. - Gogs.renderDiffView = function () { - function selectRange($list, $select, $from) { - $list.removeClass('active'); - $list.parents('tr').removeClass('end-selected-line'); - $list.parents('tr').find('td').removeClass('selected-line'); - if ($from) { - var expr = new RegExp(/diff-(\w+)([LR]\d+)/); - var selectMatches = $select.attr('rel').match(expr) - var fromMatches = $from.attr('rel').match(expr) - var selectTop = $select.offset().top; - var fromTop = $from.offset().top; - var hash; - - if (selectMatches[2] != fromMatches[2]) { - if ((selectTop > fromTop)) { - $startElem = $from; - $endElem = $select; - hash = fromMatches[1]+fromMatches[2] + '-' + selectMatches[2]; - } else { - $startElem = $select; - $endElem = $from; - hash = selectMatches[1]+selectMatches[2] + '-' + fromMatches[2]; - } - $endElem.parents('tr').next().addClass('end-selected-line'); - var $selectedLines = $startElem.parents('tr').nextUntil('.end-selected-line').andSelf(); - $selectedLines.find('td.lines-num > span').addClass('active') - $selectedLines.find('td').addClass('selected-line'); - $.changeHash('#diff-'+hash); - return - } - } - $select.addClass('active'); - $select.parents('tr').find('td').addClass('selected-line'); - $.changeHash('#' + $select.attr('rel')); - } - - $(document).on('click', '.code-diff .lines-num span', function (e) { - var $select = $(this); - var $list = $select.parent().siblings('.lines-code').parents().find('td.lines-num > span'); - selectRange( - $list, - $list.filter('[rel=' + $select.attr('rel') + ']'), - (e.shiftKey && $list.filter('.active').length ? $list.filter('.active').eq(0) : null) - ); - $.deSelect(); - }); - - $('.code-diff .lines-code > pre').each(function () { - var $pre = $(this); - var $lineCode = $pre.parent(); - var $lineNums = $lineCode.siblings('.lines-num'); - if ($lineNums.length > 0) { - var nums = $pre.find('ol.linenums > li').length; - for (var i = 1; i <= nums; i++) { - $lineNums.append('' + i + ''); - } - } - }); - - $(window).on('hashchange', function (e) { - var m = window.location.hash.match(/^#diff-(\w+)([LR]\d+)\-([LR]\d+)$/); - var $list = $('.code-diff td.lines-num > span'); - var $first; - if (m) { - $first = $list.filter('[rel=diff-' + m[1] + m[2] + ']'); - selectRange($list, $first, $list.filter('[rel=diff-' + m[1] + m[3] + ']')); - $("html, body").scrollTop($first.offset().top - 200); - return; - } - m = window.location.hash.match(/^#diff-(\w+)([LR]\d+)$/); - if (m) { - $first = $list.filter('[rel=diff-' + m[1] + m[2] + ']'); - selectRange($list, $first); - $("html, body").scrollTop($first.offset().top - 200); - } - }).trigger('hashchange'); - }; - - // Search users by keyword. - Gogs.searchUsers = function (val, $target) { - var notEmpty = function (str) { - return str && str.length > 0; - } - $.ajax({ - url: Gogs.AppSubUrl + '/api/v1/users/search?q=' + val, - dataType: "json", - success: function (json) { - if (json.ok && json.data.length) { - var html = ''; - $.each(json.data, function (i, item) { - html += '
  • ' + item.username + ''; - if (notEmpty(item.full_name)) { - html += ' (' + item.full_name + ')'; - } - html += '
  • '; - }); - $target.html(html); - $target.toggleShow(); - } else { - $target.toggleHide(); - } - } - }); - } - - // Search repositories by keyword. - Gogs.searchRepos = function (val, $target, $param) { - $.ajax({ - url: Gogs.AppSubUrl + '/api/v1/repos/search?q=' + val + '&' + $param, - dataType: "json", - success: function (json) { - if (json.ok && json.data.length) { - var html = ''; - $.each(json.data, function (i, item) { - html += '
  • ' + item.full_name + '
  • '; - }); - $target.html(html); - $target.toggleShow(); - } else { - $target.toggleHide(); - } - } - }); - } - - // Copy util. - Gogs.bindCopy = function (selector) { - if ($(selector).hasClass('js-copy-bind')) { - return; - } - - if ( document.documentElement.classList.contains("is-copy-enabled") ) { - - $(selector).click(function(event) { - var $this = $(this); - - var cfrom = $this.attr('data-copy-from'); - $(cfrom).select(); - document.execCommand('copy'); - getSelection().removeAllRanges(); - - $this.tipsy("hide").attr('original-title', $this.data('after-title')); - setTimeout(function () { - $this.tipsy("show"); - }, 200); - setTimeout(function () { - $this.tipsy('hide').attr('original-title', $this.data('original-title')); - }, 2000); - - this.blur(); - return; - }); - - $(selector).addClass("js-copy-bind"); - - } else { - - $(selector).zclip({ - path: Gogs.AppSubUrl + "/js/ZeroClipboard.swf", - copy: function () { - var t = $(this).data("copy-val"); - var to = $($(this).data("copy-from")); - var str = ""; - if (t == "txt") { - str = to.text(); - } - if (t == 'val') { - str = to.val(); - } - if (t == 'html') { - str = to.html(); - } - return str; - }, - afterCopy: function () { - var $this = $(this); - $this.tipsy("hide").attr('original-title', $this.data('after-title')); - setTimeout(function () { - $this.tipsy("show"); - }, 200); - setTimeout(function () { - $this.tipsy('hide').attr('original-title', $this.data('original-title')); - }, 2000); - } - }).addClass("js-copy-bind"); - } - } -})(jQuery); - -function initCore() { - Gogs.renderMarkdown(); - - if ($('.code-diff').length == 0) { - Gogs.renderCodeView(); - } else { - Gogs.renderDiffView(); - } - - // Switch list. - $('.js-tab-nav').click(function (e) { - if (!$(this).hasClass('js-tab-nav-show')) { - $(this).parent().find('.js-tab-nav-show').each(function () { - $(this).removeClass('js-tab-nav-show'); - $($(this).data('tab-target')).hide(); - }); - $(this).addClass('js-tab-nav-show'); - $($(this).data('tab-target')).show(); - } - e.preventDefault(); - }); - - // Popup. - $(document).on('click', '.popup-modal-dismiss', function (e) { - e.preventDefault(); - $.magnificPopup.close(); - }); - - // Plugins. - $('.collapse').hide(); - $('.tipsy-tooltip').tipsy({ - fade: true - }); -} - -function initUserSetting() { - // Confirmation of change username in user profile page. - var $username = $('#username'); - var $profile_form = $('#user-profile-form'); - $('#change-username-btn').magnificPopup({ - modal: true, - callbacks: { - open: function () { - if (($username.data('uname') == $username.val())) { - $.magnificPopup.close(); - $profile_form.submit(); - } - } - } - }).click(function () { - if (($username.data('uname') != $username.val())) { - e.preventDefault(); - return true; - } - }); - $('#change-username-submit').click(function () { - $.magnificPopup.close(); - $profile_form.submit(); - }); - - // Show panels. - $('.show-form-btn').click(function () { - $($(this).data('target-form')).removeClass("hide"); - }); - - // Confirmation of delete account. - $('#delete-account-btn').magnificPopup({ - modal: true - }).click(function (e) { - e.preventDefault(); - return true; - }); - $('#delete-account-submit').click(function () { - $.magnificPopup.close(); - $('#delete-account-form').submit(); - }); -} - -function initRepoCreate() { - // Owner switch menu click. - $('#repo-create-owner-list').on('click', 'li', function () { - if (!$(this).hasClass('checked')) { - var uid = $(this).data('uid'); - $('#repo-owner-id').val(uid); - $('#repo-owner-avatar').attr("src", $(this).find('img').attr("src")); - $('#repo-owner-name').text($(this).text().trim()); - - $(this).parent().find('.checked').removeClass('checked'); - $(this).addClass('checked'); - console.log("set repo owner to uid :", uid, $(this).text().trim()); - } - }); - - $('#auth-button').click(function (e) { - $('#repo-migrate-auth').slideToggle('fast'); - e.preventDefault(); - }) - console.log('initRepoCreate'); -} - -function initRepo() { - // Clone link switch button. - $('#repo-clone-ssh').click(function () { - $(this).removeClass('btn-gray').addClass('btn-blue'); - $('#repo-clone-https').removeClass('btn-blue').addClass('btn-gray'); - $('#repo-clone-url').val($(this).data('link')); - $('.clone-url').text($(this).data('link')) - }); - $('#repo-clone-https').click(function () { - $(this).removeClass('btn-gray').addClass('btn-blue'); - $('#repo-clone-ssh').removeClass('btn-blue').addClass('btn-gray'); - $('#repo-clone-url').val($(this).data('link')); - $('.clone-url').text($(this).data('link')) - }); - - // Copy URL. - var $clone_btn = $('#repo-clone-copy'); - $clone_btn.hover(function () { - Gogs.bindCopy($(this)); - }) - $clone_btn.tipsy({ - fade: true - }); - - // Markdown preview. - $('.markdown-preview').click(function() { - var $this = $(this); - $this.toggleAjax(function (resp) { - $($this.data("preview")).html(resp); - }, function () { - $($this.data("preview")).html("no content"); - }) - }); -} - -// when user changes hook type, hide/show proper divs -function initHookTypeChange() { - // web hook type change - $('select#hook-type').on("change", function () { - hookTypes = ['Gogs', 'Slack']; - - var curHook = $(this).val(); - hookTypes.forEach(function (hookType) { - if (curHook === hookType) { - $('div#' + hookType.toLowerCase()).toggleShow(); - } - else { - $('div#' + hookType.toLowerCase()).toggleHide(); - } - }); - }); -} - -function initRepoRelease() { - $('#release-new-target-branch-list li').click(function() { - if (!$(this).hasClass('checked')) { - $('#repo-branch-current').text($(this).text()); - $('#tag-target').val($(this).text()); - - $(this).parent().find('.checked').removeClass('checked'); - $(this).addClass('checked'); - } - }) -} - -function initRepoSetting() { - // Options. - // Confirmation of changing repository name. - var $reponame = $('#repo_name'); - var $setting_form = $('#repo-setting-form'); - $('#change-reponame-btn').magnificPopup({ - modal: true, - callbacks: { - open: function () { - if (($reponame.data('repo-name') == $reponame.val())) { - $.magnificPopup.close(); - $setting_form.submit(); - } - } - } - }).click(function () { - if (($reponame.data('repo-name') != $reponame.val())) { - e.preventDefault(); - return true; - } - }); - $('#change-reponame-submit').click(function () { - $.magnificPopup.close(); - $setting_form.submit(); - }); - - initHookTypeChange(); - - // Transfer repository. - $('#transfer-repo-btn').magnificPopup({ - modal: true - }); - $('#transfer-repo-submit').click(function () { - $.magnificPopup.close(); - $('#transfer-repo-form').submit(); - }); - - // Delete repository. - $('#delete-repo-btn').magnificPopup({ - modal: true - }); - $('#delete-repo-submit').click(function () { - $.magnificPopup.close(); - $('#delete-repo-form').submit(); - }); - - // Collaboration. - $('#repo-collab-list hr:last-child').remove(); - var $ul = $('#repo-collaborator').next().next().find('ul'); - $('#repo-collaborator').on('keyup', function () { - var $this = $(this); - if (!$this.val()) { - $ul.toggleHide(); - return; - } - Gogs.searchUsers($this.val(), $ul); - }).on('focus', function () { - if (!$(this).val()) { - $ul.toggleHide(); - } else { - $ul.toggleShow(); - } - }).next().next().find('ul').on("click", 'li', function () { - $('#repo-collaborator').val($(this).find('.username').text()); - $ul.toggleHide(); - }); -} - -function initOrgSetting() { - // Options. - // Confirmation of changing organization name. - var $orgname = $('#orgname'); - var $setting_form = $('#org-setting-form'); - $('#change-orgname-btn').magnificPopup({ - modal: true, - callbacks: { - open: function () { - if (($orgname.data('orgname') == $orgname.val())) { - $.magnificPopup.close(); - $setting_form.submit(); - } - } - } - }).click(function () { - if (($orgname.data('orgname') != $orgname.val())) { - e.preventDefault(); - return true; - } - }); - $('#change-orgname-submit').click(function () { - $.magnificPopup.close(); - $setting_form.submit(); - }); - - // Confirmation of delete organization. - $('#delete-org-btn').magnificPopup({ - modal: true - }).click(function (e) { - e.preventDefault(); - return true; - }); - $('#delete-org-submit').click(function () { - $.magnificPopup.close(); - $('#delete-org-form').submit(); - }); - - initHookTypeChange(); -} - -function initInvite() { - // Invitation. - var $ul = $('#org-member-invite-list'); - $('#org-member-invite').on('keyup', function () { - var $this = $(this); - if (!$this.val()) { - $ul.toggleHide(); - return; - } - Gogs.searchUsers($this.val(), $ul); - }).on('focus', function () { - if (!$(this).val()) { - $ul.toggleHide(); - } else { - $ul.toggleShow(); - } - }).next().next().find('ul').on("click", 'li', function () { - $('#org-member-invite').val($(this).find('.username').text()); - $ul.toggleHide(); - }); -} - -function initOrgTeamCreate() { - // Delete team. - $('#org-team-delete').magnificPopup({ - modal: true - }).click(function (e) { - e.preventDefault(); - return true; - }); - $('#delete-team-submit').click(function () { - $.magnificPopup.close(); - var $form = $('#team-create-form'); - $form.attr('action', $form.data('delete-url')); - }); -} - -function initTeamMembersList() { - // Add team member. - var $ul = $('#org-team-members-list'); - $('#org-team-members-add').on('keyup', function () { - var $this = $(this); - if (!$this.val()) { - $ul.toggleHide(); - return; - } - Gogs.searchUsers($this.val(), $ul); - }).on('focus', function () { - if (!$(this).val()) { - $ul.toggleHide(); - } else { - $ul.toggleShow(); - } - }).next().next().find('ul').on("click", 'li', function () { - $('#org-team-members-add').val($(this).find('.username').text()); - $ul.toggleHide(); - }); -} - -function initTeamRepositoriesList() { - // Add team repository. - var $ul = $('#org-team-repositories-list'); - $('#org-team-repositories-add').on('keyup', function () { - var $this = $(this); - if (!$this.val()) { - $ul.toggleHide(); - return; - } - Gogs.searchRepos($this.val(), $ul, 'uid=' + $this.data('uid')); - }).on('focus', function () { - if (!$(this).val()) { - $ul.toggleHide(); - } else { - $ul.toggleShow(); - } - }).next().next().find('ul').on("click", 'li', function () { - $('#org-team-repositories-add').val($(this).text()); - $ul.toggleHide(); - }); -} - -function initAdmin() { - // Create account. - $('#login-type').on("change", function () { - var v = $(this).val(); - if (v.indexOf("0-") + 1) { - $('.auth-name').toggleHide(); - $(".pwd").find("input").attr("required", "required") - .end().toggleShow(); - } else { - $(".pwd").find("input").removeAttr("required") - .end().toggleHide(); - $('.auth-name').toggleShow(); - } - }); - - // Delete account. - $('#delete-account-btn').magnificPopup({ - modal: true - }).click(function (e) { - e.preventDefault(); - return true; - }); - $('#delete-account-submit').click(function () { - $.magnificPopup.close(); - var $form = $('#user-profile-form'); - $form.attr('action', $form.data('delete-url')); - }); - - // Create authorization. Keep list in sync with models/login.go. - var all_auths = ['none', 'plain', 'ldap', 'dldap', 'smtp', 'pam']; - $('#auth-type').on("change", function () { - var v = $(this).val(); - if (v >= all_auths.length) return; - - // Hide all through their class names. - $.each(all_auths, function(i, type) { - $('.' + type).toggleHide(); - }); - - // Show the selected one. - var selected = all_auths[v]; - $('.' + selected).toggleShow(); - }); - - // Delete authorization. - $('#delete-auth-btn').magnificPopup({ - modal: true - }).click(function (e) { - e.preventDefault(); - return true; - }); - $('#delete-auth-submit').click(function () { - $.magnificPopup.close(); - var $form = $('#auth-setting-form'); - $form.attr('action', $form.data('delete-url')); - }); -} - -function initInstall() { - // Change database type. - (function () { - var mysql_default = '127.0.0.1:3306'; - var postgres_default = '127.0.0.1:5432'; - - $('#install-database').on("change", function () { - var val = $(this).val(); - if (val != "SQLite3") { - $('.server-sql').show(); - $('.sqlite-setting').addClass("hide"); - if (val == "PostgreSQL") { - $('.pgsql-setting').removeClass("hide"); - - // Change the host value to the Postgres default, but only - // if the user hasn't already changed it from the MySQL - // default. - if ($('#database-host').val() == mysql_default) { - $('#database-host').val(postgres_default); - } - } else if (val == 'MySQL') { - $('.pgsql-setting').addClass("hide"); - if ($('#database-host').val() == postgres_default) { - $('#database-host').val(mysql_default); - } - } else { - $('.pgsql-setting').addClass("hide"); - } - } else { - $('.server-sql').hide(); - $('.pgsql-setting').hide(); - $('.sqlite-setting').removeClass("hide"); - } - }); - }()); -} - -function initProfile() { - // Avatar. - $('#profile-avatar').tipsy({ - fade: true - }); -} - -function initTimeSwitch() { - // Time switch. - $(".time-since[title]").on("click", function () { - var $this = $(this); - - var title = $this.attr("title"); - var text = $this.text(); - - $this.text(title); - $this.attr("title", text); - }); -} - -function initDiff() { - $('.diff-detail-box>a').click(function () { - $($(this).data('target')).slideToggle(100); - }) - - var $counter = $('.diff-counter'); - if ($counter.length < 1) { - return; - } - $counter.each(function (i, item) { - var $item = $(item); - var addLine = $item.find('span[data-line].add').data("line"); - var delLine = $item.find('span[data-line].del').data("line"); - var addPercent = parseFloat(addLine) / (parseFloat(addLine) + parseFloat(delLine)) * 100; - $item.find(".bar .add").css("width", addPercent + "%"); - }); -} - -$(document).ready(function () { - Gogs.AppSubUrl = $('head').data('suburl') || ''; - initCore(); - if ($('#user-profile-setting').length) { - initUserSetting(); - } - if ($('#repo-create-form').length || $('#repo-migrate-form').length) { - initRepoCreate(); - } - if ($('#repo-header').length) { - initTimeSwitch(); - initRepo(); - } - if ($('#release').length) { - initRepoRelease(); - } - if ($('#repo-setting').length) { - initRepoSetting(); - } - if ($('#org-setting').length) { - initOrgSetting(); - } - if ($('#invite-box').length) { - initInvite(); - } - if ($('#team-create-form').length) { - initOrgTeamCreate(); - } - if ($('#team-members-list').length) { - initTeamMembersList(); - } - if ($('#team-repositories-list').length) { - initTeamRepositoriesList(); - } - if ($('#admin-setting').length) { - initAdmin(); - } - if ($('#install-form').length) { - initInstall(); - } - if ($('#user-profile-page').length) { - initProfile(); - } - if ($('#diff-page').length) { - initTimeSwitch(); - initDiff(); - } - - $('#dashboard-sidebar-menu').tabs(); - $('#pull-issue-preview').markdown_preview(".issue-add-comment"); - - homepage(); - emojify.setConfig({ - img_dir: Gogs.AppSubUrl + '/img/emoji' - }); - emojify.run(); - - // Fix language drop-down menu height. - var l = $('#footer-lang li').length; - $('#footer-lang .drop-down').css({ - "top": (-31 * l) + "px", - "height": (31 * l - 3) + "px" - }); -}); - -function homepage() { - // Change method to GET if no username input. - $('#promo-form').submit(function (e) { - if ($('#username').val() === "") { - e.preventDefault(); - window.location.href = Gogs.AppSubUrl + '/user/login'; - return true - } - }); - // Redirect to register page. - $('#register-button').click(function (e) { - if ($('#username').val() === "") { - e.preventDefault(); - window.location.href = Gogs.AppSubUrl + '/user/sign_up'; - return true - } - $('#promo-form').attr('action', Gogs.AppSubUrl + '/user/sign_up'); - }); -} - -String.prototype.endsWith = function (suffix) { - return this.indexOf(suffix, this.length - suffix.length) !== -1; -}; diff --git a/public/ng/js/gogs/issue_label.js b/public/ng/js/gogs/issue_label.js deleted file mode 100644 index 31aebdd4..00000000 --- a/public/ng/js/gogs/issue_label.js +++ /dev/null @@ -1,97 +0,0 @@ -// when dom ready, init issue label events -$(document).ready(function(){ - var labelColors = ["#e11d21","#EB6420","#FBCA04","#009800", - "#006B75","#207DE5","#0052cc","#53E917", - "#F6C6C7","#FAD8C7","#FEF2C0","#BFE5BF", - "#BFDADC","#C7DEF8","#BFD4F2","#D4C5F9"]; - - var colorDropHtml = ""; - labelColors.forEach(function(item){ - colorDropHtml += ''; - }); - - - - // render label color input - var color_input = $('#label-add-color'); - var color_label = $('#label-add-form .label-color-drop label'); - color_label.css("background-color",labelColors[0]); - color_input.val(labelColors[0]); - - - // render label color drop - function render_color_drop($e){ - $e.find('.label-color-drop .drop-down') - .html(colorDropHtml) - .on("click","a",function(){ - var $form = $(this).parents(".form"); - var color_label = $form.find(".label-color-drop label"); - var color_input = $form.find("input[name=color]"); - var color = $(this).data("color-hex"); - color_label.css("background-color",color); - color_input.val(color); - }); - } - - - // color drop visible - var form = $('#label-add-form'); - render_color_drop(form); - $('#label-new-btn').on("click",function(){ - if(form.hasClass("hidden")){ - form.removeClass("hidden"); - } - }); - $('#label-cancel-btn').on("click",function(){ - form.addClass("hidden"); - }); - - // label edit form render - var $edit_form_tpl = $("#label-edit-form-tpl"); - $("#label-list").on("click","a.edit",function(){ - var $label_item = $(this).parents(".item"); - var $clone_form = $edit_form_tpl.clone(); - render_color_drop($clone_form); - - // add default color - var color_label = $clone_form.find(".label-color-drop label"); - var color_input = $clone_form.find("input[name=color]"); - var color = $label_item.find(".label").data("color-hex"); - color_label.css("background-color",color); - color_input.val(color); - - // add label name - $clone_form.find("input[name=name]").val($label_item.find(".label").text()); - - // add label id - $clone_form.find("input[name=id]").val($label_item.attr("id").replace("label-","")); - - // append form - $label_item.after($clone_form.show()); - - // add cancel button event - $('#label-edit-cancel-btn').on("click",function(){ - $clone_form.remove(); - }); - - }); - - // label delete form render - var $del_form_tpl = $('#label-delete-form-tpl'); - $("#label-list").on("click","a.delete",function(){ - var $label_item = $(this).parents(".item"); - var $clone_form = $del_form_tpl.clone(); - - // add label id - $clone_form.find("input[name=id]").val($label_item.attr("id").replace("label-","")); - - // append form - $label_item.after($clone_form.show()); - - // add cancel button event - $('#label-del-cancel-btn').on("click",function(){ - $clone_form.remove(); - }); - }); - -}); diff --git a/public/ng/js/lib/jquery-1.11.1.min.js b/public/ng/js/lib/jquery-1.11.1.min.js deleted file mode 100644 index ab28a247..00000000 --- a/public/ng/js/lib/jquery-1.11.1.min.js +++ /dev/null @@ -1,4 +0,0 @@ -/*! jQuery v1.11.1 | (c) 2005, 2014 jQuery Foundation, Inc. | jquery.org/license */ -!function(a,b){"object"==typeof module&&"object"==typeof module.exports?module.exports=a.document?b(a,!0):function(a){if(!a.document)throw new Error("jQuery requires a window with a document");return b(a)}:b(a)}("undefined"!=typeof window?window:this,function(a,b){var c=[],d=c.slice,e=c.concat,f=c.push,g=c.indexOf,h={},i=h.toString,j=h.hasOwnProperty,k={},l="1.11.1",m=function(a,b){return new m.fn.init(a,b)},n=/^[\s\uFEFF\xA0]+|[\s\uFEFF\xA0]+$/g,o=/^-ms-/,p=/-([\da-z])/gi,q=function(a,b){return b.toUpperCase()};m.fn=m.prototype={jquery:l,constructor:m,selector:"",length:0,toArray:function(){return d.call(this)},get:function(a){return null!=a?0>a?this[a+this.length]:this[a]:d.call(this)},pushStack:function(a){var b=m.merge(this.constructor(),a);return b.prevObject=this,b.context=this.context,b},each:function(a,b){return m.each(this,a,b)},map:function(a){return this.pushStack(m.map(this,function(b,c){return a.call(b,c,b)}))},slice:function(){return this.pushStack(d.apply(this,arguments))},first:function(){return this.eq(0)},last:function(){return this.eq(-1)},eq:function(a){var b=this.length,c=+a+(0>a?b:0);return this.pushStack(c>=0&&b>c?[this[c]]:[])},end:function(){return this.prevObject||this.constructor(null)},push:f,sort:c.sort,splice:c.splice},m.extend=m.fn.extend=function(){var a,b,c,d,e,f,g=arguments[0]||{},h=1,i=arguments.length,j=!1;for("boolean"==typeof g&&(j=g,g=arguments[h]||{},h++),"object"==typeof g||m.isFunction(g)||(g={}),h===i&&(g=this,h--);i>h;h++)if(null!=(e=arguments[h]))for(d in e)a=g[d],c=e[d],g!==c&&(j&&c&&(m.isPlainObject(c)||(b=m.isArray(c)))?(b?(b=!1,f=a&&m.isArray(a)?a:[]):f=a&&m.isPlainObject(a)?a:{},g[d]=m.extend(j,f,c)):void 0!==c&&(g[d]=c));return g},m.extend({expando:"jQuery"+(l+Math.random()).replace(/\D/g,""),isReady:!0,error:function(a){throw new Error(a)},noop:function(){},isFunction:function(a){return"function"===m.type(a)},isArray:Array.isArray||function(a){return"array"===m.type(a)},isWindow:function(a){return null!=a&&a==a.window},isNumeric:function(a){return!m.isArray(a)&&a-parseFloat(a)>=0},isEmptyObject:function(a){var b;for(b in a)return!1;return!0},isPlainObject:function(a){var b;if(!a||"object"!==m.type(a)||a.nodeType||m.isWindow(a))return!1;try{if(a.constructor&&!j.call(a,"constructor")&&!j.call(a.constructor.prototype,"isPrototypeOf"))return!1}catch(c){return!1}if(k.ownLast)for(b in a)return j.call(a,b);for(b in a);return void 0===b||j.call(a,b)},type:function(a){return null==a?a+"":"object"==typeof a||"function"==typeof a?h[i.call(a)]||"object":typeof a},globalEval:function(b){b&&m.trim(b)&&(a.execScript||function(b){a.eval.call(a,b)})(b)},camelCase:function(a){return a.replace(o,"ms-").replace(p,q)},nodeName:function(a,b){return a.nodeName&&a.nodeName.toLowerCase()===b.toLowerCase()},each:function(a,b,c){var d,e=0,f=a.length,g=r(a);if(c){if(g){for(;f>e;e++)if(d=b.apply(a[e],c),d===!1)break}else for(e in a)if(d=b.apply(a[e],c),d===!1)break}else if(g){for(;f>e;e++)if(d=b.call(a[e],e,a[e]),d===!1)break}else for(e in a)if(d=b.call(a[e],e,a[e]),d===!1)break;return a},trim:function(a){return null==a?"":(a+"").replace(n,"")},makeArray:function(a,b){var c=b||[];return null!=a&&(r(Object(a))?m.merge(c,"string"==typeof a?[a]:a):f.call(c,a)),c},inArray:function(a,b,c){var d;if(b){if(g)return g.call(b,a,c);for(d=b.length,c=c?0>c?Math.max(0,d+c):c:0;d>c;c++)if(c in b&&b[c]===a)return c}return-1},merge:function(a,b){var c=+b.length,d=0,e=a.length;while(c>d)a[e++]=b[d++];if(c!==c)while(void 0!==b[d])a[e++]=b[d++];return a.length=e,a},grep:function(a,b,c){for(var d,e=[],f=0,g=a.length,h=!c;g>f;f++)d=!b(a[f],f),d!==h&&e.push(a[f]);return e},map:function(a,b,c){var d,f=0,g=a.length,h=r(a),i=[];if(h)for(;g>f;f++)d=b(a[f],f,c),null!=d&&i.push(d);else for(f in a)d=b(a[f],f,c),null!=d&&i.push(d);return e.apply([],i)},guid:1,proxy:function(a,b){var c,e,f;return"string"==typeof b&&(f=a[b],b=a,a=f),m.isFunction(a)?(c=d.call(arguments,2),e=function(){return a.apply(b||this,c.concat(d.call(arguments)))},e.guid=a.guid=a.guid||m.guid++,e):void 0},now:function(){return+new Date},support:k}),m.each("Boolean Number String Function Array Date RegExp Object Error".split(" "),function(a,b){h["[object "+b+"]"]=b.toLowerCase()});function r(a){var b=a.length,c=m.type(a);return"function"===c||m.isWindow(a)?!1:1===a.nodeType&&b?!0:"array"===c||0===b||"number"==typeof b&&b>0&&b-1 in a}var s=function(a){var b,c,d,e,f,g,h,i,j,k,l,m,n,o,p,q,r,s,t,u="sizzle"+-new Date,v=a.document,w=0,x=0,y=gb(),z=gb(),A=gb(),B=function(a,b){return a===b&&(l=!0),0},C="undefined",D=1<<31,E={}.hasOwnProperty,F=[],G=F.pop,H=F.push,I=F.push,J=F.slice,K=F.indexOf||function(a){for(var b=0,c=this.length;c>b;b++)if(this[b]===a)return b;return-1},L="checked|selected|async|autofocus|autoplay|controls|defer|disabled|hidden|ismap|loop|multiple|open|readonly|required|scoped",M="[\\x20\\t\\r\\n\\f]",N="(?:\\\\.|[\\w-]|[^\\x00-\\xa0])+",O=N.replace("w","w#"),P="\\["+M+"*("+N+")(?:"+M+"*([*^$|!~]?=)"+M+"*(?:'((?:\\\\.|[^\\\\'])*)'|\"((?:\\\\.|[^\\\\\"])*)\"|("+O+"))|)"+M+"*\\]",Q=":("+N+")(?:\\((('((?:\\\\.|[^\\\\'])*)'|\"((?:\\\\.|[^\\\\\"])*)\")|((?:\\\\.|[^\\\\()[\\]]|"+P+")*)|.*)\\)|)",R=new RegExp("^"+M+"+|((?:^|[^\\\\])(?:\\\\.)*)"+M+"+$","g"),S=new RegExp("^"+M+"*,"+M+"*"),T=new RegExp("^"+M+"*([>+~]|"+M+")"+M+"*"),U=new RegExp("="+M+"*([^\\]'\"]*?)"+M+"*\\]","g"),V=new RegExp(Q),W=new RegExp("^"+O+"$"),X={ID:new RegExp("^#("+N+")"),CLASS:new RegExp("^\\.("+N+")"),TAG:new RegExp("^("+N.replace("w","w*")+")"),ATTR:new RegExp("^"+P),PSEUDO:new RegExp("^"+Q),CHILD:new RegExp("^:(only|first|last|nth|nth-last)-(child|of-type)(?:\\("+M+"*(even|odd|(([+-]|)(\\d*)n|)"+M+"*(?:([+-]|)"+M+"*(\\d+)|))"+M+"*\\)|)","i"),bool:new RegExp("^(?:"+L+")$","i"),needsContext:new RegExp("^"+M+"*[>+~]|:(even|odd|eq|gt|lt|nth|first|last)(?:\\("+M+"*((?:-\\d)?\\d*)"+M+"*\\)|)(?=[^-]|$)","i")},Y=/^(?:input|select|textarea|button)$/i,Z=/^h\d$/i,$=/^[^{]+\{\s*\[native \w/,_=/^(?:#([\w-]+)|(\w+)|\.([\w-]+))$/,ab=/[+~]/,bb=/'|\\/g,cb=new RegExp("\\\\([\\da-f]{1,6}"+M+"?|("+M+")|.)","ig"),db=function(a,b,c){var d="0x"+b-65536;return d!==d||c?b:0>d?String.fromCharCode(d+65536):String.fromCharCode(d>>10|55296,1023&d|56320)};try{I.apply(F=J.call(v.childNodes),v.childNodes),F[v.childNodes.length].nodeType}catch(eb){I={apply:F.length?function(a,b){H.apply(a,J.call(b))}:function(a,b){var c=a.length,d=0;while(a[c++]=b[d++]);a.length=c-1}}}function fb(a,b,d,e){var f,h,j,k,l,o,r,s,w,x;if((b?b.ownerDocument||b:v)!==n&&m(b),b=b||n,d=d||[],!a||"string"!=typeof a)return d;if(1!==(k=b.nodeType)&&9!==k)return[];if(p&&!e){if(f=_.exec(a))if(j=f[1]){if(9===k){if(h=b.getElementById(j),!h||!h.parentNode)return d;if(h.id===j)return d.push(h),d}else if(b.ownerDocument&&(h=b.ownerDocument.getElementById(j))&&t(b,h)&&h.id===j)return d.push(h),d}else{if(f[2])return I.apply(d,b.getElementsByTagName(a)),d;if((j=f[3])&&c.getElementsByClassName&&b.getElementsByClassName)return I.apply(d,b.getElementsByClassName(j)),d}if(c.qsa&&(!q||!q.test(a))){if(s=r=u,w=b,x=9===k&&a,1===k&&"object"!==b.nodeName.toLowerCase()){o=g(a),(r=b.getAttribute("id"))?s=r.replace(bb,"\\$&"):b.setAttribute("id",s),s="[id='"+s+"'] ",l=o.length;while(l--)o[l]=s+qb(o[l]);w=ab.test(a)&&ob(b.parentNode)||b,x=o.join(",")}if(x)try{return I.apply(d,w.querySelectorAll(x)),d}catch(y){}finally{r||b.removeAttribute("id")}}}return i(a.replace(R,"$1"),b,d,e)}function gb(){var a=[];function b(c,e){return a.push(c+" ")>d.cacheLength&&delete b[a.shift()],b[c+" "]=e}return b}function hb(a){return a[u]=!0,a}function ib(a){var b=n.createElement("div");try{return!!a(b)}catch(c){return!1}finally{b.parentNode&&b.parentNode.removeChild(b),b=null}}function jb(a,b){var c=a.split("|"),e=a.length;while(e--)d.attrHandle[c[e]]=b}function kb(a,b){var c=b&&a,d=c&&1===a.nodeType&&1===b.nodeType&&(~b.sourceIndex||D)-(~a.sourceIndex||D);if(d)return d;if(c)while(c=c.nextSibling)if(c===b)return-1;return a?1:-1}function lb(a){return function(b){var c=b.nodeName.toLowerCase();return"input"===c&&b.type===a}}function mb(a){return function(b){var c=b.nodeName.toLowerCase();return("input"===c||"button"===c)&&b.type===a}}function nb(a){return hb(function(b){return b=+b,hb(function(c,d){var e,f=a([],c.length,b),g=f.length;while(g--)c[e=f[g]]&&(c[e]=!(d[e]=c[e]))})})}function ob(a){return a&&typeof a.getElementsByTagName!==C&&a}c=fb.support={},f=fb.isXML=function(a){var b=a&&(a.ownerDocument||a).documentElement;return b?"HTML"!==b.nodeName:!1},m=fb.setDocument=function(a){var b,e=a?a.ownerDocument||a:v,g=e.defaultView;return e!==n&&9===e.nodeType&&e.documentElement?(n=e,o=e.documentElement,p=!f(e),g&&g!==g.top&&(g.addEventListener?g.addEventListener("unload",function(){m()},!1):g.attachEvent&&g.attachEvent("onunload",function(){m()})),c.attributes=ib(function(a){return a.className="i",!a.getAttribute("className")}),c.getElementsByTagName=ib(function(a){return a.appendChild(e.createComment("")),!a.getElementsByTagName("*").length}),c.getElementsByClassName=$.test(e.getElementsByClassName)&&ib(function(a){return a.innerHTML="
    ",a.firstChild.className="i",2===a.getElementsByClassName("i").length}),c.getById=ib(function(a){return o.appendChild(a).id=u,!e.getElementsByName||!e.getElementsByName(u).length}),c.getById?(d.find.ID=function(a,b){if(typeof b.getElementById!==C&&p){var c=b.getElementById(a);return c&&c.parentNode?[c]:[]}},d.filter.ID=function(a){var b=a.replace(cb,db);return function(a){return a.getAttribute("id")===b}}):(delete d.find.ID,d.filter.ID=function(a){var b=a.replace(cb,db);return function(a){var c=typeof a.getAttributeNode!==C&&a.getAttributeNode("id");return c&&c.value===b}}),d.find.TAG=c.getElementsByTagName?function(a,b){return typeof b.getElementsByTagName!==C?b.getElementsByTagName(a):void 0}:function(a,b){var c,d=[],e=0,f=b.getElementsByTagName(a);if("*"===a){while(c=f[e++])1===c.nodeType&&d.push(c);return d}return f},d.find.CLASS=c.getElementsByClassName&&function(a,b){return typeof b.getElementsByClassName!==C&&p?b.getElementsByClassName(a):void 0},r=[],q=[],(c.qsa=$.test(e.querySelectorAll))&&(ib(function(a){a.innerHTML="",a.querySelectorAll("[msallowclip^='']").length&&q.push("[*^$]="+M+"*(?:''|\"\")"),a.querySelectorAll("[selected]").length||q.push("\\["+M+"*(?:value|"+L+")"),a.querySelectorAll(":checked").length||q.push(":checked")}),ib(function(a){var b=e.createElement("input");b.setAttribute("type","hidden"),a.appendChild(b).setAttribute("name","D"),a.querySelectorAll("[name=d]").length&&q.push("name"+M+"*[*^$|!~]?="),a.querySelectorAll(":enabled").length||q.push(":enabled",":disabled"),a.querySelectorAll("*,:x"),q.push(",.*:")})),(c.matchesSelector=$.test(s=o.matches||o.webkitMatchesSelector||o.mozMatchesSelector||o.oMatchesSelector||o.msMatchesSelector))&&ib(function(a){c.disconnectedMatch=s.call(a,"div"),s.call(a,"[s!='']:x"),r.push("!=",Q)}),q=q.length&&new RegExp(q.join("|")),r=r.length&&new RegExp(r.join("|")),b=$.test(o.compareDocumentPosition),t=b||$.test(o.contains)?function(a,b){var c=9===a.nodeType?a.documentElement:a,d=b&&b.parentNode;return a===d||!(!d||1!==d.nodeType||!(c.contains?c.contains(d):a.compareDocumentPosition&&16&a.compareDocumentPosition(d)))}:function(a,b){if(b)while(b=b.parentNode)if(b===a)return!0;return!1},B=b?function(a,b){if(a===b)return l=!0,0;var d=!a.compareDocumentPosition-!b.compareDocumentPosition;return d?d:(d=(a.ownerDocument||a)===(b.ownerDocument||b)?a.compareDocumentPosition(b):1,1&d||!c.sortDetached&&b.compareDocumentPosition(a)===d?a===e||a.ownerDocument===v&&t(v,a)?-1:b===e||b.ownerDocument===v&&t(v,b)?1:k?K.call(k,a)-K.call(k,b):0:4&d?-1:1)}:function(a,b){if(a===b)return l=!0,0;var c,d=0,f=a.parentNode,g=b.parentNode,h=[a],i=[b];if(!f||!g)return a===e?-1:b===e?1:f?-1:g?1:k?K.call(k,a)-K.call(k,b):0;if(f===g)return kb(a,b);c=a;while(c=c.parentNode)h.unshift(c);c=b;while(c=c.parentNode)i.unshift(c);while(h[d]===i[d])d++;return d?kb(h[d],i[d]):h[d]===v?-1:i[d]===v?1:0},e):n},fb.matches=function(a,b){return fb(a,null,null,b)},fb.matchesSelector=function(a,b){if((a.ownerDocument||a)!==n&&m(a),b=b.replace(U,"='$1']"),!(!c.matchesSelector||!p||r&&r.test(b)||q&&q.test(b)))try{var d=s.call(a,b);if(d||c.disconnectedMatch||a.document&&11!==a.document.nodeType)return d}catch(e){}return fb(b,n,null,[a]).length>0},fb.contains=function(a,b){return(a.ownerDocument||a)!==n&&m(a),t(a,b)},fb.attr=function(a,b){(a.ownerDocument||a)!==n&&m(a);var e=d.attrHandle[b.toLowerCase()],f=e&&E.call(d.attrHandle,b.toLowerCase())?e(a,b,!p):void 0;return void 0!==f?f:c.attributes||!p?a.getAttribute(b):(f=a.getAttributeNode(b))&&f.specified?f.value:null},fb.error=function(a){throw new Error("Syntax error, unrecognized expression: "+a)},fb.uniqueSort=function(a){var b,d=[],e=0,f=0;if(l=!c.detectDuplicates,k=!c.sortStable&&a.slice(0),a.sort(B),l){while(b=a[f++])b===a[f]&&(e=d.push(f));while(e--)a.splice(d[e],1)}return k=null,a},e=fb.getText=function(a){var b,c="",d=0,f=a.nodeType;if(f){if(1===f||9===f||11===f){if("string"==typeof a.textContent)return a.textContent;for(a=a.firstChild;a;a=a.nextSibling)c+=e(a)}else if(3===f||4===f)return a.nodeValue}else while(b=a[d++])c+=e(b);return c},d=fb.selectors={cacheLength:50,createPseudo:hb,match:X,attrHandle:{},find:{},relative:{">":{dir:"parentNode",first:!0}," ":{dir:"parentNode"},"+":{dir:"previousSibling",first:!0},"~":{dir:"previousSibling"}},preFilter:{ATTR:function(a){return a[1]=a[1].replace(cb,db),a[3]=(a[3]||a[4]||a[5]||"").replace(cb,db),"~="===a[2]&&(a[3]=" "+a[3]+" "),a.slice(0,4)},CHILD:function(a){return a[1]=a[1].toLowerCase(),"nth"===a[1].slice(0,3)?(a[3]||fb.error(a[0]),a[4]=+(a[4]?a[5]+(a[6]||1):2*("even"===a[3]||"odd"===a[3])),a[5]=+(a[7]+a[8]||"odd"===a[3])):a[3]&&fb.error(a[0]),a},PSEUDO:function(a){var b,c=!a[6]&&a[2];return X.CHILD.test(a[0])?null:(a[3]?a[2]=a[4]||a[5]||"":c&&V.test(c)&&(b=g(c,!0))&&(b=c.indexOf(")",c.length-b)-c.length)&&(a[0]=a[0].slice(0,b),a[2]=c.slice(0,b)),a.slice(0,3))}},filter:{TAG:function(a){var b=a.replace(cb,db).toLowerCase();return"*"===a?function(){return!0}:function(a){return a.nodeName&&a.nodeName.toLowerCase()===b}},CLASS:function(a){var b=y[a+" "];return b||(b=new RegExp("(^|"+M+")"+a+"("+M+"|$)"))&&y(a,function(a){return b.test("string"==typeof a.className&&a.className||typeof a.getAttribute!==C&&a.getAttribute("class")||"")})},ATTR:function(a,b,c){return function(d){var e=fb.attr(d,a);return null==e?"!="===b:b?(e+="","="===b?e===c:"!="===b?e!==c:"^="===b?c&&0===e.indexOf(c):"*="===b?c&&e.indexOf(c)>-1:"$="===b?c&&e.slice(-c.length)===c:"~="===b?(" "+e+" ").indexOf(c)>-1:"|="===b?e===c||e.slice(0,c.length+1)===c+"-":!1):!0}},CHILD:function(a,b,c,d,e){var f="nth"!==a.slice(0,3),g="last"!==a.slice(-4),h="of-type"===b;return 1===d&&0===e?function(a){return!!a.parentNode}:function(b,c,i){var j,k,l,m,n,o,p=f!==g?"nextSibling":"previousSibling",q=b.parentNode,r=h&&b.nodeName.toLowerCase(),s=!i&&!h;if(q){if(f){while(p){l=b;while(l=l[p])if(h?l.nodeName.toLowerCase()===r:1===l.nodeType)return!1;o=p="only"===a&&!o&&"nextSibling"}return!0}if(o=[g?q.firstChild:q.lastChild],g&&s){k=q[u]||(q[u]={}),j=k[a]||[],n=j[0]===w&&j[1],m=j[0]===w&&j[2],l=n&&q.childNodes[n];while(l=++n&&l&&l[p]||(m=n=0)||o.pop())if(1===l.nodeType&&++m&&l===b){k[a]=[w,n,m];break}}else if(s&&(j=(b[u]||(b[u]={}))[a])&&j[0]===w)m=j[1];else while(l=++n&&l&&l[p]||(m=n=0)||o.pop())if((h?l.nodeName.toLowerCase()===r:1===l.nodeType)&&++m&&(s&&((l[u]||(l[u]={}))[a]=[w,m]),l===b))break;return m-=e,m===d||m%d===0&&m/d>=0}}},PSEUDO:function(a,b){var c,e=d.pseudos[a]||d.setFilters[a.toLowerCase()]||fb.error("unsupported pseudo: "+a);return e[u]?e(b):e.length>1?(c=[a,a,"",b],d.setFilters.hasOwnProperty(a.toLowerCase())?hb(function(a,c){var d,f=e(a,b),g=f.length;while(g--)d=K.call(a,f[g]),a[d]=!(c[d]=f[g])}):function(a){return e(a,0,c)}):e}},pseudos:{not:hb(function(a){var b=[],c=[],d=h(a.replace(R,"$1"));return d[u]?hb(function(a,b,c,e){var f,g=d(a,null,e,[]),h=a.length;while(h--)(f=g[h])&&(a[h]=!(b[h]=f))}):function(a,e,f){return b[0]=a,d(b,null,f,c),!c.pop()}}),has:hb(function(a){return function(b){return fb(a,b).length>0}}),contains:hb(function(a){return function(b){return(b.textContent||b.innerText||e(b)).indexOf(a)>-1}}),lang:hb(function(a){return W.test(a||"")||fb.error("unsupported lang: "+a),a=a.replace(cb,db).toLowerCase(),function(b){var c;do if(c=p?b.lang:b.getAttribute("xml:lang")||b.getAttribute("lang"))return c=c.toLowerCase(),c===a||0===c.indexOf(a+"-");while((b=b.parentNode)&&1===b.nodeType);return!1}}),target:function(b){var c=a.location&&a.location.hash;return c&&c.slice(1)===b.id},root:function(a){return a===o},focus:function(a){return a===n.activeElement&&(!n.hasFocus||n.hasFocus())&&!!(a.type||a.href||~a.tabIndex)},enabled:function(a){return a.disabled===!1},disabled:function(a){return a.disabled===!0},checked:function(a){var b=a.nodeName.toLowerCase();return"input"===b&&!!a.checked||"option"===b&&!!a.selected},selected:function(a){return a.parentNode&&a.parentNode.selectedIndex,a.selected===!0},empty:function(a){for(a=a.firstChild;a;a=a.nextSibling)if(a.nodeType<6)return!1;return!0},parent:function(a){return!d.pseudos.empty(a)},header:function(a){return Z.test(a.nodeName)},input:function(a){return Y.test(a.nodeName)},button:function(a){var b=a.nodeName.toLowerCase();return"input"===b&&"button"===a.type||"button"===b},text:function(a){var b;return"input"===a.nodeName.toLowerCase()&&"text"===a.type&&(null==(b=a.getAttribute("type"))||"text"===b.toLowerCase())},first:nb(function(){return[0]}),last:nb(function(a,b){return[b-1]}),eq:nb(function(a,b,c){return[0>c?c+b:c]}),even:nb(function(a,b){for(var c=0;b>c;c+=2)a.push(c);return a}),odd:nb(function(a,b){for(var c=1;b>c;c+=2)a.push(c);return a}),lt:nb(function(a,b,c){for(var d=0>c?c+b:c;--d>=0;)a.push(d);return a}),gt:nb(function(a,b,c){for(var d=0>c?c+b:c;++db;b++)d+=a[b].value;return d}function rb(a,b,c){var d=b.dir,e=c&&"parentNode"===d,f=x++;return b.first?function(b,c,f){while(b=b[d])if(1===b.nodeType||e)return a(b,c,f)}:function(b,c,g){var h,i,j=[w,f];if(g){while(b=b[d])if((1===b.nodeType||e)&&a(b,c,g))return!0}else while(b=b[d])if(1===b.nodeType||e){if(i=b[u]||(b[u]={}),(h=i[d])&&h[0]===w&&h[1]===f)return j[2]=h[2];if(i[d]=j,j[2]=a(b,c,g))return!0}}}function sb(a){return a.length>1?function(b,c,d){var e=a.length;while(e--)if(!a[e](b,c,d))return!1;return!0}:a[0]}function tb(a,b,c){for(var d=0,e=b.length;e>d;d++)fb(a,b[d],c);return c}function ub(a,b,c,d,e){for(var f,g=[],h=0,i=a.length,j=null!=b;i>h;h++)(f=a[h])&&(!c||c(f,d,e))&&(g.push(f),j&&b.push(h));return g}function vb(a,b,c,d,e,f){return d&&!d[u]&&(d=vb(d)),e&&!e[u]&&(e=vb(e,f)),hb(function(f,g,h,i){var j,k,l,m=[],n=[],o=g.length,p=f||tb(b||"*",h.nodeType?[h]:h,[]),q=!a||!f&&b?p:ub(p,m,a,h,i),r=c?e||(f?a:o||d)?[]:g:q;if(c&&c(q,r,h,i),d){j=ub(r,n),d(j,[],h,i),k=j.length;while(k--)(l=j[k])&&(r[n[k]]=!(q[n[k]]=l))}if(f){if(e||a){if(e){j=[],k=r.length;while(k--)(l=r[k])&&j.push(q[k]=l);e(null,r=[],j,i)}k=r.length;while(k--)(l=r[k])&&(j=e?K.call(f,l):m[k])>-1&&(f[j]=!(g[j]=l))}}else r=ub(r===g?r.splice(o,r.length):r),e?e(null,g,r,i):I.apply(g,r)})}function wb(a){for(var b,c,e,f=a.length,g=d.relative[a[0].type],h=g||d.relative[" "],i=g?1:0,k=rb(function(a){return a===b},h,!0),l=rb(function(a){return K.call(b,a)>-1},h,!0),m=[function(a,c,d){return!g&&(d||c!==j)||((b=c).nodeType?k(a,c,d):l(a,c,d))}];f>i;i++)if(c=d.relative[a[i].type])m=[rb(sb(m),c)];else{if(c=d.filter[a[i].type].apply(null,a[i].matches),c[u]){for(e=++i;f>e;e++)if(d.relative[a[e].type])break;return vb(i>1&&sb(m),i>1&&qb(a.slice(0,i-1).concat({value:" "===a[i-2].type?"*":""})).replace(R,"$1"),c,e>i&&wb(a.slice(i,e)),f>e&&wb(a=a.slice(e)),f>e&&qb(a))}m.push(c)}return sb(m)}function xb(a,b){var c=b.length>0,e=a.length>0,f=function(f,g,h,i,k){var l,m,o,p=0,q="0",r=f&&[],s=[],t=j,u=f||e&&d.find.TAG("*",k),v=w+=null==t?1:Math.random()||.1,x=u.length;for(k&&(j=g!==n&&g);q!==x&&null!=(l=u[q]);q++){if(e&&l){m=0;while(o=a[m++])if(o(l,g,h)){i.push(l);break}k&&(w=v)}c&&((l=!o&&l)&&p--,f&&r.push(l))}if(p+=q,c&&q!==p){m=0;while(o=b[m++])o(r,s,g,h);if(f){if(p>0)while(q--)r[q]||s[q]||(s[q]=G.call(i));s=ub(s)}I.apply(i,s),k&&!f&&s.length>0&&p+b.length>1&&fb.uniqueSort(i)}return k&&(w=v,j=t),r};return c?hb(f):f}return h=fb.compile=function(a,b){var c,d=[],e=[],f=A[a+" "];if(!f){b||(b=g(a)),c=b.length;while(c--)f=wb(b[c]),f[u]?d.push(f):e.push(f);f=A(a,xb(e,d)),f.selector=a}return f},i=fb.select=function(a,b,e,f){var i,j,k,l,m,n="function"==typeof a&&a,o=!f&&g(a=n.selector||a);if(e=e||[],1===o.length){if(j=o[0]=o[0].slice(0),j.length>2&&"ID"===(k=j[0]).type&&c.getById&&9===b.nodeType&&p&&d.relative[j[1].type]){if(b=(d.find.ID(k.matches[0].replace(cb,db),b)||[])[0],!b)return e;n&&(b=b.parentNode),a=a.slice(j.shift().value.length)}i=X.needsContext.test(a)?0:j.length;while(i--){if(k=j[i],d.relative[l=k.type])break;if((m=d.find[l])&&(f=m(k.matches[0].replace(cb,db),ab.test(j[0].type)&&ob(b.parentNode)||b))){if(j.splice(i,1),a=f.length&&qb(j),!a)return I.apply(e,f),e;break}}}return(n||h(a,o))(f,b,!p,e,ab.test(a)&&ob(b.parentNode)||b),e},c.sortStable=u.split("").sort(B).join("")===u,c.detectDuplicates=!!l,m(),c.sortDetached=ib(function(a){return 1&a.compareDocumentPosition(n.createElement("div"))}),ib(function(a){return a.innerHTML="","#"===a.firstChild.getAttribute("href")})||jb("type|href|height|width",function(a,b,c){return c?void 0:a.getAttribute(b,"type"===b.toLowerCase()?1:2)}),c.attributes&&ib(function(a){return a.innerHTML="",a.firstChild.setAttribute("value",""),""===a.firstChild.getAttribute("value")})||jb("value",function(a,b,c){return c||"input"!==a.nodeName.toLowerCase()?void 0:a.defaultValue}),ib(function(a){return null==a.getAttribute("disabled")})||jb(L,function(a,b,c){var d;return c?void 0:a[b]===!0?b.toLowerCase():(d=a.getAttributeNode(b))&&d.specified?d.value:null}),fb}(a);m.find=s,m.expr=s.selectors,m.expr[":"]=m.expr.pseudos,m.unique=s.uniqueSort,m.text=s.getText,m.isXMLDoc=s.isXML,m.contains=s.contains;var t=m.expr.match.needsContext,u=/^<(\w+)\s*\/?>(?:<\/\1>|)$/,v=/^.[^:#\[\.,]*$/;function w(a,b,c){if(m.isFunction(b))return m.grep(a,function(a,d){return!!b.call(a,d,a)!==c});if(b.nodeType)return m.grep(a,function(a){return a===b!==c});if("string"==typeof b){if(v.test(b))return m.filter(b,a,c);b=m.filter(b,a)}return m.grep(a,function(a){return m.inArray(a,b)>=0!==c})}m.filter=function(a,b,c){var d=b[0];return c&&(a=":not("+a+")"),1===b.length&&1===d.nodeType?m.find.matchesSelector(d,a)?[d]:[]:m.find.matches(a,m.grep(b,function(a){return 1===a.nodeType}))},m.fn.extend({find:function(a){var b,c=[],d=this,e=d.length;if("string"!=typeof a)return this.pushStack(m(a).filter(function(){for(b=0;e>b;b++)if(m.contains(d[b],this))return!0}));for(b=0;e>b;b++)m.find(a,d[b],c);return c=this.pushStack(e>1?m.unique(c):c),c.selector=this.selector?this.selector+" "+a:a,c},filter:function(a){return this.pushStack(w(this,a||[],!1))},not:function(a){return this.pushStack(w(this,a||[],!0))},is:function(a){return!!w(this,"string"==typeof a&&t.test(a)?m(a):a||[],!1).length}});var x,y=a.document,z=/^(?:\s*(<[\w\W]+>)[^>]*|#([\w-]*))$/,A=m.fn.init=function(a,b){var c,d;if(!a)return this;if("string"==typeof a){if(c="<"===a.charAt(0)&&">"===a.charAt(a.length-1)&&a.length>=3?[null,a,null]:z.exec(a),!c||!c[1]&&b)return!b||b.jquery?(b||x).find(a):this.constructor(b).find(a);if(c[1]){if(b=b instanceof m?b[0]:b,m.merge(this,m.parseHTML(c[1],b&&b.nodeType?b.ownerDocument||b:y,!0)),u.test(c[1])&&m.isPlainObject(b))for(c in b)m.isFunction(this[c])?this[c](b[c]):this.attr(c,b[c]);return this}if(d=y.getElementById(c[2]),d&&d.parentNode){if(d.id!==c[2])return x.find(a);this.length=1,this[0]=d}return this.context=y,this.selector=a,this}return a.nodeType?(this.context=this[0]=a,this.length=1,this):m.isFunction(a)?"undefined"!=typeof x.ready?x.ready(a):a(m):(void 0!==a.selector&&(this.selector=a.selector,this.context=a.context),m.makeArray(a,this))};A.prototype=m.fn,x=m(y);var B=/^(?:parents|prev(?:Until|All))/,C={children:!0,contents:!0,next:!0,prev:!0};m.extend({dir:function(a,b,c){var d=[],e=a[b];while(e&&9!==e.nodeType&&(void 0===c||1!==e.nodeType||!m(e).is(c)))1===e.nodeType&&d.push(e),e=e[b];return d},sibling:function(a,b){for(var c=[];a;a=a.nextSibling)1===a.nodeType&&a!==b&&c.push(a);return c}}),m.fn.extend({has:function(a){var b,c=m(a,this),d=c.length;return this.filter(function(){for(b=0;d>b;b++)if(m.contains(this,c[b]))return!0})},closest:function(a,b){for(var c,d=0,e=this.length,f=[],g=t.test(a)||"string"!=typeof a?m(a,b||this.context):0;e>d;d++)for(c=this[d];c&&c!==b;c=c.parentNode)if(c.nodeType<11&&(g?g.index(c)>-1:1===c.nodeType&&m.find.matchesSelector(c,a))){f.push(c);break}return this.pushStack(f.length>1?m.unique(f):f)},index:function(a){return a?"string"==typeof a?m.inArray(this[0],m(a)):m.inArray(a.jquery?a[0]:a,this):this[0]&&this[0].parentNode?this.first().prevAll().length:-1},add:function(a,b){return this.pushStack(m.unique(m.merge(this.get(),m(a,b))))},addBack:function(a){return this.add(null==a?this.prevObject:this.prevObject.filter(a))}});function D(a,b){do a=a[b];while(a&&1!==a.nodeType);return a}m.each({parent:function(a){var b=a.parentNode;return b&&11!==b.nodeType?b:null},parents:function(a){return m.dir(a,"parentNode")},parentsUntil:function(a,b,c){return m.dir(a,"parentNode",c)},next:function(a){return D(a,"nextSibling")},prev:function(a){return D(a,"previousSibling")},nextAll:function(a){return m.dir(a,"nextSibling")},prevAll:function(a){return m.dir(a,"previousSibling")},nextUntil:function(a,b,c){return m.dir(a,"nextSibling",c)},prevUntil:function(a,b,c){return m.dir(a,"previousSibling",c)},siblings:function(a){return m.sibling((a.parentNode||{}).firstChild,a)},children:function(a){return m.sibling(a.firstChild)},contents:function(a){return m.nodeName(a,"iframe")?a.contentDocument||a.contentWindow.document:m.merge([],a.childNodes)}},function(a,b){m.fn[a]=function(c,d){var e=m.map(this,b,c);return"Until"!==a.slice(-5)&&(d=c),d&&"string"==typeof d&&(e=m.filter(d,e)),this.length>1&&(C[a]||(e=m.unique(e)),B.test(a)&&(e=e.reverse())),this.pushStack(e)}});var E=/\S+/g,F={};function G(a){var b=F[a]={};return m.each(a.match(E)||[],function(a,c){b[c]=!0}),b}m.Callbacks=function(a){a="string"==typeof a?F[a]||G(a):m.extend({},a);var b,c,d,e,f,g,h=[],i=!a.once&&[],j=function(l){for(c=a.memory&&l,d=!0,f=g||0,g=0,e=h.length,b=!0;h&&e>f;f++)if(h[f].apply(l[0],l[1])===!1&&a.stopOnFalse){c=!1;break}b=!1,h&&(i?i.length&&j(i.shift()):c?h=[]:k.disable())},k={add:function(){if(h){var d=h.length;!function f(b){m.each(b,function(b,c){var d=m.type(c);"function"===d?a.unique&&k.has(c)||h.push(c):c&&c.length&&"string"!==d&&f(c)})}(arguments),b?e=h.length:c&&(g=d,j(c))}return this},remove:function(){return h&&m.each(arguments,function(a,c){var d;while((d=m.inArray(c,h,d))>-1)h.splice(d,1),b&&(e>=d&&e--,f>=d&&f--)}),this},has:function(a){return a?m.inArray(a,h)>-1:!(!h||!h.length)},empty:function(){return h=[],e=0,this},disable:function(){return h=i=c=void 0,this},disabled:function(){return!h},lock:function(){return i=void 0,c||k.disable(),this},locked:function(){return!i},fireWith:function(a,c){return!h||d&&!i||(c=c||[],c=[a,c.slice?c.slice():c],b?i.push(c):j(c)),this},fire:function(){return k.fireWith(this,arguments),this},fired:function(){return!!d}};return k},m.extend({Deferred:function(a){var b=[["resolve","done",m.Callbacks("once memory"),"resolved"],["reject","fail",m.Callbacks("once memory"),"rejected"],["notify","progress",m.Callbacks("memory")]],c="pending",d={state:function(){return c},always:function(){return e.done(arguments).fail(arguments),this},then:function(){var a=arguments;return m.Deferred(function(c){m.each(b,function(b,f){var g=m.isFunction(a[b])&&a[b];e[f[1]](function(){var a=g&&g.apply(this,arguments);a&&m.isFunction(a.promise)?a.promise().done(c.resolve).fail(c.reject).progress(c.notify):c[f[0]+"With"](this===d?c.promise():this,g?[a]:arguments)})}),a=null}).promise()},promise:function(a){return null!=a?m.extend(a,d):d}},e={};return d.pipe=d.then,m.each(b,function(a,f){var g=f[2],h=f[3];d[f[1]]=g.add,h&&g.add(function(){c=h},b[1^a][2].disable,b[2][2].lock),e[f[0]]=function(){return e[f[0]+"With"](this===e?d:this,arguments),this},e[f[0]+"With"]=g.fireWith}),d.promise(e),a&&a.call(e,e),e},when:function(a){var b=0,c=d.call(arguments),e=c.length,f=1!==e||a&&m.isFunction(a.promise)?e:0,g=1===f?a:m.Deferred(),h=function(a,b,c){return function(e){b[a]=this,c[a]=arguments.length>1?d.call(arguments):e,c===i?g.notifyWith(b,c):--f||g.resolveWith(b,c)}},i,j,k;if(e>1)for(i=new Array(e),j=new Array(e),k=new Array(e);e>b;b++)c[b]&&m.isFunction(c[b].promise)?c[b].promise().done(h(b,k,c)).fail(g.reject).progress(h(b,j,i)):--f;return f||g.resolveWith(k,c),g.promise()}});var H;m.fn.ready=function(a){return m.ready.promise().done(a),this},m.extend({isReady:!1,readyWait:1,holdReady:function(a){a?m.readyWait++:m.ready(!0)},ready:function(a){if(a===!0?!--m.readyWait:!m.isReady){if(!y.body)return setTimeout(m.ready);m.isReady=!0,a!==!0&&--m.readyWait>0||(H.resolveWith(y,[m]),m.fn.triggerHandler&&(m(y).triggerHandler("ready"),m(y).off("ready")))}}});function I(){y.addEventListener?(y.removeEventListener("DOMContentLoaded",J,!1),a.removeEventListener("load",J,!1)):(y.detachEvent("onreadystatechange",J),a.detachEvent("onload",J))}function J(){(y.addEventListener||"load"===event.type||"complete"===y.readyState)&&(I(),m.ready())}m.ready.promise=function(b){if(!H)if(H=m.Deferred(),"complete"===y.readyState)setTimeout(m.ready);else if(y.addEventListener)y.addEventListener("DOMContentLoaded",J,!1),a.addEventListener("load",J,!1);else{y.attachEvent("onreadystatechange",J),a.attachEvent("onload",J);var c=!1;try{c=null==a.frameElement&&y.documentElement}catch(d){}c&&c.doScroll&&!function e(){if(!m.isReady){try{c.doScroll("left")}catch(a){return setTimeout(e,50)}I(),m.ready()}}()}return H.promise(b)};var K="undefined",L;for(L in m(k))break;k.ownLast="0"!==L,k.inlineBlockNeedsLayout=!1,m(function(){var a,b,c,d;c=y.getElementsByTagName("body")[0],c&&c.style&&(b=y.createElement("div"),d=y.createElement("div"),d.style.cssText="position:absolute;border:0;width:0;height:0;top:0;left:-9999px",c.appendChild(d).appendChild(b),typeof b.style.zoom!==K&&(b.style.cssText="display:inline;margin:0;border:0;padding:1px;width:1px;zoom:1",k.inlineBlockNeedsLayout=a=3===b.offsetWidth,a&&(c.style.zoom=1)),c.removeChild(d))}),function(){var a=y.createElement("div");if(null==k.deleteExpando){k.deleteExpando=!0;try{delete a.test}catch(b){k.deleteExpando=!1}}a=null}(),m.acceptData=function(a){var b=m.noData[(a.nodeName+" ").toLowerCase()],c=+a.nodeType||1;return 1!==c&&9!==c?!1:!b||b!==!0&&a.getAttribute("classid")===b};var M=/^(?:\{[\w\W]*\}|\[[\w\W]*\])$/,N=/([A-Z])/g;function O(a,b,c){if(void 0===c&&1===a.nodeType){var d="data-"+b.replace(N,"-$1").toLowerCase();if(c=a.getAttribute(d),"string"==typeof c){try{c="true"===c?!0:"false"===c?!1:"null"===c?null:+c+""===c?+c:M.test(c)?m.parseJSON(c):c}catch(e){}m.data(a,b,c)}else c=void 0}return c}function P(a){var b;for(b in a)if(("data"!==b||!m.isEmptyObject(a[b]))&&"toJSON"!==b)return!1;return!0}function Q(a,b,d,e){if(m.acceptData(a)){var f,g,h=m.expando,i=a.nodeType,j=i?m.cache:a,k=i?a[h]:a[h]&&h; -if(k&&j[k]&&(e||j[k].data)||void 0!==d||"string"!=typeof b)return k||(k=i?a[h]=c.pop()||m.guid++:h),j[k]||(j[k]=i?{}:{toJSON:m.noop}),("object"==typeof b||"function"==typeof b)&&(e?j[k]=m.extend(j[k],b):j[k].data=m.extend(j[k].data,b)),g=j[k],e||(g.data||(g.data={}),g=g.data),void 0!==d&&(g[m.camelCase(b)]=d),"string"==typeof b?(f=g[b],null==f&&(f=g[m.camelCase(b)])):f=g,f}}function R(a,b,c){if(m.acceptData(a)){var d,e,f=a.nodeType,g=f?m.cache:a,h=f?a[m.expando]:m.expando;if(g[h]){if(b&&(d=c?g[h]:g[h].data)){m.isArray(b)?b=b.concat(m.map(b,m.camelCase)):b in d?b=[b]:(b=m.camelCase(b),b=b in d?[b]:b.split(" ")),e=b.length;while(e--)delete d[b[e]];if(c?!P(d):!m.isEmptyObject(d))return}(c||(delete g[h].data,P(g[h])))&&(f?m.cleanData([a],!0):k.deleteExpando||g!=g.window?delete g[h]:g[h]=null)}}}m.extend({cache:{},noData:{"applet ":!0,"embed ":!0,"object ":"clsid:D27CDB6E-AE6D-11cf-96B8-444553540000"},hasData:function(a){return a=a.nodeType?m.cache[a[m.expando]]:a[m.expando],!!a&&!P(a)},data:function(a,b,c){return Q(a,b,c)},removeData:function(a,b){return R(a,b)},_data:function(a,b,c){return Q(a,b,c,!0)},_removeData:function(a,b){return R(a,b,!0)}}),m.fn.extend({data:function(a,b){var c,d,e,f=this[0],g=f&&f.attributes;if(void 0===a){if(this.length&&(e=m.data(f),1===f.nodeType&&!m._data(f,"parsedAttrs"))){c=g.length;while(c--)g[c]&&(d=g[c].name,0===d.indexOf("data-")&&(d=m.camelCase(d.slice(5)),O(f,d,e[d])));m._data(f,"parsedAttrs",!0)}return e}return"object"==typeof a?this.each(function(){m.data(this,a)}):arguments.length>1?this.each(function(){m.data(this,a,b)}):f?O(f,a,m.data(f,a)):void 0},removeData:function(a){return this.each(function(){m.removeData(this,a)})}}),m.extend({queue:function(a,b,c){var d;return a?(b=(b||"fx")+"queue",d=m._data(a,b),c&&(!d||m.isArray(c)?d=m._data(a,b,m.makeArray(c)):d.push(c)),d||[]):void 0},dequeue:function(a,b){b=b||"fx";var c=m.queue(a,b),d=c.length,e=c.shift(),f=m._queueHooks(a,b),g=function(){m.dequeue(a,b)};"inprogress"===e&&(e=c.shift(),d--),e&&("fx"===b&&c.unshift("inprogress"),delete f.stop,e.call(a,g,f)),!d&&f&&f.empty.fire()},_queueHooks:function(a,b){var c=b+"queueHooks";return m._data(a,c)||m._data(a,c,{empty:m.Callbacks("once memory").add(function(){m._removeData(a,b+"queue"),m._removeData(a,c)})})}}),m.fn.extend({queue:function(a,b){var c=2;return"string"!=typeof a&&(b=a,a="fx",c--),arguments.lengthh;h++)b(a[h],c,g?d:d.call(a[h],h,b(a[h],c)));return e?a:j?b.call(a):i?b(a[0],c):f},W=/^(?:checkbox|radio)$/i;!function(){var a=y.createElement("input"),b=y.createElement("div"),c=y.createDocumentFragment();if(b.innerHTML="
    a",k.leadingWhitespace=3===b.firstChild.nodeType,k.tbody=!b.getElementsByTagName("tbody").length,k.htmlSerialize=!!b.getElementsByTagName("link").length,k.html5Clone="<:nav>"!==y.createElement("nav").cloneNode(!0).outerHTML,a.type="checkbox",a.checked=!0,c.appendChild(a),k.appendChecked=a.checked,b.innerHTML="",k.noCloneChecked=!!b.cloneNode(!0).lastChild.defaultValue,c.appendChild(b),b.innerHTML="",k.checkClone=b.cloneNode(!0).cloneNode(!0).lastChild.checked,k.noCloneEvent=!0,b.attachEvent&&(b.attachEvent("onclick",function(){k.noCloneEvent=!1}),b.cloneNode(!0).click()),null==k.deleteExpando){k.deleteExpando=!0;try{delete b.test}catch(d){k.deleteExpando=!1}}}(),function(){var b,c,d=y.createElement("div");for(b in{submit:!0,change:!0,focusin:!0})c="on"+b,(k[b+"Bubbles"]=c in a)||(d.setAttribute(c,"t"),k[b+"Bubbles"]=d.attributes[c].expando===!1);d=null}();var X=/^(?:input|select|textarea)$/i,Y=/^key/,Z=/^(?:mouse|pointer|contextmenu)|click/,$=/^(?:focusinfocus|focusoutblur)$/,_=/^([^.]*)(?:\.(.+)|)$/;function ab(){return!0}function bb(){return!1}function cb(){try{return y.activeElement}catch(a){}}m.event={global:{},add:function(a,b,c,d,e){var f,g,h,i,j,k,l,n,o,p,q,r=m._data(a);if(r){c.handler&&(i=c,c=i.handler,e=i.selector),c.guid||(c.guid=m.guid++),(g=r.events)||(g=r.events={}),(k=r.handle)||(k=r.handle=function(a){return typeof m===K||a&&m.event.triggered===a.type?void 0:m.event.dispatch.apply(k.elem,arguments)},k.elem=a),b=(b||"").match(E)||[""],h=b.length;while(h--)f=_.exec(b[h])||[],o=q=f[1],p=(f[2]||"").split(".").sort(),o&&(j=m.event.special[o]||{},o=(e?j.delegateType:j.bindType)||o,j=m.event.special[o]||{},l=m.extend({type:o,origType:q,data:d,handler:c,guid:c.guid,selector:e,needsContext:e&&m.expr.match.needsContext.test(e),namespace:p.join(".")},i),(n=g[o])||(n=g[o]=[],n.delegateCount=0,j.setup&&j.setup.call(a,d,p,k)!==!1||(a.addEventListener?a.addEventListener(o,k,!1):a.attachEvent&&a.attachEvent("on"+o,k))),j.add&&(j.add.call(a,l),l.handler.guid||(l.handler.guid=c.guid)),e?n.splice(n.delegateCount++,0,l):n.push(l),m.event.global[o]=!0);a=null}},remove:function(a,b,c,d,e){var f,g,h,i,j,k,l,n,o,p,q,r=m.hasData(a)&&m._data(a);if(r&&(k=r.events)){b=(b||"").match(E)||[""],j=b.length;while(j--)if(h=_.exec(b[j])||[],o=q=h[1],p=(h[2]||"").split(".").sort(),o){l=m.event.special[o]||{},o=(d?l.delegateType:l.bindType)||o,n=k[o]||[],h=h[2]&&new RegExp("(^|\\.)"+p.join("\\.(?:.*\\.|)")+"(\\.|$)"),i=f=n.length;while(f--)g=n[f],!e&&q!==g.origType||c&&c.guid!==g.guid||h&&!h.test(g.namespace)||d&&d!==g.selector&&("**"!==d||!g.selector)||(n.splice(f,1),g.selector&&n.delegateCount--,l.remove&&l.remove.call(a,g));i&&!n.length&&(l.teardown&&l.teardown.call(a,p,r.handle)!==!1||m.removeEvent(a,o,r.handle),delete k[o])}else for(o in k)m.event.remove(a,o+b[j],c,d,!0);m.isEmptyObject(k)&&(delete r.handle,m._removeData(a,"events"))}},trigger:function(b,c,d,e){var f,g,h,i,k,l,n,o=[d||y],p=j.call(b,"type")?b.type:b,q=j.call(b,"namespace")?b.namespace.split("."):[];if(h=l=d=d||y,3!==d.nodeType&&8!==d.nodeType&&!$.test(p+m.event.triggered)&&(p.indexOf(".")>=0&&(q=p.split("."),p=q.shift(),q.sort()),g=p.indexOf(":")<0&&"on"+p,b=b[m.expando]?b:new m.Event(p,"object"==typeof b&&b),b.isTrigger=e?2:3,b.namespace=q.join("."),b.namespace_re=b.namespace?new RegExp("(^|\\.)"+q.join("\\.(?:.*\\.|)")+"(\\.|$)"):null,b.result=void 0,b.target||(b.target=d),c=null==c?[b]:m.makeArray(c,[b]),k=m.event.special[p]||{},e||!k.trigger||k.trigger.apply(d,c)!==!1)){if(!e&&!k.noBubble&&!m.isWindow(d)){for(i=k.delegateType||p,$.test(i+p)||(h=h.parentNode);h;h=h.parentNode)o.push(h),l=h;l===(d.ownerDocument||y)&&o.push(l.defaultView||l.parentWindow||a)}n=0;while((h=o[n++])&&!b.isPropagationStopped())b.type=n>1?i:k.bindType||p,f=(m._data(h,"events")||{})[b.type]&&m._data(h,"handle"),f&&f.apply(h,c),f=g&&h[g],f&&f.apply&&m.acceptData(h)&&(b.result=f.apply(h,c),b.result===!1&&b.preventDefault());if(b.type=p,!e&&!b.isDefaultPrevented()&&(!k._default||k._default.apply(o.pop(),c)===!1)&&m.acceptData(d)&&g&&d[p]&&!m.isWindow(d)){l=d[g],l&&(d[g]=null),m.event.triggered=p;try{d[p]()}catch(r){}m.event.triggered=void 0,l&&(d[g]=l)}return b.result}},dispatch:function(a){a=m.event.fix(a);var b,c,e,f,g,h=[],i=d.call(arguments),j=(m._data(this,"events")||{})[a.type]||[],k=m.event.special[a.type]||{};if(i[0]=a,a.delegateTarget=this,!k.preDispatch||k.preDispatch.call(this,a)!==!1){h=m.event.handlers.call(this,a,j),b=0;while((f=h[b++])&&!a.isPropagationStopped()){a.currentTarget=f.elem,g=0;while((e=f.handlers[g++])&&!a.isImmediatePropagationStopped())(!a.namespace_re||a.namespace_re.test(e.namespace))&&(a.handleObj=e,a.data=e.data,c=((m.event.special[e.origType]||{}).handle||e.handler).apply(f.elem,i),void 0!==c&&(a.result=c)===!1&&(a.preventDefault(),a.stopPropagation()))}return k.postDispatch&&k.postDispatch.call(this,a),a.result}},handlers:function(a,b){var c,d,e,f,g=[],h=b.delegateCount,i=a.target;if(h&&i.nodeType&&(!a.button||"click"!==a.type))for(;i!=this;i=i.parentNode||this)if(1===i.nodeType&&(i.disabled!==!0||"click"!==a.type)){for(e=[],f=0;h>f;f++)d=b[f],c=d.selector+" ",void 0===e[c]&&(e[c]=d.needsContext?m(c,this).index(i)>=0:m.find(c,this,null,[i]).length),e[c]&&e.push(d);e.length&&g.push({elem:i,handlers:e})}return h]","i"),hb=/^\s+/,ib=/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^>]*)\/>/gi,jb=/<([\w:]+)/,kb=/\s*$/g,rb={option:[1,""],legend:[1,"
    ","
    "],area:[1,"",""],param:[1,"",""],thead:[1,"","
    "],tr:[2,"","
    "],col:[2,"","
    "],td:[3,"","
    "],_default:k.htmlSerialize?[0,"",""]:[1,"X
    ","
    "]},sb=db(y),tb=sb.appendChild(y.createElement("div"));rb.optgroup=rb.option,rb.tbody=rb.tfoot=rb.colgroup=rb.caption=rb.thead,rb.th=rb.td;function ub(a,b){var c,d,e=0,f=typeof a.getElementsByTagName!==K?a.getElementsByTagName(b||"*"):typeof a.querySelectorAll!==K?a.querySelectorAll(b||"*"):void 0;if(!f)for(f=[],c=a.childNodes||a;null!=(d=c[e]);e++)!b||m.nodeName(d,b)?f.push(d):m.merge(f,ub(d,b));return void 0===b||b&&m.nodeName(a,b)?m.merge([a],f):f}function vb(a){W.test(a.type)&&(a.defaultChecked=a.checked)}function wb(a,b){return m.nodeName(a,"table")&&m.nodeName(11!==b.nodeType?b:b.firstChild,"tr")?a.getElementsByTagName("tbody")[0]||a.appendChild(a.ownerDocument.createElement("tbody")):a}function xb(a){return a.type=(null!==m.find.attr(a,"type"))+"/"+a.type,a}function yb(a){var b=pb.exec(a.type);return b?a.type=b[1]:a.removeAttribute("type"),a}function zb(a,b){for(var c,d=0;null!=(c=a[d]);d++)m._data(c,"globalEval",!b||m._data(b[d],"globalEval"))}function Ab(a,b){if(1===b.nodeType&&m.hasData(a)){var c,d,e,f=m._data(a),g=m._data(b,f),h=f.events;if(h){delete g.handle,g.events={};for(c in h)for(d=0,e=h[c].length;e>d;d++)m.event.add(b,c,h[c][d])}g.data&&(g.data=m.extend({},g.data))}}function Bb(a,b){var c,d,e;if(1===b.nodeType){if(c=b.nodeName.toLowerCase(),!k.noCloneEvent&&b[m.expando]){e=m._data(b);for(d in e.events)m.removeEvent(b,d,e.handle);b.removeAttribute(m.expando)}"script"===c&&b.text!==a.text?(xb(b).text=a.text,yb(b)):"object"===c?(b.parentNode&&(b.outerHTML=a.outerHTML),k.html5Clone&&a.innerHTML&&!m.trim(b.innerHTML)&&(b.innerHTML=a.innerHTML)):"input"===c&&W.test(a.type)?(b.defaultChecked=b.checked=a.checked,b.value!==a.value&&(b.value=a.value)):"option"===c?b.defaultSelected=b.selected=a.defaultSelected:("input"===c||"textarea"===c)&&(b.defaultValue=a.defaultValue)}}m.extend({clone:function(a,b,c){var d,e,f,g,h,i=m.contains(a.ownerDocument,a);if(k.html5Clone||m.isXMLDoc(a)||!gb.test("<"+a.nodeName+">")?f=a.cloneNode(!0):(tb.innerHTML=a.outerHTML,tb.removeChild(f=tb.firstChild)),!(k.noCloneEvent&&k.noCloneChecked||1!==a.nodeType&&11!==a.nodeType||m.isXMLDoc(a)))for(d=ub(f),h=ub(a),g=0;null!=(e=h[g]);++g)d[g]&&Bb(e,d[g]);if(b)if(c)for(h=h||ub(a),d=d||ub(f),g=0;null!=(e=h[g]);g++)Ab(e,d[g]);else Ab(a,f);return d=ub(f,"script"),d.length>0&&zb(d,!i&&ub(a,"script")),d=h=e=null,f},buildFragment:function(a,b,c,d){for(var e,f,g,h,i,j,l,n=a.length,o=db(b),p=[],q=0;n>q;q++)if(f=a[q],f||0===f)if("object"===m.type(f))m.merge(p,f.nodeType?[f]:f);else if(lb.test(f)){h=h||o.appendChild(b.createElement("div")),i=(jb.exec(f)||["",""])[1].toLowerCase(),l=rb[i]||rb._default,h.innerHTML=l[1]+f.replace(ib,"<$1>")+l[2],e=l[0];while(e--)h=h.lastChild;if(!k.leadingWhitespace&&hb.test(f)&&p.push(b.createTextNode(hb.exec(f)[0])),!k.tbody){f="table"!==i||kb.test(f)?""!==l[1]||kb.test(f)?0:h:h.firstChild,e=f&&f.childNodes.length;while(e--)m.nodeName(j=f.childNodes[e],"tbody")&&!j.childNodes.length&&f.removeChild(j)}m.merge(p,h.childNodes),h.textContent="";while(h.firstChild)h.removeChild(h.firstChild);h=o.lastChild}else p.push(b.createTextNode(f));h&&o.removeChild(h),k.appendChecked||m.grep(ub(p,"input"),vb),q=0;while(f=p[q++])if((!d||-1===m.inArray(f,d))&&(g=m.contains(f.ownerDocument,f),h=ub(o.appendChild(f),"script"),g&&zb(h),c)){e=0;while(f=h[e++])ob.test(f.type||"")&&c.push(f)}return h=null,o},cleanData:function(a,b){for(var d,e,f,g,h=0,i=m.expando,j=m.cache,l=k.deleteExpando,n=m.event.special;null!=(d=a[h]);h++)if((b||m.acceptData(d))&&(f=d[i],g=f&&j[f])){if(g.events)for(e in g.events)n[e]?m.event.remove(d,e):m.removeEvent(d,e,g.handle);j[f]&&(delete j[f],l?delete d[i]:typeof d.removeAttribute!==K?d.removeAttribute(i):d[i]=null,c.push(f))}}}),m.fn.extend({text:function(a){return V(this,function(a){return void 0===a?m.text(this):this.empty().append((this[0]&&this[0].ownerDocument||y).createTextNode(a))},null,a,arguments.length)},append:function(){return this.domManip(arguments,function(a){if(1===this.nodeType||11===this.nodeType||9===this.nodeType){var b=wb(this,a);b.appendChild(a)}})},prepend:function(){return this.domManip(arguments,function(a){if(1===this.nodeType||11===this.nodeType||9===this.nodeType){var b=wb(this,a);b.insertBefore(a,b.firstChild)}})},before:function(){return this.domManip(arguments,function(a){this.parentNode&&this.parentNode.insertBefore(a,this)})},after:function(){return this.domManip(arguments,function(a){this.parentNode&&this.parentNode.insertBefore(a,this.nextSibling)})},remove:function(a,b){for(var c,d=a?m.filter(a,this):this,e=0;null!=(c=d[e]);e++)b||1!==c.nodeType||m.cleanData(ub(c)),c.parentNode&&(b&&m.contains(c.ownerDocument,c)&&zb(ub(c,"script")),c.parentNode.removeChild(c));return this},empty:function(){for(var a,b=0;null!=(a=this[b]);b++){1===a.nodeType&&m.cleanData(ub(a,!1));while(a.firstChild)a.removeChild(a.firstChild);a.options&&m.nodeName(a,"select")&&(a.options.length=0)}return this},clone:function(a,b){return a=null==a?!1:a,b=null==b?a:b,this.map(function(){return m.clone(this,a,b)})},html:function(a){return V(this,function(a){var b=this[0]||{},c=0,d=this.length;if(void 0===a)return 1===b.nodeType?b.innerHTML.replace(fb,""):void 0;if(!("string"!=typeof a||mb.test(a)||!k.htmlSerialize&&gb.test(a)||!k.leadingWhitespace&&hb.test(a)||rb[(jb.exec(a)||["",""])[1].toLowerCase()])){a=a.replace(ib,"<$1>");try{for(;d>c;c++)b=this[c]||{},1===b.nodeType&&(m.cleanData(ub(b,!1)),b.innerHTML=a);b=0}catch(e){}}b&&this.empty().append(a)},null,a,arguments.length)},replaceWith:function(){var a=arguments[0];return this.domManip(arguments,function(b){a=this.parentNode,m.cleanData(ub(this)),a&&a.replaceChild(b,this)}),a&&(a.length||a.nodeType)?this:this.remove()},detach:function(a){return this.remove(a,!0)},domManip:function(a,b){a=e.apply([],a);var c,d,f,g,h,i,j=0,l=this.length,n=this,o=l-1,p=a[0],q=m.isFunction(p);if(q||l>1&&"string"==typeof p&&!k.checkClone&&nb.test(p))return this.each(function(c){var d=n.eq(c);q&&(a[0]=p.call(this,c,d.html())),d.domManip(a,b)});if(l&&(i=m.buildFragment(a,this[0].ownerDocument,!1,this),c=i.firstChild,1===i.childNodes.length&&(i=c),c)){for(g=m.map(ub(i,"script"),xb),f=g.length;l>j;j++)d=i,j!==o&&(d=m.clone(d,!0,!0),f&&m.merge(g,ub(d,"script"))),b.call(this[j],d,j);if(f)for(h=g[g.length-1].ownerDocument,m.map(g,yb),j=0;f>j;j++)d=g[j],ob.test(d.type||"")&&!m._data(d,"globalEval")&&m.contains(h,d)&&(d.src?m._evalUrl&&m._evalUrl(d.src):m.globalEval((d.text||d.textContent||d.innerHTML||"").replace(qb,"")));i=c=null}return this}}),m.each({appendTo:"append",prependTo:"prepend",insertBefore:"before",insertAfter:"after",replaceAll:"replaceWith"},function(a,b){m.fn[a]=function(a){for(var c,d=0,e=[],g=m(a),h=g.length-1;h>=d;d++)c=d===h?this:this.clone(!0),m(g[d])[b](c),f.apply(e,c.get());return this.pushStack(e)}});var Cb,Db={};function Eb(b,c){var d,e=m(c.createElement(b)).appendTo(c.body),f=a.getDefaultComputedStyle&&(d=a.getDefaultComputedStyle(e[0]))?d.display:m.css(e[0],"display");return e.detach(),f}function Fb(a){var b=y,c=Db[a];return c||(c=Eb(a,b),"none"!==c&&c||(Cb=(Cb||m("',srcAction:"iframe_src",patterns:{youtube:{index:"youtube.com",id:"v=",src:"//www.youtube.com/embed/%id%?autoplay=1"},vimeo:{index:"vimeo.com/",id:"/",src:"//player.vimeo.com/video/%id%?autoplay=1"},gmaps:{index:"//maps.google.",src:"%id%&output=embed"}}},proto:{initIframe:function(){t.types.push(Z),x("BeforeChange",function(e,t,n){t!==n&&(t===Z?D():n===Z&&D(!0))}),x(l+"."+Z,function(){D()})},getIframe:function(n,i){var o=n.src,r=t.st.iframe;e.each(r.patterns,function(){return o.indexOf(this.index)>-1?(this.id&&(o="string"==typeof this.id?o.substr(o.lastIndexOf(this.id)+this.id.length,o.length):this.id.call(this,o)),o=this.src.replace("%id%",o),!1):void 0});var a={};return r.srcAction&&(a[r.srcAction]=o),t._parseMarkup(i,a,n),t.updateStatus("ready"),i}}});var K=function(e){var n=t.items.length;return e>n-1?e-n:0>e?n+e:e},Y=function(e,t,n){return e.replace(/%curr%/gi,t+1).replace(/%total%/gi,n)};e.magnificPopup.registerModule("gallery",{options:{enabled:!1,arrowMarkup:'',preload:[0,2],navigateByImgClick:!0,arrows:!0,tPrev:"Previous (Left arrow key)",tNext:"Next (Right arrow key)",tCounter:"%curr% of %total%"},proto:{initGallery:function(){var n=t.st.gallery,i=".mfp-gallery",r=Boolean(e.fn.mfpFastClick);return t.direction=!0,n&&n.enabled?(a+=" mfp-gallery",x(f+i,function(){n.navigateByImgClick&&t.wrap.on("click"+i,".mfp-img",function(){return t.items.length>1?(t.next(),!1):void 0}),o.on("keydown"+i,function(e){37===e.keyCode?t.prev():39===e.keyCode&&t.next()})}),x("UpdateStatus"+i,function(e,n){n.text&&(n.text=Y(n.text,t.currItem.index,t.items.length))}),x(p+i,function(e,i,o,r){var a=t.items.length;o.counter=a>1?Y(n.tCounter,r.index,a):""}),x("BuildControls"+i,function(){if(t.items.length>1&&n.arrows&&!t.arrowLeft){var i=n.arrowMarkup,o=t.arrowLeft=e(i.replace(/%title%/gi,n.tPrev).replace(/%dir%/gi,"left")).addClass(y),a=t.arrowRight=e(i.replace(/%title%/gi,n.tNext).replace(/%dir%/gi,"right")).addClass(y),s=r?"mfpFastClick":"click";o[s](function(){t.prev()}),a[s](function(){t.next()}),t.isIE7&&(k("b",o[0],!1,!0),k("a",o[0],!1,!0),k("b",a[0],!1,!0),k("a",a[0],!1,!0)),t.container.append(o.add(a))}}),x(m+i,function(){t._preloadTimeout&&clearTimeout(t._preloadTimeout),t._preloadTimeout=setTimeout(function(){t.preloadNearbyImages(),t._preloadTimeout=null},16)}),x(l+i,function(){o.off(i),t.wrap.off("click"+i),t.arrowLeft&&r&&t.arrowLeft.add(t.arrowRight).destroyMfpFastClick(),t.arrowRight=t.arrowLeft=null}),void 0):!1},next:function(){t.direction=!0,t.index=K(t.index+1),t.updateItemHTML()},prev:function(){t.direction=!1,t.index=K(t.index-1),t.updateItemHTML()},goTo:function(e){t.direction=e>=t.index,t.index=e,t.updateItemHTML()},preloadNearbyImages:function(){var e,n=t.st.gallery.preload,i=Math.min(n[0],t.items.length),o=Math.min(n[1],t.items.length);for(e=1;(t.direction?o:i)>=e;e++)t._preloadItem(t.index+e);for(e=1;(t.direction?i:o)>=e;e++)t._preloadItem(t.index-e)},_preloadItem:function(n){if(n=K(n),!t.items[n].preloaded){var i=t.items[n];i.parsed||(i=t.parseEl(n)),T("LazyLoad",i),"image"===i.type&&(i.img=e('').on("load.mfploader",function(){i.hasSize=!0}).on("error.mfploader",function(){i.hasSize=!0,i.loadError=!0,T("LazyLoadError",i)}).attr("src",i.src)),i.preloaded=!0}}}});var U="retina";e.magnificPopup.registerModule(U,{options:{replaceSrc:function(e){return e.src.replace(/\.\w+$/,function(e){return"@2x"+e})},ratio:1},proto:{initRetina:function(){if(window.devicePixelRatio>1){var e=t.st.retina,n=e.ratio;n=isNaN(n)?n():n,n>1&&(x("ImageHasSize."+U,function(e,t){t.img.css({"max-width":t.img[0].naturalWidth/n,width:"100%"})}),x("ElementParse."+U,function(t,i){i.src=e.replaceSrc(i,n)}))}}}}),function(){var t=1e3,n="ontouchstart"in window,i=function(){I.off("touchmove"+r+" touchend"+r)},o="mfpFastClick",r="."+o;e.fn.mfpFastClick=function(o){return e(this).each(function(){var a,s=e(this);if(n){var l,c,d,u,p,f;s.on("touchstart"+r,function(e){u=!1,f=1,p=e.originalEvent?e.originalEvent.touches[0]:e.touches[0],c=p.clientX,d=p.clientY,I.on("touchmove"+r,function(e){p=e.originalEvent?e.originalEvent.touches:e.touches,f=p.length,p=p[0],(Math.abs(p.clientX-c)>10||Math.abs(p.clientY-d)>10)&&(u=!0,i())}).on("touchend"+r,function(e){i(),u||f>1||(a=!0,e.preventDefault(),clearTimeout(l),l=setTimeout(function(){a=!1},t),o())})})}s.on("click"+r,function(){a||o()})})},e.fn.destroyMfpFastClick=function(){e(this).off("touchstart"+r+" click"+r),n&&I.off("touchmove"+r+" touchend"+r)}}(),_()})(window.jQuery||window.Zepto); \ No newline at end of file diff --git a/public/ng/js/lib/jquery.tipsy.js b/public/ng/js/lib/jquery.tipsy.js deleted file mode 100644 index f95c063f..00000000 --- a/public/ng/js/lib/jquery.tipsy.js +++ /dev/null @@ -1,258 +0,0 @@ -// tipsy, facebook style tooltips for jquery -// version 1.0.0a -// (c) 2008-2010 jason frame [jason@onehackoranother.com] -// released under the MIT license - -(function($) { - - function maybeCall(thing, ctx) { - return (typeof thing == 'function') ? (thing.call(ctx)) : thing; - }; - - function isElementInDOM(ele) { - while (ele = ele.parentNode) { - if (ele == document) return true; - } - return false; - }; - - function Tipsy(element, options) { - this.$element = $(element); - this.options = options; - this.enabled = true; - this.fixTitle(); - }; - - Tipsy.prototype = { - show: function() { - var title = this.getTitle(); - if (title && this.enabled) { - var $tip = this.tip(); - - $tip.find('.tipsy-inner')[this.options.html ? 'html' : 'text'](title); - $tip[0].className = 'tipsy'; // reset classname in case of dynamic gravity - $tip.remove().css({top: 0, left: 0, visibility: 'hidden', display: 'block'}).prependTo(document.body); - - var pos = $.extend({}, this.$element.offset(), { - width: this.$element[0].offsetWidth, - height: this.$element[0].offsetHeight - }); - - var actualWidth = $tip[0].offsetWidth, - actualHeight = $tip[0].offsetHeight, - gravity = maybeCall(this.options.gravity, this.$element[0]); - - var tp; - switch (gravity.charAt(0)) { - case 'n': - tp = {top: pos.top + pos.height + this.options.offset, left: pos.left + pos.width / 2 - actualWidth / 2}; - break; - case 's': - tp = {top: pos.top - actualHeight - this.options.offset, left: pos.left + pos.width / 2 - actualWidth / 2}; - break; - case 'e': - tp = {top: pos.top + pos.height / 2 - actualHeight / 2, left: pos.left - actualWidth - this.options.offset}; - break; - case 'w': - tp = {top: pos.top + pos.height / 2 - actualHeight / 2, left: pos.left + pos.width + this.options.offset}; - break; - } - - if (gravity.length == 2) { - if (gravity.charAt(1) == 'w') { - tp.left = pos.left + pos.width / 2 - 15; - } else { - tp.left = pos.left + pos.width / 2 - actualWidth + 15; - } - } - - $tip.css(tp).addClass('tipsy-' + gravity); - $tip.find('.tipsy-arrow')[0].className = 'tipsy-arrow tipsy-arrow-' + gravity.charAt(0); - if (this.options.className) { - $tip.addClass(maybeCall(this.options.className, this.$element[0])); - } - - if (this.options.fade) { - $tip.stop().css({opacity: 0, display: 'block', visibility: 'visible'}).animate({opacity: this.options.opacity}); - } else { - $tip.css({visibility: 'visible', opacity: this.options.opacity}); - } - } - }, - - hide: function() { - if (this.options.fade) { - this.tip().stop().fadeOut(function() { $(this).remove(); }); - } else { - this.tip().remove(); - } - }, - - fixTitle: function() { - var $e = this.$element; - if ($e.attr('title') || typeof($e.attr('original-title')) != 'string') { - $e.attr('original-title', $e.attr('title') || '').removeAttr('title'); - } - }, - - getTitle: function() { - var title, $e = this.$element, o = this.options; - this.fixTitle(); - var title, o = this.options; - if (typeof o.title == 'string') { - title = $e.attr(o.title == 'title' ? 'original-title' : o.title); - } else if (typeof o.title == 'function') { - title = o.title.call($e[0]); - } - title = ('' + title).replace(/(^\s*|\s*$)/, ""); - return title || o.fallback; - }, - - tip: function() { - if (!this.$tip) { - this.$tip = $('
    ').html('
    '); - this.$tip.data('tipsy-pointee', this.$element[0]); - } - return this.$tip; - }, - - validate: function() { - if (!this.$element[0].parentNode) { - this.hide(); - this.$element = null; - this.options = null; - } - }, - - enable: function() { this.enabled = true; }, - disable: function() { this.enabled = false; }, - toggleEnabled: function() { this.enabled = !this.enabled; } - }; - - $.fn.tipsy = function(options) { - - if (options === true) { - return this.data('tipsy'); - } else if (typeof options == 'string') { - var tipsy = this.data('tipsy'); - if (tipsy) tipsy[options](); - return this; - } - - options = $.extend({}, $.fn.tipsy.defaults, options); - - function get(ele) { - var tipsy = $.data(ele, 'tipsy'); - if (!tipsy) { - tipsy = new Tipsy(ele, $.fn.tipsy.elementOptions(ele, options)); - $.data(ele, 'tipsy', tipsy); - } - return tipsy; - } - - function enter() { - var tipsy = get(this); - tipsy.hoverState = 'in'; - if (options.delayIn == 0) { - tipsy.show(); - } else { - tipsy.fixTitle(); - setTimeout(function() { if (tipsy.hoverState == 'in') tipsy.show(); }, options.delayIn); - } - }; - - function leave() { - var tipsy = get(this); - tipsy.hoverState = 'out'; - if (options.delayOut == 0) { - tipsy.hide(); - } else { - setTimeout(function() { if (tipsy.hoverState == 'out') tipsy.hide(); }, options.delayOut); - } - }; - - if (!options.live) this.each(function() { get(this); }); - - if (options.trigger != 'manual') { - var binder = options.live ? 'live' : 'bind', - eventIn = options.trigger == 'hover' ? 'mouseenter' : 'focus', - eventOut = options.trigger == 'hover' ? 'mouseleave' : 'blur'; - this[binder](eventIn, enter)[binder](eventOut, leave); - } - - return this; - - }; - - $.fn.tipsy.defaults = { - className: null, - delayIn: 0, - delayOut: 0, - fade: false, - fallback: '', - gravity: 'n', - html: false, - live: false, - offset: 0, - opacity: 0.8, - title: 'title', - trigger: 'hover' - }; - - $.fn.tipsy.revalidate = function() { - $('.tipsy').each(function() { - var pointee = $.data(this, 'tipsy-pointee'); - if (!pointee || !isElementInDOM(pointee)) { - $(this).remove(); - } - }); - }; - - // Overwrite this method to provide options on a per-element basis. - // For example, you could store the gravity in a 'tipsy-gravity' attribute: - // return $.extend({}, options, {gravity: $(ele).attr('tipsy-gravity') || 'n' }); - // (remember - do not modify 'options' in place!) - $.fn.tipsy.elementOptions = function(ele, options) { - return $.metadata ? $.extend({}, options, $(ele).metadata()) : options; - }; - - $.fn.tipsy.autoNS = function() { - return $(this).offset().top > ($(document).scrollTop() + $(window).height() / 2) ? 's' : 'n'; - }; - - $.fn.tipsy.autoWE = function() { - return $(this).offset().left > ($(document).scrollLeft() + $(window).width() / 2) ? 'e' : 'w'; - }; - - /** - * yields a closure of the supplied parameters, producing a function that takes - * no arguments and is suitable for use as an autogravity function like so: - * - * @param margin (int) - distance from the viewable region edge that an - * element should be before setting its tooltip's gravity to be away - * from that edge. - * @param prefer (string, e.g. 'n', 'sw', 'w') - the direction to prefer - * if there are no viewable region edges effecting the tooltip's - * gravity. It will try to vary from this minimally, for example, - * if 'sw' is preferred and an element is near the right viewable - * region edge, but not the top edge, it will set the gravity for - * that element's tooltip to be 'se', preserving the southern - * component. - */ - $.fn.tipsy.autoBounds = function(margin, prefer) { - return function() { - var dir = {ns: prefer[0], ew: (prefer.length > 1 ? prefer[1] : false)}, - boundTop = $(document).scrollTop() + margin, - boundLeft = $(document).scrollLeft() + margin, - $this = $(this); - - if ($this.offset().top < boundTop) dir.ns = 'n'; - if ($this.offset().left < boundLeft) dir.ew = 'w'; - if ($(window).width() + $(document).scrollLeft() - $this.offset().left < margin) dir.ew = 'e'; - if ($(window).height() + $(document).scrollTop() - $this.offset().top < margin) dir.ns = 's'; - - return dir.ns + (dir.ew ? dir.ew : ''); - } - }; - -})(jQuery); diff --git a/public/ng/js/lib/lib.js b/public/ng/js/lib/lib.js deleted file mode 100644 index 5e95433d..00000000 --- a/public/ng/js/lib/lib.js +++ /dev/null @@ -1,168 +0,0 @@ -// pretty print -!function(){var q=null;window.PR_SHOULD_USE_CONTINUATION=!0; -(function(){function S(a){function d(e){var b=e.charCodeAt(0);if(b!==92)return b;var a=e.charAt(1);return(b=r[a])?b:"0"<=a&&a<="7"?parseInt(e.substring(1),8):a==="u"||a==="x"?parseInt(e.substring(2),16):e.charCodeAt(1)}function g(e){if(e<32)return(e<16?"\\x0":"\\x")+e.toString(16);e=String.fromCharCode(e);return e==="\\"||e==="-"||e==="]"||e==="^"?"\\"+e:e}function b(e){var b=e.substring(1,e.length-1).match(/\\u[\dA-Fa-f]{4}|\\x[\dA-Fa-f]{2}|\\[0-3][0-7]{0,2}|\\[0-7]{1,2}|\\[\S\s]|[^\\]/g),e=[],a= -b[0]==="^",c=["["];a&&c.push("^");for(var a=a?1:0,f=b.length;a122||(l<65||h>90||e.push([Math.max(65,h)|32,Math.min(l,90)|32]),l<97||h>122||e.push([Math.max(97,h)&-33,Math.min(l,122)&-33]))}}e.sort(function(e,a){return e[0]-a[0]||a[1]-e[1]});b=[];f=[];for(a=0;ah[0]&&(h[1]+1>h[0]&&c.push("-"),c.push(g(h[1])));c.push("]");return c.join("")}function s(e){for(var a=e.source.match(/\[(?:[^\\\]]|\\[\S\s])*]|\\u[\dA-Fa-f]{4}|\\x[\dA-Fa-f]{2}|\\\d+|\\[^\dux]|\(\?[!:=]|[()^]|[^()[\\^]+/g),c=a.length,d=[],f=0,h=0;f=2&&e==="["?a[f]=b(l):e!=="\\"&&(a[f]=l.replace(/[A-Za-z]/g,function(a){a=a.charCodeAt(0);return"["+String.fromCharCode(a&-33,a|32)+"]"}));return a.join("")}for(var x=0,m=!1,j=!1,k=0,c=a.length;k=5&&"lang-"===w.substring(0,5))&&!(t&&typeof t[1]==="string"))f=!1,w="src";f||(r[z]=w)}h=c;c+=z.length;if(f){f=t[1];var l=z.indexOf(f),B=l+f.length;t[2]&&(B=z.length-t[2].length,l=B-f.length);w=w.substring(5);H(j+h,z.substring(0,l),g,k);H(j+h+l,f,I(w,f),k);H(j+h+B,z.substring(B),g,k)}else k.push(j+h,w)}a.g=k}var b={},s;(function(){for(var g=a.concat(d),j=[],k={},c=0,i=g.length;c=0;)b[n.charAt(e)]=r;r=r[1];n=""+r;k.hasOwnProperty(n)||(j.push(r),k[n]=q)}j.push(/[\S\s]/);s=S(j)})();var x=d.length;return g}function v(a){var d=[],g=[];a.tripleQuotedStrings?d.push(["str",/^(?:'''(?:[^'\\]|\\[\S\s]|''?(?=[^']))*(?:'''|$)|"""(?:[^"\\]|\\[\S\s]|""?(?=[^"]))*(?:"""|$)|'(?:[^'\\]|\\[\S\s])*(?:'|$)|"(?:[^"\\]|\\[\S\s])*(?:"|$))/,q,"'\""]):a.multiLineStrings?d.push(["str",/^(?:'(?:[^'\\]|\\[\S\s])*(?:'|$)|"(?:[^"\\]|\\[\S\s])*(?:"|$)|`(?:[^\\`]|\\[\S\s])*(?:`|$))/, -q,"'\"`"]):d.push(["str",/^(?:'(?:[^\n\r'\\]|\\.)*(?:'|$)|"(?:[^\n\r"\\]|\\.)*(?:"|$))/,q,"\"'"]);a.verbatimStrings&&g.push(["str",/^@"(?:[^"]|"")*(?:"|$)/,q]);var b=a.hashComments;b&&(a.cStyleComments?(b>1?d.push(["com",/^#(?:##(?:[^#]|#(?!##))*(?:###|$)|.*)/,q,"#"]):d.push(["com",/^#(?:(?:define|e(?:l|nd)if|else|error|ifn?def|include|line|pragma|undef|warning)\b|[^\n\r]*)/,q,"#"]),g.push(["str",/^<(?:(?:(?:\.\.\/)*|\/?)(?:[\w-]+(?:\/[\w-]+)+)?[\w-]+\.h(?:h|pp|\+\+)?|[a-z]\w*)>/,q])):d.push(["com", -/^#[^\n\r]*/,q,"#"]));a.cStyleComments&&(g.push(["com",/^\/\/[^\n\r]*/,q]),g.push(["com",/^\/\*[\S\s]*?(?:\*\/|$)/,q]));if(b=a.regexLiterals){var s=(b=b>1?"":"\n\r")?".":"[\\S\\s]";g.push(["lang-regex",RegExp("^(?:^^\\.?|[+-]|[!=]=?=?|\\#|%=?|&&?=?|\\(|\\*=?|[+\\-]=|->|\\/=?|::?|<>?>?=?|,|;|\\?|@|\\[|~|{|\\^\\^?=?|\\|\\|?=?|break|case|continue|delete|do|else|finally|instanceof|return|throw|try|typeof)\\s*("+("/(?=[^/*"+b+"])(?:[^/\\x5B\\x5C"+b+"]|\\x5C"+s+"|\\x5B(?:[^\\x5C\\x5D"+b+"]|\\x5C"+ -s+")*(?:\\x5D|$))+/")+")")])}(b=a.types)&&g.push(["typ",b]);b=(""+a.keywords).replace(/^ | $/g,"");b.length&&g.push(["kwd",RegExp("^(?:"+b.replace(/[\s,]+/g,"|")+")\\b"),q]);d.push(["pln",/^\s+/,q," \r\n\t\u00a0"]);b="^.[^\\s\\w.$@'\"`/\\\\]*";a.regexLiterals&&(b+="(?!s*/)");g.push(["lit",/^@[$_a-z][\w$@]*/i,q],["typ",/^(?:[@_]?[A-Z]+[a-z][\w$@]*|\w+_t\b)/,q],["pln",/^[$_a-z][\w$@]*/i,q],["lit",/^(?:0x[\da-f]+|(?:\d(?:_\d+)*\d*(?:\.\d*)?|\.\d\+)(?:e[+-]?\d+)?)[a-z]*/i,q,"0123456789"],["pln",/^\\[\S\s]?/, -q],["pun",RegExp(b),q]);return C(d,g)}function J(a,d,g){function b(a){var c=a.nodeType;if(c==1&&!x.test(a.className))if("br"===a.nodeName)s(a),a.parentNode&&a.parentNode.removeChild(a);else for(a=a.firstChild;a;a=a.nextSibling)b(a);else if((c==3||c==4)&&g){var d=a.nodeValue,i=d.match(m);if(i)c=d.substring(0,i.index),a.nodeValue=c,(d=d.substring(i.index+i[0].length))&&a.parentNode.insertBefore(j.createTextNode(d),a.nextSibling),s(a),c||a.parentNode.removeChild(a)}}function s(a){function b(a,c){var d= -c?a.cloneNode(!1):a,e=a.parentNode;if(e){var e=b(e,1),g=a.nextSibling;e.appendChild(d);for(var i=g;i;i=g)g=i.nextSibling,e.appendChild(i)}return d}for(;!a.nextSibling;)if(a=a.parentNode,!a)return;for(var a=b(a.nextSibling,0),d;(d=a.parentNode)&&d.nodeType===1;)a=d;c.push(a)}for(var x=/(?:^|\s)nocode(?:\s|$)/,m=/\r\n?|\n/,j=a.ownerDocument,k=j.createElement("li");a.firstChild;)k.appendChild(a.firstChild);for(var c=[k],i=0;i=0;){var b=d[g];F.hasOwnProperty(b)?D.console&&console.warn("cannot override language handler %s",b):F[b]=a}}function I(a,d){if(!a||!F.hasOwnProperty(a))a=/^\s*=l&&(b+=2);g>=B&&(r+=2)}}finally{if(f)f.style.display=h}}catch(u){D.console&&console.log(u&&u.stack||u)}}var D=window,y=["break,continue,do,else,for,if,return,while"],E=[[y,"auto,case,char,const,default,double,enum,extern,float,goto,inline,int,long,register,short,signed,sizeof,static,struct,switch,typedef,union,unsigned,void,volatile"], -"catch,class,delete,false,import,new,operator,private,protected,public,this,throw,true,try,typeof"],M=[E,"alignof,align_union,asm,axiom,bool,concept,concept_map,const_cast,constexpr,decltype,delegate,dynamic_cast,explicit,export,friend,generic,late_check,mutable,namespace,nullptr,property,reinterpret_cast,static_assert,static_cast,template,typeid,typename,using,virtual,where"],N=[E,"abstract,assert,boolean,byte,extends,final,finally,implements,import,instanceof,interface,null,native,package,strictfp,super,synchronized,throws,transient"], -O=[N,"as,base,by,checked,decimal,delegate,descending,dynamic,event,fixed,foreach,from,group,implicit,in,internal,into,is,let,lock,object,out,override,orderby,params,partial,readonly,ref,sbyte,sealed,stackalloc,string,select,uint,ulong,unchecked,unsafe,ushort,var,virtual,where"],E=[E,"debugger,eval,export,function,get,null,set,undefined,var,with,Infinity,NaN"],P=[y,"and,as,assert,class,def,del,elif,except,exec,finally,from,global,import,in,is,lambda,nonlocal,not,or,pass,print,raise,try,with,yield,False,True,None"], -Q=[y,"alias,and,begin,case,class,def,defined,elsif,end,ensure,false,in,module,next,nil,not,or,redo,rescue,retry,self,super,then,true,undef,unless,until,when,yield,BEGIN,END"],W=[y,"as,assert,const,copy,drop,enum,extern,fail,false,fn,impl,let,log,loop,match,mod,move,mut,priv,pub,pure,ref,self,static,struct,true,trait,type,unsafe,use"],y=[y,"case,done,elif,esac,eval,fi,function,in,local,set,then,until"],R=/^(DIR|FILE|vector|(de|priority_)?queue|list|stack|(const_)?iterator|(multi)?(set|map)|bitset|u?(int|float)\d*)\b/, -V=/\S/,X=v({keywords:[M,O,E,"caller,delete,die,do,dump,elsif,eval,exit,foreach,for,goto,if,import,last,local,my,next,no,our,print,package,redo,require,sub,undef,unless,until,use,wantarray,while,BEGIN,END",P,Q,y],hashComments:!0,cStyleComments:!0,multiLineStrings:!0,regexLiterals:!0}),F={};p(X,["default-code"]);p(C([],[["pln",/^[^]*(?:>|$)/],["com",/^<\!--[\S\s]*?(?:--\>|$)/],["lang-",/^<\?([\S\s]+?)(?:\?>|$)/],["lang-",/^<%([\S\s]+?)(?:%>|$)/],["pun",/^(?:<[%?]|[%?]>)/],["lang-", -/^]*>([\S\s]+?)<\/xmp\b[^>]*>/i],["lang-js",/^]*>([\S\s]*?)(<\/script\b[^>]*>)/i],["lang-css",/^]*>([\S\s]*?)(<\/style\b[^>]*>)/i],["lang-in.tag",/^(<\/?[a-z][^<>]*>)/i]]),["default-markup","htm","html","mxml","xhtml","xml","xsl"]);p(C([["pln",/^\s+/,q," \t\r\n"],["atv",/^(?:"[^"]*"?|'[^']*'?)/,q,"\"'"]],[["tag",/^^<\/?[a-z](?:[\w-.:]*\w)?|\/?>$/i],["atn",/^(?!style[\s=]|on)[a-z](?:[\w:-]*\w)?/i],["lang-uq.val",/^=\s*([^\s"'>]*(?:[^\s"'/>]|\/(?=\s)))/],["pun",/^[/<->]+/], -["lang-js",/^on\w+\s*=\s*"([^"]+)"/i],["lang-js",/^on\w+\s*=\s*'([^']+)'/i],["lang-js",/^on\w+\s*=\s*([^\s"'>]+)/i],["lang-css",/^style\s*=\s*"([^"]+)"/i],["lang-css",/^style\s*=\s*'([^']+)'/i],["lang-css",/^style\s*=\s*([^\s"'>]+)/i]]),["in.tag"]);p(C([],[["atv",/^[\S\s]+/]]),["uq.val"]);p(v({keywords:M,hashComments:!0,cStyleComments:!0,types:R}),["c","cc","cpp","cxx","cyc","m"]);p(v({keywords:"null,true,false"}),["json"]);p(v({keywords:O,hashComments:!0,cStyleComments:!0,verbatimStrings:!0,types:R}), -["cs"]);p(v({keywords:N,cStyleComments:!0}),["java"]);p(v({keywords:y,hashComments:!0,multiLineStrings:!0}),["bash","bsh","csh","sh"]);p(v({keywords:P,hashComments:!0,multiLineStrings:!0,tripleQuotedStrings:!0}),["cv","py","python"]);p(v({keywords:"caller,delete,die,do,dump,elsif,eval,exit,foreach,for,goto,if,import,last,local,my,next,no,our,print,package,redo,require,sub,undef,unless,until,use,wantarray,while,BEGIN,END",hashComments:!0,multiLineStrings:!0,regexLiterals:2}),["perl","pl","pm"]);p(v({keywords:Q, -hashComments:!0,multiLineStrings:!0,regexLiterals:!0}),["rb","ruby"]);p(v({keywords:E,cStyleComments:!0,regexLiterals:!0}),["javascript","js"]);p(v({keywords:"all,and,by,catch,class,else,extends,false,finally,for,if,in,is,isnt,loop,new,no,not,null,of,off,on,or,return,super,then,throw,true,try,unless,until,when,while,yes",hashComments:3,cStyleComments:!0,multilineStrings:!0,tripleQuotedStrings:!0,regexLiterals:!0}),["coffee"]);p(v({keywords:W,cStyleComments:!0,multilineStrings:!0}),["rc","rs","rust"]); -p(C([],[["str",/^[\S\s]+/]]),["regex"]);var Y=D.PR={createSimpleLexer:C,registerLangHandler:p,sourceDecorator:v,PR_ATTRIB_NAME:"atn",PR_ATTRIB_VALUE:"atv",PR_COMMENT:"com",PR_DECLARATION:"dec",PR_KEYWORD:"kwd",PR_LITERAL:"lit",PR_NOCODE:"nocode",PR_PLAIN:"pln",PR_PUNCTUATION:"pun",PR_SOURCE:"src",PR_STRING:"str",PR_TAG:"tag",PR_TYPE:"typ",prettyPrintOne:D.prettyPrintOne=function(a,d,g){var b=document.createElement("div");b.innerHTML="
    "+a+"
    ";b=b.firstChild;g&&J(b,g,!0);K({h:d,j:g,c:b,i:1}); -return b.innerHTML},prettyPrint:D.prettyPrint=function(a,d){function g(){for(var b=D.PR_SHOULD_USE_CONTINUATION?c.now()+250:Infinity;i)/],["lit",/^(?:\d+|\d*\.\d+)(?:%|[a-z]+)?/i],["lit",/^#[\da-f]{3,6}\b/i],["pln",/^-?(?:[_a-z]|\\[\da-f]+ ?)(?:[\w-]|\\\\[\da-f]+ ?)*/i],["pun",/^[^\s\w"']+/]]),["css"]);PR.registerLangHandler(PR.createSimpleLexer([],[["kwd",/^-?(?:[_a-z]|\\[\da-f]+ ?)(?:[\w-]|\\\\[\da-f]+ ?)*/i]]),["css-kw"]);PR.registerLangHandler(PR.createSimpleLexer([],[["str",/^[^"')]+/]]),["css-str"]); - -// lang-dart.js -PR.registerLangHandler(PR.createSimpleLexer([["pln",/^[\t\n\r \xa0]+/,null,"\t\n\r \u00a0"]],[["com",/^#!.*/],["kwd",/^\b(?:import|library|part of|part|as|show|hide)\b/i],["com",/^\/\/.*/],["com",/^\/\*[^*]*\*+(?:[^*/][^*]*\*+)*\//],["kwd",/^\b(?:class|interface)\b/i],["kwd",/^\b(?:assert|break|case|catch|continue|default|do|else|finally|for|if|in|is|new|return|super|switch|this|throw|try|while)\b/i],["kwd",/^\b(?:abstract|const|extends|factory|final|get|implements|native|operator|set|static|typedef|var)\b/i], -["typ",/^\b(?:bool|double|dynamic|int|num|object|string|void)\b/i],["kwd",/^\b(?:false|null|true)\b/i],["str",/^r?'''[\S\s]*?[^\\]'''/],["str",/^r?"""[\S\s]*?[^\\]"""/],["str",/^r?'('|[^\n\f\r]*?[^\\]')/],["str",/^r?"("|[^\n\f\r]*?[^\\]")/],["pln",/^[$_a-z]\w*/i],["pun",/^[!%&*+/:<-?^|~-]/],["lit",/^\b0x[\da-f]+/i],["lit",/^\b\d+(?:\.\d*)?(?:e[+-]?\d+)?/i],["lit",/^\b\.\d+(?:e[+-]?\d+)?/i],["pun",/^[(),.;[\]{}]/]]), -["dart"]); - -// lang-erlang.js -PR.registerLangHandler(PR.createSimpleLexer([["pln",/^[\t-\r ]+/,null,"\t\n\u000b\u000c\r "],["str",/^"(?:[^\n\f\r"\\]|\\[\S\s])*(?:"|$)/,null,'"'],["lit",/^[a-z]\w*/],["lit",/^'(?:[^\n\f\r'\\]|\\[^&])+'?/,null,"'"],["lit",/^\?[^\t\n ({]+/,null,"?"],["lit",/^(?:0o[0-7]+|0x[\da-f]+|\d+(?:\.\d+)?(?:e[+-]?\d+)?)/i,null,"0123456789"]],[["com",/^%[^\n]*/],["kwd",/^(?:module|attributes|do|let|in|letrec|apply|call|primop|case|of|end|when|fun|try|catch|receive|after|char|integer|float,atom,string,var)\b/], -["kwd",/^-[_a-z]+/],["typ",/^[A-Z_]\w*/],["pun",/^[,.;]/]]),["erlang","erl"]); - -// lang-go.js -// PR.registerLangHandler(PR.createSimpleLexer([["pln",/^[\t\n\r \xa0]+/,null,"\t\n\r \u00a0"],["pln",/^(?:"(?:[^"\\]|\\[\S\s])*(?:"|$)|'(?:[^'\\]|\\[\S\s])+(?:'|$)|`[^`]*(?:`|$))/,null,"\"'"]],[["com",/^(?:\/\/[^\n\r]*|\/\*[\S\s]*?\*\/)/],["pln",/^(?:[^"'/`]|\/(?![*/]))+/]]),["go"]); - -// lang-hs.js -PR.registerLangHandler(PR.createSimpleLexer([["pln",/^[\t-\r ]+/,null,"\t\n\u000b\u000c\r "],["str",/^"(?:[^\n\f\r"\\]|\\[\S\s])*(?:"|$)/,null,'"'],["str",/^'(?:[^\n\f\r'\\]|\\[^&])'?/,null,"'"],["lit",/^(?:0o[0-7]+|0x[\da-f]+|\d+(?:\.\d+)?(?:e[+-]?\d+)?)/i,null,"0123456789"]],[["com",/^(?:--+[^\n\f\r]*|{-(?:[^-]|-+[^}-])*-})/],["kwd",/^(?:case|class|data|default|deriving|do|else|if|import|in|infix|infixl|infixr|instance|let|module|newtype|of|then|type|where|_)(?=[^\d'A-Za-z]|$)/, -null],["pln",/^(?:[A-Z][\w']*\.)*[A-Za-z][\w']*/],["pun",/^[^\d\t-\r "'A-Za-z]+/]]),["hs"]); - -// lang-lisp.js -var a=null; -PR.registerLangHandler(PR.createSimpleLexer([["opn",/^\(+/,a,"("],["clo",/^\)+/,a,")"],["com",/^;[^\n\r]*/,a,";"],["pln",/^[\t\n\r \xa0]+/,a,"\t\n\r \u00a0"],["str",/^"(?:[^"\\]|\\[\S\s])*(?:"|$)/,a,'"']],[["kwd",/^(?:block|c[ad]+r|catch|con[ds]|def(?:ine|un)|do|eq|eql|equal|equalp|eval-when|flet|format|go|if|labels|lambda|let|load-time-value|locally|macrolet|multiple-value-call|nil|progn|progv|quote|require|return-from|setq|symbol-macrolet|t|tagbody|the|throw|unwind)\b/,a], -["lit",/^[+-]?(?:[#0]x[\da-f]+|\d+\/\d+|(?:\.\d+|\d+(?:\.\d*)?)(?:[de][+-]?\d+)?)/i],["lit",/^'(?:-*(?:\w|\\[!-~])(?:[\w-]*|\\[!-~])[!=?]?)?/],["pln",/^-*(?:[_a-z]|\\[!-~])(?:[\w-]*|\\[!-~])[!=?]?/i],["pun",/^[^\w\t\n\r "'-);\\\xa0]+/]]),["cl","el","lisp","lsp","scm","ss","rkt"]); - -// lang-llvm.js -PR.registerLangHandler(PR.createSimpleLexer([["pln",/^[\t\n\r \xa0]+/,null,"\t\n\r \u00a0"],["str",/^!?"(?:[^"\\]|\\[\S\s])*(?:"|$)/,null,'"'],["com",/^;[^\n\r]*/,null,";"]],[["pln",/^[!%@](?:[$\-.A-Z_a-z][\w$\-.]*|\d+)/],["kwd",/^[^\W\d]\w*/,null],["lit",/^\d+\.\d+/],["lit",/^(?:\d+|0[Xx][\dA-Fa-f]+)/],["pun",/^[(-*,:<->[\]{}]|\.\.\.$/]]),["llvm","ll"]); - -// lang-lua.js -PR.registerLangHandler(PR.createSimpleLexer([["pln",/^[\t\n\r \xa0]+/,null,"\t\n\r \u00a0"],["str",/^(?:"(?:[^"\\]|\\[\S\s])*(?:"|$)|'(?:[^'\\]|\\[\S\s])*(?:'|$))/,null,"\"'"]],[["com",/^--(?:\[(=*)\[[\S\s]*?(?:]\1]|$)|[^\n\r]*)/],["str",/^\[(=*)\[[\S\s]*?(?:]\1]|$)/],["kwd",/^(?:and|break|do|else|elseif|end|false|for|function|if|in|local|nil|not|or|repeat|return|then|true|until|while)\b/,null],["lit",/^[+-]?(?:0x[\da-f]+|(?:\.\d+|\d+(?:\.\d*)?)(?:e[+-]?\d+)?)/i], -["pln",/^[_a-z]\w*/i],["pun",/^[^\w\t\n\r \xa0][^\w\t\n\r "'+=\xa0-]*/]]),["lua"]); - -// lang-ml.js -PR.registerLangHandler(PR.createSimpleLexer([["pln",/^[\t\n\r \xa0]+/,null,"\t\n\r \u00a0"],["com",/^#(?:if[\t\n\r \xa0]+(?:[$_a-z][\w']*|``[^\t\n\r`]*(?:``|$))|else|endif|light)/i,null,"#"],["str",/^(?:"(?:[^"\\]|\\[\S\s])*(?:"|$)|'(?:[^'\\]|\\[\S\s])(?:'|$))/,null,"\"'"]],[["com",/^(?:\/\/[^\n\r]*|\(\*[\S\s]*?\*\))/],["kwd",/^(?:abstract|and|as|assert|begin|class|default|delegate|do|done|downcast|downto|elif|else|end|exception|extern|false|finally|for|fun|function|if|in|inherit|inline|interface|internal|lazy|let|match|member|module|mutable|namespace|new|null|of|open|or|override|private|public|rec|return|static|struct|then|to|true|try|type|upcast|use|val|void|when|while|with|yield|asr|land|lor|lsl|lsr|lxor|mod|sig|atomic|break|checked|component|const|constraint|constructor|continue|eager|event|external|fixed|functor|global|include|method|mixin|object|parallel|process|protected|pure|sealed|trait|virtual|volatile)\b/], -["lit",/^[+-]?(?:0x[\da-f]+|(?:\.\d+|\d+(?:\.\d*)?)(?:e[+-]?\d+)?)/i],["pln",/^(?:[_a-z][\w']*[!#?]?|``[^\t\n\r`]*(?:``|$))/i],["pun",/^[^\w\t\n\r "'\xa0]+/]]),["fs","ml"]); - -// lang-mumps.js -PR.registerLangHandler(PR.createSimpleLexer([["pln",/^[\t\n\r \xa0]+/,null,"\t\n\r \u00a0"],["str",/^"(?:[^"]|\\.)*"/,null,'"']],[["com",/^;[^\n\r]*/,null,";"],["dec",/^\$(?:d|device|ec|ecode|es|estack|et|etrap|h|horolog|i|io|j|job|k|key|p|principal|q|quit|st|stack|s|storage|sy|system|t|test|tl|tlevel|tr|trestart|x|y|z[a-z]*|a|ascii|c|char|d|data|e|extract|f|find|fn|fnumber|g|get|j|justify|l|length|na|name|o|order|p|piece|ql|qlength|qs|qsubscript|q|query|r|random|re|reverse|s|select|st|stack|t|text|tr|translate|nan)\b/i, -null],["kwd",/^(?:[^$]b|break|c|close|d|do|e|else|f|for|g|goto|h|halt|h|hang|i|if|j|job|k|kill|l|lock|m|merge|n|new|o|open|q|quit|r|read|s|set|tc|tcommit|tre|trestart|tro|trollback|ts|tstart|u|use|v|view|w|write|x|xecute)\b/i,null],["lit",/^[+-]?(?:\.\d+|\d+(?:\.\d*)?)(?:e[+-]?\d+)?/i],["pln",/^[a-z][^\W_]*/i],["pun",/^[^\w\t\n\r"$%;^\xa0]|_/]]),["mumps"]); - -// lang-n.js -var a=null; -PR.registerLangHandler(PR.createSimpleLexer([["str",/^(?:'(?:[^\n\r'\\]|\\.)*'|"(?:[^\n\r"\\]|\\.)*(?:"|$))/,a,'"'],["com",/^#(?:(?:define|elif|else|endif|error|ifdef|include|ifndef|line|pragma|undef|warning)\b|[^\n\r]*)/,a,"#"],["pln",/^\s+/,a," \r\n\t\u00a0"]],[["str",/^@"(?:[^"]|"")*(?:"|$)/,a],["str",/^<#[^#>]*(?:#>|$)/,a],["str",/^<(?:(?:(?:\.\.\/)*|\/?)(?:[\w-]+(?:\/[\w-]+)+)?[\w-]+\.h|[a-z]\w*)>/,a],["com",/^\/\/[^\n\r]*/,a],["com",/^\/\*[\S\s]*?(?:\*\/|$)/, -a],["kwd",/^(?:abstract|and|as|base|catch|class|def|delegate|enum|event|extern|false|finally|fun|implements|interface|internal|is|macro|match|matches|module|mutable|namespace|new|null|out|override|params|partial|private|protected|public|ref|sealed|static|struct|syntax|this|throw|true|try|type|typeof|using|variant|virtual|volatile|when|where|with|assert|assert2|async|break|checked|continue|do|else|ensures|for|foreach|if|late|lock|new|nolate|otherwise|regexp|repeat|requires|return|surroundwith|unchecked|unless|using|while|yield)\b/, -a],["typ",/^(?:array|bool|byte|char|decimal|double|float|int|list|long|object|sbyte|short|string|ulong|uint|ufloat|ulong|ushort|void)\b/,a],["lit",/^@[$_a-z][\w$@]*/i,a],["typ",/^@[A-Z]+[a-z][\w$@]*/,a],["pln",/^'?[$_a-z][\w$@]*/i,a],["lit",/^(?:0x[\da-f]+|(?:\d(?:_\d+)*\d*(?:\.\d*)?|\.\d\+)(?:e[+-]?\d+)?)[a-z]*/i,a,"0123456789"],["pun",/^.[^\s\w"-$'./@`]*/,a]]),["n","nemerle"]); - -// lang-pascal.js -var a=null; -PR.registerLangHandler(PR.createSimpleLexer([["str",/^'(?:[^\n\r'\\]|\\.)*(?:'|$)/,a,"'"],["pln",/^\s+/,a," \r\n\t\u00a0"]],[["com",/^\(\*[\S\s]*?(?:\*\)|$)|^{[\S\s]*?(?:}|$)/,a],["kwd",/^(?:absolute|and|array|asm|assembler|begin|case|const|constructor|destructor|div|do|downto|else|end|external|for|forward|function|goto|if|implementation|in|inline|interface|interrupt|label|mod|not|object|of|or|packed|procedure|program|record|repeat|set|shl|shr|then|to|type|unit|until|uses|var|virtual|while|with|xor)\b/i,a], -["lit",/^(?:true|false|self|nil)/i,a],["pln",/^[a-z][^\W_]*/i,a],["lit",/^(?:\$[\da-f]+|(?:\d+(?:\.\d*)?|\.\d+)(?:e[+-]?\d+)?)/i,a,"0123456789"],["pun",/^.[^\s\w$'./@]*/,a]]),["pascal"]); - -// lang-proto.js -PR.registerLangHandler(PR.sourceDecorator({keywords:"bytes,default,double,enum,extend,extensions,false,group,import,max,message,option,optional,package,repeated,required,returns,rpc,service,syntax,to,true",types:/^(bool|(double|s?fixed|[su]?int)(32|64)|float|string)\b/,cStyleComments:!0}),["proto"]); - -// lang-r.js -PR.registerLangHandler(PR.createSimpleLexer([["pln",/^[\t\n\r \xa0]+/,null,"\t\n\r \u00a0"],["str",/^"(?:[^"\\]|\\[\S\s])*(?:"|$)/,null,'"'],["str",/^'(?:[^'\\]|\\[\S\s])*(?:'|$)/,null,"'"]],[["com",/^#.*/],["kwd",/^(?:if|else|for|while|repeat|in|next|break|return|switch|function)(?![\w.])/],["lit",/^0[Xx][\dA-Fa-f]+([Pp]\d+)?[Li]?/],["lit",/^[+-]?(\d+(\.\d+)?|\.\d+)([Ee][+-]?\d+)?[Li]?/],["lit",/^(?:NULL|NA(?:_(?:integer|real|complex|character)_)?|Inf|TRUE|FALSE|NaN|\.\.(?:\.|\d+))(?![\w.])/], -["pun",/^(?:<>?|-|==|<=|>=|<|>|&&?|!=|\|\|?|[!*+/^]|%.*?%|[$=@~]|:{1,3}|[(),;?[\]{}])/],["pln",/^(?:[A-Za-z]+[\w.]*|\.[^\W\d][\w.]*)(?![\w.])/],["str",/^`.+`/]]),["r","s","R","S","Splus"]); - -// lang-rd.js -PR.registerLangHandler(PR.createSimpleLexer([["pln",/^[\t\n\r \xa0]+/,null,"\t\n\r \u00a0"],["com",/^%[^\n\r]*/,null,"%"]],[["lit",/^\\(?:cr|l?dots|R|tab)\b/],["kwd",/^\\[@-Za-z]+/],["kwd",/^#(?:ifn?def|endif)/],["pln",/^\\[{}]/],["pun",/^[()[\]{}]+/]]),["Rd","rd"]); - -// lang-scala.js -PR.registerLangHandler(PR.createSimpleLexer([["pln",/^[\t\n\r \xa0]+/,null,"\t\n\r \u00a0"],["str",/^"(?:""(?:""?(?!")|[^"\\]|\\.)*"{0,3}|(?:[^\n\r"\\]|\\.)*"?)/,null,'"'],["lit",/^`(?:[^\n\r\\`]|\\.)*`?/,null,"`"],["pun",/^[!#%&(--:-@[-^{-~]+/,null,"!#%&()*+,-:;<=>?@[\\]^{|}~"]],[["str",/^'(?:[^\n\r'\\]|\\(?:'|[^\n\r']+))'/],["lit",/^'[$A-Z_a-z][\w$]*(?![\w$'])/],["kwd",/^(?:abstract|case|catch|class|def|do|else|extends|final|finally|for|forSome|if|implicit|import|lazy|match|new|object|override|package|private|protected|requires|return|sealed|super|throw|trait|try|type|val|var|while|with|yield)\b/], -["lit",/^(?:true|false|null|this)\b/],["lit",/^(?:0(?:[0-7]+|x[\da-f]+)l?|(?:0|[1-9]\d*)(?:(?:\.\d+)?(?:e[+-]?\d+)?f?|l?)|\\.\d+(?:e[+-]?\d+)?f?)/i],["typ",/^[$_]*[A-Z][\d$A-Z_]*[a-z][\w$]*/],["pln",/^[$A-Z_a-z][\w$]*/],["com",/^\/(?:\/.*|\*(?:\/|\**[^*/])*(?:\*+\/?)?)/],["pun",/^(?:\.+|\/)/]]),["scala"]); - -// lang-sql.js -PR.registerLangHandler(PR.createSimpleLexer([["pln",/^[\t\n\r \xa0]+/,null,"\t\n\r \u00a0"],["str",/^(?:"(?:[^"\\]|\\.)*"|'(?:[^'\\]|\\.)*')/,null,"\"'"]],[["com",/^(?:--[^\n\r]*|\/\*[\S\s]*?(?:\*\/|$))/],["kwd",/^(?:add|all|alter|and|any|apply|as|asc|authorization|backup|begin|between|break|browse|bulk|by|cascade|case|check|checkpoint|close|clustered|coalesce|collate|column|commit|compute|connect|constraint|contains|containstable|continue|convert|create|cross|current|current_date|current_time|current_timestamp|current_user|cursor|database|dbcc|deallocate|declare|default|delete|deny|desc|disk|distinct|distributed|double|drop|dummy|dump|else|end|errlvl|escape|except|exec|execute|exists|exit|fetch|file|fillfactor|following|for|foreign|freetext|freetexttable|from|full|function|goto|grant|group|having|holdlock|identity|identitycol|identity_insert|if|in|index|inner|insert|intersect|into|is|join|key|kill|left|like|lineno|load|match|matched|merge|natural|national|nocheck|nonclustered|nocycle|not|null|nullif|of|off|offsets|on|open|opendatasource|openquery|openrowset|openxml|option|or|order|outer|over|partition|percent|pivot|plan|preceding|precision|primary|print|proc|procedure|public|raiserror|read|readtext|reconfigure|references|replication|restore|restrict|return|revoke|right|rollback|rowcount|rowguidcol|rows?|rule|save|schema|select|session_user|set|setuser|shutdown|some|start|statistics|system_user|table|textsize|then|to|top|tran|transaction|trigger|truncate|tsequal|unbounded|union|unique|unpivot|update|updatetext|use|user|using|values|varying|view|waitfor|when|where|while|with|within|writetext|xml)(?=[^\w-]|$)/i, -null],["lit",/^[+-]?(?:0x[\da-f]+|(?:\.\d+|\d+(?:\.\d*)?)(?:e[+-]?\d+)?)/i],["pln",/^[_a-z][\w-]*/i],["pun",/^[^\w\t\n\r "'\xa0][^\w\t\n\r "'+\xa0-]*/]]),["sql"]); - -// lang-tcl.js -var a=null; -PR.registerLangHandler(PR.createSimpleLexer([["opn",/^{+/,a,"{"],["clo",/^}+/,a,"}"],["com",/^#[^\n\r]*/,a,"#"],["pln",/^[\t\n\r \xa0]+/,a,"\t\n\r \u00a0"],["str",/^"(?:[^"\\]|\\[\S\s])*(?:"|$)/,a,'"']],[["kwd",/^(?:after|append|apply|array|break|case|catch|continue|error|eval|exec|exit|expr|for|foreach|if|incr|info|proc|return|set|switch|trace|uplevel|upvar|while)\b/,a],["lit",/^[+-]?(?:[#0]x[\da-f]+|\d+\/\d+|(?:\.\d+|\d+(?:\.\d*)?)(?:[de][+-]?\d+)?)/i],["lit", -/^'(?:-*(?:\w|\\[!-~])(?:[\w-]*|\\[!-~])[!=?]?)?/],["pln",/^-*(?:[_a-z]|\\[!-~])(?:[\w-]*|\\[!-~])[!=?]?/i],["pun",/^[^\w\t\n\r "'-);\\\xa0]+/]]),["tcl"]); - -// lang-tex.js -PR.registerLangHandler(PR.createSimpleLexer([["pln",/^[\t\n\r \xa0]+/,null,"\t\n\r \u00a0"],["com",/^%[^\n\r]*/,null,"%"]],[["kwd",/^\\[@-Za-z]+/],["kwd",/^\\./],["typ",/^[$&]/],["lit",/[+-]?(?:\.\d+|\d+(?:\.\d*)?)(cm|em|ex|in|pc|pt|bp|mm)/i],["pun",/^[()=[\]{}]+/]]),["latex","tex"]); - -// lang-vb.js -PR.registerLangHandler(PR.createSimpleLexer([["pln",/^[\t\n\r \xa0\u2028\u2029]+/,null,"\t\n\r \u00a0\u2028\u2029"],["str",/^(?:["\u201c\u201d](?:[^"\u201c\u201d]|["\u201c\u201d]{2})(?:["\u201c\u201d]c|$)|["\u201c\u201d](?:[^"\u201c\u201d]|["\u201c\u201d]{2})*(?:["\u201c\u201d]|$))/i,null,'"\u201c\u201d'],["com",/^['\u2018\u2019](?:_(?:\r\n?|[^\r]?)|[^\n\r_\u2028\u2029])*/,null,"'\u2018\u2019"]],[["kwd",/^(?:addhandler|addressof|alias|and|andalso|ansi|as|assembly|auto|boolean|byref|byte|byval|call|case|catch|cbool|cbyte|cchar|cdate|cdbl|cdec|char|cint|class|clng|cobj|const|cshort|csng|cstr|ctype|date|decimal|declare|default|delegate|dim|directcast|do|double|each|else|elseif|end|endif|enum|erase|error|event|exit|finally|for|friend|function|get|gettype|gosub|goto|handles|if|implements|imports|in|inherits|integer|interface|is|let|lib|like|long|loop|me|mod|module|mustinherit|mustoverride|mybase|myclass|namespace|new|next|not|notinheritable|notoverridable|object|on|option|optional|or|orelse|overloads|overridable|overrides|paramarray|preserve|private|property|protected|public|raiseevent|readonly|redim|removehandler|resume|return|select|set|shadows|shared|short|single|static|step|stop|string|structure|sub|synclock|then|throw|to|try|typeof|unicode|until|variant|wend|when|while|with|withevents|writeonly|xor|endif|gosub|let|variant|wend)\b/i, -null],["com",/^rem\b.*/i],["lit",/^(?:true\b|false\b|nothing\b|\d+(?:e[+-]?\d+[dfr]?|[dfilrs])?|(?:&h[\da-f]+|&o[0-7]+)[ils]?|\d*\.\d+(?:e[+-]?\d+)?[dfr]?|#\s+(?:\d+[/-]\d+[/-]\d+(?:\s+\d+:\d+(?::\d+)?(\s*(?:am|pm))?)?|\d+:\d+(?::\d+)?(\s*(?:am|pm))?)\s+#)/i],["pln",/^(?:(?:[a-z]|_\w)\w*(?:\[[!#%&@]+])?|\[(?:[a-z]|_\w)\w*])/i],["pun",/^[^\w\t\n\r "'[\]\xa0\u2018\u2019\u201c\u201d\u2028\u2029]+/],["pun",/^(?:\[|])/]]),["vb","vbs"]); - -// lang-vhdl.js -PR.registerLangHandler(PR.createSimpleLexer([["pln",/^[\t\n\r \xa0]+/,null,"\t\n\r \u00a0"]],[["str",/^(?:[box]?"(?:[^"]|"")*"|'.')/i],["com",/^--[^\n\r]*/],["kwd",/^(?:abs|access|after|alias|all|and|architecture|array|assert|attribute|begin|block|body|buffer|bus|case|component|configuration|constant|disconnect|downto|else|elsif|end|entity|exit|file|for|function|generate|generic|group|guarded|if|impure|in|inertial|inout|is|label|library|linkage|literal|loop|map|mod|nand|new|next|nor|not|null|of|on|open|or|others|out|package|port|postponed|procedure|process|pure|range|record|register|reject|rem|report|return|rol|ror|select|severity|shared|signal|sla|sll|sra|srl|subtype|then|to|transport|type|unaffected|units|until|use|variable|wait|when|while|with|xnor|xor)(?=[^\w-]|$)/i, -null],["typ",/^(?:bit|bit_vector|character|boolean|integer|real|time|string|severity_level|positive|natural|signed|unsigned|line|text|std_u?logic(?:_vector)?)(?=[^\w-]|$)/i,null],["typ",/^'(?:active|ascending|base|delayed|driving|driving_value|event|high|image|instance_name|last_active|last_event|last_value|left|leftof|length|low|path_name|pos|pred|quiet|range|reverse_range|right|rightof|simple_name|stable|succ|transaction|val|value)(?=[^\w-]|$)/i,null],["lit",/^\d+(?:_\d+)*(?:#[\w.\\]+#(?:[+-]?\d+(?:_\d+)*)?|(?:\.\d+(?:_\d+)*)?(?:e[+-]?\d+(?:_\d+)*)?)/i], -["pln",/^(?:[a-z]\w*|\\[^\\]*\\)/i],["pun",/^[^\w\t\n\r "'\xa0][^\w\t\n\r "'\xa0-]*/]]),["vhdl","vhd"]); - -// lang-wiki.js -PR.registerLangHandler(PR.createSimpleLexer([["pln",/^[\d\t a-gi-z\xa0]+/,null,"\t \u00a0abcdefgijklmnopqrstuvwxyz0123456789"],["pun",/^[*=[\]^~]+/,null,"=*~^[]"]],[["lang-wiki.meta",/(?:^^|\r\n?|\n)(#[a-z]+)\b/],["lit",/^[A-Z][a-z][\da-z]+[A-Z][a-z][^\W_]+\b/],["lang-",/^{{{([\S\s]+?)}}}/],["lang-",/^`([^\n\r`]+)`/],["str",/^https?:\/\/[^\s#/?]*(?:\/[^\s#?]*)?(?:\?[^\s#]*)?(?:#\S*)?/i],["pln",/^(?:\r\n|[\S\s])[^\n\r#*=A-[^`h{~]*/]]),["wiki"]); -PR.registerLangHandler(PR.createSimpleLexer([["kwd",/^#[a-z]+/i,null,"#"]],[]),["wiki.meta"]); - -// lang-yaml.js -var a=null; -var a=null; -PR.registerLangHandler(PR.createSimpleLexer([["pun",/^[:>?|]+/,a,":|>?"],["dec",/^%(?:YAML|TAG)[^\n\r#]+/,a,"%"],["typ",/^&\S+/,a,"&"],["typ",/^!\S*/,a,"!"],["str",/^"(?:[^"\\]|\\.)*(?:"|$)/,a,'"'],["str",/^'(?:[^']|'')*(?:'|$)/,a,"'"],["com",/^#[^\n\r]*/,a,"#"],["pln",/^\s+/,a," \t\r\n"]],[["dec",/^(?:---|\.\.\.)(?:[\n\r]|$)/],["pun",/^-/],["kwd",/^\w+:[\n\r ]/],["pln",/^\w+/]]),["yaml","yml"]); - -/* - * zClip :: jQuery ZeroClipboard v1.1.1 - * http://steamdev.com/zclip - * - * Copyright 2011, SteamDev - * Released under the MIT license. - * http://www.opensource.org/licenses/mit-license.php - * - * Date: Wed Jun 01, 2011 - */ - -(function(a){a.fn.zclip=function(c){if(typeof c=="object"&&!c.length){var b=a.extend({path:"ZeroClipboard.swf",copy:null,beforeCopy:null,afterCopy:null,clickAfter:true,setHandCursor:true,setCSSEffects:true},c);return this.each(function(){var e=a(this);if(e.is(":visible")&&(typeof b.copy=="string"||a.isFunction(b.copy))){ZeroClipboard.setMoviePath(b.path);var d=new ZeroClipboard.Client();if(a.isFunction(b.copy)){e.bind("zClip_copy",b.copy)}if(a.isFunction(b.beforeCopy)){e.bind("zClip_beforeCopy",b.beforeCopy)}if(a.isFunction(b.afterCopy)){e.bind("zClip_afterCopy",b.afterCopy)}d.setHandCursor(b.setHandCursor);d.setCSSEffects(b.setCSSEffects);d.addEventListener("mouseOver",function(f){e.trigger("mouseenter")});d.addEventListener("mouseOut",function(f){e.trigger("mouseleave")});d.addEventListener("mouseDown",function(f){e.trigger("mousedown");if(!a.isFunction(b.copy)){d.setText(b.copy)}else{d.setText(e.triggerHandler("zClip_copy"))}if(a.isFunction(b.beforeCopy)){e.trigger("zClip_beforeCopy")}});d.addEventListener("complete",function(f,g){if(a.isFunction(b.afterCopy)){e.trigger("zClip_afterCopy")}else{if(g.length>500){g=g.substr(0,500)+"...\n\n("+(g.length-500)+" characters not shown)"}e.removeClass("hover");alert("Copied text to clipboard:\n\n "+g)}if(b.clickAfter){e.trigger("click")}});d.glue(e[0],e.parent()[0]);a(window).bind("load resize",function(){d.reposition()})}})}else{if(typeof c=="string"){return this.each(function(){var f=a(this);c=c.toLowerCase();var e=f.data("zclipId");var d=a("#"+e+".zclip");if(c=="remove"){d.remove();f.removeClass("active hover")}else{if(c=="hide"){d.hide();f.removeClass("active hover")}else{if(c=="show"){d.show()}}}})}}}})(jQuery);var ZeroClipboard={version:"1.0.7",clients:{},moviePath:"ZeroClipboard.swf",nextId:1,$:function(a){if(typeof(a)=="string"){a=document.getElementById(a)}if(!a.addClass){a.hide=function(){/*this.style.display="none"*/};a.show=function(){this.style.display=""};a.addClass=function(b){this.removeClass(b);this.className+=" "+b};a.removeClass=function(d){var e=this.className.split(/\s+/);var b=-1;for(var c=0;c-1){e.splice(b,1);this.className=e.join(" ")}return this};a.hasClass=function(b){return !!this.className.match(new RegExp("\\s*"+b+"\\s*"))}}return a},setMoviePath:function(a){this.moviePath=a},dispatch:function(d,b,c){var a=this.clients[d];if(a){a.receiveEvent(b,c)}},register:function(b,a){this.clients[b]=a},getDOMObjectPosition:function(c,a){var b={left:0,top:0,width:c.width?c.width:c.offsetWidth,height:c.height?c.height:c.offsetHeight};if(c&&(c!=a)){b.left+=c.offsetLeft;b.top+=c.offsetTop}return b},Client:function(a){this.handlers={};this.id=ZeroClipboard.nextId++;this.movieId="ZeroClipboardMovie_"+this.id;ZeroClipboard.register(this.id,this);if(a){this.glue(a)}}};ZeroClipboard.Client.prototype={id:0,ready:false,movie:null,clipText:"",handCursorEnabled:true,cssEffects:true,handlers:null,glue:function(d,b,e){this.domElement=ZeroClipboard.$(d);var f=99;if(this.domElement.style.zIndex){f=parseInt(this.domElement.style.zIndex,10)+1}if(typeof(b)=="string"){b=ZeroClipboard.$(b)}else{if(typeof(b)=="undefined"){b=document.getElementsByTagName("body")[0]}}var c=ZeroClipboard.getDOMObjectPosition(this.domElement,b);this.div=document.createElement("div");this.div.className="zclip";this.div.id="zclip-"+this.movieId;$(this.domElement).data("zclipId","zclip-"+this.movieId);var a=this.div.style;a.position="absolute";a.left=""+c.left+"px";a.top=""+c.top+"px";a.width=""+c.width+"px";a.height=""+c.height+"px";a.zIndex=f;if(typeof(e)=="object"){for(addedStyle in e){a[addedStyle]=e[addedStyle]}}b.appendChild(this.div);this.div.innerHTML=this.getHTML(c.width,c.height)},getHTML:function(d,a){var c="";var b="id="+this.id+"&width="+d+"&height="+a;if(navigator.userAgent.match(/MSIE/)){var e=location.href.match(/^https/i)?"https://":"http://";c+=''}else{c+=''}return c},hide:function(){if(this.div){this.div.style.left="-2000px"}},show:function(){this.reposition()},destroy:function(){if(this.domElement&&this.div){this.hide();this.div.innerHTML="";var a=document.getElementsByTagName("body")[0];try{a.removeChild(this.div)}catch(b){}this.domElement=null;this.div=null}},reposition:function(c){if(c){this.domElement=ZeroClipboard.$(c);if(!this.domElement){this.hide()}}if(this.domElement&&this.div){var b=ZeroClipboard.getDOMObjectPosition(this.domElement);var a=this.div.style;a.left=""+b.left+"px";a.top=""+b.top+"px"}},setText:function(a){this.clipText=a;if(this.ready){this.movie.setText(a)}},addEventListener:function(a,b){a=a.toString().toLowerCase().replace(/^on/,"");if(!this.handlers[a]){this.handlers[a]=[]}this.handlers[a].push(b)},setHandCursor:function(a){this.handCursorEnabled=a;if(this.ready){this.movie.setHandCursor(a)}},setCSSEffects:function(a){this.cssEffects=!!a},receiveEvent:function(d,f){d=d.toString().toLowerCase().replace(/^on/,"");switch(d){case"load":this.movie=document.getElementById(this.movieId);if(!this.movie){var c=this;setTimeout(function(){c.receiveEvent("load",null)},1);return}if(!this.ready&&navigator.userAgent.match(/Firefox/)&&navigator.userAgent.match(/Windows/)){var c=this;setTimeout(function(){c.receiveEvent("load",null)},100);this.ready=true;return}this.ready=true;try{this.movie.setText(this.clipText)}catch(h){}try{this.movie.setHandCursor(this.handCursorEnabled)}catch(h){}break;case"mouseover":if(this.domElement&&this.cssEffects){this.domElement.addClass("hover");if(this.recoverActive){this.domElement.addClass("active")}}break;case"mouseout":if(this.domElement&&this.cssEffects){this.recoverActive=false;if(this.domElement.hasClass("active")){this.domElement.removeClass("active");this.recoverActive=true}this.domElement.removeClass("hover")}break;case"mousedown":if(this.domElement&&this.cssEffects){this.domElement.addClass("active")}break;case"mouseup":if(this.domElement&&this.cssEffects){this.domElement.removeClass("active");this.recoverActive=false}break}if(this.handlers[d]){for(var b=0,a=this.handlers[d].length;ba").click(function(){$($(this).data("target")).slideToggle(100)});var e=$(".diff-counter");e.length<1||e.each(function(e,t){var n=$(t),i=n.find("span[data-line].add").data("line"),r=n.find("span[data-line].del").data("line"),o=parseFloat(i)/(parseFloat(i)+parseFloat(r))*100;n.find(".bar .add").css("width",o+"%")})}function homepage(){$("#promo-form").submit(function(e){return""===$("#username").val()?(e.preventDefault(),window.location.href=Gogs.AppSubUrl+"/user/login",!0):void 0}),$("#register-button").click(function(e){return""===$("#username").val()?(e.preventDefault(),window.location.href=Gogs.AppSubUrl+"/user/sign_up",!0):void $("#promo-form").attr("action",Gogs.AppSubUrl+"/user/sign_up")})}!function(e,t){"object"==typeof module&&"object"==typeof module.exports?module.exports=e.document?t(e,!0):function(e){if(!e.document)throw new Error("jQuery requires a window with a document");return t(e)}:t(e)}("undefined"!=typeof window?window:this,function(e,t){function n(e){var t=e.length,n=oe.type(e);return"function"===n||oe.isWindow(e)?!1:1===e.nodeType&&t?!0:"array"===n||0===t||"number"==typeof t&&t>0&&t-1 in e}function i(e,t,n){if(oe.isFunction(t))return oe.grep(e,function(e,i){return!!t.call(e,i,e)!==n});if(t.nodeType)return oe.grep(e,function(e){return e===t!==n});if("string"==typeof t){if(pe.test(t))return oe.filter(t,e,n);t=oe.filter(t,e)}return oe.grep(e,function(e){return oe.inArray(e,t)>=0!==n})}function r(e,t){do e=e[t];while(e&&1!==e.nodeType);return e}function o(e){var t=we[e]={};return oe.each(e.match(xe)||[],function(e,n){t[n]=!0}),t}function a(){me.addEventListener?(me.removeEventListener("DOMContentLoaded",s,!1),e.removeEventListener("load",s,!1)):(me.detachEvent("onreadystatechange",s),e.detachEvent("onload",s))}function s(){(me.addEventListener||"load"===event.type||"complete"===me.readyState)&&(a(),oe.ready())}function l(e,t,n){if(void 0===n&&1===e.nodeType){var i="data-"+t.replace(Te,"-$1").toLowerCase();if(n=e.getAttribute(i),"string"==typeof n){try{n="true"===n?!0:"false"===n?!1:"null"===n?null:+n+""===n?+n:Se.test(n)?oe.parseJSON(n):n}catch(r){}oe.data(e,t,n)}else n=void 0}return n}function c(e){var t;for(t in e)if(("data"!==t||!oe.isEmptyObject(e[t]))&&"toJSON"!==t)return!1;return!0}function u(e,t,n,i){if(oe.acceptData(e)){var r,o,a=oe.expando,s=e.nodeType,l=s?oe.cache:e,c=s?e[a]:e[a]&&a;if(c&&l[c]&&(i||l[c].data)||void 0!==n||"string"!=typeof t)return c||(c=s?e[a]=V.pop()||oe.guid++:a),l[c]||(l[c]=s?{}:{toJSON:oe.noop}),("object"==typeof t||"function"==typeof t)&&(i?l[c]=oe.extend(l[c],t):l[c].data=oe.extend(l[c].data,t)),o=l[c],i||(o.data||(o.data={}),o=o.data),void 0!==n&&(o[oe.camelCase(t)]=n),"string"==typeof t?(r=o[t],null==r&&(r=o[oe.camelCase(t)])):r=o,r}}function d(e,t,n){if(oe.acceptData(e)){var i,r,o=e.nodeType,a=o?oe.cache:e,s=o?e[oe.expando]:oe.expando;if(a[s]){if(t&&(i=n?a[s]:a[s].data)){oe.isArray(t)?t=t.concat(oe.map(t,oe.camelCase)):t in i?t=[t]:(t=oe.camelCase(t),t=t in i?[t]:t.split(" ")),r=t.length;for(;r--;)delete i[t[r]];if(n?!c(i):!oe.isEmptyObject(i))return}(n||(delete a[s].data,c(a[s])))&&(o?oe.cleanData([e],!0):ie.deleteExpando||a!=a.window?delete a[s]:a[s]=null)}}}function f(){return!0}function p(){return!1}function h(){try{return me.activeElement}catch(e){}}function m(e){var t=Pe.split("|"),n=e.createDocumentFragment();if(n.createElement)for(;t.length;)n.createElement(t.pop());return n}function g(e,t){var n,i,r=0,o=typeof e.getElementsByTagName!==$e?e.getElementsByTagName(t||"*"):typeof e.querySelectorAll!==$e?e.querySelectorAll(t||"*"):void 0;if(!o)for(o=[],n=e.childNodes||e;null!=(i=n[r]);r++)!t||oe.nodeName(i,t)?o.push(i):oe.merge(o,g(i,t));return void 0===t||t&&oe.nodeName(e,t)?oe.merge([e],o):o}function v(e){De.test(e.type)&&(e.defaultChecked=e.checked)}function y(e,t){return oe.nodeName(e,"table")&&oe.nodeName(11!==t.nodeType?t:t.firstChild,"tr")?e.getElementsByTagName("tbody")[0]||e.appendChild(e.ownerDocument.createElement("tbody")):e}function b(e){return e.type=(null!==oe.find.attr(e,"type"))+"/"+e.type,e}function x(e){var t=Ze.exec(e.type);return t?e.type=t[1]:e.removeAttribute("type"),e}function w(e,t){for(var n,i=0;null!=(n=e[i]);i++)oe._data(n,"globalEval",!t||oe._data(t[i],"globalEval"))}function C(e,t){if(1===t.nodeType&&oe.hasData(e)){var n,i,r,o=oe._data(e),a=oe._data(t,o),s=o.events;if(s){delete a.handle,a.events={};for(n in s)for(i=0,r=s[n].length;r>i;i++)oe.event.add(t,n,s[n][i])}a.data&&(a.data=oe.extend({},a.data))}}function k(e,t){var n,i,r;if(1===t.nodeType){if(n=t.nodeName.toLowerCase(),!ie.noCloneEvent&&t[oe.expando]){r=oe._data(t);for(i in r.events)oe.removeEvent(t,i,r.handle);t.removeAttribute(oe.expando)}"script"===n&&t.text!==e.text?(b(t).text=e.text,x(t)):"object"===n?(t.parentNode&&(t.outerHTML=e.outerHTML),ie.html5Clone&&e.innerHTML&&!oe.trim(t.innerHTML)&&(t.innerHTML=e.innerHTML)):"input"===n&&De.test(e.type)?(t.defaultChecked=t.checked=e.checked,t.value!==e.value&&(t.value=e.value)):"option"===n?t.defaultSelected=t.selected=e.defaultSelected:("input"===n||"textarea"===n)&&(t.defaultValue=e.defaultValue)}}function S(t,n){var i,r=oe(n.createElement(t)).appendTo(n.body),o=e.getDefaultComputedStyle&&(i=e.getDefaultComputedStyle(r[0]))?i.display:oe.css(r[0],"display");return r.detach(),o}function T(e){var t=me,n=Je[e];return n||(n=S(e,t),"none"!==n&&n||(Ke=(Ke||oe("