From 86dbda0b42d05caf11d5c6d040f18dfbcc742e04 Mon Sep 17 00:00:00 2001 From: Unknwon Date: Fri, 24 Jul 2015 16:42:47 +0800 Subject: [PATCH] UI: basci issue list without filters - fix isRead check - fix paging --- cmd/web.go | 22 +++-- conf/locale/locale_en-US.ini | 2 + models/issue.go | 34 ++++---- modules/bindata/bindata.go | 4 +- modules/setting/setting.go | 5 +- public/css/gogs.min.css | 2 +- public/js/gogs.js | 2 +- public/less/_repository.less | 6 +- routers/repo/issue.go | 42 ++++++---- templates/base/head.tmpl | 2 +- templates/repo/issue/list.tmpl | 17 ++-- templates/repo/issue/milestone.tmpl | 14 ++-- templates/repo/issue/milestone_edit.tmpl | 2 +- templates/repo/issue/milestone_new.tmpl | 2 +- templates/repo/issue2/list.tmpl | 101 ----------------------- templates/repo/toolbar.tmpl | 2 +- 16 files changed, 95 insertions(+), 164 deletions(-) delete mode 100644 templates/repo/issue2/list.tmpl diff --git a/cmd/web.go b/cmd/web.go index db1bf98af..b391d6564 100644 --- a/cmd/web.go +++ b/cmd/web.go @@ -416,14 +416,18 @@ func runWeb(ctx *cli.Context) { m.Post("/:index/milestone", repo.UpdateIssueMilestone) m.Post("/:index/assignee", repo.UpdateAssignee) m.Get("/:index/attachment/:id", repo.IssueGetAttachment) - m.Post("/labels/new", bindIgnErr(auth.CreateLabelForm{}), repo.NewLabel) - m.Post("/labels/edit", bindIgnErr(auth.CreateLabelForm{}), repo.UpdateLabel) - m.Post("/labels/delete", repo.DeleteLabel) - m.Get("/milestones/new", repo.NewMilestone) - m.Post("/milestones/new", bindIgnErr(auth.CreateMilestoneForm{}), repo.NewMilestonePost) - m.Get("/milestones/:index/edit", repo.UpdateMilestone) - m.Post("/milestones/:index/edit", bindIgnErr(auth.CreateMilestoneForm{}), repo.UpdateMilestonePost) - m.Get("/milestones/:index/:action", repo.UpdateMilestone) + }) + m.Group("/labels", func() { + m.Post("/new", bindIgnErr(auth.CreateLabelForm{}), repo.NewLabel) + m.Post("/edit", bindIgnErr(auth.CreateLabelForm{}), repo.UpdateLabel) + m.Post("/delete", repo.DeleteLabel) + }) + m.Group("/milestones", func() { + m.Get("/new", repo.NewMilestone) + m.Post("/new", bindIgnErr(auth.CreateMilestoneForm{}), repo.NewMilestonePost) + m.Get("/:index/edit", repo.UpdateMilestone) + m.Post("/:index/edit", bindIgnErr(auth.CreateMilestoneForm{}), repo.UpdateMilestonePost) + m.Get("/:index/:action", repo.UpdateMilestone) }) m.Post("/comment/:action", repo.Comment) @@ -440,7 +444,7 @@ func runWeb(ctx *cli.Context) { m.Get("/releases", middleware.RepoRef(), repo.Releases) m.Get("/issues", repo.Issues) m.Get("/issues/:index", repo.ViewIssue) - m.Get("/issues/milestones", repo.Milestones) + m.Get("/milestones", repo.Milestones) m.Get("/pulls", repo.Pulls) m.Get("/branches", repo.Branches) m.Get("/archive/*", repo.Download) diff --git a/conf/locale/locale_en-US.ini b/conf/locale/locale_en-US.ini index 8bac47077..a8a9c78ef 100644 --- a/conf/locale/locale_en-US.ini +++ b/conf/locale/locale_en-US.ini @@ -369,6 +369,8 @@ issues.filter_type.assigned_to_you = Assigned to you issues.filter_type.created_by_you = Created by you issues.filter_type.mentioning_you = Mentioning you issues.opened_by = opened %s by %[2]s +issues.previous = Previous Page +issues.next = Next Page settings = Settings settings.options = Options diff --git a/models/issue.go b/models/issue.go index 600304477..96bffa0b6 100644 --- a/models/issue.go +++ b/models/issue.go @@ -17,6 +17,7 @@ import ( "github.com/go-xorm/xorm" "github.com/gogits/gogs/modules/log" + "github.com/gogits/gogs/modules/setting" ) var ( @@ -114,19 +115,14 @@ func (i *Issue) AfterDelete() { // CreateIssue creates new issue for repository. func NewIssue(issue *Issue) (err error) { sess := x.NewSession() - defer sess.Close() + defer sessionRelease(sess) if err = sess.Begin(); err != nil { return err } if _, err = sess.Insert(issue); err != nil { - sess.Rollback() return err - } - - rawSql := "UPDATE `repository` SET num_issues = num_issues + 1 WHERE id = ?" - if _, err = sess.Exec(rawSql, issue.RepoId); err != nil { - sess.Rollback() + } else if _, err = sess.Exec("UPDATE `repository` SET num_issues = num_issues + 1 WHERE id = ?", issue.RepoId); err != nil { return err } @@ -191,7 +187,7 @@ func GetIssueById(id int64) (*Issue, error) { // GetIssues returns a list of issues by given conditions. func GetIssues(uid, rid, pid, mid int64, page int, isClosed bool, labelIds, sortType string) ([]Issue, error) { - sess := x.Limit(20, (page-1)*20) + sess := x.Limit(setting.IssuePagingNum, (page-1)*setting.IssuePagingNum) if rid > 0 { sess.Where("repo_id=?", rid).And("is_closed=?", isClosed) @@ -211,9 +207,8 @@ func GetIssues(uid, rid, pid, mid int64, page int, isClosed bool, labelIds, sort if len(labelIds) > 0 { for _, label := range strings.Split(labelIds, ",") { - // Prevent SQL inject. if com.StrTo(label).MustInt() > 0 { - sess.And("label_ids like '%$" + label + "|%'") + sess.And("label_ids like ?", "'%$"+label+"|%'") } } } @@ -236,8 +231,7 @@ func GetIssues(uid, rid, pid, mid int64, page int, isClosed bool, labelIds, sort } var issues []Issue - err := sess.Find(&issues) - return issues, err + return issues, sess.Find(&issues) } type IssueStatus int @@ -281,6 +275,7 @@ type IssueUser struct { IsClosed bool } +// FIXME: organization // NewIssueUserPairs adds new issue-user pairs for new issue of repository. func NewIssueUserPairs(repo *Repository, issueID, orgID, posterID, assigneeID int64) error { users, err := repo.GetCollaborators() @@ -316,13 +311,24 @@ func NewIssueUserPairs(repo *Repository, issueID, orgID, posterID, assigneeID in } } + // Add owner's as well. + if repo.OwnerId != posterID { + iu.Id = 0 + iu.Uid = repo.OwnerId + iu.IsAssigned = iu.Uid == assigneeID + if _, err = x.Insert(iu); err != nil { + return err + } + } + return nil } // PairsContains returns true when pairs list contains given issue. -func PairsContains(ius []*IssueUser, issueId int64) int { +func PairsContains(ius []*IssueUser, issueId, uid int64) int { for i := range ius { - if ius[i].IssueId == issueId { + if ius[i].IssueId == issueId && + ius[i].Uid == uid { return i } } diff --git a/modules/bindata/bindata.go b/modules/bindata/bindata.go index fa798e495..af0865c0e 100644 --- a/modules/bindata/bindata.go +++ b/modules/bindata/bindata.go @@ -771,7 +771,7 @@ func confLocaleLocale_deDeIni() (*asset, error) { return a, nil } -var _confLocaleLocale_enUsIni = []byte("\x1f\x8b\x08\x00\x00\x09\x6e\x88\x00\xff\xc4\x7d\xeb\x92\xdc\x46\xb2\xde\x7f\x3c\x05\x24\x07\x4d\x29\x62\xd8\x0c\x49\x61\x87\x43\x41\x52\x1e\xcd\x88\x97\x3d\x9c\xcb\xe1\x0c\x77\x7d\xcc\x60\x60\xd1\x0d\x4c\x37\x76\xba\x81\x5e\x00\x3d\xad\xde\x5f\x7e\x0d\xbf\x9e\x9f\xc4\x99\x5f\x66\xd6\x05\x40\x0f\xc5\x3d\x0e\x9f\x3f\x33\x85\xaa\xac\x5b\x56\x56\x56\xde\xaa\x3a\xdf\x6e\xb3\xa2\xec\x16\xe9\xcb\xf4\x34\xdd\xe6\x55\xbd\x2e\xbb\x2e\xed\xca\xf5\xdd\xb3\x55\xd3\xf5\x65\x91\xbe\xa9\x7a\xfa\x6e\x1f\xaa\x45\x99\x24\xab\x66\x53\x12\xe8\x5b\xfa\x97\x14\x79\xb7\x9a\x37\x79\x5b\x50\xc6\xb9\xa5\x93\xf2\xf7\xed\xba\x69\x19\xe8\x37\x49\x25\xab\x72\xbd\xe5\x3a\xf4\x2f\xe9\xaa\x65\x9d\x55\x35\x7d\xde\x50\x2a\x7d\x57\x27\x5d\xb3\xa8\xf2\x75\x16\x14\x20\xc3\xca\x7f\x4e\x7f\xac\x8b\xf4\xa6\x2f\xb7\xe9\x8b\x6e\x93\xaf\xd7\xaf\xf2\x0e\x55\xfa\x32\xcd\x17\x8b\x66\x57\xf7\x2f\x9e\x4b\x81\x34\xde\xec\x7a\x6b\xfd\x6a\xd7\x4b\xde\x6e\x6b\x59\x1f\xb7\x49\x5b\x2e\x2b\x9a\x58\x4b\x59\x1f\x34\x99\xec\xcb\x79\x57\xf5\x3c\xe8\xbf\x48\x2a\x79\x28\xdb\xae\x6a\x78\x3c\x7f\x96\x54\xb2\xcd\x97\x0c\x70\x4d\xff\x92\xbe\xdc\x6c\xd7\x39\x2a\xdc\x6a\x32\x59\xe7\xf5\x72\x27\x30\xef\x35\x99\x24\x3b\xc2\x5c\x9d\x03\x67\x1f\x35\x99\x94\x9b\xbc\x5a\x33\x7e\x9e\x71\x82\xda\xed\xba\x7d\x03\x2c\x5e\x6b\x92\xc6\x98\xf5\x87\x6d\x89\x21\x3e\xbb\xa5\x54\xb2\xc8\xb7\xfd\x62\x95\x53\xce\x99\xa4\x12\x02\xda\x36\x34\xd6\xa6\x3d\x00\xce\x3e\x92\xa6\x5d\xe6\x75\xf5\x8f\xbc\x97\xf1\x5f\x05\x9f\xc9\xa6\x6a\xdb\x86\xa7\x7e\x81\x44\x52\x97\xfb\x8c\xdb\xa1\x9c\xcb\x72\x1f\xb6\xc2\x25\x9b\x6a\xd9\xca\x2c\xb9\xf0\x02\x5f\xdc\x0a\x97\xdd\x35\xed\xbd\x16\xbc\xe6\xe4\xa0\x2a\x0d\x42\x4b\xe3\xfe\xf3\x9a\xf0\xa2\xa5\x17\xf8\x88\x00\xba\x24\x2f\x36\x55\x9d\x6d\xf3\xba\x64\x1c\x9d\xf2\x17\xe1\x85\xbe\x12\x5d\xee\xac\x2b\xfb\xbe\xaa\x97\x1d\x17\x4b\x56\x7a\xa3\x59\x49\x50\xe6\xf2\x78\x3c\x5d\x76\x57\x96\x85\x8c\xa8\x4b\x5f\x53\x3a\xd9\xee\xd6\x6b\x9a\xfb\xdf\x77\x65\xd7\x33\xfc\x35\x7d\xd3\x2c\xe4\x3b\xa9\xba\x8e\x12\x94\xfd\x0e\x89\x84\x16\xa0\x5e\x60\x48\x67\x48\x24\xc9\xa7\xae\xcc\xdb\xc5\xea\x73\x22\xff\xd1\x23\x27\x66\xb3\xd9\xd1\xa5\x61\x72\x50\x52\x90\x1e\xac\x83\x64\xd1\x14\xfc\x71\x46\xff\xa8\xe9\xaa\xee\x7a\x22\xe9\xcf\x89\x26\x18\x4c\x52\x82\xc6\xbe\xea\xd7\xa5\xcf\xc4\xfe\xe8\x78\x1d\xd2\xd7\x55\xdb\xf5\xcf\xfa\x8a\x48\xee\xc3\xae\x4e\x78\x7e\x44\xce\x59\x31\xb7\x5d\xfe\xa6\x21\xec\x20\xbb\xa5\xf9\x5d\x1c\x6e\xfe\xf5\xfd\x49\x7a\x4d\x5b\x7d\xd9\x96\x94\x4e\xa9\x0d\xfa\x47\x75\x7e\x9a\x25\x54\xcb\x7a\x3a\xcf\xfb\x7c\x9e\x77\xa5\x47\x2b\x17\x0a\x8d\xba\x32\x50\x2a\xb3\x0d\xb0\x88\xae\x8f\xe6\x3b\x45\xe7\xd4\x86\xee\x0e\xd7\xc6\x25\x6f\x11\xca\x67\xae\x81\xca\xd7\xeb\x92\xf3\xa9\xa9\xf4\xdd\xe5\xe5\xd5\xf9\xaf\x69\x59\x2f\xab\xba\x4c\xf7\x55\xbf\x4a\x77\xfd\xdd\x7f\xcb\x96\x65\x5d\xb6\xc4\x44\x16\x55\x4a\x3b\xa3\x25\x22\x48\x89\x3c\x65\x72\xb3\xa4\xeb\xd6\xd9\x46\xd0\x7b\x73\xf3\x3e\xbd\x60\x14\x6f\xf3\x7e\x85\x81\xf4\xab\xa4\xfb\xfb\x9a\x51\xe4\x3a\xbc\x5d\x95\xe9\x5d\x45\xb3\x06\x50\x73\x67\xf8\x48\x0b\x1d\xe3\x2c\x29\xdb\x36\xa3\x7d\xdf\x1f\x32\xad\xac\xed\x0d\x21\xa5\x09\x22\x9d\xba\xe9\xd3\x79\x99\xa2\xce\x2c\x49\x6c\xc0\x86\xdd\xd3\xed\x76\x5d\x2d\x64\xc7\xbe\x91\x32\x8f\x68\x66\xd1\x8a\xa5\x10\x0e\x88\xb2\xb2\x00\x5d\xc4\xff\x0e\xcd\xae\x4d\x23\x36\x80\xfa\xab\x92\xf8\xf2\x6a\x47\x5b\x2e\x27\x9e\xba\x6e\x76\xc5\x37\xa0\x54\x1b\xbd\x27\xd4\xf4\x43\x43\x03\x06\x76\x1c\x80\xef\xe2\x94\x28\x8e\x4f\x85\xb6\xdc\x34\xc4\x1d\x1c\xb1\x57\x44\x50\xfb\x8a\x0a\x69\xa6\x5d\xfe\x40\xfb\xad\x6f\xd2\x7e\x55\x75\x69\x41\xc4\xb6\xe0\x86\x69\x6b\xec\x88\x1f\x0b\x59\x10\x81\x0a\x69\x58\x5e\xbc\x06\x80\xda\xec\x88\x9a\x56\xd4\x18\x73\x7b\x3e\x9a\xa8\xc9\xa9\x71\x62\x4a\xd4\x0e\xe8\x9b\x28\xb7\x21\xde\xca\xdc\xef\x1c\x09\xfd\x0e\xdb\xa7\x51\xe5\x77\x77\x34\xaa\x8e\xa8\xe2\x6d\xba\x58\x37\x44\x52\x1f\x3f\xbc\xa7\xca\xab\xbe\xdf\x66\xdb\xa6\x05\x19\xdf\xde\x5e\xd3\xf6\x68\x7b\x9f\x1b\xe0\x9a\x61\xea\xdd\x66\x4e\x5f\xfb\x55\x45\x4c\x20\x0f\x16\x08\xa8\x58\xf3\x01\x53\xa7\x4d\x3d\xc3\x5a\xed\xda\xf5\x60\x19\xa9\x4b\x2b\x39\x32\x3c\x1e\xc2\x73\xfe\x73\xe3\x47\x89\xe9\x76\x74\x0a\xef\xb1\xa8\x34\xd5\x12\xa7\x09\xd1\x56\xb3\xe5\x76\x03\xe2\xba\xd2\x0c\x4f\x51\x38\x81\x5c\xb9\x9c\x43\x54\x8a\x33\x3e\xe0\xa5\x1b\x9a\xb0\xee\xe6\x9b\x0b\x42\x03\xb6\x34\x72\xef\xda\x66\x43\xb9\xaf\xe9\x9f\xcf\xf0\xc3\xbf\xe0\xf6\x00\x93\x17\x05\xb1\x99\xee\x24\xfd\xf0\xfa\x2c\xfd\x2f\x3f\xfd\xf8\xe3\x2c\x7d\xd7\xf3\x86\x60\x1a\xf9\x1b\xaf\x2d\x25\xe5\x40\x74\xa0\xb4\x73\x7b\x5a\xfe\x6f\x99\xc0\xbf\x4d\x5f\xa0\xf4\xbf\x97\xbf\xe7\x74\xce\x96\xb3\x45\xb3\x79\xc5\x9b\x7b\x93\xf7\xb3\x84\x4b\x88\x6a\x94\x9c\x6e\xca\xba\xa0\x84\x1e\xab\x5a\x16\x70\x1d\x2d\x0f\x0e\x59\x39\xfd\xb3\x45\x53\xdf\x55\x2d\x4f\xe8\xb7\x3a\x9f\x13\x4e\x4c\x2e\x20\x76\x8c\x12\x3b\xbb\x08\x69\xb4\x91\xab\xbb\x83\x07\xc5\x54\x2f\x39\x53\x17\x34\x61\x59\x89\x1a\x55\x91\xc9\x61\xf9\x06\xd9\x58\xb7\x2b\x9a\x5e\x6b\xf8\xee\x3c\xc2\x9b\xbb\xbb\x35\x31\x36\x63\x56\xda\xc3\x95\xe4\x0a\xdf\x0a\x41\x88\x18\xb7\x90\x6c\xce\xab\x0e\x90\x67\xe7\x97\x69\xf9\x40\xd4\x46\xe4\xb0\x6d\x9b\x62\xb7\x00\x85\x31\xec\x49\xca\xc7\x04\xe1\x97\x38\xc3\x42\xd8\x5b\xb0\x57\x79\x68\xcc\x10\x16\x04\x44\x5b\xb4\x90\xf6\x32\x41\x50\x6b\x82\x84\x75\x73\xc3\xc2\x61\x58\x36\x59\x61\x34\x3a\xac\x52\x37\xac\x4b\xcb\x5d\xaf\x0f\x29\x4e\x7d\xd0\xc5\xa2\x2d\x03\xd9\xae\x9b\x25\x7a\x56\x99\x84\x98\x3d\x54\x24\x54\x04\x4b\x85\x52\x13\x17\x99\x3d\xfc\x99\x01\x58\x4c\xeb\x26\xeb\xba\x81\x5d\x71\xc7\x5c\x42\x73\xa7\xce\x79\x7c\x1d\x86\x80\x1e\x58\xdc\x23\x62\x7c\xa8\xc0\x69\x14\x59\x18\x2b\x61\x0c\x5d\x53\x57\x5d\x59\xa2\x05\xaa\xff\x9c\xda\x44\x9d\x99\x8a\x30\x2a\x8a\xd8\xb9\xfb\x6f\xcd\x2e\x2d\x9a\x94\x0f\x02\xb0\x33\xaa\x6d\x53\xad\x75\xfa\x3a\xe7\xb4\xad\x96\x2b\xe2\x2b\xcd\xfe\x44\x90\xb6\x5f\x35\x25\xd3\xce\xbb\xf3\x97\x3f\xc8\x38\x96\xcc\xdc\x5c\x25\x66\x8b\xf9\xae\x6f\x98\x4e\x75\x09\x65\x08\xee\x78\x01\xe4\x48\x58\x12\xa0\xa1\x78\x6a\x02\xd8\xf8\xb4\xd6\x7d\x12\x96\xe9\x06\xf1\x30\x52\x7b\x20\xe2\xaa\x14\x93\x2d\x1b\x48\x66\x26\xb5\x30\xab\x26\x51\xba\xeb\xb3\x65\xd5\x67\x77\xbc\x61\xb9\xcd\xd7\x5c\x97\x4f\x0e\x2a\x49\x9f\x52\xd1\xd3\x94\x76\x3d\x49\x8e\xc5\xcf\xe9\x93\x07\x3d\xae\x7f\xe2\x9d\x98\xe5\x0f\x04\x8b\xc5\x00\x82\x5b\xa2\x70\x91\x16\x4c\x7c\x2f\x1a\xa2\x73\xc6\x79\xb7\xdb\x82\xa3\xeb\x09\x7d\x92\x6e\x05\xb0\x68\xf6\xf5\xba\xc9\x0b\xb0\x1c\xda\x5d\x15\x94\x8f\x79\x55\xe7\x74\xba\x58\x2b\x60\x65\x4f\x88\x1a\x2e\xaf\x6e\x01\xb8\x6c\xe6\xbb\x6a\x5d\x18\xc0\x8c\x66\xf8\x90\xaf\xab\x82\xe5\x2c\x5d\xf7\x50\xa6\xb1\xac\x4a\xc6\xb2\x68\x5a\x3e\x0e\x31\x1b\xab\x78\xe4\x1c\x6e\xf9\x7c\x43\x36\xd5\x55\x58\xd4\x73\x47\x26\xa3\x81\x16\x1e\x02\x28\x1f\xa8\xa0\x98\xaa\xab\x9f\xf6\x18\xe9\x62\x47\x7d\xd1\xa2\x73\x36\x55\xec\xd2\x67\xaf\xe8\x6f\xc2\xc7\xb3\xf0\xbd\xe5\x18\xf1\x5c\x98\x4a\xe1\x4e\x76\x69\x34\xd4\x88\xbc\x1d\x75\x19\xf1\x06\x73\x0d\xc7\x6b\x24\xd0\xed\x84\x5e\x59\xd3\x5a\xd3\xb2\x96\xdf\x50\xe2\x29\x6d\xe0\xe5\x1a\x8b\x90\x43\x7a\x21\x31\xae\x21\xbc\x31\x81\x9c\xc8\x76\xb9\xa3\xa9\x31\xef\xec\xf3\x7b\x1a\x5b\xde\x92\x10\x96\x7c\x62\x6d\xf4\x73\xb2\x13\x01\xa8\x59\x17\x4e\xd8\x04\x4d\x37\xed\x50\xc5\xf2\x40\x8e\x5e\x3b\x92\x22\x17\xab\xcc\xe9\xb2\x8c\x94\xbe\xfc\x1d\x67\x1e\x8a\xbc\x6a\xcb\xc4\xce\x45\xc9\xe6\x80\xe5\xe2\x49\x5c\x1c\xfc\x6a\x91\xf8\x43\x5b\x84\x44\xf4\x79\xc3\x58\x7b\x28\x1d\xd4\x59\x98\x1b\x57\xa0\xb6\x48\x50\xd3\xa6\x62\x4d\x88\x8a\x44\x5d\xd3\x52\x51\xd9\x48\x15\xf9\xa4\x3a\xf6\xe7\xc4\x3a\x88\x9a\x4c\x3e\x11\x33\x20\xbd\x44\xd8\x4b\xc6\xda\x98\x2d\x0e\x0d\x45\x78\x0e\x2b\x66\xca\x0f\xfc\x39\xb8\x2a\xb7\x7c\x64\x6e\x3a\xac\xea\x9a\x20\x8b\x83\xca\x5e\x6e\x7d\x7f\x11\x4e\x4b\x0b\x4e\xfc\xe9\x1b\xd3\xde\xbf\xb2\x89\x5f\x2b\x5a\x49\xd4\x8f\x4f\x0e\x3e\xaf\x69\xab\x6d\x81\x7d\xda\x24\x87\x93\x34\x3a\x83\x56\x79\x47\xdc\x97\x0e\x38\xad\x56\xcc\x4c\x3b\xe0\x55\xcb\x17\x42\xf2\xd0\xe4\x41\xa4\x52\xb3\x69\x87\x47\x1a\x8f\x50\x18\x94\xf6\xe2\x0e\x7c\x1c\xe7\xe1\xa9\x3f\xd1\x27\x21\x6c\x53\xb2\xcc\x97\x6d\x44\x43\x97\xaf\xf4\xa2\x4c\x48\x30\x59\xd2\x7e\x34\x7a\x7b\xc9\x2a\xd9\x12\x12\xaa\x92\x1b\x03\x94\x7d\xc8\x41\x15\xc2\x72\x7e\x31\x8b\x05\x6d\xec\x3d\xf4\x55\xda\x9a\x23\xf4\xd3\x59\x43\xc5\x33\xe3\xc8\x72\xe0\x42\x3e\xe9\x68\xb3\x7b\x24\x9e\xa6\xb4\xfa\x69\x08\xa5\x72\xa2\x9f\x16\x57\xe0\x4d\xff\x62\xfe\xea\x49\xf7\xe2\xf9\xfc\x95\x63\x8d\x8b\x55\xb9\xb8\x17\x5d\xa2\xaa\xe7\xcd\xef\x50\xb8\x68\xe1\x19\xc7\x35\x6f\x91\x27\x45\xba\xa2\x52\xc8\xe4\xb4\x95\xa9\x1a\x21\x9e\x4b\xa3\x45\xa3\xc1\xf0\x8e\x9f\x99\xed\xc7\x1d\x0e\x46\x48\x54\x1b\x9d\xc8\xc8\x48\xcd\xc7\xde\xe1\xac\x80\x6e\x4f\x39\x97\x29\x17\x6c\xde\x93\x2e\xe6\xbb\xae\x36\x55\x3f\x22\x1d\xe6\x23\xb9\x92\xa0\xea\xf9\x86\x4b\xb4\x05\x6c\x60\x2c\xc4\x8d\xa9\x19\x3a\x37\x8d\x9c\xf6\x39\xa9\x37\x3f\xa5\x44\x42\x3b\x3a\x85\x78\x4e\x34\x4c\x62\xc7\x39\x1f\xbc\xa4\x20\xe4\x5d\xb6\xab\x15\xad\x65\x61\xc4\xf4\xb6\xc2\x21\xc1\xfd\x1a\xc9\x07\x50\x86\x79\x95\x73\xd3\xef\x1c\xc6\xbf\x27\xa1\xf8\xce\x55\x63\xce\xcd\x03\xaa\x58\x26\xcb\x27\x17\x8f\x38\x5b\x5d\x8a\x7a\x05\x0c\x30\x1c\x2f\x34\x29\x07\x7e\xf5\x48\xc3\xb8\xa7\x1c\x2c\xc8\x7c\xd7\xf7\x0d\xcb\xdc\x6b\xa6\x1a\xa9\x63\xa3\x3e\x03\x20\xd4\x08\xdf\x1e\x16\x24\xc4\x93\xac\x4d\x69\x32\x70\xe6\xad\x70\xaa\xad\x0c\x66\xa7\x47\x9d\x03\x2b\x44\x5d\xcf\xeb\x83\x91\x32\x11\x04\x8f\x82\x3b\xec\xa7\xc7\xf2\x5d\x5b\x7e\xef\x47\xe3\xf6\x0c\x6a\xd8\x88\xa4\x7a\xb0\x9f\x3e\xa0\x14\x54\xe2\x76\x9d\x9d\x5c\x6a\x64\xf1\xf4\xd1\xc6\xe8\x45\x39\xef\x0c\x62\xb0\x24\x36\x16\x40\x34\xcd\x02\xb5\x67\x83\xbe\xbc\xba\x33\xc6\x60\x1f\x0f\xd9\x1f\x40\x7d\xd3\x64\xdd\x4a\x54\x4b\x1b\x5e\xba\x2e\xeb\x65\x64\x26\x80\x0d\x16\x44\xf7\x5f\xf9\x98\x63\x75\xe7\x73\xc2\xe7\xda\xe5\x40\x56\x63\xbe\xaf\x79\x81\xd0\x80\xa2\xdf\x22\x11\xcc\xd6\x25\xb9\x9e\x90\xeb\x3e\x94\xde\xd8\x88\x94\x1b\x37\x69\xc6\xb7\xa6\xbf\x90\x92\x7c\x5f\x6a\xe3\x6f\x49\x17\xee\x3e\x42\x97\x15\xc5\x94\xb5\xd8\xeb\xfc\xc0\x92\x94\x64\xeb\x07\x0a\x6e\xcb\x7c\xa3\xa3\xe4\xa4\x34\x71\x4a\x67\x94\x66\x72\x92\x8e\xae\xc0\x54\x91\x40\xa6\xb0\x29\x88\x80\xa1\x67\xb9\x93\xe9\x4b\xb5\x64\xfe\x75\x64\x5f\xf9\x6b\x92\xaf\xb7\xab\x1c\x87\x7a\x00\x06\x53\x02\x01\x61\x35\x53\x80\x60\x81\x77\x9b\xb2\xad\x16\x9c\xe4\x0a\xdf\x3d\xcb\xbe\x87\x15\x89\xa8\x9f\xa4\xbb\xb8\xb1\x82\x28\xff\x9f\x6a\x90\xd3\x2c\xf9\x85\xed\x42\x8a\xaa\xfe\x51\x0e\x5b\xc4\x59\xc6\x12\x55\x9f\xf2\x56\xee\x59\x6a\x8b\x2b\xe6\xbf\x7f\xa9\xe2\xa6\x99\xa8\x27\xbb\xd7\x57\xb2\x3d\xaa\x13\x88\x77\x30\xc1\xb3\x49\xe2\x28\x34\x2d\x2c\x83\xd4\xf7\x74\x10\xd5\x0e\xec\xa3\x7c\xa7\xf8\xfe\xd9\xac\xd6\xc4\xf5\x55\xe6\xf5\xf6\x6b\x3a\x4f\x0b\x66\x75\x90\x5d\x67\x7e\x87\x84\xf2\xac\x23\x56\x96\xfc\x4c\x4b\x77\x7b\x9d\x84\x40\x11\xed\x89\x60\x66\xde\xd4\x9e\xf1\xb1\x96\xb1\x9c\x58\x87\xd2\xa0\x3b\xf0\xec\x48\x00\x84\x98\x6a\xb3\x71\xbd\xc1\x76\x3a\x5a\x9d\x4e\xef\x89\xda\x57\x63\xdb\xdb\x91\xfa\x3d\x6d\x88\x89\x06\xdc\x3e\x39\x5a\x51\x16\x13\x95\x68\xe6\xc5\x68\xa7\x8f\x2b\x32\x18\x5b\x43\x57\x19\xed\xe3\xa8\xe6\xf5\x6e\x4e\x2c\xcc\x6d\x6f\xa6\x56\x88\xc1\x75\xef\x5b\x91\xda\xa4\x7c\x96\x4b\xb6\x2d\xd9\xb0\xa3\xb1\x2a\x01\x12\xf7\x17\xb0\x90\xfc\xfc\xfa\xb8\xa5\x0e\xa9\x22\x94\xda\xdd\x0a\xc7\xfa\x12\xcd\x99\xc6\x44\x49\xae\x19\x68\x4d\x3a\x0c\x3d\xba\x37\xac\x20\x74\x3b\xe6\xc5\xac\x4c\x88\x38\x12\xaf\x25\x9f\xb4\x68\xaa\x44\x17\xc7\x9b\x27\x4a\x66\x0d\xeb\x4b\xed\x03\xec\x2b\x9b\x0e\xf5\xeb\x71\xc3\xda\xb8\x03\x3a\xd6\xac\xd3\x00\xcb\xdf\x2b\xd8\xe9\xde\x54\x0f\xa5\xea\x80\x4e\xf5\x45\xd9\x2c\x59\x13\x2b\x61\x5d\x43\x66\x25\x82\x6b\xf3\xc0\xaa\x1a\xf7\xc7\xa5\x52\x4f\xec\x76\x3a\x29\x5e\x67\xd5\x26\x49\x7b\x6b\xf6\x65\x71\x42\x67\x3a\xd7\xa0\x71\x82\xe9\xe4\xeb\x7d\x7e\xe8\x60\x14\x31\x7e\xc5\x36\x4a\xa9\xce\xcc\x88\x4e\xfc\x25\x46\x15\x1a\xa4\x69\xbf\x1a\x26\x94\x20\xfd\xb9\xbc\x87\x3e\x08\x5e\xa3\x66\x16\x52\xb3\xd9\xe8\x86\x33\x55\xcf\x21\xd6\x65\x59\xf3\x63\xa1\x5e\x8a\x83\x86\xe0\xe3\xd0\x53\x61\xa2\xee\x09\xcb\x43\xd4\x0d\x4b\x27\xc4\xab\x05\xd7\x24\xf0\x11\x66\x31\xa4\xc0\x38\x40\x1b\xa3\x7c\x26\x82\x70\x45\x38\x64\xc5\xca\xeb\xcb\x7c\x6e\xd1\xaa\x98\x25\x57\xf2\xa1\xed\x26\x5d\x4f\x5b\x80\x31\x6d\xde\xb5\x7f\x13\x81\x4a\x75\x64\x2e\xc5\xd6\x02\x9a\xba\x55\xb5\x4d\x1b\x58\x07\x43\x14\x7a\xb2\x0d\x64\x4a\xc2\x46\x51\x42\xd0\x66\x33\x69\x9b\xd7\xdd\x5d\x09\x7b\xe9\x26\xbd\x63\xd7\xcf\x4c\xbb\x66\x11\x55\xbc\x6c\x47\x7a\x16\xa5\x05\x5d\x87\x67\x0d\xd6\x2e\x58\xa8\xb8\x6b\x82\x79\x40\xcf\x3a\x06\x60\xd5\xb7\xd4\xd9\x18\x98\xcc\x46\x28\x80\x98\x18\x79\x25\x6c\x34\x0f\x65\x88\x88\xbb\x7f\x76\xe6\x01\xd6\xd5\x24\x2c\x76\xf4\x78\x99\xa4\x53\x98\x27\xe0\x54\x9a\x1f\xe2\xd9\x73\x55\x47\x01\xec\xe2\x78\x28\xb5\x17\xde\x18\xbc\x57\x06\x0d\xc2\x2c\xe1\x95\x83\xa4\xcf\xa1\xe3\xcd\x69\x88\x8b\x55\xb4\x3b\x6f\x51\x92\x4a\xc9\x68\x83\x26\x9f\xb8\x6b\xd2\xdb\x57\x79\xbd\x2c\xd9\xb6\x45\x2d\xf1\x81\x89\x6f\x15\xc9\x25\x93\x06\xbc\x6c\x25\xcd\x16\x71\xab\xb2\xa0\x0d\xd9\x6c\x1e\xad\x59\xd5\x66\xa1\xe9\x92\xbf\x35\x24\x81\xc0\xb4\xfb\x27\x4a\xb1\xb8\x5b\x27\x91\x33\x67\x60\x58\x80\x3e\x50\xf5\x07\x7f\x62\x9c\x6a\x0e\xe9\xb5\xe0\x0e\x30\x55\xbc\xb6\x34\xad\x47\xce\x4c\x8f\xb7\xb6\xa4\x14\x4e\xec\x46\xaf\x2d\x9d\xb0\x5a\xbc\x99\xe1\x70\x60\xe9\x19\xd6\xe8\xe0\x48\x78\xfa\xa4\x7b\xca\x0b\x66\x65\xb3\x00\x7e\x9b\xf7\xc4\x16\x6b\xd1\x49\x84\x43\x85\x55\xb5\xd8\x35\x01\xae\x22\x60\x33\xb8\x70\x05\x15\x9f\x13\x52\x1e\xe1\xf3\xa3\xa9\x49\x6a\xd2\x5f\xa9\x2c\xa6\x53\x79\xf8\x5f\x28\xa9\x26\x90\xd4\x05\x2e\xa8\x6e\x0a\xbf\x9d\x79\x79\xba\xd8\xe9\xd3\x25\x6a\xf3\x89\x0d\x3e\x4a\xde\x2f\xd3\x73\x49\x98\x96\xbb\xab\x30\xa7\xaa\x48\x92\x2d\xf0\x9e\x05\xa3\x95\x85\x70\x83\x96\xff\x81\xd1\xb9\x1d\xca\x05\x84\x05\x69\x05\x84\x6b\x3e\x00\x48\x02\xec\x34\x0d\x34\x34\xb6\xa6\x42\x75\xab\x03\xff\x06\x29\xb8\x5c\x8f\xc1\xf6\xe5\x3c\x65\xfb\x26\x11\x0e\x29\x42\x3a\xd1\x4d\x4e\x3a\xd4\x43\x95\x3b\x53\x0c\xad\x16\x7b\xda\xf5\x14\x7d\xcd\x5e\x76\xb8\x2e\xc7\x31\x17\xec\x80\x50\x5f\xc3\x7b\x4d\x26\xbb\x6d\xc1\x46\x2c\x3f\xe1\x8f\xc8\x70\x13\x8e\xcb\x03\xf3\x22\xa6\x6e\xd5\xbc\x14\x03\xf0\x22\x55\x38\x1e\xd9\x61\x66\xdb\x67\x22\x58\x43\xb7\x50\x31\x04\x09\xad\xfa\x52\xa4\x5a\xaa\x01\xcc\x84\xf7\x00\xbd\xe2\xc8\x03\x42\xe8\xac\x4c\x57\xcd\x3e\x5d\x57\xf5\x7d\xa7\xf8\x75\x06\x10\x53\x8c\xd3\x73\x64\x10\xb0\x98\x66\x58\xac\xaa\xea\x5d\xf9\x4b\x62\x29\xb1\xbc\x23\x39\x0e\x4c\x28\xe5\x54\x1c\x32\x03\x75\x98\x9c\x21\x3b\x3d\x45\xf6\x24\xac\x57\x6c\xb5\x0a\x5c\xb8\xcc\x7e\xd5\x93\x73\x57\xb2\x78\x0e\x76\xf8\x46\xb9\x10\xe1\xa7\x69\x3a\x35\x36\x7a\xf6\xc3\x79\xb0\x4c\x28\x94\xae\x96\x83\xd0\xc5\x94\xc1\x98\x63\x82\xa0\x58\x75\x24\x61\x49\xc7\x83\xbd\x9d\x55\x1b\x09\xae\xf9\xa8\xa5\xe2\xa3\x77\x5a\x09\x8a\x67\x49\xdd\x0c\x26\x13\xba\x08\x2e\x09\x97\x32\x7d\xe3\xa3\x56\x78\x62\xe2\x82\x20\x04\x87\x7d\x34\xd8\x21\x65\x69\x03\x66\xed\xfe\x02\x81\x19\xf9\x84\x9e\x13\xe1\xcd\x8e\xb5\x34\xeb\x48\x28\x3c\x53\xbb\xbd\x2b\x67\xcc\x06\xe5\x97\xf0\x71\x0d\xcd\x0b\x91\x9e\xa5\x2d\x1c\x95\xa6\x07\x63\x1a\xed\x1d\xab\xb7\xa7\xb9\x85\xd3\x31\x82\x9f\x09\xf5\xe7\x30\x05\x8b\x1b\x6c\xd7\x89\x3c\xc9\x5d\xc1\x87\x26\x4d\x10\x02\xa0\xae\x74\x5e\x4b\x39\x15\x6e\xc4\x16\x70\x09\x09\x72\x00\x1a\x15\x14\x6b\xa3\xa5\x39\xad\x43\xc6\xb6\x6d\x69\xd1\xe9\xe0\x1d\x98\x9e\x46\x2c\x2d\x62\x5f\xe0\x5e\x0d\x3c\xb0\x9e\x6b\x91\xfe\xa9\x6d\x31\xff\x47\xca\x72\xbc\xb9\xb2\x64\x73\x96\x75\xaa\xcc\xda\x95\x0a\xcb\x4e\x68\x0c\xd8\x03\xa5\x33\x5d\x14\xc0\x44\x3c\x44\x80\x85\x20\x66\xfa\xb4\xec\x2c\x32\xec\xc2\x44\xfb\x1f\x66\xcc\x8d\x3a\x74\xc6\x5c\x3f\xd4\x01\xd9\xf0\x18\x07\x27\xce\x88\x80\xa8\x00\xe7\xaf\x2e\x7d\x70\xaa\xea\xe2\xbb\xc3\x95\xbb\x11\x99\x9e\xd1\x44\x59\x38\x82\x95\x08\xc0\x61\x59\xc0\x43\x94\x05\x22\x75\x44\xc0\xef\x46\x76\xc7\x98\xbf\x9e\x42\x83\x21\xac\x08\x2c\xcb\x03\x7c\xa0\x89\xf4\xa7\x1a\xd1\x86\x11\x21\x7e\x56\x17\x78\x72\x10\x17\xa3\x17\x89\x4e\x54\x6d\x58\x55\xcb\x15\xcd\xab\xda\xb0\x8f\x11\x5c\xdb\x1c\x59\x5e\xab\xe3\x2f\xda\x78\xcd\x92\x0e\x7c\x91\x28\x45\x19\x77\xdc\xf6\x45\xd7\xb7\x4d\xbd\x7c\x75\xde\xb0\xba\xc5\x76\x14\x3e\x2a\x7e\x79\xf1\x5c\xf3\x89\x65\xf0\x1a\x72\x80\xe3\x9b\xaa\x7f\xbb\x9b\x3f\xed\xd2\x25\xc9\x06\x38\x40\x5e\xe4\xe9\xaa\x2d\xef\x5e\x7e\xfb\xa4\xfb\xf6\x95\x3a\x96\x25\x0c\x68\x5f\x3b\xb4\xbc\x78\x9e\xbf\x62\xe9\xb9\x6b\xd6\x24\xd4\xc6\x55\x9a\xcd\x46\xd6\x97\xd8\xdf\x46\x20\x31\x7e\xf8\xa2\xcb\x1a\x98\x2b\x5b\xc5\x0f\x35\x38\x73\xb4\xee\xd7\x47\x97\x2d\x61\xfb\x82\x1e\xa4\xf4\x29\xc7\x3d\xe7\x99\x51\x41\x4e\x2f\x4a\xd9\xfa\x06\x44\xc4\x8c\x4d\xdb\x09\x4c\x18\x4c\x30\xdf\xd8\x9e\x93\x0e\x83\x1d\x07\x91\xe1\x94\x61\x58\x84\x85\xa2\xab\x96\x8d\xf7\xaa\xd6\xa2\x80\xce\x86\x40\x84\xbd\x6c\xd4\xee\x9f\x5a\xa6\x27\x48\x13\xe9\x94\x1c\x4f\x3d\x35\x0d\x85\x3c\x75\x80\x1d\xa5\xc8\x80\x10\xb5\x55\x17\xd9\x20\x0a\x78\x09\x51\x6a\x5e\xd5\x85\x10\x9e\xd2\x8d\x86\x0a\x38\x82\xa1\xe3\xa8\x66\x20\xd8\xd8\x38\xa1\xdf\x01\xe6\x6e\xa2\xf6\x83\x23\x89\xf6\xfb\xae\x0e\xf6\x9b\x10\x74\xd6\x37\x62\x6b\xd2\x49\x5e\x93\xc4\x8e\x30\xa1\x53\x69\xf0\x96\x8b\x3b\x0d\x55\x53\x3f\xa2\x55\x79\xa3\x99\x58\x2d\x00\x26\x28\xea\x1c\x22\xf0\xe5\x95\x37\x6b\x45\x5d\xbc\x1a\x00\x84\x85\x21\xe2\xb5\x1d\xb6\x12\x97\x6f\x7a\x7a\xfd\x6e\x96\xb8\xfe\xac\xcd\xdf\x72\x92\x3a\x64\x04\x7b\xa7\x37\x32\x43\x19\xee\x50\xe7\x60\x90\xea\x66\xa6\x42\x4d\xd0\xa2\x9b\xd3\x68\x3e\x32\x97\xb8\x5c\x50\x5c\x76\x81\x2e\x2d\xbd\x61\x24\x43\xde\xe6\x66\xfa\x0d\x21\xd6\x59\x74\x98\xa7\x6e\x0f\xcc\x2d\x82\xe0\x8e\x5c\x10\xb4\xc7\x7e\x1f\x44\x95\x10\x24\xf4\xc9\x94\x25\xc4\xd6\x91\xbe\x0d\x58\x89\x3f\xcc\x0d\x28\x01\x64\xb8\xb5\xf5\x8c\xc6\xeb\x8f\x8a\x70\xd0\xa2\xe6\xc6\x52\xcb\x37\xa9\x30\x22\x71\x59\xf2\xb8\x44\xb6\x51\x1c\x87\xca\x0d\xb5\xb9\x2f\xd7\x1c\x7c\xa6\x03\xf2\x7e\x3b\x55\x65\x22\xaf\x9d\x02\x39\x7f\x1d\x07\xfb\xb9\xb3\x58\xd6\x36\xb4\x2f\x58\x63\x04\x41\x04\x0c\x47\x9d\xe8\x20\xc6\x30\xcf\x4e\x2f\x2f\xaf\x6e\x3d\x9f\x64\xca\xaa\x0b\xe2\xe6\xdf\xb8\x90\x95\xd1\xb8\x2c\x70\x05\xe3\x43\x0c\x53\x04\xe1\x43\x67\xb4\xc6\x31\xb8\x70\xe3\x5b\xeb\x94\x5c\x36\xd8\xcd\x0d\x8f\x45\x6a\x14\xf1\xf8\x8b\x63\x22\x7e\xf2\x89\x0f\x98\xcf\x89\x59\xe9\xae\xf8\x7f\x12\x1a\x3a\x03\xd3\x34\xa8\xd9\x5b\xb0\x7d\x84\x26\x0d\xa0\x29\x46\x86\x4f\x1a\xd8\xae\xdb\xe5\x90\xe1\x08\xf7\x0d\xf8\xe2\x5d\x0a\x87\xd4\x09\xdb\x71\x9a\x16\x34\xc8\xc8\xdd\xd5\xd5\xdf\x77\x38\x21\x59\x82\xa3\x13\x9f\x23\xa1\xe6\xd5\x5a\x98\xe7\x9f\xdd\x87\xe4\x73\x6a\x10\xbe\x18\x74\x4e\x5f\x2f\xba\x2d\x07\x77\x11\x6f\xee\x5e\x7e\x4b\x22\x37\x69\x2c\xf8\xfb\x8c\xed\x03\x9a\xca\x8b\x6a\x47\x47\x11\x09\x60\xec\xe9\xa5\xf5\xa4\x2a\xaf\x58\xd7\xbf\x37\x13\xd2\x30\xd2\x1c\x65\x16\x8c\xc8\x65\x88\x48\x44\xee\xc4\xb0\x54\x5c\x15\x1b\x40\x2f\xc6\xa3\x34\x98\x16\xb3\x6b\x26\xf7\xfb\x32\x44\x9d\xba\x08\x74\xa1\xcf\xe9\x5f\x5b\x21\xa2\x52\xf2\x39\xec\x3f\x0d\x42\xfe\x5d\xa6\xef\xf7\x86\x08\x60\xc1\x3a\xca\x6c\x59\xf5\x24\x26\xf3\xf5\x08\x28\xaf\xb4\x83\x88\x4b\xe2\xc6\x80\xa4\x2c\x67\xa2\xae\xc1\xa2\x62\x55\x57\x7d\xc6\x56\xfd\x8d\x44\x81\x53\xb3\xf9\x5a\xc4\x8a\x18\xf3\xe2\x74\x4d\x3f\xfc\x76\x7a\x7e\xf1\xdb\x6c\x53\x58\x50\x88\xe2\x53\xa3\x41\x02\x8c\x16\xe5\x5d\xbe\x5b\x9b\xf5\x0a\x13\x46\x46\xfa\x2b\x32\xf4\x02\x01\x29\x1a\x84\xbf\x07\x39\x23\xe5\x4a\xc1\x3b\xcb\xf9\x8e\xc5\xc8\xef\x8f\xd8\x74\x86\x6e\x95\xaf\x37\xed\x0c\x5b\x78\xdc\xc2\xc3\x6e\xf2\x8c\xed\x75\xa9\x86\x52\x44\xbe\xc6\x44\x2f\x38\x58\x20\xbb\xbb\xe1\x20\x91\xec\x61\xe9\x71\xe2\x36\x75\x23\x3f\x4e\xe3\xf3\xf5\xae\x1c\x10\xb9\xe0\xd1\x68\xdc\x7a\xd2\x65\xb9\xd0\x7b\x17\xc1\xba\x28\xc4\x0c\x11\xc0\x99\x49\xd6\xec\x7b\x66\xa9\x55\xb5\x29\x07\x65\xb6\x75\x84\x74\x5a\x58\xd9\x3b\xc9\x94\x38\x4f\x04\x95\x41\x7c\x8d\xcd\x90\xe6\xf2\xce\xc3\x98\xed\x44\x36\x85\xed\x34\xdd\x22\x77\x6e\xaf\x21\xfa\x97\x43\x3b\xe3\x4d\x86\x2b\x22\x01\xa6\xc2\x80\x0c\x66\x6f\x05\xf3\xe7\xed\x21\x63\x63\x08\x58\xf2\xf6\x90\x20\x6c\x81\x0e\xb4\x0c\xe7\xa5\x64\x82\x41\xae\xab\xad\x5c\x30\xa2\x82\xaa\x94\xd8\x43\x24\xae\xfe\x25\x11\xa4\xb8\x15\xc2\x42\xe3\xd6\x11\x17\x10\x23\xfe\x05\xfc\xaa\x67\x89\x57\x8c\xb3\x2f\xbf\xcd\xe6\xb4\x47\xef\xbf\x0d\x24\x60\xbe\x9f\xc4\x62\xef\x37\x24\x59\xed\xd5\x01\xf9\x51\x52\x89\x7d\xff\x05\x5f\x3b\x8e\x65\x13\x6f\x27\x27\x12\xfd\x62\x1b\x67\xa2\xd7\x62\x98\x19\x25\x2c\x70\x2a\xdb\x20\x61\x33\xe4\x1c\x7f\xdf\xf1\x2c\x45\x78\x7f\x99\xfe\x2b\x7f\xa5\x6f\xf8\x4b\xa7\xc2\xdb\xd8\xed\x51\xac\xf0\x60\x63\x87\xc1\x5d\xe0\x38\x1a\x21\xe9\xf7\xb4\x44\x84\x04\xd8\xd7\x50\x10\x03\xe4\x30\xe2\x64\xbb\x63\x0f\x39\xaf\xbb\xf5\x76\x4d\x39\x88\xc9\xe6\x4c\x3e\xc3\x82\x16\x9c\x01\x3c\x6a\x23\x71\xac\x42\x59\x44\xdf\x96\x90\xb7\xe8\x9f\x96\x65\x04\x9c\xf5\x39\x4c\x9e\x02\x44\x24\xf7\x9f\xd3\x5b\xca\x51\x88\x32\x2c\x4a\x14\x14\xe5\xc3\x8b\x38\xd8\x46\x1d\x38\x2e\x27\x88\xe4\xd7\x65\xd7\x13\x8a\xa0\x3e\xba\x8f\x84\xc7\x58\xf5\x12\x7d\x87\x54\xa2\xb1\xa1\x62\xd6\x96\x64\x02\xa3\x61\x9b\x73\xa4\xd5\x87\x7c\x2f\x9f\x84\x69\xbd\xb9\xf3\x56\x52\x92\x8d\xd8\x61\x01\x45\x84\x31\xc3\x5b\x2f\xb3\x71\x6f\x56\x32\xb8\x1d\x94\x2e\x06\xe5\x77\x22\xd4\xbf\x66\x91\xde\xf2\x72\x30\xa9\xd4\x22\x23\x5c\xfe\x86\xf6\xb8\x18\xc1\x2e\x24\xe5\x4a\x0a\x89\xc4\x39\xe7\x8b\x68\x96\x67\xb1\x8e\x57\xfc\xdf\xe5\x12\x55\xe8\x26\xa1\xff\x89\xa2\x97\x73\x55\xf7\x92\xeb\x48\x9a\x4d\x52\x19\xfb\xa4\xe7\x54\xf6\x84\x76\x1a\x7d\x59\x09\xd1\x29\x1d\x53\xae\xe8\x8c\x3f\x0b\x2b\x24\x7c\x71\x8c\x9d\xb0\x40\x5d\xa9\x41\x99\x5b\xb6\x70\xd5\x06\x30\xc4\x47\x39\x3a\x1b\x62\x98\x26\x07\x10\xca\xb7\xc1\xad\xc7\x25\x33\x0e\x38\x75\xf4\x73\x0a\xaf\x0f\x68\x68\x0a\x54\x3a\xe0\x08\x1d\x0e\x3d\xf3\x5d\x16\xaa\x56\x4c\x55\x92\x4d\x58\x64\xf3\x83\xd6\x91\xbd\x57\xb0\x4f\xe9\x48\x95\x0d\x3b\x8e\xc0\x94\xb4\xca\x85\xcb\x08\xab\x30\xe2\xd1\x30\x41\x48\x9a\xa3\x39\xe8\xd3\x29\xed\xcf\x9f\x7c\xfa\xf1\x33\xb1\x2d\xfc\x63\xbe\x95\x4c\x5e\x7e\xb3\xbc\x99\x5c\x0b\x81\xd3\x41\x52\xbe\x28\x08\x5a\x85\x26\x7d\x16\x7e\x7b\xb0\x55\xd3\xdc\x4b\xe0\xee\x1c\x49\x5f\x42\x62\x8d\x15\xf2\xbd\xa0\xb7\x71\x69\x51\x6e\xd7\xcd\xc1\x2c\x3c\xe7\xf8\x52\xd7\x89\x81\xcc\xf3\xae\x5a\x84\x17\xfb\x7e\xe5\x8c\x89\x59\x14\x6c\x79\x6c\xb3\x7f\x08\xe1\x9c\xe3\x2b\xfd\x9f\x4c\x3a\x0e\x44\x9d\x0a\x57\x16\xcb\x7d\xc3\xae\x05\x57\xaa\x46\xdd\xa0\x2b\xb5\x41\x8f\xfb\x52\xfb\x28\x33\xc0\x69\xc9\xdb\x39\x07\x8e\x55\x31\xee\x3f\x94\x59\x58\x69\x74\x46\xd4\x91\x9f\x60\xca\x3f\x10\x87\x31\x3c\xe2\x21\x70\x43\x71\x1e\x52\xe6\xc4\x9a\xbc\x32\x27\xeb\x18\xcc\x29\x32\xde\xb1\x1a\x8b\x39\xac\xa6\xd7\x62\x37\x85\x73\x95\x9d\xb0\x9c\x15\x7b\x74\x49\x61\x95\x8b\x50\x3e\x08\x12\xc1\x5b\xd0\x7a\x39\x06\xd4\xfa\xc5\x1d\x51\x84\x57\xb0\xa7\xba\x13\x31\x51\xdd\xc4\xe2\x32\x10\x05\x28\x77\x31\xc4\x6c\x55\x19\x4a\xb6\x5c\x2f\x15\x77\x8b\x05\x02\x8b\xcf\xc1\x86\x8a\xb2\x90\x14\x63\x0f\x1b\x70\x1f\x48\x59\x03\x40\x43\xca\x55\xbd\x10\xfb\x9d\xd6\xcf\x23\x0f\xb5\x04\x43\x40\xf4\x54\xbd\x6f\x9e\x2f\xee\xdd\x88\x48\x34\x5c\x94\x6d\x0f\xdf\xf0\x18\xed\x6c\x9b\x5e\x80\x3f\xbd\xd8\xbe\x7a\x06\xe9\x49\xee\x8d\x61\x16\xa2\xb9\x57\x77\x01\x42\x60\x5d\x62\x6b\xd1\x43\x55\x90\x2a\x87\xc5\x98\xbd\x78\xbe\x7d\x15\xd7\x27\x8a\x80\x44\x7d\xb4\x8d\xc1\xc2\xf1\x71\x5e\x21\x08\x95\x83\x2f\x10\x05\x70\xe7\x83\x5b\x3a\xf4\x70\x74\x17\x05\xa6\x87\x80\xd4\x8d\xe3\x7c\xc1\x37\x32\xc6\x89\xa9\xbe\xb8\x3d\x0c\xf5\xd7\xc1\xb0\x39\x35\x0b\x48\x1b\x26\x16\xa3\xd9\x89\xa6\xc4\x74\x33\xd0\x1b\x7c\xac\x81\x1b\x9a\x55\x68\x8f\x0f\x2f\x36\x25\x4c\x99\x10\x1c\x28\xdb\x24\x3d\x53\x95\x93\xbc\x28\x30\x9f\xb3\x20\xfb\x78\x85\x81\x3d\x34\x6a\x2b\x36\x8a\x06\x03\x14\x23\xce\xb1\x76\xce\x26\xdb\x50\xc3\x4f\xd0\x0a\x42\x8a\x2a\x04\x8f\x64\x1a\xd8\x2e\xee\xd0\x74\x18\xbd\xa1\xa5\xfb\x55\x13\x44\x60\x62\x50\x29\x36\x6b\x38\x90\x59\x3c\xd7\xbd\x1c\x21\x8a\x17\x3d\x50\x06\x27\x8d\x6d\x3e\x3b\x6e\x10\xef\xb7\xd9\x11\x6f\x59\x57\xb4\xe8\x38\x32\xf4\x7a\xe6\xd5\xcd\x2d\x2e\xbe\x11\x2f\x24\x46\xb3\x64\x7a\x4d\xff\xb2\xa2\x53\x93\x63\x6a\xf8\x96\x24\xbb\x3a\x96\x69\xb3\x58\xb0\x83\xa3\xaa\xf5\x62\xc9\xbe\x34\x43\x62\x5d\xac\xc5\xd9\x11\xba\x8a\x8c\xef\x8a\xca\x90\xe2\x26\x24\x33\x81\x6e\x5b\x2e\xaa\x3b\x62\xc2\xef\x49\xa2\xe3\xeb\x75\x72\x01\x13\x0c\xf3\x51\x0d\xc3\xcd\x04\xa2\x3e\x9f\xd9\xb3\xf1\x19\xea\xee\x69\xdb\x41\x8a\x79\x6f\x39\xa0\x42\x04\x0b\x2e\x20\x41\x8e\xb4\x2d\x09\x8e\x61\x5b\x6a\x59\x50\xa6\x5c\xea\x63\x7b\x8e\xdc\x75\x62\x25\x08\x0d\xa8\x9b\x07\x26\x69\x84\x80\xf3\xcc\x48\x55\x62\x55\xdb\x1c\xa2\xa1\x2f\x6c\x38\xa6\x8c\x9b\xb7\x71\xbd\x13\xb6\x80\xe5\x43\x10\x8d\xc4\xeb\x9f\x30\x2f\xde\xae\x4b\x17\x38\x68\x6a\xf1\x56\x62\xf4\xf9\xa4\x23\x7c\x21\xde\xcc\x40\xe4\xfc\x40\xcc\x2e\x07\x5e\xed\x74\x39\xcc\xcd\x0c\x84\x72\x3f\x13\x23\xd2\x03\x99\x11\x24\x46\xb0\x11\x84\xf7\x35\x00\xc8\x1c\x0e\x43\x16\xa6\xe0\x5e\x0e\x78\x1b\x51\xa2\xee\x29\xb4\x18\x5e\x5d\x12\xf2\x7d\x64\x1b\x05\x54\x1e\xdd\xbc\xc7\x0c\x35\x64\xff\x05\xc7\x9b\xbf\x62\xea\x7d\xf1\x1c\x49\xbb\xa6\x60\x94\xc7\x17\x7d\x03\x8a\xe3\x4b\x9c\x0d\xe1\x0f\x47\x5f\x5b\x2e\x49\x1b\xb6\xf0\x3d\xa5\x7e\xb6\xad\x83\xca\x43\xef\x6c\xbe\xee\x1a\x6b\x82\x76\x2b\x81\xdc\xb3\xce\x41\x84\xc2\xd7\xd4\xf5\x32\x2d\x38\x7f\x21\x5b\x8b\x1d\x5f\x44\xf0\xbb\x2d\xef\x01\xd9\x50\xd6\x0f\xa6\xfd\xdd\x9f\x6e\xae\x2e\x4f\xd2\xdf\x9f\xed\xf7\xfb\x67\x5c\xfd\xd9\xae\x5d\xb3\x8b\xa8\xe0\xf0\xc0\xff\x71\xf1\xfe\x24\x2d\xfb\xc5\xf7\xb3\xf4\x42\xb6\x86\xf4\x80\x00\x7b\xb1\xfb\xdf\xb1\x3f\x82\xc9\x92\xcd\xbb\xff\xfc\x96\xd9\x4a\x8c\xb9\x5e\xaa\x0e\x23\xce\x43\xa6\xcd\xcb\x6e\x8a\x82\x52\x81\x28\x0c\x5e\x62\x2c\x49\x90\xc7\xc5\x11\x24\x7c\x01\xb0\x6a\xcb\xf7\x91\xd1\x21\xc2\x0d\xf2\x3b\xb6\x9b\xee\xd6\x85\xd0\xa9\x71\x34\x9a\x9d\xa2\xac\x2c\x7e\x19\xb6\x04\x75\x1b\x77\x48\x5f\xa6\x7f\xe2\xe0\x49\x46\xa9\x50\x01\x17\x19\x15\x00\x38\xa4\x25\xec\xb0\x54\x2f\xc1\x94\xc3\x02\x6f\xf8\x38\x2f\x7b\x38\xd1\xa7\x68\x43\x46\xee\xc6\xe6\x57\xd3\x36\x2a\x9d\x6b\xd4\x58\x2b\xdc\x5b\xcc\xf9\x11\x35\x0f\xf6\x00\x9f\x4b\xfb\xe1\x3e\x18\x1e\x49\xba\xc9\x3c\xbb\xd7\x4d\x36\xe2\xf8\x0a\xf8\xa5\x7d\xa6\x12\xc4\x48\xa2\x0b\x7a\x50\xc9\x6e\xd4\x83\xf8\xfa\x32\x9d\xa5\x45\xb7\xc1\xff\x77\xee\xf2\xe2\x23\xc8\xa8\x06\x0c\x24\x26\x19\x46\x48\xb7\x26\x31\x2f\x0b\x77\x38\x1f\x66\x91\x57\xf5\x86\x41\xe0\x4b\x65\x83\xa9\x19\x17\x47\x9e\xe4\x50\xcc\x90\x56\xcd\xcf\x23\xfe\xa8\x41\xe1\xf0\x71\x83\x41\x31\x6b\x16\xf2\x7a\xca\x99\xa4\x92\xa4\xa8\xee\xee\x66\xf3\xb6\xd9\x77\xec\xdc\xc4\x15\x70\x36\xb7\xf0\x77\x7a\x83\x6f\x01\xd9\xe6\xad\xf0\x4c\x49\x48\xa6\x58\x0e\x28\x53\x12\x92\xc9\xac\x63\x74\x05\xf7\x9c\x4a\x70\xeb\x95\x6f\xc4\x73\x54\x8f\x94\xcc\xa4\x0a\x6d\x97\x7d\xc6\xa9\xac\xeb\x73\xd8\x4a\x6e\x58\xd5\x41\xa5\x1b\xce\x51\x30\x4e\x1a\x46\xcd\xc5\xc3\x36\x06\x8b\xb3\xc2\x39\xe7\xbd\x3d\xe0\x86\x06\x47\x60\xb4\x34\x15\x0e\x32\x0f\x12\x3a\x8b\x08\xa2\x50\x81\xcd\x43\x28\x82\x80\xd4\x5f\xdf\x5d\xca\x27\x0c\x3e\x1a\x75\x06\x8b\xcf\x6b\x36\xbd\x9b\x19\x69\x36\x65\x4e\xb2\x32\x31\xcb\x89\xfc\x6f\x2f\xeb\xe0\xcb\x41\x14\x6d\x7e\x07\xff\x18\xff\x77\xb9\x74\x58\xfa\x6a\xd7\x6d\xf9\x6c\x58\x8d\x90\x23\xa8\xbe\x41\xc2\xe5\x43\x00\x78\x09\x39\xc0\xe5\xe5\x2b\xd2\x9c\x02\x1c\x3e\x29\x3c\x46\xcc\x5e\x45\xa4\xf8\x84\x18\x59\xc5\x0a\x8e\x6a\x7c\x83\x0e\x41\x1d\xfe\xe6\x14\x68\x07\xaf\xd4\x18\x44\x9f\x2f\x9d\x8b\x35\x5f\xca\xf5\x1d\x5f\x06\xd1\xc9\x22\x5f\xa3\x3a\xfe\xfa\x94\xa9\x6c\xde\xe8\x48\xe5\x78\x07\x62\x11\xda\x32\x29\x93\x8d\x98\x08\x5e\xec\x56\xb3\xe1\x42\x38\x97\x9d\xe2\x2c\xc5\xb7\x83\xb2\x93\x80\xc9\x25\xdb\x14\xc1\x61\x20\x04\x14\x6e\xdb\x8b\xbc\xbd\xe7\x8b\xe1\x30\xab\x58\x03\xfb\x56\xa3\x15\xf9\x7f\xb8\x62\xfa\x20\xc1\xb5\xa4\x46\x1d\x6e\x69\x53\x96\xee\xe2\x31\x6a\x43\x26\x35\x31\xc8\x55\xe0\xd3\x4b\x22\x63\xdf\x4b\x4a\x5e\x12\x1a\x52\xc6\x38\xd6\x80\xca\x9e\x0d\xd7\x2d\x80\x77\x88\xfe\x4b\xf9\x7f\xfe\xd7\xff\x26\x66\xbf\x25\x25\xb5\x47\x1c\x89\x5e\x61\xf0\xeb\x6e\x1e\x14\xff\x7c\xc4\x33\xe8\xdf\xc1\x40\x04\xfd\xa9\x86\x9e\x52\x6a\x44\xa3\x7c\xb7\xdc\xe8\xfb\x86\x6d\x00\x31\x91\x43\x9a\xf4\x64\xfe\x1b\x93\xee\xb0\x0d\x23\xaa\x4c\xf5\x7f\x17\x42\x6d\x8b\x8b\x45\x93\xc0\x44\x25\x3a\x31\x11\xa8\xb9\x00\xe0\x12\xe3\x4b\x3a\xcb\x67\x7f\x4d\xc7\x2d\x44\x74\x45\x07\x22\xa4\x87\x31\x84\xbd\x61\xf2\x1b\x3f\xa4\x23\x22\xb9\x5c\xe3\x63\xd6\xe2\x1c\xa7\x12\xf8\x2e\x61\x51\xae\x91\xb0\xa3\xa7\x9d\xc5\x46\xe9\x0d\x4f\x44\x1f\x4d\x04\xa8\x85\x41\x57\x24\x91\xab\xb5\x5f\x02\xfa\xd5\xc0\x1f\xbd\xab\x05\x1f\x80\xe9\xd7\x76\xcc\x16\xc9\xb6\x6c\xb6\x12\x26\x8c\x04\xdf\xb9\xe0\xd7\x8a\x98\xfc\xc4\x82\xf6\x0e\x19\xb4\xaf\x91\x81\xdb\x48\xb0\xbc\xf3\xff\x04\x51\xdc\xaa\x04\x72\xae\xa6\x34\x7f\x10\x29\xde\x46\xd7\xe0\xbd\x77\x02\x37\x48\xa2\x7b\xe7\xdc\x38\x10\x35\xe1\x52\x1d\xdd\x2b\xc2\xca\x20\xf7\x31\xe8\xc8\xc7\xfb\x74\x0d\xab\x88\x86\x21\x72\x5b\xc4\xe5\xd4\xee\xaa\x24\x83\x5b\x2d\x7c\xdf\xb3\xe6\x17\x1c\x0c\xcb\xae\x9b\x60\xcb\xe0\x6a\x48\x17\x54\xe3\xf5\x22\xad\x76\xd7\xff\x22\xf0\xec\xd5\xaf\x3a\x7e\x05\xc2\x29\xac\xb8\xba\xe3\xb2\xd3\x35\x09\x60\xeb\x48\x58\x44\x43\x6c\x1d\xfb\xe5\x88\x9b\x74\x7c\x7f\xec\xeb\x1d\xa5\xe3\x36\x1e\x77\x95\xfe\xb3\xd6\xe3\xe9\xe8\x6e\x57\x3c\x0e\xf3\x76\x45\x53\xf1\xde\xff\x0e\x43\x2d\x91\x94\x0e\x63\xb4\xb7\x8f\x5a\x6a\xb5\x8e\x33\xf4\x1d\xbf\xb7\xf7\xf5\xf6\xda\xe8\xbe\xd3\x1f\xb0\xd8\xc6\x33\x0e\xc4\xe0\x68\x54\x0e\x21\x6c\x10\x88\xa3\x78\x8e\x49\xc7\x5e\x2a\x8e\x78\xc6\x50\x86\x1e\x05\xed\x60\xa6\x8f\x56\x89\x43\x78\xc2\x61\x3a\xf5\xdf\x07\xbd\x98\x96\x2c\xc1\x3b\x62\x2e\xf9\x72\x04\xcf\x11\xfb\xdb\x63\xa1\x3c\xc3\x51\x32\xaf\x71\x8f\x61\x85\x83\x7c\xb4\x46\x78\xcc\xc6\x36\xee\x7f\x4f\x78\xcf\xb4\x8d\x8b\x15\x87\xbd\xa9\xba\x38\x94\x0d\x7f\x5e\x61\xe3\x48\x66\xc3\x97\x3c\xe6\xe4\x19\xae\xc7\xdc\x0e\x6f\x5c\xf5\xc3\x41\x73\xf0\x9f\x70\xef\x99\x5e\xfe\xb0\xab\x23\x83\x7c\xcf\xfa\x10\xb9\xba\x95\x58\x1c\x0f\x24\xdf\x10\x77\x26\x4b\x86\xf5\xe3\x3e\xe2\xa0\x26\xcb\x75\x66\xc6\x0b\x24\x5c\x3e\x61\x6d\x51\x22\xc6\xe4\x4c\x52\xae\x44\xaf\x65\xe9\x1d\x46\x3f\x08\xb9\x9f\xf6\x12\x96\x26\x9f\xab\xa7\x9e\xe2\x9a\xdd\xf4\xb4\x28\x87\x2d\x2f\x61\xee\x2e\x6c\xf0\x32\x09\xa0\x8a\x9b\x3a\x2a\x48\xc8\x3f\x0f\xdb\x92\xc7\x39\xf4\xf4\xbc\x6c\xf6\x89\x1c\x9d\x33\xbe\x52\x95\xca\x7d\x2a\xcd\x89\x87\x24\x79\x2c\xa3\x68\x14\x26\xe6\x40\x62\xba\x04\x5d\x8e\xcb\x07\x71\x27\x38\x39\x5c\xc4\x89\x5d\x8f\x64\x01\x14\x52\x03\x42\x05\x58\xae\x0f\x89\x63\xa6\xad\x42\x80\xf5\xdd\x8a\x24\x1a\xf5\x1b\x42\xfc\x91\x8e\x79\x9c\xa3\xee\x4e\xcc\x7e\x80\x68\x79\x0e\x27\x10\x7e\xb8\xb1\x71\xc8\xfb\x41\x6e\x1c\xee\x71\x2a\x3f\x8e\x10\xe2\x8f\x8c\x83\x7b\x79\xce\xef\x79\x62\x11\x1f\x1b\x0f\x29\x87\x1a\xfc\x1f\x5a\xa7\xbb\xe1\x10\x7d\xe0\xc6\x6d\x70\x5e\xc3\xc3\x53\x0c\xe4\x0f\x36\x1f\x8d\x0f\x4e\x29\x11\x47\xc3\x84\x88\x20\x8e\xb8\xc9\x08\xd6\x2f\x6f\x71\x5e\x69\xd4\x74\xa0\x81\x8b\xcd\x83\x4d\x9d\x42\x3a\x2e\x2f\xd2\x41\xc6\xba\x50\xb9\x4e\x0a\xbf\x7c\xf0\x0a\x9c\xc5\x9e\x8a\x7c\x17\x1e\x19\x10\xf0\x6c\x25\x0b\xb9\x2b\xee\xf6\x38\xb3\xba\xa0\xd7\x71\x63\x8e\x55\x03\xca\xb1\xe8\x31\x9c\xf1\xce\x50\x3a\x0b\x8c\x59\xcc\x94\x4f\x4c\x66\x15\x6f\x96\x41\x6d\xf2\x43\xe4\x60\xe3\x98\x5b\xd6\xc8\xa2\x5d\x73\xfc\xc4\x1e\x0f\xc5\x9f\xd5\x72\x01\xdb\x11\x8c\xbc\x1c\xa4\x27\x44\xec\x58\x0a\xb6\xfa\x98\x40\x3c\xd9\x2d\xdb\x9c\x6d\x8d\xb6\xd6\xcc\x2c\x02\x52\x40\x83\x3f\xbb\x59\xba\xd7\xeb\x3c\x37\x80\x07\x83\x1a\x7a\xfa\x18\x53\xf8\x8a\x01\x80\x6d\x3c\x3e\x02\xb0\x05\xb9\x46\x4e\xc3\x08\x58\xc0\x63\x03\xd1\x67\xe7\xfe\xf8\x40\xc0\x37\xfe\xe0\x40\x4e\x6c\x14\x7a\x79\xb1\x28\x26\xf7\xff\x63\xe3\x1b\xa8\x3b\x20\xce\xe8\x76\xec\x80\xe0\xa3\x27\x80\x1d\xd1\x07\xbe\x66\x6b\x16\x0e\x06\xf5\x7d\xeb\x71\xe6\x9b\xaa\x69\x09\xa1\xca\xd6\x7d\xe8\x1f\x8f\x83\xea\xd8\x63\xdb\xb7\x07\x15\x49\x78\x72\x71\x4c\x9f\xbf\x04\x24\x4a\x18\x7c\x45\x72\x63\xfa\x13\xd0\xfe\xf9\xc8\x5b\xde\xf2\x24\xa2\xb8\xff\xba\xe8\x5d\xe9\xf1\xe5\xd5\x47\x2f\x0e\xc7\x17\xa6\x87\x37\xe7\x3b\x09\xd3\x5e\x9a\x2c\x67\xaf\xce\x25\xde\x39\x7e\x73\x20\x1c\x6c\xf0\xd0\xe6\x82\xef\x8c\x35\x75\x25\x7e\xd5\x0b\x49\xf1\xb5\x41\x36\xc5\xa8\x1d\x86\x6f\x0f\xe0\x0d\xb7\x4b\x7e\xaf\xcd\xcf\x0e\xc6\x45\xb6\x31\xa9\x20\x20\xe9\xa0\x3c\xb8\xc8\xca\xaa\x8e\x7d\x84\x2d\x60\x24\x30\x61\xee\x82\x91\xe9\x38\xd0\xe8\xae\x9b\xea\x31\x63\x47\x48\xaa\x6e\x20\xf7\x40\x30\x33\x09\xbe\xad\x55\xf0\x6d\x2d\x79\x83\xf2\x24\xc8\x88\x70\x1e\x16\x6c\xdd\x93\x1d\x51\x76\x7c\xf0\xf9\x7c\x04\x30\xc6\x59\x1c\xb5\x18\x65\xe4\x8b\x51\x2f\xb2\xa9\xe2\x7a\x12\xa1\x14\xe6\xb0\x31\x91\x1d\x22\x51\xeb\xf1\x65\x97\xb0\x48\xee\x80\x47\x59\xfa\xce\x5d\x3c\x13\xb1\xa9\x86\x79\xeb\x66\xc9\xf7\xd7\x61\x84\x8c\xa7\xa7\xb2\x73\xdc\xa6\xc5\x02\x46\x4d\x20\x6a\x30\xcc\x81\xdf\xa0\xcf\xbb\xb8\x36\xb6\x60\x98\xa1\x97\x1f\x46\x80\xa4\x53\xe7\x8b\x15\xe6\x3f\x9b\x22\x24\x53\x8d\x1d\x31\xe9\x0b\xd7\x13\x90\xf2\x16\x61\x6a\x2f\x0f\x4e\xc2\xf0\x13\xc7\x78\xe8\x31\x28\x5d\x10\xa6\xea\x4c\xef\x03\x35\x1a\xed\x7c\xc6\x99\x76\xf7\x27\xbd\xc2\x8e\xeb\x1e\xad\x14\x9c\x62\x1c\x2b\xa7\xf7\x8d\xb4\xa6\x48\x1c\x8f\x1c\x67\xbe\x65\x3d\x18\xd5\x33\x9c\x7b\x5d\xad\xf3\x72\x02\x4b\x37\xe6\x3a\x76\x44\xf2\x87\xda\x18\x8c\xd2\x43\xb8\x66\xbe\x7e\xa8\xb0\x9e\x71\x74\x26\x2c\x72\xd1\x20\x23\xb6\x66\x20\x5f\x68\x61\x30\xc4\xc9\x26\xbe\x62\x90\xfc\x38\xea\x72\xe1\x1e\x93\x3c\xe7\x6b\x89\xed\x9c\xe3\x40\xf9\x0c\x2b\xe5\x91\xdf\xa6\x8e\x2d\x70\xd3\xd5\x1f\x1b\x19\x06\xc4\x3a\xf7\x54\xf3\xc7\xc6\xd6\x96\xdd\xa1\x5e\x64\x78\xd9\xb3\x5b\x69\x88\xdf\x87\x52\x6c\xe5\x4f\x67\x94\xf7\x3c\xd7\x88\xfb\x12\x37\xfd\xba\xa7\x72\x6f\xfb\xbb\x05\xe5\xe3\x65\x51\x3a\xe2\x9e\x81\x27\xa2\xb6\x09\x70\x24\x9e\xf5\xdf\x3f\xda\xd1\x60\x2e\x01\x43\x0c\x70\xdb\x62\x28\x7d\xf9\x87\x66\x10\x38\x21\xc3\x69\x30\x19\xe8\xee\x07\xaf\x08\x1f\x28\x61\xc4\x7d\xc7\x97\x0c\xf8\xa2\x29\x3f\xd8\xa6\xe1\x14\x7a\xa0\xd9\xcb\xad\x6a\x3c\x3a\x32\xa1\xb0\xdf\x47\x56\xe8\x69\x34\x8a\x2f\xcf\x31\x3c\x84\xe4\x4d\xea\xdd\x16\x3f\x0c\xe0\x1e\xa3\xfe\x88\xef\x90\x29\xc8\x9d\xf1\x6c\xd9\xb4\x0d\x2d\x0f\x4c\xc4\x76\x8f\xfc\x8d\xe5\x75\x13\x15\x60\x02\x3f\x64\x3b\x0d\x4f\xb6\x3a\x17\xc8\x26\xf9\x81\x63\x95\x7d\xad\xbe\xe9\xf3\xb5\xd5\x61\x0b\xe4\x42\xed\xd6\xb7\x5c\x60\xb5\x4e\xad\x20\xa8\xa9\x75\x9a\x39\xc7\xd3\xa1\x8a\x02\x5f\x69\x4e\x00\x0b\x37\x07\x87\x21\x13\xba\x76\xdb\x8c\xa7\x8a\xdf\x79\x90\xec\xf4\x3d\xb2\xd3\x5b\xce\x1e\xf7\x60\xa3\x72\xd5\x06\x83\x3a\x56\xef\xae\x2d\x47\x75\x5e\x73\x40\xfc\x10\xde\x30\xb7\x2a\xf3\xed\x08\x6f\x6f\x29\x73\x84\x35\x40\x8e\x11\x00\xd8\xe3\x58\x08\x6b\x55\x05\x14\xab\xb0\xc6\x3b\xca\x3a\x06\x8d\x67\x74\x86\xf0\x78\xb2\xff\x48\x0d\x3d\xb3\x87\xa3\x52\x9f\xcd\x68\x54\xcd\xfc\x6f\x78\xe0\x5e\xa1\xaf\xe4\x33\x80\x9a\x37\x4d\xcf\xef\x88\x6e\x59\xdc\x5a\xdc\x3b\x34\xfd\x6a\xf9\x2c\x6e\x2d\xee\x47\x98\x12\xe8\x31\xaa\x04\xfa\x38\xae\x36\x7c\x1b\x87\xfa\x6a\x77\x8b\x7e\x47\x1b\xd4\x75\x78\x71\xc3\x37\x7b\x6e\x5c\xc1\xa8\xc7\x51\xcd\x90\x42\x87\x95\xa7\x7a\x5e\x90\x10\x51\x4e\x76\x7d\xc6\x25\x8f\xf6\x3d\xaa\x1b\x76\x3e\xaa\x3e\xb5\x53\xf0\x4c\x0a\x1b\x9d\xe7\xbb\xc5\x7d\xd9\x73\x4c\xee\x2a\x83\x87\x39\x6c\xeb\xda\xc0\xd2\x5f\x01\x96\xbe\x25\xb0\xf4\x56\x5e\xa9\x1f\xb7\x4a\x87\xce\xa6\xec\x73\x44\x0a\x04\xad\xbc\x39\xa3\x15\xe0\xec\x22\x9f\xaa\x05\xeb\x4c\xa6\x52\xb6\xee\x42\x16\x7c\x82\x16\xf4\xfd\x7c\x11\xbc\x4f\x1d\xc8\x54\x6b\xac\x06\xc8\xe9\xb7\x38\x2c\xe4\x0d\x10\x56\x0c\x68\x0c\x1f\x24\x27\x80\xc5\xbd\x71\x82\x35\x1e\x09\xa7\x38\x2e\x90\x13\xf8\x6d\xcc\x28\x85\x83\x79\x60\x61\x5c\x04\x77\x9d\xef\xba\x49\xc0\x6d\x2e\x9b\xe9\x28\xa4\x75\x6f\x80\xd6\xf3\x10\x4e\x3b\xed\x04\x95\xc2\x56\x44\x53\x93\xd8\x4d\xbd\xe4\x6d\xbf\xa0\x83\xd0\x4d\xbb\xe2\x8d\xdf\xd1\x11\xd8\x2f\x3e\x0b\xad\x60\x22\xbd\x42\x66\x95\x1c\x93\xb7\xf0\x02\x9a\xa5\xad\x0c\x96\x28\xb5\xe9\x69\x5e\xf4\x46\xb5\xe6\xe9\xc5\x09\xd7\xb1\xd5\xd7\x30\x06\x76\x09\x5b\x8b\x10\x4c\x2d\x64\x25\x7e\x29\x54\x23\x57\x04\x50\x6e\xb5\x89\x27\x69\x1d\x56\x86\xd2\xe0\x7e\x40\x25\x6a\xe0\x3d\xf4\x89\x60\x6e\x47\x5f\x13\xb2\x6b\xc0\x7f\xf0\x41\x21\x3f\x9b\x00\xc7\x70\x74\xc7\xd8\xad\xba\x2c\x44\xe7\xf0\x16\x71\x3e\x40\x2f\x83\x2b\x86\x23\x50\x78\xbe\xc3\x07\xaf\x03\xf7\xa3\xa1\x1c\x8e\x3e\x3c\xb4\xaf\x81\x52\xa3\x16\x82\x3a\xc1\xaf\x13\x70\xb8\xa9\x5c\xf7\x98\x42\x91\xb7\x0e\x1a\x86\xdc\xc3\x4c\x80\x7e\xd4\xb5\x14\xe3\x62\xfa\xbd\xb8\xff\x2f\x4f\xe6\x85\x03\xf0\x0f\xe7\x1d\xe9\xff\xff\xc9\xc3\x79\x43\xcb\xac\x7b\x39\x0f\x2f\x83\xcd\x10\x7c\x1d\xef\xe3\xc8\x71\x15\xed\x67\xd4\x08\xf7\x29\x32\x62\x57\x3e\xb2\xbc\xd9\xd7\x2c\xbe\x62\xb5\xc1\x16\x1d\xf6\x17\xc4\xcb\x47\xbd\x49\x8d\xf1\xed\xf4\x78\x08\x92\x33\xf6\x16\x49\xbe\x5a\x23\x52\xbd\x50\x59\xaa\xf5\x68\x06\x93\x84\xba\x68\x2c\x6f\xf4\x43\x5c\xbc\xa9\x75\x6b\x0f\x86\x1c\x6f\xee\x68\xd4\x52\x49\x6e\xb9\x59\x28\xfe\x24\x33\x51\xc0\x60\x2a\x92\x13\xde\x34\x93\x1c\x79\x29\x0a\x0f\xaf\x4a\x4a\xf3\xc7\x51\x18\xc1\x88\xb5\x99\xb8\xeb\xa0\x51\x00\x4d\xf2\xaa\x60\x2c\xc3\xf8\x3f\xc9\x0d\x7f\x77\x4b\x72\xf4\x27\x8c\xf0\xeb\x45\x92\x33\x47\xfc\x10\xa2\xdc\xd8\xf8\x74\x7e\x69\xdd\xf6\x7d\x5b\xcd\x77\xfd\xf4\x1b\x68\xae\x74\x04\x6d\x6e\x7f\xa6\xdd\xf4\x0b\xb0\xdd\xce\x1a\xbe\xd9\x7d\xa9\xdd\xc1\xdb\xd5\x03\x38\xb9\x4f\x97\xba\x2b\x95\xaf\xf1\xad\x85\x1b\xe6\x91\x59\xc7\xbf\x94\x77\x41\x2c\xa6\x48\x6f\x4e\xb5\x04\x3f\x54\xa4\xd6\x11\xfc\x9e\xd1\xd1\x55\x60\xc8\xd1\x0f\x1f\xf9\x22\xc5\x2b\x8a\x02\xe4\xea\x5b\x6a\xbd\x3c\x73\x25\xef\x88\xdd\xbe\xbf\xa1\xe4\xa2\x3d\x88\xc3\x48\xd7\x85\x3d\x06\xfa\xf3\x40\xf6\xb8\xec\xe9\x85\xfb\x01\xa6\x60\xa5\xb5\x49\xfe\x71\x97\x2c\xf8\xdd\x42\x6d\x9c\xc6\xdf\xe8\x4f\x17\xa8\xc1\x54\x69\x95\x5f\xe2\x24\x5a\xa5\x7f\xd6\x8e\x3f\x57\x87\x64\xaf\x6f\xae\xe9\x0a\x8c\x0e\xa3\xd8\x72\x8b\x83\xc6\x1d\x4a\x21\xbd\x87\x67\x65\xd4\xc1\x1f\x7c\x21\x2d\x6c\x2b\x38\x54\x1e\x19\xeb\xe4\x5d\xae\xf8\x7a\x7f\x08\x98\xc9\xfe\xb3\x67\x3d\xa2\x86\x9d\x93\x69\x5c\x21\x7a\xdf\x23\xaa\x34\x1d\x06\xf0\xd8\xcb\x1e\x62\x14\x30\x65\xdc\xd9\xbc\x55\x19\x8f\x4d\xdf\x0a\xfb\xd8\x6f\xbf\x05\x20\x0f\xe2\x5a\x0b\x20\xec\x57\x2b\x03\xa0\xe9\xdf\x1e\x53\x80\x21\x4f\xd1\xec\xc1\x4f\x52\x45\xbf\x45\x65\x35\xed\xa7\x35\x9a\x9d\x68\xdb\xf8\xe9\x1b\xbd\xc3\xf1\x01\x99\x2c\x68\x19\xf8\xd4\xef\xbf\x05\x45\xda\x11\x17\x85\x9d\xe0\x84\xe2\x1f\xc3\x79\xf4\xb7\xea\x0c\xc1\x6c\x72\x5f\x64\x72\xb7\x3b\xa8\x03\x83\xff\x02\x61\xbc\xe3\x4a\x34\xee\x71\x0d\x1a\xf7\x11\x70\x71\x02\x1b\x3f\xbf\xc1\x97\xb0\x10\x37\x62\x0e\x2d\x53\x2a\xb2\x09\x4b\xde\xf0\xe1\xe0\x10\x07\xc5\xdc\x13\x86\xfb\xfd\xa0\x49\xd2\xf0\xbf\xbf\x18\x76\xcb\xbf\x9c\x18\x1c\x04\x3e\x37\x3c\xd2\x7c\x6e\xf8\x03\x8d\x3e\x77\xea\x17\x13\xc7\xa5\xde\x33\xff\x1d\xc7\xa6\x7c\xbb\x95\x1f\x91\xec\xbe\xc5\xcf\x64\x7d\x1f\xd4\x08\x7f\x6d\x31\xce\x1d\xb6\xa1\x3f\xee\x34\x68\xc2\x98\x65\xb4\x65\xaa\xc5\x11\xc4\xb8\xdf\x78\x89\x9e\xd2\x03\xfa\xe5\xb7\xc2\xf4\x58\x89\x7e\xdc\x6d\x48\xcc\x9e\xd9\x3a\x52\x0e\x19\xad\x0d\x8c\x43\xda\xa3\x5f\x3d\xd3\x5f\xda\xd0\xd8\x76\xf7\xbb\x32\xbf\x22\xdb\x8f\x70\xf2\x27\xcd\x86\xbf\x65\xc6\x41\xe7\x56\x25\xfe\xf1\xb9\xf1\xaf\xce\x29\x98\xbd\xe7\x09\x8b\xc0\xe8\xe9\x4f\x98\x02\xf4\xe5\x4f\x63\x0c\x72\x85\x84\xe3\xbb\xb3\xb5\x9a\xbf\xe5\x9a\x09\xa2\xbc\xd3\xf7\xb0\x77\xbb\x71\x47\x3f\x80\x11\x55\x92\xdf\xdd\x70\x2f\xf6\x8f\x2b\xdb\x6d\x28\xb7\x88\x76\xbb\x63\x72\x11\xd9\xcf\x12\xbe\x32\x73\x4b\xdf\xee\x8d\x19\xb7\x5a\x72\x71\x03\xfa\xb0\xfc\xee\xaf\x5e\xe5\x80\x5a\x4c\x39\x6e\x9d\xee\xab\x2d\x1f\xcc\xfa\x54\x38\x2f\x0f\xe5\xe0\x74\xfe\x33\x72\x42\x34\x87\xbc\xf9\x02\xdf\xd3\x43\x54\xd8\xb1\x1c\x18\x97\x1b\x49\x11\xa5\x37\x01\x39\xbd\xfd\xed\xfd\xd5\x00\x72\x62\x8b\x6a\xc9\xc4\x96\x8e\x7f\xfb\x30\xdc\xc0\xe2\xcc\x71\x53\x80\x03\x67\x7a\x06\x02\x79\x74\x02\x42\x45\xde\x37\x0b\xf2\x99\x6c\x48\xe9\xad\xc8\xb7\xb2\x67\x94\xd2\xe4\x3b\x06\x0a\xd6\x54\xa0\x86\x8b\xea\x7a\xad\xc3\x3e\x6b\x71\x44\x78\x8e\x20\x41\x02\x01\x47\x90\x60\xdb\xc9\xe1\x19\x34\x29\xad\x0f\x55\xa1\xa2\xa3\xc0\x5f\x6b\x96\x81\x1a\x88\x6f\xd9\x20\xb4\x69\x37\x4c\x22\xdd\xca\xc9\x6f\x67\xf8\x8a\x96\x4e\xb7\x22\xef\x18\x81\xf5\x1b\x91\x9f\x12\x95\x1a\x06\xbc\x5c\x38\xc4\x98\x49\xe9\xcd\x99\x7f\x53\x09\xd6\xa7\xc1\x64\xd6\xd5\x5d\xe9\x6c\x55\x3a\x9b\xf7\x94\x17\x01\xf3\x8f\x96\x76\x76\xe5\x4c\x7e\xaa\x85\x7f\xf6\x70\x30\x89\xb0\x29\x9d\xc9\xa8\xa5\x6d\x05\xfb\x61\x80\x17\xc9\x98\xc6\xb8\x41\x2b\xe7\x0e\xc0\x95\x75\x0f\x19\xae\x3d\x67\x1e\xec\x10\xff\xb6\xb0\x3f\xa1\x5d\xef\x7c\x32\x4f\xf6\xcc\x50\x7a\x76\x31\x0c\xce\x2e\x8b\x17\x98\x2d\x5a\x79\xe0\x82\xff\x31\x47\x71\x91\x04\x91\xc6\x67\x79\x1d\xd1\x5e\xb1\x93\xeb\x36\x9a\xf4\xf0\x3e\xbe\x40\xd0\x64\x05\xb8\x10\xd2\x20\x34\xe0\xda\x92\x11\x40\xf9\x7b\xb9\xd8\x05\x8e\x85\xdf\xe4\x5b\x2d\x79\xbe\x99\xc6\xc2\x03\x77\x35\x5e\x07\xb9\x96\x9c\x00\x66\x22\x22\xde\x0d\x1d\x41\x8e\x16\xec\x78\xb4\x7f\xd7\x3d\x14\x20\x86\xb2\x98\x0b\x8b\x73\x90\xcf\x6c\x2d\xb7\x2f\x06\x61\x18\x06\x1b\xca\x21\x61\x5e\xf6\x43\x24\xa9\xb9\xb2\x89\x81\x5b\x51\x83\x5f\xe6\xdc\xce\x02\x58\x08\xe3\xc1\x33\x97\x32\x06\x29\xff\x52\x90\x55\xf2\x49\xa2\x1a\x3e\x0f\x1e\x3e\x33\x03\x64\x10\x48\x13\xdd\x00\x7a\x22\x4f\xaa\xc8\x35\x29\xab\xc4\x31\x44\xf2\x1e\x4c\x00\xfb\xbc\x6b\x17\xcf\x9f\x84\x0f\xb1\xb0\x4d\xc8\x03\x7c\xfa\x41\x5e\x69\xf9\x49\x5f\x69\xd1\x71\xd8\xaf\x7f\xff\x55\x5f\x77\x91\xef\xb0\x5d\x31\x7c\x48\xd3\xdd\x7f\x72\xad\xff\x35\xd1\x70\x0b\xdf\x84\x66\xe0\x91\xd3\xaf\x69\xc8\xbd\x92\xa0\xf3\xb3\xef\x01\x5e\x70\x29\x95\x11\x22\xb7\x53\x87\x8f\xcd\x2a\xaa\x70\xb7\x95\xef\xe2\x78\x3c\xd1\xc7\xe3\x88\x8a\x9a\x1a\x21\xaa\xd9\xf0\x2d\xc4\xec\xc7\xcc\x3f\xae\x84\x6b\x78\x52\x50\x75\xfc\x93\x1b\xf2\x5b\xc1\x24\x22\xff\xe8\x1e\x56\x4a\x3e\xf5\x4d\xb3\xfe\x9c\xe4\x4b\x9e\x13\xfd\x4d\xf0\x3c\x99\x44\xec\x22\x2a\x8d\x92\x89\x7c\x72\xea\x07\x6e\xf8\x07\xd2\x53\x89\x81\xf0\x2b\x3b\xc9\x0f\x1b\x64\xc8\x8f\xbf\x21\x63\x85\x0c\x7e\xd7\x0e\x9f\x05\x3e\x8b\xfc\x80\xaf\x3d\xbe\xf6\x65\x79\x2f\x95\xc1\x61\xa8\x3a\xe9\x7d\x2b\xe4\x1c\xf0\x7d\x28\x73\xd4\x96\x7e\xb8\xcf\x27\x45\x6a\x1f\x4f\xf8\x1d\x2b\xf9\xad\x39\xe4\xdb\x07\xe5\xcb\xa3\xcc\x2f\xfd\xfb\xcc\x4f\xd8\x43\x76\xd0\x2c\xa4\x28\x87\xbb\xd7\x2c\x49\x3e\x01\x9b\x20\x6d\x56\x1b\x94\x34\xe5\xf2\x38\x34\x53\x92\x94\xd7\xe6\xfb\xcc\x8f\x4b\x53\xc8\xf5\xa3\xd2\x54\xf2\x7f\x03\x00\x00\xff\xff\xdc\x12\x77\xe7\x31\x82\x00\x00") +var _confLocaleLocale_enUsIni = []byte("\x1f\x8b\x08\x00\x00\x09\x6e\x88\x00\xff\xc4\x7d\xeb\x72\xdc\x48\xb2\xde\x7f\x3c\x05\x66\x1c\xb2\x66\x22\xa8\x56\xcc\x4c\xd8\xe1\x98\x90\x34\xe6\x90\xa3\xcb\x1e\x51\xd4\x11\xa9\x5d\x1f\x2b\x14\x58\x74\x03\xec\xc6\xb2\x1b\xe8\xc5\x85\x3d\xdc\x5f\x7e\x0d\xbf\x9e\x9f\xc4\x99\x5f\x66\xd6\x05\x40\x53\xa3\x3d\x0e\x9f\x3f\x64\xa1\x2a\xeb\x96\x95\x95\x95\xb7\xaa\xce\xf7\xfb\xac\x28\xbb\x55\xfa\x3c\x3d\x4d\xf7\x79\x55\x6f\xcb\xae\x4b\xbb\x72\x7b\xf3\x64\xd3\x74\x7d\x59\xa4\xaf\xaa\x9e\xbe\xdb\xbb\x6a\x55\x26\xc9\xa6\xd9\x95\x04\xfa\x9a\xfe\x25\x45\xde\x6d\x96\x4d\xde\x16\x94\x71\x6e\xe9\xa4\xfc\x7d\xbf\x6d\x5a\x06\xfa\x4d\x52\xc9\xa6\xdc\xee\xb9\x0e\xfd\x4b\xba\x6a\x5d\x67\x55\x4d\x9f\x57\x94\x4a\xdf\xd4\x49\xd7\xac\xaa\x7c\x9b\x05\x05\xc8\xb0\xf2\x9f\xd3\x1f\xeb\x22\xbd\xea\xcb\x7d\xfa\xac\xdb\xe5\xdb\xed\x8b\xbc\x43\x95\xbe\x4c\xf3\xd5\xaa\x19\xea\xfe\xd9\x53\x29\x90\xc6\x9b\xa1\xb7\xd6\x2f\x87\x5e\xf2\x86\xbd\x65\x7d\xdc\x27\x6d\xb9\xae\x68\x62\x2d\x65\x7d\xd0\x64\x72\x28\x97\x5d\xd5\xf3\xa0\xff\x22\xa9\xe4\xae\x6c\xbb\xaa\xe1\xf1\xfc\x59\x52\xc9\x3e\x5f\x33\xc0\x7b\xfa\x97\xf4\xe5\x6e\xbf\xcd\x51\xe1\x5a\x93\xc9\x36\xaf\xd7\x83\xc0\xbc\xd5\x64\x92\x0c\x84\xb9\x3a\x07\xce\x3e\x6a\x32\x29\x77\x79\xb5\x65\xfc\x3c\xe1\x04\xb5\xdb\x75\x87\x06\x58\x7c\xaf\x49\x1a\x63\xd6\xdf\xef\x4b\x0c\xf1\xc9\x35\xa5\x92\x55\xbe\xef\x57\x9b\x9c\x72\xce\x24\x95\x10\xd0\xbe\xa1\xb1\x36\xed\x3d\xe0\xec\x23\x69\xda\x75\x5e\x57\xff\xc8\x7b\x19\xff\x65\xf0\x99\xec\xaa\xb6\x6d\x78\xea\x17\x48\x24\x75\x79\xc8\xb8\x1d\xca\x79\x57\x1e\xc2\x56\xb8\x64\x57\xad\x5b\x99\x25\x17\x5e\xe0\x8b\x5b\xe1\xb2\x9b\xa6\xbd\xd5\x82\x97\x9c\x1c\x55\xa5\x41\x68\x69\xdc\x7f\x5e\x13\x5e\xb4\xf4\x02\x1f\x11\x40\x97\xe4\xc5\xae\xaa\xb3\x7d\x5e\x97\x8c\xa3\x53\xfe\x22\xbc\xd0\x57\xa2\xcb\x9d\x75\x65\xdf\x57\xf5\xba\xe3\x62\xc9\x4a\xaf\x34\x2b\x09\xca\x5c\x1e\x8f\xa7\xcb\x6e\xca\xb2\x90\x11\x75\xe9\x4b\x4a\x27\xfb\x61\xbb\xa5\xb9\xff\x7d\x28\xbb\x9e\xe1\xdf\xd3\x37\xcd\x42\xbe\x93\xaa\xeb\x28\x41\xd9\x6f\x90\x48\x68\x01\xea\x15\x86\x74\x86\x44\x92\x7c\xea\xca\xbc\x5d\x6d\x3e\x27\xf2\x1f\x3d\x72\x62\xb1\x58\x1c\x5d\x1a\x26\x07\x25\x05\xe9\xc1\x3a\x48\x56\x4d\xc1\x1f\x67\xf4\x8f\x9a\xae\xea\xae\x27\x92\xfe\x9c\x68\x82\xc1\x24\x25\x68\xec\xab\x7e\x5b\xfa\x4c\xec\x8f\x8e\xd7\x21\x7d\x59\xb5\x5d\xff\xa4\xaf\x88\xe4\x3e\x0c\x75\xc2\xf3\x23\x72\xce\x8a\xa5\xed\xf2\x57\x0d\x61\x07\xd9\x2d\xcd\xef\xe2\xfe\xea\x5f\xdf\x9e\xa4\xef\x69\xab\xaf\xdb\x92\xd2\x29\xb5\x41\xff\xa8\xce\x4f\x8b\x84\x6a\x59\x4f\xe7\x79\x9f\x2f\xf3\xae\xf4\x68\xe5\x42\xa1\x51\x57\x06\x4a\x65\xb6\x01\x16\xd1\xf5\xd1\x7c\xe7\xe8\x9c\xda\xd0\xdd\xe1\xda\x78\xc7\x5b\x84\xf2\x99\x6b\xa0\xf2\xfb\x6d\xc9\xf9\xd4\x54\xfa\xe6\xdd\xbb\xcb\xf3\x5f\xd3\xb2\x5e\x57\x75\x99\x1e\xaa\x7e\x93\x0e\xfd\xcd\x7f\xcb\xd6\x65\x5d\xb6\xc4\x44\x56\x55\x4a\x3b\xa3\x25\x22\x48\x89\x3c\x65\x72\x8b\xa4\xeb\xb6\xd9\x4e\xd0\x7b\x75\xf5\x36\xbd\x60\x14\xef\xf3\x7e\x83\x81\xf4\x9b\xa4\xfb\xfb\x96\x51\xe4\x3a\xbc\xde\x94\xe9\x4d\x45\xb3\x06\x50\x73\x63\xf8\x48\x0b\x1d\xe3\x22\x29\xdb\x36\xa3\x7d\xdf\xdf\x67\x5a\x59\xdb\x1b\x43\x4a\x13\x44\x3a\x75\xd3\xa7\xcb\x32\x45\x9d\x45\x92\xd8\x80\x0d\xbb\xa7\xfb\xfd\xb6\x5a\xc9\x8e\x7d\x25\x65\x1e\xd1\xcc\xa2\x15\x4b\x21\x1c\x10\x65\x65\x01\xba\x88\xff\xdd\x37\x43\x9b\x46\x6c\x00\xf5\x37\x25\xf1\xe5\xcd\x40\x5b\x2e\x27\x9e\xba\x6d\x86\xe2\x1b\x50\xaa\x8d\xde\x13\x6a\xfa\xa1\xa1\x01\x03\x3b\x0e\xc0\x77\x71\x4a\x14\xc7\xa7\x42\x5b\xee\x1a\xe2\x0e\x8e\xd8\x2b\x22\xa8\x43\x45\x85\x34\xd3\x2e\xbf\xa3\xfd\xd6\x37\x69\xbf\xa9\xba\xb4\x20\x62\x5b\x71\xc3\xb4\x35\x06\xe2\xc7\x42\x16\x44\xa0\x42\x1a\x96\x17\xaf\x01\xa0\x76\x03\x51\xd3\x86\x1a\x63\x6e\xcf\x47\x13\x35\x39\x37\x4e\x4c\x89\xda\x01\x7d\x13\xe5\x36\xc4\x5b\x99\xfb\x9d\x23\xa1\xdf\x61\xfb\x34\xaa\xfc\xe6\x86\x46\xd5\x11\x55\xbc\x4e\x57\xdb\x86\x48\xea\xe3\x87\xb7\x54\x79\xd3\xf7\xfb\x6c\xdf\xb4\x20\xe3\xeb\xeb\xf7\xb4\x3d\xda\xde\xe7\x06\xb8\x66\x98\x7a\xd8\x2d\xe9\xeb\xb0\xa9\x88\x09\xe4\xc1\x02\x01\x15\x5b\x3e\x60\xea\xb4\xa9\x17\x58\xab\xa1\xdd\x8e\x96\x91\xba\xb4\x92\x23\xc3\xe3\x21\x3c\xe5\x3f\x57\x7e\x94\x98\x6e\x47\xa7\xf0\x01\x8b\x4a\x53\x2d\x71\x9a\x10\x6d\x35\x7b\x6e\x37\x20\xae\x4b\xcd\xf0\x14\x85\x13\xc8\x95\xcb\x39\x44\xa5\x38\xe3\x03\x5e\xba\xa3\x09\xeb\x6e\xbe\xba\x20\x34\x60\x4b\x23\xf7\xa6\x6d\x76\x94\xfb\x92\xfe\xf9\x0c\x3f\xfc\x0b\x6e\x0f\x30\x79\x51\x10\x9b\xe9\x4e\xd2\x0f\x2f\xcf\xd2\xff\xf2\xd3\x8f\x3f\x2e\xd2\x37\x3d\x6f\x08\xa6\x91\xbf\xf1\xda\x52\x52\x0e\x44\x07\x4a\x3b\xb7\xa7\xe5\xff\x96\x09\xfc\xdb\xf4\x19\x4a\xff\x7b\xf9\x7b\x4e\xe7\x6c\xb9\x58\x35\xbb\x17\xbc\xb9\x77\x79\xbf\x48\xb8\x84\xa8\x46\xc9\xe9\xaa\xac\x0b\x4a\xe8\xb1\xaa\x65\x01\xd7\xd1\xf2\xe0\x90\x95\xd3\x3f\x5b\x35\xf5\x4d\xd5\xf2\x84\x7e\xab\xf3\x25\xe1\xc4\xe4\x02\x62\xc7\x28\xb1\xb3\x8b\x90\x46\x1b\xb9\xba\xb9\xf7\xa0\x98\xea\x3b\xce\xd4\x05\x4d\x58\x56\xa2\x46\x55\x64\x72\x58\xbe\x42\x36\xd6\xed\x92\xa6\xd7\x1a\xbe\x3b\x8f\xf0\xe6\xe6\x66\x4b\x8c\xcd\x98\x95\xf6\x70\x29\xb9\xc2\xb7\x42\x10\x22\xc6\x3d\x24\x9b\xf3\xaa\x03\xe4\xd9\xf9\xbb\xb4\xbc\x23\x6a\x23\x72\xd8\xb7\x4d\x31\xac\x40\x61\x0c\x7b\x92\xf2\x31\x41\xf8\x25\xce\xb0\x12\xf6\x16\xec\x55\x1e\x1a\x33\x84\x15\x01\xd1\x16\x2d\xa4\xbd\x4c\x10\xd4\x9a\x20\x61\xdd\x5c\xb1\x70\x18\x96\xcd\x56\x98\x8c\x0e\xab\xd4\x8d\xeb\xd2\x72\xd7\xdb\xfb\x14\xa7\x3e\xe8\x62\xd5\x96\x81\x6c\xd7\x2d\x12\x3d\xab\x4c\x42\xcc\xee\x2a\x12\x2a\x82\xa5\x42\xa9\x89\x8b\xcc\x1e\xfe\xcc\x00\x2c\xa6\x75\xb3\x75\xdd\xc0\x2e\xb9\x63\x2e\xa1\xb9\x53\xe7\x3c\xbe\x0e\x43\x40\x0f\x2c\xee\x11\x31\xde\x55\xe0\x34\x8a\x2c\x8c\x95\x30\x86\xae\xa9\xab\xae\x2c\xd1\x02\xd5\x7f\x4a\x6d\xa2\xce\x42\x45\x18\x15\x45\xec\xdc\xfd\xb7\x66\x48\x8b\x26\xe5\x83\x00\xec\x8c\x6a\xdb\x54\x6b\x9d\xbe\xce\x39\x6d\xab\xf5\x86\xf8\x4a\x73\x38\x11\xa4\x1d\x36\x4d\xc9\xb4\xf3\xe6\xfc\xf9\x0f\x32\x8e\x35\x33\x37\x57\x89\xd9\x62\x3e\xf4\x0d\xd3\xa9\x2e\xa1\x0c\xc1\x1d\x2f\x80\x9c\x08\x4b\x02\x34\x16\x4f\x4d\x00\x9b\x9e\xd6\xba\x4f\xc2\x32\xdd\x20\x1e\x46\x6a\x8f\x44\x5c\x95\x62\xb2\x75\x03\xc9\xcc\xa4\x16\x66\xd5\x24\x4a\x77\x7d\xb6\xae\xfa\xec\x86\x37\x2c\xb7\xf9\x92\xeb\xf2\xc9\x41\x25\xe9\x63\x2a\x7a\x9c\xd2\xae\x27\xc9\xb1\xf8\x39\x7d\x74\xa7\xc7\xf5\x4f\xbc\x13\xb3\xfc\x8e\x60\xb1\x18\x40\x70\x4b\x14\x2e\xd2\x82\x89\xef\x45\x43\x74\xce\x38\xef\x86\x3d\x38\xba\x9e\xd0\x27\xe9\x5e\x00\x8b\xe6\x50\x6f\x9b\xbc\x00\xcb\xa1\xdd\x55\x41\xf9\x58\x56\x75\x4e\xa7\x8b\xb5\x02\x56\xf6\x88\xa8\xe1\xdd\xe5\x35\x00\xd7\xcd\x72\xa8\xb6\x85\x01\x2c\x68\x86\x77\xf9\xb6\x2a\x58\xce\xd2\x75\x0f\x65\x1a\xcb\xaa\x64\x2c\xab\xa6\xe5\xe3\x10\xb3\xb1\x8a\x47\xce\xe1\x96\xcf\x37\x64\x53\x5d\x85\x45\x3d\x77\x64\x32\x1a\x68\xe1\x21\x80\xf2\x81\x0a\x8a\xa9\xba\xfa\x71\x8f\x91\xae\x06\xea\x8b\x16\x9d\xb3\xa9\x62\x97\x3e\x79\x41\x7f\x13\x3e\x9e\x85\xef\xad\xa7\x88\xe7\xc2\x54\x0a\x07\xd9\xa5\xd1\x50\x23\xf2\x76\xd4\x65\xc4\x1b\xcc\x35\x1c\xaf\x91\x40\x37\x08\xbd\xb2\xa6\xb5\xa5\x65\x2d\xbf\xa1\xc4\x63\xda\xc0\xeb\x2d\x16\x21\x87\xf4\x42\x62\x5c\x43\x78\x63\x02\x39\x91\xed\x72\x43\x53\x63\xde\xd9\xe7\xb7\x34\xb6\xbc\x25\x21\x2c\xf9\xc4\xda\xe8\xe7\x64\x10\x01\xa8\xd9\x16\x4e\xd8\x04\x4d\x37\xed\x58\xc5\xf2\x40\x8e\x5e\x3b\x92\x22\x57\x9b\xcc\xe9\xb2\x8c\x94\xbe\xfc\x1d\x67\x1e\x8a\xbc\x6a\xcb\xc4\xce\x45\xc9\xee\x1e\xcb\xc5\x93\xb8\xb8\xf7\xab\x45\xe2\x0f\x6d\x11\x12\xd1\x97\x0d\x63\xed\xae\x74\x50\x67\x61\x6e\x5c\x81\xda\x22\x41\x4d\x9b\x8a\x35\x21\x2a\x12\x75\x4d\x4b\x45\x65\x23\x55\xe4\x93\xea\xd8\x9f\x13\xeb\x20\x6a\x32\xf9\x44\xcc\x80\xf4\x12\x61\x2f\x19\x6b\x63\xb6\x38\x34\x14\xe1\x39\xac\x98\x29\x3f\xf0\xe7\xe0\xa6\xdc\xf3\x91\xb9\xeb\xb0\xaa\x5b\x82\x2c\xee\x55\xf6\x72\xeb\xfb\x8b\x70\x5a\x5a\x70\xe2\x4f\xdf\x98\xf6\xfe\x95\x4d\xfc\x5a\xd1\x4a\xa2\x7e\x7c\x72\xf0\x79\x4d\x5b\x6d\x0f\xec\xd3\x26\xb9\x3f\x49\xa3\x33\x68\x93\x77\xc4\x7d\xe9\x80\xd3\x6a\xc5\xc2\xb4\x03\x5e\xb5\x7c\x25\x24\x0f\x4d\x1e\x44\x2a\x35\x9b\x76\x7c\xa4\xf1\x08\x85\x41\x69\x2f\xee\xc0\xc7\x71\x1e\x9e\xfa\x33\x7d\x12\xc2\x76\x25\xcb\x7c\xd9\x4e\x34\x74\xf9\x4a\x2f\xca\x84\x04\x93\x35\xed\x47\xa3\xb7\xe7\xac\x92\xad\x21\xa1\x2a\xb9\x31\x40\xd9\x87\x1c\x54\x21\x2c\xe7\x17\xb3\x58\xd0\xc6\x3e\x40\x5f\xa5\xad\x39\x41\x3f\x9d\x35\x54\xbc\x30\x8e\x2c\x07\x2e\xe4\x93\x8e\x36\xbb\x47\xe2\x69\x4a\xab\x9f\x86\x50\x2a\x27\xfa\x69\x71\x05\xde\xf4\xcf\x96\x2f\x1e\x75\xcf\x9e\x2e\x5f\x38\xd6\xb8\xda\x94\xab\x5b\xd1\x25\xaa\x7a\xd9\xfc\x0e\x85\x8b\x16\x9e\x71\x5c\xf3\x16\x79\x54\xa4\x1b\x2a\x85\x4c\x4e\x5b\x99\xaa\x11\xe2\xb9\x34\x5a\x34\x1a\x0c\xef\xf8\x85\xd9\x7e\xdc\xe1\x60\x84\x44\xb5\xd1\x89\x8c\x8c\xd4\x7c\xec\x1d\xce\x0a\xe8\xf6\x94\x73\x99\x72\xc1\xe6\x3d\xe9\x62\xbe\xdb\x6a\x57\xf5\x13\xd2\x61\x3e\x92\x2b\x09\xaa\x9e\x6f\xb8\x44\x5b\xc0\x06\xc6\x42\xdc\x98\x9a\xa1\x73\xd3\xc8\xe9\x90\x93\x7a\xf3\x53\x4a\x24\x34\xd0\x29\xc4\x73\xa2\x61\x12\x3b\xce\xf9\xe0\x25\x05\x21\xef\xb2\xa1\x56\xb4\x96\x85\x11\xd3\xeb\x0a\x87\x04\xf7\x6b\x24\x1f\x40\x19\xe6\x55\xce\x4d\xbf\x73\x18\xff\x9e\x84\xe2\x1b\x57\x8d\x39\x37\x0f\xa8\x62\x99\x2c\x9f\x5d\x3c\xe2\x6c\x75\x29\xea\x15\x30\xc0\x70\xbc\xd0\xa4\x1c\xf8\xd5\x23\x0d\xe3\x96\x72\xb0\x20\xcb\xa1\xef\x1b\x96\xb9\xb7\x4c\x35\x52\xc7\x46\x7d\x06\x40\xa8\x11\xbe\x3d\x2c\x48\x88\x27\x59\x9b\xd2\x64\xe0\xcc\x5b\xe1\x54\x5b\x19\xcd\x4e\x8f\x3a\x07\x56\x88\xba\x9e\xd7\xf7\x46\xca\x44\x10\x3c\x0a\xee\xb0\x9f\x1f\xcb\x77\x6d\xf9\xbd\x1f\x8d\xdb\x33\xa8\x61\x23\x92\xea\xc1\x7e\xfa\x80\x52\x50\x89\xdb\x75\x76\x72\xa9\x91\xc5\xd3\x47\x1b\xa3\x17\xe5\xbc\x33\x88\xc1\x92\xd8\x58\x00\xd1\x34\x0b\xd4\x5e\x8c\xfa\xf2\xea\xce\x14\x83\x7d\x3c\x64\x7f\x00\xf5\x4d\x93\x75\x1b\x51\x2d\x6d\x78\xe9\xb6\xac\xd7\x91\x99\x00\x36\x58\x10\xdd\x7f\xe5\x63\x8e\xd5\x9d\xcf\x09\x9f\x6b\xef\x46\xb2\x1a\xf3\x7d\xcd\x0b\x84\x06\x14\xfd\x16\x89\x60\xb6\x2e\xc9\xfb\x19\xb9\xee\x43\xe9\x8d\x8d\x48\xb9\x71\x93\x66\x7c\x6d\xfa\x0b\x29\xc9\xb7\xa5\x36\xfe\x9a\x74\xe1\xee\x23\x74\x59\x51\x4c\x59\x8b\x7d\x9f\xdf\xb3\x24\x25\xd9\xfa\x81\x82\xeb\x32\xdf\xe9\x28\x39\x29\x4d\x9c\xd2\x19\xa5\x99\x9c\xa4\xa3\x2b\x30\x55\x24\x90\x29\x6c\x0a\x22\x60\xe8\x59\xee\x64\xfa\x52\x2d\x99\x7f\x9d\xd8\x57\xfe\x9a\xe4\xdb\xfd\x26\xc7\xa1\x1e\x80\xc1\x94\x40\x40\x58\xcd\x14\x20\x58\xe0\x61\x57\xb6\xd5\x8a\x93\x5c\xe1\xbb\x27\xd9\xf7\xb0\x22\x11\xf5\x93\x74\x17\x37\x56\x10\xe5\xff\x53\x0d\x72\x9a\x25\xbf\xb0\x5d\x48\x51\xd5\x3f\xca\x71\x8b\x38\xcb\x58\xa2\xea\x53\xde\xca\x3d\x4b\x6d\x71\xc5\xfc\xf7\x2f\x55\xdc\x35\x33\xf5\x64\xf7\xfa\x4a\xb6\x47\x75\x02\xf1\x0e\x26\x78\x36\x49\x1c\x85\xa6\x85\x65\x90\xfa\x96\x0e\xa2\xda\x81\x7d\x94\xef\x14\xdf\x3f\x9b\xd5\x9a\xb8\xbe\xca\xbc\xde\x7e\x4d\xe7\x69\xc1\xac\x0e\xb2\xeb\xc2\xef\x90\x50\x9e\x75\xc4\xca\x92\x9f\x69\xe9\x6e\xaf\x93\x10\x28\xa2\x3d\x11\xcc\xc2\x9b\xda\x33\x3e\xd6\x32\x96\x13\xeb\x50\x1a\x74\x07\x9e\x1d\x09\x80\x10\x53\x6d\x36\xad\x37\xda\x4e\x47\xab\xd3\xe9\x3d\x53\xfb\x72\x6a\x7b\x3b\x52\xbf\xa7\x0d\x31\xd3\x80\xdb\x27\x47\x2b\xca\x62\xa2\x12\xcd\xbc\x98\xec\xf4\x69\x45\x06\x63\x6b\xe8\x26\xa3\x7d\x1c\xd5\x7c\x3f\x2c\x89\x85\xb9\xed\xcd\xd4\x0a\x31\xb8\xee\x7d\x2b\x52\x9b\x94\xcf\x72\xcd\xb6\x25\x1b\x76\x34\x56\x25\x40\xe2\xfe\x02\x16\x92\x9f\x5f\x1f\xb7\xd4\x21\x55\x84\x52\xbb\x5b\xe1\x58\x5f\xa2\x39\xd3\x98\x28\xc9\x35\x03\xad\x49\x87\xa1\x47\xf7\x8e\x15\x84\x6e\x60\x5e\xcc\xca\x84\x88\x23\xf1\x5a\xf2\x49\x8b\xa6\x4a\x74\x71\xbc\x79\xa2\x64\xd6\xb0\xbe\xd4\x3e\xc0\xbe\xb2\xe9\x50\xbf\x9e\x36\xac\x8d\x3b\xa0\x63\xcd\x3a\x0d\xb0\xfc\xbd\x82\x9d\xee\x55\x75\x57\xaa\x0e\xe8\x54\x5f\x94\x2d\x92\x2d\xb1\x12\xd6\x35\x64\x56\x22\xb8\x36\x77\xac\xaa\x71\x7f\x5c\x2a\xf5\xc4\x6e\xa7\x93\xe2\x75\x56\x6d\x92\xb4\xb7\xe6\x50\x16\x27\x74\xa6\x73\x0d\x1a\x27\x98\x4e\xbe\x3d\xe4\xf7\x1d\x8c\x22\xc6\xaf\xd8\x46\x29\xd5\x99\x19\xd1\x89\xbf\xc6\xa8\x42\x83\x34\xed\x57\xc3\x84\x12\xa4\x3f\x97\x0f\xd0\x07\xc1\x6b\xd4\xcc\x42\x6a\x36\x1b\xdd\x70\xa6\xea\x39\xc4\xba\x2c\x6b\x7e\x2c\xd4\x4b\x71\xd0\x10\x7c\x1c\x7a\x2a\xcc\xd4\x3d\x61\x79\x88\xba\x61\xe9\x84\x78\xb5\xe0\x9a\x04\x3e\xc2\x2c\x86\x14\x18\x07\x68\x63\x94\x4f\x44\x10\xae\x08\x87\xac\x58\x79\x7d\x99\xcf\x2d\x5a\x15\xb3\xe4\x4a\x3e\xb4\xdd\xa4\xeb\x69\x0b\x30\xa6\xcd\xbb\xf6\x6f\x22\x50\xa9\x8e\xcc\xa5\xd8\x5a\x40\x53\xb7\xa9\xf6\x69\x03\xeb\x60\x88\x42\x4f\xb6\x81\x4c\x49\xd8\x28\x4a\x08\xda\x6c\x26\x6d\xf3\xba\xbb\x29\x61\x2f\xdd\xa5\x37\xec\xfa\x59\x68\xd7\x2c\xa2\x8a\x97\xed\x48\xcf\xa2\xb4\xa0\xeb\xf0\xac\xc1\xda\x05\x0b\x15\x77\x4d\x30\x77\xe8\x59\xc7\x00\xac\xfa\x96\x3a\x1b\x03\x93\xd9\x04\x05\x10\x13\x23\xaf\x84\x8d\xe6\xae\x0c\x11\x71\xf3\xcf\xce\x3c\xc0\xba\x9a\x84\xc5\x8e\x1e\x2f\x93\x74\x0a\xf3\x04\x9c\x4a\xcb\xfb\x78\xf6\x5c\xd5\x51\x00\xbb\x38\xee\x4a\xed\x85\x37\x06\xef\x95\x51\x83\x30\x4b\x78\xe5\x20\xe9\x73\xe8\x78\x4b\x1a\xe2\x6a\x13\xed\xce\x6b\x94\xa4\x52\x32\xd9\xa0\xc9\x27\xee\x9a\xf4\xf6\x4d\x5e\xaf\x4b\xb6\x6d\x51\x4b\x7c\x60\xe2\x5b\x45\x72\xc9\xa4\x01\xaf\x5b\x49\xb3\x45\xdc\xaa\xac\x68\x43\x36\xbb\x07\x6b\x56\xb5\x59\x68\xba\xe4\x6f\x0d\x49\x20\x30\xed\xfe\x89\x52\x2c\xee\xd6\x49\xe4\xcc\x19\x19\x16\xa0\x0f\x54\xfd\xbd\x3f\x31\x4e\x35\x87\xf4\x5a\x70\x07\x98\x2a\x5e\x5a\x9a\xd6\x23\x67\xa6\xc7\x5b\x5b\x52\x0a\x27\x76\xa3\x97\x96\x4e\x58\x2d\xde\x2d\x70\x38\xb0\xf4\x0c\x6b\x74\x70\x24\x3c\x7e\xd4\x3d\xe6\x05\xb3\xb2\x45\x00\xbf\xcf\x7b\x62\x8b\xb5\xe8\x24\xc2\xa1\xc2\xaa\x5a\xec\x9a\x00\x57\x11\xb0\x05\x5c\xb8\x82\x8a\xcf\x09\x29\x8f\xf0\xf9\xd1\xd4\x24\x35\xeb\xaf\x54\x16\xd3\xa9\x3c\xfc\x2f\x94\x54\x13\x48\xea\x02\x17\x54\x37\x85\xdf\xce\xbc\x3c\x5d\xec\xf4\xe9\x12\xb5\xf9\xc4\x06\x1f\x25\xef\xe7\xe9\xb9\x24\x4c\xcb\x1d\x2a\xcc\xa9\x2a\x92\x64\x0f\xbc\x67\xc1\x68\x65\x21\xdc\xa0\xe5\x7f\x60\x74\x6e\xc7\x72\x01\x61\x41\x5a\x01\xe1\x9a\x0f\x00\x92\x00\x3b\x4d\x03\x0d\x8d\xad\xa9\x50\xdd\xea\xc0\xbf\x41\x0a\x2e\xd7\x63\xb0\x43\xb9\x4c\xd9\xbe\x49\x84\x43\x8a\x90\x4e\x74\x97\x93\x0e\x75\x57\xe5\xce\x14\x43\xab\xc5\x9e\x76\x3d\x45\x5f\xb2\x97\x1d\xae\xcb\x69\xcc\x05\x3b\x20\xd4\xd7\xf0\x56\x93\xc9\xb0\x2f\xd8\x88\xe5\x27\xfc\x11\x19\x6e\xc2\x71\x79\x60\x5e\xc4\xd4\xad\x9a\x97\x62\x00\x5e\xa4\x0a\xc7\x23\xbb\x5f\xd8\xf6\x99\x09\xd6\xd0\x2d\x54\x8c\x41\x42\xab\xbe\x14\xa9\x96\x6a\x00\x0b\xe1\x3d\x40\xaf\x38\xf2\x80\x10\x3a\x2b\xd3\x4d\x73\x48\xb7\x55\x7d\xdb\x29\x7e\x9d\x01\xc4\x14\xe3\xf4\x1c\x19\x04\x2c\xa6\x19\x16\xab\xaa\x7a\x28\x7f\x49\x2c\x25\x96\x77\x24\xa7\x81\x09\xa5\x9c\x8a\x63\x66\xa0\x0e\x93\x33\x64\xa7\xa7\xc8\x9e\x85\xf5\x8a\xad\x56\x81\x0b\x97\xd9\xaf\x7a\x72\x6e\x4a\x16\xcf\xc1\x0e\x5f\x29\x17\x22\xfc\x34\x4d\xa7\xc6\x46\xcf\x7e\x38\x0f\x96\x09\x85\xd2\xd5\x72\x10\xba\x98\x32\x18\x73\x4c\x10\x14\xab\x8e\x24\x2c\xe9\x78\xb0\xb7\xb3\x6a\x27\xc1\x35\x1f\xb5\x54\x7c\xf4\x4e\x2b\x41\xf1\x22\xa9\x9b\xd1\x64\x42\x17\xc1\x3b\xc2\xa5\x4c\xdf\xf8\xa8\x15\x9e\x98\xb8\x20\x08\xc1\x61\x1f\x0d\x76\x4c\x59\xda\x80\x59\xbb\xbf\x40\x60\x46\x3e\xa1\xe7\x44\x78\xb3\x63\x2d\xcd\x36\x12\x0a\xcf\xd4\x6e\xef\xca\x19\xb3\x41\xf9\x3b\xf8\xb8\xc6\xe6\x85\x48\xcf\xd2\x16\x8e\x4a\xd3\xa3\x31\x4d\xf6\x8e\xd5\x3b\xd0\xdc\xc2\xe9\x18\xc1\x2f\x84\xfa\x73\x98\x82\xc5\x0d\x36\x74\x22\x4f\x72\x57\xf0\xa1\x49\x13\x84\x00\xa8\x2b\x9d\xd7\x52\x4e\x85\x1b\xb1\x05\x5c\x42\x82\x1c\x80\x46\x05\xc5\xda\x68\x69\x4e\xeb\x90\xb1\xed\x5b\x5a\x74\x3a\x78\x47\xa6\xa7\x09\x4b\x8b\xd8\x17\xb8\x57\x03\x0f\xac\xe7\x5a\xa4\x7f\x6a\x5b\xcc\xff\x91\xb2\x1c\x6f\xae\x2c\xd9\x9c\x65\x9d\x2a\xb3\x76\xa5\xc2\xb2\x13\x1a\x03\xf6\x40\xe9\x4c\x17\x05\x30\x11\x0f\x11\x60\x21\x88\x99\x3e\x2d\x3b\x8b\x0c\xbb\x30\xd1\xfe\x87\x19\x73\xa3\x0e\x9d\x31\xd7\x0f\x75\x44\x36\x3c\xc6\xd1\x89\x33\x21\x20\x2a\xc0\xf9\xab\x4b\x1f\x9c\xaa\xba\xf8\xee\x70\xe5\x6e\x44\xa6\x67\x34\x51\x16\x8e\x60\x25\x02\x70\x58\x16\xf0\x10\x65\x81\x48\x1d\x11\xf0\xbb\x89\xdd\x31\xe6\xaf\xa7\xd0\x60\x08\x2b\x02\xcb\xf2\x00\x1f\x68\x22\xfd\xa9\x46\xb4\x63\x44\x88\x9f\xd5\x05\x9e\xdc\x8b\x8b\xd1\x8b\x44\x27\xaa\x36\x6c\xaa\xf5\x86\xe6\x55\xed\xd8\xc7\x08\xae\x6d\x8e\x2c\xaf\xd5\xf1\x17\x6d\xbc\x66\x4d\x07\xbe\x48\x94\xa2\x8c\x3b\x6e\xfb\xac\xeb\xdb\xa6\x5e\xbf\x38\x6f\x58\xdd\x62\x3b\x0a\x1f\x15\xbf\x3c\x7b\xaa\xf9\xc4\x32\x78\x0d\x39\xc0\xf1\x55\xd5\xbf\x1e\x96\x8f\xbb\x74\x4d\xb2\x01\x0e\x90\x67\x79\xba\x69\xcb\x9b\xe7\xdf\x3e\xea\xbe\x7d\xa1\x8e\x65\x09\x03\x3a\xd4\x0e\x2d\xcf\x9e\xe6\x2f\x58\x7a\xee\x9a\x2d\x09\xb5\x71\x95\x66\xb7\x93\xf5\x25\xf6\xb7\x13\x48\x8c\x1f\xbe\xe8\xb2\x06\xe6\xca\x56\xf1\x43\x0d\x2e\x1c\xad\xfb\xf5\xd1\x65\x4b\xd8\xbe\xa0\x07\x29\x7d\xca\x71\xcf\x79\x66\x54\x90\xd3\x8b\x52\xb6\xbe\x01\x11\x31\x63\xd3\x76\x02\x13\x06\x13\xcc\x37\xb6\xe7\xa4\xc3\x60\xc7\x41\x64\x38\x65\x18\x16\x61\xa1\xe8\xaa\x65\xe3\xad\xaa\xb5\x28\xa0\xb3\x21\x10\x61\xdf\x35\x6a\xf7\x4f\x2d\xd3\x13\xa4\x89\x74\x4a\x8e\xa7\x9e\x9a\xc6\x42\x9e\x3a\xc0\x8e\x52\x64\x40\x88\xda\xaa\x8b\x6c\x10\x05\xbc\x84\x28\xb5\xac\xea\x42\x08\x4f\xe9\x46\x43\x05\x1c\xc1\xd0\x71\x54\x33\x10\x6c\x6c\x9c\xd0\xef\x00\x73\x57\x51\xfb\xc1\x91\x44\xfb\x7d\xa8\x83\xfd\x26\x04\x9d\xf5\x8d\xd8\x9a\x74\x92\xef\x49\x62\x47\x98\xd0\xa9\x34\x78\xcd\xc5\x9d\x86\xaa\xa9\x1f\xd1\xaa\xbc\xd2\x4c\xac\x16\x00\x13\x14\x75\x0e\x11\xf8\xf2\xca\x9b\xb5\xa2\x2e\x5e\x0d\x00\xc2\xc2\x10\xf1\xda\x0e\xdb\x88\xcb\x37\x3d\x7d\xff\x66\x91\xb8\xfe\xac\xcd\xdf\x72\x92\x3a\x64\x04\x07\xa7\x37\x32\x43\x19\xef\x50\xe7\x60\x90\xea\x66\xa6\x42\x4d\xd0\xa2\x9b\xd3\x64\x3e\x32\x97\xb8\x5c\x50\x5c\x76\x81\x2e\x2d\xbd\x61\x24\x63\xde\xe6\x66\xfa\x0d\x21\xd6\x59\x74\x98\xa7\xee\xef\x99\x5b\x04\xc1\x1d\xb9\x20\xe8\x80\xfd\x3e\x8a\x2a\x21\x48\xe8\x93\x29\x4b\x88\xad\x23\x7d\x1b\xb0\x12\x7f\x98\x1b\x50\x02\xc8\x70\x6f\xeb\x19\x8d\xd7\x1f\x15\xe1\xa0\x45\xcd\x8d\xa5\x96\x6f\x52\x61\x44\xe2\xb2\xe4\x71\x89\x6c\xa3\x38\x0e\x95\x1b\x6a\xf3\x50\x6e\x39\xf8\x4c\x07\xe4\xfd\x76\xaa\xca\x44\x5e\x3b\x05\x72\xfe\x3a\x0e\xf6\x73\x67\xb1\xac\x6d\x68\x5f\xb0\xc6\x08\x82\x08\x18\x8e\x3a\xd1\x41\x8c\x61\x9e\x9d\xbe\x7b\x77\x79\xed\xf9\x24\x53\x56\x5d\x10\x37\xff\xc6\x85\xac\x4c\xc6\x65\x81\x2b\x18\x1f\x62\x98\x22\x08\x1f\x3a\xa3\x35\x8e\xc1\x85\x1b\xdf\x5a\xa7\xe4\xba\xc1\x6e\x6e\x78\x2c\x52\xa3\x88\xc7\x5f\x1c\x13\xf1\x93\x4f\x7c\xc0\x7c\x4e\xcc\x4a\x77\xc9\xff\x93\xd0\xd0\x19\x98\xa6\x41\xcd\xde\x82\xed\x23\x34\x69\x00\x4d\x31\x31\x7c\xd2\xc0\x86\x6e\xc8\x21\xc3\x11\xee\x1b\xf0\xc5\x9b\x14\x0e\xa9\x13\xb6\xe3\x34\x2d\x68\x90\x91\x3b\xd4\xd5\xdf\x07\x9c\x90\x2c\xc1\xd1\x89\xcf\x91\x50\xcb\x6a\x2b\xcc\xf3\xcf\xee\x43\xf2\x39\x35\x0a\x5f\x0c\x3a\xa7\xaf\x67\xdd\x9e\x83\xbb\x88\x37\x77\xcf\xbf\x25\x91\x9b\x34\x16\xfc\x7d\xc2\xf6\x01\x4d\xe5\x45\x35\xd0\x51\x44\x02\x18\x7b\x7a\x69\x3d\xa9\xca\x0b\xd6\xf5\x6f\xcd\x84\x34\x8e\x34\x47\x99\x05\x23\x72\x19\x22\x12\x91\x3b\x33\x2c\x15\x57\xc5\x06\xd0\x8b\xf1\x28\x0d\xa6\xc5\xec\x9a\xc9\xfd\xb6\x0c\x51\xa7\x2e\x02\x5d\xe8\x73\xfa\xd7\x56\x88\xa8\x94\x7c\x0e\xfb\x4f\x83\x90\x7f\x97\xe9\xfb\xbd\x22\x02\x58\xb1\x8e\xb2\x58\x57\x3d\x89\xc9\x7c\x3d\x02\xca\x2b\xed\x20\xe2\x92\xb8\x31\x20\x29\xcb\x99\xa9\x6b\xb0\xa8\x58\xd5\x55\x9f\xb1\x55\x7f\x27\x51\xe0\xd4\x6c\xbe\x15\xb1\x22\xc6\xbc\x38\x5d\xd3\x0f\xbf\x9d\x9e\x5f\xfc\xb6\xd8\x15\x16\x14\xa2\xf8\xd4\x68\x90\x00\xa3\x45\x79\x93\x0f\x5b\xb3\x5e\x61\xc2\xc8\x48\x7f\x45\x86\x5e\x20\x20\x45\x83\xf0\x77\x27\x67\xa4\x5c\x29\x78\x63\x39\xdf\xb1\x18\xf9\xfd\x11\x9b\xce\xd8\xad\xf2\xf5\xa6\x9d\x71\x0b\x0f\x5b\x78\xd8\x4d\x9e\xb1\xbd\x2e\xd5\x50\x8a\xc8\xd7\x98\xe8\x05\x07\x0b\x64\x77\x37\x1c\x24\x92\x3d\x2c\x3d\x4e\xdc\xa6\x6e\xe4\xc7\x69\x7c\xb9\x1d\xca\x11\x91\x0b\x1e\x8d\xc6\xad\x27\x5d\x96\x0b\xbd\x77\x11\xac\x8b\x42\x2c\x10\x01\x9c\x99\x64\xcd\xbe\x67\x96\x5a\x55\x9b\x72\x50\x66\x5b\x47\x48\xa7\x85\x95\xbd\x91\x4c\x89\xf3\x44\x50\x19\xc4\xd7\xd8\x0c\x69\x2e\xef\x3c\x8c\xd9\x4e\x64\x53\xd8\x4e\xd3\x2d\x72\xe3\xf6\x1a\xa2\x7f\x39\xb4\x33\xde\x64\xb8\x22\x12\x60\x2a\x0c\xc8\x60\xf6\x56\x30\x7f\xde\xdf\x67\x6c\x0c\x01\x4b\xde\xdf\x27\x08\x5b\xa0\x03\x2d\xc3\x79\x29\x99\x60\x90\xdb\x6a\x2f\x17\x8c\xa8\xa0\x2a\x25\xf6\x10\x89\xcb\x7f\x49\x04\x29\x6e\x85\xb0\xd0\xb8\x75\xc4\x05\xc4\x88\x7f\x01\xbf\xea\x59\xe2\x15\xe3\xec\xf3\x6f\xb3\x25\xed\xd1\xdb\x6f\x03\x09\x98\xef\x27\xb1\xd8\xfb\x0d\x49\x56\x07\x75\x40\x7e\x94\x54\x62\xdf\x7f\xc1\xd7\xc0\xb1\x6c\xe2\xed\xe4\x44\xa2\x5f\x6c\xe3\x4c\xf4\x5a\x0c\x33\xa3\x84\x05\x4e\x65\x1b\x24\x6c\x86\x9c\xe3\xef\x03\xcf\x52\x84\xf7\xe7\xe9\xbf\xf2\x57\xfa\x8a\xbf\x74\x2a\xbc\x8d\xdd\x1e\xc5\x0a\x8f\x36\x76\x18\xdc\x05\x8e\xa3\x11\x92\x7e\x4f\x4b\x44\x48\x80\x7d\x0d\x05\x31\x40\x0e\x23\x4e\xf6\x03\x7b\xc8\x79\xdd\xad\xb7\xf7\x94\x83\x98\x6c\xce\xe4\x33\x2c\x68\xc1\x19\xc0\xa3\x36\x12\xc7\x2a\x94\x45\xf4\x6d\x09\x79\x8b\xfe\x69\x59\x46\xc0\x59\x9f\xc3\xe4\x29\x40\x44\x72\xff\x39\xbd\xa6\x1c\x85\x28\xc3\xa2\x44\x41\x51\x3e\xbe\x88\x83\x6d\xd4\x81\xe3\x72\x82\x48\x7e\x5b\x76\x3d\xa1\x08\xea\xa3\xfb\x48\x78\x8c\x55\x2f\xd1\x77\x48\x25\x1a\x1b\x2a\x66\x6d\x49\x26\x30\x1a\xb6\x39\x47\x5a\x7d\xc8\x0f\xf2\x49\x98\xd6\x9b\x3b\xaf\x25\x25\xd9\x88\x1d\x16\x50\x44\x18\x33\xbc\xf5\xb2\x98\xf6\x66\x25\xa3\xdb\x41\xe9\x6a\x54\x7e\x23\x42\xfd\x4b\x16\xe9\x2d\x2f\x07\x93\x4a\x2d\x32\xc2\xe5\xef\x68\x8f\x8b\x11\xec\x42\x52\xae\xa4\x90\x48\x9c\x73\xbe\x88\x66\x79\x16\xeb\x78\xc9\xff\x5d\x2e\x51\x85\x6e\x12\xfa\x9f\x28\x7a\x39\x57\x75\x2f\xb9\x8e\xa4\xd9\x24\x95\xb1\x4f\x7a\x49\x65\x8f\x68\xa7\xd1\x97\x95\x10\x9d\xd2\x31\xe5\x8a\xce\xf8\xb3\xb0\x42\xc2\x17\xc7\xd8\x09\x0b\xd4\x95\x1a\x95\xb9\x65\x0b\x57\x6d\x04\x43\x7c\x94\xa3\xb3\x21\x86\x69\x72\x04\xa1\x7c\x1b\xdc\x7a\x5a\xb2\xe0\x80\x53\x47\x3f\xa7\xf0\xfa\x80\x86\xe6\x40\xa5\x03\x8e\xd0\xe1\xd0\x33\xdf\x65\xa1\x6a\xc5\x5c\x25\xd9\x84\x45\xb6\xbc\xd7\x3a\xb2\xf7\x0a\xf6\x29\x1d\xa9\xb2\x63\xc7\x11\x98\x92\x56\xb9\x70\x19\x61\x15\x46\x3c\x1a\x26\x08\x49\x73\x34\x07\x7d\x3a\xa5\xfd\xe9\xa3\x4f\x3f\x7e\x26\xb6\x85\x7f\xcc\xb7\xac\xea\xbe\x2d\xef\xaa\x66\xc0\x95\x36\x4b\xe2\xd2\xa2\x5b\x6a\x44\xb7\xbe\xe3\x7f\xc8\x9f\xbd\x34\x67\x79\x0b\xb9\x4e\x02\x67\x85\xa4\x7c\x51\x10\xec\x0a\x0d\xfc\x2c\xfc\xf6\x60\x9b\xa6\xb9\x95\x80\xdf\x25\x92\xbe\x84\xc4\x21\x2b\xe4\xfb\x44\xaf\xe3\xd2\xa2\xdc\x6f\x9b\x7b\xb3\x0c\x9d\xe3\x4b\x5d\x2e\x06\xb2\xcc\xbb\x6a\x15\x5e\x08\xfc\x95\x33\x66\x66\x51\xb0\xc5\xb2\xcd\xfe\x21\x04\x77\x8e\xaf\xf4\x7f\x32\xc9\x39\x10\x75\x46\x5c\x5a\x0c\xf8\x15\xbb\x24\x5c\xa9\x1a\x83\x83\xae\xd4\x76\x3d\xed\x4b\xed\xaa\xcc\x38\xe7\x25\x76\xe7\x54\x38\x56\xc5\x4e\x8d\xb1\xac\xc3\xca\xa6\x33\xbe\x4e\xfc\x0b\x73\x7e\x85\x38\xfc\xe1\x01\xcf\x82\x1b\x8a\xf3\xac\x32\x07\xd7\xe4\xa5\x39\x67\xa7\x60\x4e\x01\xf2\x0e\xd9\x58\x3c\x62\xf5\xbe\x16\x7b\x2b\x9c\xb2\xec\xbc\xe5\xac\xd8\x13\x4c\x8a\xae\x5c\xa0\xf2\xc1\x93\x08\xfa\x82\xb6\xcc\xb1\xa3\xd6\x2f\xee\x96\x22\x2c\x83\x3d\xdc\x9d\x88\x97\xea\x5e\x16\x57\x83\x28\x4e\xb9\x8b\x3d\x66\x6b\xcc\x58\x22\xe6\x7a\xa9\xb8\x69\x2c\x80\x58\x7c\x15\x36\x54\x94\x85\xa4\x18\x7b\xe6\x80\xfb\x40\x3a\x1b\x01\x1a\x52\x2e\xeb\x95\xd8\xfd\xb4\x7e\x1e\x79\xb6\x25\x88\x02\x22\xab\xea\x8b\xcb\x7c\x75\xeb\x46\x44\x22\xe5\xaa\x6c\x7b\xf8\x94\xa7\x68\x67\x9b\xf6\x0a\x7c\xed\xd9\xfe\xc5\x13\x48\x5d\x72\xdf\x0c\xb3\x10\x8d\xbf\xba\x09\x10\x02\xab\x14\x5b\x99\xee\xaa\x82\x54\x40\x2c\xc6\xe2\xd9\xd3\xfd\x8b\xb8\x3e\x51\x04\x24\xf1\xa3\x6d\x8c\x16\x8e\xc5\x80\x0a\xc1\xab\x1c\xb4\x81\xe8\x81\x1b\x1f\x14\xd3\xa1\x87\xa3\xbb\x28\x30\x59\x04\xa4\x6e\x1c\xe7\x0b\x3e\x95\x29\x4e\x4c\x65\xc6\xad\x63\xa8\xcd\x0e\x86\xcd\xb0\x59\x40\xda\x30\xcd\x18\xcd\xce\x34\x25\x26\x9f\x91\xbe\xe1\x63\x14\xdc\xd0\xac\x42\x7b\x7c\x78\xb1\x09\x62\xce\xf4\xe0\x40\xd9\x96\xe9\x99\xaa\x48\x00\x45\x81\xf9\x9c\x05\xd9\xc7\x2b\x8c\xec\xa8\x51\x5b\xb1\x31\x35\x18\xa0\x18\x7f\x8e\xb5\x73\x36\xdb\x86\x1a\x8c\x82\x56\x10\x8a\x54\x21\xe8\x24\xd3\x80\x78\x71\xa3\xa6\xe3\xa8\x0f\x2d\x3d\x6c\x9a\x20\x72\x13\x83\x4a\xb1\x59\xc3\x81\x2c\xe2\xb9\x1e\xe4\x08\x51\xbc\xe8\x81\x32\x3a\x69\x6c\xf3\xd9\x71\x83\x38\xc1\xdd\x40\xbc\x65\x5b\xd1\xa2\xe3\xc8\xd0\x6b\x9d\x97\x57\xd7\xb8\x30\x47\xbc\x90\x18\xcd\x9a\xe9\x35\xfd\xcb\x86\x4e\x5b\x8e\xc5\xe1\xdb\x95\xec\x22\x59\xa7\xcd\x6a\xc5\x8e\x91\xaa\xd6\x0b\x29\x87\xd2\x0c\x90\x75\xb1\x15\x27\x49\xe8\x62\x32\xbe\x2b\xaa\x46\x8a\x1b\x94\xcc\x04\xba\x7d\xb9\xaa\x6e\x88\x09\xbf\x25\x49\x90\xaf\xe5\xc9\xc5\x4d\x30\xcc\x07\x35\x13\x37\x13\xa8\x08\x7c\xd6\x2f\xa6\x67\xa8\xbb\xdf\x6d\x07\x29\xe6\xbd\xe7\x40\x0c\x11\x48\xb8\x80\x04\x40\xd2\xd2\x24\xa8\x86\x6d\xb0\x65\x41\x99\x72\x19\x90\xed\x40\x72\x47\x8a\x95\x27\x34\xa0\xee\x21\x98\xb2\x11\x3a\xce\x33\x23\x15\x8b\x55\x74\x73\xa4\x86\x3e\xb4\xf1\x98\x32\x6e\xde\xc6\xf5\x46\xd8\x02\x96\x0f\xc1\x37\x12\xe7\x7f\xc2\xbc\x78\xbf\x2d\x5d\xc0\xa1\xa9\xd3\x7b\x89\xed\xe7\x93\x8e\xf0\x85\x38\x35\x03\x91\xf3\x03\xb1\xbe\x1c\xb0\x35\xe8\x72\x98\x7b\x1a\x08\xe5\x7e\x66\x46\xa4\x07\x32\x23\x48\x8c\x67\x13\x08\xef\xa3\x00\x90\x39\x2a\xc6\x2c\x4c\xc1\xbd\x1c\xf0\x3a\xa2\x44\xdd\x53\x68\x31\xbc\xf2\x24\xe4\xfb\xc0\x36\x0a\xa8\x3c\xba\xb1\x8f\x19\x6a\xa8\xff\x33\x8e\x53\x7f\xc1\xd4\xfb\xec\x29\x92\x76\xbd\xc1\x28\x8f\x2f\x08\x07\x14\xc7\x97\x3f\x1b\xc2\x1f\x8e\xbe\xb6\x5c\x93\x16\x6d\x61\x7f\x4a\xfd\x6c\x93\x07\x95\x87\x5e\xdd\x7c\xdb\x35\xd6\x04\xed\x56\x02\xb9\x65\x5d\x85\x08\x85\xaf\xb7\xeb\x25\x5c\x70\xfe\x42\xb6\x16\x3b\xcc\x88\xe0\x87\x3d\xef\x01\xd9\x50\xd6\x0f\xa6\xfd\xdd\x9f\xae\x2e\xdf\x9d\xa4\xbf\x3f\x39\x1c\x0e\x4f\xb8\xfa\x93\xa1\xdd\xb2\x6b\xa9\xe0\xb0\xc2\xff\x71\xf1\xf6\x24\x2d\xfb\xd5\xf7\x8b\xf4\x42\xb6\x86\xf4\x80\xc0\x7c\xf1\x17\xdc\xb0\x1f\x83\xc9\x92\xcd\xc2\xff\xfc\x96\xd9\x4b\x6c\xba\x5e\xc6\x0e\x23\xd5\x43\xa6\xcd\xcb\x6e\x0a\x86\x52\x81\x28\x1a\x5e\x62\x2c\x49\x01\xc0\x85\x13\x24\x7c\x01\xb0\x6a\xcb\xf7\x91\xd1\x21\xc2\x0d\xf2\x3b\xb6\xb7\x0e\xdb\x42\xe8\xd4\x38\x1a\xcd\x4e\x51\x56\x16\xbf\x8c\x5b\x82\x9a\x8e\xbb\xa7\xcf\xd3\x3f\x71\xd0\x25\xa3\x54\xa8\x80\x8b\x8c\x0a\x00\x1c\xd2\x12\x76\x58\xaa\x97\x67\xca\x71\x81\x37\x98\x9c\x97\x3d\x9c\xef\x73\xb4\x21\x23\x77\x63\xf3\xab\x69\x1b\x95\xce\x35\x6a\xac\x15\xee\x2d\x6e\x80\x88\x9a\x47\x7b\x80\xcf\xa5\xc3\x78\x1f\x8c\x8f\x24\xdd\x64\x9e\xdd\xeb\x26\x9b\x70\x7c\x05\xfc\xd2\x3e\x53\x09\x62\x22\xd1\x05\x3d\xa8\x64\x37\xe9\x41\x7c\x84\x99\xce\xd2\xa2\xe2\xe0\x37\x3c\x77\x79\xf1\x11\x64\x54\x03\x06\x12\x93\x0c\x23\xa4\xdb\x92\x98\x97\x85\x3b\x9c\x0f\xb3\xc8\x1b\x7b\xc5\x20\xf0\xc1\xb2\xa1\xd5\x8c\x92\x13\x0f\x74\x28\x66\x48\xab\xe6\x1f\x12\x3f\xd6\xa8\x70\xfc\x28\xc2\xa8\x98\x35\x0b\x79\x75\xe5\x4c\x52\x49\x52\x54\x37\x37\x8b\x65\xdb\x1c\x3a\x76\x8a\xe2\xea\x38\x9b\x69\xf8\x3b\xbd\xc2\xb7\x80\xec\xf3\x56\x78\xa6\x24\x24\x53\x2c\x0e\x94\x29\x09\xc9\x64\xd6\x31\xb9\xba\x7b\x4e\x25\xb8\x2d\xcb\x37\xe9\x39\x1a\x48\x4a\x16\x52\x85\xb6\xcb\x21\xe3\x54\xd6\xf5\x39\x6c\x2c\x57\xac\xea\xa0\xd2\x15\xe7\x28\x18\x27\x0d\xa3\xe6\x1a\x62\xdb\x84\xc5\x67\xe1\x9c\xf3\x5e\x22\x70\x43\x83\x23\x30\x5a\x9a\x0a\x07\x99\x07\x09\x9d\x4c\x04\x51\xa8\xc0\xe6\x21\x14\x41\x40\xea\xaf\x6f\xde\xc9\x27\x0c\x45\x1a\xad\x06\x4b\xd1\x4b\x36\xd9\x9b\xf9\x69\x31\x67\x86\xb2\x32\x31\xe7\x89\xfc\x6f\x2f\xf2\xe0\xcb\x41\x14\x6d\x7e\x03\xbf\x1a\xff\x77\xb9\x74\x58\xfa\x6a\xa4\xf5\x3f\x19\x57\x23\xe4\x08\xaa\xaf\x90\x70\xf9\x10\x00\x9e\x43\x0e\x70\x79\xf9\x86\x34\xa7\x00\x87\x8f\x0a\x8f\x11\xb3\x73\x11\x29\x3e\x22\x46\x56\xb1\x82\xa3\x1a\xdf\xa8\x43\x50\x87\xbf\x71\x05\xda\xc1\xeb\x36\x06\xd1\xe7\x6b\xe7\x9a\xcd\xd7\x72\xed\xc7\x97\x41\x74\xb2\x88\xd9\xa8\x8e\xbf\x76\x65\x2a\x9b\x37\x56\x52\x39\xde\x8f\x58\x85\x36\x50\xca\x64\xe3\x27\x82\x1e\xbb\xcd\x62\xbc\x10\xce\xd5\xa7\x38\x4b\xf1\xed\xa0\xec\x24\x60\x72\xc9\x76\x45\x70\x18\x08\x01\x85\xdb\xf6\x22\x6f\x6f\xf9\x42\x39\xcc\x31\xd6\xc0\xa1\xd5\x28\x47\xfe\x1f\xae\x98\x3e\x64\xf0\x5e\x52\x93\x0e\xf7\xb4\x29\x4b\x77\x61\x19\xb5\x21\x93\x9a\x18\xe4\x2a\xf0\xe9\x25\x11\xb5\x6f\x25\x25\x2f\x10\x8d\x29\x63\x1a\xa3\x40\x65\x4f\xc6\xeb\x16\xc0\x3b\x44\xff\xa5\xfc\x3f\xff\xeb\x7f\x13\xb3\xdf\x93\x92\xda\x23\xfe\x44\xaf\x3e\xf8\x75\x37\xcf\x8b\x7f\x76\xe2\x09\xf4\xef\x60\x20\x82\xfe\x54\x43\x56\x29\x35\xa1\x51\xbe\x93\x6e\xf4\x7d\xc5\x36\x80\x98\xc8\x21\x4d\x7a\x32\xff\x8d\x49\x77\xdc\x86\x11\x55\xa6\xfa\xbf\x0b\xbd\xb6\xc5\xc5\xa2\x49\x40\xa3\x12\x9d\x98\x08\xd4\x5c\x00\x70\x89\x0d\x26\x9d\xe5\xb3\xbf\xde\xe3\x16\x22\xba\xda\x03\x11\xd2\xc3\x18\xc2\x5e\x31\xf9\x4d\x1f\xe0\x11\x91\x5c\xae\xff\x31\x6b\x71\x0e\x57\x09\x98\x97\x70\x2a\xd7\x48\xd8\xd1\xe3\xce\x62\xaa\xf4\x66\x28\xa2\x96\x66\x02\xdb\xc2\x60\x2d\x92\xc8\xd5\x4b\x20\x17\x01\xd4\x31\x10\xbd\xc7\x05\xdf\x81\xe9\xd7\x76\xcc\x16\xc9\xbe\x6c\xf6\x12\x5e\x8c\x04\xdf\xd5\xe0\x57\x8e\x98\xfc\xc4\x82\xf6\x06\x19\xb4\xaf\x91\x81\x5b\x4c\xb0\xd8\xf3\xff\x04\xd1\xdf\xaa\x04\x72\xae\xa6\x34\x7f\x14\x61\xde\x46\xd7\xe7\xbd\x57\x03\x37\x4f\xa2\xfb\xea\xdc\x38\x10\x35\xe3\x8a\x9d\xdc\x47\xc2\xca\x20\xf7\x21\xe8\xc8\x37\xfc\x78\x0b\xab\x88\x86\x2f\x72\x5b\xc4\xe5\xd4\x5e\xab\x24\x83\xdb\x30\x7c\x4f\xb4\xe6\x97\x1f\x0c\xcb\xae\x9b\x60\xcb\xe0\x4a\x49\x17\x54\xe3\xf5\x22\xad\x76\xe8\x7f\x11\x78\x8e\x06\xa8\x3a\x7e\x3d\xc2\x29\xac\xb8\xf2\xe3\xb2\xd3\x2d\x09\x60\xdb\x48\x58\x44\x43\x6c\x1d\xfb\xe5\x88\x7b\x75\x7a\xef\xec\xeb\x1d\xac\xd3\x36\x1e\x76\xb1\xfe\xb3\xd6\xe3\xf9\xa8\x70\x57\x3c\x0d\x0f\x77\x45\x73\x71\xe2\xff\x0e\x43\x2d\x91\x94\x0e\x63\xb2\xb7\x8f\x5a\x6a\xb5\x8e\x33\xf4\x1d\xbf\xef\xf7\xf5\xf6\xda\xe8\x9e\xd4\x1f\xb0\xd8\xc6\x33\x0e\xc4\xe0\x68\x54\x0e\x21\x6c\x10\x88\xa3\x7f\x8e\x49\xc7\x5e\x2a\x8e\x78\xc6\x58\x86\x9e\x04\xfb\x60\xa6\x0f\x56\x89\x43\x7f\xc2\x61\x3a\xf5\xdf\x07\xcb\x98\x96\x2c\x41\x3f\x62\x2e\xf9\x72\xe4\xcf\x11\xfb\xdb\x43\x21\x40\xe3\x51\x32\xaf\x71\x8f\x68\x85\x83\x7c\xb0\x46\x78\xcc\xc6\x36\xee\x7f\x4f\x58\xd0\xbc\x8d\x8b\x15\x87\x83\xa9\xba\x38\x94\x0d\x7f\x5e\x61\xe3\x08\x68\xc3\x97\x3c\x02\xe5\x19\xae\xc7\xdc\x80\xb7\xb1\xfa\xf1\xa0\x39\x68\x50\xb8\xf7\x42\x2f\x8d\xd8\x95\x93\x51\xbe\x67\x7d\x88\x78\xdd\x4b\x0c\x8f\x07\x92\x6f\x88\x3b\xb3\x25\xe3\xfa\x71\x1f\x71\x30\x94\xe5\x3a\x33\xe3\x05\x12\x2e\x9f\xb0\xb6\x2a\x11\x9b\x72\x26\x29\x57\xa2\xd7\xb9\xf4\xee\xa3\x1f\x84\xdc\x6b\x7b\x0e\x4b\x93\xcf\xd5\x53\x4f\x71\xcd\xee\x7d\x5a\x94\xfb\x3d\x2f\x61\xee\x2e\x7a\xf0\x32\x09\xa0\x8a\x9b\x3a\x2a\x48\xc8\x3f\x8f\xdb\x92\x47\x3d\xf4\xf4\x7c\xd7\x1c\x12\x39\x3a\x17\x7c\x15\x2b\x95\x7b\x58\x9a\x13\x0f\x49\xf2\x58\x46\xd1\xe8\x4d\xcc\x81\xc4\x74\x09\xd6\x9c\x96\x8f\xe2\x55\x70\x72\xb8\x48\x15\xbb\x56\xc9\x02\x28\xa4\x06\x84\x18\xb0\x5c\x1f\x12\xc7\x42\x5b\x85\x00\xeb\xbb\x15\x49\x34\xea\x37\x84\xf8\x23\x1d\xf3\x38\x27\xdd\x9d\x98\xfd\x00\x51\xf6\x1c\x86\x20\xfc\x70\x67\xe3\x90\x77\x87\xdc\x38\xdc\xa3\x56\x7e\x1c\x21\xc4\x1f\x19\x07\xf7\xf2\x94\xdf\x01\xc5\x22\x3e\x34\x1e\x52\x0e\xf5\xd2\x40\x68\x9d\xee\xc6\x43\xf4\x01\x1f\xd7\xc1\x79\x0d\x0f\x4f\x31\x92\x3f\xd8\x7c\x34\x3d\x38\xa5\x44\x1c\x0d\x33\x22\x82\x38\xe2\x66\x23\x5f\xbf\xbc\xc5\x79\xa5\x51\xd3\x81\x06\x2e\x36\x0f\x36\x77\x0a\xe9\xb8\xbc\x48\x07\x19\xeb\x42\xe5\x3a\x29\xfc\xf2\xc1\x2b\x70\x16\xb3\x2a\xf2\x5d\x78\x64\x40\xc0\xb3\x95\x2c\xe4\x8e\xb9\xdb\xe3\xcc\xea\x82\x5e\xa7\x8d\x39\x56\x0d\x28\xc7\xa2\xa7\x70\xc6\x3b\x43\xe9\x2c\x30\x66\x31\x53\x3e\x31\x99\x55\xbc\x59\x06\xb5\xcb\xef\x23\x07\x1b\xc7\xea\xb2\x46\x16\xed\x9a\xe3\x27\xf6\x74\x28\xfe\xac\x96\x8b\xdb\x8e\x60\xe4\xc5\x21\x3d\x21\x62\xc7\x52\xb0\xd5\xa7\x04\xe2\xc9\x6e\xdd\xe6\x6c\x6b\xb4\xb5\x66\x66\x11\x90\x02\x1a\xfc\xd9\xcd\xd2\xbd\x7a\xe7\xb9\x01\x3c\x18\xd4\xd0\xe3\x87\x98\xc2\x57\x0c\x00\x6c\xe3\xe1\x11\x80\x2d\xc8\xf5\x73\x1a\x46\xc0\x02\x1e\x1a\x88\x3e\x57\xf7\xc7\x07\x02\xbe\xf1\x07\x07\x72\x62\xa3\xd0\x4b\x8f\x45\x31\xbb\xff\x1f\x1a\xdf\x48\xdd\x01\x71\x46\xb7\x6a\x47\x04\x1f\x3d\x1d\xec\x88\x3e\xf0\x35\x5b\xb3\x70\x30\xa8\xef\x5b\x8f\x33\xdf\x54\x4d\x4b\x08\x55\xb6\xee\x43\xff\x78\x1c\x8c\xc7\x1e\xdb\xbe\xbd\x57\x91\x84\x27\x17\xc7\x02\xfa\xcb\x43\xa2\x84\xc1\x57\x24\x37\xad\x3f\x01\xed\x9f\x8f\xbc\x01\x2e\x4f\x29\x8a\xfb\xaf\x8b\xde\xa3\x9e\x5e\x7a\x7d\xf0\xc2\x71\x7c\xd1\x7a\x7c\xe3\xbe\x93\xf0\xee\xb5\xc9\x72\xf6\x5a\x5d\xe2\x9d\xe3\x57\xf7\x84\x83\x1d\x1e\xe8\x5c\xf1\x5d\xb3\xa6\xae\xc4\xaf\x7a\x21\x29\xbe\x6e\xc8\xa6\x18\xb5\xc3\xf0\xad\x03\x17\x1d\x93\xf8\xd9\xc1\xb8\xc8\x36\x26\x15\x04\x24\x1d\x94\x07\x17\x60\x59\xd5\xb1\x8f\xb0\x05\x8c\x04\x26\xcc\x21\x18\x99\x8e\x03\x8d\x0e\xdd\x5c\x8f\x19\x3b\x42\x52\x75\x03\xb9\x87\x85\x99\x49\xf0\x2d\xaf\x82\x6f\x79\xc9\xdb\x95\x27\x41\x46\x84\xf3\xb0\x60\xef\x9e\xfa\x88\xb2\xe3\x83\xcf\xe7\x23\xf0\x31\xce\xe2\x68\xc7\x28\x23\x5f\x4d\x7a\x91\x4d\x15\xd7\x93\xf0\xa3\x30\x87\x8d\x89\xec\x10\x89\x5a\x8f\x2f\xc9\x84\x45\x72\x77\x3c\xca\xd2\xf7\xf1\xe2\x99\x88\x4d\x35\xcc\xdb\x36\x6b\xbe\xf7\x0e\x23\x64\x3c\x3d\x95\x9d\xe3\x36\x2d\x86\x30\x6a\x02\xd1\x86\x61\x0e\xfc\x06\x7d\xde\xc5\xb5\xb1\x05\xc3\x0c\xbd\x34\x31\x01\x24\x9d\x3a\x5f\x6d\x30\xff\xc5\x1c\x21\x99\x6a\xec\x88\x49\x5f\xc6\x9e\x81\x94\x37\x0c\x53\x7b\xb1\x70\x16\x86\x9f\x46\xc6\x03\x91\x41\xe9\x8a\x30\x55\x67\x7a\x8f\xa8\xd1\x28\xe9\x33\xce\xb4\x3b\x43\xe9\x25\x76\x5c\xf7\x60\xa5\xe0\x14\xe3\x18\x3b\xbd\xa7\xa4\x35\x45\xe2\x78\xe0\x38\xf3\x2d\xeb\xc1\xa8\x9e\xe1\xdc\xeb\x6a\x9d\x97\x13\x58\xba\x31\xd7\xb1\x23\x92\x3f\xd4\xc6\x68\x94\x1e\xc2\x35\xf3\xf5\x43\x85\xf5\x8c\xa3\x3a\x61\x91\x8b\x06\x19\xb1\x35\x03\xf9\x42\x0b\xa3\x21\xce\x36\xf1\x15\x83\xe4\x47\x55\xd7\x2b\xf7\x08\xe5\x39\x5f\x67\x6c\x97\x1c\x3f\xca\x67\x58\x29\x8f\x03\x37\x75\x6c\x81\x9b\xaf\xfe\xd0\xc8\x30\x20\xd6\xb9\xe7\x9a\x3f\x36\xb6\xb6\xec\xee\xeb\x55\x86\x17\x41\xbb\x8d\x86\xf8\x7d\x28\xc5\x56\xfe\x78\x41\x79\x4f\x73\x8d\xd4\x2f\x71\x43\xb0\x7b\x2c\xf7\xbd\xbf\x5b\x51\x3e\x5e\x24\xa5\x23\xee\x09\x78\x22\x6a\x9b\x00\x47\xe2\x59\xff\xfd\x83\x1d\x8d\xe6\x12\x30\xc4\x00\xb7\x2d\x86\xd2\x97\x7f\x68\x06\x81\x13\x32\x9c\x06\x93\x81\xee\x7e\xf0\x8a\xf0\x61\x13\x46\xdc\x77\x7c\x39\x81\x2f\xa8\xf2\x43\x6f\x1a\x4e\xa1\x07\x9a\xbd\xf8\xaa\xc6\xa3\x23\x13\x0a\xfb\x7d\x60\x85\x1e\x47\xa3\xf8\xf2\x1c\xc3\x43\x48\xde\xb2\x1e\xf6\xf8\x41\x01\xf7\x88\xf5\x47\x7c\x87\x4c\x41\xee\x9a\x67\xeb\xa6\x6d\x68\x79\x60\x22\xb6\xfb\xe7\xaf\x2c\xaf\x9b\xa9\x00\x13\xf8\x7d\x36\x68\x58\xb3\xd5\xb9\x40\x36\xc9\x0f\x1c\x9f\xea\x6b\xf5\x4d\x9f\x6f\xad\x0e\x5b\x20\x57\x6a\xb7\xbe\xe6\x02\xab\x75\x6a\x05\x41\x4d\xad\xd3\x2c\x39\x9e\x0e\x55\x14\xf8\x52\x73\x02\x58\xb8\x39\x38\x7c\x99\xd0\x35\xec\x33\x9e\x2a\x82\x69\x25\x3b\x7d\x8b\xec\xf4\x9a\xb3\xa7\x3d\xd8\xa8\x5c\xb5\xd1\xa0\x8e\xd5\xbb\x69\xcb\x49\x9d\x97\x1c\x48\x3f\x86\x37\xcc\x6d\xca\x7c\x3f\xc1\xdb\x6b\xca\x9c\x60\x0d\x90\x53\x04\x00\xf6\x38\x16\xc2\x5a\x55\x01\xc5\x2a\xac\xf1\x86\xb2\x8e\x41\xe3\xf9\x9d\x31\x3c\x9e\xfa\x3f\x52\x43\xcf\xec\xf1\xa8\xd4\x67\x33\x19\x55\xb3\xfc\x1b\x1e\xc6\x57\xe8\x4b\xf9\x0c\xa0\x96\x4d\xd3\xf3\xfb\xa3\x7b\x16\xb7\x56\xb7\x0e\x4d\xbf\x5a\x3e\x8b\x5b\xab\xdb\x09\xa6\x04\x7a\x8a\x2a\x81\x3e\x8e\xab\x1d\xdf\xe2\xa1\xbe\xda\x61\xd5\x0f\xb4\x41\x5d\x87\x17\x57\x7c\x23\xe8\xca\x15\x4c\x7a\x9c\xd4\x0c\x29\x74\x5c\x79\xae\xe7\x15\x09\x11\xe5\x6c\xd7\x67\x5c\xf2\x60\xdf\x93\xba\x61\xe7\x93\xea\x73\x3b\x05\xcf\xab\xb0\xd1\x79\x39\xac\x6e\xcb\x9e\x63\x72\x37\x19\x3c\xcc\x61\x5b\xef\x0d\x2c\xfd\x15\x60\xe9\x6b\x02\x4b\xaf\xe5\x75\xfb\x69\xab\x74\xe8\xec\xca\x3e\x47\xa4\x40\xd0\xca\xab\x33\x5a\x01\xce\x2e\xf2\xb9\x5a\xb0\xce\x64\x2a\x65\xeb\x2e\x64\xc1\x27\x68\x41\xdf\xdd\x17\xc1\xfb\xd4\x81\xcc\xb5\xc6\x6a\x80\x9c\x7e\xab\xfb\x95\xbc\x1d\xc2\x8a\x01\x8d\xe1\x83\xe4\x04\xb0\xb8\x6f\x4e\xb0\xc6\x23\xe1\x14\xc7\xc5\x73\x02\xbf\x8e\x19\xa5\x70\x30\x0f\x2c\x8c\x8b\xe0\xde\xe7\x43\x37\x0b\xb8\xcf\x65\x33\x1d\x85\xb4\xee\x0d\xd0\x7a\x1e\xc3\x69\xa7\x9d\xa0\x52\xd8\x8a\x68\x6a\x12\xbb\xa9\x97\xc3\xed\x97\x77\x10\xba\x69\x57\xc3\xf1\xfb\x3b\x02\xfb\xc5\xe7\xa4\x15\x4c\xa4\x57\xc8\xac\x92\x63\xf2\x16\x5e\x4e\xb3\xb4\x95\xc1\x12\xa5\x36\x3d\xcd\x8b\xde\xb6\xd6\x3c\xbd\x70\xe1\x3a\xb6\xfa\x1a\xc6\xc0\x2e\x61\x6b\x11\x82\xa9\x85\xac\xc4\x2f\x8c\x6a\xe4\x8a\x00\xca\x6d\x38\xf1\x24\x6d\xc3\xca\x50\x1a\xdc\x0f\xaf\x44\x0d\xbc\x85\x3e\x11\xcc\xed\xe8\x2b\x44\x76\x7d\xf8\x0f\x3e\x44\xe4\x67\x13\xe0\x18\x8e\xee\x18\xbb\x55\x97\x85\xe8\x1c\xdf\x3e\xce\x47\xe8\x65\x70\xc5\x70\x04\x0a\xcf\x77\xf8\x50\x76\xe0\x7e\x34\x94\xc3\xd1\x87\x07\xfa\x35\x50\x6a\xd2\x42\x50\x27\xf8\x55\x03\x0e\x37\x95\xeb\x1e\x73\x28\xf2\xd6\x41\xc3\x90\x7b\xd0\x09\xd0\x0f\xba\x96\x62\x5c\xcc\xbf\x33\xf7\xff\xe5\xa9\xbd\x70\x00\xfe\xc1\xbd\x23\xfd\xff\x3f\x79\x70\x6f\x6c\x99\x75\x2f\xee\xe1\x45\xb1\x05\x82\xaf\xe3\x7d\x1c\x39\xae\xa2\xfd\x8c\x1a\xe1\x3e\x45\x46\xec\xca\x47\x96\x37\xfb\x9a\xc5\x57\xac\x36\xd8\xa2\xe3\xfe\x82\x78\xf9\xa8\x37\xa9\x31\xbd\xd5\x1e\x0f\x41\x72\xa6\xde\x22\xc9\x57\x6b\x44\xaa\x17\x31\x4b\xb5\x1e\x2d\x60\x92\x50\x17\x8d\xe5\x4d\x7e\xc0\x8b\x37\xb5\x6e\xed\xd1\x90\xe3\xcd\x1d\x8d\x5a\x2a\xc9\xed\x38\x0b\xc5\x9f\x65\x26\x0a\x18\x4c\x45\x72\xc2\x1b\x6a\x92\x23\x2f\x4c\xe1\xc1\x56\x49\x69\xfe\x34\x0a\x23\x18\xb1\x36\x13\x77\x1d\x34\x0a\xa0\x59\x5e\x15\x8c\x65\x1c\xff\x27\xb9\xe1\xef\x75\x49\x8e\xfe\xf4\x11\x7e\xf5\x48\x72\x96\x88\x1f\x42\x94\x1b\x1b\x9f\xce\xdf\x59\xb7\x7d\xdf\x56\xcb\xa1\x9f\x7f\x3b\xcd\x95\x4e\xa0\xcd\xed\xcf\xb4\x9b\x7e\x01\xb6\x1b\xac\xe1\xab\xe1\x4b\xed\x8e\xde\xbc\x1e\xc1\xc9\x3d\xbc\xd4\x5d\xc5\x7c\x89\x6f\x2d\xdc\x31\x8f\xcc\x3a\xfe\x85\xbd\x0b\x62\x31\x45\x7a\x75\xaa\x25\xf8\x81\x23\xb5\x8e\xe0\x77\x90\x8e\xae\x02\x43\x4e\x7e\x30\xc9\x17\x29\x5e\x51\x14\x20\x57\xdf\x60\xeb\xe5\x79\x2c\x79\x7f\xec\xfa\xed\x15\x25\x57\xed\xbd\x38\x8c\x74\x5d\xd8\x63\xa0\x3f\x2b\x64\x8f\xd2\x9e\x5e\xb8\x1f\x6e\x0a\x56\x5a\x9b\xe4\x1f\x85\xc9\x82\xdf\x3b\xd4\xc6\x69\xfc\x8d\xfe\xe4\x81\x1a\x4c\x95\x56\xf9\x05\x4f\xa2\x55\xfa\x67\xed\xf8\x73\x75\x4c\xf6\xfa\x56\x9b\xae\xc0\xe4\x30\x8a\x2d\xb7\x38\x68\xdc\xa1\x14\xd2\x7b\x78\x56\x46\x1d\xfc\xc1\x97\xd5\xc2\xb6\x82\x43\xe5\x81\xb1\xce\xde\xe5\x8a\x9f\x05\x08\x01\x33\xd9\x7f\xf6\x1c\x48\xd4\xb0\x73\x32\x4d\x2b\x44\xef\x82\x44\x95\xe6\xc3\x00\x1e\x7a\x11\x44\x8c\x02\xa6\x8c\x3b\x9b\xb7\x2a\xe3\xb1\xe9\x5b\x61\x1f\xfa\xcd\xb8\x00\xe4\x4e\x5c\x6b\x01\x84\xfd\xda\x65\x00\x34\xff\x9b\x65\x0a\x30\xe6\x29\x9a\x3d\xfa\x29\xab\xe8\x37\xac\xac\xa6\xfd\x24\x47\x33\x88\xb6\x8d\x9f\xcc\xd1\x3b\x1c\x1f\x90\xc9\x82\x96\x81\xcf\xfd\x6e\x5c\x50\xa4\x1d\x71\x51\xd8\x09\x4e\x28\xfe\x11\x9d\x07\x7f\xe3\xce\x10\xcc\x26\xf7\x55\x26\x77\xc2\x83\x3a\x30\xf8\xaf\x10\xc6\x3b\xad\x44\xe3\x9e\xd6\xa0\x71\x1f\x01\x17\x27\xb0\xf1\xf3\x2b\x7c\x09\x0b\x71\x23\xe6\xd0\x32\xa5\x22\x9b\xb0\xe4\x8d\x1f\x1c\x0e\x71\x50\x2c\x3d\x61\xb8\xdf\x1d\x9a\x25\x0d\xff\xbb\x8d\x61\xb7\xfc\x8b\x8b\xc1\x41\xe0\x73\xc3\x23\xcd\xe7\x86\x3f\xec\xe8\x73\xe7\x7e\x69\x71\x5a\xea\x3d\xf3\xdf\x71\x6c\xca\xb7\x7b\xf9\xf1\xc9\xee\x5b\xfc\xbc\xd6\xf7\x41\x8d\xf0\x57\x1a\xe3\xdc\x71\x1b\xfa\xa3\x50\xa3\x26\x8c\x59\x46\x5b\xa6\x5a\x1d\x41\x8c\xfb\x6d\x98\xe8\x09\x3e\xa0\x5f\x7e\x63\x4c\x8f\x95\xe8\x47\xe1\xc6\xc4\xec\x99\xad\x23\xe5\x90\xd1\xda\xc0\x38\xa4\x3d\xfa\xb5\x34\xfd\x85\x0e\x8d\x6d\x77\xbf\x47\xf3\x2b\xb2\xfd\x08\x67\x7f\x0a\x6d\xfc\x1b\x68\x1c\x74\x6e\x55\xe2\x1f\xad\x9b\xfe\x5a\x9d\x82\xd9\x3b\xa0\xb0\x08\x4c\x9e\x0c\x85\x29\x40\x5f\x0c\x35\xc6\x20\x57\x48\x38\xbe\x3b\xdb\xaa\xf9\x5b\xae\x99\x20\xca\x3b\x7d\x0b\x7b\xb7\x1b\x77\xf4\xc3\x19\x51\x25\xf9\xbd\x0e\xf7\xd2\xff\xb4\xb2\xdd\x86\x72\x8b\x68\xb7\x3b\x66\x17\x91\xfd\x2c\xe1\xeb\x34\xd7\xf4\xed\xde\xa6\x71\xab\x25\x17\x37\xa0\x0f\xcb\xef\x05\xeb\x55\x0e\xa8\xc5\x94\xe3\xd6\xe9\xb6\xda\xf3\xc1\xac\x4f\x8c\xf3\xf2\x50\x0e\x4e\xe7\x3f\x23\x27\x44\x73\xc8\x9b\x2f\xf0\x3d\x3f\x44\x85\x9d\xca\x81\x71\xb9\x91\x14\x51\x7a\x13\x90\xd3\xeb\xdf\xde\x5e\x8e\x20\x67\xb6\xa8\x96\xcc\x6c\xe9\xf8\x37\x13\xc3\x0d\x2c\xce\x1c\x37\x05\x38\x70\xe6\x67\x20\x90\x47\x27\x20\x54\xe4\x7d\xb3\x20\x9f\xd9\x86\x94\xde\x8a\x7c\x2f\x7b\x46\x29\x4d\xbe\x63\xa0\x60\x4d\x05\x6a\xbc\xa8\xae\xd7\x3a\xec\xb3\x16\x47\x84\xe7\x08\x12\x24\x10\x70\x04\x09\xb6\x9d\x1d\x9e\x41\x93\xd2\x7a\x57\x15\x2a\x3a\x0a\xfc\x7b\xcd\x32\x50\x03\xf1\x2d\x1b\x84\x36\xed\x86\x49\xa4\x5b\x39\xf9\xed\x0c\x5f\xd1\xd2\xe9\x56\xe4\x1d\x23\xb0\x7e\x23\xf2\x13\xa4\x52\xc3\x80\xd7\x2b\x87\x18\x33\x29\xbd\x3a\xf3\x6f\x31\xc1\xfa\x34\x9a\xcc\xb6\xba\x29\x9d\xad\x4a\x67\xf3\x96\xf2\x22\x60\xfe\xb1\xd3\xce\xae\x9c\xc9\x4f\xbc\xf0\xcf\x25\x8e\x26\x11\x36\xa5\x33\x99\xb4\xb4\xaf\x60\x3f\x0c\xf0\x22\x19\xf3\x18\x37\x68\xe5\xdc\x01\xb8\xb2\xee\x31\xc3\xb5\x67\xd0\x83\x1d\xe2\xdf\x24\xf6\x27\xb4\xeb\x9d\x4f\xe6\xd9\x9e\x19\x4a\xcf\x2e\x86\xc1\xd9\x65\xf1\x02\x8b\x55\x2b\x0f\x5c\xf0\x3f\xe6\x28\x2e\x92\x20\xd2\xf8\x2c\xaf\x23\xda\x2b\x06\xb9\x6e\xa3\x49\x0f\x1f\xbc\xbe\x01\x34\x59\xc1\xdc\xb3\x1d\x11\x40\xf9\x7b\xb9\x1a\x02\xc7\xc2\x6f\xf2\xad\x96\x3c\xdf\x4c\x63\xe1\x81\x43\x8d\x57\x45\xde\x4b\x4e\x00\x33\x13\x11\xef\x86\x8e\x20\x47\x0b\x76\x3c\xda\xbf\xeb\x1e\x0a\x10\x43\x59\xcc\x85\xc5\x39\xc8\x67\xb6\x95\xdb\x17\xa3\x30\x0c\x83\x0d\xe5\x90\x30\x2f\xfb\x21\x92\xd4\x5c\xd9\xcc\xc0\xad\xa8\xc1\x2f\x7a\xee\x17\x01\x2c\x84\xf1\xe0\x79\x4c\x19\x83\x94\x7f\x29\xc8\x2a\xf9\x24\x51\x0d\x9f\x47\x0f\xa6\x99\x01\x32\x08\xa4\x89\x6e\x00\x3d\x92\xa7\x58\xe4\x9a\x94\x55\xe2\x18\x22\x79\x47\x26\x80\x7d\xda\xb5\xab\xa7\x8f\xc2\x07\x5c\xd8\x26\xe4\x01\x3e\xfd\x20\xaf\xbb\xfc\xa4\xaf\xbb\xe8\x38\xec\x57\xc3\xff\xaa\xaf\xc2\xc8\x77\xd8\xae\x18\x3e\xa4\xe9\xee\x3f\xb9\xd6\xff\x9a\x68\xb8\x85\x6f\x42\x33\xf0\x38\xea\xd7\x34\xe4\x5e\x49\xd0\xf9\xd9\xf7\x08\x2f\xb8\x94\xca\x08\x91\xdb\xa9\xe3\x47\x6a\x15\x55\xb8\xdb\xca\x77\x71\x3c\x9e\xe8\xe3\x61\x44\x45\x4d\x4d\x10\xd5\xec\xf8\x16\x62\xf6\x63\xe6\x1f\x65\xc2\x35\x3c\x29\xa8\x3a\xfe\xa9\x0e\xf9\x8d\x61\x12\x91\x7f\x74\x0f\x32\x25\x9f\xfa\xa6\xd9\x7e\x4e\xf2\x35\xcf\x89\xfe\x26\x78\xd6\x4c\x22\x76\x11\x95\x46\xc9\x44\x3e\x39\xf5\x03\x37\xfc\x03\xe9\xa9\xc4\x40\xf8\x75\x9e\xe4\x87\x1d\x32\xe4\x47\xe3\x90\xb1\x41\x06\xbf\x87\x87\xcf\x02\x9f\x45\x7e\x8f\xaf\x03\xbe\x0e\x65\x79\x2b\x95\xc1\x61\xa8\x3a\xe9\x7d\x1b\xe4\xdc\xe3\xfb\xbe\xcc\x51\x5b\xfa\xe1\x3e\x1f\x15\xa9\x7d\x3c\xe2\xf7\xaf\xe4\x37\xea\x90\x6f\x1f\x94\x2f\x8f\x39\x3f\xf7\xef\x3a\x3f\x62\x0f\xd9\xbd\x66\x21\x45\x39\xdc\xbd\x66\x49\xf2\x11\xd8\x04\x69\xb3\xda\xa0\xa4\x29\x97\xc7\xa1\x99\x92\xa4\xbc\x36\x3f\x64\x7e\x5c\x9a\x42\xae\x1f\x95\xa6\x92\xff\x1b\x00\x00\xff\xff\x01\xfb\x60\x4a\x69\x82\x00\x00") func confLocaleLocale_enUsIniBytes() ([]byte, error) { return bindataRead( @@ -786,7 +786,7 @@ func confLocaleLocale_enUsIni() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "conf/locale/locale_en-US.ini", size: 33329, mode: os.FileMode(420), modTime: time.Unix(1437684454, 0)} + info := bindataFileInfo{name: "conf/locale/locale_en-US.ini", size: 33385, mode: os.FileMode(420), modTime: time.Unix(1437725453, 0)} a := &asset{bytes: bytes, info: info} return a, nil } diff --git a/modules/setting/setting.go b/modules/setting/setting.go index 48a5dd35a..1c297db7d 100644 --- a/modules/setting/setting.go +++ b/modules/setting/setting.go @@ -82,8 +82,9 @@ var ( } // Repository settings. - RepoRootPath string - ScriptType string + RepoRootPath string + ScriptType string + IssuePagingNum int = 10 // Picture settings. PictureService string diff --git a/public/css/gogs.min.css b/public/css/gogs.min.css index 0ba6e04b2..ff462cca7 100644 --- a/public/css/gogs.min.css +++ b/public/css/gogs.min.css @@ -1 +1 @@ -@font-face{font-family:octicons;src:url(../fonts/octicons.eot?#iefix&v=345f8bad9c5003db196d08f05e7f030fd2a32ff6)format('embedded-opentype'),url(../fonts/octicons.woff?v=345f8bad9c5003db196d08f05e7f030fd2a32ff6)format('woff'),url(../fonts/octicons.ttf?v=345f8bad9c5003db196d08f05e7f030fd2a32ff6)format('truetype'),url(../fonts/octicons.svg?v=345f8bad9c5003db196d08f05e7f030fd2a32ff6#octicons)format('svg');font-weight:400;font-style:normal}.mega-octicon,.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-git-fork-private:before,.octicon-lock:before,.octicon-mirror-private: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-file-add:before,.octicon-file-directory-create:before,.octicon-gist-new:before,.octicon-plus:before,.octicon-repo-create: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-add:before,.octicon-tag-remove:before,.octicon-tag:before{content:'\f015'}.octicon-telescope:before{content:'\f088'}.octicon-terminal:before{content:'\f0c8'}.octicon-three-bars:before{content:'\f05e'}.octicon-thumbsdown:before{content:'\f0db'}.octicon-thumbsup:before{content:'\f0da'}.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'}body{font-family:'Helvetica Neue',Arial,Helvetica,sans-serif,'微软雅黑';background-color:#FAFAFA}img{border-radius:3px}.full.height{padding:0;margin:0 0 -87px 0;min-height:100%}.following.bar{z-index:900;left:0;width:100%;padding:.7em 0}.following.bar.light{background-color:#fff;border-bottom:1px solid #DDD;box-shadow:0 2px 3px rgba(0,0,0,.04)}.following.bar .ui.secondary.menu{height:30px}.following.bar .column .menu{margin-top:0}.following.bar .brand{float:left;margin-right:5px}.following.bar .head.link.item{padding-right:0!important}.following.bar .head.link.item .dropdown.icon,.following.bar .head.link.item .menu .octicon{margin-right:5px}.following.bar .user.avatar{padding:0;margin-top:1px}.following.bar .searchbox{background-color:#f4f4f4!important}.following.bar .searchbox:focus{background-color:#e9e9e9!important}.following.bar .octicon{width:16px;opacity:1!important;text-align:center}.ui.left{float:left}.ui.right{float:right}footer{margin-top:40px!important;background-color:#fff;border-top:1px solid #d6d6d6;clear:both;width:100%;color:#888}footer .fa{width:16px;text-align:center;color:#428bca}footer .links>*{border-left:1px solid #d6d6d6;padding-left:8px;margin-left:5px}footer .links>:first-child{border-left:none}.hide{display:none}.center{text-align:center}.text-error{color:#d95c5c!important}.img-1{width:2px;height:2px}.img-2{width:4px;height:4px}.img-3{width:6px;height:6px}.img-4{width:8px;height:8px}.img-5{width:10px;height:10px}.img-6{width:12px;height:12px}.img-7{width:14px;height:14px}.img-8{width:16px;height:16px}.img-9{width:18px;height:18px}.img-10{width:20px;height:20px}.img-11{width:22px;height:22px}.img-12{width:24px;height:24px}.img-13{width:26px;height:26px}.img-14{width:28px;height:28px}.img-15{width:30px;height:30px}.img-16{width:32px;height:32px}.sr-only{position:absolute;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0,0,0,0);border:0}.sr-only-focusable:active,.sr-only-focusable:focus{position:static;width:auto;height:auto;margin:0;overflow:visible;clip:auto}.home{padding-bottom:120px}.home .logo{max-width:250px}.home .hero h1,.home .hero h2{font-family:'PT Sans Narrow',sans-serif}.home .hero h1{font-size:7em}.home .hero h2{font-size:4em}.home .hero .octicon{color:#d9453d;font-size:60px;margin-right:10px}.home .hero.header{font-size:24px}.home p.large{font-size:20px}.home .stackable{padding-top:30px}.home a{color:#d9453d}.install{padding-top:45px;padding-bottom:120px}.install .attached.header{background:#f0f0f0}.install form label{text-align:right;width:40%!important}.install form input{width:35%!important}.install form .field{text-align:left}.install form .field .help{margin-left:41%}.install form .field.optional .title{margin-left:38%}.install .ui .checkbox{margin-left:40%!important}.install .ui .checkbox label{width:auto!important}.form .help{color:#999;padding-top:.6em;padding-bottom:.6em;display:inline-block}.repository{padding-top:15px;padding-bottom:120px}.repository .head{height:75px;padding-top:20px;background-color:#FCFCFC}.repository .head .mega-octicon{width:30px}.repository .head .fork-flag,.repository .head a{font-weight:300}.repository .head .ui.label{margin-top:5px;vertical-align:top}.repository .head .fork-flag{margin-left:38px;display:block;font-size:11px;line-height:10px;white-space:nowrap}.repository .head .button{margin-left:10px}.repository .head .button i{margin-right:5px}.repository .head .num{font-weight:700}.repository .head .octicon{height:5px}.repository .navbar{height:60px;padding-top:20px}.repository .filter.menu .label.color{padding:0 8px}.repository .type.item .menu{right:0!important;left:auto!important}.repository .issue.list{list-style:none;font-size:13px;padding-top:60px}.repository .issue.list .item{padding-bottom:10px;border-bottom:1px dashed #AAA}.repository .issue.list .item .title{color:#444;font-size:15px;font-weight:700;margin:0 6px}.repository .issue.list .item .title:hover{color:#000}.repository .issue.list .item .comment{padding-right:10px;color:#666}.repository .issue.list .item .desc{padding-top:5px;color:#999} \ No newline at end of file +@font-face{font-family:octicons;src:url(../fonts/octicons.eot?#iefix&v=345f8bad9c5003db196d08f05e7f030fd2a32ff6)format('embedded-opentype'),url(../fonts/octicons.woff?v=345f8bad9c5003db196d08f05e7f030fd2a32ff6)format('woff'),url(../fonts/octicons.ttf?v=345f8bad9c5003db196d08f05e7f030fd2a32ff6)format('truetype'),url(../fonts/octicons.svg?v=345f8bad9c5003db196d08f05e7f030fd2a32ff6#octicons)format('svg');font-weight:400;font-style:normal}.mega-octicon,.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-git-fork-private:before,.octicon-lock:before,.octicon-mirror-private: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-file-add:before,.octicon-file-directory-create:before,.octicon-gist-new:before,.octicon-plus:before,.octicon-repo-create: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-add:before,.octicon-tag-remove:before,.octicon-tag:before{content:'\f015'}.octicon-telescope:before{content:'\f088'}.octicon-terminal:before{content:'\f0c8'}.octicon-three-bars:before{content:'\f05e'}.octicon-thumbsdown:before{content:'\f0db'}.octicon-thumbsup:before{content:'\f0da'}.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'}body{font-family:'Helvetica Neue',Arial,Helvetica,sans-serif,'微软雅黑';background-color:#FAFAFA}img{border-radius:3px}.full.height{padding:0;margin:0 0 -87px 0;min-height:100%}.following.bar{z-index:900;left:0;width:100%;padding:.7em 0}.following.bar.light{background-color:#fff;border-bottom:1px solid #DDD;box-shadow:0 2px 3px rgba(0,0,0,.04)}.following.bar .ui.secondary.menu{height:30px}.following.bar .column .menu{margin-top:0}.following.bar .brand{float:left;margin-right:5px}.following.bar .head.link.item{padding-right:0!important}.following.bar .head.link.item .dropdown.icon,.following.bar .head.link.item .menu .octicon{margin-right:5px}.following.bar .user.avatar{padding:0;margin-top:1px}.following.bar .searchbox{background-color:#f4f4f4!important}.following.bar .searchbox:focus{background-color:#e9e9e9!important}.following.bar .octicon{width:16px;opacity:1!important;text-align:center}.ui.left{float:left}.ui.right{float:right}footer{margin-top:40px!important;background-color:#fff;border-top:1px solid #d6d6d6;clear:both;width:100%;color:#888}footer .fa{width:16px;text-align:center;color:#428bca}footer .links>*{border-left:1px solid #d6d6d6;padding-left:8px;margin-left:5px}footer .links>:first-child{border-left:none}.hide{display:none}.center{text-align:center}.text-error{color:#d95c5c!important}.img-1{width:2px;height:2px}.img-2{width:4px;height:4px}.img-3{width:6px;height:6px}.img-4{width:8px;height:8px}.img-5{width:10px;height:10px}.img-6{width:12px;height:12px}.img-7{width:14px;height:14px}.img-8{width:16px;height:16px}.img-9{width:18px;height:18px}.img-10{width:20px;height:20px}.img-11{width:22px;height:22px}.img-12{width:24px;height:24px}.img-13{width:26px;height:26px}.img-14{width:28px;height:28px}.img-15{width:30px;height:30px}.img-16{width:32px;height:32px}.sr-only{position:absolute;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0,0,0,0);border:0}.sr-only-focusable:active,.sr-only-focusable:focus{position:static;width:auto;height:auto;margin:0;overflow:visible;clip:auto}.home{padding-bottom:120px}.home .logo{max-width:250px}.home .hero h1,.home .hero h2{font-family:'PT Sans Narrow',sans-serif}.home .hero h1{font-size:7em}.home .hero h2{font-size:4em}.home .hero .octicon{color:#d9453d;font-size:60px;margin-right:10px}.home .hero.header{font-size:24px}.home p.large{font-size:20px}.home .stackable{padding-top:30px}.home a{color:#d9453d}.install{padding-top:45px;padding-bottom:120px}.install .attached.header{background:#f0f0f0}.install form label{text-align:right;width:40%!important}.install form input{width:35%!important}.install form .field{text-align:left}.install form .field .help{margin-left:41%}.install form .field.optional .title{margin-left:38%}.install .ui .checkbox{margin-left:40%!important}.install .ui .checkbox label{width:auto!important}.form .help{color:#999;padding-top:.6em;padding-bottom:.6em;display:inline-block}.repository{padding-top:15px;padding-bottom:120px}.repository .head{height:75px;padding-top:20px;background-color:#FCFCFC}.repository .head .mega-octicon{width:30px}.repository .head .fork-flag,.repository .head a{font-weight:300}.repository .head .ui.label{margin-top:5px;vertical-align:top}.repository .head .fork-flag{margin-left:38px;display:block;font-size:11px;line-height:10px;white-space:nowrap}.repository .head .button{margin-left:10px}.repository .head .button i{margin-right:5px}.repository .head .num{font-weight:700}.repository .head .octicon{height:5px}.repository .navbar{height:60px;padding-top:20px}.repository .filter.menu .label.color{padding:0 8px}.repository .type.item .menu{right:0!important;left:auto!important}.repository .issue.list{list-style:none;font-size:13px;padding-top:45px}.repository .issue.list .item{padding-top:15px;padding-bottom:10px;border-bottom:1px dashed #AAA}.repository .issue.list .item .title{color:#444;font-size:15px;font-weight:700;margin:0 6px}.repository .issue.list .item .title:hover{color:#000}.repository .issue.list .item .comment{padding-right:10px;color:#666}.repository .issue.list .item .desc{padding-top:5px;color:#999}.repository .issue.list .page.buttons{padding-top:15px} \ No newline at end of file diff --git a/public/js/gogs.js b/public/js/gogs.js index 5b379c8a7..5f08b59cd 100644 --- a/public/js/gogs.js +++ b/public/js/gogs.js @@ -35,7 +35,7 @@ function initInstall() { $(document).ready(function () { // Semantic UI modules. $('.dropdown').dropdown(); - $('.link.dropdown').dropdown({ + $('.jump.dropdown').dropdown({ action: 'hide' }); $('.slide.up.dropdown').dropdown({ diff --git a/public/less/_repository.less b/public/less/_repository.less index 25eac3e37..a5ac3bbc3 100644 --- a/public/less/_repository.less +++ b/public/less/_repository.less @@ -52,8 +52,9 @@ .issue.list { list-style: none; font-size: 13px; - padding-top: 60px; + padding-top: 45px; .item { + padding-top: 15px; padding-bottom: 10px; border-bottom: 1px dashed #AAA; .title { @@ -74,5 +75,8 @@ color: #999; } } + .page.buttons { + padding-top: 15px; + } } } \ No newline at end of file diff --git a/routers/repo/issue.go b/routers/repo/issue.go index 6856824b4..c0894254f 100644 --- a/routers/repo/issue.go +++ b/routers/repo/issue.go @@ -43,8 +43,6 @@ var ( func Issues(ctx *middleware.Context) { ctx.Data["Title"] = ctx.Tr("repo.issues") ctx.Data["PageIsIssueList"] = true - ctx.Data["IsRepoToolbarIssues"] = true - ctx.Data["IsRepoToolbarIssuesList"] = true viewType := ctx.Query("type") types := []string{"assigned", "created_by", "mentioned"} @@ -54,6 +52,7 @@ func Issues(ctx *middleware.Context) { isShowClosed := ctx.Query("state") == "closed" + // Must sign in to see issues about you. if viewType != "all" && !ctx.IsSigned { ctx.SetCookie("redirect_to", "/"+url.QueryEscape(setting.AppSubUrl+ctx.Req.RequestURI), 0, setting.AppSubUrl) ctx.Redirect(setting.AppSubUrl + "/user/login") @@ -73,21 +72,23 @@ func Issues(ctx *middleware.Context) { filterMode = models.FM_MENTION } + repo := ctx.Repo.Repository + var mid int64 - midx, _ := com.StrTo(ctx.Query("milestone")).Int64() + midx := ctx.QueryInt64("milestone") if midx > 0 { - mile, err := models.GetMilestoneByIndex(ctx.Repo.Repository.Id, midx) + mile, err := models.GetMilestoneByIndex(repo.Id, midx) if err != nil { - ctx.Handle(500, "issue.Issues(GetMilestoneByIndex): %v", err) + ctx.Handle(500, "GetMilestoneByIndex: %v", err) return } mid = mile.Id } selectLabels := ctx.Query("labels") - labels, err := models.GetLabels(ctx.Repo.Repository.Id) + labels, err := models.GetLabels(repo.Id) if err != nil { - ctx.Handle(500, "issue.Issues(GetLabels): %v", err) + ctx.Handle(500, "GetLabels: %v", err) return } for _, l := range labels { @@ -95,20 +96,29 @@ func Issues(ctx *middleware.Context) { } ctx.Data["Labels"] = labels - page, _ := com.StrTo(ctx.Query("page")).Int() + page := ctx.QueryInt("page") + if page <= 1 { + page = 1 + } else { + ctx.Data["PreviousPage"] = page - 1 + } + if (!isShowClosed && repo.NumOpenIssues > setting.IssuePagingNum*page) || + (isShowClosed && repo.NumClosedIssues > setting.IssuePagingNum*page) { + ctx.Data["NextPage"] = page + 1 + } // Get issues. - issues, err := models.GetIssues(assigneeId, ctx.Repo.Repository.Id, posterId, mid, page, + issues, err := models.GetIssues(assigneeId, repo.Id, posterId, mid, page, isShowClosed, selectLabels, ctx.Query("sortType")) if err != nil { - ctx.Handle(500, "issue.Issues(GetIssues): %v", err) + ctx.Handle(500, "GetIssues: %v", err) return } // Get issue-user pairs. - pairs, err := models.GetIssueUserPairs(ctx.Repo.Repository.Id, posterId, isShowClosed) + pairs, err := models.GetIssueUserPairs(repo.Id, posterId, isShowClosed) if err != nil { - ctx.Handle(500, "issue.Issues(GetIssueUserPairs): %v", err) + ctx.Handle(500, "GetIssueUserPairs: %v", err) return } @@ -119,7 +129,7 @@ func Issues(ctx *middleware.Context) { return } - idx := models.PairsContains(pairs, issues[i].Id) + idx := models.PairsContains(pairs, issues[i].Id, ctx.User.Id) if filterMode == models.FM_MENTION && (idx == -1 || !pairs[idx].IsMentioned) { continue @@ -132,7 +142,7 @@ func Issues(ctx *middleware.Context) { } if err = issues[i].GetPoster(); err != nil { - ctx.Handle(500, "issue.Issues(GetPoster)", fmt.Errorf("[#%d]%v", issues[i].Id, err)) + ctx.Handle(500, "GetPoster", fmt.Errorf("[#%d]%v", issues[i].Id, err)) return } } @@ -141,9 +151,9 @@ func Issues(ctx *middleware.Context) { if ctx.User != nil { uid = ctx.User.Id } - issueStats := models.GetIssueStats(ctx.Repo.Repository.Id, uid, isShowClosed, filterMode) + issueStats := models.GetIssueStats(repo.Id, uid, isShowClosed, filterMode) ctx.Data["IssueStats"] = issueStats - ctx.Data["SelectLabels"], _ = com.StrTo(selectLabels).Int64() + ctx.Data["SelectLabels"] = com.StrTo(selectLabels).MustInt64() ctx.Data["ViewType"] = viewType ctx.Data["Issues"] = issues ctx.Data["IsShowClosed"] = isShowClosed diff --git a/templates/base/head.tmpl b/templates/base/head.tmpl index 7eff5f4c7..9739057d7 100644 --- a/templates/base/head.tmpl +++ b/templates/base/head.tmpl @@ -44,7 +44,7 @@ {{.SignedUser.Name}} - diff --git a/templates/repo/issue/milestone.tmpl b/templates/repo/issue/milestone.tmpl index a09b26001..6a9e5f379 100644 --- a/templates/repo/issue/milestone.tmpl +++ b/templates/repo/issue/milestone.tmpl @@ -6,11 +6,11 @@
@@ -22,13 +22,13 @@ {{.NumOpenIssues}} {{.NumClosedIssues}}

- Edit + Edit {{if .IsClosed}} - Open + Open {{else}} - Close + Close {{end}} - Delete + Delete Issues


diff --git a/templates/repo/issue/milestone_edit.tmpl b/templates/repo/issue/milestone_edit.tmpl index f3898fa80..dee36152e 100644 --- a/templates/repo/issue/milestone_edit.tmpl +++ b/templates/repo/issue/milestone_edit.tmpl @@ -4,7 +4,7 @@ {{template "repo/toolbar" .}}
-
+ {{.CsrfTokenHtml}} {{template "base/alert" .}}
diff --git a/templates/repo/issue/milestone_new.tmpl b/templates/repo/issue/milestone_new.tmpl index 2d9f60f49..f90772f6d 100644 --- a/templates/repo/issue/milestone_new.tmpl +++ b/templates/repo/issue/milestone_new.tmpl @@ -4,7 +4,7 @@ {{template "repo/toolbar" .}}
- + {{.CsrfTokenHtml}} {{template "base/alert" .}}
diff --git a/templates/repo/issue2/list.tmpl b/templates/repo/issue2/list.tmpl deleted file mode 100644 index dbe46a5ab..000000000 --- a/templates/repo/issue2/list.tmpl +++ /dev/null @@ -1,101 +0,0 @@ -{{template "ng/base/head" .}} -{{template "ng/base/header" .}} -
- {{template "repo/header_old" .}} -
- -
-
- - -
-
- -
- - 1 - 2 - 3 - -
-
-
-
-{{template "ng/base/footer" .}} \ No newline at end of file diff --git a/templates/repo/toolbar.tmpl b/templates/repo/toolbar.tmpl index f2254d21d..44df6815f 100644 --- a/templates/repo/toolbar.tmpl +++ b/templates/repo/toolbar.tmpl @@ -12,7 +12,7 @@ {{if .IsRepoToolbarIssues}}
  • {{if .IsRepoToolbarIssuesList}} - + {{end}}
  • {{end}}
  • {{if .Repository.NumTags}}{{.Repository.NumTags}} {{end}}Releases