From 133b19d0c5587b7c6d5d9e8057f81bc45a246972 Mon Sep 17 00:00:00 2001 From: Unknwon Date: Thu, 13 Aug 2015 16:07:11 +0800 Subject: [PATCH] finish view comments on issue page --- cmd/web.go | 20 +- conf/locale/locale_en-US.ini | 4 +- gogs.go | 2 +- models/action.go | 48 ++-- models/issue.go | 306 +++++++++++++++++++------ models/repo.go | 2 +- modules/auth/repo_form.go | 10 + modules/base/template.go | 13 +- modules/base/tool.go | 4 + modules/bindata/bindata.go | 4 +- routers/repo/issue.go | 213 +++++------------ templates/.VERSION | 2 +- templates/repo/header.tmpl | 5 - templates/repo/issue/view_content.tmpl | 39 +++- 14 files changed, 388 insertions(+), 284 deletions(-) diff --git a/cmd/web.go b/cmd/web.go index 62fb9187ab..857fd1e233 100644 --- a/cmd/web.go +++ b/cmd/web.go @@ -228,14 +228,16 @@ func runWeb(ctx *cli.Context) { }) // Repositories. - m.Combo("/user/repos", middleware.ApiReqToken()).Get(v1.ListMyRepos).Post(bind(api.CreateRepoOption{}), v1.CreateRepo) + m.Combo("/user/repos", middleware.ApiReqToken()).Get(v1.ListMyRepos). + Post(bind(api.CreateRepoOption{}), v1.CreateRepo) m.Post("/org/:org/repos", middleware.ApiReqToken(), bind(api.CreateRepoOption{}), v1.CreateOrgRepo) m.Group("/repos", func() { m.Get("/search", v1.SearchRepos) m.Post("/migrate", bindIgnErr(auth.MigrateRepoForm{}), v1.MigrateRepo) m.Group("/:username/:reponame", func() { - m.Combo("/hooks").Get(v1.ListRepoHooks).Post(bind(api.CreateHookOption{}), v1.CreateRepoHook) + m.Combo("/hooks").Get(v1.ListRepoHooks). + Post(bind(api.CreateHookOption{}), v1.CreateRepoHook) m.Patch("/hooks/:id:int", bind(api.EditHookOption{}), v1.EditRepoHook) m.Get("/raw/*", middleware.RepoRef(), v1.GetRepoRawFile) }, middleware.ApiRepoAssignment(), middleware.ApiReqToken()) @@ -450,10 +452,14 @@ func runWeb(ctx *cli.Context) { m.Group("/issues", func() { m.Combo("/new").Get(repo.NewIssue). Post(bindIgnErr(auth.CreateIssueForm{}), repo.NewIssuePost) - m.Post("/:index", bindIgnErr(auth.CreateIssueForm{}), repo.UpdateIssue) - m.Post("/:index/label", repo.UpdateIssueLabel) - m.Post("/:index/milestone", repo.UpdateIssueMilestone) - m.Post("/:index/assignee", repo.UpdateAssignee) + + m.Group("/:index", func() { + m.Post("", bindIgnErr(auth.CreateIssueForm{}), repo.UpdateIssue) + m.Post("/label", repo.UpdateIssueLabel) + m.Post("/milestone", repo.UpdateIssueMilestone) + m.Post("/assignee", repo.UpdateAssignee) + m.Combo("/comments").Post(bindIgnErr(auth.CreateCommentForm{}), repo.NewComment) + }) }) m.Group("/labels", func() { m.Post("/new", bindIgnErr(auth.CreateLabelForm{}), repo.NewLabel) @@ -469,8 +475,6 @@ func runWeb(ctx *cli.Context) { m.Post("/delete", repo.DeleteMilestone) }, reqRepoAdmin) - m.Post("/comment/:action", repo.Comment) - m.Group("/releases", func() { m.Get("/new", repo.NewRelease) m.Post("/new", bindIgnErr(auth.NewReleaseForm{}), repo.NewReleasePost) diff --git a/conf/locale/locale_en-US.ini b/conf/locale/locale_en-US.ini index 071c6f8a6b..8d886d2ec0 100644 --- a/conf/locale/locale_en-US.ini +++ b/conf/locale/locale_en-US.ini @@ -405,8 +405,8 @@ issues.next = Next issues.open_title = Open issues.closed_title = Closed issues.num_comments = %d comments -issues.commented_at = commented at %s -issues.no_content = There is no content if this issue. +issues.commented_at = `commented at %[2]s` +issues.no_content = There is no content yet. issues.close_issue = Close issues.close_comment_issue = Close and comment issues.create_comment = Comment diff --git a/gogs.go b/gogs.go index d6b705f671..6b8407e84c 100644 --- a/gogs.go +++ b/gogs.go @@ -17,7 +17,7 @@ import ( "github.com/gogits/gogs/modules/setting" ) -const APP_VER = "0.6.4.0812 Beta" +const APP_VER = "0.6.4.0813 Beta" func init() { runtime.GOMAXPROCS(runtime.NumCPU()) diff --git a/models/action.go b/models/action.go index 4069cbca6f..a053a18976 100644 --- a/models/action.go +++ b/models/action.go @@ -124,7 +124,7 @@ func (a Action) GetIssueInfos() []string { return strings.SplitN(a.Content, "|", 2) } -func updateIssuesCommit(userId, repoId int64, repoUserName, repoName string, commits []*base.PushCommit) error { +func updateIssuesCommit(u *User, repo *Repository, repoUserName, repoName string, commits []*base.PushCommit) error { for _, c := range commits { for _, ref := range IssueReferenceKeywordsPat.FindAllString(c.Message, -1) { ref := ref[strings.IndexByte(ref, byte(' '))+1:] @@ -153,7 +153,7 @@ func updateIssuesCommit(userId, repoId int64, repoUserName, repoName string, com url := fmt.Sprintf("%s/%s/%s/commit/%s", setting.AppSubUrl, repoUserName, repoName, c.Sha1) message := fmt.Sprintf(`%s`, url, c.Message) - if _, err = CreateComment(userId, issue.RepoID, issue.ID, 0, 0, COMMENT_TYPE_COMMIT, message, nil); err != nil { + if _, err = CreateComment(u, repo, issue, 0, 0, COMMENT_TYPE_COMMIT, message, nil); err != nil { return err } } @@ -183,7 +183,7 @@ func updateIssuesCommit(userId, repoId int64, repoUserName, repoName string, com return err } - if issue.RepoID == repoId { + if issue.RepoID == repo.ID { if issue.IsClosed { continue } @@ -202,7 +202,7 @@ func updateIssuesCommit(userId, repoId int64, repoUserName, repoName string, com if err = UpdateIssue(issue); err != nil { return err - } else if err = UpdateIssueUserPairsByStatus(issue.ID, issue.IsClosed); err != nil { + } else if err = UpdateIssueUsersByStatus(issue.ID, issue.IsClosed); err != nil { return err } @@ -211,7 +211,7 @@ func updateIssuesCommit(userId, repoId int64, repoUserName, repoName string, com } // If commit happened in the referenced repository, it means the issue can be closed. - if _, err = CreateComment(userId, repoId, issue.ID, 0, 0, COMMENT_TYPE_CLOSE, "", nil); err != nil { + if _, err = CreateComment(u, repo, issue, 0, 0, COMMENT_TYPE_CLOSE, "", nil); err != nil { return err } } @@ -242,7 +242,7 @@ func updateIssuesCommit(userId, repoId int64, repoUserName, repoName string, com return err } - if issue.RepoID == repoId { + if issue.RepoID == repo.ID { if !issue.IsClosed { continue } @@ -261,7 +261,7 @@ func updateIssuesCommit(userId, repoId int64, repoUserName, repoName string, com if err = UpdateIssue(issue); err != nil { return err - } else if err = UpdateIssueUserPairsByStatus(issue.ID, issue.IsClosed); err != nil { + } else if err = UpdateIssueUsersByStatus(issue.ID, issue.IsClosed); err != nil { return err } @@ -270,7 +270,7 @@ func updateIssuesCommit(userId, repoId int64, repoUserName, repoName string, com } // If commit happened in the referenced repository, it means the issue can be closed. - if _, err = CreateComment(userId, repoId, issue.ID, 0, 0, COMMENT_TYPE_REOPEN, "", nil); err != nil { + if _, err = CreateComment(u, repo, issue, 0, 0, COMMENT_TYPE_REOPEN, "", nil); err != nil { return err } } @@ -280,8 +280,8 @@ func updateIssuesCommit(userId, repoId int64, repoUserName, repoName string, com } // CommitRepoAction adds new action for committing repository. -func CommitRepoAction(userId, repoUserId int64, userName, actEmail string, - repoId int64, repoUserName, repoName string, refFullName string, commit *base.PushCommits, oldCommitId string, newCommitId string) error { +func CommitRepoAction(userID, repoUserID int64, userName, actEmail string, + repoID int64, repoUserName, repoName string, refFullName string, commit *base.PushCommits, oldCommitID string, newCommitID string) error { opType := COMMIT_REPO // Check it's tag push or branch. @@ -292,40 +292,44 @@ func CommitRepoAction(userId, repoUserId int64, userName, actEmail string, repoLink := fmt.Sprintf("%s%s/%s", setting.AppUrl, repoUserName, repoName) // if not the first commit, set the compareUrl - if !strings.HasPrefix(oldCommitId, "0000000") { - commit.CompareUrl = fmt.Sprintf("%s/%s/compare/%s...%s", repoUserName, repoName, oldCommitId, newCommitId) + if !strings.HasPrefix(oldCommitID, "0000000") { + commit.CompareUrl = fmt.Sprintf("%s/%s/compare/%s...%s", repoUserName, repoName, oldCommitID, newCommitID) } bs, err := json.Marshal(commit) if err != nil { - return errors.New("json: " + err.Error()) + return fmt.Errorf("Marshal: %v", err) } refName := git.RefEndName(refFullName) // Change repository bare status and update last updated time. - repo, err := GetRepositoryByName(repoUserId, repoName) + repo, err := GetRepositoryByName(repoUserID, repoName) if err != nil { - return errors.New("GetRepositoryByName: " + err.Error()) + return fmt.Errorf("GetRepositoryByName: %v", err) } repo.IsBare = false if err = UpdateRepository(repo, false); err != nil { - return errors.New("UpdateRepository: " + err.Error()) + return fmt.Errorf("UpdateRepository: %v", err) } - err = updateIssuesCommit(userId, repoId, repoUserName, repoName, commit.Commits) + u, err := GetUserByID(userID) + if err != nil { + return fmt.Errorf("GetUserByID: %v", err) + } + err = updateIssuesCommit(u, repo, repoUserName, repoName, commit.Commits) if err != nil { log.Debug("updateIssuesCommit: ", err) } if err = NotifyWatchers(&Action{ - ActUserID: userId, + ActUserID: u.Id, ActUserName: userName, ActEmail: actEmail, OpType: opType, Content: string(bs), - RepoID: repoId, + RepoID: repo.ID, RepoUserName: repoUserName, RepoName: repoName, RefName: refName, @@ -340,7 +344,7 @@ func CommitRepoAction(userId, repoUserId int64, userName, actEmail string, return errors.New("GetOwner: " + err.Error()) } - ws, err := GetActiveWebhooksByRepoId(repoId) + ws, err := GetActiveWebhooksByRepoId(repo.ID) if err != nil { return errors.New("GetActiveWebhooksByRepoId: " + err.Error()) } @@ -406,8 +410,8 @@ func CommitRepoAction(userId, repoUserId int64, userName, actEmail string, Email: pusher_email, UserName: userName, }, - Before: oldCommitId, - After: newCommitId, + Before: oldCommitID, + After: newCommitID, CompareUrl: setting.AppUrl + commit.CompareUrl, } diff --git a/models/issue.go b/models/issue.go index 386d86ce8b..f32f054584 100644 --- a/models/issue.go +++ b/models/issue.go @@ -8,7 +8,6 @@ import ( "bytes" "errors" "fmt" - "html/template" "io" "mime/multipart" "os" @@ -58,11 +57,12 @@ type Issue struct { Updated time.Time `xorm:"UPDATED"` Attachments []*Attachment `xorm:"-"` + Comments []*Comment `xorm:"-"` } // HashTag returns unique hash tag for issue. func (i *Issue) HashTag() string { - return "#issue-" + com.ToStr(i.Index) + return "issue-" + com.ToStr(i.ID) } func (i *Issue) AfterSet(colName string, _ xorm.Cell) { @@ -74,6 +74,11 @@ func (i *Issue) AfterSet(colName string, _ xorm.Cell) { log.Error(3, "GetAttachmentsByIssueID[%d]: %v", i.ID, err) } + i.Comments, err = GetCommentsByIssueID(i.ID) + if err != nil { + log.Error(3, "GetCommentsByIssueID[%d]: %v", i.ID, err) + } + case "milestone_id": if i.MilestoneID == 0 { return @@ -95,6 +100,11 @@ func (i *Issue) AfterSet(colName string, _ xorm.Cell) { } } +// IsPoster returns true if given user by ID is the poster. +func (i *Issue) IsPoster(uid int64) bool { + return i.PosterID == uid +} + func (i *Issue) GetPoster() (err error) { i.Poster, err = GetUserByID(i.PosterID) if IsErrUserNotExist(err) { @@ -165,6 +175,61 @@ func (i *Issue) ReadBy(uid int64) error { return UpdateIssueUserByRead(uid, i.ID) } +func (i *Issue) changeStatus(e *xorm.Session, doer *User, isClosed bool) (err error) { + if i.IsClosed == isClosed { + return nil + } + i.IsClosed = isClosed + + if err = updateIssue(e, i); err != nil { + return err + } else if err = updateIssueUsersByStatus(e, i.ID, isClosed); err != nil { + return err + } + + // Update labels. + if err = i.getLabels(e); err != nil { + return err + } + for idx := range i.Labels { + if i.IsClosed { + i.Labels[idx].NumClosedIssues++ + } else { + i.Labels[idx].NumClosedIssues-- + } + if err = updateLabel(e, i.Labels[idx]); err != nil { + return err + } + } + + // Update milestone. + if err = changeMilestoneIssueStats(e, i); err != nil { + return err + } + + // New action comment. + if _, err = createStatusComment(e, doer, i.Repo, i); err != nil { + return err + } + + return nil +} + +// ChangeStatus changes issue status to open/closed. +func (i *Issue) ChangeStatus(doer *User, isClosed bool) (err error) { + sess := x.NewSession() + defer sessionRelease(sess) + if err = sess.Begin(); err != nil { + return err + } + + if err = i.changeStatus(sess, doer, isClosed); err != nil { + return err + } + + return sess.Commit() +} + // CreateIssue creates new issue with labels for repository. func NewIssue(repo *Repository, issue *Issue, labelIDs []int64, uuids []string) (err error) { // Check attachments. @@ -587,13 +652,16 @@ func UpdateIssue(issue *Issue) error { return updateIssue(x, issue) } -// UpdateIssueUserByStatus updates issue-user pairs by issue status. -func UpdateIssueUserPairsByStatus(iid int64, isClosed bool) error { - rawSql := "UPDATE `issue_user` SET is_closed = ? WHERE issue_id = ?" - _, err := x.Exec(rawSql, isClosed, iid) +func updateIssueUsersByStatus(e Engine, issueID int64, isClosed bool) error { + _, err := e.Exec("UPDATE `issue_user` SET is_closed=? WHERE issue_id=?", isClosed, issueID) return err } +// UpdateIssueUsersByStatus updates issue-user relations by issue status. +func UpdateIssueUsersByStatus(issueID int64, isClosed bool) error { + return updateIssueUsersByStatus(x, issueID, isClosed) +} + 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 @@ -729,12 +797,16 @@ func GetLabelsByIssueID(issueID int64) ([]*Label, error) { return getLabelsByIssueID(x, issueID) } -// UpdateLabel updates label information. -func UpdateLabel(l *Label) error { +func updateLabel(e Engine, l *Label) error { _, err := x.Id(l.ID).AllCols().Update(l) return err } +// UpdateLabel updates label information. +func UpdateLabel(l *Label) error { + return updateLabel(x, l) +} + // DeleteLabel delete a label of given repository. func DeleteLabel(repoID, labelID int64) error { l, err := GetLabelByID(labelID) @@ -998,14 +1070,12 @@ func ChangeMilestoneStatus(m *Milestone, isClosed bool) (err error) { return sess.Commit() } -// ChangeMilestoneIssueStats updates the open/closed issues counter and progress -// for the milestone associated witht the given issue. -func ChangeMilestoneIssueStats(issue *Issue) error { +func changeMilestoneIssueStats(e *xorm.Session, issue *Issue) error { if issue.MilestoneID == 0 { return nil } - m, err := GetMilestoneByID(issue.MilestoneID) + m, err := getMilestoneByID(e, issue.MilestoneID) if err != nil { return err } @@ -1018,7 +1088,23 @@ func ChangeMilestoneIssueStats(issue *Issue) error { m.NumClosedIssues-- } - return UpdateMilestone(m) + return updateMilestone(e, m) +} + +// ChangeMilestoneIssueStats updates the open/closed issues counter and progress +// for the milestone associated witht the given issue. +func ChangeMilestoneIssueStats(issue *Issue) (err error) { + sess := x.NewSession() + defer sessionRelease(sess) + if err = sess.Begin(); err != nil { + return err + } + + if err = changeMilestoneIssueStats(sess, issue); err != nil { + return err + } + + return sess.Commit() } func changeMilestoneAssign(e *xorm.Session, oldMid int64, issue *Issue) error { @@ -1145,98 +1231,165 @@ const ( // Comment represents a comment in commit and issue page. type Comment struct { - Id int64 - Type CommentType - PosterId int64 - Poster *User `xorm:"-"` - IssueId int64 - CommitId int64 - Line int64 - Content string `xorm:"TEXT"` - Created time.Time `xorm:"CREATED"` + ID int64 `xorm:"pk autoincr"` + Type CommentType + PosterID int64 + Poster *User `xorm:"-"` + IssueID int64 `xorm:"INDEX"` + CommitID int64 + Line int64 + Content string `xorm:"TEXT"` + RenderedContent string `xorm:"-"` + Created time.Time `xorm:"CREATED"` + + Attachments []*Attachment `xorm:"-"` } -// CreateComment creates comment of issue or commit. -func CreateComment(userId, repoId, issueId, commitId, line int64, cmtType CommentType, content string, attachments []int64) (*Comment, error) { - sess := x.NewSession() - defer sessionRelease(sess) - if err := sess.Begin(); err != nil { - return nil, err +// HashTag returns unique hash tag for issue. +func (c *Comment) HashTag() string { + return "issuecomment-" + com.ToStr(c.ID) +} + +func (c *Comment) AfterSet(colName string, _ xorm.Cell) { + var err error + switch colName { + case "id": + c.Attachments, err = GetAttachmentsByCommentID(c.ID) + if err != nil { + log.Error(3, "GetAttachmentsByCommentID[%d]: %v", c.ID, err) + } + + case "poster_id": + c.Poster, err = GetUserByID(c.PosterID) + if err != nil { + if IsErrUserNotExist(err) { + c.PosterID = -1 + c.Poster = &User{Name: "someone"} + } else { + log.Error(3, "GetUserByID[%d]: %v", c.ID, err) + } + } } +} - comment := &Comment{PosterId: userId, Type: cmtType, IssueId: issueId, - CommitId: commitId, Line: line, Content: content} - - if _, err := sess.Insert(comment); err != nil { +func createComment(e *xorm.Session, u *User, repo *Repository, issue *Issue, commitID, line int64, cmtType CommentType, content string, uuids []string) (_ *Comment, err error) { + comment := &Comment{ + PosterID: u.Id, + Type: cmtType, + IssueID: issue.ID, + CommitID: commitID, + Line: line, + Content: content, + } + if _, err = e.Insert(comment); err != nil { return nil, err } // Check comment type. switch cmtType { case COMMENT_TYPE_COMMENT: - rawSql := "UPDATE `issue` SET num_comments = num_comments + 1 WHERE id = ?" - if _, err := sess.Exec(rawSql, issueId); err != nil { + if _, err = e.Exec("UPDATE `issue` SET num_comments=num_comments+1 WHERE id=?", issue.ID); err != nil { return nil, err } - if len(attachments) > 0 { - rawSql = "UPDATE `attachment` SET comment_id = ? WHERE id IN (?)" - - astrs := make([]string, 0, len(attachments)) - - for _, a := range attachments { - astrs = append(astrs, strconv.FormatInt(a, 10)) + // Check attachments. + attachments := make([]*Attachment, 0, len(uuids)) + for _, uuid := range uuids { + attach, err := getAttachmentByUUID(e, uuid) + if err != nil { + if IsErrAttachmentNotExist(err) { + continue + } + return nil, fmt.Errorf("getAttachmentByUUID[%s]: %v", uuid, err) } + attachments = append(attachments, attach) + } - if _, err := sess.Exec(rawSql, comment.Id, strings.Join(astrs, ",")); err != nil { - return nil, err + for i := range attachments { + attachments[i].IssueID = issue.ID + attachments[i].CommentID = comment.ID + // No assign value could be 0, so ignore AllCols(). + if _, err = e.Id(attachments[i].ID).Update(attachments[i]); err != nil { + return nil, fmt.Errorf("update attachment[%d]: %v", attachments[i].ID, err) } } + + // Notify watchers. + act := &Action{ + ActUserID: u.Id, + ActUserName: u.LowerName, + ActEmail: u.Email, + OpType: COMMENT_ISSUE, + Content: fmt.Sprintf("%d|%s", issue.Index, strings.Split(content, "\n")[0]), + RepoID: repo.ID, + RepoUserName: repo.Owner.LowerName, + RepoName: repo.LowerName, + IsPrivate: repo.IsPrivate, + } + if err = notifyWatchers(e, act); err != nil { + return nil, err + } + case COMMENT_TYPE_REOPEN: - rawSql := "UPDATE `repository` SET num_closed_issues = num_closed_issues - 1 WHERE id = ?" - if _, err := sess.Exec(rawSql, repoId); err != nil { + if _, err = e.Exec("UPDATE `repository` SET num_closed_issues=num_closed_issues-1 WHERE id=?", repo.ID); err != nil { return nil, err } case COMMENT_TYPE_CLOSE: - rawSql := "UPDATE `repository` SET num_closed_issues = num_closed_issues + 1 WHERE id = ?" - if _, err := sess.Exec(rawSql, repoId); err != nil { + if _, err = e.Exec("UPDATE `repository` SET num_closed_issues=num_closed_issues+1 WHERE id=?", repo.ID); err != nil { return nil, err } } + return comment, nil +} + +func createStatusComment(e *xorm.Session, doer *User, repo *Repository, issue *Issue) (*Comment, error) { + cmtType := COMMENT_TYPE_CLOSE + if !issue.IsClosed { + cmtType = COMMENT_TYPE_REOPEN + } + return createComment(e, doer, repo, issue, 0, 0, cmtType, "", nil) +} + +// CreateComment creates comment of issue or commit. +func CreateComment(doer *User, repo *Repository, issue *Issue, commitID, line int64, cmtType CommentType, content string, attachments []string) (comment *Comment, err error) { + sess := x.NewSession() + defer sessionRelease(sess) + if err = sess.Begin(); err != nil { + return nil, err + } + + comment, err = createComment(sess, doer, repo, issue, commitID, line, cmtType, content, attachments) + if err != nil { + return nil, err + } + return comment, sess.Commit() } -// GetCommentById returns the comment with the given id -func GetCommentById(commentId int64) (*Comment, error) { - c := &Comment{Id: commentId} - _, err := x.Get(c) +// CreateIssueComment creates a plain issue comment. +func CreateIssueComment(doer *User, repo *Repository, issue *Issue, content string, attachments []string) (*Comment, error) { + return CreateComment(doer, repo, issue, 0, 0, COMMENT_TYPE_COMMENT, content, attachments) +} +// GetCommentById returns the comment with the given id +func GetCommentById(id int64) (*Comment, error) { + c := new(Comment) + _, err := x.Id(id).Get(c) return c, err } -func (c *Comment) ContentHtml() template.HTML { - return template.HTML(c.Content) -} - -// GetIssueComments returns list of comment by given issue id. -func GetIssueComments(issueId int64) ([]Comment, error) { - comments := make([]Comment, 0, 10) - err := x.Asc("created").Find(&comments, &Comment{IssueId: issueId}) - return comments, err -} - -// Attachments returns the attachments for this comment. -func (c *Comment) Attachments() []*Attachment { - a, _ := GetAttachmentsByComment(c.Id) - return a +// GetCommentsByIssueID returns all comments of issue by given ID. +func GetCommentsByIssueID(issueID int64) ([]*Comment, error) { + comments := make([]*Comment, 0, 10) + return comments, x.Where("issue_id=?", issueID).Asc("created").Find(&comments) } func (c *Comment) AfterDelete() { - _, err := DeleteAttachmentsByComment(c.Id, true) + _, err := DeleteAttachmentsByComment(c.ID, true) if err != nil { - log.Info("Could not delete files for comment %d on issue #%d: %s", c.Id, c.IssueId, err) + log.Info("Could not delete files for comment %d on issue #%d: %s", c.ID, c.IssueID, err) } } @@ -1297,8 +1450,7 @@ func NewAttachment(name string, buf []byte, file multipart.File) (_ *Attachment, return attach, sess.Commit() } -// GetAttachmentByUUID returns attachment by given UUID. -func GetAttachmentByUUID(uuid string) (*Attachment, error) { +func getAttachmentByUUID(e Engine, uuid string) (*Attachment, error) { attach := &Attachment{UUID: uuid} has, err := x.Get(attach) if err != nil { @@ -1309,17 +1461,21 @@ func GetAttachmentByUUID(uuid string) (*Attachment, error) { return attach, nil } +// GetAttachmentByUUID returns attachment by given UUID. +func GetAttachmentByUUID(uuid string) (*Attachment, error) { + return getAttachmentByUUID(x, uuid) +} + // GetAttachmentsByIssueID returns all attachments for given issue by ID. func GetAttachmentsByIssueID(issueID int64) ([]*Attachment, error) { attachments := make([]*Attachment, 0, 10) return attachments, x.Where("issue_id=? AND comment_id=0", issueID).Find(&attachments) } -// GetAttachmentsByComment returns a list of attachments for the given comment -func GetAttachmentsByComment(commentId int64) ([]*Attachment, error) { +// GetAttachmentsByCommentID returns all attachments if comment by given ID. +func GetAttachmentsByCommentID(commentID int64) ([]*Attachment, error) { attachments := make([]*Attachment, 0, 10) - err := x.Where("comment_id = ?", commentId).Find(&attachments) - return attachments, err + return attachments, x.Where("comment_id=?", commentID).Find(&attachments) } // DeleteAttachment deletes the given attachment and optionally the associated file. @@ -1358,7 +1514,7 @@ func DeleteAttachmentsByIssue(issueId int64, remove bool) (int, error) { // DeleteAttachmentsByComment deletes all attachments associated with the given comment. func DeleteAttachmentsByComment(commentId int64, remove bool) (int, error) { - attachments, err := GetAttachmentsByComment(commentId) + attachments, err := GetAttachmentsByCommentID(commentId) if err != nil { return 0, err diff --git a/models/repo.go b/models/repo.go index 1c4f09c4d7..8ae3cfe6f2 100644 --- a/models/repo.go +++ b/models/repo.go @@ -929,7 +929,7 @@ func DeleteRepository(uid, repoID int64, userName string) error { return err } for i := range issues { - if _, err = sess.Delete(&Comment{IssueId: issues[i].ID}); err != nil { + if _, err = sess.Delete(&Comment{IssueID: issues[i].ID}); err != nil { return err } } diff --git a/modules/auth/repo_form.go b/modules/auth/repo_form.go index 1f2ba3b784..3882cb673f 100644 --- a/modules/auth/repo_form.go +++ b/modules/auth/repo_form.go @@ -110,6 +110,16 @@ func (f *CreateIssueForm) Validate(ctx *macaron.Context, errs binding.Errors) bi return validate(errs, ctx.Data, f, ctx.Locale) } +type CreateCommentForm struct { + Content string + NewStatus string `binding:"OmitEmpty;In(reopen,close)"` + Attachments []string +} + +func (f *CreateCommentForm) Validate(ctx *macaron.Context, errs binding.Errors) binding.Errors { + return validate(errs, ctx.Data, f, ctx.Locale) +} + // _____ .__.__ __ // / \ |__| | ____ _______/ |_ ____ ____ ____ // / \ / \| | | _/ __ \ / ___/\ __\/ _ \ / \_/ __ \ diff --git a/modules/base/template.go b/modules/base/template.go index 0d68254561..7f57538863 100644 --- a/modules/base/template.go +++ b/modules/base/template.go @@ -131,12 +131,13 @@ var TemplateFuncs template.FuncMap = map[string]interface{}{ "LoadTimes": func(startTime time.Time) string { return fmt.Sprint(time.Since(startTime).Nanoseconds()/1e6) + "ms" }, - "AvatarLink": AvatarLink, - "Safe": Safe, - "Str2html": Str2html, - "TimeSince": TimeSince, - "FileSize": FileSize, - "Subtract": Subtract, + "AvatarLink": AvatarLink, + "Safe": Safe, + "Str2html": Str2html, + "TimeSince": TimeSince, + "RawTimeSince": RawTimeSince, + "FileSize": FileSize, + "Subtract": Subtract, "Add": func(a, b int) int { return a + b }, diff --git a/modules/base/tool.go b/modules/base/tool.go index 2435ebe06f..16759f21f6 100644 --- a/modules/base/tool.go +++ b/modules/base/tool.go @@ -321,6 +321,10 @@ func timeSince(then time.Time, lang string) string { } } +func RawTimeSince(t time.Time, lang string) string { + return timeSince(t, lang) +} + // TimeSince calculates the time interval and generate user-friendly string. func TimeSince(t time.Time, lang string) template.HTML { return template.HTML(fmt.Sprintf(`%s`, t.Format(setting.TimeFormat), timeSince(t, lang))) diff --git a/modules/bindata/bindata.go b/modules/bindata/bindata.go index 882e4dfc14..32478274a7 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\x7b\x93\xdb\x48\x8e\xe7\xff\xfc\x14\x6c\x5f\xf8\xec\x8e\x28\xcb\xd1\x3d\x71\x8f\x98\xb0\xdd\x57\x5d\xd5\x7e\xcc\xba\x1e\xeb\x2a\xcf\xdc\x9c\xc3\xa1\xa6\x44\x96\xc4\x29\x89\x54\xf3\x51\x72\xcd\xc6\x46\xdc\xd7\xb8\xaf\x77\x9f\xe4\x80\x1f\x80\x7c\x90\x54\xd9\x3d\xbb\x71\xfb\x8f\x94\xcc\x44\xbe\x90\x48\x00\x89\x44\x66\x66\xbb\xdd\x3c\x2f\xda\x65\xfa\x32\x3d\x4e\x77\x59\x59\x6d\x8a\xb6\x4d\xdb\x62\x73\xf3\x6c\x5d\xb7\x5d\x91\xa7\x6f\xca\x8e\xbe\x9b\xbb\x72\x59\x24\xc9\xba\xde\x16\x04\xfa\x96\xfe\x92\x3c\x6b\xd7\x8b\x3a\x6b\x72\x8a\x38\xb5\x70\x52\x7c\xd9\x6d\xea\x86\x81\x7e\x91\x50\xb2\x2e\x36\x3b\xce\x43\x7f\x49\x5b\xae\xaa\x79\x59\xd1\xe7\x15\x85\xd2\x77\x55\xd2\xd6\xcb\x32\xdb\xcc\x83\x04\x44\x58\xfa\x1f\xd3\x1f\xab\x3c\xbd\xea\x8a\x5d\xfa\xa2\xdd\x66\x9b\xcd\xab\xac\x45\x96\xae\x48\xb3\xe5\xb2\xee\xab\xee\xc5\x73\x49\x90\xc2\xeb\xbe\xb3\xd2\x2f\xfa\x4e\xe2\xfa\x9d\x45\x7d\xdc\x25\x4d\xb1\x2a\xa9\x63\x0d\x45\x7d\xd0\x60\xb2\x2f\x16\x6d\xd9\x71\xa3\xff\x22\xa1\xe4\xae\x68\xda\xb2\xe6\xf6\xfc\x59\x42\xc9\x2e\x5b\x31\xc0\x25\xfd\x25\x5d\xb1\xdd\x6d\x32\x64\xb8\xd6\x60\xb2\xc9\xaa\x55\x2f\x30\xef\x35\x98\x2c\x9b\x82\x92\xe6\x55\xb1\xa7\xd8\x13\x7c\xa4\xf4\x31\x9b\xcd\x92\x9e\x70\x3a\xdf\x35\xf5\x4d\xb9\x29\xe6\x59\x95\xcf\xb7\x82\xb5\x8f\x14\x9f\x6a\x7c\x4a\xf1\x29\xc7\xa3\x1b\x45\x4e\x08\x9a\x67\xad\xf6\x85\x86\x86\xf0\x95\xb5\x09\x8a\xaa\xb2\xad\xe5\xe6\x60\x52\x6c\xb3\x72\xc3\x83\xf0\x8c\x03\xd4\xf8\xb6\xdd\xd7\x18\xaa\x4b\x0d\x12\x22\xe6\xdd\xfd\xae\x00\x1e\x9e\x5d\x53\x28\x59\x66\xbb\x6e\xb9\xce\xb8\xad\x12\x4a\x08\x68\x57\x13\x42\xea\xe6\x1e\x70\xf6\x91\xd4\xcd\x2a\xab\xca\xbf\x67\x9d\x20\xe9\x22\xf8\x4c\xb6\x65\xd3\xd4\x8c\xdf\x33\x04\x12\xea\xf1\x9c\xcb\xa1\x98\x73\xc2\x44\x50\x0a\xa7\x6c\xcb\x55\x23\xa8\xe4\xc4\x33\x7c\x71\x29\x9c\x76\x53\x37\xb7\x9a\xf0\x9a\x83\x83\xac\xd4\x08\x4d\x8d\xeb\xcf\x2a\x42\xbe\xa6\x9e\xe1\x23\x02\x68\x93\x2c\xdf\x12\x2a\x77\x59\x55\x30\x8e\x8e\xf9\x8b\xf0\x42\x5f\x89\xd2\xd4\xbc\x2d\xba\xae\xac\x56\x8c\xec\x63\x89\x4a\xaf\x34\x2a\x09\xd2\x5c\xdc\x7d\xdd\xbb\xe1\xa4\xf8\xbf\xd2\x67\x7a\x29\x9f\x92\x16\x64\x42\xa2\xcb\xc9\x3d\x69\xe7\x37\x45\x91\x4b\x5f\xda\xf4\x35\x85\x93\x5d\xbf\xd9\x10\xd6\x7e\xeb\x8b\xb6\xe3\x4c\x97\xf4\x4d\xfd\x97\xef\xa4\x6c\x5b\x0a\x50\xf4\x3b\x04\x12\x1a\xba\x6a\x89\xce\x9c\x20\x90\x24\x9f\xda\x22\x6b\x96\xeb\xcf\x89\xfc\xa3\xad\x1c\x60\xda\x3b\x34\xa8\x4c\x48\x4a\x44\x52\x83\x55\x90\x2c\xeb\x9c\x3f\x4e\xe8\x8f\x8a\x2e\xab\xb6\xa3\x19\xf7\x39\xd1\x00\x83\x49\x48\x06\xa0\x2b\x3b\x60\x41\x23\x31\x7d\x5b\x1e\xc1\xf4\x75\xd9\xb4\xdd\xb3\xae\x24\x62\xfd\xd0\x57\x09\xf7\x8f\x66\xdb\x3c\x5f\x18\x13\x7a\x53\x13\x8a\x10\xdd\x50\xff\xce\xee\xaf\xfe\xf9\xfd\x51\x7a\x49\x9c\x68\xd5\x14\x14\x4e\xa9\x0c\xfa\xa3\x3c\x7f\x98\x25\x94\xcb\x6a\x3a\xcd\xba\x6c\x91\xb5\x85\x47\x2b\x27\x0a\x75\xbb\x34\xd0\x38\x73\x35\x70\xb0\xb6\x8b\xfa\x3b\x35\x43\xa8\x0c\x9d\x57\xae\x8c\x73\x9e\x5c\x14\xcf\x4c\x0d\x99\x2f\x37\x05\xc7\x53\x51\xe9\xbb\xf3\xf3\x8b\xd3\x9f\xd3\xa2\x5a\x95\x55\x91\xee\xcb\x6e\x9d\xf6\xdd\xcd\x7f\x9f\xaf\x8a\xaa\x68\x88\xc7\x2d\xcb\x94\xe6\x54\x43\x94\x90\x12\x61\x4b\xe7\x66\x49\xdb\x6e\x68\xee\x03\xbd\x57\x57\xef\xd3\x33\x46\xf1\x2e\xeb\xd6\x68\x48\xb7\x4e\xda\xdf\x36\x8c\x22\x57\xe1\xf5\xba\x48\x41\x65\x00\xaa\x6f\x0c\x1f\x69\xae\x6d\x9c\x25\x45\xd3\xcc\x89\x2d\x75\xf7\x73\xcd\xac\xe5\x0d\x21\xa5\x08\x22\x9d\xaa\xee\xd2\x45\x91\x22\xcf\x2c\x49\xac\xc1\x86\xdd\xe3\xdd\x6e\x53\x2e\x65\xae\xbf\x91\x34\x8f\x68\x96\x20\x8a\xa5\x10\x0e\x88\xb2\xb4\x00\x5d\xc4\x9e\x79\x3e\xa4\x11\x03\x41\xfe\x75\x41\x0c\x70\xdd\xaf\x84\xed\x6d\xea\x3e\xff\x0e\x94\x6a\xad\xf7\x84\x9a\x7e\xa8\xa9\xc1\xc0\x8e\x03\xf0\x55\x1c\x13\xc5\xb1\xd0\x6a\x8a\x6d\x4d\x7c\xc5\x11\x7b\x49\x04\xb5\x2f\x29\x91\x7a\xda\x66\x77\x34\xdf\xba\x3a\xed\xd6\x65\x9b\xe6\x44\x6c\x4b\x2e\x98\xa6\x46\x4f\xe2\x42\xc8\x82\x08\x54\x48\xc3\xe2\xe2\x31\x00\xd4\xb6\x27\x6a\x5a\x53\x61\x2c\x8c\x58\x72\x52\x91\x53\xed\x44\x97\xa8\x1c\xd0\x37\x51\x6e\x4d\x5c\x99\xf9\xe6\x29\x02\xfa\x1d\x96\x4f\xad\xca\x6e\x6e\xa8\x55\x2d\x51\xc5\xdb\x74\xb9\xa9\x89\xa4\x3e\x7e\x78\x4f\x99\xd7\x5d\xb7\x9b\xef\xea\x06\x64\x7c\x7d\x7d\x49\xd3\xa3\xe9\x7c\x6c\x80\x6b\x86\xa9\xfa\xed\x82\xbe\xf6\xeb\x92\x98\x40\x16\x0c\x10\x50\xb1\x61\xf9\x57\xa5\x75\x35\xc3\x58\xf5\xcd\x66\x30\x8c\x54\xa5\xa5\x1c\x68\x1e\x37\xe1\x39\xff\x5c\xf9\x56\xa2\xbb\x2d\x29\x09\x7b\x0c\x2a\x75\xb5\x80\x1c\x22\xda\xaa\x77\x5c\x6e\x40\x5c\x17\x1a\xe1\x29\x0a\xb2\xcb\xa5\x8b\x04\xa3\x54\xa8\x20\x01\x17\xde\x52\x87\x75\x36\x5f\x9d\x11\x1a\x30\xa5\x11\x7b\xd3\xd4\x5b\x8a\x7d\x4d\x7f\x3e\xc2\x37\xff\x8c\xcb\x03\x4c\x96\xe7\xc4\x66\xda\xa3\xf4\xc3\xeb\x93\xf4\xbf\xfc\xe1\xc7\x1f\x67\xe9\xbb\x8e\x27\x04\xd3\xc8\xdf\x78\x6c\x29\x28\xa2\xd4\x81\xd2\xcc\xed\x68\xf8\x1f\x31\x81\x3f\x4a\x5f\x20\xf5\x7f\x14\x5f\x32\x52\x03\x8a\xd9\xb2\xde\xbe\xe2\xc9\xbd\xcd\xba\x59\xc2\x29\x44\x35\x4a\x4e\x57\x45\x95\x53\x40\x05\xb2\xa6\x05\x5c\x47\xd3\x03\xf1\x2c\xca\xc9\x7c\x59\x57\x37\x65\xc3\x1d\xfa\xa5\xca\x16\x84\x13\x53\x5b\x88\x1d\x23\xc5\xa4\x1e\x21\x8d\x26\x72\x79\x73\xef\x41\xd1\xd5\x73\x8e\xd4\x01\x4d\x58\x95\x2b\x58\x1c\x01\x9d\x0e\xcb\x57\x88\xc6\xb8\x5d\x50\xf7\x1a\xc3\x77\xeb\x11\x5e\xdf\xdc\x6c\x88\xb1\x19\xb3\xd2\x1a\x2e\x24\x56\xf8\x56\x08\x42\xc4\xb8\x83\xe2\x75\x5a\xb6\x80\x3c\x39\x3d\x4f\x8b\x3b\xa2\x36\x22\x07\x92\x94\x79\xbf\x04\x85\x31\xec\x51\xca\x62\x82\xf0\x4b\x9c\x61\x29\xec\x2d\x98\xab\xdc\x34\x66\x08\x4b\x02\xa2\x29\x9a\x4b\x79\x73\x41\x50\x63\x2a\x88\x55\x73\xc5\xba\x6b\x98\x36\x99\x61\xd4\x3a\x8c\x52\x3b\xcc\x4b\xc3\x5d\x6d\xee\x53\xe8\x0b\xa0\x0b\xd1\xe8\x4c\xf5\x6c\x67\x89\xca\x2a\x53\x60\xe7\x77\x25\x94\x3d\x37\x54\x48\x35\x6d\x96\xd9\xc3\x9f\x19\x80\xb5\xc8\x76\x32\xaf\x6b\xd8\x05\x57\xdc\x3a\x45\x8f\xdb\xd7\xa2\x09\xa8\x81\xb5\x51\x22\xc6\xbb\x12\x9c\x46\x91\x85\xb6\x12\xc6\x50\x35\x55\xd5\x16\x05\x4a\xa0\xfc\xcf\xa9\x4c\xe4\x99\xa9\xf2\xa3\xfa\x88\xc9\x5d\xd2\x49\xd2\xbc\x4e\x59\x10\x80\x9d\x51\x6e\xeb\x6a\xa5\xdd\xd7\x3e\xa7\x4d\xb9\x5a\x13\x5f\xa9\xf7\x47\x82\xb4\xfd\xba\x2e\x98\x76\xde\x9d\xbe\xfc\x41\xda\xb1\x62\xe6\xe6\x32\x31\x5b\xcc\xfa\xae\x66\x3a\xd5\x21\x94\x26\x38\xf1\x02\xc8\x91\x9a\x25\x40\x43\xc5\xd6\x54\xb7\xb1\xb4\xd6\x79\x12\xa6\xe9\x04\xf1\x30\x92\x7b\xa0\x1c\xab\x16\x33\x5f\xd5\x50\xcf\x4c\x6b\x61\x56\x4d\x9a\x7e\xdb\xcd\x57\x65\x37\xbf\xe1\x09\xcb\x65\xbe\xe6\xbc\x2c\x39\x28\x25\x7d\x42\x49\x4f\x52\x9a\xf5\xa4\x73\xe6\x7f\x4c\x1f\xdf\xa9\xb8\xfe\x03\xcf\xc4\x79\x76\x47\xb0\x18\x0c\x55\xfa\x9a\x42\xb4\x05\x5b\x5d\xe4\x35\xd1\x39\xe3\xbc\xed\x77\xe0\xe8\x2a\xa1\x8f\xd2\x9d\x00\xe6\xf5\xbe\xda\xd4\x59\x0e\x96\x43\xb3\xab\xc4\xda\x68\x51\x56\x19\x49\x17\x2b\x05\xac\xec\x31\x51\xc3\xf9\xc5\x35\x00\x57\xf5\xa2\x2f\x37\xb9\x01\xcc\xa8\x87\x77\xd9\xa6\xcc\x59\xcf\xd2\x71\x0f\x75\x1a\x8b\x2a\xa5\x2d\xcb\xba\x61\x71\x88\xde\x58\xc6\x03\x72\xb8\x61\xf9\x86\x68\xca\xab\xb0\xc8\xe7\x44\x26\xa3\x81\x06\x1e\x0a\x28\x0b\x54\x50\x4c\xd9\x56\x4f\x3a\xb4\x74\xd9\x53\x5d\x34\xe8\x1c\x4d\x19\xdb\xf4\xd9\x2b\xfa\x4d\x58\x3c\x0b\xdf\x5b\x8d\x11\xcf\x89\xa9\x24\xf6\x32\x4b\xa3\xa6\x46\xe4\xed\xa8\xcb\x88\x37\xe8\x6b\xd8\x5e\x23\x81\xb6\x17\x7a\xe5\x85\xe0\x86\x86\xb5\xf8\x8e\x02\x4f\x68\x02\xaf\x36\x18\x84\x0c\xda\x0b\xa9\x71\x35\xe1\x8d\x09\xe4\x48\xa6\xcb\x0d\x75\x8d\x79\x67\x97\xdd\x52\xdb\xb2\x86\x94\xb0\xe4\x13\x2f\x96\x3f\x27\xbd\x28\x40\xf5\x26\x77\xca\x26\x68\xba\x6e\x86\x8b\x33\x0f\xe4\xe8\xb5\x25\x2d\x72\xb9\x9e\xbb\xa5\x36\x23\xa5\x2b\xbe\x40\xe6\x21\xc9\xaf\xbc\x99\xd8\x39\x29\xd9\xde\x63\xb8\xb8\x13\x67\xf7\x7e\xb4\x48\xfd\xa1\x29\x42\x2a\xfa\xa2\x66\xac\xdd\x15\x0e\xea\x24\x8c\x8d\x33\x50\x59\xa4\xa8\x69\x51\xf1\x1a\x8a\x92\x64\xa1\xa7\xa9\xb2\xd8\xa3\xa5\xc8\x27\x35\x01\x7c\x4e\xac\x82\xa8\xc8\xe4\x13\x31\x03\x5a\x97\xf8\xb5\xf1\xdc\x06\xc7\xad\x91\x79\x49\xa7\xfc\xc0\xcb\xc1\x75\xb1\x63\x91\xb9\x6d\x31\xaa\x1b\x82\xcc\xef\x55\xf7\x72\xe3\xfb\x93\x70\x5a\x1a\x70\xe2\x4f\xdf\x99\x71\xe1\x77\x16\xf1\x73\x49\x23\x89\xfc\xb1\xe4\x90\x05\x3b\xe9\xc8\xb0\x52\x34\xcd\xfd\x51\x1a\xc9\xa0\x35\xad\xcd\x17\x05\x09\x38\xcd\x96\xcf\x6c\x75\xc0\xa3\x96\x2d\x85\xe4\x61\x68\x00\x91\x4a\xce\xba\x19\x8a\x34\x6e\xa1\x30\x28\xad\xc5\x09\x7c\x88\xf3\x50\xea\x4f\xd4\x49\x08\xdb\x16\xac\xf3\xcd\xb7\xb2\xb6\x97\xaf\xf4\xac\x48\x48\x31\x59\xd1\x7c\x34\x7a\x7b\xc9\x4b\xb2\x15\x34\x54\x25\x37\x06\x28\xba\x90\x83\x2a\x84\xc5\xfc\x64\x06\x15\x9a\xd8\x7b\xac\x57\x69\x6a\x8e\xd0\x4f\xb2\x86\x92\x67\xc6\x91\x45\xe0\x42\x3f\x69\x69\xb2\x7b\x24\x1e\xb3\x31\x24\x0d\xa1\x54\x4f\xf4\xdd\xe2\x0c\x3c\xe9\x5f\x2c\x5e\x3d\x6e\x5f\x3c\x5f\xbc\x72\xac\x71\xb9\x2e\x96\xb7\xb2\x96\x28\xab\x45\xfd\x05\x0b\x2e\x1a\x78\xc6\x71\xc5\x53\xe4\x71\x9e\xae\x29\x15\x3a\x39\x4d\x65\xca\x46\x88\xe7\xd4\x68\xd0\xa8\x31\x3c\xe3\x67\x66\x9a\x72\xc2\xc1\x08\x89\x72\xa3\x12\x69\x59\x42\xc3\xc8\x73\x07\x6b\x7a\x4f\xb7\xc7\x1c\xcb\x94\x0b\x36\xef\x49\x17\xfd\xdd\x94\xdb\xb2\x1b\x91\x0e\xf3\x91\x4c\x49\x50\xd7\xf9\x86\x4b\x94\x05\x6c\xa0\x2d\xc4\x8d\xa9\x18\x92\x9b\x46\x4e\xfb\x8c\x96\x37\x7f\x48\x89\x84\x7a\x92\x42\xdc\x27\x6a\x26\xb1\xe3\x8c\x05\x2f\x2d\x10\xb2\x76\xde\x57\x8a\xd6\x22\x37\x62\x7a\x5b\x42\x48\x70\xbd\x46\xf2\x01\x94\x61\x5e\xf5\xdc\xf4\xa9\xc3\xf8\xf7\xa4\x14\xdf\xb8\x6c\xcc\xb9\xb9\x41\x25\xeb\x64\xd9\xe4\xe0\x11\x67\xab\x0a\x59\x5e\x01\x03\x0c\xc7\x03\x4d\x8b\x03\x3f\x7a\xb4\xc2\xb8\xa5\x18\x0c\xc8\xa2\xef\xba\x9a\x75\xee\x0d\x53\x8d\xe4\xb1\x56\x9f\x00\x10\xcb\x08\x5f\x1e\x06\x24\xc4\x93\x8c\x4d\x61\x3a\xf0\xdc\x1b\x09\x75\xb5\x32\xe8\x9d\x8a\x3a\x07\x96\xcb\x72\x3d\xab\xee\x8d\x94\x89\x20\xb8\x15\x5c\x61\x37\xdd\x96\xa7\x4d\xf1\xbd\x6f\x8d\x9b\x33\xc8\x61\x2d\x92\xec\xc1\x7c\xfa\x80\x54\x31\x0f\xd9\xac\x33\xc9\xa5\x46\x16\x4f\x1f\x4d\x8c\x5e\xa4\xf3\xcc\x20\x06\x4b\x6a\x63\x0e\x44\x53\x2f\x90\x7b\x36\xa8\xcb\x2f\x77\xc6\x18\xec\xe2\x26\x7b\x01\xd4\xd5\xf5\xbc\x5d\xcb\xd2\xd2\x9a\x97\x6e\x8a\x6a\x15\x99\x09\x60\x22\x06\xd1\xfd\x57\x16\x73\xa4\xc0\x67\x9b\xcf\xc9\x3d\xec\x51\x7f\x25\x0e\x5f\xc1\xd2\x57\x27\x94\x20\x8b\x91\x33\x04\x08\x94\x57\x46\x9f\x13\x16\x81\xe7\x03\xb5\x8e\x45\x84\xc6\x05\xfa\x05\x92\x7e\x89\xb4\x35\x1b\xc2\xe4\x72\x42\x05\xfc\x50\x78\x8b\x26\x42\xae\x8b\xb4\x88\xbe\xb6\xa5\x0e\xad\xa7\x6f\x0b\x2d\xfc\x2d\x2d\x9b\xdb\x8f\x58\xf6\xca\x1a\x96\x17\xbc\x97\xd9\x3d\x2b\x5d\x12\xad\x1f\x48\xb8\x2e\xb2\xad\xb6\x92\x83\x52\xc4\x31\x89\x33\x8d\xe4\x20\x49\xb9\xc0\xaa\x91\x40\xfd\xb0\x2e\x88\x2e\xa2\x62\xdf\xa9\xff\x85\x9a\x4b\x7f\x1d\x99\x62\x7e\x4d\xb2\xcd\x6e\x9d\x41\xfe\x07\x60\xb0\x3a\x10\x10\x06\x3e\x05\x08\x68\xa1\xdf\x16\x4d\xb9\xe4\x20\x67\x78\xfa\x6c\xfe\x3d\x0c\x4e\x34\x51\x48\x11\x8c\x0b\xcb\x69\x92\xfc\x43\x05\x72\x98\x95\xc4\xb0\xdc\xb6\xfc\xbb\xf5\x22\x2a\x8e\xe3\x89\xe7\x10\x04\x54\x32\x0f\xe5\x80\x20\x18\x59\x3d\xeb\x52\xe6\x0b\x1d\xab\x80\x51\xd1\xdb\xec\xcb\xd7\x32\x6e\xeb\x89\x7c\xc2\x0a\x7c\x26\x9b\xf0\xda\xc5\x98\x1d\x10\x3c\xdb\x37\x0e\x42\xd3\xd0\x33\x48\x75\x4b\x52\xad\x72\x60\x1f\xe5\x3b\xc5\xf7\x1f\xcd\x78\x4e\x22\x44\x15\xe8\xd4\x99\xd1\x49\x38\xe7\xcc\x37\xa1\x08\xcf\xfc\x74\x0b\x95\x63\x47\xce\xac\x46\xda\x92\xdf\x31\x0e\xd2\x28\x65\x9d\x40\x24\x35\xf3\x16\xff\x39\xcb\xc8\x39\x2b\x9d\x55\xa8\x5a\x3a\xe9\x69\xf2\x05\x10\x62\xf7\x9d\x8f\xf3\x0d\x26\xdc\xc1\xec\xa4\x0a\x4c\xe4\xbe\x18\x1b\xf2\x0e\xe4\xef\x68\xca\x4c\x14\xe0\x66\xd2\xc1\x8c\x32\x98\xc8\x44\x3d\xcf\x47\xbc\x60\x9c\x91\xc1\x68\xd9\xb3\xd9\x14\x2b\x36\x35\x59\xc5\x51\x6d\x4a\x42\x24\x0c\x04\x2c\x24\x20\x8f\x61\x37\x58\xe1\xb8\x86\x4a\xbc\x1b\xa3\x78\xf9\x44\xad\x26\x75\x9c\x82\x9c\x33\x58\x44\x69\x33\x54\x92\x6f\x79\xbd\xd0\xf6\xcc\x9a\x79\x6d\x21\xda\x49\x3c\x1a\x2c\x78\x51\x54\x81\x2a\x0e\x17\x4f\xb4\xc8\x0b\xae\xaf\x95\x0f\xb0\xdf\x59\x74\xb8\xdc\x1e\x17\xac\x85\x3b\xa0\x43\xc5\xba\x05\x61\xf1\xa5\x84\xd9\xee\x4d\xc9\xe6\x20\x2c\x09\xdd\x4a\x18\x69\xb3\x64\x43\xcc\x80\x97\x1e\xd2\x2b\xd1\x63\xeb\x3b\x5e\xb9\x71\x7d\x9c\x2a\xf9\xc4\x8c\xa7\x9d\xe2\x71\xd6\xc5\x25\x2d\xe6\xea\x7d\x91\x1f\x91\x88\xe7\x1c\xd4\x4e\xb0\x8d\x6c\xb3\xcf\xee\x5b\xd8\x48\x8c\xe3\xb0\xc9\x52\xb2\x33\x3b\x21\x05\x60\x85\x56\x85\xf6\x69\x9a\x71\x86\x89\x96\x78\x27\x0b\x0f\x27\xa6\xf7\x58\x1e\x82\x5b\xa8\xd5\x85\x56\xdd\x2c\xf6\x20\x62\x55\xd6\xf0\xd2\x96\x17\x82\xac\xe3\x4b\x72\x50\x10\xb6\x3c\x94\xf3\x4f\xe4\x3d\x62\xf5\x88\xaa\x61\x65\x85\xf8\xb1\xe0\x9a\xf4\x3f\xc2\x2c\x9a\x14\xd8\x0a\x7a\x2a\xff\x99\xe8\xc5\x25\xe1\x90\xd7\x59\x7e\xf9\xcc\xb2\x89\x46\xc5\x0c\xbb\x12\x8f\xc5\x6f\xd2\x76\x34\x05\x18\xd3\xb6\x4d\xf7\x57\xd1\xaf\x74\xc9\xcc\xa9\x98\x62\x40\x53\xbb\x2e\x77\x69\x0d\x63\x61\x88\x42\x4f\xb6\x81\x8a\x49\xd8\xc8\x0b\xe8\xdd\x6c\x35\x6d\xb2\xaa\xbd\x29\x60\x3e\xdd\xa6\x37\xbc\x13\x34\xd3\xaa\x59\x63\x95\xed\xba\x03\x35\xcb\x1a\x06\x55\x87\xd2\x02\x63\x17\x0c\x54\x5c\x35\xc1\xdc\xa1\x66\x6d\x03\xb0\xea\x4b\x6a\xad\x0d\x4c\x66\x23\x14\x40\x6b\x8c\x36\x29\xac\x35\x77\x45\x88\x88\x9b\x7f\xb4\xe7\x01\xd6\xd5\x42\x2c\x66\xf5\x78\x98\xa4\x52\x58\x2b\xb0\xc7\xb4\xb8\x8f\x7b\xcf\x59\x1d\x05\xf0\x8e\xc7\x5d\xa1\xb5\xf0\xc4\xe0\xb9\x32\x28\x10\x56\x0a\xbf\x56\x48\xba\x0c\x4b\xbe\x05\x35\x71\xb9\x8e\x66\xe7\x35\x52\x52\x49\x19\x4d\xd0\xe4\x13\x57\x4d\xcb\xf8\x75\x56\xad\x0a\x36\x75\x51\x49\x2c\xf2\xf0\xad\x1a\xba\x44\x52\x83\x57\x8d\x84\xd9\x40\x6e\x59\x96\x34\x21\xeb\xed\x83\x39\xcb\xca\x0c\x36\x6d\xf2\xb7\x9a\x74\x08\x58\x7a\xff\x44\x21\xd6\x7e\xab\x24\xda\xdb\x19\xd8\x19\xb0\x3c\x28\xbb\x7b\x6c\x3a\x2d\x48\x07\x96\x45\x1a\xc5\xd0\x32\x17\xdc\x01\x96\x8b\xd7\x16\xa6\xf1\xc8\x98\xe9\xf1\xd4\x96\x90\xc2\x89\x19\xe9\xb5\x85\x13\x5e\x25\x6f\x67\x10\x0e\xac\x4c\xc3\x38\x1d\x88\x84\x27\x8f\xdb\x27\x3c\x60\x96\x36\x0b\xe0\x77\x59\x47\x6c\xb1\x92\x25\x8a\x70\xa8\x30\xab\x26\xbb\x22\xc0\x55\x04\x6c\x86\x1d\x5d\x41\xc5\xe7\xc4\x6f\x34\xdb\x1e\xf3\x94\x41\x54\x59\x4c\xab\x3a\xef\x3f\x51\x50\x2d\x22\xa9\x73\xb3\xd0\xa5\x2a\xb6\xf1\x6c\xd3\xa7\x8d\xf7\x80\xda\x44\x4d\x40\xb1\xfd\x47\xc9\xfb\x65\x7a\x2a\x01\x5b\xf4\xf6\x25\xfa\x54\xe6\x49\xb2\x03\xde\x83\x6d\x71\x1d\x08\xd7\x68\x75\x7f\xf0\x36\xe8\x66\x28\xd9\x09\x0b\x52\x0a\x08\xd7\xb6\x04\xa0\x05\xf0\x1e\x6a\xb0\x60\x63\xe3\x2a\x56\x72\x55\xb0\xdd\x41\xeb\x5d\xce\xc7\x60\xfb\x62\x91\xb2\xb9\x93\x08\x87\xd6\x45\xda\xd1\x6d\x46\x4b\xaa\xbb\x32\x73\x96\x19\x1a\x2d\xde\x78\x57\x29\xfa\x9a\x37\xdd\xb1\x93\x39\xf6\x10\xe1\xfd\x08\xdd\x7a\x78\xaf\xc1\xa4\xdf\xe5\x6c\xd3\xf2\x1d\xfe\x88\x08\xd7\xe1\x38\x3d\xb0\x36\xa2\xeb\x96\xcd\x69\x33\x02\x9e\xa7\x0a\xc7\x2d\xbb\x9f\xd9\xf4\x99\xf0\xfa\xd0\x29\x94\x0f\x41\x42\x23\xbf\x24\xe9\xa2\xd5\x00\x66\xc2\x7b\x80\x5e\xd9\xd7\x03\x42\x48\x56\xa6\xeb\x7a\x9f\x6e\xca\xea\xb6\x55\xfc\x3a\x7b\x88\xad\x93\xd3\x53\x44\x10\xb0\x58\x6a\x58\xad\x2a\xab\xbe\xf8\x29\xb1\x90\x18\xe2\x11\x1c\xfb\x29\x14\x22\x15\x87\xcc\x40\xf7\x4f\x4e\x10\x9d\x1e\x23\x7a\x12\xd6\xaf\x73\x35\x0b\x76\x74\x99\xfd\xea\xc6\xce\x4d\xc1\x0a\x36\xd8\xe1\x1b\xe5\x42\x84\x9f\xba\x6e\xd5\xf6\xe8\xd9\x0f\xc7\xc1\x50\xa1\x50\x3a\x5a\x0e\x42\x07\x53\x1a\x63\xfb\x14\x04\xc5\xcb\x43\x52\x96\xb4\x3d\x98\xdb\xf3\x72\x2b\xae\x40\x1f\x35\x55\xb6\xec\xdd\xba\x02\xc9\x33\x5a\x29\x0f\x3a\x13\xee\x18\x9c\x13\x2e\xa5\xfb\xc6\x47\x2d\xf1\xc8\xd4\x05\x41\x08\x84\x7d\xd4\xd8\x21\x65\x69\x01\x66\xfc\xfe\x0a\x81\x19\xf9\x84\x1b\x29\xc2\x9b\x1d\x6b\xa9\x37\x91\x52\x78\xa2\x66\x7c\x97\xce\x98\x0d\xd2\xcf\xb1\xe5\x35\xb4\x36\x44\x2b\x25\x2d\xe1\xa0\x36\x3d\x68\xd3\x68\xee\x58\xbe\x3d\xf5\x2d\xec\x8e\x11\xfc\x4c\xa8\x3f\x83\x65\x58\x76\xc5\xfa\x56\xf4\x49\xae\x0a\x5b\x6a\x52\x04\x21\x00\x0b\x8e\xd6\xaf\x33\x8e\x85\x1b\xb1\x41\x5c\x7c\x8b\x1c\x80\xba\x17\xc5\xeb\xc9\xc2\xf6\xb0\x43\xc6\xb6\x6b\x68\xd0\x49\xf0\x0e\x2c\x51\x23\x96\x16\xb1\x2f\x70\xaf\x1a\x1b\xb2\x9e\x6b\xd1\x0a\x52\xcb\x62\xfe\x8f\x90\xc5\x78\xeb\x65\xc1\xd6\x2d\xab\x54\x99\xb5\x4b\x15\x96\x9d\x50\x1b\x30\x07\x0a\x67\x9e\xc8\x81\x89\xb8\x89\x00\x0b\x41\xcc\x12\x6a\xd1\xf3\xc8\xce\x0b\x8b\xed\x7f\x98\x6d\x37\xaa\xd0\xd9\x76\x7d\x53\x07\x64\xc3\x6d\x1c\x48\x9c\x11\x01\x51\x02\xe4\xaf\x0e\x7d\x20\x55\x75\xf0\x9d\x70\xe5\x6a\x44\xa7\x67\x34\x51\x14\x44\xb0\x12\x01\x38\x2c\x2b\x78\x70\xba\x80\xe3\x8e\x28\xf8\xed\xc8\x0c\x19\xf3\xd7\x63\xac\x60\x08\x2b\x02\xcb\xfa\x00\x0b\x34\xd1\xfe\x74\x45\xb4\x65\x44\xc8\xb6\xab\xf3\x43\xb9\x97\x1d\x47\xaf\x12\x1d\xe9\xb2\x61\x5d\xae\xd6\xd4\xaf\x72\xcb\x5b\x8e\xe0\xda\xb6\xaf\xe5\x57\x75\xfc\x45\x13\xaf\x5e\x55\x6c\xc3\xe1\x1a\x66\xe8\x8c\xe3\xb6\x2f\xda\xae\xa9\xab\xd5\xab\xd3\x9a\x97\x5b\x6c\x09\x61\x51\xf1\xd3\x8b\xe7\x1a\x4f\x2c\x83\xc7\x90\xdd\x31\xdf\x94\xdd\xdb\x7e\xf1\xa4\x4d\x57\xa4\x1b\x40\x80\xbc\xc8\xd2\x75\x53\xdc\xbc\x7c\xf4\xb8\x7d\xf4\x4a\xf7\x99\xc5\x2b\x68\x5f\x39\xb4\xbc\x78\x9e\xbd\x62\xed\xb9\xad\x37\xa4\xd4\xc6\x59\xea\xed\x56\xc6\x97\xd8\xdf\x56\x20\xd1\x7e\x6c\x4d\x17\x15\x30\x57\x34\x8a\x1f\x2a\x70\xe6\x68\xdd\x8f\x8f\x0e\x9b\xa9\x49\x91\x7d\x41\x15\x15\x06\xc6\x8e\x5b\xd5\x05\x4c\x93\x6d\x0b\xa9\xcb\x06\x01\x3b\xce\x86\x81\x64\x73\x8d\x37\x6d\x98\x71\x02\x1a\x34\xca\xb0\xfc\x94\x95\x5a\x22\x9a\x06\xc7\x59\x9d\x22\x38\x29\x64\xa4\x15\xd0\x2f\xf3\x54\x33\x65\x42\x61\xf4\x46\x10\x26\xd8\x88\x86\xbf\x33\x06\x20\xbd\x0f\xa6\x3f\xf4\x97\x63\x64\x20\xfd\x05\xab\x6e\xed\xcb\x7b\x5d\x63\x23\x81\x04\x55\xa0\x4f\x9f\xd7\xba\x27\x91\x5a\x24\x5a\x4d\x0a\x74\x57\x44\xe4\xce\xd5\xd1\x1f\x4a\x21\xda\xc4\xb2\xfd\xbf\xa5\x39\x2d\xc1\xfd\x74\x32\x85\x54\x27\xd3\xb1\x9f\x0b\x43\x15\x55\x77\xf3\x0e\xce\xa7\x60\x1a\x69\xa9\xce\x4d\x43\xcc\x07\x05\x14\xc1\x45\x59\xe5\x32\x6d\x94\xea\xd5\xef\xc1\x91\x3b\x09\xd3\x8a\x81\x60\xe3\xe3\x80\x7e\x07\xc8\xbf\x8a\xca\x0f\x68\x83\xb8\x55\x5f\x05\xdc\x42\xa6\xe3\xbc\xab\xc5\xd6\xa5\x9d\xbc\xa4\xf5\x06\x7c\x9e\x8e\xa5\xc0\x6b\x4e\x6e\xd5\xef\x4e\x37\x45\x2d\xcb\x1b\x8d\xc4\x80\x03\x30\x41\x52\xeb\x10\x81\x2f\xbf\xf4\xb4\x52\x74\xbf\x5a\xbd\x99\x30\x06\x34\xf5\x8c\x3f\xac\x65\xff\x3a\x3d\xbe\x7c\x37\x4b\x5c\x7d\x56\xe6\x2f\x19\xe9\x4c\xd2\x82\xbd\x5b\xf5\x32\x29\x0d\xf9\x8b\xdb\x2d\x91\xec\x66\x64\x43\x4e\x90\xb3\xeb\xd3\xa8\x3f\xd2\x97\x38\x5d\x50\x5c\xb4\x81\x25\x40\x6a\x43\x4b\x86\x9c\xd9\xf5\xf4\x3b\x42\xac\xb3\x47\xb1\x44\xd8\xdd\x33\xaf\x0b\x3c\x55\x32\x41\xd0\x1e\xdc\x6a\xe0\x22\x43\x90\x58\x0d\xa7\xac\xdf\x36\x6e\xae\x58\x83\x75\xb6\x84\xb1\x01\x25\x80\x0c\x77\x36\x9e\x51\x7b\xbd\xa0\x0b\x1b\x2d\x8b\xf4\xc1\xfc\x4c\x85\x8d\xca\xfe\x2b\xb7\x4b\x34\x33\xc5\x71\xb8\x34\xa3\x32\xf7\xc5\x86\x3d\xe9\xb4\x41\x7e\x13\x52\x17\x62\xd1\x16\xa4\x02\xb9\xcd\x47\xf6\x5c\x74\x9a\x84\x8c\x6d\x68\x1d\xb1\xc2\x08\x82\x08\x18\xbb\x8e\xb2\x82\x32\x76\x7f\x72\x7c\x7e\x7e\x71\xed\xb9\x3c\x53\x56\x95\x93\x2c\xfa\xce\xf9\xdf\x8c\xda\x65\x5e\x38\x68\x1f\x1c\xb2\x22\x08\xef\x07\xa4\x39\x0e\xc1\x85\x13\xdf\x4a\xa7\xe0\xaa\xc6\x6c\xae\xb9\x2d\x92\x23\x8f\xdb\x9f\x1f\x5a\xa0\x24\x9f\x58\x3c\x7e\x4e\xcc\xc6\x78\xc1\xff\x49\x68\xa6\x0d\x4c\xe3\xa0\x66\x6f\x41\xf7\xee\xa6\xd4\x80\x3a\x1f\x99\x6d\xc1\xf6\xfa\x0c\x1a\x28\xe1\xbe\x06\x23\xbd\x49\xb1\xbb\x76\xc4\x56\xa8\xba\x01\x0d\x32\x72\xfb\xaa\xfc\xad\x87\x7c\x67\xfd\x93\xf4\x15\x76\xeb\x5a\x94\x1b\xe1\xb6\x7f\x76\x1f\x12\xcf\xa1\x81\x2f\x66\x50\x39\x7d\xbd\x68\x77\xec\xa9\x46\xdc\xb6\x7d\xf9\xa8\x2f\x53\x36\x6a\xb0\x67\xc8\xa3\x57\xa4\x2d\xf2\x2e\x35\x0d\x1f\x41\xbc\x62\xc3\xc4\xad\xd9\xbb\x86\xfe\xf5\x48\x33\x47\x4a\x4e\x83\x37\x25\x62\x27\x5a\xa1\xba\xb5\x18\x2c\x3a\xb1\x74\xa5\x41\x2f\x98\x3b\x33\x75\xdf\x16\x21\xa6\x74\x47\x42\xc7\xf5\x94\xfe\x9a\x12\xde\xa0\x12\xcf\x27\x2a\xd2\xe0\x34\x85\x8b\xf4\xf5\x5e\xd1\x78\x2f\x79\x41\x35\x5b\x95\x1d\xe9\xf4\x7c\x86\x02\x2b\x6d\x9a\x30\xc4\x14\x71\x18\x43\x42\x16\x33\x91\xd7\x60\x91\xb1\xac\xca\x6e\xce\x72\x7a\x2b\x1e\xec\x54\x6c\xb6\x11\x1d\x28\x46\xb4\x6c\x18\xa7\x1f\x7e\x39\x3e\x3d\xfb\x65\xb6\xcd\xcd\xa1\x45\xf1\xa9\x9e\x2c\x01\x46\xf3\xe2\x26\xeb\x37\x66\x6a\x43\x87\x11\x91\xfe\x8c\x08\x3d\x36\x41\xab\x22\xc2\xdf\x9d\x88\x44\x39\x48\xf1\xce\x62\x9e\xb2\xce\xfb\xfd\x01\x03\xd4\x70\x17\xe7\xf7\xdb\xa1\x86\x25\x3c\x6c\x8e\xe2\x2d\xfe\x39\x1b\x17\x53\x75\x03\x89\x36\x3f\x13\x3d\xd6\x61\x4e\xf8\xee\x5c\x87\x78\xe1\x87\xa9\x87\x69\xd9\xd6\x46\x59\x4c\xd2\xb4\x06\x2e\x36\x29\x7e\x9f\x2d\x36\x7d\xa1\xc1\x26\xcb\xcb\x9e\x94\x43\xc1\xa3\xd1\xb8\xd5\xa4\xc3\x72\xa6\xa7\x4d\x82\x71\x51\x88\x19\xbc\x97\xe7\xb6\x0c\xe0\x7d\x73\x56\xb1\x75\xe9\xe7\xa0\x6c\x23\x00\xee\xa8\xe6\x12\xf7\x4e\x22\xc5\x47\x15\x0e\x71\xd0\xb5\x63\x9b\xa9\x6d\xd7\x67\xa1\xbf\x79\x22\x93\xc2\x66\x9a\x4e\x91\x1b\x37\xd7\xe0\xb9\xcc\x6e\xa9\xf1\x24\xc3\xc1\x98\x00\x53\xa1\x33\x09\x73\xb3\x9c\xd9\xf1\xee\x7e\xce\x96\x1b\x70\xe0\xdd\x7d\x02\x97\x0b\x92\x5f\x73\x88\x47\x89\x04\x3f\xdc\x94\x3b\x39\xbb\x45\x09\x65\x21\x7e\x93\x08\x5c\xfc\x53\x22\x48\x71\x23\x84\x81\xc6\x81\x2e\x4e\x20\xbe\xfb\x13\xd8\x53\xc7\xea\xb9\x58\x92\x5f\x3e\x9a\x2f\x68\x8e\xde\x3e\x0a\xd4\x75\x3e\xfa\xc5\x3a\xfa\x77\xa4\x48\xed\x75\xbf\xf3\xa3\x84\x12\xfb\xfe\x0b\xbe\x7a\xf6\xc3\x93\xcd\x55\x0e\x24\xfa\xc5\x06\xd9\x44\x0f\x03\x31\x33\x4a\x58\x21\x55\xb6\x41\xca\x68\xc8\x39\x7e\xeb\xb9\x97\xb2\xd2\x78\x99\xfe\x33\x7f\xa5\x6f\xf8\x4b\xbb\xc2\xd3\xd8\xcd\x51\x8c\xf0\x60\x62\x87\x8e\x69\xe0\x38\xea\xdd\xe9\xe7\xb4\x78\xb3\x04\xd8\x57\x37\x16\x03\x64\x17\xe8\x64\xd7\xf3\x96\x3d\x8f\xbb\xd5\x76\x49\x31\xf0\x27\xe7\x48\x16\x59\x41\x09\xce\x5a\x1f\x95\x91\x38\x56\xa1\x2c\xa2\x6b\x0a\xa8\x57\xf4\xa7\x69\x38\x3a\xd6\x65\xb0\xcf\x0a\x10\x91\xdc\x7f\x4e\xaf\x29\x46\x21\x8a\x30\x29\x51\x50\xa4\x0f\x0f\x11\x61\x1a\xb5\xe0\xb8\x1c\x20\x92\xdf\x14\x6d\x47\x28\xc2\x5a\xd7\x7d\x24\xdc\xc6\xb2\x13\xcf\x41\x84\x12\xf5\x6b\x15\x1b\xbc\x04\x13\x58\x38\x9b\x8c\xbd\xc4\x3e\x64\x7b\xf9\x24\x4c\xeb\xa9\xa3\xb7\x12\x92\x68\xf8\x3d\x0b\x28\xbc\xa3\x1d\x3c\xc4\xb8\xd2\xf0\xa5\x85\x13\x6b\xc0\x6c\xdc\x10\x4b\x19\x1c\x7a\x4a\x97\x83\xf4\x1b\x51\xef\x5f\xb3\x72\x6f\x71\x19\xf8\x57\x6a\x5e\x1c\x2e\x7e\x4b\xd3\x5f\x8c\x79\x67\x12\x72\x29\xb9\x38\x18\x9d\xf2\xf1\x3f\x8b\x33\x17\xce\x0b\xfe\x77\xb1\x44\x30\x3a\x7f\xe8\x3f\x51\xcc\xcf\xe4\x5c\x20\xeb\xf5\x72\xca\xca\x47\xcf\x86\x63\x11\x24\x55\x2c\x04\x17\x30\xa2\x12\xed\x23\x3d\x4c\x5e\x12\xfe\x9b\xb9\xcb\x7f\xc2\x9f\xc2\x21\xa3\x52\xdc\xe0\x86\x63\x3b\xa8\x26\x84\xa1\xaa\x26\xc1\xa4\xba\x10\x52\x6a\xdc\x4e\x01\x93\xe6\x59\x45\xb0\x17\x14\x11\x92\x56\x54\x30\xeb\x4c\x83\x92\xa1\x46\x4d\xc3\x93\x68\x60\x67\x79\x28\x92\x1a\x1c\xb7\x33\x00\x92\x66\x66\x13\xa0\xbc\xd8\xf5\x70\xd4\xf1\x21\x90\x5a\x2c\x1c\x43\x18\x8e\x9e\x1f\x1f\x1a\xda\xe1\x00\x49\xe2\x7c\xb7\xc9\x96\x85\x73\xf8\x05\x10\xa4\x2e\x9f\xcf\x8b\xaa\x71\x85\x69\x65\x51\x79\x40\x68\x97\x2d\x28\xf9\x71\x0e\x6c\xba\xcc\x8c\x2b\x9f\x24\xa8\xb3\x44\x9a\x5c\xec\x65\x6a\x25\x47\x45\x86\x69\xa4\x20\xb0\xf0\x11\x13\xed\x39\xaf\x96\x38\xcc\x87\x31\x26\x72\x3c\x48\x51\x43\x98\x83\x25\x8f\xe8\x46\x73\x3e\x30\xbc\x0a\xa1\x9a\x06\xf4\x8b\x71\xca\x8c\xdd\xbb\x1d\xc7\x3b\xc6\xa6\x2a\xb8\xde\x14\x68\xab\xe7\x6d\x49\x58\xb2\x64\x75\x55\xe6\xba\xee\x9d\xca\x24\xa3\x95\xcf\x17\xf7\x9a\x47\xc6\x2b\xe7\x2d\xdb\x03\x59\xb6\xbc\x2f\x0b\x31\xaa\x59\xce\x5c\x44\x98\x85\x07\x19\x05\x13\x84\x84\xd3\xc7\x9f\x7e\xf8\xdc\x72\xc9\xce\x2c\xf6\xfc\xf1\xa7\x1f\x3f\x93\xac\xc5\x1f\x0b\x5b\xcb\xbd\x6b\x8a\xbb\xb2\xee\x71\x86\x54\x83\x9e\x1a\xe1\x49\x7e\xce\x5e\xe3\x11\x41\xb9\xa3\x59\x03\x7a\xca\x5d\x52\x4c\x4f\x55\xbf\x85\x98\xa4\xe6\xb7\x42\x6f\xf6\xe5\xb2\xcb\x37\xab\x8c\x5c\xa5\xfb\xe4\xcd\xe1\xc8\xb4\xf7\x38\x6a\x3c\x6f\x90\x38\x5b\xd8\xb5\x1c\x26\x63\x95\xca\x59\xe5\xca\x1b\x91\xdf\x80\x9f\xc5\xc4\x6f\x47\x58\xd1\xd6\x38\x49\xeb\x8f\x41\xd4\xf5\x0a\x29\x83\x39\xa8\xb1\x2a\x69\x82\x74\x99\x26\x86\x15\x3f\x8d\xe3\xf4\x65\xbd\xa9\xfd\x34\xc7\xd7\x10\x40\x96\xca\x8f\xf3\x01\xab\x96\x64\x8c\x8a\x23\xde\xc7\xd8\xc2\xac\x06\x04\x2c\x90\x45\x5e\x72\x39\xbf\xd0\x5f\x9c\x30\xd8\xae\x8d\x13\x9d\xa7\xa6\x34\x10\xfe\x9a\x76\x60\x6c\x5c\x8a\x6e\x7a\x02\xd4\xad\xd5\x27\xc1\xfc\xd2\x4e\x0d\xf4\x34\x52\xc2\x74\xa0\xda\xab\xbf\x02\x8b\xf0\xb2\x92\x53\x73\x5c\x36\x5b\xb1\x91\x2a\xfb\xb9\x5a\xf2\xe1\x7d\xc6\xe9\xaa\xbd\x89\x46\x5a\xea\x3d\xe5\xd5\x46\x10\x1b\x48\x71\xe0\x1a\x74\xba\xcb\x1a\x1a\x70\xec\x1a\xa9\x6a\xc1\x31\xba\x05\xd6\x4e\xc3\x59\x47\x0d\xb8\xdb\xd7\xa9\x53\xbf\x70\x8a\x9f\xed\x53\x59\xca\x99\xcd\xdb\x1b\xbb\x3d\x9a\x7f\xa6\xc5\x12\xbd\xd3\x6a\x83\x16\x85\x6d\xaa\x66\x56\xf9\xb8\x31\xab\xa2\x13\x7d\x81\xf2\xe0\x99\x6d\x90\x3c\x21\x19\x82\xd4\x69\xe9\x30\x04\xc8\xbd\xcc\x7d\xdc\x46\x75\x93\xf6\xdd\x17\x73\xd5\x7f\xa8\x9d\xf4\x95\xe2\x6b\xd8\x04\xe3\x22\xc3\xa2\xdd\xb4\x8c\x7b\x44\xa3\xb6\x58\xd3\x2a\x46\x1c\x97\x45\xe0\x05\x6a\x28\x0d\xbb\xba\xe4\xa8\xbd\x4a\x87\x3e\x2a\x7e\x20\x9c\x27\xb1\x63\x13\x16\x3e\xc1\x61\xc2\x84\x2d\x22\x4c\xf5\x9d\x3e\xa5\x1e\xb3\xe2\x97\x3e\xb5\x13\xad\xdf\xc7\x9d\x2c\x64\x57\x99\xff\xc3\x04\x77\x14\x4b\x8b\x9a\x0b\xdd\x6b\x89\x28\x5c\x63\xfc\x11\xa5\x23\xe7\x51\xfb\xe4\x9e\x8a\x7b\xb6\xdd\x3e\xcb\xf3\x27\x13\xbd\x0e\x88\xde\x75\x7b\xb0\x39\xa0\x62\x6a\x40\xfd\x41\x49\x01\x07\x99\xc6\x1d\x03\x44\xe3\xf4\x91\xfd\x92\x0a\xb6\x15\xa4\xb9\xc7\x1b\xc8\x3b\x18\xbb\xb6\x4e\x77\x45\xbd\x23\xb4\x3b\x23\x2c\x5b\x0c\xc5\x53\x33\xec\xc9\xc0\x43\x20\x48\x1a\x38\x94\x3f\xd8\x3c\xc3\x83\x4e\x5b\xb6\x40\x6d\x0f\xa0\x44\x0e\x83\x1f\x44\x48\xc0\xf3\x3c\x52\x1d\xdf\x9b\x00\x9c\xe2\x7a\xbe\xee\x7f\x4f\xce\x37\x55\xf9\x14\x09\x7c\x8d\xf7\x4d\xdd\x68\x61\x71\x33\xa1\x6f\x38\x00\x49\xc8\x27\x05\xe7\xc9\x80\x9f\x93\xf0\xdb\x83\xad\xeb\xfa\x56\xce\xd4\x2d\x10\xf4\x29\xab\xb2\xb3\x44\x3e\xb2\xff\x36\x4e\x5d\x64\x6d\xb9\x0c\x6f\xce\xf8\x99\x23\x26\x9a\x98\xf3\x18\x37\xf3\xbf\x8b\xf2\x79\x8a\xaf\xf4\x7f\x31\x61\x38\x10\xf5\xde\xb9\xb0\x33\x94\x57\xec\xc3\xe3\x52\xd5\x7b\x22\xa8\x4a\x9d\x3d\xc6\x75\xa9\x23\x02\x2f\xde\xa7\x8d\xc4\xce\x0b\xe7\x50\x16\xa3\x8f\xa1\xbd\x8d\xf7\x37\x9c\xb7\xc2\xc8\x21\x67\xca\x11\x27\xf6\x17\x7e\x80\x50\x5c\x53\x9c\x2b\x22\x5b\x11\x34\x78\x61\xde\x8c\x63\x30\x67\x73\xf7\x1e\x8c\xb1\x89\x8e\x77\x94\x2a\x71\x50\x80\x17\x23\x7b\x3b\x72\x54\xec\x3a\x49\x74\x2d\x17\x10\xf8\xc3\x47\x38\x09\x81\x0d\x1a\x3e\x7b\x65\xf5\xe2\x56\x17\xf8\x31\xb3\x4b\x68\x2b\x26\x4e\xf5\xc7\x14\xdf\x1c\xb1\xd5\x67\xee\xec\x1e\x6f\x00\x0e\xad\xb2\x6e\xdb\xd5\x1f\xc0\x13\xe7\x1e\x6b\x2a\xd2\x02\xf2\x19\xb8\xb2\x01\xf7\x81\x85\x70\x00\x68\x48\xb9\x20\xfe\x24\x1b\x88\x92\x2d\x8b\x5c\x41\xbb\x40\x5b\x95\x2d\x8a\x45\xb6\xbc\x75\x2d\x62\xf6\x57\x34\x1d\x9c\x30\xc7\x68\x67\x27\x90\x25\xd4\x8f\x17\xbb\x57\xcf\x60\xf9\x93\xfb\x1a\xd0\x0b\x99\xe0\xa4\xfa\x7a\x84\x60\x23\x94\x37\x36\xef\xca\xbc\x27\xf2\xe6\xc1\x98\xbd\x78\xbe\x7b\x15\xe7\x27\x8a\x80\x35\xf8\x60\x19\x83\x81\x63\xd5\xa5\xc4\xe1\x2f\xf6\x72\x86\xbb\xed\x8d\xf7\x22\x6f\x51\xc3\xc1\x59\x14\xb0\xa2\x80\xd4\x8d\x9d\x7c\xc5\x09\x69\x8c\x13\xdb\xa5\xc1\x7d\x3f\xd8\xa9\x71\x30\xac\x5d\xcd\x03\xd2\xc6\x6e\xa0\xd1\xec\x44\x51\xb2\xcb\x38\xb0\x79\x7b\xa7\x5e\xd7\x34\xcb\xd0\x1c\x6e\x5e\xbc\xeb\x95\x4e\xec\x76\x39\x50\xde\x6f\xf7\x1c\x53\x4c\x4d\x79\x8e\xfe\x9c\x04\xd1\x87\x33\x0c\x76\xff\xa3\xb2\xe2\xdd\xff\xa0\x81\x22\x6a\x0e\x95\x73\x32\x59\x86\xee\x51\x06\xa5\xc0\x77\xbf\x84\x97\xf6\x5c\x0f\x94\xea\x5d\x55\x43\x37\x69\x4d\xdd\xaf\xeb\xe0\x38\x93\xb8\x24\x60\xb2\x86\x0d\x99\xc5\x7d\xdd\x8b\x7c\x50\xbc\xa8\xb4\x18\x88\x11\x9b\x7c\x26\x4b\x70\x34\x66\xdb\x13\x6f\xd9\x94\x34\xe8\x10\x19\x7a\x2d\xca\xc5\xd5\x35\x2e\x9c\x20\x5e\x48\x8c\x66\xc5\xf4\x9a\xfe\x65\x4d\xeb\x67\x76\x5e\xe7\xdb\x49\xd8\xa7\x68\x95\xd6\xcb\x25\x7b\x12\x95\x95\x1e\xe8\xde\x17\xb6\xe7\x5d\xe5\x1b\xf1\x2a\x0a\x7d\xb2\x8c\xef\x8a\xb9\x3b\xc5\x0d\x24\xcc\x04\xda\x5d\xb1\x24\xa5\x64\x96\xbe\x27\x15\xad\xc2\xb5\x5d\x38\x3e\xca\xbc\xe4\x41\xeb\xb8\xeb\x09\xcc\xd4\xbc\xfa\x9d\x8d\x05\xa4\xbb\x1f\xc9\xa4\x24\xfa\xbd\x63\xcf\x65\x31\x31\x70\x02\xa9\x13\xc5\xe6\x46\xbc\xd0\x79\xdb\x1f\xaa\x9c\x5c\xa6\xc1\x5b\x8f\x72\xc7\x00\x1b\xf0\x51\x80\xfa\x53\xc1\x7b\x02\x47\x2f\xb9\x67\xbb\xa2\x61\x75\xc4\x3c\x0f\x43\xa7\xb3\x61\x9b\xb0\xd6\xb4\x76\xbd\x13\xb6\x80\xe1\x83\xe2\x2a\xe7\x64\x8f\x98\x17\xb3\xce\x67\xeb\x75\xdb\xd2\xd9\xc9\xd9\x58\x96\x74\x84\x2f\x1c\xec\x30\x10\x91\x1f\x38\x00\xc7\x27\x1c\x7a\x1d\x0e\xf3\xe7\x04\x42\xb9\x9e\x89\x16\xa9\x40\x66\x04\xc9\x7e\xed\x08\xc2\x5b\x13\x00\x64\xee\x35\x43\x16\xa6\xe0\x5e\x0f\x78\x1b\x51\xa2\xce\x29\x94\x18\x5e\x19\x20\xe4\xfb\xc0\x34\x0a\xa8\x3c\xba\xf1\x0a\x3d\xd4\xa3\xb2\x2f\xf8\x9c\xe7\x2b\xa6\xde\x17\xcf\x11\x74\x0b\x46\xa5\x3c\xbe\x60\x27\xa0\x38\xbe\x3c\xa5\x26\xfc\x41\xf4\x35\xc5\x2a\x6b\x72\x3b\x27\xa3\xd4\xcf\x6e\x20\xa0\xf2\xd0\x0d\x32\xdb\x90\x46\xae\x45\xd0\x6c\x25\x90\x5b\x36\x8a\x13\xa1\xf0\xf5\x50\xb6\x08\x61\xce\x9f\xcb\xd4\x62\x0f\x33\x22\xf8\x7e\xc7\x73\x40\x26\x94\xd5\x83\x6e\x3f\xfd\xd3\xd5\xc5\xf9\x51\xfa\xe5\xd9\x7e\xbf\x7f\xc6\xd9\x9f\xf5\xcd\x86\x7d\xb1\x72\x3e\x87\xf3\x3f\xcf\xde\x1f\xa5\x45\xb7\xfc\x7e\x46\xda\x3b\xa6\x86\x57\x7b\xd5\x45\x05\x8b\x5c\x26\x4b\x5e\xd9\xfd\xe3\x53\x66\x27\x07\x36\xf5\x32\xa3\xf0\xf8\x66\xc8\xb4\x79\xd8\xcd\x64\xa8\x54\x20\xa6\x43\xaf\x31\x16\xb4\x56\xc2\x81\x6d\x04\x7c\x02\xb0\x6a\xc3\xf7\x91\xd1\x21\xca\x0d\xe2\x5b\xde\xe2\xef\x37\xb9\xd0\xa9\x71\x34\xea\x9d\xa2\xac\xc8\x7f\x1a\x96\x84\xad\x22\xdc\xdd\xf2\x32\xfd\x13\x2f\xf4\x18\xa5\x42\x05\x9c\x64\x54\x00\xe0\x90\x96\x30\xc3\x52\x3d\x7c\x5e\x0c\x13\xfc\xa6\xdd\x69\xd1\xc1\x5b\x75\x8a\x36\xa4\xe5\xae\x6d\x7e\x34\x6d\xa2\x92\x5c\xa3\xc2\x1a\xe1\xde\xe2\x79\x12\x51\xf3\x60\x0e\xb0\x5c\xda\x0f\xe7\xc1\x50\x24\xe9\x24\xf3\xec\x5e\x27\xd9\x88\xe3\x2b\xe0\xd7\xe6\x99\x6a\x10\x23\x8d\x2e\xa8\x41\x35\xbb\x51\x0d\xe2\xc7\x36\xd7\x5e\xda\x31\x12\xf8\xb6\x9d\xba\xb8\x58\x04\x19\xd5\x80\x81\xc4\x24\xc3\x08\x69\x37\xa4\xe6\xcd\xc3\x19\xce\xc2\x2c\xb2\x71\x5e\x31\x08\x9c\x16\x79\xb3\xdf\x36\xc6\x47\x2e\x9b\xa1\x9a\x21\xa5\x9a\x4b\x92\xb8\x4e\x0d\x12\x87\x97\x8a\x0d\x92\x79\x65\x21\xf7\x1d\x9e\x48\x28\xc4\xd6\x6e\x53\xdf\x9b\x57\xeb\x29\xbe\xf4\xb8\x48\xd8\x33\x0f\xa6\x9d\xf2\x90\x81\x06\x5f\xcf\xe3\xe2\xfe\x1a\x5c\x1c\xa0\x6a\x40\x75\x9f\x0a\x0c\xbb\xbc\x84\xaa\x5e\x64\x95\x99\x68\xde\x84\x63\xa4\x83\x1a\xba\x70\x9e\xba\x1a\x0e\xb8\x70\xc6\x59\x43\x37\xce\x20\xeb\x37\xb8\x71\xc6\x48\x1a\x3b\x69\xfa\xae\x7e\x83\x9f\xe6\x54\xa7\x03\x03\x84\x92\xf1\x14\xe2\x27\x32\x4c\x19\x22\xf2\xb0\x6f\xde\x12\x11\x9a\x1d\x64\x6d\x50\xb4\xb0\xe0\x0c\x16\x7c\xdf\xb2\xc6\x9c\x6a\x89\x47\x49\x80\xdc\xaf\x99\x25\xf2\xf2\xe6\x66\xb6\x68\xea\x7d\xcb\x7e\xa2\xb8\x1a\x8c\xb7\xb2\xf9\x3b\xbd\xc2\xb7\x80\xb0\xc9\x15\x44\x21\x01\x89\x94\xad\x57\xdd\x6b\x28\x35\x92\x45\xdb\xe8\x6a\xa6\x53\x4a\xc1\x6d\x48\x7c\x53\x1a\x1f\xef\x90\x94\x99\x64\x21\x76\xbe\x9f\x73\x08\xfe\xad\x30\x91\xf0\x52\x1c\x99\xae\x38\x46\xc1\x38\x68\x08\x37\x6f\x39\xec\x84\xe8\x81\x1b\xe8\x61\xde\x71\x0e\x84\x65\x70\x04\x46\xc4\x50\x42\xd1\xf2\x20\xa1\xdf\x1d\x41\x18\x2e\x3d\x84\x22\x08\x93\xfe\xe7\x77\xe7\xf2\x89\xcd\x74\x3d\x7e\x84\xdd\xf4\xd7\xec\xd6\x64\x5b\xf4\xb3\xa9\xad\x7a\x4b\x13\x97\x07\x59\x9f\xda\x5d\xad\xf8\x72\x10\x79\x93\xdd\xc0\x56\xc9\xff\x2e\x96\x94\x39\x9f\xed\xb2\x29\x9e\x0d\xb3\x11\x72\x04\xd5\x57\x08\xb8\x78\xb5\x35\xf2\x9f\x8b\xcb\xd8\xae\x18\xe0\xf0\x71\xee\x31\x62\x1b\xfe\x44\x77\x8f\x49\xd0\x96\xbc\x00\x57\x02\x1d\x54\x08\xea\xf0\x37\x6a\x80\x76\x70\x7b\xa9\x41\x74\xd9\xca\x79\xab\x66\x2b\xd9\xb3\xf1\x69\x50\xed\xed\x08\x64\x94\xc7\x5f\xab\x61\x26\x05\xef\xd0\x41\xe9\xb8\x1f\x70\x19\xfa\x89\x50\x24\x3b\x88\xe0\x14\x5b\xbb\x9e\x0d\x07\xc2\xed\x1d\x29\xce\x52\x7c\x3b\x28\xd3\x54\x98\x5c\xe6\xdb\x3c\x50\x56\x84\x80\x42\xb1\x72\x96\x35\xb7\x7c\x61\x18\x36\xd0\xac\x80\x7d\xa3\xc7\xd6\xf8\x3f\x1c\x31\xbd\xa8\xee\x52\x42\xa3\x0a\xe3\xfd\x69\xe4\xc6\x9a\xc9\x98\xa9\xcb\xc0\xda\x95\x1c\x91\x7c\x2f\x21\xb9\x61\x76\x48\x19\x63\xb7\x6d\x4a\x7b\x36\x1c\xb7\x00\xde\x21\xfa\x2f\xc5\xff\xfd\xdf\xff\x87\xd8\xd3\xae\x26\x69\x89\x03\x05\x7a\x96\xdd\x8f\xbb\x79\xa7\xf9\x6b\x05\x9f\x81\x47\x07\x0d\x11\xf4\xa7\xea\xa3\x4f\xa1\x11\x8d\xf2\x9d\x63\x46\xdf\x57\x6c\xa3\x8a\x89\x1c\xab\x1d\x4f\xe6\xb0\x8f\x0f\xcb\x30\xa2\x9a\xab\x8c\x70\x67\x69\x6d\x70\x31\x68\x72\x42\x4d\x89\x6e\x5a\xa4\x24\x9f\x68\x4d\xfd\xd9\xdf\xb8\xe0\x06\x22\xba\x6d\x01\x4b\x1c\x0f\x63\x08\x7b\xc3\xe4\x37\xbe\x60\x55\x96\x8c\x72\xbd\x0b\xb6\xa4\xcc\x07\x55\x4e\x40\xcb\xf9\x18\x57\x48\x58\xd1\x93\xd6\x0e\xc9\xe8\xcd\x3f\x38\x86\x32\x71\x52\x29\x3c\x7d\x43\x2b\x46\xdd\x94\x90\x93\xdd\xba\x1d\x13\xdd\xd4\x0c\xff\x2a\xb3\xff\x98\x1a\x98\x27\xba\x4f\xc0\x3e\x3f\x1c\xe0\xc3\xf7\x7c\x8b\x2d\x93\x9f\x58\x78\xdf\x21\x82\xe6\x35\x22\x70\xb1\x04\xbc\x9a\xf8\x3f\xc1\x71\x5e\x35\x52\x70\xac\x86\x34\x7e\x70\x64\xb8\x89\xae\x47\xf3\x9e\x5f\xb8\x4a\x20\xba\x8f\x8c\x0b\x07\xa2\x26\xb6\x88\x46\x17\x4c\x60\x64\x10\xfb\x10\x74\xe4\x3f\xfb\x64\x03\xab\x9d\x9e\x47\xe3\xb2\x88\xcb\xa9\x87\x80\x92\x0c\xae\x37\xe0\x7b\x80\x2a\xbe\xd9\xcf\xb0\xec\xaa\x09\xa6\xcc\x5a\xf6\x8f\x7c\x36\x1e\xaf\x6c\x41\x93\xe7\x27\x81\x67\xcf\xaa\xb2\x6d\x03\x25\x01\x79\x7c\x74\xba\xa1\x05\xc2\x26\x5a\xcc\xa0\x20\x56\xe5\x7e\x3a\xe0\x82\x3a\xbe\x0a\xe4\xf7\x3b\xa1\x8e\xcb\x78\xd8\x0d\xf5\x1f\xdd\xba\x98\x3e\xe6\xeb\x92\xc7\xe7\x7d\x5d\xd2\xd4\xc1\xdf\x7f\xc3\x46\x02\x91\x94\x36\x63\x34\xb7\x0f\xee\x24\x68\x1e\x67\x88\x3e\x7c\x05\xcb\xef\xdf\x4f\x88\x2e\xbe\xf8\x06\x6d\x2f\xee\x71\xa0\xe8\x45\xad\x72\x08\x61\x83\x55\x7c\x20\xe2\xd0\xea\xcd\x2b\xae\x11\xcf\x18\xae\xf1\x46\xe7\x1f\xd0\xd3\x07\xb3\xc4\xa7\x21\xc2\x66\x3a\xf3\x94\x3f\x3f\x60\x56\x1c\x39\x07\x21\xe6\xbc\xaf\x1f\x86\x38\x60\x1f\x7e\xe8\x54\xc4\xb0\x95\xcc\x6b\x9c\x27\x4e\xd8\xc8\x07\x73\x84\x62\x36\xde\x83\xf9\xb7\x9c\x94\x98\xb6\xc1\xf2\x1a\x70\x6f\xa6\x18\x08\x65\xc3\x9f\x37\x28\xf0\x1a\xc2\xf0\x25\x8b\x0c\xcf\x70\x3d\xe6\x7a\xdc\x7d\xdc\x0d\x1b\xcd\x1e\x0f\xc2\xbd\x67\x7a\x0b\x80\x9d\xb1\x1b\xc4\x7b\xd6\x07\x47\x8b\x9d\x9c\x73\xf0\x40\xf2\x0d\x75\x67\x32\x65\x98\x3f\xae\x23\x3e\x1f\x62\xb1\xce\x0c\x7e\x86\x80\x8b\x27\xac\x2d\x0b\xf8\xef\x9f\x48\xc8\xa5\xe8\x5a\x4b\x2f\xb3\xf1\x8d\x90\x8b\x4a\x5e\xc2\x12\xea\x63\x55\xea\x29\xae\xd9\x05\x9a\x06\xe5\x7e\xc7\x43\x98\xb9\x93\xfb\x3c\x4c\x02\xa8\xea\xa6\xb6\x0a\x1a\xf2\x1f\x87\x65\xc9\xa5\x8d\x2a\x3d\xcf\xeb\x7d\x22\xa2\x73\xc6\x77\x6b\xa4\x72\xb1\x86\xc6\xc4\x4d\x92\x38\xd6\x51\xf4\x40\x1b\xfa\x40\x6a\xba\x9c\x5f\x1b\xa7\x0f\x7c\xfa\x21\x39\x9c\x37\xbf\xdd\x93\xc3\x0a\x28\xb4\x06\xb8\x61\xb3\x5e\x1f\x12\xc7\x4c\x4b\x85\x02\xeb\xab\x15\x4d\x34\xaa\x37\x84\xf8\x96\x8a\xb9\x9d\xa3\xea\x8e\xcc\xbe\x85\x63\xd3\xec\xaa\x2d\xfc\x70\x6b\xed\x90\x7b\x65\x5d\x3b\xdc\xa5\xc5\xbe\x1d\x21\xc4\xb7\xb4\x83\x6b\x79\x0e\x8f\x20\x1e\xc4\x87\xda\x43\x8b\x43\x3d\x05\x1e\xee\x9e\xb4\xc3\x26\x7a\xa7\xf8\xeb\x40\x5e\x63\x07\x32\x1f\xe8\x1f\x6c\xde\x1c\x0b\x4e\x49\x91\x8d\xb0\x09\x15\x41\x36\x8a\x27\x0f\x03\x7e\x7d\x8a\xf3\x48\x23\xa7\x03\x0d\xb6\x80\x3d\xd8\x94\x14\xd2\x76\x79\x95\x0e\x3a\xd6\x99\xea\x75\x92\xf8\x75\xc1\x2b\x70\x76\x8c\x4f\xf4\xbb\x50\x64\x40\xc1\xb3\x91\xcc\xe5\xd2\x30\x37\xc7\x99\xd5\x05\xb5\x8e\x0b\x73\xac\x1a\x50\x8e\x45\x8f\xe1\x8c\x77\x86\xda\x59\x60\x6c\x65\xa6\x7c\x64\x3a\xab\xec\xb6\x1a\xd4\x36\xbb\x8f\x36\x80\xf9\xf8\x22\xaf\xc8\xa2\x59\x73\x58\x62\x8f\x9b\xe2\x65\xb5\xdc\xc4\xe5\x08\xe6\xa0\x51\x66\x16\x4e\xf5\x31\x81\x78\xb2\x5b\x35\x19\xdb\xc2\x6d\xac\x99\x59\x04\xa4\x80\x02\xff\xe8\x7a\xe9\x6e\x35\xf7\xdc\x00\x3b\x6c\x54\xd0\x93\x87\x98\xc2\xef\x68\x00\xd8\xc6\xc3\x2d\x00\x5b\x90\xfb\xc4\xa8\x19\x01\x0b\x78\xa8\x21\x7a\x1d\xf9\xb7\x37\x04\x7c\xe3\x1b\x1b\x72\x64\xad\xd0\x5b\x6c\xf2\x7c\x72\xfe\x3f\xd4\xbe\xc1\x72\x07\xc4\x19\x5d\x93\x34\x20\xf8\xe8\x69\x18\x47\xf4\x81\x2f\x84\x15\x8b\x0d\x30\xf5\xcd\x50\x71\xe6\x8b\xaa\x68\x08\xb1\x94\xad\xba\xd0\x7f\x23\x3e\xb0\xc4\x1e\x05\x5d\x73\xaf\x2a\x09\x77\x2e\x3e\x2f\xe5\x6f\x83\x90\x45\x18\xf6\x32\xe5\xea\xac\x4f\x40\xfb\xe7\x03\x4f\x50\xc9\x55\xf9\xb2\x3d\xdd\x46\x2f\x15\x8d\x6f\x31\x7a\xf0\x06\xa9\xf8\xe6\xac\xe1\x15\x6a\xad\x9c\x78\x5d\x99\x2e\x67\xb7\x91\x27\xde\x79\xe3\xea\x9e\x70\xb0\xc5\x03\x0c\x4b\xbe\x3c\xa4\xae\x4a\xd9\xf7\x3f\x93\x10\xdf\x1f\xc3\xa6\x18\xb5\xc3\xf0\x41\x6c\xef\x91\xed\x7b\x07\xe3\x22\xdb\x98\x54\x11\x90\x70\x90\x1e\xdc\x68\x04\x7f\xcb\xc6\xee\x68\xf2\x25\xa0\x25\x30\x61\xf6\x41\xcb\xb4\x1d\x28\xb4\x6f\xa7\x6a\x9c\xf3\x46\x5d\xaa\xdb\x94\xee\xe1\x18\x66\x12\x7c\x6d\x47\xce\xd7\x76\xc8\xdb\x04\x47\x41\x44\x84\xf3\x30\x61\xe7\x2e\x48\x88\xa2\x63\xc1\xe7\xe3\x71\x38\x2c\x8e\xe2\x13\x61\x51\x44\xb6\x1c\xd5\x62\x06\xec\x30\x4e\x7c\xe9\xc2\x18\x73\x51\x8f\x4a\x8f\xef\x0d\x08\x93\xe4\x32\xb0\x28\x4a\xef\x3f\x8f\x7b\x22\x36\xd5\x30\x6e\x53\xaf\xf8\x22\x33\x18\x21\xe3\xee\xa9\xee\x1c\x97\x69\x2e\x7d\x51\x11\x70\x0a\x0f\x63\xb0\xaf\xd5\x65\x6d\x9c\x1b\x53\x30\x8c\xd0\x73\xe4\x23\x40\x5a\x53\x67\xcb\x35\xfa\x3f\x9b\x22\x24\x5b\x1a\x3b\x62\xd2\x97\x8f\x26\x20\xe5\x8e\xfa\xd4\x6e\xa4\x9f\x84\xe1\xa7\x6f\xf0\x00\x40\x90\xca\x2e\xb2\xd5\x5c\xaf\x56\xa8\xf5\x24\x29\xfb\xcb\xba\x6b\x14\xd2\x0b\xcc\xb8\xf6\xc1\x4c\x81\x14\xe3\x53\x1d\x7a\x75\x83\xe6\x14\x8d\xe3\x01\x71\xe6\x4b\x56\xc1\xa8\x9e\x0b\x99\x5f\xab\xb5\x5e\x4f\x60\xed\xc6\x5c\x1b\x1c\x91\x7c\x53\x19\x83\x56\x7a\x08\x57\xcc\xef\x6f\x2a\xac\x67\x7c\xbc\x0d\x16\xb9\xa8\x91\x11\x5b\x33\x90\xaf\x94\x30\x68\xe2\x64\x11\xbf\xa3\x91\xfc\x68\xc6\x6a\xe9\x1e\x19\x38\xe5\xfb\x69\x9a\x05\x1f\xa4\x63\x19\x56\xc8\xe3\x2f\x75\x15\x5b\xe0\xa6\xb3\x3f\xd4\x32\x34\x88\xd7\xdc\x53\xc5\x1f\x6a\x5b\x53\xb4\xf7\xd5\x72\x8e\x17\x1f\xda\xb5\x6e\x54\x7e\x28\xc4\x56\xfe\x64\x46\x71\xcf\x33\x3d\xcd\x5c\x60\x4b\xaf\x7d\x22\x17\x78\x3d\x5d\x52\x3c\x5e\x9c\x20\x11\xf7\x0c\x3c\x11\xb9\x4d\x81\x23\xf5\xac\xfb\xfe\xc1\x8a\x06\x7d\x09\x18\x62\x80\xdb\x06\x4d\xe9\x8a\x6f\xea\x41\xb0\x49\x1e\x76\x83\xc9\x40\x67\x3f\x78\x45\x78\x53\x25\x23\xee\x29\x1f\xe0\xe6\x1b\x87\xf8\x22\x6f\x75\xf7\x51\x81\x66\x2f\x7a\xa8\xf1\xe8\x40\x87\xc2\x7a\x1f\x18\xa1\x27\x51\x2b\xbe\xde\xc7\x50\x08\xc9\x5b\x45\xfd\x0e\x0f\xc6\xb9\x47\x8a\x3e\xe2\x3b\x64\x0a\x72\x79\xd8\x7c\x55\x37\x35\x0d\x8f\x9c\x15\xd4\x0b\xc5\xde\x58\x5c\x3b\x91\x01\x26\xf0\xfb\x79\xaf\xe7\x3b\x2d\xcf\x19\xa2\x49\x7f\xe0\xc3\x9e\x3e\x57\x57\x77\xd9\xc6\xf2\xb0\x05\x72\xa9\x76\xeb\x6b\x4e\xb0\x5c\xc7\x96\x10\xe4\xd4\x3c\xf5\x82\xfd\x3d\x91\x45\x81\x2f\x34\x26\x80\xc5\x36\x07\x1f\xc0\x23\x74\xf5\xbb\x39\x77\x15\x67\xb7\x24\x3a\x7d\x8f\xe8\xf4\x9a\xa3\xc7\x35\x58\xab\x5c\xb6\x41\xa3\x0e\xe5\xbb\x69\x8a\x51\x9e\xd7\x7c\xd8\x78\x08\x6f\x98\x5b\x17\xd9\x6e\x84\xb7\xb7\x14\x39\xc2\x1a\x20\xc7\x08\x00\xec\x61\x2c\x84\xb9\xca\x1c\x0b\xab\x30\xc7\x3b\x8a\x3a\x04\x0d\x0f\x80\x21\x3c\x9e\x72\x3b\x90\x43\x65\xf6\xb0\x55\xba\x67\x33\x6a\x55\xbd\xf8\x1b\x1e\x3e\x53\xe8\x0b\xf9\x0c\xa0\x16\x75\xdd\xf1\xfb\x12\x3b\x56\xb7\x96\xb7\x0e\x4d\x3f\x5b\x3c\xab\x5b\xcb\xdb\x11\xa6\x04\x7a\x8c\x2a\x81\x3e\x8c\xab\x2d\xdf\x74\x40\x75\x35\xfd\xb2\xeb\x69\x82\xba\x0a\xcf\xae\xf8\xd6\x84\x2b\x97\x30\xaa\x71\x94\x33\xa4\xd0\x61\xe6\xa9\x9a\x97\xa4\x44\x14\x93\x55\x9f\x70\xca\x83\x75\x8f\xf2\x86\x95\x8f\xb2\x4f\xcd\x14\xdc\x97\xc9\x46\xe7\x45\xbf\xbc\x2d\x3a\xf6\x19\x5f\xcf\xb1\xc3\x1c\x96\x75\x69\x60\xe9\xcf\x00\x4b\xdf\x12\x58\x7a\x2d\xaf\x97\x8d\x4b\x25\xa1\xb3\x2d\xba\x0c\x9e\x02\x41\x29\x6f\x4e\x68\x04\x38\x3a\xcf\xa6\x72\xc1\x3a\x33\x57\x2d\x5b\x67\x21\x2b\x3e\x41\x09\xfa\xae\x9a\x28\xde\xc7\x0e\x64\xaa\x34\x5e\x06\x88\xf4\x5b\xde\x2f\xe5\x32\x48\x5e\x18\x50\x1b\x3e\x48\x4c\x00\x8b\x3b\xbb\x08\xd6\x78\x24\x36\xc5\x71\x79\x17\x81\x5f\xc7\x8c\x52\x38\x98\x07\x16\xc6\x45\x70\x97\x59\xdf\x4e\x02\xee\x32\x99\x4c\x07\x21\xad\x7a\x03\xb4\x9a\x87\x70\x5a\x69\x2b\xa8\x14\xb6\x22\x2b\x35\xf1\x2d\xd6\xfb\xb2\xec\x4d\x56\xb8\x16\xdb\x6d\x59\x78\x99\x55\x60\xbf\xfa\x5c\x90\x82\x89\xf6\x0a\x9d\x55\x62\x4c\xdf\xc2\x55\xd8\x16\xb6\x34\x58\xa2\xd4\xa6\xa7\x71\xd1\xdb\x45\x1a\x67\x67\xa7\xdc\xd9\x5e\x8d\x0f\x0f\x5d\x6a\x89\x50\x4c\xcd\x65\x25\x7e\x16\x42\x3d\x57\x04\x50\x6e\x0c\x91\x9d\xa4\x4d\x98\x19\x8b\x06\xf7\xb0\x66\x54\xc0\x7b\xac\x27\x82\xbe\x1d\xbc\x56\xd6\x6e\x54\xfa\xc6\x9b\x65\x7d\x6f\x02\x1c\x63\xa3\x3b\xc6\x6e\xd9\xce\x43\x74\x0e\x2f\x64\xca\x06\xe8\x65\x70\xc5\x70\x04\x8a\x9d\xef\xf0\x21\xa4\x60\xfb\xd1\x50\x8e\x8d\x3e\x3c\xc0\xa6\x8e\x7c\xa3\x12\x82\x3c\xc1\xab\x75\xec\x0e\x2d\x67\x8d\xa6\x50\xe4\xad\x83\x86\x21\x77\x43\x2f\xa0\x1f\xdc\x5a\x8a\x71\x31\x7d\x71\xf8\xff\x97\xbb\xd3\xc3\x06\xf8\x1b\xd4\x0f\xd4\xff\xef\x72\x83\xfa\xd0\x32\xeb\xae\x50\xc7\x15\xd1\x33\x1c\x0e\x88\xe7\x71\xb4\x71\x15\xcd\x67\xe4\x08\xe7\x29\x22\xe2\xad\x7c\x44\x79\xb3\xaf\x59\x7c\xc5\x6a\x83\x29\x3a\xac\x2f\x38\xcf\x11\xd5\x26\x39\xc6\x17\x7d\xc5\x4d\x90\x98\xf1\x6e\x91\xc4\xab\x35\x22\xd5\xcb\x6a\x0a\xb5\x1e\xcd\x60\x92\xd0\x2d\x1a\x8b\x1b\x3d\xd0\xcc\x93\x5a\xa7\xf6\xa0\xc9\xf1\xe4\x8e\x5a\x2d\x99\xe4\xa4\xaf\x1d\x15\x99\x64\x26\x0a\x18\x74\x45\x62\xc2\x3b\x11\x24\x46\xae\x0c\xc6\x1b\x1a\x12\xd2\xf8\xb1\x17\x46\xd0\x62\x2d\x26\xae\x3a\x28\x14\x40\x93\xbc\x2a\x68\xcb\xd0\x3f\x55\x62\xc3\xf7\x98\x25\x46\x9f\xb6\xc5\xab\xb6\x12\xb3\x80\xff\x10\xbc\xdc\xd8\xf8\x74\x7a\x6e\xd5\x76\x5d\x53\x2e\xfa\x6e\xfa\x32\x6c\x97\x3a\x82\xb6\x6d\x7f\xa6\xdd\xf4\x2b\xb0\x6d\x6f\x05\x5f\xf5\x5f\x2b\x77\xf0\x50\xd1\x00\x4e\x6e\x7e\x48\xdd\x9d\x34\xaf\xf1\xad\x89\x5b\xe6\x91\xf3\x96\xdf\x5e\x3f\x23\x16\x93\xa7\x57\xc7\x9a\x82\x07\x6c\xd5\x3a\x82\x77\x6e\x0f\x8e\x02\x43\x8e\x1e\xc4\xf5\x49\x8a\x57\x24\x05\xc8\xd5\x4b\xb5\x3b\xb9\xef\x58\x2e\x94\xbe\x7e\x7f\x45\xc1\x65\x73\x2f\x1b\x46\x3a\x2e\xbc\x63\xa0\xcf\xc6\xda\x2b\x23\xc7\x67\xee\x61\xde\x60\xa4\xb5\x48\x7e\xf4\x73\x1e\x3c\xb7\xaf\x85\x53\xfb\x6b\x7d\xd2\x4e\x0d\xa6\x4a\xab\xfc\x24\x03\x3b\xff\xee\x5a\x2b\x27\x38\x8a\x3c\x20\x7b\xbd\x7c\x5b\x47\x60\x24\x8c\x62\xcb\x2d\x04\x8d\x13\x4a\x21\xbd\x87\xb2\x32\xaa\xe0\x1b\xaf\xca\x0e\xcb\x0a\x84\xca\x03\x6d\x9d\x3c\x6b\x18\x5f\x9d\x16\x02\xce\x65\xfe\xd9\x0d\x89\x51\xc1\x6e\x93\x69\x9c\x21\xba\x2a\x31\xca\x34\xed\x06\xf0\xd0\x25\x89\x62\x14\xb0\xc5\xb8\xb3\x79\xeb\x62\x3c\x36\x7d\x2b\xec\x43\x6f\x82\x07\x20\x77\xb2\xb5\x16\x40\xfc\x59\x5e\x2c\x0d\x81\xa6\xdf\xa4\x56\x80\x21\x4f\xd1\xe8\xc1\x53\xc5\xd1\x1b\xc5\x96\xd3\x9e\x5c\xac\x7b\x59\x6d\xe3\x49\x54\x3d\x63\xf4\x01\x91\xac\x68\x19\xf8\xd4\xbb\xe0\x41\x92\x56\xc4\x49\x61\x25\x90\x50\xfc\x48\xea\x83\x6f\x98\x1b\x82\xd9\xe4\xbe\x9c\xcb\xbd\x59\x41\x1e\x18\xfc\x97\x70\xe3\x1d\x67\xa2\x76\x8f\x73\x50\xbb\x0f\x80\xcb\x26\xb0\xf1\xf3\x2b\x7c\x09\x0b\x71\x2d\x66\xd7\x32\xa5\x22\xeb\xb0\xc4\x0d\x5f\x90\x09\x71\x90\x2f\x3c\x61\xb8\x77\x65\x27\x49\xc3\xbf\xcb\x1f\x56\xcb\x2f\xea\x07\x82\xc0\xc7\x86\x22\xcd\xc7\x86\x0f\xf7\xfb\xd8\xa9\x97\xf4\xc7\xa9\x7e\x67\xfe\x29\xfb\xa6\x3c\xa2\x01\xe9\x56\xb4\xc2\x7c\x84\xe7\x93\xbf\x0f\x72\x84\xaf\xf0\xc7\xb1\xc3\x32\xf4\xd1\xdf\x41\x11\xc6\x2c\xa3\x29\x53\x2e\x0f\x20\xc6\xbd\xfd\x19\xdd\xa9\x0e\xf4\xcb\x1b\xd2\x2a\x56\xa2\x47\xbf\x87\xc4\xec\x99\xad\x23\xe5\x90\xd1\x5a\xc3\xd8\xa5\x3d\x7a\x0d\x5b\x5f\x60\x54\xdf\x76\xf7\xde\xe8\xcf\x88\xf6\x2d\x9c\x7c\xea\x7a\xf8\xc6\x35\x3b\x9d\x5b\x96\xf8\x51\xf2\xf1\x6b\xe4\x0a\x66\x0f\x3b\xc0\x22\x30\x7a\x03\x02\xa6\x00\x7d\x02\xc2\x18\x83\x1c\x71\x62\xff\xee\xf9\x46\xcd\xdf\x72\x0c\x0a\x5e\xde\xe9\x7b\xd8\xbb\x5d\xbb\xa3\x87\x11\xa3\x4c\xf2\x1e\xa3\x7b\x7c\x6d\x9c\xd9\x4e\xeb\xb9\x41\xb4\xd3\x47\x93\x83\xf8\x5b\x5f\xf4\x54\xb8\xbc\x98\xc8\xd7\x0f\xd2\x67\xfa\x1e\x9f\x6e\xac\xe4\x58\x11\x56\xc3\xec\xcc\xfc\xd2\x0e\x1a\x61\x51\x4c\x31\x6e\x94\x6e\xcb\x1d\x8b\x65\x7d\x31\x8a\x07\x87\x62\x20\x9b\xff\x8c\x98\x10\xc9\x21\x67\x3e\xc3\xf7\x74\x03\x15\x76\xac\x05\xc6\xe9\x46\x50\x44\xe7\x75\x40\x4c\x6f\x7f\x79\x7f\x31\x80\x9c\x98\xa0\x9a\x32\x31\xa1\xe3\x17\xf1\xc3\xe9\x2b\x5b\x39\xae\x0b\xd8\xbe\x99\xee\x81\x40\x1e\xec\x80\xd0\x90\xdf\x99\x05\xf1\x4c\x16\xa4\xd4\x96\x67\x3b\x99\x31\x4a\x67\xf2\x1d\x03\x05\x77\xb2\x0a\x94\x5d\xc9\x3a\xaa\xb5\x0a\xeb\xac\x64\x1b\xc2\xf3\x03\x71\x11\x08\xf8\x81\xb8\xda\x4e\x36\xcf\xa0\x69\xc9\x7a\x57\xe6\xaa\x38\x0a\xfc\xa5\x46\x19\xa8\x81\xf8\x92\x0d\x42\x8b\x76\xcd\x24\xc2\x2d\x9d\xf6\x76\x82\xaf\x68\xe8\x74\x22\xf2\x7c\x11\x58\x3f\x0d\xf9\x45\x09\xc9\x61\xc0\xab\xa5\x43\x8c\x19\x94\xde\x9c\xf8\xdb\x6a\x61\x7b\x1a\x74\x66\x53\xde\x14\xce\x52\xa5\xbd\x79\x4f\x71\x11\xf0\x9a\xdf\xe4\xb4\x03\x91\xf2\x2a\x27\x3f\x86\x3f\xe8\x44\x58\x94\xf6\x64\x54\xd2\xae\x84\xf5\x30\xc0\x8b\x44\x4c\x63\xdc\xa0\x95\x6f\x07\xe0\xca\xb8\x87\xec\xd6\x5e\xb5\x0a\x66\x88\x7f\x62\xc6\xcb\x67\x57\x3b\xcb\xe5\xc9\x9a\x19\x4a\x25\x17\xc3\x40\x72\x99\xb7\xc0\x6c\xd9\xc8\xdd\x2a\xfc\x77\xcd\xfb\xb8\x2e\x25\x9c\x7b\x16\xd7\x12\xed\xe5\xbd\x1c\xb6\xd1\xa0\x87\xf7\xde\x05\x82\x26\x4b\x98\xb8\x23\x2e\x06\x28\xbe\x14\xcb\x3e\xd8\x56\xf8\x45\xbe\xd5\x8e\xe7\x8b\xa9\xcd\x39\xb0\xaf\x70\x8b\xdd\xa5\xc4\x04\x30\x53\x17\x2c\x59\xd3\xe1\xe2\x68\xae\x8e\x07\xeb\x77\xd5\x63\xf9\xc3\x50\xe6\x71\x61\x5e\x0e\xf2\x39\xdf\xc8\xd9\x8b\x81\x13\x86\xc1\x86\x5a\x48\x18\x37\xff\x21\xd2\xd3\x5c\xda\x44\xc3\x2d\xa9\xde\x31\xcb\xda\xcd\x02\x58\xa8\xe2\xc1\x7b\x01\xd2\x06\x49\xff\x9a\x8b\x55\xf2\x49\x7c\x1a\x3e\x0f\xae\x94\x36\xf3\x63\xe0\x46\x33\x75\x75\x9e\x1c\x92\xb2\x4c\xec\x41\x24\xf7\x16\x06\xb0\xcf\xdb\x66\xf9\xfc\x71\x78\x5b\x60\x7c\x0f\x1f\xdf\x2e\xc8\x89\x7f\xd0\xab\x04\xb5\x1d\x76\x5b\xde\xaf\x7a\x0b\xa1\x7c\x87\xe5\x8a\xd9\x43\x8a\x6e\xff\x93\x2b\xfd\xd7\x64\x78\xe1\xde\xaf\xfe\x06\xc0\xba\xfa\x3d\x05\xb9\x3b\x3c\xb4\x7f\xf6\x3d\xc0\x0b\x8e\x4c\x33\x42\xe4\xec\xf4\xf0\xcd\x11\x45\x15\x4e\x5e\xf3\x49\x1c\x8f\x27\xfa\x78\x18\x51\x51\x51\x23\x44\xe9\xb5\x70\x3f\xce\xfd\xdd\xb4\x38\x84\x27\x09\x65\xab\xf7\x62\xc9\x83\x2e\x3f\xba\x7b\x69\x93\x4f\x5d\x5d\x6f\x3e\x27\xd9\x8a\xfb\x44\xbf\x09\x2e\x7e\x16\x7f\x5d\xf8\xa4\x51\x30\x91\x4f\x0e\xfd\xc0\x05\xff\x40\xab\x54\x62\x20\xb8\x9c\xed\x87\x2d\x22\xe4\x49\x70\x44\xac\x11\xc1\x37\x86\xe3\x33\xc7\x67\x9e\xdd\xe3\x6b\x8f\xaf\x7d\x51\xdc\x4a\x66\x70\x18\xca\x4e\xab\xbe\x35\x62\xee\xf1\xcd\xb7\x8d\xf1\xa7\xd4\xa3\x77\x0f\xda\x07\xae\x84\x93\x17\xc8\x11\x6f\x1f\x14\x2f\x6f\xf3\xbc\xf4\xcf\xf4\x3c\xe6\xfd\xb1\x7b\x8d\x42\x88\x62\xb8\x7a\x8d\x92\xe0\x63\xb0\x09\x5a\xcb\x6a\x81\x12\xa6\x58\x6e\x87\x46\x4a\x90\xe2\x9a\x6c\x3f\xf7\xed\xd2\x10\x62\x7d\xab\x34\x44\xe8\xcd\x9b\x7a\xc7\xd7\x43\x7d\x76\xd7\xb0\xfb\x6b\x7d\x4f\x29\x4d\xaf\xc9\xc0\x9d\x3d\x7c\x82\x0f\x6f\x66\xe3\x1d\x06\x3e\xdf\x36\x73\xef\x7f\x96\xd5\xae\x77\xeb\x27\xbd\x4a\xe1\x49\xa7\x60\xfe\xae\x0d\x71\xda\xe4\x3b\x3e\xe5\x22\x63\x7e\x58\x7b\x01\x19\x80\x75\x19\xbf\x68\xfc\xf4\x5f\xfe\x05\xe0\x14\xfc\xd7\x7f\x4d\xcf\x7e\xfe\x3e\x2d\xbe\xf0\xa5\x34\xfc\x28\xdd\x97\x72\xdb\x6f\x0d\x8a\x3e\x5f\x47\x80\x78\xe2\x9f\xdd\xef\xd4\x94\xad\x6f\x9b\xf0\xd7\xff\x0b\x00\x00\xff\xff\x0b\x21\xb1\x35\xcf\x91\x00\x00") +var _confLocaleLocale_enUsIni = []byte("\x1f\x8b\x08\x00\x00\x09\x6e\x88\x00\xff\xc4\x7d\x7b\x93\xdb\x48\x8e\xe7\xff\xfc\x14\x6c\x6f\xf8\xec\x8e\x28\xcb\xd1\x3d\x71\x8f\x98\xb0\xdd\x57\x5d\xd5\x7e\xcc\xba\x5c\x5e\x57\x79\xe6\xe6\x1c\x0e\x35\x25\xb2\x24\x4e\x49\xa4\x9a\x8f\x92\x35\x1b\x1b\x71\x5f\xe3\xbe\xde\x7d\x92\x03\x7e\x00\xf2\x41\x52\x65\xf7\xec\xc6\xdd\x3f\x52\x32\x13\xf9\x42\x22\x91\x00\x12\x99\x99\xed\x76\xf3\xbc\x68\x97\xe9\xf3\xf4\x34\xdd\x65\x65\xb5\x29\xda\x36\x6d\x8b\xcd\xcd\x93\x75\xdd\x76\x45\x9e\xbe\x2a\x3b\xfa\x6e\xee\xca\x65\x91\x24\xeb\x7a\x5b\x10\xe8\x6b\xfa\x4b\xf2\xac\x5d\x2f\xea\xac\xc9\x29\xe2\xdc\xc2\x49\xf1\x65\xb7\xa9\x1b\x06\xfa\x45\x42\xc9\xba\xd8\xec\x38\x0f\xfd\x25\x6d\xb9\xaa\xe6\x65\x45\x9f\x57\x14\x4a\xdf\x54\x49\x5b\x2f\xcb\x6c\x33\x0f\x12\x10\x61\xe9\x7f\x4c\x7f\xac\xf2\xf4\xaa\x2b\x76\xe9\xb3\x76\x9b\x6d\x36\x2f\xb2\x16\x59\xba\x22\xcd\x96\xcb\xba\xaf\xba\x67\x4f\x25\x41\x0a\xaf\xfb\xce\x4a\xbf\xec\x3b\x89\xeb\x77\x16\xf5\x71\x97\x34\xc5\xaa\xa4\x8e\x35\x14\xf5\x41\x83\xc9\xbe\x58\xb4\x65\xc7\x8d\xfe\x8b\x84\x92\xbb\xa2\x69\xcb\x9a\xdb\xf3\x67\x09\x25\xbb\x6c\xc5\x00\xef\xe9\x2f\xe9\x8a\xed\x6e\x93\x21\xc3\xb5\x06\x93\x4d\x56\xad\x7a\x81\x79\xab\xc1\x64\xd9\x14\x94\x34\xaf\x8a\x3d\xc5\x9e\xe1\x23\xa5\x8f\xd9\x6c\x96\xf4\x84\xd3\xf9\xae\xa9\x6f\xca\x4d\x31\xcf\xaa\x7c\xbe\x15\xac\x7d\xa4\xf8\x54\xe3\x53\x8a\x4f\x39\x1e\xdd\x28\x72\x42\xd0\x3c\x6b\xb5\x2f\x34\x34\x84\xaf\xac\x4d\x50\x54\x95\x6d\x2d\x37\x07\x93\x62\x9b\x95\x1b\x1e\x84\x27\x1c\xa0\xc6\xb7\xed\xbe\xc6\x50\xbd\xd7\x20\x21\x62\xde\x1d\x76\x05\xf0\xf0\xe4\x9a\x42\xc9\x32\xdb\x75\xcb\x75\xc6\x6d\x95\x50\x42\x40\xbb\x9a\x10\x52\x37\x07\xc0\xd9\x47\x52\x37\xab\xac\x2a\xff\x9e\x75\x82\xa4\xcb\xe0\x33\xd9\x96\x4d\x53\x33\x7e\x2f\x10\x48\xa8\xc7\x73\x2e\x87\x62\xde\x11\x26\x82\x52\x38\x65\x5b\xae\x1a\x41\x25\x27\x5e\xe0\x8b\x4b\xe1\xb4\x9b\xba\xb9\xd5\x84\x97\x1c\x1c\x64\xa5\x46\x68\x6a\x5c\x7f\x56\x11\xf2\x35\xf5\x02\x1f\x11\x40\x9b\x64\xf9\x96\x50\xb9\xcb\xaa\x82\x71\x74\xca\x5f\x84\x17\xfa\x4a\x94\xa6\xe6\x6d\xd1\x75\x65\xb5\x62\x64\x9f\x4a\x54\x7a\xa5\x51\x49\x90\xe6\xe2\x0e\x75\xef\x86\x93\xe2\xff\x4a\x9f\xe9\x7b\xf9\x94\xb4\x20\x13\x12\x5d\x4e\xee\x49\x3b\xbf\x29\x8a\x5c\xfa\xd2\xa6\x2f\x29\x9c\xec\xfa\xcd\x86\xb0\xf6\x5b\x5f\xb4\x1d\x67\x7a\x4f\xdf\xd4\x7f\xf9\x4e\xca\xb6\xa5\x00\x45\xbf\x41\x20\xa1\xa1\xab\x96\xe8\xcc\x19\x02\x49\xf2\xa9\x2d\xb2\x66\xb9\xfe\x9c\xc8\x3f\xda\xca\x01\xa6\xbd\x63\x83\xca\x84\xa4\x44\x24\x35\x58\x05\xc9\xb2\xce\xf9\xe3\x8c\xfe\xa8\xe8\xb2\x6a\x3b\x9a\x71\x9f\x13\x0d\x30\x98\x84\x64\x00\xba\xb2\x03\x16\x34\x12\xd3\xb7\xe5\x11\x4c\x5f\x96\x4d\xdb\x3d\xe9\x4a\x22\xd6\x0f\x7d\x95\x70\xff\x68\xb6\xcd\xf3\x85\x31\xa1\x57\x35\xa1\x08\xd1\x0d\xf5\xef\xe2\x70\xf5\x2f\x6f\x4f\xd2\xf7\xc4\x89\x56\x4d\x41\xe1\x94\xca\xa0\x3f\xca\xf3\x87\x59\x42\xb9\xac\xa6\xf3\xac\xcb\x16\x59\x5b\x78\xb4\x72\xa2\x50\xb7\x4b\x03\x8d\x33\x57\x03\x07\x6b\xbb\xa8\xbf\x53\x33\x84\xca\xd0\x79\xe5\xca\x78\xc7\x93\x8b\xe2\x99\xa9\x21\xf3\xfb\x4d\xc1\xf1\x54\x54\xfa\xe6\xdd\xbb\xcb\xf3\x9f\xd3\xa2\x5a\x95\x55\x91\xee\xcb\x6e\x9d\xf6\xdd\xcd\x7f\x9b\xaf\x8a\xaa\x68\x88\xc7\x2d\xcb\x94\xe6\x54\x43\x94\x90\x12\x61\x4b\xe7\x66\x49\xdb\x6e\x68\xee\x03\xbd\x57\x57\x6f\xd3\x0b\x46\xf1\x2e\xeb\xd6\x68\x48\xb7\x4e\xda\xdf\x36\x8c\x22\x57\xe1\xf5\xba\x48\x41\x65\x00\xaa\x6f\x0c\x1f\x69\xae\x6d\x9c\x25\x45\xd3\xcc\x89\x2d\x75\x87\xb9\x66\xd6\xf2\x86\x90\x52\x04\x91\x4e\x55\x77\xe9\xa2\x48\x91\x67\x96\x24\xd6\x60\xc3\xee\xe9\x6e\xb7\x29\x97\x32\xd7\x5f\x49\x9a\x47\x34\xaf\x20\x8a\xa5\x10\x0e\x88\xb2\xb4\x00\x5d\xc4\x9e\x79\x3e\xa4\x11\x03\x41\xfe\x75\x41\x0c\x70\xdd\xaf\x84\xed\x6d\xea\x3e\xff\x0e\x94\x6a\xad\xf7\x84\x9a\x7e\xa8\xa9\xc1\xc0\x8e\x03\xf0\x55\x9c\x12\xc5\xf1\xa2\xd5\x14\xdb\x9a\xf8\x8a\x23\xf6\x92\x08\x6a\x5f\x52\x22\xf5\xb4\xcd\xee\x68\xbe\x75\x75\xda\xad\xcb\x36\xcd\x89\xd8\x96\x5c\x30\x4d\x8d\x9e\x96\x0b\x21\x0b\x22\x50\x21\x0d\x8b\x8b\xc7\x00\x50\xdb\x9e\xa8\x69\x4d\x85\xf1\x62\xc4\x2b\x27\x15\x39\xd5\x4e\x74\x89\xca\x01\x7d\x13\xe5\xd6\xc4\x95\x99\x6f\x9e\x23\xa0\xdf\x61\xf9\xd4\xaa\xec\xe6\x86\x5a\xd5\x12\x55\xbc\x4e\x97\x9b\x9a\x48\xea\xe3\x87\xb7\x94\x79\xdd\x75\xbb\xf9\xae\x6e\x40\xc6\xd7\xd7\xef\x69\x7a\x34\x9d\x8f\x0d\x70\xcd\x30\x55\xbf\x5d\xd0\xd7\x7e\x5d\x12\x13\xc8\x82\x01\x02\x2a\x36\xbc\xfe\x55\x69\x5d\xcd\x30\x56\x7d\xb3\x19\x0c\x23\x55\x69\x29\x47\x9a\xc7\x4d\x78\xca\x3f\x57\xbe\x95\xe8\x6e\x4b\x42\xc2\x1e\x83\x4a\x5d\x2d\xb0\x0e\x11\x6d\xd5\x3b\x2e\x37\x20\xae\x4b\x8d\xf0\x14\x85\xb5\xcb\xa5\xcb\x0a\x46\xa9\x10\x41\x02\x2e\xbc\xa5\x0e\xeb\x6c\xbe\xba\x20\x34\x60\x4a\x23\xf6\xa6\xa9\xb7\x14\xfb\x92\xfe\x7c\x84\x6f\xfe\x05\x97\x07\x98\x2c\xcf\x89\xcd\xb4\x27\xe9\x87\x97\x67\xe9\x7f\xfe\xc3\x8f\x3f\xce\xd2\x37\x1d\x4f\x08\xa6\x91\xbf\xf1\xd8\x52\x50\x96\x52\x07\x4a\x33\xb7\xa3\xe1\x7f\xc0\x04\xfe\x20\x7d\x86\xd4\xff\x5e\x7c\xc9\x48\x0c\x28\x66\xcb\x7a\xfb\x82\x27\xf7\x36\xeb\x66\x09\xa7\x10\xd5\x28\x39\x5d\x15\x55\x4e\x01\x5d\x90\x35\x2d\xe0\x3a\x9a\x1e\x2c\xcf\x22\x9c\xcc\x97\x75\x75\x53\x36\xdc\xa1\x5f\xaa\x6c\x41\x38\x31\xb1\x85\xd8\x31\x52\x6c\xd5\x23\xa4\xd1\x44\x2e\x6f\x0e\x1e\x14\x5d\x7d\xc7\x91\x3a\xa0\x09\x8b\x72\x05\x2f\x47\x40\xa7\xc3\xf2\x15\xa2\x31\x6e\x97\xd4\xbd\xc6\xf0\xdd\x7a\x84\xd7\x37\x37\x1b\x62\x6c\xc6\xac\xb4\x86\x4b\x89\x15\xbe\x15\x82\x10\x31\xee\x20\x78\x9d\x97\x2d\x20\xcf\xce\xdf\xa5\xc5\x1d\x51\x1b\x91\x03\xad\x94\x79\xbf\x04\x85\x31\xec\x49\xca\xcb\x04\xe1\x97\x38\xc3\x52\xd8\x5b\x30\x57\xb9\x69\xcc\x10\x96\x04\x44\x53\x34\x97\xf2\xe6\x82\xa0\xc6\x44\x10\xab\xe6\x8a\x65\xd7\x30\x6d\x32\xc3\xa8\x75\x18\xa5\x76\x98\x97\x86\xbb\xda\x1c\x52\xc8\x0b\xa0\x0b\x91\xe8\x4c\xf4\x6c\x67\x89\xae\x55\x26\xc0\xce\xef\x4a\x08\x7b\x6e\xa8\x90\x6a\xd2\x2c\xb3\x87\x3f\x33\x00\x4b\x91\xed\x64\x5e\xd7\xb0\x4b\xae\xb8\x75\x82\x1e\xb7\xaf\x45\x13\x50\x03\x4b\xa3\x44\x8c\x77\x25\x38\x8d\x22\x0b\x6d\x25\x8c\xa1\x6a\xaa\xaa\x2d\x0a\x94\x40\xf9\x9f\x52\x99\xc8\x33\x53\xe1\x47\xe5\x11\x5b\x77\x49\x26\x49\xf3\x3a\xe5\x85\x00\xec\x8c\x72\x5b\x57\x2b\xed\xbe\xf6\x39\x6d\xca\xd5\x9a\xf8\x4a\xbd\x3f\x11\xa4\xed\xd7\x75\xc1\xb4\xf3\xe6\xfc\xf9\x0f\xd2\x8e\x15\x33\x37\x97\x89\xd9\x62\xd6\x77\x35\xd3\xa9\x0e\xa1\x34\xc1\x2d\x2f\x80\x1c\x89\x59\x02\x34\x14\x6c\x4d\x74\x1b\xaf\xd6\x3a\x4f\xc2\x34\x9d\x20\x1e\x46\x72\x0f\x84\x63\x95\x62\xe6\xab\x1a\xe2\x99\x49\x2d\xcc\xaa\x49\xd2\x6f\xbb\xf9\xaa\xec\xe6\x37\x3c\x61\xb9\xcc\x97\x9c\x97\x57\x0e\x4a\x49\x1f\x51\xd2\xa3\x94\x66\x3d\xc9\x9c\xf9\x1f\xd3\x87\x77\xba\x5c\xff\x81\x67\xe2\x3c\xbb\x23\x58\x0c\x86\x0a\x7d\x4d\x21\xd2\x82\x69\x17\x79\x4d\x74\xce\x38\x6f\xfb\x1d\x38\xba\xae\xd0\x27\xe9\x4e\x00\xf3\x7a\x5f\x6d\xea\x2c\x07\xcb\xa1\xd9\x55\x42\x37\x5a\x94\x55\x46\xab\x8b\x95\x02\x56\xf6\x90\xa8\xe1\xdd\xe5\x35\x00\x57\xf5\xa2\x2f\x37\xb9\x01\xcc\xa8\x87\x77\xd9\xa6\xcc\x59\xce\xd2\x71\x0f\x65\x1a\x8b\x2a\xa5\x2d\xcb\xba\xe1\xe5\x10\xbd\xb1\x8c\x47\xd6\xe1\x86\xd7\x37\x44\x53\x5e\x85\x45\x3e\xb7\x64\x32\x1a\x68\xe0\x21\x80\xf2\x82\x0a\x8a\x29\xdb\xea\x51\x87\x96\x2e\x7b\xaa\x8b\x06\x9d\xa3\x29\x63\x9b\x3e\x79\x41\xbf\x09\x2f\xcf\xc2\xf7\x56\x63\xc4\x73\x62\x2a\x89\xbd\xcc\xd2\xa8\xa9\x11\x79\x3b\xea\x32\xe2\x0d\xfa\x1a\xb6\xd7\x48\xa0\xed\x85\x5e\x59\x11\xdc\xd0\xb0\x16\xdf\x51\xe0\x11\x4d\xe0\xd5\x06\x83\x90\x41\x7a\x21\x31\xae\x26\xbc\x31\x81\x9c\xc8\x74\xb9\xa1\xae\x31\xef\xec\xb2\x5b\x6a\x5b\xd6\x90\x10\x96\x7c\x62\x65\xf9\x73\xd2\x8b\x00\x54\x6f\x72\x27\x6c\x82\xa6\xeb\x66\xa8\x9c\x79\x20\x47\xaf\x2d\x49\x91\xcb\xf5\xdc\xa9\xda\x8c\x94\xae\xf8\x82\x35\x0f\x49\x5e\xf3\x66\x62\xe7\xa4\x64\x7b\xc0\x70\x71\x27\x2e\x0e\x7e\xb4\x48\xfc\xa1\x29\x42\x22\xfa\xa2\x66\xac\xdd\x15\x0e\xea\x2c\x8c\x8d\x33\x50\x59\x24\xa8\x69\x51\xb1\x0e\x45\x49\xa2\xe8\x69\xaa\x28\x7b\xa4\x8a\x7c\x52\x13\xc0\xe7\xc4\x2a\x88\x8a\x4c\x3e\x11\x33\x20\xbd\xc4\xeb\xc6\x73\x1b\x1c\xa7\x23\xb3\x4a\xa7\xfc\xc0\xaf\x83\xeb\x62\xc7\x4b\xe6\xb6\xc5\xa8\x6e\x08\x32\x3f\xa8\xec\xe5\xc6\xf7\x27\xe1\xb4\x34\xe0\xc4\x9f\xbe\x33\xe3\xc2\xef\x2c\xe2\xe7\x92\x46\x12\xf9\xe3\x95\x43\x14\x76\x92\x91\x61\xa5\x68\x9a\xc3\x49\x1a\xad\x41\x6b\xd2\xcd\x17\x05\x2d\x70\x9a\x2d\x9f\x99\x76\xc0\xa3\x96\x2d\x85\xe4\x61\x68\x00\x91\x4a\xce\xba\x19\x2e\x69\xdc\x42\x61\x50\x5a\x8b\x5b\xf0\xb1\x9c\x87\xab\xfe\x44\x9d\x84\xb0\x6d\xc1\x32\xdf\x7c\x2b\xba\xbd\x7c\xa5\x17\x45\x42\x82\xc9\x8a\xe6\xa3\xd1\xdb\x73\x56\xc9\x56\x90\x50\x95\xdc\x18\xa0\xe8\x42\x0e\xaa\x10\x16\xf3\x93\x19\x54\x68\x62\xef\xa1\xaf\xd2\xd4\x1c\xa1\x9f\xd6\x1a\x4a\x9e\x19\x47\x96\x05\x17\xf2\x49\x4b\x93\xdd\x23\xf1\x94\x8d\x21\x69\x08\xa5\x72\xa2\xef\x16\x67\xe0\x49\xff\x6c\xf1\xe2\x61\xfb\xec\xe9\xe2\x85\x63\x8d\xcb\x75\xb1\xbc\x15\x5d\xa2\xac\x16\xf5\x17\x28\x5c\x34\xf0\x8c\xe3\x8a\xa7\xc8\xc3\x3c\x5d\x53\x2a\x64\x72\x9a\xca\x94\x8d\x10\xcf\xa9\xd1\xa0\x51\x63\x78\xc6\xcf\xcc\x34\xe5\x16\x07\x23\x24\xca\x8d\x4a\xa4\x65\x09\x0d\x23\xcf\x1d\xe8\xf4\x9e\x6e\x4f\x39\x96\x29\x17\x6c\xde\x93\x2e\xfa\xbb\x29\xb7\x65\x37\x22\x1d\xe6\x23\x99\x92\xa0\xea\xf9\x86\x4b\x94\x05\x6c\xa0\x2d\xc4\x8d\xa9\x18\x5a\x37\x8d\x9c\xf6\x19\xa9\x37\x7f\x48\x89\x84\x7a\x5a\x85\xb8\x4f\xd4\x4c\x62\xc7\x19\x2f\xbc\xa4\x20\x64\xed\xbc\xaf\x14\xad\x45\x6e\xc4\xf4\xba\xc4\x22\xc1\xf5\x1a\xc9\x07\x50\x86\x79\x95\x73\xd3\xc7\x0e\xe3\xdf\x93\x50\x7c\xe3\xb2\x31\xe7\xe6\x06\x95\x2c\x93\x65\x93\x83\x47\x9c\xad\x2a\x44\xbd\x02\x06\x18\x8e\x07\x9a\x94\x03\x3f\x7a\xa4\x61\xdc\x52\x0c\x06\x64\xd1\x77\x5d\xcd\x32\xf7\x86\xa9\x46\xf2\x58\xab\xcf\x00\x08\x35\xc2\x97\x87\x01\x09\xf1\x24\x63\x53\x98\x0c\x3c\xf7\x46\x42\xd5\x56\x06\xbd\xd3\xa5\xce\x81\xe5\xa2\xae\x67\xd5\xc1\x48\x99\x08\x82\x5b\xc1\x15\x76\xd3\x6d\x79\xdc\x14\xdf\xfb\xd6\xb8\x39\x83\x1c\xd6\x22\xc9\x1e\xcc\xa7\x0f\x48\x15\xf3\x90\xcd\x3a\x5b\xb9\xd4\xc8\xe2\xe9\xa3\x89\xd1\x8b\x74\x9e\x19\xc4\x60\x49\x6c\xcc\x81\x68\xea\x05\x72\xcf\x06\x75\x79\x75\x67\x8c\xc1\x2e\x6e\xb2\x5f\x80\xba\xba\x9e\xb7\x6b\x51\x2d\xad\x79\xe9\xa6\xa8\x56\x91\x99\x00\x26\x62\x10\xdd\x7f\xe1\x65\x8e\x04\xf8\x6c\xf3\x39\x39\xc0\x1e\xf5\x57\xe2\xf0\x15\x2c\x7d\x75\x42\x09\xa2\x8c\x5c\x20\x40\xa0\xac\x19\x7d\x4e\x78\x09\x7c\x37\x10\xeb\x78\x89\xd0\xb8\x40\xbe\x40\xd2\x2f\x91\xb4\x66\x43\x98\xbc\x9f\x10\x01\x3f\x14\xde\xa2\x89\x90\xeb\x22\x29\xd1\xd7\xa6\xea\x90\x3e\x7d\x5b\x68\xe1\xaf\x49\x6d\x6e\x3f\x42\xed\x15\x1d\x96\x15\xde\xf7\xd9\x81\x85\x2e\x89\xd6\x0f\x24\x5c\x17\xd9\x56\x5b\xc9\x41\x29\xe2\x94\x96\x33\x8d\xe4\x20\xad\x72\x81\x55\x23\x81\xf8\x61\x5d\x10\x59\x44\x97\x7d\x27\xfe\x17\x6a\x2e\xfd\x75\x64\x8a\xf9\x35\xc9\x36\xbb\x75\x86\xf5\x3f\x00\x83\xd5\x81\x80\x30\xf0\x29\x40\x40\x0b\xfd\xb6\x68\xca\x25\x07\x39\xc3\xe3\x27\xf3\xef\x61\x70\xa2\x89\x42\x82\x60\x5c\x58\x4e\x93\xe4\x1f\x2a\x90\xc3\x2c\x24\x86\xe5\xb6\xe5\xdf\xad\x17\x51\x71\x1c\x4f\x3c\x87\x20\x20\x92\x79\x28\x07\x84\x85\x91\xc5\xb3\x2e\x65\xbe\xd0\xb1\x08\x18\x15\xbd\xcd\xbe\x7c\x2d\xe3\xb6\x9e\xc8\x27\xac\xc0\x67\xb2\x09\xaf\x5d\x8c\xd9\x01\xc1\xb3\x7d\xe3\x28\x34\x0d\x3d\x83\x54\xb7\xb4\xaa\x55\x0e\xec\xa3\x7c\xa7\xf8\xfe\xa3\x19\xcf\x69\x09\x51\x01\x3a\x75\x66\x74\x5a\x9c\x73\xe6\x9b\x10\x84\x67\x7e\xba\x85\xc2\xb1\x23\x67\x16\x23\x4d\xe5\x77\x8c\x83\x24\x4a\xd1\x13\x88\xa4\x66\xde\xe2\x3f\xe7\x35\x72\xce\x42\x67\x15\x8a\x96\x6e\xf5\xb4\xf5\x05\x10\x62\xf7\x9d\x8f\xf3\x0d\x26\xdc\xd1\xec\x24\x0a\x4c\xe4\xbe\x1c\x1b\xf2\x8e\xe4\xef\x68\xca\x4c\x14\xe0\x66\xd2\xd1\x8c\x32\x98\xc8\x44\x3d\xcf\x47\xbc\x60\x9c\x91\xc1\x48\xed\xd9\x6c\x8a\x15\x9b\x9a\xac\xe2\xa8\x36\x25\x21\x5a\x0c\x04\x2c\x24\x20\x8f\x61\x37\x58\xe1\xb8\x86\x42\xbc\x1b\xa3\x58\x7d\xa2\x56\x93\x38\x4e\x41\xce\x19\x28\x51\xda\x0c\x5d\xc9\xb7\xac\x2f\xb4\x3d\xb3\x66\xd6\x2d\x44\x3a\x89\x47\x83\x17\x5e\x14\x55\xa0\x8a\xe3\xc5\x13\x2d\xb2\xc2\xf5\xb5\xf2\x01\xf6\x3b\x8b\x0e\xd5\xed\x71\xc1\x5a\xb8\x03\x3a\x56\xac\x53\x08\x8b\x2f\x25\xcc\x76\xaf\x4a\x36\x07\x41\x25\x74\x9a\x30\xd2\x66\xc9\x86\x98\x01\xab\x1e\xd2\x2b\x91\x63\xeb\x3b\xd6\xdc\xb8\x3e\x4e\x95\x7c\x62\xc6\xd3\x4e\xf1\x38\xab\x72\x49\xca\x5c\xbd\x2f\xf2\x13\x5a\xe2\x39\x07\xb5\x13\x6c\x23\xdb\xec\xb3\x43\x0b\x1b\x89\x71\x1c\x36\x59\x4a\x76\x66\x27\x24\x00\xac\xd0\xaa\xd0\x3e\x4d\x33\xce\x30\xd1\x12\xef\xe4\xc5\xc3\x2d\xd3\x7b\xa8\x87\xe0\x16\x6a\x75\x21\xad\x9b\x97\x3d\x2c\xb1\xba\xd6\xb0\x6a\xcb\x8a\x20\xcb\xf8\x92\x1c\x14\x84\x2d\x0f\xe5\xfc\x13\x79\x4f\x58\x3c\xa2\x6a\x58\x58\x21\x7e\x2c\xb8\x26\xf9\x8f\x30\x8b\x26\x05\xb6\x82\x9e\xca\x7f\x22\x72\x71\x49\x38\x64\x3d\xcb\xab\xcf\xbc\x36\xd1\xa8\x98\x61\x57\xe2\xa1\xfc\x26\x6d\x47\x53\x80\x31\x6d\xdb\x74\x7f\x15\xf9\x4a\x55\x66\x4e\xc5\x14\x03\x9a\xda\x75\xb9\x4b\x6b\x18\x0b\x43\x14\x7a\xb2\x0d\x44\x4c\xc2\x46\x5e\x40\xee\x66\xab\x69\x93\x55\xed\x4d\x01\xf3\xe9\x36\xbd\xe1\x9d\xa0\x99\x56\xcd\x12\xab\x6c\xd7\x1d\xa9\x59\x74\x18\x54\x1d\xae\x16\x18\xbb\x60\xa0\xe2\xaa\x09\xe6\x0e\x35\x6b\x1b\x80\x55\x5f\x52\x6b\x6d\x60\x32\x1b\xa1\x00\x52\x63\xb4\x49\x61\xad\xb9\x2b\x42\x44\xdc\xfc\xa3\x3d\x0f\xb0\xae\x16\x62\x31\xab\xc7\xc3\x24\x95\xc2\x5a\x81\x3d\xa6\xc5\x21\xee\x3d\x67\x75\x14\xc0\x3b\x1e\x77\x85\xd6\xc2\x13\x83\xe7\xca\xa0\x40\x58\x29\xbc\xae\x90\x74\x19\x54\xbe\x05\x35\x71\xb9\x8e\x66\xe7\x35\x52\x52\x49\x19\x4d\xd0\xe4\x13\x57\x4d\x6a\xfc\x3a\xab\x56\x05\x9b\xba\xa8\x24\x5e\xf2\xf0\xad\x12\xba\x44\x52\x83\x57\x8d\x84\xd9\x40\x6e\x59\x96\x34\x21\xeb\xed\xbd\x39\xcb\xca\x0c\x36\x6d\xf2\xb7\x9a\x64\x08\x58\x7a\xff\x44\x21\x96\x7e\xab\x24\xda\xdb\x19\xd8\x19\xa0\x1e\x94\xdd\x01\x9b\x4e\x0b\x92\x81\x45\x49\xa3\x18\x52\x73\xc1\x1d\x60\xb9\x78\x69\x61\x1a\x8f\x8c\x99\x1e\x4f\x6d\x09\x29\x9c\x98\x91\x5e\x5a\x38\x61\x2d\x79\x3b\xc3\xe2\xc0\xc2\x34\x8c\xd3\xc1\x92\xf0\xe8\x61\xfb\x88\x07\xcc\xd2\x66\x01\xfc\x2e\xeb\x88\x2d\x56\xa2\xa2\x08\x87\x0a\xb3\x6a\xb2\x2b\x02\x5c\x45\xc0\x66\xd8\xd1\x15\x54\x7c\x4e\xfc\x46\xb3\xed\x31\x4f\x19\x44\x95\xc5\xb4\x2a\xf3\xfe\x33\x05\xd5\x22\x92\x3a\x37\x0b\x55\x55\xb1\x8d\x67\x9b\x3e\x6d\xbc\x07\xd4\x26\x6a\x02\x8a\xed\x3f\x4a\xde\xcf\xd3\x73\x09\x98\xd2\xdb\x97\xe8\x53\x99\x27\xc9\x0e\x78\x0f\xb6\xc5\x75\x20\x5c\xa3\xd5\xfd\xc1\xdb\xa0\x9b\xe1\xca\x4e\x58\x90\x52\x40\xb8\xb6\x25\x00\x29\x80\xf7\x50\x03\x85\x8d\x8d\xab\xd0\xe4\xaa\x60\xbb\x83\xf4\x5d\xce\xc7\x60\xfb\x62\x91\xb2\xb9\x93\x08\x87\xf4\x22\xed\xe8\x36\x23\x95\xea\xae\xcc\x9c\x65\x86\x46\x8b\x37\xde\x75\x15\x7d\xc9\x9b\xee\xd8\xc9\x1c\x7b\x88\xf0\x7e\x84\x6e\x3d\xbc\xd5\x60\xd2\xef\x72\xb6\x69\xf9\x0e\x7f\x44\x84\xeb\x70\x9c\x1e\x58\x1b\xd1\x75\xcb\xe6\xa4\x19\x01\xcf\x53\x85\xe3\x96\x1d\x66\x36\x7d\x26\xbc\x3e\x74\x0a\xe5\x43\x90\xd0\xc8\x2f\x49\xaa\xb4\x1a\xc0\x4c\x78\x0f\xd0\x2b\xfb\x7a\x40\x08\xad\x95\xe9\xba\xde\xa7\x9b\xb2\xba\x6d\x15\xbf\xce\x1e\x62\x7a\x72\x7a\x8e\x08\x02\x16\x4b\x0d\x8b\x55\x65\xd5\x17\x3f\x25\x16\x12\x43\x3c\x82\x63\x3f\x85\x42\x56\xc5\x21\x33\xd0\xfd\x93\x33\x44\xa7\xa7\x88\x9e\x84\xf5\x7a\xae\x66\xc1\x8e\x2e\xb3\x5f\xdd\xd8\xb9\x29\x58\xc0\x06\x3b\x7c\xa5\x5c\x88\xf0\x53\xd7\xad\xda\x1e\x3d\xfb\xe1\x38\x18\x2a\x14\x4a\x47\xcb\x41\xe8\x60\x4a\x63\x6c\x9f\x82\xa0\x58\x3d\x24\x61\x49\xdb\x83\xb9\x3d\x2f\xb7\xe2\x0a\xf4\x51\x53\x65\xcb\xde\xe9\x15\x48\x9e\x91\xa6\x3c\xe8\x4c\xb8\x63\xf0\x8e\x70\x29\xdd\x37\x3e\x6a\x89\x27\x26\x2e\x08\x42\xb0\xd8\x47\x8d\x1d\x52\x96\x16\x60\xc6\xef\xaf\x10\x98\x91\x4f\xb8\x91\x22\xbc\xd9\xb1\x96\x7a\x13\x09\x85\x67\x6a\xc6\x77\xe9\x8c\xd9\x20\xfd\x1d\xb6\xbc\x86\xd6\x86\x48\x53\xd2\x12\x8e\x4a\xd3\x83\x36\x8d\xe6\x8e\xe5\xdb\x53\xdf\xc2\xee\x18\xc1\xcf\x84\xfa\x33\x58\x86\x65\x57\xac\x6f\x45\x9e\xe4\xaa\xb0\xa5\x26\x45\x10\x02\xa0\x70\xb4\x5e\xcf\x38\x15\x6e\xc4\x06\x71\xf1\x2d\x72\x00\xea\x5e\x14\xeb\x93\x85\xed\x61\x87\x8c\x6d\xd7\xd0\xa0\xd3\xc2\x3b\xb0\x44\x8d\x58\x5a\xc4\xbe\xc0\xbd\x6a\x6c\xc8\x7a\xae\x45\x1a\xa4\x96\xc5\xfc\x1f\x21\x8b\xf1\xd6\xcb\x82\xad\x5b\x56\xa9\x32\x6b\x97\x2a\x2c\x3b\xa1\x36\x60\x0e\x14\xce\x3c\x91\x03\x13\x71\x13\x01\x16\x82\x98\x25\xd4\xa2\xe7\x91\x9d\x17\x16\xdb\xff\x6f\xb6\xdd\xa8\x42\x67\xdb\xf5\x4d\x1d\x90\x0d\xb7\x71\xb0\xe2\x8c\x08\x88\x12\xb0\xfe\xea\xd0\x07\xab\xaa\x0e\xbe\x5b\x5c\xb9\x1a\x91\xe9\x19\x4d\x14\x85\x25\x58\x89\x00\x1c\x96\x05\x3c\x38\x5d\xc0\x71\x47\x04\xfc\x76\x64\x86\x8c\xf9\xeb\x29\x34\x18\xc2\x8a\xc0\xb2\x3c\xc0\x0b\x9a\x48\x7f\xaa\x11\x6d\x19\x11\xb2\xed\xea\xfc\x50\x0e\xb2\xe3\xe8\x45\xa2\x13\x55\x1b\xd6\xe5\x6a\x4d\xfd\x2a\xb7\xbc\xe5\x08\xae\x6d\xfb\x5a\x5e\xab\xe3\x2f\x9a\x78\xf5\xaa\x62\x1b\x0e\xd7\x30\x43\x67\x1c\xb7\x7d\xd6\x76\x4d\x5d\xad\x5e\x9c\xd7\xac\x6e\xb1\x25\x84\x97\x8a\x9f\x9e\x3d\xd5\x78\x62\x19\x3c\x86\xec\x8e\xf9\xaa\xec\x5e\xf7\x8b\x47\x6d\xba\x22\xd9\x00\x0b\xc8\xb3\x2c\x5d\x37\xc5\xcd\xf3\x07\x0f\xdb\x07\x2f\x74\x9f\x59\xbc\x82\xf6\x95\x43\xcb\xb3\xa7\xd9\x0b\x96\x9e\xdb\x7a\x43\x42\x6d\x9c\xa5\xde\x6e\x65\x7c\x89\xfd\x6d\x05\x12\xed\xc7\xd6\x74\x51\x01\x73\x45\xa3\xf8\xa1\x02\x67\x8e\xd6\xfd\xf8\xe8\xb0\x99\x98\x14\xd9\x17\x54\x50\x61\x60\xec\xb8\x55\x5d\xc0\x34\xd9\xb6\x90\xba\x6c\x58\x60\xc7\xd9\x30\x90\x6c\xae\xf1\xa6\x0d\x33\x4e\x40\x82\x46\x19\x96\x9f\xb2\x52\x4b\x44\xd2\xe0\x38\xab\x53\x16\x4e\x0a\x19\x69\x05\xf4\xcb\x3c\xd5\x4c\x99\x10\x18\xbd\x11\x84\x09\x36\xa2\xe1\xef\x8c\x01\x48\xef\x83\xe9\x0f\xf9\xe5\x14\x19\x48\x7e\x81\xd6\xad\x7d\x79\xab\x3a\x36\x12\x68\xa1\x0a\xe4\xe9\x77\xb5\xee\x49\xa4\x16\x89\x56\x93\x00\xdd\x15\x11\xb9\x73\x75\xf4\x87\x52\x88\x36\xa1\xb6\xff\xd7\x34\x27\x15\xdc\x4f\x27\x13\x48\x75\x32\x9d\xfa\xb9\x30\x14\x51\x75\x37\xef\xe8\x7c\x0a\xa6\x91\x96\xea\xdc\x34\xc4\x7c\x50\x40\x10\x5c\x94\x55\x2e\xd3\x46\xa9\x5e\xfd\x1e\x1c\xb9\xd3\x62\x5a\x31\x10\x6c\x7c\x1c\xd0\xef\x00\xf9\x57\x51\xf9\x01\x6d\x10\xb7\xea\xab\x80\x5b\xc8\x74\x9c\x77\xb5\xd8\xba\xb4\x93\xef\x49\xdf\x80\xcf\xd3\xa9\x14\x78\xcd\xc9\xad\xfa\xdd\xe9\xa6\xa8\x65\x79\xa5\x91\x18\x70\x00\x26\x48\x6a\x1d\x22\xf0\xe5\x55\x4f\x2b\x45\xf7\xab\xd5\x9b\x09\x63\x40\x53\xcf\xf8\xc3\x5a\xf6\xaf\xd3\xd3\xf7\x6f\x66\x89\xab\xcf\xca\xfc\x25\x23\x99\x49\x5a\xb0\x77\x5a\x2f\x93\xd2\x90\xbf\xb8\xdd\x12\xc9\x6e\x46\x36\xe4\x04\x39\xbb\x3e\x8d\xfa\x23\x7d\x89\xd3\x05\xc5\x45\x1b\x58\x02\xa4\x36\xb4\x64\xc8\x99\x5d\x4f\xbf\x23\xc4\x3a\x7b\x14\xaf\x08\xbb\x03\xf3\xba\xc0\x53\x25\x13\x04\xed\xc1\xad\x06\x2e\x32\x04\x09\x6d\x38\x65\xf9\xb6\x71\x73\xc5\x1a\xac\xb3\x25\x8c\x0d\x28\x01\x64\xb8\xb3\xf1\x8c\xda\xeb\x17\xba\xb0\xd1\xa2\xa4\x0f\xe6\x67\x2a\x6c\x54\xf6\x5f\xb9\x5d\x22\x99\x29\x8e\x43\xd5\x8c\xca\xdc\x17\x1b\xf6\xa4\xd3\x06\xf9\x4d\x48\x55\xc4\xa2\x2d\x48\x05\x72\x9b\x8f\xec\xb9\xe8\x24\x09\x19\xdb\xd0\x3a\x62\x85\x11\x04\x11\x30\x76\x1d\x45\x83\x32\x76\x7f\x76\xfa\xee\xdd\xe5\xb5\xe7\xf2\x4c\x59\x55\x4e\x6b\xd1\x77\xce\xff\x66\xd4\x2e\xf3\xc2\x41\xfb\xe0\x90\x15\x41\x78\x3f\x20\xcd\x71\x0c\x2e\x9c\xf8\x56\x3a\x05\x57\x35\x66\x73\xcd\x6d\x91\x1c\x79\xdc\xfe\xfc\x98\x82\x92\x7c\xe2\xe5\xf1\x73\x62\x36\xc6\x4b\xfe\x4f\x42\x33\x6d\x60\x1a\x07\x35\x7b\x0b\xba\x77\x37\xa5\x06\xd4\xf9\xc8\x6c\x0b\xb6\xd7\x67\x90\x40\x09\xf7\x35\x18\xe9\x4d\x8a\xdd\xb5\x13\xb6\x42\xd5\x0d\x68\x90\x91\xdb\x57\xe5\x6f\x3d\xd6\x77\x96\x3f\x49\x5e\x61\xb7\xae\x45\xb9\x11\x6e\xfb\x67\xf7\x21\xf1\x1c\x1a\xf8\x62\x06\x95\xd3\xd7\xb3\x76\xc7\x9e\x6a\xc4\x6d\xdb\xe7\x0f\xfa\x32\x65\xa3\x06\x7b\x86\x3c\x78\x41\xd2\x22\xef\x52\xd3\xf0\x11\xc4\x0b\x36\x4c\xdc\x9a\xbd\x6b\xe8\x5f\x8f\x34\x73\xa4\xe4\x34\x78\x53\x22\x76\xa2\x15\x2a\x5b\x8b\xc1\xa2\x13\x4b\x57\x1a\xf4\x82\xb9\x33\x53\xf7\x6d\x11\x62\x4a\x77\x24\x74\x5c\xcf\xe9\xaf\x29\xe1\x0d\x2a\xf1\x7c\xa2\x22\x0d\x4e\x53\xb8\x48\x5f\xef\x15\x8d\xf7\x92\x15\xaa\xd9\xaa\xec\x48\xa6\xe7\x33\x14\xd0\xb4\x69\xc2\x10\x53\xc4\x61\x0c\x09\x59\xcc\x44\x5e\x83\x45\xc6\xb2\x2a\xbb\x39\xaf\xd3\x5b\xf1\x60\xa7\x62\xb3\x8d\xc8\x40\x31\xa2\x65\xc3\x38\xfd\xf0\xcb\xe9\xf9\xc5\x2f\xb3\x6d\x6e\x0e\x2d\x8a\x4f\xf5\x64\x09\x30\x9a\x17\x37\x59\xbf\x31\x53\x1b\x3a\x8c\x88\xf4\x67\x44\xe8\xb1\x09\xd2\x8a\x08\x7f\x77\xb2\x24\xca\x41\x8a\x37\x16\xf3\x98\x65\xde\xef\x8f\x18\xa0\x86\xbb\x38\xbf\xdf\x0e\x35\x2c\xe1\x7e\x73\x14\x6f\xf1\xcf\xd9\xb8\x98\xaa\x1b\x48\xb4\xf9\x99\xe8\xb1\x0e\x73\xc2\x77\xe7\x3a\xc4\x0b\x3f\x4c\x3d\x4e\xcb\xa6\x1b\x65\x31\x49\x93\x0e\x5c\x6c\x52\xfc\x3e\x59\x6c\xfa\x42\x83\x4d\x96\x97\x3d\x09\x87\x82\x47\xa3\x71\xab\x49\x87\xe5\x42\x4f\x9b\x04\xe3\xa2\x10\x33\x78\x2f\xcf\x4d\x0d\xe0\x7d\x73\x16\xb1\x55\xf5\x73\x50\xb6\x11\x00\x77\x54\x73\x89\x7b\x23\x91\xe2\xa3\x0a\x87\x38\xc8\xda\xb1\xcd\xd4\xb6\xeb\xb3\xd0\xdf\x3c\x91\x49\x61\x33\x4d\xa7\xc8\x8d\x9b\x6b\xf0\x5c\x66\xb7\xd4\x78\x92\xe1\x60\x4c\x80\xa9\xd0\x99\x84\xb9\x59\xce\xec\x78\x77\x98\xb3\xe5\x06\x1c\x78\x77\x48\xe0\x72\x41\xeb\xd7\x1c\xcb\xa3\x44\x82\x1f\x6e\xca\x9d\x9c\xdd\xa2\x84\xb2\x10\xbf\x49\x04\x2e\xff\x39\x11\xa4\xb8\x11\xc2\x40\xe3\x40\x17\x27\x10\xdf\xfd\x09\xec\xa9\x63\xf1\x5c\x2c\xc9\xcf\x1f\xcc\x17\x34\x47\x6f\x1f\x04\xe2\x3a\x1f\xfd\x62\x19\xfd\x3b\x12\xa4\xf6\xba\xdf\xf9\x51\x42\x89\x7d\xff\x05\x5f\x3d\xfb\xe1\xc9\xe6\x2a\x07\x12\xfd\x62\x83\x6c\xa2\x87\x81\x98\x19\x25\x2c\x90\x2a\xdb\x20\x61\x34\xe4\x1c\xbf\xf5\xdc\x4b\xd1\x34\x9e\xa7\xff\xc2\x5f\xe9\x2b\xfe\xd2\xae\xf0\x34\x76\x73\x14\x23\x3c\x98\xd8\xa1\x63\x1a\x38\x8e\x7a\x77\xfa\x39\x2d\xde\x2c\x01\xf6\xd5\x8d\xc5\x00\xd9\x05\x3a\xd9\xf5\xbc\x65\xcf\xe3\x6e\xb5\xbd\xa7\x18\xf8\x93\x73\x24\x2f\x59\x41\x09\xce\x5a\x1f\x95\x91\x38\x56\xa1\x2c\xa2\x6b\x0a\x88\x57\xf4\xa7\x69\x38\x3a\xd6\x65\xb0\xcf\x0a\x10\x91\xdc\x7f\x4a\xaf\x29\x46\x21\x8a\x30\x29\x51\x50\xa4\x0f\x0f\x11\x61\x1a\xb5\xe0\xb8\x1c\x20\x92\xdf\x14\x6d\x47\x28\x82\xae\xeb\x3e\x12\x6e\x63\xd9\x89\xe7\x20\x42\x89\xfa\xb5\x8a\x0d\x5e\x82\x09\x2c\x9c\x4d\xc6\x5e\x62\x1f\xb2\xbd\x7c\x12\xa6\xf5\xd4\xd1\x6b\x09\x49\x34\xfc\x9e\x05\x14\xde\xd1\x0e\x1e\xcb\xb8\xd2\xf0\x7b\x0b\x27\xd6\x80\xd9\xb8\x21\x96\x32\x38\xf4\x94\x2e\x07\xe9\x37\x22\xde\xbf\x64\xe1\xde\xe2\x32\xf0\xaf\xd4\xbc\x38\x5c\xfc\x96\xa6\xbf\x18\xf3\x2e\x24\xe4\x52\x72\x71\x30\x3a\xe7\xe3\x7f\x16\x67\x2e\x9c\x97\xfc\xef\x62\x89\x60\x74\xfe\xd0\x7f\xa2\x98\x9f\xc9\xb9\x40\x96\xeb\xe5\x94\x95\x8f\x9e\x0d\xc7\x22\x48\xaa\x78\x11\x5c\xc0\x88\x4a\xb4\x8f\xf4\x30\x79\x49\xf8\x6f\xe6\x2e\xff\x19\x7f\x0a\x87\x8c\x4a\x71\x83\x1b\x8e\xed\xa0\x9a\x10\x86\xaa\x9a\x04\x93\xea\x42\x48\xa9\x71\x3b\x05\x4c\x92\x67\x15\xc1\x5e\x52\x44\x48\x5a\x51\xc1\x2c\x33\x0d\x4a\x86\x18\x35\x0d\x4f\x4b\x03\x3b\xcb\x43\x90\xd4\xe0\xb8\x9d\x01\x90\x34\x33\x9b\x00\x65\x65\xd7\xc3\x51\xc7\x87\x40\x6a\xb1\x70\x0c\x61\x38\x7a\x7e\x7c\x68\x68\x87\x03\x24\x89\xf3\xdd\x26\x5b\x16\xce\xe1\x17\x40\x58\x75\xf9\x7c\x5e\x54\x8d\x2b\x4c\x2b\x8b\xca\x03\x42\xbb\x6c\x41\xc9\x0f\x73\x60\xd3\x65\x66\x5c\xf9\x24\x41\x9d\x25\xd2\xe4\x62\x2f\x53\x2b\x39\x2a\x32\x4c\x23\x01\x81\x17\x1f\x31\xd1\xbe\x63\x6d\x89\xc3\x7c\x18\x63\x22\xc7\xbd\x14\x35\x84\x39\x5a\xf2\x88\x6e\x34\xe7\x3d\xc3\xab\x10\x2a\x69\x40\xbe\x18\xa7\xcc\xd8\xbd\xdb\x71\xbc\x53\x6c\xaa\x82\xeb\x4d\x81\xb6\x7a\xde\x96\x16\x4b\x5e\x59\x5d\x95\xb9\xea\xbd\x53\x99\x64\xb4\xf2\xf9\xe2\xa0\x79\x64\xbc\x72\xde\xb2\x3d\x92\x65\xcb\xfb\xb2\x58\x46\x35\xcb\x85\x8b\x08\xb3\xf0\x20\xa3\x60\x82\x90\x70\xfa\xf0\xd3\x0f\x9f\x5b\x2e\xd9\x99\xc5\x9e\x3e\xfc\xf4\xe3\x67\x5a\x6b\xf1\xc7\x8b\xad\xe5\xde\x35\xc5\x5d\x59\xf7\x38\x43\xaa\x41\x4f\x8d\xf0\x24\x7f\xc7\x5e\xe3\x11\x41\xb9\xa3\x59\x03\x7a\xca\x5d\x52\x4c\x4f\x55\xbf\xc5\x32\x49\xcd\x6f\x85\xde\xec\xcb\x65\x97\x6f\x16\x19\xb9\xca\x5f\xdd\x37\xef\x0e\x53\x27\xca\x9c\x44\x05\xee\x94\xc9\x0d\xff\x24\x5f\xbe\x3f\xbf\xba\xca\xea\xc0\x3e\x76\x2d\x07\xcc\x58\xcc\x72\x96\xba\x43\xd1\xcd\xe2\x69\x60\x87\x59\xd1\xea\x38\x49\x1b\x12\x83\xa8\x13\x16\x52\x06\xb3\x51\x63\x75\xcd\x09\xd2\x65\xc2\x18\x7e\xfc\x84\x8e\xd3\x97\xf5\xa6\xf6\x13\x1e\x5f\x43\x00\x51\x9a\x1f\xe6\x03\xa6\x2d\xc9\x18\x1f\x47\xc6\x0f\xb1\x99\x59\x0d\x48\x59\x20\x8b\xbc\xe4\x72\x7e\xa1\xbf\x38\x61\xb0\x71\x1b\x27\x3a\x9f\x4d\x69\x20\x3c\x37\xed\xe8\xd8\xb8\x14\xdd\xfe\x04\xa8\xd3\xda\x27\xc1\xbc\x92\xa7\xa6\x7a\x1a\x32\x61\x3f\x10\xf2\xd5\x73\x81\x17\xf3\xb2\x92\xf3\x73\x5c\x36\xdb\xb3\x91\x2a\x3b\xbb\x5a\xf2\xf1\x1d\xc7\xe9\xaa\xbd\xb1\x46\x5a\xea\x7d\xe6\xd5\x5a\x10\x9b\x4a\x71\xf4\x1a\x14\xbb\xcb\x1a\x1a\x70\xec\x1f\xa9\x90\xc1\x31\xba\x19\xd6\x4e\xc3\x59\x47\x0d\xb8\xdb\xd7\xa9\x13\xc4\x70\x9e\x9f\x2d\x55\x59\xca\x99\xcd\xef\x1b\xfb\x3e\x9a\x7f\xa6\xc5\x12\x95\x93\xde\x41\xea\x61\x9b\xaa\xc1\x55\x3e\x6e\xcc\xbe\xe8\x16\xc1\x40\x8c\xf0\x6c\x37\x48\x9e\x58\x23\x82\xd4\xe9\x75\x62\x08\x90\xfb\xd5\xf7\x61\x1b\xd5\x4d\x72\x78\x5f\xcc\x55\x12\xa2\x76\xd2\x57\x8a\xaf\x61\x13\x8c\x9f\x0c\x8b\x76\xd3\x32\xee\x11\x8d\xda\x62\x4d\xfa\x8c\xb8\x30\xcb\xd2\x17\x08\xa4\x34\xec\xea\x9c\xa3\x96\x2b\x1d\xfa\xa8\xf8\xc1\x32\x3d\x89\x1d\x9b\xb0\xf0\x0e\x0e\x13\x26\xac\x12\x61\xaa\xef\xf4\x39\xf5\x98\x45\xc0\xf4\xb1\x9d\x6d\xfd\x3e\xee\x64\x21\xfb\xcb\xfc\x1f\x26\xb8\x43\x59\x5a\xd4\x5c\xe8\x5e\x4b\x44\xe1\x1a\xe3\x0f\x2b\x9d\x38\xdf\xda\x47\x07\x2a\xee\xc9\x76\xfb\x24\xcf\x1f\x4d\xf4\x3a\x20\x7a\xd7\xed\xc1\x36\x81\x2e\x58\x03\xea\x0f\x4a\x0a\x38\xc8\x34\xee\x18\x20\x1a\xa7\x8f\xec\xa1\x54\xb0\xd5\x20\xcd\x3d\xde\x40\xde\xc1\xd8\xb5\x75\xba\x2b\xea\x1d\xa1\xdd\x99\x63\xd9\x76\x28\x3e\x9b\x61\x4f\x06\xbe\x02\x41\xd2\xc0\xb5\xfc\xde\xe6\x19\x1e\x74\xda\xb2\x2d\x6a\x7b\x04\x25\x72\x2c\xfc\x28\x42\x02\x9e\xe7\x91\xea\xf8\xde\x04\xe0\x14\xd7\xf3\x75\xff\x47\x72\xbe\xa9\xca\xa7\x48\xe0\x6b\xbc\x6f\xea\x6e\x0b\x8b\x9b\x09\x7d\xc3\x15\x48\x42\x3e\x29\x38\x59\x06\xfc\x9c\x85\xdf\x1e\x6c\x5d\xd7\xb7\x72\xba\x6e\x81\xa0\x4f\x59\x95\x9d\x25\xf2\xe1\xfd\xd7\x71\xea\x22\x6b\xcb\x65\x78\x87\xc6\xcf\x1c\x31\xd1\xc4\x9c\xc7\xb8\x99\xff\x5d\xc4\xd0\x73\x7c\xa5\xff\x93\x09\xc3\x81\xa8\x1f\xcf\xa5\x9d\xa6\xbc\x62\x6f\x1e\x97\xaa\x7e\x14\x41\x55\xea\xf6\x31\xae\x4b\x5d\x12\x58\x8d\x9f\x36\x17\x3b\x7f\x9c\x63\x59\x8c\x3e\x86\x96\x37\xde\xe9\x70\x7e\x0b\x23\xd7\x9c\x29\x97\x9c\xd8\x73\xf8\x1e\x42\x71\x4d\x71\x4e\x89\x6c\x4f\xd0\xe0\xa5\xf9\x35\x8e\xc1\x9c\xf5\xdd\xfb\x32\xc6\xc6\x3a\xde\x5b\xaa\xc4\x55\x01\xfe\x8c\xec\xf7\xc8\x51\xb1\x13\x25\xd1\xb5\x5c\x45\xe0\x8f\x21\xe1\x4c\x04\xb6\x6a\xf8\x14\x96\xd5\x8b\xfb\x5d\xe0\xd1\xcc\xce\xa1\xad\x18\x3b\xd5\x33\x53\xbc\x74\xc4\x6a\x9f\xb9\x53\x7c\xbc\x15\x38\xb4\xcf\xba\x0d\x58\x7f\x14\x4f\xdc\x7c\xac\xa9\x48\x0b\xc8\x67\xe0\xd4\x06\xdc\x07\xb6\xc2\x01\xa0\x21\xe5\x92\xf8\x93\x6c\x25\x4a\xb6\x2c\x72\x0a\xed\x02\x19\x55\x36\x2b\x16\xd9\xf2\xd6\xb5\x88\xd9\x5f\xd1\x74\x70\xc7\x1c\xa3\x9d\xdd\x41\x96\x10\x3f\x9e\xed\x5e\x3c\x81\x0d\x50\x6e\x6e\x40\x2f\x64\x82\x97\x37\x01\x42\xb0\x25\xca\x5b\x9c\x77\x65\xde\x13\x79\xf3\x60\xcc\x9e\x3d\xdd\xbd\x88\xf3\x13\x45\xc0\x2e\x7c\xb4\x8c\xc1\xc0\xb1\xe8\x52\xe2\x18\x18\xfb\x3b\xc3\xf1\xf6\xc6\xfb\x93\xb7\xa8\xe1\xe8\x2c\x0a\x58\x51\x40\xea\xc6\x4e\xbe\xe2\x8e\x34\xc6\x89\xed\xd7\xe0\xe6\x1f\xec\xd9\x38\x18\x96\xae\xe6\x01\x69\x63\x5f\xd0\x68\x76\xa2\x28\xd9\x6f\x1c\x58\xbf\xbd\x7b\xaf\x6b\x9a\x65\x68\x8e\x37\x2f\xde\xff\x4a\x27\xf6\xbd\x1c\x28\xef\xbc\x7b\x8e\x29\x46\xa7\x3c\x47\x7f\xce\x82\xe8\xe3\x19\x06\x7e\x00\x51\x59\xb1\x1f\x40\xd0\x40\x59\x6a\x8e\x95\x73\x36\x59\x86\xee\x56\x06\xa5\xc0\x8b\xbf\x84\xbf\xf6\x5c\x8f\x96\xea\xad\x55\x43\x87\x69\x4d\xdd\xaf\xeb\xe0\x60\x93\x38\x27\x60\xb2\x86\x0d\x99\xc5\x7d\xdd\xcb\xfa\xa0\x78\xd1\xd5\x62\xb0\x8c\xd8\xe4\xb3\xb5\x04\x87\x64\xb6\x3d\xf1\x96\x4d\x49\x83\x8e\x25\x43\x2f\x48\xb9\xbc\xba\xc6\xd5\x13\xc4\x0b\x89\xd1\xac\x98\x5e\xd3\xbf\xac\x49\x93\x66\x37\x76\xbe\xa7\x84\xbd\x8b\x56\x69\xbd\x5c\xb2\x4f\x51\x59\xe9\xd1\xee\x7d\x61\xbb\xdf\x55\xbe\x11\xff\xa2\xd0\x3b\xcb\xf8\xae\x18\xbe\x53\xdc\x45\xc2\x4c\xa0\xdd\x15\x4b\x12\x4a\x66\xe9\x5b\x12\xd1\x2a\x5c\xe0\x85\x83\xa4\xcc\x4b\xee\xb5\x93\xbb\x9e\xc0\x60\xcd\x4a\xef\x6c\xbc\x40\xba\x9b\x92\x6c\x95\x44\xbf\x77\xec\xc3\x2c\xc6\x06\x4e\x20\x71\xa2\xd8\xdc\x88\x3f\x3a\x3b\x00\x40\x94\x93\x6b\x35\x78\x13\x52\x6e\x1b\x60\x53\x3e\x0a\x50\xcf\x2a\xf8\x51\xe0\x10\x26\xf7\x6c\x57\x34\x2c\x8e\x98\x0f\x62\xe8\x7e\x36\x6c\x13\x74\x4d\x6b\xd7\x1b\x61\x0b\x18\x3e\x08\xae\x72\x62\xf6\x84\x79\x31\xcb\x7c\xa6\xa5\xdb\xe6\xce\x4e\x4e\xc9\xf2\x4a\x47\xf8\xc2\x11\x0f\x03\x91\xf5\x03\x47\xe1\xf8\xac\x43\xaf\xc3\x61\x9e\x9d\x40\x28\xd7\x33\xd1\x22\x5d\x90\x19\x41\xb2\x73\x3b\x82\xf0\x36\x04\x00\x99\xa3\xcd\x90\x85\x29\xb8\x97\x03\x5e\x47\x94\xa8\x73\x0a\x25\x86\x97\x07\x08\xf9\xde\x33\x8d\x02\x2a\x8f\xee\xbe\x42\x0f\xf5\xd0\xec\x33\x3e\xf1\xf9\x82\xa9\xf7\xd9\x53\x04\x9d\xc2\xa8\x94\xc7\x57\xed\x04\x14\xc7\xd7\xa8\xd4\x84\x3f\x2c\x7d\x4d\xb1\xca\x9a\xdc\x4e\xcc\x28\xf5\xb3\x43\x08\xa8\x3c\x74\x88\xcc\x36\x24\x91\x6b\x11\x34\x5b\x09\xe4\x96\xcd\xe3\x44\x28\x7c\x51\x94\x29\x21\xcc\xf9\x73\x99\x5a\xec\x6b\x46\x04\xdf\xef\x78\x0e\xc8\x84\xb2\x7a\xd0\xed\xc7\x7f\xba\xba\x7c\x77\x92\x7e\x79\xb2\xdf\xef\x9f\x70\xf6\x27\x7d\xb3\x61\xaf\xac\x9c\x4f\xe4\xfc\x8f\x8b\xb7\x27\x69\xd1\x2d\xbf\x9f\x91\xf4\x8e\xa9\xe1\xc5\x5e\x75\x56\x81\x92\xcb\x64\xc9\x9a\xdd\x3f\x3e\x65\x76\x72\x74\x53\xaf\x35\x0a\x0f\x72\x86\x4c\x9b\x87\xdd\x8c\x87\x4a\x05\x62\x44\xf4\x12\x63\x41\xba\x12\x8e\x6e\x23\xe0\x13\x80\x55\x1b\xbe\x8f\x8c\x0e\x11\x6e\x10\xdf\xf2\x66\x7f\xbf\xc9\x85\x4e\x8d\xa3\x51\xef\x14\x65\x45\xfe\xd3\xb0\x24\x6c\x1a\xe1\x16\x97\xe7\xe9\x9f\x58\xd1\x63\x94\x0a\x15\x70\x92\x51\x01\x80\x43\x5a\xc2\x0c\x4b\xf5\x18\x7a\x31\x4c\xf0\xdb\x77\xe7\x45\x07\xbf\xd5\x29\xda\x90\x96\xbb\xb6\xf9\xd1\xb4\x89\x4a\xeb\x1a\x15\xd6\x08\xf7\x16\x1f\x94\x88\x9a\x07\x73\x80\xd7\xa5\xfd\x70\x1e\x0c\x97\x24\x9d\x64\x9e\xdd\xeb\x24\x1b\x71\x7c\x05\xfc\xda\x3c\x53\x09\x62\x24\xd1\x05\x35\xa8\x64\x37\xaa\x41\x3c\xda\xe6\xda\x4b\x3b\x50\x02\x2f\xb7\x73\x17\x17\x2f\x41\x46\x35\x60\x20\x31\xc9\x30\x42\xda\x0d\x89\x79\xf3\x70\x86\xf3\x62\x16\x39\x32\x5e\x31\x08\xdc\x17\x79\xdb\xdf\xb6\xc8\x47\xce\x9b\xa1\x98\x21\xa5\x9a\x73\x92\x38\x51\x0d\x12\x87\xd7\x8b\x0d\x92\x59\xb3\x90\x9b\x0f\xcf\x24\x14\x62\x6b\xb7\xa9\x0f\xe6\xdf\x7a\x8e\x2f\x3d\x38\x12\xf6\xcc\x83\x69\xa7\x3c\x64\x20\xc1\xd7\xf3\xb8\xb8\xbf\x06\x57\x08\xa8\x18\x50\x1d\x52\x81\x61\xe7\x97\x50\xd4\x8b\xac\x32\x13\xcd\x9b\x70\x91\x74\x50\x43\x67\xce\x73\x57\xc3\x11\x67\xce\x38\x6b\xe8\xd0\x19\x64\xfd\x06\x87\xce\x18\x49\x63\x77\x4d\xdf\xd5\x6f\xf0\xd8\x9c\xea\x74\x60\x80\x50\x32\x9e\x42\xfc\x44\x86\x29\x43\x44\x1e\xf6\xcd\x5b\x22\x42\xb3\x83\xe8\x06\x45\x0b\x0b\xce\x40\xe1\xfb\x16\x1d\x73\xaa\x25\x1e\x25\x01\x72\xbf\x66\x96\xc8\xcb\x9b\x9b\xd9\xa2\xa9\xf7\x2d\x7b\x8c\xe2\x92\x30\xde\xd4\xe6\xef\xf4\x0a\xdf\x02\xc2\x26\x57\x10\x85\x04\x24\x52\x36\x61\x29\x52\x02\x12\xc9\x4b\xdb\xe8\x92\xa6\x73\x4a\xc1\xbd\x48\x7c\x67\x1a\x1f\xf4\x90\x94\x99\x64\x21\x76\xbe\x9f\x73\x08\x9e\xae\x30\x91\xb0\x2a\x8e\x4c\x57\x1c\xa3\x60\x1c\x34\x84\x9b\xdf\x1c\xf6\x44\xf4\xe8\x0d\xe4\x30\xef\x42\x07\xc2\x32\x38\x02\x23\x62\x28\x21\x68\x79\x90\xd0\x03\x8f\x20\x0c\x97\x1e\x42\x11\x84\x49\xff\xf3\x9b\x77\xf2\x89\x6d\x75\x3d\x88\x84\x7d\xf5\x97\xec\xe0\x64\x9b\xf5\xb3\xa9\x4d\x7b\x4b\x13\xe7\x07\xd1\x4f\xed\xd6\x56\x7c\x39\x88\xbc\xc9\x6e\x60\xab\xe4\x7f\x17\x4b\xc2\x9c\xcf\xf6\xbe\x29\x9e\x0c\xb3\x11\x72\x04\xd5\x57\x08\xb8\x78\xb5\x35\xf2\x9f\x8b\xcb\xd8\xae\x18\xe0\xf0\x61\xee\x31\x62\x5b\xff\x44\x77\x0f\x69\xa1\x2d\x59\x01\x57\x02\x1d\x54\x08\xea\xf0\x77\x6b\x80\x76\x70\x8f\xa9\x41\x74\xd9\xca\xf9\xad\x66\x2b\xd9\xb3\xf1\x69\x10\xed\xed\x30\x64\x94\xc7\x5f\xb0\x61\x26\x05\xef\xda\x41\xe9\xb8\x29\x70\x19\x7a\x8c\x50\x24\xbb\x8a\xe0\x3c\x5b\xbb\x9e\x0d\x07\xc2\xed\x1d\x29\xce\x52\x7c\x3b\x28\x93\x54\x98\x5c\xe6\xdb\x3c\x10\x56\x84\x80\xc2\x65\xe5\x22\x6b\x6e\xf9\xea\x30\xec\x03\x5a\x01\xfb\x46\x0f\xb0\xf1\x7f\x38\x62\x7a\x65\xdd\x7b\x09\x8d\x2a\x8c\x77\xaa\x91\x1b\x3a\x93\x31\x53\x97\x81\xa5\x2b\x39\x2c\xf9\x56\x42\x72\xd7\xec\x90\x32\xc6\x0e\xdc\x94\xf6\x64\x38\x6e\x01\xbc\x43\xf4\x5f\x8a\xff\xf3\xbf\xfe\x37\xb1\xa7\x5d\x4d\xab\x25\x8e\x16\xe8\xa9\x76\x3f\xee\xe6\xa7\xe6\x2f\x18\x7c\x02\x1e\x1d\x34\x44\xd0\x9f\xaa\xb7\x3e\x85\x46\x34\xca\xb7\x8f\x19\x7d\x5f\xb1\x8d\x2a\x26\x72\x68\x3b\x9e\xcc\x61\x1f\x1f\x96\x61\x44\x35\xd7\x35\xc2\x9d\xaa\xb5\xc1\xc5\xa0\xc9\x59\x35\x25\xba\xe9\x25\x25\xf9\x44\x3a\xf5\x67\x7f\xf7\x82\x1b\x88\xe8\xde\x05\xa8\x38\x1e\xc6\x10\xf6\x8a\xc9\x6f\x7c\xd5\xaa\xa8\x8c\x72\xd1\x0b\xb6\xa4\xcc\x1b\x55\xce\x42\xcb\x49\x19\x57\x48\x58\xd1\xa3\xd6\x8e\xcb\xe8\x1d\x40\x38\x90\x32\x71\x66\x29\x3c\x87\x43\x1a\xa3\x6e\x4a\xc8\x19\x6f\xdd\x8e\x89\xee\x6c\x86\xa7\x95\xd9\x7f\x4c\x0c\xcc\x13\xdd\x27\x60\xef\x1f\x0e\xf0\x31\x7c\xbe\xcf\x96\xc9\x4f\x2c\xbc\x6f\x10\x41\xf3\x1a\x11\xb8\x62\x02\xfe\x4d\xfc\x9f\xe0\x60\xaf\x1a\x29\x38\x56\x43\x1a\x3f\x38\x3c\xdc\x44\x17\xa5\x79\x1f\x30\x5c\x2a\x10\xdd\x4c\xc6\x85\x03\x51\x13\x5b\x44\xa3\xab\x26\x30\x32\x88\xbd\x0f\x3a\xf2\xa4\x7d\xb4\x81\xd5\x4e\x4f\xa6\x71\x59\xc4\xe5\xd4\x57\x40\x49\x06\x17\x1d\xf0\x8d\x40\x15\xdf\xf1\x67\x58\x76\xd5\x04\x53\x66\x2d\xfb\x47\x3e\x1b\x8f\x57\xb6\xa0\xc9\xf3\x93\xc0\xb3\x8f\x55\xd9\xb6\x81\x90\x80\x3c\x3e\x3a\xdd\x90\x82\xb0\x89\x94\x19\x14\xc4\xa2\xdc\x4f\x47\x9c\x51\xc7\x97\x82\xfc\x7e\x77\xd4\x71\x19\xf7\x3b\xa4\xfe\xa3\x5b\x17\xd3\x07\x7e\x5d\xf2\xf8\xe4\xaf\x4b\x9a\x3a\x02\xfc\xef\xd8\x48\x20\x92\xd2\x66\x8c\xe6\xf6\xd1\x9d\x04\xcd\xe3\x0c\xd1\xc7\x2f\x63\xf9\xfd\xfb\x09\xd1\x15\x18\xdf\x20\xed\xc5\x3d\x0e\x04\xbd\xa8\x55\x0e\x21\x6c\xb0\x8a\x8f\x46\x1c\xd3\xde\xbc\xe0\x1a\xf1\x8c\xa1\x8e\x37\x3a\x09\x81\x9e\xde\x9b\x25\x3e\x17\x11\x36\xd3\x99\xa7\xfc\x49\x02\xb3\xe2\xc8\x89\x08\x31\xe7\x7d\xfd\x58\xc4\x11\xfb\xf0\x7d\xe7\x23\x86\xad\x64\x5e\xe3\x7c\x72\xc2\x46\xde\x9b\x23\x5c\x66\xe3\x3d\x98\x7f\xcf\x99\x89\x69\x1b\x2c\xeb\x80\x7b\x33\xc5\x60\x51\x36\xfc\x79\x83\x02\xeb\x10\x86\x2f\x51\x32\x3c\xc3\xf5\x98\xeb\x71\x0b\x72\x37\x6c\x34\x7b\x3c\x08\xf7\x9e\xe9\x7d\x00\x76\xda\x6e\x10\xef\x59\x1f\x1c\x2d\x76\x72\xe2\xc1\x03\xc9\x37\xc4\x9d\xc9\x94\x61\xfe\xb8\x8e\xf8\xa4\x88\xc5\x3a\x33\xf8\x05\x02\x2e\x9e\xb0\xb6\x2c\xe0\xc9\x7f\x26\x21\x97\xa2\xba\x96\x5e\x6b\xe3\x1b\x21\x57\x96\x3c\x87\x25\xd4\xc7\xea\xaa\xa7\xb8\x66\x67\x68\x1a\x94\xc3\x8e\x87\x30\x73\x67\xf8\x79\x98\x04\x50\xc5\x4d\x6d\x15\x24\xe4\x3f\x0e\xcb\x92\xeb\x1b\x75\xf5\x7c\x57\xef\x13\x59\x3a\x67\x7c\xcb\x46\x2a\x57\x6c\x68\x4c\xdc\x24\x89\x63\x19\x45\x8f\xb6\xa1\x0f\x24\xa6\xcb\x49\xb6\x71\xfa\xc0\xbb\x1f\x2b\x87\xf3\xeb\xb7\x1b\x73\x58\x00\x85\xd4\x00\x87\x6c\x96\xeb\x43\xe2\x98\x69\xa9\x10\x60\x7d\xb5\x22\x89\x46\xf5\x86\x10\xdf\x52\x31\xb7\x73\x54\xdd\x89\xd9\xb7\x70\x80\x9a\x9d\xb6\x85\x1f\x6e\xad\x1d\x72\xc3\xac\x6b\x87\xbb\xbe\xd8\xb7\x23\x84\xf8\x96\x76\x70\x2d\x4f\xe1\x11\xc4\x83\x78\x5f\x7b\x48\x39\xd4\xf3\xe0\xe1\xee\x49\x3b\x6c\xa2\x77\x8f\xbf\x0e\xd6\x6b\xec\x40\xe6\x03\xf9\x83\xcd\x9b\xe3\x85\x53\x52\x64\x23\x6c\x42\x44\x90\x8d\xe2\xc9\x63\x81\x5f\x9f\xe2\x3c\xd2\xc8\xe9\x40\x83\x2d\x60\x0f\x36\xb5\x0a\x69\xbb\xbc\x48\x07\x19\xeb\x42\xe5\x3a\x49\xfc\xfa\xc2\x2b\x70\x76\xa0\x4f\xe4\xbb\x70\xc9\x80\x80\x67\x23\x99\xcb\xf5\x61\x6e\x8e\x33\xab\x0b\x6a\x1d\x17\xe6\x58\x35\xa0\x1c\x8b\x1e\xc3\x19\xef\x0c\xa5\xb3\xc0\xd8\xca\x4c\xf9\xc4\x64\x56\xd9\x6d\x35\xa8\x6d\x76\x88\x36\x80\xf9\x20\x23\x6b\x64\xd1\xac\x39\xbe\x62\x8f\x9b\xe2\xd7\x6a\xb9\x93\xcb\x11\xcc\x51\xa3\xcc\x2c\x9c\xea\x63\x02\xf1\x64\xb7\x6a\x32\xb6\x85\xdb\x58\x33\xb3\x08\x48\x01\x05\xfe\xd1\xf5\xd2\xdd\x6f\xee\xb9\x01\x76\xd8\xa8\xa0\x47\xf7\x31\x85\xdf\xd1\x00\xb0\x8d\xfb\x5b\x00\xb6\x20\x37\x8b\x51\x33\x02\x16\x70\x5f\x43\xf4\x62\xf2\x6f\x6f\x08\xf8\xc6\x37\x36\xe4\xc4\x5a\xa1\xf7\xd9\xe4\xf9\xe4\xfc\xbf\xaf\x7d\x03\x75\x07\xc4\x19\x5d\x98\x34\x20\xf8\xe8\x91\x18\x47\xf4\x81\x2f\x84\x15\x8b\x0d\x30\xf5\xcd\xd0\xe5\xcc\x17\x55\xd1\x10\x42\x95\xad\xba\xd0\x7f\x23\x3e\xba\xc4\x1e\x05\x5d\x73\x50\x91\x84\x3b\x17\x9f\x9c\xf2\xf7\x42\x88\x12\x86\xbd\x4c\xb9\x44\xeb\x13\xd0\xfe\xf9\xc8\x63\x54\x72\x69\xbe\x6c\x4f\xb7\xd1\x9b\x45\xe3\xfb\x8c\xee\xbd\x4b\x2a\xbe\x43\x6b\x78\x99\x5a\x2b\x67\x5f\x57\x26\xcb\xd9\xbd\xe4\x89\x77\xde\xb8\x3a\x10\x0e\xb6\x78\x8a\x61\xc9\xd7\x88\xd4\x55\x29\xfb\xfe\x17\x12\xe2\x9b\x64\xd8\x14\xa3\x76\x18\x3e\x92\xed\x7d\xb3\x7d\xef\x60\x5c\x64\x1b\x93\x0a\x02\x12\x0e\xd2\x83\xbb\x8d\xe0\x6f\xd9\xd8\x6d\x4d\xbe\x04\xb4\x04\x26\xcc\x3e\x68\x99\xb6\x03\x85\xf6\xed\x54\x8d\x73\xde\xa8\x4b\x75\x9b\xd2\x3d\x21\xc3\x4c\x82\x2f\xf0\xc8\xf9\x02\x0f\x79\xa5\xe0\x24\x88\x88\x70\x1e\x26\xec\xdc\x55\x09\x51\x74\xbc\xf0\xf9\x78\x1c\x13\x8b\xa3\xf8\x6c\x58\x14\x91\x2d\x47\xb5\x98\x01\x3b\x8c\x13\x5f\xba\x30\xc6\x9c\xd5\xa3\xd2\xe3\x1b\x04\xc2\x24\xb9\x16\x2c\x8a\xd2\x9b\xd0\xe3\x9e\x88\x4d\x35\x8c\xdb\xd4\x2b\xbe\xd2\x0c\x46\xc8\xb8\x7b\x2a\x3b\xc7\x65\x9a\x4b\x5f\x54\x04\x9c\xc2\xc3\x18\xec\x6b\x75\x59\x1b\xe7\xc6\x14\x0c\x23\xf4\x44\xf9\x08\x90\x74\xea\x6c\xb9\x46\xff\x67\x53\x84\x64\xaa\xb1\x23\x26\x7d\x03\x69\x02\x52\x6e\xab\x4f\xed\x6e\xfa\x49\x18\x7e\x04\x07\x4f\x01\x04\xa9\xec\x22\x5b\xcd\xf5\x92\x85\x5a\xcf\x94\xb2\xbf\xac\xbb\x50\x21\xbd\xc4\x8c\x6b\xef\xcd\x14\xac\x62\x7c\xbe\x43\x2f\x71\xd0\x9c\x22\x71\xdc\xb3\x9c\xf9\x92\x75\x61\x54\xcf\x85\xcc\xeb\x6a\xad\x97\x13\x58\xba\x31\xd7\x06\x47\x24\xdf\x54\xc6\xa0\x95\x1e\xc2\x15\xf3\xfb\x9b\x0a\xeb\x19\x1f\x74\x83\x45\x2e\x6a\x64\xc4\xd6\x0c\xe4\x2b\x25\x0c\x9a\x38\x59\xc4\xef\x68\x24\x3f\x9f\xb1\x5a\xba\xe7\x06\xce\xf9\xa6\x9a\x66\xc1\x47\xea\x78\x0d\x2b\xe4\x19\x98\xba\x8a\x2d\x70\xd3\xd9\xef\x6b\x19\x1a\xc4\x3a\xf7\x54\xf1\xc7\xda\xd6\x14\xed\xa1\x5a\xce\xf1\xf6\x43\xbb\xd6\x8d\xca\x0f\x85\xd8\xca\x1f\xcd\x28\xee\x69\xa6\xe7\x9a\x0b\x6c\xe9\xb5\x8f\xe4\x2a\xaf\xc7\x4b\x8a\xc7\xdb\x13\xb4\xc4\x3d\x01\x4f\x44\x6e\x13\xe0\x48\x3c\xeb\xbe\xbf\xb7\xa2\x41\x5f\x02\x86\x18\xe0\xb6\x41\x53\xba\xe2\x9b\x7a\x10\x6c\x92\x87\xdd\x60\x32\xd0\xd9\x0f\x5e\x11\xde\x59\xc9\x88\x7b\xcc\x47\xb9\xf9\xee\x21\xbe\xd2\x5b\xdd\x7d\x74\x41\xb3\xb7\x3d\xd4\x78\x74\xa4\x43\x61\xbd\xf7\x8c\xd0\xa3\xa8\x15\x5f\xef\x63\xb8\x08\xc9\xab\x45\xfd\x0e\x4f\xc7\xb9\xe7\x8a\x3e\xe2\x3b\x64\x0a\x72\x8d\xd8\x7c\x55\x37\x35\x0d\x8f\x9c\x1a\xd4\xab\xc5\x5e\x59\x5c\x3b\x91\x01\x26\xf0\xc3\xbc\xd7\x93\x9e\x96\xe7\x02\xd1\x24\x3f\xf0\xb1\x4f\x9f\xab\xab\xbb\x6c\x63\x79\xd8\x02\xb9\x54\xbb\xf5\x35\x27\x58\xae\x53\x4b\x08\x72\x6a\x9e\x7a\xc1\xfe\x9e\xc8\xa2\xc0\x97\x1a\x13\xc0\x62\x9b\x83\x8f\xe2\x11\xba\xfa\xdd\x9c\xbb\x8a\x53\x5c\x12\x9d\xbe\x45\x74\x7a\xcd\xd1\xe3\x1a\xac\x55\x2e\xdb\xa0\x51\xc7\xf2\xdd\x34\xc5\x28\xcf\x4b\x3e\x76\x3c\x84\x37\xcc\xad\x8b\x6c\x37\xc2\xdb\x6b\x8a\x1c\x61\x0d\x90\x63\x04\x00\xf6\x38\x16\xc2\x5c\x65\x0e\xc5\x2a\xcc\xf1\x86\xa2\x8e\x41\xc3\x03\x60\x08\x8f\x47\xdd\x8e\xe4\xd0\x35\x7b\xd8\x2a\xdd\xb3\x19\xb5\xaa\x5e\xfc\x0d\x4f\xa0\x29\xf4\xa5\x7c\x06\x50\x8b\xba\xee\xf8\xa5\x89\x1d\x8b\x5b\xcb\x5b\x87\xa6\x9f\x2d\x9e\xc5\xad\xe5\xed\x08\x53\x02\x3d\x46\x95\x40\x1f\xc7\xd5\x96\xef\x3c\xa0\xba\x9a\x7e\xd9\xf5\x34\x41\x5d\x85\x17\x57\x7c\x7f\xc2\x95\x4b\x18\xd5\x38\xca\x19\x52\xe8\x30\xf3\x54\xcd\x4b\x12\x22\x8a\xc9\xaa\xcf\x38\xe5\xde\xba\x47\x79\xc3\xca\x47\xd9\xa7\x66\x0a\x6e\xce\x64\xa3\xf3\xa2\x5f\xde\x16\x1d\xfb\x8c\xaf\xe7\xd8\x61\x0e\xcb\x7a\x6f\x60\xe9\xcf\x00\x4b\x5f\x13\x58\x7a\x2d\xef\x98\x8d\x4b\xa5\x45\x67\x5b\x74\x19\x3c\x05\x82\x52\x5e\x9d\xd1\x08\x70\x74\x9e\x4d\xe5\x82\x75\x66\xae\x52\xb6\xce\x42\x16\x7c\x82\x12\xf4\x85\x35\x11\xbc\x4f\x1d\xc8\x54\x69\xac\x06\xc8\xea\xb7\x3c\x2c\xe5\x5a\x48\x56\x0c\xa8\x0d\x1f\x24\x26\x80\xc5\xed\x5d\x04\x6b\x3c\x12\x9b\xe2\xb8\xc6\x8b\xc0\xaf\x63\x46\x29\x1c\xcc\x03\x0b\xe3\x22\xb8\xf7\x59\xdf\x4e\x02\xee\x32\x99\x4c\x47\x21\xad\x7a\x03\xb4\x9a\x87\x70\x5a\x69\x2b\xa8\x14\xb6\x22\x9a\x9a\xf8\x16\xeb\xcd\x59\xf6\x3a\x2b\x5c\x8b\xed\xde\x2c\xbc\xd1\x2a\xb0\x5f\x7d\x38\x48\xc1\x44\x7a\x85\xcc\x2a\x31\x26\x6f\xe1\x52\x6c\x0b\x5b\x1a\x2c\x51\x6a\xd3\xd3\xb8\xe8\x15\x23\x8d\xb3\xb3\x53\xee\x94\xaf\xc6\x87\x87\x2e\xb5\x44\x08\xa6\xe6\xb2\x12\x3f\x10\xa1\x9e\x2b\x02\x28\x77\x87\xc8\x4e\xd2\x26\xcc\x0c\xa5\xc1\x3d\xb1\x19\x15\xf0\x16\xfa\x44\xd0\xb7\xa3\x17\xcc\xda\xdd\x4a\xdf\x78\xc7\xac\xef\x4d\x80\x63\x6c\x74\xc7\xd8\x2d\xdb\x79\x88\xce\xe1\xd5\x4c\xd9\x00\xbd\x0c\xae\x18\x8e\x40\xb1\xf3\x1d\x3e\x89\x14\x6c\x3f\x1a\xca\xb1\xd1\x87\xa7\xd8\xd4\x91\x6f\x54\x42\x90\x27\x78\xbf\x8e\xdd\xa1\xe5\xac\xd1\x14\x8a\xbc\x75\xd0\x30\xe4\xee\xea\x05\xf4\xbd\x5b\x4b\x31\x2e\xa6\xaf\x10\xff\x7f\x72\x8b\x7a\xd8\x00\x7f\x97\xfa\x91\xfa\xff\x43\xee\x52\x1f\x5a\x66\xdd\x65\xea\xb8\x2c\x7a\x86\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\x87\xf5\x05\xe7\x39\xa2\xda\x24\xc7\xf8\xca\xaf\xb8\x09\x12\x33\xde\x2d\x92\x78\xb5\x46\xa4\x7a\x6d\x4d\xa1\xd6\xa3\x19\x4c\x12\xba\x45\x63\x71\xa3\xa7\x9a\x79\x52\xeb\xd4\x1e\x34\x39\x9e\xdc\x51\xab\x25\x93\x9c\xf4\xb5\xa3\x22\x93\xcc\x44\x01\x83\xae\x48\x4c\x78\x3b\x82\xc4\xc8\xe5\xc1\x78\x4d\x43\x42\x1a\x3f\xf6\xc2\x08\x5a\xac\xc5\xc4\x55\x07\x85\x02\x68\x92\x57\x05\x6d\x19\xfa\xa7\x4a\x6c\xf8\x32\xb3\xc4\xe8\x23\xb7\x78\xdf\x56\x62\x16\xf0\x1f\x82\x97\x1b\x1b\x9f\xce\xdf\x59\xb5\x5d\xd7\x94\x8b\xbe\x9b\xbe\x16\xdb\xa5\x8e\xa0\x6d\xdb\x9f\x69\x37\xfd\x0a\x6c\xdb\x5b\xc1\x57\xfd\xd7\xca\x1d\x3c\x59\x34\x80\x93\x3b\x20\x52\x77\x3b\xcd\x4b\x7c\x6b\xe2\x96\x79\xe4\xbc\xe5\x57\xd8\x2f\x88\xc5\xe4\xe9\xd5\xa9\xa6\xe0\x29\x5b\xb5\x8e\xe0\xc5\xdb\xa3\xa3\xc0\x90\xa3\xa7\x71\x7d\x92\xe2\x15\x49\x01\x72\xf5\x7a\xed\x4e\x6e\x3e\x96\xab\xa5\xaf\xdf\x5e\x51\x70\xd9\x1c\x64\xc3\x48\xc7\x85\x77\x0c\xf4\x01\x59\x7b\x6f\xe4\xf4\xc2\x3d\xd1\x1b\x8c\xb4\x16\xc9\xcf\x7f\xce\x83\x87\xf7\xb5\x70\x6a\x7f\xad\x8f\xdb\xa9\xc1\x54\x69\x95\x1f\x67\x60\xe7\xdf\x5d\x6b\xe5\x04\x47\x91\x07\x64\xaf\xd7\x70\xeb\x08\x8c\x16\xa3\xd8\x72\x8b\x85\xc6\x2d\x4a\x21\xbd\x87\x6b\x65\x54\xc1\x37\x5e\x9a\x1d\x96\x15\x2c\x2a\xf7\xb4\x75\xf2\xac\x61\x7c\x89\x5a\x08\x38\x97\xf9\x67\x77\x25\x46\x05\xbb\x4d\xa6\x71\x86\xe8\xd2\xc4\x28\xd3\xb4\x1b\xc0\x7d\xd7\x25\x8a\x51\xc0\x94\x71\x67\xf3\x56\x65\x3c\x36\x7d\x2b\xec\x7d\xaf\x83\x07\x20\x77\xb2\xb5\x16\x40\xfc\x59\xde\x2e\x0d\x81\xa6\x5f\xa7\x56\x80\x21\x4f\xd1\xe8\xc1\xa3\xc5\xd1\x6b\xc5\x96\xd3\x1e\x5f\xac\x7b\xd1\xb6\xf1\x38\xaa\x9e\x31\xfa\x80\x48\x16\xb4\x0c\x7c\xea\x85\xf0\x20\x49\x2b\xe2\xa4\xb0\x12\xac\x50\xfc\x5c\xea\xbd\xaf\x99\x1b\x82\xd9\xe4\xbe\x9c\xcb\x0d\x5a\x41\x1e\x18\xfc\x97\x70\xe3\x1d\x67\xa2\x76\x8f\x73\x50\xbb\x8f\x80\xcb\x26\xb0\xf1\xf3\x2b\x7c\x09\x0b\x71\x2d\x66\xd7\x32\xa5\x22\xeb\xb0\xc4\x0d\xdf\x92\x09\x71\x90\x2f\x3c\x61\xb8\x17\x66\x27\x49\xc3\xbf\xd0\x1f\x56\xcb\x6f\xeb\x07\x0b\x81\x8f\x0d\x97\x34\x1f\x1b\x3e\xe1\xef\x63\xa7\xde\xd4\x1f\xa7\xfa\x9d\xf9\xc7\xec\x9b\xf2\x80\x06\xa4\x5b\x91\x86\xf9\x00\x0f\x29\x7f\x1f\xe4\x08\xdf\xe3\x8f\x63\x87\x65\xe8\xf3\xbf\x83\x22\x8c\x59\x46\x53\xa6\x5c\x1e\x41\x8c\x7b\x05\x34\xba\x5d\x1d\xe8\x97\xd7\xa4\x75\x59\x89\x9e\xff\x1e\x12\xb3\x67\xb6\x8e\x94\x43\x46\x6b\x0d\x63\x97\xf6\xe8\x5d\x6c\x7d\x8b\x51\x7d\xdb\xdd\xcb\xa3\x3f\x23\xda\xb7\x70\xf2\xd1\xeb\xe1\x6b\xd7\xec\x74\x6e\x59\xe2\xe7\xc9\xc7\xef\x92\x2b\x98\x3d\xf1\x00\x8b\xc0\xe8\x35\x08\x98\x02\xf4\x31\x08\x63\x0c\x72\xc4\x89\xfd\xbb\xe7\x1b\x35\x7f\xcb\x31\x28\x78\x79\xa7\x6f\x61\xef\x76\xed\x8e\x9e\x48\x8c\x32\xc9\xcb\x8c\xee\x19\xb6\x71\x66\x3b\xad\xe7\x06\xd1\x4e\x1f\x4d\x0e\xe2\x6f\x7d\xd1\x53\xe1\xf2\x76\x22\x5f\x44\x48\x9f\xe9\x5b\x7c\xba\xb1\x92\x63\x45\xd0\x86\xd9\x99\xf9\xb9\x1d\x34\x82\x52\x4c\x31\x6e\x94\x6e\xcb\x1d\x2f\xcb\xfa\x76\x14\x0f\x0e\xc5\x60\x6d\xfe\x33\x62\x42\x24\x87\x9c\xf9\x02\xdf\xd3\x0d\x54\xd8\xb1\x14\x18\xa7\x1b\x41\x11\x9d\xd7\x01\x31\xbd\xfe\xe5\xed\xe5\x00\x72\x62\x82\x6a\xca\xc4\x84\x8e\xdf\xc6\x0f\xa7\xaf\x6c\xe5\xb8\x2e\x60\xfb\x66\xba\x07\x02\x79\xb4\x03\x42\x43\x7e\x67\x16\xc4\x33\x59\x90\x52\x5b\x9e\xed\x64\xc6\x28\x9d\xc9\x77\x0c\x14\xdc\xce\x2a\x50\x76\x39\xeb\xa8\xd6\x2a\xac\xb3\x92\x6d\x08\xcf\x0f\xc4\x45\x20\xe0\x07\xe2\x6a\x3b\xd9\x3c\x83\x26\x95\xf5\xae\xcc\x55\x70\x14\xf8\xf7\x1a\x65\xa0\x06\xe2\x4b\x36\x08\x2d\xda\x35\x93\x08\xb7\x74\xd2\xdb\x19\xbe\xa2\xa1\xd3\x89\xc8\xf3\x45\x60\xfd\x34\xe4\xb7\x25\x24\x87\x01\xaf\x96\x0e\x31\x66\x50\x7a\x75\xe6\xef\xad\x85\xed\x69\xd0\x99\x4d\x79\x53\x38\x4b\x95\xf6\xe6\x2d\xc5\x45\xc0\x6b\x7e\x9d\xd3\x0e\x44\xca\xfb\x9c\xfc\x2c\xfe\xa0\x13\x61\x51\xda\x93\x51\x49\xbb\x12\xd6\xc3\x00\x2f\x12\x31\x8d\x71\x83\x56\xbe\x1d\x80\x2b\xe3\x1e\xb2\x5b\x7b\xdf\x2a\x98\x21\xfe\xb1\x19\xbf\x3e\xbb\xda\x79\x5d\x9e\xac\x99\xa1\x74\xe5\x62\x18\xac\x5c\xe6\x2d\x30\x5b\x36\x72\xb7\x0a\xff\x5d\xf3\x3e\xae\x4b\x09\xe7\x9e\xc5\xb5\x44\x7b\x79\x2f\x87\x6d\x34\xe8\xe1\xbd\x77\x81\xa0\xc9\x12\x26\x6e\x8b\x8b\x01\x8a\x2f\xc5\xb2\x0f\xb6\x15\x7e\x91\x6f\xb5\xe3\xf9\x62\x6a\x73\x0e\xec\x2b\xdc\x67\xf7\x5e\x62\x02\x98\xa9\x0b\x96\xac\xe9\x70\x71\x34\x57\xc7\xa3\xf5\xbb\xea\xa1\xfe\x30\x94\x79\x5c\x98\x97\x83\x7c\xce\x37\x72\xf6\x62\xe0\x84\x61\xb0\xa1\x14\x12\xc6\xcd\x7f\x88\xe4\x34\x97\x36\xd1\x70\x4b\xaa\x77\xcc\xb2\x76\xb3\x00\x16\xa2\x78\xf0\x72\x80\xb4\x41\xd2\xbf\xe6\x62\x95\x7c\x12\x9f\x86\xcf\x83\xcb\xa5\xcd\xfc\x18\xb8\xd1\x44\xe7\x7f\x1e\xca\x0d\x80\x72\x48\xca\x32\xb1\x07\x91\xdc\x60\x18\xc0\x3e\x6d\x9b\xe5\xd3\x87\xe1\x3d\x7b\x7a\x21\x9f\x02\xd8\x25\x7c\x7f\xd0\x4b\x05\xb5\x1d\x76\x5b\xde\xaf\x7a\x1f\xa1\x7c\x87\xe5\x8a\xd9\x43\x8a\x6e\xff\x29\xb8\xc5\x6f\x78\xe1\x5e\x70\x15\x60\x5d\xfd\x9e\x82\xdc\x1d\x1e\xda\x3f\xfb\x1e\xe0\x05\x47\xa6\x19\x21\x72\x76\x7a\xf8\xfa\x88\xa2\x0a\x27\xaf\xf9\x24\x8e\xc7\x13\x7d\xdc\x8f\xa8\xa8\xa8\x11\xa2\xf4\x5a\xb8\x1f\xe7\xfe\x96\x5a\x1c\xc2\x93\x84\xb2\xd5\x7b\xb1\xe4\x69\x97\x1f\xdd\x0d\xb5\xc9\xa7\xae\xae\x37\x9f\x93\x6c\xc5\x7d\xa2\xdf\x04\x57\x40\x8b\xbf\x2e\x7c\xd2\x28\x98\xc8\x27\x87\x7e\xe0\x82\x7f\x20\x2d\x95\x18\x08\x2e\x67\xfb\x61\x8b\x08\x79\x1c\x1c\x11\x6b\x44\xf0\xdd\xe1\xf8\xcc\xf1\x99\x67\x07\x7c\xed\xf1\xb5\x2f\x8a\x5b\xc9\x0c\x0e\x43\xd9\x49\xeb\x5b\x23\xe6\x80\x6f\xbe\x6d\x8c\x3f\xa5\x1e\xbd\x7b\xd0\x3e\x70\x25\x9c\xbc\x45\x8e\x78\xfb\xa0\x78\x79\xa5\xe7\xb9\x7f\xb0\xe7\x21\xef\x8f\x1d\x34\x0a\x21\x8a\xe1\xea\x35\x4a\x82\x0f\xc1\x26\x48\x97\xd5\x02\x25\x4c\xb1\xdc\x0e\x8d\x94\x20\xc5\x35\xd9\x7e\xee\xdb\xa5\x21\xc4\xfa\x56\x69\x88\xd0\x9b\x37\xf5\x8e\xaf\x87\xfa\xec\x2e\x64\xf7\x17\xfc\x9e\x53\x9a\x5e\x93\x81\x3b\x7b\xf8\x04\x1f\x5e\xcf\xc6\x8b\x0c\x7c\xbe\x6d\xe6\x5e\x02\x2d\xab\x5d\xef\xf4\x27\xbd\x4a\xe1\x51\xa7\x60\xfe\xae\x0d\x71\xda\xe4\xdb\x3e\xe5\x4a\x63\x7e\x62\x7b\x81\x35\x00\x7a\x19\xbf\x6d\xfc\xf8\x5f\xff\x15\xe0\x14\xfc\xb7\x7f\x4b\x2f\x7e\xfe\x3e\x2d\xbe\xf0\xa5\x34\xfc\x3c\xdd\x97\x72\xdb\x6f\x0d\x8a\x3e\x5f\x46\x80\x78\xec\x9f\xdd\xef\xd4\x94\xad\xaf\x9c\xf0\xd7\xff\x0d\x00\x00\xff\xff\x2d\xbe\x66\x0d\xd9\x91\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: 37327, mode: os.FileMode(420), modTime: time.Unix(1439374063, 0)} + info := bindataFileInfo{name: "conf/locale/locale_en-US.ini", size: 37337, mode: os.FileMode(420), modTime: time.Unix(1439452466, 0)} a := &asset{bytes: bytes, info: info} return a, nil } diff --git a/routers/repo/issue.go b/routers/repo/issue.go index 53f5cf5d48..4f3408edda 100644 --- a/routers/repo/issue.go +++ b/routers/repo/issue.go @@ -288,7 +288,7 @@ func NewIssuePost(ctx *middleware.Context, form auth.CreateIssueForm) { } if setting.AttachmentEnabled { - attachments = ctx.QueryStrings("attachments") + attachments = form.Attachments } if ctx.HasError() { @@ -432,8 +432,6 @@ func ViewIssue(ctx *middleware.Context) { } issue.RenderedContent = string(base.RenderMarkdown([]byte(issue.Content), ctx.Repo.RepoLink)) - // Attchments. - // Metas. if err = issue.GetLabels(); err != nil { ctx.Handle(500, "GetLabels", err) @@ -477,29 +475,14 @@ func ViewIssue(ctx *middleware.Context) { } } - // // Get comments. - // comments, err := models.GetIssueComments(issue.ID) - // if err != nil { - // ctx.Handle(500, "GetIssueComments: %v", err) - // return - // } - - // // Get posters. - // for i := range comments { - // u, err := models.GetUserByID(comments[i].PosterId) - // if err != nil { - // ctx.Handle(500, "GetUserById.2: %v", err) - // return - // } - // comments[i].Poster = u - - // if comments[i].Type == models.COMMENT_TYPE_COMMENT { - // comments[i].Content = string(base.RenderMarkdown([]byte(comments[i].Content), ctx.Repo.RepoLink)) - // } - // } + // Render comments. + for i := range issue.Comments { + if issue.Comments[i].Type == models.COMMENT_TYPE_COMMENT { + issue.Comments[i].RenderedContent = string(base.RenderMarkdown([]byte(issue.Comments[i].Content), ctx.Repo.RepoLink)) + } + } ctx.Data["Issue"] = issue - // ctx.Data["Comments"] = comments // ctx.Data["IsIssueOwner"] = ctx.Repo.IsOwner() || (ctx.IsSigned && issue.PosterID == ctx.User.Id) ctx.HTML(200, ISSUE_VIEW) } @@ -713,163 +696,76 @@ func UpdateAssignee(ctx *middleware.Context) { }) } -func Comment(ctx *middleware.Context) { - send := func(status int, data interface{}, err error) { - if err != nil { - log.Error(4, "issue.Comment(?): %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, - }) - } - } - - index := com.StrTo(ctx.Query("issueIndex")).MustInt64() - if index == 0 { - ctx.Error(404) - return - } - - issue, err := models.GetIssueByIndex(ctx.Repo.Repository.ID, index) +func NewComment(ctx *middleware.Context, form auth.CreateCommentForm) { + issue, err := models.GetIssueByIndex(ctx.Repo.Repository.ID, ctx.ParamsInt64(":index")) if err != nil { if models.IsErrIssueNotExist(err) { - send(404, nil, err) + ctx.Handle(404, "GetIssueByIndex", err) } else { - send(200, nil, err) + ctx.Handle(500, "GetIssueByIndex", err) } - return } - // Check if issue owner changes the status of issue. - var newStatus string - if ctx.Repo.IsOwner() || issue.PosterID == ctx.User.Id { - newStatus = ctx.Query("change_status") - } - if len(newStatus) > 0 { - if (strings.Contains(newStatus, "Reopen") && issue.IsClosed) || - (strings.Contains(newStatus, "Close") && !issue.IsClosed) { - issue.IsClosed = !issue.IsClosed - if err = models.UpdateIssue(issue); err != nil { - send(500, nil, err) - return - } else if err = models.UpdateIssueUserPairsByStatus(issue.ID, issue.IsClosed); err != nil { - send(500, nil, err) - return - } - - if err = issue.GetLabels(); err != nil { - send(500, nil, err) - return - } - - for _, label := range issue.Labels { - if issue.IsClosed { - label.NumClosedIssues++ - } else { - label.NumClosedIssues-- - } - - if err = models.UpdateLabel(label); err != nil { - send(500, nil, err) - return - } - } - - // Change open/closed issue counter for the associated milestone - if issue.MilestoneID > 0 { - if err = models.ChangeMilestoneIssueStats(issue); err != nil { - send(500, nil, err) - } - } - - cmtType := models.COMMENT_TYPE_CLOSE - if !issue.IsClosed { - cmtType = models.COMMENT_TYPE_REOPEN - } - - if _, err = models.CreateComment(ctx.User.Id, ctx.Repo.Repository.ID, issue.ID, 0, 0, cmtType, "", nil); err != nil { - send(200, nil, err) - return - } - log.Trace("%s Issue(%d) status changed: %v", ctx.Req.RequestURI, issue.ID, !issue.IsClosed) - } + var attachments []string + if setting.AttachmentEnabled { + attachments = form.Attachments } - var comment *models.Comment + if ctx.HasError() { + ctx.Flash.Error(ctx.Data["ErrorMsg"].(string)) + ctx.Redirect(fmt.Sprintf("%s/issues/%d", ctx.Repo.RepoLink, issue.Index)) + return + } - var ms []string - content := ctx.Query("content") - // Fix #321. Allow empty comments, as long as we have attachments. - if len(content) > 0 || len(ctx.Req.MultipartForm.File["attachments"]) > 0 { - switch ctx.Params(":action") { - case "new": - if comment, err = models.CreateComment(ctx.User.Id, ctx.Repo.Repository.ID, issue.ID, 0, 0, models.COMMENT_TYPE_COMMENT, content, nil); err != nil { - send(500, nil, err) - return - } - - // Update mentions. - ms = base.MentionPattern.FindAllString(issue.Content, -1) - if len(ms) > 0 { - for i := range ms { - ms[i] = ms[i][1:] - } - - if err := models.UpdateMentions(ms, issue.ID); err != nil { - send(500, nil, err) - return - } - } - - log.Trace("%s Comment created: %d", ctx.Req.RequestURI, issue.ID) - default: - ctx.Handle(404, "issue.Comment", err) + // Check if issue owner/poster changes the status of issue. + if (ctx.Repo.IsOwner() || issue.IsPoster(ctx.User.Id)) && + (form.NewStatus == "reopen" || form.NewStatus == "close") { + issue.Repo = ctx.Repo.Repository + if err = issue.ChangeStatus(ctx.User, form.NewStatus == "close"); err != nil { + ctx.Handle(500, "ChangeStatus", err) return } + log.Trace("%s Issue[%d] status changed: %v", ctx.Req.RequestURI, issue.ID, !issue.IsClosed) } - if comment != nil { - // uploadFiles(ctx, issue.ID, comment.Id) - } - - // Notify watchers. - act := &models.Action{ - ActUserID: ctx.User.Id, - ActUserName: ctx.User.LowerName, - ActEmail: ctx.User.Email, - OpType: models.COMMENT_ISSUE, - Content: fmt.Sprintf("%d|%s", issue.Index, strings.Split(content, "\n")[0]), - RepoID: ctx.Repo.Repository.ID, - RepoUserName: ctx.Repo.Owner.LowerName, - RepoName: ctx.Repo.Repository.LowerName, - IsPrivate: ctx.Repo.Repository.IsPrivate, - } - if err = models.NotifyWatchers(act); err != nil { - send(500, nil, err) + // Fix #321: Allow empty comments, as long as we have attachments. + if len(form.Content) == 0 && len(attachments) == 0 { + ctx.Redirect(fmt.Sprintf("%s/issues/%d", ctx.Repo.RepoLink, issue.Index)) return } + comment, err := models.CreateIssueComment(ctx.User, ctx.Repo.Repository, issue, form.Content, attachments) + if err != nil { + ctx.Handle(500, "CreateIssueComment", err) + return + } + + // Update mentions. + mentions := base.MentionPattern.FindAllString(comment.Content, -1) + if len(mentions) > 0 { + for i := range mentions { + mentions[i] = mentions[i][1:] + } + + if err := models.UpdateMentions(mentions, issue.ID); err != nil { + ctx.Handle(500, "UpdateMentions", err) + return + } + } + // Mail watchers and mentions. if setting.Service.EnableNotifyMail { - issue.Content = content + issue.Content = form.Content tos, err := mailer.SendIssueNotifyMail(ctx.User, ctx.Repo.Owner, ctx.Repo.Repository, issue) if err != nil { - send(500, nil, err) + ctx.Handle(500, "SendIssueNotifyMail", err) return } tos = append(tos, ctx.User.LowerName) - newTos := make([]string, 0, len(ms)) - for _, m := range ms { + newTos := make([]string, 0, len(mentions)) + for _, m := range mentions { if com.IsSliceContainsStr(tos, m) { continue } @@ -878,12 +774,13 @@ func Comment(ctx *middleware.Context) { } if err = mailer.SendIssueMentionMail(ctx.Render, ctx.User, ctx.Repo.Owner, ctx.Repo.Repository, issue, models.GetUserEmailsByNames(newTos)); err != nil { - send(500, nil, err) + ctx.Handle(500, "SendIssueMentionMail", err) return } } - send(200, fmt.Sprintf("%s/issues/%d", ctx.Repo.RepoLink, index), nil) + log.Trace("Comment created: %d/%d/%d", ctx.Repo.Repository.ID, issue.ID, comment.ID) + ctx.Redirect(fmt.Sprintf("%s/issues/%d#%s", ctx.Repo.RepoLink, issue.Index, comment.HashTag())) } func Labels(ctx *middleware.Context) { diff --git a/templates/.VERSION b/templates/.VERSION index 93417c1159..4d7844225d 100644 --- a/templates/.VERSION +++ b/templates/.VERSION @@ -1 +1 @@ -0.6.4.0812 Beta \ No newline at end of file +0.6.4.0813 Beta \ No newline at end of file diff --git a/templates/repo/header.tmpl b/templates/repo/header.tmpl index c364fe40fd..5d68f393e3 100644 --- a/templates/repo/header.tmpl +++ b/templates/repo/header.tmpl @@ -1,10 +1,7 @@ {{with .Repository}}
- -
diff --git a/templates/repo/issue/view_content.tmpl b/templates/repo/issue/view_content.tmpl index be80cb1555..bbac9cd9ec 100644 --- a/templates/repo/issue/view_content.tmpl +++ b/templates/repo/issue/view_content.tmpl @@ -50,20 +50,53 @@ + {{range .Issue.Comments}} + {{ $createdStr:= TimeSince .Created $.Lang }} +
+ + + +
+
+ {{.Poster.Name}} {{$.i18n.Tr "repo.issues.commented_at" .HashTag $createdStr | Safe}} +
+
+
+
+ {{if .RenderedContent}} + {{.RenderedContent|Str2html}} + {{else}} + {{$.i18n.Tr "repo.issues.no_content"}} + {{end}} +
+ {{if .Attachments}} +
+
+ {{range .Attachments}} + + {{end}} +
+
+ {{end}} +
+
+ {{end}} +
-
+ {{template "repo/issue/comment_tab" .}} + {{.CsrfTokenHtml}}
{{.i18n.Tr "repo.issues.close_issue"}}
-
+
+