From a07b1f630aee4deb82623ef05b8b236f2b0c09df Mon Sep 17 00:00:00 2001 From: Unknwon Date: Sat, 18 Feb 2017 00:54:56 -0500 Subject: [PATCH] webhook: add native Discord support --- cmd/web.go | 4 + conf/locale/locale_en-US.ini | 1 + gogs.go | 2 +- models/action.go | 26 +-- models/webhook.go | 14 +- models/webhook_discord.go | 213 ++++++++++++++++++++++ models/webhook_slack.go | 57 +++--- modules/auth/repo_form.go | 11 ++ modules/bindata/bindata.go | 4 +- modules/setting/setting.go | 2 +- public/config.codekit | 11 ++ public/css/gogs.css | 3 + public/img/discord.png | Bin 0 -> 1559 bytes public/less/_repository.less | 8 + routers/repo/webhook.go | 94 ++++++++++ templates/.VERSION | 2 +- templates/repo/settings/hook_discord.tmpl | 20 ++ templates/repo/settings/hook_list.tmpl | 9 +- templates/repo/settings/hook_new.tmpl | 5 +- templates/repo/settings/hook_slack.tmpl | 2 +- 20 files changed, 428 insertions(+), 60 deletions(-) create mode 100644 models/webhook_discord.go create mode 100644 public/img/discord.png create mode 100644 templates/repo/settings/hook_discord.tmpl diff --git a/cmd/web.go b/cmd/web.go index 0d18e34e..f3dba114 100644 --- a/cmd/web.go +++ b/cmd/web.go @@ -407,9 +407,11 @@ func runWeb(ctx *cli.Context) error { m.Get("/:type/new", repo.WebhooksNew) m.Post("/gogs/new", bindIgnErr(auth.NewWebhookForm{}), repo.WebHooksNewPost) m.Post("/slack/new", bindIgnErr(auth.NewSlackHookForm{}), repo.SlackHooksNewPost) + m.Post("/discord/new", bindIgnErr(auth.NewDiscordHookForm{}), repo.DiscordHooksNewPost) m.Get("/:id", repo.WebHooksEdit) m.Post("/gogs/:id", bindIgnErr(auth.NewWebhookForm{}), repo.WebHooksEditPost) m.Post("/slack/:id", bindIgnErr(auth.NewSlackHookForm{}), repo.SlackHooksEditPost) + m.Post("/discord/:id", bindIgnErr(auth.NewDiscordHookForm{}), repo.DiscordHooksEditPost) }) m.Route("/delete", "GET,POST", org.SettingsDelete) @@ -457,10 +459,12 @@ func runWeb(ctx *cli.Context) error { m.Get("/:type/new", repo.WebhooksNew) m.Post("/gogs/new", bindIgnErr(auth.NewWebhookForm{}), repo.WebHooksNewPost) m.Post("/slack/new", bindIgnErr(auth.NewSlackHookForm{}), repo.SlackHooksNewPost) + m.Post("/discord/new", bindIgnErr(auth.NewDiscordHookForm{}), repo.DiscordHooksNewPost) m.Get("/:id", repo.WebHooksEdit) m.Post("/:id/test", repo.TestWebhook) m.Post("/gogs/:id", bindIgnErr(auth.NewWebhookForm{}), repo.WebHooksEditPost) m.Post("/slack/:id", bindIgnErr(auth.NewSlackHookForm{}), repo.SlackHooksEditPost) + m.Post("/discord/:id", bindIgnErr(auth.NewDiscordHookForm{}), repo.DiscordHooksEditPost) m.Group("/git", func() { m.Get("", repo.SettingsGitHooks) diff --git a/conf/locale/locale_en-US.ini b/conf/locale/locale_en-US.ini index 59b6abd8..6c86d70c 100644 --- a/conf/locale/locale_en-US.ini +++ b/conf/locale/locale_en-US.ini @@ -761,6 +761,7 @@ settings.delete_webhook = Delete Webhook settings.recent_deliveries = Recent Deliveries settings.hook_type = Hook Type settings.add_slack_hook_desc = Add Slack integration to your repository. +settings.add_discord_hook_desc = Add Discord integration to your repository. settings.slack_token = Token settings.slack_domain = Domain settings.slack_channel = Channel diff --git a/gogs.go b/gogs.go index 701e06a5..8b18d3a2 100644 --- a/gogs.go +++ b/gogs.go @@ -16,7 +16,7 @@ import ( "github.com/gogits/gogs/modules/setting" ) -const APP_VER = "0.9.156.0217" +const APP_VER = "0.9.157.0218" func init() { setting.AppVer = APP_VER diff --git a/models/action.go b/models/action.go index e4c73f3a..a88968d3 100644 --- a/models/action.go +++ b/models/action.go @@ -505,26 +505,30 @@ func CommitRepoAction(opts CommitRepoActionOptions) error { apiRepo := repo.APIFormat(nil) switch opType { case ACTION_COMMIT_REPO: // Push + compareURL := setting.AppUrl + opts.Commits.CompareURL + if isNewBranch { + compareURL = "" + if err = PrepareWebhooks(repo, HOOK_EVENT_CREATE, &api.CreatePayload{ + Ref: refName, + RefType: "branch", + Repo: apiRepo, + Sender: apiPusher, + }); err != nil { + return fmt.Errorf("PrepareWebhooks (new branch): %v", err) + } + } + if err = PrepareWebhooks(repo, HOOK_EVENT_PUSH, &api.PushPayload{ Ref: opts.RefFullName, Before: opts.OldCommitID, After: opts.NewCommitID, - CompareURL: setting.AppUrl + opts.Commits.CompareURL, + CompareURL: compareURL, Commits: opts.Commits.ToApiPayloadCommits(repo.HTMLURL()), Repo: apiRepo, Pusher: apiPusher, Sender: apiPusher, }); err != nil { - return fmt.Errorf("PrepareWebhooks: %v", err) - } - - if isNewBranch { - return PrepareWebhooks(repo, HOOK_EVENT_CREATE, &api.CreatePayload{ - Ref: refName, - RefType: "branch", - Repo: apiRepo, - Sender: apiPusher, - }) + return fmt.Errorf("PrepareWebhooks (new commit): %v", err) } case ACTION_PUSH_TAG: // Create diff --git a/models/webhook.go b/models/webhook.go index c8e0559e..c68c82bd 100644 --- a/models/webhook.go +++ b/models/webhook.go @@ -292,6 +292,7 @@ type HookTaskType int const ( GOGS HookTaskType = iota + 1 SLACK + DISCORD ) var hookTaskTypes = map[string]HookTaskType{ @@ -458,6 +459,10 @@ func PrepareWebhooks(repo *Repository, event HookEventType, p api.Payloader) err var payloader api.Payloader for _, w := range ws { + if !w.IsActive { + continue + } + switch event { case HOOK_EVENT_CREATE: if !w.HasCreateEvent() { @@ -476,12 +481,15 @@ func PrepareWebhooks(repo *Repository, event HookEventType, p api.Payloader) err // Use separate objects so modifcations won't be made on payload on non-Gogs type hooks. switch w.HookTaskType { case SLACK: - // FIXME: dirty fix for buggy support of Discord for Slack-type webhook. - // Should remove this if we want to support Discord fully as its own. - payloader, err = GetSlackPayload(strings.Contains(w.URL, ".discordapp.com/"), p, event, w.Meta) + payloader, err = GetSlackPayload(p, event, w.Meta) if err != nil { return fmt.Errorf("GetSlackPayload: %v", err) } + case DISCORD: + payloader, err = GetDiscordPayload(p, event, w.Meta) + if err != nil { + return fmt.Errorf("GetDiscordPayload: %v", err) + } default: p.SetSecret(w.Secret) payloader = p diff --git a/models/webhook_discord.go b/models/webhook_discord.go new file mode 100644 index 00000000..097c6f89 --- /dev/null +++ b/models/webhook_discord.go @@ -0,0 +1,213 @@ +// Copyright 2017 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 models + +import ( + "encoding/json" + "fmt" + "strings" + + "github.com/gogits/git-module" + api "github.com/gogits/go-gogs-client" +) + +type DiscordEmbedFooterObject struct { + Text string `json:"text"` +} + +type DiscordEmbedAuthorObject struct { + Name string `json:"name"` + URL string `json:"url"` + IconURL string `json:"icon_url"` +} + +type DiscordEmbedFieldObject struct { + Name string `json:"name"` + Value string `json:"value"` +} + +type DiscordEmbedObject struct { + Title string `json:"title"` + Description string `json:"description"` + URL string `json:"url"` + Footer *DiscordEmbedFooterObject `json:"footer"` + Author *DiscordEmbedAuthorObject `json:"author"` + Fields []*DiscordEmbedFieldObject `json:"fields"` +} + +type DiscordPayload struct { + Content string `json:"content"` + Username string `json:"username"` + AvatarURL string `json:"avatar_url"` + Embeds []*DiscordEmbedObject `json:"embeds"` +} + +func (p *DiscordPayload) SetSecret(_ string) {} + +func (p *DiscordPayload) JSONPayload() ([]byte, error) { + data, err := json.MarshalIndent(p, "", " ") + if err != nil { + return []byte{}, err + } + return data, nil +} + +func DiscordLinkFormatter(url string, text string) string { + return fmt.Sprintf("[%s](%s)", text, url) +} + +func DiscordSHALinkFormatter(url string, text string) string { + return fmt.Sprintf("[`%s`](%s)", text, url) +} + +func getDiscordCreatePayload(p *api.CreatePayload, slack *SlackMeta) (*DiscordPayload, error) { + // Created tag/branch + refName := git.RefEndName(p.Ref) + + repoLink := DiscordLinkFormatter(p.Repo.HTMLURL, p.Repo.Name) + refLink := DiscordLinkFormatter(p.Repo.HTMLURL+"/src/"+refName, refName) + content := fmt.Sprintf("Created new %s: %s/%s", p.RefType, repoLink, refLink) + + return &DiscordPayload{ + Username: slack.Username, + AvatarURL: slack.IconURL, + Embeds: []*DiscordEmbedObject{{ + Description: content, + Author: &DiscordEmbedAuthorObject{ + Name: p.Sender.UserName, + IconURL: p.Sender.AvatarUrl, + }, + }}, + }, nil +} + +func getDiscordPushPayload(p *api.PushPayload, slack *SlackMeta) (*DiscordPayload, error) { + // n new commits + var ( + branchName = git.RefEndName(p.Ref) + commitDesc string + commitString string + ) + + if len(p.Commits) == 1 { + commitDesc = "1 new commit" + } else { + commitDesc = fmt.Sprintf("%d new commits", len(p.Commits)) + } + + if len(p.CompareURL) > 0 { + commitString = DiscordLinkFormatter(p.CompareURL, commitDesc) + } else { + commitString = commitDesc + } + + repoLink := DiscordLinkFormatter(p.Repo.HTMLURL, p.Repo.Name) + branchLink := DiscordLinkFormatter(p.Repo.HTMLURL+"/src/"+branchName, branchName) + content := fmt.Sprintf("Pushed %s to %s/%s:\n", commitString, repoLink, branchLink) + + // for each commit, generate attachment text + for i, commit := range p.Commits { + content += fmt.Sprintf("%s %s - %s", DiscordSHALinkFormatter(commit.URL, commit.ID[:7]), SlackShortTextFormatter(commit.Message), commit.Author.Name) + // add linebreak to each commit but the last + if i < len(p.Commits)-1 { + content += "\n" + } + } + + return &DiscordPayload{ + Username: slack.Username, + AvatarURL: slack.IconURL, + Embeds: []*DiscordEmbedObject{{ + Description: content, + Author: &DiscordEmbedAuthorObject{ + Name: p.Sender.UserName, + IconURL: p.Sender.AvatarUrl, + }, + }}, + }, nil +} + +func getDiscordPullRequestPayload(p *api.PullRequestPayload, slack *SlackMeta) (*DiscordPayload, error) { + title := fmt.Sprintf("#%d %s", p.Index, p.PullRequest.Title) + url := fmt.Sprintf("%s/pulls/%d", p.Repository.HTMLURL, p.Index) + content := "" + fields := make([]*DiscordEmbedFieldObject, 0, 1) + switch p.Action { + case api.HOOK_ISSUE_OPENED: + title = "New pull request: " + title + content = p.PullRequest.Body + case api.HOOK_ISSUE_CLOSED: + if p.PullRequest.HasMerged { + title = "Pull request merged: " + title + } else { + title = "Pull request closed: " + title + } + case api.HOOK_ISSUE_REOPENED: + title = "Pull request re-opened: " + title + case api.HOOK_ISSUE_EDITED: + title = "Pull request edited: " + title + content = p.PullRequest.Body + case api.HOOK_ISSUE_ASSIGNED: + title = "Pull request assigned: " + title + fields = []*DiscordEmbedFieldObject{{ + Name: "New Assignee", + Value: p.PullRequest.Assignee.UserName, + }} + case api.HOOK_ISSUE_UNASSIGNED: + title = "Pull request unassigned: " + title + case api.HOOK_ISSUE_LABEL_UPDATED: + title = "Pull request labels updated: " + title + labels := make([]string, len(p.PullRequest.Labels)) + for i := range p.PullRequest.Labels { + labels[i] = p.PullRequest.Labels[i].Name + } + fields = []*DiscordEmbedFieldObject{{ + Name: "Labels", + Value: strings.Join(labels, ", "), + }} + case api.HOOK_ISSUE_LABEL_CLEARED: + title = "Pull request labels cleared: " + title + case api.HOOK_ISSUE_SYNCHRONIZED: + title = "Pull request synchronized: " + title + } + + return &DiscordPayload{ + Username: slack.Username, + AvatarURL: slack.IconURL, + Embeds: []*DiscordEmbedObject{{ + Title: title, + Description: content, + URL: url, + Footer: &DiscordEmbedFooterObject{ + Text: p.Repository.FullName, + }, + Author: &DiscordEmbedAuthorObject{ + Name: p.Sender.UserName, + IconURL: p.Sender.AvatarUrl, + }, + Fields: fields, + }}, + }, nil +} + +func GetDiscordPayload(p api.Payloader, event HookEventType, meta string) (*DiscordPayload, error) { + d := new(DiscordPayload) + + slack := &SlackMeta{} + if err := json.Unmarshal([]byte(meta), &slack); err != nil { + return d, fmt.Errorf("GetDiscordPayload meta json: %v", err) + } + + switch event { + case HOOK_EVENT_CREATE: + return getDiscordCreatePayload(p.(*api.CreatePayload), slack) + case HOOK_EVENT_PUSH: + return getDiscordPushPayload(p.(*api.PushPayload), slack) + case HOOK_EVENT_PULL_REQUEST: + return getDiscordPullRequestPayload(p.(*api.PullRequestPayload), slack) + } + + return d, nil +} diff --git a/models/webhook_slack.go b/models/webhook_slack.go index 6e4b9408..213421a5 100644 --- a/models/webhook_slack.go +++ b/models/webhook_slack.go @@ -6,7 +6,6 @@ package models import ( "encoding/json" - "errors" "fmt" "strings" @@ -23,16 +22,6 @@ type SlackMeta struct { Color string `json:"color"` } -type SlackPayload struct { - Channel string `json:"channel"` - Text string `json:"text"` - Username string `json:"username"` - IconURL string `json:"icon_url"` - UnfurlLinks int `json:"unfurl_links"` - LinkNames int `json:"link_names"` - Attachments []SlackAttachment `json:"attachments"` -} - type SlackAttachment struct { Fallback string `json:"fallback"` Color string `json:"color"` @@ -40,6 +29,16 @@ type SlackAttachment struct { Text string `json:"text"` } +type SlackPayload struct { + Channel string `json:"channel"` + Text string `json:"text"` + Username string `json:"username"` + IconURL string `json:"icon_url"` + UnfurlLinks int `json:"unfurl_links"` + LinkNames int `json:"link_names"` + Attachments []*SlackAttachment `json:"attachments"` +} + func (p *SlackPayload) SetSecret(_ string) {} func (p *SlackPayload) JSONPayload() ([]byte, error) { @@ -72,21 +71,13 @@ func SlackLinkFormatter(url string, text string) string { return fmt.Sprintf("<%s|%s>", url, SlackTextFormatter(text)) } -func replaceBadCharsForDiscord(in string) string { - return strings.NewReplacer("[", "", "]", ":", ":", "/").Replace(in) -} - -func getSlackCreatePayload(isDiscord bool, p *api.CreatePayload, slack *SlackMeta) (*SlackPayload, error) { +func getSlackCreatePayload(p *api.CreatePayload, slack *SlackMeta) (*SlackPayload, error) { // Created tag/branch refName := git.RefEndName(p.Ref) repoLink := SlackLinkFormatter(p.Repo.HTMLURL, p.Repo.Name) refLink := SlackLinkFormatter(p.Repo.HTMLURL+"/src/"+refName, refName) - format := "[%s:%s] %s created by %s" - if isDiscord { - format = replaceBadCharsForDiscord(format) - } - text := fmt.Sprintf(format, repoLink, refLink, p.RefType, p.Sender.UserName) + text := fmt.Sprintf("[%s:%s] %s created by %s", repoLink, refLink, p.RefType, p.Sender.UserName) return &SlackPayload{ Channel: slack.Channel, @@ -96,7 +87,7 @@ func getSlackCreatePayload(isDiscord bool, p *api.CreatePayload, slack *SlackMet }, nil } -func getSlackPushPayload(isDiscord bool, p *api.PushPayload, slack *SlackMeta) (*SlackPayload, error) { +func getSlackPushPayload(p *api.PushPayload, slack *SlackMeta) (*SlackPayload, error) { // n new commits var ( branchName = git.RefEndName(p.Ref) @@ -117,11 +108,7 @@ func getSlackPushPayload(isDiscord bool, p *api.PushPayload, slack *SlackMeta) ( repoLink := SlackLinkFormatter(p.Repo.HTMLURL, p.Repo.Name) branchLink := SlackLinkFormatter(p.Repo.HTMLURL+"/src/"+branchName, branchName) - format := "[%s:%s] %s pushed by %s" - if isDiscord { - format = replaceBadCharsForDiscord(format) - } - text := fmt.Sprintf(format, repoLink, branchLink, commitString, p.Pusher.UserName) + text := fmt.Sprintf("[%s:%s] %s pushed by %s", repoLink, branchLink, commitString, p.Pusher.UserName) var attachmentText string // for each commit, generate attachment text @@ -138,14 +125,14 @@ func getSlackPushPayload(isDiscord bool, p *api.PushPayload, slack *SlackMeta) ( Text: text, Username: slack.Username, IconURL: slack.IconURL, - Attachments: []SlackAttachment{{ + Attachments: []*SlackAttachment{{ Color: slack.Color, Text: attachmentText, }}, }, nil } -func getSlackPullRequestPayload(isDiscord bool, p *api.PullRequestPayload, slack *SlackMeta) (*SlackPayload, error) { +func getSlackPullRequestPayload(p *api.PullRequestPayload, slack *SlackMeta) (*SlackPayload, error) { senderLink := SlackLinkFormatter(setting.AppUrl+p.Sender.UserName, p.Sender.UserName) titleLink := SlackLinkFormatter(fmt.Sprintf("%s/pulls/%d", p.Repository.HTMLURL, p.Index), fmt.Sprintf("#%d %s", p.Index, p.PullRequest.Title)) @@ -185,7 +172,7 @@ func getSlackPullRequestPayload(isDiscord bool, p *api.PullRequestPayload, slack Text: text, Username: slack.Username, IconURL: slack.IconURL, - Attachments: []SlackAttachment{{ + Attachments: []*SlackAttachment{{ Color: slack.Color, Title: title, Text: attachmentText, @@ -193,21 +180,21 @@ func getSlackPullRequestPayload(isDiscord bool, p *api.PullRequestPayload, slack }, nil } -func GetSlackPayload(isDiscord bool, p api.Payloader, event HookEventType, meta string) (*SlackPayload, error) { +func GetSlackPayload(p api.Payloader, event HookEventType, meta string) (*SlackPayload, error) { s := new(SlackPayload) slack := &SlackMeta{} if err := json.Unmarshal([]byte(meta), &slack); err != nil { - return s, errors.New("GetSlackPayload meta json:" + err.Error()) + return s, fmt.Errorf("GetSlackPayload meta json: %v", err) } switch event { case HOOK_EVENT_CREATE: - return getSlackCreatePayload(isDiscord, p.(*api.CreatePayload), slack) + return getSlackCreatePayload(p.(*api.CreatePayload), slack) case HOOK_EVENT_PUSH: - return getSlackPushPayload(isDiscord, p.(*api.PushPayload), slack) + return getSlackPushPayload(p.(*api.PushPayload), slack) case HOOK_EVENT_PULL_REQUEST: - return getSlackPullRequestPayload(isDiscord, p.(*api.PullRequestPayload), slack) + return getSlackPullRequestPayload(p.(*api.PullRequestPayload), slack) } return s, nil diff --git a/modules/auth/repo_form.go b/modules/auth/repo_form.go index 16e4ea4a..daec8a2a 100644 --- a/modules/auth/repo_form.go +++ b/modules/auth/repo_form.go @@ -173,6 +173,17 @@ func (f *NewSlackHookForm) Validate(ctx *macaron.Context, errs binding.Errors) b return validate(errs, ctx.Data, f, ctx.Locale) } +type NewDiscordHookForm struct { + PayloadURL string `binding:"Required;Url"` + Username string + IconURL string + WebhookForm +} + +func (f *NewDiscordHookForm) Validate(ctx *macaron.Context, errs binding.Errors) binding.Errors { + return validate(errs, ctx.Data, f, ctx.Locale) +} + // .___ // | | ______ ________ __ ____ // | |/ ___// ___/ | \_/ __ \ diff --git a/modules/bindata/bindata.go b/modules/bindata/bindata.go index b80a49bc..696fe7b0 100644 --- a/modules/bindata/bindata.go +++ b/modules/bindata/bindata.go @@ -4371,7 +4371,7 @@ func confLocaleLocale_deDeIni() (*asset, error) { return a, nil } -var _confLocaleLocale_enUsIni = []byte("\x1f\x8b\x08\x00\x00\x09\x6e\x88\x00\xff\xac\xbd\xeb\x6e\x1c\x39\xb2\x30\xf8\x3f\x9f\x82\xed\x03\xc1\xdd\x80\x5c\x46\xcf\x7c\xdf\xee\xa2\x61\xb9\x57\x2d\xb7\x2f\xe7\xc8\xb6\x8e\x24\xcf\xec\xac\x61\x64\xb3\x2a\x59\x55\x1c\x65\x91\x39\x49\xa6\xca\xd5\x83\x01\xf6\x01\xf6\x01\x76\x5f\xef\x3c\xc9\x87\xb8\xf0\x96\x99\x25\xdb\x33\xe7\x8f\x54\x49\x06\x83\xf7\x60\x44\x30\x18\x21\xbb\xae\x6e\x94\x5b\x89\x33\x71\x2e\x3a\xa9\x4d\xab\x9c\x13\x4e\xb5\xeb\x27\x5b\xeb\xbc\x6a\xc4\x2b\xed\x85\x53\xfd\xbd\x5e\xa9\xaa\xda\xda\x9d\x12\x67\xe2\xb5\xdd\xa9\xaa\x91\x6e\xbb\xb4\xb2\x6f\xc4\x99\x78\x11\x7e\x57\xea\x73\xd7\xda\x1e\x80\x7e\xa5\x5f\xd5\x56\xb5\x1d\x94\x51\x6d\x57\x39\xbd\x31\xb5\x36\xe2\x4c\xdc\xe8\x8d\x11\x6f\x0c\xa5\xd8\xc1\x87\xa4\xf7\x83\xa7\xb4\xa1\x0b\x49\x1f\xba\xaa\x57\x1b\xed\xbc\xea\xc5\x99\xb8\xe6\x9f\xd5\x5e\x2d\x9d\xf6\x50\xd3\x9f\xe9\x57\x75\xaf\x7a\xa7\x2d\x60\xff\x13\xfd\xaa\x3a\xb9\x01\x80\x2b\xb9\x51\x95\x57\xbb\xae\x95\x58\xe0\x96\x7f\x56\xad\x34\x9b\x81\x60\x2e\xf9\x67\xb5\xea\x95\xf4\xaa\x36\x6a\x2f\xce\xc4\x05\x7e\x2c\x16\x8b\x6a\x70\xaa\xaf\xbb\xde\xae\x75\xab\x6a\x69\x9a\x7a\x47\xdd\xfc\xe0\x54\x2f\x38\x5d\x48\xd3\x08\x48\xc7\x2e\xa8\xa6\xd6\xa6\x96\x8e\xfb\xa1\x1a\xa1\x8d\x90\xae\x42\x54\x46\xee\x42\x69\xf8\x59\xa9\x9d\xd4\x2d\x8c\x1a\xfc\xaf\x3a\xe9\xdc\xde\xe2\xd0\x5e\xf1\xcf\xaa\x57\xb5\x3f\x74\x0a\x87\xe0\xc9\xed\xa1\x53\xd5\x4a\x76\x7e\xb5\x95\xd0\x4c\xfa\x55\x55\xbd\xea\xac\xd3\xde\xf6\x07\x84\x0b\x1f\x95\xed\x37\xd2\xe8\xdf\xa5\xa7\xf1\x79\x9f\x7d\x56\x3b\xdd\xf7\x16\x86\xf6\x2d\xfe\xa8\x8c\xda\xd7\x80\x47\x9c\x89\x77\x6a\x9f\x63\x81\x9c\x9d\xde\xf4\x34\x8a\x90\xf9\x16\xbf\x00\x0b\xe5\x31\x26\xca\x8a\xd8\xd6\xb6\xbf\xe3\xd4\x97\xf0\x73\x84\xd2\xf6\x1b\xce\x2d\xdb\x25\x8d\xdc\x28\xce\x7d\x8b\x1f\x05\x80\xab\x64\xb3\xd3\xa6\xee\xa4\x51\x30\x74\xe7\xf0\x25\xae\xe0\xab\x92\xab\x95\x1d\x8c\xaf\x9d\xf2\x5e\x9b\x0d\xcc\xc1\x39\x25\x89\x1b\x4e\xaa\xb2\xbc\x98\x76\xb0\x43\x9c\x65\x71\x26\xfe\x62\x87\x5e\x5c\xd1\x27\xe5\x65\x85\x30\x33\x96\xac\xe4\xca\xeb\x7b\xed\xb5\xa2\xca\xc2\x47\xd5\x0d\x6d\x5b\xf7\xea\x6f\x83\x72\x1e\xb2\xae\x86\xb6\x15\xd7\xfc\x5d\x69\xe7\x06\x2c\xf1\x06\x7f\x54\xd5\x4a\x9a\x15\x76\xe7\x02\x7f\x54\xd5\x47\x6d\x9c\x97\x6d\xfb\xa9\xe2\x1f\x00\x4c\xbf\x68\x9c\xbc\xf6\xd8\x58\x4e\x14\x37\x5e\x75\x0e\x06\x5a\xbc\xd4\xbd\xf3\x4f\xbc\xde\x29\x71\x3d\x98\xaa\xb1\xab\x3b\xd5\xd7\xb0\x21\x71\x2b\xbd\x59\x8b\x83\x1d\x1e\xf7\x4a\xf4\x83\x31\xda\x6c\xc4\x2b\xbb\x71\x42\x1b\xa7\x1b\x25\x5e\x20\xf4\xa9\xe8\x5a\x25\x9d\x12\xbd\x92\x8d\x78\x26\x85\x97\xfd\x46\xf9\xb3\x47\xf5\xb2\x95\xe6\xee\x91\xd8\xf6\x6a\x7d\xf6\xe8\xc4\x3d\x7a\xfe\x6a\xd0\x8d\x6a\xb5\x51\xee\xd9\x53\xf9\x5c\xac\x64\xaf\xd6\x43\xdb\x1e\xc4\x52\xad\x61\xaf\x1c\xec\x20\x56\x5b\x69\x36\xb0\x4f\x0e\x7e\x0b\x15\x6a\x23\xfc\x56\x3b\x01\x1b\xf5\xbb\x0a\x46\x49\x7b\x55\x37\xcb\x40\x94\xb0\x41\x98\xdc\x2b\x27\xde\x1e\x6e\xfe\xf3\xf2\x54\x5c\x59\xe7\x37\xbd\xc2\xdf\x37\xff\x79\xa9\xbd\xfa\xa3\xb0\xbd\xb8\xd5\x2f\x7e\x59\x54\xcd\xb2\x0e\x03\xf2\x42\x7a\xb9\x84\xb6\xc7\x49\x82\x4c\xda\x43\x31\x0f\x77\x12\xd0\x3a\xa4\x6b\xce\xe3\xee\xe4\x9d\x39\xbb\x0f\x9b\x65\xcd\x9b\x37\xe2\x78\x07\x3b\xb8\x59\xa6\x91\xbd\xa2\x31\x1b\x9c\x12\x6f\xde\xbd\x7b\xff\xe2\x17\xa1\xcc\x46\x1b\x25\xf6\xda\x6f\xc5\xe0\xd7\xff\x47\xbd\x51\x46\xf5\xb2\xad\x57\x1a\x06\xa5\x77\xca\x8b\xb5\xed\xa9\x8b\x8b\xca\xb9\xb6\xde\xd9\x06\x6a\xb9\xb9\xb9\x14\x6f\x6d\xa3\xaa\x4e\xfa\x2d\x36\xc4\x6f\x2b\xf7\xb7\x16\x06\x2a\x56\x78\xbb\x55\x02\xd7\x2c\x02\xd9\xf5\x78\x5c\x44\xc3\x6d\x5d\x88\x67\xcb\xfe\x79\xd6\x3e\xb9\x74\xb6\x1d\x3c\x97\xdc\x6f\x95\xc1\x89\x72\x5e\xf6\x5e\x48\x17\x68\xff\xa2\x52\x7d\x5f\xab\x5d\xe7\x0f\x30\x3d\xdc\x96\x63\xb5\x10\xb2\x95\x34\xc6\x7a\xb1\x54\x02\xcb\x11\x0a\x6d\xee\x65\xab\x9b\xda\xeb\x34\x90\x65\x59\x4c\x6c\xac\x72\x02\x4a\xcb\xb6\xb5\x7b\x1c\x22\xb9\xf2\xaa\x77\xe2\xd1\xe2\x11\xd2\xd9\x47\x4f\x1e\x2d\x2a\x63\x6b\x22\x02\x40\x91\x1b\xed\xe4\xb2\x55\x35\x9d\x16\x7d\x20\x76\x7f\x81\x75\x47\x4d\x61\x08\x51\x40\xc0\x9c\xc0\x09\x84\x84\x1f\x16\xa5\x34\x02\x91\x0a\xa6\x22\x79\xdf\x03\xc9\x89\xeb\x82\xa8\x4e\x4c\x98\xf4\xb9\x0a\x13\x1d\x56\xe5\x79\xd7\xb5\x7a\x45\x55\xbf\xa2\xbc\xb4\x40\xe1\x3c\xe6\x41\xc9\xe1\x70\x81\x85\xbc\x6c\x99\x0d\x1e\x26\xab\x17\x05\x79\xc7\xf2\x5b\xd5\x2b\xb1\x1d\x36\x74\x26\xb5\x76\x68\xbe\xc3\xc3\x21\xcc\x5c\x22\xc1\xe2\xda\x5a\x4f\xab\x2a\x02\xa4\x2a\xce\xdb\x16\x59\x80\x5e\xed\xac\x87\x81\xe3\x62\x40\xe6\xf6\xba\x6d\xa1\xa7\x4e\xde\xab\x46\x78\x4b\x5b\xb9\xd1\xbd\x5a\x01\xe2\x45\xd5\x0f\xa6\xe6\xed\x74\x3d\x18\xda\x52\x21\xad\x5c\xbb\x08\xb5\x1b\x9c\x17\x5b\x79\xaf\x60\xe0\x81\x0f\xf1\x76\xb6\x9d\xd8\xa5\x7e\x30\x48\x1d\x16\x55\x63\x77\x12\x79\x8a\x17\xf8\x83\xbf\x73\xfc\xda\x09\xb9\x5e\xab\x95\x77\xe2\xe6\xe6\xb5\x58\xb5\xd6\x28\xf1\xe1\xfa\xd2\xc1\x46\xdb\xd6\x9d\xed\x91\xff\xb8\x79\x2d\xae\x6c\xef\x63\x5a\x36\xd0\x00\x61\x86\xdd\x52\xf5\x62\xbf\xd5\xab\x2d\x0d\x3b\x94\x80\xfd\xa1\x7a\xa1\x9d\x18\x9c\x36\x9b\x53\xd1\x2a\xe8\x81\xf6\xb4\x00\xa0\x0f\x61\xd5\x01\xf8\x5a\x49\x3f\xf4\x6a\x51\x6d\xbd\xef\x42\xcd\xaf\x6f\x6f\xaf\xa8\xea\x98\xfa\x50\xdd\x32\x5b\x19\x38\x07\x2d\x70\x44\x46\x58\xb3\xc0\x45\x32\xf4\xed\x68\xfd\x7c\xb8\xbe\x0c\x39\x47\xc6\x05\x9a\xf0\x14\xfe\xdc\xa4\xe1\xc1\x71\x76\x76\xa7\xf6\xb8\x9a\xb4\x11\xc8\xa5\x2c\xaa\xd6\x6e\xea\xde\x5a\x1f\x16\xd3\xa5\xdd\xd0\x02\x2a\x32\x52\x4d\x2f\xc2\x92\x80\xd1\xd8\xf7\xc0\xb5\xb5\x76\x83\x04\x0b\x26\x79\x51\x55\xb6\x83\x76\x66\xbb\xe4\x3d\x27\xa4\xad\x81\x75\xc7\x7c\xe4\x93\xc4\x0d\x11\xa7\xec\x4c\xdf\xf9\xae\x66\x6a\x7e\xf3\xf6\xf6\x8a\x48\x3a\xa6\xae\x7b\xbb\x13\x67\xe2\x65\x6f\x77\x29\x21\xb5\xf1\x2d\xe0\x43\x18\xd9\x34\xbd\x72\xee\x54\x5c\xbf\xbc\x10\xff\xf3\x8f\x7f\xf8\xc3\x42\xbc\xf1\xb0\xb1\x61\xad\xff\x15\xd6\xa8\xe4\x91\x48\xa0\xb6\x17\x7e\xab\xc4\x23\xd8\xa8\x8f\xc4\x33\xcc\xfd\x3f\xd5\x67\xb9\xeb\x5a\xb5\x58\xd9\xdd\x73\x20\xee\x3b\xe9\x17\x15\xe4\xa8\x3e\x6c\x8b\x1b\x65\x1a\xd5\x33\xd7\xc7\x59\x19\x71\xe1\xec\x8c\x07\x24\xe6\xb7\x5e\x59\xb3\xd6\x3d\xf4\xe7\x57\x83\x6b\x2b\xb0\xc5\xe2\x82\x72\x02\x0b\xa5\xdb\xda\x58\xaf\xd7\x87\x04\x8a\x3d\x7d\x07\x89\xbc\x3c\x2a\x5a\xc3\x35\x93\xfa\x38\xc6\x37\xb4\xb4\x61\x15\xbc\xf7\x5b\xd5\x87\xe1\x76\x69\xbc\xed\x7a\x0d\x27\x7e\x38\xab\xb8\x86\xf7\x94\x4a\xc7\x56\x0e\x52\x77\xb6\x43\xc6\xfe\x05\x6f\x89\x8b\x17\xef\x84\xba\x57\x06\x16\x57\xd7\xdb\x66\x58\xe1\x7a\x05\xd8\x53\x20\xfd\xa2\x57\xce\x0e\xfd\x4a\xf1\x62\x89\x24\x07\x9a\x06\x74\x6d\x25\xdb\xf6\xb0\xa8\x02\xe9\xdf\xf4\xf2\x5e\x7a\xd9\x67\x55\xbc\x0a\x49\xdc\xfa\x09\xec\xa4\x51\xb1\x04\xf4\x7c\x35\x38\x6f\x77\x82\x5a\xe1\xa8\x51\x94\xed\x84\xec\x95\x18\xba\xd6\xca\x46\x35\x62\x79\x40\x2a\xe6\x60\x2d\x34\x6a\x2d\x87\xd6\x2f\xaa\xb5\x6a\x14\xb0\xcb\x4d\xcd\x75\xb5\xd6\xde\x61\x65\x3c\x54\x2f\x03\x80\x38\x67\xa4\x97\x08\x71\xac\x64\x6c\x2c\x97\x8f\x60\xb1\x51\x5c\x83\xb7\x78\xbc\xa7\x7c\xdb\x29\xc3\xdd\x08\x87\xba\x80\xf3\xb6\x11\xd6\x88\x56\x2f\xb9\xd3\x69\x2c\x47\xc7\x68\x18\x9d\x1b\x10\x0e\xf3\xbc\xd9\x02\x93\x41\xc5\x05\xef\xc6\x65\x4f\x85\x35\xed\x81\x8f\x5b\xd8\x62\x24\x7d\x85\x93\xd7\x2d\x2a\x85\xfd\xac\x93\xac\xc3\x1d\x0f\x22\x4f\x99\x1f\xab\xbd\x26\x9e\x51\x20\xb3\x01\x18\x03\x02\x60\xb2\xe6\xdb\xb2\xa8\x98\xd1\xac\x59\x4c\xad\xef\x35\x0a\x81\x71\x8b\x11\x4a\x16\x5d\x61\x84\xff\x04\x00\x20\x5d\xba\xd9\xb2\xb1\x35\xef\xa1\x93\x2e\x0a\x81\xb4\x4e\xa0\xbb\x58\x03\x30\xbf\xee\x54\xdc\x6b\x3c\xe8\x78\x91\xe3\xb8\x2c\x81\x3f\x6b\x15\x54\xe5\x94\x42\x0c\x42\x9b\xa7\x43\x47\x65\x16\x2c\x01\xb1\x50\x12\x98\x66\x60\x78\x1a\x8b\xdc\x13\x9e\xa6\xde\xc6\x61\x1d\x71\x36\xa2\xd7\x9b\xad\x17\xc6\xee\x4f\x69\x50\xf6\x5b\xab\x60\xcf\xbf\x79\x71\xf6\x23\xb5\x63\x03\x67\x6b\x2c\x04\xa7\xb2\x1c\xbc\x05\xfa\xc2\x5b\x8f\x9a\x10\xb9\x1b\x84\x9c\xc8\x5a\x04\x34\x16\x7a\x27\xcc\x54\x24\x74\x4c\xdf\xf2\x3c\x26\x6c\x09\x86\x4a\x07\xc1\x99\x2a\x26\x42\xca\x82\x52\xbd\xb1\x28\xa8\x05\xc1\x08\xd8\x85\xca\x2b\xe7\xeb\x8d\xf6\xf5\x1a\xa8\x2d\x20\x7e\x09\x08\x80\x7b\x51\xce\x8b\xc7\x1b\xed\x1f\x8b\x95\xdd\xed\xa4\x69\x7e\x12\x27\xf7\xcc\x6a\xff\x11\xc8\x28\x6c\x45\xdd\xe2\x8c\xb0\xf8\xd7\x2b\xe2\xa4\x83\xea\x21\xb2\xad\x6e\xe8\xf0\x70\x67\x0e\x39\x8a\x51\x8d\xdd\x1b\x20\x18\x78\x5c\xd8\xf5\x5a\xaf\xb4\x6c\xc5\x52\x1b\xd9\x1f\x22\x16\x3c\x86\x4e\xdc\xa9\x78\xf7\xfe\x16\x01\x37\x76\x39\xe8\xb6\x09\x00\x8b\x2a\x70\xd1\xcd\x32\x4c\x7e\x2e\x8f\x84\x24\x4d\x6d\x59\xd9\x1e\xce\x5f\xec\x4d\x28\x78\x84\x17\x84\xc3\x9b\x98\x77\x0d\x82\x20\xc2\x62\xb9\xc8\xb6\xc1\x30\xec\xa4\x5f\x6d\x99\xa9\xc3\x65\xa3\x9d\x79\xec\xb1\xa5\xab\xa1\xef\x95\xf1\x98\xfc\x93\x38\x71\xe2\xc9\x73\x71\xe2\x62\xb5\xf9\x49\x8c\xe7\x33\x1c\xc7\x62\xad\x55\xdb\x84\xd6\xa6\x3a\x81\xaf\xa4\x93\x6e\x33\x9d\x2d\xc8\x14\x94\x39\xd0\xfe\x2d\xfa\x57\x6c\x8c\xb8\x3c\xc2\xb2\xcf\x06\x28\xef\x64\x58\x37\x6e\xa0\x95\x7e\x26\xfe\xac\xda\x95\xdd\xa9\xef\xc4\x9f\x15\xc8\xc9\x9b\x16\x67\x4e\x7a\x16\x66\xad\x53\xb8\xaa\x4e\x69\xa3\xad\x07\x83\x67\x86\x97\x77\x0a\xe5\xdf\x34\x51\x73\x2c\xd3\xd1\xc1\xae\x3e\x6e\xed\x4e\x7d\xaa\x06\x62\xf7\x6d\xdb\x44\x91\x14\xb7\x90\xed\x89\xff\x88\xf2\x69\x82\x89\xbb\xc3\xed\xb5\x5f\x6d\xeb\xa8\xa5\x83\x81\xf4\xea\x33\x32\x46\x98\x95\x94\x76\xb0\xb5\x20\xab\xda\x1d\x70\x5d\x40\xc7\xdf\x1e\xd2\xb2\xd0\xca\x55\x6e\x6b\xf7\xa8\xf2\x8a\x10\x37\x5b\xbb\x47\x65\x57\x21\x14\x2c\x16\x8b\x6a\x65\xdb\x56\x2e\x2d\xcc\xca\x7d\x82\xbf\xc8\x53\x4b\xe4\xbb\x43\x6d\xfb\x0d\x57\x5b\xaa\x78\x76\x07\xd6\x2a\x71\x2e\x69\x95\x5c\x85\xe4\x95\xd5\x91\x48\x85\x4f\x5c\xc5\xca\x94\x85\x36\x35\xea\x6a\x42\xcd\x6f\x0c\xb1\xeb\x79\x3b\xab\xea\x23\xab\x2a\x3f\x55\x01\xae\x68\x13\xd1\x68\x1a\x74\x57\xe8\xcf\xdc\x48\x81\xe6\x2a\xa7\x64\x8f\x1b\xe2\x06\x7f\x54\xd5\x47\x39\xf8\xed\xa7\x4c\x95\x58\x87\x95\x17\x54\x8a\xa8\xee\x62\x32\x99\xd8\xba\xad\xea\x80\x03\xdc\x39\x5c\xb2\x6d\xaf\x64\x73\x60\x89\x28\x2e\xde\x9f\xe9\x00\xd2\x06\xc8\xf6\x77\x95\xb3\x40\x41\xea\x6f\x44\xf1\x8b\x36\x0d\x95\x2f\x0f\x6f\xd2\x71\xee\x3a\x5c\x26\xb6\xef\x0f\xa7\xa5\xac\xbc\x95\x4e\x2c\x95\x32\x41\xa6\x69\x16\x41\xd7\x01\xcb\x4b\xae\x88\x08\xa0\x5e\x16\x77\x20\x95\xb4\x13\xae\x02\x5a\x48\x74\x9b\x6b\x89\xfc\x2b\x72\xa7\x39\x13\x3b\x53\x67\xd5\xab\x9d\x02\x81\xa8\xde\x91\x3e\x94\xbe\xc4\x5b\x55\xad\x6d\xbf\xc1\x5d\x46\xdb\xe0\x4c\xbc\xc4\x84\xb4\x2f\x00\x40\xf9\xfc\x60\x61\x88\x90\xf2\x73\xd0\x3f\xd7\xc6\xee\x51\x2f\x09\xcc\xd5\x78\xf8\x87\x0e\x86\x6f\x11\x0e\x2a\xe2\x79\x90\xdd\x76\xca\xf8\x34\x88\xe7\xc2\xa8\xbd\xc8\xa1\x58\x74\x88\xbd\x02\x78\x20\x68\xcf\x96\xcf\x4f\xdc\xb3\xa7\xcb\xe7\xf1\xac\x58\x6d\xd5\xea\x8e\x96\xae\x36\x4b\xfb\x19\x35\x15\xa8\x31\x53\xc2\xc0\x56\x3e\x69\xc4\xd6\x0e\x3d\x0a\xca\x2b\x0b\xb2\x86\x57\x98\x5b\xcc\x59\xd7\x5b\xa0\x66\x0b\xd2\x50\x2a\xda\x1b\x69\x3d\xa2\xaa\x12\x56\x24\x1e\x68\x61\x49\x76\xbd\xdd\xea\xa5\xf6\x40\xb8\x50\xb8\xbe\xc4\xff\x57\x9c\xac\x9a\x11\x44\xc6\x7b\xf4\x91\xcc\x6a\x27\xba\x58\x00\x1a\x89\xa0\xa9\x7f\xbc\x64\xd2\x72\x81\x99\xc5\xf1\x6b\xf5\x4e\xfb\xc9\x52\x04\xa2\x2b\x79\x49\xb3\x46\x35\xcc\x0d\xf6\x21\x8d\x6e\xaf\x56\xca\xf8\xf6\x10\x97\xe7\x5e\x6a\x2f\xfe\x28\x76\xda\x0c\x1e\x84\xce\xad\x32\xc2\xf7\x07\x21\x81\xbf\x59\x54\x5b\xe9\xea\xc1\xf0\x34\xa9\x26\x2c\xce\xd7\x1a\x8f\x61\xa8\x37\x6c\xa1\x0c\xaa\x14\x02\xc5\xf7\x71\x06\x7f\x58\xb0\x6e\x15\x4b\xc1\xd1\x08\xed\xd1\x20\xb1\xc8\xb9\xb5\x60\x7b\x61\x14\x8d\x10\xf6\x1f\xc0\x60\xd9\x58\xa3\xd2\x60\xb5\x7a\x75\x07\xac\x3a\xcc\xef\x72\xf0\xde\x82\x3c\xda\xc2\x1a\xa4\x32\xa1\xcd\x17\x08\x88\x12\x7b\xc2\x77\xa0\x69\x29\x47\xa9\xc2\x62\x00\xe1\xe7\x0b\x7f\xdf\xab\x1f\x52\xf1\xb8\x65\xb0\x04\xa3\xa0\xd2\xd9\x6e\xba\xc6\x4c\x52\x9c\x87\x3d\x17\x0e\xc1\x15\x6b\x34\xe3\x6c\xf6\xe5\x68\x60\x3e\x6c\x0c\xf5\xb9\xd3\x3d\x48\x26\x7d\x62\x09\x16\xa3\xba\x92\xe8\x3e\xed\xb1\x2f\x5b\x9c\xce\x49\x6f\x6d\xed\xb6\xa4\x75\x09\xcd\x13\xad\x32\x9b\x42\x5d\x89\x97\x60\xb8\x44\xfe\xb7\x45\x65\xac\xa9\x51\xce\xcc\xf6\xcc\x3b\x6b\x9e\x60\x5a\x14\x54\x42\x69\x56\x70\x87\x0a\x01\x4d\x6f\x87\xcd\x96\x75\x55\xd5\x47\x18\xb5\x4f\x15\x4f\x85\xca\x70\xf2\x42\x0d\x39\x61\xca\x68\x3b\x46\xf8\xc0\xee\xfe\x49\xf5\x20\xd4\x23\x50\xb1\x0c\x8f\xcd\x48\x39\x20\x91\x0a\x27\x56\xe7\x3a\xa7\x19\x9c\xbc\x1e\xda\x53\xb1\x27\x1e\x28\x95\x89\x0a\x05\xe6\x8e\x60\x55\xd2\xed\x5f\xf5\x71\x67\x1b\xd9\x7e\xaa\x0e\x78\xa7\xf1\x17\xe5\x2a\x83\xf7\x48\xb6\xda\xd9\x86\x0a\xbd\xc5\x1f\x55\xf5\x71\x6d\xfb\xdd\xa7\x0a\xce\xd7\x77\x23\xb9\x00\x0e\x62\x4e\xcb\x78\x53\xcc\xfa\x35\xbf\x27\x8b\x7d\xbe\x9a\x11\x21\xae\x55\xba\x2e\xc3\x5f\xb1\xf3\x37\x37\xaf\x6f\x83\x8a\xe3\xe6\xb5\xb8\x53\x8c\xfb\xb5\xf7\x9d\xfb\x80\xca\x33\xd2\x84\x7d\xb8\xbe\xac\xae\xe4\x01\xf8\x75\x4a\xe6\x0f\xcc\xb8\x55\x72\xc7\x8d\x84\x9f\x84\xe2\x7c\xf0\x5b\x4e\x84\x9f\xb6\xcf\x95\xb2\x15\x32\xa1\xbf\x16\x02\x0b\xed\xa2\xea\x9d\xda\xff\xd2\x4b\xb3\x0a\x85\x81\x3b\x58\x62\x02\x95\xbc\xb0\xbb\x9d\xf6\x37\xc3\x6e\x27\xf1\x6a\x8f\xbe\x85\xa3\x04\xce\x7e\xab\x9c\xa3\xcb\x4c\xce\xde\x51\x02\x67\x5f\x6c\x2d\xc8\xfc\x31\x77\x85\xdf\xd5\x6d\xaf\x14\xd7\xfa\x32\xdc\x20\x54\xc8\x11\x12\xbb\x42\xbf\xaa\x28\xe0\x2a\xbe\xe3\xfb\x6d\xa2\xeb\xfe\xad\x92\x6d\xb7\x95\xc8\x73\x66\x60\xa8\xd6\x5d\xb2\x28\x2e\x10\x04\x37\xf6\xb0\x53\xbd\x5e\xa1\xba\x44\xba\xed\xf7\x4f\xea\x1f\x32\x35\x7f\x89\xac\xb1\xfe\x9f\x43\x08\xbf\x69\x57\x26\xbc\x4e\xff\x1e\x7a\x51\xa0\x83\x74\x71\x02\x10\x28\x3a\x24\xa8\x08\x84\x07\x16\x88\x11\x5e\xc0\x66\xf5\x20\xdf\x14\xa8\x77\xf2\xf3\x97\x0a\xee\xec\x4c\x39\xd2\x6d\xa6\x42\x2c\x0a\x49\xee\x62\xb1\xc1\x17\xbf\x55\x43\xff\x00\xf0\x87\xeb\xcb\xc5\x6f\x95\x36\xab\x76\x68\x8e\x36\xc4\x0d\x4b\xe7\x7b\x10\x81\x1e\x9f\xb8\xc7\x80\xd2\xdc\x19\xbb\x37\x11\xfe\x03\x7d\x0b\xfc\xfe\x29\x5c\x35\xd7\xda\xb0\x30\x99\x2e\x9d\x45\xa3\x1b\x38\xe2\x50\x28\x5c\x24\x52\x9b\x0b\x8a\x71\x7f\xa2\x46\x8d\x05\xf9\x48\xa2\x64\xaf\x48\x66\x96\x3b\xb5\x48\xd7\xe3\x35\xb0\x47\x35\xc8\x52\x26\x17\x7e\xe0\x7c\x08\x4c\x00\x32\x50\x08\xb1\xa0\xcb\x8b\x69\xb9\x11\x01\x39\x5a\xdc\xf6\x9b\x99\xd2\xef\xa7\x17\x2b\x47\xca\x7b\x25\x77\x33\x08\x22\x69\x38\x5a\x90\xe6\x1e\x0b\x0d\x0e\x45\xdc\x82\xb6\x4d\xcb\x01\xd4\x22\x8d\x52\x1c\xf0\x7c\x6e\x72\x51\x31\x8e\x73\xa9\x0e\x58\x54\xca\x78\xd5\xf7\x68\xa6\x90\x29\x05\x58\x49\xc3\xc7\xd1\x0e\x44\x59\x37\xc0\xd1\x0a\x62\x2f\x31\x97\xe5\x88\x02\x9f\x83\xa8\x14\x56\x71\x1c\xbd\xdd\x1b\x38\x3d\xbe\x84\x1f\xc1\xbe\x11\x75\xae\x43\x9a\x22\x66\xe4\x11\xe8\x18\xda\xa8\xe0\x50\x9f\x35\x5e\x21\xbc\xd2\xf7\x8a\x55\x1c\x51\xb3\x83\x79\x8b\xaa\x95\xce\x83\xd4\x4a\xbd\x22\x29\xc4\xde\xc3\x8e\x82\xfa\x20\x97\xca\xd1\x95\x02\x77\x0a\x16\x09\x2b\x4b\xf0\x5e\x53\x35\xa7\x42\x22\xab\xd1\x2b\xda\xa0\xb2\xdd\xcb\x83\x43\xc5\x5f\x20\x32\xd6\x84\x31\x01\x0a\x62\x0e\x62\x83\xad\xca\x45\xd2\x45\x95\x34\x2c\x6e\x5b\xc3\x89\x16\xd9\xac\x3d\x6a\x2e\x90\x42\xb0\x2a\xf1\x3e\xe3\x1d\xf8\x00\xfc\x09\xe4\xe7\x81\x54\xa9\x94\x9d\x21\xc2\x4b\x78\x26\xf6\x33\x65\x4f\x81\x1d\x15\x7b\x25\xa4\x73\xc3\x8e\xc7\x5a\x23\xf7\x8f\x4d\xca\x74\x5f\xc3\xb2\x55\x4f\x48\xac\xd1\x7e\x51\x81\x94\x9c\x34\x3b\x70\x60\x2a\xe3\xc3\x9d\x15\xa5\x93\x3e\xc4\x79\xdd\xb6\x30\xd2\xc1\x30\xa5\x10\x33\x30\x17\xf7\x09\x0e\x93\xdb\xea\x4e\x58\xbc\xb9\xc8\x87\x30\x2d\xdb\x8c\xa1\xf7\x56\x34\x0a\xc5\x26\xdb\x0b\xdf\x4b\xe3\xd6\x0a\xaf\x72\x76\x62\xad\x7b\x98\x67\xaa\x1a\xe4\x03\x32\x44\x39\x52\x33\x49\xa0\x58\x75\x7e\x40\xe0\xdc\x65\x13\x55\x56\x4d\x57\x85\x78\x5f\x80\x6d\xc0\x51\x4d\x98\x5c\x68\x03\x2c\xb3\xc9\x10\xe0\xf5\x5d\x71\xf1\x3b\x3b\x0e\xeb\x42\xed\x41\xf5\xe3\x4a\xfb\x42\xbf\x2b\x32\xf4\xa8\x89\x0b\x29\x76\xc5\x2d\xe6\x04\xfe\x64\xbc\x31\xaa\x8f\xb0\xee\x3f\x55\xc4\x09\xd7\xf1\x3e\xe6\x82\x38\x63\x62\x6b\x31\xb1\xfa\xab\xd5\xa6\xc6\xcb\x85\x7f\xb7\xda\xe0\x4d\x44\x55\xdc\x30\x8f\x74\x32\x6c\x62\x73\xc0\xab\xef\x65\xab\x57\xc1\xce\xe6\x50\xad\x2d\xee\x27\x54\xd9\xbc\x0c\xbf\x2b\xe7\x25\x90\x09\xd8\x0c\xfc\xab\xd0\x01\x51\x21\x52\x10\xbe\x0c\xbf\x39\x35\x26\x55\x83\x89\x29\x1f\xf8\x67\x55\x01\xf3\xba\x40\xfa\x0b\xfc\x36\x5e\x46\x65\x54\x17\x0e\x55\x58\xff\x21\x6f\x91\xc1\x77\xd2\x7b\xd5\x1b\xd2\x27\x13\x11\xc8\x8b\x72\x76\x44\x11\x6d\x20\x00\x4b\xf5\x31\xd8\x1f\x7d\xaa\x92\x95\x52\x30\x50\x9a\x53\xa4\xc7\xe1\xa7\xeb\xa5\x8a\x77\xb5\x63\xde\xf7\x3f\xd4\xc1\xb1\x0a\x09\x29\x06\xfe\x60\x1d\x00\x5a\x23\x84\x2b\x64\x57\xde\x28\xa3\x46\x6c\xaa\x08\xe3\x35\x75\x26\x5e\xd0\x8f\xa0\x4d\x18\x34\xf6\x51\x37\x55\xd5\xe1\xc4\x65\x36\x56\x3c\x93\xb1\x13\x6c\x62\x97\xeb\x13\x4a\x39\x5b\x3b\x41\x48\x90\x9b\x08\x37\x82\x78\x76\xae\x6d\x8f\x14\x32\x5e\x6f\xa8\x16\xef\xbe\x4c\x76\xdb\xe9\x4e\xb1\x1c\x80\xed\xd5\x32\x5c\x81\x75\xaa\xe7\x7e\xee\x64\xa3\xc4\xbd\x96\x51\x93\x95\xf1\x34\xf1\xd0\x0d\xaa\xa8\x42\x16\x44\x29\x83\xf4\x86\x81\xa5\x09\x13\xec\x6d\x90\x0c\xfd\x56\x69\xba\x81\x32\xc8\xee\xac\x87\xb6\x0d\x67\xe2\xcb\xa1\x6d\xc9\xd6\x63\x6a\xdc\x08\x55\xf0\x4d\xdc\x25\xff\xac\x86\xae\x01\x99\x30\x8d\xe5\x07\x4c\x88\x63\x59\xe6\x67\xb2\x1e\x8e\x6a\x28\x16\x35\x51\x04\xde\x64\xc2\x5f\x7b\x58\x84\x7d\x3c\x63\xb4\xc8\x5b\xba\x19\x83\x24\xbd\x0d\xd2\x28\xee\x38\x4e\x14\x99\x1b\xe0\xd0\xee\xe5\x41\x6c\xed\x5e\xb4\xda\xdc\x39\x9e\x29\x18\xa7\x5c\xee\x45\xfd\x9a\xd7\x66\x50\x2c\x89\xc0\xcf\xa9\x89\x1c\x5f\x8d\xf2\x45\xe9\xf2\x10\xb4\x19\x74\x95\xca\x4b\x5f\x2c\x0f\x02\x85\xad\xe3\x77\xb2\xe3\xcb\xd8\x70\x17\x1b\xee\x18\xf1\x2a\x38\x51\xb4\x0f\x4e\x89\x0b\xba\x1e\xe6\xdd\xb5\xda\x5a\xeb\x58\xe1\x9b\xe8\x1e\xa4\xa1\x3e\x87\xc9\x1e\x4f\x4b\xc2\x43\xb3\x76\x1e\xae\xa9\x71\x87\xf3\x5e\xaa\xf9\x42\x25\x41\xf3\xd6\xba\xe0\x8b\x96\xf3\x80\x93\xae\xa1\x43\x9f\x90\xba\xd4\x7a\x47\xf2\xe0\x87\x70\x49\x8d\x13\x1e\x05\x06\xcc\x5e\x94\xed\x19\xaf\x12\xae\x37\xdc\x98\x7c\x61\xb1\x84\xa5\x90\xdf\xdb\xd1\xf4\x47\x8a\x64\xdb\x82\x5d\x0b\xfd\x88\xf9\x30\x78\x59\xfe\x3b\xbc\x61\x8d\x6a\x0b\xd8\x63\xf5\x08\x84\x25\xfd\x02\x72\x96\x2b\x0e\x75\x1d\xe5\x88\x47\xad\x9f\xec\x98\x50\x6e\x2f\x5d\xd1\x71\x5e\xe3\xcd\x22\x18\x9b\x09\x63\xf7\x74\x5d\x8b\x56\x41\x64\x19\x65\xf0\xae\x97\x50\x64\x44\x85\x2b\xfd\x57\x49\x4a\xc2\x4c\x22\x85\x8b\x92\xc4\x39\x11\x4e\xe5\x82\x49\x6d\xcc\x67\xab\xda\x82\xbe\xaa\x60\x6a\x93\x53\xe0\xae\xd7\xa8\x79\x28\x29\xf1\x84\xf6\x16\x74\x16\xc9\xac\x45\xc3\x91\x44\x5e\x17\x55\x40\x05\xe7\x16\xfe\x0a\x29\x51\xb7\x75\xa3\xd0\xf2\x90\x93\xc3\x46\x08\xb9\xb4\xfe\x63\x1b\x5b\xc5\x54\x91\xfa\xfa\x82\x13\x46\xf9\xa1\x33\x94\x1d\x26\x64\xa6\x37\x3d\x70\xf1\x2a\x1e\x1c\xda\x90\xdd\x4e\xbc\x95\x2d\xa8\x93\x78\x81\xe4\x4a\xec\x25\xa9\xf0\x03\xb1\xfa\x79\x5c\x7b\x5a\x47\xbf\x96\xca\x7f\xea\x5b\xb9\x8b\xbe\xab\x64\xd3\xe0\x1a\x4f\x77\xdb\x0d\x2e\x9e\x52\xd1\x07\x50\x39\x04\xa9\x92\x62\x6a\x5d\x5c\x4d\x38\xd2\xe6\x7c\xfd\x75\x04\xf0\x1f\xff\x0d\x37\x11\x45\x55\xe9\x26\x22\x36\x72\xb4\xc3\x26\xbd\x9c\x6e\x35\xd9\x34\xc8\x0a\xf1\x5a\xce\x18\x1a\x5e\xcd\x91\xaf\x81\x5a\x48\x82\x81\xe1\xf9\x0f\x75\x40\xee\x87\x57\x02\x1e\x4d\xda\x09\x89\xd6\x73\x68\x32\x4b\xe2\x8c\x03\x39\x06\x18\x21\x98\x17\xb4\xd7\x2d\xe7\xfc\x1c\xe5\x35\xa7\x18\x16\x39\x43\x69\x0e\xc0\xe9\x87\xbd\xae\x76\x30\x0e\x64\x39\x11\x2d\x19\x27\x57\x90\xa7\x2c\x24\x6d\xf5\x66\xdb\x1e\x84\xde\x75\xb6\xf7\xb8\x92\xc2\x05\x73\x92\x61\xe1\xab\x57\x2b\xbb\x31\xfa\x77\x1c\xd8\x1d\x99\x2e\x46\x1d\xf8\x33\xe7\x7b\x6b\x36\xcf\x5f\x58\x10\x2e\xef\x80\xfc\x6c\xed\xfe\xe7\x67\x4f\x39\x5d\x5c\xe0\x14\xda\xc1\x8b\x57\xda\xbf\x1e\x96\x8f\x9d\xd8\x0c\xba\xc1\x23\xf7\x99\xcc\xcc\xb8\xd9\x54\x84\xec\x4a\xf7\x26\x0e\x0b\x1a\x75\xdb\x5e\x38\xdb\xde\xab\x51\x11\xbb\xdb\xd1\xf4\x2e\x5b\xb5\x23\x48\x6c\x3f\x5a\x97\x28\x83\x23\xa7\x7a\x1e\x9f\x9b\x9b\xd7\x8b\xb8\xc4\xd3\xfc\xf0\xb4\x05\x0e\xb5\xd0\x88\x30\x8f\x08\xc0\x2b\xd6\x4c\xa6\x83\x08\xd5\x21\xa1\x14\xf2\x1f\xd3\x52\x38\x8f\x0e\x78\x96\x89\x2e\x06\xc5\x16\x40\x11\x8a\x8b\x33\x68\x07\xf1\x61\x90\xb6\x9a\xe8\x42\x79\x61\x65\x8b\x17\xce\x9e\xa0\x4b\x46\xce\x3d\x36\x0f\x97\xeb\x68\x7f\x33\x45\xa3\xbe\x33\x3d\x0b\x1d\xc8\x28\x1a\x8f\x48\xa2\x69\x63\x98\x82\xaa\x29\xa2\x69\xa1\x15\x39\x35\x23\x43\x3a\xa2\x68\xb4\x20\x95\x43\x7a\xfd\x95\xd4\x6c\x52\x6f\xea\x78\xa8\xee\x2b\x28\x1a\xf6\xe9\x1c\x87\xc3\x1a\xd2\x9f\xf0\x44\x5d\xb2\xb6\x04\x33\x8c\xad\x33\x39\xef\x9d\xe5\xbb\x3c\x11\x12\x71\x4e\x9c\x07\x8e\x25\xdf\xca\xd0\x08\x34\xc2\x25\x13\x2b\x54\xc0\xfc\xef\xa2\x91\x07\x57\x79\x7b\xa7\xcc\x4c\x11\x4c\x3f\x56\x28\xd2\x97\x20\x1c\x31\x75\x39\x4f\xc4\x61\x2c\x2e\xf1\x55\xfc\x51\x02\x93\xd1\x15\xc6\x1a\xcd\xdc\x48\x7b\x84\x0f\x23\xc4\x52\x9b\x86\xe8\x08\x93\x01\xb6\xe5\x8a\xfb\x7f\x51\x0d\x06\x80\x50\x20\x85\x1f\xfc\x9d\x4f\x4b\x81\x3f\xdb\x2c\x66\x69\x07\x93\x91\x4f\x5a\x0e\x35\x0d\x45\xec\xe4\x95\xea\x1d\x5a\xdf\x9e\x13\xc2\x5b\xc8\x76\x6c\xca\xce\x16\x0d\xa1\xc8\x2b\x4e\xc4\x3d\x80\x80\x34\xe0\x2e\x0e\x04\x7e\x25\xc5\x47\xc0\xc2\x96\x34\x6c\x58\x8b\x73\xe0\x6d\x24\x98\x5b\xb2\xac\x11\xe7\x57\x6f\xdc\xa2\x8a\x15\x06\xa4\xbf\xca\xd5\x96\x27\x70\x4f\x5a\x0f\xb4\xbf\x69\xdb\x31\xc5\x8d\x92\x04\x15\x0f\x2f\x0e\xb0\x24\x6e\xf1\xd8\xa9\x49\x87\xa8\x33\x65\x3e\x8d\xb1\x72\x99\x26\x88\x6a\xc3\x96\x8c\xcf\xaa\xd8\xd5\xef\xc4\xdb\xa4\x8f\x84\xad\xd5\x1d\x80\xfa\x67\xe6\x77\x92\x46\x68\x8f\xf4\x7b\x64\xf7\xa7\x3d\xdd\x53\x0b\xd8\xc2\x7d\xa4\x1f\xa1\xc1\x4c\x41\xf2\xa9\xcc\xc9\xc8\xec\x64\x26\xa2\x32\x5b\x6c\x8e\xb2\x74\x01\x4f\xd9\xe7\x2f\xd1\x19\x58\xf8\x49\x71\xf0\x00\x95\xc9\x7b\x95\x2d\xe5\xab\xd9\x6a\xe3\x8a\xa6\xaa\x47\xf4\x46\xd0\x31\x48\xb6\x1e\x68\x0a\x4b\x22\x16\xad\x88\xcc\x30\x5e\x3a\xb1\x57\x6d\xbb\xa8\x50\x9f\xb1\x30\x70\x8a\x93\x01\x65\x64\xb7\x59\x21\x87\xfd\x30\x87\x42\xe3\xe6\x16\x54\x0c\xf5\x78\xd1\x04\xf2\x52\xb1\xa9\x40\x0e\x9a\x03\x66\x66\x9a\x64\xbe\x6f\x5d\xfe\xe4\x81\x46\x31\xd3\x82\xa1\x49\x99\x92\x3b\x27\xe4\x1a\x8e\x51\x18\xbe\x56\xad\x59\x5b\x9e\xab\x81\x8f\x0f\x6e\x18\xdd\x74\xdf\xcc\x53\x5b\x58\x7d\x30\x50\x26\xbf\xab\xc4\xbb\x53\x63\x73\x55\x65\x40\xd6\xa9\x7e\x27\x0d\x1a\x5c\x90\x72\x25\x70\x23\x17\xe7\xef\xde\xbd\xbf\x4d\x4c\x08\xec\x73\xd3\x58\xa3\xbe\x8b\x16\x9e\x93\x76\x05\x3b\xcf\xb8\x40\x4b\x88\x64\x69\xca\x25\x8e\xc1\xe5\x64\x38\x33\x48\xd9\x58\xa4\xad\x16\xda\x12\xce\xaa\xa2\xfd\xcd\xd1\x21\xfc\x08\xb3\xf2\xa9\x0a\x0a\xff\xf7\xf0\xbf\xca\xef\x4c\xb2\xbb\x26\x24\x2d\xe9\x4a\x2a\xbd\xa7\x11\x1b\x6b\x9b\xc9\x1d\x0a\x1e\x42\x83\x44\x51\xd2\xee\x3a\x8b\x67\xe1\x5a\xa0\xa9\xc2\x29\xac\x40\xdb\x23\x41\x80\xc1\x1d\x8c\xfe\xdb\x80\xec\x27\x5a\x18\x2c\xaa\x7b\xed\xf4\x52\xb7\x74\x60\xfe\x29\x7e\x50\x3a\xfc\x1a\xbd\xf9\xc8\x2a\xd7\x4e\x3c\x73\x9d\x34\x62\xd5\x4a\xe7\xce\x1e\x0d\x5a\xf4\x40\x87\xd5\x67\xff\xe8\xf9\x55\x8f\x36\x07\xcf\x9e\x02\xc4\xf3\x09\xba\x7a\x6d\xfb\x15\x29\x57\xa3\x01\x0f\xee\x4b\x4e\x87\x75\x0c\xfc\x7c\xb1\x96\x69\xe0\xff\x89\x3a\xd7\xb6\xbf\x4b\xfd\xf8\x9e\xb5\x0a\x76\x4d\xb4\xe9\x5e\xb6\x43\xa9\x62\x82\xda\xa1\x8c\xfb\xa1\xc2\x07\x2d\xa9\x2c\x1a\x74\xe1\xab\x64\xc8\xd0\x66\xf3\x33\x0e\x9a\x7f\xf8\x75\xe3\x6b\xd5\x76\xc0\xd8\x7e\x57\x61\x4b\x58\x09\x3f\x7e\xce\x8a\x79\xe1\xa5\x09\xe4\xe1\x73\x13\x4c\x9d\x99\x8d\xec\x65\x9a\x6c\x3d\x29\xe0\x45\x36\x9b\x40\x72\xb0\x13\xb9\xe2\xfa\xc0\x57\x9d\x91\x42\xbb\x55\xaf\xf1\xb5\x0c\xa5\xb7\x12\xf5\xd9\xf1\x3d\x33\x26\x6e\xb4\xd7\x1b\x63\xfb\x6c\x18\x6e\x54\x0b\xe3\xb4\x88\x59\x22\xbc\x90\x76\x55\xab\x57\xca\x38\x24\x66\xf4\x2b\xa4\x4c\x8a\x03\x77\x43\xb0\xa8\x71\x04\x96\x9a\xb7\x02\xfc\xe0\xef\x99\x52\x0c\x18\xaa\xac\xe4\xe0\x6d\xad\x8d\xf6\x68\xaf\xa9\xbd\x96\x2d\x49\x3a\xe5\x7a\x25\x3e\x1e\x91\xb0\x36\x2b\x90\x47\xc6\xc3\x26\x97\x3c\x3d\x6c\x6b\x99\x4d\x10\xbf\xcc\xe0\x6b\x0d\x1c\x3f\x4c\x10\x64\x7e\xc1\x8f\xa1\xeb\xae\x1f\x0c\xa9\xd6\x07\xa3\x8a\xc4\x30\xee\x19\xc3\x46\x6f\xe3\x9e\xf8\x5e\xae\xee\x80\xb8\xf4\x6a\xad\x7a\x65\x56\x68\x67\x26\xe1\x7c\x17\xad\x35\x1b\xd5\x93\xac\x11\x8c\xb8\xa8\x58\x40\xae\x41\x42\xba\x27\x4e\x93\x9e\x51\xbf\x09\x29\xdf\x83\x68\xfd\x43\x00\x0c\x82\x71\x84\x63\xf5\xce\x28\x3f\xb4\x93\xaf\x43\xd9\x1e\x40\x18\x05\xc7\x8c\xec\xe9\xb1\x8a\x58\xf5\xaa\x51\x06\x46\xdb\x09\x96\xe7\x83\x99\x41\xc0\x87\x8c\xba\x3b\x98\x55\x62\xd5\x6f\xf0\xab\xda\x4b\xbf\xda\xd2\x95\xcb\x9f\xf9\x27\xde\xb8\x6c\xe4\xef\x94\x7a\x13\x3f\x70\x0b\x38\xde\x14\x8e\xaf\x4f\x7a\x25\x57\x5b\x36\xf5\xb3\xeb\x9a\xde\x5f\x22\xcb\x72\x1b\xaf\x81\x81\x9e\x20\x9c\x6a\xc4\x4e\x7e\xd6\xbb\x61\x27\x22\x20\x16\x85\x5d\x72\x52\x5e\xec\x2c\xe6\xaf\x67\xc6\xa6\x00\xdf\x7e\x4b\x33\xc6\xf0\xf0\x65\x8d\x51\xaa\xa9\xe5\x80\xf6\xde\x48\x74\x0a\x93\xa0\x8a\x5f\xd2\x87\x17\xc9\xf1\x29\x3d\x3d\x49\xce\x73\x8f\xd3\xef\xa0\x81\x93\x25\x49\x45\x43\xef\x65\x3b\xa8\x47\xcf\x69\x16\x03\x3d\x0d\x58\x79\x7f\xbc\xe5\xc7\xfc\xd9\x06\x61\x88\x05\x11\xcd\xb4\xd8\x2e\xf0\x55\x60\x5a\x6b\x33\x50\xc5\x91\xcb\x6c\xbd\xcc\x5e\x16\x3e\x7d\xf5\xe6\x16\xcd\x53\x1e\x28\x5e\x93\x1a\x84\x2c\xee\x88\x44\x3e\xee\x81\xb3\x74\x36\xd7\x7c\x06\x2f\x04\x32\x1f\x8c\xe5\x81\x1e\x84\x85\x37\x99\x9d\xf4\xdb\x54\x17\x1c\xf2\xda\x39\x62\x6e\x8d\xc6\xf9\x2c\x18\xbd\x84\x9d\xda\xc0\xc8\xca\x85\x15\xb0\x25\xbb\xfe\x95\x6c\x83\x51\xff\x1b\x4a\xe4\x82\x90\x88\x3a\x9e\xf2\x86\x34\x18\x35\xca\xfc\xa5\x6c\x40\x1b\x2f\xc3\xd3\x6a\xc8\xef\xc1\x79\x4b\xf2\x01\xc3\xee\x16\xec\xba\xa2\x33\x22\xa4\xf3\x89\xb1\x8e\x47\x0f\xbe\x74\x74\xaa\x5d\x97\x67\x0e\xba\x65\x28\x46\x30\x37\xb0\xb5\x7b\x03\x5c\x5a\x77\xa8\x5b\x6d\xee\x90\x31\xeb\x0e\x29\x21\xe3\xd0\x2f\x6c\xa7\x55\x93\x01\x47\x2b\xa2\x2b\x5c\x3c\xff\xf5\xff\xfe\x7f\x4f\x2e\xa0\xdb\x17\xbe\x6f\x9f\x5c\x04\x01\x08\xe0\x69\x1a\x08\x81\x78\xff\x1f\xd5\x60\xf6\x6c\x32\xf4\x81\x7e\x55\xe1\x1b\x29\x4c\x35\x18\xc7\x77\x26\xf8\xa3\xe2\x2f\x20\x34\x15\x7b\x99\x00\x0a\x53\x55\x26\x1e\x90\xef\x6c\x71\x46\xfe\x6d\xd0\xab\xbb\x9a\x54\x5f\x67\xe2\x3f\xe1\x4b\xa0\xe7\x02\x66\x13\xe0\xc4\x89\xc7\x07\xae\xf9\xd1\x19\x94\x5b\xf5\xe3\xd9\xca\x8f\x85\xd2\x71\x23\x4b\xb6\xe7\x10\x08\x7e\x00\x6c\xb5\x51\x55\x37\xb8\x2d\xdd\xa8\x87\xda\xae\x06\xb7\xc5\xa7\xa5\x90\x48\xe7\x48\xc4\x80\x33\x3b\xc1\x81\xd5\x6b\x47\x4f\xd3\xe7\xb9\x3b\xcc\xca\x2c\xae\x77\x4a\x2c\xe5\xea\x2e\x48\x92\x15\x1d\xa1\x64\xfa\xe7\xaa\x78\x2a\xf2\x69\xe8\x7b\x85\xd2\x72\xaf\x14\x40\x7a\xd5\x07\x7b\x00\x69\x9a\xda\xcb\x0d\x95\x04\xd6\x85\x8b\xda\x5e\x78\xb9\x61\x44\x88\xf9\x17\xfe\x59\x79\x89\x37\xc6\xb7\x72\x33\x75\x7b\xd1\x0d\x6d\x3b\x75\x8e\xd1\xca\xa5\xc2\xe4\x4b\xfc\x51\xed\xa0\x91\xde\x1a\x45\xa7\x5f\xf8\xa8\x56\x68\xd0\xe8\xa2\x69\xa3\xab\xf8\x5d\x16\x59\x10\xd0\x4f\xec\x6a\xdd\xcb\x3d\xa4\xc9\x3d\x7d\x6e\xb5\x63\x67\x29\xaf\xe9\x17\x25\xe3\xeb\x12\x02\xc5\xc7\x25\x11\x1e\x25\x05\xde\x0f\x57\xe1\x37\x65\x79\x0b\xbc\x57\x8f\xf7\x6d\x38\x11\xe1\xae\xcd\x5b\x2b\x28\x83\x98\x5f\xb7\xb5\x7b\x53\xdd\xeb\x46\x59\x3c\x5e\xf8\xa9\x18\xb9\x8b\x59\xf6\x76\xef\x02\x73\x08\xa3\x4a\x9f\x40\x42\x40\xa2\x0d\xcf\xca\x5e\xdf\xbe\xbd\xfc\x9f\x02\x71\xc0\x78\x2f\xaa\x4a\x35\x30\xe7\x0b\x74\xb7\x42\x97\xc1\xef\xd4\x9e\x98\x32\xce\xa2\x2b\xc2\x3a\x5e\x15\xa3\x25\x6b\x0e\x00\xff\x42\xf6\xaf\x8d\xf6\x45\x66\xd7\x2b\x1c\x15\xba\x73\x72\xb4\xb9\xf1\xf9\x22\xb1\xe2\x2e\x00\x12\x71\xa9\x11\x99\xb1\xa6\x86\xb3\xa8\x0e\xcb\xec\x82\x28\x0f\x64\x0a\x63\xcd\x13\x3c\xa8\x30\xb3\x68\x04\x6e\xc2\xbc\x25\x3e\x0c\x68\x00\xdb\x0d\xce\xd7\x4b\x55\x5b\x53\xcb\xc4\xcc\xfd\x25\x18\xb7\x2c\xd1\x28\x59\x86\x55\x09\x27\x86\xbc\x23\x6b\xb8\xde\x82\x78\x25\x42\x3f\x82\xdb\x82\x1c\x39\x12\x4d\xf2\x5a\x82\xfd\xc8\x31\x23\x95\x19\xb3\xa5\xec\xe1\x04\x60\x83\x05\x58\x8e\x2f\x68\x36\xb2\x5e\xe5\x8a\x95\x49\xbf\xb6\xf2\x5e\xd5\xf8\x4e\x9e\xf5\x73\x79\x03\x50\xd3\x45\x8f\xe8\x93\xce\xe0\x9b\x7a\x47\xe6\x15\xd8\xa4\x44\xc4\xd1\xf6\xb7\x54\x5d\xcf\xab\x72\xc3\x42\x03\x2e\x09\x9f\x92\x84\xe5\xc6\x06\x7b\x3d\x56\xb6\x58\x2c\xf2\xfa\xa2\x10\x8c\xba\x37\xe0\x31\xd3\xe9\x77\x4a\x8f\xea\x91\x0d\xd2\x1e\xd9\xf9\x0e\xcf\x8d\xa7\x0b\x80\x0d\xba\xa5\xbc\xc0\xc6\x52\xcf\x94\x58\xaa\x8d\x26\xdf\x35\x28\x0a\x2a\x7e\x4b\x98\x90\x00\xb5\x73\x9d\x44\x0f\x26\xd4\x1e\x3c\x99\x6c\x9f\xad\xd7\x95\x6a\x6b\xb4\x18\x12\x67\x82\x3e\x63\x26\xd2\x93\x6c\xd1\xb3\xed\xf4\x68\xcd\xcb\xa6\xa9\xfd\xae\x0b\x37\x71\x8f\x4f\xdc\xd3\x67\xa1\xdb\xcf\x1f\x67\x50\x09\xe0\x71\xda\x96\x0d\xf9\x53\x62\x33\x80\x3c\x6f\x6c\x4f\x93\xe7\x71\xd3\xd8\xc6\x3b\x7a\xf1\x6a\xf0\x41\x4c\xf0\xa7\x20\xd4\x67\xaf\x4c\xa3\x1a\xd1\xa4\x33\x30\x9b\x1b\x46\x42\x43\xdb\x1e\x6a\x6f\x69\x95\xc6\x1d\xc5\xfd\x0d\x00\x61\xd8\x59\xc1\x13\xf8\x4d\x02\x7f\x02\xdd\x7d\x84\x6f\x60\xa2\xc2\x07\x33\x52\x75\xe9\xe8\x4c\x35\x84\x43\x33\x28\x8d\x4c\xb4\x7d\x4f\x78\xd6\xe8\x60\x01\x6d\x35\xb1\x3d\xe8\x99\x82\x5c\xd4\x08\x38\x3b\xc2\x73\xa0\x45\x4e\x07\x83\xe9\x1a\x1a\xec\x30\x33\x50\xda\xd5\xe7\x23\x31\x32\x2a\x19\x2f\x5e\x26\x6b\x4b\x15\x4f\xdb\x97\x9c\x35\xe3\xe7\x86\xca\x86\xa3\x92\x18\x2a\x3a\xec\xd3\x89\x48\x9b\xad\xb8\x85\x72\xd1\x1f\x52\x2e\xed\x87\xb5\x10\x96\x3f\x9c\xf8\x32\x52\x47\xe3\x7b\xbe\x72\x62\xf9\xad\x93\x6c\xe3\x40\xef\x4a\x25\x9d\x43\x23\x8e\xf3\xa1\x8a\x90\x3e\x60\x1d\xee\xb0\xe3\xb3\x2e\xfa\x17\x0a\x92\x8e\x14\x21\x33\x28\xf1\x79\x08\xf0\x9d\x87\x66\xf6\x93\x0c\x7d\xd4\x52\x30\xea\xc9\xa8\x62\x35\xa9\x55\xa9\xa2\x42\x40\xcb\x99\xa2\xaf\xef\x02\x53\xe3\xda\xd8\x9a\xc4\xef\x34\x03\x65\x77\x0e\x2c\x05\x04\xf2\x3d\x92\xd7\xa3\x64\x7c\xac\x22\x36\xfe\xa8\xf7\xdb\xac\xda\x40\x52\x27\xf7\x95\x0c\x2d\x9c\x36\x2b\x95\x7c\x2d\xa9\x26\xd4\xbf\x78\x58\x11\x95\x5e\x3b\xe1\x3d\x2b\x5f\x11\xec\x61\x16\xf0\x68\x28\x2a\xb1\x7d\xdc\x56\x44\x0e\xc3\xfe\xd9\x48\x6d\xd2\xf6\xf2\x16\x0d\x66\xe9\x54\xf1\xdb\xec\x04\x29\x7b\x3a\x59\xca\xe7\x34\x8c\xa8\x96\x49\x53\xf6\xf5\x8b\xda\xd8\x40\x5b\x81\xf4\x00\x67\x44\xb3\x03\x22\x1f\xca\x65\xf9\x49\x06\xd9\xa9\x3d\xe8\x0d\xc6\xd6\x6c\xbc\xc4\xdb\xe1\x25\xc9\x4f\x51\xe3\xff\x94\x6f\xb3\xd3\x64\x63\x53\xe9\x55\x03\x88\x54\x19\x01\x77\xc3\xb2\xd1\x3d\xd3\x50\xfa\x60\xf1\x2c\x51\x09\x36\x91\xc6\x7a\x23\x37\xe5\x46\x15\x47\xc6\xca\x05\x43\x8a\x23\xb5\xe6\x38\x00\x27\x55\xff\x61\x06\x41\x15\x78\xdc\xc5\x94\xd7\x0d\x39\xa3\x57\xc8\x3c\xd5\x29\x7f\x4d\x57\x86\x2f\xb5\x69\x62\x9a\x44\x8d\x44\x7c\xad\x14\xd3\x77\xf1\x29\x11\x3f\x2a\x8a\x39\x7c\x58\xbd\x40\x65\x1b\xa7\x85\xc7\xe7\xef\xe1\x7f\x4c\x35\x6a\xcf\xfa\xd6\xbd\xea\xe3\xe3\x6c\xf2\xab\x08\x74\x18\x59\xff\x2c\x79\x31\x66\xf7\xb3\x2c\xd8\xc3\x90\x48\xf2\x1c\xe6\xe7\xd9\xab\x56\xc9\xbe\x8e\xe5\x2f\xe0\x53\xb4\x13\x2c\x51\x7e\xc8\xc5\x87\x51\x35\x39\xcc\x3b\x3b\x0f\x46\xd5\xe5\x90\x54\xe3\x6e\x0e\xd8\x76\xca\x14\xb0\xef\x3b\x65\x72\xe9\xa5\x40\x6c\x9d\x6a\x46\x98\xf1\x32\x60\x1e\x5e\x3a\x74\x2a\x82\xd7\x21\xfc\x73\xda\xce\x0c\x88\x9a\x29\x67\x40\x8d\xcd\xe1\xde\xd9\x09\x10\x6f\xa4\x78\x5e\x8f\x67\x2f\xcd\x8f\xda\x4f\x26\x88\x32\xeb\xae\x95\x2b\x15\x5d\x15\x20\x50\x3c\x86\x8b\x6a\x22\x32\xae\xac\xc0\x47\xb8\xa2\xb2\x7a\x11\xef\xdd\x60\xd7\x48\x60\xfb\x1a\xb5\x46\x73\x72\xa7\x50\x3b\x58\x2e\x84\x71\x71\x6d\xd6\x36\x27\x3a\xe6\xbf\xfe\x9f\xff\xdf\xa3\x5e\x97\xd7\xd3\x41\xf9\x64\xd7\x57\x3c\xc3\x7d\x14\xfb\xfa\x28\x3c\xc9\x95\x4b\x5b\x78\x5c\xa1\x07\x00\xe4\x69\x6f\xdc\x34\x7e\xbe\x7b\xa4\x5d\x33\x9a\x76\x1c\x14\xa7\xfc\xb1\x22\x83\x63\xf3\x5c\xa2\xb7\x5f\x84\x0f\x34\x34\x97\x0b\x13\x21\x43\x2a\x44\x38\xa2\xef\xd4\x48\x47\xc9\x5f\x06\xa1\xc5\x15\xee\xe5\x52\x9c\x89\x93\x06\x97\x77\x9c\x4d\x58\xbc\x29\x8b\xd6\x72\xc8\x64\x85\x42\x98\xea\x62\x8e\xf3\x3c\x38\xc0\x49\xe5\x4f\x2b\x33\xaa\xff\xdb\x99\x12\x0f\x6e\xf1\x31\xcc\x51\xcc\x93\x8d\xcc\x25\x1f\xd8\x6f\x09\x62\xa3\x8d\x3a\x8e\xfa\x48\x39\x56\x02\xa3\xea\x77\x9a\xb3\x90\x6d\x5b\x47\x9d\xc9\x79\xdb\x0a\xfa\x98\x05\x75\xec\x7c\xd6\x5b\x90\xcf\x52\x53\x1b\xb6\x89\x98\x2b\x44\xab\xb5\xa9\x97\x07\x2e\x43\x1b\x0f\xbd\x5a\x1d\x29\xb2\x53\x06\x84\x09\xe0\xb0\xa8\xc8\xdb\x98\x30\x53\xc4\xb1\x8f\x3d\xdb\xfb\x99\x9c\x05\xae\x47\xcf\x87\x85\x9b\x05\x01\xb2\x81\x20\xef\xf1\xc7\x1c\x08\x59\x0a\x45\x81\xea\x9a\x9d\x00\x04\x5b\xe5\xd9\x8a\x95\x74\xa9\xc4\x25\x3e\xda\xe9\xbf\xa2\xdc\xce\x3a\x0f\x07\x1d\x19\x86\xbd\xb5\xf8\xb6\x12\x3f\x1f\xa8\x27\x15\xa0\x8a\x26\x25\x60\x27\xe1\x2c\x80\x84\x8a\xbf\xc5\xc9\xc7\x1f\x3f\x39\x98\x86\x64\x71\xf7\xf1\x0f\x9f\xdc\xa3\xe7\x27\x1f\xff\xf8\x09\x4d\xed\x26\x85\xeb\xb5\xbc\x53\x33\x18\xb0\x60\x80\x46\x7d\x8e\x1d\xa2\x22\xc7\x0e\xd9\xc9\xf2\x99\xa6\xe2\xb3\x2f\xb7\x78\xf4\xcd\x37\xda\xe1\x4d\xcc\x2a\x77\xb8\x19\x76\x35\xf7\xd1\x11\x05\x08\x5f\xb1\x78\x18\x81\x5a\x42\x95\xbf\xc5\xef\xd4\xdd\x7f\x03\xa6\xf7\x04\x7b\xfa\x5b\x28\x16\x6c\xe3\x09\x3a\xf3\x86\x77\xce\xb6\x92\xd1\x68\x32\x5c\xe3\x37\x99\xbe\x85\x8b\xfd\x1c\x9b\x69\x33\x1b\x3f\x3a\x07\xf0\x2e\x27\xf2\xee\x70\x02\x94\x24\x0d\x3f\x42\x7f\xcb\xac\xd0\xa8\x08\xc2\x93\x8e\x4f\x5f\x73\xf0\x5e\xe1\xa8\x06\xb8\x6b\xfc\x1c\x65\x3e\x84\xac\x2f\x0a\xf0\xc1\x99\x96\x18\x83\x8e\x26\x8a\x87\x99\x98\x8a\x67\x52\xe8\x06\x16\xd4\x8f\x9f\xdc\xa3\x38\xdc\xf8\xf5\x1c\x17\x4b\x31\xe8\x54\x5f\xc4\x11\x3e\xbf\x11\x0b\x6b\x1c\x7a\xb5\x8e\x78\xf8\xb6\xb4\xa1\xd9\xa1\xae\xf2\xb3\x49\x16\x57\xbe\xad\x8a\xce\xb2\xaf\xf0\x2b\xfc\x91\x6a\x0e\x0e\x88\x90\xe3\xbd\xc8\x3e\xe3\x32\x2f\x4c\x3b\x38\x31\x78\x74\x0b\x0f\xe0\x59\x95\x50\x58\xc0\xb2\x4b\x9e\x20\x91\xfd\xd5\x06\x99\x67\x65\xcd\xbd\xea\x1d\xbf\xd2\x64\x8c\xac\x53\xfc\xb5\xd1\x69\x7a\x46\xea\x87\x50\x37\x48\x74\x67\xe2\x46\xde\xab\xd1\x21\x1e\x98\x9e\xc8\x44\x95\xf9\x2b\xdb\xda\xc4\x64\xe1\xd7\x18\x80\xcc\x6d\x4e\x9a\x59\xfe\x28\x2d\x4d\xde\xb9\xe8\x3e\xb0\x3c\x75\x08\x72\xa6\x33\x94\x31\x52\x5e\x95\x99\xd1\x1d\x04\x35\x10\x9d\x42\x04\x77\x94\x53\x2c\xfc\xee\x09\x41\xa3\xbd\xcf\x2c\xd8\xbc\xa1\x3f\xf1\x18\xb9\xa9\x9a\x46\xb9\x34\x19\xf7\x6b\x53\x58\xaf\x31\xee\xe3\xf6\x54\xf3\x95\x27\x75\x2a\xb5\xf5\x0b\xaa\xd4\x8c\x4c\x76\xb2\xf7\x7a\xa5\x3b\x19\x49\xe5\x55\x96\x12\x20\xa5\xf7\x72\xb5\x85\x6d\x9d\x33\x5d\xbf\x91\x4a\x80\x35\x01\xb0\x1e\xb1\x3b\x78\x0b\xe5\xe5\xf2\xb7\x99\xd2\xd1\x0d\x5d\x5e\x3a\x26\x02\x8a\xdf\x2a\xba\x94\xc9\x04\xb6\xfc\x72\x86\x33\x57\x76\xd7\xc9\x5e\x95\x0a\x52\x48\x89\x1a\xd2\x59\xb8\x30\x4b\x01\xd8\xef\xad\x88\x57\x46\xe8\x44\x1f\x4e\xb0\x52\xb5\x87\x3a\xc0\xa8\x95\x28\xd1\xa2\xd7\xbb\x33\x7c\xcb\x37\xae\x90\x6b\x38\x13\xfc\x8b\xf3\x8b\xdb\xac\xf1\x2d\x56\xe8\xb9\xad\x7b\xe5\x86\x16\x67\x04\x0d\x91\xe9\x63\x4d\x26\xb4\x01\x08\x3d\x99\x03\xb7\x95\xea\xca\x0e\x11\xf2\x73\xce\xcf\x22\x20\x77\xa9\x56\x12\x18\x75\x6c\x33\xf4\x75\xab\x64\x93\xf5\xbe\x57\xe8\x11\x35\xe0\xdf\x4a\x57\xe7\x2e\xe4\x61\xc6\x22\xfa\xa0\x68\x19\x8d\xd4\x52\xf9\x3d\x7a\x18\xc0\x77\x0a\x30\xb8\xa4\x4e\x72\x3f\xe5\x5c\xc4\x8f\x9f\xdc\x53\xac\xe3\x29\xb0\x12\x0d\x53\xd2\x7f\xc3\x0f\xa2\xa7\x3c\x94\x23\xc9\x6f\x66\x19\x20\x35\x0a\x93\xba\xc7\x35\xec\xad\xd8\xa9\x7e\xa3\x90\xfd\x68\x82\x32\x82\xe8\xfa\xb3\x95\x6d\x54\x20\xdc\xf8\x5b\x68\xe3\x6d\x4c\xff\x63\x4c\x67\xfc\x88\x89\xb9\x8c\x50\x0d\xa5\xfd\x6b\xe8\xc5\xc9\xc7\xff\xf1\x29\xac\x51\x2f\x97\x75\x4e\xae\xc9\x16\x31\x7e\x16\x50\x63\x1d\x4c\xca\x2b\x2e\x54\x83\x1e\x8e\xf3\xf9\x50\xf7\xb6\xa6\xa1\x89\xd6\x39\x94\xc1\x66\xb6\xf9\x4c\x7a\x2b\x3a\xd5\x03\x99\xe2\xd1\x8c\xd6\x98\x8b\x62\x68\x90\xfd\xee\x53\x4d\xb0\x6a\x62\xce\xed\x04\x6d\xa4\x4b\x0c\x53\x92\x25\x42\xd1\x48\x2f\xeb\x65\x1f\x6c\x8c\xa5\x97\xd1\xda\x6e\x1e\x17\xc3\x36\x43\x7a\x56\x0f\xa3\x68\xd7\x74\x67\x96\x51\xdb\xd0\x76\xed\x6a\x7c\x59\x44\xea\xd2\x5b\x7e\x2e\xd4\xea\x95\x17\x31\x5d\x3b\x7e\xd7\x4e\x1e\x82\x37\xe4\x6f\x39\x06\x25\x58\xf7\xca\x6d\xd1\x1b\x2a\x00\xac\xd5\x5e\xec\x2c\x72\x98\x91\x44\x48\x53\xa3\x71\x19\x76\xb5\x30\x51\x29\xba\xc1\xf6\x2a\x3c\x20\x23\x1f\xa7\x11\x15\x9a\x03\x7d\x1d\x36\x32\xe3\x9e\xc3\x17\x49\x80\x8f\x8a\xce\xd0\x6f\x77\xbc\xae\x71\x70\x01\x5a\x0f\x3b\x69\xc8\x6c\x54\x1b\x61\xfb\x46\xf5\xec\x02\x0b\x1f\xe9\xf8\xed\x0c\x66\xc2\x36\x22\x29\xb8\x78\xe6\x76\x36\x2e\xd8\xc1\xf0\x06\xc4\x52\x51\xf9\xfb\x1b\x2b\x45\x1e\xfb\xb8\x48\x79\x21\x27\x9b\xe1\xb2\xab\x39\xc9\x32\xc4\x52\x14\xc3\xf6\xfd\xbf\x9d\x34\x3f\xd0\x26\xc6\xc7\x3a\x13\xcb\x3f\x48\xa4\x8e\xe7\x87\x37\x50\x51\xed\xd0\xc7\x1b\x2c\x19\x38\x28\x00\x48\x9b\xcd\x22\x10\x31\x96\x18\x32\xb3\x3f\x64\x4e\x7e\xc9\xe9\x7d\x01\x83\x2e\x1f\x8c\xda\x67\x9b\x9d\xef\x6d\xd2\x5d\x47\x38\xd5\x43\x27\x35\xed\x06\x7a\x62\x47\xa5\xc8\x62\x1b\x9b\x6c\x56\x6a\x51\x65\x36\x0c\xd9\xc9\x9a\x34\x15\x59\xf6\x8c\x5a\x25\xcb\x9d\x57\xad\x8c\x01\x9a\xa4\x41\x3c\x71\x45\xdd\xb6\x6e\x06\x55\xb3\xdc\xfb\xce\xe2\xb6\x85\xaf\x71\x0b\x82\xbc\x37\xc6\x1c\x85\x9f\xb2\x43\xb5\x1b\x96\x70\xa0\x91\x63\x36\x3a\x30\x32\xb3\x0d\x6f\x83\xc1\x3a\xdf\x15\x33\x6b\x52\xa0\x1f\x9d\x37\xb3\x83\x13\xf8\x5f\x74\xe4\x95\x67\xcc\x98\xc5\xe6\xb9\xa9\xcf\x2f\x06\x85\x5a\x6c\xf1\x7d\xb8\x2c\xfd\xa1\xec\xa4\xa2\xe7\xdb\xf0\x3f\xcf\x88\xae\x77\x19\x55\x4d\xeb\x90\x31\x22\x72\x4e\x49\x5e\x5d\x4f\xa3\x55\xc2\xe3\xc3\xe1\x70\x78\xb2\xdb\x3d\x69\x9a\xc7\x33\xbd\xce\x38\xc8\xd8\xed\xd1\xad\x3c\xab\x6a\x46\x34\x3b\xc3\x94\x31\xe4\xf3\x63\x87\x26\x16\xf9\x3c\x7d\x40\xed\xe4\x52\x79\x58\xab\xd9\x45\x31\xed\xa4\x34\x7b\x0e\x4e\x23\xdb\xb5\x2a\x3d\x53\x01\xf2\x42\x2f\xf0\xf2\xbe\x8c\x84\x99\x2c\x6b\xe4\x06\xee\xc1\x06\x46\xfb\x32\x66\x2e\xed\x3a\x35\x66\x34\x28\x14\x82\xe2\xe8\x90\x64\x42\x44\x1a\xd6\x28\x48\xcc\x00\xce\x8b\x11\xa9\xf6\xff\x4e\x51\x62\xae\xfa\xb9\x65\xf0\x05\x61\xa2\xda\xeb\x3b\x2d\xce\xc4\x9f\xf5\x9d\xc6\xdf\x0b\x76\xdc\x97\x39\xea\xf3\x16\xb3\xbf\x2b\xf2\x43\x5f\x21\x07\xed\x95\xb6\x4a\xa0\xa6\x5e\x50\xdc\x07\x7a\x96\x34\xb4\x8d\x68\xf5\x1d\x9d\xed\x76\x35\xa0\x96\xe1\xc0\x7e\x24\xfe\x8a\x4e\x1d\xec\x46\xe1\x6b\xef\xc8\xc0\x6b\xcf\x8b\x6a\x41\x15\xf2\x1a\x47\x0f\x33\x35\xc7\xe6\xe2\x4d\x4e\xa6\x1b\xbd\xf3\x78\x96\x13\x78\x1e\xbd\x0b\x13\x98\x69\xe7\x74\x66\xd9\x13\x3c\xb9\x05\xc8\xb1\xbe\x63\xf7\xec\x94\x1f\x6c\xbf\x4b\xcb\x09\xe8\x39\x59\xd3\x00\xb7\xae\x84\x5c\xda\x81\x0d\x8e\x58\x2f\x98\x08\x04\xf7\x03\x1d\x53\x73\x4d\x20\x9a\x67\x75\xa0\xb5\x34\x57\xc0\x37\x0b\x27\x0e\x6f\x76\x83\x7e\x03\xcb\x9d\x38\x02\xc7\x95\x0e\x29\x35\xdf\x1f\xb0\x20\x5d\xf4\x27\xe5\x8d\xfb\x43\xaf\x75\x0a\x10\x3e\xd8\xe6\xa1\x8c\xf5\x7a\xa5\xea\x1f\x03\xcf\x92\xbf\xe8\x21\xdb\x81\x8d\x62\x36\x19\x64\x40\xe6\x92\xa3\x13\x55\xd8\xef\xaa\xf7\xe8\x31\x35\xce\xd0\xf4\x52\x18\x17\x12\xa2\x1a\x3d\xbb\x2d\xef\x85\x33\x1c\x8e\xa7\xd9\x65\x83\x18\x1c\x4c\x84\xe7\xa1\xfc\x79\xe2\xaa\xd9\xc8\x5d\x21\x6d\x41\x93\xe5\x62\x0c\x91\x2c\x2b\x73\x4c\xcd\xec\x7d\xf6\x7d\x04\x6c\x41\xef\x5a\xd8\x5f\xe3\x31\x20\xba\x39\xe7\x95\x74\x0c\x08\x43\x68\xd1\xd3\x88\x63\x20\x83\x09\x17\x44\x67\xe2\x43\xf8\x9d\x80\xe7\xcc\x2a\x63\xe6\x97\x9e\x36\x1c\x01\x4c\x4c\xac\x0a\x71\x2b\x82\x89\x0c\xe9\xaf\x9c\x6e\xd0\x53\x1a\xde\x78\x81\xd4\xfa\x28\xe4\xa3\x44\x6e\x1b\x15\xb8\x9d\xd3\x82\x9b\x63\x07\x10\x06\x43\x81\x04\xdb\x86\xd4\x8a\x91\xdd\xd3\x38\xa3\x1e\xb5\x32\x51\xc4\x17\x65\x23\x83\x50\x92\xf1\x8a\x0f\x3a\x29\xf9\x2e\xd5\xd4\xf5\xd6\xe3\xad\x4c\x9d\x0d\xec\x55\x48\x9c\x19\xe2\x69\x81\xf8\xcc\x82\x72\x92\x1c\x8f\x4c\x2c\xbe\x84\x12\xdd\xe0\xb6\x18\x1a\x48\xae\x56\xba\x51\xc6\xcb\x36\x89\x47\xe8\xc3\x68\xab\xbd\xc2\x57\xc2\xd9\x68\xa2\x6b\xc8\x6c\x9d\x90\x6b\x99\xcc\xd8\x91\x1d\xcb\x04\x23\xc7\xc5\x62\x31\x5e\x28\x35\xb7\x97\x56\x3b\xb3\xaf\x57\x31\xed\x01\xf0\xd1\xeb\x11\xaa\x5c\x70\xbe\x08\x5b\x0c\xe6\x9f\x9b\x13\x7d\x1f\x2f\x26\xa3\x35\xb2\x28\x0b\x23\x85\x93\xb6\x1c\x2d\xcd\x99\x22\xf1\x28\xe6\x40\x22\x69\x4c\x59\x57\xd4\xf5\xea\x1e\x0e\x23\x1c\xf1\x30\xae\x33\xcd\x08\xfa\xdb\x91\xe8\x13\xc2\x7a\x14\x82\x88\x36\xce\xc3\x6e\x25\x1b\x90\x30\x83\x5f\x87\x33\x3e\x51\xa6\xb0\x21\xd8\x4f\x1a\xb1\x3c\x18\x54\x89\x39\x1a\x6a\xf2\x5c\x06\xc5\x42\x74\x15\xb7\xe4\x2e\xd3\x1b\x69\x43\x6e\x55\x8c\x35\x4f\xe2\x92\x0c\x33\x81\xa7\x2f\x49\x9d\x25\xd2\xe8\x8a\xb8\x34\x98\x9b\xf4\x29\xae\xc6\x3a\x2d\x44\x20\x6d\x71\x91\xee\xb7\x16\xc5\x65\x68\xd0\xa8\x8e\xaf\xc3\x96\x1b\x2b\x32\x43\x69\x7b\x7e\xe2\xea\x6d\xb6\x1d\xec\x3a\x1f\xa7\xf1\x20\xa5\xca\xb6\xd6\xde\x51\xb8\x86\x25\xfe\x4c\x39\x1b\xed\x43\xe6\x2b\xed\xc5\xeb\x32\x77\x29\x9d\x5e\xe5\x31\x1d\x7f\x81\x84\x99\x43\x85\x1f\x5e\x64\x90\xfc\xf8\x6a\x0a\xea\x0e\x66\x95\x22\x61\xde\x1c\xcc\x4a\xbc\xb3\xfb\x29\x2a\x00\xd3\xa6\x0e\x3a\x8d\x84\x12\x72\x62\x70\x8a\x2f\xeb\x3c\x88\x5f\x91\xec\xda\x3c\x1b\x14\x76\x20\xf6\x3e\x04\x19\xb9\xd1\x33\x54\x36\xeb\x11\xdb\x9f\x4e\x7b\xc4\x0e\x8a\x80\xc0\x7e\x9d\x7b\xaf\x39\xb7\x5e\x63\x03\xba\x88\x5d\x36\xf7\x20\x25\x34\x45\xac\x4e\x4e\x9b\x69\x0c\x30\x08\xa3\x1d\x86\x8c\xaf\x3b\x38\xaf\x76\x59\xff\x9c\xa2\x37\x75\x46\xb6\x35\xb3\xc6\x20\xe7\x2c\x07\xdd\x7a\x6d\xb0\x50\x09\xad\x3e\x4f\xa1\x43\xda\x08\xbc\x00\xe5\x78\x6b\xbf\x06\x50\x64\x7f\x3e\x5c\x5f\x3e\x00\x1e\x3a\xf0\xa7\x22\xe4\xcf\x12\x46\x88\xd6\x3b\x6d\xde\x0f\xd7\x97\x14\x91\xd1\x6f\xd5\xa1\x34\x3d\xf1\x72\x99\x8d\x21\xc9\x18\xa3\x61\xa1\x8b\x34\x7c\x95\xa8\xfa\x23\x03\x83\x30\x35\xc3\x8c\x46\xa8\xd5\x9b\xad\xdf\x2b\x74\x51\xf0\x00\xae\xd8\xb9\x39\x5c\x71\xfc\x8e\x20\x88\x85\x39\x67\x3c\x96\x68\x65\x24\x6e\x19\xe7\xfc\xa0\x66\x45\xff\xbb\xc7\x35\x47\x1d\xc5\xfc\xe3\x8d\x13\x2f\x11\x66\x5a\x9e\x86\xc6\xf9\x03\xd9\xec\xce\x23\x78\x27\x77\xe8\x1e\x07\xa0\x7e\x7a\x10\xc7\x22\xb8\xba\x3e\x13\xef\xe8\xd7\xc3\xe0\xe8\x22\x3b\x95\x39\xcf\x3e\x1f\xea\x6b\xee\xa8\x00\xe8\xfd\xe0\x58\x30\x64\x13\x2e\x12\x14\xfe\x3e\x38\xd5\xff\x43\xfc\x1d\x36\xf7\x3f\xc4\xdf\xb5\x69\xd4\xe7\x7f\x04\xfd\x7a\x8c\xb6\x05\x84\xe3\x74\xf2\xec\x9d\x14\x77\x30\x08\x58\x2c\x3f\x8c\x86\xb6\x1d\x2f\xe8\x92\xb9\x64\x5f\x21\x9d\x0f\xde\x20\x41\xa2\xee\xf5\x72\x18\x31\xfd\x8d\x44\xdb\xdf\xdf\xc9\x26\xe8\x05\x7e\x89\xff\xdb\x9a\x8c\x16\x62\x10\x62\x74\x4e\xbc\x95\xae\x76\xf4\x6c\x94\x9d\xac\x92\xe7\x3e\xba\x18\x96\x31\x9c\x8a\x2b\xdf\xcd\x95\x72\xce\x62\xc4\x36\xc5\xe3\x1a\x1d\x3e\x66\x9c\xbf\xb9\x57\xbd\x8f\xd7\x0c\x5e\xdc\x5a\x71\xad\x36\x43\x2b\xfb\xfc\x45\xe6\xb8\xc0\x78\x5a\x02\x1e\x56\x51\xe0\x19\x02\x83\x23\x7a\xc6\x95\x91\xdd\xf8\x36\x93\x35\x98\xc0\x3a\xf5\xe4\x40\x69\x5c\x0b\xc9\x8a\x0e\x85\xc5\x27\xec\x6d\xb6\x74\x05\x51\x54\x9c\x8d\x06\xb7\x01\xef\x5c\xe6\x5a\x41\xa6\x10\xb1\x0d\xe4\x11\x62\xa6\x05\xc9\xac\x23\xf8\x84\xe0\xfb\x98\x91\xb4\x46\xd0\xe4\x98\x65\xf4\x4a\x37\x69\xcd\x08\x2a\x04\xd9\xa0\x26\xa1\xd1\x55\xe9\xc0\x30\xdf\x0e\xe4\x14\xf7\x0c\x36\x28\xfd\x7c\x1f\xdc\xea\x4e\xc1\xa2\x14\x95\x7c\xe9\x96\x83\x92\xb1\x6d\xb8\x21\x78\x92\x4a\x2f\x21\x70\x9e\xc7\xf8\xa2\x1c\x72\x04\xc5\x4f\x74\x14\xe3\x66\x9a\x37\x9a\xa6\x59\x9f\x22\x7a\x9d\xad\x61\xb4\xdd\xd7\xa6\xd1\xf7\xba\x19\x64\x8b\x8d\x79\x08\xef\x1f\x4a\xbc\x20\x0f\xaa\xfe\xfe\x38\xee\x51\x87\x70\x87\xc7\x38\xd3\x68\x0d\xb9\x4e\x5e\xbe\x67\x7b\x04\xc4\x27\xda\x37\xf0\x4e\x42\x6f\xdd\x22\xf9\xeb\xcd\xf5\x6d\xa4\x4c\xc3\xf5\x41\x4e\xcb\xc2\x2a\xfd\x69\xc2\x35\xb0\x41\xc2\xaf\x3d\xe0\xc4\x73\xfa\x85\xf4\x72\x16\x2c\x4c\xe8\xfb\x60\xa5\xaf\xb0\x10\xf2\x06\x8d\xf4\x32\xdd\x68\x18\xcb\x4e\x45\x96\x72\x75\x37\xab\x2b\x99\xc5\x3f\xb3\xbf\x72\x75\x0c\x0c\x5c\x90\x15\xf0\x15\x05\x54\x0c\xe4\xf4\x64\xca\x0c\x4d\x94\x86\xd7\x39\x69\x0a\x0d\x4e\xaf\x03\xb0\x2b\x63\xd7\x9d\x99\x7a\xa0\x7c\x74\x84\x4d\x9b\xa3\x47\x47\x06\x2a\x74\xa0\xf0\xb8\xfd\xcf\x8c\xd6\xf1\x81\x4a\x84\xe8\x8b\x9e\x66\x8e\xe3\xfb\xc3\x51\xc2\x96\xf9\x83\xc9\xb5\x63\x40\x2b\x39\x6e\xf9\x54\xe9\x70\xca\x2e\x16\x30\x8c\xba\xf6\x38\xe4\xa7\xac\xfc\x3d\x8d\x76\x6f\xe4\x7a\x38\x73\x8d\x94\x1b\x25\xb9\xe3\x6d\xc5\x17\x89\x34\x00\xe7\xc1\xb1\x49\x60\x6e\x50\xb3\x0b\xe7\x67\xa7\x4c\x83\xc6\x61\x6b\xd2\xe3\x4f\x24\xe1\x87\x57\xca\x17\xf4\xcb\xc7\x24\x87\x79\x64\x41\x45\xf0\x05\x7f\xb1\xd3\xdd\x1f\x4c\xb0\xde\xa9\x3d\x9b\x61\x25\xc9\x49\xde\x21\x7f\x19\xe8\x32\xba\xd4\x0a\x04\x77\x06\xd5\xec\x89\x90\x5c\xa3\xc7\xa6\x85\x02\xfd\xf1\xe6\x95\xde\x8a\xe6\xbc\x14\x65\xf2\x4c\x53\x8f\x4c\xcd\x40\xce\x85\xfe\x14\x26\x67\x47\x0b\x8c\xdc\x0a\x16\xb8\x4a\xb7\x82\xd3\xf5\x32\xaa\x38\xf8\x16\x9c\x2a\x1b\x6d\x9f\x5b\x56\xe5\x0d\x9b\xe9\xd2\x6c\xb1\xe2\xf2\x9b\x82\x87\xc2\x7a\x4c\x8f\xa7\xb6\x14\xa1\x31\x57\xb9\xa6\x07\xab\xe3\xe3\x71\xb4\x66\x1f\xf0\x45\x18\x1a\x45\xb7\x2f\xc7\x46\xee\x62\x76\xd4\xd8\x59\x58\x2e\x24\xe3\x5b\x19\x0a\x6d\x59\x3e\x4f\xe0\x57\x34\x78\x3e\xe6\xaa\x35\x0c\x14\x92\xbc\x82\xd4\xde\xd6\xcb\xc9\xc0\x17\x71\x43\x4a\xc7\x20\xac\xcd\x21\xbf\x90\xc8\x48\xe6\x65\x17\x85\x70\x05\x6c\x3c\x06\x99\x60\x1f\x64\xe4\x7b\x5b\x8c\x1d\xff\x73\x2e\xeb\x65\x98\xad\xfa\x72\x05\xb0\xf0\xf6\xa4\x31\xe1\x45\xca\xfa\x93\x91\x62\x25\x5e\x10\xb1\x76\x05\x2d\x16\x76\xc3\x6a\x4b\x17\x42\xa8\x44\xe1\x18\xe6\xef\x6f\x6e\x05\x69\xe3\x7c\xaf\x37\x1b\x38\xe1\xc5\x9f\xb7\xca\x60\x50\x59\x67\x77\x8a\xc9\xe7\x6a\x35\xf4\xa8\xde\xa0\xe8\x99\x7b\x15\xbc\xf8\x99\x86\xcf\xbb\xdc\x95\x70\xd0\x1f\x90\x15\x93\xc0\xf8\xde\x68\xe5\xdb\xa9\x95\x5e\x1f\x16\xe2\x52\xc9\xde\x50\x30\xca\x60\x78\xf9\xe0\x1b\xba\xd8\x13\xf4\xfc\xf0\xec\xa9\xcc\xd5\x96\x3c\x24\xf9\xfe\xe0\x93\x70\x32\x3c\x63\xd0\x39\xb7\x79\x61\x84\x1f\xba\x32\xc4\x53\x81\xce\x7e\x0d\x87\x8c\x60\xbf\x04\x5f\xb3\x0f\x26\x6d\xc8\xa3\x97\x52\xd5\x5f\x4b\xd9\x19\xd5\xc2\x93\x16\x93\xdb\x72\x26\x6e\x95\x43\x3f\x6b\xf8\xfd\x05\xf0\x30\x04\x37\x14\xc6\x0e\x4d\xd1\x51\x79\x47\xcb\x22\x62\x0d\x01\x77\x91\x65\x0b\x63\xe4\xa6\xea\x9e\xd9\x3a\x52\x17\xb1\x69\xfb\x71\x3f\x69\xed\x93\x15\x12\x55\xf7\xb7\x41\x0d\x0a\x03\xb9\xef\xe4\x81\x02\xb4\xae\xd5\x5e\x38\xb5\xb2\xa6\x71\xe1\x01\xbf\xf6\xf8\xc8\xd0\x89\xa1\x0b\x8f\x3e\x27\x53\x32\x6d\x5b\xa9\x4b\x56\xce\xcf\x81\xb8\xce\x92\x47\xad\x6b\xfe\x39\x05\xa2\xfb\x78\xe8\xd5\x6b\xfa\x35\x05\xe9\x38\x00\x59\x0c\x45\x36\x05\x59\xda\x06\xe6\xec\x17\xdb\x1c\xa6\x6a\xd0\x30\x3b\x51\x17\x8a\x7b\xb9\xb3\x7b\xbc\xe1\x59\x1e\x30\x43\x7b\xa7\xda\x35\x85\x0a\x01\x01\x53\x05\x5f\x10\xc8\xb1\x44\x77\x15\x82\xb6\x10\x8f\x13\xea\x6b\xf1\x45\x53\x6e\xb4\xc6\xd1\xd3\x73\xff\xdf\xe3\x36\x91\xa7\x08\x6e\xd7\x1b\x12\x0e\x70\x36\x51\xff\x49\x31\x2b\x4f\x41\xb8\xee\xb2\xd7\xb4\x41\xaf\xd3\x51\xbc\x48\xd5\x20\x0d\xc0\xf0\x3b\x01\x84\xa4\x2b\x7a\xac\x9d\xb9\x87\x4b\x3c\xb5\x76\x58\xcf\x4c\x8b\xd8\x9d\x1f\x0c\x10\x39\xf2\x9b\x40\xa4\xf7\x02\x08\x14\x1c\x03\x8f\x79\x24\x06\x4f\xca\xd5\xd7\x05\xf9\xc8\x08\x70\x9c\x18\xbb\x61\xc6\x8e\xe3\x40\x92\x92\x05\x08\x6b\xd0\xa9\x64\xb6\x81\x30\x56\x1f\xae\x2f\x73\x62\x78\x2a\x24\x9c\xbf\xa4\x92\xe8\xd5\x46\xf6\x4d\x70\x49\xc1\x84\x79\x2b\x3d\x11\xe0\xdc\x5f\x3d\x3a\x58\x62\x14\xf4\x98\xf8\x4e\x1b\xf4\x41\x88\xb2\x03\x2b\xbf\x40\x8c\x4b\x66\x00\x40\x8b\x87\x0e\xc8\x33\xd1\xfa\x50\x0f\x76\xf9\xfb\x7f\xbf\x79\xff\xee\x54\x7c\x7e\xb2\xdf\xef\x9f\x40\xf1\x27\x43\xdf\x2a\x03\x5d\x68\x4e\xc5\xff\xf5\xf6\xf2\x54\x28\xbf\xfa\x61\x21\xde\x12\xd5\x4e\xc4\x90\x2d\xf1\xd0\xca\x16\xcd\xda\x86\xfe\x5f\xa0\xe6\xbc\x63\x58\xb1\x98\x07\xf0\xcb\x99\x3b\x98\xbd\xf0\x06\x2b\xc4\xbe\xc3\xb7\x58\x19\xa3\xb0\xea\x15\x3e\x61\xc2\x1f\x59\x46\x2b\x57\x77\x73\xe1\x31\xc6\x20\x7a\x65\x0d\x37\xe3\xcd\xca\x9a\xb2\x0d\x04\x12\xac\xf6\x2f\xd0\x5e\x3f\xa9\x3a\x61\xe2\xe2\x29\xbc\x55\x06\xa8\xd4\xd0\x36\xe5\x01\xb3\x54\x61\x22\x54\xf3\xf3\xb8\x30\xba\x1b\xc2\x98\xf2\x67\xe2\xdf\xd1\xdd\xc6\x36\xdc\xf4\x43\x56\x58\x5b\x08\xbc\x18\x17\xc6\x38\xa1\x99\xf4\x73\x26\xde\x50\xc0\xd2\x20\x7d\xa5\xbc\x28\x81\x4d\x90\xb0\x32\xec\x4c\x5c\x2a\x2f\x76\x51\x39\x86\x6b\x8d\xd0\x4d\x8b\x94\x96\x60\xf3\xd9\x61\x5c\xe8\x7a\xf3\x94\x3d\x10\x05\x33\xa9\xe9\x38\x14\x97\x7f\x85\xc5\xe3\x03\xa0\xf1\x3e\x34\xbf\x24\xa4\xf7\x2f\xa7\xf4\xaa\xa7\x39\x15\xe1\x45\xcc\x29\xdb\x7b\x9c\x86\x47\xb4\xcd\xa9\x18\x4c\xfa\x4d\xaf\x11\x58\x20\x0a\x9f\x68\x6f\x06\x9f\x7c\x03\xb4\xed\xad\xd1\xbf\xcf\x0c\x0a\x1e\xa6\xe4\x2d\x6a\x76\x92\x33\x0a\x1f\x2e\xcd\x72\x51\x3c\xa3\x3e\x48\x5a\x43\x04\x60\x35\xce\x48\x06\xa7\x2f\x94\xc7\x78\x11\x73\xd4\x84\xb4\x55\x71\xdd\xa5\xfd\x1f\x28\x34\x9f\x9f\xc4\x8a\x92\xaf\xdd\x82\xfe\x21\xf1\x2b\x25\x9e\xf9\xe3\x7c\x62\x3a\x90\xf1\xae\x4c\x5d\x27\xfc\x19\x03\x8e\xea\x98\xb0\x45\x3c\x15\x53\x71\x2a\xd5\x70\x8c\x03\xa4\xb7\x82\x81\x33\x09\x31\xab\xd0\x61\xf9\x8b\x98\x56\xf2\xd3\x81\xce\xe0\xc9\x51\x12\x19\x74\x43\x80\x94\x20\x3f\x13\x80\x33\x2f\x5f\x1b\x01\x08\xbe\x35\xd2\xc6\xab\xe0\x28\x6e\x12\x63\x20\xe7\x55\x08\x6b\xf0\x18\x4d\x9e\xad\x47\x99\x8d\xdd\x49\xb4\x74\x79\x81\x3f\x26\xb4\x69\x2b\x8d\x21\xab\x3e\xfa\x95\x8f\x56\xd7\xda\x43\x08\xc3\xf0\x02\xbf\x38\xb4\x54\xde\xb3\x04\xc6\x9d\x4a\x90\x73\xb8\x12\x33\x8d\x50\x88\x1d\x65\xca\x5e\xc9\xe6\x09\xd2\x32\x92\x27\x17\xe2\x76\xab\x0e\xd1\x91\x1f\xc6\x6d\xc2\xdb\x85\xd2\x67\x35\x3e\x78\x0a\xd1\x0c\xb2\xa1\x41\x57\x71\x79\x07\xfe\x92\x05\x6e\x66\x29\xca\x1c\x44\x93\x9a\x91\xeb\x2d\x0a\x3b\xd4\xb9\x5e\x4c\xc3\x07\x44\xa8\x71\x98\x83\xd4\xd3\xa3\x61\x0e\xf2\xa2\x79\xac\x83\xac\x28\x9e\xfc\x71\x10\x66\x0d\xaf\x8a\x69\x99\x46\x32\x48\x5d\xfd\x8a\x60\x06\xf3\x33\x37\x16\x9d\xbe\x38\xd5\x0f\xd9\x5d\x36\x79\xe7\xbe\x22\xac\xc1\xd8\xdb\xc8\x57\x48\x51\x73\x6d\xc9\x4d\x8e\x62\x03\xbe\x64\x85\xd9\xe8\xf5\x7a\x41\x6e\xdb\x6a\x67\x87\x1e\x23\xee\xfe\x82\xdf\xe2\x06\xbf\x09\x84\xdd\xf4\x9c\xb1\xbf\x1e\x4a\xe4\xe7\x8e\x67\x6c\x02\x44\x89\xf8\x10\x03\x35\x0e\xf7\x52\xb7\xc8\xbc\x9e\x89\x17\x7a\xbd\xa6\x47\x19\xef\x2c\x06\x81\xa2\x9c\x05\x15\x01\x21\xa6\x86\x5f\x18\xf5\x00\xed\xe4\xb6\x76\x4f\x85\x6e\x20\x25\x03\x73\x5d\xab\x3d\x7a\xbc\x03\x30\xf8\x40\x9f\x77\x19\xc4\x60\xd0\xa3\x4f\x80\xf9\x40\x9f\x39\x14\xa0\x8c\xef\x22\x83\x0a\xf6\xa4\x89\x6e\x68\x50\x78\x48\xca\x59\x5c\xa1\x01\xee\xa4\x81\x65\xa5\x51\x3a\x48\x20\xb9\x17\xf1\x93\x26\x2a\x86\x12\x04\x0f\x34\x12\xac\x5f\xde\xbc\xa3\x4f\xf4\x50\xc7\x8e\x0c\xd0\x71\xdf\x4b\xdd\xf2\x78\x73\x04\xb4\x0e\xdd\xe0\xa8\x26\xb8\xe7\x81\x3c\x91\x25\x67\xa6\xfc\xb9\xeb\x3e\xc2\xe1\xad\xad\x77\xd2\x1c\xe2\x23\x9f\x1b\xbb\x53\x2c\x19\x81\x04\x45\x51\x6c\xb7\x76\x9f\xbd\x7b\xb0\x56\x40\x11\x86\x0a\x03\x12\xb4\x14\x80\xb6\x0a\xde\x0a\x17\x73\x5e\x0b\x43\x1e\xb9\x9b\x24\x6d\x39\xed\x52\x06\x89\x10\x4d\x2f\xd7\x68\x86\x0e\xff\x63\x6a\xd7\xab\x54\xec\xaa\x57\x4f\xc6\xc5\x9c\xe7\x25\x75\x83\x3f\x62\x3a\x9b\x91\xc3\xbf\x98\x26\xb7\x64\xc2\x98\x66\x26\xcd\x58\x78\xf1\xe0\xad\x38\x71\xec\xdd\x88\x37\xe2\xa8\x42\xdc\x05\x29\x18\x3c\xee\x91\x0b\xdb\xa8\xa2\xaf\xb9\x7d\x3a\x06\x72\x71\x5b\x11\xc7\xc7\x5b\xa1\x3d\x05\x69\xe8\x7a\xdb\x0c\x2b\xbf\x28\xda\x5d\x94\x26\xf6\x45\x85\xd5\x28\x5a\xbb\x41\x19\x03\xdd\xd1\x51\x6c\xad\xc1\x80\xb8\xed\xc9\x16\x4f\x66\x54\x57\xef\xba\x9e\x34\x86\x01\xbd\x97\x9b\x18\x44\x42\x6e\xe8\xe5\x6d\xca\x43\xfd\x54\x88\x90\x59\x94\x49\xd1\xea\xc3\xa5\x70\xf2\x69\xe5\xe5\x06\xf9\xbe\x55\xee\x3f\x14\x98\x58\x6b\xe8\x72\xdb\x6d\xb3\x06\x14\x27\x4e\x48\x9d\x9e\x32\x21\xa7\x34\x4d\xcd\x96\x05\x6f\x67\x76\xe3\x18\x73\x40\x3e\x22\x26\xff\x92\x7e\x2d\x16\x8b\x99\xd5\x34\x0d\x73\xd2\xf5\xea\xc9\x78\xae\x33\xf8\x38\x00\x7f\x56\x8f\xdb\x56\x74\x56\x1b\x2f\xc8\xd4\x5a\xfa\x62\xa5\x04\x85\x29\x4f\xad\xb6\xe6\x09\x1e\x5f\xa9\x19\xe3\x07\x06\xb1\x3a\x5e\x28\x69\xc9\x4c\x56\x3b\x06\x60\xe0\x9d\x82\xb6\xdb\xe5\x76\xc1\xd5\x93\x36\x0c\x3e\xa2\x98\x6c\x34\x62\x0e\x13\x54\x79\x51\x36\x03\x4c\x47\x21\x67\x25\x05\xfb\x18\x66\xfe\xf4\x0b\xf5\x8c\x8d\xb5\x31\x6a\x9d\xeb\xac\x89\x77\x4e\x5e\x6e\x1e\x38\xeb\x26\xb5\xe5\x17\x37\x54\xc5\x17\x0e\xb7\xf1\x1e\x28\x4d\xbf\x33\x3c\xcc\x82\x00\x05\xe5\x3d\x32\x61\x41\x26\xb8\xf8\xa9\x4c\xb6\xaf\xc2\x3a\xc0\xf4\x54\x22\x3c\x53\xc6\x83\x39\xfc\xae\xaa\x8f\xb6\xdf\x7c\x4a\x61\xbc\xa3\x1e\xbf\x50\xc5\xa3\x36\x07\x60\x62\xd8\xcd\x23\x80\x29\x14\x67\xc2\x18\x16\xf0\x2b\xd8\xa6\xa5\x06\x1e\x00\x48\x97\x86\x21\x1b\xd8\x08\x93\xa3\x36\x2c\x82\xcb\x60\x8a\x20\xcc\x6f\x13\xf2\xea\xc8\x93\x6f\xb2\x78\xff\xc0\x8e\x47\xd8\x38\xf2\x4c\x5c\xe1\x8f\x4a\x9b\x7b\xed\x81\xaf\xd8\x29\x32\x67\x79\x83\x09\x78\x0e\x59\xa3\x2a\x32\xa1\xa4\xa8\xe3\xae\x42\x97\x96\x7c\x75\xe0\xf0\xc5\x2c\xfe\xe2\xf4\x51\xa0\xdd\x22\x30\x6e\xe6\xa7\x11\x43\x56\x17\x0f\x2a\x00\x39\x8e\xca\xcc\x53\xab\x18\x05\x3d\x84\x3e\xc7\x21\xc4\xd4\x87\xa0\x8b\x90\x08\x40\x1d\x86\xe0\xc3\x08\x71\xe1\x5b\x62\x43\x42\x0e\x2e\x2a\x0c\xa3\x6d\x0a\xe7\x0a\x6e\x91\xaa\xc9\x68\xcd\x96\xde\x61\xa5\x62\xc0\x34\xa2\xc9\xe4\xcf\x04\x5f\xb8\x05\x67\x05\x8b\xa4\x90\x26\x94\x2c\x5a\x75\xaf\xda\x42\xe3\x82\x88\x40\x42\xf8\xf9\x48\x20\xe0\x69\xd8\xf8\x6f\xf7\x35\x3f\xc5\xf1\xa0\xb7\x79\x44\x97\x06\x34\x6b\x4c\x0a\x41\x3f\x6d\x44\x95\x19\x5d\x7e\xd3\x53\x8a\xf9\xb0\xb5\xb9\x32\x7a\x14\xbf\x36\x66\xcd\x05\xb2\xfd\x67\xac\x52\x4b\xd0\x8c\x98\x15\x03\x17\x31\x7d\xed\x45\x34\x1b\xbb\xda\x7e\xf3\xaf\xd9\xba\x96\xe1\xd9\xc7\xad\x9e\xc4\x5a\x2d\x1a\xfd\x6d\x31\x57\x8f\x1a\x6e\x14\x14\x66\xac\xda\x98\x04\x02\xc2\x0e\x3e\x58\xa4\x0c\x0b\x94\x37\x38\xaa\xe3\x33\xc3\x09\xbe\x6b\xa5\x80\x40\x74\x25\xf7\xe5\xa8\x40\x47\x2e\xdc\x1f\x0a\x0f\x34\x6e\x25\x50\xa6\xe8\xa9\x28\x6f\xe4\x83\x25\x72\x6e\xc6\x8e\x2e\x6f\xff\xf9\x90\x41\xf3\xf7\xa8\xe7\x4d\x13\x74\x5c\x1c\x21\x24\x8c\x5f\xd2\xa3\xad\x33\xcf\x9d\xe3\x80\x50\x69\xe4\x90\x6f\xe5\x17\x06\xc5\x7a\xab\x98\xd6\x2f\x52\x34\xf9\xba\x08\x13\xf4\x36\xc5\xab\x4f\x11\x83\x7e\x8a\xc5\xd8\xa4\x32\xc4\x50\x1c\xa5\x27\xfa\x8a\xcf\xfc\x3a\x8a\xd9\x93\x80\xe8\x9b\x22\xbc\xce\xe5\x8c\xcb\x97\x75\xd0\xff\xba\xb7\xad\x8a\x0d\x15\xd7\xb6\x55\xa9\x79\xa5\x9f\x9e\xb2\x60\x2c\x13\xd3\x59\x5d\x10\x62\xb6\xc4\x74\x0a\xbf\xcf\x01\xbb\x62\x2a\x9f\xb1\xb9\x3f\x65\xe4\xc7\x19\x3b\x8a\x37\x3f\x8d\xa1\x0d\x3a\x2e\xe5\xd3\xf8\x9d\xdd\x57\x74\x14\x2f\xd0\x11\x10\x85\xb7\xe7\x94\xb2\x52\x4a\x03\xce\x28\x79\xfa\xbe\x06\x19\x8b\x62\xb5\x4d\xf3\x47\xa1\x40\xf0\x24\x8a\x41\x40\x38\x64\x1c\x32\xf6\xec\x6e\xca\xd0\x65\x73\x19\xc4\x82\xb0\x8e\x1c\x8c\xd3\x23\xc8\xa2\xde\x1c\xe2\x6b\x2a\xc6\x07\x6e\xe3\xea\x4e\x83\xe2\x17\xf5\x71\xf1\x19\x87\xda\x85\x76\xa0\x85\x63\x6a\x07\xbe\xb3\x2b\xdb\x91\x43\x7c\x4d\x3b\xa0\x16\x74\x6d\x42\x82\xe2\x03\xed\x91\x4d\x08\x51\x5c\x18\x62\x8d\x9b\x98\xa2\x49\xdc\x66\xe7\x3f\x1a\xb3\x35\x23\x7e\xc6\x2d\xe6\x8e\x54\xca\x21\xdb\xa3\x19\x96\x83\x0c\x4b\x67\x83\x18\x7e\x99\x08\xa0\x0f\x19\x28\x19\x41\x33\x93\xd1\xc2\xc7\xef\xf4\x5c\xa2\x76\x25\x16\x11\x79\x05\xa6\x0d\x9c\xf9\xe5\x23\x99\xe0\x82\x93\x7b\xe2\x17\xf3\x43\x05\x19\xc6\x30\x93\x0d\x42\x24\x83\x16\xd8\x60\x59\xad\x53\x64\x91\x98\x23\x54\x24\xe2\x53\xb8\xb0\x63\x73\x6e\x2f\xbb\x85\x50\x78\xd9\x12\xba\x1a\x0c\xf8\x10\x6a\x27\x0f\xe3\x20\x7c\xc0\x62\x97\xbb\xe6\xb8\x60\x35\x6d\x4a\x3a\xd7\x5f\xe9\x7b\x65\xd2\x82\x39\x2a\x5c\x2d\xf2\xad\x3e\x5d\x20\x69\xd9\x6d\x7a\x74\xaf\x13\xe6\x1a\x88\x45\xb6\x14\x10\xe1\x4f\xb1\x97\x2b\x69\xc6\xd4\x00\xed\x68\x94\xdc\x3d\x7e\x88\x28\x7c\x43\x03\x90\x6c\x3c\xdc\x02\x24\x0b\xe4\xd0\xcd\x34\x39\x09\x78\xa8\x21\xb4\xe7\xbf\xa1\x21\x48\x37\xbe\xb2\x21\xa7\xa1\x15\xc4\x9d\x00\x15\x98\xdb\xff\x0f\xb5\x6f\x24\x3e\xe1\xe2\xbc\xce\x65\xa8\x40\x0c\xd0\xbe\x0c\xe5\xbb\x59\xfb\xb2\x4c\x4d\xbd\x58\x8c\x77\x49\x66\x20\x97\xed\x94\xcc\x16\x37\xb4\x05\x4d\xe1\xf8\xcd\x02\x9f\x72\x09\x95\xb1\x86\x82\x1c\x1b\x9f\xbf\x6b\x28\xe3\xfe\x3c\xee\x81\xfd\x38\x30\xa7\x83\x01\x1a\x8a\xb0\x45\x29\x86\x0c\x49\x82\x68\x12\xd2\x3b\xbf\xa8\xaa\x8f\x38\x57\x9f\xaa\x46\xba\xed\xd2\x4a\x8c\xc9\xff\x22\xfc\xae\x48\xc3\x46\xd7\xe2\xae\x2a\xc2\x67\x8e\x38\x34\x57\x8d\x06\xb5\x18\x4f\x39\xf8\x2d\x08\x81\x51\x7a\x38\x2f\x12\x1c\x45\x94\xdc\x04\x16\x71\x33\xf0\xb3\x6e\x36\xa1\xc5\xb7\x78\xce\xab\x9d\x78\x47\x09\xd5\xce\x1a\x4d\xd6\x7a\x6f\xe9\x97\x36\x9b\xaa\xf0\x4d\xf0\x12\x3e\x28\x52\x31\xa7\x5c\x4a\xe7\x2b\x6f\x3d\xc6\xa6\xba\x85\xff\x3f\x89\x93\xa6\x4a\x5d\x47\x5d\xb8\x76\x1e\x99\xa7\x9b\xf0\xdb\x65\x00\xc9\x16\x86\x5c\xab\xf0\x47\x8e\x02\xdb\x89\xaa\xfb\x21\x6b\x37\xb7\x12\xb1\x0e\x6e\xae\xca\xe0\x71\x00\x8d\x48\x1a\xe9\xe5\x32\x28\x75\x9e\x2d\x51\x57\xbb\x7c\x4e\x0a\xcf\xd3\x2c\xa1\x98\x91\x3c\xa3\x8b\xe1\xb3\x8b\xe4\xf2\x2c\x4d\xe9\x14\x0d\xae\x48\x72\x5e\x96\x75\xc9\xd5\xa4\x96\x70\x71\x93\xa7\x05\xab\xe9\x94\x12\xec\xa7\x0b\xec\x65\x0c\xe5\x3c\x8b\x1e\x0a\x14\x49\xf4\x28\x65\xd4\x13\x52\x27\xe7\x69\xad\xdd\x68\x23\x48\x45\x5d\x76\x8f\x19\xf6\x12\x67\xf0\xdc\x51\xa0\x40\x77\x8a\x79\x0a\xde\x21\x7b\xe9\xca\xd2\xb8\x41\xf3\x04\x7e\x11\x3f\x01\x4c\x7e\xfb\xdc\x62\x6e\x21\x05\x39\x3c\x2e\x26\x12\xc6\xe7\x20\xdd\x5e\x53\x38\xad\x1b\xfc\x31\x0b\xd3\x0f\xa8\xac\x1c\x4c\x96\xbb\x6a\x95\x34\x35\x87\x99\xb6\x1c\xd3\xee\x02\x12\x43\x48\x69\xf1\x1e\xf7\xa3\x7b\xb0\x50\x76\x30\x9e\xb7\xad\xe0\x30\xd6\x5c\x32\x7b\xa0\x30\x7f\x42\x26\xcc\x7c\xd6\xb2\x79\x98\x4c\x02\xa2\x4b\xac\x87\x44\x9f\x61\x6c\xe4\x10\xb2\xbf\x0a\xc7\xa8\x95\x09\x22\xa2\xf9\xf6\xa6\xe2\x01\x00\x04\x5f\xdf\xab\x51\x23\xcb\x58\xbf\x0c\xf2\x05\x0c\xa3\x26\xce\xa2\xf8\xf6\x46\xe2\x51\x6b\x36\x74\xec\x1c\x69\xe4\x01\xe3\x90\xf7\x0d\x4b\xae\xad\x75\x1e\x75\xcf\x14\xc4\xe9\x61\x94\xc7\x5a\xfd\x20\xce\x6f\xe8\xc6\x46\xfb\x7a\xb3\x4a\xcd\xb7\x62\x23\xfb\x25\x50\x6e\x38\xdd\xd9\x11\x82\x35\xa5\xae\x73\xbe\xf8\x43\x03\x8c\x0d\x6a\x80\x99\x9a\x41\x7f\xac\x6d\xbd\xc2\x17\xdf\xb2\x6d\x6b\xe7\xb6\x6c\x69\x70\xad\xe8\x76\xe6\xf1\xc2\xb9\xed\x53\xc9\xe1\x21\x15\xde\xc9\xbb\xc7\xe4\x6d\xfd\xfb\x95\xc4\x27\x8d\x3f\xe1\x73\x7f\x24\xed\x58\x3a\xb0\xb6\x30\x5a\x3f\x3c\x58\xd1\xa8\x2f\x19\x5d\xcf\xc6\xb6\xc7\xa6\x78\xf5\x55\x3d\x08\x4f\xea\xaf\x31\x89\x6f\x7e\x56\x0a\x2d\x35\x99\x8a\x21\xab\x67\x9d\x0f\x19\x6c\x2d\x6a\xd7\x93\x35\xff\x50\x1d\x0f\x4c\xc3\xe3\x6f\xa9\x36\xef\x27\xc7\x32\x3d\xde\x4d\x6d\xb4\x9f\xec\x85\x6b\x4c\xe6\xb0\xb4\xff\xd4\x8e\x98\x43\xfc\xaf\xee\x88\x3e\x6b\xd5\xb8\x4b\x39\x87\x80\x01\x31\xeb\xa1\xf3\x1a\x4f\x8a\x1b\x0a\x90\xf9\x01\xbf\x73\x8a\x3d\xf4\x3d\x70\x89\x1b\xdb\xdb\xc1\x6b\x0a\x40\x41\x69\xe2\x55\x48\x73\x33\x05\xf0\xae\xe3\x50\x0f\xec\x50\x29\x94\x79\x8b\xc9\xe2\x03\x46\x10\x49\xa5\x90\x81\x0a\x65\x64\x8b\x1a\x61\x52\x55\x23\x67\xc5\xa5\xce\x43\x46\x56\x92\xcb\xd8\xa5\x97\xec\x25\x87\x81\xdf\x73\x4a\x06\x8b\x37\x8c\xaa\xaf\x5b\x6b\xef\x86\xae\x86\xae\xa2\x7f\x17\x4a\x16\x97\x98\x2c\x6e\x21\x79\x5a\x43\x68\x55\x2c\x36\x6a\xd4\xb1\x72\xeb\x5e\x4d\xca\xbc\xec\xd5\x14\x3e\x8c\xdc\x56\xc9\x6e\x32\x6e\xaf\x95\xec\x26\xa3\x86\x90\xd3\x01\x40\xd8\xe3\xa3\x90\x97\xd2\x0d\x0a\xd2\x79\x89\x37\x4d\x7b\xac\x0e\x8d\x76\x49\x63\x78\x03\x8c\xfc\x91\x12\xcc\x50\x8d\x5b\xc5\xb7\x82\x93\x56\xd9\xe5\x5f\xd5\xca\xbb\x00\xfd\x9e\x3e\x33\xa8\xa5\xb5\xde\xf9\x5e\x76\xc0\x0b\xa3\x91\x2d\x0d\xd3\x2f\x21\x1d\x78\xe1\xd5\xdd\x64\xa4\x08\x7a\x3a\x54\x04\x7d\x7c\xac\x76\xae\x93\xa6\x76\xbe\x1f\x56\x7e\xe8\x95\x8b\x15\xbe\xbd\xe9\xa4\x11\x37\x31\x63\x52\xe3\xa4\x64\xbe\x42\xc7\x85\xe7\x6a\x5e\xc9\xd5\x56\xcd\x56\x7d\x01\x39\x0f\xd6\x3d\x29\x9b\x57\x3e\x29\x3e\xb7\x53\x7a\xbb\xd6\x2d\x10\xa5\xe5\xb0\xba\x53\xbe\xde\x4a\xb7\xad\xd1\x1c\x24\xc7\x75\x15\xc0\xc4\x2f\x08\x26\x5e\x4b\xb7\x15\xb7\xa8\x75\x9b\xc1\xba\x59\xd5\x3b\xe5\x25\x9a\x2f\x65\x58\x5e\x5d\x88\xb7\x9c\x3c\x57\x0a\xb5\x71\x35\x8b\x40\xbc\x0b\x81\x2b\xcd\x30\xbc\x47\x85\x1d\x4b\x45\xe7\x11\x64\x0e\x9b\x51\x9f\xf9\x4c\x5f\x1d\x56\x1c\x15\xf3\xb3\x87\x36\x5c\x53\x4a\x06\x8b\x72\xde\x66\x55\x07\x1a\x89\x16\x2c\xe8\x7b\xec\xd5\x05\x6e\xdf\x09\x05\x4b\xc0\x44\xb8\x5e\x5d\x88\x2b\x39\xb8\x59\xc0\x4e\xd2\x66\x3a\x0a\x19\xaa\x0f\x80\xa1\xe6\x31\x1c\x57\xea\x68\x28\x89\xac\x90\x90\x4d\x2f\xc6\x76\xd2\xc8\x8d\xaa\x3b\x49\xc6\x9a\xf8\x60\xec\x2d\xa6\x89\x2b\x48\x63\x58\xa3\xf6\xf9\xad\x4a\xba\xde\x3d\xa7\xc4\x00\x46\xa2\x05\x0a\x14\x94\x12\x98\xe1\x26\x58\x0e\x23\x89\xe6\xbc\xc2\x57\x1a\xa5\xa5\x03\xb4\xb3\x8e\xd3\x82\x0f\xcb\x18\x67\x84\xd3\xd1\xd0\xbc\x57\x1b\xed\x3c\x3f\x41\x47\x5f\x91\xf8\x96\xe8\x1a\x93\x83\x80\x93\xbf\x0e\xbb\xb5\xd8\xcb\xac\x63\xa5\x39\x63\xe8\xe6\x97\xfd\x68\x2e\x18\x47\xee\xd3\x9e\x7b\x86\xd2\x4b\xb0\xe7\x2b\x55\x0f\xc1\xae\x8f\x20\x43\xe4\xea\x4b\xf8\x9f\x97\x46\xd1\x32\xc8\x6a\x23\x0c\x97\x28\x76\x66\xa3\xdc\x49\xe7\xf6\xb6\x6f\x92\xba\x1b\x2f\x0c\x84\xf6\xfc\xa4\x05\xd5\xed\x68\xb0\x3b\x18\xb6\x2a\x0b\xad\x67\x8d\x2d\xed\xea\xdc\xa5\x28\x4f\xad\xe0\x9c\x2f\x5d\x2c\xa6\xb1\xc8\x56\x0a\x5a\xc4\x94\x6b\x64\x27\x3f\x73\x24\xe4\x14\xc1\xfd\x2d\xc7\x6a\xcf\x5e\xde\x5e\x84\xdc\x4b\xbd\xd3\x47\xcb\x06\x3d\xdf\xf7\x37\xca\x8b\x27\x3f\x62\x44\x35\xa7\xc4\xa6\xb5\x4b\x74\x9b\x46\xbe\xdf\x30\xf2\xfb\x0f\x8c\x43\xbb\x3a\x5f\x94\xa8\x21\x0c\x0d\xc6\x9f\xe5\x22\xed\x7a\xbb\xd5\x4b\xed\x69\x42\x66\x0a\x04\x80\x10\x06\x69\x13\xd7\x32\xd4\xc4\x4b\xbc\x28\x84\x0e\x41\x20\x83\x56\xa8\xed\x33\xfb\x81\xb0\xe6\xf1\xa6\xbe\x06\x19\x83\x4d\xca\x27\x18\xb2\x32\x59\x04\x29\x60\xfb\xc8\xa9\x55\x8e\x67\x14\x26\xfd\x4b\xb8\x8e\x46\x34\x9f\x5d\x32\x49\xc7\x1f\x56\x0c\x91\xfe\xb0\x38\x1f\xbc\x42\x2e\xd7\x06\xfa\xee\xae\xed\xde\x24\xcd\x63\xd6\x52\xf2\xec\x0d\xed\x4d\xcf\xb2\x2d\x70\xa6\xc0\xf3\x62\x88\x1c\x90\xb2\xf2\x47\xf6\xd1\x2f\x46\x8a\xe9\x62\xfb\xf8\x82\x1b\x2f\x6d\x82\x5e\x32\x6f\xc0\x56\x3a\xb6\xbe\x39\x52\x7f\xba\x27\x45\x9f\x5a\x79\xf5\xb9\x82\xac\x6c\x00\xdd\xe5\xd9\x3e\xb7\xca\x2a\x15\x9c\x45\x53\x66\x0c\xaf\xce\xb3\x29\x7b\xc8\xaa\xd8\xf6\xfc\xf2\x78\x44\xdd\x8b\x0b\xee\x82\xca\x63\x89\x9c\x7a\x63\x42\x69\x20\x84\x49\xe9\xf2\x27\xdc\xfb\x90\x1a\x16\x09\xf7\xb8\xbe\x6c\x3b\x17\xb5\x51\x89\xf2\x5a\x96\xd2\xf2\x26\x50\xca\xf4\x7a\x98\xd2\x59\x81\x18\x62\xbd\x2b\x56\x07\x2f\x50\x8b\xc8\x41\xde\x43\xda\x38\x7e\x38\x6a\x87\x99\xce\x8e\x9a\x3c\xa2\xb4\x45\xb3\xa9\x14\xf9\xe1\x0e\x8f\xf4\x99\x98\x73\x56\xd6\x7a\x4a\xc9\x03\x75\x51\x8a\x42\xef\x44\x4d\xf4\x53\xd4\x70\xfa\xd4\x9c\x2b\x6b\x24\xa3\x19\x35\x2e\xc3\x8a\x50\xf3\x87\x45\xd6\x1a\xa7\x56\x43\xaf\xfd\x01\x5d\x37\xda\x95\x6d\xe9\x81\x1a\xa6\xa1\xa7\x45\x48\x63\xd8\xf1\xfb\x0e\x4a\xc5\xc7\xd4\x67\xe2\xb5\x75\x9e\x53\x3a\x0a\xd5\x75\x65\xfb\x90\x82\x0a\xbc\x06\x2d\xad\xb5\x69\xc4\x8b\x77\x79\x7a\x38\xa9\x42\xee\x15\x7f\xcf\xc1\x64\x86\x59\xb2\x37\xda\x6c\x7e\x62\xdf\xf9\x01\x07\x7a\xfb\xb7\x3d\x59\x48\x77\x2d\xb4\xd7\xab\xcf\x1e\x2f\xdf\x8c\xf5\x1c\x47\x6f\xab\x37\x5b\xb4\x3a\xd0\xad\xda\x90\xf1\x3f\xec\xa2\x45\x18\x78\x60\x83\x38\x24\x08\xb2\x3f\x7c\xd5\xf2\x8b\x74\x2a\x07\xc1\x1e\x21\x40\xec\x91\xf4\xe4\x42\x4a\xcd\x3d\xe8\x13\x31\xf7\x28\xf4\x38\xc4\x21\x12\x88\x78\x60\x43\xeb\x9d\xde\x98\x27\x1a\x5d\x6b\xef\x38\x58\x35\xbd\x4e\x2d\x5c\x65\x2d\x26\x35\x04\x5b\x2b\xf4\x91\xfc\x85\xd6\xb8\x21\x34\xfd\x66\xf8\x52\xcb\x77\x52\xa3\xc7\x35\xfc\x7f\x14\xcc\x61\x6c\x7a\x0e\x20\xaa\xfc\x6a\x9b\x40\xf1\x05\x30\xaf\x0b\x7a\xb6\xf2\x39\xac\x1b\xf2\xd7\x1c\x06\x99\xfc\x35\x07\xcc\x78\xbd\x17\x01\xe8\xd2\xbf\x80\xd8\xc1\x59\x5b\x3b\x09\x84\xc9\x89\xf3\x46\xdc\x9c\x87\x45\xbf\xf3\x5d\xcd\x3a\xe8\x9b\xb7\xb7\x57\x0f\xec\x22\x00\xe5\x15\x8e\x90\xd9\x32\x87\x2c\x5e\xea\x98\x95\xad\xf7\xe0\xda\x81\x76\x0c\x2b\x67\xd0\x2c\x8f\xb6\x8e\x9b\x87\x7b\x88\x57\x83\xc5\xdb\x2b\xe7\x7b\xbd\xa2\xe0\x92\x5c\x66\x21\xde\x0e\xad\xd7\x5d\xab\x42\x4a\xb0\x34\x5c\x2a\xe1\x54\x27\xfb\x10\x86\x6f\x65\x77\x3b\x29\x1e\x9f\x3e\x5e\x14\x74\xa7\xf6\x18\xf2\x94\x5d\xa4\xdd\x5e\xde\x88\x5f\xcd\xaa\x3f\x90\x41\x02\xf7\xf4\x4e\x77\x00\x56\xdf\xab\x9e\x19\xea\x3b\xdd\x21\xec\x9f\x30\x25\x6c\x7c\xb9\xab\x9d\xea\xef\xf5\x2a\x2e\xb7\xab\xf3\xb7\xa8\x2c\xd2\x2b\x95\x93\x1d\xae\x1a\xa3\x53\x04\x76\x3d\x35\xe2\x7c\xf0\xb6\x60\xd7\x03\xe9\xd4\x1d\x9e\x3d\xba\x0b\x03\x98\xbb\xaa\x1f\xf3\xd4\x64\x5d\x10\x46\x7a\xc2\xdf\x95\xd0\x05\x9b\x17\xa9\xfa\x58\x0e\x28\xcb\x7c\xe9\x69\xd3\xa2\xa0\xe3\xf9\xa1\x5d\xe2\xf9\x4a\x33\xbd\x1c\x59\xc6\x60\x3d\xd4\xeb\x59\x4f\x4c\x65\x89\x02\xb2\xa6\xa3\x85\xed\x25\x46\xa8\xa3\xe5\xc4\xb4\x44\x7e\xb5\x3e\x1d\xd8\x19\xf3\xb7\x07\x4c\xde\x78\xc9\x21\xd7\xa5\xe3\xcb\xb6\x23\xa8\x89\xff\x42\x98\xe5\x81\x6c\x2e\xf8\x7e\x92\x2f\x9b\x13\x8b\x97\x9c\xcd\x29\xc7\x50\xb9\x4f\x35\xe2\xe5\xf1\x54\x65\x9e\x2b\xeb\xe6\x88\xe7\x2a\x9b\xf1\x05\xd6\x8b\xd0\x90\xec\xc6\x2f\x57\x82\xb5\xfb\x65\x76\x57\x38\x17\xf8\x7a\x51\xf1\x9d\x74\xd0\xbf\xc6\x1b\x6a\xd6\xbf\x96\x17\xd5\x0c\x2b\xbb\x2e\x9e\xfb\x5d\xd7\x16\x87\x7e\x06\x72\x4f\x74\x33\x83\xf8\x13\x7b\xc6\xcb\x80\xe8\xb5\x79\x0e\xf4\xe1\xfa\x32\x00\x8c\xf9\x01\x4e\xb6\xeb\x75\xab\x8d\xaa\x77\xf4\x3e\xe7\x3d\x7d\x8a\xb7\xb6\x89\xf5\xb3\x0f\x85\xba\xb7\x03\x29\x58\x37\x99\x7f\xe6\x6b\x4c\x84\xc1\x09\xe0\xfd\x80\xeb\xa0\xa7\x5b\x45\x92\xd5\xb3\x2c\xae\x08\xb2\xf2\x4a\x40\x52\x62\x67\x7f\xfc\x9c\x79\xd4\x41\xe4\x4f\x7b\x6b\x7d\x8d\xb1\xee\x0b\xe6\xf4\xda\x5a\x2f\xae\xa4\xdf\xc6\x19\xf0\xd2\xeb\x15\x3e\xdc\x2a\xca\xe0\x15\xfd\x8a\xde\x82\x4d\x0a\xb5\x76\x33\x2d\x71\x69\x37\x47\xc0\xc9\x10\x2c\xb0\x76\x37\xf8\x45\x87\x51\x6c\x31\x7a\x5b\xa4\x4d\x17\x46\x84\xd2\xc6\xab\x12\x07\x29\x22\x76\xdb\x6c\xed\xdc\xbc\x9e\x5f\x38\x00\x35\xe5\x45\xb3\x4c\x8c\x33\x5f\xb3\x7b\xd7\x9a\xd6\x24\xf3\xd5\x5e\xfc\xc2\x5e\x5f\x69\x69\xe6\xc5\x8e\xac\x13\xc8\xca\x59\xc5\x2c\xb9\x45\x63\x93\x90\x7b\x89\x5f\x13\xa0\x62\xe6\x26\x43\xe9\xb6\xf8\x16\x13\xdd\xbe\x30\xd0\x7f\xa8\x03\xb9\x7b\x99\x01\xdc\x40\x75\x11\x6c\xa3\x8c\xf8\xfe\xb1\x73\xdb\x27\x94\xf5\xf8\x87\x49\x19\x90\xd5\x77\xc3\x8e\x1e\xbf\xea\xdf\x15\x05\xa2\x42\x27\xcc\x98\x81\xb5\xdd\xe8\xdf\x95\xb8\x80\x8c\x87\x8a\xba\x99\x52\x2e\xce\x5d\xb3\x4c\x53\xf7\x22\x98\x64\xcc\xce\x5f\xb3\x2c\xa2\x00\xa7\xd4\x9c\x45\x4f\xa9\xb9\x68\x92\x52\x79\x55\xe5\x7b\xac\x59\xd6\xce\xb5\x61\x9b\xdd\xdc\x5c\x96\x7b\x39\xe5\x26\xfe\xe5\x7b\x60\x46\x1f\x75\xd6\xf9\x4d\xaf\xdc\x23\x61\x4d\x7b\xf8\x21\x2b\xc1\x43\x9d\x0f\x2a\xa7\x8e\x71\xb8\xbf\xb5\xda\xab\x3f\x3e\xc2\x8b\xb9\x47\x5e\x37\xcb\x47\x3f\x14\x64\x51\xe3\x53\xc0\x8c\x2e\xea\xd5\x91\xf1\x89\x7a\x41\x05\xbc\x6a\xe6\x1d\x34\x78\x70\x27\x1e\x96\x0d\xc4\xcb\xa1\x0d\x04\x2b\xf1\x2a\x91\x5c\xe5\x7c\x4a\x68\xd7\xd6\xee\x19\x96\x6d\x22\x62\x78\x0d\x7c\x47\x7b\x1d\xd0\xfc\x82\xc9\xa9\x81\xe4\x0c\x3e\x04\x0c\xe5\x07\x76\xa1\x79\x18\x23\xf4\x8d\xa1\x77\xb3\x5c\x04\x7b\x12\xf5\x9c\x6f\xa1\xfd\xb9\x6a\x73\xdc\xfe\xc9\x6a\x0d\xbd\x78\x78\xd5\x32\xbb\xb6\x92\x9d\x5f\x6d\x65\x62\xd4\x2e\x28\x21\x9e\x18\xe4\xf7\x61\x05\x4b\xa1\x65\x3b\x05\xf2\x0d\x81\xcf\x33\xc5\x25\x1a\x26\xc4\xce\x3a\xe5\x93\x60\x57\x14\xba\x86\xbc\x28\x08\xe6\x85\x43\xe9\xe0\xf5\x26\xce\x7c\xf0\xc9\x30\x3b\xf3\xe8\xbc\xa9\x6e\x95\xd9\xe0\xb2\xfb\x4f\xf8\x14\x97\xf8\x19\x47\x88\x9c\x2d\xa0\x6a\xdc\x0e\xac\x93\x82\x14\xd4\x90\xdb\x21\x91\x9e\x2f\x32\xc3\xf9\xdc\xe4\x87\xf6\x5b\xfc\x9e\x6f\x21\xc3\x1e\x25\xbf\x9c\x1f\xe6\x71\xab\x5a\x9b\xcd\xde\xeb\x5f\x2f\xdf\x8f\x20\x67\x76\x37\xe7\xcc\x50\x03\xce\x99\xd9\xfb\xa8\x50\x47\x22\xca\x72\x1e\xaa\xd2\x91\x8a\xe2\x6e\x09\x70\x11\xa4\x5e\xd3\x5b\x59\x0a\x04\x4f\x31\x45\x4d\x43\xae\xba\x70\xdf\x41\x52\x0c\x00\x3f\x29\xed\x38\x88\x72\x02\x4f\x21\x9a\xd8\x29\x13\x14\x4e\x9c\x11\x99\x05\xc5\x31\x46\x53\xa0\xf9\x21\x26\xc8\xe9\x08\x87\x7c\xba\x05\x4b\x46\x80\x78\xef\x35\x8b\x89\x20\x65\x23\x3b\x22\x05\x04\x7a\x4e\xdf\x25\x10\x5e\x15\xdf\xcb\x36\x42\xbd\xe1\x84\x49\xad\x26\xaf\xd3\x70\x80\x8d\x34\x0d\x64\xc3\x9a\x11\x3a\x7a\x5b\x36\x7f\x90\x33\x74\xd7\xdb\x7b\x1d\x8c\x45\x09\xfe\x8a\x93\x02\x68\x00\x49\x98\x03\x04\xa3\x8e\xed\xb4\xf6\x4e\x47\xb1\xee\x02\xbf\x8a\xd5\xc5\x34\x02\x36\x35\xc1\x26\x32\x71\xa3\x3c\x97\x88\xbc\xd9\x2a\x8e\x4c\xb8\x01\x7b\x75\x11\xc7\x86\x2e\xcb\x46\x9d\x69\xf5\x5a\xc5\xab\x35\xee\xcd\xa5\x5e\xab\x02\x78\xeb\x7d\xe7\x82\x9b\xa2\xd7\xb7\xb7\x57\x37\xe2\xbd\x69\x0f\xa3\x4e\xe4\xa8\xb8\x27\x09\x53\x1c\x19\x8d\xf7\x9d\xd9\xc0\x50\xc2\xfc\x90\x07\x68\x3e\x91\x32\x70\x3e\x92\xc6\x94\x78\xd3\xf3\x23\xad\xb4\x8b\x5f\x71\xd2\x68\x44\xd7\xaa\xc1\x97\xea\x4d\x1d\x4b\xf0\xb8\xbe\x0c\x39\xe2\x1c\x73\x12\x79\x04\xde\x37\x36\x1c\x58\xdf\xd9\x46\x03\x54\x68\x0f\x3a\x7b\xd8\xea\xcd\x16\xbd\xf6\x67\xad\x22\x9f\x0f\x07\xe3\xe5\x67\xf1\x3a\xe4\xe7\x18\x76\xf2\x33\x95\x06\x36\xdf\xd1\xd5\x0d\x95\xba\xc4\x04\x3c\xc7\xa5\x70\xda\x6c\x5a\x72\x76\xf0\xc3\xd1\xe2\xf5\x6a\x2b\x7b\xb9\xe2\x88\x21\x11\xd1\x45\x4a\x2d\xb1\x41\x99\x79\x6c\xc1\xc3\x42\xc4\x41\xf1\x54\xbf\x27\x31\x14\x7d\x2c\x14\x05\x37\xab\x5a\xf6\x1b\xbe\x14\x3d\xef\x37\x03\x85\x99\xcf\x51\xeb\x4d\x1f\x0c\x3a\xe8\x84\x78\xab\x83\xeb\x9c\xd1\x19\x41\xe0\x18\xa6\x23\x87\x46\xaf\xe6\x2c\xb7\xcf\x94\x40\xfb\xfa\xac\xc0\x05\xda\xdb\x27\xa3\xcc\x99\x22\xe8\x62\x2a\x95\x40\xef\x52\x0f\x16\xe0\xcb\x5f\x02\x7f\x75\x31\x03\x9c\xcb\x2e\x71\x09\x81\xcc\x32\xbb\x84\x00\x8a\x19\x43\x80\x41\xc6\x30\x18\x46\x2f\x56\x3d\x39\x87\x85\x7f\xb7\xd2\xdd\x45\x93\xe9\x42\x2d\x1e\xd2\xdc\x6a\xab\x9a\x81\x3c\x49\xf0\xcf\x04\xaf\x3e\xfb\x70\xf7\x8e\xbb\x34\x64\xa0\x1b\x02\x3b\xb8\xe0\x87\x00\x7e\x16\x00\xea\xb3\x5a\x0d\x99\x19\xce\xaf\xf4\xcd\xf7\xde\x09\x8d\x0d\x8f\xa7\x06\x63\xb4\xd9\x00\x19\x24\xbb\xe2\x08\x33\x17\x18\x32\x34\x1d\x25\xa0\x20\x09\x1d\xad\x3f\x56\x1f\xc6\xbb\x0a\xc6\xe5\xc1\x64\x9b\xe3\xab\xb5\xa4\x1f\x18\xd9\x9b\x07\x58\x74\x52\xd2\xa0\x53\x8a\x3a\x3a\xa9\x40\x6f\x25\x04\xc9\x0e\x2b\x22\x3c\x1b\x4d\x33\x33\x66\x4d\xc2\xe4\x54\xab\x56\xf8\x66\x18\x89\x2a\x7c\x88\xf3\x36\x95\x6c\x54\x01\xf1\x82\x3f\x0b\x18\x6d\x48\x26\xa5\x2c\x12\xb6\xdf\x50\x1a\xa3\xcc\x8c\xe8\x83\xd6\x88\x80\xd9\xf1\x10\x6a\x68\x6e\x38\x65\x0c\x19\x6a\x46\xa0\xf3\xb6\x9d\x8c\x46\x2e\xf2\xe4\x69\xe8\xed\x3a\x7b\xe9\x90\xf5\x69\x3c\x8d\x21\xcb\x76\x68\x04\xbd\x98\xb4\x36\xaa\x7e\x78\x46\xc2\x93\x80\x2f\x59\x96\x56\x1f\x69\xec\x3f\x85\x07\xf1\x7c\x87\x19\x4c\x07\x32\x73\xbd\xc2\x3f\xd7\x89\x7b\xf6\x54\x3e\xaf\x7a\x65\xb2\x50\x12\xf4\x55\x14\x2a\xa2\x55\xff\x98\xa2\x52\x7b\x9b\xc7\xe9\xfe\xc3\x27\x40\x49\x51\xab\xe5\xf3\x8a\x83\x0b\x32\xd6\x14\x14\x6a\x14\xd9\xdb\xf5\xab\xa7\xe3\xb2\x42\xfa\x11\x18\x64\xfe\x8f\x80\x98\xfa\x48\xf1\x38\xce\xc4\x6f\xe4\xcc\x8e\xe3\x73\x64\xfd\x7b\x4a\x97\x6f\x4f\xa9\xa7\xff\xc6\x71\xb6\xe5\xf3\xdf\x2a\x8a\x49\x1b\x11\x70\x04\xda\x6f\x40\xc0\x01\xb2\x23\x86\xe0\x51\xef\x9b\x1a\x41\xdd\x18\xc7\x4c\x0f\x73\x56\x84\xf9\xca\x11\x72\x28\xf4\x23\x9d\x9a\xa0\xa3\xbe\x7d\x33\x36\xee\xe1\x18\x5d\xec\xe8\xb7\x37\x8f\x5e\x46\x64\xa3\x4e\x09\xaa\x11\xa8\x63\xfd\xea\x71\x9b\x8d\x0b\xfd\x1b\x47\x12\xfb\xe6\x66\x45\x27\xec\xbc\x4e\xc3\xf7\x68\xd7\xd0\xda\x9f\x5f\xf8\x69\x23\xa1\x5f\x43\x2f\x37\xd9\x7a\x97\x9b\xa2\x19\xb8\xda\xdd\xa3\xe7\xb1\x05\xd3\x1d\x31\xda\x43\x9d\x44\xe6\x30\xc4\x76\x46\xfa\x4b\xc9\xda\x71\xe4\x5b\x52\x35\x9f\xc4\xe8\xf2\x55\xf5\xd1\x5b\xdb\x7e\xaa\xe4\x06\xba\x24\x37\xb6\x82\x1d\xcc\x8f\x7f\x71\x33\x1b\xbb\xaf\xe8\x13\x7e\xfd\x08\x98\x7f\x64\x27\xc3\xe2\xc4\x55\x3f\xee\x30\x81\x42\x75\x61\xc2\x16\x13\xb6\x76\xc0\xc0\x0e\x3f\x36\xf8\xd9\xc8\x03\x7e\xed\xf1\x6b\xaf\xd4\x1d\x15\x46\xe2\xfc\xa3\xd8\x59\xe3\xb7\x98\x72\xc0\xef\x83\x92\x1c\x16\x82\x9c\x19\x63\x40\xe8\xf0\x81\x61\x9f\x0d\xde\xd3\x61\x7a\xf8\x38\x71\x15\xd4\xca\xa9\xf4\xf3\xc4\x55\x8d\x3c\x70\x12\xfe\x3a\x71\x15\x54\xcf\x49\xf4\xf3\x04\xcf\x54\xbf\x0d\x08\xe9\xf7\x89\xab\xa0\x1d\x9c\x48\x3f\x4f\x5c\xd5\xcb\x7d\x9d\xda\xc5\xbf\x30\x35\xb5\x8a\x7f\x55\xd5\xc7\xa6\xb7\xdd\xef\xd6\xa8\x4f\x55\x88\xfe\x98\x82\xb4\xbe\xe8\x6d\x17\xec\x9f\x55\x4f\x77\x02\x18\xb9\xc9\x5b\x31\x74\xad\x95\xcd\xa2\x0a\xb1\x99\xb5\xe9\x86\xa8\x88\x4d\x51\xca\x09\x2c\xb9\x32\xa6\x17\xa0\x87\x4e\x2d\x2a\x54\xf3\x7a\x6b\xeb\x25\x32\x4c\xa8\xe0\x75\xfa\x77\x25\xbe\xff\xfb\xdf\x11\x5e\xff\xae\xfe\xf1\x0f\xf1\xf6\x97\x1f\x84\xfa\xbc\x52\xaa\x71\x62\xc7\x26\x4e\x01\x6c\x27\x3f\xbf\x2c\x20\x17\x15\x3f\xcc\x63\x9b\x1a\x7a\x98\x87\xd5\x57\xff\x2b\x00\x00\xff\xff\x2b\x4c\xd7\xaf\x79\xe3\x00\x00") +var _confLocaleLocale_enUsIni = []byte("\x1f\x8b\x08\x00\x00\x09\x6e\x88\x00\xff\xac\xbd\xeb\x8e\x1c\x37\xb2\x30\xf8\x3f\x9f\x82\xd6\x41\x43\x36\xd0\x2a\xc3\x33\xdf\xb7\xbb\x30\xdc\xf2\xb6\x5b\xd6\xe5\x9c\x96\xd4\x47\x2d\xcd\xec\xac\x20\xa4\x59\x99\xac\x2a\x8e\xb2\xc8\x9c\x24\xb3\x4b\xe5\xc1\x00\xfb\x00\xfb\x00\xbb\xaf\x77\x9e\xe4\x43\x5c\x78\xcb\xcc\x6a\x49\x33\xe7\x4f\x77\x25\x19\x0c\xde\x83\x11\xc1\x60\x84\xec\xfb\xba\x55\xae\x11\x17\xe2\x52\xf4\x52\x9b\x4e\x39\x27\x9c\xea\x36\x8f\x76\xd6\x79\xd5\x8a\x67\xda\x0b\xa7\x86\x3b\xdd\xa8\xaa\xda\xd9\xbd\x12\x17\xe2\xb9\xdd\xab\xaa\x95\x6e\xb7\xb6\x72\x68\xc5\x85\x78\x12\x7e\x57\xea\x53\xdf\xd9\x01\x80\x7e\xa5\x5f\xd5\x4e\x75\x3d\x94\x51\x5d\x5f\x39\xbd\x35\xb5\x36\xe2\x42\xdc\xea\xad\x11\x2f\x0c\xa5\xd8\xd1\x87\xa4\xd7\xa3\xa7\xb4\xb1\x0f\x49\xef\xfa\x6a\x50\x5b\xed\xbc\x1a\xc4\x85\x78\xc3\x3f\xab\x83\x5a\x3b\xed\xa1\xa6\x3f\xd3\xaf\xea\x4e\x0d\x4e\x5b\xc0\xfe\x27\xfa\x55\xf5\x72\x0b\x00\x37\x72\xab\x2a\xaf\xf6\x7d\x27\xb1\xc0\x5b\xfe\x59\x75\xd2\x6c\x47\x82\xb9\xe6\x9f\x55\x33\x28\xe9\x55\x6d\xd4\x41\x5c\x88\x2b\xfc\x58\xad\x56\xd5\xe8\xd4\x50\xf7\x83\xdd\xe8\x4e\xd5\xd2\xb4\xf5\x9e\xba\xf9\xce\xa9\x41\x70\xba\x90\xa6\x15\x90\x8e\x5d\x50\x6d\xad\x4d\x2d\x1d\xf7\x43\xb5\x42\x1b\x21\x5d\x85\xa8\x8c\xdc\x87\xd2\xf0\xb3\x52\x7b\xa9\x3b\x18\x35\xf8\x5f\xf5\xd2\xb9\x83\xc5\xa1\xbd\xe1\x9f\xd5\xa0\x6a\x7f\xec\x15\x0e\xc1\xa3\xb7\xc7\x5e\x55\x8d\xec\x7d\xb3\x93\xd0\x4c\xfa\x55\x55\x83\xea\xad\xd3\xde\x0e\x47\x84\x0b\x1f\x95\x1d\xb6\xd2\xe8\xdf\xa5\xa7\xf1\x79\x9d\x7d\x56\x7b\x3d\x0c\x16\x86\xf6\x25\xfe\xa8\x8c\x3a\xd4\x80\x47\x5c\x88\x57\xea\x90\x63\x81\x9c\xbd\xde\x0e\x34\x8a\x90\xf9\x12\xbf\x00\x0b\xe5\x31\x26\xca\x8a\xd8\x36\x76\xf8\xc8\xa9\x4f\xe1\xe7\x04\xa5\x1d\xb6\x9c\x5b\xb6\x4b\x1a\xb9\x55\x9c\xfb\x12\x3f\x0a\x00\x57\xc9\x76\xaf\x4d\xdd\x4b\xa3\x60\xe8\x2e\xe1\x4b\xdc\xc0\x57\x25\x9b\xc6\x8e\xc6\xd7\x4e\x79\xaf\xcd\x16\xe6\xe0\x92\x92\xc4\x2d\x27\x55\x59\x5e\x4c\x3b\xda\x31\xce\xb2\xb8\x10\x7f\xb1\xe3\x20\x6e\xe8\x93\xf2\xb2\x42\x98\x19\x4b\x56\xb2\xf1\xfa\x4e\x7b\xad\xa8\xb2\xf0\x51\xf5\x63\xd7\xd5\x83\xfa\xdb\xa8\x9c\x87\xac\x9b\xb1\xeb\xc4\x1b\xfe\xae\xb4\x73\x23\x96\x78\x81\x3f\xaa\xaa\x91\xa6\xc1\xee\x5c\xe1\x8f\xaa\x7a\xaf\x8d\xf3\xb2\xeb\x3e\x54\xfc\x03\x80\xe9\x17\x8d\x93\xd7\x1e\x1b\xcb\x89\xe2\xd6\xab\xde\xc1\x40\x8b\xa7\x7a\x70\xfe\x91\xd7\x7b\x25\xde\x8c\xa6\x6a\x6d\xf3\x51\x0d\x35\x6c\x48\xdc\x4a\x2f\x36\xe2\x68\xc7\x87\x83\x12\xc3\x68\x8c\x36\x5b\xf1\xcc\x6e\x9d\xd0\xc6\xe9\x56\x89\x27\x08\x7d\x2e\xfa\x4e\x49\xa7\xc4\xa0\x64\x2b\x7e\x92\xc2\xcb\x61\xab\xfc\xc5\x83\x7a\xdd\x49\xf3\xf1\x81\xd8\x0d\x6a\x73\xf1\xe0\xcc\x3d\x78\xfc\x6c\xd4\xad\xea\xb4\x51\xee\xa7\xef\xe5\x63\xd1\xc8\x41\x6d\xc6\xae\x3b\x8a\xb5\xda\xc0\x5e\x39\xda\x51\x34\x3b\x69\xb6\xb0\x4f\x8e\x7e\x07\x15\x6a\x23\xfc\x4e\x3b\x01\x1b\xf5\x9b\x0a\x46\x49\x7b\x55\xb7\xeb\x40\x94\xb0\x41\x98\x3c\x28\x27\x5e\x1e\x6f\xff\xf3\xfa\x5c\xdc\x58\xe7\xb7\x83\xc2\xdf\xb7\xff\x79\xad\xbd\xfa\xa3\xb0\x83\x78\xab\x9f\xfc\xb2\xaa\xda\x75\x1d\x06\xe4\x89\xf4\x72\x0d\x6d\x8f\x93\x04\x99\xb4\x87\x62\x1e\xee\x24\xa0\x75\x48\xd7\x9c\xc7\xdd\xc9\x3b\x73\x71\x1f\xb6\xeb\x9a\x37\x6f\xc4\xf1\x0a\x76\x70\xbb\x4e\x23\x7b\x43\x63\x36\x3a\x25\x5e\xbc\x7a\xf5\xfa\xc9\x2f\x42\x99\xad\x36\x4a\x1c\xb4\xdf\x89\xd1\x6f\xfe\x8f\x7a\xab\x8c\x1a\x64\x57\x37\x1a\x06\x65\x70\xca\x8b\x8d\x1d\xa8\x8b\xab\xca\xb9\xae\xde\xdb\x16\x6a\xb9\xbd\xbd\x16\x2f\x6d\xab\xaa\x5e\xfa\x1d\x36\xc4\xef\x2a\xf7\xb7\x0e\x06\x2a\x56\xf8\x76\xa7\x04\xae\x59\x04\xb2\x9b\xe9\xb8\x88\x96\xdb\xba\x12\x3f\xad\x87\xc7\x59\xfb\xe4\xda\xd9\x6e\xf4\x5c\xf2\xb0\x53\x06\x27\xca\x79\x39\x78\x21\x5d\xa0\xfd\xab\x4a\x0d\x43\xad\xf6\xbd\x3f\xc2\xf4\x70\x5b\x4e\xd5\x42\xc8\x1a\x69\x8c\xf5\x62\xad\x04\x96\x23\x14\xda\xdc\xc9\x4e\xb7\xb5\xd7\x69\x20\xcb\xb2\x98\xd8\x5a\xe5\x04\x94\x96\x5d\x67\x0f\x38\x44\xb2\xf1\x6a\x70\xe2\xc1\xea\x01\xd2\xd9\x07\x8f\x1e\xac\x2a\x63\x6b\x22\x02\x40\x91\x5b\xed\xe4\xba\x53\x35\x9d\x16\x43\x20\x76\x7f\x81\x75\x47\x4d\x61\x08\x51\x40\xc0\x9c\xc0\x09\x84\x84\x1f\x16\xa5\x34\x02\x91\x0a\xa6\x22\x79\xdf\x03\xc9\x89\xeb\x82\xa8\x4e\x4c\x98\xf5\xb9\x0a\x13\x1d\x56\xe5\x65\xdf\x77\xba\xa1\xaa\x9f\x51\x5e\x5a\xa0\x70\x1e\xf3\xa0\xe4\x70\xb8\xc0\x42\x5e\xb6\xcc\x46\x0f\x93\x35\x88\x82\xbc\x63\xf9\x9d\x1a\x94\xd8\x8d\x5b\x3a\x93\x3a\x3b\xb6\xdf\xe0\xe1\x10\x66\x2e\x91\x60\xf1\xc6\x5a\x4f\xab\x2a\x02\xa4\x2a\x2e\xbb\x0e\x59\x80\x41\xed\xad\x87\x81\xe3\x62\x40\xe6\x0e\xba\xeb\xa0\xa7\x4e\xde\xa9\x56\x78\x4b\x5b\xb9\xd5\x83\x6a\x00\xf1\xaa\x1a\x46\x53\xf3\x76\x7a\x33\x1a\xda\x52\x21\xad\x5c\xbb\x08\xb5\x1f\x9d\x17\x3b\x79\xa7\x60\xe0\x81\x0f\xf1\x76\xb1\x9d\xd8\xa5\x61\x34\x48\x1d\x56\x55\x6b\xf7\x12\x79\x8a\x27\xf8\x83\xbf\x73\xfc\xda\x09\xb9\xd9\xa8\xc6\x3b\x71\x7b\xfb\x5c\x34\x9d\x35\x4a\xbc\x7b\x73\xed\x60\xa3\xed\xea\xde\x0e\xc8\x7f\xdc\x3e\x17\x37\x76\xf0\x31\x2d\x1b\x68\x80\x30\xe3\x7e\xad\x06\x71\xd8\xe9\x66\x47\xc3\x0e\x25\x60\x7f\xa8\x41\x68\x27\x46\xa7\xcd\xf6\x5c\x74\x0a\x7a\xa0\x3d\x2d\x00\xe8\x43\x58\x75\x00\xbe\x51\xd2\x8f\x83\x5a\x55\x3b\xef\xfb\x50\xf3\xf3\xb7\x6f\x6f\xa8\xea\x98\x7a\x5f\xdd\x32\x5b\x19\x38\x07\x1d\x70\x44\x46\x58\xb3\xc2\x45\x32\x0e\xdd\x64\xfd\xbc\x7b\x73\x1d\x72\x4e\x8c\x0b\x34\xe1\x7b\xf8\x73\x9b\x86\x07\xc7\xd9\xd9\xbd\x3a\xe0\x6a\xd2\x46\x20\x97\xb2\xaa\x3a\xbb\xad\x07\x6b\x7d\x58\x4c\xd7\x76\x4b\x0b\xa8\xc8\x48\x35\x3d\x09\x4b\x02\x46\xe3\x30\x00\xd7\xd6\xd9\x2d\x12\x2c\x98\xe4\x55\x55\xd9\x1e\xda\x99\xed\x92\xd7\x9c\x90\xb6\x06\xd6\x1d\xf3\x91\x4f\x12\xb7\x44\x9c\xb2\x33\x7d\xef\xfb\x9a\xa9\xf9\xed\xcb\xb7\x37\x44\xd2\x31\x75\x33\xd8\xbd\xb8\x10\x4f\x07\xbb\x4f\x09\xa9\x8d\x2f\x01\x1f\xc2\xc8\xb6\x1d\x94\x73\xe7\xe2\xcd\xd3\x2b\xf1\x3f\xff\xf8\x87\x3f\xac\xc4\x0b\x0f\x1b\x1b\xd6\xfa\x5f\x61\x8d\x4a\x1e\x89\x04\x6a\x07\xe1\x77\x4a\x3c\x80\x8d\xfa\x40\xfc\x84\xb9\xff\xa7\xfa\x24\xf7\x7d\xa7\x56\x8d\xdd\x3f\x06\xe2\xbe\x97\x7e\x55\x41\x8e\x1a\xc2\xb6\xb8\x55\xa6\x55\x03\x73\x7d\x9c\x95\x11\x17\xce\xce\x78\x40\x62\x7e\xeb\xc6\x9a\x8d\x1e\xa0\x3f\xbf\x1a\x5c\x5b\x81\x2d\x16\x57\x94\x13\x58\x28\xdd\xd5\xc6\x7a\xbd\x39\x26\x50\xec\xe9\x2b\x48\xe4\xe5\x51\xd1\x1a\xae\x99\xd4\xc7\x31\xbe\xa5\xa5\x0d\xab\xe0\xb5\xdf\xa9\x21\x0c\xb7\x4b\xe3\x6d\x37\x1b\x38\xf1\xc3\x59\xc5\x35\xbc\xa6\x54\x3a\xb6\x72\x90\xba\xb7\x3d\x32\xf6\x4f\x78\x4b\x5c\x3d\x79\x25\xd4\x9d\x32\xb0\xb8\xfa\xc1\xb6\x63\x83\xeb\x15\x60\xcf\x81\xf4\x8b\x41\x39\x3b\x0e\x8d\xe2\xc5\x12\x49\x0e\x34\x0d\xe8\x5a\x23\xbb\xee\xb8\xaa\x02\xe9\xdf\x0e\xf2\x4e\x7a\x39\x64\x55\x3c\x0b\x49\xdc\xfa\x19\xec\xac\x51\xb1\x04\xf4\xbc\x19\x9d\xb7\x7b\x41\xad\x70\xd4\x28\xca\x76\x42\x0e\x4a\x8c\x7d\x67\x65\xab\x5a\xb1\x3e\x22\x15\x73\xb0\x16\x5a\xb5\x91\x63\xe7\x57\xd5\x46\xb5\x0a\xd8\xe5\xb6\xe6\xba\x3a\x6b\x3f\x62\x65\x3c\x54\x4f\x03\x80\xb8\x64\xa4\xd7\x08\x71\xaa\x64\x6c\x2c\x97\x8f\x60\xb1\x51\x5c\x83\xb7\x78\xbc\xa7\x7c\xdb\x2b\xc3\xdd\x08\x87\xba\x80\xf3\xb6\x15\xd6\x88\x4e\xaf\xb9\xd3\x69\x2c\x27\xc7\x68\x18\x9d\x5b\x10\x0e\xf3\xbc\xc5\x02\xb3\x41\xc5\x05\xef\xa6\x65\xcf\x85\x35\xdd\x91\x8f\x5b\xd8\x62\x24\x7d\x85\x93\xd7\xad\x2a\x85\xfd\xac\x93\xac\xc3\x1d\x0f\x22\x4f\x99\x1f\xab\x7d\x43\x3c\xa3\x40\x66\x03\x30\x06\x04\xc0\x64\x2d\xb7\x65\x55\x31\xa3\x59\xb3\x98\x5a\xdf\x69\x14\x02\xe3\x16\x23\x94\x2c\xba\xc2\x08\xff\x09\x00\x40\xba\x74\x8b\x65\x63\x6b\x5e\x43\x27\x5d\x14\x02\x69\x9d\x40\x77\xb1\x06\x60\x7e\xdd\xb9\xb8\xd3\x78\xd0\xf1\x22\xc7\x71\x59\x03\x7f\xd6\x29\xa8\xca\x29\x85\x18\x84\x36\xdf\x8f\x3d\x95\x59\xb1\x04\xc4\x42\x49\x60\x9a\x81\xe1\x69\x2d\x72\x4f\x78\x9a\x7a\x1b\x87\x75\xc2\xd9\x88\x41\x6f\x77\x5e\x18\x7b\x38\xa7\x41\x39\xec\xac\x82\x3d\xff\xe2\xc9\xc5\x0f\xd4\x8e\x2d\x9c\xad\xb1\x10\x9c\xca\x72\xf4\x16\xe8\x0b\x6f\x3d\x6a\x42\xe4\x6e\x10\x72\x26\x6b\x11\xd0\x54\xe8\x9d\x31\x53\x91\xd0\x31\x7d\xcb\xf3\x98\xb0\x25\x18\x2a\x1d\x04\x67\xaa\x98\x08\x29\x0b\x4a\xf5\xd6\xa2\xa0\x16\x04\x23\x60\x17\x2a\xaf\x9c\xaf\xb7\xda\xd7\x1b\xa0\xb6\x80\xf8\x29\x20\x00\xee\x45\x39\x2f\x1e\x6e\xb5\x7f\x28\x1a\xbb\xdf\x4b\xd3\xfe\x28\xce\xee\x98\xd5\xfe\x23\x90\x51\xd8\x8a\xba\xc3\x19\x61\xf1\x6f\x50\xc4\x49\x07\xd5\x43\x64\x5b\xdd\xd8\xe3\xe1\xce\x1c\x72\x14\xa3\x5a\x7b\x30\x40\x30\xf0\xb8\xb0\x9b\x8d\x6e\xb4\xec\xc4\x5a\x1b\x39\x1c\x23\x16\x3c\x86\xce\xdc\xb9\x78\xf5\xfa\x2d\x02\x6e\xed\x7a\xd4\x5d\x1b\x00\x56\x55\xe0\xa2\xdb\x75\x98\xfc\x5c\x1e\x09\x49\x9a\xda\xd2\xd8\x01\xce\x5f\xec\x4d\x28\x78\x82\x17\x84\xc3\x9b\x98\x77\x0d\x82\x20\xc2\x62\xb9\xc8\xb6\xc1\x30\xec\xa5\x6f\x76\xcc\xd4\xe1\xb2\xd1\xce\x3c\xf4\xd8\xd2\x66\x1c\x06\x65\x3c\x26\xff\x28\xce\x9c\x78\xf4\x58\x9c\xb9\x58\x6d\x7e\x12\xe3\xf9\x0c\xc7\xb1\xd8\x68\xd5\xb5\xa1\xb5\xa9\x4e\xe0\x2b\xe9\xa4\xdb\xce\x67\x0b\x32\x05\x65\x8e\xb4\x7f\x8b\xfe\x15\x1b\x23\x2e\x8f\xb0\xec\xb3\x01\xca\x3b\x19\xd6\x8d\x1b\x69\xa5\x5f\x88\x3f\xab\xae\xb1\x7b\xf5\x8d\xf8\xb3\x02\x39\x79\xdb\xe1\xcc\x49\xcf\xc2\xac\x75\x0a\x57\xd5\x39\x6d\xb4\xcd\x68\xf0\xcc\xf0\xf2\xa3\x42\xf9\x37\x4d\xd4\x12\xcb\x74\x72\xb0\xab\xf7\x3b\xbb\x57\x1f\xaa\x91\xd8\x7d\xdb\xb5\x51\x24\xc5\x2d\x64\x07\xe2\x3f\xa2\x7c\x9a\x60\xe2\xee\x70\x07\xed\x9b\x5d\x1d\xb5\x74\x30\x90\x5e\x7d\x42\xc6\x08\xb3\x92\xd2\x0e\xb6\x16\x64\x55\xfb\x23\xae\x0b\xe8\xf8\xcb\x63\x5a\x16\x5a\xb9\xca\xed\xec\x01\x55\x5e\x11\xe2\x76\x67\x0f\xa8\xec\x2a\x84\x82\xd5\x6a\x55\x35\xb6\xeb\xe4\xda\xc2\xac\xdc\x25\xf8\xab\x3c\xb5\x44\xbe\x3f\xd6\x76\xd8\x72\xb5\xa5\x8a\x67\x7f\x64\xad\x12\xe7\x92\x56\xc9\x55\x48\x5e\x59\x1d\x89\x54\xf8\xcc\x55\xac\x4c\x59\x69\x53\xa3\xae\x26\xd4\xfc\xc2\x10\xbb\x9e\xb7\xb3\xaa\xde\xb3\xaa\xf2\x43\x15\xe0\x8a\x36\x11\x8d\xa6\x41\x77\x85\xfe\xcc\x4d\x14\x68\xae\x72\x4a\x0e\xb8\x21\x6e\xf1\x47\x55\xbd\x97\xa3\xdf\x7d\xc8\x54\x89\x75\x58\x79\x41\xa5\x88\xea\x2e\x26\x93\x89\xad\xdb\xa9\x1e\x38\xc0\xbd\xc3\x25\xdb\x0d\x4a\xb6\x47\x96\x88\xe2\xe2\xfd\x99\x0e\x20\x6d\x80\x6c\x7f\x53\x39\x0b\x14\xa4\xfe\x4a\x14\xbf\x68\xd3\x52\xf9\xf2\xf0\x26\x1d\xe7\xbe\xc7\x65\x62\x87\xe1\x78\x5e\xca\xca\x3b\xe9\xc4\x5a\x29\x13\x64\x9a\x76\x15\x74\x1d\xb0\xbc\x64\x43\x44\x00\xf5\xb2\xb8\x03\xa9\xa4\x9d\x71\x15\xd0\x42\xa2\xdb\x5c\x4b\xe4\x5f\x91\x3b\xcd\x99\xd8\x85\x3a\xab\x41\xed\x15\x08\x44\xf5\x9e\xf4\xa1\xf4\x25\x5e\xaa\x6a\x63\x87\x2d\xee\x32\xda\x06\x17\xe2\x29\x26\xa4\x7d\x01\x00\xca\xe7\x07\x0b\x43\x84\x94\x9f\x83\xfe\xb9\x36\xf6\x80\x7a\x49\x60\xae\xa6\xc3\x3f\xf6\x30\x7c\xab\x70\x50\x11\xcf\x83\xec\xb6\x53\xc6\xa7\x41\xbc\x14\x46\x1d\x44\x0e\xc5\xa2\x43\xec\x15\xc0\x03\x41\xfb\x69\xfd\xf8\xcc\xfd\xf4\xfd\xfa\x71\x3c\x2b\x9a\x9d\x6a\x3e\xd2\xd2\xd5\x66\x6d\x3f\xa1\xa6\x02\x35\x66\x4a\x18\xd8\xca\x67\xad\xd8\xd9\x71\x40\x41\xb9\xb1\x20\x6b\x78\x85\xb9\xc5\x9c\xf5\x83\x05\x6a\xb6\x22\x0d\xa5\xa2\xbd\x91\xd6\x23\xaa\x2a\x61\x45\xe2\x81\x16\x96\x64\x3f\xd8\x9d\x5e\x6b\x0f\x84\x0b\x85\xeb\x6b\xfc\x7f\xc3\xc9\xaa\x9d\x40\x64\xbc\xc7\x10\xc9\xac\x76\xa2\x8f\x05\xa0\x91\x08\x9a\xfa\xc7\x4b\x26\x2d\x17\x98\x59\x1c\xbf\x4e\xef\xb5\x9f\x2d\x45\x20\xba\x92\x97\x34\x6b\x54\xc3\xdc\x60\x1f\xd2\xe8\x0e\xaa\x51\xc6\x77\xc7\xb8\x3c\x0f\x52\x7b\xf1\x47\xb1\xd7\x66\xf4\x20\x74\xee\x94\x11\x7e\x38\x0a\x09\xfc\xcd\xaa\xda\x49\x57\x8f\x86\xa7\x49\xb5\x61\x71\x3e\xd7\x78\x0c\x43\xbd\x61\x0b\x65\x50\xa5\x10\x28\xbe\x8d\x33\xf8\xdd\x8a\x75\xab\x58\x0a\x8e\x46\x68\x8f\x06\x89\x45\x2e\xad\x05\x3b\x08\xa3\x68\x84\xb0\xff\x00\x06\xcb\xc6\x1a\x95\x06\xab\xd3\xcd\x47\x60\xd5\x61\x7e\xd7\xa3\xf7\x16\xe4\xd1\x0e\xd6\x20\x95\x09\x6d\xbe\x42\x40\x94\xd8\x13\xbe\x23\x4d\x4b\x39\x4a\x15\x16\x03\x08\xbf\x5c\xf8\xdb\x41\x7d\x97\x8a\xc7\x2d\x83\x25\x18\x05\x95\xce\x76\xd3\x1b\xcc\x24\xc5\x79\xd8\x73\xe1\x10\x6c\x58\xa3\x19\x67\x73\x28\x47\x03\xf3\x61\x63\xa8\x4f\xbd\x1e\x40\x32\x19\x12\x4b\xb0\x9a\xd4\x95\x44\xf7\x79\x8f\x7d\xd9\xe2\x74\x4e\x7a\x6b\x6b\xb7\x23\xad\x4b\x68\x9e\xe8\x94\xd9\x16\xea\x4a\xbc\x04\xc3\x25\xf2\xbf\xad\x2a\x63\x4d\x8d\x72\x66\xb6\x67\x5e\x59\xf3\x08\xd3\xa2\xa0\x12\x4a\xb3\x82\x3b\x54\x08\x68\x06\x3b\x6e\x77\xac\xab\xaa\xde\xc3\xa8\x7d\xa8\x78\x2a\x54\x86\x93\x17\x6a\xc8\x09\x53\x46\xdb\x31\xc2\x07\x76\xf7\x4f\x6a\x00\xa1\x1e\x81\x8a\x65\x78\x6a\x46\xca\x01\x89\x54\x38\xb1\x3a\x6f\x72\x9a\xc1\xc9\x9b\xb1\x3b\x17\x07\xe2\x81\x52\x99\xa8\x50\x60\xee\x08\x56\x25\xdd\xfe\x55\xef\xf7\xb6\x95\xdd\x87\xea\x88\x77\x1a\x7f\x51\xae\x32\x78\x8f\x64\xab\xbd\x6d\xa9\xd0\x4b\xfc\x51\x55\xef\x37\x76\xd8\x7f\xa8\xe0\x7c\x7d\x35\x91\x0b\xe0\x20\xe6\xb4\x8c\x37\xc5\xac\x5f\xf3\x7b\xb2\xd8\xe7\x9b\x05\x11\xe2\x8d\x4a\xd7\x65\xf8\x2b\x76\xfe\xf6\xf6\xf9\xdb\xa0\xe2\xb8\x7d\x2e\x3e\x2a\xc6\xfd\xdc\xfb\xde\xbd\x43\xe5\x19\x69\xc2\xde\xbd\xb9\xae\x6e\xe4\x11\xf8\x75\x4a\xe6\x0f\xcc\x78\xab\xe4\x9e\x1b\x09\x3f\x09\xc5\xe5\xe8\x77\x9c\x08\x3f\xed\x90\x2b\x65\x2b\x64\x42\x7f\x2d\x04\x16\xda\x45\xd5\x2b\x75\xf8\x65\x90\xa6\x09\x85\x81\x3b\x58\x63\x02\x95\xbc\xb2\xfb\xbd\xf6\xb7\xe3\x7e\x2f\xf1\x6a\x8f\xbe\x85\xa3\x04\xce\x7e\xa9\x9c\xa3\xcb\x4c\xce\xde\x53\x02\x67\x5f\xed\x2c\xc8\xfc\x31\xb7\xc1\xef\xea\xed\xa0\x14\xd7\xfa\x34\xdc\x20\x54\xc8\x11\x12\xbb\x42\xbf\xaa\x28\xe0\x2a\xbe\xe3\xfb\x6d\xa6\xeb\xfe\xad\x92\x5d\xbf\x93\xc8\x73\x66\x60\xa8\xd6\x5d\xb3\x28\x2e\x10\x04\x37\xf6\xb8\x57\x83\x6e\x50\x5d\x22\xdd\xee\xdb\x47\xf5\x77\x99\x9a\xbf\x44\xd6\x5a\xff\xcf\x21\x84\xdf\xb4\x2b\x13\x5e\xa7\x7f\x0f\xbd\x28\xd0\x41\xba\x38\x03\x08\x14\x1d\x12\x54\x04\xc2\x03\x0b\xc4\x08\x2f\x60\xb3\x7a\x90\x6f\x0a\xd4\x7b\xf9\xe9\x73\x05\xf7\x76\xa1\x1c\xe9\x36\x53\x21\x16\x85\x24\x77\xb1\xd8\xe0\xab\xdf\xaa\x71\xb8\x07\xf8\xdd\x9b\xeb\xd5\x6f\x95\x36\x4d\x37\xb6\x27\x1b\xe2\xc6\xb5\xf3\x03\x88\x40\x0f\xcf\xdc\x43\x40\x69\x3e\x1a\x7b\x30\x11\xfe\x1d\x7d\x0b\xfc\xfe\x31\x5c\x35\xd7\xda\xb0\x30\x99\x2e\x9d\x45\xab\x5b\x38\xe2\x50\x28\x5c\x25\x52\x9b\x0b\x8a\x71\x7f\xa2\x46\x8d\x05\xf9\x48\xa2\xe4\xa0\x48\x66\x96\x7b\xb5\x4a\xd7\xe3\x35\xb0\x47\x35\xc8\x52\x26\x17\x7e\xe0\x7c\x08\x4c\x00\x32\x50\x08\xb1\xa2\xcb\x8b\x79\xb9\x09\x01\x39\x59\xdc\x0e\xdb\x85\xd2\xaf\xe7\x17\x2b\x27\xca\x7b\x25\xf7\x0b\x08\x22\x69\x38\x59\x90\xe6\x1e\x0b\x8d\x0e\x45\xdc\x82\xb6\xcd\xcb\x01\xd4\x2a\x8d\x52\x1c\xf0\x7c\x6e\x72\x51\x31\x8e\x73\xa9\x0e\x58\x55\xca\x78\x35\x0c\x68\xa6\x90\x29\x05\x58\x49\xc3\xc7\xd1\x1e\x44\x59\x37\xc2\xd1\x0a\x62\x2f\x31\x97\xe5\x88\x02\x9f\x83\xa8\x14\x56\x71\x1a\xbd\x3d\x18\x38\x3d\x3e\x87\x1f\xc1\xbe\x12\x75\xae\x43\x9a\x23\x66\xe4\x11\xe8\x14\xda\xa8\xe0\x50\x9f\x34\x5e\x21\x3c\xd3\x77\x8a\x55\x1c\x51\xb3\x83\x79\xab\xaa\x93\xce\x83\xd4\x4a\xbd\x22\x29\xc4\xde\xc1\x8e\x82\xfa\x20\x97\xca\xd1\x95\x02\x77\x0a\x16\x09\x2b\x4b\xf0\x5e\x53\xb5\xe7\x42\x22\xab\x31\x28\xda\xa0\xb2\x3b\xc8\xa3\x43\xc5\x5f\x20\x32\xd6\x84\x31\x01\x0a\x62\x8e\x62\x8b\xad\xca\x45\xd2\x55\x95\x34\x2c\x6e\x57\xc3\x89\x16\xd9\xac\x03\x6a\x2e\x90\x42\xb0\x2a\xf1\x2e\xe3\x1d\xf8\x00\xfc\x11\xe4\xe7\x91\x54\xa9\x94\x9d\x21\xc2\x4b\x78\x26\xf6\x0b\x65\xcf\x81\x1d\x15\x07\x25\xa4\x73\xe3\x9e\xc7\x5a\x23\xf7\x8f\x4d\xca\x74\x5f\xe3\xba\x53\x8f\x48\xac\xd1\x7e\x55\x81\x94\x9c\x34\x3b\x70\x60\x2a\xe3\xc3\x9d\x15\xa5\x93\x3e\xc4\x79\xdd\x75\x30\xd2\xc1\x30\xa5\x10\x33\x30\x17\xf7\x09\x0e\x93\xdb\xe9\x5e\x58\xbc\xb9\xc8\x87\x30\x2d\xdb\x8c\xa1\xf7\x56\xb4\x0a\xc5\x26\x3b\x08\x3f\x48\xe3\x36\x0a\xaf\x72\xf6\x62\xa3\x07\x98\x67\xaa\x1a\xe4\x03\x32\x44\x39\x51\x33\x49\xa0\x58\x75\x7e\x40\xe0\xdc\x65\x13\x55\x56\x4d\x57\x85\x78\x5f\x80\x6d\xc0\x51\x4d\x98\x5c\x68\x03\x2c\xb3\xd9\x10\xe0\xf5\x5d\x71\xf1\xbb\x38\x0e\x9b\x42\xed\x41\xf5\xe3\x4a\xfb\x4c\xbf\x2b\x32\xf4\xa8\x89\x0b\x29\x76\xc5\x5b\xcc\x09\xfc\xc9\x74\x63\x54\xef\x61\xdd\x7f\xa8\x88\x13\xae\xe3\x7d\xcc\x15\x71\xc6\xc4\xd6\x62\x62\xf5\x57\xab\x4d\x8d\x97\x0b\xff\x6e\xb5\xc1\x9b\x88\xaa\xb8\x61\x9e\xe8\x64\xd8\xc4\xe6\x88\x57\xdf\xeb\x4e\x37\xc1\xce\xe6\x58\x6d\x2c\xee\x27\x54\xd9\x3c\x0d\xbf\x2b\xe7\x25\x90\x09\xd8\x0c\xfc\xab\xd0\x01\x51\x21\x52\x10\x3e\x0d\xbf\x39\x35\x26\x55\xa3\x89\x29\xef\xf8\x67\x55\x01\xf3\xba\x42\xfa\x0b\xfc\x36\x5e\x46\x65\x54\x17\x0e\x55\x58\xff\x21\x6f\x95\xc1\xf7\xd2\x7b\x35\x18\xd2\x27\x13\x11\xc8\x8b\x72\x76\x44\x11\x6d\x20\x00\x4b\xf5\x3e\xd8\x1f\x7d\xa8\x92\x95\x52\x30\x50\x5a\x52\xa4\xc7\xe1\xa7\xeb\xa5\x8a\x77\xb5\x63\xde\xf7\x3f\xd4\xd1\xb1\x0a\x09\x29\x06\xfe\x60\x1d\x00\x5a\x23\x84\x2b\x64\x57\xde\x28\xa3\x46\x6c\xae\x08\xe3\x35\x75\x21\x9e\xd0\x8f\xa0\x4d\x18\x35\xf6\x51\xb7\x55\xd5\xe3\xc4\x65\x36\x56\x3c\x93\xb1\x13\x6c\x62\x97\xeb\x13\x4a\x39\x5b\x3b\x41\x48\x90\x9b\x08\x37\x82\x78\x76\x6e\xec\x80\x14\x32\x5e\x6f\xa8\x0e\xef\xbe\x4c\x76\xdb\xe9\xce\xb1\x1c\x80\x1d\xd4\x3a\x5c\x81\xf5\x6a\xe0\x7e\xee\x65\xab\xc4\x9d\x96\x51\x93\x95\xf1\x34\xf1\xd0\x0d\xaa\xa8\x42\x16\x44\x29\x83\xf4\x86\x81\xa5\x09\x13\xec\x6d\x90\x0c\xfd\x4e\x69\xba\x81\x32\xc8\xee\x6c\xc6\xae\x0b\x67\xe2\xd3\xb1\xeb\xc8\xd6\x63\x6e\xdc\x08\x55\xf0\x4d\xdc\x35\xff\xac\xc6\xbe\x05\x99\x30\x8d\xe5\x3b\x4c\x88\x63\x59\xe6\x67\xb2\x1e\x8e\x6a\x28\x16\x35\x51\x04\xde\x66\xc2\x5f\x77\x5c\x85\x7d\xbc\x60\xb4\xc8\x5b\xba\x9d\x82\x24\xbd\x0d\xd2\x28\xee\x38\x4e\x14\x99\x1b\xe0\xd0\x1e\xe4\x51\xec\xec\x41\x74\xda\x7c\x74\x3c\x53\x30\x4e\xb9\xdc\x8b\xfa\x35\xaf\xcd\xa8\x58\x12\x81\x9f\x73\x13\x39\xbe\x1a\xe5\x8b\xd2\xf5\x31\x68\x33\xe8\x2a\x95\x97\xbe\x58\x1f\x05\x0a\x5b\xa7\xef\x64\xa7\x97\xb1\xe1\x2e\x36\xdc\x31\xe2\x55\x70\xa2\x68\xef\x9c\x12\x57\x74\x3d\xcc\xbb\xab\xd9\x59\xeb\x58\xe1\x9b\xe8\x1e\xa4\xa1\x3e\x87\xc9\x1e\x4f\x4b\xc2\x43\xb3\x76\x19\xae\xa9\x71\x87\xf3\x5e\xaa\xf9\x42\x25\x41\xf3\xd6\xba\xe2\x8b\x96\xcb\x80\x93\xae\xa1\x43\x9f\x90\xba\xd4\x7a\x4f\xf2\xe0\xbb\x70\x49\x8d\x13\x1e\x05\x06\xcc\x5e\x95\xed\x99\xae\x12\xae\x37\xdc\x98\x7c\x66\xb1\x84\xa5\x90\xdf\xdb\xd1\xf4\x47\x8a\x64\xbb\x82\x5d\x0b\xfd\x88\xf9\x30\x78\x59\xfe\x2b\xbc\x61\x8d\x6a\x0b\xd8\x63\xf5\x04\x84\x25\xfd\x02\x72\x91\x2b\x0e\x75\x9d\xe4\x88\x27\xad\x9f\xed\x98\x50\xee\x20\x5d\xd1\x71\x5e\xe3\xed\x2a\x18\x9b\x09\x63\x0f\x74\x5d\x8b\x56\x41\x64\x19\x65\xf0\xae\x97\x50\x64\x44\x85\x2b\xfd\x57\x49\x4a\xc2\x4c\x22\x85\x8b\x92\xc4\x25\x11\x4e\xe5\x82\x49\x6d\xcc\x67\xab\xda\x82\xbe\xaa\x60\x6a\x93\x53\xe0\x7e\xd0\xa8\x79\x28\x29\xf1\x8c\xf6\x16\x74\x16\xc9\xac\x45\xc3\x91\x44\x5e\x57\x55\x40\x05\xe7\x16\xfe\x0a\x29\x51\xb7\x75\xab\xd0\xf2\x90\x93\xc3\x46\x08\xb9\xb4\xfe\x63\x1b\x3b\xc5\x54\x91\xfa\xfa\x84\x13\x26\xf9\xa1\x33\x94\x1d\x26\x64\xa1\x37\x03\x70\xf1\x2a\x1e\x1c\xda\x90\xdd\x4e\xbc\x95\x2d\xa8\x93\x78\x82\xe4\x4a\x1c\x24\xa9\xf0\x03\xb1\xfa\x79\x5a\x7b\x5a\x47\xbf\x96\xca\x7f\xea\x5b\xb9\x8b\xbe\xa9\x64\xdb\xe2\x1a\x4f\x77\xdb\x2d\x2e\x9e\x52\xd1\x07\x50\x39\x04\xa9\x92\x62\x6a\x5d\x5c\x4d\x38\xd2\xe6\x7c\xf9\x75\x04\xf0\x1f\xff\x0d\x37\x11\x45\x55\xe9\x26\x22\x36\x72\xb2\xc3\x66\xbd\x9c\x6f\x35\xd9\xb6\xc8\x0a\xf1\x5a\xce\x18\x1a\x5e\xcd\x91\xaf\x81\x5a\x48\x82\x81\xe1\xf9\x0f\x75\x44\xee\x87\x57\x02\x1e\x4d\xda\x09\x89\xd6\x73\x68\x32\x4b\xe2\x8c\x03\x39\x06\x18\x21\x98\x17\xb4\xd7\x2d\xe7\xfc\x12\xe5\x35\xa7\x18\x16\x39\x43\x69\x8e\xc0\xe9\x87\xbd\xae\xf6\x30\x0e\x64\x39\x11\x2d\x19\x67\x57\x90\xe7\x2c\x24\xed\xf4\x76\xd7\x1d\x85\xde\xf7\x76\xf0\xb8\x92\xc2\x05\x73\x92\x61\xe1\x6b\x50\x8d\xdd\x1a\xfd\x3b\x0e\xec\x9e\x4c\x17\xa3\x0e\xfc\x27\xe7\x07\x6b\xb6\x8f\x9f\x58\x10\x2e\x3f\x02\xf9\xd9\xd9\xc3\xcf\x3f\x7d\xcf\xe9\xe2\x0a\xa7\xd0\x8e\x5e\x3c\xd3\xfe\xf9\xb8\x7e\xe8\xc4\x76\xd4\x2d\x1e\xb9\x3f\xc9\xcc\x8c\x9b\x4d\x45\xc8\xae\xf4\x60\xe2\xb0\xa0\x51\xb7\x1d\x84\xb3\xdd\x9d\x9a\x14\xb1\xfb\x3d\x4d\xef\xba\x53\x7b\x82\xc4\xf6\xa3\x75\x89\x32\x38\x72\x6a\xe0\xf1\xb9\xbd\x7d\xbe\x8a\x4b\x3c\xcd\x0f\x4f\x5b\xe0\x50\x0b\x8d\x08\xf3\x88\x00\xdc\xb0\x66\x32\x1d\x44\xa8\x0e\x09\xa5\x90\xff\x98\x97\xc2\x79\x74\xc0\xb3\xcc\x74\x31\x28\xb6\x00\x8a\x50\x5c\x5c\x40\x3b\x88\x0f\x83\xb4\x66\xa6\x0b\xe5\x85\x95\x2d\x5e\x38\x7b\x82\x2e\x19\x39\xf7\xd8\x3c\x5c\xae\x93\xfd\xcd\x14\x8d\xfa\xce\xf4\x2c\x74\x20\xa3\x68\x3c\x22\x89\xa6\x4d\x61\x0a\xaa\xa6\x88\xa6\x85\x56\xe4\xd4\x8c\x0c\xe9\x88\xa2\xd1\x82\x54\x0e\xe9\xf5\x17\x52\xb3\x59\xbd\xa9\xe3\xa1\xba\x2f\xa0\x68\xd8\xa7\x4b\x1c\x0e\x6b\x48\x7f\xc2\x13\x75\xcd\xda\x12\xcc\x30\xb6\xce\xe4\xbc\x57\x96\xef\xf2\x44\x48\xc4\x39\x71\x1e\x38\x96\x7c\x2b\x43\x23\xd0\x08\x97\x4c\xac\x50\x01\xf3\xbf\x8b\x56\x1e\x5d\xe5\xed\x47\x65\x16\x8a\x60\xfa\xa9\x42\x91\xbe\x04\xe1\x88\xa9\xcb\x65\x22\x0e\x53\x71\x89\xaf\xe2\x4f\x12\x98\x8c\xae\x30\xd6\x68\xe6\x46\xda\x23\x7c\x18\x21\xd6\xda\xb4\x44\x47\x98\x0c\xb0\x2d\x57\xdc\xff\xab\x6a\x34\x00\x84\x02\x29\xfc\xe0\xef\x7c\x5a\x0a\xfc\xd9\x66\x31\x6b\x3b\x9a\x8c\x7c\xd2\x72\xa8\x69\x28\x62\x27\x6f\xd4\xe0\xd0\xfa\xf6\x92\x10\xbe\x85\x6c\xc7\xa6\xec\x6c\xd1\x10\x8a\x3c\xe3\x44\xdc\x03\x08\x48\x03\xee\xe2\x40\xe0\x57\x52\x7c\x04\x2c\x6c\x49\xc3\x86\xb5\x38\x07\xde\x46\x82\xb9\x23\xcb\x1a\x71\x79\xf3\xc2\xad\xaa\x58\x61\x40\xfa\xab\x6c\x76\x3c\x81\x07\xd2\x7a\xa0\xfd\x4d\xd7\x4d\x29\x6e\x94\x24\xa8\x78\x78\x71\x80\x25\x71\x8b\xc7\x4e\xcd\x3a\x44\x9d\x29\xf3\x69\x8c\x95\xcb\x34\x41\x54\x1b\xb6\x64\x7a\x56\xc5\xae\x7e\x23\x5e\x26\x7d\x24\x6c\xad\xfe\x08\xd4\x3f\x33\xbf\x93\x34\x42\x07\xa4\xdf\x13\xbb\x3f\xed\xe9\x9e\x5a\xc0\x16\x1e\x22\xfd\x08\x0d\x66\x0a\x92\x4f\x65\x4e\x46\x16\x27\x33\x11\x95\xc5\x62\x4b\x94\xa5\x0f\x78\xca\x3e\x7f\x8e\xce\xc0\xc2\x4f\x8a\x83\x7b\xa8\x4c\xde\xab\x6c\x29\xdf\x2c\x56\x1b\x57\x34\x55\x3d\xa1\x37\x82\x8e\x41\xb2\xf5\x40\x53\x58\x12\xb1\x68\x45\x64\x86\xf1\xd2\x89\x83\xea\xba\x55\x85\xfa\x8c\x95\x81\x53\x9c\x0c\x28\x23\xbb\xcd\x0a\x39\xec\x87\x39\x16\x1a\x37\xb7\xa2\x62\xa8\xc7\x8b\x26\x90\xd7\x8a\x4d\x05\x72\xd0\x1c\x30\x33\xd3\x24\xf3\x7d\xeb\xf2\x27\x0f\x34\x8a\x99\x16\x0c\x4d\xca\x94\xdc\x3b\x21\x37\x70\x8c\xc2\xf0\x75\x6a\xc3\xda\xf2\x5c\x0d\x7c\x7a\x70\xc3\xe8\xa6\xfb\x66\x9e\xda\xc2\xea\x83\x81\x32\xf9\x5d\x25\xde\x9d\x1a\x9b\xab\x2a\x03\xb2\x5e\x0d\x7b\x69\xd0\xe0\x82\x94\x2b\x81\x1b\xb9\xba\x7c\xf5\xea\xf5\xdb\xc4\x84\xc0\x3e\x37\xad\x35\xea\x9b\x68\xe1\x39\x6b\x57\xb0\xf3\x8c\x0b\xb4\x84\x48\x96\xa6\x5c\xe2\x14\x5c\x4e\x86\x33\x83\x94\xad\x45\xda\x6a\xa1\x2d\xe1\xac\x2a\xda\xdf\x9e\x1c\xc2\xf7\x30\x2b\x1f\xaa\xa0\xf0\x7f\x0d\xff\xab\xfc\xce\x24\xbb\x6b\x42\xd2\x92\xae\xa4\xd2\x7b\x1a\xb1\xb5\xb6\x9d\xdd\xa1\xe0\x21\x34\x4a\x14\x25\xed\xbe\xb7\x78\x16\x6e\x04\x9a\x2a\x9c\xc3\x0a\xb4\x03\x12\x04\x18\xdc\xd1\xe8\xbf\x8d\xc8\x7e\xa2\x85\xc1\xaa\xba\xd3\x4e\xaf\x75\x47\x07\xe6\x9f\xe2\x07\xa5\xc3\xaf\xc9\x9b\x8f\xac\x72\xed\xc4\x4f\xae\x97\x46\x34\x9d\x74\xee\xe2\xc1\xa8\xc5\x00\x74\x58\x7d\xf2\x0f\x1e\xdf\x0c\x68\x73\xf0\xd3\xf7\x00\xf1\x78\x86\xae\xde\xd8\xa1\x21\xe5\x6a\x34\xe0\xc1\x7d\xc9\xe9\xb0\x8e\x81\x9f\x2f\xd6\x32\x0d\xfc\x3f\x51\xe7\xc6\x0e\x1f\x53\x3f\xbe\x65\xad\x82\xdd\x10\x6d\xba\x93\xdd\x58\xaa\x98\xa0\x76\x28\xe3\xbe\xab\xf0\x41\x4b\x2a\x8b\x06\x5d\xf8\x2a\x19\x32\xb4\xd9\xfe\x8c\x83\xe6\xef\x7f\xdd\xf8\x5c\x75\x3d\x30\xb6\xdf\x54\xd8\x12\x56\xc2\x4f\x9f\xb3\x62\x5e\x78\x69\x02\x79\xf8\xdc\x04\x53\x17\x66\x23\x7b\x99\x26\x3b\x4f\x0a\x78\x91\xcd\x26\x90\x1c\xec\x44\xae\xb8\x3e\xf2\x55\x67\xa4\xd0\xae\x19\x34\xbe\x96\xa1\xf4\x4e\xa2\x3e\x3b\xbe\x67\xc6\xc4\xad\xf6\x7a\x6b\xec\x90\x0d\xc3\xad\xea\x60\x9c\x56\x31\x4b\x84\x17\xd2\xae\xea\x74\xa3\x8c\x43\x62\x46\xbf\x42\xca\xac\x38\x70\x37\x04\x8b\x1a\x47\x60\xa9\x79\x2b\xc0\x0f\xfe\x5e\x28\xc5\x80\xa1\xca\x4a\x8e\xde\xd6\xda\x68\x8f\xf6\x9a\xda\x6b\xd9\x91\xa4\x53\xae\x57\xe2\xe3\x11\x09\x6b\xb3\x02\x79\x64\x3c\x6c\x72\xc9\xd3\xc3\xb6\x96\xd9\x04\xf1\xcb\x0c\xbe\xd6\xc0\xf1\xc3\x04\x41\xe6\x17\xfc\x18\xba\xee\x87\xd1\x90\x6a\x7d\x34\xaa\x48\x0c\xe3\x9e\x31\x6c\xf4\x36\xee\x91\x1f\x64\xf3\x11\x88\xcb\xa0\x36\x6a\x50\xa6\x41\x3b\x33\x09\xe7\xbb\xe8\xac\xd9\xaa\x81\x64\x8d\x60\xc4\x45\xc5\x02\x72\x0d\x12\xd2\x1d\x71\x9a\xf4\x8c\xfa\x45\x48\xf9\x16\x44\xeb\xef\x02\x60\x10\x8c\x23\x1c\xab\x77\x26\xf9\xa1\x9d\x7c\x1d\xca\xf6\x00\xc2\x28\x38\x66\xe4\x40\x8f\x55\x44\x33\xa8\x56\x19\x18\x6d\x27\x58\x9e\x0f\x66\x06\x01\x1f\x32\xea\xee\x68\x9a\xc4\xaa\xdf\xe2\x57\x75\x90\xbe\xd9\xd1\x95\xcb\x9f\xf9\x27\xde\xb8\x6c\xe5\xef\x94\x7a\x1b\x3f\x70\x0b\x38\xde\x14\x8e\xaf\x4f\x06\x25\x9b\x1d\x9b\xfa\xd9\x4d\x4d\xef\x2f\x91\x65\x79\x1b\xaf\x81\x81\x9e\x20\x9c\x6a\xc5\x5e\x7e\xd2\xfb\x71\x2f\x22\x20\x16\x85\x5d\x72\x56\x5e\xec\xac\x96\xaf\x67\xa6\xa6\x00\x5f\x7f\x4b\x33\xc5\x70\xff\x65\x8d\x51\xaa\xad\xe5\x88\xf6\xde\x48\x74\x0a\x93\xa0\x8a\x5f\xd2\x87\x17\xc9\xf1\x29\x3d\x3d\x49\xce\x73\x4f\xd3\xef\xa0\x81\x93\x25\x49\x45\x43\xef\x75\x37\xaa\x07\x8f\x69\x16\x03\x3d\x0d\x58\x79\x7f\xbc\xe4\xc7\xfc\xd9\x06\x61\x88\x15\x11\xcd\xb4\xd8\xae\xf0\x55\x60\x5a\x6b\x0b\x50\xc5\x91\xcb\x6c\xbd\xcc\x5e\x16\x7e\xff\xec\xc5\x5b\x34\x4f\xb9\xa7\x78\x4d\x6a\x10\xb2\xb8\x23\x12\xf9\x70\x00\xce\xd2\xd9\x5c\xf3\x19\xbc\x10\xc8\x7c\x30\xd6\x47\x7a\x10\x16\xde\x64\xf6\xd2\xef\x52\x5d\x70\xc8\x6b\xe7\x88\xb9\x35\x1a\xe7\xb3\x60\xf4\x12\x76\x6a\x03\x23\x2b\x17\x56\xc0\x96\xec\xfa\x1b\xd9\x05\xa3\xfe\x17\x94\xc8\x05\x21\x11\x75\x3c\xe5\x0d\x69\x30\x6a\x94\xf9\x4b\xd9\x80\x36\x5e\x86\xa7\xd5\x90\xdf\x83\xf3\x96\xe4\x03\x86\xdd\x2d\xd8\x4d\x45\x67\x44\x48\xe7\x13\x63\x13\x8f\x1e\x7c\xe9\xe8\x54\xb7\x29\xcf\x1c\x74\xcb\x50\x8c\x60\x6e\x60\x6b\x0f\x06\xb8\xb4\xfe\x58\x77\xda\x7c\x44\xc6\xac\x3f\xa6\x84\x8c\x43\xbf\xb2\xbd\x56\x6d\x06\x1c\xad\x88\x6e\x70\xf1\xfc\xd7\xff\xfb\xff\x3d\xba\x82\x6e\x5f\xf9\xa1\x7b\x74\x15\x04\x20\x80\xa7\x69\x20\x04\xe2\xf5\x7f\x54\xa3\x39\xb0\xc9\xd0\x3b\xfa\x55\x85\x6f\xa4\x30\xd5\x68\x1c\xdf\x99\xe0\x8f\x8a\xbf\x80\xd0\x54\xec\x65\x02\x28\x4c\x55\x99\x78\x40\xbe\xb2\xc5\x19\xf9\xb7\x51\x37\x1f\x6b\x52\x7d\x5d\x88\xff\x84\x2f\x81\x9e\x0b\x98\x4d\x80\x13\x27\x1e\x1f\xb8\xe6\x27\x67\x50\x6e\xd5\x8f\x67\x2b\x3f\x16\x4a\xc7\x8d\x2c\xd9\x9e\x63\x20\xf8\x01\xb0\xd3\x46\x55\xfd\xe8\x76\x74\xa3\x1e\x6a\xbb\x19\xdd\x0e\x9f\x96\x42\x22\x9d\x23\x11\x03\xce\xec\x0c\x07\x56\xaf\x1d\x3d\x4d\x5f\xe6\xee\x30\x2b\xb3\xb8\xde\x2b\xb1\x96\xcd\xc7\x20\x49\x56\x74\x84\x92\xe9\x9f\xab\xe2\xa9\xc8\xa7\xa1\x1f\x14\x4a\xcb\x83\x52\x00\xe9\xd5\x10\xec\x01\xa4\x69\x6b\x2f\xb7\x54\x12\x58\x17\x2e\x6a\x07\xe1\xe5\x96\x11\x21\xe6\x5f\xf8\x67\xe5\x25\xde\x18\xbf\x95\xdb\xb9\xdb\x8b\x7e\xec\xba\xb9\x73\x8c\x4e\xae\x15\x26\x5f\xe3\x8f\x6a\x0f\x8d\xf4\xd6\x28\x3a\xfd\xc2\x47\xd5\xa0\x41\xa3\x8b\xa6\x8d\xae\xe2\x77\x59\x64\x41\x40\x3f\xb1\xab\xf5\x20\x0f\x90\x26\x0f\xf4\xb9\xd3\x8e\x9d\xa5\x3c\xa7\x5f\x94\x8c\xaf\x4b\x08\x14\x1f\x97\x44\x78\x94\x14\x78\x3f\xdc\x84\xdf\x94\xe5\x2d\xf0\x5e\x03\xde\xb7\xe1\x44\x84\xbb\x36\x6f\xad\xa0\x0c\x62\x7e\xdd\xce\x1e\x4c\x75\xa7\x5b\x65\xf1\x78\xe1\xa7\x62\xe4\x2e\x66\x3d\xd8\x83\x0b\xcc\x21\x8c\x2a\x7d\x02\x09\x01\x89\x36\x3c\x2b\x7b\xfe\xf6\xe5\xf5\xff\x14\x88\x03\xc6\x7b\x55\x55\xaa\x85\x39\x5f\xa1\xbb\x15\xba\x0c\x7e\xa5\x0e\xc4\x94\x71\x16\x5d\x11\xd6\xf1\xaa\x18\x2d\x59\x73\x00\xf8\x17\xb2\x7f\x6d\xb5\x2f\x32\xfb\x41\xe1\xa8\xd0\x9d\x93\xa3\xcd\x8d\xcf\x17\x89\x15\x77\x01\x90\x88\x4b\x8d\xc8\x8c\x35\x35\x9c\x45\x75\x58\x66\x57\x44\x79\x20\x53\x18\x6b\x1e\xe1\x41\x85\x99\x45\x23\x70\x13\xe6\x2d\xf1\x61\x40\x03\xd8\x7e\x74\xbe\x5e\xab\xda\x9a\x5a\x26\x66\xee\x2f\xc1\xb8\x65\x8d\x46\xc9\x32\xac\x4a\x38\x31\xe4\x47\xb2\x86\x1b\x2c\x88\x57\x22\xf4\x23\xb8\x2d\xc8\x91\x23\xd1\x24\xaf\x25\xd8\x8f\x1c\x33\x52\x99\x29\x5b\xca\x1e\x4e\x00\x36\x58\x80\xe5\xf8\x82\x66\x23\xeb\x55\xae\x58\x99\xf5\x6b\x27\xef\x54\x8d\xef\xe4\x59\x3f\x97\x37\x00\x35\x5d\xf4\x88\x3e\xe9\x0c\xbe\xaa\x77\x64\x5e\x81\x4d\x4a\x44\x1c\x6d\x7f\x4b\xd5\xf5\xb2\x2a\x37\x2c\x34\xe0\x92\xf0\x29\x49\x58\x6e\x6c\xb0\x37\x60\x65\xab\xd5\x2a\xaf\x2f\x0a\xc1\xa8\x7b\x03\x1e\x33\x9d\x7e\xe7\xf4\xa8\x1e\xd9\x20\xed\x91\x9d\xef\xf1\xdc\xf8\x7e\x05\xb0\x41\xb7\x94\x17\xd8\x5a\xea\x99\x12\x6b\xb5\xd5\xe4\xbb\x06\x45\x41\xc5\x6f\x09\x13\x12\xa0\x76\xae\x97\xe8\xc1\x84\xda\x83\x27\x93\x1d\xb2\xf5\xda\xa8\xae\x46\x8b\x21\x71\x21\xe8\x33\x66\x22\x3d\xc9\x16\x3d\xdb\x4e\x4f\xd6\xbc\x6c\xdb\xda\xef\xfb\x70\x13\xf7\xf0\xcc\x7d\xff\x53\xe8\xf6\xe3\x87\x19\x54\x02\x78\x98\xb6\x65\x4b\xfe\x94\xd8\x0c\x20\xcf\x9b\xda\xd3\xe4\x79\xdc\x34\xb6\xf1\x8e\x5e\xbc\x5a\x7c\x10\x13\xfc\x29\x08\xf5\xc9\x2b\xd3\xaa\x56\xb4\xe9\x0c\xcc\xe6\x86\x91\xd0\xd0\x76\xc7\xda\x5b\x5a\xa5\x71\x47\x71\x7f\x03\x40\x18\x76\x56\xf0\x04\x7e\x93\xc0\x1f\x41\x77\x1f\xe0\x1b\x98\xa8\xf0\xc1\x8c\x54\x5d\x3a\x3a\x53\x0d\xe1\xd0\x0c\x4a\x23\x13\x6d\xdf\x13\x9e\x0d\x3a\x58\x40\x5b\x4d\x6c\x0f\x7a\xa6\x20\x17\x35\x02\xce\x8e\xf0\x1c\x68\x95\xd3\xc1\x60\xba\x86\x06\x3b\xcc\x0c\x94\x76\xf5\xf9\x48\x4c\x8c\x4a\xa6\x8b\x97\xc9\xda\x5a\xc5\xd3\xf6\x29\x67\x2d\xf8\xb9\xa1\xb2\xe1\xa8\x24\x86\x8a\x0e\xfb\x74\x22\xd2\x66\x2b\x6e\xa1\x5c\xf4\x87\x94\x4b\xfb\x61\x2d\x84\xe5\x0f\x27\xbe\x8c\xd4\xd1\xf8\x81\xaf\x9c\x58\x7e\xeb\x25\xdb\x38\xd0\xbb\x52\x49\xe7\xd0\x84\xe3\xbc\xaf\x22\xa4\x0f\x58\x87\x3b\xee\xf9\xac\x8b\xfe\x85\x82\xa4\x23\x45\xc8\x0c\x4a\x7c\x1e\x02\x7c\xe7\xa1\x99\xfd\x24\x43\x1f\xb5\x16\x8c\x7a\x36\xaa\x58\x4d\x6a\x55\xaa\xa8\x10\xd0\x72\xa6\xe8\xcb\xbb\xc0\xd4\xb8\x36\xb6\x26\xf1\x3b\xcd\x40\xd9\x9d\x23\x4b\x01\x81\x7c\x4f\xe4\xf5\x28\x19\x9f\xaa\x88\x8d\x3f\xea\xc3\x2e\xab\x36\x90\xd4\xd9\x7d\x25\x43\x0b\xa7\x4d\xa3\x92\xaf\x25\xd5\x86\xfa\x57\xf7\x2b\xa2\xd2\x6b\x27\xbc\x67\xe5\x2b\x82\x03\xcc\x02\x1e\x0d\x45\x25\x76\x88\xdb\x8a\xc8\x61\xd8\x3f\x5b\xa9\x4d\xda\x5e\xde\xa2\xc1\x2c\x9d\x2a\x7e\x97\x9d\x20\x65\x4f\x67\x4b\xf9\x92\x86\x11\xd5\x32\x69\xca\xbe\x7c\x51\x1b\x1b\x68\x2b\x90\x1e\xe0\x8c\x68\x76\x40\xe4\x43\xb9\x2c\x3f\xc9\x20\x3b\xb5\x07\xbd\xc1\xd8\x9a\x8d\x97\x78\x3b\x3c\x25\xf9\x29\x6a\xfc\xbf\xe7\xdb\xec\x34\xd9\xd8\x54\x7a\xd5\x00\x22\x55\x46\xc0\xdd\xb8\x6e\xf5\xc0\x34\x94\x3e\x58\x3c\x4b\x54\x82\x4d\xa4\xb1\xde\xc8\x4d\xb9\x49\xc5\x91\xb1\x72\xc1\x90\xe2\x44\xad\x39\x0e\xc0\x49\xd5\xbf\x5b\x40\x50\x05\x1e\x77\x35\xe7\x75\x43\xce\xe4\x15\x32\x4f\x75\xca\xdf\xd0\x95\xe1\x53\x6d\xda\x98\x26\x51\x23\x11\x5f\x2b\xc5\xf4\x7d\x7c\x4a\xc4\x8f\x8a\x62\x0e\x1f\x56\x4f\x50\xd9\xc6\x69\xe1\xf1\xf9\x6b\xf8\x1f\x53\x8d\x3a\xb0\xbe\xf5\xa0\x86\xf8\x38\x9b\xfc\x2a\x02\x1d\x46\xd6\x3f\x4b\x5e\x4d\xd9\xfd\x2c\x0b\xf6\x30\x24\x92\x3c\x87\xf9\x79\x76\xd3\x29\x39\xd4\xb1\xfc\x15\x7c\x8a\x6e\x86\x25\xca\x0f\xb9\xf8\x30\xa9\x26\x87\x79\x65\x97\xc1\xa8\xba\x1c\x92\x6a\xdc\x2f\x01\xdb\x5e\x99\x02\xf6\x75\xaf\x4c\x2e\xbd\x14\x88\xad\x53\xed\x04\x33\x5e\x06\x2c\xc3\x4b\x87\x4e\x45\xf0\x3a\x84\x7f\xce\xdb\x99\x01\x51\x33\xe5\x02\xa8\xb1\x39\xdc\x2b\x3b\x03\xe2\x8d\x14\xcf\xeb\xe9\xec\xa5\xf9\x51\x87\xd9\x04\x51\x66\xdd\x77\xb2\x51\xd1\x55\x01\x02\xc5\x63\xb8\xa8\x26\x22\xe3\xca\x0a\x7c\x84\x2b\x2a\xab\x57\xf1\xde\x0d\x76\x8d\x04\xb6\xaf\x55\x1b\x34\x27\x77\x0a\xb5\x83\xe5\x42\x98\x16\xd7\x66\x63\x73\xa2\x63\xfe\xeb\xff\xf9\xff\x3d\xea\x75\x79\x3d\x1d\x95\x4f\x76\x7d\xc5\x33\xdc\x07\xb1\xaf\x0f\xc2\x93\x5c\xb9\xb6\x85\xc7\x15\x7a\x00\x40\x9e\xf6\xa6\x4d\xe3\xe7\xbb\x27\xda\xb5\xa0\x69\xc7\x41\x71\xca\x9f\x2a\x32\x3a\x36\xcf\x25\x7a\xfb\x59\xf8\x40\x43\x73\xb9\x30\x11\x32\xa4\x42\x84\x23\xfa\x4e\x8d\x74\x94\xfc\x65\x10\x5a\x5c\xe1\x5e\xae\xc5\x85\x38\x6b\x71\x79\xc7\xd9\x84\xc5\x9b\xb2\x68\x2d\x87\x4c\x56\x28\x84\xa9\x2e\xe6\x38\xcf\x83\x03\x9c\x54\xfe\xb4\x32\xa3\xfa\xbf\x5b\x28\x71\xef\x16\x9f\xc2\x9c\xc4\x3c\xdb\xc8\x5c\xf2\x9e\xfd\x96\x20\xb6\xda\xa8\xd3\xa8\x4f\x94\x63\x25\x30\xaa\x7e\xe7\x39\x2b\xd9\x75\x75\xd4\x99\x5c\x76\x9d\xa0\x8f\x45\x50\xc7\xce\x67\xbd\x05\xf9\x2c\x35\xb5\x65\x9b\x88\xa5\x42\xb4\x5a\xdb\x7a\x7d\xe4\x32\xb4\xf1\xd0\xab\xd5\x89\x22\x7b\x65\x40\x98\x00\x0e\x8b\x8a\xbc\x8c\x09\x0b\x45\x1c\xfb\xd8\xb3\x83\x5f\xc8\x59\xe1\x7a\xf4\x7c\x58\xb8\x45\x10\x20\x1b\x08\xf2\x1a\x7f\x2c\x81\x90\xa5\x50\x14\xa8\xde\xb0\x13\x80\x60\xab\xbc\x58\xb1\x92\x2e\x95\xb8\xc6\x47\x3b\xc3\x17\x94\xdb\x5b\xe7\xe1\xa0\x23\xc3\xb0\x97\x16\xdf\x56\xe2\xe7\x3d\xf5\xa4\x02\x54\xd1\xac\x04\xec\x24\x9c\x05\x90\x50\xf1\xb7\x38\x7b\xff\xc3\x07\x07\xd3\x90\x2c\xee\xde\xff\xe1\x83\x7b\xf0\xf8\xec\xfd\x1f\x3f\xa0\xa9\xdd\xac\x70\xbd\x91\x1f\xd5\x02\x06\x2c\x18\xa0\x51\x9f\x63\xc7\xa8\xc8\xb1\x63\x76\xb2\x7c\xa2\xa9\xf8\xe4\xcb\x2d\x1e\x7d\xf3\x4d\x76\x78\x1b\xb3\xca\x1d\x6e\xc6\x7d\xcd\x7d\x74\x44\x01\xc2\x57\x2c\x1e\x46\xa0\x96\x50\xe5\x6f\xf1\x3b\x75\xf7\xdf\x80\xe9\x3d\xc3\x9e\xfe\x16\x8a\x05\xdb\x78\x82\xce\xbc\xe1\x5d\xb2\xad\x64\x34\x9a\x0c\xd7\xf8\x6d\xa6\x6f\xe1\x62\x3f\xc7\x66\xda\xcc\xc6\x8f\xce\x01\xbc\xcb\x89\xbc\x3b\x9c\x00\x25\x49\xc3\x8f\xd0\xdf\x32\x2b\x34\x2a\x82\xf0\xa4\xe3\xd3\xd7\x1c\x7c\x50\x38\xaa\x01\xee\x0d\x7e\x4e\x32\xef\x43\x36\x14\x05\xf8\xe0\x4c\x4b\x8c\x41\x27\x13\xc5\xc3\x4c\x4c\xc5\x4f\x52\xe8\x16\x16\xd4\x0f\x1f\xdc\x83\x38\xdc\xf8\xf5\x18\x17\x4b\x31\xe8\x54\x5f\xc4\x11\x3e\xbf\x12\x0b\x6b\x1c\x06\xb5\x89\x78\xf8\xb6\xb4\xa5\xd9\xa1\xae\xf2\xb3\x49\x16\x57\xbe\xae\x8a\xde\xb2\xaf\xf0\x1b\xfc\x91\x6a\x0e\x0e\x88\x90\xe3\xbd\xca\x3e\xe3\x32\x2f\x4c\x3b\x38\x31\x78\x74\x0b\x0f\xe0\x59\x95\x50\x58\xc0\xb2\x4b\x9e\x20\x91\xfd\xd5\x06\x99\xa7\xb1\xe6\x4e\x0d\x8e\x5f\x69\x32\x46\xd6\x29\xfe\xda\xea\x34\x3d\x13\xf5\x43\xa8\x1b\x24\xba\x0b\x71\x2b\xef\xd4\xe4\x10\x0f\x4c\x4f\x64\xa2\xca\xfc\xc6\x76\x36\x31\x59\xf8\x35\x05\x20\x73\x9b\xb3\x76\x91\x3f\x4a\x4b\x93\x77\x2e\xba\x0f\x2c\x4f\x1d\x82\x5c\xe8\x0c\x65\x4c\x94\x57\x65\x66\x74\x07\x41\x0d\x44\xa7\x10\xc1\x1d\xe5\x1c\x0b\xbf\x7b\x42\xd0\x68\xef\xb3\x08\xb6\x6c\xe8\x4f\x3c\x46\x6e\xaa\xa6\x51\x2e\x4d\xc6\xfd\xda\x14\xd6\x6b\x8c\xfb\xb4\x3d\xd5\x72\xe5\x49\x9d\x4a\x6d\xfd\x8c\x2a\x35\x23\x93\xbd\x1c\xbc\x6e\x74\x2f\x23\xa9\xbc\xc9\x52\x02\xa4\xf4\x5e\x36\x3b\xd8\xd6\x39\xd3\xf5\x1b\xa9\x04\x58\x13\x00\xeb\x11\xbb\x83\xb7\x50\x5e\xae\x7f\x5b\x28\x1d\xdd\xd0\xe5\xa5\x63\x22\xa0\xf8\xad\xa2\x4b\x99\x4c\x60\xcb\x2f\x67\x38\xb3\xb1\xfb\x5e\x0e\xaa\x54\x90\x42\x4a\xd4\x90\x2e\xc2\x85\x59\x0a\xc0\xfe\x60\x45\xbc\x32\x42\x27\xfa\x70\x82\x95\xaa\x3d\xd4\x01\x46\xad\x44\x89\x16\xbd\xde\x5d\xe0\x5b\xbe\x69\x85\x5c\xc3\x85\xe0\x5f\x9c\x5f\xdc\x66\x4d\x6f\xb1\x42\xcf\x6d\x3d\x28\x37\x76\x38\x23\x68\x88\x4c\x1f\x1b\x32\xa1\x0d\x40\xe8\xc9\x1c\xb8\xad\x54\x57\x76\x88\x90\x9f\x73\x7e\x16\x01\xb9\x6b\xd5\x48\x60\xd4\xb1\xcd\xd0\xd7\x9d\x92\x6d\xd6\xfb\x41\xa1\x47\xd4\x80\x7f\x27\x5d\x9d\xbb\x90\x87\x19\x8b\xe8\x83\xa2\x65\x32\x52\x6b\xe5\x0f\xe8\x61\x00\xdf\x29\xc0\xe0\x92\x3a\xc9\xfd\x98\x73\x11\x3f\x7c\x70\xdf\x63\x1d\xdf\x03\x2b\xd1\x32\x25\xfd\x37\xfc\x20\x7a\xca\x43\x39\x91\xfc\x16\x96\x01\x52\xa3\x30\xa9\x07\x5c\xc3\xde\x8a\xbd\x1a\xb6\x0a\xd9\x8f\x36\x28\x23\x88\xae\xff\xd4\xd8\x56\x05\xc2\x8d\xbf\x85\x36\xde\xc6\xf4\x3f\xc6\x74\xc6\x8f\x98\x98\xcb\x08\xd5\x50\xda\xbf\x86\x5e\x9c\xbd\xff\x1f\x1f\xc2\x1a\xf5\x72\x5d\xe7\xe4\x9a\x6c\x11\xe3\x67\x01\x35\xd5\xc1\xa4\xbc\xe2\x42\x35\xe8\xe1\x38\x9f\x0f\x75\x6f\x6b\x1a\x9a\x68\x9d\x43\x19\x6c\x66\x9b\xcf\xa4\xb7\xa2\x57\x03\x90\x29\x1e\xcd\x68\x8d\xb9\x2a\x86\x06\xd9\xef\x21\xd5\x04\xab\x26\xe6\xbc\x9d\xa1\x8d\x74\x89\x61\x4a\xb2\x44\x28\x5a\xe9\x65\xbd\x1e\x82\x8d\xb1\xf4\x32\x5a\xdb\x2d\xe3\x62\xd8\x76\x4c\xcf\xea\x61\x14\xed\x86\xee\xcc\x32\x6a\x1b\xda\xae\x5d\x8d\x2f\x8b\x48\x5d\xfa\x96\x9f\x0b\x75\xba\xf1\x22\xa6\x6b\xc7\xef\xda\xc9\x43\xf0\x96\xfc\x2d\xc7\xa0\x04\x9b\x41\xb9\x1d\x7a\x43\x05\x80\x8d\x3a\x88\xbd\x45\x0e\x33\x92\x08\x69\x6a\x34\x2e\xc3\xae\x16\x26\x2a\x45\x37\xd8\x5e\x85\x07\x64\xe2\xe3\x34\xa2\x42\x73\xa0\x2f\xc3\x46\x66\xdc\x4b\xf8\x22\x09\xf0\x51\xd1\x19\xfa\xed\x4e\xd7\x35\x0d\x2e\x40\xeb\x61\x2f\x0d\x99\x8d\x6a\x23\xec\xd0\xaa\x81\x5d\x60\xe1\x23\x1d\xbf\x5b\xc0\x4c\xd8\x26\x24\x05\x17\xcf\xd2\xce\xc6\x05\x3b\x1a\xde\x80\x58\x2a\x2a\x7f\x7f\x63\xa5\xc8\x43\x1f\x17\x29\x2f\xe4\x64\x33\x5c\x76\x35\x27\x59\x86\x58\x8a\x62\xd8\xbe\xfd\xb7\xb3\xf6\x3b\xda\xc4\xf8\x58\x67\x66\xf9\x07\x89\xd4\xf1\xfc\xf0\x06\x2a\xaa\x1d\xfa\x78\x83\x25\x03\x07\x05\x00\x69\xb3\x5d\x05\x22\xc6\x12\x43\x66\xf6\x87\xcc\xc9\x2f\x39\xbd\x2f\x60\xd0\xe5\x83\x51\x87\x6c\xb3\xf3\xbd\x4d\xba\xeb\x08\xa7\x7a\xe8\xa4\xa6\xdd\x40\x4f\xec\xa8\x14\x59\x6c\x63\x93\x4d\xa3\x56\x55\x66\xc3\x90\x9d\xac\x49\x53\x91\x65\x2f\xa8\x55\xb2\xdc\x65\xd5\xca\x14\xa0\x4d\x1a\xc4\x33\x57\xd4\x6d\xeb\x76\x54\x35\xcb\xbd\xaf\x2c\x6e\x5b\xf8\x9a\xb6\x20\xc8\x7b\x53\xcc\x51\xf8\x29\x3b\x54\xbb\x71\x0d\x07\x1a\x39\x66\xa3\x03\x23\x33\xdb\xf0\x36\x18\xac\xf3\x5d\x31\xb3\x26\x05\xfa\xc9\x79\xb3\x38\x38\x81\xff\x45\x47\x5e\x79\xc6\x82\x59\x6c\x9e\x9b\xfa\xfc\x64\x54\xa8\xc5\x16\xdf\x86\xcb\xd2\xef\xca\x4e\x2a\x7a\xbe\x0d\xff\xf3\x8c\xe8\x7a\x97\x51\xd5\xb4\x0e\x19\x23\x22\xe7\x94\xe4\xd5\xf5\x3c\x5a\x25\x3c\x3c\x1e\x8f\xc7\x47\xfb\xfd\xa3\xb6\x7d\xb8\xd0\xeb\x8c\x83\x8c\xdd\x9e\xdc\xca\xb3\xaa\x66\x42\xb3\x33\x4c\x19\x43\xbe\x3c\x76\x68\x62\x91\xcf\xd3\x3b\xd4\x4e\xae\x95\x87\xb5\x9a\x5d\x14\xd3\x4e\x4a\xb3\xe7\xe0\x34\xb2\x7d\xa7\xd2\x33\x15\x20\x2f\xf4\x02\x2f\xef\xcb\x44\x98\xc9\xb2\x26\x6e\xe0\xee\x6d\x60\xb4\x2f\x63\xe6\xd2\x6e\x52\x63\x26\x83\x42\x21\x28\x4e\x0e\x49\x26\x44\xa4\x61\x8d\x82\xc4\x02\xe0\xb2\x18\x91\x6a\xff\xef\x14\x25\x96\xaa\x5f\x5a\x06\x9f\x11\x26\xaa\x83\xfe\xa8\xc5\x85\xf8\xb3\xfe\xa8\xf1\xf7\x8a\x1d\xf7\x65\x8e\xfa\xbc\xc5\xec\x6f\x8a\xfc\xd0\x57\xc8\x41\x7b\xa5\x9d\x12\xa8\xa9\x17\x14\xf7\x81\x9e\x25\x8d\x5d\x2b\x3a\xfd\x91\xce\x76\xdb\x8c\xa8\x65\x38\xb2\x1f\x89\xbf\xa2\x53\x07\xbb\x55\xf8\xda\x3b\x32\xf0\xda\xf3\xa2\x5a\x51\x85\xbc\xc6\xd1\xc3\x4c\xcd\xb1\xb9\x78\x93\x93\xe9\xc6\xe0\x3c\x9e\xe5\x04\x9e\x47\xef\xc2\x04\x66\xda\x39\x9d\x59\xf6\x04\x4f\x6e\x01\x72\xac\xaf\xd8\x3d\x3b\xe5\x07\xdb\xef\xd2\x72\x02\x7a\x4e\xd6\x34\xc0\xad\x2b\x21\xd7\x76\x64\x83\x23\xd6\x0b\x26\x02\xc1\xfd\x40\xc7\xd4\x5c\x13\x88\xe6\x59\x1d\x68\x2d\xcd\x15\xf0\xcd\xc2\x99\xc3\x9b\xdd\xa0\xdf\xc0\x72\x67\x8e\xc0\x71\xa5\x43\x4a\xcd\xf7\x07\x2c\x48\x17\xfd\x49\x79\xd3\xfe\xd0\x6b\x9d\x02\x84\x0f\xb6\x65\x28\x63\xbd\x6e\x54\xfd\x43\xe0\x59\xf2\x17\x3d\x64\x3b\xb0\x55\xcc\x26\x83\x0c\xc8\x5c\x72\x74\xa2\x0a\xfb\x5d\x0d\x1e\x3d\xa6\xc6\x19\x9a\x5f\x0a\xe3\x42\x42\x54\x93\x67\xb7\xe5\xbd\x70\x86\xc3\xf1\x34\xbb\x6c\x10\x83\x83\x89\xf0\x3c\x94\x3f\xcf\x5c\xb5\x18\xb9\x2b\xa4\xad\x68\xb2\x5c\x8c\x21\x92\x65\x65\x8e\xa9\x99\xbd\xcf\xbe\x4f\x80\xad\xe8\x5d\x0b\xfb\x6b\x3c\x05\x44\x37\xe7\xbc\x92\x4e\x01\x61\x08\x2d\x7a\x1a\x71\x0a\x64\x34\xe1\x82\xe8\x42\xbc\x0b\xbf\x13\xf0\x92\x59\x65\xcc\xfc\xdc\xd3\x86\x13\x80\x89\x89\x55\x21\x6e\x45\x30\x91\x21\xfd\x95\xd3\x2d\x7a\x4a\xc3\x1b\x2f\x90\x5a\x1f\x84\x7c\x94\xc8\x6d\xab\x02\xb7\x73\x5e\x70\x73\xec\x00\xc2\x60\x28\x90\x60\xdb\x90\x5a\x31\xb1\x7b\x9a\x66\xd4\x93\x56\x26\x8a\xf8\xa4\x6c\x64\x10\x4a\x32\x5e\xf1\x5e\x27\x25\xdf\xa4\x9a\xfa\xc1\x7a\xbc\x95\xa9\xb3\x81\xbd\x09\x89\x0b\x43\x3c\x2f\x10\x9f\x59\x50\x4e\x92\xe3\x91\x89\xc5\x97\x50\xa2\x1f\xdd\x0e\x43\x03\xc9\xa6\xd1\xad\x32\x5e\x76\x49\x3c\x42\x1f\x46\x3b\xed\x15\xbe\x12\xce\x46\x13\x5d\x43\x66\xeb\x84\x5c\xcb\x64\xc6\x8e\xec\x58\x26\x18\x39\xae\x56\xab\xe9\x42\xa9\xb9\xbd\xb4\xda\x99\x7d\xbd\x89\x69\xf7\x80\x4f\x5e\x8f\x50\xe5\x82\xf3\x45\xd8\x62\x30\xff\xdc\x9c\xe8\xfb\x78\x35\x1b\xad\x89\x45\x59\x18\x29\x9c\xb4\xf5\x64\x69\x2e\x14\x89\x47\x31\x07\x12\x49\x63\xca\xba\xa2\x7e\x50\x77\x70\x18\xe1\x88\x87\x71\x5d\x68\x46\xd0\xdf\x4e\x44\x9f\x10\xd6\xa3\x10\x44\xb4\x71\x1e\x76\x2b\xd9\x80\x84\x19\xfc\x32\x9c\xf1\x89\x32\x85\x0d\xc1\x7e\xd2\x88\xe5\xc1\xa0\x4a\xcc\xd1\x50\x93\xe7\x32\x28\x16\xa2\xab\xb8\x35\x77\x99\xde\x48\x1b\x72\xab\x62\xac\x79\x14\x97\x64\x98\x09\x3c\x7d\x49\xea\x2c\x91\x46\x57\xc4\xa5\xc1\xdc\xac\x4f\x71\x35\xd6\x69\x21\x02\x69\x8b\x8b\xf4\xb0\xb3\x28\x2e\x43\x83\x26\x75\x7c\x19\xb6\xdc\x58\x91\x19\x4a\x3b\xf0\x13\x57\x6f\xb3\xed\x60\x37\xf9\x38\x4d\x07\x29\x55\xb6\xb3\xf6\x23\x85\x6b\x58\xe3\xcf\x94\xb3\xd5\x3e\x64\x3e\xd3\x5e\x3c\x2f\x73\xd7\xd2\xe9\x26\x8f\xe9\xf8\x0b\x24\x2c\x1c\x2a\xfc\xf0\x22\x83\xe4\xc7\x57\x73\x50\x77\x34\x4d\x8a\x84\x79\x7b\x34\x8d\x78\x65\x0f\x73\x54\x00\xa6\x4d\x1d\x74\x1a\x09\x25\xe4\xc4\xe0\x14\x9f\xd7\x79\x10\xbf\x22\xd9\xb5\x79\x36\x28\xec\x40\xec\x75\x08\x32\x72\xab\x17\xa8\x6c\xd6\x23\xb6\x3f\x9d\xf7\x88\x1d\x14\x01\x81\xfd\x32\xf7\x5e\x4b\x6e\xbd\xa6\x06\x74\x11\xbb\x6c\xef\x40\x4a\x68\x8b\x58\x9d\x9c\xb6\xd0\x18\x60\x10\x26\x3b\x0c\x19\x5f\x77\x74\x5e\xed\xb3\xfe\x39\x45\x6f\xea\x8c\xec\x6a\x66\x8d\x41\xce\x59\x8f\xba\xf3\xda\x60\xa1\x12\x5a\x7d\x9a\x43\x87\xb4\x09\x78\x01\xca\xf1\xd6\x7e\x0d\xa0\xc8\xfe\xbc\x7b\x73\x7d\x0f\x78\xe8\xc0\x9f\x8a\x90\x3f\x6b\x18\x21\x5a\xef\xb4\x79\xdf\xbd\xb9\xa6\x88\x8c\x7e\xa7\x8e\xa5\xe9\x89\x97\xeb\x6c\x0c\x49\xc6\x98\x0c\x0b\x5d\xa4\xe1\xab\x44\x35\x9c\x18\x18\x84\xa9\x19\x66\x32\x42\x9d\xde\xee\xfc\x41\xa1\x8b\x82\x7b\x70\xc5\xce\x2d\xe1\x8a\xe3\x77\x02\x41\x2c\xcc\x39\xd3\xb1\x44\x2b\x23\xf1\x96\x71\x2e\x0f\x6a\x56\xf4\xbf\x7b\x5c\x73\xd4\x51\xcc\x3f\xdd\x38\xf1\x14\x61\xe6\xe5\x69\x68\x9c\x3f\x92\xcd\xee\x32\x82\x57\x72\x8f\xee\x71\x00\xea\xc7\x7b\x71\xac\x82\xab\xeb\x0b\xf1\x8a\x7e\xdd\x0f\x8e\x2e\xb2\x53\x99\xcb\xec\xf3\xbe\xbe\xe6\x8e\x0a\x80\xde\x8f\x8e\x05\x43\x36\xe1\x22\x41\xe1\xef\xa3\x53\xc3\x3f\xc4\xdf\x61\x73\xff\x43\xfc\x5d\x9b\x56\x7d\xfa\x47\xd0\xaf\xc7\x68\x5b\x40\x38\xce\x67\xcf\xde\x49\x71\x07\x83\x80\xc5\xf2\xc3\x68\xec\xba\xe9\x82\x2e\x99\x4b\xf6\x15\xd2\xfb\xe0\x0d\x12\x24\xea\x41\xaf\xc7\x09\xd3\xdf\x4a\xb4\xfd\xfd\x9d\x6c\x82\x9e\xe0\x97\xf8\xbf\xad\xc9\x68\x21\x06\x21\x46\xe7\xc4\x3b\xe9\x6a\x47\xcf\x46\xd9\xc9\x2a\x79\xee\xa3\x8b\x61\x19\xc3\xa9\xb8\xf2\xdd\x5c\x29\xe7\xac\x26\x6c\x53\x3c\xae\xd1\xe1\x63\xc6\xf9\x9b\x3b\x35\xf8\x78\xcd\xe0\xc5\x5b\x2b\xde\xa8\xed\xd8\xc9\x21\x7f\x91\x39\x2d\x30\x9d\x96\x80\x87\x55\x14\x78\x86\xc0\xe0\x88\x81\x71\x65\x64\x37\xbe\xcd\x64\x0d\x26\xb0\x4e\x03\x39\x50\x9a\xd6\x42\xb2\xa2\x43\x61\xf1\x11\x7b\x9b\x2d\x5d\x41\x14\x15\x67\xa3\xc1\x6d\xc0\x3b\x97\xa5\x56\x90\x29\x44\x6c\x03\x79\x84\x58\x68\x41\x32\xeb\x08\x3e\x21\xf8\x3e\x66\x22\xad\x11\x34\x39\x66\x99\xbc\xd2\x4d\x5a\x33\x82\x0a\x41\x36\xa8\x49\x68\x74\x55\x3a\x30\xcc\xb7\x03\x39\xc5\xbd\x80\x0d\x4a\x3f\x5f\x07\xb7\xba\x73\xb0\x28\x45\x25\x5f\xba\xe5\xa0\x64\x6c\x1b\x6e\x08\x9e\xa4\xd2\x4b\x08\x9c\xe7\x31\xbe\x28\x87\x1c\x41\xf1\x13\x1d\xc5\xb8\x85\xe6\x4d\xa6\x69\xd1\xa7\x88\xde\x64\x6b\x18\x6d\xf7\xb5\x69\xf5\x9d\x6e\x47\xd9\x61\x63\xee\xc3\xfb\x87\x12\x2f\xc8\x83\x6a\xb8\x3b\x8d\x7b\xd2\x21\xdc\xe1\x31\xce\x34\x5a\x43\x6e\x92\x97\xef\xc5\x1e\x01\xf1\x89\xf6\x0d\xbc\x93\xd0\x5b\xb7\x48\xfe\x7a\x73\x7d\x1b\x29\xd3\x70\x7d\x90\xd3\xb2\xb0\x4a\x7f\x9c\x71\x0d\x6c\x90\xf0\xeb\x00\x38\xf1\x9c\x7e\x22\xbd\x5c\x04\x0b\x13\xfa\x3a\x58\xe9\x2b\x2c\x84\xbc\x41\x2b\xbd\x4c\x37\x1a\xc6\xb2\x53\x91\xb5\x6c\x3e\x2e\xea\x4a\x16\xf1\x2f\xec\xaf\x5c\x1d\x03\x03\x17\x64\x05\x7c\x45\x01\x15\x03\x39\x3d\x9b\x33\x43\x33\xa5\xe1\x9b\x9c\x34\x85\x06\xa7\xd7\x01\xd8\x95\xa9\xeb\xce\x4c\x3d\x50\x3e\x3a\xc2\xa6\x2d\xd1\xa3\x13\x03\x15\x3a\x50\x78\xdc\xfe\x67\x46\xeb\xf4\x40\x25\x42\xf4\x59\x4f\x33\xa7\xf1\xfd\xe1\x24\x61\xcb\xfc\xc1\xe4\xda\x31\xa0\x95\x1c\xb7\x7c\xae\x74\x38\x67\x17\x0b\x18\x46\x5d\x7b\x1c\xf2\x73\x56\xfe\x9e\x47\xbb\x37\x72\x3d\x9c\xb9\x46\xca\x8d\x92\xdc\xe9\xb6\xe2\x8b\x44\x1a\x80\xcb\xe0\xd8\x24\x30\x37\xa8\xd9\x85\xf3\xb3\x57\xa6\x45\xe3\xb0\x0d\xe9\xf1\x67\x92\xf0\xfd\x2b\xe5\x33\xfa\xe5\x53\x92\xc3\x32\xb2\xa0\x22\xf8\x8c\xbf\xd8\xf9\xee\x0f\x26\x58\xaf\xd4\x81\xcd\xb0\x92\xe4\x24\x3f\x22\x7f\x19\xe8\x32\xba\xd4\x0a\x04\x77\x01\xd5\xe2\x89\x90\x5c\xa3\xc7\xa6\x85\x02\xc3\xe9\xe6\x95\xde\x8a\x96\xbc\x14\x65\xf2\x4c\x5b\x4f\x4c\xcd\x40\xce\x85\xfe\x14\x26\x67\x27\x0b\x4c\xdc\x0a\x16\xb8\x4a\xb7\x82\xf3\xf5\x32\xa9\x38\xf8\x16\x9c\x2b\x1b\xed\x90\x5b\x56\xe5\x0d\x5b\xe8\xd2\x62\xb1\xe2\xf2\x9b\x82\x87\xc2\x7a\x4c\x8f\xa7\x76\x14\xa1\x31\x57\xb9\xa6\x07\xab\xd3\xe3\x71\xb2\x66\xef\xf1\x45\x18\x1a\x45\xb7\x2f\xa7\x46\xee\x6a\x71\xd4\xd8\x59\x58\x2e\x24\xe3\x5b\x19\x0a\x6d\x59\x3e\x4f\xe0\x57\x34\x78\x3e\xe6\xaa\x35\x0c\x14\x92\xbc\x82\xd4\xde\xd6\xeb\xd9\xc0\x17\x71\x43\x4a\xc7\x20\xac\xcd\x21\xbf\x90\xc8\x48\xe6\x65\x57\x85\x70\x05\x6c\x3c\x06\x99\x60\x1f\x64\xe4\x7b\x5b\x4c\x1d\xff\x73\x2e\xeb\x65\x98\xad\xfa\x7c\x05\xb0\xf0\x0e\xa4\x31\xe1\x45\xca\xfa\x93\x89\x62\x25\x5e\x10\xb1\x76\x05\x2d\x16\xf6\x63\xb3\xa3\x0b\x21\x54\xa2\x70\x0c\xf3\xd7\xb7\x6f\x05\x69\xe3\xfc\xa0\xb7\x5b\x38\xe1\xc5\x9f\x77\xca\x60\x50\x59\x67\xf7\x8a\xc9\x67\xd3\x8c\x03\xaa\x37\x28\x7a\xe6\x41\x05\x2f\x7e\xa6\xe5\xf3\x2e\x77\x25\x1c\xf4\x07\x64\xc5\x24\x30\xbe\x37\x5a\xf9\xf6\xaa\xd1\x9b\xe3\x4a\x5c\x2b\x39\x18\x0a\x46\x19\x0c\x2f\xef\x7d\x43\x17\x7b\x82\x9e\x1f\x7e\xfa\x5e\xe6\x6a\x4b\x1e\x92\x7c\x7f\xf0\x49\x38\x1b\x9e\x29\xe8\x92\xdb\xbc\x30\xc2\xf7\x5d\x19\xe2\xa9\x40\x67\xbf\x86\x43\x46\xb0\x5f\x82\x2f\xd9\x07\xb3\x36\xe4\xd1\x4b\xa9\xea\x2f\xa5\xec\x8c\x6a\xe5\x49\x8b\xc9\x6d\xb9\x10\x6f\x95\x43\x3f\x6b\xf8\xfd\x19\xf0\x30\x04\xb7\x14\xc6\x0e\x4d\xd1\x51\x79\x47\xcb\x22\x62\x0d\x01\x77\x91\x65\x0b\x63\xe4\xe6\xea\x9e\xc5\x3a\x52\x17\xb1\x69\x87\x69\x3f\x69\xed\x93\x15\x12\x55\xf7\xb7\x51\x8d\x0a\x03\xb9\xef\xe5\x91\x02\xb4\x6e\xd4\x41\x38\xd5\x58\xd3\xba\xf0\x80\x5f\x7b\x7c\x64\xe8\xc4\xd8\x87\x47\x9f\xb3\x29\x99\xb7\xad\xd4\x25\x2b\xe7\x97\x40\x5c\x6f\xc9\xa3\xd6\x1b\xfe\x39\x07\xa2\xfb\x78\xe8\xd5\x73\xfa\x35\x07\xe9\x39\x00\x59\x0c\x45\x36\x07\x59\xdb\x16\xe6\xec\x17\xdb\x1e\xe7\x6a\xd0\x30\x3b\x51\x17\x8a\x7b\xb9\xb7\x07\xbc\xe1\x59\x1f\x31\x43\x7b\xa7\xba\x0d\x85\x0a\x01\x01\x53\x05\x5f\x10\xc8\xb1\x44\x77\x15\x82\xb6\x10\x8f\x13\xea\x6b\xf1\x45\x53\x6e\xb4\xc6\xd1\xd3\x73\xff\xdf\xd3\x36\x91\xa7\x08\x6e\xd7\x0b\x12\x0e\x70\x36\x51\xff\x49\x31\x2b\xcf\x41\xb8\xee\xb3\xd7\xb4\x41\xaf\xd3\x53\xbc\x48\xd5\x22\x0d\xc0\xf0\x3b\x01\x84\xa4\x2b\x7a\xac\x9d\xb9\x87\x4b\x3c\xb5\x76\x58\xcf\x42\x8b\xd8\x9d\x1f\x0c\x10\x39\xf2\x9b\x41\xa4\xf7\x02\x08\x14\x1c\x03\x4f\x79\x24\x06\x4f\xca\xd5\xe7\x05\xf9\xc8\x08\x70\x9c\x18\xbb\x65\xc6\x8e\xe3\x40\x92\x92\x05\x08\x6b\xd0\xa9\x64\xb6\x81\x30\x56\xef\xde\x5c\xe7\xc4\xf0\x5c\x48\x38\x7f\x49\x25\x31\xa8\xad\x1c\xda\xe0\x92\x82\x09\xf3\x4e\x7a\x22\xc0\xb9\xbf\x7a\x74\xb0\xc4\x28\xe8\x31\xf1\x47\x6d\xd0\x07\x21\xca\x0e\xac\xfc\x02\x31\x2e\x99\x01\x00\x2d\x1e\x7b\x20\xcf\x44\xeb\x43\x3d\xd8\xe5\x6f\xff\xfd\xf6\xf5\xab\x73\xf1\xe9\xd1\xe1\x70\x78\x04\xc5\x1f\x8d\x43\xa7\x0c\x74\xa1\x3d\x17\xff\xd7\xcb\xeb\x73\xa1\x7c\xf3\xdd\x4a\xbc\x24\xaa\x9d\x88\x21\x5b\xe2\xa1\x95\x2d\x9a\xb5\x8d\xc3\xbf\x40\xcd\x79\xc7\xb0\x62\x31\x0f\xe0\x97\x33\x77\x30\x7b\xe1\x0d\x56\x88\x7d\x87\x6f\xb1\x32\x46\xa1\x19\x14\x3e\x61\xc2\x1f\x59\x46\x27\x9b\x8f\x4b\xe1\x31\xa6\x20\xba\xb1\x86\x9b\xf1\xa2\xb1\xa6\x6c\x03\x81\x04\xab\xfd\x2b\xb4\xd7\x4f\xaa\x4e\x98\xb8\x78\x0a\xef\x94\x01\x2a\x35\x76\x6d\x79\xc0\xac\x55\x98\x08\xd5\xfe\x3c\x2d\x8c\xee\x86\x30\xa6\xfc\x85\xf8\x77\x74\xb7\xb1\x0b\x37\xfd\x90\x15\xd6\x16\x02\xaf\xa6\x85\x31\x4e\x68\x26\xfd\x5c\x88\x17\x14\xb0\x34\x48\x5f\x29\x2f\x4a\x60\x33\x24\xac\x0c\xbb\x10\xd7\xca\x8b\x7d\x54\x8e\xe1\x5a\x23\x74\xf3\x22\xa5\x25\xd8\x72\x76\x18\x17\xba\xde\x3c\x67\x0f\x44\xc1\x4c\x6a\x3e\x0e\xc5\xe5\x5f\x61\xf1\x78\x0f\x68\xbc\x0f\xcd\x2f\x09\xe9\xfd\xcb\x39\xbd\xea\x69\xcf\x45\x78\x11\x73\xce\xf6\x1e\xe7\xe1\x11\x6d\x7b\x2e\x46\x93\x7e\xd3\x6b\x04\x16\x88\xc2\x27\xda\x9b\xc1\x27\xdf\x00\xed\x06\x6b\xf4\xef\x0b\x83\x82\x87\x29\x79\x8b\x5a\x9c\xe4\x8c\xc2\x87\x4b\xb3\x5c\x14\xcf\xa8\x0f\x92\xd6\x10\x01\x58\x4d\x33\x92\xc1\xe9\x13\xe5\x31\x5e\xc4\x12\x35\x21\x6d\x55\x5c\x77\x69\xff\x07\x0a\xcd\xe7\x27\xb1\xa2\xe4\x6b\xb7\xa0\x7f\x48\xfc\x4a\x89\x67\xf9\x38\x9f\x99\x0e\x64\xbc\x2b\x53\xd7\x19\x7f\xc6\x80\x93\x3a\x66\x6c\x11\x4f\xc5\x5c\x9c\x4a\x35\x9c\xe2\x00\xe9\xad\x60\xe0\x4c\x42\xcc\x2a\x74\x58\xfe\x24\xa6\x95\xfc\x74\xa0\x33\x78\x72\x94\x44\x06\xdd\x10\x20\x25\xc8\xcf\x04\xe0\xcc\xcb\xd7\x46\x00\x82\x6f\x8d\xb4\xf1\x2a\x38\x8a\x9b\xc5\x18\x38\x4e\x86\xba\xd5\xae\xa1\x60\xf1\xf7\xe0\x7e\x42\x40\x5f\x87\x9d\xda\x1c\xfc\x51\x93\xdf\xec\x49\x66\x6b\xf7\x12\xed\x68\x9e\xe0\x8f\x19\xe5\xdb\x49\x63\xc8\x66\x90\x7e\xe5\x73\xd1\x77\xf6\x18\x82\x3c\x3c\xc1\x2f\x0e\x5c\x55\xf4\x2e\x82\x71\xb7\x12\xe4\x12\xae\xc4\xaa\x23\x14\x62\x47\x89\x75\x50\xb2\x7d\x84\x94\x92\xa4\xd5\x95\x78\xbb\x53\xc7\xe8\x26\x10\xa3\x42\xe1\xdd\x45\xe9\x11\x1b\x9f\x53\x85\x58\x09\xd9\xd0\xa0\x23\xba\xbc\x03\x7f\xc9\xc2\x42\xb3\x8c\x66\x8e\xa2\x4d\xcd\xc8\xb5\x22\x85\x95\xeb\x52\x2f\xe6\xc1\x09\x22\xd4\x34\x88\x42\xea\xe9\xc9\x20\x0a\x79\xd1\x3c\x92\x42\x56\x14\xf9\x8a\x38\x08\x8b\x66\x5d\xc5\xb4\xcc\xe3\x24\xa4\xae\x7e\x41\xa8\x84\xe5\x99\x9b\x0a\x66\x9f\x9d\xea\xfb\xac\x3a\xdb\xbc\x73\x5f\x10\x34\x61\xea\xcb\xe4\x0b\x64\xb4\xa5\xb6\xe4\x06\x4d\xb1\x01\x9f\xb3\xf1\x6c\xf5\x66\xb3\x22\xa7\x70\xb5\xb3\xe3\x80\xf1\x7c\x7f\xc1\x6f\x71\x8b\xdf\x04\xc2\x4e\x80\x2e\xd8\x1b\x10\x25\xf2\x63\xca\x0b\x36\x30\xa2\x44\x7c\xe6\x81\xfa\x8c\x3b\xa9\x3b\x64\x8d\x2f\xc4\x13\xbd\xd9\xd0\x93\x8f\x57\x16\x43\x4c\x51\xce\x8a\x8a\x80\x88\x54\xc3\x2f\x8c\xa9\x80\x56\x78\x3b\x7b\xa0\x42\xb7\x90\x92\x81\xb9\xbe\xd3\x1e\xfd\xe9\x01\x18\x7c\xa0\x47\xbd\x0c\x62\x34\xe8\x2f\x28\xc0\xbc\xa3\xcf\x1c\x0a\x50\xc6\x57\x97\x41\xc1\x7b\xd6\x46\x27\x37\x28\x9a\x24\xd5\x2f\xae\xd0\x00\x77\xd6\xc2\xb2\xd2\x28\x7b\x24\x90\xdc\x47\xf9\x59\x1b\xd5\x4e\x09\x82\x07\x1a\x09\xd6\x2f\x2f\x5e\xd1\x27\xfa\xbf\x63\x37\x09\xe8\x16\xf0\xa9\xee\x78\xbc\x39\xbe\x5a\x8f\x4e\x76\x54\x1b\x9c\xff\x40\x9e\xc8\x92\xb3\x87\x02\xb9\x63\x40\xc2\xe1\xad\xad\xf7\xd2\x1c\xe3\x13\xa2\x5b\xbb\x57\x2c\x77\x81\x7c\x46\x31\x72\x77\xf6\x90\xbd\xaa\xb0\x56\x40\x11\x86\x0a\x03\x12\x74\x20\x80\xb6\x0a\xbe\x10\x57\x4b\x3e\x11\x43\x1e\x39\xb3\x24\x5d\x3c\xed\x52\x06\x89\x10\xed\x20\x37\x68\xe4\x0e\xff\x63\x6a\x3f\xa8\x54\xec\x66\x50\x8f\xa6\xc5\x9c\xe7\x25\x75\x8b\x3f\x62\x3a\x1b\xa9\xc3\xbf\x98\x26\x77\x64\x20\x99\x66\x26\xcd\x58\x78\x4f\xe1\xad\x38\x73\xec\x3b\x89\x37\xe2\xa4\x42\xdc\x05\x29\xd4\x3c\xee\x91\x2b\xdb\xaa\xa2\xaf\xb9\xf5\x3b\x86\x89\x71\x3b\x11\xc7\xc7\x5b\xa1\x3d\x85\x80\xe8\x07\xdb\x8e\x8d\x5f\x15\xed\x2e\x4a\x13\x73\xa4\xc2\x6a\x14\x9d\xdd\xa2\x04\x83\xce\xee\x28\x72\xd7\x68\x40\x98\xf7\x64\xe9\x27\x33\xaa\xab\xf7\xfd\x40\xfa\xc8\x80\xde\xcb\x6d\x0c\x51\x21\xb7\xf4\xae\x37\xe5\xa1\xf6\x2b\xc4\xdf\x2c\xca\xa4\x58\xf8\xe1\xca\x39\x79\xcc\xf2\x72\x8b\x5c\x65\x93\x7b\x27\x05\x16\xd9\x1a\xba\x3a\x77\xbb\xac\x01\xc5\x89\x13\x52\xe7\xa7\x4c\xc8\x29\x0d\x5f\xb3\x65\xc1\xdb\x99\x9d\x44\xc6\x1c\x90\xbe\x48\x84\xb8\xa6\x5f\xab\xd5\x6a\x61\x35\xcd\x83\xa8\xf4\x83\x7a\x34\x9d\xeb\x0c\x3e\x0e\xc0\x9f\xd5\xc3\xae\x13\xbd\xd5\xc6\x0b\x32\xe4\x96\xbe\x58\x29\x41\x1d\xcb\x53\xab\xad\x79\x84\xc7\x57\x6a\xc6\xf4\xf9\x42\xac\x8e\x17\x4a\x5a\x32\xb3\xd5\x8e\xe1\x1d\x78\xa7\xa0\x65\x78\xb9\x5d\x70\xf5\xa4\x0d\x83\x4f\x34\x66\x1b\x8d\x58\xcf\x04\x55\x5e\xc3\x2d\x00\xd3\x51\xc8\x59\x49\x7d\x3f\x85\x59\x3e\xfd\x42\x3d\x53\x53\x70\x8c\x89\xe7\x7a\x6b\xe2\x8d\x96\x97\xdb\x7b\xce\xba\x59\x6d\xf9\xb5\x10\x55\xf1\x99\xc3\x6d\xba\x07\x4a\xc3\xf2\x0c\x0f\xb3\x20\x40\x41\x79\x8f\xcc\x58\x90\x19\x2e\x7e\x88\x93\xed\xab\xb0\x0e\x30\x3d\x95\x08\x8f\xa0\xf1\x60\x0e\xbf\xab\xea\xbd\x1d\xb6\x1f\x52\x90\xf0\x78\x4b\x50\x28\xfa\x51\x57\x04\x30\x31\xa8\xe7\x09\xc0\x14\xe8\x33\x61\x0c\x0b\xf8\x19\x6c\xd3\x52\xbf\x0f\x00\xa4\xa9\xc3\x80\x10\x6c\xe2\xc9\x31\x21\x56\xc1\x21\x31\xc5\x27\xe6\x97\x0f\x79\x75\xe4\x27\x38\xd9\xd3\xbf\x63\xb7\x26\x6c\x7a\x79\x21\x6e\xf0\x47\xa5\xcd\x9d\xf6\xc0\x57\xec\x15\x19\xcb\xbc\xc0\x04\x3c\x87\xac\x51\x15\x19\x68\x52\x4c\x73\x57\xa1\xc3\x4c\xbe\x98\x70\xf8\x1e\x17\x7f\x71\xfa\x24\x8c\x6f\x11\x76\x37\xf3\x02\x89\x01\xb1\x8b\xe7\x1a\x80\x1c\x47\x65\xe1\x21\x57\x8c\xb1\x1e\x02\xab\xe3\x10\x62\xea\x7d\xd0\x45\xc0\x05\xa0\x0e\x63\xf0\x90\x84\xb8\xf0\xa5\xb2\x21\x21\x07\x17\x15\x06\xe9\x36\x85\xeb\x06\xb7\x4a\xd5\x64\xb4\x66\x47\xaf\xbc\x52\x31\x60\x1a\xd1\x20\xf3\x67\x82\x2f\x9c\x8e\xb3\xfa\x46\x52\xc0\x14\x4a\x16\x9d\xba\x53\x5d\xa1\xcf\x41\x44\x20\x21\xfc\x7c\x22\xcc\xf0\x3c\x28\xfd\xd7\x7b\xb2\x9f\xe3\xb8\xd7\x97\x3d\xa2\x4b\x03\x9a\x35\x26\x05\xb8\x9f\x37\xa2\xca\x4c\x3a\xbf\xea\xa1\xc6\x72\x50\xdc\x5c\xd5\x3d\x89\x8e\x1b\xb3\x96\xc2\xe4\xfe\x33\x36\xaf\x25\x68\x46\xcc\x8a\x81\x8b\x98\xbe\xf4\x9a\x9b\x4d\x69\xed\xb0\xfd\xd7\x2c\x69\xcb\xe0\xef\xd3\x56\xcf\x22\xb9\x16\x8d\xfe\xba\x88\xae\x27\xcd\x42\x0a\x0a\x33\x55\x9c\xcc\xc2\x0c\x61\x07\xef\x2d\x52\x06\x1d\xca\x1b\x1c\x95\xfd\x99\x59\x06\xdf\xe4\x52\xb8\x21\xba\xf0\xfb\x7c\xcc\xa1\x13\xd7\xf9\xf7\x05\x1f\x9a\xb6\x12\x28\x53\xf4\x83\x94\x37\xf2\xde\x12\x39\x37\x63\x27\x57\xc3\xff\x7c\x40\xa2\xe5\x5b\xda\xcb\xb6\x0d\x1a\x34\x8e\x3f\x12\xc6\x2f\x69\xe9\x36\x99\x5f\xd0\x69\xb8\xa9\x34\x72\xc8\xb7\xf2\xfb\x85\x62\xbd\x55\x4c\xeb\x57\x29\x56\x7d\x5d\x04\x21\x7a\x99\xa2\xe1\xa7\x78\x44\x3f\xc6\x62\x6c\xb0\x19\x22\x34\x4e\xd2\x13\x7d\xc5\x47\x84\x3d\x45\x04\x4a\x40\xf4\x4d\xf1\x63\x97\x72\xa6\xe5\xcb\x3a\xe8\x7f\x3d\xd8\x4e\xc5\x86\x8a\x37\xb6\x53\xa9\x79\xa5\x17\xa0\xb2\x60\x2c\x13\xd3\x59\x5d\x10\x22\xc2\xc4\x74\x0a\xee\xcf\xe1\xc0\x62\x2a\x9f\xb1\xb9\xb7\x66\xe4\xc7\x19\x3b\x8a\x37\x3f\x4e\xa1\x0d\xba\x45\xe5\xd3\xf8\x95\x3d\x54\x74\x14\xaf\xd0\xcd\x10\x05\xcf\xe7\x94\xb2\x52\x4a\x03\xce\x28\xf9\x11\x7f\x03\x32\x16\x45\x82\x9b\xe7\x4f\x02\x8d\xe0\x49\x14\x43\x8c\x70\x40\x3a\x64\xec\xd9\x99\x95\xa1\xab\xec\x32\x44\x06\x61\x9d\xb8\x2f\xa7\x27\x96\x45\xbd\x39\xc4\x97\x54\x8c\xcf\xe7\xa6\xd5\x9d\x07\xb5\x32\xea\xe3\xe2\x23\x11\xb5\x0f\xed\x40\xfb\xc9\xd4\x0e\x7c\xc5\x57\xb6\x23\x87\xf8\x92\x76\x40\x2d\xe8\x38\x85\x04\xc5\x7b\xda\x23\xdb\x10\x00\xb9\x30\xf3\x9a\x36\x31\xc5\xaa\x78\x9b\x9d\xff\x68\x2a\xd7\x4e\xf8\x19\xb7\x5a\x3a\x52\x29\x87\x2c\x9b\x16\x58\x0e\x32\x5b\x5d\x0c\x91\xf8\x79\x22\x80\x1e\x6a\xa0\x64\x04\xcd\x0c\x52\x0b\x0f\xc2\xf3\x73\x89\xda\x95\x58\x44\xe4\x15\x98\x36\x70\xe6\xe7\x8f\x64\x82\x0b\x2e\xf4\x89\x5f\xcc\x0f\x15\x64\x18\xc3\x4c\xb6\x08\x91\xcc\x65\x60\x83\x65\xb5\xce\x91\x45\x62\x8e\x50\x91\x88\xcf\xe1\xc2\x8e\xcd\xb9\xbd\xec\x8e\x43\xe1\x55\x4e\xe8\x6a\x30\x0f\x44\xa8\xbd\x3c\x4e\x43\xfc\x01\x8b\x5d\xee\x9a\xd3\x82\xd5\xbc\x29\xe9\x5c\x7f\xa6\xef\x94\x49\x0b\xe6\xa4\x70\xb5\xca\xb7\xfa\x7c\x81\xa4\x65\xb7\x1d\xd0\x79\x4f\x98\x6b\x20\x16\xd9\x52\x40\x84\x3f\xc6\x5e\x36\xd2\x4c\xa9\x01\x5a\xe9\x28\xb9\x7f\x78\x1f\x51\xf8\x8a\x06\x20\xd9\xb8\xbf\x05\x48\x16\xc8\x5d\x9c\x69\x73\x12\x70\x5f\x43\x68\xcf\x7f\x45\x43\x90\x6e\x7c\x61\x43\xce\x43\x2b\x88\x3b\x01\x2a\xb0\xb4\xff\xef\x6b\xdf\x44\x7c\xc2\xc5\xf9\x26\x97\xa1\x02\x31\x40\xeb\x35\x94\xef\x16\xad\xd7\x32\x35\xf5\x6a\x35\xdd\x25\x99\xf9\x5d\xb6\x53\x32\x4b\xdf\xd0\x16\x34\xb4\xe3\x17\x11\x7c\xca\x25\x54\xc6\x1a\x0a\xa1\x6c\x7c\xfe\x6a\xa2\x8c\x2a\xf4\x70\x00\xf6\xe3\xc8\x9c\x0e\x86\x7f\x28\x82\x22\xa5\x08\x35\x24\x09\xa2\xc1\xc9\xe0\xfc\xaa\xaa\xde\xe3\x5c\x7d\xa8\x5a\xe9\x76\x6b\x2b\x31\xe2\xff\x93\xf0\xbb\x22\x0d\x1b\x5d\xba\xbb\xaa\x08\xce\x39\xe1\xd0\x5c\x35\x19\xd4\x62\x3c\xe5\xe8\x77\x20\x04\x46\xe9\xe1\xb2\x48\x70\x14\xaf\x72\x1b\x58\xc4\xed\xc8\x8f\xc6\xd9\x40\x17\x5f\xfa\x39\xaf\xf6\xe2\x15\x25\x54\x7b\x6b\x34\xd9\x02\xbe\xa4\x5f\xda\x6c\xab\xc2\xf3\xc1\x53\xf8\xa0\x38\xc8\x9c\x72\x2d\x9d\xaf\xbc\xf5\x18\xf9\xea\x2d\xfc\xff\x51\x9c\xb5\x55\xea\x3a\xea\xc2\xb5\xf3\xc8\x3c\xdd\x86\xdf\x2e\x03\x48\x96\x36\xe4\xb8\x85\x3f\x72\x14\xd8\x4e\x54\xdd\x8f\x59\xbb\xb9\x95\x88\x75\x74\x4b\x55\x06\x7f\x06\x68\xa2\xd2\x4a\x2f\xd7\x41\xa9\xf3\xd3\x1a\x75\xb5\xeb\xc7\xa4\xf0\x3c\xcf\x12\x8a\x19\xc9\x33\xfa\x18\x9c\xbb\x48\x2e\xcf\xd2\x94\x4e\xb1\xe6\x8a\x24\xe7\x65\x59\x97\x6c\x66\xb5\x84\x8b\x9b\x3c\x2d\xd8\x64\xa7\x94\x60\x9d\x5d\x60\x2f\x23\x34\xe7\x59\xf4\x0c\xa1\x48\xa2\x27\x2f\x93\x9e\x90\x3a\x39\x4f\xeb\xec\x56\x1b\x41\x2a\xea\xb2\x7b\xcc\xb0\x97\x38\x83\x5f\x90\x02\x05\x3a\x6b\xcc\x53\xf0\x86\xda\x4b\x57\x96\xc6\x0d\x9a\x27\xf0\x7b\xfb\x19\x60\xf2\x0a\xe8\x56\x4b\x0b\x29\xc8\xe1\x71\x31\x91\x30\xbe\x04\xe9\x0e\x9a\x82\x75\xdd\xe2\x8f\x45\x98\x61\x44\x65\xe5\x68\xb2\xdc\xa6\x53\xd2\xd4\x1c\xc4\xda\x72\xc4\xbc\x2b\x48\x0c\x01\xab\xc5\x6b\xdc\x8f\xee\xde\x42\xd9\xc1\x78\xd9\x75\x82\x83\x64\x73\xc9\xec\xf9\xc3\xf2\x09\x99\x30\xf3\x59\xcb\xc6\x67\x32\x09\x88\x2e\xb1\x1e\x12\x3d\x92\xb1\x09\x45\xc8\xfe\x22\x1c\x93\x56\x26\x88\x88\xe6\xeb\x9b\x8a\x07\x00\x10\x7c\x7d\xa7\x26\x8d\x2c\x23\x09\x33\xc8\x67\x30\x4c\x9a\xb8\x88\xe2\xeb\x1b\x89\x47\xad\xd9\xd2\xb1\x73\xa2\x91\x47\x8c\x72\x3e\xb4\x2c\xb9\x76\xd6\x79\xd4\x3d\x53\x88\xa8\xfb\x51\x9e\x6a\xf5\xbd\x38\xbf\xa2\x1b\x5b\xed\xeb\x6d\x93\x9a\x6f\xc5\x56\x0e\x6b\xa0\xdc\x70\xba\xb3\x9b\x05\x6b\x4a\x5d\xe7\x72\xf1\xfb\x06\x18\x1b\xd4\x02\x33\xb5\x80\xfe\x54\xdb\x06\x85\xef\xc9\x65\xd7\xd5\xce\xed\xd8\xd2\xe0\x8d\xa2\xdb\x99\x87\x2b\xe7\x76\xdf\x4b\x0e\x3e\xa9\xf0\x4e\xde\x3d\x24\x5f\xee\xdf\x36\x12\x1f\x4c\xfe\x88\xce\x04\x90\xb4\x63\xe9\xc0\xda\xc2\x68\x7d\x77\x6f\x45\x93\xbe\x64\x74\x3d\x1b\xdb\x01\x9b\xe2\xd5\x17\xf5\x20\x3c\xd8\x7f\x83\x49\x7c\xf3\xd3\x28\xb4\x03\x65\x2a\x86\xac\x9e\x75\x3e\x64\xb0\x2d\xaa\xdd\xcc\xd6\xfc\x7d\x75\xdc\x33\x0d\x0f\xbf\xa6\xda\xbc\x9f\x1c\x29\xf5\x74\x37\xb5\xd1\x7e\xb6\x17\xde\x60\x32\x07\xbd\xfd\xa7\x76\xc4\x12\xe2\x7f\x75\x47\x0c\x59\xab\xa6\x5d\xca\x39\x04\x0c\xb7\x59\x8f\xbd\xd7\x78\x52\xdc\x52\xf8\xcd\x77\xf8\x9d\x53\xec\x71\x18\x80\x4b\xdc\xda\xc1\x8e\x5e\x53\x78\x0b\x4a\x13\xcf\x42\x9a\x5b\x28\x80\x77\x1d\xc7\x7a\x64\x77\x4d\xa1\xcc\x4b\x4c\x16\xef\x30\x3e\x49\x2a\x85\x0c\x54\x28\x23\x3b\xd4\x08\x93\xaa\x1a\x39\x2b\x2e\x75\x19\x32\xb2\x92\x5c\xc6\xae\xbd\x64\x1f\x3c\x0c\xfc\x9a\x53\x32\x58\xbc\x61\x54\x43\xdd\x59\xfb\x71\xec\x6b\xe8\x2a\x7a\x8f\xa1\x64\x71\x8d\xc9\xe2\x2d\x24\xcf\x6b\x08\xad\x8a\xc5\x26\x8d\x3a\x55\x6e\x33\xa8\x59\x99\xa7\x83\x9a\xc3\x87\x91\xdb\x29\xd9\xcf\xc6\xed\xb9\x92\xfd\x6c\xd4\x10\x72\x3e\x00\x08\x7b\x7a\x14\xf2\x52\xba\x45\x41\x3a\x2f\xf1\xa2\xed\x4e\xd5\xa1\xd1\x2e\x69\x0a\x6f\x80\x91\x3f\x51\x82\x19\xaa\x69\xab\xf8\x56\x70\xd6\x2a\xbb\xfe\xab\x6a\xbc\x0b\xd0\xaf\xe9\x33\x83\x5a\x5b\xeb\x9d\x1f\x64\x0f\xbc\x30\x9a\xf0\xd2\x30\xfd\x12\xd2\x81\x17\x6e\x3e\xce\x46\x8a\xa0\xe7\x43\x45\xd0\xa7\xc7\x6a\xef\x7a\x69\x6a\xe7\x87\xb1\xf1\xe3\xa0\x5c\xac\xf0\xe5\x6d\x2f\x8d\xb8\x8d\x19\xb3\x1a\x67\x25\xf3\x15\x3a\x2d\xbc\x54\x73\x23\x9b\x9d\x5a\xac\xfa\x0a\x72\xee\xad\x7b\x56\x36\xaf\x7c\x56\x7c\x69\xa7\x0c\x76\xa3\x3b\x20\x4a\xeb\xb1\xf9\xa8\x7c\xbd\x93\x6e\x57\xa3\x39\x48\x8e\xeb\x26\x80\x89\x5f\x10\x4c\x3c\x97\x6e\x27\xde\xa2\xd6\x6d\x01\xeb\xb6\xa9\xf7\xca\x4b\x34\x5f\xca\xb0\x3c\xbb\x12\x2f\x39\x79\xa9\x14\x6a\xe3\x6a\x16\x81\x78\x17\x02\x57\x9a\x61\x78\x8d\x0a\x3b\x96\x8a\x2e\x23\xc8\x12\x36\xa3\x3e\xf1\x99\xde\x1c\x1b\x8e\xb9\xf9\xc9\x43\x1b\xde\x50\x4a\x06\x8b\x72\xde\xb6\xa9\x03\x8d\x44\x0b\x16\xf4\x6c\xf6\xec\x0a\xb7\xef\x8c\x82\x25\x60\x22\x5c\xcf\xae\xc4\x8d\x1c\xdd\x22\x60\x2f\x69\x33\x9d\x84\x0c\xd5\x07\xc0\x50\xf3\x14\x8e\x2b\x75\x34\x94\x44\x56\x48\xc8\xa6\xf7\x68\x7b\x69\xe4\x56\xd5\xbd\x24\x63\x4d\x7c\x8e\xf6\x12\xd3\xc4\x0d\xa4\x31\xac\x51\x87\xfc\x56\x25\x5d\xef\x5e\x52\x62\x00\x23\xd1\x02\x05\x0a\x4a\x09\xcc\x70\x1b\xec\x92\x91\x44\x73\x5e\xe1\x89\x8d\xd2\xd2\x01\xda\x5b\xc7\x69\xc1\x43\x66\x8c\x62\xc2\xe9\x68\xc6\x3e\xa8\xad\x76\x9e\x1f\xb8\xa3\x27\x4a\x7c\xa9\xf4\x06\x93\x83\x80\x93\xbf\x3d\x7b\x6b\xb1\x97\x59\xc7\x4a\x73\xc6\xd0\xcd\xcf\x7b\xe9\x5c\x31\x8e\xdc\x63\x3e\xf7\x0c\xa5\x97\x60\xcf\x57\xaa\x1e\x82\x5d\x1f\x41\x86\xb8\xd8\xd7\xf0\x3f\x2f\x8d\xa2\x65\x90\xd5\x26\x18\xae\x51\xec\xcc\x46\xb9\x97\xce\x1d\xd0\x14\x38\xa8\xbb\xf1\xc2\x40\x68\xcf\x0f\x66\x50\xdd\x8e\x06\xbb\xa3\x61\xab\xb2\xd0\x7a\xd6\xd8\xd2\xae\xce\x1d\x96\xf2\xd4\x0a\xce\xf9\xdc\xc5\x62\x1a\x8b\x6c\xa5\xa0\x45\x4c\xb9\x46\xf6\xf2\x13\xc7\x59\x4e\xf1\xe1\x5f\x72\x24\xf8\xec\x5d\xef\x55\xc8\xbd\xd6\x7b\x7d\xb2\x6c\xd0\xf3\x7d\x7b\xab\xbc\x78\xf4\x03\xc6\x6b\x73\x4a\x6c\x3b\xbb\x46\xa7\x6c\xe4\x59\x0e\xe3\xca\x7f\xc7\x38\xb4\xab\xf3\x45\x89\x1a\xc2\xd0\x60\xfc\x59\x2e\xd2\x7e\xb0\x3b\xbd\xd6\x9e\x26\x64\xa1\x40\x00\x08\x41\x96\xb6\x71\x2d\x43\x4d\xbc\xc4\x8b\x42\xe8\x6e\x04\x32\x68\x85\xda\x21\xb3\x1f\x08\x6b\x1e\x6f\xea\x6b\x90\x31\xd8\x60\x7d\x86\x21\x2b\x93\xc5\xa7\x02\xb6\x8f\x5c\x66\xe5\x78\x26\x41\xd8\x3f\x87\xeb\x64\xbc\xf4\xc5\x25\x93\x74\xfc\x61\xc5\x10\xe9\x0f\x8b\xf3\xde\x2b\xe4\x72\x6d\xa0\x67\xf0\xda\x1e\x4c\xd2\x3c\x66\x2d\x25\xbf\xe1\xd0\xde\xf4\xe8\xdb\x02\x67\x0a\x3c\x2f\x06\xe0\x01\x29\x2b\x7f\xc2\x1f\xbd\x6e\xa4\x88\x31\x76\x88\xef\xc3\xf1\xd2\x26\xe8\x25\xf3\x06\xec\xa4\x63\xeb\x9b\x13\xf5\xa7\x7b\x52\xf4\xd8\x95\x57\x9f\x2b\xc8\xca\x06\xd0\x5d\x9e\x1d\x72\xab\xac\x52\xc1\x59\x34\x65\xc1\xf0\xea\x32\x9b\xb2\xfb\xac\x8a\xed\xc0\xef\x9a\x27\xd4\xbd\xb8\xe0\x2e\xa8\x3c\x96\xc8\xa9\x37\x26\x94\x06\x42\x98\x94\x2e\x7f\xc2\xbd\x0f\xa9\x61\x91\x70\x4f\xeb\xcb\xb6\x73\x51\x1b\x95\x28\xaf\x65\x29\x2d\x6f\x02\xa5\xcc\xaf\x87\x29\x9d\x15\x88\x21\x92\xbc\x62\x75\xf0\x0a\xb5\x88\x1c\x42\x3e\xa4\x4d\xa3\x93\xa3\x76\x98\xe9\xec\xa4\xc9\x13\x4a\x5b\x34\x9b\x4a\x91\x97\xef\xe0\x02\x80\x89\x39\x67\x65\xad\xa7\x94\x3c\x0c\x18\xa5\x28\xf4\x7d\xd4\x46\x2f\x48\x2d\xa7\xcf\xcd\xb9\xb2\x46\x32\x9a\x49\xe3\x32\xac\x08\xb5\x7c\x58\x64\xad\x71\xaa\x19\x07\xed\x8f\xe8\x18\xd2\x36\xb6\xa3\xe7\x6f\x98\x86\x7e\x1c\x21\x8d\x61\xa7\xef\x3b\x28\x15\x9f\x6a\x5f\x88\xe7\xd6\x79\x4e\xe9\x29\x10\xd8\x8d\x1d\x42\x0a\x2a\xf0\x5a\xb4\xb4\xd6\xa6\x15\x4f\x5e\xe5\xe9\xe1\xa4\x0a\xb9\x37\xfc\xbd\x04\x93\x19\x66\xc9\xc1\x68\xb3\xfd\x91\x3d\xf3\x07\x1c\x18\x4b\xc0\x0e\x64\x21\xdd\x77\xd0\x5e\xaf\x3e\x79\xbc\x7c\x33\xd6\x73\x94\xbe\x9d\xde\xee\xd0\xea\x40\x77\x6a\x4b\xc6\xff\xb0\x8b\x56\x61\xe0\x81\x0d\xe2\x80\x23\xc8\xfe\xf0\x55\xcb\x2f\xd2\xa9\x1c\x04\x7b\x84\x00\xb1\x47\xd2\x93\x83\x2a\xb5\xf4\x5c\x50\xc4\xdc\x93\xd0\xd3\x00\x8a\x48\x20\xe2\x81\x0d\xad\x77\x7a\x6b\x1e\x69\x74\xdc\xbd\xe7\x50\xd8\xf4\xf6\xb5\x70\xc4\xb5\x9a\xd5\x10\x6c\xad\xd0\x03\xf3\x67\x5a\xe3\xc6\xd0\xf4\xdb\xf1\x73\x2d\xdf\x4b\x8d\xfe\xdc\xf0\xff\x49\x30\x87\x91\xef\x39\x3c\xa9\xf2\xcd\x2e\x81\xe2\xfb\x62\x5e\x17\xf4\x6c\xe5\x53\x58\x37\xe4\x0d\x3a\x0c\x32\x79\x83\x0e\x98\xf1\x7a\x2f\x02\xd0\xa5\x7f\x01\xb1\x87\xb3\xb6\x76\x12\x08\x93\x13\x97\xad\xb8\xbd\x0c\x8b\x7e\xef\xfb\x9a\x75\xd0\xb7\x2f\xdf\xde\xdc\xb3\x8b\x00\x94\x57\x38\x42\x66\xcb\x1c\xb2\x78\xa9\x63\x56\xb6\xde\x83\xe3\x08\xda\x31\xac\x9c\x41\xb3\x3c\xda\x3a\x6e\x19\xee\x3e\x5e\x0d\x16\xef\xa0\x9c\x1f\x74\x43\xa1\x2b\xb9\xcc\x4a\xbc\x1c\x3b\xaf\xfb\x4e\x85\x94\x60\x69\xb8\x56\xc2\xa9\x5e\x0e\x21\xc8\x5f\x63\xf7\x7b\x29\x1e\x9e\x3f\x5c\x15\x74\xa7\xf6\x18\x50\x95\x1d\xb0\xbd\xbd\xbe\x15\xbf\x9a\x66\x38\x92\x41\x02\xf7\xf4\xa3\xee\x01\xac\xbe\x53\x03\x33\xd4\x1f\x75\x8f\xb0\x7f\xc2\x94\xb0\xf1\xe5\xbe\x76\x6a\xb8\xd3\x4d\x5c\x6e\x37\x97\x2f\x51\x59\xa4\x1b\x95\x93\x1d\xae\x1a\x63\x5f\x04\x76\x3d\x35\xe2\x72\xf4\xb6\x60\xd7\x03\xe9\xd4\x3d\x9e\x3d\xba\x0f\x03\x98\x3b\xc2\x9f\xf2\xd4\x64\x5d\x10\x46\x7a\xc6\xdf\x95\xd0\x05\x9b\x17\xa9\xfa\x54\x0e\x28\xcb\x7c\xee\x69\xd3\xaa\xa0\xe3\xf9\xa1\x5d\xe2\xf9\x42\x33\xbd\x1c\x59\xc6\x60\xdd\xd7\xeb\x45\x3f\x4f\x65\x89\x02\xb2\xa6\xa3\x85\xed\x25\x26\xa8\xa3\xe5\xc4\xbc\x44\x7e\xb5\x3e\x1f\xd8\x05\xf3\xb7\x7b\x4c\xde\x78\xc9\x21\xd7\xa5\xe3\xcb\xb6\x13\xa8\x89\xff\x42\x98\xf5\x91\x6c\x2e\xf8\x7e\x92\x2f\x9b\x13\x8b\x97\x5c\xd9\x29\xc7\x50\xb9\xc7\x36\xe2\xe5\xf1\x54\x65\x9e\x2b\xeb\xe6\x84\xe7\x2a\x9b\xf1\x19\xd6\x8b\xd0\x90\xec\xc6\x2f\x57\x82\xb5\xfb\x75\x76\x57\xb8\x14\x56\x7b\x55\xf1\x9d\x74\xd0\xbf\xc6\x1b\x6a\xd6\xbf\x96\x17\xd5\x0c\x2b\xfb\x3e\x9e\xfb\x7d\xdf\x15\x87\x7e\x06\x72\x47\x74\x33\x83\xf8\x13\xfb\xdd\xcb\x80\xe8\x2d\x7b\x0e\xf4\xee\xcd\x75\x00\x98\xf2\x03\x9c\x6c\x37\x9b\x4e\x1b\x55\xef\xe9\x7d\xce\x6b\xfa\x14\x2f\x6d\x1b\xeb\x67\x0f\x0d\xf5\x60\x47\x52\xb0\x6e\x33\xef\xcf\x6f\x30\x11\x06\x27\x80\x0f\x23\xae\x83\x81\x6e\x15\x49\x56\xcf\xb2\xb8\x22\xc8\xca\x2b\x01\x49\x89\x5d\x09\xf2\x63\xe9\x49\x07\x91\x3f\x1d\xac\xf5\x35\x46\xd2\x2f\x98\xd3\x37\xd6\x7a\x71\x23\xfd\x2e\xce\x80\x97\x5e\x37\xf8\x70\xab\x28\x83\x57\xf4\x0d\xbd\x05\x9b\x15\xea\xec\x76\x5e\xe2\xda\x6e\x4f\x80\x93\x21\x58\x60\xed\x6e\xf1\x8b\x0e\xa3\xd8\x62\xf4\xe5\x48\x9b\x2e\x8c\x08\xa5\x4d\x57\x25\x0e\x52\x44\xec\x76\xd9\xda\xb9\x7d\xbe\xbc\x70\x00\x6a\xce\x8b\x66\x99\x18\xc5\xbe\x66\xe7\xb1\x35\xad\x49\xe6\xab\xbd\xf8\x85\x7d\xca\xd2\xd2\xcc\x8b\x9d\x58\x27\x90\x95\xb3\x8a\x59\x72\x87\xc6\x26\x21\xf7\x1a\xbf\x66\x40\xc5\xcc\xcd\x86\xd2\xed\xf0\x2d\x26\x3a\x95\x61\xa0\xff\x50\x47\x72\x26\xb3\x00\xb8\x85\xea\x22\xd8\x56\x19\xf1\xed\x43\xe7\x76\x8f\x28\xeb\xe1\x77\xb3\x32\x20\xab\xef\xc7\x3d\x3d\x7e\xd5\xbf\x2b\x0a\x73\x85\x2e\x9e\x31\x03\x6b\xbb\xd5\xbf\x2b\x71\x05\x19\xf7\x15\x75\x0b\xa5\x5c\x9c\xbb\x76\x9d\xa6\xee\x49\x30\xc9\x58\x9c\xbf\x76\x5d\xc4\x18\x4e\xa9\x39\x8b\x9e\x52\x73\xd1\x24\xa5\xf2\xaa\xca\xf7\x58\xbb\xae\x9d\xeb\xc2\x36\xbb\xbd\xbd\x2e\xf7\x72\xca\x4d\xfc\xcb\xb7\xc0\x8c\x3e\xe8\xad\xf3\xdb\x41\xb9\x07\xc2\x9a\xee\xf8\x5d\x56\x82\x87\x3a\x1f\x54\x4e\x9d\xe2\x70\x7f\xeb\xb4\x57\x7f\x7c\x80\x17\x73\x0f\xbc\x6e\xd7\x0f\xbe\x2b\xc8\xa2\xc6\xa7\x80\x19\x5d\xd4\xcd\x89\xf1\x89\x7a\x41\x05\xbc\x6a\xe6\x7b\x34\xf8\x87\x27\x1e\x96\x0d\xc4\xcb\xa1\x0d\x04\x2b\xf1\x2a\x91\x5c\xe5\x7c\x4a\x68\xd7\xce\x1e\x18\x96\x6d\x22\x62\xf0\x0e\x7c\x47\xfb\x26\xa0\xf9\x05\x93\x53\x03\xc9\xd5\x7c\x08\x47\xca\x0f\xec\x42\xf3\x30\x02\xe9\x0b\x43\xef\x66\xb9\x08\xf6\x24\xea\x39\x5f\x42\xfb\x73\xd5\xe6\xb4\xfd\xb3\xd5\x1a\x7a\x71\xff\xaa\x65\x76\xad\x91\xbd\x6f\x76\x32\x31\x6a\x57\x94\x10\x4f\x0c\xf2\x2a\xd1\xc0\x52\xe8\xd8\x4e\x81\x3c\x4f\xe0\xf3\x4c\x71\x8d\x86\x09\xb1\xb3\x4e\xf9\x24\xd8\x15\x85\xde\x40\x5e\x14\x04\xf3\xc2\xa1\x74\xf0\xa9\x13\x67\x3e\x78\x7c\x58\x9c\x79\x74\x0d\x55\x77\xca\x6c\x71\xd9\xfd\x27\x7c\x8a\x6b\xfc\x8c\x23\x44\xae\x1c\x50\x35\x6e\x47\xd6\x49\x41\x0a\x6a\xc8\xed\x98\x48\xcf\x67\x99\xe1\x7c\x6e\xf2\x43\xfb\x25\x7e\x2f\xb7\x90\x61\x4f\x92\x5f\xce\x0f\xf3\xb8\x53\x9d\xcd\x66\xef\xf9\xaf\xd7\xaf\x27\x90\x0b\xbb\x9b\x73\x16\xa8\x01\xe7\x2c\xec\x7d\x54\xa8\x23\x11\x65\x39\x0f\x55\xe9\x48\x45\x71\xb7\x04\xb8\x08\x52\x6f\xe8\xad\x2c\x85\x99\xa7\x88\xa5\xa6\x25\x47\x60\xb8\xef\x20\x29\x86\x97\x9f\x95\x76\x1c\xa2\x39\x81\xa7\x00\x50\xec\xf2\x09\x0a\x27\xce\x88\xcc\x82\xe2\x18\xa3\x29\xd0\xf2\x10\x13\xe4\x7c\x84\x43\x3e\xdd\x82\x25\x23\x40\xbc\xf7\x5a\xc4\x44\x90\xb2\x95\x3d\x91\x02\x02\xbd\xa4\xef\x12\x08\xaf\x8a\xef\x64\x17\xa1\x5e\x70\xc2\xac\x56\x93\xd7\x69\x38\x7c\x47\x9a\x06\xb2\x61\xcd\x08\x1d\xbd\x2d\x5b\x3e\xc8\x19\xba\x1f\xec\x9d\x0e\xc6\xa2\x04\x7f\xc3\x49\x01\x34\x80\x24\xcc\x01\x82\x51\xc7\x76\x5a\xfb\x51\x47\xb1\xee\x0a\xbf\x8a\xd5\xc5\x34\x02\x36\x35\xc1\x26\x32\x71\xab\x3c\x97\x88\xbc\x59\x13\x47\x26\xdc\x80\x3d\xbb\x8a\x63\x43\x97\x65\x93\xce\x74\x7a\xa3\xe2\xd5\x1a\xf7\xe6\x5a\x6f\x54\x01\xbc\xf3\xbe\x77\xc1\x09\xd2\xf3\xb7\x6f\x6f\x6e\xc5\x6b\xd3\x1d\x27\x9d\xc8\x51\x71\x4f\x12\xa6\x38\x32\x1a\xef\x3b\xb3\x81\xa1\x84\xe5\x21\x0f\xd0\x7c\x22\x65\xe0\x7c\x24\x4d\x29\xf1\x76\xe0\x47\x5a\x69\x17\x3f\xe3\xa4\xc9\x88\x6e\x54\x8b\x2f\xd5\xdb\x3a\x96\xe0\x71\x7d\x1a\x72\xc4\x25\xe6\x24\xf2\x08\xbc\x6f\x6c\x38\xb0\xbe\x8b\x8d\x06\xa8\xd0\x1e\x74\xf6\xb0\xd3\xdb\x1d\xc6\x04\xc8\x5a\x45\x3e\x1f\x8e\xc6\xcb\x4f\xe2\x79\xc8\xcf\x31\xec\xe5\x27\x2a\x0d\x6c\xbe\xa3\xab\x1b\x2a\x75\x8d\x09\x78\x8e\x4b\xe1\xb4\xd9\x76\xe4\xec\xe0\xbb\x93\xc5\xeb\x66\x27\x07\xd9\x70\x3c\x92\x88\xe8\x2a\xa5\x96\xd8\xa0\xcc\x32\xb6\xe0\x61\x21\xe2\xa0\x68\xad\xdf\x92\x18\x8a\x3e\x16\x8a\x82\xdb\xa6\x96\xc3\x96\x2f\x45\x2f\x87\xed\x48\x41\xec\x73\xd4\x7a\x3b\x04\x83\x0e\x3a\x21\x5e\xea\xe0\x3a\x67\x72\x46\x10\x38\x06\x01\xc9\xa1\xd1\x67\x3a\xcb\xed\x0b\x25\xd0\xbe\x3e\x2b\x70\x85\xf6\xf6\xc9\x28\x73\xa1\x08\x3a\xb0\x4a\x25\xd0\x77\xd5\xbd\x05\xf8\xf2\x97\xc0\x9f\x5d\x2d\x00\xe7\xb2\x4b\x5c\x42\x20\xb3\x2c\x2e\x21\x80\x62\xc6\x10\x60\x90\x31\x0c\x86\xd1\xab\x66\x20\xd7\xb3\xf0\xef\xad\x74\x1f\xa3\xc9\x74\xa1\x16\x0f\x69\xae\xd9\xa9\x76\x24\x4f\x12\xfc\x33\xc1\xab\x4f\x3e\xdc\xbd\xe3\x2e\x0d\x19\xe8\x86\xc0\x8e\x2e\xf8\x21\x80\x9f\x05\x80\xfa\xa4\x9a\x31\x33\xc3\xf9\x95\xbe\xf9\xde\x3b\xa1\xb1\xe1\xf1\xd4\x68\x8c\x36\x5b\x20\x83\x64\x57\x1c\x61\x96\xc2\x4e\x86\xa6\xa3\x04\x14\x24\xa1\x93\xf5\xc7\xea\xc3\x78\x57\xc1\xb8\x3c\x98\x6c\x73\xf4\xb6\x8e\xf4\x03\x13\x7b\xf3\x00\x8b\x4e\x4a\x5a\x74\x4a\x51\x47\x27\x15\xe8\xad\x84\x20\xd9\x61\x45\x84\x67\xa3\x69\x66\xc6\xac\x49\x98\x9c\xea\x54\x83\x6f\x86\x91\xa8\xc2\x87\xb8\xec\x52\xc9\x56\x15\x10\x4f\xf8\xb3\x80\xd1\x86\x64\x52\xca\x22\x61\xfb\x05\xa5\x31\xca\xcc\x88\x3e\x68\x8d\x08\x98\x1d\x0f\xa1\x86\xe6\x96\x53\xa6\x90\xa1\x66\x04\xba\xec\xba\xd9\x68\xe4\x22\x4f\x9e\x86\xbe\xb4\xb3\x97\x0e\x59\x9f\xa6\xd3\x18\xb2\x6c\x8f\x46\xd0\xab\x59\x6b\xa3\xea\x87\x67\x24\x3c\x09\xf8\x9c\x65\x69\xf5\x9e\xc6\xfe\x43\x78\x10\xcf\x77\x98\xc1\x74\x20\x33\xd7\x2b\x3c\x74\x9d\xb9\x9f\xbe\x97\x8f\xab\x41\x99\x2c\x50\x05\x7d\x15\x85\x8a\x58\xd8\x3f\xa4\x98\xd7\xde\xe6\x51\xc0\xff\xf0\x01\x50\x52\x4c\x6c\xf9\xb8\xe2\xd0\x85\x8c\x35\x85\x9c\x9a\xc4\x0d\x77\x43\xf3\xfd\xb4\xac\x90\x7e\x02\x06\x99\xff\x23\x20\xa6\x3e\x52\xb4\x8f\x0b\xf1\x1b\xb9\xca\xe3\xe8\x1f\x59\xff\xbe\xa7\xcb\xb7\xef\xa9\xa7\xff\xc6\x51\xbc\xe5\xe3\xdf\x2a\x8a\x78\x1b\x11\x70\x7c\xdb\xaf\x40\xc0\xe1\xb7\x23\x86\xe0\xaf\xef\xab\x1a\x41\xdd\x98\x46\x64\x0f\x73\x56\x04\x11\xcb\x11\x72\xa0\xf5\x13\x9d\x9a\xa1\xa3\xbe\x7d\x35\x36\xee\xe1\x14\x5d\xec\xe8\xd7\x37\x8f\x5e\x46\x64\xa3\x4e\x09\xaa\x15\xa8\x63\xfd\xe2\x71\x5b\x8c\x3a\xfd\x1b\xc7\x29\xfb\xea\x66\x45\x17\xef\xbc\x4e\xc3\xf7\x64\xd7\xd0\xda\x5f\x5e\xf8\x69\x23\xa1\xd7\x44\x2f\xb7\xd9\x7a\x97\xdb\xa2\x19\xb8\xda\xdd\x83\xc7\xb1\x05\xf3\x1d\x31\xd9\x43\xbd\x44\xe6\x30\x44\x8e\x46\xfa\x4b\xc9\xda\x71\x5c\x5d\x52\x35\x9f\xc5\xd8\xf5\x55\xf5\xde\x5b\xdb\x7d\xa8\xe4\x16\xba\x24\xb7\xb6\x82\x1d\xcc\x8f\x7f\x71\x33\x1b\x7b\xa8\xe8\x13\x7e\xfd\x00\x98\x7f\x60\x17\xc6\xe2\xcc\x55\x3f\xec\x31\x81\x02\x81\x61\xc2\x0e\x13\x76\x76\xc4\xb0\x11\x3f\xb4\xf8\xd9\xca\x23\x7e\x1d\xf0\xeb\xa0\xd4\x47\x2a\x8c\xc4\xf9\x07\xb1\xb7\xc6\xef\x30\xe5\x88\xdf\x47\x25\x39\xe8\x04\xb9\x4a\xc6\x70\xd3\xe1\x03\x83\x4a\x1b\xbc\xa7\xc3\xf4\xf0\x71\xe6\x2a\xa8\x95\x53\xe9\xe7\x99\xab\x5a\x79\xe4\x24\xfc\x75\xe6\x2a\xa8\x9e\x93\xe8\xe7\x19\x9e\xa9\x7e\x17\x10\xd2\xef\x33\x57\x41\x3b\x38\x91\x7e\x9e\xb9\x6a\x90\x87\x3a\xb5\x8b\x7f\x61\x6a\x6a\x15\xff\xaa\xaa\xf7\xed\x60\xfb\xdf\xad\x51\x1f\xaa\x10\x5b\x32\x85\x80\x7d\x32\xd8\x3e\xd8\x3f\xab\x81\xee\x04\x30\x2e\x94\xb7\x62\xec\x3b\x2b\xdb\x55\x15\x22\x3f\x6b\xd3\x8f\x51\x11\x9b\x62\xa0\x13\x58\x72\x94\x4c\x2f\x40\x8f\xbd\x5a\x55\xa8\xe6\xf5\xd6\xd6\x6b\x64\x98\x50\xc1\xeb\xf4\xef\x4a\x7c\xfb\xf7\xbf\x23\xbc\xfe\x5d\xfd\xe3\x1f\xe2\xe5\x2f\xdf\x09\xf5\xa9\x51\xaa\x75\x62\xcf\x26\x4e\x01\x6c\x2f\x3f\x3d\x2d\x20\x57\x15\x3f\xcc\x63\x9b\x1a\x7a\x98\x87\xd5\x57\xff\x2b\x00\x00\xff\xff\x24\xb2\x9b\x90\xd7\xe3\x00\x00") func confLocaleLocale_enUsIniBytes() ([]byte, error) { return bindataRead( @@ -4386,7 +4386,7 @@ func confLocaleLocale_enUsIni() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "conf/locale/locale_en-US.ini", size: 58233, mode: os.FileMode(420), modTime: time.Unix(1487353991, 0)} + info := bindataFileInfo{name: "conf/locale/locale_en-US.ini", size: 58327, mode: os.FileMode(420), modTime: time.Unix(1487389726, 0)} a := &asset{bytes: bytes, info: info} return a, nil } diff --git a/modules/setting/setting.go b/modules/setting/setting.go index 76f1e73d..575e3670 100644 --- a/modules/setting/setting.go +++ b/modules/setting/setting.go @@ -821,7 +821,7 @@ func newWebhookService() { Webhook.QueueLength = sec.Key("QUEUE_LENGTH").MustInt(1000) Webhook.DeliverTimeout = sec.Key("DELIVER_TIMEOUT").MustInt(5) Webhook.SkipTLSVerify = sec.Key("SKIP_TLS_VERIFY").MustBool() - Webhook.Types = []string{"gogs", "slack"} + Webhook.Types = []string{"gogs", "slack", "discord"} Webhook.PagingNum = sec.Key("PAGING_NUM").MustInt(10) } diff --git a/public/config.codekit b/public/config.codekit index b4548fd8..6b925693 100644 --- a/public/config.codekit +++ b/public/config.codekit @@ -84,6 +84,17 @@ "outputPathIsSetByUser": 0, "processed": 1 }, + "\/img\/discord.png": { + "fileType": 32768, + "ignore": 0, + "ignoreWasSetByUser": 0, + "initialSize": 1559, + "inputAbbreviatedPath": "\/img\/discord.png", + "outputAbbreviatedPath": "\/img\/discord.png", + "outputPathIsOutsideProject": 0, + "outputPathIsSetByUser": 0, + "processed": 0 + }, "\/img\/favicon.png": { "fileType": 32768, "ignore": 0, diff --git a/public/css/gogs.css b/public/css/gogs.css index 64baf104..4e5c21e7 100644 --- a/public/css/gogs.css +++ b/public/css/gogs.css @@ -2291,6 +2291,9 @@ footer .ui.language .menu { margin-left: 20px; display: block; } +.repository.settings.webhooks .types .menu .item { + padding: 10px !important; +} .repository.settings.webhook .events .column { padding-bottom: 0; } diff --git a/public/img/discord.png b/public/img/discord.png new file mode 100644 index 0000000000000000000000000000000000000000..db0e70d5d42d5a4e9df0db6491f647b3f33bea76 GIT binary patch literal 1559 zcmb7Edo&XY9G)H&d0dp;v2w8MeVH|3lGiqpVP>mYPyKh#`F_9ecYf!5|9t0sUz$G#t*#1E1pol* z-d>(q1+OYbx^1&!FO>{S6a@1>ghMKrnl}Ew5KRfpQ^>TUv6w)BYl7CprQ*R*+bP4d z{&iWJtIY@iU~7`MryGu;wD|n@yeeDG-!&?T(Y5fuTrQ(iMeiG5Xp|7A#B%9-@XptnMd3^YRW!BRa-Md=M|NLpK{9eS{qY# z#+lk91@5qxyHYr42->07qd8BIROvpgNvj)4AUg^$YEEz|%VJ*CO|U5SgN2xu)j-5u|JfpgU@0am_iI zdX8qG;>=E*)BI$sROL*@AH`G2&ih_@2nik7S{_|F%j~gU;kxx;yspl4m86!d(c#p4 zG0^d34V2LXY?TkM+rG4%tu3Q}>NUWpHI5`OJHiNIwzOtX8Z@3g2Q7s+b{^pBUz0;b z3cq!qslOK{pZgLAR>o@fV1Fu{ZCk0UFc ze(I|Br?qji^DFL-@(lxhNBLG*@SP}3$$048byr&3yO@|a-?i#VDpVH8yME=Ib49Y9 zrV~)7!rPV9+eI)9^CwtSgJCltUxzZc8%&`a()-QjB%(=$iUDp{S*C-P4VrT9uv_N% z%RASB{H~Pbup0Q~a3QfkIX1PEcM=C1oETp64U3x%jSaZM^n|F&`yLv9KjrK+VT3H2 z=-TF^Zh5-8!PNW>mvV+x)V#3GJ9V6L6ULEZ$C^y7>_qgDhd>Y=#gPgOJ@!+G+v9rs z^p^zz$!zJ}r?%NE!dzjh|9S?3FhOl%9W)YYES+}b)(88|lx*QY=h3ahlRoxqi%x0M zgzME?_+t$F`%Q-aJzoBiU}YP){7d4&BMB|HhDRH2uLPsny0_^1n(U*!nEj=A#}KeR zM~|JHKB*y|{1l!}#DRXe{@j5mr3#!VAj*Dh$ECNInQO89Hs!m5#~62Lgdvq5IeO%Xkx5BIYTG(SrV_cTr4=Y(nr#cn`J$2PFYMk5ZoWN zdV%Z$jL5`Rb2?EjNBetIblMxjB2IxBCBJ-D&y5lnO1TRRmi}I(<;@3>vGX4t;DxTA zW8^0Lo-GrBQf@YjXBlxQGyYZHkQUh(mfSrkw$sfw^C$m)87EeE*L3Kr=4MZ=ee%V)+ep>WE;)lU~aV+DuNAs{_e5mfpn5 zC~ipg1GEo?cbMt{LY)t*cg^9~_E?fNoWHp`$mHi;7dYDbssI20 literal 0 HcmV?d00001 diff --git a/public/less/_repository.less b/public/less/_repository.less index 9501d99c..a39d2f75 100644 --- a/public/less/_repository.less +++ b/public/less/_repository.less @@ -1329,6 +1329,14 @@ } } + &.webhooks { + .types { + .menu .item { + padding: 10px !important; + } + } + } + &.webhook { .events { .column { diff --git a/routers/repo/webhook.go b/routers/repo/webhook.go index 6a870163..84c95b5e 100644 --- a/routers/repo/webhook.go +++ b/routers/repo/webhook.go @@ -211,6 +211,55 @@ func SlackHooksNewPost(ctx *context.Context, form auth.NewSlackHookForm) { ctx.Redirect(orCtx.Link + "/settings/hooks") } +// FIXME: merge logic to Slack +func DiscordHooksNewPost(ctx *context.Context, form auth.NewDiscordHookForm) { + ctx.Data["Title"] = ctx.Tr("repo.settings") + ctx.Data["PageIsSettingsHooks"] = true + ctx.Data["PageIsSettingsHooksNew"] = true + ctx.Data["Webhook"] = models.Webhook{HookEvent: &models.HookEvent{}} + + orCtx, err := getOrgRepoCtx(ctx) + if err != nil { + ctx.Handle(500, "getOrgRepoCtx", err) + return + } + + if ctx.HasError() { + ctx.HTML(200, orCtx.NewTemplate) + return + } + + meta, err := json.Marshal(&models.SlackMeta{ + Username: form.Username, + IconURL: form.IconURL, + }) + if err != nil { + ctx.Handle(500, "Marshal", err) + return + } + + w := &models.Webhook{ + RepoID: orCtx.RepoID, + URL: form.PayloadURL, + ContentType: models.JSON, + HookEvent: ParseHookEvent(form.WebhookForm), + IsActive: form.Active, + HookTaskType: models.DISCORD, + Meta: string(meta), + OrgID: orCtx.OrgID, + } + if err := w.UpdateEvent(); err != nil { + ctx.Handle(500, "UpdateEvent", err) + return + } else if err := models.CreateWebhook(w); err != nil { + ctx.Handle(500, "CreateWebhook", err) + return + } + + ctx.Flash.Success(ctx.Tr("repo.settings.add_hook_success")) + ctx.Redirect(orCtx.Link + "/settings/hooks") +} + func checkWebhook(ctx *context.Context) (*OrgRepoCtx, *models.Webhook) { ctx.Data["RequireHighlightJS"] = true @@ -240,6 +289,9 @@ func checkWebhook(ctx *context.Context) (*OrgRepoCtx, *models.Webhook) { case models.SLACK: ctx.Data["SlackHook"] = w.GetSlackHook() ctx.Data["HookType"] = "slack" + case models.DISCORD: + ctx.Data["SlackHook"] = w.GetSlackHook() + ctx.Data["HookType"] = "discord" default: ctx.Data["HookType"] = "gogs" } @@ -346,6 +398,48 @@ func SlackHooksEditPost(ctx *context.Context, form auth.NewSlackHookForm) { ctx.Redirect(fmt.Sprintf("%s/settings/hooks/%d", orCtx.Link, w.ID)) } +// FIXME: merge logic to Slack +func DiscordHooksEditPost(ctx *context.Context, form auth.NewDiscordHookForm) { + ctx.Data["Title"] = ctx.Tr("repo.settings") + ctx.Data["PageIsSettingsHooks"] = true + ctx.Data["PageIsSettingsHooksEdit"] = true + + orCtx, w := checkWebhook(ctx) + if ctx.Written() { + return + } + ctx.Data["Webhook"] = w + + if ctx.HasError() { + ctx.HTML(200, orCtx.NewTemplate) + return + } + + meta, err := json.Marshal(&models.SlackMeta{ + Username: form.Username, + IconURL: form.IconURL, + }) + if err != nil { + ctx.Handle(500, "Marshal", err) + return + } + + w.URL = form.PayloadURL + w.Meta = string(meta) + w.HookEvent = ParseHookEvent(form.WebhookForm) + w.IsActive = form.Active + if err := w.UpdateEvent(); err != nil { + ctx.Handle(500, "UpdateEvent", err) + return + } else if err := models.UpdateWebhook(w); err != nil { + ctx.Handle(500, "UpdateWebhook", err) + return + } + + ctx.Flash.Success(ctx.Tr("repo.settings.update_hook_success")) + ctx.Redirect(fmt.Sprintf("%s/settings/hooks/%d", orCtx.Link, w.ID)) +} + func TestWebhook(ctx *context.Context) { var authorUsername, committerUsername string diff --git a/templates/.VERSION b/templates/.VERSION index b7e7fa15..e93f8f56 100644 --- a/templates/.VERSION +++ b/templates/.VERSION @@ -1 +1 @@ -0.9.156.0217 \ No newline at end of file +0.9.157.0218 \ No newline at end of file diff --git a/templates/repo/settings/hook_discord.tmpl b/templates/repo/settings/hook_discord.tmpl new file mode 100644 index 00000000..5561466f --- /dev/null +++ b/templates/repo/settings/hook_discord.tmpl @@ -0,0 +1,20 @@ +{{if eq .HookType "discord"}} +

{{.i18n.Tr "repo.settings.add_discord_hook_desc" "https://discordapp.com/" | Str2html}}

+
+ {{.CsrfTokenHtml}} +
+ + +
+ +
+ + +
+
+ + +
+ {{template "repo/settings/hook_settings" .}} +
+{{end}} diff --git a/templates/repo/settings/hook_list.tmpl b/templates/repo/settings/hook_list.tmpl index 471d9f9b..d51c1643 100644 --- a/templates/repo/settings/hook_list.tmpl +++ b/templates/repo/settings/hook_list.tmpl @@ -3,14 +3,17 @@

{{.i18n.Tr "repo.settings.hooks"}}
-

{{template "repo/settings/hook_gogs" .}} {{template "repo/settings/hook_slack" .}} + {{template "repo/settings/hook_discord" .}}
{{template "repo/settings/hook_history" .}} diff --git a/templates/repo/settings/hook_slack.tmpl b/templates/repo/settings/hook_slack.tmpl index 9333ae0c..124ceae3 100644 --- a/templates/repo/settings/hook_slack.tmpl +++ b/templates/repo/settings/hook_slack.tmpl @@ -1,5 +1,5 @@ {{if eq .HookType "slack"}} -

{{.i18n.Tr "repo.settings.add_slack_hook_desc" "http://slack.com" | Str2html}}

+

{{.i18n.Tr "repo.settings.add_slack_hook_desc" "https://slack.com" | Str2html}}

{{.CsrfTokenHtml}}