From 8c046073a891e3a192794869628763ef072002eb Mon Sep 17 00:00:00 2001 From: Unknwon Date: Tue, 1 Sep 2015 19:07:02 -0400 Subject: [PATCH] work on PR conversation --- cmd/web.go | 5 +- conf/locale/locale_en-US.ini | 3 + models/error.go | 21 +++ models/issue.go | 190 +++++++++++++++++---- models/models.go | 4 +- models/repo.go | 29 ---- modules/bindata/bindata.go | 4 +- modules/git/repo_pull.go | 86 ++++++++++ public/css/gogs.min.css | 2 +- public/less/_repository.less | 16 ++ routers/repo/commit.go | 1 + routers/repo/issue.go | 196 +++++++++++++--------- routers/repo/pull.go | 222 ++++++++++++++++++++++--- templates/repo/commits_table.tmpl | 11 +- templates/repo/diff.tmpl | 93 +---------- templates/repo/diff_box.tmpl | 92 ++++++++++ templates/repo/issue/view.tmpl | 24 +++ templates/repo/issue/view_content.tmpl | 44 +---- templates/repo/issue/view_title.tmpl | 35 ++++ templates/repo/pulls/compare.tmpl | 3 + 20 files changed, 781 insertions(+), 300 deletions(-) create mode 100644 modules/git/repo_pull.go create mode 100644 templates/repo/diff_box.tmpl create mode 100644 templates/repo/issue/view_title.tmpl diff --git a/cmd/web.go b/cmd/web.go index cf681fbcb..d89504e99 100644 --- a/cmd/web.go +++ b/cmd/web.go @@ -513,13 +513,14 @@ func runWeb(ctx *cli.Context) { m.Post("/edit/:tagname", bindIgnErr(auth.EditReleaseForm{}), repo.EditReleasePost) }, reqRepoAdmin, middleware.RepoRef()) - m.Combo("/compare/*").Get(repo.CompareAndPullRequest) + m.Combo("/compare/*").Get(repo.CompareAndPullRequest). + Post(bindIgnErr(auth.CreateIssueForm{}), repo.CompareAndPullRequestPost) }, reqSignIn, middleware.RepoAssignment(true)) m.Group("/:username/:reponame", func() { m.Get("/releases", middleware.RepoRef(), repo.Releases) m.Get("/issues", repo.RetrieveLabels, repo.Issues) - m.Get("/issues/:index", repo.ViewIssue) + m.Get("/:type(issues|pulls)/:index", repo.ViewIssue) m.Get("/labels/", repo.RetrieveLabels, repo.Labels) m.Get("/milestones", repo.Milestones) m.Get("/pulls", repo.Pulls) diff --git a/conf/locale/locale_en-US.ini b/conf/locale/locale_en-US.ini index 2d11da768..9b5d2e762 100644 --- a/conf/locale/locale_en-US.ini +++ b/conf/locale/locale_en-US.ini @@ -464,6 +464,9 @@ pulls.compare_changes = Compare Changes pulls.compare_changes_desc = Compare two branches and make a pull request for changes. pulls.no_results = No results found. pulls.create = Create Pull Request +pulls.tab_conversation = Conversation +pulls.tab_commits = Commits +pulls.tab_files = Files changed milestones.new = New Milestone milestones.open_tab = %d Open diff --git a/models/error.go b/models/error.go index a7c8f5def..4d888c870 100644 --- a/models/error.go +++ b/models/error.go @@ -281,6 +281,27 @@ func (err ErrIssueNotExist) Error() string { return fmt.Sprintf("issue does not exist [id: %d, repo_id: %d, index: %d]", err.ID, err.RepoID, err.Index) } +// __________ .__ .__ __________ __ +// \______ \__ __| | | |\______ \ ____ ________ __ ____ _______/ |_ +// | ___/ | \ | | | | _// __ \/ ____/ | \_/ __ \ / ___/\ __\ +// | | | | / |_| |_| | \ ___< <_| | | /\ ___/ \___ \ | | +// |____| |____/|____/____/____|_ /\___ >__ |____/ \___ >____ > |__| +// \/ \/ |__| \/ \/ + +type ErrPullRepoNotExist struct { + ID int64 + PullID int64 +} + +func IsErrPullRepoNotExist(err error) bool { + _, ok := err.(ErrPullRepoNotExist) + return ok +} + +func (err ErrPullRepoNotExist) Error() string { + return fmt.Sprintf("pull repo does not exist [id: %d, pull_id: %d]", err.ID, err.PullID) +} + // _________ __ // \_ ___ \ ____ _____ _____ ____ _____/ |_ // / \ \/ / _ \ / \ / \_/ __ \ / \ __\ diff --git a/models/issue.go b/models/issue.go index 28f37bf82..e9eeb4889 100644 --- a/models/issue.go +++ b/models/issue.go @@ -9,6 +9,7 @@ import ( "errors" "fmt" "io" + "io/ioutil" "mime/multipart" "os" "path" @@ -21,6 +22,7 @@ import ( "github.com/gogits/gogs/modules/base" "github.com/gogits/gogs/modules/log" + "github.com/gogits/gogs/modules/process" "github.com/gogits/gogs/modules/setting" gouuid "github.com/gogits/gogs/modules/uuid" ) @@ -44,9 +46,10 @@ type Issue struct { MilestoneID int64 Milestone *Milestone `xorm:"-"` AssigneeID int64 - Assignee *User `xorm:"-"` - IsRead bool `xorm:"-"` - IsPull bool // Indicates whether is a pull request or not. + Assignee *User `xorm:"-"` + IsRead bool `xorm:"-"` + IsPull bool // Indicates whether is a pull request or not. + PullRepo *PullRepo `xorm:"-"` IsClosed bool Content string `xorm:"TEXT"` RenderedContent string `xorm:"-"` @@ -92,6 +95,11 @@ func (i *Issue) AfterSet(colName string, _ xorm.Cell) { if err != nil { log.Error(3, "GetUserByID[%d]: %v", i.ID, err) } + case "is_pull": + i.PullRepo, err = GetPullRepoByPullID(i.ID) + if err != nil { + log.Error(3, "GetPullRepoByPullID[%d]: %v", i.ID, err) + } case "created": i.Created = regulateTimeZone(i.Created) } @@ -273,30 +281,11 @@ func (i *Issue) ChangeStatus(doer *User, isClosed bool) (err error) { 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. - attachments := make([]*Attachment, 0, len(uuids)) - for _, uuid := range uuids { - attach, err := GetAttachmentByUUID(uuid) - if err != nil { - if IsErrAttachmentNotExist(err) { - continue - } - return fmt.Errorf("GetAttachmentByUUID[%s]: %v", uuid, err) - } - attachments = append(attachments, attach) - } - - sess := x.NewSession() - defer sessionRelease(sess) - if err = sess.Begin(); err != nil { - return err - } - - if _, err = sess.Insert(issue); err != nil { +// It's caller's responsibility to create action. +func newIssue(e *xorm.Session, repo *Repository, issue *Issue, labelIDs []int64, uuids []string) (err error) { + if _, err = e.Insert(issue); err != nil { return err - } else if _, err = sess.Exec("UPDATE `repository` SET num_issues=num_issues+1 WHERE id=?", issue.RepoID); err != nil { + } else if _, err = e.Exec("UPDATE `repository` SET num_issues=num_issues+1 WHERE id=?", issue.RepoID); err != nil { return err } @@ -306,34 +295,62 @@ func NewIssue(repo *Repository, issue *Issue, labelIDs []int64, uuids []string) continue } - label, err = getLabelByID(sess, id) + label, err = getLabelByID(e, id) if err != nil { return err } - if err = issue.addLabel(sess, label); err != nil { + if err = issue.addLabel(e, label); err != nil { return fmt.Errorf("addLabel: %v", err) } } if issue.MilestoneID > 0 { - if err = changeMilestoneAssign(sess, 0, issue); err != nil { + if err = changeMilestoneAssign(e, 0, issue); err != nil { return err } } - if err = newIssueUsers(sess, repo, issue); err != nil { + if err = newIssueUsers(e, repo, issue); err != nil { return err } + // 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 fmt.Errorf("getAttachmentByUUID[%s]: %v", uuid, err) + } + attachments = append(attachments, attach) + } + for i := range attachments { attachments[i].IssueID = issue.ID // No assign value could be 0, so ignore AllCols(). - if _, err = sess.Id(attachments[i].ID).Update(attachments[i]); err != nil { + if _, err = e.Id(attachments[i].ID).Update(attachments[i]); err != nil { return fmt.Errorf("update attachment[%d]: %v", attachments[i].ID, err) } } + return nil +} + +// NewIssue creates new issue with labels for repository. +func NewIssue(repo *Repository, issue *Issue, labelIDs []int64, uuids []string) (err error) { + sess := x.NewSession() + defer sessionRelease(sess) + if err = sess.Begin(); err != nil { + return err + } + + if err = newIssue(sess, repo, issue, labelIDs, uuids); err != nil { + return fmt.Errorf("newIssue: %v", err) + } + // Notify watchers. act := &Action{ ActUserID: issue.Poster.Id, @@ -813,6 +830,117 @@ func UpdateIssueUsersByMentions(uids []int64, iid int64) error { return nil } +// __________ .__ .__ __________ __ +// \______ \__ __| | | |\______ \ ____ ________ __ ____ _______/ |_ +// | ___/ | \ | | | | _// __ \/ ____/ | \_/ __ \ / ___/\ __\ +// | | | | / |_| |_| | \ ___< <_| | | /\ ___/ \___ \ | | +// |____| |____/|____/____/____|_ /\___ >__ |____/ \___ >____ > |__| +// \/ \/ |__| \/ \/ + +type PullRequestType int + +const ( + PULL_REQUEST_GOGS = iota + PLLL_ERQUEST_GIT +) + +// PullRepo represents relation between pull request and repositories. +type PullRepo struct { + ID int64 `xorm:"pk autoincr"` + PullID int64 `xorm:"INDEX"` + HeadRepoID int64 `xorm:"UNIQUE(s)"` + HeadRepo *Repository `xorm:"-"` + BaseRepoID int64 `xorm:"UNIQUE(s)"` + HeadBarcnh string `xorm:"UNIQUE(s)"` + BaseBranch string `xorm:"UNIQUE(s)"` + MergeBase string `xorm:"VARCHAR(40)"` + Type PullRequestType + CanAutoMerge bool +} + +func (pr *PullRepo) AfterSet(colName string, _ xorm.Cell) { + var err error + switch colName { + case "head_repo_id": + pr.HeadRepo, err = GetRepositoryByID(pr.HeadRepoID) + if err != nil { + log.Error(3, "GetRepositoryByID[%d]: %v", pr.ID, err) + } + } +} + +// NewPullRequest creates new pull request with labels for repository. +func NewPullRequest(repo *Repository, pr *Issue, labelIDs []int64, uuids []string, pullRepo *PullRepo, patch []byte) (err error) { + + sess := x.NewSession() + defer sessionRelease(sess) + if err = sess.Begin(); err != nil { + return err + } + + if err = newIssue(sess, repo, pr, labelIDs, uuids); err != nil { + return fmt.Errorf("newIssue: %v", err) + } + + // Notify watchers. + act := &Action{ + ActUserID: pr.Poster.Id, + ActUserName: pr.Poster.Name, + ActEmail: pr.Poster.Email, + OpType: PULL_REQUEST, + Content: fmt.Sprintf("%d|%s", pr.Index, pr.Name), + RepoID: repo.ID, + RepoUserName: repo.Owner.Name, + RepoName: repo.Name, + IsPrivate: repo.IsPrivate, + } + if err = notifyWatchers(sess, act); err != nil { + return err + } + + // Test apply patch. + repoPath, err := repo.RepoPath() + if err != nil { + return fmt.Errorf("RepoPath: %v", err) + } + patchPath := path.Join(repoPath, "pulls", com.ToStr(pr.ID)+".patch") + + os.MkdirAll(path.Dir(patchPath), os.ModePerm) + if err = ioutil.WriteFile(patchPath, patch, 0644); err != nil { + return fmt.Errorf("save patch: %v", err) + } + defer os.Remove(patchPath) + + stdout, stderr, err := process.ExecDir(-1, repoPath, + fmt.Sprintf("NewPullRequest(git apply --check): %d", repo.ID), + "git", "apply", "--check", "-v", patchPath) + if err != nil { + if strings.Contains(stderr, "fatal:") { + return fmt.Errorf("git apply --check: %v - %s", err, stderr) + } + } + pullRepo.CanAutoMerge = !strings.Contains(stdout, "error: patch failed:") + + pullRepo.PullID = pr.ID + if _, err = sess.Insert(pullRepo); err != nil { + return fmt.Errorf("insert pull repo: %v", err) + } + + return sess.Commit() +} + +// GetPullRepoByPullID returns pull repo by given pull ID. +func GetPullRepoByPullID(pullID int64) (*PullRepo, error) { + pullRepo := new(PullRepo) + has, err := x.Where("pull_id=?", pullID).Get(pullRepo) + if err != nil { + return nil, err + } else if !has { + return nil, ErrPullRepoNotExist{0, pullID} + } + return pullRepo, nil +} + // .____ ___. .__ // | | _____ \_ |__ ____ | | // | | \__ \ | __ \_/ __ \| | diff --git a/models/models.go b/models/models.go index 55b8e01de..791018f8e 100644 --- a/models/models.go +++ b/models/models.go @@ -78,8 +78,8 @@ func init() { tables = append(tables, new(User), new(PublicKey), new(Oauth2), new(AccessToken), new(Repository), new(DeployKey), new(Collaboration), new(Access), - new(Watch), new(Star), new(ForkInfo), new(Follow), new(Action), - new(Issue), new(Comment), new(Attachment), new(IssueUser), + new(Watch), new(Star), new(Follow), new(Action), + new(Issue), new(PullRepo), new(Comment), new(Attachment), new(IssueUser), new(Label), new(IssueLabel), new(Milestone), new(Mirror), new(Release), new(LoginSource), new(Webhook), new(UpdateTask), new(HookTask), diff --git a/models/repo.go b/models/repo.go index 10854ab5e..ec6dfbfcb 100644 --- a/models/repo.go +++ b/models/repo.go @@ -160,7 +160,6 @@ type Repository struct { IsFork bool `xorm:"NOT NULL DEFAULT false"` ForkID int64 BaseRepo *Repository `xorm:"-"` - ForkInfo *ForkInfo `xorm:"-"` Created time.Time `xorm:"CREATED"` Updated time.Time `xorm:"UPDATED"` @@ -168,15 +167,6 @@ type Repository struct { func (repo *Repository) AfterSet(colName string, _ xorm.Cell) { switch colName { - case "is_fork": - forkInfo := new(ForkInfo) - has, err := x.Where("repo_id=?", repo.ID).Get(forkInfo) - if err != nil { - log.Error(3, "get fork in[%d]: %v", repo.ID, err) - return - } else if has { - repo.ForkInfo = forkInfo - } case "updated": repo.Updated = regulateTimeZone(repo.Updated) } @@ -1047,8 +1037,6 @@ func DeleteRepository(uid, repoID int64) error { if repo.IsFork { if _, err = sess.Exec("UPDATE `repository` SET num_forks=num_forks-1 WHERE id=?", repo.ForkID); err != nil { return fmt.Errorf("decrease fork count: %v", err) - } else if _, err = sess.Delete(&ForkInfo{RepoID: repo.ID}); err != nil { - return fmt.Errorf("delete fork info: %v", err) } } @@ -1095,9 +1083,6 @@ func DeleteRepository(uid, repoID int64) error { if _, err = x.Exec("UPDATE `repository` SET fork_id=0,is_fork=? WHERE fork_id=?", false, repo.ID); err != nil { log.Error(4, "reset 'fork_id' and 'is_fork': %v", err) } - if _, err = x.Delete(&ForkInfo{ForkID: repo.ID}); err != nil { - log.Error(4, "clear fork infos: %v", err) - } } } @@ -1669,13 +1654,6 @@ func IsStaring(uid, repoId int64) bool { // \___ / \____/|__| |__|_ \ // \/ \/ -type ForkInfo struct { - ID int64 `xorm:"pk autoincr"` - ForkID int64 - RepoID int64 `xorm:"UNIQUE"` - StartCommitID string `xorm:"VARCHAR(40)"` -} - // HasForkedRepo checks if given user has already forked a repository with given ID. func HasForkedRepo(ownerID, repoID int64) (*Repository, bool) { repo := new(Repository) @@ -1709,13 +1687,6 @@ func ForkRepository(u *User, oldRepo *Repository, name, desc string) (_ *Reposit if _, err = sess.Exec("UPDATE `repository` SET num_forks=num_forks+1 WHERE id=?", oldRepo.ID); err != nil { return nil, err } - // else if _, err = sess.Insert(&ForkInfo{ - // ForkID: oldRepo.ID, - // RepoID: repo.ID, - // StartCommitID: "", - // }); err != nil { - // return nil, fmt.Errorf("insert fork info: %v", err) - // } oldRepoPath, err := oldRepo.RepoPath() if err != nil { diff --git a/modules/bindata/bindata.go b/modules/bindata/bindata.go index ad9e22d85..7fdb8c53b 100644 --- a/modules/bindata/bindata.go +++ b/modules/bindata/bindata.go @@ -4364,7 +4364,7 @@ func confLocaleLocale_deDeIni() (*asset, error) { return a, nil } -var _confLocaleLocale_enUsIni = []byte("\x1f\x8b\x08\x00\x00\x09\x6e\x88\x00\xff\xc4\x7d\xfd\x72\xdc\x48\x8e\xe7\xff\x7c\x0a\xb6\x37\x7c\xee\x8e\x90\xcb\xd1\xdd\x71\x1f\xd1\x61\xbb\x4f\x96\xda\x1f\xb3\x96\xa5\xb5\xe4\x99\x9b\x73\x38\xd8\xac\x22\xab\x8a\xe3\x2a\xb2\x9a\x64\xb9\xac\xd9\xd8\x88\x7b\x8d\x7b\xbd\x7b\x92\x03\x7e\x00\xf2\x83\x64\xc9\xf6\xec\xc6\xdd\x3f\x12\x2b\x13\xf9\x85\x44\x22\x01\x24\x12\x99\xef\x76\x59\x51\x76\x8b\xf4\x49\x7a\x9a\xee\xf2\xaa\xde\x94\x5d\x97\x76\xe5\x66\xf9\x70\xdd\x74\x7d\x59\xa4\x2f\xaa\x9e\x7e\xb7\x9f\xaa\x45\x99\x24\xeb\x66\x5b\x12\xe8\x4b\xfa\x97\x14\x79\xb7\x9e\x37\x79\x5b\x50\xc2\xb9\x7d\x27\xe5\xe7\xdd\xa6\x69\x19\xe8\x37\xf9\x4a\xd6\xe5\x66\xc7\x65\xe8\x5f\xd2\x55\xab\x3a\xab\x6a\xfa\x79\x4d\x5f\xe9\xab\x3a\xe9\x9a\x45\x95\x6f\xb2\x20\x03\x09\x96\xff\x4b\xfa\x53\x5d\xa4\xd7\x7d\xb9\x4b\x1f\x77\xdb\x7c\xb3\x79\x9a\x77\x28\xd2\x97\x69\xbe\x58\x34\xfb\xba\x7f\xfc\x48\x32\xa4\xf2\x66\xdf\x5b\xed\x97\xfb\x5e\xd2\xf6\x3b\x4b\x7a\xb7\x4b\xda\x72\x55\xd1\xc0\x5a\x4a\x7a\xab\x9f\xc9\xa1\x9c\x77\x55\xcf\x9d\xfe\x8b\x7c\x25\x9f\xca\xb6\xab\x1a\xee\xcf\x9f\xe5\x2b\xd9\xe5\x2b\x06\xb8\xa2\x7f\x49\x5f\x6e\x77\x9b\x1c\x05\x6e\xf4\x33\xd9\xe4\xf5\x6a\x2f\x30\xaf\xf5\x33\x59\xb4\x25\x65\x65\x75\x79\xa0\xd4\x33\xfc\x48\xe9\xc7\x6c\x36\x4b\xf6\x84\xd3\x6c\xd7\x36\xcb\x6a\x53\x66\x79\x5d\x64\x5b\xc1\xda\x3b\x4a\x4f\x35\x3d\xa5\xf4\x94\xd3\x31\x8c\xb2\x20\x04\x65\x79\xa7\x63\xa1\xa9\x21\x7c\xe5\x5d\x82\xaa\xea\x7c\x6b\xa5\xf9\x33\x29\xb7\x79\xb5\xe1\x49\x78\xc8\x1f\xd4\xf9\xae\x3b\x34\x98\xaa\x2b\xfd\x24\x44\x64\xfd\xed\xae\x04\x1e\x1e\xde\xd0\x57\xb2\xc8\x77\xfd\x62\x9d\x73\x5f\xe5\x2b\x21\xa0\x5d\x43\x08\x69\xda\x5b\xc0\xd9\x8f\xa4\x69\x57\x79\x5d\xfd\x3d\xef\x05\x49\x97\xc1\xcf\x64\x5b\xb5\x6d\xc3\xf8\xbd\xc0\x47\x42\x23\xce\xb8\x1e\x4a\x79\x43\x98\x08\x6a\xe1\x9c\x6d\xb5\x6a\x05\x95\x9c\x79\x81\x5f\x5c\x0b\xe7\x2d\x9b\xf6\xa3\x66\x3c\xe7\xcf\x41\x51\xea\x84\xe6\xc6\xed\xe7\x35\x21\x5f\x73\x2f\xf0\x23\x02\xe8\x92\xbc\xd8\x12\x2a\x77\x79\x5d\x32\x8e\x4e\xf9\x17\xe1\x85\x7e\x25\x4a\x53\x59\x57\xf6\x7d\x55\xaf\x18\xd9\xa7\x92\x94\x5e\x6b\x52\x12\xe4\xb9\xb4\xdb\x66\xef\xa6\x93\xd2\xff\x4a\x3f\xd3\x2b\xf9\x29\x79\x41\x21\x64\xba\x92\x3c\x92\x2e\x5b\x96\x65\x21\x63\xe9\xd2\xe7\xf4\x9d\xec\xf6\x9b\x0d\x61\xed\x8f\x7d\xd9\xf5\x5c\xe8\x8a\x7e\xd3\xf8\xe5\x77\x52\x75\x1d\x7d\x50\xf2\x2b\x7c\x24\x34\x75\xf5\x02\x83\x39\xc3\x47\x92\xbc\xef\xca\xbc\x5d\xac\x3f\x24\xf2\x1f\x7d\xe5\x0f\xa6\xbd\x63\x93\xca\x84\xa4\x44\x24\x2d\x58\x03\xc9\xa2\x29\xf8\xc7\x19\xfd\xa3\xaa\xab\xba\xeb\x69\xc5\x7d\x48\xf4\x83\xc1\xe4\x4b\x26\xa0\xaf\x7a\x60\x41\x13\xb1\x7c\x3b\x9e\xc1\xf4\x79\xd5\x76\xfd\xc3\xbe\x22\x62\x7d\xbb\xaf\x13\x1e\x1f\xad\xb6\xac\x98\x1b\x13\x7a\xd1\x10\x8a\x90\xdc\xd2\xf8\x2e\x6e\xaf\xff\xe5\xf5\x49\x7a\x45\x9c\x68\xd5\x96\xf4\x9d\x52\x1d\xf4\x8f\xca\xfc\x3c\x4b\xa8\x94\xb5\x74\x9e\xf7\xf9\x3c\xef\x4a\x8f\x56\xce\x14\xea\x76\x79\xa0\x71\xe6\x6a\xe0\x60\x5d\x1f\x8d\x77\x6a\x85\x50\x1d\xba\xae\x5c\x1d\x6f\x78\x71\x51\x3a\x33\x35\x14\xbe\xda\x94\x9c\x4e\x55\xa5\xaf\xde\xbc\xb9\x3c\x7f\x96\x96\xf5\xaa\xaa\xcb\xf4\x50\xf5\xeb\x74\xdf\x2f\xff\x5b\xb6\x2a\xeb\xb2\x25\x1e\xb7\xa8\x52\x5a\x53\x2d\x51\x42\x4a\x84\x2d\x83\x9b\x25\x5d\xb7\xa1\xb5\x0f\xf4\x5e\x5f\xbf\x4e\x2f\x18\xc5\xbb\xbc\x5f\xa3\x23\xfd\x3a\xe9\xfe\xd8\x30\x8a\x5c\x83\x37\xeb\x32\x05\x95\x01\xa8\x59\x1a\x3e\xd2\x42\xfb\x38\x4b\xca\xb6\xcd\x88\x2d\xf5\xb7\x99\x16\xd6\xfa\x86\x90\x52\x05\x91\x4e\xdd\xf4\xe9\xbc\x4c\x51\x66\x96\x24\xd6\x61\xc3\xee\xe9\x6e\xb7\xa9\x16\xb2\xd6\x5f\x48\x9e\x47\x34\xef\x20\x8a\xa5\x10\x0e\x88\xb2\xbc\x00\x5d\xc4\x9e\x79\x3d\xa4\x11\x03\x41\xf9\x75\x49\x0c\x70\xbd\x5f\x09\xdb\xdb\x34\xfb\xe2\x3b\x50\xaa\xf5\xde\x13\x6a\xfa\xb6\xa1\x0e\x03\x3b\x0e\xc0\x37\x71\x4a\x14\xc7\x9b\x56\x5b\x6e\x1b\xe2\x2b\x8e\xd8\x2b\x22\xa8\x43\x45\x99\x34\xd2\x2e\xff\x44\xeb\xad\x6f\xd2\x7e\x5d\x75\x69\x41\xc4\xb6\xe0\x8a\x69\x69\xec\x69\xbb\x10\xb2\x20\x02\x15\xd2\xb0\xb4\x78\x0e\x00\xb5\xdd\x13\x35\xad\xa9\x32\xde\x8c\x78\xe7\xa4\x2a\xa7\xfa\x89\x21\x51\x3d\xa0\x6f\xa2\xdc\x86\xb8\x32\xf3\xcd\x73\x7c\xe8\xef\xb0\x7e\xea\x55\xbe\x5c\x52\xaf\x3a\xa2\x8a\x97\xe9\x62\xd3\x10\x49\xbd\x7b\xfb\xba\x63\x82\x59\x67\xbb\xa6\xc5\x36\x47\x59\x57\xf4\xe9\xd2\x02\x44\x33\x44\xbd\xdf\xce\xe9\xd7\x61\x5d\x11\x07\x00\xda\xb9\x04\xef\xe6\x94\x4a\x4d\xec\x3b\x9a\xc2\x93\x94\x48\x98\x46\x40\x28\x03\x01\xf0\x18\x8a\xaa\xcb\xe7\x34\xf7\x0c\xbe\xa4\x6d\x6b\xdf\x12\x59\xad\xfb\x7e\x67\x2d\xbf\xbc\xb9\xb9\x92\xa6\x5d\xea\x5d\x6d\xe7\x01\x65\x60\x0e\x36\xbc\xf1\xd6\x69\x53\xcf\x40\x24\xfb\x76\x33\xa0\x1f\x1a\xab\xe5\x1c\xc1\x0b\x77\xe1\x11\xff\xb9\xf6\xe8\x01\x9e\x3b\x92\x4e\x0e\xa0\x26\xc2\x71\x89\x0d\x90\x88\xba\xd9\x71\xbd\x01\x55\x5f\x6a\x82\x27\x65\x6c\x9a\x2e\x5f\xb6\x4e\xca\x85\xec\x13\xb0\xff\x2d\x0d\x58\xd9\xc8\xf5\x05\xa1\x01\xbc\x04\xa9\xcb\xb6\xd9\x52\xea\x73\xfa\xe7\x13\x7c\xf7\x2f\xb8\x3e\xc0\xe4\x45\x41\xfc\xad\x3b\x49\xdf\x3e\x3f\x4b\xff\xf3\xcf\x3f\xfd\x34\x4b\x5f\xf5\xbc\x12\x99\x38\xff\xc6\x44\x45\x9f\xb2\x87\x3b\x50\x62\x19\x3d\xd1\xdd\x3d\x5e\x59\xf7\xd2\xc7\xc8\xfd\xef\xe5\xe7\x9c\xe4\x8f\x72\xb6\x68\xb6\x4f\x99\xab\x6c\xf3\x7e\x96\x70\x0e\x91\xab\xd2\xf1\x75\x59\x17\xf4\xa1\x92\x80\xe6\x05\xec\x4e\xf3\x03\xb9\x40\xa4\xa2\x6c\xd1\xd4\xcb\xaa\xe5\x01\xfd\x56\x83\x1a\x4c\x5e\xa2\x7d\x00\x39\xb6\xdd\x12\xd2\x88\x83\x54\xcb\x5b\x0f\x8a\xa1\xbe\xe1\x44\x9d\xd0\x44\xa8\x2e\x53\x51\xd2\x61\xf9\x5a\x88\x91\xe7\xed\x92\x86\xd7\x1a\xbe\x3b\x8f\xf0\x66\xb9\xdc\x10\x47\x35\x2e\xa9\x2d\x5c\x4a\xaa\x30\xcc\x10\x84\x88\x71\x07\x89\xef\x5c\x89\xf8\xec\xfc\x4d\x5a\x7e\x22\x6a\x23\x72\xa0\x2d\xba\xd8\x2f\x40\x61\x0c\x7b\x92\xf2\xfe\x44\xf8\xa5\xb5\xb1\x10\xbe\x1a\x30\x09\xee\x1a\x73\xa2\x05\x01\x11\x6f\xd0\x45\x91\x91\x84\xf2\x89\x38\x68\x1b\x34\xf1\xc2\x92\xb4\xf7\x23\xd8\x51\xa7\x5c\x09\x1e\xf9\x82\x66\x9c\xa8\x42\x7a\xd1\x49\xa7\x24\x9b\xc8\x9d\xe8\x78\x4f\x92\x74\x5e\x50\x5f\xe6\xb7\xe0\x3b\x1d\x13\x43\x51\x2e\xf3\xfd\xa6\xf7\xfd\x92\x89\x6b\x4d\x26\xb3\x96\xae\x59\x98\x0f\xf3\x26\x0b\x8c\x3a\x08\xea\xe9\x86\x65\x89\x0c\xeb\xcd\x6d\x0a\x01\x0a\xf4\x2a\x22\xae\xc9\xe2\xdd\x2c\xd1\xcd\xdb\x24\xfa\xec\x53\x05\xe9\xd7\x91\x10\x72\x4d\xbc\x67\x5e\xf3\x67\x06\x60\xb1\xba\x9b\x2c\xeb\x3a\x76\xc9\x0d\x77\x4e\xf2\x15\x3c\x70\x17\xd0\x02\x8b\xe7\x84\xb9\x4f\x15\x58\xaf\x4e\x22\xfa\x4a\x33\x89\xa6\xa9\xa9\xae\x2c\x51\x03\x95\x7f\x44\x75\xa2\xcc\x4c\xa5\x41\x15\xd0\x4c\x10\x21\x21\x2d\x2d\x9a\x94\x77\x46\xf0\x77\x2a\x6d\x43\xad\x75\xf8\x3a\xe6\xb4\xad\x56\x6b\xe2\x77\xcd\xe1\x44\x90\x76\x58\x37\x25\xd3\xf4\xab\xf3\x27\x3f\x4a\x3f\x56\xcc\xed\x5d\x21\xde\x27\xf2\x3d\x4d\x38\x61\x54\x49\x4b\xba\xe0\xf6\x5b\x40\x8e\xe4\x4e\x01\x1a\x4a\xfa\x26\xcb\x8e\xc5\x17\x5d\xbf\x61\x9e\x2e\x5c\x0f\x23\xa5\x07\xda\x82\x8a\x75\xd9\xaa\x81\xbc\x6a\x62\x1c\xef\x5d\xa4\xfa\x74\x7d\xb6\xaa\xfa\x6c\xc9\x8c\x84\xeb\x7c\xce\x65\x79\x2b\xa5\x9c\xf4\x01\x65\x3d\x48\x89\x1b\x91\x10\x5e\xfc\x92\xde\xff\xa4\xf2\xcb\xcf\xcc\x21\x32\xa2\xe9\x6a\x83\xc9\x50\x29\xb8\x2d\x45\x7c\x32\x75\xab\x68\x68\xfd\x31\xce\xbb\xfd\x0e\x3b\x8d\x8a\x2c\x27\xe9\x4e\x00\x8b\xe6\x50\xf3\x5a\x00\x2b\xa4\x55\x5f\x41\x59\x9c\x57\x75\x4e\xdb\xad\xd5\x02\x16\x7b\x9f\xa8\xe1\xcd\xe5\x0d\x00\x57\xcd\x7c\x5f\x6d\x0a\x03\x98\xd1\x08\x3f\xe5\x9b\xaa\x60\xc1\x53\xe7\x3d\x14\xf2\x2c\xa9\x92\xbe\x2c\x9a\x96\xe5\x03\x8c\xc6\x0a\x1e\x11\x4c\x5a\xde\xf0\x91\x4c\x65\x15\x16\xe5\x9c\x0c\xc1\x68\xa0\x89\x87\x44\xce\x12\x06\x28\xa6\xea\xea\x07\x3d\x7a\xba\xd8\x53\x5b\x34\xe9\x9c\x4c\x05\xbb\xf4\xe1\x53\xfa\x9b\xb0\xbc\x22\xfc\x78\x35\x46\x3c\x67\xa6\x92\xb9\x97\x55\x1a\x75\x35\x22\x6f\x47\x5d\x46\xbc\xc1\x58\xc3\xfe\x1a\x09\x74\x7b\xa1\x57\xd6\x8c\x37\x34\xad\xe5\x77\xf4\xf1\x80\x16\xf0\x6a\x83\x49\xc8\x21\xce\x91\x5c\xdb\x10\xde\x98\x40\x4e\x64\xb9\x2c\x69\x68\xcc\xd9\xfa\xfc\x23\xf5\x2d\x67\xf1\x21\x79\xcf\xd6\x83\x0f\xc9\x5e\x24\xc2\x66\x53\x38\xe9\x1b\x34\xdd\xb4\x43\x6d\xd5\x03\x39\x7a\xed\x48\xac\x5e\xac\x33\x67\x7b\x60\xa4\xf4\xe5\x67\xec\xc5\xc8\xf2\xa6\x08\x26\x76\xce\x4a\xb6\xb7\x98\x2e\x1e\xc4\xc5\xad\x9f\x2d\x92\x07\x69\x89\x90\xce\x32\x6f\x18\x6b\x9f\x4a\x07\x75\x16\xa6\xc6\x05\xa8\x2e\x92\x5c\xb5\xaa\x58\xa9\xa4\x2c\xd1\x7c\x35\x57\xb4\xdf\x2e\x01\x13\x53\xc3\x09\x78\x1d\xcd\xa7\x2a\x70\x33\x9a\x18\x68\x87\xd6\x32\x71\xc4\x5b\x59\x17\x41\x9b\xc9\x7b\x35\xaa\x7c\x48\x0c\xee\x6d\x9c\x4f\xdc\x84\x34\x3d\x6f\x6d\xc8\x6c\x76\x9d\xd5\x81\x95\x64\x65\x28\x7e\x83\x5f\x97\x3b\x96\x05\xb6\x1d\xc8\x62\x43\x90\xc5\xad\x4a\xb3\x8e\x40\x7e\x15\x56\x4d\x14\x43\x0c\xee\x3b\x33\xd7\x7c\x63\x15\xcf\x2a\x22\x05\x94\x8f\xb7\x1e\x31\x81\x90\xd0\x09\xbb\x4f\xdb\xde\x9e\xa4\xd1\x26\xb6\xce\x3b\x62\xdf\xb4\x73\x6b\xb1\x62\x66\xfa\x16\x4f\x7b\xbe\x90\x35\x03\xd3\x0d\xa8\x5c\x4a\x36\xed\x70\x4f\xe4\x1e\x0a\x87\xd3\x56\x9c\x24\x03\x39\x25\x14\x67\x26\xda\x24\x84\x6d\x4b\x16\x66\xb3\xad\x58\x4b\xe4\x57\x7a\x51\x26\x24\x71\xad\x68\x41\x1b\xc1\x3e\x61\x25\x77\x05\x99\x5f\xe9\x95\x01\xca\x3e\x64\xc1\x0a\x61\x29\xbf\x9a\x89\x8a\x38\xc3\x01\x16\x00\x5a\xdb\x23\xf4\xd3\x66\x45\xd9\x33\x63\xe9\xb2\x63\x43\xf0\xea\x88\x5b\x78\x24\x9e\xb2\x79\x29\x0d\xa1\x54\x00\xf6\xc3\xe2\x02\xcc\x35\x1e\xcf\x9f\xde\xef\x1e\x3f\x9a\x3f\x75\xbc\x75\xb1\x2e\x17\x1f\x85\xfe\xaa\x7a\xde\x7c\x86\x0a\x4b\x13\xcf\x38\xae\x79\x8d\xdd\x2f\xd2\x35\xe5\x42\xcb\x21\x5e\x40\xc5\x08\xf1\x9c\x1b\x4d\x1a\x75\x86\x59\xc6\xcc\x8c\x7d\x6e\x77\x31\x42\xa2\xd2\x68\x44\x7a\x96\xd0\x34\xf2\xe2\xc3\x3a\xf0\x74\x7b\xca\xa9\x4c\xb9\xd8\x27\x3c\xe9\x62\xbc\x9b\x6a\x5b\xf5\x23\xd2\x61\x46\x94\x2b\x09\xaa\xe5\xc4\x70\x89\xba\x80\x0d\xf4\x85\xd8\x39\x55\x43\x1b\xaf\x91\xd3\x21\x27\xed\xe7\xe7\x94\x48\x68\x4f\xdb\x18\x8f\x89\xba\x49\xfc\x3c\xe7\x9d\x9b\x34\x9f\xbc\xcb\xf6\xb5\xa2\xb5\x2c\x8c\x98\x5e\x56\xd8\x65\xb8\x5d\x23\xf9\x00\xca\x30\xaf\x02\x7c\xfa\xbd\xc3\xf8\x0f\x24\xed\x2f\x5d\x31\x66\xfd\xdc\xa1\x8a\x85\xcd\x7c\x72\xf2\x88\x35\xd6\xa5\x28\xac\xc0\x00\xc3\xf1\x44\x93\xd6\xe3\x67\x8f\x54\xa7\x8f\x94\x82\x09\x99\xef\xfb\xbe\x61\x65\x62\xc3\x54\x23\x65\xac\xd7\x67\x00\x84\x7e\xe4\xeb\xc3\x84\x84\x78\x92\xb9\x29\x4d\xb8\xcf\xbc\xd9\x55\xd5\xb0\xc1\xe8\x74\xaf\x74\x60\x85\x18\x40\xf2\xfa\xd6\x48\x99\x08\x82\x7b\xc1\x0d\xf6\xd3\x7d\xf9\xbe\x2d\x7f\xf0\xbd\x71\x6b\x06\x25\xac\x47\x52\x3c\x58\x4f\x6f\x91\x2b\x06\x37\x5b\x75\xb6\xf5\xa9\xd9\xca\xd3\x47\x1b\xa3\x17\xf9\xbc\x32\x88\xc1\x92\xdc\x59\x00\xd1\x34\x0a\x94\x9e\x0d\xda\xf2\x7a\xdc\x18\x83\x7d\xdc\x65\xbf\x83\xf5\x4d\x93\x75\x6b\xd1\x99\xad\x7b\xa4\x6f\xd7\xab\xc8\xf0\x02\xa3\x3b\x88\xee\xbf\xf0\x3e\x49\x9a\x49\xbe\xf9\x90\xdc\xc2\xc2\xf7\x57\xe2\xf0\x35\x6c\xa7\x4d\x42\x19\xa2\x65\x5d\xe0\x83\x40\x59\xe5\xfb\x90\xf0\x1e\xfa\x66\x20\x17\xf2\x16\xa1\x69\x81\x80\x82\xac\xdf\x22\x71\xcf\xa6\x30\xb9\x9a\x90\x21\xdf\x96\xde\x46\x8c\x2f\x37\xc4\xeb\xeb\x97\x37\xa6\xc3\x5d\xbf\x4c\x3f\x96\x5a\xf9\xcb\xbe\xdf\x75\xef\xa0\xcf\x8b\x72\xce\x9a\xfc\x55\x7e\xcb\x52\x9b\x24\xeb\x0f\x64\xdc\x94\xf9\x56\x7b\xc9\x9f\x52\xc5\x29\x6d\x67\x9a\xc8\x9f\xb4\xcb\x05\x76\xa2\x04\xf2\x8b\x0d\x41\x84\x19\x95\x1b\x9c\xfe\x50\xaa\x01\xfa\xf7\x91\x71\xeb\xf7\x24\xdf\xec\xd6\x39\x04\x88\x00\x0c\x76\x1c\x02\xc2\xc4\xa7\x00\x01\x2d\xec\xb7\x65\x5b\x2d\xa0\x6d\x51\x81\xef\x1f\x66\x3f\xc0\x84\x47\x0b\x85\x24\xc9\xb8\xb2\x82\x16\xc9\x3f\x54\x21\x7f\xb3\x94\x19\xd6\xdb\x55\x7f\xb7\x51\x44\xd5\x71\x3a\xf1\x1c\x82\x80\x4c\xe7\xa1\x1c\x10\x36\x46\x96\xef\x7a\x36\xeb\x50\x02\xc9\x90\x51\xd5\xdb\xfc\xf3\x97\x0a\x6e\x9b\x89\x72\xc2\x0a\x7c\x21\x5b\xf0\x3a\xc4\x98\x1d\x10\x3c\x1b\x6e\x8e\x42\xd3\xd4\x33\x48\xfd\x91\x76\xb5\xda\x81\xbd\x93\xdf\x29\x7e\xff\x62\xc7\x11\xb4\x85\xa8\x04\x9e\xba\x83\x09\xda\x9c\x0b\xe6\x9b\x90\xa4\x67\x7e\xb9\x85\xd2\xb5\x23\x67\x68\xd8\xaa\xf8\x38\xc6\xc1\x6a\x35\x14\x0d\x22\xa9\x99\x3f\x43\xc9\x78\x8f\xcc\x58\x6a\xad\x43\xd9\xd4\xed\x9e\xb6\xbf\x00\x42\x2c\xe9\xd9\xb8\xdc\x60\xc1\x1d\x2d\x4e\xa2\xc0\x44\xe9\xcb\xb1\x69\xf4\x48\xf9\x9e\x96\xcc\x44\x05\x6e\x25\x1d\x2d\x28\x93\x89\x42\x34\xf2\x62\xc4\x0b\xc6\x05\x19\x8c\xf4\xa6\xcd\xa6\x5c\xb1\x0d\xcd\x1a\x8e\x5a\x53\x12\xa2\xcd\x40\xc0\x42\x02\xf2\x18\x76\x93\x15\xce\x6b\xa8\x05\xb8\x39\x8a\xf5\x2f\xea\x35\xc9\xf3\xf4\xc9\x25\x03\x2d\x4c\xbb\xa1\x3b\xf9\x96\x15\x8e\x6e\xcf\xac\x99\x95\x13\x91\x4e\xe2\xd9\xe0\x8d\x17\x55\x95\x68\xe2\x78\xf5\x44\x8b\xac\xb1\x7d\xa9\x7e\x80\x7d\x63\xd5\xa1\xbe\x3e\xae\x58\x2b\x77\x40\xc7\xaa\x75\x1a\x65\xf9\xb9\x82\x3d\xf2\x45\xc5\x76\x2e\xe8\x94\x4e\x95\x46\xde\x2c\xd9\x10\x33\x60\xdd\x45\x46\x25\x72\x6c\xf3\x89\x55\x3f\x6e\x8f\x73\xa5\x9c\xd8\x27\x75\x50\x3c\xcf\xaa\x9d\x92\x36\xd8\x1c\xca\xe2\x84\xb6\x78\x2e\x41\xfd\x04\xdb\xc8\x37\x87\xfc\xb6\x83\x91\xc5\x38\x0e\xdb\x62\xa5\x38\xb3\x13\x12\x00\x56\xe8\x55\x68\xf1\xa7\x15\x67\x98\x60\xd3\x35\x6f\x1e\x6e\x9b\x3e\x40\xbf\x04\xb7\x50\xb3\x0d\xa9\xed\xbc\xed\x39\x03\x36\x81\xb3\x6e\xcc\x9a\x24\xcb\xf8\x92\x1d\x54\x84\x43\x24\xe5\xfc\x13\x65\x4f\x58\x3c\xa2\x66\x58\x58\x21\x7e\x2c\xb8\x26\xf9\x8f\x30\x8b\x2e\x05\xc6\x86\x3d\xd5\xff\x50\xe4\xe2\x8a\x70\xc8\x7a\x96\xd7\xbf\x79\x6f\xa2\x59\x31\x8b\xb5\xa4\x43\x7b\x4e\xba\x9e\x96\x00\x63\xda\x0e\x3e\xff\x2a\xf2\x95\xea\xdc\x9c\x8b\x25\x06\x34\x75\xeb\x6a\x97\x36\xb0\x82\x86\x28\xf4\x64\x1b\x88\x98\x6c\x9b\x2f\x21\x77\xb3\x39\xb8\xcd\xeb\x6e\x59\xc2\x2e\xbc\x4d\x97\x7c\xb6\x36\xd3\xa6\x59\x62\x95\x03\xd0\x23\x2d\x8b\x0e\x83\xa6\xc3\xdd\x02\x73\x17\x4c\x54\xdc\xb4\x1c\x14\xc0\xf6\x88\x3e\x00\xab\xbe\xa6\xce\xfa\xc0\x64\x36\x42\x01\xa4\xc6\xe8\xd8\xc7\x7a\xf3\xa9\x0c\x11\xb1\xfc\x47\x47\x1e\x60\x5d\x4d\xdf\x72\x5e\x10\x4f\x93\x34\x0a\x73\x07\x4e\xed\xe6\xb7\xf1\xe8\xb9\xa8\xa3\x00\x3e\x43\xfa\x54\x6a\x2b\xbc\x30\x78\xad\x0c\x2a\x84\x99\xc3\xeb\x0a\x49\x9f\x43\xe5\x9b\x53\x17\x17\xeb\x68\x75\xde\x20\x27\x95\x9c\xd1\x02\x4d\xde\x73\xd3\xa4\xc6\xaf\xf3\x7a\x55\x66\xce\xc6\x7c\x86\xdf\x2a\xa1\xab\xcd\xb8\x4f\xcd\xb0\xcc\x96\x7f\x2b\x22\x66\xe4\x3b\x4b\x56\xb5\x59\x7c\xba\xe4\x6f\x0d\xc9\x10\x30\x15\xff\x89\xbe\x58\xfa\xad\x93\xe8\xb4\x6c\x60\x67\x80\x7a\x50\xf5\xb7\x38\xc6\x9b\x93\x0c\x2c\x4a\x1a\xa5\x90\x9a\x0b\xee\x00\xd3\xc7\x73\xfb\xa6\xf9\xc8\x99\xe9\xf1\xd2\x96\x2f\x85\x13\x3b\xd4\x73\xfb\x4e\x58\x4b\xde\xce\xb0\x39\xb0\x30\x0d\xab\x7b\xb0\x25\x3c\xb8\xdf\x3d\xe0\x09\xb3\xbc\x59\x00\xbf\xcb\x7b\x62\x8b\xb5\xa8\x28\xc2\xa1\xc2\xa2\x9a\xed\xaa\x00\x57\x11\xb0\x19\xce\xc8\x05\x15\x1f\x12\x7f\x74\x6f\xa7\xf6\x53\x16\x55\x65\x31\x9d\xca\xbc\xff\x4c\x9f\x6a\x11\x49\x9d\xe3\x8a\xaa\xaa\x38\x18\xb5\xd3\xac\x2e\x3e\xdc\xea\x12\xb5\x21\xc5\x06\x24\x25\xef\x27\xe9\xb9\x7c\x98\xd2\xbb\xaf\x30\xa6\xaa\x48\x92\x1d\xf0\x1e\x38\x1a\xe8\x44\xb8\x4e\xab\x43\x89\x37\x62\xb7\xc3\x9d\x9d\xb0\x20\xb5\x80\x70\xed\xac\x03\x52\x00\x9f\x4a\x07\x0a\x1b\x5b\x67\xa1\xc9\xd5\xc1\x39\x0e\x9f\x4e\xb0\xfe\x49\x60\x87\x72\x9e\xb2\xbd\x94\x08\x87\xf4\x22\x1d\xe8\x36\x27\x95\xea\x53\x95\x3b\xcb\x0c\xcd\x16\xbb\x32\xe8\x2e\xfa\x9c\xdd\x18\x70\x36\x3c\xf6\xb9\xe1\x83\x16\x3d\xbb\x78\xad\x9f\xc9\x7e\x57\xb0\x4d\xcb\x0f\xf8\x1d\x12\xdc\x80\xe3\xfc\xc0\x5c\x89\xa1\x5b\x31\x27\xcd\x08\x78\x91\x2a\x1c\xf7\xec\x76\x66\xcb\x67\xc2\x8f\x46\x97\x50\x31\x04\x09\x4f\x09\x24\x4b\x95\x56\x03\x98\x09\xef\x01\x7a\xe5\xc0\x12\x08\xa1\xbd\x32\x5d\x37\x87\x74\x53\xd5\x1f\x3b\xc5\xaf\xb3\x87\x98\x9e\x9c\x9e\x23\x81\x80\xc5\x52\xc3\x62\x55\x55\xef\xcb\x5f\x13\xfb\x12\x4b\x3e\x3e\xc7\x9e\x1f\xa5\xec\x8a\x43\x66\xa0\x07\x30\x67\x72\xd4\x74\x8a\xe4\x49\x58\xaf\xe7\x6a\x11\x9c\x91\x07\x87\xc2\xcb\x92\x05\x6c\xb0\x43\x3b\xc5\x22\xfc\x34\x4d\xa7\xb6\x47\xcf\x7e\x38\x0d\x86\x0a\x85\xd2\xd9\x72\x10\x3a\x99\xa7\x76\x76\x86\xd5\x98\xd8\x69\x97\xf5\x07\x6b\x3b\xab\xb6\xe2\x5c\xf5\xce\xce\xc2\x30\xb3\x4e\xaf\x40\xf6\x8c\x34\xe5\xc1\x60\xc2\x23\x87\x37\x8d\x9d\xb4\x19\x1f\xb5\xcc\x13\x13\x17\x04\x21\xd8\xec\xa3\xce\x0e\x29\x4b\x2b\x30\xeb\xf9\x17\x08\xcc\xc8\x27\x3c\x89\x11\xde\xec\x58\x4b\xb3\x89\x84\xc2\x33\x3d\x07\x70\xf9\x8c\xd9\x20\xff\x0d\xce\xcc\x86\xd6\x86\x48\x53\xd2\x1a\x8e\x4a\xd3\x83\x3e\x8d\xd6\x8e\x95\x3b\xd0\xd8\xc2\xe1\x18\xc1\xcf\x84\xfa\x73\x58\x86\xe5\x58\x0d\xfe\x04\x42\x2f\x35\xce\xe4\xa4\x0a\x42\x00\x14\x8e\xce\xeb\x19\xa7\xc2\x8d\xd8\xa2\x2e\xde\x5a\x0e\x40\x1d\xb6\x62\x7d\xb2\xb4\xc3\xf9\x90\xb1\xed\x5a\x9a\x74\xda\x78\x07\x96\xa8\x11\x4b\x8b\xd8\x17\xb8\x57\x83\x93\x66\xcf\xb5\x48\x83\xd4\xba\x98\xff\xe3\xcb\x52\xbc\xf5\xb2\x64\xeb\x96\x35\xaa\xcc\xda\xe5\x0a\xcb\x4e\xa8\x0f\x58\x03\xa5\x33\x4f\x14\xc0\x44\xdc\x45\x80\x85\x20\x66\x09\xb5\xe4\x2c\xb2\xf3\xc2\x62\xfb\xff\xcd\xb6\x1b\x35\xe8\x6c\xbb\xbe\xab\x03\xb2\xe1\x3e\x0e\x76\x9c\x11\x01\x51\x06\xf6\x5f\x9d\xfa\x60\x57\xd5\xc9\x77\x9b\x2b\x37\x23\x32\x3d\xa3\x89\x92\xb0\x05\x2b\x11\x80\xc3\xb2\x80\x07\x6f\x12\xb8\x42\x89\x80\xdf\x8d\xcc\x90\x31\x7f\x3d\x85\x06\x43\x58\x11\x58\x96\x07\x78\x43\x13\xe9\x4f\x35\xa2\x2d\x23\x42\xce\x6d\x9d\x67\xcf\xe8\x68\xe6\x44\xd5\x86\x75\xb5\x5a\xd3\xb8\xaa\x2d\x9f\x59\x82\x6b\xdb\xc1\x98\xd7\xea\xf8\x17\x2d\xbc\x66\x55\xb3\x0d\x87\x5b\x10\x57\x1e\xc7\x6d\x1f\x77\x7d\xdb\xd4\xab\xa7\xe7\x0d\xab\x5b\x6c\x09\xe1\xad\xe2\xd7\xc7\x8f\x34\x9d\x58\x06\xcf\x21\x3b\xb8\xbe\xa8\xfa\x97\xfb\xf9\x83\x2e\x5d\x91\x6c\x80\x0d\xe4\x71\x9e\xae\xdb\x72\xf9\xe4\xde\xfd\xee\xde\x53\x3d\xa8\x16\x3f\xab\x43\xed\xd0\xf2\xf8\x51\xfe\x94\xa5\xe7\xae\xd9\x90\x50\x1b\x17\x69\xb6\x5b\x99\x5f\x62\x7f\x5b\x81\x44\xff\x71\xb6\x5d\xd6\xc0\x5c\xd9\x2a\x7e\xa8\xc2\x99\xa3\x75\x3f\x3f\x3a\x6d\x26\x26\x45\xf6\x05\x15\x54\x18\x18\x47\x76\x75\x1f\x30\x4d\xb6\x2d\xa4\xae\x18\x36\xd8\x71\x31\x4c\x24\x9b\x6b\xbc\x69\xc3\x8c\x13\x90\xa0\x51\x87\x95\xa7\xa2\xd4\x13\x91\x34\x38\xcd\xda\x94\x8d\x93\xbe\x8c\xb4\x02\xfa\x65\x9e\x6a\xa6\x4c\x08\x8c\xde\x08\xc2\x04\x1b\xd1\xf0\x77\xc6\x00\x64\xf4\xba\xfc\x6d\x04\xc8\x13\x49\x46\x71\x22\x10\xf0\x83\x19\xc0\x18\x35\xab\xd0\x07\xe6\x69\xbd\x00\x2b\x53\x1d\x44\x1c\x55\x44\x20\x13\x92\x24\x09\x9d\xd9\xdb\x57\xca\x0e\xa3\x76\xfd\xc0\xad\x39\x7f\xf4\x85\xbe\x0c\x47\xcc\x18\xc3\x98\x4e\x81\x0e\x1a\x0b\x6c\x0a\x3a\x53\xaf\xd5\x82\x80\x0c\xda\x86\x03\x6d\xe1\x4d\xa3\x27\x2e\xa9\x25\x62\x4e\x48\x3d\xe8\xcb\x68\x31\x73\x27\xe0\x96\x26\x2e\x1e\x30\x4a\xfc\xd7\xb4\xc8\x89\x13\xf4\xcd\x47\x22\xa6\x71\x11\xa4\x1f\x2b\xe4\x38\x8c\xc9\xe8\xca\x5f\x4e\x3d\x7b\x18\x4a\xed\x7a\xc0\x79\x94\xc5\x04\x9c\x45\x6b\x75\xae\x2f\x62\x51\x29\x21\x1b\xcf\xab\xba\x10\x4e\xa2\x8c\x40\x7d\x49\x1c\x07\x20\xf9\xa2\x66\x20\x98\x3d\xf9\x43\x7f\x87\xd3\x12\xd5\x1f\x2c\x17\x62\xe0\xfb\x3a\x60\xa0\x42\x0e\x99\xa0\xc2\x0d\xf2\x8a\x54\x30\xf8\xb7\x9d\x4a\x85\x37\x9c\xdd\xa9\x73\xa7\x9e\x13\x5b\x91\x17\x9a\x88\x35\x00\x40\x41\x78\xe7\x10\x81\x5f\x5e\x1b\xb7\x5a\xd4\x07\x40\x3d\xd7\x30\x07\x44\x75\xc6\x32\xd7\xe2\x13\x90\x9e\x5e\xbd\xa2\x3d\xc3\x35\x68\x95\xfe\x96\x93\x1c\x29\x5d\x38\x38\x4b\x00\x13\xdb\x90\xe7\xba\x13\x24\x29\x6e\x86\x47\x94\xc4\x12\x77\x83\x1a\x0d\x48\x06\x13\xe7\x0b\x8e\xcb\x2e\xb0\x8e\x48\x6b\xe8\xc9\x70\xb7\x72\x43\xfd\x8e\x30\xeb\x6c\x74\xbc\xb4\x76\xb7\xcc\xff\x03\xf7\x9f\x5c\x30\x74\x00\x07\x1f\xf8\x1d\x11\x24\x2c\x04\x29\x2f\xe1\xd6\xf1\x0f\xeb\xb0\x09\x10\xc1\x54\x86\x6c\x64\x72\x32\x3d\x53\x99\x2c\x36\xc5\x59\x76\x56\x4f\x3c\xe6\x2f\xf1\x19\x26\x7c\xaf\xbf\xde\xc1\x65\xc2\x51\x05\xa4\x7c\x35\xd9\xac\xa3\x68\x69\x7a\xc0\x6f\x52\xd9\x08\xe5\x04\x9d\x5b\x11\xd9\x5a\x29\x22\x70\x15\xa5\x5a\x0e\xe5\x86\x7d\x3c\xb5\x75\x7f\x8a\xac\x43\x8f\xce\x90\x15\xc8\x9d\x1e\xb3\x33\xaf\x13\x05\x05\x15\xa1\x79\xcb\x2a\x23\x08\x5a\x6e\x38\x36\x16\x15\xd8\xf6\xeb\xb3\xd3\x37\x6f\x2e\x6f\xfc\x36\xcd\xeb\xa0\x2e\x48\x98\xf8\xce\x79\x60\x8d\xfa\x65\x7e\x58\x6e\x02\x63\x08\xef\x09\xa6\x25\x8e\xc1\x85\x6c\xca\x6a\xa7\xcf\x55\x03\xde\xd3\x70\x5f\x8c\x97\x47\xfd\x2f\x8e\xcd\x5f\xf2\x9e\xe5\x9b\x0f\x89\x19\x89\x2f\xf9\x7f\x12\xda\xd9\x83\xb3\x0d\x2c\x3d\x7f\x04\xe2\x3d\xb0\xa9\x03\x4d\x31\xb2\xbb\x83\x49\xef\x73\xa8\x10\x84\xfb\x06\x7b\xc5\x32\xc5\xf1\xe8\x09\x9b\x11\x9b\x16\x0b\x86\x91\xbb\xaf\xab\x3f\xf6\x10\xd0\x58\x81\x20\xe6\xc1\x8e\x7d\xf3\x6a\x23\x1b\xca\x9f\xdd\x0f\x49\xe7\xaf\x81\x97\x70\xd0\x38\xfd\x7a\xdc\xed\xd8\x57\x91\xf6\x86\xee\xc9\xbd\x7d\x95\xb2\x55\x8a\x7d\x83\xee\x3d\x25\x71\x9f\xdd\x0c\x68\xfa\x08\xe2\x69\x50\x1d\xdf\x3d\xf1\x75\x7e\xaf\xfa\x1a\xf5\x17\xeb\xe8\x53\xbe\xd9\x97\x91\x7a\xcf\xeb\x86\xcb\x74\x3f\x24\x28\xaa\x56\xcf\xe1\xbd\x15\xe4\x99\x9f\x30\xe7\xc1\x59\x18\xa9\x13\x43\x51\x0d\x4b\xcc\x56\xbd\xd8\x3b\xd3\x00\x15\xbc\x2e\xd1\x6a\x19\xa2\x5b\xcf\xa5\xdc\xf2\xef\x16\x6d\x05\x67\x67\x49\xe7\x9b\x4a\x69\x70\x4b\xc9\x25\xfa\x76\xaf\x89\x68\x68\x4c\xb3\x55\xd5\x93\x5e\xc7\x37\x93\xe0\x1a\x9b\xd0\x9a\xa3\x6d\x00\x77\x9c\xe4\xcb\x52\x46\x45\x79\xc7\x14\x58\xd8\x69\x58\x4e\x53\xf2\xe1\x0f\xfd\x3d\x51\x4a\x01\xed\x86\x15\x9b\xdc\x1b\xd2\x6b\x2b\x5e\x35\xaf\xe8\x1f\xed\x88\x22\x3f\xc7\x73\xdc\xa1\xbc\x5a\x05\x44\xc9\x73\x55\xa8\x5f\x94\x4e\x88\x3a\x44\x05\x53\xa2\x8e\xb4\x6a\xb1\x05\xc6\x90\x90\x3e\x43\x82\xde\x67\xa2\x4e\xd0\x04\x7c\x12\x31\x42\x6e\x38\xbd\xb2\x94\xef\x59\x75\xfa\xe1\x88\x1d\x73\x78\x18\xf8\xed\xe6\xcc\x61\x0d\x77\x5b\x35\xd9\x53\x24\x63\x1b\x75\xaa\xde\x44\xd1\x19\x7a\xa2\xf7\xad\xec\x76\x8c\xbb\x70\x25\xd7\x63\xc2\xdc\xe3\x2b\xca\x54\xec\x3c\x5e\x58\x70\xc4\x9b\xd3\xc2\xb8\xf7\x54\x70\x66\xab\xca\x6a\xd5\x29\xb8\xd0\x2b\x5f\xc1\x1c\x28\xc4\x0c\x9e\xfc\x99\x69\x8e\xec\x6a\xc1\x5a\x99\x5a\x0b\xa6\xa1\x22\x26\xa8\x82\x48\x1e\xdc\x0e\x78\xf4\xe2\xd5\x0d\xee\x06\xd0\x8c\xc1\x97\xdb\x2e\x40\xb0\x9f\xe6\xcc\xd5\x69\xe7\x51\x00\x31\xd7\xce\x57\x92\xa8\xe5\x38\x11\x2a\x5f\x6c\xba\x37\xaf\x91\x3c\xbc\x48\x92\xc8\xaa\xb4\xa5\xae\x6b\x74\xe9\x16\x3b\x6e\x06\xb0\x7b\x75\xbc\xca\x71\xe3\x2d\xc0\x74\xe8\xd3\xc4\x3c\xb9\xe0\x4d\x65\x77\x9b\xb1\x01\x11\xfb\xc8\xee\x36\x81\xe7\x0f\x6d\xb9\x19\x24\x12\x49\x04\x57\xdf\x54\x3b\xb9\x94\x49\x19\x55\x29\xfe\xbf\xf8\xb8\xfc\xe7\x44\x50\xe8\x66\x18\x84\x82\x9b\x9a\x9c\x41\xbb\xc7\xaf\x60\xb2\x3d\x6b\x89\x72\xa0\xf1\xe4\x5e\x36\x27\x26\xf1\xf1\x5e\xa0\x35\xf2\x9d\x4e\x56\x15\xbf\x23\xe1\xf5\xa0\xc7\xee\xef\xe4\x2b\xb1\xdf\x7f\xc1\xaf\x3d\xfb\x93\xca\x19\x3f\x7f\x24\xfa\x8b\xcf\x05\x12\xbd\xe5\xc7\xdc\x30\x61\xcd\x41\xe7\x93\xb4\x86\x90\x75\xfd\xb1\xe7\x51\x8a\xc2\xfb\x24\xfd\x17\xfe\x95\xbe\xe0\x5f\x3a\x14\xe6\x08\x6e\x8d\x83\x6a\x06\x3c\x22\xf4\x8f\x04\xcb\x53\x2f\x65\xcf\x13\xc4\xa9\x2a\xc0\xbe\x7a\x53\x19\x20\x5f\x31\x48\x76\x7b\xf6\x1c\xe1\x79\xb7\xd6\xae\x28\x05\xf7\x35\x38\x91\x37\xde\xa0\x06\x77\x68\x14\xd5\x91\x38\x56\xa3\x2c\xa6\x6f\x4b\x48\xb4\xf4\x4f\xf3\x70\x27\xb4\xcf\x71\x4c\x20\x40\x44\x72\xff\x29\xbd\xa1\x14\x85\x28\xc3\xac\x44\x41\x91\x3f\xbc\x1d\xb8\xc9\xe7\x25\x6c\x6b\xaf\xf1\x41\x24\x4f\x3c\xb2\x27\x14\xc1\xe4\xe2\x7e\x24\xdc\xc7\xaa\x17\x0f\x58\x7c\x25\xea\x9f\x2d\x47\x41\xf2\x99\xc0\xd0\xde\xe6\xec\xac\xf8\x36\x3f\xc8\x4f\xc2\xb4\x5e\x27\x7c\x29\x5f\x92\x0c\xd7\x57\x01\x85\xe7\xab\x83\x87\x30\xa2\x34\x7c\x65\xdf\x89\x75\x60\x36\xee\x88\xe5\x0c\x6e\x33\xa6\x8b\x41\xfe\x52\x54\xaa\xe7\xac\x50\x59\x5a\x0e\xfe\x97\x9a\x33\x91\x4b\xdf\x12\xf3\x10\x9b\xf2\x85\x7c\xb9\x9c\x42\xfc\xdc\xce\xb1\x7b\x68\x9a\xb9\x22\x5f\xf2\x7f\x97\x4a\x04\xa3\xeb\x87\xfe\x3b\xb7\x5e\xb9\xf0\xcb\xba\x94\x5c\x9f\xf4\xc9\xb3\xe1\x5c\x04\x59\x35\xef\xc2\x73\xd8\xf2\x89\xf6\x91\x1f\x66\x2f\x08\xff\x6d\xe6\xca\x9f\xf1\xcf\x74\x33\xaa\xc5\x4d\x6e\x38\xb7\x83\x66\x42\x18\x6a\x6a\x12\x4c\x9a\x0b\x21\xa5\xc5\xed\x14\x30\xc9\xcf\x75\x04\x7b\x49\x09\x21\x69\x45\x15\xb3\xe4\x37\xa8\x19\xc2\xe0\x34\x3c\x6d\x2d\x7c\xe9\x03\xe2\xb0\x7e\x8e\xfb\x19\x00\x49\x37\xf3\x09\x50\xb6\x4a\x78\x38\x1a\xf8\x10\x48\x0d\x67\x8e\x21\x0c\x67\xcf\xcf\x0f\x4d\xed\x70\x82\x24\x33\x23\x99\x63\x51\x3a\xc7\x75\x00\x61\xd7\xe6\x8b\xb7\x51\x33\xae\x32\x6d\x2c\xaa\x0f\x08\xed\xf3\x39\x65\xdf\x2f\x80\x4d\x57\x98\x71\xe5\xb3\x04\x75\x96\x49\x8b\x8b\x9d\x9d\xad\xe6\xa8\xca\x30\x8f\x04\x8c\x4c\x44\x26\x41\x84\x13\x9f\x36\x13\x25\xee\xa4\xa8\x21\xcc\xd1\x9a\x47\x74\xa3\x25\xef\x98\x5e\x0f\xc1\x37\x6a\x8f\x57\x7d\xa4\x9c\x4a\x38\x90\x6b\xc6\x39\x33\xbe\xde\xe0\x38\xe5\x29\x7c\x02\xc0\x2d\xa7\x40\x3b\xbd\x80\x4f\x9b\x2c\xef\xc8\xae\xab\x85\x9a\x28\xa6\x0a\xc9\x2c\x17\xd9\xfc\x56\xcb\xc8\x3c\xe3\x12\xd7\x91\x22\x5b\x76\x2b\xc0\xf6\xab\x45\x2e\x5c\xc2\x44\x91\x4e\x2f\x81\xf2\x2d\xcc\x71\xce\x8c\x65\x5f\xb8\x1d\x30\x6f\xea\x26\x41\x98\x4a\x01\x72\x89\x8f\x29\x10\x31\xdc\xa9\xea\xcd\xbb\x80\x78\x4e\xdb\x41\xd7\x64\xc3\xec\x4b\xe1\x4a\xbc\x86\x67\x45\xfb\x15\xe5\xd8\xed\x90\xf9\xaa\xd8\x69\x2f\x1a\x38\x25\xe2\xe7\x1d\xed\xf8\x02\xd2\xd0\xa8\x04\xaf\x24\xcc\x02\x81\xc8\x77\x7a\xff\xfd\x8f\x1f\x3a\x9e\x06\x6f\x02\x7f\xff\xd3\x07\x92\x67\xee\xbf\xff\xf9\x03\x6c\xdf\xa3\xc2\xd9\x92\x4d\x3f\xe3\x1a\x50\xd0\xa0\x77\x6d\xf9\xa9\x6a\xf6\x30\x78\xe8\xa7\xe7\x0f\x9f\x65\x2a\x3e\xf7\xf1\x12\x77\x97\x51\x07\x2b\xbc\x70\x59\xf1\x0a\xaf\xf7\xdb\x4c\xc7\xd8\x09\x07\xb0\x5f\xae\xb8\x61\x20\xcb\xb9\xc9\xdf\xdd\x6f\x1e\x6e\x55\xf0\x60\xa9\xf3\x26\xc6\xfd\x93\xfc\x7a\x8a\x81\xf0\xd0\x7f\x77\x2d\x35\x81\xd5\xfc\x46\xee\xd3\xb2\xd4\xeb\xec\xf7\xb7\x65\x3f\x8b\xb9\x92\x05\x0d\x40\x97\xe3\x2c\xed\x45\x0c\xa2\xae\x99\xc8\x31\xf0\xb6\x04\x62\x0c\xee\x2d\x7e\x0e\x32\x87\x95\x09\xd0\x54\x6d\xca\x6a\x3d\x95\x9c\x0d\xf2\x05\xd7\x8a\x29\xd9\x86\xbe\x0d\x4d\xd2\x25\x57\x87\xfd\xfc\xc6\x5a\x44\x9e\x20\x89\x72\xe9\xea\x59\x12\xc6\xeb\x05\x2c\xac\x30\x42\xf3\x50\xd5\x39\x4f\xa0\xbf\xb1\x89\x5d\xa3\x61\x4f\xae\xf0\x61\xc9\x72\x2d\x51\x3d\xa9\x1d\x6d\x46\xe6\x1f\x4d\xb4\x8b\x2a\x24\xaf\x93\xfa\x02\x8e\x6d\x97\x53\xf8\x1c\x82\x93\x22\xd0\xaa\xce\xcc\x21\x5b\x45\x7a\x62\x96\xec\x74\x24\x23\x22\x32\xe2\xfb\x78\x6a\x51\x3c\x7a\x77\x28\x3a\xa6\x0a\xae\x90\xe8\x94\x86\xab\xb5\x2c\x60\x26\xf8\x8d\xfe\x39\xbc\x0e\xbc\x23\xac\x7f\xdc\x0a\x75\x9f\xfe\x59\x92\xec\x8b\xb6\xe8\xfc\xbe\x1d\xe7\x2f\x9a\x4d\xe3\xf7\x75\xfc\x1a\x02\x88\x85\xef\x7e\x31\x90\xcd\x24\xdb\xd3\xb6\xae\x5e\x10\x6e\xbc\xf3\x08\xe4\xc4\x60\x24\x63\xe0\x26\x14\x67\xba\x1b\x02\xd2\x41\xdc\x13\xb0\x1b\xd8\xe3\x5a\xd4\xd9\x06\xa0\xce\xc4\x38\x09\x36\x65\x4b\x16\x29\x23\xb4\x1d\xb3\xcc\x5e\xd5\x72\x0d\x9d\xeb\xe6\xd3\xd3\xc0\x9c\xac\x35\x1f\xb7\x1e\x4f\x37\xed\xcd\xc8\xd2\xd3\x2f\x1c\x53\x21\x74\x0a\x56\xd4\x2e\x27\xd2\x13\x6f\x05\xd5\x25\x38\x45\x5d\x2f\xba\x69\x38\x1b\xa8\x01\xf7\x87\x26\x75\xfa\x16\xe2\xf1\xf0\x46\x90\xa7\x5c\xd8\x6e\x19\x81\xfc\xb5\xfc\x4c\xab\x25\xee\xd9\x96\xdd\x7e\x03\x2e\x8d\x03\x30\xf9\xb1\x94\xa3\x1b\x6d\x7b\x20\x6f\x86\x41\x5e\x92\x40\x4d\x0b\x14\x0a\x2f\x80\x05\xd9\x13\xd2\x62\x90\x3b\x2d\x31\x0e\x01\x0a\x2f\x87\xdf\xef\xa2\xb6\x49\x23\xdf\xd3\x12\xd6\x20\x3d\x4d\x4a\xbf\x52\xfc\x1a\x76\xc1\xf6\xb1\x61\xd5\x6e\x47\x88\x47\x44\x13\x3b\x5f\xd3\xa2\x97\x3b\x35\x82\x81\x40\x35\x25\xca\x50\x6f\x51\xb5\xc4\x2b\x75\x44\xd5\x0f\x10\x38\x89\x1d\x5b\xd3\xb8\xae\x12\x66\x4c\x18\x48\xc3\x5c\x3f\xe8\x73\x1a\x31\x2b\x83\xe9\xf7\x16\x45\xe2\x87\x78\x90\xa5\x38\x3c\xf1\xff\x30\xc3\x5d\x33\xd6\xaa\x32\x59\x1a\x5a\x23\x2a\xd7\x14\x7f\xfd\xf6\xc4\x5d\xf6\x78\x70\x4b\xd5\x3d\xdc\x6e\x1f\x16\xc5\x83\x89\x51\x07\xeb\xc2\x0d\x7b\x70\x6e\xad\x22\xe8\x60\x81\x04\x35\x05\x4c\x66\x1a\x77\x0c\x10\xcd\xd3\x3b\x76\x99\x2d\xd9\xfe\x98\x16\x1e\x6f\x58\x01\xc1\xdc\x75\x4d\xba\xa3\x8d\x90\xd0\xee\xce\xc2\xf8\x2c\x44\x2e\x11\x84\x23\x19\xb0\xe7\x20\x6b\x70\xd7\xe9\xce\xee\x19\x1e\x74\x65\xb3\x59\x7c\x7b\x04\x25\x12\xf9\xe5\x28\x42\x02\xb6\xe8\x91\xea\x58\xe3\x04\xe0\x14\x63\xf4\x6d\xff\x47\x32\xc7\xa9\xc6\xa7\x48\xe0\x4b\xec\x71\x2a\x7c\x95\xa5\xcd\x84\xbe\xe1\x9b\x2a\x5f\x3e\x2b\xb8\x2b\x0d\xfc\x9c\x85\xbf\x3d\xd8\xba\x69\x3e\xca\x7d\xf1\x39\x3e\x7d\xce\xaa\xea\x2d\x93\xe3\xf3\xbc\x8c\x73\xe7\x79\x57\x2d\xc2\x30\x59\xcf\x38\x61\xa2\x8b\x05\xcf\x71\x9b\xfd\x5d\x14\xd2\x73\xfc\x4a\xff\x27\x13\x86\x03\x51\xc7\xd2\x4b\x8b\x0f\x70\xcd\xee\xa5\x2e\x57\x1d\xfb\x82\xa6\xd4\x0f\x71\xdc\x96\xfa\xc8\xb1\x41\x4f\xec\xf3\xfe\xd0\xb0\xea\x94\xe5\x47\xa7\x40\x53\xce\x9d\xf1\x1d\x94\x99\xaf\xdd\x79\xb1\xb3\xe5\x4f\x3f\x2f\xcd\x11\x7e\x0c\xe6\x0c\xdd\xde\xf9\x3d\x36\xcb\xf3\xc9\x7b\x2d\xbe\x6d\x70\x80\x67\x47\x79\x4e\x8a\xbd\xee\x89\xee\x5c\x40\x20\x15\xb7\x20\x02\xe2\x1c\xbb\x0b\xba\x87\x10\x6b\xb8\x02\xc3\xb7\x09\x3a\x39\xd6\x50\x57\x7e\x71\xeb\x14\x31\x31\x77\xa2\x5b\x87\x03\x9c\xe0\x98\x20\xf4\xd8\xf1\x77\xb7\xc5\x2f\xd4\xba\x8a\xbc\x60\x7a\x07\x5e\xd0\xc0\x74\x70\x52\x30\x00\x34\xa4\x5c\x12\xff\x10\x47\x0b\x29\x96\x47\xb7\x08\xfa\x40\x7d\x91\xc3\xd1\x79\xbe\xf8\xe8\x7a\xc4\xec\xa9\x6c\x7b\xf8\xef\x8f\xd1\xce\xfe\x83\xb4\x80\xb2\x1f\xa9\x99\x87\x30\xd6\x4b\x08\x23\x0c\x42\xd6\x5f\xb5\x0c\xf0\x01\x7f\x11\xf6\xff\xf8\x54\x15\x7b\xa2\x3e\x9e\x8b\xbb\xea\xfd\x29\xae\x97\x56\x3c\x0e\x28\x8e\xd6\x3d\x98\x4f\x16\x4a\x2a\x5c\x27\xe6\x7b\x33\xb8\xc0\xb1\xf4\xf7\x92\xba\xa9\x96\x99\x09\x39\x51\x57\x71\x80\xfb\x45\xa9\x77\xd0\x0f\x59\x95\xf0\x21\x9c\x58\x8b\x53\x99\x1d\x97\xff\x92\x8e\xe6\x23\xc6\x96\x5c\xfa\x70\xa7\xeb\x5f\x3c\x33\x1f\x11\xc2\x00\x4b\x83\xfa\x80\xb0\xe0\x64\xdb\x66\x9f\x87\xcf\x31\x58\x6e\xd9\xc9\x71\xe5\x4e\x6d\x43\x92\xa8\xea\xc5\x66\x0f\x1f\x1d\x66\x46\x1c\x12\xed\x44\x79\xf0\x89\x53\xa9\xc5\xd5\x3d\x70\x82\xf0\x3c\xb0\x89\x30\x3b\xe8\x2b\x4e\x78\x04\x01\xaf\x46\x4d\x7b\x0f\xfc\x13\x7f\x68\xec\x8e\xd4\xe6\xe5\x02\x67\xe5\x75\x51\xee\x38\x30\x13\x3b\x4d\x2d\x65\xb7\x15\x9e\xff\x85\x56\x7f\xba\xab\x55\x39\xeb\x9e\x6a\xd6\x3c\x30\xf4\x4a\x1b\x16\x2d\x87\xe9\xfb\x42\x6b\x3f\x5b\x6b\xe1\x96\xf5\xb1\x2c\x77\x41\x13\x71\xf7\x03\x8f\x54\x30\xcf\xf8\x30\x7b\x82\xa3\xe9\x65\x05\xbb\xdd\x74\x84\x89\x07\x3b\x61\x70\x5a\x6a\xbb\xd9\x17\xdc\xb3\xc7\x0b\xc4\xf4\x5f\xc4\x96\x84\x0e\xec\x60\x58\xfe\xcf\x02\xce\x0d\x9f\x20\x63\xc9\x13\x55\x89\xaf\xd1\xe0\x18\xd7\x5f\x77\x72\x5d\xb3\x02\xed\xf1\xee\xc5\xee\x24\xe9\x84\x1b\x89\x03\x65\x5f\xbd\x90\x58\x53\xf1\xd0\xe4\xf1\x9c\x05\xc9\xc7\x0b\x0c\xfc\x22\xa3\xba\x62\xbf\xc8\xa0\x83\x42\x45\xc7\xea\x39\x9b\xac\x43\x29\x2f\x9c\x5a\xbe\xd5\x58\xe1\xfe\x5a\xa6\xa1\x36\x34\x2e\xea\xf0\x02\x99\xe6\x1e\xd6\x4d\x70\xd1\x5b\x9c\x35\xb1\x17\x85\x1d\x99\xc5\x63\x3d\x88\x78\xa2\x78\x51\x61\x65\x20\xc5\xd8\xde\x62\xa2\x0c\x2e\x0d\x6f\xf7\xb4\x75\x6e\x2a\x9a\x74\x48\x2c\x1a\x09\xef\xf2\xfa\x06\x31\xc6\x68\x01\xd0\x3e\xba\x62\xbe\x9b\xfe\x65\x5d\xd6\x08\x04\xc5\x01\xe9\x94\x11\x2d\x16\xec\x63\x5d\xd5\x1a\x2b\xe7\x50\x9a\xe7\x5b\x5d\x6c\x84\x6d\x85\xde\xea\x26\x3d\xc8\x09\x6c\x8a\xa0\x73\xbc\xd2\xba\x5d\xb9\x20\x99\x78\xc6\x36\xcf\xb6\x46\x88\xd8\xd4\xcc\x2a\x77\x1e\xd8\xba\x91\xe0\xe4\x94\x6d\x27\x01\x5a\x14\x25\xa1\x69\x40\xf7\xe0\x11\x7a\x86\xa0\x53\x52\xb0\x61\xf8\x2e\x19\x18\xfc\x55\x1c\xae\x2a\x66\xd7\xa9\x1e\x24\xde\xe5\xc7\x7a\xb4\x0f\x61\xac\x22\x69\xfa\x0b\xa2\xf0\xb0\xaa\x99\xe9\xf3\x4f\x9c\x12\x3e\x01\xd2\xed\x1a\x71\x81\x79\xab\x9f\x63\x20\xd1\x96\xb8\x27\x2f\xe5\x6b\x0c\xb2\xd3\x20\x08\x2e\x1c\xc2\x18\x64\xde\x14\xac\xff\x3c\xa3\x7f\x63\x21\xda\x05\x4c\x35\x49\x1a\xc4\xb9\xe3\x8b\x77\x72\xc4\xc0\x19\x84\xee\x72\xb3\x94\x4b\x94\xec\x19\x01\x75\x4f\x3c\x64\xd8\xf1\x4a\x62\x6c\xf1\xc1\x3f\x2a\xd0\xeb\x00\xf0\x74\x45\xe4\x10\xb0\xdf\xb2\xe5\xe9\xb2\x8b\x33\xe1\x9d\x89\x61\x9f\x60\xb2\xb2\x7e\xbd\x12\x19\x04\xd3\x00\xe5\x56\xc2\xbc\x9c\xf0\xd6\xc2\x7a\xa1\x19\x91\x6d\x03\xda\x49\x68\x17\x76\xe2\x26\xa2\xc6\xbd\x64\x03\x11\x19\x56\x62\x53\x06\x7e\x57\x76\x1d\x09\xc4\x06\x84\x8d\x7b\xa4\x3e\x6b\x8c\x20\xf1\x56\x1b\x41\x78\x13\x37\x80\xcc\x3b\x7c\xb8\xcf\x28\xb8\xd7\x15\x5e\x46\xeb\x21\xe0\x28\x51\x24\x5b\x74\x54\x03\xb6\x3c\xe6\x68\x23\x4f\x99\x53\x3c\x7e\x84\x4f\x67\x3e\xd2\x55\xce\x3e\x2a\xc1\xea\xe6\x6d\x9a\x84\x23\x91\xa2\xdb\x72\x95\xb7\x85\xdd\xd6\x56\x4e\xc3\x9e\xb7\xe0\x28\xe1\x65\x9c\x7c\x43\xca\xb7\x56\x41\x9c\x91\x40\x3e\xf2\x99\x38\xcd\x37\xcb\x38\x66\x6f\x60\x69\xb1\x10\x36\xc6\xf7\x1c\x88\xb9\xec\x77\xcc\x6f\x84\x79\x59\x3b\x18\xf2\xf7\x7f\xba\xbe\x7c\x73\x92\x7e\x7e\x78\x38\x1c\x1e\x72\xf1\x87\xfb\x76\xc3\x37\x02\x0a\xbe\x0d\xfe\x3f\x2e\x5e\x9f\xa4\x65\xbf\xf8\x61\x46\x8a\x3a\xd8\x90\x5f\xdd\xea\x8c\x03\x93\x17\x53\x17\x8b\x8e\xff\x38\x7b\xd2\x15\xa3\xb1\x42\xc3\x20\x22\xe1\x06\xc9\xb3\x67\x27\x7f\x3a\x99\x72\x02\xe8\x95\xc3\x72\xd1\x96\x38\x38\xc3\x47\x90\xb1\x21\x9d\x60\xea\x16\xe0\x10\xa4\xa2\x76\xb4\x1b\xaf\x16\x1a\xab\x74\x00\x62\x76\xe2\x33\x58\x88\x5d\x26\x26\xce\x6d\x2b\x1c\xf0\xa5\x5b\x37\xfb\x4d\x11\x73\x4c\xc2\x99\x4e\x44\x59\xfc\x3a\x2c\x0c\xff\x13\x04\x36\x7c\x92\xfe\x89\x2d\x45\x3c\x51\x42\x5b\x9c\x65\xb4\x05\xe0\xd9\xb0\x30\x22\xf0\x04\x82\x31\x0d\x40\x22\x0b\x99\x60\xee\xf3\x9c\x70\x3e\xaa\x44\xf5\x37\x3e\x71\xeb\xd3\xad\xd3\xe7\x40\x6b\x52\xdd\xb8\x48\x6c\xa7\x9b\xce\x36\xbc\x88\x4f\x8b\x04\x3c\xcd\x57\x66\xc4\x9a\xc2\x43\x2a\xce\x37\x93\x28\x0a\xf8\x23\x40\x99\x8b\x84\xde\x40\x7e\xed\x82\x31\xa5\x1a\x72\xaa\x1c\x66\x78\x1f\xa9\xf3\xb2\xc7\x1d\xb5\xa9\xb5\x28\x1a\xb5\x9b\x35\xbf\x7a\x8c\xbf\xe9\x0e\x27\x92\x89\xb8\x2b\x47\xdc\x03\xac\x23\x96\xb9\x0e\xc3\x5d\x6c\x28\x6e\x29\x6f\xf2\xa2\x8c\xf2\xa6\xd1\x76\xad\x80\x83\x36\x46\xbb\xa4\x4a\xc7\x63\x99\xdf\xb7\x70\x4c\x20\x90\xf3\xdd\x4c\x47\x69\x97\xc7\x71\xe7\xe3\xdc\xa5\xc5\xe2\x95\xad\x52\xf0\xdd\x78\x89\x32\x42\x64\x1d\x85\x1c\x95\x05\xb5\xf8\x34\x88\x41\x70\x55\x89\x7d\x33\xcd\x8f\x71\x74\x51\x2b\x14\xa1\xa5\x56\x73\xba\x97\xcb\x01\x83\xcc\x61\x70\xe6\xe1\xca\x26\x59\x4d\xe2\xc6\x9f\xc9\x57\x88\xad\xdd\xa6\xb9\xb5\xbb\x6c\xe7\xf8\xa5\x97\xc4\xc3\x91\x79\x30\x1d\x94\x87\x0c\x8c\x2f\x4d\x16\x57\xf7\xd7\x20\x5c\x98\x8a\xb8\x35\xeb\xbb\x28\x4a\x30\xa1\x1a\x13\x19\xbc\x27\xba\x37\x71\x1d\xca\x41\x0d\x2f\x6e\x9d\xbb\x16\x8e\x5c\xdc\x8a\x8b\x86\x97\xb7\x82\xa2\x5f\x71\x79\x2b\x46\xd2\xf8\x6a\x96\x1f\xea\x57\xdc\xce\x9a\x1a\xf4\x58\xae\x9d\x42\xfc\x44\x81\x29\xe9\xb6\x08\xc7\xf6\x15\xb7\xb4\x06\x9a\xed\xd7\x08\xb8\x53\x3d\xf1\x28\x09\x90\xfb\x25\x8b\x6f\x51\x2d\x97\xb3\x79\xdb\x1c\x3a\xbe\x0a\x85\x48\xc7\xcc\x65\xf9\x77\x7a\x8d\xdf\x02\xc2\x07\x5e\x20\x0a\xf9\x90\x44\x3d\x6b\x7e\xa2\x87\xce\x92\xc8\xa2\xc4\x28\xa2\xeb\x39\xe5\x20\x88\x2a\x07\x7e\xe6\x4b\xdd\x92\x33\x93\x22\xb4\xd1\x1d\x32\xfe\xc2\x25\x2e\x58\x9f\xd9\x58\x8a\x42\xd7\x9c\xa2\x60\xfc\x69\x08\xb7\x5d\x09\x6e\x0e\x7a\xcd\x1e\xe2\xab\xb7\x1c\x81\xb0\x0c\x8e\xc0\x88\x18\x2a\xc8\xa7\x1e\x24\xbc\xac\x41\x10\x86\x4b\x0f\xa1\x08\xc2\xa2\x7f\xf6\xea\x8d\xfc\x84\xef\xa2\x06\x1d\x80\xf3\xe2\x73\xf6\x63\x37\x8f\xc8\xd9\x94\x67\xa4\xe5\x89\x87\xa9\x98\x39\xec\xcd\x0b\xfc\x72\x10\x45\x9b\x2f\x71\x0c\xc4\xff\x5d\x2a\xc9\xc0\xbe\xd8\x55\x5b\x3e\x1c\x16\x23\xe4\x08\xaa\xaf\xf1\xe1\xd2\xf5\x18\x87\xff\xb9\xb4\x9c\x95\x90\x00\x87\xf7\x0b\x8f\x11\xf3\xaf\x24\xba\xbb\xdf\xa5\x5d\xc5\xb6\x53\x25\xd0\x41\x83\xa0\x0e\x1f\x47\x0f\xb4\x83\x57\x20\x0c\x82\x76\x68\x77\x1f\x8b\x36\xeb\x5a\xae\x84\x58\x1e\xd4\x56\x0b\x7c\x12\x95\xf1\xc1\xf4\xcc\x1a\xec\xfd\x67\x29\x1f\xbb\xff\x22\x74\xcb\x65\x51\x80\x6f\xa8\xb2\x39\xa8\x5b\xcf\x86\x13\xe1\xcc\x99\x8a\xb3\x14\xbf\x1d\x94\x49\x86\x4c\x2e\xd9\xb6\x08\x84\x43\x21\xa0\x70\x5b\xb9\xc8\xdb\x8f\x1c\x67\x18\xae\x05\x56\xc1\xa1\xd5\x60\x15\xfc\x3f\x9c\x31\x8d\x6f\x7d\x25\x5f\xa3\x06\x63\x77\x40\x94\x86\x3d\xc0\x98\xa9\x2b\xc0\xd2\xac\x88\x64\xaf\xe5\x4b\x5e\xea\x18\x52\xc6\xf8\x66\x22\xe5\x3d\x1c\xce\x5b\x00\xef\x10\xfd\x97\xf2\xff\xfc\xaf\xff\xcd\xe6\xd2\x86\x76\x4b\x5c\x23\xd6\x08\x56\x7e\xde\xed\x32\x81\x8f\x92\xfe\x10\x3c\x3a\xe8\x88\xa0\x3f\xd5\x9b\xb9\xf4\x35\xa2\x51\x0e\x55\x6c\xf4\xcd\x0e\x16\x03\x22\x87\x92\xe8\xc9\x1c\x47\x8f\xc3\x3a\x8c\xa8\x32\xdd\x23\x5c\x04\x1d\x9b\x5c\x4c\x9a\xc4\xa5\x50\xa2\x9b\xde\x52\x92\xf7\x4d\xbb\xfa\xe0\xe3\xac\xb9\x89\x88\x62\xac\x41\x33\xf4\x30\x86\xb0\x17\x4c\x7e\xe3\x87\x2a\x44\xd3\x96\xa0\x8e\x70\x08\xb0\x8b\x4b\x12\xf7\x48\x6e\xc5\xbb\x4a\xc2\x86\x1e\x74\x76\x35\x5e\xe3\x7d\xe2\xf2\xf9\x44\x7c\x82\xf0\xce\x3d\x29\xda\x2a\x1e\x4b\x3c\x27\x3d\xe9\x8e\x5e\xbc\x81\x3b\xbb\xd9\x36\x4d\x0c\x2c\x12\x3d\x82\x65\x17\x6b\xfe\xe0\x90\x5b\xfc\x1a\x08\x93\x9f\x1c\x9e\xbd\x42\x02\xad\x6b\x24\x20\x9c\x1c\x9c\xc8\xf9\x7f\x82\x20\x3e\x6a\x80\xe3\x54\xfd\xd2\xf4\x41\xa0\xa0\x28\x60\x71\xe0\x68\x8f\x00\x62\x51\x14\x62\xae\x1c\x88\x9a\x38\x7d\x1f\x85\x95\xc3\xcc\x20\xf5\x2e\xe8\xe8\xbe\xd4\x83\x0d\x4e\x5c\x34\x0a\x05\xec\xd8\x4d\xaa\x8e\x95\x4a\x32\x08\x6a\x56\x47\x0e\x48\xdd\xcc\x37\x13\x2c\x99\xb5\x1c\xcd\xfb\x62\x88\xcc\x3f\xa7\xc5\xf3\xab\xc0\xf3\xd9\x43\xd5\x75\x81\x90\x80\x32\x3e\x39\xdd\x90\x82\xb0\x89\xd4\x3c\x54\xc4\xa2\xdc\xaf\x47\x6e\x0c\x8d\x03\x00\x7e\xfb\x9d\xa1\x71\x1d\x77\xdf\x1a\xfa\x47\x4f\x85\xa7\x83\xfb\x84\xb6\xac\x41\x94\x1f\x97\x35\x15\xee\xe7\xdf\x71\x46\x4b\x24\xa5\xdd\x18\xad\x6d\x17\xc5\xe7\x48\x19\x77\x86\x78\x3c\xf0\xa2\x8b\x79\x32\x0a\xeb\x73\xec\xc4\x37\x0a\x77\xf7\x15\xd2\x5e\x3c\xe2\x40\xd0\x8b\x7a\xe5\x10\xc2\x76\xbe\xf8\x9e\xf2\x31\xed\xcd\x0b\xae\x11\xcf\x18\xea\x78\xa3\x4b\xb3\x18\xe9\x9d\x45\xe2\x2b\xb4\x61\x37\x9d\x55\x2f\x38\x9a\x53\x43\xbf\x5c\x9e\x15\x53\xf5\x97\x6f\xd0\x1e\x39\xfb\xb8\xeb\x2a\xed\xb0\x97\xcc\x6b\x9c\x9b\x6d\xd8\xc9\x3b\x4b\x84\xdb\x6c\x7c\x7c\xfe\xef\xb9\x5e\x3b\x7d\xbe\xc0\x3a\xe0\xc1\x4c\x5f\xd8\x94\x0d\x7f\xde\xa0\xc0\x3a\x84\xe1\x4b\x94\x0c\xcf\x70\x3d\xe6\xf6\x78\xca\xa5\x1f\x76\x9a\x43\x05\x08\xf7\x9e\xe9\x71\x9a\x45\xd6\x18\xa4\x7b\xd6\x07\x37\x37\x3d\x30\xf4\x40\xf2\x1b\xe2\xce\x64\xce\xb0\x7c\xdc\x46\xec\x55\x6a\xa9\xee\x88\xe7\x02\x1f\x2e\x9d\xb0\xb6\x28\x71\xdd\xf2\x4c\xbe\x5c\x8e\xea\x5a\x1a\xc2\xd2\x77\x42\xc2\x13\xc2\x13\x3c\x48\xd5\x5d\x4f\x71\xcd\x37\xce\x68\x52\x6e\x77\x3c\x85\xb9\x8b\xd7\xc5\xd3\x24\x80\x2a\x6e\x6a\xaf\x20\x21\xff\x32\xac\x4b\x42\xb5\xeb\xee\xf9\xa6\x39\x24\xb2\x75\xce\xe0\xdc\x2a\xe1\xf4\x34\x25\xee\x92\xa4\xb1\x8c\xa2\x31\x1b\x52\xb9\x10\xab\xb7\xfa\xc7\xf9\x83\x2b\x98\xd8\x39\xdc\xe5\x4b\x8b\x8e\xc9\x02\x28\xa4\x06\xdc\x7a\x63\xb9\x3e\x24\x8e\x99\xd6\x0a\x01\xd6\x37\x2b\x92\x68\xd4\x6e\x08\xf1\x35\x0d\x73\x3f\x47\xcd\x9d\x98\x7d\x0b\xc1\x92\xd4\xf0\x26\xd1\x6e\xa4\x15\x79\x8e\xc2\xf5\xc3\xbd\x75\xe2\xfb\x11\x42\x7c\x4d\x3f\xb8\x95\x47\xf0\xc7\xe4\x49\xbc\xab\x3f\xa4\x1c\x6a\xec\xa7\xe8\x20\x7f\xd8\x45\x7f\x07\xf1\x26\xd8\xaf\xe1\x3c\x52\x0c\xe4\x0f\x36\x27\x8f\x37\x4e\xc9\x91\x43\xde\x09\x11\x41\x7c\x7c\x26\xc3\x5d\x7c\x79\x89\xf3\x4c\xa3\xa4\x03\x0d\xbc\x77\x3c\xd8\xd4\x2e\xa4\xfd\xf2\x22\x1d\x64\xac\x0b\x95\xeb\x24\xf3\xcb\x1b\xaf\xc0\x59\xa0\x07\x91\xef\xc2\x2d\x03\x02\x9e\xcd\x64\x21\xa1\x82\xdd\x1a\x67\x56\x17\xb4\x3a\xae\xcc\xb1\x6a\x40\x39\x16\x3d\x86\x33\xde\x19\x4a\x67\x81\xb1\x95\x99\xf2\x89\xc9\xac\xce\xb5\x00\x50\xdb\xfc\x36\x72\xde\xe1\x00\x1d\xac\x91\x45\xab\xe6\xf8\x8e\x3d\xee\x8a\xdf\xab\x25\xfe\xae\x23\x98\xa3\x46\x99\x59\xb8\xd4\xc7\x04\xe2\xc9\x6e\xd5\xe6\xec\x87\x62\x73\xcd\xcc\x22\x20\x05\x54\xf8\x8b\x1b\xa5\x7b\x0c\xc9\x73\x03\x9c\x1e\x53\x45\x0f\xee\x62\x0a\xdf\xd0\x01\xb0\x8d\xbb\x7b\x00\xb6\x20\x17\x15\xa8\x1b\x01\x0b\xb8\xab\x23\xfa\x8a\xd1\xd7\x77\x04\x7c\xe3\x2b\x3b\x72\x62\xbd\xd0\xd8\x95\x45\x31\xb9\xfe\xef\xea\xdf\x40\xdd\x01\x71\x46\xc1\x51\x07\x04\x1f\x3d\xb1\xe9\x88\x3e\x70\x63\xb3\x6a\xe1\x30\xa1\x6e\x75\xba\x9d\xf9\xaa\x6a\x9a\x42\xa8\xb2\x75\x1f\xba\xde\xc5\xf7\xc3\xd9\xeb\xab\x6f\x6f\x55\x24\xe1\xc1\xc5\xd7\xd3\xbd\xc7\x8d\x28\x61\x38\x02\x96\x80\xb9\xef\x81\xf6\x0f\x47\x9e\xf2\x95\x17\xb6\xe4\x18\xac\x8b\x5e\x7c\x1d\xc7\x2e\xbd\x33\x6e\x6c\x1c\x2f\x77\x18\x38\xb9\x93\x30\x29\x2b\x93\xe5\xec\x11\xa3\x44\x3d\x8d\x98\xb1\xde\x12\x0e\xb6\x78\x4f\x6e\xc1\x21\x03\x9b\xba\x12\x9f\x96\x0b\xf9\xa2\xb1\x27\x6c\x8a\x51\x3b\x0c\x87\x1a\xf2\xd7\xad\xfc\xe8\x60\x5c\x64\x1b\x93\x0a\x02\xf2\x1d\xe4\x07\x71\x4c\xe1\xca\xde\x5a\x64\x56\x5f\x03\x7a\x02\x13\xe6\x3e\xe8\x99\xf6\x03\x95\xee\xbb\xa9\x16\x33\x3e\x18\x4d\xf5\x58\xd8\x3d\xc0\xc9\x4c\x82\x83\xf5\x15\x1c\xac\x4f\x9e\x34\x3b\x09\x12\x22\x9c\x87\x19\x3b\x17\x16\x2d\x4a\x8e\x37\x3e\x9f\x8e\xbb\xf8\x71\x12\x5f\xc0\x8f\x12\xf2\xc5\xa8\x15\x33\x60\x87\x69\xe6\x22\xe7\x53\xcc\x59\x2e\xaa\x3d\x0e\x8d\x15\x66\x89\x87\x61\x94\xa4\xcf\x26\xc5\x23\x11\x9b\x6a\x98\xb6\x69\x56\x1c\xbe\xd8\x1e\xc9\x0b\x86\xa7\xb2\x73\x5c\xa7\x79\x4b\x47\x55\xe0\x4a\x4e\x98\x82\x73\xad\x3e\xef\xe2\xd2\x58\x82\x61\x82\x5e\x67\x1c\x01\x92\x4e\x9d\x2f\xd6\x18\xff\x6c\x8a\x90\x4c\x35\x76\xc4\xa4\x2f\xc8\x4e\x40\xca\xd3\x56\xa9\x3d\x64\x35\x09\xc3\x4f\x88\xe2\xdd\xb0\x20\x97\x6f\x1f\xd4\x99\x46\x0f\x6b\x34\xf0\x07\x5f\x45\x70\x91\xc2\xd2\x4b\xac\xb8\xee\xce\x42\xc1\x2e\xc6\x97\x61\x35\x3a\x99\x96\x14\x89\xe3\x8e\xed\xcc\xd7\xac\x1b\xa3\x3a\x7c\xe4\x5e\x57\xeb\xbc\x9c\xc0\xd2\x8d\x79\x84\x38\x22\xf9\xaa\x3a\x06\xbd\xf4\x10\xae\x9a\x6f\xef\x2a\xac\x67\x1c\x4d\x00\x16\xb9\xa8\x93\x11\x5b\x33\x90\x2f\xd4\x30\xe8\xe2\x64\x15\xdf\xd0\x49\x7e\x6b\x6f\xb5\x70\x2f\x84\x9d\x73\x54\xca\x76\xce\x71\x0b\x78\x0f\x2b\xe5\x2d\xcb\xa6\x8e\x2d\x70\xd3\xc5\xef\xea\x19\x3a\xc4\x3a\xf7\x54\xf5\xc7\xfa\xd6\x96\xdd\x6d\xbd\xc8\xf0\x50\x5c\xb7\xd6\x83\xca\xb7\xa5\xd8\xca\x1f\xcc\x28\xed\x51\xae\xc1\x67\x4a\x1c\xe9\x75\x0f\x24\x6c\xef\xf7\x0b\x4a\x87\xff\x30\x6d\x71\x0f\xc1\x13\x51\xda\x04\x38\x12\xcf\xfa\x1f\xee\x6c\x68\x30\x96\x80\x21\x06\xb8\x6d\xd1\x15\x7e\x68\xf6\x2b\x46\x10\x1c\x92\x87\xc3\x60\x32\xd0\xd5\x0f\x5e\x11\xc6\xa7\x67\xc4\x7d\xcf\x0e\x0f\x1c\x67\x94\xbd\x39\xd4\x4b\x4a\x37\x34\x7b\x08\x50\x8d\x47\x47\x06\x14\xb6\x7b\xc7\x0c\x3d\x88\x7a\xf1\xe5\x31\x86\x9b\x90\x3c\xbd\xba\xdf\xe1\xe1\x6d\xf7\xe6\xea\x3b\xfc\x0e\x99\x82\x84\x0c\xce\x56\x4d\xdb\xd0\xf4\x48\x68\x06\x0d\x23\xfc\xc2\xd2\xba\x89\x02\x30\x81\xdf\x66\x7b\x0d\xa7\x61\x65\x2e\x90\x4c\xf2\x03\xc7\xd6\xf0\xa5\xfa\xa6\xcf\x37\x56\x86\x2d\x90\x0b\xb5\x5b\xdf\x70\x86\x95\x3a\xb5\x8c\xa0\xa4\x96\x69\xe6\xec\xaa\x8f\x22\x0a\x7c\xa9\x29\x01\x2c\x8e\x39\x38\xde\x01\xa1\x6b\xbf\xcb\x78\xa8\xb8\x98\x2d\xc9\xe9\x6b\x24\xa7\x37\x9c\x3c\x6e\xc1\x7a\xe5\x8a\x0d\x3a\x75\xac\x1c\xdf\x81\x1d\x96\x79\xce\x57\x65\x87\xf0\x86\xb9\x75\x99\xef\x46\x78\x7b\x49\x89\x23\xac\x01\x72\x8c\x00\xc0\x1e\xc7\x42\x58\xaa\x2a\xa0\x58\x85\x25\x5e\x51\xd2\x31\x68\x78\x00\x0c\xe1\xf1\x24\xf6\x91\x12\xba\x67\x0f\x7b\xa5\x67\x36\xa3\x5e\x35\xf3\xbf\xe1\x1d\x67\x85\xbe\x94\x9f\x01\xd4\xbc\x69\x7a\x7e\x55\x6e\xc7\xe2\x16\x3c\xb3\x04\x4d\xcf\x2c\x9d\xc5\xad\xc5\xc7\x11\xa6\x04\x7a\x8c\x2a\x81\x3e\x8e\xab\x2d\x07\xab\xa2\xb6\xda\xfd\x82\x1f\xbc\xee\x5c\x83\x17\xd7\x1c\xe4\xea\xda\x65\x8c\x5a\x1c\x95\x0c\x29\x74\x58\x78\xaa\xe5\x05\x09\x11\xe5\x64\xd3\x67\x9c\x73\x67\xdb\xa3\xb2\x61\xe3\xa3\xe2\x53\x2b\x05\x51\xf2\xd9\xe8\x3c\xdf\x2f\x3e\x96\x3d\x5f\xf7\x59\x67\x38\x61\x0e\xeb\xba\x32\xb0\xf4\x19\xc0\xd2\x97\x04\x96\xde\xc8\x63\xcc\xe3\x5a\x69\xd3\xd9\x96\x7d\x0e\x4f\x81\xa0\x96\x17\x67\x34\x03\x9c\x5c\xe4\x53\xa5\x60\x9d\xc9\x54\xca\xd6\x55\xc8\x82\x4f\x50\x83\x3e\x13\x2d\x82\xf7\xa9\x03\x99\xaa\x8d\xd5\x00\xd9\xfd\x16\xb7\x0b\x09\x01\xcf\x8a\x01\xf5\xe1\xad\xa4\x04\xb0\x88\x65\x4b\xb0\xc6\x23\x71\x28\x8e\xa0\xb6\x04\x7e\x13\x33\x4a\xe1\x60\x1e\x58\x18\x17\xc1\x5d\xe5\xfb\x6e\x12\x70\x97\xcb\x62\x3a\x0a\x69\xcd\x1b\xa0\xb5\x3c\x84\xd3\x46\x3b\x41\xa5\xb0\x15\xd1\xd4\xc4\x6f\x5e\x43\xc2\x12\xcd\xc1\x47\x09\x6e\xf3\x16\x10\x96\xd3\x14\xf6\x8b\x8f\x84\x2a\x98\x48\xaf\x90\x59\x25\xc5\xe4\x2d\x3c\x80\x63\xdf\x96\x17\x85\x12\x90\xb4\xe8\xc5\x52\x4d\xb3\x6b\xa9\x2e\x24\x8a\xa6\x87\x57\xde\xb5\x46\x08\xa6\xe6\xb2\x12\x3f\x06\xa7\x9e\x2b\x02\x28\x01\xda\xe4\x24\x69\x13\x16\x86\xd2\x60\x52\x78\x5c\xc1\x6b\xe8\x13\xc1\xd8\x8e\x3e\x26\x61\x61\x38\xbf\xf2\x3d\x09\x3f\x9a\x00\xc7\x38\xe8\x8e\xb1\x5b\x75\x59\x88\xce\x61\x14\xcf\x7c\x80\x5e\x06\x57\x0c\x47\xa0\x38\xf9\x0e\x9f\x3f\x0d\x8e\x1f\x0d\xe5\x38\xe8\xc3\xbb\xcd\xea\xc8\x37\xaa\x21\x28\x13\x3c\x76\xcd\xee\x93\x72\x8d\x73\x0a\x45\xde\x3a\x68\x18\x72\xef\x72\x00\xfa\xce\xa3\xa5\x18\x17\xd3\xcf\x05\xfd\x3f\x79\x31\x29\xec\x80\x7f\x37\xe9\x48\xfb\xff\x21\xef\x26\x0d\x2d\xb3\xee\xe1\x24\x3c\x0c\x33\xc3\xc5\x97\x78\x1d\x47\x07\x57\xd1\x7a\x46\x89\x70\x9d\x22\x21\x3e\xca\x47\x92\x37\xfb\x9a\xc5\x57\xac\x36\x58\xa2\xc3\xf6\x82\xbb\x4a\x51\x6b\x52\x62\x1c\x1d\x36\xee\x82\xa4\x8c\x4f\x8b\x24\x5d\xad\x11\xa9\xc6\x06\x2c\xd5\x7a\x34\x83\x49\x42\x8f\x68\x2c\x6d\x18\xca\x0e\xc6\x24\x5d\xda\x83\x2e\xc7\x8b\x3b\xea\xb5\x14\x92\x20\x0a\x76\x0d\x6a\x92\x99\x28\x60\x30\x14\x49\x09\x43\x49\x49\x8a\x3c\x14\x82\x97\xf3\xe4\x4b\xd3\xc7\x5e\x18\x41\x8f\xb5\x9a\xb8\xe9\xa0\x52\x00\x4d\xf2\xaa\xa0\x2f\x43\xff\x54\x49\xc5\xdd\x20\x76\xa6\xed\x7a\x4d\xd9\xe9\xab\xa3\x1c\x1e\x4a\x52\xa0\xec\x17\xf0\x72\x63\xdd\xfe\xfc\x4d\x98\x1e\x3c\x2e\x82\x5c\xff\x44\xbc\x8c\x8b\x37\x97\xb9\xf8\xec\x60\x53\xd1\x00\x7c\xcf\xd8\x6f\x47\x7b\xdf\xf7\x6d\x35\xdf\xf3\xf9\x98\xfa\x03\x30\x51\xcb\x41\xba\xcb\x1b\xc1\x76\x7b\x73\xb7\xbf\xd6\xaf\xe3\xb0\x83\x77\x4b\x07\x70\x12\x1b\xca\xfa\xf7\x1c\xbf\xac\x0a\x98\x97\x1d\x80\x1c\x3a\x45\x10\x5b\x66\xae\x59\x97\xf3\xf2\x20\xde\x54\xa4\xd7\xa7\x9a\xd3\x6d\xfb\x9d\xc5\x53\xbd\xbe\xb8\xb9\x3a\x3e\x7d\x0c\xa9\xf3\x00\xc0\x60\x32\x38\x4b\x27\x04\x59\xc1\xac\xe8\x1b\x3c\xbd\x3c\x8f\x22\xef\xcf\xdc\xbc\xbe\xa6\xcf\x45\x7b\x2b\x27\x4d\x5a\xc7\xc7\x6a\xc7\x60\xfa\xe0\x1d\x57\x45\x29\x80\xfd\x33\x52\x6c\xe2\xf9\x48\x82\x54\xbc\x6a\xe1\x66\xe2\xea\xf4\x02\x5a\x1f\x25\x85\xa4\xa4\x4d\x23\xc6\xae\xbd\x94\xed\x3b\x41\xe3\x6c\xf4\xa5\x6c\xb5\xc8\xea\x62\xe0\x97\xde\xd8\xbb\x78\xd7\x59\x3d\x41\x18\x89\xc1\xba\xd2\x37\x7d\x74\x1a\x46\xbb\x5d\x6c\x1a\xc6\x4e\xe6\x76\xbd\x70\x41\x85\x9b\x71\xd4\xc0\x57\xbe\xc0\x13\xd6\x15\xec\x5a\x77\xf4\x75\xf2\x1e\x7a\x1c\x4a\x37\x04\xcc\x64\x81\x5b\xdc\xee\xa8\x62\x1f\xa6\x7d\x54\x20\x0a\xe0\x1d\x15\x9a\xf6\x33\xb8\x2b\x74\xb7\x58\x1d\x4c\xdb\x77\x46\x75\xd5\xf6\x63\xdb\xba\xc2\xe6\xbb\x9d\xe3\x37\x41\x44\x75\x90\x48\x00\xf2\x49\x56\x4d\x00\x41\x04\xd7\x0d\xea\x91\x0b\x31\x21\x10\xdf\x8b\x51\x80\x21\xd3\xd2\xe4\x66\xb9\xe4\x80\xa8\x1c\xb6\x48\x03\x36\xf0\x4f\x0e\xf9\xe1\xda\x77\x2f\xb9\x37\x7b\x51\xe7\x79\x4c\xe7\x7a\xf7\xeb\x2d\x12\x59\x92\x33\xf0\x76\xef\x5e\xff\x7b\xbb\x87\xb6\xda\x86\x59\xda\x10\x67\x85\x8d\x60\x0b\x6c\x1b\x3c\xe5\x8e\x85\x1e\xec\x7f\x6f\x1b\x3c\xe8\xde\xaf\x1d\x82\xd9\xa6\xbf\xc8\x24\x0e\x6a\x50\x06\x27\x0a\x0b\xf8\x09\x8f\x0b\x51\xbf\xc7\x25\xa8\xdf\x47\xc0\xe5\x94\xd9\x36\x8c\x6b\xfc\x12\x56\xe3\x7a\xcc\xbe\x6b\x4a\x45\x36\x60\x49\x1b\x3e\x4c\x19\xe2\xa0\x98\x7b\xc2\x38\xb7\x53\x88\x49\xd2\x20\xc8\x70\xd7\xf3\xa9\xe1\x4e\xe3\x53\xc3\x3d\xd3\xa7\x6a\xc7\x06\x3d\xe8\xba\x8d\x4d\xc4\xf5\xf5\xeb\x78\xb6\x7d\x6e\x10\x7c\x9d\x9d\x5f\xee\x71\xfc\xb2\x15\xa9\xb0\xf7\x52\xbe\xfd\xf4\x43\x50\x42\xb1\x19\xe2\x4f\x53\x87\x75\x74\x7f\x6c\xaa\xbe\xfc\x79\x50\x85\x31\xcb\x68\xc9\x54\x8b\x23\x88\x31\x46\x19\x3f\xd5\x94\xca\x9d\xd1\xaa\x2d\x6d\x7b\x3a\x0b\x9c\x38\x47\xc4\xec\x99\xad\x23\xe5\x90\xd1\x5a\xc7\xd8\x67\x3e\x7c\x5c\x3f\xd3\x87\xdd\xd5\x79\xfe\xad\x55\xf3\x0c\xc9\xbe\x87\x12\x75\xcd\xa2\xb0\xa9\x8b\xb2\xf5\x0f\x41\xd4\x5e\xd5\xf0\x6a\xb7\x22\xf6\xce\xbb\x86\xdc\xe1\xfe\xbf\x09\xdc\x52\x0d\xcc\xde\x8b\x83\xc9\x61\xf4\xb4\x1c\x6c\x0d\xfa\xb2\x9c\x31\x06\xb9\x43\xc5\x0e\xe4\xd9\x46\xed\xeb\x72\xcf\x0a\x6e\xe4\xe9\x6b\x18\xd4\x5d\xbf\xa3\xf7\xd6\xa3\x42\xf2\xcc\xbb\x7b\xd3\x79\x5c\xd8\xae\x5f\xba\x49\xb4\xeb\x4d\x93\x93\xf8\xc7\xbe\xdc\x53\xe5\xf2\x10\x3b\x87\x93\xa6\x9f\xe9\x6b\xfc\x74\x73\x25\xf7\x96\xa0\x6e\xb3\xb7\xf4\x13\xbb\xc9\x04\xad\x9b\x52\xdc\x2c\x7d\x71\x5f\x0e\x90\x1c\x72\xe6\x0b\xfc\x9e\xee\xa0\xc2\x8e\xc5\xcc\x38\xdf\x08\x8a\xe8\xbc\x09\x88\xe9\xe5\x6f\xaf\x2f\x07\x90\x13\x0b\x54\x73\x26\x16\xb4\xe6\x4c\x2c\x5f\x39\x2b\x72\x43\xc0\xf9\xd0\xf4\x08\x04\xf2\xe8\x00\x84\x86\xfc\xd1\x2f\x88\x67\xb2\x22\xa5\xb6\x22\xdf\xc9\x8a\x51\x3a\x93\xdf\x31\x50\x10\xa3\x5f\xa0\x2c\x44\xff\xa8\xd5\x3a\x6c\xb3\x96\x73\x0e\xcf\x0f\xc4\x07\x21\xe0\x07\xe2\xcb\x3b\xd9\x3d\x83\x26\x9d\xf8\x53\x55\xe8\x6b\x06\x02\x7f\xa5\x49\x06\x6a\x20\xbe\x66\x83\xd0\xaa\x5d\x37\x89\x70\x2b\x27\xbd\x9d\xe1\x57\x34\x75\xba\x10\x79\xbd\x08\xac\x5f\x86\xfc\x50\x9d\x94\x30\xe0\xd5\xc2\x21\xc6\x2c\x56\x2f\xce\xfc\xeb\x05\x30\x6e\x0d\x06\xb3\xa9\x96\xa5\x33\x85\xe9\x68\x5e\x53\x5a\x04\xbc\xe6\xa7\xfe\xed\x2e\xaa\x3c\xf6\x7f\x49\x3f\x06\x83\x08\xab\xd2\x91\x8c\x6a\xda\x55\x30\x4f\x06\x78\x91\x84\x69\x8c\x1b\xb4\xf2\xed\x00\x5c\x19\xf7\x90\xdd\xda\x63\xb9\xc1\x0a\xf1\x2f\x57\xfa\xfd\xd9\xb5\xce\xfb\xf2\x64\xcb\x0c\xa5\x3b\x17\xc3\x60\xe7\x32\x77\x84\xd9\xa2\x95\xb8\x58\xfc\xef\x86\x0f\x8a\x5d\x4e\xb8\xf6\x2c\xad\x23\xda\x2b\xf6\x72\x9b\x47\x3f\x3d\xbc\x77\x5f\x10\x34\x59\xc6\x44\x84\xd9\x18\xa0\xfc\x5c\x2e\xf6\xc1\xb9\xc5\x6f\xf2\x5b\x0d\x85\xbe\x9a\xc6\xbc\x0f\xf7\x35\xa2\x0b\x5f\x49\x4a\x00\x33\x15\x1c\xcf\xba\x0e\x1f\x4a\xf3\xa5\x3c\xda\xbe\x6b\x1e\x6a\x12\x43\x99\x4b\x87\xb9\x51\xc8\xcf\x6c\x23\x97\x3b\x06\x5e\x1e\x06\x1b\x4a\x21\x61\x1a\x02\xec\x04\x1e\x35\x96\x37\xd1\x71\xcb\x6a\x76\xcc\xb2\x76\xb3\x00\x16\xa2\x78\xf0\xe6\x96\xf4\x41\xf2\xbf\xe4\xc3\x95\xbc\x17\xa7\x89\x0f\x83\x27\x46\xcc\xbe\x19\xf8\xe9\x44\x17\x8c\xee\x77\x7a\xb5\xa8\x0e\x62\x6a\xc9\xaf\x62\xf4\x78\x80\x5c\xed\x46\x54\x57\xbb\xdb\x1d\xbd\xf7\x37\x8c\x5c\xec\x22\xc9\xa2\x56\x76\x7c\x92\x28\xd5\x41\x0f\x1e\x75\xed\xe2\xd1\xfd\x30\x48\x2c\x1b\xb2\x82\x2a\x7f\x1c\x54\x29\xa3\xb3\x68\xbb\xbf\x6b\x84\x5b\xf9\x1d\xd6\x2b\xd6\x1a\xa9\xba\xfb\xa7\x20\x04\xed\x30\x60\x6f\x10\x94\xb8\xa9\xbf\xa5\x22\x17\x56\x47\xc7\x67\xbf\x07\xd8\x16\x9c\x4d\x23\xcc\x4f\x00\xee\x89\xf3\x05\x22\x8f\x27\xfa\x71\x37\xa2\x62\xdc\x0f\x11\xa5\xb1\x44\x7f\xca\xfc\x0b\x06\xb8\x3b\x28\x19\x55\xa7\x91\x12\xe5\xf5\xc9\x9f\xdc\xeb\x05\xc9\xfb\xbe\x69\x36\x1f\x92\x7c\xc5\x63\xa2\xbf\x09\x9e\x07\x11\x37\x63\x50\x01\x7d\x26\xf2\x93\xbf\x7e\xe4\x8a\x7f\x24\xdd\x97\xd8\x12\xc2\x75\xfe\xb8\x45\xc2\x96\x34\x41\x5a\xec\x9c\xb0\x46\x02\xbf\x4b\x83\x9f\x05\x7e\x16\xf9\x2d\x7e\x1d\xf0\xeb\x50\x96\x1f\xa5\x30\xf8\x16\x15\x27\x5d\x72\x8d\x94\x5b\xfc\xe6\xf8\x93\xfc\x53\xda\xd1\x80\xb5\xf6\x03\x41\x42\xb9\x39\x4d\xb7\x1f\x94\x2e\x0f\x89\x3e\xf1\x6f\x8a\xde\xe7\x63\xbd\x5b\x4d\xc2\x17\xa5\x70\xf3\x9a\x24\x9f\xf7\xc1\x7c\x48\x43\xd6\x0a\xe5\x9b\x52\xb9\x1f\x9a\x28\x9f\x94\xd6\xe6\x87\xcc\xf7\x4b\xbf\x90\xea\x7b\xa5\x5f\x84\xde\xa2\x6d\x76\x1c\x30\xf0\x83\x7b\xec\xc7\x3f\xfe\x70\x4e\x79\x1a\x14\x05\x51\xe2\xf8\xe2\x21\xbf\xa8\x22\x4f\x8e\xf1\xb5\xbc\x59\x62\x81\x3c\xab\x7a\xb7\x77\x5a\x99\x46\xdc\x78\xd0\x2b\x98\x8f\xac\x22\xbe\xa6\x1c\xd1\x5d\x9e\xbb\xa0\xd9\xcd\xe6\xd8\x59\xa0\xed\x75\xd5\xdf\xcb\xef\xff\xf5\x5f\x01\x4e\x9f\xff\xf6\x6f\xe9\xc5\xb3\x1f\xd2\xf2\x33\xc7\x89\xe2\x17\xb4\x3f\x57\xdb\xfd\xd6\xa0\xe8\xe7\xf3\x08\x90\x2f\xe3\xc1\x6b\x50\x2d\xf0\xfa\xea\x20\xcc\xee\xff\x37\x00\x00\xff\xff\xce\x60\xf8\xb4\xcf\x9f\x00\x00") +var _confLocaleLocale_enUsIni = []byte("\x1f\x8b\x08\x00\x00\x09\x6e\x88\x00\xff\xc4\x7d\xfd\x72\xdc\x48\x8e\xe7\xff\x7c\x0a\xb6\x37\x7c\xee\x8e\x90\xcb\xd1\xdd\x71\x1f\xd1\x61\xbb\x4f\x96\xda\x1f\xb3\x96\xa5\xb5\xe4\x99\x9b\x73\x38\xd8\xac\x22\xab\x8a\xe3\x2a\xb2\x9a\x64\xb9\xac\xd9\xd8\x88\x7b\x8d\x7b\xbd\x7b\x92\x03\x7e\x00\xf2\x83\x64\xc9\xf6\xec\xc6\xdd\x3f\x12\x2b\x13\xf9\x85\x44\x22\x01\x24\x12\x99\xef\x76\x59\x51\x76\x8b\xf4\x49\x7a\x9a\xee\xf2\xaa\xde\x94\x5d\x97\x76\xe5\x66\xf9\x70\xdd\x74\x7d\x59\xa4\x2f\xaa\x9e\x7e\xb7\x9f\xaa\x45\x99\x24\xeb\x66\x5b\x12\xe8\x4b\xfa\x97\x14\x79\xb7\x9e\x37\x79\x5b\x50\xc2\xb9\x7d\x27\xe5\xe7\xdd\xa6\x69\x19\xe8\x37\xf9\x4a\xd6\xe5\x66\xc7\x65\xe8\x5f\xd2\x55\xab\x3a\xab\x6a\xfa\x79\x4d\x5f\xe9\xab\x3a\xe9\x9a\x45\x95\x6f\xb2\x20\x03\x09\x96\xff\x4b\xfa\x53\x5d\xa4\xd7\x7d\xb9\x4b\x1f\x77\xdb\x7c\xb3\x79\x9a\x77\x28\xd2\x97\x69\xbe\x58\x34\xfb\xba\x7f\xfc\x48\x32\xa4\xf2\x66\xdf\x5b\xed\x97\xfb\x5e\xd2\xf6\x3b\x4b\x7a\xb7\x4b\xda\x72\x55\xd1\xc0\x5a\x4a\x7a\xab\x9f\xc9\xa1\x9c\x77\x55\xcf\x9d\xfe\x8b\x7c\x25\x9f\xca\xb6\xab\x1a\xee\xcf\x9f\xe5\x2b\xd9\xe5\x2b\x06\xb8\xa2\x7f\x49\x5f\x6e\x77\x9b\x1c\x05\x6e\xf4\x33\xd9\xe4\xf5\x6a\x2f\x30\xaf\xf5\x33\x59\xb4\x25\x65\x65\x75\x79\xa0\xd4\x33\xfc\x48\xe9\xc7\x6c\x36\x4b\xf6\x84\xd3\x6c\xd7\x36\xcb\x6a\x53\x66\x79\x5d\x64\x5b\xc1\xda\x3b\x4a\x4f\x35\x3d\xa5\xf4\x94\xd3\x31\x8c\xb2\x20\x04\x65\x79\xa7\x63\xa1\xa9\x21\x7c\xe5\x5d\x82\xaa\xea\x7c\x6b\xa5\xf9\x33\x29\xb7\x79\xb5\xe1\x49\x78\xc8\x1f\xd4\xf9\xae\x3b\x34\x98\xaa\x2b\xfd\x24\x44\x64\xfd\xed\xae\x04\x1e\x1e\xde\xd0\x57\xb2\xc8\x77\xfd\x62\x9d\x73\x5f\xe5\x2b\x21\xa0\x5d\x43\x08\x69\xda\x5b\xc0\xd9\x8f\xa4\x69\x57\x79\x5d\xfd\x3d\xef\x05\x49\x97\xc1\xcf\x64\x5b\xb5\x6d\xc3\xf8\xbd\xc0\x47\x42\x23\xce\xb8\x1e\x4a\x79\x43\x98\x08\x6a\xe1\x9c\x6d\xb5\x6a\x05\x95\x9c\x79\x81\x5f\x5c\x0b\xe7\x2d\x9b\xf6\xa3\x66\x3c\xe7\xcf\x41\x51\xea\x84\xe6\xc6\xed\xe7\x35\x21\x5f\x73\x2f\xf0\x23\x02\xe8\x92\xbc\xd8\x12\x2a\x77\x79\x5d\x32\x8e\x4e\xf9\x17\xe1\x85\x7e\x25\x4a\x53\x59\x57\xf6\x7d\x55\xaf\x18\xd9\xa7\x92\x94\x5e\x6b\x52\x12\xe4\xb9\xb4\xdb\x66\xef\xa6\x93\xd2\xff\x4a\x3f\xd3\x2b\xf9\x29\x79\x41\x21\x64\xba\x92\x3c\x92\x2e\x5b\x96\x65\x21\x63\xe9\xd2\xe7\xf4\x9d\xec\xf6\x9b\x0d\x61\xed\x8f\x7d\xd9\xf5\x5c\xe8\x8a\x7e\xd3\xf8\xe5\x77\x52\x75\x1d\x7d\x50\xf2\x2b\x7c\x24\x34\x75\xf5\x02\x83\x39\xc3\x47\x92\xbc\xef\xca\xbc\x5d\xac\x3f\x24\xf2\x1f\x7d\xe5\x0f\xa6\xbd\x63\x93\xca\x84\xa4\x44\x24\x2d\x58\x03\xc9\xa2\x29\xf8\xc7\x19\xfd\xa3\xaa\xab\xba\xeb\x69\xc5\x7d\x48\xf4\x83\xc1\xe4\x4b\x26\xa0\xaf\x7a\x60\x41\x13\xb1\x7c\x3b\x9e\xc1\xf4\x79\xd5\x76\xfd\xc3\xbe\x22\x62\x7d\xbb\xaf\x13\x1e\x1f\xad\xb6\xac\x98\x1b\x13\x7a\xd1\x10\x8a\x90\xdc\xd2\xf8\x2e\x6e\xaf\xff\xe5\xf5\x49\x7a\x45\x9c\x68\xd5\x96\xf4\x9d\x52\x1d\xf4\x8f\xca\xfc\x3c\x4b\xa8\x94\xb5\x74\x9e\xf7\xf9\x3c\xef\x4a\x8f\x56\xce\x14\xea\x76\x79\xa0\x71\xe6\x6a\xe0\x60\x5d\x1f\x8d\x77\x6a\x85\x50\x1d\xba\xae\x5c\x1d\x6f\x78\x71\x51\x3a\x33\x35\x14\xbe\xda\x94\x9c\x4e\x55\xa5\xaf\xde\xbc\xb9\x3c\x7f\x96\x96\xf5\xaa\xaa\xcb\xf4\x50\xf5\xeb\x74\xdf\x2f\xff\x5b\xb6\x2a\xeb\xb2\x25\x1e\xb7\xa8\x52\x5a\x53\x2d\x51\x42\x4a\x84\x2d\x83\x9b\x25\x5d\xb7\xa1\xb5\x0f\xf4\x5e\x5f\xbf\x4e\x2f\x18\xc5\xbb\xbc\x5f\xa3\x23\xfd\x3a\xe9\xfe\xd8\x30\x8a\x5c\x83\x37\xeb\x32\x05\x95\x01\xa8\x59\x1a\x3e\xd2\x42\xfb\x38\x4b\xca\xb6\xcd\x88\x2d\xf5\xb7\x99\x16\xd6\xfa\x86\x90\x52\x05\x91\x4e\xdd\xf4\xe9\xbc\x4c\x51\x66\x96\x24\xd6\x61\xc3\xee\xe9\x6e\xb7\xa9\x16\xb2\xd6\x5f\x48\x9e\x47\x34\xef\x20\x8a\xa5\x10\x0e\x88\xb2\xbc\x00\x5d\xc4\x9e\x79\x3d\xa4\x11\x03\x41\xf9\x75\x49\x0c\x70\xbd\x5f\x09\xdb\xdb\x34\xfb\xe2\x3b\x50\xaa\xf5\xde\x13\x6a\xfa\xb6\xa1\x0e\x03\x3b\x0e\xc0\x37\x71\x4a\x14\xc7\x9b\x56\x5b\x6e\x1b\xe2\x2b\x8e\xd8\x2b\x22\xa8\x43\x45\x99\x34\xd2\x2e\xff\x44\xeb\xad\x6f\xd2\x7e\x5d\x75\x69\x41\xc4\xb6\xe0\x8a\x69\x69\xec\x69\xbb\x10\xb2\x20\x02\x15\xd2\xb0\xb4\x78\x0e\x00\xb5\xdd\x13\x35\xad\xa9\x32\xde\x8c\x78\xe7\xa4\x2a\xa7\xfa\x89\x21\x51\x3d\xa0\x6f\xa2\xdc\x86\xb8\x32\xf3\xcd\x73\x7c\xe8\xef\xb0\x7e\xea\x55\xbe\x5c\x52\xaf\x3a\xa2\x8a\x97\xe9\x62\xd3\x10\x49\xbd\x7b\xfb\xba\x63\x82\x59\x67\xbb\xa6\xc5\x36\x47\x59\x57\xf4\xe9\xd2\x02\x44\x33\x44\xbd\xdf\xce\xe9\xd7\x61\x5d\x11\x07\x00\xda\xb9\x04\xef\xe6\x94\x4a\x4d\xec\x3b\x9a\xc2\x93\x94\x48\x98\x46\x40\x28\x03\x01\xf0\x18\x8a\xaa\xcb\xe7\x34\xf7\x0c\xbe\xa4\x6d\x6b\xdf\x12\x59\xad\xfb\x7e\x67\x2d\xbf\xbc\xb9\xb9\x92\xa6\x5d\xea\x5d\x6d\xe7\x01\x65\x60\x0e\x36\xbc\xf1\xd6\x69\x53\xcf\x40\x24\xfb\x76\x33\xa0\x1f\x1a\xab\xe5\x1c\xc1\x0b\x77\xe1\x11\xff\xb9\xf6\xe8\x01\x9e\x3b\x92\x4e\x0e\xa0\x26\xc2\x71\x89\x0d\x90\x88\xba\xd9\x71\xbd\x01\x55\x5f\x6a\x82\x27\x65\x6c\x9a\x2e\x5f\xb6\x4e\xca\x85\xec\x13\xb0\xff\x2d\x0d\x58\xd9\xc8\xf5\x05\xa1\x01\xbc\x04\xa9\xcb\xb6\xd9\x52\xea\x73\xfa\xe7\x13\x7c\xf7\x2f\xb8\x3e\xc0\xe4\x45\x41\xfc\xad\x3b\x49\xdf\x3e\x3f\x4b\xff\xf3\xcf\x3f\xfd\x34\x4b\x5f\xf5\xbc\x12\x99\x38\xff\xc6\x44\x45\x9f\xb2\x87\x3b\x50\x62\x19\x3d\xd1\xdd\x3d\x5e\x59\xf7\xd2\xc7\xc8\xfd\xef\xe5\xe7\x9c\xe4\x8f\x72\xb6\x68\xb6\x4f\x99\xab\x6c\xf3\x7e\x96\x70\x0e\x91\xab\xd2\xf1\x75\x59\x17\xf4\xa1\x92\x80\xe6\x05\xec\x4e\xf3\x03\xb9\x40\xa4\xa2\x6c\xd1\xd4\xcb\xaa\xe5\x01\xfd\x56\x83\x1a\x4c\x5e\xa2\x7d\x00\x39\xb6\xdd\x12\xd2\x88\x83\x54\xcb\x5b\x0f\x8a\xa1\xbe\xe1\x44\x9d\xd0\x44\xa8\x2e\x53\x51\xd2\x61\xf9\x5a\x88\x91\xe7\xed\x92\x86\xd7\x1a\xbe\x3b\x8f\xf0\x66\xb9\xdc\x10\x47\x35\x2e\xa9\x2d\x5c\x4a\xaa\x30\xcc\x10\x84\x88\x71\x07\x89\xef\x5c\x89\xf8\xec\xfc\x4d\x5a\x7e\x22\x6a\x23\x72\xa0\x2d\xba\xd8\x2f\x40\x61\x0c\x7b\x92\xf2\xfe\x44\xf8\xa5\xb5\xb1\x10\xbe\x1a\x30\x09\xee\x1a\x73\xa2\x05\x01\x11\x6f\xd0\x45\x91\x91\x84\xf2\x89\x38\x68\x1b\x34\xf1\xc2\x92\xb4\xf7\x23\xd8\x51\xa7\x5c\x09\x1e\xf9\x82\x66\x9c\xa8\x42\x7a\xd1\x49\xa7\x24\x9b\xc8\x9d\xe8\x78\x4f\x92\x74\x5e\x50\x5f\xe6\xb7\xe0\x3b\x1d\x13\x43\x51\x2e\xf3\xfd\xa6\xf7\xfd\x92\x89\x6b\x4d\x26\xb3\x96\xae\x59\x98\x0f\xf3\x26\x0b\x8c\x3a\x08\xea\xe9\x86\x65\x89\x0c\xeb\xcd\x6d\x0a\x01\x0a\xf4\x2a\x22\xae\xc9\xe2\xdd\x2c\xd1\xcd\xdb\x24\xfa\xec\x53\x05\xe9\xd7\x91\x10\x72\x4d\xbc\x67\x5e\xf3\x67\x06\x60\xb1\xba\x9b\x2c\xeb\x3a\x76\xc9\x0d\x77\x4e\xf2\x15\x3c\x70\x17\xd0\x02\x8b\xe7\x84\xb9\x4f\x15\x58\xaf\x4e\x22\xfa\x4a\x33\x89\xa6\xa9\xa9\xae\x2c\x51\x03\x95\x7f\x44\x75\xa2\xcc\x4c\xa5\x41\x15\xd0\x4c\x10\x21\x21\x2d\x2d\x9a\x94\x77\x46\xf0\x77\x2a\x6d\x43\xad\x75\xf8\x3a\xe6\xb4\xad\x56\x6b\xe2\x77\xcd\xe1\x44\x90\x76\x58\x37\x25\xd3\xf4\xab\xf3\x27\x3f\x4a\x3f\x56\xcc\xed\x5d\x21\xde\x27\xf2\x3d\x4d\x38\x61\x54\x49\x4b\xba\xe0\xf6\x5b\x40\x8e\xe4\x4e\x01\x1a\x4a\xfa\x26\xcb\x8e\xc5\x17\x5d\xbf\x61\x9e\x2e\x5c\x0f\x23\xa5\x07\xda\x82\x8a\x75\xd9\xaa\x81\xbc\x6a\x62\x1c\xef\x5d\xa4\xfa\x74\x7d\xb6\xaa\xfa\x6c\xc9\x8c\x84\xeb\x7c\xce\x65\x79\x2b\xa5\x9c\xf4\x01\x65\x3d\x48\x89\x1b\x91\x10\x5e\xfc\x92\xde\xff\xa4\xf2\xcb\xcf\xcc\x21\x32\xa2\xe9\x6a\x83\xc9\x50\x29\xb8\x2d\x45\x7c\x32\x75\xab\x68\x68\xfd\x31\xce\xbb\xfd\x0e\x3b\x8d\x8a\x2c\x27\xe9\x4e\x00\x8b\xe6\x50\xf3\x5a\x00\x2b\xa4\x55\x5f\x41\x59\x9c\x57\x75\x4e\xdb\xad\xd5\x02\x16\x7b\x9f\xa8\xe1\xcd\xe5\x0d\x00\x57\xcd\x7c\x5f\x6d\x0a\x03\x98\xd1\x08\x3f\xe5\x9b\xaa\x60\xc1\x53\xe7\x3d\x14\xf2\x2c\xa9\x92\xbe\x2c\x9a\x96\xe5\x03\x8c\xc6\x0a\x1e\x11\x4c\x5a\xde\xf0\x91\x4c\x65\x15\x16\xe5\x9c\x0c\xc1\x68\xa0\x89\x87\x44\xce\x12\x06\x28\xa6\xea\xea\x07\x3d\x7a\xba\xd8\x53\x5b\x34\xe9\x9c\x4c\x05\xbb\xf4\xe1\x53\xfa\x9b\xb0\xbc\x22\xfc\x78\x35\x46\x3c\x67\xa6\x92\xb9\x97\x55\x1a\x75\x35\x22\x6f\x47\x5d\x46\xbc\xc1\x58\xc3\xfe\x1a\x09\x74\x7b\xa1\x57\xd6\x8c\x37\x34\xad\xe5\x77\xf4\xf1\x80\x16\xf0\x6a\x83\x49\xc8\x21\xce\x91\x5c\xdb\x10\xde\x98\x40\x4e\x64\xb9\x2c\x69\x68\xcc\xd9\xfa\xfc\x23\xf5\x2d\x67\xf1\x21\x79\xcf\xd6\x83\x0f\xc9\x5e\x24\xc2\x66\x53\x38\xe9\x1b\x34\xdd\xb4\x43\x6d\xd5\x03\x39\x7a\xed\x48\xac\x5e\xac\x33\x67\x7b\x60\xa4\xf4\xe5\x67\xec\xc5\xc8\xf2\xa6\x08\x26\x76\xce\x4a\xb6\xb7\x98\x2e\x1e\xc4\xc5\xad\x9f\x2d\x92\x07\x69\x89\x90\xce\x32\x6f\x18\x6b\x9f\x4a\x07\x75\x16\xa6\xc6\x05\xa8\x2e\x92\x5c\xb5\xaa\x58\xa9\xa4\x2c\xd1\x7c\x35\x57\xb4\xdf\x2e\x01\x13\x53\xc3\x09\x78\x1d\xcd\xa7\x2a\x70\x33\x9a\x18\x68\x87\xd6\x32\x71\xc4\x5b\x59\x17\x41\x9b\xc9\x7b\x35\xaa\x7c\x48\x0c\xee\x6d\x9c\x4f\xdc\x84\x34\x3d\x6f\x6d\xc8\x6c\x76\x9d\xd5\x81\x95\x64\x65\x28\x7e\x83\x5f\x97\x3b\x96\x05\xb6\x1d\xc8\x62\x43\x90\xc5\xad\x4a\xb3\x8e\x40\x7e\x15\x56\x4d\x14\x43\x0c\xee\x3b\x33\xd7\x7c\x63\x15\xcf\x2a\x22\x05\x94\x8f\xb7\x1e\x31\x81\x90\xd0\x09\xbb\x4f\xdb\xde\x9e\xa4\xd1\x26\xb6\xce\x3b\x62\xdf\xb4\x73\x6b\xb1\x62\x66\xfa\x16\x4f\x7b\xbe\x90\x35\x03\xd3\x0d\xa8\x5c\x4a\x36\xed\x70\x4f\xe4\x1e\x0a\x87\xd3\x56\x9c\x24\x03\x39\x25\x14\x67\x26\xda\x24\x84\x6d\x4b\x16\x66\xb3\xad\x58\x4b\xe4\x57\x7a\x51\x26\x24\x71\xad\x68\x41\x1b\xc1\x3e\x61\x25\x77\x05\x99\x5f\xe9\x95\x01\xca\x3e\x64\xc1\x0a\x61\x29\xbf\x9a\x89\x8a\x38\xc3\x01\x16\x00\x5a\xdb\x23\xf4\xd3\x66\x45\xd9\x33\x63\xe9\xb2\x63\x43\xf0\xea\x88\x5b\x78\x24\x9e\xb2\x79\x29\x0d\xa1\x54\x00\xf6\xc3\xe2\x02\xcc\x35\x1e\xcf\x9f\xde\xef\x1e\x3f\x9a\x3f\x75\xbc\x75\xb1\x2e\x17\x1f\x85\xfe\xaa\x7a\xde\x7c\x86\x0a\x4b\x13\xcf\x38\xae\x79\x8d\xdd\x2f\xd2\x35\xe5\x42\xcb\x21\x5e\x40\xc5\x08\xf1\x9c\x1b\x4d\x1a\x75\x86\x59\xc6\xcc\x8c\x7d\x6e\x77\x31\x42\xa2\xd2\x68\x44\x7a\x96\xd0\x34\xf2\xe2\xc3\x3a\xf0\x74\x7b\xca\xa9\x4c\xb9\xd8\x27\x3c\xe9\x62\xbc\x9b\x6a\x5b\xf5\x23\xd2\x61\x46\x94\x2b\x09\xaa\xe5\xc4\x70\x89\xba\x80\x0d\xf4\x85\xd8\x39\x55\x43\x1b\xaf\x91\xd3\x21\x27\xed\xe7\xe7\x94\x48\x68\x4f\xdb\x18\x8f\x89\xba\x49\xfc\x3c\xe7\x9d\x9b\x34\x9f\xbc\xcb\xf6\xb5\xa2\xb5\x2c\x8c\x98\x5e\x56\xd8\x65\xb8\x5d\x23\xf9\x00\xca\x30\xaf\x02\x7c\xfa\xbd\xc3\xf8\x0f\x24\xed\x2f\x5d\x31\x66\xfd\xdc\xa1\x8a\x85\xcd\x7c\x72\xf2\x88\x35\xd6\xa5\x28\xac\xc0\x00\xc3\xf1\x44\x93\xd6\xe3\x67\x8f\x54\xa7\x8f\x94\x82\x09\x99\xef\xfb\xbe\x61\x65\x62\xc3\x54\x23\x65\xac\xd7\x67\x00\x84\x7e\xe4\xeb\xc3\x84\x84\x78\x92\xb9\x29\x4d\xb8\xcf\xbc\xd9\x55\xd5\xb0\xc1\xe8\x74\xaf\x74\x60\x85\x18\x40\xf2\xfa\xd6\x48\x99\x08\x82\x7b\xc1\x0d\xf6\xd3\x7d\xf9\xbe\x2d\x7f\xf0\xbd\x71\x6b\x06\x25\xac\x47\x52\x3c\x58\x4f\x6f\x91\x2b\x06\x37\x5b\x75\xb6\xf5\xa9\xd9\xca\xd3\x47\x1b\xa3\x17\xf9\xbc\x32\x88\xc1\x92\xdc\x59\x00\xd1\x34\x0a\x94\x9e\x0d\xda\xf2\x7a\xdc\x18\x83\x7d\xdc\x65\xbf\x83\xf5\x4d\x93\x75\x6b\xd1\x99\xad\x7b\xa4\x6f\xd7\xab\xc8\xf0\x02\xa3\x3b\x88\xee\xbf\xf0\x3e\x49\x9a\x49\xbe\xf9\x90\xdc\xc2\xc2\xf7\x57\xe2\xf0\x35\x6c\xa7\x4d\x42\x19\xa2\x65\x5d\xe0\x83\x40\x59\xe5\xfb\x90\xf0\x1e\xfa\x66\x20\x17\xf2\x16\xa1\x69\x81\x80\x82\xac\xdf\x22\x71\xcf\xa6\x30\xb9\x9a\x90\x21\xdf\x96\xde\x46\x8c\x2f\x37\xc4\xeb\xeb\x97\x37\xa6\xc3\x5d\xbf\x4c\x3f\x96\x5a\xf9\xcb\xbe\xdf\x75\xef\xa0\xcf\x8b\x72\xce\x9a\xfc\x55\x7e\xcb\x52\x9b\x24\xeb\x0f\x64\xdc\x94\xf9\x56\x7b\xc9\x9f\x52\xc5\x29\x6d\x67\x9a\xc8\x9f\xb4\xcb\x05\x76\xa2\x04\xf2\x8b\x0d\x41\x84\x19\x95\x1b\x9c\xfe\x50\xaa\x01\xfa\xf7\x91\x71\xeb\xf7\x24\xdf\xec\xd6\x39\x04\x88\x00\x0c\x76\x1c\x02\xc2\xc4\xa7\x00\x01\x2d\xec\xb7\x65\x5b\x2d\xa0\x6d\x51\x81\xef\x1f\x66\x3f\xc0\x84\x47\x0b\x85\x24\xc9\xb8\xb2\x82\x16\xc9\x3f\x54\x21\x7f\xb3\x94\x19\xd6\xdb\x55\x7f\xb7\x51\x44\xd5\x71\x3a\xf1\x1c\x82\x80\x4c\xe7\xa1\x1c\x10\x36\x46\x96\xef\x7a\x36\xeb\x50\x02\xc9\x90\x51\xd5\xdb\xfc\xf3\x97\x0a\x6e\x9b\x89\x72\xc2\x0a\x7c\x21\x5b\xf0\x3a\xc4\x98\x1d\x10\x3c\x1b\x6e\x8e\x42\xd3\xd4\x33\x48\xfd\x91\x76\xb5\xda\x81\xbd\x93\xdf\x29\x7e\xff\x62\xc7\x11\xb4\x85\xa8\x04\x9e\xba\x83\x09\xda\x9c\x0b\xe6\x9b\x90\xa4\x67\x7e\xb9\x85\xd2\xb5\x23\x67\x68\xd8\xaa\xf8\x38\xc6\xc1\x6a\x35\x14\x0d\x22\xa9\x99\x3f\x43\xc9\x78\x8f\xcc\x58\x6a\xad\x43\xd9\xd4\xed\x9e\xb6\xbf\x00\x42\x2c\xe9\xd9\xb8\xdc\x60\xc1\x1d\x2d\x4e\xa2\xc0\x44\xe9\xcb\xb1\x69\xf4\x48\xf9\x9e\x96\xcc\x44\x05\x6e\x25\x1d\x2d\x28\x93\x89\x42\x34\xf2\x62\xc4\x0b\xc6\x05\x19\x8c\xf4\xa6\xcd\xa6\x5c\xb1\x0d\xcd\x1a\x8e\x5a\x53\x12\xa2\xcd\x40\xc0\x42\x02\xf2\x18\x76\x93\x15\xce\x6b\xa8\x05\xb8\x39\x8a\xf5\x2f\xea\x35\xc9\xf3\xf4\xc9\x25\x03\x2d\x4c\xbb\xa1\x3b\xf9\x96\x15\x8e\x6e\xcf\xac\x99\x95\x13\x91\x4e\xe2\xd9\xe0\x8d\x17\x55\x95\x68\xe2\x78\xf5\x44\x8b\xac\xb1\x7d\xa9\x7e\x80\x7d\x63\xd5\xa1\xbe\x3e\xae\x58\x2b\x77\x40\xc7\xaa\x75\x1a\x65\xf9\xb9\x82\x3d\xf2\x45\xc5\x76\x2e\xe8\x94\x4e\x95\x46\xde\x2c\xd9\x10\x33\x60\xdd\x45\x46\x25\x72\x6c\xf3\x89\x55\x3f\x6e\x8f\x73\xa5\x9c\xd8\x27\x75\x50\x3c\xcf\xaa\x9d\x92\x36\xd8\x1c\xca\xe2\x84\xb6\x78\x2e\x41\xfd\x04\xdb\xc8\x37\x87\xfc\xb6\x83\x91\xc5\x38\x0e\xdb\x62\xa5\x38\xb3\x13\x12\x00\x56\xe8\x55\x68\xf1\xa7\x15\x67\x98\x60\xd3\x35\x6f\x1e\x6e\x9b\x3e\x40\xbf\x04\xb7\x50\xb3\x0d\xa9\xed\xbc\xed\x39\x03\x36\x81\xb3\x6e\xcc\x9a\x24\xcb\xf8\x92\x1d\x54\x84\x43\x24\xe5\xfc\x13\x65\x4f\x58\x3c\xa2\x66\x58\x58\x21\x7e\x2c\xb8\x26\xf9\x8f\x30\x8b\x2e\x05\xc6\x86\x3d\xd5\xff\x50\xe4\xe2\x8a\x70\xc8\x7a\x96\xd7\xbf\x79\x6f\xa2\x59\x31\x8b\xb5\xa4\x43\x7b\x4e\xba\x9e\x96\x00\x63\xda\x0e\x3e\xff\x2a\xf2\x95\xea\xdc\x9c\x8b\x25\x06\x34\x75\xeb\x6a\x97\x36\xb0\x82\x86\x28\xf4\x64\x1b\x88\x98\x6c\x9b\x2f\x21\x77\xb3\x39\xb8\xcd\xeb\x6e\x59\xc2\x2e\xbc\x4d\x97\x7c\xb6\x36\xd3\xa6\x59\x62\x95\x03\xd0\x23\x2d\x8b\x0e\x83\xa6\xc3\xdd\x02\x73\x17\x4c\x54\xdc\xb4\x1c\x14\xc0\xf6\x88\x3e\x00\xab\xbe\xa6\xce\xfa\xc0\x64\x36\x42\x01\xa4\xc6\xe8\xd8\xc7\x7a\xf3\xa9\x0c\x11\xb1\xfc\x47\x47\x1e\x60\x5d\x4d\xdf\x72\x5e\x10\x4f\x93\x34\x0a\x73\x07\x4e\xed\xe6\xb7\xf1\xe8\xb9\xa8\xa3\x00\x3e\x43\xfa\x54\x6a\x2b\xbc\x30\x78\xad\x0c\x2a\x84\x99\xc3\xeb\x0a\x49\x9f\x43\xe5\x9b\x53\x17\x17\xeb\x68\x75\xde\x20\x27\x95\x9c\xd1\x02\x4d\xde\x73\xd3\xa4\xc6\xaf\xf3\x7a\x55\x66\xce\xc6\x7c\x86\xdf\x2a\xa1\xab\xcd\xb8\x4f\xcd\xb0\xcc\x96\x7f\x2b\x22\x66\xe4\x3b\x4b\x56\xb5\x59\x7c\xba\xe4\x6f\x0d\xc9\x10\x30\x15\xff\x89\xbe\x58\xfa\xad\x93\xe8\xb4\x6c\x60\x67\x80\x7a\x50\xf5\xb7\x38\xc6\x9b\x93\x0c\x2c\x4a\x1a\xa5\x90\x9a\x0b\xee\x00\xd3\xc7\x73\xfb\xa6\xf9\xc8\x99\xe9\xf1\xd2\x96\x2f\x85\x13\x3b\xd4\x73\xfb\x4e\x58\x4b\xde\xce\xb0\x39\xb0\x30\x0d\xab\x7b\xb0\x25\x3c\xb8\xdf\x3d\xe0\x09\xb3\xbc\x59\x00\xbf\xcb\x7b\x62\x8b\xb5\xa8\x28\xc2\xa1\xc2\xa2\x9a\xed\xaa\x00\x57\x11\xb0\x19\xce\xc8\x05\x15\x1f\x12\x7f\x74\x6f\xa7\xf6\x53\x16\x55\x65\x31\x9d\xca\xbc\xff\x4c\x9f\x6a\x11\x49\x9d\xe3\x8a\xaa\xaa\x38\x18\xb5\xd3\xac\x2e\x3e\xdc\xea\x12\xb5\x21\xc5\x06\x24\x25\xef\x27\xe9\xb9\x7c\x98\xd2\xbb\xaf\x30\xa6\xaa\x48\x92\x1d\xf0\x1e\x38\x1a\xe8\x44\xb8\x4e\xab\x43\x89\x37\x62\xb7\xc3\x9d\x9d\xb0\x20\xb5\x80\x70\xed\xac\x03\x52\x00\x9f\x4a\x07\x0a\x1b\x5b\x67\xa1\xc9\xd5\xc1\x39\x0e\x9f\x4e\xb0\xfe\x49\x60\x87\x72\x9e\xb2\xbd\x94\x08\x87\xf4\x22\x1d\xe8\x36\x27\x95\xea\x53\x95\x3b\xcb\x0c\xcd\x16\xbb\x32\xe8\x2e\xfa\x9c\xdd\x18\x70\x36\x3c\xf6\xb9\xe1\x83\x16\x3d\xbb\x78\xad\x9f\xc9\x7e\x57\xb0\x4d\xcb\x0f\xf8\x1d\x12\xdc\x80\xe3\xfc\xc0\x5c\x89\xa1\x5b\x31\x27\xcd\x08\x78\x91\x2a\x1c\xf7\xec\x76\x66\xcb\x67\xc2\x8f\x46\x97\x50\x31\x04\x09\x4f\x09\x24\x4b\x95\x56\x03\x98\x09\xef\x01\x7a\xe5\xc0\x12\x08\xa1\xbd\x32\x5d\x37\x87\x74\x53\xd5\x1f\x3b\xc5\xaf\xb3\x87\x98\x9e\x9c\x9e\x23\x81\x80\xc5\x52\xc3\x62\x55\x55\xef\xcb\x5f\x13\xfb\x12\x4b\x3e\x3e\xc7\x9e\x1f\xa5\xec\x8a\x43\x66\xa0\x07\x30\x67\x72\xd4\x74\x8a\xe4\x49\x58\xaf\xe7\x6a\x11\x9c\x91\x07\x87\xc2\xcb\x92\x05\x6c\xb0\x43\x3b\xc5\x22\xfc\x34\x4d\xa7\xb6\x47\xcf\x7e\x38\x0d\x86\x0a\x85\xd2\xd9\x72\x10\x3a\x99\xa7\x76\x76\x86\xd5\x98\xd8\x69\x97\xf5\x07\x6b\x3b\xab\xb6\xe2\x5c\xf5\xce\xce\xc2\x30\xb3\x4e\xaf\x40\xf6\x8c\x34\xe5\xc1\x60\xc2\x23\x87\x37\x8d\x9d\xb4\x19\x1f\xb5\xcc\x13\x13\x17\x04\x21\xd8\xec\xa3\xce\x0e\x29\x4b\x2b\x30\xeb\xf9\x17\x08\xcc\xc8\x27\x3c\x89\x11\xde\xec\x58\x4b\xb3\x89\x84\xc2\x33\x3d\x07\x70\xf9\x8c\xd9\x20\xff\x0d\xce\xcc\x86\xd6\x86\x48\x53\xd2\x1a\x8e\x4a\xd3\x83\x3e\x8d\xd6\x8e\x95\x3b\xd0\xd8\xc2\xe1\x18\xc1\xcf\x84\xfa\x73\x58\x86\xe5\x58\x0d\xfe\x04\x42\x2f\x35\xce\xe4\xa4\x0a\x42\x00\x14\x8e\xce\xeb\x19\xa7\xc2\x8d\xd8\xa2\x2e\xde\x5a\x0e\x40\x1d\xb6\x62\x7d\xb2\xb4\xc3\xf9\x90\xb1\xed\x5a\x9a\x74\xda\x78\x07\x96\xa8\x11\x4b\x8b\xd8\x17\xb8\x57\x83\x93\x66\xcf\xb5\x48\x83\xd4\xba\x98\xff\xe3\xcb\x52\xbc\xf5\xb2\x64\xeb\x96\x35\xaa\xcc\xda\xe5\x0a\xcb\x4e\xa8\x0f\x58\x03\xa5\x33\x4f\x14\xc0\x44\xdc\x45\x80\x85\x20\x66\x09\xb5\xe4\x2c\xb2\xf3\xc2\x62\xfb\xff\xcd\xb6\x1b\x35\xe8\x6c\xbb\xbe\xab\x03\xb2\xe1\x3e\x0e\x76\x9c\x11\x01\x51\x06\xf6\x5f\x9d\xfa\x60\x57\xd5\xc9\x77\x9b\x2b\x37\x23\x32\x3d\xa3\x89\x92\xb0\x05\x2b\x11\x80\xc3\xb2\x80\x07\x6f\x12\xb8\x42\x89\x80\xdf\x8d\xcc\x90\x31\x7f\x3d\x85\x06\x43\x58\x11\x58\x96\x07\x78\x43\x13\xe9\x4f\x35\xa2\x2d\x23\x42\xce\x6d\x9d\x67\xcf\xe8\x68\xe6\x44\xd5\x86\x75\xb5\x5a\xd3\xb8\xaa\x2d\x9f\x59\x82\x6b\xdb\xc1\x98\xd7\xea\xf8\x17\x2d\xbc\x66\x55\xb3\x0d\x87\x5b\x10\x57\x1e\xc7\x6d\x1f\x77\x7d\xdb\xd4\xab\xa7\xe7\x0d\xab\x5b\x6c\x09\xe1\xad\xe2\xd7\xc7\x8f\x34\x9d\x58\x06\xcf\x21\x3b\xb8\xbe\xa8\xfa\x97\xfb\xf9\x83\x2e\x5d\x91\x6c\x80\x0d\xe4\x71\x9e\xae\xdb\x72\xf9\xe4\xde\xfd\xee\xde\x53\x3d\xa8\x16\x3f\xab\x43\xed\xd0\xf2\xf8\x51\xfe\x94\xa5\xe7\xae\xd9\x90\x50\x1b\x17\x69\xb6\x5b\x99\x5f\x62\x7f\x5b\x81\x44\xff\x71\xb6\x5d\xd6\xc0\x5c\xd9\x2a\x7e\xa8\xc2\x99\xa3\x75\x3f\x3f\x3a\x6d\x26\x26\x45\xf6\x05\x15\x54\x18\x18\x47\x76\x75\x1f\x30\x4d\xb6\x2d\xa4\xae\x18\x36\xd8\x71\x31\x4c\x24\x9b\x6b\xbc\x69\xc3\x8c\x13\x90\xa0\x51\x87\x95\xa7\xa2\xd4\x13\x91\x34\x38\xcd\xda\x94\x8d\x93\xbe\x8c\xb4\x02\xfa\x65\x9e\x6a\xa6\x4c\x08\x8c\xde\x08\xc2\x04\x1b\xd1\xf0\x77\xc6\x00\x64\xf4\xba\xfc\x6d\x04\xc8\x13\x49\x46\x71\x22\x10\xf0\x83\x19\xc0\x18\x35\xab\xd0\x07\xe6\x69\xbd\x00\x2b\x53\x1d\x44\x1c\x55\x44\x20\x13\x92\x24\x09\x9d\xd9\xdb\x57\xca\x0e\xa3\x76\xfd\xc0\xad\x39\x7f\xf4\x85\xbe\x0c\x47\xcc\x18\xc3\x98\x4e\x81\x0e\x1a\x0b\x6c\x0a\x3a\x53\xaf\xd5\x82\x80\x0c\xda\x86\x03\x6d\xe1\x4d\xa3\x27\x2e\xa9\x25\x62\x4e\x48\x3d\xe8\xcb\x68\x31\x73\x27\xe0\x96\x26\x2e\x1e\x30\x4a\xfc\xd7\xb4\xc8\x89\x13\xf4\xcd\x47\x22\xa6\x71\x11\xa4\x1f\x2b\xe4\x38\x8c\xc9\xe8\xca\x5f\x4e\x3d\x7b\x18\x4a\xed\x7a\xc0\x79\x94\xc5\x04\x9c\x45\x6b\x75\xae\x2f\x62\x51\x29\x21\x1b\xcf\xab\xba\x10\x4e\xa2\x8c\x40\x7d\x49\x1c\x07\x20\xf9\xa2\x66\x20\x98\x3d\xf9\x43\x7f\x87\xd3\x12\xd5\x1f\x2c\x17\x62\xe0\xfb\x3a\x60\xa0\x42\x0e\x99\xa0\xc2\x0d\xf2\x8a\x54\x30\xf8\xb7\x9d\x4a\x85\x37\x9c\xdd\xa9\x73\xa7\x9e\x13\x5b\x91\x17\x9a\x88\x35\x00\x40\x41\x78\xe7\x10\x81\x5f\x5e\x1b\xb7\x5a\xd4\x07\x40\x3d\xd7\x30\x07\x44\x75\xc6\x32\xd7\xe2\x13\x90\x9e\x5e\xbd\xa2\x3d\xc3\x35\x68\x95\xfe\x96\x93\x1c\x29\x5d\x38\x38\x4b\x00\x13\xdb\x90\xe7\xba\x13\x24\x29\x6e\x86\x47\x94\xc4\x12\x77\x83\x1a\x0d\x48\x06\x13\xe7\x0b\x8e\xcb\x2e\xb0\x8e\x48\x6b\xe8\xc9\x70\xb7\x72\x43\xfd\x8e\x30\xeb\x6c\x74\xbc\xb4\x76\xb7\xcc\xff\x03\xf7\x9f\x5c\x30\x74\x00\x07\x1f\xf8\x1d\x11\x24\x2c\x04\x29\x2f\xe1\xd6\xf1\x0f\xeb\xb0\x09\x10\xc1\x54\x86\x6c\x64\x72\x32\x3d\x53\x99\x2c\x36\xc5\x59\x76\x56\x4f\x3c\xe6\x2f\xf1\x19\x26\x7c\xaf\xbf\xde\xc1\x65\xc2\x51\x05\xa4\x7c\x35\xd9\xac\xa3\x68\x69\x7a\xc0\x6f\x52\xd9\x08\xe5\x04\x9d\x5b\x11\xd9\x5a\x29\x22\x70\x15\xa5\x5a\x0e\xe5\x86\x7d\x3c\xb5\x75\x7f\x8a\xac\x43\x8f\xce\x90\x15\xc8\x9d\x1e\xb3\x33\xaf\x13\x05\x05\x15\xa1\x79\xcb\x2a\x23\x08\x5a\x6e\x38\x36\x16\x15\xd8\xf6\xeb\xb3\xd3\x37\x6f\x2e\x6f\xfc\x36\xcd\xeb\xa0\x2e\x48\x98\xf8\xce\x79\x60\x8d\xfa\x65\x7e\x58\x6e\x02\x63\x08\xef\x09\xa6\x25\x8e\xc1\x85\x6c\xca\x6a\xa7\xcf\x55\x03\xde\xd3\x70\x5f\x8c\x97\x47\xfd\x2f\x8e\xcd\x5f\xf2\x9e\xe5\x9b\x0f\x89\x19\x89\x2f\xf9\x7f\x12\xda\xd9\x83\xb3\x0d\x2c\x3d\x7f\x04\xe2\x3d\xb0\xa9\x03\x4d\x31\xb2\xbb\x83\x49\xef\x73\xa8\x10\x84\xfb\x06\x7b\xc5\x32\xc5\xf1\xe8\x09\x9b\x11\x9b\x16\x0b\x86\x91\xbb\xaf\xab\x3f\xf6\x10\xd0\x58\x81\x20\xe6\xc1\x8e\x7d\xf3\x6a\x23\x1b\xca\x9f\xdd\x0f\x49\xe7\xaf\x81\x97\x70\xd0\x38\xfd\x7a\xdc\xed\xd8\x57\x91\xf6\x86\xee\xc9\xbd\x7d\x95\xb2\x55\x8a\x7d\x83\xee\x3d\x25\x71\x9f\xdd\x0c\x68\xfa\x08\xe2\x69\x50\x1d\xdf\x3d\xf1\x75\x7e\xaf\xfa\x1a\xf5\x17\xeb\xe8\x53\xbe\xd9\x97\x91\x7a\xcf\xeb\x86\xcb\x74\x3f\x24\x28\xaa\x56\xcf\xe1\xbd\x15\xe4\x99\x9f\x30\xe7\xc1\x59\x18\xa9\x13\x43\x51\x0d\x4b\xcc\x56\xbd\xd8\x3b\xd3\x00\x15\xbc\x2e\xd1\x6a\x19\xa2\x5b\xcf\xa5\xdc\xf2\xef\x16\x6d\x05\x67\x67\x49\xe7\x9b\x4a\x69\x70\x4b\xc9\x25\xfa\x76\xaf\x89\x68\x68\x4c\xb3\x55\xd5\x93\x5e\xc7\x37\x93\xe0\x1a\x9b\xd0\x9a\xa3\x6d\x00\x77\x9c\xe4\xcb\x52\x46\x45\x79\xc7\x14\x58\xd8\x69\x58\x4e\x53\xf2\xe1\x0f\xfd\x3d\x51\x4a\x01\xed\x86\x15\x9b\xdc\x1b\xd2\x6b\x2b\x5e\x35\xaf\xe8\x1f\xed\x88\x22\x3f\xc7\x73\xdc\xa1\xbc\x5a\x05\x44\xc9\x73\x55\xa8\x5f\x94\x4e\x88\x3a\x44\x05\x53\xa2\x8e\xb4\x6a\xb1\x05\xc6\x90\x90\x3e\x43\x82\xde\x67\xa2\x4e\xd0\x04\x7c\x12\x31\x42\x6e\x38\xbd\xb2\x94\xef\x59\x75\xfa\xe1\x88\x1d\x73\x78\x18\xf8\xed\xe6\xcc\x61\x0d\x77\x5b\x35\xd9\x53\x24\x63\x1b\x75\xaa\xde\x44\xd1\x19\x7a\xa2\xf7\xad\xec\x76\x8c\xbb\x70\x25\xd7\x63\xc2\xdc\xe3\x2b\xca\x54\xec\x3c\x5e\x58\x70\xc4\x9b\xd3\xc2\xb8\xf7\x54\x70\x66\xab\xca\x6a\xd5\x29\xb8\xd0\x2b\x5f\xc1\x1c\x28\xc4\x0c\x9e\xfc\x99\x69\x8e\xec\x6a\xc1\x5a\x99\x5a\x0b\xa6\xa1\x22\x26\xa8\x82\x48\x1e\xdc\x0e\x78\xf4\xe2\xd5\x0d\xee\x06\xd0\x8c\xc1\x97\xdb\x2e\x40\xb0\x9f\xe6\xcc\xd5\x69\xe7\x51\x00\x31\xd7\xce\x57\x92\xa8\xe5\x38\x11\x2a\x5f\x6c\xba\x37\xaf\x91\x3c\xbc\x48\x92\xc8\xaa\xb4\xa5\xae\x6b\x74\xe9\x16\x3b\x6e\x06\xb0\x7b\x75\xbc\xca\x71\xe3\x2d\xc0\x74\xe8\xd3\xc4\x3c\xb9\xe0\x4d\x65\x77\x9b\xb1\x01\x11\xfb\xc8\xee\x36\x81\xe7\x0f\x6d\xb9\x19\x24\x12\x49\x04\x57\xdf\x54\x3b\xb9\x94\x49\x19\x55\x29\xfe\xbf\xf8\xb8\xfc\xe7\x44\x50\xe8\x66\x18\x84\x82\x9b\x9a\x9c\x41\xbb\xc7\xaf\x60\xb2\x3d\x6b\x89\x72\xa0\xf1\xe4\x5e\x36\x27\x26\xf1\xf1\x5e\xa0\x35\xf2\x9d\x4e\x56\x15\xbf\x23\xe1\xf5\xa0\xc7\xee\xef\xe4\x2b\xb1\xdf\x7f\xc1\xaf\x3d\xfb\x93\xca\x19\x3f\x7f\x24\xfa\x8b\xcf\x05\x12\xbd\xe5\xc7\xdc\x30\x61\xcd\x41\xe7\x93\xb4\x86\x90\x75\xfd\xb1\xe7\x51\x8a\xc2\xfb\x24\xfd\x17\xfe\x95\xbe\xe0\x5f\x3a\x14\xe6\x08\x6e\x8d\x83\x6a\x06\x3c\x22\xf4\x8f\x04\xcb\x53\x2f\x65\xcf\x13\xc4\xa9\x2a\xc0\xbe\x7a\x53\x19\x20\x5f\x31\x48\x76\x7b\xf6\x1c\xe1\x79\xb7\xd6\xae\x28\x05\xf7\x35\x38\x91\x37\xde\xa0\x06\x77\x68\x14\xd5\x91\x38\x56\xa3\x2c\xa6\x6f\x4b\x48\xb4\xf4\x4f\xf3\x70\x27\xb4\xcf\x71\x4c\x20\x40\x44\x72\xff\x29\xbd\xa1\x14\x85\x28\xc3\xac\x44\x41\x91\x3f\xbc\x1d\xb8\xc9\xe7\x25\x6c\x6b\xaf\xf1\x41\x24\x4f\x3c\xb2\x27\x14\xc1\xe4\xe2\x7e\x24\xdc\xc7\xaa\x17\x0f\x58\x7c\x25\xea\x9f\x2d\x47\x41\xf2\x99\xc0\xd0\xde\xe6\xec\xac\xf8\x36\x3f\xc8\x4f\xc2\xb4\x5e\x27\x7c\x29\x5f\x92\x0c\xd7\x57\x01\x85\xe7\xab\x83\x87\x30\xa2\x34\x7c\x65\xdf\x89\x75\x60\x36\xee\x88\xe5\x0c\x6e\x33\xa6\x8b\x41\xfe\x52\x54\xaa\xe7\xac\x50\x59\x5a\x0e\xfe\x97\x9a\x33\x91\x4b\xdf\x12\xf3\x10\x9b\xf2\x85\x7c\xb9\x9c\x42\xfc\xdc\xce\xb1\x7b\x68\x9a\xb9\x22\x5f\xf2\x7f\x97\x4a\x04\xa3\xeb\x87\xfe\x3b\xb7\x5e\xb9\xf0\xcb\xba\x94\x5c\x9f\xf4\xc9\xb3\xe1\x5c\x04\x59\x35\xef\xc2\x73\xd8\xf2\x89\xf6\x91\x1f\x66\x2f\x08\xff\x6d\xe6\xca\x9f\xf1\xcf\x74\x33\xaa\xc5\x4d\x6e\x38\xb7\x83\x66\x42\x18\x6a\x6a\x12\x4c\x9a\x0b\x21\xa5\xc5\xed\x14\x30\xc9\xcf\x75\x04\x7b\x49\x09\x21\x69\x45\x15\xb3\xe4\x37\xa8\x19\xc2\xe0\x34\x3c\x6d\x2d\x7c\xe9\x03\xe2\xb0\x7e\x8e\xfb\x19\x00\x49\x37\xf3\x09\x50\xb6\x4a\x78\x38\x1a\xf8\x10\x48\x0d\x67\x8e\x21\x0c\x67\xcf\xcf\x0f\x4d\xed\x70\x82\x24\x33\x23\x99\x63\x51\x3a\xc7\x75\x00\x61\xd7\xe6\x8b\xb7\x51\x33\xae\x32\x6d\x2c\xaa\x0f\x08\xed\xf3\x39\x65\xdf\x2f\x80\x4d\x57\x98\x71\xe5\xb3\x04\x75\x96\x49\x8b\x8b\x9d\x9d\xad\xe6\xa8\xca\x30\x8f\x04\x8c\x4c\x44\x26\x41\x84\x13\x9f\x36\x13\x25\xee\xa4\xa8\x21\xcc\xd1\x9a\x47\x74\xa3\x25\xef\x98\x5e\x0f\xc1\x37\x6a\x8f\x57\x7d\xa4\x9c\x4a\x38\x90\x6b\xc6\x39\x33\xbe\xde\xe0\x38\xe5\x29\x7c\x02\xc0\x2d\xa7\x40\x3b\xbd\x80\x4f\x9b\x2c\xef\xc8\xae\xab\x85\x9a\x28\xa6\x0a\xc9\x2c\x17\xd9\xfc\x56\xcb\xc8\x3c\xe3\x12\xd7\x91\x22\x5b\x76\x2b\xc0\xf6\xab\x45\x2e\x5c\xc2\x44\x91\x4e\x2f\x81\xf2\x2d\xcc\x71\xce\x8c\x65\x5f\xb8\x1d\x30\x6f\xea\x26\x41\x98\x4a\x01\x72\x89\x8f\x29\x10\x31\xdc\xa9\xea\xcd\xbb\x80\x78\x4e\xdb\x41\xd7\x64\xc3\xec\x4b\xe1\x4a\xbc\x86\x67\x45\xfb\x15\xe5\xd8\xed\x90\xf9\xaa\xd8\x69\x2f\x1a\x38\x25\xe2\xe7\x1d\xed\xf8\x02\xd2\xd0\xa8\x04\xaf\x24\xcc\x02\x81\xc8\x77\x7a\xff\xfd\x8f\x1f\x3a\x9e\x06\x6f\x02\x7f\xff\xd3\x07\x92\x67\xee\xbf\xff\xf9\x03\x6c\xdf\xa3\xc2\xd9\x92\x4d\x3f\xe3\x1a\x50\xd0\xa0\x77\x6d\xf9\xa9\x6a\xf6\x30\x78\xe8\xa7\xe7\x0f\x9f\x65\x2a\x3e\xf7\xf1\x12\x77\x97\x51\x07\x2b\xbc\x70\x59\xf1\x0a\xaf\xf7\xdb\x4c\xc7\xd8\x09\x07\xb0\x5f\xae\xb8\x61\x20\xcb\xb9\xc9\xdf\xdd\x6f\x1e\x6e\x55\xf0\x60\xa9\xf3\x26\xc6\xfd\x93\xfc\x7a\x8a\x81\xf0\xd0\x7f\x77\x2d\x35\x81\xd5\xfc\x46\xee\xd3\xb2\xd4\xeb\xec\xf7\xb7\x65\x3f\x8b\xb9\x92\x05\x0d\x40\x97\xe3\x2c\xed\x45\x0c\xa2\xae\x99\xc8\x31\xf0\xb6\x04\x62\x0c\xee\x2d\x7e\x0e\x32\x87\x95\x09\xd0\x54\x6d\xca\x6a\x3d\x95\x9c\x0d\xf2\x05\xd7\x8a\x29\xd9\x86\xbe\x0d\x4d\xd2\x25\x57\x87\xfd\xfc\xc6\x5a\x44\x9e\x20\x89\x72\xe9\xea\x59\x12\xc6\xeb\x05\x2c\xac\x30\x42\xf3\x50\xd5\x39\x4f\xa0\xbf\xb1\x89\x5d\xa3\x61\x4f\xae\xf0\x61\xc9\x72\x2d\x51\x3d\xa9\x1d\x6d\x46\xe6\x1f\x4d\xb4\x8b\x2a\x24\xaf\x93\xfa\x02\x8e\x6d\x97\x53\xf8\x1c\x82\x93\x22\xd0\xaa\xce\xcc\x21\x5b\x45\x7a\x62\x96\xec\x74\x24\x23\x22\x32\xe2\xfb\x78\x6a\x51\x3c\x7a\x77\x28\x3a\xa6\x0a\xae\x90\xe8\x94\x86\xab\xb5\x2c\x60\x26\xf8\x8d\xfe\x39\xbc\x0e\xbc\x23\xac\x7f\xdc\x0a\x75\x9f\xfe\x59\x92\xec\x8b\xb6\xe8\xfc\xbe\x1d\xe7\x2f\x9a\x4d\xe3\xf7\x75\xfc\x1a\x02\x88\x85\xef\x7e\x31\x90\xcd\x24\xdb\xd3\xb6\xae\x5e\x10\x6e\xbc\xf3\x08\xe4\xc4\x60\x24\x63\xe0\x26\x14\x67\xba\x1b\x02\xd2\x41\xdc\x13\xb0\x1b\xd8\xe3\x5a\xd4\xd9\x06\xa0\xce\xc4\x38\x09\x36\x65\x4b\x16\x29\x23\xb4\x1d\xb3\xcc\x5e\xd5\x72\x0d\x9d\xeb\xe6\xd3\xd3\xc0\x9c\xac\x35\x1f\xb7\x1e\x4f\x37\xed\xcd\xc8\xd2\xd3\x2f\x1c\x53\x21\x74\x0a\x56\xd4\x2e\x27\xd2\x13\x6f\x05\xd5\x25\x38\x45\x5d\x2f\xba\x69\x38\x1b\xa8\x01\xf7\x87\x26\x75\xfa\x16\xe2\xf1\xf0\x46\x90\xa7\x5c\xd8\x6e\x19\x81\xfc\xb5\xfc\x4c\xab\x25\xee\xd9\x96\xdd\x7e\x03\x2e\x8d\x03\x30\xf9\xb1\x94\xa3\x1b\x6d\x7b\x20\x6f\x86\x41\x5e\x14\x84\x04\xbd\x2c\x5c\x29\xe8\x9a\xff\x19\x41\x0d\x95\x26\x9f\x27\x56\x31\xd6\x8b\xf8\xbf\x3a\x70\x24\x81\x22\x18\xa8\x2c\x5e\xc4\x0b\xb2\x27\xe4\xd1\x20\x77\x5a\x26\x1d\x02\x14\x5e\xd2\xbf\xdf\x45\x6d\x93\xce\xbf\x27\x26\xa1\x61\x80\x9a\x94\x7e\xa5\xf8\x35\xec\x82\xed\x94\xc3\xaa\xdd\x9e\x13\x8f\x88\x48\x67\xbe\x26\xb6\x22\xb7\x76\x04\xc7\x81\xf2\x4b\xb4\xa7\xfe\xa8\x6a\xeb\x57\xfa\x8b\xaa\x1f\x4c\xd1\x24\x76\x8c\x6b\xe0\x42\x4c\x98\x31\x61\x82\x0d\x73\xfd\xa0\xcf\x69\xc4\xac\x6e\xa6\xdf\x5b\x9c\x8a\x1f\xe2\x41\x96\xe2\x52\xc5\xff\xc3\x0c\x77\x91\x59\xab\xca\x64\xf1\x69\x8d\xa8\x5c\x53\xfc\x05\xdf\x13\x77\x9d\xe4\xc1\x2d\x55\xf7\x70\xbb\x7d\x58\x14\x0f\x26\x46\x1d\xac\x3c\x37\xec\xc1\xc9\xb8\x0a\xb9\x83\x25\x18\xd4\x14\xb0\xb1\x69\xdc\x31\x40\x34\x4f\xef\xd8\x29\xb7\x64\x0b\x67\x5a\x78\xbc\x61\x8d\x05\x73\xd7\x35\xe9\x8e\xb6\x5a\x42\xbb\x3b\x6d\xe3\xd3\x16\xb9\xa6\x10\x8e\x64\xb0\x01\x04\x59\x83\xdb\x54\x77\x76\xcf\xf0\xa0\xbc\x83\x0d\xef\xdb\x23\x28\x91\xd8\x32\x47\x11\x12\x30\x5e\x8f\x54\xc7\x7c\x27\x00\xa7\x58\xaf\x6f\xfb\x3f\x92\xfd\x4e\x35\x3e\x45\x02\x5f\x62\xc0\x53\x01\xb2\x2c\x6d\x26\xf4\x0d\xef\x57\xf9\xf2\x59\xc1\x6d\x6c\x65\x74\xc1\x6f\x0f\xb6\x6e\x9a\x8f\x72\x23\x7d\x8e\x4f\x9f\xb3\xaa\x7a\xcb\xe4\x08\x40\x2f\xe3\xdc\x79\xde\x55\x8b\x30\x10\xd7\x33\x4e\x98\xe8\x62\xc1\x73\xdc\x66\x7f\x17\x95\xf7\x1c\xbf\xd2\xff\xc9\x84\xe1\x40\xd4\x75\xf5\xd2\x22\x10\x5c\xb3\x03\xab\xcb\x55\xd7\xc1\xa0\x29\xf5\x74\x1c\xb7\xa5\x5e\x78\x6c\x32\x94\x13\x00\x7f\x2c\x59\x19\xa7\x8e\xce\x99\xa6\xdc\x47\xe3\x5b\x2e\x33\x5f\xbb\xf3\x93\x67\xdb\xa2\x7e\x5e\x9a\xab\xfd\x18\xcc\x99\xd2\xbd\x7b\x7d\x6c\xf8\xe7\xb3\xfd\x5a\xbc\xe7\xe0\x62\xcf\xae\xf8\x9c\x14\xfb\xf5\x13\xdd\xb9\x90\x43\x2a\xd0\x41\xc8\xc4\x49\x79\x17\x74\x0f\x41\xdc\x70\xc9\x86\xef\x2b\x74\x72\x70\xa2\x97\x05\xc4\x71\x54\x04\xd1\xdc\x09\x87\x1d\x8e\x88\x82\x83\x88\xd0\x27\xc8\xdf\x0e\x17\xcf\x53\xeb\x2a\xf2\x82\xe9\x1d\xf8\x59\x03\xd3\xc1\x59\xc4\x00\xd0\x90\x72\x49\xfc\x43\x5c\x39\xa4\x58\x1e\xdd\x53\xe8\x03\x05\x49\x8e\x5f\xe7\xf9\xe2\xa3\xeb\x11\xb3\xa7\xb2\xed\x71\x43\x60\x8c\x76\xf6\x50\xa4\x05\x94\xfd\x48\xcd\x3c\xc4\x71\x80\x04\x49\xc2\x20\x64\xfd\x55\xcb\x00\x1f\xf0\x48\x61\x0f\x93\x4f\x55\xb1\x27\xea\xe3\xb9\xb8\xab\xde\x9f\xe2\x7a\x69\xc5\xe3\x08\xe4\x68\xdd\x83\xf9\x64\xb1\xa7\xc2\x85\x65\xbe\x99\x83\x2b\x22\x4b\x7f\xf3\xa9\x9b\x6a\x99\x99\x90\x13\xa6\x15\x07\xb8\xc1\x94\xfa\x2b\x00\x21\xab\x12\x3e\x84\x33\x71\x71\x5b\xb3\x03\xf9\x5f\xd2\xd1\x7c\xc4\xd8\x92\x6b\x25\xee\xfc\xfe\x8b\xa7\xf2\x23\x42\x18\x60\x69\x50\x1f\x10\x16\x9c\x9d\xdb\xec\xf3\xf0\x39\xca\xcb\x2d\xbb\x51\xae\xdc\xb9\x70\x48\x12\x55\xbd\xd8\xec\xe1\x05\xc4\xcc\x88\x83\xae\x9d\x28\x0f\x3e\x71\x4a\xbb\x38\xd3\x07\x6e\x16\x9e\x07\x36\x11\x66\x07\x7d\xc5\x19\x92\x20\xe0\xd5\xa8\x69\xef\xe3\x7f\xe2\x8f\xa5\xdd\xa1\xdd\xbc\x5c\xe0\x34\xbe\x2e\xca\x1d\x87\x7e\x62\xb7\xac\xa5\xec\xb6\xc2\xf3\xbf\xd0\xea\x4f\x77\xb5\x2a\xa7\xe9\x53\xcd\x9a\x8f\x87\x5e\x9a\xc3\xa2\xe5\x40\x80\x5f\x68\xed\x67\x6b\x2d\xdc\xb2\x3e\x96\xe5\x2e\x68\x22\xee\x7e\xe0\xf3\x0a\xe6\x19\x1f\x97\x4f\x70\x34\xbd\x0e\x61\xf7\xa7\x8e\x30\xf1\x60\x27\x0c\xce\x63\x6d\x37\xfb\x82\x03\xf8\x78\x81\x98\x86\x8d\xe8\x95\xd0\xb2\x1d\x0c\x6b\x18\x59\xc0\xb9\xe1\x75\x64\x2c\x79\xa2\x2a\xf1\x66\x1a\x1c\x14\xfb\x0b\x55\xae\x6b\x56\xa0\x3d\xde\xbd\xd8\x61\x25\x9d\x70\x54\x71\xa0\xec\x0d\x18\x12\x6b\x2a\x3e\xa0\x3c\x9e\xb3\x20\xf9\x78\x81\x81\xe7\x65\x54\x57\xec\x79\x19\x74\x50\xa8\xe8\x58\x3d\x67\x93\x75\x28\xe5\x85\x53\xcb\xf7\x26\x2b\xdc\x90\xcb\x34\x98\x87\x46\x5e\x1d\x5e\x51\xd3\xdc\xc3\xba\x09\xae\x92\x8b\x3b\x28\xf6\xa2\xb0\x23\xb3\x78\xac\x07\x11\x4f\x14\x2f\x2a\xac\x0c\xa4\x18\xdb\x5b\x4c\x94\xc1\xb5\xe4\xed\x9e\xb6\xce\x4d\x45\x93\x0e\x89\x45\x63\xed\x5d\x5e\xdf\x20\x8a\x19\x2d\x00\xda\x47\x57\xcc\x77\xd3\xbf\xac\xcb\x1a\xa1\xa6\x38\xe4\x9d\x32\xa2\xc5\x82\xbd\xb8\xab\x5a\xa3\xf1\x1c\x4a\xf3\xad\xab\x8b\x8d\xb0\xad\xd0\x1f\xde\xa4\x07\x39\xe3\x4d\x11\xd6\x8e\x57\x5a\xb7\x2b\x17\x24\x13\xcf\xd8\xaa\xda\xd6\x08\x42\x9b\x9a\xe1\xe6\xce\x23\x61\x37\x12\x9c\xcd\xb2\x75\x26\x40\x8b\xa2\x24\x34\x3e\xe8\x1e\x3c\x42\xcf\x10\x74\x4a\x0a\x36\x0c\xdf\x25\x03\x83\xbf\x8a\x4b\x57\xc5\xec\x3a\xd5\xa3\xca\xbb\x3c\x65\x8f\xf6\x21\x8c\x86\x24\x4d\x7f\x41\x14\x1e\x56\x35\x33\x8b\xc1\x13\xa7\xe6\x4f\x80\x74\xbb\x46\x9c\x6c\xde\xea\xe7\x18\x48\xb4\x25\xee\xc9\x4b\xf9\x1a\x83\xec\x34\xcc\x82\x0b\xb8\x30\x06\x99\x37\x05\xeb\x3f\xcf\xe8\xdf\x58\x88\x76\x21\x59\x4d\x92\x06\x71\xee\xf8\x6a\x9f\x1c\x62\x70\x06\xa1\xbb\xdc\x2c\xe5\x9a\x26\xfb\x5e\x40\xdd\x13\x6b\x03\xbb\x76\x49\x14\x2f\x76\x2d\x40\x05\x7a\xe1\x00\xbe\xb4\x88\x4d\x02\xf6\x5b\xb6\x3c\x5d\x76\x35\x27\xbc\x95\x31\xec\x13\x8c\x62\xd6\xaf\x57\x22\x83\x60\x1a\xa0\xdc\x4a\x20\x99\x13\xde\x5a\x58\x2f\x34\x33\xb5\x6d\x40\x3b\x09\x1e\xc3\x6e\xe2\x44\xd4\xb8\xf9\x6c\x20\x22\xc3\x4a\xf4\xcb\xc0\xb3\xcb\x2e\x3c\x81\xd8\x80\xb0\x71\x8f\xd4\x2b\x8e\x11\x24\xfe\x70\x23\x08\x6f\x44\x07\x90\xf9\x9f\x0f\xf7\x19\x05\xf7\xba\xc2\xcb\x68\x3d\x04\x1c\x25\x8a\x95\x8b\x8e\x6a\x48\x98\xc7\x1c\xcf\xe4\x29\x73\x8a\xc7\x8f\xf0\xe9\x0c\x54\xba\xca\xd9\x0b\x26\x58\xdd\xbc\x4d\x93\x70\x24\x52\x74\x5b\xae\xf2\xb6\xb0\xfb\xe0\xca\x69\xd8\xb7\x17\x1c\x25\xbc\xee\x93\x6f\x48\xf9\xd6\x2a\x88\x33\x12\xc8\x47\x3e\x75\xa7\xf9\x66\x19\xc7\xec\x0d\x2c\x2d\x16\xc2\xc6\xf8\x26\x05\x31\x97\xfd\x8e\xf9\x8d\x30\x2f\x6b\x07\x43\xfe\xfe\x4f\xd7\x97\x6f\x4e\xd2\xcf\x0f\x0f\x87\xc3\x43\x2e\xfe\x70\xdf\x6e\xf8\xce\x41\xc1\xf7\xcd\xff\xc7\xc5\xeb\x93\xb4\xec\x17\x3f\xcc\x48\x51\x07\x1b\xf2\xab\x5b\xdd\x7d\x60\x54\x63\xea\x62\xd1\xf1\x1f\x67\x4f\xba\x62\x34\x1a\x69\x18\xa6\x24\xdc\x20\x79\xf6\xec\x6c\x51\x27\x53\xce\x18\xbd\x72\x58\x2e\xda\x12\x47\x73\xf8\x08\x32\x36\xa4\x13\x4c\xdd\x33\x1c\x82\x54\xd4\x8e\x76\xe3\xd5\x42\xa3\xa1\x0e\x40\xcc\x12\x7d\x06\x1b\xb4\xcb\xc4\xc4\xb9\x6d\x85\x43\xca\x74\xeb\x66\xbf\x29\x62\x8e\x49\x38\xd3\x89\x28\x8b\x5f\x87\x85\xe1\xe1\x82\xd0\x89\x4f\xd2\x3f\xb1\xa5\x88\x27\x4a\x68\x8b\xb3\x8c\xb6\x00\x3c\x1b\x16\x46\x8c\x9f\x40\x30\xa6\x01\x48\xec\x22\x13\xcc\x7d\x9e\x13\xce\x47\x95\xa8\xfe\xc6\x67\x7a\x7d\xba\x75\xfa\x1c\x68\x4d\xaa\x1b\x17\x89\xed\x74\xd3\xd9\x86\x17\xf1\x9a\x91\x90\xaa\xf9\xca\x8c\x58\x53\x78\x48\xc5\xbd\x67\x12\x45\x01\x7f\x04\x28\x73\x91\xd0\xdf\xc8\xaf\x5d\x30\xa6\x54\x83\x5a\x95\xc3\x0c\xef\x85\x75\x5e\xf6\xb8\x05\x37\xb5\x16\x45\xa3\x76\xb3\xe6\x57\x8f\xf1\x37\xdd\xe1\x44\x32\x11\x87\xe8\x88\x7b\x80\x75\xc4\x32\xd7\x61\xb8\x8b\x0d\xc5\x2d\xe5\x4d\x5e\x94\x51\xde\x34\xda\xae\x15\x70\xd0\xc6\x68\x97\x54\xe9\x78\x2c\xf3\xfb\x16\x8e\x09\x04\x72\x82\x9c\xe9\x28\xed\x7a\x3a\x6e\x95\x9c\xbb\xb4\x58\xbc\xb2\x55\x0a\xbe\x1b\x2f\x51\x46\x88\xac\xa3\x90\xa3\xb2\xa0\x16\x9f\x37\x31\x08\x2e\x43\xb1\xf7\xa7\x79\x4a\x8e\xae\x82\x85\x22\xb4\xd4\x6a\x6e\xfd\x72\xfd\x60\x90\x39\x0c\xff\x3c\x5c\xd9\x24\xab\x49\x64\xfa\x33\xf9\x0a\xb1\xb5\xdb\x34\xb7\x76\x5b\xee\x1c\xbf\xf4\x1a\x7a\x38\x32\x0f\xa6\x83\xf2\x90\x81\xf1\xa5\xc9\xe2\xea\xfe\x1a\x04\x24\x53\x11\xb7\x66\x7d\x17\x45\x09\x26\x54\x63\x22\x83\xf7\x44\xf7\x26\x2e\x5c\x39\xa8\xe1\xd5\xb0\x73\xd7\xc2\x91\xab\x61\x71\xd1\xf0\x7a\x58\x50\xf4\x2b\xae\x87\xc5\x48\x1a\x5f\xfe\xf2\x43\xfd\x8a\xfb\x5f\x53\x83\x1e\xcb\xb5\x53\x88\x9f\x28\x30\x25\xdd\x16\xe1\xd8\xbe\xe2\x1e\xd8\x40\xb3\xfd\x1a\x01\x77\xaa\x27\x1e\x25\x01\x72\xbf\x64\xf1\x2d\xaa\xe5\x72\x36\x6f\x9b\x43\xc7\x97\xad\x10\x4b\x99\xb9\x2c\xff\x4e\xaf\xf1\x5b\x40\xf8\x48\x0d\x44\x21\x1f\x92\xa8\xa7\xd9\x4f\xf4\x58\x5b\x12\x59\x94\x18\xc5\x8c\x3d\xa7\x1c\x84\x69\xe5\xd0\xd2\x7c\x6d\x5c\x72\x66\x52\x84\x36\xba\x43\xc6\x5f\xb8\x26\x06\xeb\x33\x1b\x4b\x51\xe8\x9a\x53\x14\x8c\x3f\x0d\xe1\xb6\x2b\xc1\x91\x42\x2f\xf2\x43\x7c\xf5\x96\x23\x10\x96\xc1\x11\x18\x11\x43\x05\xf9\xd4\x83\x84\xd7\x41\x08\xc2\x70\xe9\x21\x14\x41\x58\xf4\xcf\x5e\xbd\x91\x9f\xf0\x8e\xd4\xb0\x06\x70\x8f\xe4\xd3\xb9\xc4\x7c\x2e\x67\x53\xbe\x97\x96\x27\x3e\xac\x62\xe6\xb0\x57\x35\xf0\xcb\x41\x14\x6d\xbe\xc4\x31\x10\xff\x77\xa9\x24\x03\xfb\x62\x57\x6d\xf9\x70\x58\x8c\x90\x23\xa8\xbe\xc6\x87\x4b\xd7\x63\x1c\xfe\xe7\xd2\x72\x56\x42\x02\x1c\xde\x2f\x3c\x46\xec\x30\x92\xe8\xee\x7e\x97\x76\x15\xdb\x4e\x95\x40\x07\x0d\x82\x3a\x7c\xa4\x3e\xd0\x0e\xde\x99\x30\x08\xda\xa1\xdd\x8d\x2f\xda\xac\x6b\xb9\x74\x62\x79\x50\x5b\x2d\xb4\x4a\x54\xc6\x87\xeb\x33\x6b\xb0\xf7\xd0\xa5\x7c\xec\xfe\x8b\xd0\xf1\x97\x45\x01\xbe\x03\xcb\xe6\xa0\x6e\x3d\x1b\x4e\x84\x33\x67\x2a\xce\x52\xfc\x76\x50\x26\x19\x32\xb9\x64\xdb\x22\x10\x0e\x85\x80\xc2\x6d\xe5\x22\x6f\x3f\x72\x24\x63\x38\x2f\x58\x05\x87\x56\xc3\x61\xf0\xff\x70\xc6\x34\x82\xf6\x95\x7c\x8d\x1a\x8c\x1d\x0e\x51\x1a\xf6\x00\x63\xa6\xae\x00\x4b\xb3\x22\x92\xbd\x96\x2f\x79\x0b\x64\x48\x19\xe3\xbb\x8f\x94\xf7\x70\x38\x6f\x01\xbc\x43\xf4\x5f\xca\xff\xf3\xbf\xfe\x37\x9b\x4b\x1b\xda\x2d\x71\x51\x59\x63\x64\xf9\x79\xb7\xeb\x0a\x3e\x0e\xfb\x43\xf0\xe8\xa0\x23\x82\xfe\x54\xef\xfe\xd2\xd7\x88\x46\x39\x18\xb2\xd1\x37\xbb\x70\x0c\x88\x1c\x4a\xa2\x27\x73\x1c\x3d\x0e\xeb\x30\xa2\xca\x74\x8f\x70\x31\x7a\x6c\x72\x31\x69\x12\xf9\x42\x89\x6e\x7a\x4b\x49\xde\x37\xed\xea\x83\x8f\xe4\xe6\x26\x22\x8a\xe2\x06\xcd\xd0\xc3\x18\xc2\x5e\x30\xf9\x8d\x9f\xc2\x10\x4d\x5b\xc2\x46\xc2\xe5\xc0\xae\x46\x49\x64\x25\xb9\x77\xef\x2a\x09\x1b\x7a\xd0\xd9\xe5\x7b\x8d\x28\x8a\xeb\xed\x13\x11\x10\xc2\x5b\xfd\xa4\x68\xab\x78\x2c\x11\xa3\xf4\xa4\x3b\x7a\x53\x07\x0e\xf3\x66\xdb\x34\x31\xb0\x48\xf4\x08\x96\x9d\xb8\xf9\x83\x83\x7a\xf1\x7b\x23\x4c\x7e\x72\x78\xf6\x0a\x09\xb4\xae\x91\x80\x80\x75\x70\x53\xe7\xff\x09\xc2\x04\xa9\x01\x8e\x53\xf5\x4b\xd3\x07\xa1\x88\xa2\x90\xc8\x81\x2b\x3f\x42\x94\x45\x71\x8e\xb9\x72\x20\x6a\xe2\xf4\x7d\x14\xb8\x0e\x33\x83\xd4\xbb\xa0\xa3\x1b\x59\x0f\x36\x38\x71\xd1\x38\x17\xb0\x63\x37\xa9\xba\x6e\x2a\xc9\x20\x6c\x5a\x1d\xb9\x38\x75\x33\xdf\x4c\xb0\x64\xd6\x72\x34\xef\x8b\x21\xf6\xff\x9c\x16\xcf\xaf\x02\xcf\x67\x0f\x55\xd7\x05\x42\x02\xca\xf8\xe4\x74\x43\x0a\xc2\x26\x52\xf3\x50\x11\x8b\x72\xbf\x1e\xb9\x93\x34\x0e\x31\xf8\xed\xb7\x92\xc6\x75\xdc\x7d\x2f\xe9\x1f\x3d\x15\x9e\x0e\x1f\x14\xda\xb2\x06\x71\x84\x5c\xd6\x54\x40\xa1\x7f\xc7\x19\x2d\x91\x94\x76\x63\xb4\xb6\x5d\x9c\xa0\x23\x65\xdc\x19\xe2\xf1\xd0\x8e\x2e\xaa\xca\x28\x70\xd0\xb1\x13\xdf\x28\xa0\xde\x57\x48\x7b\xf1\x88\x03\x41\x2f\xea\x95\x43\x08\xdb\xf9\xe2\x9b\xd0\xc7\xb4\x37\x2f\xb8\x46\x3c\x63\xa8\xe3\x8d\xae\xe5\x62\xa4\x77\x16\x89\x2f\xe9\x86\xdd\x74\x56\xbd\xe0\x68\x4e\x0d\xfd\x72\x3d\x57\x4c\xd5\x5f\xbe\xa3\x7b\xe4\xec\xe3\xae\xcb\xba\xc3\x5e\x32\xaf\x71\x8e\xbc\x61\x27\xef\x2c\x11\x6e\xb3\xf1\xf1\xf9\xbf\xe7\x02\xef\xf4\xf9\x02\xeb\x80\x07\x33\x7d\x61\x53\x36\xfc\x79\x83\x02\xeb\x10\x86\x2f\x51\x32\x3c\xc3\xf5\x98\xdb\xe3\xb1\x98\x7e\xd8\x69\x0e\x46\x20\xdc\x7b\xa6\xc7\x69\x16\xbb\x63\x90\xee\x59\x1f\x1c\xe9\xf4\xc0\xd0\x03\xc9\x6f\x88\x3b\x93\x39\xc3\xf2\x71\x1b\xb1\xdf\xaa\xa5\xba\x23\x9e\x0b\x7c\xb8\x74\xc2\xda\xa2\xc4\x85\xce\x33\xf9\x72\x39\xaa\x6b\x69\x90\x4c\xdf\x09\x09\x80\x08\x5f\xf3\x20\x55\x77\x3d\xc5\x35\xdf\x69\xa3\x49\xb9\xdd\xf1\x14\xe6\x2e\x22\x18\x4f\x93\x00\xaa\xb8\xa9\xbd\x82\x84\xfc\xcb\xb0\x2e\x09\x06\xaf\xbb\xe7\x9b\xe6\x90\xc8\xd6\x39\x83\xfb\xac\x04\xec\xd3\x94\xb8\x4b\x92\xc6\x32\x8a\x46\x85\x48\xe5\xca\xad\xc6\x0d\x18\xe7\x0f\x2e\x79\x62\xe7\x70\xd7\x3b\x2d\xfe\x26\x0b\xa0\x90\x1a\x70\xaf\x8e\xe5\xfa\x90\x38\x66\x5a\x2b\x04\x58\xdf\xac\x48\xa2\x51\xbb\x21\xc4\xd7\x34\xcc\xfd\x1c\x35\x77\x62\xf6\x2d\x84\x63\x52\xc3\x9b\xc4\xd3\x91\x56\xe4\xc1\x0b\xd7\x0f\xf7\x9a\x8a\xef\x47\x08\xf1\x35\xfd\xe0\x56\x1e\xc1\xe3\x93\x27\xf1\xae\xfe\x90\x72\xa8\xd1\xa5\xa2\x83\xfc\x61\x17\xfd\x2d\xc7\x9b\x60\xbf\x86\xf3\x48\x31\x90\x3f\xd8\x9c\x3c\xde\x38\x25\x47\x0e\x79\x27\x44\x04\xf1\xf1\x99\x0c\xa8\xf1\xe5\x25\xce\x33\x8d\x92\x0e\x34\xf0\xde\xf1\x60\x53\xbb\x90\xf6\xcb\x8b\x74\x90\xb1\x2e\x54\xae\x93\xcc\x2f\x6f\xbc\x02\x67\xa1\x24\x44\xbe\x0b\xb7\x0c\x08\x78\x36\x93\x85\x04\x23\x76\x6b\x9c\x59\x5d\xd0\xea\xb8\x32\xc7\xaa\x01\xe5\x58\xf4\x18\xce\x78\x67\x28\x9d\x05\xc6\x56\x66\xca\x27\x26\xb3\x3a\xd7\x02\x40\x6d\xf3\xdb\xc8\x79\x87\x43\x80\xb0\x46\x16\xad\x9a\xe3\x3b\xf6\xb8\x2b\x7e\xaf\x96\x08\xbf\x8e\x60\x8e\x1a\x65\x66\xe1\x52\x1f\x13\x88\x27\xbb\x55\x9b\xb3\x1f\x8a\xcd\x35\x33\x8b\x80\x14\x50\xe1\x2f\x6e\x94\xee\xb9\x25\xcf\x0d\x70\x7a\x4c\x15\x3d\xb8\x8b\x29\x7c\x43\x07\xc0\x36\xee\xee\x01\xd8\x82\x5c\x85\xa0\x6e\x04\x2c\xe0\xae\x8e\xe8\x3b\x49\x5f\xdf\x11\xf0\x8d\xaf\xec\xc8\x89\xf5\x42\xa3\x63\x16\xc5\xe4\xfa\xbf\xab\x7f\x03\x75\x07\xc4\x19\x85\x5f\x1d\x10\x7c\xf4\x88\xa7\x23\xfa\xc0\x8d\xcd\xaa\x85\xc3\x84\xba\xd5\xe9\x76\xe6\xab\xaa\x69\x0a\xa1\xca\xd6\x7d\xe8\x7a\x17\xdf\x40\x67\xaf\xaf\xbe\xbd\x55\x91\x84\x07\x17\x5f\x80\xf7\x1e\x37\xa2\x84\xe1\x08\x58\x42\xf2\xbe\x07\xda\x3f\x1c\x79\x2c\x58\xde\xf0\x92\x63\xb0\x2e\x7a\x53\x76\x1c\x1d\xf5\xce\xc8\xb4\x71\x44\xde\x61\x68\xe6\x4e\x02\xb1\xac\x4c\x96\xb3\x67\x92\x12\xf5\x34\x62\xc6\x7a\x4b\x38\xd8\xe2\xc5\xba\x05\x07\x25\x6c\xea\x4a\x7c\x5a\x2e\xe4\x8b\xc6\x9e\xb0\x29\x46\xed\x30\x1c\xcc\xc8\x5f\xe8\xf2\xa3\x83\x71\x91\x6d\x4c\x2a\x08\xc8\x77\x90\x1f\x44\x4a\x85\x2b\x7b\x6b\xb1\x5f\x7d\x0d\xe8\x09\x4c\x98\xfb\xa0\x67\xda\x0f\x54\xba\xef\xa6\x5a\xcc\xf8\x60\x34\xd5\x63\x61\xf7\xc4\x27\x33\x09\x0e\x07\x58\x70\x38\x40\x79\x34\xed\x24\x48\x88\x70\x1e\x66\xec\x5c\xe0\xb5\x28\x39\xde\xf8\x7c\x3a\x6e\xfb\xc7\x49\x7c\xc5\x3f\x4a\xc8\x17\xa3\x56\xcc\x80\x1d\xa6\x99\x8b\x9c\x4f\x31\x67\xb9\xa8\xf6\x38\xf8\x56\x98\x25\x1e\x86\x51\x92\x3e\xcc\x14\x8f\x44\x6c\xaa\x61\xda\xa6\x59\x71\x80\x64\x7b\x86\x2f\x18\x9e\xca\xce\x71\x9d\xe6\x2d\x1d\x55\x81\x4b\x3f\x61\x0a\xce\xb5\xfa\xbc\x8b\x4b\x63\x09\x86\x09\x7a\x61\x72\x04\x48\x3a\x75\xbe\x58\x63\xfc\xb3\x29\x42\x32\xd5\xd8\x11\x93\xbe\x51\x3b\x01\x29\x8f\x67\xa5\xf6\x54\xd6\x24\x0c\x3f\x52\x8a\x97\xc9\x82\x5c\xbe\x7d\x50\x67\x1a\x9f\xac\xd1\xd0\x22\x7c\x15\xc1\xc5\x22\x4b\x2f\xb1\xe2\xba\x3b\x0b\x05\xbb\x18\x5f\xb7\xd5\xf8\x67\x5a\x52\x24\x8e\x3b\xb6\x33\x5f\xb3\x6e\x8c\xea\xf0\x91\x7b\x5d\xad\xf3\x72\x02\x4b\x37\xe6\x11\xe2\x88\xe4\xab\xea\x18\xf4\xd2\x43\xb8\x6a\xbe\xbd\xab\xb0\x9e\x71\xbc\x02\x58\xe4\xa2\x4e\x46\x6c\xcd\x40\xbe\x50\xc3\xa0\x8b\x93\x55\x7c\x43\x27\xf9\x35\xbf\xd5\xc2\xbd\x41\x76\xce\x71\x2f\xdb\x39\x47\x46\xe0\x3d\xac\x94\xd7\x32\x9b\x3a\xb6\xc0\x4d\x17\xbf\xab\x67\xe8\x10\xeb\xdc\x53\xd5\x1f\xeb\x5b\x5b\x76\xb7\xf5\x22\xc3\x53\x74\xdd\x5a\x0f\x2a\xdf\x96\x62\x2b\x7f\x30\xa3\xb4\x47\xb9\x86\xb7\x29\x71\xa4\xd7\x3d\x90\xc0\xc0\xdf\x2f\x28\x1d\xfe\xc3\xb4\xc5\x3d\x04\x4f\x44\x69\x13\xe0\x48\x3c\xeb\x7f\xb8\xb3\xa1\xc1\x58\x02\x86\x18\xe0\xb6\x45\x57\xf8\x29\xdb\xaf\x18\x41\x70\x48\x1e\x0e\x83\xc9\x40\x57\x3f\x78\x45\x18\x01\x9f\x11\xf7\x3d\x3b\x3c\x70\x24\x53\xf6\xe6\x50\x2f\x29\xdd\xd0\xec\xa9\x41\x35\x1e\x1d\x19\x50\xd8\xee\x1d\x33\xf4\x20\xea\xc5\x97\xc7\x18\x6e\x42\xf2\xb8\xeb\x7e\x87\xa7\xbd\xdd\xab\xae\xef\xf0\x3b\x64\x0a\x12\x94\x38\x5b\x35\x6d\x43\xd3\x23\xc1\x1f\x34\x50\xf1\x0b\x4b\xeb\x26\x0a\xc0\x04\x7e\x9b\xed\x35\x60\x87\x95\xb9\x40\x32\xc9\x0f\x1c\xbd\xc3\x97\xea\x9b\x3e\xdf\x58\x19\xb6\x40\x2e\xd4\x6e\x7d\xc3\x19\x56\xea\xd4\x32\x82\x92\x5a\xa6\x99\xb3\xab\x3e\x8a\x28\xf0\xa5\xa6\x04\xb0\x38\xe6\xe0\x88\x0a\x84\xae\xfd\x2e\xe3\xa1\xe2\xea\xb7\x24\xa7\xaf\x91\x9c\xde\x70\xf2\xb8\x05\xeb\x95\x2b\x36\xe8\xd4\xb1\x72\x7c\xcb\x76\x58\xe6\x39\x5f\xc6\x1d\xc2\x1b\xe6\xd6\x65\xbe\x1b\xe1\xed\x25\x25\x8e\xb0\x06\xc8\x31\x02\x00\x7b\x1c\x0b\x61\xa9\xaa\x80\x62\x15\x96\x78\x45\x49\xc7\xa0\xe1\x01\x30\x84\xc7\xa3\xdb\x47\x4a\xe8\x9e\x3d\xec\x95\x9e\xd9\x8c\x7a\xd5\xcc\xff\x86\x97\xa2\x15\xfa\x52\x7e\x06\x50\xf3\xa6\xe9\xf9\xdd\xba\x1d\x8b\x5b\xf0\xcc\x12\x34\x3d\xb3\x74\x16\xb7\x16\x1f\x47\x98\x12\xe8\x31\xaa\x04\xfa\x38\xae\xb6\x1c\x0e\x8b\xda\x6a\xf7\x0b\x7e\x52\xbb\x73\x0d\x5e\x5c\x73\x18\xad\x6b\x97\x31\x6a\x71\x54\x32\xa4\xd0\x61\xe1\xa9\x96\x17\x24\x44\x94\x93\x4d\x9f\x71\xce\x9d\x6d\x8f\xca\x86\x8d\x8f\x8a\x4f\xad\x14\xc4\xe1\x67\xa3\xf3\x7c\xbf\xf8\x58\xf6\x7c\xdd\x67\x9d\xe1\x84\x39\xac\xeb\xca\xc0\xd2\x67\x00\x4b\x5f\x12\x58\x7a\x23\xcf\x3d\x8f\x6b\xa5\x4d\x67\x5b\xf6\x39\x3c\x05\x82\x5a\x5e\x9c\xd1\x0c\x70\x72\x91\x4f\x95\x82\x75\x26\x53\x29\x5b\x57\x21\x0b\x3e\x41\x0d\xfa\x10\xb5\x08\xde\xa7\x0e\x64\xaa\x36\x56\x03\x64\xf7\x5b\xdc\x2e\x24\xc8\x3c\x2b\x06\xd4\x87\xb7\x92\x12\xc0\x22\x5a\x2e\xc1\x1a\x8f\xc4\xa1\x38\xc2\xe6\x12\xf8\x4d\xcc\x28\x85\x83\x79\x60\x61\x5c\x04\x77\x95\xef\xbb\x49\xc0\x5d\x2e\x8b\xe9\x28\xa4\x35\x6f\x80\xd6\xf2\x10\x4e\x1b\xed\x04\x95\xc2\x56\x44\x53\x13\xbf\x79\x0d\x3a\x4b\x34\x07\x1f\x25\xb8\xcd\x5b\xc8\x59\x4e\x53\xd8\x2f\x3e\x43\xaa\x60\x22\xbd\x42\x66\x95\x14\x93\xb7\xf0\xc4\x8e\x7d\x5b\x5e\x14\xac\x40\xd2\xa2\x37\x51\x35\xcd\xae\xa5\xba\xa0\x2b\x9a\x1e\x5e\xaa\xd7\x1a\x21\x98\x9a\xcb\x4a\xfc\xdc\x9c\x7a\xae\x08\xa0\x84\x80\x93\x93\xa4\x4d\x58\x18\x4a\x83\x49\xe1\x71\x05\xaf\xa1\x4f\x04\x63\x3b\xfa\x5c\x85\x05\xfa\xfc\xca\x17\x2b\xfc\x68\x02\x1c\xe3\xa0\x3b\xc6\x6e\xd5\x65\x21\x3a\x87\x71\x42\xf3\x01\x7a\x19\x5c\x31\x1c\x81\xe2\xe4\x3b\x7c\x60\x35\x38\x7e\x34\x94\xe3\xa0\x0f\x2f\x43\xab\x23\xdf\xa8\x86\xa0\x4c\xf0\x9c\x36\xbb\x4f\xca\x35\xce\x29\x14\x79\xeb\xa0\x61\xc8\xbd\xfc\x01\xe8\x3b\x8f\x96\x62\x5c\x4c\x3f\x48\xf4\xff\xe4\x4d\xa6\xb0\x03\xfe\x65\xa6\x23\xed\xff\x87\xbc\xcc\x34\xb4\xcc\xba\xa7\x99\xf0\xf4\xcc\x0c\x17\x5f\xe2\x75\x1c\x1d\x5c\x45\xeb\x19\x25\xc2\x75\x8a\x84\xf8\x28\x1f\x49\xde\xec\x6b\x16\x5f\xb1\xda\x60\x89\x0e\xdb\x0b\xee\x2a\x45\xad\x49\x89\x71\xfc\xd9\xb8\x0b\x92\x32\x3e\x2d\x92\x74\xb5\x46\xa4\x1a\x7d\xb0\x54\xeb\xd1\x0c\x26\x09\x3d\xa2\xb1\xb4\x61\xb0\x3c\x18\x93\x74\x69\x0f\xba\x1c\x2f\xee\xa8\xd7\x52\x48\x82\x28\xd8\x35\xa8\x49\x66\xa2\x80\xc1\x50\x24\x25\x0c\x56\x25\x29\xf2\x14\x09\xde\xe6\x93\x2f\x4d\x1f\x7b\x61\x04\x3d\xd6\x6a\xe2\xa6\x83\x4a\x01\x34\xc9\xab\x82\xbe\x0c\xfd\x53\x25\x15\x77\x83\xd8\x99\xb6\xeb\x35\x65\xa7\xef\x9a\x72\x00\x2a\x49\x81\xb2\x5f\xc0\xcb\x8d\x75\xfb\xf3\x37\x61\x7a\xf0\x7c\x09\x72\xfd\x23\xf4\x32\x2e\xde\x5c\xe6\xe2\xb3\x83\x4d\x45\x43\xfc\x3d\x63\xbf\x1d\xed\x7d\xdf\xb7\xd5\x7c\xcf\xe7\x63\xea\x0f\xc0\x44\x2d\x07\xe9\x2e\x6f\x04\xdb\xed\xcd\xdd\xfe\x5a\xbf\x8e\xc3\x0e\x5e\x46\x1d\xc0\x49\xf4\x29\xeb\xdf\x73\xfc\xb2\x2a\x60\x5e\x76\x00\x72\xe8\x14\x41\x6c\x99\xb9\x66\x5d\xce\xcb\x83\x78\x53\x91\x5e\x9f\x6a\x4e\xb7\xed\x77\x16\xb1\xf5\xfa\xe2\xe6\xea\xf8\xf4\x31\xa4\xce\x03\x00\x83\xc9\xe0\x2c\x9d\x10\x64\x05\xb3\xa2\xaf\xfc\xf4\xf2\x00\x8b\xbc\x70\x73\xf3\xfa\x9a\x3e\x17\xed\xad\x9c\x34\x69\x1d\x1f\xab\x1d\x83\xe9\x93\x7a\x5c\x15\xa5\x00\xf6\xcf\x48\xb1\x89\xe7\x23\x09\x52\xf1\xaa\x85\x9b\x89\xab\xd3\x0b\x68\x7d\x94\x14\x92\x92\x36\x8d\x28\xbe\xf6\x16\xb7\xef\x04\x8d\xb3\xd1\xb7\xb8\xd5\x22\xab\x8b\x81\xdf\x92\x63\xef\xe2\x5d\x67\xf5\x04\x61\x24\x06\xeb\x4a\x5f\x0d\xd2\x69\x18\xed\x76\xb1\x69\x18\x3b\x99\xdb\xf5\xc2\x05\x15\x6e\xc6\x51\x03\x5f\xf9\xc6\x4f\x58\x57\xb0\x6b\xdd\xd1\xd7\xc9\x7b\xe8\x71\xb0\xde\x10\x30\x93\x05\x6e\x91\xc1\xa3\x8a\x7d\x20\xf8\x51\x81\x28\x44\x78\x54\x68\xda\xcf\xe0\xae\xe0\xe0\x62\x75\x30\x6d\xdf\x19\xd5\x55\xdb\x8f\x6d\xeb\x0a\x9b\xef\x76\x8e\xdf\x04\x31\xdb\x41\x22\x01\xc8\x27\x59\x35\x01\x04\x11\x5c\x37\xa8\x47\x2e\xc4\x84\x40\x7c\x2f\x46\x01\x86\x4c\x4b\x93\x9b\xe5\x92\x43\xae\x72\x60\x24\x0d\xd8\xc0\x3f\x39\xe4\x87\x6b\xdf\xbd\x15\xdf\xec\x45\x9d\xe7\x31\x9d\xeb\xdd\xaf\xb7\x48\x64\x49\xce\xc0\xdb\xbd\x7b\x5f\xf0\xed\x1e\xda\x6a\x1b\x66\x69\x43\x9c\x15\x36\x82\x2d\xb0\x6d\xf0\x58\x3c\x16\x7a\xb0\xff\xbd\x6d\xf0\x64\x7c\xbf\x76\x08\x66\x9b\xfe\x22\x93\x48\xab\x41\x19\x9c\x28\x2c\xe0\x27\x3c\x2e\x44\xfd\x1e\x97\xa0\x7e\x1f\x01\x97\x53\x66\xdb\x30\xae\xf1\x4b\x58\x8d\xeb\x31\xfb\xae\x29\x15\xd9\x80\x25\x6d\xf8\xf4\x65\x88\x83\x62\xee\x09\xe3\xdc\x4e\x21\x26\x49\x83\x20\xc3\x5d\xcf\xa7\x86\x3b\x8d\x4f\x0d\xf7\x4c\x9f\xaa\x1d\x1b\xf4\xa0\xeb\x36\x36\x11\xd7\xd7\xaf\xe3\xd9\xf6\xb9\x41\x78\x77\x76\x7e\xb9\xc7\x11\xd2\x56\xa4\xc2\xde\x4b\xf9\xf6\xd3\x0f\x41\x09\xc5\x66\x88\x3f\x4d\x1d\xd6\xd1\xfd\xb1\xa9\xfa\xf2\xe7\x41\x15\xc6\x2c\xa3\x25\x53\x2d\x8e\x20\xc6\x18\x65\xfc\x18\x54\x2a\x77\x46\xab\xb6\xb4\xed\xe9\x2c\x70\xe2\x1c\x11\xb3\x67\xb6\x8e\x94\x43\x46\x6b\x1d\x63\x9f\xf9\xf0\xf9\xfe\x4c\x9f\x8e\x57\xe7\xf9\xb7\x56\xcd\x33\x24\xfb\x1e\x4a\x5c\x37\x8b\xf3\xa6\x2e\xca\xd6\x3f\x84\x69\x7b\x55\xc3\xab\xdd\x8a\xd8\x4b\xf2\x1a\x72\x87\xfb\xff\x26\x70\x4b\x35\x30\x7b\x91\x0e\x26\x87\xd1\xe3\x75\xb0\x35\xe8\xdb\x75\xc6\x18\xe4\x0e\x15\x3b\x90\x67\x1b\xb5\xaf\xcb\x3d\x2b\xb8\x91\xa7\xaf\x61\x50\x77\xfd\x8e\x5e\x74\x8f\x0a\xc9\x43\xf2\xee\xd5\xe8\x71\x61\xbb\x7e\xe9\x26\xd1\xae\x37\x4d\x4e\xe2\x1f\xfb\x72\x4f\x95\xcb\x53\xef\x1c\xb0\x9a\x7e\xa6\xaf\xf1\xd3\xcd\x95\xdc\x5b\x82\xba\xcd\xde\xd2\x4f\xec\x26\x13\xb4\x6e\x4a\x71\xb3\xf4\xc5\x7d\x39\x40\x72\xc8\x99\x2f\xf0\x7b\xba\x83\x0a\x3b\x16\x33\xe3\x7c\x23\x28\xa2\xf3\x26\x20\xa6\x97\xbf\xbd\xbe\x1c\x40\x4e\x2c\x50\xcd\x99\x58\xd0\x9a\x33\xb1\x7c\xe5\xac\xc8\x0d\x01\xe7\x43\xd3\x23\x10\xc8\xa3\x03\x10\x1a\xf2\x47\xbf\x20\x9e\xc9\x8a\x94\xda\x8a\x7c\x27\x2b\x46\xe9\x4c\x7e\xc7\x40\xc1\x2b\x00\x02\x65\x8f\x00\x8c\x5a\xad\xc3\x36\x6b\x39\xe7\xf0\xfc\x40\x7c\x10\x02\x7e\x20\xbe\xbc\x93\xdd\x33\x68\xd2\x89\x3f\x55\x85\xbe\x97\x20\xf0\x57\x9a\x64\xa0\x06\xe2\x6b\x36\x08\xad\xda\x75\x93\x08\xb7\x72\xd2\xdb\x19\x7e\x45\x53\xa7\x0b\x91\xd7\x8b\xc0\xfa\x65\xc8\x4f\xe1\x49\x09\x03\x5e\x2d\x1c\x62\xcc\x62\xf5\xe2\xcc\xbf\x8f\x00\xe3\xd6\x60\x30\x9b\x6a\x59\x3a\x53\x98\x8e\xe6\x35\xa5\x45\xc0\xeb\xbe\xdf\x75\x76\x17\x15\xd1\xfc\xd3\x4b\xfa\x31\x18\x44\x58\x95\x8e\x64\x54\xd3\xae\x82\x79\x32\xc0\x8b\x24\x4c\x63\xdc\xa0\x95\x6f\x07\xe0\xca\xb8\x87\xec\xd6\x9e\xe3\x0d\x56\x88\x7f\x1b\xd3\xef\xcf\xae\x75\xde\x97\x27\x5b\x66\x28\xdd\xb9\x18\x06\x3b\x97\xb9\x23\xcc\x16\xad\xc4\xc5\xe2\x7f\x37\x7c\x50\xec\x72\xc2\xb5\x67\x69\x1d\xd1\x5e\xb1\x97\xdb\x3c\xfa\xe9\xe1\xbd\xfb\x82\xa0\xc9\x32\x26\x62\xd8\xc6\x00\xe5\xe7\x72\xb1\x0f\xce\x2d\x7e\x93\xdf\x6a\x28\xf4\xd5\x34\xe6\x7d\xb8\xaf\x11\xbf\xf8\x4a\x52\x02\x98\xa9\xe0\x78\xd6\x75\xf8\x50\x9a\x2f\xe5\xd1\xf6\x5d\xf3\x50\x93\x18\xca\x5c\x3a\xcc\x8d\x42\x7e\x66\x1b\xb9\xdc\x31\xf0\xf2\x30\xd8\x50\x0a\x09\xd3\x10\x60\x27\xf0\xa8\xb1\xbc\x89\x8e\x5b\x56\xb3\x63\x96\xb5\x9b\x05\xb0\x10\xc5\x83\x57\xbd\xa4\x0f\x92\xff\x25\x1f\xae\xe4\xbd\x38\x4d\x7c\x18\x3c\x62\x62\xf6\xcd\xc0\x4f\x27\xba\x60\x74\xbf\xd3\xab\x45\x75\x10\x53\x4b\x7e\x15\xa3\xe7\x09\xe4\x6a\x37\xe2\xc6\xda\xdd\xee\xe8\x45\xc1\x61\x6c\x64\x17\xab\x16\xb5\xb2\xe3\x93\xc4\xc1\x0e\x7a\xf0\xa8\x6b\x17\x8f\xee\x87\x61\x68\xd9\x90\x15\x54\xf9\xe3\xa0\x4a\x19\x9d\xc5\xf3\xfd\x5d\x63\xe8\xca\xef\xb0\x5e\xb1\xd6\x48\xd5\xdd\x3f\x05\x41\x6e\x87\x21\x81\x83\xb0\xc7\x4d\xfd\x2d\x15\xb9\xb0\x3a\x3a\x3e\xfb\x3d\xc0\xb6\xe0\x6c\x1a\x61\x7e\x02\x70\x4f\x9c\x2f\x10\x79\x3c\xd1\x8f\xbb\x11\x15\xe3\x7e\x88\x28\x8d\x56\xfa\x53\x10\xee\x13\x77\x07\x25\xa3\xea\x34\x52\xa2\xbc\x6f\xf9\x93\x7b\x1f\x21\x79\xdf\x37\xcd\xe6\x43\x92\xaf\x78\x4c\xf4\x37\xc1\x03\x24\xe2\x66\x0c\x2a\xa0\xcf\x44\x7e\xf2\xd7\x8f\x5c\xf1\x8f\xa4\xfb\x12\x5b\x42\xb8\xce\x1f\xb7\x48\xd8\x92\x26\x48\x8b\x9d\x13\xd6\x48\xe0\x97\x6f\xf0\xb3\xc0\xcf\x22\xbf\xc5\xaf\x03\x7e\x1d\xca\xf2\xa3\x14\x06\xdf\xa2\xe2\xa4\x4b\xae\x91\x72\x8b\xdf\x1c\x7f\x92\x7f\x4a\x3b\x1a\x12\xd7\x7e\x20\x48\x28\x37\xa7\xe9\xf6\x83\xd2\xe5\xa9\xd2\x27\xfe\xd5\xd2\xfb\x7c\xac\x77\xab\x49\xf8\xa2\x14\x6e\x5e\x93\xe4\xf3\x3e\x98\x0f\x69\xc8\x5a\xa1\x7c\x53\x2a\xf7\x43\x13\xe5\x93\xd2\xda\xfc\x90\xf9\x7e\xe9\x17\x52\x7d\xaf\xf4\x8b\xd0\x5b\xb4\xcd\x8e\x03\x06\x7e\x70\xcf\x09\xf9\xe7\x25\xce\x29\x4f\x83\xa2\x20\x4a\x1c\x5f\x3c\xe4\x37\x5b\xe4\x51\x33\xbe\x96\x37\x4b\x2c\x90\x67\x55\xef\xf6\x4e\x2b\xd3\x88\x1b\x0f\x7a\x05\xf3\x91\x55\xc4\xd7\x94\x63\xc6\xcb\x83\x1a\x34\xbb\xd9\x1c\x3b\x0b\xb4\xbd\xae\xfa\x7b\xf9\xfd\xbf\xfe\x2b\xc0\xe9\xf3\xdf\xfe\x2d\xbd\x78\xf6\x43\x5a\x7e\xe6\x38\x51\xfc\x46\xf7\xe7\x6a\xbb\xdf\x1a\x14\xfd\x7c\x1e\x01\xf2\x65\x3c\x78\x0d\xaa\x05\x5e\xdf\x35\x84\xd9\xfd\xff\x06\x00\x00\xff\xff\xe4\x84\xdd\x37\x31\xa0\x00\x00") func confLocaleLocale_enUsIniBytes() ([]byte, error) { return bindataRead( @@ -4379,7 +4379,7 @@ func confLocaleLocale_enUsIni() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "conf/locale/locale_en-US.ini", size: 40911, mode: os.FileMode(420), modTime: time.Unix(1441119631, 0)} + info := bindataFileInfo{name: "conf/locale/locale_en-US.ini", size: 41009, mode: os.FileMode(420), modTime: time.Unix(1441146568, 0)} a := &asset{bytes: bytes, info: info} return a, nil } diff --git a/modules/git/repo_pull.go b/modules/git/repo_pull.go new file mode 100644 index 000000000..a179e5280 --- /dev/null +++ b/modules/git/repo_pull.go @@ -0,0 +1,86 @@ +// Copyright 2015 The Gogs Authors. All rights reserved. +// Use of this source code is governed by a MIT-style +// license that can be found in the LICENSE file. + +package git + +import ( + "container/list" + "fmt" + "strings" + "time" + + "github.com/Unknwon/com" +) + +type PullRequestInfo struct { + MergeBase string + Commits *list.List + // Diff *Diff + NumFiles int +} + +// GetPullRequestInfo generates and returns pull request information +// between base and head branches of repositories. +func (repo *Repository) GetPullRequestInfo(basePath, baseBranch, headBranch string) (*PullRequestInfo, error) { + // Add a temporary remote. + tmpRemote := com.ToStr(time.Now().UnixNano()) + _, stderr, err := com.ExecCmdDir(repo.Path, "git", "remote", "add", "-f", tmpRemote, basePath) + if err != nil { + return nil, fmt.Errorf("add base as remote: %v", concatenateError(err, stderr)) + } + defer func() { + com.ExecCmdDir(repo.Path, "git", "remote", "remove", tmpRemote) + }() + + prInfo := new(PullRequestInfo) + + var stdout string + remoteBranch := "remotes/" + tmpRemote + "/" + baseBranch + // Get merge base commit. + stdout, stderr, err = com.ExecCmdDir(repo.Path, "git", "merge-base", remoteBranch, headBranch) + if err != nil { + return nil, fmt.Errorf("get merge base: %v", concatenateError(err, stderr)) + } + prInfo.MergeBase = strings.TrimSpace(stdout) + + stdout, stderr, err = com.ExecCmdDir(repo.Path, "git", "log", remoteBranch+"..."+headBranch, prettyLogFormat) + if err != nil { + return nil, fmt.Errorf("list diff logs: %v", concatenateError(err, stderr)) + } + prInfo.Commits, err = parsePrettyFormatLog(repo, []byte(stdout)) + if err != nil { + return nil, fmt.Errorf("parsePrettyFormatLog: %v", err) + } + + // Count number of changed files. + stdout, stderr, err = com.ExecCmdDir(repo.Path, "git", "diff", "--name-only", remoteBranch+"..."+headBranch) + if err != nil { + return nil, fmt.Errorf("list changed files: %v", concatenateError(err, stderr)) + } + prInfo.NumFiles = len(strings.Split(stdout, "\n")) - 1 + + return prInfo, nil +} + +// GetPatch generates and returns patch data between given branches. +func (repo *Repository) GetPatch(basePath, baseBranch, headBranch string) ([]byte, error) { + // Add a temporary remote. + tmpRemote := com.ToStr(time.Now().UnixNano()) + _, stderr, err := com.ExecCmdDirBytes(repo.Path, "git", "remote", "add", "-f", tmpRemote, basePath) + if err != nil { + return nil, fmt.Errorf("add base as remote: %v", concatenateError(err, string(stderr))) + } + defer func() { + com.ExecCmdDir(repo.Path, "git", "remote", "remove", tmpRemote) + }() + + var stdout []byte + remoteBranch := "remotes/" + tmpRemote + "/" + baseBranch + stdout, stderr, err = com.ExecCmdDirBytes(repo.Path, "git", "diff", "-p", remoteBranch, headBranch) + if err != nil { + return nil, concatenateError(err, string(stderr)) + } + + return stdout, nil +} diff --git a/public/css/gogs.min.css b/public/css/gogs.min.css index a7ffe1ee6..13a34e23a 100644 --- a/public/css/gogs.min.css +++ b/public/css/gogs.min.css @@ -1 +1 @@ -@font-face{font-family:octicons;src:url(../fonts/octicons.eot?#iefix&v=396334ee3da78f4302d25c758ae3e3ce5dc3c97d) format('embedded-opentype'),url(../fonts/octicons.woff?v=396334ee3da78f4302d25c758ae3e3ce5dc3c97d) format('woff'),url(../fonts/octicons.ttf?v=396334ee3da78f4302d25c758ae3e3ce5dc3c97d) format('truetype'),url(../fonts/octicons.svg?v=396334ee3da78f4302d25c758ae3e3ce5dc3c97d#octicons) format('svg');font-weight:400;font-style:normal}.mega-octicon,.octicon{font:normal normal normal 16px/1 octicons;display:inline-block;text-decoration:none;text-rendering:auto;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.mega-octicon{font-size:32px}.octicon-alert:before{content:'\f02d'}.octicon-arrow-down:before{content:'\f03f'}.octicon-arrow-left:before{content:'\f040'}.octicon-arrow-right:before{content:'\f03e'}.octicon-arrow-small-down:before{content:'\f0a0'}.octicon-arrow-small-left:before{content:'\f0a1'}.octicon-arrow-small-right:before{content:'\f071'}.octicon-arrow-small-up:before{content:'\f09f'}.octicon-arrow-up:before{content:'\f03d'}.octicon-beaker:before,.octicon-microscope:before{content:'\f0dd'}.octicon-bell:before{content:'\f0de'}.octicon-book:before{content:'\f007'}.octicon-bookmark:before{content:'\f07b'}.octicon-briefcase:before{content:'\f0d3'}.octicon-broadcast:before{content:'\f048'}.octicon-browser:before{content:'\f0c5'}.octicon-bug:before{content:'\f091'}.octicon-calendar:before{content:'\f068'}.octicon-check:before{content:'\f03a'}.octicon-checklist:before{content:'\f076'}.octicon-chevron-down:before{content:'\f0a3'}.octicon-chevron-left:before{content:'\f0a4'}.octicon-chevron-right:before{content:'\f078'}.octicon-chevron-up:before{content:'\f0a2'}.octicon-circle-slash:before{content:'\f084'}.octicon-circuit-board:before{content:'\f0d6'}.octicon-clippy:before{content:'\f035'}.octicon-clock:before{content:'\f046'}.octicon-cloud-download:before{content:'\f00b'}.octicon-cloud-upload:before{content:'\f00c'}.octicon-code:before{content:'\f05f'}.octicon-color-mode:before{content:'\f065'}.octicon-comment-add:before,.octicon-comment:before{content:'\f02b'}.octicon-comment-discussion:before{content:'\f04f'}.octicon-credit-card:before{content:'\f045'}.octicon-dash:before{content:'\f0ca'}.octicon-dashboard:before{content:'\f07d'}.octicon-database:before{content:'\f096'}.octicon-clone:before,.octicon-desktop-download:before{content:'\f0dc'}.octicon-device-camera:before{content:'\f056'}.octicon-device-camera-video:before{content:'\f057'}.octicon-device-desktop:before{content:'\f27c'}.octicon-device-mobile:before{content:'\f038'}.octicon-diff:before{content:'\f04d'}.octicon-diff-added:before{content:'\f06b'}.octicon-diff-ignored:before{content:'\f099'}.octicon-diff-modified:before{content:'\f06d'}.octicon-diff-removed:before{content:'\f06c'}.octicon-diff-renamed:before{content:'\f06e'}.octicon-ellipsis:before{content:'\f09a'}.octicon-eye-unwatch:before,.octicon-eye-watch:before,.octicon-eye:before{content:'\f04e'}.octicon-file-binary:before{content:'\f094'}.octicon-file-code:before{content:'\f010'}.octicon-file-directory:before{content:'\f016'}.octicon-file-media:before{content:'\f012'}.octicon-file-pdf:before{content:'\f014'}.octicon-file-submodule:before{content:'\f017'}.octicon-file-symlink-directory:before{content:'\f0b1'}.octicon-file-symlink-file:before{content:'\f0b0'}.octicon-file-text:before{content:'\f011'}.octicon-file-zip:before{content:'\f013'}.octicon-flame:before{content:'\f0d2'}.octicon-fold:before{content:'\f0cc'}.octicon-gear:before{content:'\f02f'}.octicon-gift:before{content:'\f042'}.octicon-gist:before{content:'\f00e'}.octicon-gist-secret:before{content:'\f08c'}.octicon-git-branch-create:before,.octicon-git-branch-delete:before,.octicon-git-branch:before{content:'\f020'}.octicon-git-commit:before{content:'\f01f'}.octicon-git-compare:before{content:'\f0ac'}.octicon-git-merge:before{content:'\f023'}.octicon-git-pull-request-abandoned:before,.octicon-git-pull-request:before{content:'\f009'}.octicon-globe:before{content:'\f0b6'}.octicon-graph:before{content:'\f043'}.octicon-heart:before{content:'\2665'}.octicon-history:before{content:'\f07e'}.octicon-home:before{content:'\f08d'}.octicon-horizontal-rule:before{content:'\f070'}.octicon-hubot:before{content:'\f09d'}.octicon-inbox:before{content:'\f0cf'}.octicon-info:before{content:'\f059'}.octicon-issue-closed:before{content:'\f028'}.octicon-issue-opened:before{content:'\f026'}.octicon-issue-reopened:before{content:'\f027'}.octicon-jersey:before{content:'\f019'}.octicon-key:before{content:'\f049'}.octicon-keyboard:before{content:'\f00d'}.octicon-law:before{content:'\f0d8'}.octicon-light-bulb:before{content:'\f000'}.octicon-link:before{content:'\f05c'}.octicon-link-external:before{content:'\f07f'}.octicon-list-ordered:before{content:'\f062'}.octicon-list-unordered:before{content:'\f061'}.octicon-location:before{content:'\f060'}.octicon-gist-private:before,.octicon-git-fork-private:before,.octicon-lock:before,.octicon-mirror-private:before{content:'\f06a'}.octicon-logo-github:before{content:'\f092'}.octicon-mail:before{content:'\f03b'}.octicon-mail-read:before{content:'\f03c'}.octicon-mail-reply:before{content:'\f051'}.octicon-mark-github:before{content:'\f00a'}.octicon-markdown:before{content:'\f0c9'}.octicon-megaphone:before{content:'\f077'}.octicon-mention:before{content:'\f0be'}.octicon-milestone:before{content:'\f075'}.octicon-mirror-public:before,.octicon-mirror:before{content:'\f024'}.octicon-mortar-board:before{content:'\f0d7'}.octicon-mute:before{content:'\f080'}.octicon-no-newline:before{content:'\f09c'}.octicon-octoface:before{content:'\f008'}.octicon-organization:before{content:'\f037'}.octicon-package:before{content:'\f0c4'}.octicon-paintcan:before{content:'\f0d1'}.octicon-pencil:before{content:'\f058'}.octicon-person-add:before,.octicon-person-follow:before,.octicon-person:before{content:'\f018'}.octicon-pin:before{content:'\f041'}.octicon-plug:before{content:'\f0d4'}.octicon-file-add:before,.octicon-file-directory-create:before,.octicon-gist-new:before,.octicon-plus:before,.octicon-repo-create:before{content:'\f05d'}.octicon-primitive-dot:before{content:'\f052'}.octicon-primitive-square:before{content:'\f053'}.octicon-pulse:before{content:'\f085'}.octicon-question:before{content:'\f02c'}.octicon-quote:before{content:'\f063'}.octicon-radio-tower:before{content:'\f030'}.octicon-repo-delete:before,.octicon-repo:before{content:'\f001'}.octicon-repo-clone:before{content:'\f04c'}.octicon-repo-force-push:before{content:'\f04a'}.octicon-gist-fork:before,.octicon-repo-forked:before{content:'\f002'}.octicon-repo-pull:before{content:'\f006'}.octicon-repo-push:before{content:'\f005'}.octicon-rocket:before{content:'\f033'}.octicon-rss:before{content:'\f034'}.octicon-ruby:before{content:'\f047'}.octicon-screen-full:before{content:'\f066'}.octicon-screen-normal:before{content:'\f067'}.octicon-search-save:before,.octicon-search:before{content:'\f02e'}.octicon-server:before{content:'\f097'}.octicon-settings:before{content:'\f07c'}.octicon-shield:before{content:'\f0e1'}.octicon-log-in:before,.octicon-sign-in:before{content:'\f036'}.octicon-log-out:before,.octicon-sign-out:before{content:'\f032'}.octicon-squirrel:before{content:'\f0b2'}.octicon-star-add:before,.octicon-star-delete:before,.octicon-star:before{content:'\f02a'}.octicon-stop:before{content:'\f08f'}.octicon-repo-sync:before,.octicon-sync:before{content:'\f087'}.octicon-tag-add:before,.octicon-tag-remove:before,.octicon-tag:before{content:'\f015'}.octicon-telescope:before{content:'\f088'}.octicon-terminal:before{content:'\f0c8'}.octicon-three-bars:before{content:'\f05e'}.octicon-thumbsdown:before{content:'\f0db'}.octicon-thumbsup:before{content:'\f0da'}.octicon-tools:before{content:'\f031'}.octicon-trashcan:before{content:'\f0d0'}.octicon-triangle-down:before{content:'\f05b'}.octicon-triangle-left:before{content:'\f044'}.octicon-triangle-right:before{content:'\f05a'}.octicon-triangle-up:before{content:'\f0aa'}.octicon-unfold:before{content:'\f039'}.octicon-unmute:before{content:'\f0ba'}.octicon-versions:before{content:'\f064'}.octicon-watch:before{content:'\f0e0'}.octicon-remove-close:before,.octicon-x:before{content:'\f081'}.octicon-zap:before{content:'\26A1'}body{font-family:'Helvetica Neue',Arial,Helvetica,sans-serif,'微软雅黑';background-color:#FAFAFA}img{border-radius:3px}pre{font:12px Consolas,"Liberation Mono",Menlo,Courier,monospace}pre.raw{padding:7px 12px;margin:10px 0;background-color:#f8f8f8;border:1px solid #ddd;border-radius:3px;font-size:13px;line-height:1.5;overflow:auto}.full.height{padding:0;margin:0 0 -80px 0;min-height:100%}.following.bar{z-index:900;left:0;width:100%}.following.bar.light{background-color:#fff;border-bottom:1px solid #DDD;box-shadow:0 2px 3px rgba(0,0,0,.04)}.following.bar .column .menu{margin-top:0}.following.bar .top.menu a.item.brand{padding-left:0}.following.bar .brand .ui.mini.image{width:30px}.following.bar .top.menu .dropdown.item.active,.following.bar .top.menu .dropdown.item:hover,.following.bar .top.menu a.item:hover{background-color:transparent}.following.bar .top.menu a.item:hover{color:rgba(0,0,0,.45)}.following.bar .top.menu .menu{z-index:900}.following.bar .head.link.item{padding-right:0!important}.following.bar .head.link.item .dropdown.icon,.following.bar .head.link.item .menu .octicon{margin-right:5px}.following.bar .avatar>.ui.image{margin-right:0}.following.bar .searchbox{background-color:#f4f4f4!important}.following.bar .searchbox:focus{background-color:#e9e9e9!important}.following.bar .octicon{width:16px;text-align:center}.ui.left{float:left}.ui.right{float:right}.ui .text.red{color:#d95c5c!important}.ui .text.red a{color:#d95c5c!important}.ui .text.red a:hover{color:#E67777!important}.ui .text.blue{color:#428bca!important}.ui .text.blue a{color:#15c!important}.ui .text.blue a:hover{color:#428bca!important}.ui .text.grey{color:#767676!important}.ui .text.grey a{color:#444!important}.ui .text.grey a:hover{color:#000!important}.ui .text.green{color:#6cc644!important}.ui .text.left{text-align:left!important}.ui .text.right{text-align:right!important}.ui .text.small{font-size:.75em}.ui .text.truncate{overflow:hidden;text-overflow:ellipsis;white-space:nowrap;display:inline-block}.ui .text.thin{font-weight:400}.ui .text.middle{vertical-align:middle}.ui .message{text-align:center}.ui .header>i+.content{padding-left:.75rem;vertical-align:middle}.ui .warning.header{background-color:#F9EDBE!important;border-color:#F0C36D}.ui .warning.segment{border-color:#F0C36D}.ui .info.header{background-color:#d9edf7!important;border-color:#85c5e5}.ui .info.segment{border-color:#85c5e5}.ui .normal.header{font-weight:400}.ui .avatar.image{border-radius:3px}.ui .form .fake{display:none!important}.overflow.menu .items{max-height:300px;overflow-y:auto}.overflow.menu .items .item{position:relative;cursor:pointer;display:block;border:none;height:auto;border-top:none;line-height:1em;color:rgba(0,0,0,.8);padding:.71428571em 1.14285714em!important;font-size:1rem;text-transform:none;font-weight:400;box-shadow:none;-webkit-touch-callout:none}.overflow.menu .items .item.active{font-weight:700}.overflow.menu .items .item:hover{background:rgba(0,0,0,.05);color:rgba(0,0,0,.8);z-index:13}.scrolling.menu .item.selected{font-weight:700!important}footer{margin-top:54px!important;height:40px;background-color:#fff;border-top:1px solid #d6d6d6;clear:both;width:100%;color:#888}footer .container{padding-top:10px}footer .container .fa{width:16px;text-align:center;color:#428bca}footer .container .ui.language.dropdown{z-index:10000}footer .container .links>*{border-left:1px solid #d6d6d6;padding-left:8px;margin-left:5px}footer .container .links>:first-child{border-left:none}.hide{display:none}.center{text-align:center}.img-1{width:2px!important;height:2px!important}.img-2{width:4px!important;height:4px!important}.img-3{width:6px!important;height:6px!important}.img-4{width:8px!important;height:8px!important}.img-5{width:10px!important;height:10px!important}.img-6{width:12px!important;height:12px!important}.img-7{width:14px!important;height:14px!important}.img-8{width:16px!important;height:16px!important}.img-9{width:18px!important;height:18px!important}.img-10{width:20px!important;height:20px!important}.img-11{width:22px!important;height:22px!important}.img-12{width:24px!important;height:24px!important}.img-13{width:26px!important;height:26px!important}.img-14{width:28px!important;height:28px!important}.img-15{width:30px!important;height:30px!important}.img-16{width:32px!important;height:32px!important}.mega-octicon.icon,.octicon.icon{font-family:octicons}.sr-only{position:absolute;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0,0,0,0);border:0}.sr-only-focusable:active,.sr-only-focusable:focus{position:static;width:auto;height:auto;margin:0;overflow:visible;clip:auto}@media only screen and (max-width:991px) and (min-width:768px){.ui.container{width:95%}}.markdown{overflow:hidden;font-family:"Helvetica Neue",Helvetica,"Segoe UI",Arial,freesans,sans-serif;font-size:16px;line-height:1.6;word-wrap:break-word}.markdown>:first-child{margin-top:0!important}.markdown>:last-child{margin-bottom:0!important}.markdown a:not([href]){color:inherit;text-decoration:none}.markdown .absent{color:#c00}.markdown .anchor{position:absolute;top:0;left:0;display:block;padding-right:6px;padding-left:30px;margin-left:-30px}.markdown .anchor:focus{outline:0}.markdown h1,.markdown h2,.markdown h3,.markdown h4,.markdown h5,.markdown h6{position:relative;margin-top:1em;margin-bottom:16px;font-weight:700;line-height:1.4}.markdown h1 .octicon-link,.markdown h2 .octicon-link,.markdown h3 .octicon-link,.markdown h4 .octicon-link,.markdown h5 .octicon-link,.markdown h6 .octicon-link{display:none;color:#000;vertical-align:middle}.markdown h1:hover .anchor,.markdown h2:hover .anchor,.markdown h3:hover .anchor,.markdown h4:hover .anchor,.markdown h5:hover .anchor,.markdown h6:hover .anchor{padding-left:8px;margin-left:-30px;text-decoration:none}.markdown h1:hover .anchor .octicon-link,.markdown h2:hover .anchor .octicon-link,.markdown h3:hover .anchor .octicon-link,.markdown h4:hover .anchor .octicon-link,.markdown h5:hover .anchor .octicon-link,.markdown h6:hover .anchor .octicon-link{display:inline-block}.markdown h1 code,.markdown h1 tt,.markdown h2 code,.markdown h2 tt,.markdown h3 code,.markdown h3 tt,.markdown h4 code,.markdown h4 tt,.markdown h5 code,.markdown h5 tt,.markdown h6 code,.markdown h6 tt{font-size:inherit}.markdown h1{padding-bottom:.3em;font-size:2.25em;line-height:1.2;border-bottom:1px solid #eee}.markdown h1 .anchor{line-height:1}.markdown h2{padding-bottom:.3em;font-size:1.75em;line-height:1.225;border-bottom:1px solid #eee}.markdown h2 .anchor{line-height:1}.markdown h3{font-size:1.5em;line-height:1.43}.markdown h3 .anchor{line-height:1.2}.markdown h4{font-size:1.25em}.markdown h4 .anchor{line-height:1.2}.markdown h5{font-size:1em}.markdown h5 .anchor{line-height:1.1}.markdown h6{font-size:1em;color:#777}.markdown h6 .anchor{line-height:1.1}.markdown blockquote,.markdown dl,.markdown ol,.markdown p,.markdown pre,.markdown table,.markdown ul{margin-top:0;margin-bottom:16px}.markdown hr{height:4px;padding:0;margin:16px 0;background-color:#e7e7e7;border:0 none}.markdown ol,.markdown ul{padding-left:2em}.markdown ol.no-list,.markdown ul.no-list{padding:0;list-style-type:none}.markdown ol ol,.markdown ol ul,.markdown ul ol,.markdown ul ul{margin-top:0;margin-bottom:0}.markdown ol ol,.markdown ul ol{list-style-type:lower-roman}.markdown li>p{margin-top:16px}.markdown dl{padding:0}.markdown dl dt{padding:0;margin-top:16px;font-size:1em;font-style:italic;font-weight:700}.markdown dl dd{padding:0 16px;margin-bottom:16px}.markdown blockquote{padding:0 15px;color:#777;border-left:4px solid #ddd}.markdown blockquote>:first-child{margin-top:0}.markdown blockquote>:last-child{margin-bottom:0}.markdown table{display:block;width:100%;overflow:auto;word-break:normal;word-break:keep-all}.markdown table th{font-weight:700}.markdown table td,.markdown table th{padding:6px 13px!important;border:1px solid #ddd}.markdown table tr{background-color:#fff;border-top:1px solid #ccc}.markdown table tr:nth-child(2n){background-color:#f8f8f8}.markdown img{max-width:100%;box-sizing:border-box}.markdown .emoji{max-width:none}.markdown span.frame{display:block;overflow:hidden}.markdown span.frame>span{display:block;float:left;width:auto;padding:7px;margin:13px 0 0;overflow:hidden;border:1px solid #ddd}.markdown span.frame span img{display:block;float:left}.markdown span.frame span span{display:block;padding:5px 0 0;clear:both;color:#333}.markdown span.align-center{display:block;overflow:hidden;clear:both}.markdown span.align-center>span{display:block;margin:13px auto 0;overflow:hidden;text-align:center}.markdown span.align-center span img{margin:0 auto;text-align:center}.markdown span.align-right{display:block;overflow:hidden;clear:both}.markdown span.align-right>span{display:block;margin:13px 0 0;overflow:hidden;text-align:right}.markdown span.align-right span img{margin:0;text-align:right}.markdown span.float-left{display:block;float:left;margin-right:13px;overflow:hidden}.markdown span.float-left span{margin:13px 0 0}.markdown span.float-right{display:block;float:right;margin-left:13px;overflow:hidden}.markdown span.float-right>span{display:block;margin:13px auto 0;overflow:hidden;text-align:right}.markdown code,.markdown tt{padding:0;padding-top:.2em;padding-bottom:.2em;margin:0;font-size:85%;background-color:rgba(0,0,0,.04);border-radius:3px}.markdown code:after,.markdown code:before,.markdown tt:after,.markdown tt:before{letter-spacing:-.2em;content:"\00a0"}.markdown code br,.markdown tt br{display:none}.markdown del code{text-decoration:inherit}.markdown pre>code{padding:0;margin:0;font-size:100%;word-break:normal;white-space:pre;background:0 0;border:0}.markdown .highlight{margin-bottom:16px}.markdown .highlight pre,.markdown pre{padding:16px;overflow:auto;font-size:85%;line-height:1.45;background-color:#f7f7f7;border-radius:3px}.markdown .highlight pre{margin-bottom:0;word-break:normal}.markdown pre{word-wrap:normal}.markdown pre code,.markdown pre tt{display:inline;max-width:initial;padding:0;margin:0;overflow:initial;line-height:inherit;word-wrap:normal;background-color:transparent;border:0}.markdown pre code:after,.markdown pre code:before,.markdown pre tt:after,.markdown pre tt:before{content:normal}.markdown kbd{display:inline-block;padding:3px 5px;font-size:11px;line-height:10px;color:#555;vertical-align:middle;background-color:#fcfcfc;border:solid 1px #ccc;border-bottom-color:#bbb;border-radius:3px;box-shadow:inset 0 -1px 0 #bbb}.markdown .csv-data td,.markdown .csv-data th{padding:5px;overflow:hidden;font-size:12px;line-height:1;text-align:left;white-space:nowrap}.markdown .csv-data .blob-num{padding:10px 8px 9px;text-align:right;background:#fff;border:0}.markdown .csv-data tr{border-top:0}.markdown .csv-data th{font-weight:700;background:#f8f8f8;border-top:0}.pln{color:#333}@media screen{.str{color:#d14}.kwd{color:#333}.com{color:#998;font-style:italic}.typ{color:#458}.lit{color:#458}.pun{color:#333}.opn{color:#333}.clo{color:#333}.tag{color:navy}.atn{color:teal}.atv{color:#d14}.dec{color:#333}.var{color:teal}.fun{color:#900}}@media print,projection{.str{color:#060}.kwd{color:#006;font-weight:700}.com{color:#600;font-style:italic}.typ{color:#404;font-weight:700}.lit{color:#044}.clo,.opn,.pun{color:#440}.tag{color:#006;font-weight:700}.atn{color:#404}.atv{color:#060}}ol.linenums{margin-top:0;margin-bottom:0}.home{padding-bottom:80px}.home .logo{max-width:250px}.home .hero h1,.home .hero h2{font-family:'PT Sans Narrow',sans-serif}.home .hero h1{font-size:7em}.home .hero h2{font-size:4em}.home .hero .octicon{color:#d9453d;font-size:60px;margin-right:10px}.home .hero.header{font-size:24px}.home p.large{font-size:20px}.home .stackable{padding-top:30px}.home a{color:#d9453d}.install{padding-top:45px;padding-bottom:80px}.install form label{text-align:right;width:320px!important}.install form input{width:35%!important}.install form .field{text-align:left}.install form .field .help{margin-left:335px!important}.install form .field.optional .title{margin-left:38%}.install .ui .checkbox{margin-left:40%!important}.install .ui .checkbox label{width:auto!important}.form .help{color:#999;padding-top:.6em;padding-bottom:.6em;display:inline-block}.ui.attached.header{background:#f0f0f0}.ui.attached.header .right{margin-top:-5px}.ui.attached.header .right .button{padding:8px 10px;font-weight:400}.repository.new.fork form,.repository.new.migrate form,.repository.new.repo form{margin:auto;width:800px!important}.repository.new.fork form .ui.message,.repository.new.migrate form .ui.message,.repository.new.repo form .ui.message{text-align:center}.repository.new.fork form .header,.repository.new.migrate form .header,.repository.new.repo form .header{padding-left:280px!important}.repository.new.fork form .inline.field>label,.repository.new.migrate form .inline.field>label,.repository.new.repo form .inline.field>label{text-align:right;width:250px!important;word-wrap:break-word}.repository.new.fork form .help,.repository.new.migrate form .help,.repository.new.repo form .help{margin-left:265px!important}.repository.new.fork form .dropdown .dropdown.icon,.repository.new.migrate form .dropdown .dropdown.icon,.repository.new.repo form .dropdown .dropdown.icon{margin-top:-7px!important}.repository.new.fork form .dropdown .text,.repository.new.migrate form .dropdown .text,.repository.new.repo form .dropdown .text{margin-right:0!important}.repository.new.fork form .dropdown .text i,.repository.new.migrate form .dropdown .text i,.repository.new.repo form .dropdown .text i{margin-right:0!important}.repository.new.fork form .optional .title,.repository.new.migrate form .optional .title,.repository.new.repo form .optional .title{margin-left:250px!important}.repository.new.fork form input,.repository.new.fork form textarea,.repository.new.migrate form input,.repository.new.migrate form textarea,.repository.new.repo form input,.repository.new.repo form textarea{width:50%!important}.repository.new.repo .ui.form .selection.dropdown:not(.owner){width:50%!important}.repository.new.repo .ui.form #auto-init{margin-left:265px!important}.new.webhook form .help{margin-left:25px}.new.webhook .events.fields .column{padding-left:40px}.repository{padding-top:15px;padding-bottom:80px}.repository .head .column{padding-top:5px!important;padding-bottom:5px!important}.repository .head .ui.compact.menu{margin-left:1rem}.repository .head .ui.header{margin-top:0}.repository .head .mega-octicon{width:30px;font-size:30px}.repository .head .ui.huge.breadcrumb{font-weight:300;font-size:1.7rem}.repository .head .fork-flag{margin-left:38px;display:block;font-size:11px;line-height:10px;white-space:nowrap}.repository .metas .menu{max-height:300px;overflow-x:auto}.repository .metas .ui.list .hide{display:none!important}.repository .metas .ui.list .label.color{padding:0 8px;margin-right:5px}.repository .metas .ui.list a{padding-top:5px;padding-right:10px}.repository .metas .ui.list a .text{color:#444}.repository .metas .ui.list a .text:hover{color:#000}.repository .filter.menu .label.color{margin-left:15px;padding:0 8px}.repository .filter.menu .octicon{float:left;margin-left:-5px;margin-right:-7px}.repository .filter.menu .menu{max-height:300px;overflow-x:auto;right:0!important;left:auto!important}.repository .filter.menu .dropdown.item{margin:1px;padding-right:0}.repository.options input{width:50%!important;min-width:300px}.repository.options #interval{width:100px!important;min-width:100px}.repository.options .danger .item{padding:20px 15px}.repository.options .danger .ui.divider{margin:0}.repository.new.issue .comment.form .comment .avatar{width:3em}.repository.new.issue .comment.form .content{margin-left:4em}.repository.new.issue .comment.form .content .markdown{font-size:14px}.repository.new.issue .comment.form .metas{min-width:220px}.repository.new.issue .comment.form .metas .filter.menu{max-height:300px;overflow-x:auto}.repository.view.issue .title{padding-bottom:0!important}.repository.view.issue .title h1{font-weight:300;font-size:3rem;margin-bottom:5px}.repository.view.issue .title h1 .ui.input{font-size:.5em;vertical-align:top;width:50%;min-width:600px}.repository.view.issue .title h1 .ui.input input{font-size:1.5em;padding:6px 10px}.repository.view.issue .title .index{font-weight:300;color:#aaa;letter-spacing:-1px}.repository.view.issue .title .label{margin-right:10px}.repository.view.issue .title .edit-zone{margin-top:10px}.repository.view.issue .comment-list:before{display:block;content:"";position:absolute;margin-top:12px;margin-bottom:14px;top:0;bottom:0;left:96px;width:2px;background-color:#f3f3f3;z-index:-1}.repository.view.issue .comment-list .comment .avatar{width:3em}.repository.view.issue .comment-list .comment .tag{color:#767676;margin-top:3px;padding:2px 5px;font-size:12px;border:1px solid rgba(0,0,0,.1);border-radius:3px}.repository.view.issue .comment-list .comment .actions .item{float:left}.repository.view.issue .comment-list .comment .actions a.item{margin-top:6px;margin-left:10px}.repository.view.issue .comment-list .comment .content{margin-left:4em}.repository.view.issue .comment-list .comment .content .header{font-weight:400;padding:auto 15px;color:#767676;background-color:#f7f7f7;border-bottom:1px solid #eee;border-top-left-radius:3px;border-top-right-radius:3px}.repository.view.issue .comment-list .comment .content .header .text{max-width:78%;padding-top:10px;padding-bottom:10px}.repository.view.issue .comment-list .comment .content .markdown{font-size:14px}.repository.view.issue .comment-list .comment .content .no-content{color:#767676;font-style:italic}.repository.view.issue .comment-list .comment .content>.bottom.segment{background:#f3f4f5}.repository.view.issue .comment-list .comment .content>.bottom.segment .ui.image{max-height:150px}.repository.view.issue .comment-list .comment .ui.form .field:first-child{clear:none}.repository.view.issue .comment-list .comment .ui.form .tab.segment{border:none;padding:0;padding-top:10px}.repository.view.issue .comment-list .comment .ui.form textarea{height:200px}.repository.view.issue .comment-list .comment .edit.buttons{margin-top:10px}.repository.view.issue .comment-list .event{position:relative;margin:15px 0 15px 79px;padding-left:25px}.repository.view.issue .comment-list .event .octicon{width:30px;float:left;margin-left:-36px;text-align:center}.repository.view.issue .comment-list .event .octicon.octicon-circle-slash{margin-top:5px;font-size:20px;color:#bd2c00}.repository.view.issue .comment-list .event .octicon.octicon-primitive-dot{font-size:30px;color:#6cc644}.repository.view.issue .comment-list .event .octicon.octicon-bookmark{margin-top:3px;font-size:25px}.repository.view.issue .comment-list .event .detail{font-size:.9rem;margin-top:5px;margin-left:35px}.repository.view.issue .comment-list .event .detail .octicon.octicon-git-commit{margin-top:2px}.repository.view.issue .ui.segment.metas{margin-top:-3px}.repository .comment.form .ui.comments{margin-top:-12px;max-width:100%}.repository .comment.form .content .field:first-child{clear:none}.repository .comment.form .content .tab.segment{border:none;padding:0;padding-top:10px}.repository .comment.form .content textarea{height:200px}.repository .label.list{list-style:none;padding-top:15px}.repository .label.list .item{padding-top:10px;padding-bottom:10px;border-bottom:1px dashed #AAA}.repository .label.list .item a{font-size:15px;padding-top:5px;padding-right:10px;color:#666}.repository .label.list .item a:hover{color:#000}.repository .label.list .item a.open-issues{margin-right:30px}.repository .milestone.list{list-style:none;padding-top:15px}.repository .milestone.list>.item{padding-top:10px;padding-bottom:10px;border-bottom:1px dashed #AAA}.repository .milestone.list>.item>a{padding-top:5px;padding-right:10px;color:#000}.repository .milestone.list>.item>a:hover{color:#4078c0}.repository .milestone.list>.item .ui.progress{width:40%;padding:0;border:0;margin:0}.repository .milestone.list>.item .ui.progress .bar{height:20px}.repository .milestone.list>.item .meta{color:#999;padding-top:5px}.repository .milestone.list>.item .meta .issue-stats .octicon{padding-left:5px}.repository .milestone.list>.item .meta .overdue{color:red}.repository .milestone.list>.item .operate{margin-top:-15px}.repository .milestone.list>.item .operate>a{font-size:15px;padding-top:5px;padding-right:10px;color:#666}.repository .milestone.list>.item .operate>a:hover{color:#000}.repository .milestone.list>.item .content{padding-top:10px}.repository.new.milestone textarea{height:200px}.repository.new.milestone #deadline{width:150px}.repository.compare.pull .choose.branch .octicon{padding-right:10px}.repository .filter.dropdown .menu{margin-top:1px!important}.repository.commits .header .ui.right .search input{font-weight:400;padding:5px 10px}.repository.commits .header .ui.right .button{float:right;margin-left:5px;margin-top:1px}.repository .commits.table{font-size:13px}.repository .commits.table td:first-child,.repository .commits.table th:first-child{padding-left:15px}.repository .commits.table td{line-height:15px}.repository .commits.table .author{min-width:180px}.repository .commits.table .message span{max-width:500px}.repository .commits.table .date{width:120px}.repository .sha.label{font-family:Consolas,Menlo,Monaco,"Lucida Console",monospace;font-size:14px;padding:6px 10px 4px 10px;font-weight:400}.repository .diff-detail-box{margin:15px 0;line-height:30px}.repository .diff-detail-box ol{clear:both;padding-left:0;margin-top:5px;margin-bottom:28px}.repository .diff-detail-box ol li{list-style:none;padding-bottom:4px;margin-bottom:4px;border-bottom:1px dashed #DDD;padding-left:6px}.repository .diff-detail-box span.status{display:inline-block;width:12px;height:12px;margin-right:8px;vertical-align:middle}.repository .diff-detail-box span.status.modify{background-color:#f0db88}.repository .diff-detail-box span.status.add{background-color:#b4e2b4}.repository .diff-detail-box span.status.del{background-color:#e9aeae}.repository .diff-detail-box span.status.rename{background-color:#dad8ff}.repository .diff-box .count{margin-right:12px}.repository .diff-box .count .bar{background-color:#e75316;height:12px;width:40px;display:inline-block;margin:2px 4px 0 4px;vertical-align:text-top}.repository .diff-box .count .bar .add{background-color:#77c64a;height:12px}.repository .diff-box .file{color:#888}.repository .diff-file-box .header{border-bottom:1px solid #d4d4d5!important}.repository .diff-file-box .file-body.file-code .lines-num{text-align:right;color:#999;background:#fafafa;width:1%}.repository .diff-file-box .file-body.file-code .lines-num-old{border-right:1px solid #DDD}.repository .diff-file-box .code-diff{font-size:13px}.repository .diff-file-box .code-diff td{padding:0;border-top:none}.repository .diff-file-box .code-diff pre{margin:0}.repository .diff-file-box .code-diff .lines-num{border-right:1px solid #d4d4d5;padding:0 5px}.repository .diff-file-box .code-diff tbody tr.tag-code pre,.repository .diff-file-box .code-diff tbody tr.tag-code td{background-color:#E0E0E0!important;border-color:#ADADAD!important}.repository .diff-file-box .code-diff tbody tr.del-code pre,.repository .diff-file-box .code-diff tbody tr.del-code td{background-color:#ffe2dd!important;border-color:#e9aeae!important}.repository .diff-file-box .code-diff tbody tr.add-code pre,.repository .diff-file-box .code-diff tbody tr.add-code td{background-color:#d1ffd6!important;border-color:#b4e2b4!important}.repository .diff-file-box .code-diff tbody tr:hover td{background-color:#FFF8D2!important;border-color:#F0DB88!important}.repository .diff-file-box .code-diff tbody tr:hover pre{background-color:transparent!important}.repository .code-view{overflow:auto;overflow-x:auto;overflow-y:hidden}.issue.list{list-style:none;padding-top:15px}.issue.list>.item{padding-top:15px;padding-bottom:10px;border-bottom:1px dashed #AAA}.issue.list>.item .title{color:#444;font-size:15px;font-weight:700;margin:0 6px}.issue.list>.item .title:hover{color:#000}.issue.list>.item .comment{padding-right:10px;color:#666}.issue.list>.item .desc{padding-top:5px;color:#999}.issue.list>.item .desc a.milestone{padding-left:5px;color:#999!important}.issue.list>.item .desc a.milestone:hover{color:#000!important}.issue.list>.item .desc .assignee{margin-top:-5px;margin-right:5px}.page.buttons{padding-top:15px}.ui.comments .dropzone{width:100%;margin-bottom:10px;border:2px dashed #0087F7;box-shadow:none!important}.ui.comments .dropzone .dz-error-message{top:140px}.settings .content{margin-top:2px}.settings .content .header,.settings .content .segment{box-shadow:0 1px 2px 0 rgba(34,36,38,.15)}.settings .key.list .item:not(:first-child){border-top:1px solid #eaeaea}.settings .key.list .ssh-key-state-indicator{float:left;color:gray;padding-left:10px;padding-top:10px}.settings .key.list .ssh-key-state-indicator.active{color:#6cc644}.settings .key.list .meta{padding-top:5px}.settings .key.list .print{color:#767676}.settings .key.list .activity{color:#666}.settings .hook.list>.item:not(:first-child){border-top:1px solid #eaeaea}.settings .hook.list .item{padding:10px 20px}.settings .hook.list .item .fa,.settings .hook.list .item .octicon{width:20px;text-align:center}.settings .hook.history.list .item{padding-left:13px}.settings .hook.history.list .item .meta .ui.right{margin-top:5px}.settings .hook.history.list .item .meta .ui.right .time{font-size:12px}.settings .hook.history.list .item .info{margin-top:10px}.settings .hook.history.list .item .info .tabular.menu .item{font-weight:500}.settings .hook.history.list .item .info .tab.segment{border:none;padding:0;padding-top:10px;box-shadow:none}.settings .hook.history.list .item .info .tab.segment>*{color:#666}.settings .hook.history.list .item .info .tab.segment pre{word-wrap:break-word}.settings .hook.history.list .item .info .tab.segment pre .hljs{padding:0;background-color:inherit}.ui.vertical.menu .header.item{font-size:1.1em;background:#f0f0f0}.edit-label.modal .form .column,.new-label.segment .form .column{padding-right:0}.edit-label.modal .form .buttons,.new-label.segment .form .buttons{margin-left:auto;padding-top:15px}.edit-label.modal .form .color.picker.column,.new-label.segment .form .color.picker.column{width:auto}.edit-label.modal .form .color.picker.column .color-picker,.new-label.segment .form .color.picker.column .color-picker{height:35px;width:auto;padding-left:30px}.edit-label.modal .form .minicolors-swatch.minicolors-sprite,.new-label.segment .form .minicolors-swatch.minicolors-sprite{top:10px;left:10px;width:15px;height:15px}.edit-label.modal .form .precolors,.new-label.segment .form .precolors{padding-left:0;padding-right:0;margin:3px 10px auto 10px;width:120px}.edit-label.modal .form .precolors .color,.new-label.segment .form .precolors .color{float:left;width:15px;height:15px}#delete-repo-modal .ui.message,#transfer-repo-modal .ui.message{width:100%!important}.organization{padding-top:15px;padding-bottom:80px}.organization .head .ui.header .text{vertical-align:middle;font-size:1.6rem;margin-left:15px}.organization .head .ui.header .ui.right{margin-top:5px}.user{padding-top:15px;padding-bottom:80px}.user.settings .key.list .item.ui.grid{margin-top:15px}.dashboard{padding-top:15px;padding-bottom:80px}.dashboard.issues .context.user.menu{min-width:200px}.dashboard.issues .context.user.menu .ui.header{font-size:1rem;text-transform:none}.dashboard.issues .filter.menu .item.active{background-color:#4183c4;color:#FFF}.dashboard.issues .ui.right .head.menu{margin-top:-5px}.dashboard.issues .ui.right .head.menu .item.active{color:#d9453d}.admin{padding-top:15px;padding-bottom:80px}.admin .table.segment{padding:0;font-size:13px}.admin .table.segment th{padding-top:5px;padding-bottom:5px}.admin .table.segment td:first-child,.admin .table.segment th:first-child{padding-left:15px}.explore{padding-top:15px;padding-bottom:80px}.explore.repositories .ui.repository.list .item{border-top:1px solid #eee;padding-top:25px;padding-bottom:25px}.explore.repositories .ui.repository.list .item .ui.header{font-size:1.5rem;padding-bottom:10px}.explore.repositories .ui.repository.list .item .ui.header .metas{color:#888;font-size:13px;font-weight:400}.explore.repositories .ui.repository.list .item .ui.header .metas span:not(:last-child){margin-right:5px}.explore.repositories .ui.repository.list .item .time{font-size:12px;color:grey} \ No newline at end of file +@font-face{font-family:octicons;src:url(../fonts/octicons.eot?#iefix&v=396334ee3da78f4302d25c758ae3e3ce5dc3c97d) format('embedded-opentype'),url(../fonts/octicons.woff?v=396334ee3da78f4302d25c758ae3e3ce5dc3c97d) format('woff'),url(../fonts/octicons.ttf?v=396334ee3da78f4302d25c758ae3e3ce5dc3c97d) format('truetype'),url(../fonts/octicons.svg?v=396334ee3da78f4302d25c758ae3e3ce5dc3c97d#octicons) format('svg');font-weight:400;font-style:normal}.mega-octicon,.octicon{font:normal normal normal 16px/1 octicons;display:inline-block;text-decoration:none;text-rendering:auto;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.mega-octicon{font-size:32px}.octicon-alert:before{content:'\f02d'}.octicon-arrow-down:before{content:'\f03f'}.octicon-arrow-left:before{content:'\f040'}.octicon-arrow-right:before{content:'\f03e'}.octicon-arrow-small-down:before{content:'\f0a0'}.octicon-arrow-small-left:before{content:'\f0a1'}.octicon-arrow-small-right:before{content:'\f071'}.octicon-arrow-small-up:before{content:'\f09f'}.octicon-arrow-up:before{content:'\f03d'}.octicon-beaker:before,.octicon-microscope:before{content:'\f0dd'}.octicon-bell:before{content:'\f0de'}.octicon-book:before{content:'\f007'}.octicon-bookmark:before{content:'\f07b'}.octicon-briefcase:before{content:'\f0d3'}.octicon-broadcast:before{content:'\f048'}.octicon-browser:before{content:'\f0c5'}.octicon-bug:before{content:'\f091'}.octicon-calendar:before{content:'\f068'}.octicon-check:before{content:'\f03a'}.octicon-checklist:before{content:'\f076'}.octicon-chevron-down:before{content:'\f0a3'}.octicon-chevron-left:before{content:'\f0a4'}.octicon-chevron-right:before{content:'\f078'}.octicon-chevron-up:before{content:'\f0a2'}.octicon-circle-slash:before{content:'\f084'}.octicon-circuit-board:before{content:'\f0d6'}.octicon-clippy:before{content:'\f035'}.octicon-clock:before{content:'\f046'}.octicon-cloud-download:before{content:'\f00b'}.octicon-cloud-upload:before{content:'\f00c'}.octicon-code:before{content:'\f05f'}.octicon-color-mode:before{content:'\f065'}.octicon-comment-add:before,.octicon-comment:before{content:'\f02b'}.octicon-comment-discussion:before{content:'\f04f'}.octicon-credit-card:before{content:'\f045'}.octicon-dash:before{content:'\f0ca'}.octicon-dashboard:before{content:'\f07d'}.octicon-database:before{content:'\f096'}.octicon-clone:before,.octicon-desktop-download:before{content:'\f0dc'}.octicon-device-camera:before{content:'\f056'}.octicon-device-camera-video:before{content:'\f057'}.octicon-device-desktop:before{content:'\f27c'}.octicon-device-mobile:before{content:'\f038'}.octicon-diff:before{content:'\f04d'}.octicon-diff-added:before{content:'\f06b'}.octicon-diff-ignored:before{content:'\f099'}.octicon-diff-modified:before{content:'\f06d'}.octicon-diff-removed:before{content:'\f06c'}.octicon-diff-renamed:before{content:'\f06e'}.octicon-ellipsis:before{content:'\f09a'}.octicon-eye-unwatch:before,.octicon-eye-watch:before,.octicon-eye:before{content:'\f04e'}.octicon-file-binary:before{content:'\f094'}.octicon-file-code:before{content:'\f010'}.octicon-file-directory:before{content:'\f016'}.octicon-file-media:before{content:'\f012'}.octicon-file-pdf:before{content:'\f014'}.octicon-file-submodule:before{content:'\f017'}.octicon-file-symlink-directory:before{content:'\f0b1'}.octicon-file-symlink-file:before{content:'\f0b0'}.octicon-file-text:before{content:'\f011'}.octicon-file-zip:before{content:'\f013'}.octicon-flame:before{content:'\f0d2'}.octicon-fold:before{content:'\f0cc'}.octicon-gear:before{content:'\f02f'}.octicon-gift:before{content:'\f042'}.octicon-gist:before{content:'\f00e'}.octicon-gist-secret:before{content:'\f08c'}.octicon-git-branch-create:before,.octicon-git-branch-delete:before,.octicon-git-branch:before{content:'\f020'}.octicon-git-commit:before{content:'\f01f'}.octicon-git-compare:before{content:'\f0ac'}.octicon-git-merge:before{content:'\f023'}.octicon-git-pull-request-abandoned:before,.octicon-git-pull-request:before{content:'\f009'}.octicon-globe:before{content:'\f0b6'}.octicon-graph:before{content:'\f043'}.octicon-heart:before{content:'\2665'}.octicon-history:before{content:'\f07e'}.octicon-home:before{content:'\f08d'}.octicon-horizontal-rule:before{content:'\f070'}.octicon-hubot:before{content:'\f09d'}.octicon-inbox:before{content:'\f0cf'}.octicon-info:before{content:'\f059'}.octicon-issue-closed:before{content:'\f028'}.octicon-issue-opened:before{content:'\f026'}.octicon-issue-reopened:before{content:'\f027'}.octicon-jersey:before{content:'\f019'}.octicon-key:before{content:'\f049'}.octicon-keyboard:before{content:'\f00d'}.octicon-law:before{content:'\f0d8'}.octicon-light-bulb:before{content:'\f000'}.octicon-link:before{content:'\f05c'}.octicon-link-external:before{content:'\f07f'}.octicon-list-ordered:before{content:'\f062'}.octicon-list-unordered:before{content:'\f061'}.octicon-location:before{content:'\f060'}.octicon-gist-private:before,.octicon-git-fork-private:before,.octicon-lock:before,.octicon-mirror-private:before{content:'\f06a'}.octicon-logo-github:before{content:'\f092'}.octicon-mail:before{content:'\f03b'}.octicon-mail-read:before{content:'\f03c'}.octicon-mail-reply:before{content:'\f051'}.octicon-mark-github:before{content:'\f00a'}.octicon-markdown:before{content:'\f0c9'}.octicon-megaphone:before{content:'\f077'}.octicon-mention:before{content:'\f0be'}.octicon-milestone:before{content:'\f075'}.octicon-mirror-public:before,.octicon-mirror:before{content:'\f024'}.octicon-mortar-board:before{content:'\f0d7'}.octicon-mute:before{content:'\f080'}.octicon-no-newline:before{content:'\f09c'}.octicon-octoface:before{content:'\f008'}.octicon-organization:before{content:'\f037'}.octicon-package:before{content:'\f0c4'}.octicon-paintcan:before{content:'\f0d1'}.octicon-pencil:before{content:'\f058'}.octicon-person-add:before,.octicon-person-follow:before,.octicon-person:before{content:'\f018'}.octicon-pin:before{content:'\f041'}.octicon-plug:before{content:'\f0d4'}.octicon-file-add:before,.octicon-file-directory-create:before,.octicon-gist-new:before,.octicon-plus:before,.octicon-repo-create:before{content:'\f05d'}.octicon-primitive-dot:before{content:'\f052'}.octicon-primitive-square:before{content:'\f053'}.octicon-pulse:before{content:'\f085'}.octicon-question:before{content:'\f02c'}.octicon-quote:before{content:'\f063'}.octicon-radio-tower:before{content:'\f030'}.octicon-repo-delete:before,.octicon-repo:before{content:'\f001'}.octicon-repo-clone:before{content:'\f04c'}.octicon-repo-force-push:before{content:'\f04a'}.octicon-gist-fork:before,.octicon-repo-forked:before{content:'\f002'}.octicon-repo-pull:before{content:'\f006'}.octicon-repo-push:before{content:'\f005'}.octicon-rocket:before{content:'\f033'}.octicon-rss:before{content:'\f034'}.octicon-ruby:before{content:'\f047'}.octicon-screen-full:before{content:'\f066'}.octicon-screen-normal:before{content:'\f067'}.octicon-search-save:before,.octicon-search:before{content:'\f02e'}.octicon-server:before{content:'\f097'}.octicon-settings:before{content:'\f07c'}.octicon-shield:before{content:'\f0e1'}.octicon-log-in:before,.octicon-sign-in:before{content:'\f036'}.octicon-log-out:before,.octicon-sign-out:before{content:'\f032'}.octicon-squirrel:before{content:'\f0b2'}.octicon-star-add:before,.octicon-star-delete:before,.octicon-star:before{content:'\f02a'}.octicon-stop:before{content:'\f08f'}.octicon-repo-sync:before,.octicon-sync:before{content:'\f087'}.octicon-tag-add:before,.octicon-tag-remove:before,.octicon-tag:before{content:'\f015'}.octicon-telescope:before{content:'\f088'}.octicon-terminal:before{content:'\f0c8'}.octicon-three-bars:before{content:'\f05e'}.octicon-thumbsdown:before{content:'\f0db'}.octicon-thumbsup:before{content:'\f0da'}.octicon-tools:before{content:'\f031'}.octicon-trashcan:before{content:'\f0d0'}.octicon-triangle-down:before{content:'\f05b'}.octicon-triangle-left:before{content:'\f044'}.octicon-triangle-right:before{content:'\f05a'}.octicon-triangle-up:before{content:'\f0aa'}.octicon-unfold:before{content:'\f039'}.octicon-unmute:before{content:'\f0ba'}.octicon-versions:before{content:'\f064'}.octicon-watch:before{content:'\f0e0'}.octicon-remove-close:before,.octicon-x:before{content:'\f081'}.octicon-zap:before{content:'\26A1'}body{font-family:'Helvetica Neue',Arial,Helvetica,sans-serif,'微软雅黑';background-color:#FAFAFA}img{border-radius:3px}pre{font:12px Consolas,"Liberation Mono",Menlo,Courier,monospace}pre.raw{padding:7px 12px;margin:10px 0;background-color:#f8f8f8;border:1px solid #ddd;border-radius:3px;font-size:13px;line-height:1.5;overflow:auto}.full.height{padding:0;margin:0 0 -80px 0;min-height:100%}.following.bar{z-index:900;left:0;width:100%}.following.bar.light{background-color:#fff;border-bottom:1px solid #DDD;box-shadow:0 2px 3px rgba(0,0,0,.04)}.following.bar .column .menu{margin-top:0}.following.bar .top.menu a.item.brand{padding-left:0}.following.bar .brand .ui.mini.image{width:30px}.following.bar .top.menu .dropdown.item.active,.following.bar .top.menu .dropdown.item:hover,.following.bar .top.menu a.item:hover{background-color:transparent}.following.bar .top.menu a.item:hover{color:rgba(0,0,0,.45)}.following.bar .top.menu .menu{z-index:900}.following.bar .head.link.item{padding-right:0!important}.following.bar .head.link.item .dropdown.icon,.following.bar .head.link.item .menu .octicon{margin-right:5px}.following.bar .avatar>.ui.image{margin-right:0}.following.bar .searchbox{background-color:#f4f4f4!important}.following.bar .searchbox:focus{background-color:#e9e9e9!important}.following.bar .octicon{width:16px;text-align:center}.ui.left{float:left}.ui.right{float:right}.ui .text.red{color:#d95c5c!important}.ui .text.red a{color:#d95c5c!important}.ui .text.red a:hover{color:#E67777!important}.ui .text.blue{color:#428bca!important}.ui .text.blue a{color:#15c!important}.ui .text.blue a:hover{color:#428bca!important}.ui .text.grey{color:#767676!important}.ui .text.grey a{color:#444!important}.ui .text.grey a:hover{color:#000!important}.ui .text.green{color:#6cc644!important}.ui .text.left{text-align:left!important}.ui .text.right{text-align:right!important}.ui .text.small{font-size:.75em}.ui .text.truncate{overflow:hidden;text-overflow:ellipsis;white-space:nowrap;display:inline-block}.ui .text.thin{font-weight:400}.ui .text.middle{vertical-align:middle}.ui .message{text-align:center}.ui .header>i+.content{padding-left:.75rem;vertical-align:middle}.ui .warning.header{background-color:#F9EDBE!important;border-color:#F0C36D}.ui .warning.segment{border-color:#F0C36D}.ui .info.header{background-color:#d9edf7!important;border-color:#85c5e5}.ui .info.segment{border-color:#85c5e5}.ui .normal.header{font-weight:400}.ui .avatar.image{border-radius:3px}.ui .form .fake{display:none!important}.overflow.menu .items{max-height:300px;overflow-y:auto}.overflow.menu .items .item{position:relative;cursor:pointer;display:block;border:none;height:auto;border-top:none;line-height:1em;color:rgba(0,0,0,.8);padding:.71428571em 1.14285714em!important;font-size:1rem;text-transform:none;font-weight:400;box-shadow:none;-webkit-touch-callout:none}.overflow.menu .items .item.active{font-weight:700}.overflow.menu .items .item:hover{background:rgba(0,0,0,.05);color:rgba(0,0,0,.8);z-index:13}.scrolling.menu .item.selected{font-weight:700!important}footer{margin-top:54px!important;height:40px;background-color:#fff;border-top:1px solid #d6d6d6;clear:both;width:100%;color:#888}footer .container{padding-top:10px}footer .container .fa{width:16px;text-align:center;color:#428bca}footer .container .ui.language.dropdown{z-index:10000}footer .container .links>*{border-left:1px solid #d6d6d6;padding-left:8px;margin-left:5px}footer .container .links>:first-child{border-left:none}.hide{display:none}.center{text-align:center}.img-1{width:2px!important;height:2px!important}.img-2{width:4px!important;height:4px!important}.img-3{width:6px!important;height:6px!important}.img-4{width:8px!important;height:8px!important}.img-5{width:10px!important;height:10px!important}.img-6{width:12px!important;height:12px!important}.img-7{width:14px!important;height:14px!important}.img-8{width:16px!important;height:16px!important}.img-9{width:18px!important;height:18px!important}.img-10{width:20px!important;height:20px!important}.img-11{width:22px!important;height:22px!important}.img-12{width:24px!important;height:24px!important}.img-13{width:26px!important;height:26px!important}.img-14{width:28px!important;height:28px!important}.img-15{width:30px!important;height:30px!important}.img-16{width:32px!important;height:32px!important}.mega-octicon.icon,.octicon.icon{font-family:octicons}.sr-only{position:absolute;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0,0,0,0);border:0}.sr-only-focusable:active,.sr-only-focusable:focus{position:static;width:auto;height:auto;margin:0;overflow:visible;clip:auto}@media only screen and (max-width:991px) and (min-width:768px){.ui.container{width:95%}}.markdown{overflow:hidden;font-family:"Helvetica Neue",Helvetica,"Segoe UI",Arial,freesans,sans-serif;font-size:16px;line-height:1.6;word-wrap:break-word}.markdown>:first-child{margin-top:0!important}.markdown>:last-child{margin-bottom:0!important}.markdown a:not([href]){color:inherit;text-decoration:none}.markdown .absent{color:#c00}.markdown .anchor{position:absolute;top:0;left:0;display:block;padding-right:6px;padding-left:30px;margin-left:-30px}.markdown .anchor:focus{outline:0}.markdown h1,.markdown h2,.markdown h3,.markdown h4,.markdown h5,.markdown h6{position:relative;margin-top:1em;margin-bottom:16px;font-weight:700;line-height:1.4}.markdown h1 .octicon-link,.markdown h2 .octicon-link,.markdown h3 .octicon-link,.markdown h4 .octicon-link,.markdown h5 .octicon-link,.markdown h6 .octicon-link{display:none;color:#000;vertical-align:middle}.markdown h1:hover .anchor,.markdown h2:hover .anchor,.markdown h3:hover .anchor,.markdown h4:hover .anchor,.markdown h5:hover .anchor,.markdown h6:hover .anchor{padding-left:8px;margin-left:-30px;text-decoration:none}.markdown h1:hover .anchor .octicon-link,.markdown h2:hover .anchor .octicon-link,.markdown h3:hover .anchor .octicon-link,.markdown h4:hover .anchor .octicon-link,.markdown h5:hover .anchor .octicon-link,.markdown h6:hover .anchor .octicon-link{display:inline-block}.markdown h1 code,.markdown h1 tt,.markdown h2 code,.markdown h2 tt,.markdown h3 code,.markdown h3 tt,.markdown h4 code,.markdown h4 tt,.markdown h5 code,.markdown h5 tt,.markdown h6 code,.markdown h6 tt{font-size:inherit}.markdown h1{padding-bottom:.3em;font-size:2.25em;line-height:1.2;border-bottom:1px solid #eee}.markdown h1 .anchor{line-height:1}.markdown h2{padding-bottom:.3em;font-size:1.75em;line-height:1.225;border-bottom:1px solid #eee}.markdown h2 .anchor{line-height:1}.markdown h3{font-size:1.5em;line-height:1.43}.markdown h3 .anchor{line-height:1.2}.markdown h4{font-size:1.25em}.markdown h4 .anchor{line-height:1.2}.markdown h5{font-size:1em}.markdown h5 .anchor{line-height:1.1}.markdown h6{font-size:1em;color:#777}.markdown h6 .anchor{line-height:1.1}.markdown blockquote,.markdown dl,.markdown ol,.markdown p,.markdown pre,.markdown table,.markdown ul{margin-top:0;margin-bottom:16px}.markdown hr{height:4px;padding:0;margin:16px 0;background-color:#e7e7e7;border:0 none}.markdown ol,.markdown ul{padding-left:2em}.markdown ol.no-list,.markdown ul.no-list{padding:0;list-style-type:none}.markdown ol ol,.markdown ol ul,.markdown ul ol,.markdown ul ul{margin-top:0;margin-bottom:0}.markdown ol ol,.markdown ul ol{list-style-type:lower-roman}.markdown li>p{margin-top:16px}.markdown dl{padding:0}.markdown dl dt{padding:0;margin-top:16px;font-size:1em;font-style:italic;font-weight:700}.markdown dl dd{padding:0 16px;margin-bottom:16px}.markdown blockquote{padding:0 15px;color:#777;border-left:4px solid #ddd}.markdown blockquote>:first-child{margin-top:0}.markdown blockquote>:last-child{margin-bottom:0}.markdown table{display:block;width:100%;overflow:auto;word-break:normal;word-break:keep-all}.markdown table th{font-weight:700}.markdown table td,.markdown table th{padding:6px 13px!important;border:1px solid #ddd}.markdown table tr{background-color:#fff;border-top:1px solid #ccc}.markdown table tr:nth-child(2n){background-color:#f8f8f8}.markdown img{max-width:100%;box-sizing:border-box}.markdown .emoji{max-width:none}.markdown span.frame{display:block;overflow:hidden}.markdown span.frame>span{display:block;float:left;width:auto;padding:7px;margin:13px 0 0;overflow:hidden;border:1px solid #ddd}.markdown span.frame span img{display:block;float:left}.markdown span.frame span span{display:block;padding:5px 0 0;clear:both;color:#333}.markdown span.align-center{display:block;overflow:hidden;clear:both}.markdown span.align-center>span{display:block;margin:13px auto 0;overflow:hidden;text-align:center}.markdown span.align-center span img{margin:0 auto;text-align:center}.markdown span.align-right{display:block;overflow:hidden;clear:both}.markdown span.align-right>span{display:block;margin:13px 0 0;overflow:hidden;text-align:right}.markdown span.align-right span img{margin:0;text-align:right}.markdown span.float-left{display:block;float:left;margin-right:13px;overflow:hidden}.markdown span.float-left span{margin:13px 0 0}.markdown span.float-right{display:block;float:right;margin-left:13px;overflow:hidden}.markdown span.float-right>span{display:block;margin:13px auto 0;overflow:hidden;text-align:right}.markdown code,.markdown tt{padding:0;padding-top:.2em;padding-bottom:.2em;margin:0;font-size:85%;background-color:rgba(0,0,0,.04);border-radius:3px}.markdown code:after,.markdown code:before,.markdown tt:after,.markdown tt:before{letter-spacing:-.2em;content:"\00a0"}.markdown code br,.markdown tt br{display:none}.markdown del code{text-decoration:inherit}.markdown pre>code{padding:0;margin:0;font-size:100%;word-break:normal;white-space:pre;background:0 0;border:0}.markdown .highlight{margin-bottom:16px}.markdown .highlight pre,.markdown pre{padding:16px;overflow:auto;font-size:85%;line-height:1.45;background-color:#f7f7f7;border-radius:3px}.markdown .highlight pre{margin-bottom:0;word-break:normal}.markdown pre{word-wrap:normal}.markdown pre code,.markdown pre tt{display:inline;max-width:initial;padding:0;margin:0;overflow:initial;line-height:inherit;word-wrap:normal;background-color:transparent;border:0}.markdown pre code:after,.markdown pre code:before,.markdown pre tt:after,.markdown pre tt:before{content:normal}.markdown kbd{display:inline-block;padding:3px 5px;font-size:11px;line-height:10px;color:#555;vertical-align:middle;background-color:#fcfcfc;border:solid 1px #ccc;border-bottom-color:#bbb;border-radius:3px;box-shadow:inset 0 -1px 0 #bbb}.markdown .csv-data td,.markdown .csv-data th{padding:5px;overflow:hidden;font-size:12px;line-height:1;text-align:left;white-space:nowrap}.markdown .csv-data .blob-num{padding:10px 8px 9px;text-align:right;background:#fff;border:0}.markdown .csv-data tr{border-top:0}.markdown .csv-data th{font-weight:700;background:#f8f8f8;border-top:0}.pln{color:#333}@media screen{.str{color:#d14}.kwd{color:#333}.com{color:#998;font-style:italic}.typ{color:#458}.lit{color:#458}.pun{color:#333}.opn{color:#333}.clo{color:#333}.tag{color:navy}.atn{color:teal}.atv{color:#d14}.dec{color:#333}.var{color:teal}.fun{color:#900}}@media print,projection{.str{color:#060}.kwd{color:#006;font-weight:700}.com{color:#600;font-style:italic}.typ{color:#404;font-weight:700}.lit{color:#044}.clo,.opn,.pun{color:#440}.tag{color:#006;font-weight:700}.atn{color:#404}.atv{color:#060}}ol.linenums{margin-top:0;margin-bottom:0}.home{padding-bottom:80px}.home .logo{max-width:250px}.home .hero h1,.home .hero h2{font-family:'PT Sans Narrow',sans-serif}.home .hero h1{font-size:7em}.home .hero h2{font-size:4em}.home .hero .octicon{color:#d9453d;font-size:60px;margin-right:10px}.home .hero.header{font-size:24px}.home p.large{font-size:20px}.home .stackable{padding-top:30px}.home a{color:#d9453d}.install{padding-top:45px;padding-bottom:80px}.install form label{text-align:right;width:320px!important}.install form input{width:35%!important}.install form .field{text-align:left}.install form .field .help{margin-left:335px!important}.install form .field.optional .title{margin-left:38%}.install .ui .checkbox{margin-left:40%!important}.install .ui .checkbox label{width:auto!important}.form .help{color:#999;padding-top:.6em;padding-bottom:.6em;display:inline-block}.ui.attached.header{background:#f0f0f0}.ui.attached.header .right{margin-top:-5px}.ui.attached.header .right .button{padding:8px 10px;font-weight:400}.repository.new.fork form,.repository.new.migrate form,.repository.new.repo form{margin:auto;width:800px!important}.repository.new.fork form .ui.message,.repository.new.migrate form .ui.message,.repository.new.repo form .ui.message{text-align:center}.repository.new.fork form .header,.repository.new.migrate form .header,.repository.new.repo form .header{padding-left:280px!important}.repository.new.fork form .inline.field>label,.repository.new.migrate form .inline.field>label,.repository.new.repo form .inline.field>label{text-align:right;width:250px!important;word-wrap:break-word}.repository.new.fork form .help,.repository.new.migrate form .help,.repository.new.repo form .help{margin-left:265px!important}.repository.new.fork form .dropdown .dropdown.icon,.repository.new.migrate form .dropdown .dropdown.icon,.repository.new.repo form .dropdown .dropdown.icon{margin-top:-7px!important}.repository.new.fork form .dropdown .text,.repository.new.migrate form .dropdown .text,.repository.new.repo form .dropdown .text{margin-right:0!important}.repository.new.fork form .dropdown .text i,.repository.new.migrate form .dropdown .text i,.repository.new.repo form .dropdown .text i{margin-right:0!important}.repository.new.fork form .optional .title,.repository.new.migrate form .optional .title,.repository.new.repo form .optional .title{margin-left:250px!important}.repository.new.fork form input,.repository.new.fork form textarea,.repository.new.migrate form input,.repository.new.migrate form textarea,.repository.new.repo form input,.repository.new.repo form textarea{width:50%!important}.repository.new.repo .ui.form .selection.dropdown:not(.owner){width:50%!important}.repository.new.repo .ui.form #auto-init{margin-left:265px!important}.new.webhook form .help{margin-left:25px}.new.webhook .events.fields .column{padding-left:40px}.repository{padding-top:15px;padding-bottom:80px}.repository .head .column{padding-top:5px!important;padding-bottom:5px!important}.repository .head .ui.compact.menu{margin-left:1rem}.repository .head .ui.header{margin-top:0}.repository .head .mega-octicon{width:30px;font-size:30px}.repository .head .ui.huge.breadcrumb{font-weight:300;font-size:1.7rem}.repository .head .fork-flag{margin-left:38px;display:block;font-size:11px;line-height:10px;white-space:nowrap}.repository .metas .menu{max-height:300px;overflow-x:auto}.repository .metas .ui.list .hide{display:none!important}.repository .metas .ui.list .label.color{padding:0 8px;margin-right:5px}.repository .metas .ui.list a{padding-top:5px;padding-right:10px}.repository .metas .ui.list a .text{color:#444}.repository .metas .ui.list a .text:hover{color:#000}.repository .filter.menu .label.color{margin-left:15px;padding:0 8px}.repository .filter.menu .octicon{float:left;margin-left:-5px;margin-right:-7px}.repository .filter.menu .menu{max-height:300px;overflow-x:auto;right:0!important;left:auto!important}.repository .filter.menu .dropdown.item{margin:1px;padding-right:0}.repository.options input{width:50%!important;min-width:300px}.repository.options #interval{width:100px!important;min-width:100px}.repository.options .danger .item{padding:20px 15px}.repository.options .danger .ui.divider{margin:0}.repository.new.issue .comment.form .comment .avatar{width:3em}.repository.new.issue .comment.form .content{margin-left:4em}.repository.new.issue .comment.form .content .markdown{font-size:14px}.repository.new.issue .comment.form .metas{min-width:220px}.repository.new.issue .comment.form .metas .filter.menu{max-height:300px;overflow-x:auto}.repository.view.issue .title{padding-bottom:0!important}.repository.view.issue .title h1{font-weight:300;font-size:3rem;margin-bottom:5px}.repository.view.issue .title h1 .ui.input{font-size:.5em;vertical-align:top;width:50%;min-width:600px}.repository.view.issue .title h1 .ui.input input{font-size:1.5em;padding:6px 10px}.repository.view.issue .title .index{font-weight:300;color:#aaa;letter-spacing:-1px}.repository.view.issue .title .label{margin-right:10px}.repository.view.issue .title .edit-zone{margin-top:10px}.repository.view.issue .pull.tabular.menu{margin-bottom:10px}.repository.view.issue .pull.tabular.menu .octicon{margin-right:5px}.repository.view.issue .pull.tab.segment{border:none;padding:0;padding-top:10px;box-shadow:none;background-color:inherit}.repository.view.issue .comment-list:before{display:block;content:"";position:absolute;margin-top:12px;margin-bottom:14px;top:0;bottom:0;left:96px;width:2px;background-color:#f3f3f3;z-index:-1}.repository.view.issue .comment-list .comment .avatar{width:3em}.repository.view.issue .comment-list .comment .tag{color:#767676;margin-top:3px;padding:2px 5px;font-size:12px;border:1px solid rgba(0,0,0,.1);border-radius:3px}.repository.view.issue .comment-list .comment .actions .item{float:left}.repository.view.issue .comment-list .comment .actions a.item{margin-top:6px;margin-left:10px}.repository.view.issue .comment-list .comment .content{margin-left:4em}.repository.view.issue .comment-list .comment .content .header{font-weight:400;padding:auto 15px;color:#767676;background-color:#f7f7f7;border-bottom:1px solid #eee;border-top-left-radius:3px;border-top-right-radius:3px}.repository.view.issue .comment-list .comment .content .header .text{max-width:78%;padding-top:10px;padding-bottom:10px}.repository.view.issue .comment-list .comment .content .markdown{font-size:14px}.repository.view.issue .comment-list .comment .content .no-content{color:#767676;font-style:italic}.repository.view.issue .comment-list .comment .content>.bottom.segment{background:#f3f4f5}.repository.view.issue .comment-list .comment .content>.bottom.segment .ui.image{max-height:150px}.repository.view.issue .comment-list .comment .ui.form .field:first-child{clear:none}.repository.view.issue .comment-list .comment .ui.form .tab.segment{border:none;padding:0;padding-top:10px}.repository.view.issue .comment-list .comment .ui.form textarea{height:200px}.repository.view.issue .comment-list .comment .edit.buttons{margin-top:10px}.repository.view.issue .comment-list .event{position:relative;margin:15px 0 15px 79px;padding-left:25px}.repository.view.issue .comment-list .event .octicon{width:30px;float:left;margin-left:-36px;text-align:center}.repository.view.issue .comment-list .event .octicon.octicon-circle-slash{margin-top:5px;font-size:20px;color:#bd2c00}.repository.view.issue .comment-list .event .octicon.octicon-primitive-dot{font-size:30px;color:#6cc644}.repository.view.issue .comment-list .event .octicon.octicon-bookmark{margin-top:3px;font-size:25px}.repository.view.issue .comment-list .event .detail{font-size:.9rem;margin-top:5px;margin-left:35px}.repository.view.issue .comment-list .event .detail .octicon.octicon-git-commit{margin-top:2px}.repository.view.issue .ui.segment.metas{margin-top:-3px}.repository .comment.form .ui.comments{margin-top:-12px;max-width:100%}.repository .comment.form .content .field:first-child{clear:none}.repository .comment.form .content .tab.segment{border:none;padding:0;padding-top:10px}.repository .comment.form .content textarea{height:200px}.repository .label.list{list-style:none;padding-top:15px}.repository .label.list .item{padding-top:10px;padding-bottom:10px;border-bottom:1px dashed #AAA}.repository .label.list .item a{font-size:15px;padding-top:5px;padding-right:10px;color:#666}.repository .label.list .item a:hover{color:#000}.repository .label.list .item a.open-issues{margin-right:30px}.repository .milestone.list{list-style:none;padding-top:15px}.repository .milestone.list>.item{padding-top:10px;padding-bottom:10px;border-bottom:1px dashed #AAA}.repository .milestone.list>.item>a{padding-top:5px;padding-right:10px;color:#000}.repository .milestone.list>.item>a:hover{color:#4078c0}.repository .milestone.list>.item .ui.progress{width:40%;padding:0;border:0;margin:0}.repository .milestone.list>.item .ui.progress .bar{height:20px}.repository .milestone.list>.item .meta{color:#999;padding-top:5px}.repository .milestone.list>.item .meta .issue-stats .octicon{padding-left:5px}.repository .milestone.list>.item .meta .overdue{color:red}.repository .milestone.list>.item .operate{margin-top:-15px}.repository .milestone.list>.item .operate>a{font-size:15px;padding-top:5px;padding-right:10px;color:#666}.repository .milestone.list>.item .operate>a:hover{color:#000}.repository .milestone.list>.item .content{padding-top:10px}.repository.new.milestone textarea{height:200px}.repository.new.milestone #deadline{width:150px}.repository.compare.pull .choose.branch .octicon{padding-right:10px}.repository .filter.dropdown .menu{margin-top:1px!important}.repository.commits .header .ui.right .search input{font-weight:400;padding:5px 10px}.repository.commits .header .ui.right .button{float:right;margin-left:5px;margin-top:1px}.repository .commits.table{font-size:13px}.repository .commits.table td:first-child,.repository .commits.table th:first-child{padding-left:15px}.repository .commits.table td{line-height:15px}.repository .commits.table .author{min-width:180px}.repository .commits.table .message span{max-width:500px}.repository .commits.table .date{width:120px}.repository .sha.label{font-family:Consolas,Menlo,Monaco,"Lucida Console",monospace;font-size:14px;padding:6px 10px 4px 10px;font-weight:400}.repository .diff-detail-box{margin:15px 0;line-height:30px}.repository .diff-detail-box ol{clear:both;padding-left:0;margin-top:5px;margin-bottom:28px}.repository .diff-detail-box ol li{list-style:none;padding-bottom:4px;margin-bottom:4px;border-bottom:1px dashed #DDD;padding-left:6px}.repository .diff-detail-box span.status{display:inline-block;width:12px;height:12px;margin-right:8px;vertical-align:middle}.repository .diff-detail-box span.status.modify{background-color:#f0db88}.repository .diff-detail-box span.status.add{background-color:#b4e2b4}.repository .diff-detail-box span.status.del{background-color:#e9aeae}.repository .diff-detail-box span.status.rename{background-color:#dad8ff}.repository .diff-box .count{margin-right:12px}.repository .diff-box .count .bar{background-color:#e75316;height:12px;width:40px;display:inline-block;margin:2px 4px 0 4px;vertical-align:text-top}.repository .diff-box .count .bar .add{background-color:#77c64a;height:12px}.repository .diff-box .file{color:#888}.repository .diff-file-box .header{border-bottom:1px solid #d4d4d5!important}.repository .diff-file-box .file-body.file-code .lines-num{text-align:right;color:#999;background:#fafafa;width:1%}.repository .diff-file-box .file-body.file-code .lines-num-old{border-right:1px solid #DDD}.repository .diff-file-box .code-diff{font-size:13px}.repository .diff-file-box .code-diff td{padding:0;border-top:none}.repository .diff-file-box .code-diff pre{margin:0}.repository .diff-file-box .code-diff .lines-num{border-right:1px solid #d4d4d5;padding:0 5px}.repository .diff-file-box .code-diff tbody tr.tag-code pre,.repository .diff-file-box .code-diff tbody tr.tag-code td{background-color:#E0E0E0!important;border-color:#ADADAD!important}.repository .diff-file-box .code-diff tbody tr.del-code pre,.repository .diff-file-box .code-diff tbody tr.del-code td{background-color:#ffe2dd!important;border-color:#e9aeae!important}.repository .diff-file-box .code-diff tbody tr.add-code pre,.repository .diff-file-box .code-diff tbody tr.add-code td{background-color:#d1ffd6!important;border-color:#b4e2b4!important}.repository .diff-file-box .code-diff tbody tr:hover td{background-color:#FFF8D2!important;border-color:#F0DB88!important}.repository .diff-file-box .code-diff tbody tr:hover pre{background-color:transparent!important}.repository .code-view{overflow:auto;overflow-x:auto;overflow-y:hidden}.issue.list{list-style:none;padding-top:15px}.issue.list>.item{padding-top:15px;padding-bottom:10px;border-bottom:1px dashed #AAA}.issue.list>.item .title{color:#444;font-size:15px;font-weight:700;margin:0 6px}.issue.list>.item .title:hover{color:#000}.issue.list>.item .comment{padding-right:10px;color:#666}.issue.list>.item .desc{padding-top:5px;color:#999}.issue.list>.item .desc a.milestone{padding-left:5px;color:#999!important}.issue.list>.item .desc a.milestone:hover{color:#000!important}.issue.list>.item .desc .assignee{margin-top:-5px;margin-right:5px}.page.buttons{padding-top:15px}.ui.comments .dropzone{width:100%;margin-bottom:10px;border:2px dashed #0087F7;box-shadow:none!important}.ui.comments .dropzone .dz-error-message{top:140px}.settings .content{margin-top:2px}.settings .content .header,.settings .content .segment{box-shadow:0 1px 2px 0 rgba(34,36,38,.15)}.settings .key.list .item:not(:first-child){border-top:1px solid #eaeaea}.settings .key.list .ssh-key-state-indicator{float:left;color:gray;padding-left:10px;padding-top:10px}.settings .key.list .ssh-key-state-indicator.active{color:#6cc644}.settings .key.list .meta{padding-top:5px}.settings .key.list .print{color:#767676}.settings .key.list .activity{color:#666}.settings .hook.list>.item:not(:first-child){border-top:1px solid #eaeaea}.settings .hook.list .item{padding:10px 20px}.settings .hook.list .item .fa,.settings .hook.list .item .octicon{width:20px;text-align:center}.settings .hook.history.list .item{padding-left:13px}.settings .hook.history.list .item .meta .ui.right{margin-top:5px}.settings .hook.history.list .item .meta .ui.right .time{font-size:12px}.settings .hook.history.list .item .info{margin-top:10px}.settings .hook.history.list .item .info .tabular.menu .item{font-weight:500}.settings .hook.history.list .item .info .tab.segment{border:none;padding:0;padding-top:10px;box-shadow:none}.settings .hook.history.list .item .info .tab.segment>*{color:#666}.settings .hook.history.list .item .info .tab.segment pre{word-wrap:break-word}.settings .hook.history.list .item .info .tab.segment pre .hljs{padding:0;background-color:inherit}.ui.vertical.menu .header.item{font-size:1.1em;background:#f0f0f0}.edit-label.modal .form .column,.new-label.segment .form .column{padding-right:0}.edit-label.modal .form .buttons,.new-label.segment .form .buttons{margin-left:auto;padding-top:15px}.edit-label.modal .form .color.picker.column,.new-label.segment .form .color.picker.column{width:auto}.edit-label.modal .form .color.picker.column .color-picker,.new-label.segment .form .color.picker.column .color-picker{height:35px;width:auto;padding-left:30px}.edit-label.modal .form .minicolors-swatch.minicolors-sprite,.new-label.segment .form .minicolors-swatch.minicolors-sprite{top:10px;left:10px;width:15px;height:15px}.edit-label.modal .form .precolors,.new-label.segment .form .precolors{padding-left:0;padding-right:0;margin:3px 10px auto 10px;width:120px}.edit-label.modal .form .precolors .color,.new-label.segment .form .precolors .color{float:left;width:15px;height:15px}#delete-repo-modal .ui.message,#transfer-repo-modal .ui.message{width:100%!important}.organization{padding-top:15px;padding-bottom:80px}.organization .head .ui.header .text{vertical-align:middle;font-size:1.6rem;margin-left:15px}.organization .head .ui.header .ui.right{margin-top:5px}.user{padding-top:15px;padding-bottom:80px}.user.settings .key.list .item.ui.grid{margin-top:15px}.dashboard{padding-top:15px;padding-bottom:80px}.dashboard.issues .context.user.menu{min-width:200px}.dashboard.issues .context.user.menu .ui.header{font-size:1rem;text-transform:none}.dashboard.issues .filter.menu .item.active{background-color:#4183c4;color:#FFF}.dashboard.issues .ui.right .head.menu{margin-top:-5px}.dashboard.issues .ui.right .head.menu .item.active{color:#d9453d}.admin{padding-top:15px;padding-bottom:80px}.admin .table.segment{padding:0;font-size:13px}.admin .table.segment th{padding-top:5px;padding-bottom:5px}.admin .table.segment td:first-child,.admin .table.segment th:first-child{padding-left:15px}.explore{padding-top:15px;padding-bottom:80px}.explore.repositories .ui.repository.list .item{border-top:1px solid #eee;padding-top:25px;padding-bottom:25px}.explore.repositories .ui.repository.list .item .ui.header{font-size:1.5rem;padding-bottom:10px}.explore.repositories .ui.repository.list .item .ui.header .metas{color:#888;font-size:13px;font-weight:400}.explore.repositories .ui.repository.list .item .ui.header .metas span:not(:last-child){margin-right:5px}.explore.repositories .ui.repository.list .item .time{font-size:12px;color:grey} \ No newline at end of file diff --git a/public/less/_repository.less b/public/less/_repository.less index 70b31620b..0a31b2d80 100644 --- a/public/less/_repository.less +++ b/public/less/_repository.less @@ -152,6 +152,22 @@ margin-top: 10px; } } + .pull { + &.tabular.menu { + margin-bottom: 10px; + .octicon { + margin-right: 5px; + } + } + + &.tab.segment { + border: none; + padding: 0; + padding-top: 10px; + box-shadow: none; + background-color: inherit; + } + } .comment-list { &:before { display: block; diff --git a/routers/repo/commit.go b/routers/repo/commit.go index 59a2a0d09..b29236e24 100644 --- a/routers/repo/commit.go +++ b/routers/repo/commit.go @@ -297,6 +297,7 @@ func CompareDiff(ctx *middleware.Context) { } commits = models.ValidateCommitsWithEmails(commits) + ctx.Data["CommitRepoLink"] = ctx.Repo.RepoLink ctx.Data["Commits"] = commits ctx.Data["CommitCount"] = commits.Len() ctx.Data["BeforeCommitID"] = beforeCommitID diff --git a/routers/repo/issue.go b/routers/repo/issue.go index 8485a617b..fb9bc71ea 100644 --- a/routers/repo/issue.go +++ b/routers/repo/issue.go @@ -18,6 +18,7 @@ import ( "github.com/gogits/gogs/models" "github.com/gogits/gogs/modules/auth" "github.com/gogits/gogs/modules/base" + "github.com/gogits/gogs/modules/git" "github.com/gogits/gogs/modules/log" "github.com/gogits/gogs/modules/mailer" "github.com/gogits/gogs/modules/middleware" @@ -185,11 +186,32 @@ func Issues(ctx *middleware.Context) { } func renderAttachmentSettings(ctx *middleware.Context) { + ctx.Data["RequireDropzone"] = true ctx.Data["IsAttachmentEnabled"] = setting.AttachmentEnabled ctx.Data["AttachmentAllowedTypes"] = setting.AttachmentAllowedTypes ctx.Data["AttachmentMaxFiles"] = setting.AttachmentMaxFiles } +func RetrieveRepoMilestonesAndAssignees(ctx *middleware.Context, repo *models.Repository) { + var err error + ctx.Data["OpenMilestones"], err = models.GetMilestones(repo.ID, -1, false) + if err != nil { + ctx.Handle(500, "GetMilestones: %v", err) + return + } + ctx.Data["ClosedMilestones"], err = models.GetMilestones(repo.ID, -1, true) + if err != nil { + ctx.Handle(500, "GetMilestones: %v", err) + return + } + + ctx.Data["Assignees"], err = repo.GetAssignees() + if err != nil { + ctx.Handle(500, "GetAssignees: %v", err) + return + } +} + func RetrieveRepoMetas(ctx *middleware.Context, repo *models.Repository) []*models.Label { if !ctx.Repo.IsAdmin() { return nil @@ -202,29 +224,17 @@ func RetrieveRepoMetas(ctx *middleware.Context, repo *models.Repository) []*mode } ctx.Data["Labels"] = labels - ctx.Data["OpenMilestones"], err = models.GetMilestones(repo.ID, -1, false) - if err != nil { - ctx.Handle(500, "GetMilestones: %v", err) - return nil - } - ctx.Data["ClosedMilestones"], err = models.GetMilestones(repo.ID, -1, true) - if err != nil { - ctx.Handle(500, "GetMilestones: %v", err) + RetrieveRepoMilestonesAndAssignees(ctx, repo) + if ctx.Written() { return nil } - ctx.Data["Assignees"], err = repo.GetAssignees() - if err != nil { - ctx.Handle(500, "GetAssignees: %v", err) - return nil - } return labels } func NewIssue(ctx *middleware.Context) { ctx.Data["Title"] = ctx.Tr("repo.issues.new") ctx.Data["PageIsIssueList"] = true - ctx.Data["RequireDropzone"] = true renderAttachmentSettings(ctx) RetrieveRepoMetas(ctx, ctx.Repo.Repository) @@ -235,62 +245,73 @@ func NewIssue(ctx *middleware.Context) { ctx.HTML(200, ISSUE_NEW) } +func ValidateRepoMetas(ctx *middleware.Context, form auth.CreateIssueForm) ([]int64, int64, int64) { + var ( + repo = ctx.Repo.Repository + err error + ) + + labels := RetrieveRepoMetas(ctx, ctx.Repo.Repository) + if ctx.Written() { + return nil, 0, 0 + } + + if !ctx.Repo.IsAdmin() { + return nil, 0, 0 + } + + // Check labels. + labelIDs := base.StringsToInt64s(strings.Split(form.LabelIDs, ",")) + labelIDMark := base.Int64sToMap(labelIDs) + hasSelected := false + for i := range labels { + if labelIDMark[labels[i].ID] { + labels[i].IsChecked = true + hasSelected = true + } + } + ctx.Data["HasSelectedLabel"] = hasSelected + ctx.Data["label_ids"] = form.LabelIDs + ctx.Data["Labels"] = labels + + // Check milestone. + milestoneID := form.MilestoneID + if milestoneID > 0 { + ctx.Data["Milestone"], err = repo.GetMilestoneByID(milestoneID) + if err != nil { + ctx.Handle(500, "GetMilestoneByID: %v", err) + return nil, 0, 0 + } + ctx.Data["milestone_id"] = milestoneID + } + + // Check assignee. + assigneeID := form.AssigneeID + if assigneeID > 0 { + ctx.Data["Assignee"], err = repo.GetAssigneeByID(assigneeID) + if err != nil { + ctx.Handle(500, "GetAssigneeByID: %v", err) + return nil, 0, 0 + } + ctx.Data["assignee_id"] = assigneeID + } + + return labelIDs, milestoneID, assigneeID +} + func NewIssuePost(ctx *middleware.Context, form auth.CreateIssueForm) { ctx.Data["Title"] = ctx.Tr("repo.issues.new") ctx.Data["PageIsIssueList"] = true - ctx.Data["RequireDropzone"] = true renderAttachmentSettings(ctx) var ( repo = ctx.Repo.Repository - labelIDs []int64 - milestoneID int64 - assigneeID int64 attachments []string - err error ) - if ctx.Repo.IsAdmin() { - labels := RetrieveRepoMetas(ctx, repo) - if ctx.Written() { - return - } - - // Check labels. - labelIDs = base.StringsToInt64s(strings.Split(form.LabelIDs, ",")) - labelIDMark := base.Int64sToMap(labelIDs) - hasSelected := false - for i := range labels { - if labelIDMark[labels[i].ID] { - labels[i].IsChecked = true - hasSelected = true - } - } - ctx.Data["HasSelectedLabel"] = hasSelected - ctx.Data["label_ids"] = form.LabelIDs - ctx.Data["Labels"] = labels - - // Check milestone. - milestoneID = form.MilestoneID - if milestoneID > 0 { - ctx.Data["Milestone"], err = repo.GetMilestoneByID(milestoneID) - if err != nil { - ctx.Handle(500, "GetMilestoneByID: %v", err) - return - } - ctx.Data["milestone_id"] = milestoneID - } - - // Check assignee. - assigneeID = form.AssigneeID - if assigneeID > 0 { - ctx.Data["Assignee"], err = repo.GetAssigneeByID(assigneeID) - if err != nil { - ctx.Handle(500, "GetAssigneeByID: %v", err) - return - } - ctx.Data["assignee_id"] = assigneeID - } + labelIDs, milestoneID, assigneeID := ValidateRepoMetas(ctx, form) + if ctx.Written() { + return } if setting.AttachmentEnabled { @@ -332,7 +353,7 @@ func NewIssuePost(ctx *middleware.Context, form auth.CreateIssueForm) { // Mail watchers and mentions. if setting.Service.EnableNotifyMail { - tos, err := mailer.SendIssueNotifyMail(ctx.User, ctx.Repo.Owner, ctx.Repo.Repository, issue) + tos, err := mailer.SendIssueNotifyMail(ctx.User, ctx.Repo.Owner, repo, issue) if err != nil { ctx.Handle(500, "SendIssueNotifyMail", err) return @@ -348,13 +369,13 @@ func NewIssuePost(ctx *middleware.Context, form auth.CreateIssueForm) { newTos = append(newTos, m) } if err = mailer.SendIssueMentionMail(ctx.Render, ctx.User, ctx.Repo.Owner, - ctx.Repo.Repository, issue, models.GetUserEmailsByNames(newTos)); err != nil { + repo, issue, models.GetUserEmailsByNames(newTos)); err != nil { ctx.Handle(500, "SendIssueMentionMail", err) return } } - log.Trace("Issue created: %d/%d", ctx.Repo.Repository.ID, issue.ID) + log.Trace("Issue created: %d/%d", repo.ID, issue.ID) ctx.Redirect(ctx.Repo.RepoLink + "/issues/" + com.ToStr(issue.Index)) } @@ -421,6 +442,15 @@ func ViewIssue(ctx *middleware.Context) { } ctx.Data["Title"] = issue.Name + // Make sure type and URL matches. + if ctx.Params(":type") == "issues" && issue.IsPull { + ctx.Redirect(ctx.Repo.RepoLink + "/pulls/" + com.ToStr(issue.Index)) + return + } else if ctx.Params(":type") == "pulls" && !issue.IsPull { + ctx.Redirect(ctx.Repo.RepoLink + "/issues/" + com.ToStr(issue.Index)) + return + } + if err = issue.GetPoster(); err != nil { ctx.Handle(500, "GetPoster", err) return @@ -429,6 +459,30 @@ func ViewIssue(ctx *middleware.Context) { repo := ctx.Repo.Repository + // Get more information if it's a pull request. + if issue.IsPull { + headRepoPath, err := issue.PullRepo.HeadRepo.RepoPath() + if err != nil { + ctx.Handle(500, "PullRepo.HeadRepo.RepoPath", err) + return + } + + headGitRepo, err := git.OpenRepository(headRepoPath) + if err != nil { + ctx.Handle(500, "OpenRepository", err) + return + } + + prInfo, err := headGitRepo.GetPullRequestInfo(models.RepoPath(repo.Owner.Name, repo.Name), + issue.PullRepo.BaseBranch, issue.PullRepo.HeadBarcnh) + if err != nil { + ctx.Handle(500, "GetPullRequestInfo", err) + return + } + ctx.Data["NumCommits"] = prInfo.Commits.Len() + ctx.Data["NumFiles"] = prInfo.NumFiles + } + // Metas. // Check labels. if err = issue.GetLabels(); err != nil { @@ -456,20 +510,8 @@ func ViewIssue(ctx *middleware.Context) { // Check milestone and assignee. if ctx.Repo.IsAdmin() { - ctx.Data["OpenMilestones"], err = models.GetMilestones(repo.ID, -1, false) - if err != nil { - ctx.Handle(500, "GetMilestones: %v", err) - return - } - ctx.Data["ClosedMilestones"], err = models.GetMilestones(repo.ID, -1, true) - if err != nil { - ctx.Handle(500, "GetMilestones: %v", err) - return - } - - ctx.Data["Assignees"], err = repo.GetAssignees() - if err != nil { - ctx.Handle(500, "GetAssignees: %v", err) + RetrieveRepoMilestonesAndAssignees(ctx, repo) + if ctx.Written() { return } } diff --git a/routers/repo/pull.go b/routers/repo/pull.go index 6ccca57c5..8d0dbecfb 100644 --- a/routers/repo/pull.go +++ b/routers/repo/pull.go @@ -5,9 +5,11 @@ package repo import ( - "fmt" + "path" "strings" + "github.com/Unknwon/com" + "github.com/gogits/gogs/models" "github.com/gogits/gogs/modules/auth" "github.com/gogits/gogs/modules/base" @@ -124,17 +126,19 @@ func ForkPost(ctx *middleware.Context, form auth.CreateRepoForm) { ctx.Redirect(setting.AppSubUrl + "/" + ctxUser.Name + "/" + repo.Name) } -func CompareAndPullRequest(ctx *middleware.Context) { - ctx.Data["Title"] = ctx.Tr("repo.pulls.compare_changes") - ctx.Data["PageIsComparePull"] = true +func Pulls(ctx *middleware.Context) { + ctx.Data["IsRepoToolbarPulls"] = true + ctx.HTML(200, PULLS) +} - repo := ctx.Repo.Repository +// func ViewPull +func ParseCompareInfo(ctx *middleware.Context) (*models.User, *models.Repository, *git.Repository, *git.PullRequestInfo, string, string) { // Get compare branch information. infos := strings.Split(ctx.Params("*"), "...") if len(infos) != 2 { ctx.Handle(404, "CompareAndPullRequest", nil) - return + return nil, nil, nil, nil, "", "" } baseBranch := infos[0] @@ -143,47 +147,221 @@ func CompareAndPullRequest(ctx *middleware.Context) { headInfos := strings.Split(infos[1], ":") if len(headInfos) != 2 { ctx.Handle(404, "CompareAndPullRequest", nil) - return + return nil, nil, nil, nil, "", "" } - headUser := headInfos[0] + headUsername := headInfos[0] headBranch := headInfos[1] ctx.Data["HeadBranch"] = headBranch - // TODO: check if branches are valid. - fmt.Println(baseBranch, headUser, headBranch) + headUser, err := models.GetUserByName(headUsername) + if err != nil { + if models.IsErrUserNotExist(err) { + ctx.Handle(404, "GetUserByName", nil) + } else { + ctx.Handle(500, "GetUserByName", err) + } + return nil, nil, nil, nil, "", "" + } + + repo := ctx.Repo.Repository + + // Check if base branch is valid. + if !ctx.Repo.GitRepo.IsBranchExist(baseBranch) { + ctx.Handle(404, "IsBranchExist", nil) + return nil, nil, nil, nil, "", "" + } - // TODO: add organization support // Check if current user has fork of repository. - headRepo, has := models.HasForkedRepo(ctx.User.Id, repo.ID) - if !has { + headRepo, has := models.HasForkedRepo(headUser.Id, repo.ID) + if !has || !ctx.User.IsAdminOfRepo(headRepo) { ctx.Handle(404, "HasForkedRepo", nil) - return + return nil, nil, nil, nil, "", "" } - headGitRepo, err := git.OpenRepository(models.RepoPath(ctx.User.Name, headRepo.Name)) + headGitRepo, err := git.OpenRepository(models.RepoPath(headUser.Name, headRepo.Name)) if err != nil { ctx.Handle(500, "OpenRepository", err) - return + return nil, nil, nil, nil, "", "" + } + + // Check if head branch is valid. + if !headGitRepo.IsBranchExist(headBranch) { + ctx.Handle(404, "IsBranchExist", nil) + return nil, nil, nil, nil, "", "" } + headBranches, err := headGitRepo.GetBranches() if err != nil { ctx.Handle(500, "GetBranches", err) - return + return nil, nil, nil, nil, "", "" } ctx.Data["HeadBranches"] = headBranches + prInfo, err := headGitRepo.GetPullRequestInfo(models.RepoPath(repo.Owner.Name, repo.Name), baseBranch, headBranch) + if err != nil { + ctx.Handle(500, "GetPullRequestInfo", err) + return nil, nil, nil, nil, "", "" + } + ctx.Data["BeforeCommitID"] = prInfo.MergeBase + + return headUser, headRepo, headGitRepo, prInfo, baseBranch, headBranch +} + +func PrepareCompareDiff( + ctx *middleware.Context, + headUser *models.User, + headRepo *models.Repository, + headGitRepo *git.Repository, + prInfo *git.PullRequestInfo, + baseBranch, headBranch string) { + + var ( + repo = ctx.Repo.Repository + err error + ) + + // Get diff information. + ctx.Data["CommitRepoLink"], err = headRepo.RepoLink() + if err != nil { + ctx.Handle(500, "RepoLink", err) + return + } + + headCommitID, err := headGitRepo.GetCommitIdOfBranch(headBranch) + if err != nil { + ctx.Handle(500, "GetCommitIdOfBranch", err) + return + } + ctx.Data["AfterCommitID"] = headCommitID + + diff, err := models.GetDiffRange(models.RepoPath(headUser.Name, headRepo.Name), + prInfo.MergeBase, headCommitID, setting.Git.MaxGitDiffLines) + if err != nil { + ctx.Handle(500, "GetDiffRange", err) + return + } + ctx.Data["Diff"] = diff + ctx.Data["DiffNotAvailable"] = diff.NumFiles() == 0 + + headCommit, err := headGitRepo.GetCommit(headCommitID) + if err != nil { + ctx.Handle(500, "GetCommit", err) + return + } + isImageFile := func(name string) bool { + blob, err := headCommit.GetBlobByPath(name) + if err != nil { + return false + } + + dataRc, err := blob.Data() + if err != nil { + return false + } + buf := make([]byte, 1024) + n, _ := dataRc.Read(buf) + if n > 0 { + buf = buf[:n] + } + _, isImage := base.IsImageFile(buf) + return isImage + } + + prInfo.Commits = models.ValidateCommitsWithEmails(prInfo.Commits) + ctx.Data["Commits"] = prInfo.Commits + ctx.Data["CommitCount"] = prInfo.Commits.Len() + ctx.Data["Username"] = headUser.Name + ctx.Data["Reponame"] = headRepo.Name + ctx.Data["IsImageFile"] = isImageFile + ctx.Data["SourcePath"] = setting.AppSubUrl + "/" + path.Join(headUser.Name, repo.Name, "src", headCommitID) + ctx.Data["BeforeSourcePath"] = setting.AppSubUrl + "/" + path.Join(headUser.Name, repo.Name, "src", prInfo.MergeBase) + ctx.Data["RawPath"] = setting.AppSubUrl + "/" + path.Join(headUser.Name, repo.Name, "raw", headCommitID) +} + +func CompareAndPullRequest(ctx *middleware.Context) { + ctx.Data["Title"] = ctx.Tr("repo.pulls.compare_changes") + ctx.Data["PageIsComparePull"] = true + ctx.Data["IsDiffCompare"] = true + renderAttachmentSettings(ctx) + + headUser, headRepo, headGitRepo, prInfo, baseBranch, headBranch := ParseCompareInfo(ctx) + if ctx.Written() { + return + } + + PrepareCompareDiff(ctx, headUser, headRepo, headGitRepo, prInfo, baseBranch, headBranch) + if ctx.Written() { + return + } + // Setup information for new form. RetrieveRepoMetas(ctx, ctx.Repo.Repository) if ctx.Written() { return } - // Get diff information. - ctx.HTML(200, COMPARE_PULL) } -func Pulls(ctx *middleware.Context) { - ctx.Data["IsRepoToolbarPulls"] = true - ctx.HTML(200, PULLS) +func CompareAndPullRequestPost(ctx *middleware.Context, form auth.CreateIssueForm) { + ctx.Data["Title"] = ctx.Tr("repo.pulls.compare_changes") + ctx.Data["PageIsComparePull"] = true + ctx.Data["IsDiffCompare"] = true + renderAttachmentSettings(ctx) + + var ( + repo = ctx.Repo.Repository + attachments []string + ) + + _, headRepo, headGitRepo, prInfo, baseBranch, headBranch := ParseCompareInfo(ctx) + if ctx.Written() { + return + } + + patch, err := headGitRepo.GetPatch(models.RepoPath(repo.Owner.Name, repo.Name), baseBranch, headBranch) + if err != nil { + ctx.Handle(500, "GetPatch", err) + return + } + + labelIDs, milestoneID, assigneeID := ValidateRepoMetas(ctx, form) + if ctx.Written() { + return + } + + if setting.AttachmentEnabled { + attachments = form.Attachments + } + + if ctx.HasError() { + ctx.HTML(200, COMPARE_PULL) + return + } + + pr := &models.Issue{ + RepoID: repo.ID, + Index: int64(repo.NumIssues) + 1, + Name: form.Title, + PosterID: ctx.User.Id, + Poster: ctx.User, + MilestoneID: milestoneID, + AssigneeID: assigneeID, + IsPull: true, + Content: form.Content, + } + if err := models.NewPullRequest(repo, pr, labelIDs, attachments, &models.PullRepo{ + HeadRepoID: headRepo.ID, + BaseRepoID: repo.ID, + HeadBarcnh: headBranch, + BaseBranch: baseBranch, + MergeBase: prInfo.MergeBase, + Type: models.PULL_REQUEST_GOGS, + }, patch); err != nil { + ctx.Handle(500, "NewPullRequest", err) + return + } + + log.Trace("Pull request created: %d/%d", repo.ID, pr.ID) + ctx.Redirect(ctx.Repo.RepoLink + "/pulls/" + com.ToStr(pr.Index)) } diff --git a/templates/repo/commits_table.tmpl b/templates/repo/commits_table.tmpl index 56ec2da37..a077af0b7 100644 --- a/templates/repo/commits_table.tmpl +++ b/templates/repo/commits_table.tmpl @@ -10,9 +10,11 @@ {{else if .IsDiffCompare}} - {{ShortSha .BeforeCommitID}} ... {{ShortSha .AfterCommitID}} + {{ShortSha .BeforeCommitID}} ... {{ShortSha .AfterCommitID}} {{end}} + +{{if .Commits}}
@@ -24,9 +26,7 @@ - {{ $username := .Username}} - {{ $reponame := .Reponame}} - {{ $r:= List .Commits}} + {{ $r:= List .Commits}} {{range $r}} - + @@ -44,6 +44,7 @@
@@ -36,7 +36,7 @@   {{.Author.Name}} {{end}} {{SubStr .Id.String 0 10}} {{SubStr .Id.String 0 10}} {{RenderCommitMessage .Summary $.RepoLink}} {{TimeSince .Author.When $.Lang}}
+{{end}} {{with .Page}} {{if gt .TotalPages 1}} diff --git a/templates/repo/diff.tmpl b/templates/repo/diff.tmpl index 932a109e4..a280c81e1 100644 --- a/templates/repo/diff.tmpl +++ b/templates/repo/diff.tmpl @@ -41,98 +41,7 @@ {{end}} - {{if .DiffNotAvailable}} -

{{.i18n.Tr "repo.diff.data_not_available"}}

- {{else}} -
-
- - {{.i18n.Tr "repo.diff.stats_desc" .Diff.NumFiles .Diff.TotalAddition .Diff.TotalDeletion | Str2html}} - -
-
    - {{range .Diff.Files}} -
  1. -
    - {{if not .IsBin}} - {{.Addition}} - - - - - {{.Deletion}} - {{else}} - {{$.i18n.Tr "repo.diff.bin"}} - {{end}} -
    - -   - {{.Name}} -
  2. - {{end}} -
-
- - {{range $i, $file := .Diff.Files}} -
-

-
- {{if not $file.IsBin}} - + {{.Addition}} - - - - - - {{.Deletion}} - {{else}} - {{$.i18n.Tr "repo.diff.bin"}} - {{end}} -
- {{$file.Name}} -
- {{if $file.IsDeleted}} - {{$.i18n.Tr "repo.diff.view_file"}} - {{else}} - {{$.i18n.Tr "repo.diff.view_file"}} - {{end}} -
-

-
- {{$isImage := (call $.IsImageFile $file.Name)}} - {{if $isImage}} -
- -
- {{else}} -
- - - {{range .Sections}} - {{range $k, $line := .Lines}} - - - - - - {{end}} - {{end}} - -
- {{if $line.LeftIdx}}{{$line.LeftIdx}}{{end}} - - {{if $line.RightIdx}}{{$line.RightIdx}}{{end}} - -
{{$line.Content}}
-
-
- {{end}} -
-
-
- {{end}} - {{end}} + {{template "repo/diff_box" .}} {{template "base/footer" .}} diff --git a/templates/repo/diff_box.tmpl b/templates/repo/diff_box.tmpl new file mode 100644 index 000000000..f4509942e --- /dev/null +++ b/templates/repo/diff_box.tmpl @@ -0,0 +1,92 @@ +{{if .DiffNotAvailable}} +

{{.i18n.Tr "repo.diff.data_not_available"}}

+{{else}} +
+
+ + {{.i18n.Tr "repo.diff.stats_desc" .Diff.NumFiles .Diff.TotalAddition .Diff.TotalDeletion | Str2html}} + +
+
    + {{range .Diff.Files}} +
  1. +
    + {{if not .IsBin}} + {{.Addition}} + + + + + {{.Deletion}} + {{else}} + {{$.i18n.Tr "repo.diff.bin"}} + {{end}} +
    + +   + {{.Name}} +
  2. + {{end}} +
+
+ +{{range $i, $file := .Diff.Files}} +
+

+
+ {{if not $file.IsBin}} + + {{.Addition}} + + + + + - {{.Deletion}} + {{else}} + {{$.i18n.Tr "repo.diff.bin"}} + {{end}} +
+ {{$file.Name}} +
+ {{if $file.IsDeleted}} + {{$.i18n.Tr "repo.diff.view_file"}} + {{else}} + {{$.i18n.Tr "repo.diff.view_file"}} + {{end}} +
+

+
+ {{$isImage := (call $.IsImageFile $file.Name)}} + {{if $isImage}} +
+ +
+ {{else}} +
+ + + {{range .Sections}} + {{range $k, $line := .Lines}} + + + + + + {{end}} + {{end}} + +
+ {{if $line.LeftIdx}}{{$line.LeftIdx}}{{end}} + + {{if $line.RightIdx}}{{$line.RightIdx}}{{end}} + +
{{$line.Content}}
+
+
+ {{end}} +
+
+
+{{end}} +{{end}} \ No newline at end of file diff --git a/templates/repo/issue/view.tmpl b/templates/repo/issue/view.tmpl index 129bfd085..b7ec0152f 100644 --- a/templates/repo/issue/view.tmpl +++ b/templates/repo/issue/view.tmpl @@ -9,7 +9,31 @@
+ {{if .Issue.IsPull}} + {{template "repo/issue/view_title" .}} + +
+ {{template "repo/issue/view_content" .}} +
+ {{else}} {{template "repo/issue/view_content" .}} + {{end}} {{template "base/footer" .}} \ No newline at end of file diff --git a/templates/repo/issue/view_content.tmpl b/templates/repo/issue/view_content.tmpl index a6d4ba471..4ed7240d3 100644 --- a/templates/repo/issue/view_content.tmpl +++ b/templates/repo/issue/view_content.tmpl @@ -4,41 +4,11 @@ {{template "base/alert" .}} {{end}} -
-
-

- #{{.Issue.Index}} {{.Issue.Name}} - -

- {{if .IsIssueOwner}} -
-
-
{{.i18n.Tr "repo.issues.edit"}}
- - -
-
- {{end}} -
- {{if .Issue.IsClosed}} -
{{.i18n.Tr "repo.issues.closed_title"}}
- {{else}} -
{{.i18n.Tr "repo.issues.open_title"}}
- {{end}} - {{ $createdStr:= TimeSince .Issue.Created $.Lang }} - - {{if gt .Issue.Poster.Id 0}} - {{$.i18n.Tr "repo.issues.opened_by" $createdStr .Issue.Poster.HomeLink .Issue.Poster.Name | Safe}} - {{else}} - {{$.i18n.Tr "repo.issues.opened_by_fake" $createdStr .Issue.Poster.Name | Safe}} - {{end}} - · - {{$.i18n.Tr "repo.issues.num_comments" .Issue.NumComments}} - -
-
+ {{if not .Issue.IsPull}} + {{template "repo/issue/view_title" .}} + {{end}} + + {{ $createdStr:= TimeSince .Issue.Created $.Lang }}
@@ -63,7 +33,7 @@ {{end}}
{{.Issue.Content}}
-
+
{{if .Issue.Attachments}}
@@ -167,7 +137,7 @@
-
+ {{template "repo/issue/comment_tab" .}} {{.CsrfTokenHtml}} diff --git a/templates/repo/issue/view_title.tmpl b/templates/repo/issue/view_title.tmpl new file mode 100644 index 000000000..6b8e1c55a --- /dev/null +++ b/templates/repo/issue/view_title.tmpl @@ -0,0 +1,35 @@ +
+
+

+ #{{.Issue.Index}} {{.Issue.Name}} + +

+ {{if .IsIssueOwner}} +
+
+
{{.i18n.Tr "repo.issues.edit"}}
+ + +
+
+ {{end}} +
+ {{if .Issue.IsClosed}} +
{{.i18n.Tr "repo.issues.closed_title"}}
+ {{else}} +
{{.i18n.Tr "repo.issues.open_title"}}
+ {{end}} + {{ $createdStr:= TimeSince .Issue.Created $.Lang }} + + {{if gt .Issue.Poster.Id 0}} + {{$.i18n.Tr "repo.issues.opened_by" $createdStr .Issue.Poster.HomeLink .Issue.Poster.Name | Safe}} + {{else}} + {{$.i18n.Tr "repo.issues.opened_by_fake" $createdStr .Issue.Poster.Name | Safe}} + {{end}} + · + {{$.i18n.Tr "repo.issues.num_comments" .Issue.NumComments}} + +
+
\ No newline at end of file diff --git a/templates/repo/pulls/compare.tmpl b/templates/repo/pulls/compare.tmpl index 907a25b6c..219fe3a4e 100644 --- a/templates/repo/pulls/compare.tmpl +++ b/templates/repo/pulls/compare.tmpl @@ -46,6 +46,9 @@
{{template "repo/issue/new_form" .}} + + {{template "repo/commits_table" .}} + {{template "repo/diff_box" .}}