From 75aff60c903c2c5ab92d75c9f067d6815f3daa2e Mon Sep 17 00:00:00 2001 From: Unknwon Date: Mon, 10 Aug 2015 21:47:23 +0800 Subject: [PATCH] finish create issue with milestone and assignee --- conf/locale/locale_en-US.ini | 2 + models/issue.go | 215 ++++++++++++++++++----------- models/repo.go | 39 +++++- models/user.go | 11 ++ modules/bindata/bindata.go | 4 +- public/css/gogs.min.css | 2 +- public/js/gogs.js | 53 ++++--- public/less/_repository.less | 6 + routers/repo/issue.go | 110 ++++----------- routers/user/home.go | 6 +- templates/repo/issue/list.tmpl | 11 +- templates/repo/issue/new_form.tmpl | 20 ++- templates/user/issues.tmpl | 2 +- 13 files changed, 275 insertions(+), 206 deletions(-) diff --git a/conf/locale/locale_en-US.ini b/conf/locale/locale_en-US.ini index ebbfd96d7..594e42265 100644 --- a/conf/locale/locale_en-US.ini +++ b/conf/locale/locale_en-US.ini @@ -376,6 +376,8 @@ issues.new.clear_milestone = Clear milestone issues.new.open_milestone = Open Milestones issues.new.closed_milestone = Closed Milestones issues.new.assignee = Assignee +issues.new.clear_assignee = Clear assignee +issues.new.no_assignee = No assignee issues.create = Create Issue issues.new_label = New Label issues.new_label_placeholder = Label name... diff --git a/models/issue.go b/models/issue.go index 3e88bc1ad..940f72bea 100644 --- a/models/issue.go +++ b/models/issue.go @@ -17,6 +17,7 @@ import ( "github.com/Unknwon/com" "github.com/go-xorm/xorm" + "github.com/gogits/gogs/modules/base" "github.com/gogits/gogs/modules/log" "github.com/gogits/gogs/modules/setting" ) @@ -59,10 +60,23 @@ func (i *Issue) AfterSet(colName string, _ xorm.Cell) { var err error switch colName { case "milestone_id": + if i.MilestoneID == 0 { + return + } + i.Milestone, err = GetMilestoneByID(i.MilestoneID) if err != nil { log.Error(3, "GetMilestoneById: %v", err) } + case "assignee_id": + if i.AssigneeID == 0 { + return + } + + i.Assignee, err = GetUserByID(i.AssigneeID) + if err != nil { + log.Error(3, "GetUserByID: %v", err) + } } } @@ -120,7 +134,7 @@ func (i *Issue) RemoveLabel(labelID int64) error { } func (i *Issue) GetAssignee() (err error) { - if i.AssigneeID == 0 { + if i.AssigneeID == 0 || i.Assignee != nil { return nil } @@ -145,7 +159,7 @@ func (i *Issue) AfterDelete() { } // CreateIssue creates new issue with labels for repository. -func NewIssue(issue *Issue, labelIDs []int64) (err error) { +func NewIssue(repo *Repository, issue *Issue, labelIDs []int64) (err error) { sess := x.NewSession() defer sessionRelease(sess) if err = sess.Begin(); err != nil { @@ -170,6 +184,10 @@ func NewIssue(issue *Issue, labelIDs []int64) (err error) { } } + if err = newIssueUsers(sess, repo, issue); err != nil { + return err + } + return sess.Commit() } @@ -221,7 +239,7 @@ func GetIssueById(id int64) (*Issue, error) { } // Issues returns a list of issues by given conditions. -func Issues(uid, assigneeID, repoID, posterID, milestoneID int64, page int, isClosed, isMention bool, labelIds, sortType string) ([]*Issue, error) { +func Issues(uid, assigneeID, repoID, posterID, milestoneID int64, page int, isClosed, isMention bool, labels, sortType string) ([]*Issue, error) { sess := x.Limit(setting.IssuePagingNum, (page-1)*setting.IssuePagingNum) if repoID > 0 { @@ -240,14 +258,6 @@ func Issues(uid, assigneeID, repoID, posterID, milestoneID int64, page int, isCl sess.And("issue.milestone_id=?", milestoneID) } - if len(labelIds) > 0 { - for _, label := range strings.Split(labelIds, ",") { - if com.StrTo(label).MustInt() > 0 { - sess.And("label_ids like ?", "%$"+label+"|%") - } - } - } - switch sortType { case "oldest": sess.Asc("created") @@ -265,10 +275,26 @@ func Issues(uid, assigneeID, repoID, posterID, milestoneID int64, page int, isCl sess.Desc("created") } + labelIDs := base.StringsToInt64s(strings.Split(labels, ",")) + if len(labelIDs) > 0 { + validJoin := false + queryStr := "issue.id=issue_label.issue_id" + for _, id := range labelIDs { + if id == 0 { + continue + } + validJoin = true + queryStr += " AND issue_label.label_id=" + com.ToStr(id) + } + if validJoin { + sess.Join("INNER", "issue_label", queryStr) + } + } + if isMention { - queryStr := "issue.id = issue_user.issue_id AND issue_user.is_mentioned=1" + queryStr := "issue.id=issue_user.issue_id AND issue_user.is_mentioned=1" if uid > 0 { - queryStr += " AND issue_user.uid = " + com.ToStr(uid) + queryStr += " AND issue_user.uid=" + com.ToStr(uid) } sess.Join("INNER", "issue_user", queryStr) } @@ -299,11 +325,11 @@ func GetIssueCountByPoster(uid, rid int64, isClosed bool) int64 { // IssueUser represents an issue-user relation. type IssueUser struct { - Id int64 - Uid int64 `xorm:"INDEX"` // User ID. - IssueId int64 - RepoId int64 `xorm:"INDEX"` - MilestoneId int64 + ID int64 `xorm:"pk autoincr"` + UID int64 `xorm:"uid INDEX"` // User ID. + IssueID int64 + RepoID int64 `xorm:"INDEX"` + MilestoneID int64 IsRead bool IsAssigned bool IsMentioned bool @@ -312,59 +338,62 @@ type IssueUser struct { } // FIXME: organization -// NewIssueUserPairs adds new issue-user pairs for new issue of repository. -func NewIssueUserPairs(repo *Repository, issue *Issue) error { - users, err := repo.GetCollaborators() +func newIssueUsers(e *xorm.Session, repo *Repository, issue *Issue) error { + users, err := repo.GetAssignees() if err != nil { return err } iu := &IssueUser{ - IssueId: issue.ID, - RepoId: repo.ID, + IssueID: issue.ID, + RepoID: repo.ID, } + // Poster can be anyone. isNeedAddPoster := true for _, u := range users { - iu.Id = 0 - iu.Uid = u.Id - iu.IsPoster = iu.Uid == issue.PosterID + iu.ID = 0 + iu.UID = u.Id + iu.IsPoster = iu.UID == issue.PosterID if isNeedAddPoster && iu.IsPoster { isNeedAddPoster = false } - iu.IsAssigned = iu.Uid == issue.AssigneeID - if _, err = x.Insert(iu); err != nil { + iu.IsAssigned = iu.UID == issue.AssigneeID + if _, err = e.Insert(iu); err != nil { return err } } if isNeedAddPoster { - iu.Id = 0 - iu.Uid = issue.PosterID + iu.ID = 0 + iu.UID = issue.PosterID iu.IsPoster = true - iu.IsAssigned = iu.Uid == issue.AssigneeID - if _, err = x.Insert(iu); err != nil { + if _, err = e.Insert(iu); err != nil { return err } } - - // Add owner's as well. - if repo.OwnerID != issue.PosterID { - iu.Id = 0 - iu.Uid = repo.OwnerID - iu.IsAssigned = iu.Uid == issue.AssigneeID - if _, err = x.Insert(iu); err != nil { - return err - } - } - return nil } +// NewIssueUsers adds new issue-user relations for new issue of repository. +func NewIssueUsers(repo *Repository, issue *Issue) (err error) { + sess := x.NewSession() + defer sessionRelease(sess) + if err = sess.Begin(); err != nil { + return err + } + + if err = newIssueUsers(sess, repo, issue); err != nil { + return err + } + + return sess.Commit() +} + // PairsContains returns true when pairs list contains given issue. func PairsContains(ius []*IssueUser, issueId, uid int64) int { for i := range ius { - if ius[i].IssueId == issueId && - ius[i].Uid == uid { + if ius[i].IssueID == issueId && + ius[i].UID == uid { return i } } @@ -374,7 +403,7 @@ func PairsContains(ius []*IssueUser, issueId, uid int64) int { // GetIssueUserPairs returns issue-user pairs by given repository and user. func GetIssueUserPairs(rid, uid int64, isClosed bool) ([]*IssueUser, error) { ius := make([]*IssueUser, 0, 10) - err := x.Where("is_closed=?", isClosed).Find(&ius, &IssueUser{RepoId: rid, Uid: uid}) + err := x.Where("is_closed=?", isClosed).Find(&ius, &IssueUser{RepoID: rid, UID: uid}) return ius, err } @@ -437,50 +466,58 @@ const ( FM_MENTION ) +func parseCountResult(results []map[string][]byte) int64 { + if len(results) == 0 { + return 0 + } + for _, result := range results[0] { + return com.StrTo(string(result)).MustInt64() + } + return 0 +} + // GetIssueStats returns issue statistic information by given conditions. func GetIssueStats(repoID, uid, labelID, milestoneID int64, isShowClosed bool, filterMode int) *IssueStats { stats := &IssueStats{} - issue := new(Issue) + // issue := new(Issue) - queryStr := "issue.repo_id=? AND issue.is_closed=?" + queryStr := "SELECT COUNT(*) FROM `issue` " if labelID > 0 { - queryStr += " AND issue.label_ids like '%$" + com.ToStr(labelID) + "|%'" + queryStr += "INNER JOIN `issue_label` ON `issue`.id=`issue_label`.issue_id AND `issue_label`.label_id=" + com.ToStr(labelID) } + + baseCond := " WHERE issue.repo_id=? AND issue.is_closed=?" if milestoneID > 0 { - queryStr += " AND milestone_id=" + com.ToStr(milestoneID) + baseCond += " AND issue.milestone_id=" + com.ToStr(milestoneID) } switch filterMode { case FM_ALL: - stats.OpenCount, _ = x.Where(queryStr, repoID, false).Count(issue) - stats.ClosedCount, _ = x.Where(queryStr, repoID, true).Count(issue) - return stats + resutls, _ := x.Query(queryStr+baseCond, repoID, false) + stats.OpenCount = parseCountResult(resutls) + resutls, _ = x.Query(queryStr+baseCond, repoID, true) + stats.ClosedCount = parseCountResult(resutls) case FM_ASSIGN: - queryStr += " AND assignee_id=?" - stats.OpenCount, _ = x.Where(queryStr, repoID, false, uid).Count(issue) - stats.ClosedCount, _ = x.Where(queryStr, repoID, true, uid).Count(issue) - return stats + baseCond += " AND assignee_id=?" + resutls, _ := x.Query(queryStr+baseCond, repoID, false, uid) + stats.OpenCount = parseCountResult(resutls) + resutls, _ = x.Query(queryStr+baseCond, repoID, true, uid) + stats.ClosedCount = parseCountResult(resutls) case FM_CREATE: - queryStr += " AND poster_id=?" - stats.OpenCount, _ = x.Where(queryStr, repoID, false, uid).Count(issue) - stats.ClosedCount, _ = x.Where(queryStr, repoID, true, uid).Count(issue) - return stats + baseCond += " AND poster_id=?" + resutls, _ := x.Query(queryStr+baseCond, repoID, false, uid) + stats.OpenCount = parseCountResult(resutls) + resutls, _ = x.Query(queryStr+baseCond, repoID, true, uid) + stats.ClosedCount = parseCountResult(resutls) case FM_MENTION: - queryStr += " AND uid=? AND is_mentioned=?" - if labelID > 0 { - stats.OpenCount, _ = x.Where(queryStr, repoID, false, uid, true). - Join("INNER", "issue", "issue.id = issue_id").Count(new(IssueUser)) - stats.ClosedCount, _ = x.Where(queryStr, repoID, true, uid, true). - Join("INNER", "issue", "issue.id = issue_id").Count(new(IssueUser)) - return stats - } - - queryStr = strings.Replace(queryStr, "issue.", "", 2) - stats.OpenCount, _ = x.Where(queryStr, repoID, false, uid, true).Count(new(IssueUser)) - stats.ClosedCount, _ = x.Where(queryStr, repoID, true, uid, true).Count(new(IssueUser)) - return stats + queryStr += " INNER JOIN `issue_user` ON `issue`.id=`issue_user`.issue_id" + baseCond += " AND `issue_user`.uid=? AND `issue_user`.is_mentioned=?" + resutls, _ := x.Query(queryStr+baseCond, repoID, false, uid, true) + stats.OpenCount = parseCountResult(resutls) + resutls, _ = x.Query(queryStr+baseCond, repoID, true, uid, true) + stats.ClosedCount = parseCountResult(resutls) } return stats } @@ -511,22 +548,34 @@ func UpdateIssueUserPairsByStatus(iid int64, isClosed bool) error { return err } -// UpdateIssueUserPairByAssignee updates issue-user pair for assigning. -func UpdateIssueUserPairByAssignee(aid, iid int64) error { - rawSql := "UPDATE `issue_user` SET is_assigned = ? WHERE issue_id = ?" - if _, err := x.Exec(rawSql, false, iid); err != nil { +func updateIssueUserByAssignee(e *xorm.Session, issueID, assigneeID int64) (err error) { + if _, err = e.Exec("UPDATE `issue_user` SET is_assigned=? WHERE issue_id=?", false, issueID); err != nil { return err } // Assignee ID equals to 0 means clear assignee. - if aid == 0 { + if assigneeID == 0 { return nil } - rawSql = "UPDATE `issue_user` SET is_assigned = ? WHERE uid = ? AND issue_id = ?" - _, err := x.Exec(rawSql, true, aid, iid) + _, err = e.Exec("UPDATE `issue_user` SET is_assigned=? WHERE uid=? AND issue_id=?", true, assigneeID, issueID) return err } +// UpdateIssueUserByAssignee updates issue-user relation for assignee. +func UpdateIssueUserByAssignee(issueID, assigneeID int64) (err error) { + sess := x.NewSession() + defer sessionRelease(sess) + if err = sess.Begin(); err != nil { + return err + } + + if err = updateIssueUserByAssignee(sess, issueID, assigneeID); err != nil { + return err + } + + return sess.Commit() +} + // UpdateIssueUserPairByRead updates issue-user pair for reading. func UpdateIssueUserPairByRead(uid, iid int64) error { rawSql := "UPDATE `issue_user` SET is_read = ? WHERE uid = ? AND issue_id = ?" @@ -537,7 +586,7 @@ func UpdateIssueUserPairByRead(uid, iid int64) error { // UpdateIssueUserPairsByMentions updates issue-user pairs by mentioning. func UpdateIssueUserPairsByMentions(uids []int64, iid int64) error { for _, uid := range uids { - iu := &IssueUser{Uid: uid, IssueId: iid} + iu := &IssueUser{UID: uid, IssueID: iid} has, err := x.Get(iu) if err != nil { return err @@ -545,7 +594,7 @@ func UpdateIssueUserPairsByMentions(uids []int64, iid int64) error { iu.IsMentioned = true if has { - _, err = x.Id(iu.Id).AllCols().Update(iu) + _, err = x.Id(iu.ID).AllCols().Update(iu) } else { _, err = x.Insert(iu) } diff --git a/models/repo.go b/models/repo.go index 7355b5e8d..1c4f09c4d 100644 --- a/models/repo.go +++ b/models/repo.go @@ -177,6 +177,43 @@ func (repo *Repository) GetOwner() (err error) { return repo.getOwner(x) } +// GetAssignees returns all users that have write access of repository. +func (repo *Repository) GetAssignees() (_ []*User, err error) { + if err = repo.GetOwner(); err != nil { + return nil, err + } + + accesses := make([]*Access, 0, 10) + if err = x.Where("repo_id=? AND mode>=?", repo.ID, ACCESS_MODE_WRITE).Find(&accesses); err != nil { + return nil, err + } + + users := make([]*User, 0, len(accesses)+1) // Just waste 1 unit does not matter. + if !repo.Owner.IsOrganization() { + users = append(users, repo.Owner) + } + + var u *User + for i := range accesses { + u, err = GetUserByID(accesses[i].UserID) + if err != nil { + return nil, err + } + users = append(users, u) + } + return users, nil +} + +// GetAssigneeByID returns the user that has write access of repository by given ID. +func (repo *Repository) GetAssigneeByID(userID int64) (*User, error) { + return GetAssigneeByID(repo, userID) +} + +// GetMilestoneByID returns the milestone belongs to repository by given ID. +func (repo *Repository) GetMilestoneByID(milestoneID int64) (*Milestone, error) { + return GetRepoMilestoneByID(repo.ID, milestoneID) +} + func (repo *Repository) GetMirror() (err error) { repo.Mirror, err = GetMirror(repo.ID) return err @@ -876,7 +913,7 @@ func DeleteRepository(uid, repoID int64, userName string) error { return err } else if _, err = sess.Delete(&Mirror{RepoID: repoID}); err != nil { return err - } else if _, err = sess.Delete(&IssueUser{RepoId: repoID}); err != nil { + } else if _, err = sess.Delete(&IssueUser{RepoID: repoID}); err != nil { return err } else if _, err = sess.Delete(&Milestone{RepoID: repoID}); err != nil { return err diff --git a/models/user.go b/models/user.go index ed64c3973..16caa18ba 100644 --- a/models/user.go +++ b/models/user.go @@ -602,6 +602,17 @@ func GetUserByID(id int64) (*User, error) { return getUserByID(x, id) } +// GetAssigneeByID returns the user with write access of repository by given ID. +func GetAssigneeByID(repo *Repository, userID int64) (*User, error) { + has, err := HasAccess(&User{Id: userID}, repo, ACCESS_MODE_WRITE) + if err != nil { + return nil, err + } else if !has { + return nil, ErrUserNotExist{userID, ""} + } + return GetUserByID(userID) +} + // GetUserByName returns user by given name. func GetUserByName(name string) (*User, error) { if len(name) == 0 { diff --git a/modules/bindata/bindata.go b/modules/bindata/bindata.go index 3bd8d83ea..fc1f2e9d8 100644 --- a/modules/bindata/bindata.go +++ b/modules/bindata/bindata.go @@ -772,7 +772,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\xae\xe6\x7f\x3e\x05\xad\x0d\xad\xec\x88\x56\x29\x6c\xc7\x5e\xc2\x21\xc9\xdb\xee\xb6\x2e\x73\xd4\x6a\x1d\x75\x6b\x66\x67\x15\x0a\x0e\xab\xc8\xae\xe2\xa8\x8a\x2c\xf3\xd2\xe5\x9e\x5f\xfb\x1a\xfb\x7a\xfb\x24\x0b\x7c\x00\xf2\x42\xb2\x5a\xf2\x9c\x13\x7b\xfe\x54\x25\x33\x91\x37\x24\x12\x09\x20\x91\x99\xf9\x7e\x9f\x15\x65\xb7\x4a\x9f\xa5\xa7\xe9\x3e\xaf\xea\x6d\xd9\x75\x69\x57\x6e\x6f\x1e\x6f\x9a\xae\x2f\x8b\xf4\x65\xd5\xd3\x77\x7b\x5b\xad\xca\x24\xd9\x34\xbb\x92\x40\x5f\xd1\x5f\x52\xe4\xdd\x66\xd9\xe4\x6d\x41\x11\xe7\x16\x4e\xca\xdf\xf7\xdb\xa6\x65\xa0\x5f\x25\x94\x6c\xca\xed\x9e\xf3\xd0\x5f\xd2\x55\xeb\x3a\xab\x6a\xfa\xbc\xa2\x50\xfa\xba\x4e\xba\x66\x55\xe5\xdb\x2c\x48\x40\x84\xa5\xff\x94\xfe\x50\x17\xe9\x55\x5f\xee\xd3\xa7\xdd\x2e\xdf\x6e\x9f\xe7\x1d\xb2\xf4\x65\x9a\xaf\x56\xcd\x50\xf7\x4f\x9f\x48\x82\x14\xde\x0c\xbd\x95\x7e\x39\xf4\x12\x37\xec\x2d\xea\xc3\x3e\x69\xcb\x75\x45\x1d\x6b\x29\xea\xbd\x06\x93\x43\xb9\xec\xaa\x9e\x1b\xfd\x17\x09\x25\xb7\x65\xdb\x55\x0d\xb7\xe7\xcf\x12\x4a\xf6\xf9\x9a\x01\xde\xd1\x5f\xd2\x97\xbb\xfd\x36\x47\x86\x6b\x0d\x26\xdb\xbc\x5e\x0f\x02\xf3\x46\x83\x49\x32\x10\xe6\xea\x1c\x38\xfb\xa0\xc1\xa4\xdc\xe5\xd5\x96\xf1\xf3\x98\x03\x54\x6e\xd7\x1d\x1a\x60\xf1\x9d\x06\xa9\x8d\x59\x7f\xb7\x2f\xd1\xc4\xc7\xd7\x14\x4a\x56\xf9\xbe\x5f\x6d\x72\x8a\x39\x93\x50\x42\x40\xfb\x86\xda\xda\xb4\x77\x80\xb3\x8f\xa4\x69\xd7\x79\x5d\xfd\x23\xef\xa5\xfd\x97\xc1\x67\xb2\xab\xda\xb6\xe1\xae\x5f\x20\x90\xd4\xe5\x21\xe3\x72\x28\xe6\x6d\x79\x08\x4b\xe1\x94\x5d\xb5\x6e\xa5\x97\x9c\x78\x81\x2f\x2e\x85\xd3\x6e\x9a\xf6\xb3\x26\xbc\xe0\xe0\x28\x2b\x35\x42\x53\xe3\xfa\xf3\x9a\xf0\xa2\xa9\x17\xf8\x88\x00\xba\x24\x2f\x76\x55\x9d\xed\xf3\xba\x64\x1c\x9d\xf2\x17\xe1\x85\xbe\x12\x1d\xee\xac\x2b\xfb\xbe\xaa\xd7\x1d\x27\x4b\x54\x7a\xa5\x51\x49\x90\xe6\xe2\xb8\x3d\x5d\x76\x53\x96\x85\xb4\xa8\x4b\x5f\x50\x38\xd9\x0f\xdb\x2d\xf5\xfd\xb7\xa1\xec\x7a\x86\x7f\x47\xdf\xd4\x0b\xf9\x4e\xaa\xae\xa3\x00\x45\xbf\x46\x20\xa1\x01\xa8\x57\x68\xd2\x19\x02\x49\xf2\xb1\x2b\xf3\x76\xb5\xf9\x94\xc8\x3f\x6a\xe4\xc0\x62\xb1\x38\x3a\x34\x4c\x0e\x4a\x0a\x52\x83\x55\x90\xac\x9a\x82\x3f\xce\xe8\x8f\x8a\xae\xea\xae\x27\x92\xfe\x94\x68\x80\xc1\x24\x24\x68\xec\xab\x7e\x5b\xfa\x48\xcc\x8f\x8e\xc7\x21\x7d\x51\xb5\x5d\xff\xb8\xaf\x88\xe4\xde\x0f\x75\xc2\xfd\x23\x72\xce\x8a\xa5\xcd\xf2\x97\x0d\x61\x07\xd1\x2d\xf5\xef\xe2\xee\xea\x5f\xdf\x9c\xa4\xef\x68\xaa\xaf\xdb\x92\xc2\x29\x95\x41\x7f\x94\xe7\xc7\x45\x42\xb9\xac\xa6\xf3\xbc\xcf\x97\x79\x57\x7a\xb4\x72\xa2\xd0\xa8\x4b\x03\xa5\x32\xdb\x00\x8b\xe8\xfa\xa8\xbf\x73\x74\x4e\x65\xe8\xec\x70\x65\xbc\xe5\x29\x42\xf1\xcc\x35\x90\xf9\xdd\xb6\xe4\x78\x2a\x2a\x7d\xfd\xf6\xed\xe5\xf9\x2f\x69\x59\xaf\xab\xba\x4c\x0f\x55\xbf\x49\x87\xfe\xe6\xbf\x67\xeb\xb2\x2e\x5b\x62\x22\xab\x2a\xa5\x99\xd1\x12\x11\xa4\x44\x9e\xd2\xb9\x45\xd2\x75\xdb\x6c\x27\xe8\xbd\xba\x7a\x93\x5e\x30\x8a\xf7\x79\xbf\x41\x43\xfa\x4d\xd2\xfd\xb6\x65\x14\xb9\x0a\xaf\x37\x65\x7a\x53\x51\xaf\x01\xd4\xdc\x18\x3e\xd2\x42\xdb\xb8\x48\xca\xb6\xcd\x68\xde\xf7\x77\x99\x66\xd6\xf2\xc6\x90\x52\x04\x91\x4e\xdd\xf4\xe9\xb2\x4c\x91\x67\x91\x24\xd6\x60\xc3\xee\xe9\x7e\xbf\xad\x56\x32\x63\x5f\x4a\x9a\x47\x34\xb3\x68\xc5\x52\x08\x07\x44\x59\x5a\x80\x2e\xe2\x7f\x77\xcd\xd0\xa6\x11\x1b\x40\xfe\x4d\x49\x7c\x79\x33\xd0\x94\xcb\x89\xa7\x6e\x9b\xa1\xf8\x06\x94\x6a\xad\xf7\x84\x9a\xbe\x6f\xa8\xc1\xc0\x8e\x03\xf0\x55\x9c\x12\xc5\xf1\xaa\xd0\x96\xbb\x86\xb8\x83\x23\xf6\x8a\x08\xea\x50\x51\x22\xf5\xb4\xcb\x6f\x69\xbe\xf5\x4d\xda\x6f\xaa\x2e\x2d\x88\xd8\x56\x5c\x30\x4d\x8d\x81\xf8\xb1\x90\x05\x11\xa8\x90\x86\xc5\xc5\x63\x00\xa8\xdd\x40\xd4\xb4\xa1\xc2\x98\xdb\xf3\xd2\x44\x45\xce\xb5\x13\x5d\xa2\x72\x40\xdf\x44\xb9\x0d\xf1\x56\xe6\x7e\xe7\x08\xe8\x77\x58\x3e\xb5\x2a\xbf\xb9\xa1\x56\x75\x44\x15\xaf\xd2\xd5\xb6\x21\x92\xfa\xf0\xfe\x0d\x65\xde\xf4\xfd\x3e\xdb\x37\x2d\xc8\xf8\xfa\xfa\x1d\x4d\x8f\xb6\xf7\xb1\x01\xae\x19\xa6\x1e\x76\x4b\xfa\x3a\x6c\x2a\x62\x02\x79\x30\x40\x40\xc5\x96\x17\x98\x3a\x6d\xea\x05\xc6\x6a\x68\xb7\xa3\x61\xa4\x2a\x2d\xe5\x48\xf3\xb8\x09\x4f\xf8\xe7\xca\xb7\x12\xdd\xed\x68\x15\x3e\x60\x50\xa9\xab\x25\x56\x13\xa2\xad\x66\xcf\xe5\x06\xc4\x75\xa9\x11\x9e\xa2\xb0\x02\xb9\x74\x59\x87\x28\x15\x6b\x7c\xc0\x4b\x77\xd4\x61\x9d\xcd\x57\x17\x84\x06\x4c\x69\xc4\xde\xb4\xcd\x8e\x62\x5f\xd0\x9f\x8f\xf0\xcd\xbf\xe0\xf2\x00\x93\x17\x05\xb1\x99\xee\x24\x7d\xff\xe2\x2c\xfd\x2f\x3f\xfe\xf0\xc3\x22\x7d\xdd\xf3\x84\x60\x1a\xf9\x3b\x8f\x2d\x05\x65\x41\x74\xa0\x34\x73\x7b\x1a\xfe\x07\x4c\xe0\x0f\xd2\xa7\x48\xfd\x1f\xe5\xef\x39\xad\xb3\xe5\x62\xd5\xec\x9e\xf3\xe4\xde\xe5\xfd\x22\xe1\x14\xa2\x1a\x25\xa7\xab\xb2\x2e\x28\xa0\xcb\xaa\xa6\x05\x5c\x47\xd3\x83\x45\x56\x56\xff\x6c\xd5\xd4\x37\x55\xcb\x1d\xfa\xb5\xce\x97\x84\x13\x93\x0b\x88\x1d\x23\xc5\xd6\x2e\x42\x1a\x4d\xe4\xea\xe6\xce\x83\xa2\xab\x6f\x39\x52\x07\x34\x61\x59\x89\x0a\x55\x91\xc9\x61\xf9\x0a\xd1\x18\xb7\x4b\xea\x5e\x6b\xf8\xee\x3c\xc2\x9b\x9b\x9b\x2d\x31\x36\x63\x56\x5a\xc3\xa5\xc4\x0a\xdf\x0a\x41\x88\x18\xf7\x90\x6c\xce\xab\x0e\x90\x67\xe7\x6f\xd3\xf2\x96\xa8\x8d\xc8\x61\xdf\x36\xc5\xb0\x02\x85\x31\xec\x49\xca\xcb\x04\xe1\x97\x38\xc3\x4a\xd8\x5b\x30\x57\xb9\x69\xcc\x10\x56\x04\x44\x53\xb4\x90\xf2\x32\x41\x50\x6b\x82\x84\x55\x73\xc5\xc2\x61\x98\x36\x9b\x61\xd2\x3a\x8c\x52\x37\xce\x4b\xc3\x5d\x6f\xef\x52\xac\xfa\xa0\x8b\x55\x5b\x06\xb2\x5d\xb7\x48\x74\xad\x32\x09\x31\xbb\xad\x48\xa8\x08\x86\x0a\xa9\x26\x2e\x32\x7b\xf8\x33\x03\xb0\x98\xd6\xcd\xe6\x75\x0d\xbb\xe4\x8a\x39\x85\xfa\x4e\x95\x73\xfb\x3a\x34\x01\x35\xb0\xb8\x47\xc4\x78\x5b\x81\xd3\x28\xb2\xd0\x56\xc2\x18\xaa\xa6\xaa\xba\xb2\x44\x09\x94\xff\x09\x95\x89\x3c\x0b\x15\x61\x54\x14\xb1\x75\xf7\xaf\xcd\x90\x16\x4d\xca\x0b\x01\xd8\x19\xe5\xb6\xae\xd6\xda\x7d\xed\x73\xda\x56\xeb\x0d\xf1\x95\xe6\x70\x22\x48\x3b\x6c\x9a\x92\x69\xe7\xf5\xf9\xb3\xef\xa5\x1d\x6b\x66\x6e\x2e\x13\xb3\xc5\x7c\xe8\x1b\xa6\x53\x1d\x42\x69\x82\x5b\x5e\x00\x39\x11\x96\x04\x68\x2c\x9e\x9a\x00\x36\x5d\xad\x75\x9e\x84\x69\x3a\x41\x3c\x8c\xe4\x1e\x89\xb8\x2a\xc5\x64\xeb\x06\x92\x99\x49\x2d\xcc\xaa\x49\x94\xee\xfa\x6c\x5d\xf5\xd9\x0d\x4f\x58\x2e\xf3\x05\xe7\xe5\x95\x83\x52\xd2\x47\x94\xf4\x28\xa5\x59\x4f\x92\x63\xf1\x53\xfa\xf0\x56\x97\xeb\x1f\x79\x26\x66\xf9\x2d\xc1\x62\x30\x80\xe0\x96\x28\x5c\xa4\x05\x13\xdf\x8b\x86\xe8\x9c\x71\xde\x0d\x7b\x70\x74\x5d\xa1\x4f\xd2\xbd\x00\x16\xcd\xa1\xde\x36\x79\x01\x96\x43\xb3\xab\x82\xf2\xb1\xac\xea\x9c\x56\x17\x2b\x05\xac\xec\x21\x51\xc3\xdb\xcb\x6b\x00\xae\x9b\xe5\x50\x6d\x0b\x03\x58\x50\x0f\x6f\xf3\x6d\x55\xb0\x9c\xa5\xe3\x1e\xca\x34\x16\x55\x49\x5b\x56\x4d\xcb\xcb\x21\x7a\x63\x19\x8f\xac\xc3\x2d\xaf\x6f\x88\xa6\xbc\x0a\x8b\x7c\x6e\xc9\x64\x34\xd0\xc0\x43\x00\xe5\x05\x15\x14\x53\x75\xf5\xa3\x1e\x2d\x5d\x0d\x54\x17\x0d\x3a\x47\x53\xc6\x2e\x7d\xfc\x9c\x7e\x13\x5e\x9e\x85\xef\xad\xa7\x88\xe7\xc4\x54\x12\x07\x99\xa5\x51\x53\x23\xf2\x76\xd4\x65\xc4\x1b\xf4\x35\x6c\xaf\x91\x40\x37\x08\xbd\xb2\xa6\xb5\xa5\x61\x2d\xbf\xa1\xc0\x23\x9a\xc0\xeb\x2d\x06\x21\x87\xf4\x42\x62\x5c\x43\x78\x63\x02\x39\x91\xe9\x72\x43\x5d\x63\xde\xd9\xe7\x9f\xa9\x6d\x79\x4b\x42\x58\xf2\x91\xb5\xd1\x4f\xc9\x20\x02\x50\xb3\x2d\x9c\xb0\x09\x9a\x6e\xda\xb1\x8a\xe5\x81\x1c\xbd\x76\x24\x45\xae\x36\x99\xd3\x65\x19\x29\x7d\xf9\x3b\xd6\x3c\x24\x79\xd5\x96\x89\x9d\x93\x92\xdd\x1d\x86\x8b\x3b\x71\x71\xe7\x47\x8b\xc4\x1f\x9a\x22\x24\xa2\x2f\x1b\xc6\xda\x6d\xe9\xa0\xce\xc2\xd8\x38\x03\x95\x45\x82\x9a\x16\x15\x6b\x42\x94\x24\xea\x9a\xa6\x8a\xca\x46\xaa\xc8\x47\xd5\xb1\x3f\x25\x56\x41\x54\x64\xf2\x91\x98\x01\xe9\x25\xc2\x5e\x32\xd6\xc6\x6c\x70\xa8\x29\xc2\x73\x58\x31\x53\x7e\xe0\xd7\xc1\x4d\xb9\xe7\x25\x73\xd7\x61\x54\xb7\x04\x59\xdc\xa9\xec\xe5\xc6\xf7\x67\xe1\xb4\x34\xe0\xc4\x9f\xbe\x31\xed\xfd\x0f\x16\xf1\x4b\x45\x23\x89\xfc\xf1\xca\xc1\xeb\x35\x4d\xb5\x3d\xb0\x4f\x93\xe4\xee\x24\x8d\xd6\xa0\x4d\xde\x11\xf7\xa5\x05\x4e\xb3\x15\x0b\xd3\x0e\x78\xd4\xf2\x95\x90\x3c\x34\x79\x10\xa9\xe4\x6c\xda\xf1\x92\xc6\x2d\x14\x06\xa5\xb5\xb8\x05\x1f\xcb\x79\xb8\xea\xcf\xd4\x49\x08\xdb\x95\x2c\xf3\x65\x3b\xd1\xd0\xe5\x2b\xbd\x28\x13\x12\x4c\xd6\x34\x1f\x8d\xde\x9e\xb1\x4a\xb6\x86\x84\xaa\xe4\xc6\x00\x65\x1f\x72\x50\x85\xb0\x98\x9f\xcd\x62\x41\x13\xfb\x00\x7d\x95\xa6\xe6\x04\xfd\xb4\xd6\x50\xf2\xc2\x38\xb2\x2c\xb8\x90\x4f\x3a\x9a\xec\x1e\x89\xa7\x29\x8d\x7e\x1a\x42\xa9\x9c\xe8\xbb\xc5\x19\x78\xd2\x3f\x5d\x3e\x7f\xd8\x3d\x7d\xb2\x7c\xee\x58\xe3\x6a\x53\xae\x3e\x8b\x2e\x51\xd5\xcb\xe6\x77\x28\x5c\x34\xf0\x8c\xe3\x9a\xa7\xc8\xc3\x22\xdd\x50\x2a\x64\x72\x9a\xca\x94\x8d\x10\xcf\xa9\xd1\xa0\x51\x63\x78\xc6\x2f\xcc\xf6\xe3\x16\x07\x23\x24\xca\x8d\x4a\xa4\x65\xa4\xe6\x63\xee\x70\x54\x40\xb7\xa7\x1c\xcb\x94\x0b\x36\xef\x49\x17\xfd\xdd\x56\xbb\xaa\x9f\x90\x0e\xf3\x91\x5c\x49\x50\xf5\x7c\xc3\x25\xca\x02\x36\xd0\x16\xe2\xc6\x54\x0c\xad\x9b\x46\x4e\x87\x9c\xd4\x9b\x1f\x53\x22\xa1\x81\x56\x21\xee\x13\x35\x93\xd8\x71\xce\x0b\x2f\x29\x08\x79\x97\x0d\xb5\xa2\xb5\x2c\x8c\x98\x5e\x55\x58\x24\xb8\x5e\x23\xf9\x00\xca\x30\xaf\x72\x6e\xfa\xad\xc3\xf8\x77\x24\x14\xdf\xb8\x6c\xcc\xb9\xb9\x41\x15\xcb\x64\xf9\xec\xe0\x11\x67\xab\x4b\x51\xaf\x80\x01\x86\xe3\x81\x26\xe5\xc0\x8f\x1e\x69\x18\x9f\x29\x06\x03\xb2\x1c\xfa\xbe\x61\x99\x7b\xcb\x54\x23\x79\xac\xd5\x67\x00\x84\x1a\xe1\xcb\xc3\x80\x84\x78\x92\xb1\x29\x4d\x06\xce\xbc\x15\x4e\xb5\x95\x51\xef\x74\xa9\x73\x60\x85\xa8\xeb\x79\x7d\x67\xa4\x4c\x04\xc1\xad\xe0\x0a\xfb\xf9\xb6\x7c\xdb\x96\xdf\xf9\xd6\xb8\x39\x83\x1c\xd6\x22\xc9\x1e\xcc\xa7\xf7\x48\x05\x95\xb8\x59\x67\x2b\x97\x1a\x59\x3c\x7d\xb4\x31\x7a\x91\xce\x33\x83\x18\x2c\x89\x8d\x05\x10\x4d\xbd\x40\xee\xc5\xa8\x2e\xaf\xee\x4c\x31\xd8\xc7\x4d\xf6\x0b\x50\xdf\x34\x59\xb7\x11\xd5\xd2\x9a\x97\x6e\xcb\x7a\x1d\x99\x09\x60\x83\x05\xd1\xfd\x57\x5e\xe6\x48\x80\xcf\xb7\x9f\x92\x3b\xd8\xa3\xfe\x4a\x1c\xbe\x86\xbd\xae\x49\x28\x41\x94\x91\x0b\x04\x08\x94\x35\xa3\x4f\x09\x2f\x81\x6f\x47\x62\x1d\x2f\x11\x1a\x17\xc8\x17\x48\xfa\x35\x92\xd6\x6c\x08\x93\x77\x33\x22\xe0\xfb\xd2\xdb\x25\x11\x72\x5d\x24\x25\xfa\xda\x54\x1d\xd2\xa7\x3f\x97\x5a\xf8\x2b\x52\x9b\xbb\x0f\x50\x7b\x45\x87\x65\x85\xf7\x5d\x7e\xc7\x42\x97\x44\xeb\x07\x12\xae\xcb\x7c\xa7\xad\xe4\xa0\x14\x71\x4a\xcb\x99\x46\x72\x90\x56\xb9\xc0\xaa\x91\x40\xfc\xb0\x2e\x88\x2c\xa2\xcb\xbe\x13\xff\x4b\x35\x7a\xfe\x6d\x62\x8a\xf9\x5b\x92\x6f\xf7\x9b\x1c\xeb\x7f\x00\x06\xab\x03\x01\x61\xe0\x53\x80\x80\x16\x86\x5d\xd9\x56\x2b\x0e\x72\x86\x6f\x1f\x67\xdf\xc1\xe0\x44\x13\x85\x04\xc1\xb8\xb0\x82\x26\xc9\x3f\x55\x20\x87\x59\x48\x0c\xcb\xed\xaa\x7f\x58\x2f\xa2\xe2\x38\x9e\x78\x0e\x41\x40\x24\xf3\x50\x0e\x08\x0b\x23\x8b\x67\x7d\xca\x7c\xa1\x67\x11\x30\x2a\x7a\x97\xff\xfe\xa5\x8c\xbb\x66\x26\x9f\xb0\x02\x9f\xc9\x26\xbc\x76\x31\x66\x07\x04\xcf\xf6\x8d\xa3\xd0\x34\xf4\x0c\x52\x7f\xa6\x55\xad\x76\x60\x1f\xe4\x3b\xc5\xf7\x4f\x66\x02\xa7\x25\x44\x05\xe8\xd4\x19\xc3\x69\x71\x2e\x98\x6f\x42\x10\x5e\xf8\xe9\x16\x0a\xc7\x8e\x9c\x59\x8c\x34\x95\xdf\x31\x0e\x92\x28\x45\x4f\x20\x92\x5a\x78\xbb\x7d\xc6\x6b\x64\xc6\x42\x67\x1d\x8a\x96\x6e\xf5\xb4\xf5\x05\x10\x62\xf7\xcd\xa6\xf9\x46\x13\xee\x68\x76\x12\x05\x66\x72\x5f\x4e\x0d\x79\x47\xf2\xf7\x34\x65\x66\x0a\x70\x33\xe9\x68\x46\x19\x4c\x64\xa2\x9e\x17\x13\x5e\x30\xcd\xc8\x60\xa4\xf6\x6c\xb7\xe5\x9a\x4d\x4d\x56\x71\x54\x9b\x92\x10\x2d\x06\x02\x16\x12\x90\xc7\xb0\x1b\xac\x70\x5c\x43\x21\xde\x8d\x51\xac\x3e\x51\xab\x49\x1c\xa7\x20\xe7\x0c\x94\x28\x6d\x86\xae\xe4\x3b\xd6\x17\xba\x81\x59\x33\xeb\x16\x22\x9d\xc4\xa3\xc1\x0b\x2f\x8a\x2a\x51\xc5\xf1\xe2\x89\x16\x59\xe1\xfa\x52\xf9\x00\xfb\x83\x45\x87\xea\xf6\xb4\x60\x2d\xdc\x01\x1d\x2b\xd6\x29\x84\xe5\xef\x15\xcc\x76\x2f\x2b\x36\x07\x41\x25\x74\x9a\x30\xd2\x16\xc9\x96\x98\x01\xab\x1e\xd2\x2b\x91\x63\x9b\x5b\xd6\xdc\xb8\x3e\x4e\x95\x7c\x62\xc6\xd3\x4e\xf1\x38\xab\x72\x49\xca\x5c\x73\x28\x8b\x13\x5a\xe2\x39\x07\xb5\x13\x6c\x23\xdf\x1e\xf2\xbb\x0e\x36\x12\xe3\x38\x6c\xb2\x94\xec\xcc\x4e\x48\x00\x58\xa3\x55\xa1\x7d\x9a\x66\x9c\x61\xa2\x23\xde\xc9\x8b\x87\x5b\xa6\x0f\x50\x0f\xc1\x2d\xd4\xea\x42\x5a\x37\x2f\x7b\x58\x62\x75\xad\x61\xd5\x96\x15\x41\x96\xf1\x25\x39\x28\x08\x5b\x1e\xca\xf9\x67\xf2\x9e\xb0\x78\x44\xd5\xb0\xb0\x42\xfc\x58\x70\x4d\xf2\x1f\x61\x16\x4d\x0a\x6c\x05\x03\x95\xff\x58\xe4\xe2\x8a\x70\xc8\x7a\x96\x57\x9f\x79\x6d\xa2\x51\x31\xc3\xae\xc4\x43\xf9\x4d\xba\x9e\xa6\x00\x63\xda\x36\xdb\xfe\x2a\xf2\x95\xaa\xcc\x9c\x8a\x29\x06\x34\x75\x9b\x6a\x9f\x36\x30\x16\x86\x28\xf4\x64\x1b\x88\x98\x84\x8d\xa2\x84\xdc\xcd\x56\xd3\x36\xaf\xbb\x9b\x12\xe6\xd3\x5d\x7a\xc3\x3b\x41\x0b\xad\x9a\x25\x56\xd9\x74\x3b\x52\xb3\xe8\x30\xa8\x3a\x5c\x2d\x30\x76\xc1\x40\xc5\x55\x13\xcc\x2d\x6a\xd6\x36\x00\xab\xbe\xa4\xce\xda\xc0\x64\x36\x41\x01\xa4\xc6\x68\x93\xc2\x5a\x73\x5b\x86\x88\xb8\xf9\x67\x7b\x1e\x60\x5d\x2d\xc4\x62\x56\x8f\x87\x49\x2a\x85\xb5\x02\x7b\x4c\xcb\xbb\xb8\xf7\x9c\xd5\x51\x00\xef\x78\xdc\x96\x5a\x0b\x4f\x0c\x9e\x2b\xa3\x02\x61\xa5\xf0\xba\x42\xd2\xe7\x50\xf9\x96\xd4\xc4\xd5\x26\x9a\x9d\xd7\x48\x49\x25\x65\x32\x41\x93\x8f\x5c\x35\xa9\xf1\x9b\xbc\x5e\x97\x6c\xea\xa2\x92\x78\xc9\xc3\xb7\x4a\xe8\x12\x49\x0d\x5e\xb7\x12\x66\x03\xb9\x65\x59\xd1\x84\x6c\x76\xf7\xe6\xac\x6a\x33\xd8\x74\xc9\xdf\x1b\x92\x21\x60\xe9\xfd\x13\x85\x58\xfa\xad\x93\x68\x6f\x67\x64\x67\x80\x7a\x50\xf5\x77\xd8\x74\x5a\x92\x0c\x2c\x4a\x1a\xc5\x90\x9a\x0b\xee\x00\xcb\xc5\x0b\x0b\xd3\x78\xe4\xcc\xf4\x78\x6a\x4b\x48\xe1\xc4\x8c\xf4\xc2\xc2\x09\x6b\xc9\xbb\x05\x16\x07\x16\xa6\x61\x9c\x0e\x96\x84\x47\x0f\xbb\x47\x3c\x60\x96\xb6\x08\xe0\xf7\x79\x4f\x6c\xb1\x16\x15\x45\x38\x54\x98\x55\x93\x5d\x11\xe0\x2a\x02\xb6\xc0\x8e\xae\xa0\xe2\x53\x42\xba\x24\xb6\x00\xa9\x6b\x12\x9a\xdd\xbe\x54\x16\xd3\xa9\xcc\xfb\x2f\x14\x54\x8b\x48\xea\xfc\x18\x54\x55\xc5\x36\x9e\x6d\xfa\x74\xf1\x1e\x50\x97\xa8\x09\x28\xb6\xff\x28\x79\x3f\x4b\xcf\x25\x60\x4a\xef\x50\xa1\x4f\x55\x91\x24\x7b\xe0\x3d\x0b\x5a\x2b\x03\xe1\x1a\x2d\xff\x81\x0d\xba\x1d\xaf\xec\x84\x05\x29\x05\x84\x6b\x5b\x02\x90\x02\x78\x0f\x35\x50\xd8\xd8\xb8\x0a\x4d\xae\x0e\xb6\x3b\x48\xdf\xe5\x7c\x0c\x76\x28\x97\x29\x9b\x3b\x89\x70\x48\x2f\xd2\x8e\xee\x72\x52\xa9\x6e\xab\xdc\x59\x66\x68\xb4\x78\xe3\x5d\x57\xd1\x17\xbc\xe9\x8e\x9d\xcc\xa9\x0b\x06\xef\x47\xe8\xd6\xc3\x1b\x0d\x26\xc3\xbe\x60\x9b\x96\xef\xf0\x07\x44\xb8\x0e\xc7\xe9\x81\xb5\x11\x5d\xb7\x6c\x4e\x9a\x11\xf0\x22\x55\x38\x6e\xd9\xdd\xc2\xa6\xcf\x8c\xef\x86\x4e\xa1\x62\x0c\x12\x1a\xf9\x25\x49\x95\x56\x03\x58\x08\xef\x01\x7a\x65\x5f\x0f\x08\xa1\xb5\x32\xdd\x34\x87\x74\x5b\xd5\x9f\x3b\xc5\xaf\xb3\x87\x98\x9e\x9c\x9e\x23\x82\x80\xc5\x52\xc3\x62\x55\x55\x0f\xe5\xcf\x89\x85\xc4\x10\x8f\xe0\xd4\x4f\xa1\x94\x55\x71\xcc\x0c\x74\xff\xe4\x0c\xd1\xe9\x29\xa2\x67\x61\xbd\x9e\xab\x59\xb0\xa3\xcb\xec\x57\x37\x76\x6e\x4a\x16\xb0\xc1\x0e\x5f\x2a\x17\x22\xfc\x34\x4d\xa7\xb6\x47\xcf\x7e\x38\x0e\x86\x0a\x85\xd2\xd1\x72\x10\x3a\x98\xd2\x18\xdb\xa7\x20\x28\x56\x0f\x49\x58\xd2\xf6\x60\x6e\x67\xd5\x4e\x7c\x6d\x3e\x68\xaa\x6c\xd9\x3b\xbd\x02\xc9\x0b\xd2\x94\x47\x9d\x09\x77\x0c\xde\x12\x2e\xa5\xfb\xc6\x47\x2d\xf1\xc4\xc4\x05\x41\x08\x16\xfb\xa8\xb1\x63\xca\xd2\x02\xcc\xf8\xfd\x05\x02\x33\xf2\x09\x37\x52\x84\x37\x3b\xd6\xd2\x6c\x23\xa1\xf0\x4c\xcd\xf8\x2e\x9d\x31\x1b\xa4\xbf\xc5\x96\xd7\xd8\xda\x10\x69\x4a\x5a\xc2\x51\x69\x7a\xd4\xa6\xc9\xdc\xb1\x7c\x07\xea\x5b\xd8\x1d\x23\xf8\x85\x50\x7f\x0e\xcb\xb0\xec\x8a\x0d\x9d\xc8\x93\x5c\x15\xb6\xd4\xa4\x08\x42\x00\x14\x8e\xce\xeb\x19\xa7\xc2\x8d\xd8\x20\x2e\x1e\x42\x0e\x40\x9d\x84\x62\x7d\xb2\xb4\x3d\xec\x90\xb1\xed\x5b\x1a\x74\x5a\x78\x47\x96\xa8\x09\x4b\x8b\xd8\x17\xb8\x57\x83\x0d\x59\xcf\xb5\x48\x83\xd4\xb2\x98\xff\x23\x64\x31\xde\x7a\x59\xb2\x75\xcb\x2a\x55\x66\xed\x52\x85\x65\x27\xd4\x06\xcc\x81\xd2\x99\x27\x0a\x60\x22\x6e\x22\xc0\x42\x10\xb3\x84\x5a\x74\x16\xd9\x79\x61\xb1\xfd\x0f\xb3\xed\x46\x15\x3a\xdb\xae\x6f\xea\x88\x6c\xb8\x8d\xa3\x15\x67\x42\x40\x94\x80\xf5\x57\x87\x3e\x58\x55\x75\xf0\xdd\xe2\xca\xd5\x88\x4c\xcf\x68\xa2\x28\x2c\xc1\x4a\x04\xe0\xb0\x2c\xe0\xc1\xe9\x02\x8e\x3b\x22\xe0\x77\x13\x33\x64\xcc\x5f\x4f\xa1\xc1\x10\x56\x04\x96\xe5\x01\x5e\xd0\x44\xfa\x53\x8d\x68\xc7\x88\x90\x6d\x57\xe7\x87\x72\x27\x3b\x8e\x5e\x24\x3a\x51\xb5\x61\x53\xad\x37\xd4\xaf\x6a\xc7\x5b\x8e\xe0\xda\xb6\xaf\xe5\xb5\x3a\xfe\xa2\x89\xd7\xac\x6b\xb6\xe1\x70\x0d\x0b\x74\xc6\x71\xdb\xa7\x5d\xdf\x36\xf5\xfa\xf9\x79\xc3\xea\x16\x5b\x42\x78\xa9\xf8\xf9\xe9\x13\x8d\x27\x96\xc1\x63\xc8\xfe\x8e\x2f\xab\xfe\xd5\xb0\x7c\xd4\xa5\x6b\x92\x0d\xb0\x80\x3c\xcd\xd3\x4d\x5b\xde\x3c\x7b\xf0\xb0\x7b\xf0\x5c\xf7\x99\xc5\x2b\xe8\x50\x3b\xb4\x3c\x7d\x92\x3f\x67\xe9\xb9\x6b\xb6\x24\xd4\xc6\x59\x9a\xdd\x4e\xc6\x97\xd8\xdf\x4e\x20\xd1\x7e\x6c\x4d\x97\x35\x30\x57\xb6\x8a\x1f\x2a\x70\xe1\x68\xdd\x8f\x8f\x0e\x9b\x89\x49\x91\x7d\x41\x05\x15\x06\xc6\x8e\x5b\xdd\x07\x4c\x93\x6d\x0b\xa9\xcb\x86\x05\x76\x9a\x0d\x03\xc9\xe6\x1a\x6f\xda\x30\xe3\x04\x24\x68\x94\x61\xf9\x29\x2b\xb5\x44\x24\x0d\x8e\xb3\x3a\x65\xe1\xa4\x90\x91\x56\x40\xbf\xcc\x53\xcd\x94\x09\x81\xd1\x1b\x41\x98\x60\x23\x1a\xfe\xc6\x18\x80\xf4\x3e\x98\xfe\x90\x5f\x4e\x91\x81\xe4\x17\x68\xdd\xda\x97\x37\xaa\x63\x23\x81\x16\xaa\x40\x9e\x7e\xdb\xe8\x9e\x44\x6a\x91\x68\x35\x09\xd0\x7d\x19\x91\x3b\x57\x47\x7f\x28\x85\x68\x13\x6a\xfb\x7f\x4b\x0b\x52\xc1\xfd\x74\x32\x81\x54\x27\xd3\xa9\x9f\x0b\x63\x11\x55\x77\xf3\x8e\xce\xa7\x60\x1a\x69\xa9\xce\x4d\x43\xcc\x07\x25\x04\xc1\x65\x55\x17\x32\x6d\x94\xea\xd5\xef\xc1\x91\x3b\x2d\xa6\x35\x03\xc1\xc6\xc7\x01\xfd\x0e\x90\x7f\x15\x95\x1f\xd0\x06\x71\xab\xa1\x0e\xb8\x85\x4c\xc7\xac\x6f\xc4\xd6\xa5\x9d\x7c\x47\xfa\x06\x7c\x9e\x4e\xa5\xc0\x6b\x4e\xee\xd4\xef\x4e\x37\x45\x2d\xcb\x4b\x8d\xc4\x80\x03\x30\x41\x52\xe7\x10\x81\x2f\xaf\x7a\x5a\x29\xba\x5f\xad\xde\x4c\x18\x03\x9a\x7a\xc6\x1f\x36\xb2\x7f\x9d\x9e\xbe\x7b\xbd\x48\x5c\x7d\x56\xe6\xaf\x39\xc9\x4c\xd2\x82\x83\xd3\x7a\x99\x94\xc6\xfc\xc5\xed\x96\x48\x76\x33\xb2\x21\x27\xc8\xd9\xf5\x69\xd2\x1f\xe9\x4b\x9c\x2e\x28\x2e\xbb\xc0\x12\x20\xb5\xa1\x25\x63\xce\xec\x7a\xfa\x0d\x21\xd6\xd9\xa3\x78\x45\xd8\xdf\x31\xaf\x0b\x3c\x55\x72\x41\xd0\x01\xdc\x6a\xe4\x22\x43\x90\xd0\x86\x53\x96\x6f\x5b\x37\x57\xac\xc1\x3a\x5b\xc2\xd8\x80\x12\x40\x86\x7b\x1b\xcf\xa8\xbd\x7e\xa1\x0b\x1b\x2d\x4a\xfa\x68\x7e\xa6\xc2\x46\x65\xff\x95\xdb\x25\x92\x99\xe2\x38\x54\xcd\xa8\xcc\x43\xb9\x65\x4f\x3a\x6d\x90\xdf\x84\x54\x45\x2c\xda\x82\x54\x20\xb7\xf9\xc8\x9e\x8b\x4e\x92\x90\xb1\x0d\xad\x23\x56\x18\x41\x10\x01\x63\xd7\x51\x34\x28\x63\xf7\x67\xa7\x6f\xdf\x5e\x5e\x7b\x2e\xcf\x94\x55\x17\xb4\x16\x7d\xe3\xfc\x6f\x26\xed\x32\x2f\x1c\xb4\x0f\x0e\x59\x11\x84\xf7\x03\xd2\x1c\xc7\xe0\xc2\x89\x6f\xa5\x53\x70\xdd\x60\x36\x37\xdc\x16\xc9\x51\xc4\xed\x2f\x8e\x29\x28\xc9\x47\x5e\x1e\x3f\x25\x66\x63\xbc\xe4\xff\x24\x34\xd3\x06\xa6\x71\x50\xb3\xb7\xa0\x7b\x77\x53\x6a\x40\x53\x4c\xcc\xb6\x60\x7b\x43\x0e\x09\x94\x70\xdf\x80\x91\xde\xa4\xd8\x5d\x3b\x61\x2b\x54\xd3\x82\x06\x19\xb9\x43\x5d\xfd\x36\x60\x7d\x67\xf9\x93\xe4\x15\x76\xeb\x5a\x56\x5b\xe1\xb6\x7f\x76\x1f\x12\xcf\xa1\x91\x2f\x66\x50\x39\x7d\x3d\xed\xf6\xec\xa9\x46\xdc\xb6\x7b\xf6\x60\xa8\x52\x36\x6a\xb0\x67\xc8\x83\xe7\x24\x2d\xf2\x2e\x35\x0d\x1f\x41\x3c\x67\xc3\xc4\x67\xb3\x77\x8d\xbd\xe4\x91\x66\x8e\x94\x9c\x06\x6f\x4a\xc4\xce\xb4\x42\x65\x6b\x31\x58\xf4\x62\xe9\x4a\x83\x5e\x30\x77\x66\xea\xfe\x5c\x86\x98\xd2\x1d\x09\x1d\xd7\x73\xfa\x6b\x2b\x78\x83\x4a\x3c\x1f\x59\x48\x83\xe3\x0a\x2e\xd2\xd7\x7b\x45\xe3\xbd\x62\x85\x6a\xb1\xae\x7a\x92\xe9\xf9\x68\x07\x34\x6d\x9a\x30\xc4\x14\x71\xda\x41\x42\x16\x33\x93\xd7\x60\x91\xb1\xaa\xab\x3e\xe3\x75\x7a\x27\x1e\xec\x54\x6c\xbe\x15\x19\x28\x46\xb4\x6c\x18\xa7\xef\x7f\x3d\x3d\xbf\xf8\x75\xb1\x2b\xcc\xa1\x45\xf1\xa9\x9e\x2c\x01\x46\x8b\xf2\x26\x1f\xb6\x66\x6a\x43\x87\x11\x91\xfe\x82\x08\x3d\xfc\x40\x5a\x11\xe1\xef\x56\x96\x44\x39\x0e\xf1\xda\x62\xbe\x65\x99\xf7\xbb\x23\x06\xa8\xf1\x2e\xce\x1f\xb7\x43\x8d\x4b\xb8\xdf\x1c\xc5\x5b\xfc\x19\x1b\x17\x53\x75\x03\x89\x36\x3f\x13\x3d\x9c\x61\x4e\xf8\xee\x74\x86\x78\xe1\x87\xa9\xc7\x69\xd9\x74\xa3\x3c\x26\x69\xd2\x81\xcb\x6d\x8a\xdf\xc7\xcb\xed\x50\x6a\xb0\xcd\x8b\x6a\x20\xe1\x50\xf0\x68\x34\x6e\x35\xe9\xb0\x5c\xe8\x99\x91\x60\x5c\x14\x62\x01\xef\xe5\xcc\xd4\x00\xde\x37\x67\x11\x5b\x55\x3f\x07\x65\x1b\x01\x70\x47\x35\x97\xb8\xd7\x12\x29\x3e\xaa\x70\x88\x83\xac\x1d\xdb\x4c\x6d\xbb\x3e\x0f\xfd\xcd\x13\x99\x14\x36\xd3\x74\x8a\xdc\xb8\xb9\x06\xcf\x65\x76\x4b\x8d\x27\x19\x8e\xb7\x04\x98\x0a\x9d\x49\x98\x9b\x15\xcc\x8e\xf7\x77\x19\x5b\x6e\xc0\x81\xf7\x77\x09\x5c\x2e\x68\xfd\xca\xb0\x3c\x4a\x24\xf8\xe1\xb6\xda\xcb\xe1\x28\x4a\xa8\x4a\xf1\x9b\x44\xe0\xf2\x5f\x12\x41\x8a\x1b\x21\x0c\x34\x4e\x4c\x71\x02\xf1\xdd\x9f\xc1\x9e\x7a\x16\xcf\xc5\x92\xfc\xec\x41\xb6\xa4\x39\xfa\xf9\x41\x20\xae\xf3\xd9\x2a\x96\xd1\xbf\x21\x41\xea\xa0\xfb\x9d\x1f\x24\x94\xd8\xf7\x5f\xf0\x35\xb0\x1f\x9e\x6c\xae\x72\x20\xd1\x2f\x36\xc8\x26\x7a\xa4\x87\x99\x51\xc2\x02\xa9\xb2\x0d\x12\x46\x43\xce\xf1\xdb\xc0\xbd\x14\x4d\xe3\x59\xfa\xaf\xfc\x95\xbe\xe4\x2f\xed\x0a\x4f\x63\x37\x47\x31\xc2\xa3\x89\x1d\x3a\xa6\x81\xe3\xa8\x77\xa7\x9f\xd3\xe2\xcd\x12\x60\x5f\xdd\x58\x0c\x90\x5d\xa0\x93\xfd\xc0\x5b\xf6\x3c\xee\x56\xdb\x3b\x8a\x81\x3f\x39\x47\xf2\x92\x15\x94\xe0\xac\xf5\x51\x19\x89\x63\x15\xca\x22\xfa\xb6\x84\x78\x45\x7f\x9a\x96\x11\x70\xd6\xe7\xb0\xcf\x0a\x10\x91\xdc\x7f\x4e\xaf\x29\x46\x21\xca\x30\x29\x51\x50\xa4\x8f\x0f\x11\x61\x1a\x75\xe0\xb8\x1c\x20\x92\xdf\x96\x5d\x4f\x28\x82\xae\xeb\x3e\x12\x6e\x63\xd5\x8b\xe7\x20\x42\x89\xfa\xb5\x8a\x0d\x5e\x82\x09\x2c\x9c\x6d\xce\x5e\x62\xef\xf3\x83\x7c\x12\xa6\xf5\xd4\xd1\x2b\x09\x49\x34\xfc\x9e\x05\x14\xde\xd1\x0e\x1e\xcb\xb8\xd2\xf0\x3b\x0b\x27\xd6\x80\xc5\xb4\x21\x96\x32\x3a\xf4\x94\xae\x46\xe9\x37\x22\xde\xbf\x60\xe1\xde\xe2\x72\xf0\xaf\xd4\xbc\x38\x5c\xfc\x8e\xa6\xbf\x18\xf3\x2e\x24\xe4\x52\x0a\x71\x30\x3a\xe7\xf3\x75\x16\x67\x2e\x9c\x97\xfc\xef\x62\x89\x60\x74\xfe\xd0\x7f\xa2\x98\xe7\x58\x55\xe4\xe4\x94\x95\x8f\x5e\x8c\xc7\x22\x48\xaa\x79\x11\x5c\xc2\x88\x4a\xb4\x8f\xf4\x30\x79\x45\xf8\x6f\x33\x97\xff\x8c\x3f\x85\x43\x46\xa5\xb8\xc1\x0d\xc7\x76\x54\x4d\x08\x43\x55\xcd\x82\x49\x75\x21\xa4\xd4\xb8\x9b\x03\x26\xc9\xb3\x8e\x60\x2f\x29\x22\x24\xad\xa8\x60\x96\x99\x46\x25\x43\x8c\x9a\x87\xa7\xa5\x81\x9d\xe5\x21\x48\x6a\xd0\x92\xd5\xc2\xe0\x26\xf0\x18\xdb\x1e\x9f\x34\x14\x63\x84\x4a\x62\xb6\xdf\xe6\xab\xd2\x39\xe8\x02\x08\xab\x24\x9f\xa7\x8b\xaa\x71\x85\x69\x65\x51\x79\x40\x40\x9f\x2f\x29\xf9\x61\x81\xde\xbb\xcc\xdc\x37\x9f\x24\x5d\xb5\x44\x9a\x0c\xec\x15\x6a\x25\x47\x45\x86\x69\xb4\xa0\xf3\x62\x21\x26\xd5\xb7\xac\xdd\x70\x98\x0f\x4f\xcc\xe4\xb8\x97\x02\xc6\x30\x47\x4b\x9e\x8c\xb3\xe6\xbc\x67\x38\x14\x42\x25\x03\xc8\x03\xd3\x94\x05\xbb\x63\x3b\x0e\x75\x8a\x4d\x50\x70\xa9\x39\x50\xa9\x80\xfd\xd7\xd8\x31\xd3\x57\x59\xa8\x9e\x3a\x97\x49\x46\xab\xc8\x96\x77\x9a\x47\xc6\xab\xe0\x2d\xd6\x23\x59\x76\xbc\x8f\x8a\x65\x4f\xb3\x5c\xb8\x88\x30\x0b\x0f\x32\x0a\x26\x08\x09\xa7\x0f\x3f\x7e\xff\xa9\xe3\x92\x9d\x19\xeb\xc9\xc3\x8f\x3f\x7c\xa2\xb5\x11\x7f\xbc\x38\x5a\xee\x7d\x5b\xde\x56\xcd\x80\x33\x9f\x1a\xf4\xd4\x08\xcf\xef\xb7\xec\xe5\xad\x51\x32\xec\xa6\x41\x79\xb2\x8c\xd3\x57\xcd\xb6\xf1\x64\x8b\xaf\x31\x80\xa8\x6a\x0f\x8b\x11\xab\x90\x64\x90\xad\x1b\x8c\x87\xd8\x42\xab\x47\x03\x22\x90\x65\x51\x71\x39\xbf\xd2\x5f\x9c\x30\xda\x2e\x8c\x13\x9d\xa7\xa0\x34\x10\xfe\x82\x76\x60\x69\x5a\x8a\x6e\xba\x01\xd4\xe9\x8a\xb3\x60\x5e\xb5\x50\x03\x31\xad\xf4\x32\x89\x20\x5a\xea\x7e\x39\x2f\x21\x55\x2d\xa7\xb6\xb8\x6c\xb6\xa2\x22\x55\xf6\x13\xb5\xe4\xe3\xfb\x5c\xf3\x55\x7b\x13\x81\xb4\xd4\x7b\x6a\xab\x8e\x1a\x1b\xe8\x70\xe0\x17\x4b\xda\x3e\x6f\xcb\x4c\x76\x2d\x74\x69\xe3\x18\xdd\x82\xe9\xe6\xe1\xac\xa3\x06\xdc\x1f\x9a\xd4\x2d\xff\x2c\x4f\xc0\xb2\x9b\xa7\x9c\xd9\xbc\x8d\xb1\xdb\xa0\xf9\x17\x5a\x2c\xcd\x72\x92\x76\x49\x29\xe9\xcc\xcc\x27\x1f\x37\x66\xd5\x72\xac\x37\x58\xbc\x3c\xf3\x08\x92\x67\x38\x5d\x90\x3a\xcf\xed\xc6\x00\x85\xe7\xf9\x0f\xbb\xa8\x6e\x92\xfe\x86\x32\xd3\xf5\x97\xda\x49\x5f\x29\xbe\xc6\x4d\xd0\x35\x66\x52\xb4\x95\x3c\xea\x11\x8d\xda\x72\x43\x52\xb4\x38\xce\x0a\x03\x0f\xc4\x20\x1a\x76\x75\x09\x51\x7b\x89\x0e\x7d\x54\xfc\x68\xb1\x99\xc5\x8e\x4d\x58\xf8\xa4\x86\x09\x33\xba\x70\x98\xea\x3b\x7d\x4e\x3d\x66\xc1\x23\xfd\xd6\x4e\x54\x7e\x17\x77\xb2\x94\x5d\x4d\xfe\x0f\x13\xdc\x51\x20\x2d\x2a\x13\xba\xd7\x12\x51\xb8\xc6\xf8\x23\x32\x27\xce\xa3\xf3\xd1\x1d\x15\xf7\x78\xb7\x7b\x5c\x14\x8f\x66\x7a\x1d\x10\xbd\xeb\xf6\xc8\x38\xad\x6c\x77\x44\xfd\x41\x49\x01\x07\x99\xc7\x1d\x03\x44\xe3\xf4\x81\xfd\x62\x4a\xd6\x55\xd3\xc2\xe3\x0d\xe4\x1d\x8c\x5d\xd7\xa4\xfb\xb2\xd9\x13\xda\x9d\x11\x90\x2d\x56\xe2\x29\x18\xf6\x64\xb4\x43\x1d\x24\x8d\x1c\x9a\xef\x6d\x9e\xe1\x41\xa7\x2d\x5b\x40\x76\x47\x50\x22\x87\x91\x8f\x22\x24\xe0\x79\x1e\xa9\x8e\xef\xcd\x00\xce\x71\x3d\x5f\xf7\xbf\x27\xe7\x9b\xab\x7c\x8e\x04\xbe\xc4\xfb\xe6\xee\x45\xb0\xb8\x85\xd0\x37\x1c\x50\x24\xe4\x93\x82\xf3\x4c\xc0\xcf\x59\xf8\xed\xc1\x36\x4d\xf3\x59\xce\x74\x2d\x11\xf4\x29\xeb\xaa\xb7\x44\x3e\x32\xfe\x2a\x4e\x5d\xe6\x5d\xb5\x0a\x2f\x74\xf8\x85\x23\x66\x9a\x58\xf0\x18\xb7\xd9\x3f\x44\x98\x3a\xc7\x57\xfa\xbf\x98\x30\x1c\x88\x7a\x8f\x5c\xda\x19\xbe\x2b\xf6\x21\x71\xa9\xba\x7b\x1f\x54\xa5\xce\x06\xd3\xba\x74\x23\x9c\x95\xc7\x79\x23\xa5\xf3\x02\x39\x96\xc5\xe8\x63\x6c\xef\x61\xfb\xba\xdb\x2d\x9f\x38\x84\xcc\x39\x82\xc4\xfe\xaa\xf7\x10\x8a\x6b\x8a\x73\x85\x63\x2d\x56\x83\x97\xe6\x4d\x37\x05\x73\x36\x5f\xef\x41\x17\x9b\x88\x78\x47\xa3\x96\x0d\x72\x78\xd1\xb1\xb7\x1d\x47\xc5\xae\x7b\x44\xd7\x72\x00\xde\x1f\x7e\x81\x27\x3e\x36\x08\xf8\xec\x8f\xd5\x8b\xbb\x41\xe0\x47\xcb\x2e\x89\x9d\x98\xd8\xd4\x1f\x50\x7c\x43\xc4\x56\x9c\xbb\xb3\x63\xbc\x01\x35\xb6\x0a\xba\x6d\x3f\x7f\x00\x4c\x9c\x4b\xac\xa9\x48\x0b\xc8\x67\xe4\x4a\x05\xdc\x07\x16\xaa\x11\xa0\x21\xe5\x92\xf8\x93\x6c\x60\x49\xb6\x3c\x72\x45\x14\xaf\x57\x98\xed\xd4\x44\xbe\xcc\x57\x9f\x5d\x8b\x98\xfd\x95\x6d\x0f\x27\xc0\x29\xda\xd9\x09\x61\x05\xf1\xe3\xe9\xfe\xf9\x63\x58\x9e\xe4\xbe\x00\xf4\x42\x26\x78\x75\x13\x20\x04\x1b\x71\xbc\xb1\x76\x5b\x15\x03\x91\x37\x0f\xc6\xe2\xe9\x93\xfd\xf3\x38\x3f\x51\x04\xac\x91\x47\xcb\x18\x0d\x1c\x8b\x2e\x15\x0e\x1f\xb1\x97\x2d\xdc\x3d\x6f\xbc\x17\x73\x87\x1a\x8e\xce\xa2\x80\x15\x05\xa4\x6e\xec\xe4\x0b\x4e\x30\x53\x9c\xd8\x2e\x01\x6e\x8d\xc1\x4e\x81\x83\x61\xe9\x2a\x0b\x48\x1b\xbb\x51\x46\xb3\x33\x45\xc9\x2e\xd7\xc8\xe6\xea\x9d\x4a\x5d\xd3\x2c\x43\x7b\xbc\x79\xf1\xae\x4b\x3a\xb3\xdb\xe2\x40\x79\xbf\xd7\x73\x4c\x31\x75\x14\x05\xfa\x73\x16\x44\x1f\xcf\x30\xda\x7d\x8e\xca\x8a\x77\x9f\x83\x06\xca\x52\x73\xac\x9c\xb3\xd9\x32\x74\x8f\x2c\x28\x05\xbe\xe3\x15\xbc\x84\x33\x3d\xd0\x28\x7e\x6f\xe9\xd8\x4d\x57\x53\x0f\x9b\x26\x38\x4e\x23\x5b\xe2\x98\xac\x61\x43\x16\x71\x5f\x0f\xb2\x3e\x28\x5e\x74\xb5\x18\x2d\x23\x36\xf9\x6c\x2d\xc1\xd1\x8c\xdd\x40\xbc\x65\x5b\xd1\xa0\x63\xc9\xd0\x6b\x39\x2e\xaf\xae\x71\xe1\x01\xf1\x42\x62\x34\x6b\xa6\xd7\xf4\x2f\x1b\xd2\x07\xd9\x79\x9a\x6f\xc7\x60\x9f\x96\x75\xda\xac\x56\xec\xc9\x52\xd5\x7a\xa0\xf8\x50\xda\x9e\x6b\x5d\x6c\xc5\xab\x25\xf4\x09\x32\xbe\x2b\xe6\xd6\x14\x37\x60\x30\x13\xe8\xf6\xe5\x8a\x84\x92\x45\xfa\x86\x44\x34\xbe\x56\x41\x2e\xde\x00\xc3\xbc\xd7\x3a\xeb\x7a\x02\x33\x29\xab\xa2\x8b\xe9\x02\xe9\xee\xe7\xb1\x55\x12\xfd\xde\xb3\xe7\xac\xa8\xcc\x9c\x40\xe2\x44\xb9\xbd\x11\x2f\x68\xde\x76\x86\x28\x27\x97\x39\xf0\xd6\x97\x9c\x71\x67\x03\x32\x0a\x50\x7f\x1e\xec\xde\xe3\xe8\x1f\xf7\x6c\x5f\xb6\x2c\x8e\x98\xe7\x5b\xe8\xf4\x34\x6e\x13\x74\x4d\x6b\xd7\x6b\x61\x0b\x18\x3e\x08\xae\x72\x4e\xf3\x84\x79\x31\xcb\x7c\xe6\x51\x61\x5b\x0a\x7b\x39\x9b\xc9\x2b\x1d\xe1\x0b\x07\x0b\x0c\x44\xd6\x0f\x1c\xc0\x62\x0f\xfb\x41\x87\xc3\xfc\x09\x81\x50\xae\x67\xa6\x45\xba\x20\x33\x82\x64\xbf\x70\x02\xe1\x3d\x3b\x00\x64\xee\x1d\x63\x16\xa6\xe0\x5e\x0e\x78\x15\x51\xa2\xce\x29\x94\x18\x1e\x59\x17\xf2\xbd\x67\x1a\x05\x54\x1e\xdd\xb8\x84\x1e\xea\x51\xcd\xa7\x7c\xce\xf0\x39\x53\xef\xd3\x27\x08\x3a\x85\x51\x29\x8f\x2f\x78\x09\x28\x8e\x2f\xef\x68\x08\x7f\x58\xfa\xda\x72\x9d\xb7\x85\x9d\xd3\x50\xea\x67\x37\x04\x50\x79\xe8\x86\x97\x6f\x49\x22\xd7\x22\x68\xb6\x12\xc8\x67\x36\xca\x12\xa1\xf0\xf5\x44\xa6\x84\x30\xe7\x2f\x64\x6a\xb1\x87\x13\x11\xfc\xb0\xe7\x39\x20\x13\xca\xea\x41\xb7\xbf\xfd\xd3\xd5\xe5\xdb\x93\xf4\xf7\xc7\x87\xc3\xe1\x31\x67\x7f\x3c\xb4\x5b\xf6\x05\x2a\xf8\x1c\xc8\xff\xbc\x78\x73\x92\x96\xfd\xea\xbb\x05\x49\xef\x98\x1a\x5e\xec\x55\x17\x09\x28\xb9\x4c\x96\xac\xd9\xfd\xf3\x53\x66\x2f\x07\x06\xf5\x32\x9d\xf0\xf8\x60\xc8\xb4\x79\xd8\xcd\x04\xa6\x54\x20\xa6\x30\x2f\x31\x96\xa4\x2b\xe1\xc0\x30\x02\x3e\x01\x58\xb5\xe1\xfb\xc0\xe8\x10\xe1\x06\xf1\x1d\x6f\x31\x0f\xdb\x42\xe8\xd4\x38\x1a\xf5\x4e\x51\x56\x16\x3f\x8f\x4b\xc2\x56\x05\xee\x0e\x79\x96\xfe\x89\x15\x3d\x46\xa9\x50\x01\x27\x19\x15\x00\x38\xa4\x25\xcc\xb0\x54\x0f\x3f\x97\xe3\x04\xbf\x69\x74\x5e\xf6\xf0\x96\x9c\xa3\x0d\x69\xb9\x6b\x9b\x1f\x4d\x9b\xa8\xb4\xae\x51\x61\xad\x70\x6f\xf1\x7c\x88\xa8\x79\x34\x07\x78\x5d\x3a\x8c\xe7\xc1\x78\x49\xd2\x49\xe6\xd9\xbd\x4e\xb2\x09\xc7\x57\xc0\x2f\xcd\x33\x95\x20\x26\x12\x5d\x50\x83\x4a\x76\x93\x1a\xc4\x8f\x2a\xd3\x5e\xda\x31\x06\xf8\x56\x9d\xbb\xb8\x78\x09\x32\xaa\x01\x03\x89\x49\x86\x11\xd2\x6d\x49\xcc\xcb\xc2\x19\xce\x8b\x59\xe4\x3e\x77\xc5\x20\x70\x9a\xe3\xcd\x66\xdb\x98\x9d\xb8\x0c\x86\x62\x86\x94\x6a\x2e\x31\xe2\xba\x33\x4a\x1c\x5f\x6a\x35\x4a\x66\xcd\x42\x6e\xcd\x3b\x93\x50\x88\xad\xfd\xb6\xb9\x33\xaf\xca\x73\x7c\xe9\x71\x85\xb0\x67\x1e\x4c\x3b\xe5\x21\x03\x09\xbe\xc9\xe2\xe2\xfe\x1a\x1c\x5c\x57\x31\xa0\xbe\x4b\x05\x86\x5d\x2e\x42\x51\x2f\xb2\xca\xcc\x34\x6f\xc6\x31\xcf\x41\x8d\x5d\x08\xcf\x5d\x0d\x47\x5c\x08\xe3\xac\xa1\x1b\x61\x90\xf5\x2b\xdc\x08\x63\x24\x4d\x9d\x04\x7d\x57\xbf\xc2\x4f\x70\xae\xd3\x81\x01\x42\xc9\x78\x0e\xf1\x33\x19\xe6\x0c\x11\x45\xd8\x37\x6f\x89\x08\xcd\x0e\xa2\x1b\x94\x1d\x2c\x38\x23\x85\xef\x6b\x74\xcc\xb9\x96\x78\x94\x04\xc8\xfd\x92\x59\xa2\xa8\x6e\x6e\x16\xcb\xb6\x39\x74\xec\xa7\x88\xab\xa9\x78\x2b\x95\xbf\xd3\x2b\x7c\x0b\x08\x9b\x5c\x41\x14\x12\x90\x48\xd9\xfa\xa3\x48\x09\x48\x24\x2f\x6d\x93\xab\x81\xce\x29\x05\xb7\xf1\xf0\x4d\x5d\x7c\xbc\x40\x52\x16\x92\x85\xd8\xf9\x21\xe3\x10\xfc\x2b\x61\x22\x61\x55\x1c\x99\xae\x38\x46\xc1\x38\x68\x08\x37\x6f\x2d\xb6\xad\xda\x81\x0f\xc8\x61\xde\x71\x0b\x84\x65\x70\x04\x46\xc4\x50\x41\xd0\xf2\x20\xa1\xdf\x17\x41\x18\x2e\x3d\x84\x22\x08\x93\xfe\x97\xd7\x6f\xe5\x13\x9b\xb9\x7a\xfc\x05\xbb\xb9\x2f\xd8\xad\xc6\xb6\x88\x17\x73\x5b\xc5\x96\x26\x5b\xee\xa2\x9f\xda\x8d\x9f\xf8\x72\x10\x45\x9b\xdf\xc0\x56\xc9\xff\x2e\x96\x84\x39\x9f\xed\x5d\x5b\x3e\x1e\x67\x23\xe4\x08\xaa\xaf\x10\x70\xf1\x6a\x6b\xe4\x3f\x17\x97\xb3\x5d\x31\xc0\xe1\xc3\xc2\x63\xc4\x36\x9c\x89\xee\x1e\xd2\x42\x5b\xb1\x02\xae\x04\x3a\xaa\x10\xd4\xe1\x6f\x74\x00\xed\xe0\xf6\x4c\x83\xe8\xf3\xb5\xf3\x96\xcc\xd7\xb2\x67\xe3\xd3\x20\xda\xdb\x11\xbc\x28\x8f\xbf\xd6\xc1\x4c\x0a\xde\xa1\x80\xd2\x71\x3f\xdd\x2a\xf4\x53\xa0\x48\x76\x50\xc0\x29\xaa\x6e\xb3\x18\x0f\x84\xdb\x3b\x52\x9c\xa5\xf8\x76\x50\x26\xa9\x30\xb9\x64\xbb\x22\x10\x56\x84\x80\xc2\x65\xe5\x22\x6f\x3f\xf3\x85\x55\xd8\xcd\xb2\x02\x0e\xad\x1e\x9b\xe2\xff\x70\xc4\xf4\xa2\xb4\x77\x12\x9a\x54\x18\xef\xb7\x22\x37\x74\x26\x63\xa6\x2e\x03\x4b\x57\x72\x44\xef\x8d\x84\xe4\x86\xd3\x31\x65\x4c\xdd\x86\x29\xed\xf1\x78\xdc\x02\x78\x87\xe8\xbf\x94\xff\xf7\x7f\xff\x1f\x62\x4f\xfb\x86\x56\x4b\x38\xb4\xeb\x59\x6a\x3f\xee\xe6\x1d\xe5\xaf\xb5\x7b\x0c\x1e\x1d\x34\x44\xd0\x9f\xaa\x8f\x38\x85\x26\x34\xca\x77\x5e\x19\x7d\x5f\xb1\x8d\x2a\x26\x72\x68\x3b\x9e\xcc\x61\x1f\x1f\x97\x61\x44\x95\xe9\x1a\xe1\xce\x72\xda\xe0\x62\xd0\xe4\x84\x94\x12\xdd\xfc\x92\x92\x7c\x24\x9d\xfa\x93\x3f\xf1\xef\x06\x22\x3a\xed\x0f\x15\xc7\xc3\x18\xc2\x5e\x32\xf9\x4d\x2f\xf8\x14\x95\x51\xae\x17\xc1\x96\x94\xf9\x40\xca\x09\x5c\x39\x9f\xe1\x0a\x09\x2b\x7a\xd4\xd9\x21\x0d\xbd\x79\x06\xc7\x20\x66\x4e\xca\x84\xa7\x3f\x48\x63\xd4\x4d\x09\x39\x59\xac\xdb\x31\xd1\x7d\xbf\xf0\xef\x31\xfb\x8f\x89\x81\x45\xa2\xfb\x04\xec\x73\xc2\x01\x3e\xfc\xcd\xb7\xa8\x32\xf9\x89\x85\xf7\x35\x22\x68\x5e\x23\x02\x17\x1b\xc0\xab\x86\xff\x13\x1c\x27\x55\x23\x05\xc7\x6a\x48\xe3\x47\x47\x56\xdb\xe8\x7a\x2e\xef\x79\x84\xa3\xec\xd1\x7d\x58\x5c\x38\x10\x35\xb3\x45\x34\xb9\xe0\x00\x23\x83\xd8\xfb\xa0\x23\xff\xcd\x47\x5b\x58\xed\xf4\x3c\x14\x97\x45\x5c\x4e\x77\xbc\x95\x64\x70\xbc\x9e\xef\xa1\xa9\xf9\x66\x39\xc3\xb2\xab\x26\x98\x32\x1b\xd9\x3f\xf2\xd9\x78\xbc\xf2\x25\x4d\x9e\x9f\x05\x9e\x3d\x7b\xaa\xae\x0b\x84\x04\xe4\xf1\xd1\xe9\x96\x14\x84\x6d\xa4\xcc\xa0\x20\x16\xe5\x7e\x3e\xe2\x02\x39\xbd\x8a\xe2\x8f\x3b\x41\x4e\xcb\xb8\xdf\x0d\xf2\x9f\xdd\xba\x98\x3f\x66\xea\x92\xa7\xe7\x4d\x5d\xd2\xdc\xc1\xd3\x7f\xc3\x46\x02\x91\x94\x36\x63\x32\xb7\x8f\xee\x24\x68\x1e\x67\x88\x3e\x7e\x05\xc8\x1f\xdf\x4f\x88\x2e\x5e\xf8\x0a\x69\x2f\xee\x71\x20\xe8\x45\xad\x72\x08\x61\x83\x55\xec\x90\x7f\x4c\x7b\xf3\x82\x6b\xc4\x33\xc6\x3a\xde\xc4\xff\x1e\x3d\xbd\x37\x4b\xec\x8d\x1f\x36\xd3\x99\xa7\xbc\xff\xba\x59\x71\xc4\x0f\x5f\xcc\x79\x5f\x76\xc6\x3f\x62\x1f\xbe\xcf\x2b\x7f\xdc\x4a\xe6\x35\xee\x92\xde\xb0\x91\xf7\xe6\x08\x97\xd9\x78\x0f\xe6\xdf\xe2\xa9\x3f\x6f\x83\x65\x1d\xf0\x60\xa6\x18\x2c\xca\x86\x3f\x6f\x50\x60\x1d\xc2\xf0\x25\x4a\x86\x67\xb8\x1e\x73\x03\xee\xde\xed\xc7\x8d\x66\x8f\x07\xe1\xde\x0b\x3d\x85\x6e\x67\xbc\x46\xf1\x9e\xf5\xc1\xd1\x62\x2f\x7e\xf6\x1e\x48\xbe\x21\xee\xcc\xa6\x8c\xf3\xc7\x75\xc4\xe7\x13\x2c\xd6\x99\xc1\x2f\x10\x70\xf1\x84\xb5\x55\x09\xff\xf1\x33\x09\xb9\x14\xd5\xb5\xf4\x32\x15\xdf\x08\xb9\x28\xe3\x19\x2c\xa1\x3e\x56\x57\x3d\xc5\x35\xbb\xe0\xd2\xa0\xdc\xed\x79\x08\x73\x77\x72\x9c\x87\x49\x00\x55\xdc\xd4\x56\x41\x42\xfe\x69\x5c\x96\x5c\x1a\xa8\xab\xe7\xdb\xe6\x90\xc8\xd2\xb9\xe0\xbb\x1d\x52\xb9\xd8\x41\x63\xe2\x26\x49\x1c\xcb\x28\x7a\xa0\x0a\x7d\x20\x31\x5d\xce\x4f\x4d\xd3\x47\x3e\xe5\x58\x39\x9c\x37\xb9\xdd\xd3\xc2\x02\x28\xa4\x06\xb8\x01\xb3\x5c\x1f\x12\xc7\x42\x4b\x85\x00\xeb\xab\x15\x49\x34\xaa\x37\x84\xf8\x9a\x8a\xb9\x9d\x93\xea\x4e\xcc\xbe\x85\x63\xbb\xec\x2a\x2c\xfc\x70\x67\xed\x90\x7b\x4d\x5d\x3b\xdc\xa5\xb9\xbe\x1d\x21\xc4\xd7\xb4\x83\x6b\x79\x02\x8f\x20\x1e\xc4\xfb\xda\x43\xca\xa1\x9e\x42\x0e\x77\x4f\xba\x71\x13\xbd\x53\xf6\x75\xb0\x5e\x63\x07\xb2\x18\xc9\x1f\x6c\xde\x9c\x2e\x9c\x92\x22\x1b\x61\x33\x22\x82\x6c\x14\xcf\x1e\x46\xfb\xf2\x14\xe7\x91\x46\x4e\x07\x1a\x6c\x01\x7b\xb0\xb9\x55\x48\xdb\xe5\x45\x3a\xc8\x58\x17\x2a\xd7\x49\xe2\x97\x17\x5e\x81\xb3\x63\x64\x22\xdf\x85\x4b\x06\x04\x3c\x1b\xc9\x42\x2e\xad\x72\x73\x9c\x59\x5d\x50\xeb\xb4\x30\xc7\xaa\x01\xe5\x58\xf4\x14\xce\x78\x67\x28\x9d\x05\xc6\x56\x66\xca\x27\x26\xb3\xca\x6e\xab\x41\xed\xf2\xbb\x68\x03\x98\x8f\xcf\xb1\x46\x16\xcd\x9a\xe3\x2b\xf6\xb4\x29\x7e\xad\x96\x9b\xa0\x1c\xc1\x1c\x35\xca\x2c\xc2\xa9\x3e\x25\x10\x4f\x76\xeb\x36\x67\x5b\xb8\x8d\x35\x33\x8b\x80\x14\x50\xe0\x4f\xae\x97\xee\x56\x6d\xcf\x0d\xb0\xc3\x46\x05\x3d\xba\x8f\x29\xfc\x81\x06\x80\x6d\xdc\xdf\x02\xb0\x05\xb9\xcf\x8a\x9a\x11\xb0\x80\xfb\x1a\xa2\xd7\x61\x7f\x7d\x43\xc0\x37\xbe\xb2\x21\x27\xd6\x0a\xbd\x45\xa5\x28\x66\xe7\xff\x7d\xed\x1b\xa9\x3b\x20\xce\xe8\x9a\x9e\x11\xc1\x47\x4f\x93\x38\xa2\x0f\x7c\x21\xac\x58\x6c\x80\xa9\x6f\x86\x2e\x67\xbe\xa8\x9a\x86\x10\xaa\x6c\xdd\x87\xfe\x1b\xf1\x81\x19\xf6\x28\xe8\xdb\x3b\x15\x49\xb8\x73\xf1\x79\x1d\x7f\x1b\x81\x28\x61\xd8\xcb\x94\xab\x9b\x3e\x02\xed\x9f\x8e\xbc\x31\x24\x57\xb5\xcb\xf6\x74\x17\xbd\x77\x33\xbd\x45\xe7\xde\x1b\x8c\xe2\x9b\x9b\xc6\x57\x78\x75\x72\xe2\x72\x6d\xb2\x9c\xdd\x86\x9d\x78\xe7\x8d\xab\x3b\xc2\xc1\x0e\x0f\x00\xac\xf8\xf2\x8a\xa6\xae\x64\xdf\xff\x42\x42\x7c\x7f\x09\x9b\x62\xd4\x0e\xc3\x07\x81\xbd\x87\xb1\xef\x1d\x8c\x8b\x6c\x63\x52\x41\x40\xc2\x41\x7a\x70\xa3\x0e\xfc\x2d\x5b\xbb\x23\xc8\x97\x80\x96\xc0\x84\x39\x04\x2d\xd3\x76\xa0\xd0\xa1\x9b\xab\x31\xe3\x8d\xba\x54\xb7\x29\xdd\xc3\x25\xcc\x24\xf8\xda\x88\x82\xaf\x8d\x90\xbb\xf1\x4f\x82\x88\x08\xe7\x61\xc2\xde\x1d\xd0\x8f\xa2\xe3\x85\xcf\xc7\xe3\x70\x52\x1c\xc5\x27\x92\xa2\x88\x7c\x35\xa9\xc5\x0c\xd8\x61\x9c\xf8\xd2\x85\x31\x6c\x4c\xe4\x0d\xbb\xa8\xf4\xf8\xdc\x7a\x98\x24\x97\x51\x45\x51\x7a\xff\x76\xdc\x13\xb1\xa9\x86\x71\xdb\x66\xcd\x17\x69\xc1\x08\x19\x77\x4f\x65\xe7\xb8\x4c\x73\xe9\x8b\x8a\x80\x53\x78\x18\x83\x7d\xad\x3e\xef\xe2\xdc\x98\x82\x61\x84\x9e\x63\x9e\x00\x92\x4e\x9d\xaf\x36\xe8\xff\x62\x8e\x90\x4c\x35\x76\xc4\xa4\x2f\xef\xcc\x40\xca\x1d\xe9\xa9\xdd\x88\x3e\x0b\xc3\x4f\xaf\xe0\x02\xfa\x20\x95\x5d\x64\xeb\x4c\x8f\xf6\x37\x7a\x92\x91\xfd\x65\xdd\x31\xfe\xf4\x12\x33\xae\xbb\x37\x53\xb0\x8a\xf1\x29\x05\xbd\x3a\x40\x73\x8a\xc4\x71\xcf\x72\xe6\x4b\xd6\x85\x51\x3d\x17\x72\xaf\xab\x75\x5e\x4e\x60\xe9\xc6\x5c\x1b\x1c\x91\x7c\x55\x19\xa3\x56\x7a\x08\x57\xcc\x1f\x6f\x2a\xac\x67\x7c\xbc\x0a\x16\xb9\xa8\x91\x11\x5b\x33\x90\x2f\x94\x30\x6a\xe2\x6c\x11\x7f\xa0\x91\xfc\x68\xc3\x7a\xe5\x2e\xb9\x3f\xe7\xfb\x51\xda\x25\x1f\xe4\xe2\x35\xac\x94\xc7\x47\x9a\x3a\xb6\xc0\xcd\x67\xbf\xaf\x65\x68\x10\xeb\xdc\x73\xc5\x1f\x6b\x5b\x5b\x76\x77\xf5\x2a\xc3\x8b\x03\xdd\x46\x37\x2a\xdf\x97\x62\x2b\x7f\xb4\xa0\xb8\x27\xb9\x9e\xa6\x2d\xb1\xa5\xd7\x3d\x92\x0b\xa4\xbe\x5d\x51\x3c\x5e\x3c\xa0\x25\xee\x31\x78\x22\x72\x9b\x00\x47\xe2\x59\xff\xdd\xbd\x15\x8d\xfa\x12\x30\xc4\x00\xb7\x2d\x9a\xd2\x97\x5f\xd5\x83\x60\x93\x3c\xec\x06\x93\x81\xce\x7e\xf0\x8a\xf0\xa6\x44\x46\xdc\xb7\x7c\x80\x98\x6f\xbc\xe1\x8b\xa4\xd5\xdd\x47\x17\x34\x7b\x51\x42\x8d\x47\x47\x3a\x14\xd6\x7b\xcf\x08\x3d\x8a\x5a\xf1\xe5\x3e\x86\x8b\x90\xbc\x95\x33\xec\xf1\x60\x99\x7b\x24\xe7\x03\xbe\x43\xa6\x20\x97\x57\x65\xeb\xa6\x6d\x68\x78\xe4\xac\x9a\x5e\x68\xf5\xd2\xe2\xba\x99\x0c\x30\x81\xdf\x65\x83\x9e\x2f\xb4\x3c\x17\x88\x26\xf9\x81\x0f\x1b\xfa\x5c\x7d\xd3\xe7\x5b\xcb\xc3\x16\xc8\x95\xda\xad\xaf\x39\xc1\x72\x9d\x5a\x42\x90\x53\xf3\x34\x4b\xf6\xf7\x44\x16\x05\xbe\xd4\x98\x00\x16\xdb\x1c\x7c\xa0\x8c\xd0\x35\xec\x33\xee\x2a\xce\x22\x49\x74\xfa\x06\xd1\xe9\x35\x47\x4f\x6b\xb0\x56\xb9\x6c\xa3\x46\x1d\xcb\x77\xd3\x96\x93\x3c\x2f\xf8\xb0\xeb\x18\xde\x30\xb7\x29\xf3\xfd\x04\x6f\xaf\x28\x72\x82\x35\x40\x4e\x11\x00\xd8\xe3\x58\x08\x73\x55\x05\x14\xab\x30\xc7\x6b\x8a\x3a\x06\x0d\x0f\x80\x31\x3c\x9e\x12\x3b\x92\x43\xd7\xec\x71\xab\x74\xcf\x66\xd2\xaa\x66\xf9\x77\x3c\xbc\xa5\xd0\x97\xf2\x19\x40\x2d\x9b\xa6\xe7\xf7\x0d\xf6\x2c\x6e\xad\x3e\x3b\x34\xfd\x62\xf1\x2c\x6e\xad\x3e\x4f\x30\x25\xd0\x53\x54\x09\xf4\x71\x5c\xed\xf8\xa4\x3d\xd5\xd5\x0e\xab\x7e\xa0\x09\xea\x2a\xbc\xb8\xe2\x53\xfb\x57\x2e\x61\x52\xe3\x24\x67\x48\xa1\xe3\xcc\x73\x35\xaf\x48\x88\x28\x67\xab\x3e\xe3\x94\x7b\xeb\x9e\xe4\x0d\x2b\x9f\x64\x9f\x9b\x29\xb8\xaf\x91\x8d\xce\xcb\x61\xf5\xb9\xec\xd9\x67\x7c\x93\x61\x87\x39\x2c\xeb\x9d\x81\xa5\xbf\x00\x2c\x7d\x45\x60\xe9\xb5\xbc\x9e\x35\x2d\x95\x16\x9d\x5d\xd9\xe7\xf0\x14\x08\x4a\x79\x79\x46\x23\xc0\xd1\x45\x3e\x97\x0b\xd6\x99\x4c\xa5\x6c\x9d\x85\x2c\xf8\x04\x25\xe8\xbb\x5e\x22\x78\x9f\x3a\x90\xb9\xd2\x58\x0d\x90\xd5\x6f\x75\xb7\x92\xcb\x08\x59\x31\xa0\x36\xbc\x97\x98\x00\x16\x77\x46\x11\xac\xf1\x48\x6c\x8a\xe3\xf2\x28\x02\xbf\x8e\x19\xa5\x70\x30\x0f\x2c\x8c\x8b\xe0\xde\xe5\x43\x37\x0b\xb8\xcf\x65\x32\x1d\x85\xb4\xea\x0d\xd0\x6a\x1e\xc3\x69\xa5\x9d\xa0\x52\xd8\x8a\x68\x6a\xe2\x5b\xac\xf7\x35\xd9\xcb\x9e\x70\x2d\xb6\xdb\x9a\xf0\xbe\xa7\xc0\x7e\xf1\xb9\x1a\x05\x13\xe9\x15\x32\xab\xc4\x98\xbc\x85\xab\x98\x2d\x6c\x69\xb0\x44\xa9\x4d\x4f\xe3\xa2\xb7\x73\x34\xce\xce\x4e\xb9\xb3\xaa\x1a\x1f\x1e\xba\xd4\x12\x21\x98\x9a\xcb\x4a\xfc\x2c\x81\x7a\xae\x08\xa0\xdc\x58\x21\x3b\x49\xdb\x30\x33\x94\x06\xf7\xb0\x63\x54\xc0\x1b\xe8\x13\x41\xdf\x8e\x5e\x6b\x6a\x37\xfa\x7c\xe5\xcd\xa6\xbe\x37\x01\x8e\xb1\xd1\x1d\x63\xb7\xea\xb2\x10\x9d\xe3\x0b\x81\xf2\x11\x7a\x19\x5c\x31\x1c\x81\x62\xe7\x3b\x7c\x88\x27\xd8\x7e\x34\x94\x63\xa3\x0f\x0f\x80\xa9\x23\xdf\xa4\x84\x20\x4f\xf0\x6a\x1a\xbb\x43\xcb\x59\xa3\x39\x14\x79\xeb\xa0\x61\xc8\xdd\x10\x0b\xe8\x7b\xb7\x96\x62\x5c\xcc\x5f\x5c\xfd\xff\xe5\xee\xee\xb0\x01\xfe\x06\xef\x23\xf5\xff\xbb\xdc\xe0\x3d\xb6\xcc\xba\x2b\xbc\x71\x45\xf1\x02\x87\x03\xe2\x79\x1c\x6d\x5c\x45\xf3\x19\x39\xc2\x79\x8a\x88\x78\x2b\x1f\x51\xde\xec\x6b\x16\x5f\xb1\xda\x60\x8a\x8e\xeb\x0b\xce\x73\x44\xb5\x49\x8e\xe9\x45\x53\x71\x13\x24\x66\xba\x5b\x24\xf1\x6a\x8d\x48\xf5\xb2\x94\x52\xad\x47\x0b\x98\x24\x74\x8b\xc6\xe2\x26\x0f\x04\xf3\xa4\xd6\xa9\x3d\x6a\x72\x3c\xb9\xa3\x56\x4b\x26\x39\xe9\x6b\x47\x45\x66\x99\x89\x02\x06\x5d\x91\x98\xf0\x8c\xbf\xc4\xc8\x95\xb5\x78\xc3\x41\x42\x1a\x3f\xf5\xc2\x08\x5a\xac\xc5\xc4\x55\x07\x85\x02\x68\x96\x57\x05\x6d\x19\xfb\xa7\x4a\x6c\xf8\x1e\xb0\xc4\xe8\xd3\xaa\x78\x55\x55\x62\x96\xf0\x1f\x82\x97\x1b\x1b\x9f\xce\xdf\x5a\xb5\x7d\xdf\x56\xcb\xa1\x9f\xbf\x8c\xd9\xa5\x4e\xa0\x6d\xdb\x9f\x69\x37\xfd\x02\x6c\x37\x58\xc1\x57\xc3\x97\xca\x1d\x3d\x94\x33\x82\x93\x9b\x0c\x52\x77\x27\xca\x0b\x7c\x6b\xe2\x8e\x79\x64\xd6\xf1\x0b\xde\x17\xc4\x62\x8a\xf4\xea\x54\x53\xf0\x80\xaa\x5a\x47\xf0\xce\xea\xd1\x51\x60\xc8\xc9\x83\xac\x3e\x49\xf1\x8a\xa4\x00\xb9\x7a\xa9\x73\x2f\xf7\xed\xca\x85\xc6\xd7\x6f\xae\x28\xb8\x6a\xef\x64\xc3\x48\xc7\x85\x77\x0c\xf4\xd9\x52\x7b\xe5\xe2\xf4\xc2\x3d\x0c\x1b\x8c\xb4\x16\xc9\x8f\x4e\x66\xc1\x7b\xea\x5a\x38\xb5\xbf\xd1\x27\xd5\xd4\x60\xaa\xb4\xca\x4f\x02\xb0\xf3\xef\xbe\xb3\x72\x82\xa3\xc8\x23\xb2\xd7\xcb\x9f\x75\x04\x26\x8b\x51\x6c\xb9\xc5\x42\xe3\x16\xa5\x90\xde\xc3\xb5\x32\xaa\xe0\x2b\xaf\x6a\x0e\xcb\x0a\x16\x95\x7b\xda\x3a\x7b\xd6\x30\xbe\xba\x2b\x04\xcc\x64\xfe\xd9\x0d\x7d\x51\xc1\x6e\x93\x69\x9a\x21\xba\xaa\x2f\xca\x34\xef\x06\x70\xdf\x25\x7d\x62\x14\x30\x65\xdc\xd9\xbc\x55\x19\x8f\x4d\xdf\x0a\x7b\xdf\x9b\xd4\x01\xc8\xad\x6c\xad\x05\x10\xf6\x9a\x7e\x00\x34\xff\x26\xb2\x02\x8c\x79\x8a\x46\x8f\x9e\xca\x8d\xde\xc8\xb5\x9c\xf6\xe4\x5f\x33\x88\xb6\x8d\x27\x39\xf5\x8c\xd1\x7b\x44\xb2\xa0\x65\xe0\x73\xef\x52\x07\x49\x5a\x11\x27\x85\x95\x60\x85\xe2\x47\x3a\xef\x7d\x43\xdb\x10\xcc\x26\xf7\x55\x26\xf7\x36\x05\x79\x60\xf0\x5f\xc1\x8d\x77\x9a\x89\xda\x3d\xcd\x41\xed\x3e\x02\x2e\x9b\xc0\xc6\xcf\xaf\xf0\x25\x2c\xc4\xb5\x98\x5d\xcb\x94\x8a\xac\xc3\x12\x37\x7e\xc1\x24\xc4\x41\xb1\xf4\x84\xe1\xde\x35\x9d\x25\x0d\xff\x2e\x7c\x58\x2d\xbf\xe8\x1e\x2c\x04\x3e\x36\x5c\xd2\x7c\x6c\xf8\x70\xbc\x8f\x9d\x7b\xc9\x7d\x9a\xea\x77\xe6\xbf\x65\xdf\x94\x07\x7b\x79\xdc\xbe\x7b\x80\xe7\x7b\xbf\x0b\x72\x84\xaf\xc0\xc7\xb1\xe3\x32\xf4\xd1\xd9\x51\x11\xc6\x2c\xa3\x29\x53\xad\x8e\x20\xc6\xbd\x3d\x19\xdd\xe9\x0d\xf4\xcb\x1b\xc6\xba\xac\x44\x8f\x4e\x8f\x89\xd9\x33\x5b\x47\xca\x21\xa3\xb5\x86\xb1\x4b\x7b\xf4\x1a\xb3\xbe\x00\xa8\xbe\xed\xee\xbd\xcb\x5f\x10\xed\x5b\x38\xfb\xd4\xf2\xf8\x8d\x65\x76\x3a\xb7\x2c\xf1\xa3\xd8\xd3\xd7\xb0\x15\xcc\x1e\x16\x80\x45\x60\xf2\x06\x01\x4c\x01\xfa\x04\x81\x31\x06\x39\xe2\xc4\xfe\xdd\xd9\x56\xcd\xdf\x72\x0c\x0a\x5e\xde\xe9\x1b\xd8\xbb\x5d\xbb\xa3\x87\xf9\xa2\x4c\xf2\x1e\xa0\x7b\xfc\x6b\x9a\xd9\x4e\xeb\xb9\x41\xb4\xd3\x47\xb3\x83\xf8\xdb\x50\x0e\x54\xb8\xbc\xd8\xc7\xd7\xdf\xd1\x67\xfa\x06\x9f\x6e\xac\xe4\x58\x11\xb4\x61\x76\x66\x7e\x66\x07\x8d\xa0\x14\x53\x8c\x1b\xa5\xcf\xd5\x9e\x97\x65\x7d\xb1\x88\x07\x87\x62\xb0\x36\xff\x19\x31\x21\x92\x43\xce\x7c\x81\xef\xf9\x06\x2a\xec\x54\x0a\x8c\xd3\x8d\xa0\x88\xce\x9b\x80\x98\x5e\xfd\xfa\xe6\x72\x04\x39\x33\x41\x35\x65\x66\x42\xc7\x2f\xb2\x87\xd3\x57\xb6\x72\x5c\x17\xb0\x7d\x33\xdf\x03\x81\x3c\xda\x01\xa1\x21\xbf\x33\x0b\xe2\x99\x2d\x48\xa9\xad\xc8\xf7\x32\x63\x94\xce\xe4\x3b\x06\x0a\xee\x04\x15\x28\xbb\x12\x74\x52\x6b\x1d\xd6\x59\xcb\x36\x84\xe7\x07\xe2\x22\x10\xf0\x03\x71\xb5\x9d\x6d\x9e\x41\x93\xca\x7a\x5b\x15\x2a\x38\x0a\xfc\x3b\x8d\x32\x50\x03\xf1\x25\x1b\x84\x16\xed\x9a\x49\x84\x5b\x39\xe9\xed\x0c\x5f\xd1\xd0\xe9\x44\xe4\xf9\x22\xb0\x7e\x1a\xf2\x8b\x06\x92\xc3\x80\xd7\x2b\x87\x18\x33\x28\xbd\x3c\xf3\xb7\xa5\xc2\xf6\x34\xea\xcc\xb6\xba\x29\x9d\xa5\x4a\x7b\xf3\x86\xe2\x22\xe0\x0d\xbf\x09\x69\x07\x22\xe5\x55\x48\x7e\x8c\x7d\xd4\x89\xb0\x28\xed\xc9\xa4\xa4\x7d\x05\xeb\x61\x80\x17\x89\x98\xc7\xb8\x41\x2b\xdf\x0e\xc0\x95\x71\x8f\xd9\xad\xbd\xaa\x14\xcc\x10\xff\xc4\x89\x5f\x9f\x5d\xed\xbc\x2e\xcf\xd6\xcc\x50\xba\x72\x31\x0c\x56\x2e\xf3\x16\x58\xac\x5a\xb9\x5b\x85\xff\xae\x79\x1f\xd7\xa5\x84\x73\xcf\xe2\x3a\xa2\xbd\x62\x90\xc3\x36\x1a\xf4\xf0\xde\xbb\x40\xd0\x64\x09\x33\x77\x9e\xc5\x00\xe5\xef\xe5\x6a\x08\xb6\x15\x7e\x95\x6f\xb5\xe3\xf9\x62\x1a\x73\x0e\x1c\x6a\xdc\xca\xf6\x4e\x62\x02\x98\xb9\x0b\x96\xac\xe9\x70\x71\x34\x57\xc7\xa3\xf5\xbb\xea\xa1\xfe\x30\x94\x79\x5c\x98\x97\x83\x7c\x66\x5b\x39\x7b\x31\x72\xc2\x30\xd8\x50\x0a\x09\xe3\xb2\xef\x23\x39\xcd\xa5\xcd\x34\xdc\x92\x9a\x3d\xb3\xac\xfd\x22\x80\x85\x28\x1e\xdc\x57\x2f\x6d\x90\xf4\x2f\xb9\x58\x25\x1f\xc5\xa7\xe1\xd3\xe8\x4a\x63\x33\x3f\x06\x6e\x34\xd1\xf9\x9f\x87\x72\x8f\x9d\x1c\x92\xb2\x4c\xec\x41\x24\xf7\xf0\x05\xb0\x4f\xba\x76\xf5\xe4\x61\x78\xfb\x1d\x5b\x84\x3c\x00\xdf\x96\xc7\x89\x3f\xea\xd5\x78\xda\x0e\x18\x35\xa8\xcc\xbf\xe9\xad\x7a\xf2\x1d\x96\x2b\x66\x0f\x29\xba\xfb\x4f\xae\xf4\xbf\x25\xea\x6c\xe1\x8b\xd0\x08\x3c\x6f\xf0\x47\x0a\x72\x77\x78\x68\xff\xec\x7b\x84\x17\x1c\x99\x66\x84\xc8\xd9\xe9\xf1\x9b\x17\x8a\x2a\x9c\xbc\xe6\x93\x38\x1e\x4f\xf4\x71\x3f\xa2\xa2\xa2\x26\x88\xd2\x6b\xe1\x7e\xc8\xfc\xdd\xa8\x38\x84\x27\x09\x55\xa7\xf7\x62\xc9\x83\x22\x3f\xb8\x7b\x51\x93\x8f\x7d\xd3\x6c\x3f\x25\xf9\x9a\xfb\x44\xbf\x09\x2e\x1e\x16\x7f\x5d\xf8\xa4\x51\x30\x91\x4f\x0e\x7d\xcf\x05\x7f\x4f\x5a\x2a\x31\x10\x5c\xce\xf6\xfd\x0e\x11\xf2\x24\x35\x22\x36\x88\xe0\x1b\xab\xf1\x59\xe0\xb3\xc8\xef\xf0\x75\xc0\xd7\xa1\x2c\x3f\x4b\x66\x70\x18\xca\x4e\x5a\xdf\x06\x31\x77\xf8\xe6\xdb\xc6\xf8\x53\xea\xd1\xbb\x07\xed\x03\x57\xc2\xc9\x0b\xd8\x88\xb7\x0f\x8a\x97\xb7\x61\x9e\xf9\x67\x62\x1e\xf2\xfe\xd8\x9d\x46\x21\x44\x31\x5c\xbd\x46\x49\xf0\x21\xd8\x04\xe9\xb2\x5a\xa0\x84\x29\x96\xdb\xa1\x91\x12\xa4\xb8\x36\x3f\x64\xbe\x5d\x1a\x42\xac\x6f\x95\x86\x92\xff\x17\x00\x00\xff\xff\xf1\x31\x50\x1a\xc7\x8e\x00\x00") +var _confLocaleLocale_enUsIni = []byte("\x1f\x8b\x08\x00\x00\x09\x6e\x88\x00\xff\xc4\x7d\xeb\x92\xdc\x46\xae\xe6\x7f\x3e\x05\xad\x0d\xad\xec\x88\x56\x29\x6c\xc7\x5e\xc2\x21\xc9\xdb\xee\xb6\x2e\x73\xd4\x6a\x1d\x75\x6b\x66\x67\x15\x0a\x0e\xab\xc8\xae\xe2\xa8\x8a\x2c\xf3\xd2\xe5\x9e\x5f\xfb\x1a\xfb\x7a\xfb\x24\x0b\x7c\x00\xf2\x42\xb2\x5a\xf2\x9c\x13\x7b\xfe\x54\x25\x33\x91\x37\x24\x12\x09\x20\x91\x99\xf9\x7e\x9f\x15\x65\xb7\x4a\x9f\xa5\xa7\xe9\x3e\xaf\xea\x6d\xd9\x75\x69\x57\x6e\x6f\x1e\x6f\x9a\xae\x2f\x8b\xf4\x65\xd5\xd3\x77\x7b\x5b\xad\xca\x24\xd9\x34\xbb\x92\x40\x5f\xd1\x5f\x52\xe4\xdd\x66\xd9\xe4\x6d\x41\x11\xe7\x16\x4e\xca\xdf\xf7\xdb\xa6\x65\xa0\x5f\x25\x94\x6c\xca\xed\x9e\xf3\xd0\x5f\xd2\x55\xeb\x3a\xab\x6a\xfa\xbc\xa2\x50\xfa\xba\x4e\xba\x66\x55\xe5\xdb\x2c\x48\x40\x84\xa5\xff\x94\xfe\x50\x17\xe9\x55\x5f\xee\xd3\xa7\xdd\x2e\xdf\x6e\x9f\xe7\x1d\xb2\xf4\x65\x9a\xaf\x56\xcd\x50\xf7\x4f\x9f\x48\x82\x14\xde\x0c\xbd\x95\x7e\x39\xf4\x12\x37\xec\x2d\xea\xc3\x3e\x69\xcb\x75\x45\x1d\x6b\x29\xea\xbd\x06\x93\x43\xb9\xec\xaa\x9e\x1b\xfd\x17\x09\x25\xb7\x65\xdb\x55\x0d\xb7\xe7\xcf\x12\x4a\xf6\xf9\x9a\x01\xde\xd1\x5f\xd2\x97\xbb\xfd\x36\x47\x86\x6b\x0d\x26\xdb\xbc\x5e\x0f\x02\xf3\x46\x83\x49\x32\x10\xe6\xea\x1c\x38\xfb\xa0\xc1\xa4\xdc\xe5\xd5\x96\xf1\xf3\x98\x03\x54\x6e\xd7\x1d\x1a\x60\xf1\x9d\x06\xa9\x8d\x59\x7f\xb7\x2f\xd1\xc4\xc7\xd7\x14\x4a\x56\xf9\xbe\x5f\x6d\x72\x8a\x39\x93\x50\x42\x40\xfb\x86\xda\xda\xb4\x77\x80\xb3\x8f\xa4\x69\xd7\x79\x5d\xfd\x23\xef\xa5\xfd\x97\xc1\x67\xb2\xab\xda\xb6\xe1\xae\x5f\x20\x90\xd4\xe5\x21\xe3\x72\x28\xe6\x6d\x79\x08\x4b\xe1\x94\x5d\xb5\x6e\xa5\x97\x9c\x78\x81\x2f\x2e\x85\xd3\x6e\x9a\xf6\xb3\x26\xbc\xe0\xe0\x28\x2b\x35\x42\x53\xe3\xfa\xf3\x9a\xf0\xa2\xa9\x17\xf8\x88\x00\xba\x24\x2f\x76\x55\x9d\xed\xf3\xba\x64\x1c\x9d\xf2\x17\xe1\x85\xbe\x12\x1d\xee\xac\x2b\xfb\xbe\xaa\xd7\x1d\x27\x4b\x54\x7a\xa5\x51\x49\x90\xe6\xe2\xb8\x3d\x5d\x76\x53\x96\x85\xb4\xa8\x4b\x5f\x50\x38\xd9\x0f\xdb\x2d\xf5\xfd\xb7\xa1\xec\x7a\x86\x7f\x47\xdf\xd4\x0b\xf9\x4e\xaa\xae\xa3\x00\x45\xbf\x46\x20\xa1\x01\xa8\x57\x68\xd2\x19\x02\x49\xf2\xb1\x2b\xf3\x76\xb5\xf9\x94\xc8\x3f\x6a\xe4\xc0\x62\xb1\x38\x3a\x34\x4c\x0e\x4a\x0a\x52\x83\x55\x90\xac\x9a\x82\x3f\xce\xe8\x8f\x8a\xae\xea\xae\x27\x92\xfe\x94\x68\x80\xc1\x24\x24\x68\xec\xab\x7e\x5b\xfa\x48\xcc\x8f\x8e\xc7\x21\x7d\x51\xb5\x5d\xff\xb8\xaf\x88\xe4\xde\x0f\x75\xc2\xfd\x23\x72\xce\x8a\xa5\xcd\xf2\x97\x0d\x61\x07\xd1\x2d\xf5\xef\xe2\xee\xea\x5f\xdf\x9c\xa4\xef\x68\xaa\xaf\xdb\x92\xc2\x29\x95\x41\x7f\x94\xe7\xc7\x45\x42\xb9\xac\xa6\xf3\xbc\xcf\x97\x79\x57\x7a\xb4\x72\xa2\xd0\xa8\x4b\x03\xa5\x32\xdb\x00\x8b\xe8\xfa\xa8\xbf\x73\x74\x4e\x65\xe8\xec\x70\x65\xbc\xe5\x29\x42\xf1\xcc\x35\x90\xf9\xdd\xb6\xe4\x78\x2a\x2a\x7d\xfd\xf6\xed\xe5\xf9\x2f\x69\x59\xaf\xab\xba\x4c\x0f\x55\xbf\x49\x87\xfe\xe6\xbf\x67\xeb\xb2\x2e\x5b\x62\x22\xab\x2a\xa5\x99\xd1\x12\x11\xa4\x44\x9e\xd2\xb9\x45\xd2\x75\xdb\x6c\x27\xe8\xbd\xba\x7a\x93\x5e\x30\x8a\xf7\x79\xbf\x41\x43\xfa\x4d\xd2\xfd\xb6\x65\x14\xb9\x0a\xaf\x37\x65\x7a\x53\x51\xaf\x01\xd4\xdc\x18\x3e\xd2\x42\xdb\xb8\x48\xca\xb6\xcd\x68\xde\xf7\x77\x99\x66\xd6\xf2\xc6\x90\x52\x04\x91\x4e\xdd\xf4\xe9\xb2\x4c\x91\x67\x91\x24\xd6\x60\xc3\xee\xe9\x7e\xbf\xad\x56\x32\x63\x5f\x4a\x9a\x47\x34\xb3\x68\xc5\x52\x08\x07\x44\x59\x5a\x80\x2e\xe2\x7f\x77\xcd\xd0\xa6\x11\x1b\x40\xfe\x4d\x49\x7c\x79\x33\xd0\x94\xcb\x89\xa7\x6e\x9b\xa1\xf8\x06\x94\x6a\xad\xf7\x84\x9a\xbe\x6f\xa8\xc1\xc0\x8e\x03\xf0\x55\x9c\x12\xc5\xf1\xaa\xd0\x96\xbb\x86\xb8\x83\x23\xf6\x8a\x08\xea\x50\x51\x22\xf5\xb4\xcb\x6f\x69\xbe\xf5\x4d\xda\x6f\xaa\x2e\x2d\x88\xd8\x56\x5c\x30\x4d\x8d\x81\xf8\xb1\x90\x05\x11\xa8\x90\x86\xc5\xc5\x63\x00\xa8\xdd\x40\xd4\xb4\xa1\xc2\x98\xdb\xf3\xd2\x44\x45\xce\xb5\x13\x5d\xa2\x72\x40\xdf\x44\xb9\x0d\xf1\x56\xe6\x7e\xe7\x08\xe8\x77\x58\x3e\xb5\x2a\xbf\xb9\xa1\x56\x75\x44\x15\xaf\xd2\xd5\xb6\x21\x92\xfa\xf0\xfe\x0d\x65\xde\xf4\xfd\x3e\xdb\x37\x2d\xc8\xf8\xfa\xfa\x1d\x4d\x8f\xb6\xf7\xb1\x01\xae\x19\xa6\x1e\x76\x4b\xfa\x3a\x6c\x2a\x62\x02\x79\x30\x40\x40\xc5\x96\x17\x98\x3a\x6d\xea\x05\xc6\x6a\x68\xb7\xa3\x61\xa4\x2a\x2d\xe5\x48\xf3\xb8\x09\x4f\xf8\xe7\xca\xb7\x12\xdd\xed\x68\x15\x3e\x60\x50\xa9\xab\x25\x56\x13\xa2\xad\x66\xcf\xe5\x06\xc4\x75\xa9\x11\x9e\xa2\xb0\x02\xb9\x74\x59\x87\x28\x15\x6b\x7c\xc0\x4b\x77\xd4\x61\x9d\xcd\x57\x17\x84\x06\x4c\x69\xc4\xde\xb4\xcd\x8e\x62\x5f\xd0\x9f\x8f\xf0\xcd\xbf\xe0\xf2\x00\x93\x17\x05\xb1\x99\xee\x24\x7d\xff\xe2\x2c\xfd\x2f\x3f\xfe\xf0\xc3\x22\x7d\xdd\xf3\x84\x60\x1a\xf9\x3b\x8f\x2d\x05\x65\x41\x74\xa0\x34\x73\x7b\x1a\xfe\x07\x4c\xe0\x0f\xd2\xa7\x48\xfd\x1f\xe5\xef\x39\xad\xb3\xe5\x62\xd5\xec\x9e\xf3\xe4\xde\xe5\xfd\x22\xe1\x14\xa2\x1a\x25\xa7\xab\xb2\x2e\x28\xa0\xcb\xaa\xa6\x05\x5c\x47\xd3\x83\x45\x56\x56\xff\x6c\xd5\xd4\x37\x55\xcb\x1d\xfa\xb5\xce\x97\x84\x13\x93\x0b\x88\x1d\x23\xc5\xd6\x2e\x42\x1a\x4d\xe4\xea\xe6\xce\x83\xa2\xab\x6f\x39\x52\x07\x34\x61\x59\x89\x0a\x55\x91\xc9\x61\xf9\x0a\xd1\x18\xb7\x4b\xea\x5e\x6b\xf8\xee\x3c\xc2\x9b\x9b\x9b\x2d\x31\x36\x63\x56\x5a\xc3\xa5\xc4\x0a\xdf\x0a\x41\x88\x18\xf7\x90\x6c\xce\xab\x0e\x90\x67\xe7\x6f\xd3\xf2\x96\xa8\x8d\xc8\x61\xdf\x36\xc5\xb0\x02\x85\x31\xec\x49\xca\xcb\x04\xe1\x97\x38\xc3\x4a\xd8\x5b\x30\x57\xb9\x69\xcc\x10\x56\x04\x44\x53\xb4\x90\xf2\x32\x41\x50\x6b\x82\x84\x55\x73\xc5\xc2\x61\x98\x36\x9b\x61\xd2\x3a\x8c\x52\x37\xce\x4b\xc3\x5d\x6f\xef\x52\xac\xfa\xa0\x8b\x55\x5b\x06\xb2\x5d\xb7\x48\x74\xad\x32\x09\x31\xbb\xad\x48\xa8\x08\x86\x0a\xa9\x26\x2e\x32\x7b\xf8\x33\x03\xb0\x98\xd6\xcd\xe6\x75\x0d\xbb\xe4\x8a\x39\x85\xfa\x4e\x95\x73\xfb\x3a\x34\x01\x35\xb0\xb8\x47\xc4\x78\x5b\x81\xd3\x28\xb2\xd0\x56\xc2\x18\xaa\xa6\xaa\xba\xb2\x44\x09\x94\xff\x09\x95\x89\x3c\x0b\x15\x61\x54\x14\xb1\x75\xf7\xaf\xcd\x90\x16\x4d\xca\x0b\x01\xd8\x19\xe5\xb6\xae\xd6\xda\x7d\xed\x73\xda\x56\xeb\x0d\xf1\x95\xe6\x70\x22\x48\x3b\x6c\x9a\x92\x69\xe7\xf5\xf9\xb3\xef\xa5\x1d\x6b\x66\x6e\x2e\x13\xb3\xc5\x7c\xe8\x1b\xa6\x53\x1d\x42\x69\x82\x5b\x5e\x00\x39\x11\x96\x04\x68\x2c\x9e\x9a\x00\x36\x5d\xad\x75\x9e\x84\x69\x3a\x41\x3c\x8c\xe4\x1e\x89\xb8\x2a\xc5\x64\xeb\x06\x92\x99\x49\x2d\xcc\xaa\x49\x94\xee\xfa\x6c\x5d\xf5\xd9\x0d\x4f\x58\x2e\xf3\x05\xe7\xe5\x95\x83\x52\xd2\x47\x94\xf4\x28\xa5\x59\x4f\x92\x63\xf1\x53\xfa\xf0\x56\x97\xeb\x1f\x79\x26\x66\xf9\x2d\xc1\x62\x30\x80\xe0\x96\x28\x5c\xa4\x05\x13\xdf\x8b\x86\xe8\x9c\x71\xde\x0d\x7b\x70\x74\x5d\xa1\x4f\xd2\xbd\x00\x16\xcd\xa1\xde\x36\x79\x01\x96\x43\xb3\xab\x82\xf2\xb1\xac\xea\x9c\x56\x17\x2b\x05\xac\xec\x21\x51\xc3\xdb\xcb\x6b\x00\xae\x9b\xe5\x50\x6d\x0b\x03\x58\x50\x0f\x6f\xf3\x6d\x55\xb0\x9c\xa5\xe3\x1e\xca\x34\x16\x55\x49\x5b\x56\x4d\xcb\xcb\x21\x7a\x63\x19\x8f\xac\xc3\x2d\xaf\x6f\x88\xa6\xbc\x0a\x8b\x7c\x6e\xc9\x64\x34\xd0\xc0\x43\x00\xe5\x05\x15\x14\x53\x75\xf5\xa3\x1e\x2d\x5d\x0d\x54\x17\x0d\x3a\x47\x53\xc6\x2e\x7d\xfc\x9c\x7e\x13\x5e\x9e\x85\xef\xad\xa7\x88\xe7\xc4\x54\x12\x07\x99\xa5\x51\x53\x23\xf2\x76\xd4\x65\xc4\x1b\xf4\x35\x6c\xaf\x91\x40\x37\x08\xbd\xb2\xa6\xb5\xa5\x61\x2d\xbf\xa1\xc0\x23\x9a\xc0\xeb\x2d\x06\x21\x87\xf4\x42\x62\x5c\x43\x78\x63\x02\x39\x91\xe9\x72\x43\x5d\x63\xde\xd9\xe7\x9f\xa9\x6d\x79\x4b\x42\x58\xf2\x91\xb5\xd1\x4f\xc9\x20\x02\x50\xb3\x2d\x9c\xb0\x09\x9a\x6e\xda\xb1\x8a\xe5\x81\x1c\xbd\x76\x24\x45\xae\x36\x99\xd3\x65\x19\x29\x7d\xf9\x3b\xd6\x3c\x24\x79\xd5\x96\x89\x9d\x93\x92\xdd\x1d\x86\x8b\x3b\x71\x71\xe7\x47\x8b\xc4\x1f\x9a\x22\x24\xa2\x2f\x1b\xc6\xda\x6d\xe9\xa0\xce\xc2\xd8\x38\x03\x95\x45\x82\x9a\x16\x15\x6b\x42\x94\x24\xea\x9a\xa6\x8a\xca\x46\xaa\xc8\x47\xd5\xb1\x3f\x25\x56\x41\x54\x64\xf2\x91\x98\x01\xe9\x25\xc2\x5e\x32\xd6\xc6\x6c\x70\xa8\x29\xc2\x73\x58\x31\x53\x7e\xe0\xd7\xc1\x4d\xb9\xe7\x25\x73\xd7\x61\x54\xb7\x04\x59\xdc\xa9\xec\xe5\xc6\xf7\x67\xe1\xb4\x34\xe0\xc4\x9f\xbe\x31\xed\xfd\x0f\x16\xf1\x4b\x45\x23\x89\xfc\xf1\xca\xc1\xeb\x35\x4d\xb5\x3d\xb0\x4f\x93\xe4\xee\x24\x8d\xd6\xa0\x4d\xde\x11\xf7\xa5\x05\x4e\xb3\x15\x0b\xd3\x0e\x78\xd4\xf2\x95\x90\x3c\x34\x79\x10\xa9\xe4\x6c\xda\xf1\x92\xc6\x2d\x14\x06\xa5\xb5\xb8\x05\x1f\xcb\x79\xb8\xea\xcf\xd4\x49\x08\xdb\x95\x2c\xf3\x65\x3b\xd1\xd0\xe5\x2b\xbd\x28\x13\x12\x4c\xd6\x34\x1f\x8d\xde\x9e\xb1\x4a\xb6\x86\x84\xaa\xe4\xc6\x00\x65\x1f\x72\x50\x85\xb0\x98\x9f\xcd\x62\x41\x13\xfb\x00\x7d\x95\xa6\xe6\x04\xfd\xb4\xd6\x50\xf2\xc2\x38\xb2\x2c\xb8\x90\x4f\x3a\x9a\xec\x1e\x89\xa7\x29\x8d\x7e\x1a\x42\xa9\x9c\xe8\xbb\xc5\x19\x78\xd2\x3f\x5d\x3e\x7f\xd8\x3d\x7d\xb2\x7c\xee\x58\xe3\x6a\x53\xae\x3e\x8b\x2e\x51\xd5\xcb\xe6\x77\x28\x5c\x34\xf0\x8c\xe3\x9a\xa7\xc8\xc3\x22\xdd\x50\x2a\x64\x72\x9a\xca\x94\x8d\x10\xcf\xa9\xd1\xa0\x51\x63\x78\xc6\x2f\xcc\xf6\xe3\x16\x07\x23\x24\xca\x8d\x4a\xa4\x65\xa4\xe6\x63\xee\x70\x54\x40\xb7\xa7\x1c\xcb\x94\x0b\x36\xef\x49\x17\xfd\xdd\x56\xbb\xaa\x9f\x90\x0e\xf3\x91\x5c\x49\x50\xf5\x7c\xc3\x25\xca\x02\x36\xd0\x16\xe2\xc6\x54\x0c\xad\x9b\x46\x4e\x87\x9c\xd4\x9b\x1f\x53\x22\xa1\x81\x56\x21\xee\x13\x35\x93\xd8\x71\xce\x0b\x2f\x29\x08\x79\x97\x0d\xb5\xa2\xb5\x2c\x8c\x98\x5e\x55\x58\x24\xb8\x5e\x23\xf9\x00\xca\x30\xaf\x72\x6e\xfa\xad\xc3\xf8\x77\x24\x14\xdf\xb8\x6c\xcc\xb9\xb9\x41\x15\xcb\x64\xf9\xec\xe0\x11\x67\xab\x4b\x51\xaf\x80\x01\x86\xe3\x81\x26\xe5\xc0\x8f\x1e\x69\x18\x9f\x29\x06\x03\xb2\x1c\xfa\xbe\x61\x99\x7b\xcb\x54\x23\x79\xac\xd5\x67\x00\x84\x1a\xe1\xcb\xc3\x80\x84\x78\x92\xb1\x29\x4d\x06\xce\xbc\x15\x4e\xb5\x95\x51\xef\x74\xa9\x73\x60\x85\xa8\xeb\x79\x7d\x67\xa4\x4c\x04\xc1\xad\xe0\x0a\xfb\xf9\xb6\x7c\xdb\x96\xdf\xf9\xd6\xb8\x39\x83\x1c\xd6\x22\xc9\x1e\xcc\xa7\xf7\x48\x05\x95\xb8\x59\x67\x2b\x97\x1a\x59\x3c\x7d\xb4\x31\x7a\x91\xce\x33\x83\x18\x2c\x89\x8d\x05\x10\x4d\xbd\x40\xee\xc5\xa8\x2e\xaf\xee\x4c\x31\xd8\xc7\x4d\xf6\x0b\x50\xdf\x34\x59\xb7\x11\xd5\xd2\x9a\x97\x6e\xcb\x7a\x1d\x99\x09\x60\x83\x05\xd1\xfd\x57\x5e\xe6\x48\x80\xcf\xb7\x9f\x92\x3b\xd8\xa3\xfe\x4a\x1c\xbe\x86\xbd\xae\x49\x28\x41\x94\x91\x0b\x04\x08\x94\x35\xa3\x4f\x09\x2f\x81\x6f\x47\x62\x1d\x2f\x11\x1a\x17\xc8\x17\x48\xfa\x35\x92\xd6\x6c\x08\x93\x77\x33\x22\xe0\xfb\xd2\xdb\x25\x11\x72\x5d\x24\x25\xfa\xda\x54\x1d\xd2\xa7\x3f\x97\x5a\xf8\x2b\x52\x9b\xbb\x0f\x50\x7b\x45\x87\x65\x85\xf7\x5d\x7e\xc7\x42\x97\x44\xeb\x07\x12\xae\xcb\x7c\xa7\xad\xe4\xa0\x14\x71\x4a\xcb\x99\x46\x72\x90\x56\xb9\xc0\xaa\x91\x40\xfc\xb0\x2e\x88\x2c\xa2\xcb\xbe\x13\xff\x4b\x35\x7a\xfe\x6d\x62\x8a\xf9\x5b\x92\x6f\xf7\x9b\x1c\xeb\x7f\x00\x06\xab\x03\x01\x61\xe0\x53\x80\x80\x16\x86\x5d\xd9\x56\x2b\x0e\x72\x86\x6f\x1f\x67\xdf\xc1\xe0\x44\x13\x85\x04\xc1\xb8\xb0\x82\x26\xc9\x3f\x55\x20\x87\x59\x48\x0c\xcb\xed\xaa\x7f\x58\x2f\xa2\xe2\x38\x9e\x78\x0e\x41\x40\x24\xf3\x50\x0e\x08\x0b\x23\x8b\x67\x7d\xca\x7c\xa1\x67\x11\x30\x2a\x7a\x97\xff\xfe\xa5\x8c\xbb\x66\x26\x9f\xb0\x02\x9f\xc9\x26\xbc\x76\x31\x66\x07\x04\xcf\xf6\x8d\xa3\xd0\x34\xf4\x0c\x52\x7f\xa6\x55\xad\x76\x60\x1f\xe4\x3b\xc5\xf7\x4f\x66\x02\xa7\x25\x44\x05\xe8\xd4\x19\xc3\x69\x71\x2e\x98\x6f\x42\x10\x5e\xf8\xe9\x16\x0a\xc7\x8e\x9c\x59\x8c\x34\x95\xdf\x31\x0e\x92\x28\x45\x4f\x20\x92\x5a\x78\xbb\x7d\xc6\x6b\x64\xc6\x42\x67\x1d\x8a\x96\x6e\xf5\xb4\xf5\x05\x10\x62\xf7\xcd\xa6\xf9\x46\x13\xee\x68\x76\x12\x05\x66\x72\x5f\x4e\x0d\x79\x47\xf2\xf7\x34\x65\x66\x0a\x70\x33\xe9\x68\x46\x19\x4c\x64\xa2\x9e\x17\x13\x5e\x30\xcd\xc8\x60\xa4\xf6\x6c\xb7\xe5\x9a\x4d\x4d\x56\x71\x54\x9b\x92\x10\x2d\x06\x02\x16\x12\x90\xc7\xb0\x1b\xac\x70\x5c\x43\x21\xde\x8d\x51\xac\x3e\x51\xab\x49\x1c\xa7\x20\xe7\x0c\x94\x28\x6d\x86\xae\xe4\x3b\xd6\x17\xba\x81\x59\x33\xeb\x16\x22\x9d\xc4\xa3\xc1\x0b\x2f\x8a\x2a\x51\xc5\xf1\xe2\x89\x16\x59\xe1\xfa\x52\xf9\x00\xfb\x83\x45\x87\xea\xf6\xb4\x60\x2d\xdc\x01\x1d\x2b\xd6\x29\x84\xe5\xef\x15\xcc\x76\x2f\x2b\x36\x07\x41\x25\x74\x9a\x30\xd2\x16\xc9\x96\x98\x01\xab\x1e\xd2\x2b\x91\x63\x9b\x5b\xd6\xdc\xb8\x3e\x4e\x95\x7c\x62\xc6\xd3\x4e\xf1\x38\xab\x72\x49\xca\x5c\x73\x28\x8b\x13\x5a\xe2\x39\x07\xb5\x13\x6c\x23\xdf\x1e\xf2\xbb\x0e\x36\x12\xe3\x38\x6c\xb2\x94\xec\xcc\x4e\x48\x00\x58\xa3\x55\xa1\x7d\x9a\x66\x9c\x61\xa2\x23\xde\xc9\x8b\x87\x5b\xa6\x0f\x50\x0f\xc1\x2d\xd4\xea\x42\x5a\x37\x2f\x7b\x58\x62\x75\xad\x61\xd5\x96\x15\x41\x96\xf1\x25\x39\x28\x08\x5b\x1e\xca\xf9\x67\xf2\x9e\xb0\x78\x44\xd5\xb0\xb0\x42\xfc\x58\x70\x4d\xf2\x1f\x61\x16\x4d\x0a\x6c\x05\x03\x95\xff\x58\xe4\xe2\x8a\x70\xc8\x7a\x96\x57\x9f\x79\x6d\xa2\x51\x31\xc3\xae\xc4\x43\xf9\x4d\xba\x9e\xa6\x00\x63\xda\x36\xdb\xfe\x2a\xf2\x95\xaa\xcc\x9c\x8a\x29\x06\x34\x75\x9b\x6a\x9f\x36\x30\x16\x86\x28\xf4\x64\x1b\x88\x98\x84\x8d\xa2\x84\xdc\xcd\x56\xd3\x36\xaf\xbb\x9b\x12\xe6\xd3\x5d\x7a\xc3\x3b\x41\x0b\xad\x9a\x25\x56\xd9\x74\x3b\x52\xb3\xe8\x30\xa8\x3a\x5c\x2d\x30\x76\xc1\x40\xc5\x55\x13\xcc\x2d\x6a\xd6\x36\x00\xab\xbe\xa4\xce\xda\xc0\x64\x36\x41\x01\xa4\xc6\x68\x93\xc2\x5a\x73\x5b\x86\x88\xb8\xf9\x67\x7b\x1e\x60\x5d\x2d\xc4\x62\x56\x8f\x87\x49\x2a\x85\xb5\x02\x7b\x4c\xcb\xbb\xb8\xf7\x9c\xd5\x51\x00\xef\x78\xdc\x96\x5a\x0b\x4f\x0c\x9e\x2b\xa3\x02\x61\xa5\xf0\xba\x42\xd2\xe7\x50\xf9\x96\xd4\xc4\xd5\x26\x9a\x9d\xd7\x48\x49\x25\x65\x32\x41\x93\x8f\x5c\x35\xa9\xf1\x9b\xbc\x5e\x97\x6c\xea\xa2\x92\x78\xc9\xc3\xb7\x4a\xe8\x12\x49\x0d\x5e\xb7\x12\x66\x03\xb9\x65\x59\xd1\x84\x6c\x76\xf7\xe6\xac\x6a\x33\xd8\x74\xc9\xdf\x1b\x92\x21\x60\xe9\xfd\x13\x85\x58\xfa\xad\x93\x68\x6f\x67\x64\x67\x80\x7a\x50\xf5\x77\xd8\x74\x5a\x92\x0c\x2c\x4a\x1a\xc5\x90\x9a\x0b\xee\x00\xcb\xc5\x0b\x0b\xd3\x78\xe4\xcc\xf4\x78\x6a\x4b\x48\xe1\xc4\x8c\xf4\xc2\xc2\x09\x6b\xc9\xbb\x05\x16\x07\x16\xa6\x61\x9c\x0e\x96\x84\x47\x0f\xbb\x47\x3c\x60\x96\xb6\x08\xe0\xf7\x79\x4f\x6c\xb1\x16\x15\x45\x38\x54\x98\x55\x93\x5d\x11\xe0\x2a\x02\xb6\xc0\x8e\xae\xa0\xe2\x53\x42\xba\x24\xb6\x00\xa9\x6b\x12\x9a\xdd\xbe\x54\x16\xd3\xa9\xcc\xfb\x2f\x14\x54\x8b\x48\xea\xfc\x18\x54\x55\xc5\x36\x9e\x6d\xfa\x74\xf1\x1e\x50\x97\xa8\x09\x28\xb6\xff\x28\x79\x3f\x4b\xcf\x25\x60\x4a\xef\x50\xa1\x4f\x55\x91\x24\x7b\xe0\x3d\x0b\x5a\x2b\x03\xe1\x1a\x2d\xff\x81\x0d\xba\x1d\xaf\xec\x84\x05\x29\x05\x84\x6b\x5b\x02\x90\x02\x78\x0f\x35\x50\xd8\xd8\xb8\x0a\x4d\xae\x0e\xb6\x3b\x48\xdf\xe5\x7c\x0c\x76\x28\x97\x29\x9b\x3b\x89\x70\x48\x2f\xd2\x8e\xee\x72\x52\xa9\x6e\xab\xdc\x59\x66\x68\xb4\x78\xe3\x5d\x57\xd1\x17\xbc\xe9\x8e\x9d\xcc\xa9\x0b\x06\xef\x47\xe8\xd6\xc3\x1b\x0d\x26\xc3\xbe\x60\x9b\x96\xef\xf0\x07\x44\xb8\x0e\xc7\xe9\x81\xb5\x11\x5d\xb7\x6c\x4e\x9a\x11\xf0\x22\x55\x38\x6e\xd9\xdd\xc2\xa6\xcf\x8c\xef\x86\x4e\xa1\x62\x0c\x12\x1a\xf9\x25\x49\x95\x56\x03\x58\x08\xef\x01\x7a\x65\x5f\x0f\x08\xa1\xb5\x32\xdd\x34\x87\x74\x5b\xd5\x9f\x3b\xc5\xaf\xb3\x87\x98\x9e\x9c\x9e\x23\x82\x80\xc5\x52\xc3\x62\x55\x55\x0f\xe5\xcf\x89\x85\xc4\x10\x8f\xe0\xd4\x4f\xa1\x94\x55\x71\xcc\x0c\x74\xff\xe4\x0c\xd1\xe9\x29\xa2\x67\x61\xbd\x9e\xab\x59\xb0\xa3\xcb\xec\x57\x37\x76\x6e\x4a\x16\xb0\xc1\x0e\x5f\x2a\x17\x22\xfc\x34\x4d\xa7\xb6\x47\xcf\x7e\x38\x0e\x86\x0a\x85\xd2\xd1\x72\x10\x3a\x98\xd2\x18\xdb\xa7\x20\x28\x56\x0f\x49\x58\xd2\xf6\x60\x6e\x67\xd5\x4e\x7c\x6d\x3e\x68\xaa\x6c\xd9\x3b\xbd\x02\xc9\x0b\xd2\x94\x47\x9d\x09\x77\x0c\xde\x12\x2e\xa5\xfb\xc6\x47\x2d\xf1\xc4\xc4\x05\x41\x08\x16\xfb\xa8\xb1\x63\xca\xd2\x02\xcc\xf8\xfd\x05\x02\x33\xf2\x09\x37\x52\x84\x37\x3b\xd6\xd2\x6c\x23\xa1\xf0\x4c\xcd\xf8\x2e\x9d\x31\x1b\xa4\xbf\xc5\x96\xd7\xd8\xda\x10\x69\x4a\x5a\xc2\x51\x69\x7a\xd4\xa6\xc9\xdc\xb1\x7c\x07\xea\x5b\xd8\x1d\x23\xf8\x85\x50\x7f\x0e\xcb\xb0\xec\x8a\x0d\x9d\xc8\x93\x5c\x15\xb6\xd4\xa4\x08\x42\x00\x14\x8e\xce\xeb\x19\xa7\xc2\x8d\xd8\x20\x2e\x1e\x42\x0e\x40\x9d\x84\x62\x7d\xb2\xb4\x3d\xec\x90\xb1\xed\x5b\x1a\x74\x5a\x78\x47\x96\xa8\x09\x4b\x8b\xd8\x17\xb8\x57\x83\x0d\x59\xcf\xb5\x48\x83\xd4\xb2\x98\xff\x23\x64\x31\xde\x7a\x59\xb2\x75\xcb\x2a\x55\x66\xed\x52\x85\x65\x27\xd4\x06\xcc\x81\xd2\x99\x27\x0a\x60\x22\x6e\x22\xc0\x42\x10\xb3\x84\x5a\x74\x16\xd9\x79\x61\xb1\xfd\x0f\xb3\xed\x46\x15\x3a\xdb\xae\x6f\xea\x88\x6c\xb8\x8d\xa3\x15\x67\x42\x40\x94\x80\xf5\x57\x87\x3e\x58\x55\x75\xf0\xdd\xe2\xca\xd5\x88\x4c\xcf\x68\xa2\x28\x2c\xc1\x4a\x04\xe0\xb0\x2c\xe0\xc1\xe9\x02\x8e\x3b\x22\xe0\x77\x13\x33\x64\xcc\x5f\x4f\xa1\xc1\x10\x56\x04\x96\xe5\x01\x5e\xd0\x44\xfa\x53\x8d\x68\xc7\x88\x90\x6d\x57\xe7\x87\x72\x27\x3b\x8e\x5e\x24\x3a\x51\xb5\x61\x53\xad\x37\xd4\xaf\x6a\xc7\x5b\x8e\xe0\xda\xb6\xaf\xe5\xb5\x3a\xfe\xa2\x89\xd7\xac\x6b\xb6\xe1\x70\x0d\x0b\x74\xc6\x71\xdb\xa7\x5d\xdf\x36\xf5\xfa\xf9\x79\xc3\xea\x16\x5b\x42\x78\xa9\xf8\xf9\xe9\x13\x8d\x27\x96\xc1\x63\xc8\xfe\x8e\x2f\xab\xfe\xd5\xb0\x7c\xd4\xa5\x6b\x92\x0d\xb0\x80\x3c\xcd\xd3\x4d\x5b\xde\x3c\x7b\xf0\xb0\x7b\xf0\x5c\xf7\x99\xc5\x2b\xe8\x50\x3b\xb4\x3c\x7d\x92\x3f\x67\xe9\xb9\x6b\xb6\x24\xd4\xc6\x59\x9a\xdd\x4e\xc6\x97\xd8\xdf\x4e\x20\xd1\x7e\x6c\x4d\x97\x35\x30\x57\xb6\x8a\x1f\x2a\x70\xe1\x68\xdd\x8f\x8f\x0e\x9b\x89\x49\x91\x7d\x41\x05\x15\x06\xc6\x8e\x5b\xdd\x07\x4c\x93\x6d\x0b\xa9\xcb\x86\x05\x76\x9a\x0d\x03\xc9\xe6\x1a\x6f\xda\x30\xe3\x04\x24\x68\x94\x61\xf9\x29\x2b\xb5\x44\x24\x0d\x8e\xb3\x3a\x65\xe1\xa4\x90\x91\x56\x40\xbf\xcc\x53\xcd\x94\x09\x81\xd1\x1b\x41\x98\x60\x23\x1a\xfe\xc6\x18\x80\xf4\x3e\x98\xfe\x90\x5f\x4e\x91\x81\xe4\x17\x68\xdd\xda\x97\x37\xaa\x63\x23\x81\x16\xaa\x40\x9e\x7e\xdb\xe8\x9e\x44\x6a\x91\x68\x35\x09\xd0\x7d\x19\x91\x3b\x57\x47\x7f\x28\x85\x68\x13\x6a\xfb\x7f\x4b\x0b\x52\xc1\xfd\x74\x32\x81\x54\x27\xd3\xa9\x9f\x0b\x63\x11\x55\x77\xf3\x8e\xce\xa7\x60\x1a\x69\xa9\xce\x4d\x43\xcc\x07\x25\x04\xc1\x65\x55\x17\x32\x6d\x94\xea\xd5\xef\xc1\x91\x3b\x2d\xa6\x35\x03\xc1\xc6\xc7\x01\xfd\x0e\x90\x7f\x15\x95\x1f\xd0\x06\x71\xab\xa1\x0e\xb8\x85\x4c\xc7\xac\x6f\xc4\xd6\xa5\x9d\x7c\x47\xfa\x06\x7c\x9e\x4e\xa5\xc0\x6b\x4e\xee\xd4\xef\x4e\x37\x45\x2d\xcb\x4b\x8d\xc4\x80\x03\x30\x41\x52\xe7\x10\x81\x2f\xaf\x7a\x5a\x29\xba\x5f\xad\xde\x4c\x18\x03\x9a\x7a\xc6\x1f\x36\xb2\x7f\x9d\x9e\xbe\x7b\xbd\x48\x5c\x7d\x56\xe6\xaf\x39\xc9\x4c\xd2\x82\x83\xd3\x7a\x99\x94\xc6\xfc\xc5\xed\x96\x48\x76\x33\xb2\x21\x27\xc8\xd9\xf5\x69\xd2\x1f\xe9\x4b\x9c\x2e\x28\x2e\xbb\xc0\x12\x20\xb5\xa1\x25\x63\xce\xec\x7a\xfa\x0d\x21\xd6\xd9\xa3\x78\x45\xd8\xdf\x31\xaf\x0b\x3c\x55\x72\x41\xd0\x01\xdc\x6a\xe4\x22\x43\x90\xd0\x86\x53\x96\x6f\x5b\x37\x57\xac\xc1\x3a\x5b\xc2\xd8\x80\x12\x40\x86\x7b\x1b\xcf\xa8\xbd\x7e\xa1\x0b\x1b\x2d\x4a\xfa\x68\x7e\xa6\xc2\x46\x65\xff\x95\xdb\x25\x92\x99\xe2\x38\x54\xcd\xa8\xcc\x43\xb9\x65\x4f\x3a\x6d\x90\xdf\x84\x54\x45\x2c\xda\x82\x54\x20\xb7\xf9\xc8\x9e\x8b\x4e\x92\x90\xb1\x0d\xad\x23\x56\x18\x41\x10\x01\x63\xd7\x51\x34\x28\x63\xf7\x67\xa7\x6f\xdf\x5e\x5e\x7b\x2e\xcf\x94\x55\x17\xb4\x16\x7d\xe3\xfc\x6f\x26\xed\x32\x2f\x1c\xb4\x0f\x0e\x59\x11\x84\xf7\x03\xd2\x1c\xc7\xe0\xc2\x89\x6f\xa5\x53\x70\xdd\x60\x36\x37\xdc\x16\xc9\x51\xc4\xed\x2f\x8e\x29\x28\xc9\x47\x5e\x1e\x3f\x25\x66\x63\xbc\xe4\xff\x24\x34\xd3\x06\xa6\x71\x50\xb3\xb7\xa0\x7b\x77\x53\x6a\x40\x53\x4c\xcc\xb6\x60\x7b\x43\x0e\x09\x94\x70\xdf\x80\x91\xde\xa4\xd8\x5d\x3b\x61\x2b\x54\xd3\x82\x06\x19\xb9\x43\x5d\xfd\x36\x60\x7d\x67\xf9\x93\xe4\x15\x76\xeb\x5a\x56\x5b\xe1\xb6\x7f\x76\x1f\x12\xcf\xa1\x91\x2f\x66\x50\x39\x7d\x3d\xed\xf6\xec\xa9\x46\xdc\xb6\x7b\xf6\x60\xa8\x52\x36\x6a\xb0\x67\xc8\x83\xe7\x24\x2d\xf2\x2e\x35\x0d\x1f\x41\x3c\x67\xc3\xc4\x67\xb3\x77\x8d\xbd\xe4\x91\x66\x8e\x94\x9c\x06\x6f\x4a\xc4\xce\xb4\x42\x65\x6b\x31\x58\xf4\x62\xe9\x4a\x83\x5e\x30\x77\x66\xea\xfe\x5c\x86\x98\xd2\x1d\x09\x1d\xd7\x73\xfa\x6b\x2b\x78\x83\x4a\x3c\x1f\x59\x48\x83\xe3\x0a\x2e\xd2\xd7\x7b\x45\xe3\xbd\x62\x85\x6a\xb1\xae\x7a\x92\xe9\xf9\x68\x07\x34\x6d\x9a\x30\xc4\x14\x71\xda\x41\x42\x16\x33\x93\xd7\x60\x91\xb1\xaa\xab\x3e\xe3\x75\x7a\x27\x1e\xec\x54\x6c\xbe\x15\x19\x28\x46\xb4\x6c\x18\xa7\xef\x7f\x3d\x3d\xbf\xf8\x75\xb1\x2b\xcc\xa1\x45\xf1\xa9\x9e\x2c\x01\x46\x8b\xf2\x26\x1f\xb6\x66\x6a\x43\x87\x11\x91\xfe\x82\x08\x3d\xfc\x40\x5a\x11\xe1\xef\x56\x96\x44\x39\x0e\xf1\xda\x62\xbe\x65\x99\xf7\xbb\x23\x06\xa8\xf1\x2e\xce\x1f\xb7\x43\x8d\x4b\xb8\xdf\x1c\xc5\x5b\xfc\x19\x1b\x17\x53\x75\x03\x89\x36\x3f\x13\x3d\x9c\x61\x4e\xf8\xee\x74\x86\x78\xe1\x87\xa9\xc7\x69\xd9\x74\xa3\x3c\x26\x69\xd2\x81\xcb\x6d\x8a\xdf\xc7\xcb\xed\x50\x6a\xb0\xcd\x8b\x6a\x20\xe1\x50\xf0\x68\x34\x6e\x35\xe9\xb0\x5c\xe8\x99\x91\x60\x5c\x14\x62\x01\xef\xe5\xcc\xd4\x00\xde\x37\x67\x11\x5b\x55\x3f\x07\x65\x1b\x01\x70\x47\x35\x97\xb8\xd7\x12\x29\x3e\xaa\x70\x88\x83\xac\x1d\xdb\x4c\x6d\xbb\x3e\x0f\xfd\xcd\x13\x99\x14\x36\xd3\x74\x8a\xdc\xb8\xb9\x06\xcf\x65\x76\x4b\x8d\x27\x19\x8e\xb7\x04\x98\x0a\x9d\x49\x98\x9b\x15\xcc\x8e\xf7\x77\x19\x5b\x6e\xc0\x81\xf7\x77\x09\x5c\x2e\x68\xfd\xca\xb0\x3c\x4a\x24\xf8\xe1\xb6\xda\xcb\xe1\x28\x4a\xa8\x4a\xf1\x9b\x44\xe0\xf2\x5f\x12\x41\x8a\x1b\x21\x0c\x34\x4e\x4c\x71\x02\xf1\xdd\x9f\xc1\x9e\x7a\x16\xcf\xc5\x92\xfc\xec\x41\xb6\xa4\x39\xfa\xf9\x41\x20\xae\xf3\xd9\x2a\x96\xd1\xbf\x21\x41\xea\xa0\xfb\x9d\x1f\x24\x94\xd8\xf7\x5f\xf0\x35\xb0\x1f\x9e\x6c\xae\x72\x20\xd1\x2f\x36\xc8\x26\x7a\xa4\x87\x99\x51\xc2\x02\xa9\xb2\x0d\x12\x46\x43\xce\xf1\xdb\xc0\xbd\x14\x4d\xe3\x59\xfa\xaf\xfc\x95\xbe\xe4\x2f\xed\x0a\x4f\x63\x37\x47\x31\xc2\xa3\x89\x1d\x3a\xa6\x81\xe3\xa8\x77\xa7\x9f\xd3\xe2\xcd\x12\x60\x5f\xdd\x58\x0c\x90\x5d\xa0\x93\xfd\xc0\x5b\xf6\x3c\xee\x56\xdb\x3b\x8a\x81\x3f\x39\x47\xf2\x92\x15\x94\xe0\xac\xf5\x51\x19\x89\x63\x15\xca\x22\xfa\xb6\x84\x78\x45\x7f\x9a\x96\x11\x70\xd6\xe7\xb0\xcf\x0a\x10\x91\xdc\x7f\x4e\xaf\x29\x46\x21\xca\x30\x29\x51\x50\xa4\x8f\x0f\x11\x61\x1a\x75\xe0\xb8\x1c\x20\x92\xdf\x96\x5d\x4f\x28\x82\xae\xeb\x3e\x12\x6e\x63\xd5\x8b\xe7\x20\x42\x89\xfa\xb5\x8a\x0d\x5e\x82\x09\x2c\x9c\x6d\xce\x5e\x62\xef\xf3\x83\x7c\x12\xa6\xf5\xd4\xd1\x2b\x09\x49\x34\xfc\x9e\x05\x14\xde\xd1\x0e\x1e\xcb\xb8\xd2\xf0\x3b\x0b\x27\xd6\x80\xc5\xb4\x21\x96\x32\x3a\xf4\x94\xae\x46\xe9\x37\x22\xde\xbf\x60\xe1\xde\xe2\x72\xf0\xaf\xd4\xbc\x38\x5c\xfc\x8e\xa6\xbf\x18\xf3\x2e\x24\xe4\x52\x0a\x71\x30\x3a\xe7\xf3\x75\x16\x67\x2e\x9c\x97\xfc\xef\x62\x89\x60\x74\xfe\xd0\x7f\xa2\x98\xe7\x58\x55\xe4\xe4\x94\x95\x8f\x5e\x8c\xc7\x22\x48\xaa\x79\x11\x5c\xc2\x88\x4a\xb4\x8f\xf4\x30\x79\x45\xf8\x6f\x33\x97\xff\x8c\x3f\x85\x43\x46\xa5\xb8\xc1\x0d\xc7\x76\x54\x4d\x08\x43\x55\xcd\x82\x49\x75\x21\xa4\xd4\xb8\x9b\x03\x26\xc9\xb3\x8e\x60\x2f\x29\x22\x24\xad\xa8\x60\x96\x99\x46\x25\x43\x8c\x9a\x87\xa7\xa5\x81\x9d\xe5\x21\x48\x6a\x70\xda\xce\x00\x48\x9a\x99\xcf\x80\xb2\xb2\xeb\xe1\xa8\xe3\x63\x20\xb5\x58\x38\x86\x30\x1e\x3d\x3f\x3e\x34\xb4\xe3\x01\x92\xc4\x6c\xbf\xcd\x57\xa5\x73\xf8\x05\x10\x56\x5d\x3e\x9f\x17\x55\xe3\x0a\xd3\xca\xa2\xf2\x80\xd0\x3e\x5f\x52\xf2\xc3\x02\xd8\x74\x99\x19\x57\x3e\x49\x50\x67\x89\x34\xb9\xd8\xcb\xd4\x4a\x8e\x8a\x0c\xd3\x48\x40\xe0\xc5\x47\x4c\xb4\x6f\x59\x5b\xe2\x30\x1f\xc6\x98\xc9\x71\x2f\x45\x8d\x61\x8e\x96\x3c\xa1\x1b\xcd\x79\xcf\xf0\x2a\x84\x4a\x1a\x90\x2f\xa6\x29\x0b\x76\xef\x76\x1c\xef\x14\x9b\xaa\xe0\x7a\x73\xa0\x52\x01\xfb\xc3\xb1\xa3\xa7\xaf\xb2\x50\xbd\x77\x2e\x93\x8c\x56\x91\x2d\xef\x34\x8f\x8c\x57\xc1\x5b\xb6\x47\xb2\xec\x78\x5f\x16\xcb\xa8\x66\xb9\x70\x11\x61\x16\x1e\x64\x14\x4c\x10\x12\x4e\x1f\x7e\xfc\xfe\x53\xc7\x25\x3b\xb3\xd8\x93\x87\x1f\x7f\xf8\x44\x6b\x2d\xfe\x78\xb1\xb5\xdc\xfb\xb6\xbc\xad\x9a\x01\x67\x48\x35\xe8\xa9\x11\x9e\xe4\x6f\xd9\x6b\x5c\xa3\x64\xd8\x4d\x23\xf3\x64\x19\xa7\xaf\x9a\x6d\xe3\xc9\x16\x5f\x63\x00\x51\xfd\x1e\x16\x23\xd6\x23\xc9\x20\x5b\x37\x18\x0f\xb1\x25\x57\x8f\x06\x44\x20\xcb\xa2\xe2\x72\x7e\xa5\xbf\x38\x61\xb4\xfd\x18\x27\x3a\xcf\x43\x69\x20\xfc\x0f\xed\x00\xd4\xb4\x14\xdd\xc4\x03\xa8\xd3\x3d\x67\xc1\xbc\xaa\xa2\x06\x67\x92\x1c\x64\x12\x41\x54\xd5\xfd\x77\x5e\x92\xaa\x5a\x4e\x81\x71\xd9\x6c\x95\x45\xaa\xec\x4f\x6a\xc9\xc7\xf7\xcd\xe6\xab\xf6\x26\x07\x69\xa9\xf7\xfc\x56\x9d\x37\x36\xf8\xe1\x00\x31\x96\xc8\x7d\xde\x96\x99\xec\x82\xe8\x52\xc9\x31\xba\xa5\xd3\xcd\xc3\x59\x47\x0d\xb8\x3f\x34\xa9\x13\x27\x58\x3e\x81\xa5\x38\x4f\x39\xb3\x79\x2f\x63\xf7\x42\xf3\x2f\xb4\x58\x9a\xe5\x24\x3d\x93\x92\xd3\x99\xd9\x50\x3e\x6e\xcc\x4a\xe6\x58\x79\xb0\x18\x7a\xe6\x11\x24\xcf\x70\xba\x20\x75\x9e\xdb\x8d\x01\x0a\xbf\x86\x3c\xec\xa2\xba\x49\x9a\x1c\xca\x4c\xd7\x73\x6a\x27\x7d\xa5\xf8\x1a\x37\x41\xd7\xac\x49\xd1\x56\xf2\xa8\x47\x34\x6a\xcb\x0d\x49\xe5\xe2\x88\x2b\x0c\x3c\x10\xab\x68\xd8\xd5\xc5\x44\xed\x2f\x3a\xf4\x51\xf1\xa3\xc5\x66\x16\x3b\x36\x61\xe1\xe3\x1a\x26\xcc\xe8\xd6\x61\xaa\xef\xf4\x39\xf5\x98\x05\x99\xf4\x5b\x3b\xa1\xf9\x5d\xdc\xc9\x52\x76\x49\xf9\x3f\x4c\x70\x47\x8b\xb4\xa8\x4c\xe8\x5e\x4b\x44\xe1\x1a\xe3\x8f\xdc\x9c\x38\x0f\xd1\x47\x77\x54\xdc\xe3\xdd\xee\x71\x51\x3c\x9a\xe9\x75\x40\xf4\xae\xdb\x23\x63\xb7\xb2\xdd\x11\xf5\x07\x25\x05\x1c\x64\x1e\x77\x0c\x10\x8d\xd3\x07\xf6\xb3\x29\x59\xf7\x4d\x0b\x8f\x37\x90\x77\x30\x76\x5d\x93\xee\xcb\x66\x4f\x68\x77\x46\x45\xb6\x80\x89\xe7\x61\xd8\x93\xd1\x8e\x77\x90\x34\x72\x90\xbe\xb7\x79\x86\x07\x9d\xb6\x6c\x51\xd9\x1d\x41\x89\x1c\x6e\x3e\x8a\x90\x80\xe7\x79\xa4\x3a\xbe\x37\x03\x38\xc7\xf5\x7c\xdd\xff\x9e\x9c\x6f\xae\xf2\x39\x12\xf8\x12\xef\x9b\xbb\x67\xc1\xe2\x16\x42\xdf\x70\x68\x91\x90\x4f\x0a\xce\x47\x01\x3f\x67\xe1\xb7\x07\xdb\x34\xcd\x67\x39\x23\xb6\x44\xd0\xa7\xac\xab\xde\x12\xf9\x08\xfa\xab\x38\x75\x99\x77\xd5\x2a\xbc\x20\xe2\x17\x8e\x98\x69\x62\xc1\x63\xdc\x66\xff\x10\x61\xea\x1c\x5f\xe9\xff\x62\xc2\x70\x20\xea\x8d\x72\x69\x67\x02\xaf\xd8\x27\xc5\xa5\xaa\x37\x40\x50\x95\x3a\x2f\x4c\xeb\xd2\x8d\x75\x56\x46\xe7\x8d\x9e\xce\xab\xe4\x58\x16\xa3\x8f\xb1\xfd\x88\xed\xf5\x6e\xf7\x7d\xe2\x60\x32\xe7\x58\x12\xfb\xbf\xde\x43\x28\xae\x29\xce\xb5\x8e\xb5\x62\x0d\x5e\x9a\x77\xde\x14\xcc\xd9\x90\xbd\x47\x5e\x6c\x72\xe2\x1d\x92\x5a\x36\xdc\xe1\x95\xc7\xde\x7b\x1c\x15\xbb\x02\x12\x5d\xcb\x81\x7a\x7f\x98\x06\x9e\xfd\xd8\x70\xe0\xb3\x44\x56\x2f\xee\x1a\x81\x5f\x2e\xbb\x38\x76\x62\xb2\x53\xff\x42\xf1\x35\x11\xdb\x73\xee\xce\xa2\xf1\x86\xd6\xd8\xca\xe8\xb6\x11\xfd\x81\x32\x71\x56\xb1\xa6\x22\x2d\x20\x9f\x91\x6b\x16\x70\x1f\x58\xbc\x46\x80\x86\x94\x4b\xe2\x4f\xb2\x21\x26\xd9\xf2\xc8\xb5\x51\xbc\x68\x61\x06\x54\x93\xfb\x32\x5f\x7d\x76\x2d\x62\xf6\x57\xb6\x3d\x9c\x0a\xa7\x68\x67\xa7\x86\x15\xc4\x8f\xa7\xfb\xe7\x8f\x61\xc9\x92\xfb\x07\xd0\x0b\x99\xe0\xd5\x4d\x80\x10\x6c\xec\xf1\x46\xdd\x6d\x55\x0c\x44\xde\x3c\x18\x8b\xa7\x4f\xf6\xcf\xe3\xfc\x44\x11\xb0\x6e\x1e\x2d\x63\x34\x70\x2c\xba\x54\x38\xcc\xc4\x5e\xbb\x70\x1f\xbd\xf1\x5e\xd1\x1d\x6a\x38\x3a\x8b\x02\x56\x14\x90\xba\xb1\x93\x2f\x38\xd5\x4c\x71\x62\xbb\x0e\xb8\x85\x06\x3b\x0f\x0e\x86\xa5\xab\x2c\x20\x6d\xec\x6e\x19\xcd\xce\x14\x25\xbb\x66\x23\x1b\xae\x77\x52\x75\x4d\xb3\x0c\xed\xf1\xe6\xc5\xbb\x38\xe9\xcc\xee\x8d\x03\xe5\xfd\x63\xcf\x31\xc5\x74\x52\x14\xe8\xcf\x59\x10\x7d\x3c\xc3\x68\x37\x3b\x2a\x2b\xde\xcd\x0e\x1a\x28\x4b\xcd\xb1\x72\xce\x66\xcb\xd0\x3d\xb7\xa0\x14\xf8\xa2\x57\xf0\x3a\xce\xf4\x80\xa4\xf8\xd1\xa5\x63\xb7\x5f\x4d\x3d\x6c\x9a\xe0\x78\x8e\x6c\xb1\x63\xb2\x86\x0d\x59\xc4\x7d\x3d\xc8\xfa\xa0\x78\xd1\xd5\x62\xb4\x8c\xd8\xe4\xb3\xb5\x04\x47\x3d\x76\x03\xf1\x96\x6d\x45\x83\x8e\x25\x43\xaf\xf9\xb8\xbc\xba\xc6\x05\x0a\xc4\x0b\x89\xd1\xac\x99\x5e\xd3\xbf\x6c\x48\x1f\x64\x67\x6c\xbe\x6d\x83\x7d\x64\xd6\x69\xb3\x5a\xb1\x67\x4c\x55\xeb\x01\xe5\x43\x69\x7b\xb8\x75\xb1\x15\x2f\x99\xd0\xc7\xc8\xf8\xae\x98\x6f\x53\xdc\xa8\xc1\x4c\xa0\xdb\x97\x2b\x12\x4a\x16\xe9\x1b\x12\xd1\xf8\x9a\x06\xb9\xc8\x03\x0c\xf3\x5e\x6b\xaf\xeb\x09\xcc\xae\xac\x8a\x2e\xa6\x0b\xa4\xbb\xef\xc7\x56\x49\xf4\x7b\xcf\x9e\xb8\xa2\x32\x73\x02\x89\x13\xe5\xf6\x46\xbc\xaa\x79\x1b\x1b\xa2\x9c\x5c\x0e\xc1\x5b\x69\x72\x66\x9e\x0d\xd2\x28\x40\xfd\x83\xe0\x0d\x80\xa3\x84\xdc\xb3\x7d\xd9\xb2\x38\x62\x9e\x74\xa1\x13\xd5\xb8\x4d\xd0\x35\xad\x5d\xaf\x85\x2d\x60\xf8\x20\xb8\xca\xb9\xcf\x13\xe6\xc5\x2c\xf3\x99\x87\x86\x6d\x51\xec\xe5\xac\x27\xaf\x74\x84\x2f\x1c\x54\x30\x10\x59\x3f\x70\xa0\x8b\x3d\xf6\x07\x1d\x0e\xf3\x4f\x04\x42\xb9\x9e\x99\x16\xe9\x82\xcc\x08\x92\xfd\xc7\x09\x84\xf7\x14\x01\x90\xb9\x8b\x8c\x59\x98\x82\x7b\x39\xe0\x55\x44\x89\x3a\xa7\x50\x62\x78\x04\x5e\xc8\xf7\x9e\x69\x14\x50\x79\x74\x83\x13\x7a\xa8\x47\x3f\x9f\xf2\xb9\xc5\xe7\x4c\xbd\x4f\x9f\x20\xe8\x14\x46\xa5\x3c\xbe\x30\x26\xa0\x38\xbe\x0c\xa4\x21\xfc\x61\xe9\x6b\xcb\x75\xde\x16\x76\xee\x43\xa9\x9f\xdd\x1a\x40\xe5\xa1\x5b\x5f\xbe\x25\x89\x5c\x8b\xa0\xd9\x4a\x20\x9f\xd9\xc8\x4b\x84\xc2\xd7\x1d\x99\x12\xc2\x9c\xbf\x90\xa9\xc5\x1e\x53\x44\xf0\xc3\x9e\xe7\x80\x4c\x28\xab\x07\xdd\xfe\xf6\x4f\x57\x97\x6f\x4f\xd2\xdf\x1f\x1f\x0e\x87\xc7\x9c\xfd\xf1\xd0\x6e\xd9\xb7\xa8\xe0\x73\x25\xff\xf3\xe2\xcd\x49\x5a\xf6\xab\xef\x16\x24\xbd\x63\x6a\x78\xb1\x57\x5d\x2e\xa0\xe4\x32\x59\xb2\x66\xf7\xcf\x4f\x99\xbd\x1c\x40\xd4\xcb\x79\xc2\xe3\x88\x21\xd3\xe6\x61\x37\x13\x98\x52\x81\x98\xc2\xbc\xc4\x58\x92\xae\x84\x03\xc8\x08\xf8\x04\x60\xd5\x86\xef\x03\xa3\x43\x84\x1b\xc4\x77\xbc\x65\x3d\x6c\x0b\xa1\x53\xe3\x68\xd4\x3b\x45\x59\x59\xfc\x3c\x2e\x09\x5b\x1f\xb8\x8b\xe4\x59\xfa\x27\x56\xf4\x18\xa5\x42\x05\x9c\x64\x54\x00\xe0\x90\x96\x30\xc3\x52\x3d\x4c\x5d\x8e\x13\xfc\x26\xd4\x79\xd9\xc3\xfb\x72\x8e\x36\xa4\xe5\xae\x6d\x7e\x34\x6d\xa2\xd2\xba\x46\x85\xb5\xc2\xbd\xc5\x93\x22\xa2\xe6\xd1\x1c\xe0\x75\xe9\x30\x9e\x07\xe3\x25\x49\x27\x99\x67\xf7\x3a\xc9\x26\x1c\x5f\x01\xbf\x34\xcf\x54\x82\x98\x48\x74\x41\x0d\x2a\xd9\x4d\x6a\x10\xbf\xac\x4c\x7b\x69\xc7\x22\xe0\xab\x75\xee\xe2\xe2\x25\xc8\xa8\x06\x0c\x24\x26\x19\x46\x48\xb7\x25\x31\x2f\x0b\x67\x38\x2f\x66\x91\x3b\xde\x15\x83\xc0\x09\x8f\x37\xaf\x6d\xa3\x77\xe2\x82\x18\x8a\x19\x52\xaa\xb9\xd8\x88\x2b\xd0\x28\x71\x7c\x49\xd6\x28\x99\x35\x0b\xb9\x85\xef\x4c\x42\x21\xb6\xf6\xdb\xe6\xce\xbc\x34\xcf\xf1\xa5\xc7\x1f\xc2\x9e\x79\x30\xed\x94\x87\x0c\x24\xf8\x26\x8b\x8b\xfb\x6b\x70\x10\x5e\xc5\x80\xfa\x2e\x15\x18\x76\xe1\x08\x45\xbd\xc8\x2a\x33\xd3\xbc\x19\x47\x3f\x07\x35\x76\x49\x3c\x77\x35\x1c\x71\x49\x8c\xb3\x86\x6e\x89\x41\xd6\xaf\x70\x4b\x8c\x91\x34\x75\x3a\xf4\x5d\xfd\x0a\xbf\xc3\xb9\x4e\x07\x06\x08\x25\xe3\x39\xc4\xcf\x64\x98\x33\x44\x14\x61\xdf\xbc\x25\x22\x34\x3b\x88\x6e\x50\x76\xb0\xe0\x8c\x14\xbe\xaf\xd1\x31\xe7\x5a\xe2\x51\x12\x20\xf7\x4b\x66\x89\xa2\xba\xb9\x59\x2c\xdb\xe6\xd0\xb1\xdf\x23\xae\xba\xe2\xad\x59\xfe\x4e\xaf\xf0\x2d\x20\x6c\x72\x05\x51\x48\x40\x22\x65\x2b\x91\x22\x25\x20\x91\xbc\xb4\x4d\xae\x1a\x3a\xa7\x14\xdc\xee\xc3\x37\x7f\xf1\x71\x05\x49\x59\x48\x16\x62\xe7\x87\x8c\x43\xf0\xd7\x84\x89\x84\x55\x71\x64\xba\xe2\x18\x05\xe3\xa0\x21\xdc\xbc\xbf\xd8\xb6\x6a\x07\x48\x20\x87\x79\x47\x30\x10\x96\xc1\x11\x18\x11\x43\x05\x41\xcb\x83\x84\x7e\x64\x04\x61\xb8\xf4\x10\x8a\x20\x4c\xfa\x5f\x5e\xbf\x95\x4f\x6c\x0e\xeb\x71\x1a\xec\x0e\xbf\x60\x37\x1d\xdb\x72\x5e\xcc\x6d\x3d\x5b\x9a\x6c\xe1\x8b\x7e\x6a\x37\x88\xe2\xcb\x41\x14\x6d\x7e\x03\x5b\x25\xff\xbb\x58\x12\xe6\x7c\xb6\x77\x6d\xf9\x78\x9c\x8d\x90\x23\xa8\xbe\x42\xc0\xc5\xab\xad\x91\xff\x5c\x5c\xce\x76\xc5\x00\x87\x0f\x0b\x8f\x11\xdb\xc0\x26\xba\x7b\x48\x0b\x6d\xc5\x0a\xb8\x12\xe8\xa8\x42\x50\x87\xbf\x21\x02\xb4\x83\xdb\x38\x0d\xa2\xcf\xd7\xce\xfb\x32\x5f\xcb\x9e\x8d\x4f\x83\x68\x6f\x47\xfa\xa2\x3c\xfe\x9a\x08\x33\x29\x78\x07\x05\x4a\xc7\x7d\x77\xab\xd0\xef\x81\x22\xd9\xe1\x01\xa7\xb2\xba\xcd\x62\x3c\x10\x6e\xef\x48\x71\x96\xe2\xdb\x41\x99\xa4\xc2\xe4\x92\xed\x8a\x40\x58\x11\x02\x0a\x97\x95\x8b\xbc\xfd\xcc\x17\x60\x61\x37\xcb\x0a\x38\xb4\x7a\x0c\x8b\xff\xc3\x11\xd3\x8b\xd7\xde\x49\x68\x52\x61\xbc\xdf\x8a\xdc\xd0\x99\x8c\x99\xba\x0c\x2c\x5d\xc9\x91\xbf\x37\x12\x92\x1b\x53\xc7\x94\x31\x75\x43\xa6\xb4\xc7\xe3\x71\x0b\xe0\x1d\xa2\xff\x52\xfe\xdf\xff\xfd\x7f\x88\x3d\xed\x1b\x5a\x2d\xe1\x20\xaf\x67\xb3\xfd\xb8\x9b\xb7\x95\xbf\x26\xef\x31\x78\x74\xd0\x10\x41\x7f\xaa\x3e\xe7\x14\x9a\xd0\x28\xdf\xa1\x65\xf4\x7d\xc5\x36\xaa\x98\xc8\xa1\xed\x78\x32\x87\x7d\x7c\x5c\x86\x11\x55\xa6\x6b\x84\x3b\x1b\x6a\x83\x8b\x41\x93\x13\x57\x4a\x74\xf3\x4b\x4a\xf2\x91\x74\xea\x4f\xfe\x06\x01\x37\x10\xd1\xed\x01\x50\x71\x3c\x8c\x21\xec\x25\x93\xdf\xf4\xc2\x50\x51\x19\xe5\xba\x12\x6c\x49\x99\x4f\xa5\x9c\xe8\x95\xf3\x1e\xae\x90\xb0\xa2\x47\x9d\x1d\xfa\xd0\x9b\x6c\x70\xac\x62\xe6\xe4\x4d\x78\x9a\x84\x34\x46\xdd\x94\x90\x93\xca\xba\x1d\x13\xdd\x1f\x0c\x7f\x21\xb3\xff\x98\x18\x58\x24\xba\x4f\xc0\x3e\x2c\x1c\xe0\xc3\xe4\x7c\x2b\x2b\x93\x9f\x58\x78\x5f\x23\x82\xe6\x35\x22\x70\x51\x02\xbc\x74\xf8\x3f\xc1\xf1\x54\x35\x52\x70\xac\x86\x34\x7e\x74\x04\xb6\x8d\xae\xfb\xf2\x9e\x4c\x38\x1a\x1f\xdd\xaf\xc5\x85\x03\x51\x33\x5b\x44\x93\x0b\x13\x30\x32\x88\xbd\x0f\x3a\xf2\x07\x7d\xb4\x85\xd5\x4e\xcf\x57\x71\x59\xc4\xe5\x74\xc7\x5b\x49\x06\xc7\xf5\xf9\x5e\x9b\x9a\x6f\xaa\x33\x2c\xbb\x6a\x82\x29\xb3\x91\xfd\x23\x9f\x8d\xc7\x2b\x5f\xd2\xe4\xf9\x59\xe0\xd9\x53\xa8\xea\xba\x40\x48\x40\x1e\x1f\x9d\x6e\x49\x41\xd8\x46\xca\x0c\x0a\x62\x51\xee\xe7\x23\x2e\x95\xd3\xab\x2d\xfe\xb8\x53\xe5\xb4\x8c\xfb\xdd\x2a\xff\xd9\xad\x8b\xf9\x63\xab\x2e\x79\x7a\x7e\xd5\x25\xcd\x1d\x64\xfd\x37\x6c\x24\x10\x49\x69\x33\x26\x73\xfb\xe8\x4e\x82\xe6\x71\x86\xe8\xe3\x57\x8a\xfc\xf1\xfd\x84\xe8\x22\x87\xaf\x90\xf6\xe2\x1e\x07\x82\x5e\xd4\x2a\x87\x10\x36\x58\xc5\x0e\xfe\xc7\xb4\x37\x2f\xb8\x46\x3c\x63\xac\xe3\x4d\xfc\xf9\xd1\xd3\x7b\xb3\xc4\xde\xfd\x61\x33\x9d\x79\xca\xfb\xc3\x9b\x15\x47\xfc\xfa\xc5\x9c\xf7\x65\xe7\xfe\x23\xf6\xe1\xfb\xbc\xfc\xc7\xad\x64\x5e\xe3\x2e\xfd\x0d\x1b\x79\x6f\x8e\x70\x99\x8d\xf7\x60\xfe\x2d\x9e\xff\xf3\x36\x58\xd6\x01\x0f\x66\x8a\xc1\xa2\x6c\xf8\xf3\x06\x05\xd6\x21\x0c\x5f\xa2\x64\x78\x86\xeb\x31\x37\xe0\x2e\xdf\x7e\xdc\x68\xf6\x78\x10\xee\xbd\xd0\x53\xed\x76\x66\x6c\x14\xef\x59\x1f\x1c\x2d\xf6\xe2\xb7\xef\x81\xe4\x1b\xe2\xce\x6c\xca\x38\x7f\x5c\x47\x7c\xde\xc1\x62\x9d\x19\xfc\x02\x01\x17\x4f\x58\x5b\x95\xf0\x47\x3f\x93\x90\x4b\x51\x5d\x4b\x2f\x67\xf1\x8d\x90\x8b\x37\x9e\xc1\x12\xea\x63\x75\xd5\x53\x5c\xb3\x4b\x2f\x0d\xca\xdd\x9e\x87\x30\x77\x27\xd1\x79\x98\x04\x50\xc5\x4d\x6d\x15\x24\xe4\x9f\xc6\x65\xc9\x25\x84\xba\x7a\xbe\x6d\x0e\x89\x2c\x9d\x0b\xbe\x2b\x22\x95\x8b\x22\x34\x26\x6e\x92\xc4\xb1\x8c\xa2\x07\xb4\xd0\x07\x12\xd3\xe5\x3c\xd6\x34\x7d\xe4\xa3\x8e\x95\xc3\x79\xa7\xdb\xbd\x2f\x2c\x80\x42\x6a\x80\x5b\x31\xcb\xf5\x21\x71\x2c\xb4\x54\x08\xb0\xbe\x5a\x91\x44\xa3\x7a\x43\x88\xaf\xa9\x98\xdb\x39\xa9\xee\xc4\xec\x5b\x38\x06\xcc\xae\xc7\xc2\x0f\x77\xd6\x0e\xb9\x27\xd5\xb5\xc3\x5d\xc2\xeb\xdb\x11\x42\x7c\x4d\x3b\xb8\x96\x27\xf0\x08\xe2\x41\xbc\xaf\x3d\xa4\x1c\xea\xa9\xe6\x70\xf7\xa4\x1b\x37\xd1\x3b\x79\x5f\x07\xeb\x35\x76\x20\x8b\x91\xfc\xc1\xe6\xcd\xe9\xc2\x29\x29\xb2\x11\x36\x23\x22\xc8\x46\xf1\xec\xe1\xb6\x2f\x4f\x71\x1e\x69\xe4\x74\xa0\xc1\x16\xb0\x07\x9b\x5b\x85\xb4\x5d\x5e\xa4\x83\x8c\x75\xa1\x72\x9d\x24\x7e\x79\xe1\x15\x38\x3b\x96\x26\xf2\x5d\xb8\x64\x40\xc0\xb3\x91\x2c\xe4\x12\x2c\x37\xc7\x99\xd5\x05\xb5\x4e\x0b\x73\xac\x1a\x50\x8e\x45\x4f\xe1\x8c\x77\x86\xd2\x59\x60\x6c\x65\xa6\x7c\x62\x32\xab\xec\xb6\x1a\xd4\x2e\xbf\x8b\x36\x80\xf9\x38\x1e\x6b\x64\xd1\xac\x39\xbe\x62\x4f\x9b\xe2\xd7\x6a\xb9\x59\xca\x11\xcc\x51\xa3\xcc\x22\x9c\xea\x53\x02\xf1\x64\xb7\x6e\x73\xb6\x85\xdb\x58\x33\xb3\x08\x48\x01\x05\xfe\xe4\x7a\xe9\x6e\xe9\xf6\xdc\x00\x3b\x6c\x54\xd0\xa3\xfb\x98\xc2\x1f\x68\x00\xd8\xc6\xfd\x2d\x00\x5b\x90\xfb\xb1\xa8\x19\x01\x0b\xb8\xaf\x21\x7a\xbd\xf6\xd7\x37\x04\x7c\xe3\x2b\x1b\x72\x62\xad\xd0\x5b\x59\x8a\x62\x76\xfe\xdf\xd7\xbe\x91\xba\x03\xe2\x8c\xae\xfd\x19\x11\x7c\xf4\xd4\x89\x23\xfa\xc0\x17\xc2\x8a\xc5\x06\x98\xfa\x66\xe8\x72\xe6\x8b\xaa\x69\x08\xa1\xca\xd6\x7d\xe8\xbf\x11\x1f\xc0\x61\x8f\x82\xbe\xbd\x53\x91\x84\x3b\x17\x9f\xff\xf1\xb7\x1b\x88\x12\x86\xbd\x4c\xb9\x0a\xea\x23\xd0\xfe\xe9\xc8\x9b\x45\x72\xf5\xbb\x6c\x4f\x77\xd1\xfb\x39\xd3\x5b\x79\xee\xbd\x11\x29\xbe\x09\x6a\x7c\x25\x58\x27\x27\x38\xd7\x26\xcb\xd9\xed\xda\x89\x77\xde\xb8\xba\x23\x1c\xec\xf0\xa0\xc0\x8a\x2f\xc3\x68\xea\x4a\xf6\xfd\x2f\x24\xc4\xf7\xa1\xb0\x29\x46\xed\x30\x7c\xb0\xd8\x7b\x18\xfb\xde\xc1\xb8\xc8\x36\x26\x15\x04\x24\x1c\xa4\x07\x37\xf4\xc0\xdf\xb2\xb5\x3b\x87\x7c\x09\x68\x09\x4c\x98\x43\xd0\x32\x6d\x07\x0a\x1d\xba\xb9\x1a\x33\xde\xa8\x4b\x75\x9b\xd2\x3d\x84\xc2\x4c\x82\xaf\xa1\x28\xf8\x1a\x0a\xb9\x6b\xff\x24\x88\x88\x70\x1e\x26\xec\xdd\x81\xff\x28\x3a\x5e\xf8\x7c\x3c\x0e\x3b\xc5\x51\x7c\xc2\x29\x8a\xc8\x57\x93\x5a\xcc\x80\x1d\xc6\x89\x2f\x5d\x18\xc3\xc6\x44\xde\xb0\x8b\x4a\x8f\xcf\xc1\x87\x49\x72\xb9\x55\x14\xa5\xf7\x79\xc7\x3d\x11\x9b\x6a\x18\xb7\x6d\xd6\x7c\x31\x17\x8c\x90\x71\xf7\x54\x76\x8e\xcb\x34\x97\xbe\xa8\x08\x38\x85\x87\x31\xd8\xd7\xea\xf3\x2e\xce\x8d\x29\x18\x46\xe8\xb9\xe8\x09\x20\xe9\xd4\xf9\x6a\x83\xfe\x2f\xe6\x08\xc9\x54\x63\x47\x4c\xfa\x92\xcf\x0c\xa4\xdc\xb9\x9e\xda\x0d\xeb\xb3\x30\xfc\x94\x0b\x2e\xb4\x0f\x52\xd9\x45\xb6\xce\xf4\xaa\x80\x46\x4f\x46\xb2\xbf\xac\xbb\x16\x20\xbd\xc4\x8c\xeb\xee\xcd\x14\xac\x62\x7c\x4a\x41\xaf\x22\xd0\x9c\x22\x71\xdc\xb3\x9c\xf9\x92\x75\x61\x54\xcf\x85\xdc\xeb\x6a\x9d\x97\x13\x58\xba\x31\xd7\x06\x47\x24\x5f\x55\xc6\xa8\x95\x1e\xc2\x15\xf3\xc7\x9b\x0a\xeb\x19\x1f\xd7\x82\x45\x2e\x6a\x64\xc4\xd6\x0c\xe4\x0b\x25\x8c\x9a\x38\x5b\xc4\x1f\x68\x24\x3f\x02\xb1\x5e\xb9\x4b\xf3\xcf\xf9\xbe\x95\x76\xc9\x07\xc3\x78\x0d\x2b\xe5\x31\x93\xa6\x8e\x2d\x70\xf3\xd9\xef\x6b\x19\x1a\xc4\x3a\xf7\x5c\xf1\xc7\xda\xd6\x96\xdd\x5d\xbd\xca\xf0\x82\x41\xb7\xd1\x8d\xca\xf7\xa5\xd8\xca\x1f\x2d\x28\xee\x49\xae\xa7\x73\x4b\x6c\xe9\x75\x8f\xe4\x42\xaa\x6f\x57\x14\x8f\x17\x14\x68\x89\x7b\x0c\x9e\x88\xdc\x26\xc0\x91\x78\xd6\x7f\x77\x6f\x45\xa3\xbe\x04\x0c\x31\xc0\x6d\x8b\xa6\xf4\xe5\x57\xf5\x20\xd8\x24\x0f\xbb\xc1\x64\xa0\xb3\x1f\xbc\x22\xbc\x79\x91\x11\xf7\x2d\x1f\x48\xe6\x1b\x74\xf8\x62\x6a\x75\xf7\xd1\x05\xcd\x5e\xa8\x50\xe3\xd1\x91\x0e\x85\xf5\xde\x33\x42\x8f\xa2\x56\x7c\xb9\x8f\xe1\x22\x24\x6f\xef\x0c\x7b\x3c\x80\xe6\x1e\xdd\xf9\x80\xef\x90\x29\xc8\x65\x58\xd9\xba\x69\x1b\x1a\x1e\x39\xfb\xa6\x17\x64\xbd\xb4\xb8\x6e\x26\x03\x4c\xe0\x77\xd9\xa0\xe7\x15\x2d\xcf\x05\xa2\x49\x7e\xe0\xc3\x8b\x3e\x57\xdf\xf4\xf9\xd6\xf2\xb0\x05\x72\xa5\x76\xeb\x6b\x4e\xb0\x5c\xa7\x96\x10\xe4\xd4\x3c\xcd\x92\xfd\x3d\x91\x45\x81\x2f\x35\x26\x80\xc5\x36\x07\x1f\x28\x23\x74\x0d\xfb\x8c\xbb\x8a\xb3\x48\x12\x9d\xbe\x41\x74\x7a\xcd\xd1\xd3\x1a\xac\x55\x2e\xdb\xa8\x51\xc7\xf2\xdd\xb4\xe5\x24\xcf\x0b\x3e\x3c\x3b\x86\x37\xcc\x6d\xca\x7c\x3f\xc1\xdb\x2b\x8a\x9c\x60\x0d\x90\x53\x04\x00\xf6\x38\x16\xc2\x5c\x55\x01\xc5\x2a\xcc\xf1\x9a\xa2\x8e\x41\xc3\x03\x60\x0c\x8f\xa7\xc9\x8e\xe4\xd0\x35\x7b\xdc\x2a\xdd\xb3\x99\xb4\xaa\x59\xfe\x1d\x0f\x79\x29\xf4\xa5\x7c\x06\x50\xcb\xa6\xe9\xf9\xbd\x84\x3d\x8b\x5b\xab\xcf\x0e\x4d\xbf\x58\x3c\x8b\x5b\xab\xcf\x13\x4c\x09\xf4\x14\x55\x02\x7d\x1c\x57\x3b\x3e\xb9\x4f\x75\xb5\xc3\xaa\x1f\x68\x82\xba\x0a\x2f\xae\xf8\x16\x80\x2b\x97\x30\xa9\x71\x92\x33\xa4\xd0\x71\xe6\xb9\x9a\x57\x24\x44\x94\xb3\x55\x9f\x71\xca\xbd\x75\x4f\xf2\x86\x95\x4f\xb2\xcf\xcd\x14\xdc\xff\xc8\x46\xe7\xe5\xb0\xfa\x5c\xf6\xec\x33\xbe\xc9\xb0\xc3\x1c\x96\xf5\xce\xc0\xd2\x5f\x00\x96\xbe\x22\xb0\xf4\x5a\x5e\xe3\x9a\x96\x4a\x8b\xce\xae\xec\x73\x78\x0a\x04\xa5\xbc\x3c\xa3\x11\xe0\xe8\x22\x9f\xcb\x05\xeb\x4c\xa6\x52\xb6\xce\x42\x16\x7c\x82\x12\xf4\x9d\x30\x11\xbc\x4f\x1d\xc8\x5c\x69\xac\x06\xc8\xea\xb7\xba\x5b\xc9\xe5\x86\xac\x18\x50\x1b\xde\x4b\x4c\x00\x8b\x3b\xa8\x08\xd6\x78\x24\x36\xc5\x71\x19\x15\x81\x5f\xc7\x8c\x52\x38\x98\x07\x16\xc6\x45\x70\xef\xf2\xa1\x9b\x05\xdc\xe7\x32\x99\x8e\x42\x5a\xf5\x06\x68\x35\x8f\xe1\xb4\xd2\x4e\x50\x29\x6c\x45\x34\x35\xf1\x2d\xd6\xfb\x9f\xec\xa5\x50\xb8\x16\xdb\xed\x4f\x78\x2f\x54\x60\xbf\xf8\xfc\x8d\x82\x89\xf4\x0a\x99\x55\x62\x4c\xde\xc2\xd5\xce\x16\xb6\x34\x58\xa2\xd4\xa6\xa7\x71\xd1\x5b\x3c\x1a\x67\x67\xa7\xdc\x59\x55\x8d\x0f\x0f\x5d\x6a\x89\x10\x4c\xcd\x65\x25\x7e\xe6\x40\x3d\x57\x04\x50\x6e\xc0\x90\x9d\xa4\x6d\x98\x19\x4a\x83\x7b\x28\x32\x2a\xe0\x0d\xf4\x89\xa0\x6f\x47\xaf\x49\xb5\x1b\x82\xbe\xf2\xa6\x54\xdf\x9b\x00\xc7\xd8\xe8\x8e\xb1\x5b\x75\x59\x88\xce\xf1\x05\x43\xf9\x08\xbd\x0c\xae\x18\x8e\x40\xb1\xf3\x1d\x3e\xec\x13\x6c\x3f\x1a\xca\xb1\xd1\x87\x07\xc5\xd4\x91\x6f\x52\x42\x90\x27\x78\x85\x8d\xdd\xa1\xe5\xac\xd1\x1c\x8a\xbc\x75\xd0\x30\xe4\x6e\x9c\x05\xf4\xbd\x5b\x4b\x31\x2e\xe6\x2f\xc2\xfe\xff\x72\x17\x78\xd8\x00\x7f\x23\xf8\x91\xfa\xff\x5d\x6e\x04\x1f\x5b\x66\xdd\x95\xe0\xb8\xf2\x78\x81\xc3\x01\xf1\x3c\x8e\x36\xae\xa2\xf9\x8c\x1c\xe1\x3c\x45\x44\xbc\x95\x8f\x28\x6f\xf6\x35\x8b\xaf\x58\x6d\x30\x45\xc7\xf5\x05\xe7\x39\xa2\xda\x24\xc7\xf4\xe2\xaa\xb8\x09\x12\x33\xdd\x2d\x92\x78\xb5\x46\xa4\x7a\xf9\x4a\xa9\xd6\xa3\x05\x4c\x12\xba\x45\x63\x71\x93\x07\x87\x79\x52\xeb\xd4\x1e\x35\x39\x9e\xdc\x51\xab\x25\x93\x9c\xf4\xb5\xa3\x22\xb3\xcc\x44\x01\x83\xae\x48\x4c\x78\xc6\x5f\x62\xe4\x0a\x5c\xbc\x09\x21\x21\x8d\x9f\x7a\x61\x04\x2d\xd6\x62\xe2\xaa\x83\x42\x01\x34\xcb\xab\x82\xb6\x8c\xfd\x53\x25\x36\x7c\x5f\x58\x62\xf4\xa9\x56\xbc\xd2\x2a\x31\x4b\xf8\x0f\xc1\xcb\x8d\x8d\x4f\xe7\x6f\xad\xda\xbe\x6f\xab\xe5\xd0\xcf\x5f\xee\xec\x52\x27\xd0\xb6\xed\xcf\xb4\x9b\x7e\x01\xb6\x1b\xac\xe0\xab\xe1\x4b\xe5\x8e\x1e\xde\x19\xc1\xc9\x4d\x06\xa9\xbb\x63\xe5\x05\xbe\x35\x71\xc7\x3c\x32\xeb\xf8\x45\xf0\x0b\x62\x31\x45\x7a\x75\xaa\x29\x78\x90\x55\xad\x23\x78\xb7\xf5\xe8\x28\x30\xe4\xe4\x81\x57\x9f\xa4\x78\x45\x52\x80\x5c\xbd\x24\xba\x97\xfb\x7b\xe5\x82\xe4\xeb\x37\x57\x14\x5c\xb5\x77\xb2\x61\xa4\xe3\xc2\x3b\x06\xfa\x0c\xaa\xbd\x9a\x71\x7a\xe1\x1e\x9a\x0d\x46\x5a\x8b\xe4\x47\x2c\xb3\xe0\x7d\x76\x2d\x9c\xda\xdf\xe8\x13\x6d\x6a\x30\x55\x5a\xe5\x27\x06\xd8\xf9\x77\xdf\x59\x39\xc1\x51\xe4\x11\xd9\xeb\x65\xd2\x3a\x02\x93\xc5\x28\xb6\xdc\x62\xa1\x71\x8b\x52\x48\xef\xe1\x5a\x19\x55\xf0\x95\x57\x3f\x87\x65\x05\x8b\xca\x3d\x6d\x9d\x3d\x6b\x18\x5f\x05\x16\x02\x66\x32\xff\xec\xc6\xbf\xa8\x60\xb7\xc9\x34\xcd\x10\x5d\xfd\x17\x65\x9a\x77\x03\xb8\xef\xd2\x3f\x31\x0a\x98\x32\xee\x6c\xde\xaa\x8c\xc7\xa6\x6f\x85\xbd\xef\x8d\xeb\x00\xe4\x56\xb6\xd6\x02\x08\x7b\x9d\x3f\x00\x9a\x7f\x63\x59\x01\xc6\x3c\x45\xa3\x47\x4f\xef\x46\x6f\xee\x5a\x4e\x7b\x42\xb0\x19\x44\xdb\xc6\x13\x9f\x7a\xc6\xe8\x3d\x22\x59\xd0\x32\xf0\xb9\x77\xae\x83\x24\xad\x88\x93\xc2\x4a\xb0\x42\xf1\xa3\x9f\xf7\xbe\xc9\x6d\x08\x66\x93\xfb\x2a\x93\x7b\xa0\x82\x3c\x30\xf8\xaf\xe0\xc6\x3b\xcd\x44\xed\x9e\xe6\xa0\x76\x1f\x01\x97\x4d\x60\xe3\xe7\x57\xf8\x12\x16\xe2\x5a\xcc\xae\x65\x4a\x45\xd6\x61\x89\x1b\xbf\x88\x12\xe2\xa0\x58\x7a\xc2\x70\xef\xa4\xce\x92\x86\x7f\x67\x3e\xac\x96\x5f\x88\x0f\x16\x02\x1f\x1b\x2e\x69\x3e\x36\x7c\x88\xde\xc7\xce\xbd\x0c\x3f\x4d\xf5\x3b\xf3\xdf\xb2\x6f\xca\x83\xbd\x3c\x96\xdf\x3d\xc0\x73\xc0\xdf\x05\x39\xc2\x57\xe5\xe3\xd8\x71\x19\xfa\x88\xed\xa8\x08\x63\x96\xd1\x94\xa9\x56\x47\x10\xe3\xde\xb2\x8c\xee\x08\x07\xfa\xe5\x4d\x64\x5d\x56\xa2\x47\xac\xc7\xc4\xec\x99\xad\x23\xe5\x90\xd1\x5a\xc3\xd8\xa5\x3d\x7a\xdd\x59\x5f\x14\x54\xdf\x76\xf7\x7e\xe6\x2f\x88\xf6\x2d\x9c\x7d\xba\x79\xfc\x66\x33\x3b\x9d\x5b\x96\xf8\x91\xed\xe9\xeb\xda\x0a\x66\x0f\x15\xc0\x22\x30\x79\xd3\x00\xa6\x00\x7d\xd2\xc0\x18\x83\x1c\x71\x62\xff\xee\x6c\xab\xe6\x6f\x39\x06\x05\x2f\xef\xf4\x0d\xec\xdd\xae\xdd\xd1\x43\x7f\x51\x26\x79\x5f\xd0\x3d\x26\x36\xcd\x6c\xa7\xf5\xdc\x20\xda\xe9\xa3\xd9\x41\xfc\x6d\x28\x07\x2a\x5c\x5e\x00\xe4\xeb\xf4\xe8\x33\x7d\x83\x4f\x37\x56\x72\xac\x08\xda\x30\x3b\x33\x3f\xb3\x83\x46\x50\x8a\x29\xc6\x8d\xd2\xe7\x6a\xcf\xcb\xb2\xbe\x80\xc4\x83\x43\x31\x58\x9b\xff\x8c\x98\x10\xc9\x21\x67\xbe\xc0\xf7\x7c\x03\x15\x76\x2a\x05\xc6\xe9\x46\x50\x44\xe7\x4d\x40\x4c\xaf\x7e\x7d\x73\x39\x82\x9c\x99\xa0\x9a\x32\x33\xa1\xe3\x17\xde\xc3\xe9\x2b\x5b\x39\xae\x0b\xd8\xbe\x99\xef\x81\x40\x1e\xed\x80\xd0\x90\xdf\x99\x05\xf1\xcc\x16\xa4\xd4\x56\xe4\x7b\x99\x31\x4a\x67\xf2\x1d\x03\x05\x77\x8c\x0a\x94\x5d\x31\x3a\xa9\xb5\x0e\xeb\xac\x65\x1b\xc2\xf3\x03\x71\x11\x08\xf8\x81\xb8\xda\xce\x36\xcf\xa0\x49\x65\xbd\xad\x0a\x15\x1c\x05\xfe\x9d\x46\x19\xa8\x81\xf8\x92\x0d\x42\x8b\x76\xcd\x24\xc2\xad\x9c\xf4\x76\x86\xaf\x68\xe8\x74\x22\xf2\x7c\x11\x58\x3f\x0d\xf9\x85\x04\xc9\x61\xc0\xeb\x95\x43\x8c\x19\x94\x5e\x9e\xf9\xdb\x57\x61\x7b\x1a\x75\x66\x5b\xdd\x94\xce\x52\xa5\xbd\x79\x43\x71\x11\xf0\x86\xdf\x98\xb4\x03\x91\xf2\xca\x24\x3f\xee\x3e\xea\x44\x58\x94\xf6\x64\x52\xd2\xbe\x82\xf5\x30\xc0\x8b\x44\xcc\x63\xdc\xa0\x95\x6f\x07\xe0\xca\xb8\xc7\xec\xd6\x5e\x69\x0a\x66\x88\x7f\x32\xc5\xaf\xcf\xae\x76\x5e\x97\x67\x6b\x66\x28\x5d\xb9\x18\x06\x2b\x97\x79\x0b\x2c\x56\xad\xdc\xad\xc2\x7f\xd7\xbc\x8f\xeb\x52\xc2\xb9\x67\x71\x1d\xd1\x5e\x31\xc8\x61\x1b\x0d\x7a\x78\xef\x5d\x20\x68\xb2\x84\x99\x3b\xcf\x62\x80\xf2\xf7\x72\x35\x04\xdb\x0a\xbf\xca\xb7\xda\xf1\x7c\x31\x8d\x39\x07\x0e\x35\x6e\x65\x7b\x27\x31\x01\xcc\xdc\x05\x4b\xd6\x74\xb8\x38\x9a\xab\xe3\xd1\xfa\x5d\xf5\x50\x7f\x18\xca\x3c\x2e\xcc\xcb\x41\x3e\xb3\xad\x9c\xbd\x18\x39\x61\x18\x6c\x28\x85\x84\x71\xd9\xf7\x91\x9c\xe6\xd2\x66\x1a\x6e\x49\xcd\x9e\x59\xd6\x7e\x11\xc0\x42\x14\x0f\xee\xbf\x97\x36\x48\xfa\x97\x5c\xac\x92\x8f\xe2\xd3\xf0\x69\x74\x45\xb2\x99\x1f\x03\x37\x9a\xe8\xfc\xcf\x43\xb9\xc7\x4e\x0e\x49\x59\x26\xf6\x20\x92\x7b\xf8\x02\xd8\x27\x5d\xbb\x7a\xf2\x30\xbc\xfd\x8e\x2d\x42\x1e\x80\x6f\xcb\xe3\xc4\x1f\xf5\x6a\x3c\x6d\x07\x8c\x1a\x54\xe6\xdf\xf4\x56\x3d\xf9\x0e\xcb\x15\xb3\x87\x14\xdd\xfd\x27\x57\xfa\xdf\x12\x75\xb6\xf0\x45\x68\x04\x9e\x4b\xf8\x23\x05\xb9\x3b\x3c\xb4\x7f\xf6\x3d\xc2\x0b\x8e\x4c\x33\x42\xe4\xec\xf4\xf8\x0d\x0d\x45\x15\x4e\x5e\xf3\x49\x1c\x8f\x27\xfa\xb8\x1f\x51\x51\x51\x13\x44\xe9\xb5\x70\x3f\x64\xfe\xae\x55\x1c\xc2\x93\x84\xaa\xd3\x7b\xb1\xe4\x81\x92\x1f\xdc\x3d\xab\xc9\xc7\xbe\x69\xb6\x9f\x92\x7c\xcd\x7d\xa2\xdf\x04\x17\x19\x8b\xbf\x2e\x7c\xd2\x28\x98\xc8\x27\x87\xbe\xe7\x82\xbf\x27\x2d\x95\x18\x08\x2e\x67\xfb\x7e\x87\x08\x79\xe2\x1a\x11\x1b\x44\xf0\x0d\xd8\xf8\x2c\xf0\x59\xe4\x77\xf8\x3a\xe0\xeb\x50\x96\x9f\x25\x33\x38\x0c\x65\x27\xad\x6f\x83\x98\x3b\x7c\xf3\x6d\x63\xfc\x29\xf5\xe8\xdd\x83\xf6\x81\x2b\xe1\xe4\x45\x6d\xc4\xdb\x07\xc5\xcb\x5b\x33\xcf\xfc\xb3\x33\x0f\x79\x7f\xec\x4e\xa3\x10\xa2\x18\xae\x5e\xa3\x24\xf8\x10\x6c\x82\x74\x59\x2d\x50\xc2\x14\xcb\xed\xd0\x48\x09\x52\x5c\x9b\x1f\x32\xdf\x2e\x0d\x21\xd6\xb7\x4a\x43\xc9\xff\x0b\x00\x00\xff\xff\xbb\x04\xe6\x60\x17\x8f\x00\x00") func confLocaleLocale_enUsIniBytes() ([]byte, error) { return bindataRead( @@ -787,7 +787,7 @@ func confLocaleLocale_enUsIni() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "conf/locale/locale_en-US.ini", size: 36551, mode: os.FileMode(420), modTime: time.Unix(1439198919, 0)} + info := bindataFileInfo{name: "conf/locale/locale_en-US.ini", size: 36631, mode: os.FileMode(420), modTime: time.Unix(1439206636, 0)} a := &asset{bytes: bytes, info: info} return a, nil } diff --git a/public/css/gogs.min.css b/public/css/gogs.min.css index 8db6ea28a..f905a93af 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 -80px 0;min-height:100%}.following.bar{z-index:900;left:0;width:100%;padding:5px 0}.following.bar.light{background-color:#fff;border-bottom:1px solid #DDD;box-shadow:0 2px 3px rgba(0,0,0,.04)}.following.bar .column .menu{margin-top:0}.following.bar .brand{float:left;margin-top:5px;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}.following.bar .searchbox{background-color:#f4f4f4!important}.following.bar .searchbox:focus{background-color:#e9e9e9!important}.following.bar .octicon{width:16px;text-align:center}.ui.left{float:left}.ui.right{float:right}.ui .text.red{color:#d95c5c!important}.ui .text.right{text-align:right}.ui .message{text-align:center}footer{margin-top:40px!important;height:40px;background-color:#fff;border-top:1px solid #d6d6d6;clear:both;width:100%;color:#888}footer .container{padding-top:10px}footer .container .fa{width:16px;text-align:center;color:#428bca}footer .container .ui.language.dropdown{z-index:10000}footer .container .links>*{border-left:1px solid #d6d6d6;padding-left:8px;margin-left:5px}footer .container .links>:first-child{border-left:none}.hide{display:none}.center{text-align:center}.img-1{width:2px!important;height:2px!important}.img-2{width:4px!important;height:4px!important}.img-3{width:6px!important;height:6px!important}.img-4{width:8px!important;height:8px!important}.img-5{width:10px!important;height:10px!important}.img-6{width:12px!important;height:12px!important}.img-7{width:14px!important;height:14px!important}.img-8{width:16px!important;height:16px!important}.img-9{width:18px!important;height:18px!important}.img-10{width:20px!important;height:20px!important}.img-11{width:22px!important;height:22px!important}.img-12{width:24px!important;height:24px!important}.img-13{width:26px!important;height:26px!important}.img-14{width:28px!important;height:28px!important}.img-15{width:30px!important;height:30px!important}.img-16{width:32px!important;height:32px!important}.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}.markdown{overflow:hidden;font-family:"Helvetica Neue",Helvetica,"Segoe UI",Arial,freesans,sans-serif;font-size:16px;line-height:1.6;word-wrap:break-word}.markdown>:first-child{margin-top:0!important}.markdown>:last-child{margin-bottom:0!important}.markdown a:not([href]){color:inherit;text-decoration:none}.markdown .absent{color:#c00}.markdown .anchor{position:absolute;top:0;left:0;display:block;padding-right:6px;padding-left:30px;margin-left:-30px}.markdown .anchor:focus{outline:0}.markdown h1,.markdown h2,.markdown h3,.markdown h4,.markdown h5,.markdown h6{position:relative;margin-top:1em;margin-bottom:16px;font-weight:700;line-height:1.4}.markdown h1 .octicon-link,.markdown h2 .octicon-link,.markdown h3 .octicon-link,.markdown h4 .octicon-link,.markdown h5 .octicon-link,.markdown h6 .octicon-link{display:none;color:#000;vertical-align:middle}.markdown h1:hover .anchor,.markdown h2:hover .anchor,.markdown h3:hover .anchor,.markdown h4:hover .anchor,.markdown h5:hover .anchor,.markdown h6:hover .anchor{padding-left:8px;margin-left:-30px;text-decoration:none}.markdown h1:hover .anchor .octicon-link,.markdown h2:hover .anchor .octicon-link,.markdown h3:hover .anchor .octicon-link,.markdown h4:hover .anchor .octicon-link,.markdown h5:hover .anchor .octicon-link,.markdown h6:hover .anchor .octicon-link{display:inline-block}.markdown h1 code,.markdown h1 tt,.markdown h2 code,.markdown h2 tt,.markdown h3 code,.markdown h3 tt,.markdown h4 code,.markdown h4 tt,.markdown h5 code,.markdown h5 tt,.markdown h6 code,.markdown h6 tt{font-size:inherit}.markdown h1{padding-bottom:.3em;font-size:2.25em;line-height:1.2;border-bottom:1px solid #eee}.markdown h1 .anchor{line-height:1}.markdown h2{padding-bottom:.3em;font-size:1.75em;line-height:1.225;border-bottom:1px solid #eee}.markdown h2 .anchor{line-height:1}.markdown h3{font-size:1.5em;line-height:1.43}.markdown h3 .anchor{line-height:1.2}.markdown h4{font-size:1.25em}.markdown h4 .anchor{line-height:1.2}.markdown h5{font-size:1em}.markdown h5 .anchor{line-height:1.1}.markdown h6{font-size:1em;color:#777}.markdown h6 .anchor{line-height:1.1}.markdown blockquote,.markdown dl,.markdown ol,.markdown p,.markdown pre,.markdown table,.markdown ul{margin-top:0;margin-bottom:16px}.markdown hr{height:4px;padding:0;margin:16px 0;background-color:#e7e7e7;border:0 none}.markdown ol,.markdown ul{padding-left:2em}.markdown ol.no-list,.markdown ul.no-list{padding:0;list-style-type:none}.markdown ol ol,.markdown ol ul,.markdown ul ol,.markdown ul ul{margin-top:0;margin-bottom:0}.markdown ol ol,.markdown ul ol{list-style-type:lower-roman}.markdown li>p{margin-top:16px}.markdown dl{padding:0}.markdown dl dt{padding:0;margin-top:16px;font-size:1em;font-style:italic;font-weight:700}.markdown dl dd{padding:0 16px;margin-bottom:16px}.markdown blockquote{padding:0 15px;color:#777;border-left:4px solid #ddd}.markdown blockquote>:first-child{margin-top:0}.markdown blockquote>:last-child{margin-bottom:0}.markdown table{display:block;width:100%;overflow:auto;word-break:normal;word-break:keep-all}.markdown table th{font-weight:700}.markdown table td,.markdown table th{padding:6px 13px!important;border:1px solid #ddd}.markdown table tr{background-color:#fff;border-top:1px solid #ccc}.markdown table tr:nth-child(2n){background-color:#f8f8f8}.markdown img{max-width:100%;box-sizing:border-box}.markdown .emoji{max-width:none}.markdown span.frame{display:block;overflow:hidden}.markdown span.frame>span{display:block;float:left;width:auto;padding:7px;margin:13px 0 0;overflow:hidden;border:1px solid #ddd}.markdown span.frame span img{display:block;float:left}.markdown span.frame span span{display:block;padding:5px 0 0;clear:both;color:#333}.markdown span.align-center{display:block;overflow:hidden;clear:both}.markdown span.align-center>span{display:block;margin:13px auto 0;overflow:hidden;text-align:center}.markdown span.align-center span img{margin:0 auto;text-align:center}.markdown span.align-right{display:block;overflow:hidden;clear:both}.markdown span.align-right>span{display:block;margin:13px 0 0;overflow:hidden;text-align:right}.markdown span.align-right span img{margin:0;text-align:right}.markdown span.float-left{display:block;float:left;margin-right:13px;overflow:hidden}.markdown span.float-left span{margin:13px 0 0}.markdown span.float-right{display:block;float:right;margin-left:13px;overflow:hidden}.markdown span.float-right>span{display:block;margin:13px auto 0;overflow:hidden;text-align:right}.markdown code,.markdown tt{padding:0;padding-top:.2em;padding-bottom:.2em;margin:0;font-size:85%;background-color:rgba(0,0,0,.04);border-radius:3px}.markdown code:after,.markdown code:before,.markdown tt:after,.markdown tt:before{letter-spacing:-.2em;content:"\00a0"}.markdown code br,.markdown tt br{display:none}.markdown del code{text-decoration:inherit}.markdown pre>code{padding:0;margin:0;font-size:100%;word-break:normal;white-space:pre;background:0 0;border:0}.markdown .highlight{margin-bottom:16px}.markdown .highlight pre,.markdown pre{padding:16px;overflow:auto;font-size:85%;line-height:1.45;background-color:#f7f7f7;border-radius:3px}.markdown .highlight pre{margin-bottom:0;word-break:normal}.markdown pre{word-wrap:normal}.markdown pre code,.markdown pre tt{display:inline;max-width:initial;padding:0;margin:0;overflow:initial;line-height:inherit;word-wrap:normal;background-color:transparent;border:0}.markdown pre code:after,.markdown pre code:before,.markdown pre tt:after,.markdown pre tt:before{content:normal}.markdown kbd{display:inline-block;padding:3px 5px;font-size:11px;line-height:10px;color:#555;vertical-align:middle;background-color:#fcfcfc;border:solid 1px #ccc;border-bottom-color:#bbb;border-radius:3px;box-shadow:inset 0 -1px 0 #bbb}.markdown .csv-data td,.markdown .csv-data th{padding:5px;overflow:hidden;font-size:12px;line-height:1;text-align:left;white-space:nowrap}.markdown .csv-data .blob-num{padding:10px 8px 9px;text-align:right;background:#fff;border:0}.markdown .csv-data tr{border-top:0}.markdown .csv-data th{font-weight:700;background:#f8f8f8;border-top:0}.pln{color:#333}@media screen{.str{color:#d14}.kwd{color:#333}.com{color:#998;font-style:italic}.typ{color:#458}.lit{color:#458}.pun{color:#333}.opn{color:#333}.clo{color:#333}.tag{color:navy}.atn{color:teal}.atv{color:#d14}.dec{color:#333}.var{color:teal}.fun{color:#900}}@media print,projection{.str{color:#060}.kwd{color:#006;font-weight:700}.com{color:#600;font-style:italic}.typ{color:#404;font-weight:700}.lit{color:#044}.clo,.opn,.pun{color:#440}.tag{color:#006;font-weight:700}.atn{color:#404}.atv{color:#060}}ol.linenums{margin-top:0;margin-bottom:0}.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 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}.ui.attached.header{background:#f0f0f0}.ui.attached.header .right{margin-top:-5px}.repository.new.fork form{margin:auto;width:800px!important}.repository.new.fork form .ui.message{text-align:center}.repository.new.fork form .header{padding-left:280px!important}.repository.new.fork form .inline.field>label{text-align:right;width:250px!important;word-wrap:break-word}.repository.new.fork form .help{margin-left:260px!important}.repository.new.fork form .dropdown .dropdown.icon{margin-top:-7px!important}.repository.new.fork form .dropdown .text{margin-right:0!important}.repository.new.fork form .dropdown .text i{margin-right:0!important}.repository.new.fork form input,.repository.new.fork form textarea{width:50%!important}.repository{padding-top:15px;padding-bottom:120px}.repository .head{height:40px;background-color:#FCFCFC}.repository .head .mega-octicon{width:30px;font-size: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 .num{font-weight:700}.repository .metas .menu{max-height:300px;overflow-x:auto}.repository .metas .ui.list .hide{display:none!important}.repository .metas .ui.list .label.color{padding:0 8px;margin-right:5px}.repository .metas .ui.list a{padding-top:5px;padding-right:10px}.repository .metas .ui.list a .text{color:#444}.repository .metas .ui.list a .text:hover{color:#000}.repository .filter.menu .label.color{margin-left:15px;padding:0 8px}.repository .filter.menu .octicon{float:left;margin-left:-5px;margin-right:-7px}.repository .filter.menu .menu{max-height:300px;overflow-x:auto;right:0!important;left:auto!important}.repository .filter.menu .menu .clickable .name{padding-left:15px!important}.repository .page.buttons{padding-top:15px}.repository .issue.list{list-style:none;padding-top:15px}.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>.item .desc a.milestone{padding-left:5px;color:#999!important}.repository .issue.list>.item .desc a.milestone:hover{color:#000!important}.repository.new.issue .comment.form .metas{min-width:220px}.repository.new.issue .comment.form .metas .filter.menu{max-height:300px;overflow-x:auto}.repository .comment.form .ui.comments{margin-top:-12px;max-width:750px!important}.repository .comment.form .content .field:first-child{clear:none}.repository .comment.form .content .tab.segment{border:none;padding:0;padding-top:10px}.repository .comment.form .content textarea{height:200px}.repository .label.list{list-style:none;padding-top:15px}.repository .label.list .item{padding-top:10px;padding-bottom:10px;border-bottom:1px dashed #AAA}.repository .label.list .item a{font-size:15px;padding-top:5px;padding-right:10px;color:#666}.repository .label.list .item a:hover{color:#000}.repository .label.list .item a.open-issues{margin-right:30px}.repository .milestone.list{list-style:none;padding-top:15px}.repository .milestone.list>.item{padding-top:10px;padding-bottom:10px;border-bottom:1px dashed #AAA}.repository .milestone.list>.item>a{padding-top:5px;padding-right:10px;color:#000}.repository .milestone.list>.item>a:hover{color:#4078c0}.repository .milestone.list>.item .ui.progress{width:40%;padding:0;border:0;margin:0}.repository .milestone.list>.item .ui.progress .bar{height:20px}.repository .milestone.list>.item .meta{color:#999;padding-top:5px}.repository .milestone.list>.item .meta .issue-stats .octicon{padding-left:5px}.repository .milestone.list>.item .meta .overdue{color:red}.repository .milestone.list>.item .operate{margin-top:-15px}.repository .milestone.list>.item .operate>a{font-size:15px;padding-top:5px;padding-right:10px;color:#666}.repository .milestone.list>.item .operate>a:hover{color:#000}.repository .milestone.list>.item .content{padding-top:10px}.repository.new.milestone textarea{height:200px}.repository.new.milestone #deadline{width:150px}.repository.compare.pull .choose.branch .octicon{padding-right:10px}.repository .filter.dropdown .menu{margin-top:1px!important}.repository .filter.dropdown .menu .items{max-height:300px;overflow-y:auto}.repository .filter.dropdown .menu .items .item{position:relative;cursor:pointer;display:block;border:none;height:auto;border-top:none;line-height:1em;color:rgba(0,0,0,.8);padding:.71428571em 1.14285714em!important;font-size:1rem;text-transform:none;font-weight:400;box-shadow:none;-webkit-touch-callout:none}.repository .filter.dropdown .menu .items .item.active{font-weight:700}.repository .filter.dropdown .menu .items .item:hover{background:rgba(0,0,0,.05);color:rgba(0,0,0,.8);z-index:13}.settings .key.list .item:not(:first-child){border-top:1px solid #eaeaea}.settings .key.list .ssh-key-state-indicator{float:left;color:gray;padding-left:10px;padding-top:10px}.settings .key.list .ssh-key-state-indicator.active{color:#6cc644}.settings .key.list .meta{padding-top:5px}.settings .key.list .print{color:#767676}.settings .key.list .activity{color:#666}.ui.vertical.menu .header.item{font-size:1.1em;background:#f0f0f0}.edit-label.modal .form .column,.new-label.segment .form .column{padding-right:0}.edit-label.modal .form .buttons,.new-label.segment .form .buttons{margin-left:auto;padding-top:15px}.edit-label.modal .form .color.picker.column,.new-label.segment .form .color.picker.column{width:auto}.edit-label.modal .form .color.picker.column .color-picker,.new-label.segment .form .color.picker.column .color-picker{height:35px;width:auto;padding-left:30px}.edit-label.modal .form .minicolors-swatch.minicolors-sprite,.new-label.segment .form .minicolors-swatch.minicolors-sprite{top:10px;left:10px;width:15px;height:15px}.edit-label.modal .form .precolors,.new-label.segment .form .precolors{padding-left:0;padding-right:0;margin:3px 10px auto 10px;width:120px}.edit-label.modal .form .precolors .color,.new-label.segment .form .precolors .color{float:left;width:15px;height:15px} \ 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 -80px 0;min-height:100%}.following.bar{z-index:900;left:0;width:100%;padding:5px 0}.following.bar.light{background-color:#fff;border-bottom:1px solid #DDD;box-shadow:0 2px 3px rgba(0,0,0,.04)}.following.bar .column .menu{margin-top:0}.following.bar .brand{float:left;margin-top:5px;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}.following.bar .searchbox{background-color:#f4f4f4!important}.following.bar .searchbox:focus{background-color:#e9e9e9!important}.following.bar .octicon{width:16px;text-align:center}.ui.left{float:left}.ui.right{float:right}.ui .text.red{color:#d95c5c!important}.ui .text.right{text-align:right}.ui .message{text-align:center}footer{margin-top:40px!important;height:40px;background-color:#fff;border-top:1px solid #d6d6d6;clear:both;width:100%;color:#888}footer .container{padding-top:10px}footer .container .fa{width:16px;text-align:center;color:#428bca}footer .container .ui.language.dropdown{z-index:10000}footer .container .links>*{border-left:1px solid #d6d6d6;padding-left:8px;margin-left:5px}footer .container .links>:first-child{border-left:none}.hide{display:none}.center{text-align:center}.img-1{width:2px!important;height:2px!important}.img-2{width:4px!important;height:4px!important}.img-3{width:6px!important;height:6px!important}.img-4{width:8px!important;height:8px!important}.img-5{width:10px!important;height:10px!important}.img-6{width:12px!important;height:12px!important}.img-7{width:14px!important;height:14px!important}.img-8{width:16px!important;height:16px!important}.img-9{width:18px!important;height:18px!important}.img-10{width:20px!important;height:20px!important}.img-11{width:22px!important;height:22px!important}.img-12{width:24px!important;height:24px!important}.img-13{width:26px!important;height:26px!important}.img-14{width:28px!important;height:28px!important}.img-15{width:30px!important;height:30px!important}.img-16{width:32px!important;height:32px!important}.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}.markdown{overflow:hidden;font-family:"Helvetica Neue",Helvetica,"Segoe UI",Arial,freesans,sans-serif;font-size:16px;line-height:1.6;word-wrap:break-word}.markdown>:first-child{margin-top:0!important}.markdown>:last-child{margin-bottom:0!important}.markdown a:not([href]){color:inherit;text-decoration:none}.markdown .absent{color:#c00}.markdown .anchor{position:absolute;top:0;left:0;display:block;padding-right:6px;padding-left:30px;margin-left:-30px}.markdown .anchor:focus{outline:0}.markdown h1,.markdown h2,.markdown h3,.markdown h4,.markdown h5,.markdown h6{position:relative;margin-top:1em;margin-bottom:16px;font-weight:700;line-height:1.4}.markdown h1 .octicon-link,.markdown h2 .octicon-link,.markdown h3 .octicon-link,.markdown h4 .octicon-link,.markdown h5 .octicon-link,.markdown h6 .octicon-link{display:none;color:#000;vertical-align:middle}.markdown h1:hover .anchor,.markdown h2:hover .anchor,.markdown h3:hover .anchor,.markdown h4:hover .anchor,.markdown h5:hover .anchor,.markdown h6:hover .anchor{padding-left:8px;margin-left:-30px;text-decoration:none}.markdown h1:hover .anchor .octicon-link,.markdown h2:hover .anchor .octicon-link,.markdown h3:hover .anchor .octicon-link,.markdown h4:hover .anchor .octicon-link,.markdown h5:hover .anchor .octicon-link,.markdown h6:hover .anchor .octicon-link{display:inline-block}.markdown h1 code,.markdown h1 tt,.markdown h2 code,.markdown h2 tt,.markdown h3 code,.markdown h3 tt,.markdown h4 code,.markdown h4 tt,.markdown h5 code,.markdown h5 tt,.markdown h6 code,.markdown h6 tt{font-size:inherit}.markdown h1{padding-bottom:.3em;font-size:2.25em;line-height:1.2;border-bottom:1px solid #eee}.markdown h1 .anchor{line-height:1}.markdown h2{padding-bottom:.3em;font-size:1.75em;line-height:1.225;border-bottom:1px solid #eee}.markdown h2 .anchor{line-height:1}.markdown h3{font-size:1.5em;line-height:1.43}.markdown h3 .anchor{line-height:1.2}.markdown h4{font-size:1.25em}.markdown h4 .anchor{line-height:1.2}.markdown h5{font-size:1em}.markdown h5 .anchor{line-height:1.1}.markdown h6{font-size:1em;color:#777}.markdown h6 .anchor{line-height:1.1}.markdown blockquote,.markdown dl,.markdown ol,.markdown p,.markdown pre,.markdown table,.markdown ul{margin-top:0;margin-bottom:16px}.markdown hr{height:4px;padding:0;margin:16px 0;background-color:#e7e7e7;border:0 none}.markdown ol,.markdown ul{padding-left:2em}.markdown ol.no-list,.markdown ul.no-list{padding:0;list-style-type:none}.markdown ol ol,.markdown ol ul,.markdown ul ol,.markdown ul ul{margin-top:0;margin-bottom:0}.markdown ol ol,.markdown ul ol{list-style-type:lower-roman}.markdown li>p{margin-top:16px}.markdown dl{padding:0}.markdown dl dt{padding:0;margin-top:16px;font-size:1em;font-style:italic;font-weight:700}.markdown dl dd{padding:0 16px;margin-bottom:16px}.markdown blockquote{padding:0 15px;color:#777;border-left:4px solid #ddd}.markdown blockquote>:first-child{margin-top:0}.markdown blockquote>:last-child{margin-bottom:0}.markdown table{display:block;width:100%;overflow:auto;word-break:normal;word-break:keep-all}.markdown table th{font-weight:700}.markdown table td,.markdown table th{padding:6px 13px!important;border:1px solid #ddd}.markdown table tr{background-color:#fff;border-top:1px solid #ccc}.markdown table tr:nth-child(2n){background-color:#f8f8f8}.markdown img{max-width:100%;box-sizing:border-box}.markdown .emoji{max-width:none}.markdown span.frame{display:block;overflow:hidden}.markdown span.frame>span{display:block;float:left;width:auto;padding:7px;margin:13px 0 0;overflow:hidden;border:1px solid #ddd}.markdown span.frame span img{display:block;float:left}.markdown span.frame span span{display:block;padding:5px 0 0;clear:both;color:#333}.markdown span.align-center{display:block;overflow:hidden;clear:both}.markdown span.align-center>span{display:block;margin:13px auto 0;overflow:hidden;text-align:center}.markdown span.align-center span img{margin:0 auto;text-align:center}.markdown span.align-right{display:block;overflow:hidden;clear:both}.markdown span.align-right>span{display:block;margin:13px 0 0;overflow:hidden;text-align:right}.markdown span.align-right span img{margin:0;text-align:right}.markdown span.float-left{display:block;float:left;margin-right:13px;overflow:hidden}.markdown span.float-left span{margin:13px 0 0}.markdown span.float-right{display:block;float:right;margin-left:13px;overflow:hidden}.markdown span.float-right>span{display:block;margin:13px auto 0;overflow:hidden;text-align:right}.markdown code,.markdown tt{padding:0;padding-top:.2em;padding-bottom:.2em;margin:0;font-size:85%;background-color:rgba(0,0,0,.04);border-radius:3px}.markdown code:after,.markdown code:before,.markdown tt:after,.markdown tt:before{letter-spacing:-.2em;content:"\00a0"}.markdown code br,.markdown tt br{display:none}.markdown del code{text-decoration:inherit}.markdown pre>code{padding:0;margin:0;font-size:100%;word-break:normal;white-space:pre;background:0 0;border:0}.markdown .highlight{margin-bottom:16px}.markdown .highlight pre,.markdown pre{padding:16px;overflow:auto;font-size:85%;line-height:1.45;background-color:#f7f7f7;border-radius:3px}.markdown .highlight pre{margin-bottom:0;word-break:normal}.markdown pre{word-wrap:normal}.markdown pre code,.markdown pre tt{display:inline;max-width:initial;padding:0;margin:0;overflow:initial;line-height:inherit;word-wrap:normal;background-color:transparent;border:0}.markdown pre code:after,.markdown pre code:before,.markdown pre tt:after,.markdown pre tt:before{content:normal}.markdown kbd{display:inline-block;padding:3px 5px;font-size:11px;line-height:10px;color:#555;vertical-align:middle;background-color:#fcfcfc;border:solid 1px #ccc;border-bottom-color:#bbb;border-radius:3px;box-shadow:inset 0 -1px 0 #bbb}.markdown .csv-data td,.markdown .csv-data th{padding:5px;overflow:hidden;font-size:12px;line-height:1;text-align:left;white-space:nowrap}.markdown .csv-data .blob-num{padding:10px 8px 9px;text-align:right;background:#fff;border:0}.markdown .csv-data tr{border-top:0}.markdown .csv-data th{font-weight:700;background:#f8f8f8;border-top:0}.pln{color:#333}@media screen{.str{color:#d14}.kwd{color:#333}.com{color:#998;font-style:italic}.typ{color:#458}.lit{color:#458}.pun{color:#333}.opn{color:#333}.clo{color:#333}.tag{color:navy}.atn{color:teal}.atv{color:#d14}.dec{color:#333}.var{color:teal}.fun{color:#900}}@media print,projection{.str{color:#060}.kwd{color:#006;font-weight:700}.com{color:#600;font-style:italic}.typ{color:#404;font-weight:700}.lit{color:#044}.clo,.opn,.pun{color:#440}.tag{color:#006;font-weight:700}.atn{color:#404}.atv{color:#060}}ol.linenums{margin-top:0;margin-bottom:0}.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 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}.ui.attached.header{background:#f0f0f0}.ui.attached.header .right{margin-top:-5px}.repository.new.fork form{margin:auto;width:800px!important}.repository.new.fork form .ui.message{text-align:center}.repository.new.fork form .header{padding-left:280px!important}.repository.new.fork form .inline.field>label{text-align:right;width:250px!important;word-wrap:break-word}.repository.new.fork form .help{margin-left:260px!important}.repository.new.fork form .dropdown .dropdown.icon{margin-top:-7px!important}.repository.new.fork form .dropdown .text{margin-right:0!important}.repository.new.fork form .dropdown .text i{margin-right:0!important}.repository.new.fork form input,.repository.new.fork form textarea{width:50%!important}.repository{padding-top:15px;padding-bottom:120px}.repository .head{height:40px;background-color:#FCFCFC}.repository .head .mega-octicon{width:30px;font-size: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 .num{font-weight:700}.repository .metas .menu{max-height:300px;overflow-x:auto}.repository .metas .ui.list .ui.avatar.image{border-radius:0}.repository .metas .ui.list .hide{display:none!important}.repository .metas .ui.list .label.color{padding:0 8px;margin-right:5px}.repository .metas .ui.list a{padding-top:5px;padding-right:10px}.repository .metas .ui.list a .text{color:#444}.repository .metas .ui.list a .text:hover{color:#000}.repository .filter.menu .label.color{margin-left:15px;padding:0 8px}.repository .filter.menu .octicon{float:left;margin-left:-5px;margin-right:-7px}.repository .filter.menu .menu{max-height:300px;overflow-x:auto;right:0!important;left:auto!important}.repository .filter.menu .menu .clickable .name{padding-left:15px!important}.repository .page.buttons{padding-top:15px}.repository .issue.list{list-style:none;padding-top:15px}.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>.item .desc a.milestone{padding-left:5px;color:#999!important}.repository .issue.list>.item .desc a.milestone:hover{color:#000!important}.repository .issue.list>.item .desc .assignee{margin-top:-5px}.repository.new.issue .comment.form .metas{min-width:220px}.repository.new.issue .comment.form .metas .filter.menu{max-height:300px;overflow-x:auto}.repository .comment.form .ui.comments{margin-top:-12px;max-width:750px!important}.repository .comment.form .content .field:first-child{clear:none}.repository .comment.form .content .tab.segment{border:none;padding:0;padding-top:10px}.repository .comment.form .content textarea{height:200px}.repository .label.list{list-style:none;padding-top:15px}.repository .label.list .item{padding-top:10px;padding-bottom:10px;border-bottom:1px dashed #AAA}.repository .label.list .item a{font-size:15px;padding-top:5px;padding-right:10px;color:#666}.repository .label.list .item a:hover{color:#000}.repository .label.list .item a.open-issues{margin-right:30px}.repository .milestone.list{list-style:none;padding-top:15px}.repository .milestone.list>.item{padding-top:10px;padding-bottom:10px;border-bottom:1px dashed #AAA}.repository .milestone.list>.item>a{padding-top:5px;padding-right:10px;color:#000}.repository .milestone.list>.item>a:hover{color:#4078c0}.repository .milestone.list>.item .ui.progress{width:40%;padding:0;border:0;margin:0}.repository .milestone.list>.item .ui.progress .bar{height:20px}.repository .milestone.list>.item .meta{color:#999;padding-top:5px}.repository .milestone.list>.item .meta .issue-stats .octicon{padding-left:5px}.repository .milestone.list>.item .meta .overdue{color:red}.repository .milestone.list>.item .operate{margin-top:-15px}.repository .milestone.list>.item .operate>a{font-size:15px;padding-top:5px;padding-right:10px;color:#666}.repository .milestone.list>.item .operate>a:hover{color:#000}.repository .milestone.list>.item .content{padding-top:10px}.repository.new.milestone textarea{height:200px}.repository.new.milestone #deadline{width:150px}.repository.compare.pull .choose.branch .octicon{padding-right:10px}.repository .filter.dropdown .menu{margin-top:1px!important}.repository .filter.dropdown .menu .items{max-height:300px;overflow-y:auto}.repository .filter.dropdown .menu .items .item{position:relative;cursor:pointer;display:block;border:none;height:auto;border-top:none;line-height:1em;color:rgba(0,0,0,.8);padding:.71428571em 1.14285714em!important;font-size:1rem;text-transform:none;font-weight:400;box-shadow:none;-webkit-touch-callout:none}.repository .filter.dropdown .menu .items .item.active{font-weight:700}.repository .filter.dropdown .menu .items .item:hover{background:rgba(0,0,0,.05);color:rgba(0,0,0,.8);z-index:13}.settings .key.list .item:not(:first-child){border-top:1px solid #eaeaea}.settings .key.list .ssh-key-state-indicator{float:left;color:gray;padding-left:10px;padding-top:10px}.settings .key.list .ssh-key-state-indicator.active{color:#6cc644}.settings .key.list .meta{padding-top:5px}.settings .key.list .print{color:#767676}.settings .key.list .activity{color:#666}.ui.vertical.menu .header.item{font-size:1.1em;background:#f0f0f0}.edit-label.modal .form .column,.new-label.segment .form .column{padding-right:0}.edit-label.modal .form .buttons,.new-label.segment .form .buttons{margin-left:auto;padding-top:15px}.edit-label.modal .form .color.picker.column,.new-label.segment .form .color.picker.column{width:auto}.edit-label.modal .form .color.picker.column .color-picker,.new-label.segment .form .color.picker.column .color-picker{height:35px;width:auto;padding-left:30px}.edit-label.modal .form .minicolors-swatch.minicolors-sprite,.new-label.segment .form .minicolors-swatch.minicolors-sprite{top:10px;left:10px;width:15px;height:15px}.edit-label.modal .form .precolors,.new-label.segment .form .precolors{padding-left:0;padding-right:0;margin:3px 10px auto 10px;width:120px}.edit-label.modal .form .precolors .color,.new-label.segment .form .precolors .color{float:left;width:15px;height:15px} \ No newline at end of file diff --git a/public/js/gogs.js b/public/js/gogs.js index 413bc4385..758b5cf60 100644 --- a/public/js/gogs.js +++ b/public/js/gogs.js @@ -65,29 +65,42 @@ function initCommentForm() { $($(this).parent().data('id')).val(''); }); - var $milestone_menu = $('.select-milestone .menu'); - var $milestone_list = $('.ui.select-milestone.list') - // Milestones - $milestone_menu.find('.item:not(.no-select)').click(function () { - $(this).parent().find('.item').each(function () { - $(this).removeClass('selected active') - }); + function selectItem(select_id, input_id) { + var $menu = $(select_id + ' .menu'); + var $list = $('.ui' + select_id + '.list') + $menu.find('.item:not(.no-select)').click(function () { + $(this).parent().find('.item').each(function () { + $(this).removeClass('selected active') + }); - $(this).addClass('selected active'); - $milestone_list.find('.selected').html('' + - $(this).text() + ''); - $('.ui.select-milestone.list .no-select').addClass('hide'); - $('#milestone_id').val($(this).data('id')); - }); - $milestone_menu.find('.no-select.item').click(function () { - $(this).parent().find('.item:not(.no-select)').each(function () { - $(this).removeClass('selected active') + $(this).addClass('selected active'); + switch (input_id) { + case '#milestone_id': + $list.find('.selected').html('' + + $(this).text() + ''); + break; + case '#assignee_id': + $list.find('.selected').html('' + + '' + + $(this).text() + ''); + } + $('.ui' + select_id + '.list .no-select').addClass('hide'); + $(input_id).val($(this).data('id')); }); + $menu.find('.no-select.item').click(function () { + $(this).parent().find('.item:not(.no-select)').each(function () { + $(this).removeClass('selected active') + }); - $milestone_list.find('.selected').html(''); - $milestone_list.find('.no-select').removeClass('hide'); - $('#milestone_id').val(''); - }); + $list.find('.selected').html(''); + $list.find('.no-select').removeClass('hide'); + $(input_id).val(''); + }); + } + + // Milestone and assignee + selectItem('.select-milestone', '#milestone_id'); + selectItem('.select-assignee', '#assignee_id'); } function initInstall() { diff --git a/public/less/_repository.less b/public/less/_repository.less index 21fe650b5..96ae92a6e 100644 --- a/public/less/_repository.less +++ b/public/less/_repository.less @@ -35,6 +35,9 @@ overflow-x: auto; } .ui.list { + .ui.avatar.image { + border-radius: 0; + } .hide { display: none!important; } @@ -109,6 +112,9 @@ color: #000!important; } } + .assignee { + margin-top: -5px; + } } } } diff --git a/routers/repo/issue.go b/routers/repo/issue.go index b7abf0f58..659f0e830 100644 --- a/routers/repo/issue.go +++ b/routers/repo/issue.go @@ -202,18 +202,13 @@ func NewIssue(ctx *middleware.Context) { return } - // ctx.Data["AssigneeID"] = 0 - // ctx.Data["Assignees"], err = repo.GetCollaborators() + ctx.Data["Assignees"], err = repo.GetAssignees() + if err != nil { + ctx.Handle(500, "GetAssignees: %v", err) + return + } } - // us, err := repo.GetCollaborators() - // if err != nil { - // ctx.Handle(500, "GetCollaborators", err) - // return - // } - - // ctx.Data["Collaborators"] = us - ctx.HTML(200, ISSUE_NEW) } @@ -227,6 +222,7 @@ func NewIssuePost(ctx *middleware.Context, form auth.CreateIssueForm) { repo = ctx.Repo.Repository labelIDs []int64 milestoneID int64 + assigneeID int64 ) if ctx.User.IsAdmin { // Check labels. @@ -260,12 +256,26 @@ func NewIssuePost(ctx *middleware.Context, form auth.CreateIssueForm) { ctx.Handle(500, "GetMilestones: %v", err) return } - ctx.Data["Milestone"], err = models.GetRepoMilestoneByID(repo.ID, milestoneID) + ctx.Data["Milestone"], err = repo.GetMilestoneByID(milestoneID) if err != nil { - ctx.Handle(500, "GetRepoMilestoneByID: %v", err) + ctx.Handle(500, "GetMilestoneByID: %v", err) return } ctx.Data["milestone_id"] = milestoneID + + // Check assignee. + assigneeID = form.AssigneeID + ctx.Data["Assignees"], err = repo.GetAssignees() + if err != nil { + ctx.Handle(500, "GetAssignees: %v", err) + return + } + ctx.Data["Assignee"], err = repo.GetAssigneeByID(assigneeID) + if err != nil { + ctx.Handle(500, "GetAssigneeByID: %v", err) + return + } + ctx.Data["assignee_id"] = assigneeID } if ctx.HasError() { @@ -279,13 +289,10 @@ func NewIssuePost(ctx *middleware.Context, form auth.CreateIssueForm) { Name: form.Title, PosterID: ctx.User.Id, MilestoneID: milestoneID, - // AssigneeID: form.AssigneeID, - Content: form.Content, + AssigneeID: assigneeID, + Content: form.Content, } - if err := models.NewIssue(issue, labelIDs); err != nil { - ctx.Handle(500, "NewIssue", err) - return - } else if err := models.NewIssueUserPairs(repo, issue); err != nil { + if err := models.NewIssue(repo, issue, labelIDs); err != nil { ctx.Handle(500, "NewIssue", err) return } @@ -294,71 +301,6 @@ func NewIssuePost(ctx *middleware.Context, form auth.CreateIssueForm) { } func CreateIssuePost(ctx *middleware.Context, form auth.CreateIssueForm) { - // send := func(status int, data interface{}, err error) { - // if err != nil { - // log.Error(4, "issue.CreateIssuePost(?): %s", err) - - // ctx.JSON(status, map[string]interface{}{ - // "ok": false, - // "status": status, - // "error": err.Error(), - // }) - // } else { - // ctx.JSON(status, map[string]interface{}{ - // "ok": true, - // "status": status, - // "data": data, - // }) - // } - // } - - // var err error - // // Get all milestones. - // _, err = models.GetMilestones(ctx.Repo.Repository.ID, -1, false) - // if err != nil { - // send(500, nil, err) - // return - // } - // _, err = models.GetMilestones(ctx.Repo.Repository.ID, -1, true) - // if err != nil { - // send(500, nil, err) - // return - // } - - // _, err = ctx.Repo.Repository.GetCollaborators() - // if err != nil { - // send(500, nil, err) - // return - // } - - // if ctx.HasError() { - // send(400, nil, errors.New(ctx.Flash.ErrorMsg)) - // return - // } - - // // Only collaborators can assign. - // if !ctx.Repo.IsOwner() { - // form.AssigneeId = 0 - // } - // issue := &models.Issue{ - // RepoID: ctx.Repo.Repository.ID, - // Index: int64(ctx.Repo.Repository.NumIssues) + 1, - // Name: form.IssueName, - // PosterID: ctx.User.Id, - // MilestoneID: form.MilestoneId, - // AssigneeID: form.AssigneeId, - // LabelIds: form.Labels, - // Content: form.Content, - // } - // if err := models.NewIssue(issue); err != nil { - // send(500, nil, err) - // return - // } else if err := models.NewIssueUserPairs(ctx.Repo.Repository, issue.ID, ctx.Repo.Owner.Id, - // ctx.User.Id, form.AssigneeId); err != nil { - // send(500, nil, err) - // return - // } - // if setting.AttachmentEnabled { // uploadFiles(ctx, issue.ID, 0) // } @@ -743,7 +685,7 @@ func UpdateAssignee(ctx *middleware.Context) { aid := com.StrTo(ctx.Query("assigneeid")).MustInt64() // Not check for invalid assignee id and give responsibility to owners. issue.AssigneeID = aid - if err = models.UpdateIssueUserPairByAssignee(aid, issue.ID); err != nil { + if err = models.UpdateIssueUserByAssignee(issue.ID, aid); err != nil { ctx.Handle(500, "UpdateIssueUserPairByAssignee: %v", err) return } else if err = models.UpdateIssue(issue); err != nil { diff --git a/routers/user/home.go b/routers/user/home.go index a36483630..1c9e82c6d 100644 --- a/routers/user/home.go +++ b/routers/user/home.go @@ -339,13 +339,13 @@ func Issues(ctx *middleware.Context) { issues := make([]*models.Issue, len(ius)) for i := range ius { - issues[i], err = models.GetIssueById(ius[i].IssueId) + issues[i], err = models.GetIssueById(ius[i].IssueID) if err != nil { if err == models.ErrIssueNotExist { - log.Warn("user.Issues(GetIssueById #%d): issue not exist", ius[i].IssueId) + log.Warn("user.Issues(GetIssueById #%d): issue not exist", ius[i].IssueID) continue } else { - ctx.Handle(500, fmt.Sprintf("user.Issues(GetIssueById #%d)", ius[i].IssueId), err) + ctx.Handle(500, fmt.Sprintf("user.Issues(GetIssueById #%d)", ius[i].IssueID), err) return } } diff --git a/templates/repo/issue/list.tmpl b/templates/repo/issue/list.tmpl index fa3f660fa..640112e4a 100644 --- a/templates/repo/issue/list.tmpl +++ b/templates/repo/issue/list.tmpl @@ -87,11 +87,14 @@

{{$.i18n.Tr "repo.issues.opened_by" $timeStr .Poster.Name|Str2html}} {{if .Milestone}} - {{with .Milestone}} - - {{.Name}} + + {{.Milestone.Name}} + + {{end}} + {{if .Assignee}} + + - {{end}} {{end}}

diff --git a/templates/repo/issue/new_form.tmpl b/templates/repo/issue/new_form.tmpl index 6d31a01e6..2d7a3edee 100644 --- a/templates/repo/issue/new_form.tmpl +++ b/templates/repo/issue/new_form.tmpl @@ -101,23 +101,29 @@ - +
+ {{.i18n.Tr "repo.issues.new.no_assignee"}} +
+ {{if .Assignee}} + {{.Assignee.Name}} + {{end}} +
+
{{end}} diff --git a/templates/user/issues.tmpl b/templates/user/issues.tmpl index 2eb393ff5..677f9d141 100644 --- a/templates/user/issues.tmpl +++ b/templates/user/issues.tmpl @@ -12,7 +12,7 @@
  • Created by you {{.IssueStats.CreateCount}}

  • {{range .Repos}} -
  • {{$.SignedUser.Name}}/{{.Name}} {{if $.IsShowClosed}}{{.NumClosedIssues}}{{else}}{{.NumOpenIssues}}{{end}}
  • +
  • {{$.SignedUser.Name}}/{{.Name}} {{if $.IsShowClosed}}{{.NumClosedIssues}}{{else}}{{.NumOpenIssues}}{{end}}
  • {{end}}