diff --git a/cmd/web.go b/cmd/web.go index 822694ccb..2c02c7a24 100644 --- a/cmd/web.go +++ b/cmd/web.go @@ -460,12 +460,16 @@ func runWeb(ctx *cli.Context) error { m.Post("/gogs/new", bindIgnErr(form.NewWebhook{}), repo.WebHooksNewPost) m.Post("/slack/new", bindIgnErr(form.NewSlackHook{}), repo.SlackHooksNewPost) m.Post("/discord/new", bindIgnErr(form.NewDiscordHook{}), repo.DiscordHooksNewPost) - m.Get("/:id", repo.WebHooksEdit) - m.Post("/:id/test", repo.TestWebhook) m.Post("/gogs/:id", bindIgnErr(form.NewWebhook{}), repo.WebHooksEditPost) m.Post("/slack/:id", bindIgnErr(form.NewSlackHook{}), repo.SlackHooksEditPost) m.Post("/discord/:id", bindIgnErr(form.NewDiscordHook{}), repo.DiscordHooksEditPost) + m.Group("/:id", func() { + m.Get("", repo.WebHooksEdit) + m.Post("/test", repo.TestWebhook) + m.Post("/redelivery", repo.RedeliveryWebhook) + }) + m.Group("/git", func() { m.Get("", repo.SettingsGitHooks) m.Combo("/:name").Get(repo.SettingsGitHooksEdit). diff --git a/conf/locale/locale_en-US.ini b/conf/locale/locale_en-US.ini index 36e323ee0..1b6ab6b39 100644 --- a/conf/locale/locale_en-US.ini +++ b/conf/locale/locale_en-US.ini @@ -742,6 +742,8 @@ settings.webhook_deletion_success = Webhook has been deleted successfully! settings.webhook.test_delivery = Test Delivery settings.webhook.test_delivery_desc = Send a fake push event delivery to test your webhook settings settings.webhook.test_delivery_success = Test webhook has been added to delivery queue. It may take few seconds before it shows up in the delivery history. +settings.webhook.redelivery = Redelivery +settings.webhook.redelivery_success = Hook task '%s' has been readded to delivery queue. It may take few seconds to update delivery status in history. settings.webhook.request = Request settings.webhook.response = Response settings.webhook.headers = Headers diff --git a/gogs.go b/gogs.go index bb9e727de..9107af57f 100644 --- a/gogs.go +++ b/gogs.go @@ -16,7 +16,7 @@ import ( "github.com/gogits/gogs/modules/setting" ) -const APP_VER = "0.10.23.0318" +const APP_VER = "0.10.24.0319" func init() { setting.AppVer = APP_VER diff --git a/models/error.go b/models/error.go index 18df15ce0..0e327d157 100644 --- a/models/error.go +++ b/models/error.go @@ -436,26 +436,6 @@ func (err ErrBranchNotExist) Error() string { return fmt.Sprintf("branch does not exist [name: %s]", err.Name) } -// __ __ ___. .__ __ -// / \ / \ ____\_ |__ | |__ ____ ____ | | __ -// \ \/\/ // __ \| __ \| | \ / _ \ / _ \| |/ / -// \ /\ ___/| \_\ \ Y ( <_> | <_> ) < -// \__/\ / \___ >___ /___| /\____/ \____/|__|_ \ -// \/ \/ \/ \/ \/ - -type ErrWebhookNotExist struct { - ID int64 -} - -func IsErrWebhookNotExist(err error) bool { - _, ok := err.(ErrWebhookNotExist) - return ok -} - -func (err ErrWebhookNotExist) Error() string { - return fmt.Sprintf("webhook does not exist [id: %d]", err.ID) -} - // .___ // | | ______ ________ __ ____ // | |/ ___// ___/ | \_/ __ \ diff --git a/models/errors/webhook.go b/models/errors/webhook.go new file mode 100644 index 000000000..76cf8cb41 --- /dev/null +++ b/models/errors/webhook.go @@ -0,0 +1,34 @@ +// 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 errors + +import "fmt" + +type WebhookNotExist struct { + ID int64 +} + +func IsWebhookNotExist(err error) bool { + _, ok := err.(WebhookNotExist) + return ok +} + +func (err WebhookNotExist) Error() string { + return fmt.Sprintf("webhook does not exist [id: %d]", err.ID) +} + +type HookTaskNotExist struct { + HookID int64 + UUID string +} + +func IsHookTaskNotExist(err error) bool { + _, ok := err.(HookTaskNotExist) + return ok +} + +func (err HookTaskNotExist) Error() string { + return fmt.Sprintf("hook task does not exist [hook_id: %d, uuid: %s]", err.HookID, err.UUID) +} diff --git a/models/webhook.go b/models/webhook.go index ad7a5a3dd..19f2ae18e 100644 --- a/models/webhook.go +++ b/models/webhook.go @@ -21,6 +21,7 @@ import ( api "github.com/gogits/go-gogs-client" + "github.com/gogits/gogs/models/errors" "github.com/gogits/gogs/modules/httplib" "github.com/gogits/gogs/modules/setting" "github.com/gogits/gogs/modules/sync" @@ -241,7 +242,7 @@ func getWebhook(bean *Webhook) (*Webhook, error) { if err != nil { return nil, err } else if !has { - return nil, ErrWebhookNotExist{bean.ID} + return nil, errors.WebhookNotExist{bean.ID} } return bean, nil } @@ -494,6 +495,21 @@ func createHookTask(e Engine, t *HookTask) error { return err } +// GetHookTaskOfWebhookByUUID returns hook task of given webhook by UUID. +func GetHookTaskOfWebhookByUUID(webhookID int64, uuid string) (*HookTask, error) { + hookTask := &HookTask{ + HookID: webhookID, + UUID: uuid, + } + has, err := x.Get(hookTask) + if err != nil { + return nil, err + } else if !has { + return nil, errors.HookTaskNotExist{webhookID, uuid} + } + return hookTask, nil +} + // UpdateHookTask updates information of hook task. func UpdateHookTask(t *HookTask) error { _, err := x.Id(t.ID).AllCols().Update(t) @@ -704,7 +720,7 @@ func (t *HookTask) deliver() { // TODO: shoot more hooks at same time. func DeliverHooks() { tasks := make([]*HookTask, 0, 10) - x.Where("is_delivered=?", false).Iterate(new(HookTask), + x.Where("is_delivered = ?", false).Iterate(new(HookTask), func(idx int, bean interface{}) error { t := bean.(*HookTask) t.deliver() @@ -725,7 +741,7 @@ func DeliverHooks() { HookQueue.Remove(repoID) tasks = make([]*HookTask, 0, 5) - if err := x.Where("repo_id=? AND is_delivered=?", repoID, false).Find(&tasks); err != nil { + if err := x.Where("repo_id = ?", repoID).And("is_delivered = ?", false).Find(&tasks); err != nil { log.Error(4, "Get repository [%s] hook tasks: %v", repoID, err) continue } diff --git a/modules/bindata/bindata.go b/modules/bindata/bindata.go index de19e4551..49d850082 100644 --- a/modules/bindata/bindata.go +++ b/modules/bindata/bindata.go @@ -4372,7 +4372,7 @@ func confLocaleLocale_deDeIni() (*asset, error) { return a, nil } -var _confLocaleLocale_enUsIni = []byte("\x1f\x8b\x08\x00\x00\x09\x6e\x88\x00\xff\xb4\xbd\x6d\x72\x1c\x39\x92\x28\xf8\x3f\x4e\x81\xd2\x18\x4d\x55\x66\x54\x96\x55\xf7\x9b\xb7\x6b\x65\xc5\xea\x65\x51\xa5\x8f\x19\x4a\xe2\x88\x52\xf7\x9b\x95\xc9\xa2\x90\x11\xc8\x4c\x0c\x23\x81\xe8\x00\x82\xa9\xac\xb6\xbe\xc1\x1e\x60\xcf\xb7\x27\x59\xf3\x0f\x7c\x45\x44\x52\x52\xf7\xbc\x3f\x64\x06\xe0\x70\x00\x0e\xc0\xe1\xee\x70\x38\x64\xdf\xd7\xad\x72\x8d\xb8\x10\x97\xa2\x97\xda\x74\xca\x39\xe1\x54\xb7\x79\xb2\xb3\xce\xab\x56\x3c\xd7\x5e\x38\x35\xdc\xeb\x46\x55\xd5\xce\xee\x95\xb8\x10\x2f\xec\x5e\x55\xad\x74\xbb\xb5\x95\x43\x2b\x2e\xc4\xd3\xf0\xbb\x52\x9f\xfa\xce\x0e\x00\xf4\x2b\xfd\xaa\x76\xaa\xeb\xa1\x8c\xea\xfa\xca\xe9\xad\xa9\xb5\x11\x17\xe2\x56\x6f\x8d\x78\x69\x28\xc5\x8e\x3e\x24\xbd\x19\x3d\xa5\x8d\x7d\x48\x7a\xdf\x57\x83\xda\x6a\xe7\xd5\x20\x2e\xc4\x5b\xfe\x59\x1d\xd4\xda\x69\x0f\x35\xfd\x85\x7e\x55\xf7\x6a\x70\xda\x02\xf6\x3f\xd3\xaf\xaa\x97\x5b\x00\xb8\x91\x5b\x55\x79\xb5\xef\x3b\x89\x05\xde\xf1\xcf\xaa\x93\x66\x3b\x12\xcc\x35\xff\xac\x9a\x41\x49\xaf\x6a\xa3\x0e\xe2\x42\x5c\xe1\xc7\x6a\xb5\xaa\x46\xa7\x86\xba\x1f\xec\x46\x77\xaa\x96\xa6\xad\xf7\xd4\xcd\xf7\x4e\x0d\x82\xd3\x85\x34\xad\x80\x74\xec\x82\x6a\x6b\x6d\x6a\xe9\xb8\x1f\xaa\x15\xda\x08\xe9\x2a\x44\x65\xe4\x3e\x94\x86\x9f\x95\xda\x4b\xdd\x01\xd5\xe0\x7f\xd5\x4b\xe7\x0e\x16\x49\x7b\xc3\x3f\xab\x41\xd5\xfe\xd8\x2b\x24\xc1\x93\x77\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\x27\xfa\xbc\xc9\x3e\xab\xbd\x1e\x06\x0b\xa4\x7d\x85\x3f\x2a\xa3\x0e\x35\xe0\x11\x17\xe2\xb5\x3a\xe4\x58\x20\x67\xaf\xb7\x03\x51\x11\x32\x5f\xe1\x17\x60\xa1\x3c\xc6\x44\x59\x11\xdb\xc6\x0e\x77\x9c\xfa\x0c\x7e\x4e\x50\xda\x61\xcb\xb9\x65\xbb\xa4\x91\x5b\xc5\xb9\xaf\xf0\xa3\x00\x70\x95\x6c\xf7\xda\xd4\xbd\x34\x0a\x48\x77\x09\x5f\xe2\x06\xbe\x2a\xd9\x34\x76\x34\xbe\x76\xca\x7b\x6d\xb6\x30\x06\x97\x94\x24\x6e\x39\xa9\xca\xf2\x62\xda\xd1\x8e\x71\x94\xc5\x85\xf8\x4f\x3b\x0e\xe2\x86\x3e\x29\x2f\x2b\x84\x99\xb1\x64\x25\x1b\xaf\xef\xb5\xd7\x8a\x2a\x0b\x1f\x55\x3f\x76\x5d\x3d\xa8\xbf\x8e\xca\x79\xc8\xba\x19\xbb\x4e\xbc\xe5\xef\x4a\x3b\x37\x62\x89\x97\xf8\xa3\xaa\x1a\x69\x1a\xec\xce\x15\xfe\xa8\xaa\x0f\xda\x38\x2f\xbb\xee\x63\xc5\x3f\x00\x98\x7e\x11\x9d\xbc\xf6\xd8\x58\x4e\x14\xb7\x5e\xf5\x0e\x08\x2d\x9e\xe9\xc1\xf9\x27\x5e\xef\x95\x78\x3b\x9a\xaa\xb5\xcd\x9d\x1a\x6a\x58\x90\xb8\x94\x5e\x6e\xc4\xd1\x8e\x8f\x07\x25\x86\xd1\x18\x6d\xb6\xe2\xb9\xdd\x3a\xa1\x8d\xd3\xad\x12\x4f\x11\xfa\x5c\xf4\x9d\x92\x4e\x89\x41\xc9\x56\xfc\x24\x85\x97\xc3\x56\xf9\x8b\x47\xf5\xba\x93\xe6\xee\x91\xd8\x0d\x6a\x73\xf1\xe8\xcc\x3d\xfa\xf9\xf9\xa8\x5b\xd5\x69\xa3\xdc\x4f\xdf\xcb\x9f\x45\x23\x07\xb5\x19\xbb\xee\x28\xd6\x6a\x03\x6b\xe5\x68\x47\xd1\xec\xa4\xd9\xc2\x3a\x39\xfa\x1d\x54\xa8\x8d\xf0\x3b\xed\x04\x2c\xd4\x6f\x2a\xa0\x92\xf6\xaa\x6e\xd7\x81\x29\x61\x83\x30\x79\x50\x4e\xbc\x3a\xde\xfe\xc7\xf5\xb9\xb8\xb1\xce\x6f\x07\x85\xbf\x6f\xff\xe3\x5a\x7b\xf5\xc7\x73\xf1\xea\xf6\xf6\x3f\xae\x85\x1d\xc4\x3b\xfd\xf4\x97\x55\xd5\xae\xeb\x40\x97\xa7\xd2\xcb\x35\x74\x21\x8e\x15\x64\xd2\x52\x8a\x79\xb8\xa0\x80\xe5\x21\x7b\x73\x1e\x17\x29\x2f\xd0\xc5\xe5\xd8\xae\x6b\x5e\xc3\x11\xc7\x6b\x58\xc8\xed\x3a\x11\xf8\x86\x48\x37\x3a\x25\x5e\xbe\x7e\xfd\xe6\xe9\x2f\x42\x99\xad\x36\x4a\x1c\xb4\xdf\x89\xd1\x6f\xfe\xcf\x7a\xab\x8c\x1a\x64\x57\x37\x1a\x68\x33\x38\xe5\xc5\xc6\x0e\xd4\xd3\x55\xe5\x5c\x57\xef\x6d\x0b\xb5\xdc\xde\x5e\x8b\x57\xb6\x55\x55\x2f\xfd\x0e\x1b\xe2\x77\x95\xfb\x6b\x07\xf4\x8a\x15\xbe\xdb\x29\x81\x53\x17\x81\xec\x26\x90\x47\xb4\xdc\xc6\x95\xf8\x69\x3d\xfc\x9c\xb5\x4b\xae\x9d\xed\x46\xcf\x25\x0e\x3b\x65\x70\x9c\x9c\x97\x83\x17\xd2\x05\xd6\xbf\xaa\xd4\x30\xd4\x6a\xdf\xfb\x23\x8c\x0e\xb7\x61\x8a\x9d\x90\x34\xd2\x18\xeb\xc5\x5a\x09\x84\x5f\x55\xc6\xd6\xb4\x52\x81\x6d\xb6\xda\xc9\x75\xa7\x6a\x62\xe9\x43\xe0\x48\xff\x09\x93\x83\x0a\x32\x84\x28\x20\x80\x62\xb0\x4d\x20\x77\x86\x99\x23\x8d\x40\xa4\x82\x97\x7a\xde\xc2\xc0\x17\xe2\xa8\x11\x6b\x88\x09\xb3\x16\x56\x61\x18\xc2\x9c\xb9\xec\xfb\x4e\x37\x54\xf5\x73\xca\x4b\xd3\x07\x36\x4d\x1e\xfb\x1c\x0e\x87\x3f\xe4\x65\x93\x60\xf4\x40\xd2\x41\x14\x3c\x18\xcb\xef\xd4\xa0\xc4\x6e\xdc\xd2\xc6\xd1\xd9\xb1\xfd\x06\x39\x78\xa0\x6f\xe2\x93\xe2\xad\xb5\x9e\xc6\x3c\x02\xa4\x2a\x2e\xbb\x0e\xf7\xe9\x41\xed\xad\x07\xc2\x71\x31\xe0\x45\x07\xdd\x75\xd0\x53\x27\xef\x55\x2b\xbc\xa5\xf5\xd6\xea\x41\x35\x80\x78\x55\x0d\xa3\xa9\x79\xb2\xbf\x1d\x0d\x4d\xf8\x90\x56\xce\x2c\x84\xda\x8f\xce\x8b\x9d\xbc\x57\x40\x78\x10\x16\xbc\x5d\x6c\x27\x76\x69\x18\x0d\x2e\xe1\x55\xd5\xda\xbd\xc4\x8d\xff\x29\xfe\xe0\xef\x1c\xbf\x76\x42\x6e\x36\xaa\xf1\x4e\xdc\xde\xbe\x10\x4d\x67\x8d\x12\xef\xdf\x5e\x3b\x58\x06\xbb\xba\xb7\x03\x0a\x09\xb7\x2f\xc4\x8d\x1d\x7c\x4c\xcb\x08\x0d\x10\x66\xdc\xaf\xd5\x20\x0e\x3b\xdd\xec\x88\xec\x50\x02\x66\xb1\x1a\x84\x76\x62\x74\xda\x6c\xcf\x45\xa7\xa0\x07\xda\xd3\x04\x80\x3e\x84\x59\x07\xe0\x1b\x25\xfd\x38\x28\xdc\xf4\xeb\xf5\xa8\x3b\xaf\x4d\x0d\x15\x32\x1e\x64\x0b\xe2\x17\xca\xc0\x12\xb7\x98\x71\x02\xbe\xee\x6d\x4f\xe2\x0c\xae\xaa\x75\x56\x8e\x11\xc2\x92\x87\x01\xb4\xbd\xa2\xf9\xee\xb8\x49\x30\xe1\x46\xed\x76\x62\x33\xd8\xbd\x70\x47\xe7\xd5\x1e\x0b\xb6\x52\xed\xad\x59\x55\x3b\xef\xfb\x40\x9b\x17\xef\xde\xdd\x10\x71\x62\xea\x43\xd4\x91\xd9\xdc\xc5\x59\xd2\x81\x60\x65\x04\xa0\x85\x69\x3c\x0e\xdd\x64\x86\xbf\x7f\x7b\x1d\x72\x4e\x8c\x1c\x34\xe1\x7b\xf8\x73\x9b\x06\x10\x67\x82\xb3\x7b\x75\xc0\xf9\xae\x8d\x40\x61\x67\x55\x75\x76\x5b\x0f\xd6\xfa\x30\xdd\xaf\xed\x96\xa6\x78\x91\x91\x6a\x7a\x1a\x26\x2d\x10\xe7\x30\x80\xf0\xd7\xd9\x2d\x32\x3c\xa0\xd7\xaa\x52\x06\x59\x4b\x63\x8d\xb3\x9d\x0a\x9c\xf3\x57\x4c\x15\x57\x94\x4a\x4c\x74\x01\x32\x8e\xd2\x4b\xe0\x2c\xad\xc6\x1e\x7b\x4b\xfc\x14\x00\xce\x85\xec\x9c\x15\xfd\xa0\x8d\x87\x8a\x71\x8c\x18\xc3\xaa\xaa\x6c\x0f\x25\x32\x1e\xf2\x86\x13\x12\xe3\xc0\x7e\xc7\x7c\x14\xf5\x70\xe6\xe8\x26\xdb\x9c\xdc\xde\xf7\x35\xef\x44\xb7\xaf\xde\xdd\xd0\x76\x84\xa9\x38\x09\x2e\xc4\xb3\xc1\xee\x53\x42\xa2\xcf\x2b\xc0\x87\x30\xb2\x6d\x07\xe5\xdc\xb9\x78\xfb\xec\x4a\xfc\xeb\x1f\xff\xf0\x87\x95\x78\xe9\x81\xed\x01\x27\xf8\x2f\x58\xc1\x92\x47\x21\x81\xda\x41\xf8\x9d\x12\x8f\x80\x8d\x3d\x12\x3f\x61\xee\xff\xa5\x3e\xc9\x7d\xdf\xa9\x55\x63\xf7\x3f\xc3\x2c\xdd\x4b\xbf\xaa\x20\x47\x0d\x81\x69\xdc\x2a\xd3\xaa\x81\x05\x57\xce\xca\x58\x2f\x67\x67\x62\x2c\xc9\xef\x40\xfb\x8d\x1e\xf6\x69\x80\x82\x64\x0f\x23\x05\x39\x41\x0a\xd4\x5d\x6d\xac\xd7\x9b\x63\x02\xc5\x9e\xbe\x86\x44\x9e\x9a\x15\xaf\x34\xde\xae\x22\x8d\x69\x5d\xe2\x0c\x7c\xe3\x77\x6a\x08\xe4\x76\x89\xde\x76\xb3\x01\xa1\x65\x32\x5b\xde\x50\x2a\xcd\x96\x1c\x24\x4e\x93\xa7\xcc\x30\xae\x9e\xbe\x16\xea\x5e\x19\x98\xd8\xfd\x60\xdb\xb1\xc1\x99\x13\x66\x4c\x27\x06\xe5\xec\x38\x34\x8a\x27\x6a\x64\xc8\xd0\x34\xe0\xfa\x8d\xec\xba\xe3\xaa\x0a\x1b\xe3\x76\x90\xf7\xd2\xcb\x21\xab\xe2\x79\x48\xe2\xd6\xcf\x60\x67\x8d\x8a\x25\xa0\xe7\xcd\xe8\x3c\x70\x0f\x6c\x85\xa3\x46\x51\xb6\x13\x72\x50\x62\xec\x3b\x2b\x5b\xd5\x8a\xf5\x11\x79\xbc\x83\xb9\xd0\xaa\x8d\x1c\x3b\xbf\xaa\x36\xaa\x05\xa6\xa4\xda\x9a\xeb\xea\xac\xbd\xc3\xca\x98\x54\xcf\x02\x80\xb8\x64\xa4\xd7\x08\x71\xaa\x64\x6c\x2c\x97\x8f\x60\xb1\x51\x5c\x83\xb7\x28\xa2\xa4\x7c\xdb\x2b\xc3\xdd\x08\x82\x89\x00\xb9\xa3\x15\xd6\x88\x4e\xaf\xb9\xd3\x89\x96\x13\x21\x23\x50\xe7\x16\xf4\xdb\x3c\x6f\xb1\xc0\x8c\xa8\x38\xe1\xdd\xb4\xec\xb9\xb0\xa6\x3b\xb2\x30\x02\x4b\x8c\x14\xc8\x20\x97\xb8\xc4\x96\xa2\xba\x16\x38\x12\x6b\x6d\x65\x7e\xac\xf6\x2d\x89\xbd\xe2\x5e\x76\xba\x05\x8c\x01\x01\xec\x16\xcb\x6d\x59\x55\x2c\x2b\xd7\xac\x69\xd7\xf7\x1a\xf5\xd8\xb8\xc4\x08\x25\x6b\xdf\x40\xe1\x3f\x03\x00\x28\xc8\x6e\xb1\x6c\x6c\xcd\x1b\xe8\xa4\x8b\x7a\x2c\xcd\x13\xe8\x2e\xd6\x00\xf2\xbb\x3b\x17\xf7\x1a\xc5\x00\x9e\xe4\x48\x97\x35\xc8\x98\x9d\x82\xaa\x9c\x52\x88\x41\x68\xf3\xfd\xd8\x53\x99\x15\x2b\x71\xac\x57\x05\xb9\x1f\xc4\xc1\xd6\x0a\x90\xd2\x50\xd6\x00\x4e\xcb\x64\x9d\xc8\x7d\x62\xd0\xdb\x9d\x17\xc6\x1e\xce\x89\x28\x87\x9d\x55\xb0\xe6\x5f\x3e\xbd\xf8\x81\xda\xb1\x05\xc9\x23\x16\x02\x99\x45\x8e\xde\x02\x7f\xe1\xa5\x47\x4d\x88\xb2\x1f\x42\xce\xd4\x45\x02\x9a\xea\xed\x33\x51\x33\x32\x3a\xe6\x6f\x79\x1e\x33\xb6\x04\x43\xa5\x83\xee\x4f\x15\x13\x23\x65\x5d\xaf\xde\x5a\xd4\x35\x83\x6e\x07\xc2\x54\xe5\x95\xf3\xf5\x56\xfb\x7a\x03\xdc\x16\x10\x3f\x03\x04\x20\xdb\x29\xe7\xc5\xe3\xad\xf6\x8f\x45\x63\xf7\x7b\x69\xda\x1f\xc5\xd9\x3d\xab\x09\x7f\x04\x36\x0a\x4b\x51\x77\x38\x22\xac\xc1\x0e\x8a\xb4\x81\x60\x3d\x69\xad\x72\x48\x78\x37\xf6\x28\x58\x44\x15\x8b\x35\xc1\xd6\x1e\x0c\x30\x0c\xdc\x2e\xec\x66\xa3\x1b\x2d\x3b\xb1\xd6\x46\x0e\xc7\x88\x05\xb7\xa1\x33\x77\x2e\x5e\xbf\x79\x87\x80\x5b\x0b\x72\x4f\x1b\x00\x56\x95\x36\x38\xb1\x41\x9d\xe0\xc1\xcf\x75\xa9\x90\xa4\xa9\x2d\x8d\x1d\x60\xef\xc7\xde\x84\x82\x27\x24\x65\x10\x1c\x48\x11\xd1\xa0\xcb\x22\x2c\x96\x8b\x42\x2d\x90\x61\x2f\x7d\xb3\x63\x91\x17\xa7\x8d\x76\xe6\xb1\xc7\x96\x36\xe3\x30\x28\xe3\x31\xf9\x47\x71\xe6\xc4\x93\x9f\xc5\x99\x8b\xd5\xe6\x3b\x31\xee\xcf\xb0\x1d\x8b\x8d\x56\x5d\x1b\x5a\x9b\xea\x04\xa9\x9b\x76\xba\xed\x7c\xb4\x20\x53\x50\xe6\x48\xeb\xb7\xe8\x5f\xb1\x30\xe2\xf4\x08\xd3\x3e\x23\x50\xde\xc9\x30\x6f\xdc\x48\x33\xfd\x42\xfc\x45\x75\x8d\xdd\xab\x6f\xc4\x5f\x14\xa8\xfa\xdb\x0e\x47\x4e\x7a\xd6\xc7\xad\x53\x38\xab\xce\x69\xa1\x6d\x46\x83\x7b\x86\x97\x77\x0a\x55\xf8\x34\x50\x4b\xe2\xda\x49\x62\x57\x1f\x76\x76\xaf\x3e\x56\x23\x29\x43\xb6\x6b\xa3\x3a\x8d\x4b\xc8\x0e\x24\x7f\x44\xdd\x3a\xc1\xc4\xd5\xe1\x0e\xda\x37\xbb\x3a\x1a\x1a\x81\x90\x5e\x7d\x42\xc1\x08\xb3\x92\xdd\x11\x96\x16\x64\x55\xfb\x23\xce\x0b\xe8\xf8\xab\x63\x9a\x16\x5a\xb9\xca\xed\xec\x01\xad\x76\x11\xe2\x76\x67\x0f\x68\xaf\x2b\x54\xa6\xd5\x6a\x55\x35\xb6\xeb\xe4\xda\xc2\xa8\xdc\x27\xf8\xab\x3c\xb5\x44\xbe\x3f\xd6\x76\xd8\x72\xb5\xa5\x95\x6a\x7f\x64\xc3\x18\xe7\x92\x61\xcc\x55\xc8\x5e\xd9\xa2\x8a\x5c\xf8\xcc\x55\x6c\x0f\x5a\x69\x53\xa3\xb9\x29\xd4\xfc\xd2\x90\x32\x93\xb7\xb3\xaa\x3e\xb0\xb5\xf5\x63\x15\xe0\x8a\x36\x11\x8f\x26\xa2\xbb\xc2\x04\xe8\x26\x36\x40\x57\x39\x25\x07\x5c\x10\xb7\xf8\xa3\xaa\x3e\xc8\xd1\xef\x3e\x66\xd6\xd0\x3a\xcc\xbc\x60\x15\x45\x8b\x1d\xb3\xc9\x24\xd6\xed\x54\x0f\x12\xe0\xde\xe1\x94\xed\x06\x25\xdb\x23\xeb\x8b\x71\xf2\xfe\x89\x36\x20\x6d\x80\x6d\x7f\x53\x39\x0b\x1c\xa4\xfe\x4a\x14\xbf\x68\xd3\x52\xf9\x72\xf3\x26\x33\xed\xbe\xc7\x69\x62\x87\xe1\x78\x5e\x5a\x12\x76\xd2\x89\xb5\x52\x26\x68\x7c\xed\x2a\xd8\x69\x60\x7a\xc9\x86\x98\x00\x9a\x96\x71\x05\x52\x49\x3b\x93\x2a\xa0\x85\xc4\xb7\xb9\x16\x62\xe3\x2e\x08\x98\x20\x59\x7d\x75\x15\x83\xda\x2b\x50\xd1\xea\x3d\x19\x7a\xe9\x4b\xbc\x52\xd5\xc6\x0e\x5b\x5c\x7b\xb4\x38\x2e\xc4\x33\x4c\x48\xab\x05\x00\x94\xcf\xb7\x1b\x86\x08\x29\x7f\x0a\x86\xf5\xda\xd8\x03\x1a\x5c\x41\xe4\x9a\x0e\xca\xd8\x03\x51\x57\x61\xfb\x22\x49\x08\x85\x70\xa7\x8c\x4f\xa4\xbd\x14\x46\x1d\x44\x0e\xc5\x04\x88\xf4\x05\x78\x60\x73\x3f\xad\x7f\x3e\x73\x3f\x7d\xbf\xfe\x39\xee\x20\xcd\x4e\x35\x77\x34\xa1\xb5\x59\xdb\x4f\x68\xdd\x41\x53\xa0\x12\x06\x16\xf8\x59\x2b\x76\x76\x1c\x58\xc3\x02\x0d\xc4\x2b\xcc\x2d\x46\xb2\x1f\x2c\xf0\xb8\x15\x99\x5e\x15\xad\x98\x34\x4b\xd1\x06\x0b\xf3\x14\xb7\xb9\x30\x51\xfb\xc1\xee\xf4\x5a\x7b\x60\x67\x68\x90\xb8\xc6\xff\x37\x9c\xac\xda\x09\x44\x26\x91\x0c\x91\xf9\x6a\x27\xfa\x58\x00\x1a\x89\xa0\xa9\x7f\x3c\xca\x69\x84\x61\x64\x91\x7e\x9d\xde\x6b\x3f\x9b\xa0\xc0\x8a\x25\x4f\x74\x36\x15\x87\xb1\xc1\x3e\x24\xea\x0e\xaa\x51\xc6\x77\xc7\x38\xa3\x0e\x52\x7b\xf1\x47\xb1\xd7\x66\xf4\xa0\x06\xef\x94\x11\x7e\x38\x0a\x09\x52\xcf\xaa\xda\x49\x57\x8f\x86\x87\x49\xb5\x61\xca\xbe\xd0\xb8\x39\x43\xbd\x61\x61\x65\x50\xa5\x6a\x28\xbe\x8d\x23\xf8\xdd\x8a\x8d\xc6\x58\x0a\x36\x4c\x68\x8f\x06\x3d\x46\x2e\xcd\x05\x3b\x08\xa3\x88\x42\xd8\x7f\x00\x83\x69\x63\x8d\x4a\xc4\xea\x74\x73\x07\x02\x3c\x8c\xef\x7a\xf4\xde\x82\x96\xda\xc1\x1c\xa4\x32\xa1\xcd\x57\x08\x88\x36\x84\x84\xef\x48\xc3\x52\x52\xa9\xc2\x62\x00\xe1\x97\x0b\x7f\x3b\xa8\xef\x52\xf1\xb8\x64\xb0\x04\xa3\xa0\xd2\xd9\x6a\x7a\x8b\x99\x74\x22\x10\xd6\x5c\xd8\x1a\x1b\xb6\xd1\xc6\xd1\x1c\x4a\x6a\x60\x3e\x2c\x0c\xf5\xa9\xd7\x03\xe8\x2b\x43\x12\x14\x56\x93\xba\x92\x42\x3f\xef\xb1\x2f\x5b\x9c\x76\x4f\x6f\x6d\xed\x76\x64\x07\x0a\xcd\x13\x9d\x32\xdb\xc2\x20\x8b\xa7\x7b\x38\x45\xfe\xe7\xaa\x32\xd6\xd4\xa8\x7d\x66\x6b\xe6\xb5\x35\x4f\x30\x2d\xaa\x2f\xa1\x34\x5b\xee\x43\x85\x80\x66\xb0\xe3\x76\xc7\xf6\xbd\xea\x03\x50\xed\x63\xc5\x43\xa1\x32\x9c\x3c\x51\x43\x4e\x18\x32\x5a\x8e\x11\x3e\x08\xc1\x7f\x56\x03\xa8\xfa\x08\x54\x4c\xc3\x53\x23\x52\x12\x24\xf2\xe6\x24\x00\xbd\xcd\x79\x06\x27\x6f\xc6\xee\x5c\x1c\x48\x32\x4a\x65\xa2\x99\x81\x65\x26\x98\x95\x74\xac\x59\x7d\xd8\xdb\x56\x76\x1f\xab\x23\x1e\xd6\xfc\xa7\x72\x95\xc1\x03\x32\x5b\xed\x6d\x4b\x85\x5e\xe1\x8f\xaa\xfa\xb0\xb1\xc3\xfe\x63\x05\xbb\xee\xeb\x89\xb6\x00\xdb\x33\xa7\x65\x12\x2b\x66\xfd\x9a\x1f\x00\xc6\x3e\xdf\x2c\x28\x16\x6f\x55\x3a\x07\xc4\x5f\xb1\xf3\xb7\xb7\x2f\xde\x05\xc3\xc7\xed\x0b\x71\xa7\x18\xf7\x0b\xef\x7b\xf7\x1e\xcd\x79\x64\x9b\x7b\xff\xf6\xba\xba\x91\x47\x90\xe2\x29\x99\x3f\x30\xe3\x9d\x92\x7b\x6e\x24\xfc\x24\x14\x97\xa3\xdf\x71\x22\xfc\xb4\x43\x6e\xc8\xae\x50\x34\xfd\xb5\x50\x63\x68\x15\x55\xaf\xd5\xe1\x97\x41\x9a\x26\x14\x06\x99\x61\x8d\x09\x54\xf2\xca\xee\xf7\xda\xdf\x8e\xfb\xbd\xc4\x33\x4b\xfa\x16\x8e\x12\x38\xfb\x95\x72\x8e\x4e\x69\x39\x7b\x4f\x09\x9c\x7d\xb5\xb3\xba\xc9\x72\x1b\xfc\xae\xde\x0d\x4a\x71\xad\xcf\xc2\x99\x48\x85\x72\x22\x09\x31\xf4\xab\x8a\x6a\xaf\xe2\xc3\xcb\xdf\x66\xe7\x03\xbf\x55\xb2\xeb\x77\x12\x25\xd1\x0c\x0c\x4d\xe1\x6b\x56\xd0\x05\x82\xe0\xc2\x1e\xf7\x6a\xd0\x0d\x1a\x51\xa4\xdb\x7d\xfb\xa4\xfe\x0e\xcf\x76\x64\xe3\xd5\xe0\x4a\x64\xad\xf5\xff\x18\x42\xf8\x4d\xab\xf2\x24\x5e\xd7\xfd\xc3\xcd\x9d\x61\x87\x14\xc4\xa7\xa0\x22\xa7\x7f\x0f\xe4\x2a\x30\x43\xba\x38\x03\x08\xd4\x5c\x12\x54\x04\xc2\x9d\x11\xb4\x18\x2f\x80\x2b\x78\x50\xaf\x8a\x3e\xec\xe5\xa7\xcf\x15\xdc\xdb\x85\x72\x64\x5a\x4d\x85\x58\x13\x93\xdc\xdb\x82\x93\xac\x7e\xab\xc6\xe1\x01\xe0\xf7\x6f\xaf\x57\xbf\x55\xda\x34\xdd\xd8\x9e\x6c\x88\x1b\xd7\xce\x0f\xa0\x81\x3d\x3e\x73\x8f\x01\xa5\xb9\x33\xf6\x60\x22\xfc\x7b\xfa\x16\xf8\xfd\x63\x38\xac\xaf\xb5\x61\x5d\x36\x1d\xdb\x8b\x56\xb7\xb0\x97\xa2\x4e\xba\x4a\x3c\x3d\xd7\x53\x23\x23\x40\x83\x1e\xdb\x11\x22\x2f\x04\x59\x13\x55\x76\xb9\x57\xab\xe4\x60\x50\x83\x1c\x56\x83\x2a\x67\x72\xdd\x0b\x36\xa2\x20\x6d\xa0\xa4\x86\x10\x2b\x3a\x59\x9a\x97\x9b\x70\xaa\x93\xc5\xed\xb0\x5d\x28\xfd\x66\x7e\xea\x75\xa2\xbc\x57\x72\xbf\x80\x20\xf2\xa0\x93\x05\x69\xec\xb1\xd0\xe8\x50\xc3\x2e\x98\xe8\xbc\x1c\x40\xad\x12\x95\x22\xc1\xf3\xb1\xc9\x35\xd5\x48\xe7\xd2\x1a\xb1\xaa\x94\xf1\x6a\x18\xd0\xd1\x23\xb3\x49\xb0\x8d\x88\xf7\xbd\x3d\x68\xd2\x6e\x84\x3d\x1c\xb4\x6e\x92\x62\x4b\x8a\x82\x40\x85\xa8\x14\x56\x71\x1a\xbd\x3d\x18\xd8\xa6\x3e\x87\x1f\xc1\xbe\x12\x75\x6e\xc2\x9a\x23\x66\xe4\x11\xe8\x14\xda\x68\x5f\x51\x9f\x34\x9e\x60\x3c\xd7\xf7\x8a\x2d\x2c\xd1\xb0\x84\x79\xab\xaa\x93\xce\x83\xd2\x4c\xbd\x22\x75\xc7\xde\xc3\x8a\x82\xfa\x20\x97\xca\xd1\x89\x06\x77\x0a\x26\x09\xdb\x6a\x64\xd7\xd9\x83\x6a\xcf\x85\x44\x99\x66\x50\xb4\x40\x65\x77\x90\x47\x87\x76\xc7\xc0\x64\xac\x09\x34\x01\x0e\x62\x8e\x62\x8b\xad\xca\x35\xe2\x55\x95\x0c\x3c\x6e\x57\xc3\xd6\x19\xe5\xb9\x03\x1a\x4e\x90\x43\xb0\x25\xf3\x3e\x13\x52\x78\xa7\xfd\x11\xd4\xf7\x91\x2c\xb9\x94\x9d\x21\x42\x37\x06\xde\x55\x16\xca\x9e\x83\xdc\x2b\x0e\x4a\x48\xe7\xc6\x3d\xd3\x5a\xa3\x9a\x81\x4d\xca\x4c\x6f\xe3\xba\x53\x4f\x48\x7f\xd2\x7e\x55\x81\x92\x9e\x0c\x4b\xb0\x33\x2b\xe3\xc3\x71\x1d\xa5\x93\x39\xc6\x79\xdd\x75\x40\xe9\xe0\xda\x53\xe8\x33\x98\x8b\xeb\x04\xc9\xe4\x76\xba\x17\x16\x0f\x4e\x72\x12\xa6\x69\x9b\x69\x0e\xde\x8a\x56\xa1\x7e\x66\x07\xe1\x07\x69\xdc\x46\xe1\x49\xd2\x5e\x6c\xf4\x00\xe3\x4c\x55\x83\x22\x42\xae\x3c\x27\x6a\x26\x55\x17\xab\xce\x37\x08\x1c\xbb\x6c\xa0\xca\xaa\xe9\x1c\x17\x8f\x2b\xb0\x0d\x48\xd5\x84\xc9\x85\x36\xc0\x34\x9b\x91\x00\x4f\x2e\x8b\x53\xf9\x45\x3a\x6c\x0a\xab\x0b\xd5\x8f\x33\xed\x33\xfd\xae\xc8\x55\xa6\x26\x71\xa7\x58\x15\xef\x30\x27\x08\x42\xd3\x85\x51\x7d\x80\x79\xff\xb1\x22\x91\xbb\x8e\xc7\x41\x57\x24\x82\x93\xfc\x8c\x89\xd5\x7f\x59\x6d\x6a\x3c\xdb\xf8\x37\xab\x0d\x1e\x84\x54\xc5\xf1\xff\xc4\x24\xc4\x4e\x4a\x47\xf4\x4b\x58\x77\xba\x09\x9e\x4a\xc7\x6a\x63\x71\x3d\xa1\xc5\xe8\x59\xf8\x5d\x39\x2f\x81\x4d\xf0\xe1\x35\xfc\x2a\x4c\x50\x54\x88\xec\x93\xcf\xc2\x6f\x4e\x8d\x49\xd5\x68\x62\xca\x7b\xfe\x59\x55\x20\x25\xaf\x90\xff\x82\x60\x8f\x67\x61\x19\xd7\x85\x4d\x15\xe6\x7f\xc8\x5b\x65\xf0\xbd\xf4\x5e\x0d\x86\xcc\xd9\xc4\x04\xf2\xa2\x9c\x1d\x51\xe0\xc2\x25\x30\xa0\x6d\xf0\xe0\xfa\x58\x25\x3f\xaf\xe0\xe2\xb5\x64\xc7\x8f\xe4\xa7\xd3\xad\x8a\x57\xb5\x63\x21\xfb\xdf\xd5\xd1\xb1\x05\x0b\x39\x06\xfe\x60\x63\x03\xba\x8a\x84\xd3\x73\x57\x1e\xa6\xa3\x41\x6e\x6e\x87\xe3\x39\x75\x21\x9e\xd2\x8f\x60\xb6\x18\x35\xf6\x51\xb7\x55\xd5\xe3\xc0\x65\x5e\x6a\x3c\x92\xb1\x13\xec\xa4\x98\x1b\x2e\x4a\x85\x5e\x3b\x41\x48\x50\x9a\x08\x07\x92\xb8\x77\x6e\xec\x80\x1c\x32\x9e\xae\xa8\x0e\x8f\xde\x4c\x76\xd8\xea\xce\xb1\x1c\x80\x1d\xd4\x3a\x9c\xc0\x25\xd7\x85\xbd\x6c\x95\xb8\xd7\x32\x5a\xb9\x32\x99\x26\x6e\xba\xc1\x34\x56\x28\x9d\xa8\xce\x90\xd9\x32\x88\x34\x61\x80\xbd\x0d\x2a\xa8\xdf\x29\x4d\x07\x60\x06\xc5\x9d\xcd\xd8\x75\x61\x4f\x7c\x36\x76\x1d\x39\xe2\xcc\xdd\x43\xa1\x0a\x3e\x08\xbc\xe6\x9f\xd5\xd8\xb7\xa0\x7c\x26\x5a\xbe\xc7\x84\x48\xcb\x32\x3f\x53\x2a\x91\xaa\xa1\x58\x34\x79\x11\x78\x9b\x69\x99\xdd\x71\x15\xd6\xf1\x82\xdb\x27\x2f\xe9\x76\x0a\x92\x0c\x44\xc8\xa3\xb8\xe3\x38\x50\xe4\x69\x81\xa4\x3d\xc8\xa3\xd8\xd9\x83\xe8\xb4\xb9\x73\x3c\x52\x40\xa7\x5c\xc1\x46\x43\x9e\xd7\x66\x54\xac\xf2\xc0\xcf\xb9\x93\x21\x9f\xcc\xf2\x39\xed\xfa\x18\xcc\x26\x74\x92\xcb\x53\x5f\xac\x8f\x02\xb5\xba\xd3\x47\xc2\xd3\xb3\xe0\x70\x14\x1c\x8e\x38\xf1\x24\x3a\x71\xb4\xf7\x4e\x89\x2b\x3a\x9d\xe6\xd5\xd5\xec\xac\x75\x6c\x6f\x4e\x7c\x0f\xd2\xd0\x70\xc4\x6c\x8f\x87\x25\xe1\xa1\x51\xbb\x0c\xa7\xe4\xb8\xc2\x79\x2d\xd5\x7c\x9e\x93\xa0\x79\x69\x5d\xf1\x39\xcf\x65\xc0\x49\xa7\xe0\xa1\x4f\xc8\x5d\x6a\xbd\x27\xc5\xf3\x7d\x38\x23\xc7\x01\x8f\x0a\x03\x66\xaf\xca\xf6\x4c\x67\x09\xd7\x1b\x0e\x6c\x3e\x33\x59\xc2\x54\xc8\x8f\x0d\x69\xf8\x23\x47\xb2\x5d\x21\xae\x85\x7e\xc4\x7c\x20\x5e\x96\xff\x1a\x0f\x78\xa3\x7d\x04\xd6\x58\x3d\x01\x61\x93\x42\x01\xb9\x28\x15\x87\xba\x4e\x4a\xc4\x93\xd6\xcf\x56\x4c\x28\x77\x90\xae\xe8\x38\xcf\xf1\x76\x15\x3c\x01\x85\xb1\x07\x3a\x2d\x46\x97\x2d\x72\x5b\x33\x78\xd4\x4c\x28\x32\xa6\xc2\x95\xfe\xb3\x2c\x25\x61\x26\x95\xc2\x45\x4d\xe2\x92\x18\xa7\x72\xc1\x29\x39\xe6\xb3\x5f\x72\xc1\x5f\x55\xf0\xf4\xc9\x39\x70\x3f\x68\x34\x71\x94\x9c\x78\xc6\x7b\x0b\x3e\x8b\x6c\xd6\xa2\xdf\x4a\x62\xaf\xab\x2a\xa0\x82\x7d\x0b\x7f\x85\x94\x68\x44\xbb\x55\xe8\xbc\xc9\xc9\x61\x21\x84\x5c\x9a\xff\xb1\x8d\x9d\x62\xae\x48\x7d\x7d\xca\x09\x93\xfc\xd0\x19\xca\x0e\x03\xb2\xd0\x9b\x01\xa4\x78\x15\x37\x0e\x6d\xc8\x6d\x28\x1e\x0a\x17\xdc\x49\x3c\x45\x76\x25\x0e\x92\xce\x0a\x02\xb3\xfa\xd3\xb4\xf6\x34\x8f\x7e\x2d\x4f\x19\xa8\x6f\xe5\x2a\xfa\xa6\x92\x6d\x8b\x73\x3c\x1d\xad\xb7\x38\x79\x4a\x8b\x22\x40\xe5\x10\x64\xb3\x8a\xa9\x75\x71\x06\xe2\xc8\x6c\xf4\xe5\xe7\x1e\x20\x7f\xfc\x37\x1c\x79\x14\x55\xa5\x23\x8f\xd8\xc8\xc9\x0a\x9b\xf5\x72\xbe\xd4\x64\xdb\xa2\x28\xc4\x73\x39\x13\x68\x78\x36\x47\xb9\x06\x6a\x21\x0d\x06\xc8\xf3\xef\xea\x88\xd2\x0f\xcf\x04\xdc\x9a\xb4\x13\x12\x1d\x07\xd1\xdb\x98\xd4\x19\x07\x7a\x0c\x08\x42\x30\x2e\xe8\xea\x5c\x8e\xf9\x25\xea\x6b\x4e\x31\x2c\x4a\x86\xd2\x1c\x41\xd2\x0f\x6b\x5d\xed\x81\x0e\xe4\xb8\x11\xdd\x4c\x67\x27\xa0\xe7\xac\x24\xed\xf4\x76\xd7\x1d\x85\xde\xf7\x76\xf0\x38\x93\xc2\xf9\x76\xd2\x61\xe1\x6b\x50\x8d\xdd\x1a\xfd\x3b\x12\x76\x4f\x7e\xa5\xd1\xd8\xfe\x93\xf3\x83\x35\xdb\x9f\x9f\x5a\x50\x2e\xef\x80\xfd\xec\xec\xe1\x4f\x3f\x7d\xcf\xe9\xe2\x0a\x87\xd0\x8e\x5e\x3c\xd7\xfe\xc5\xb8\x7e\xec\xc4\x76\xd4\x2d\x6e\xb9\x3f\xc9\xcc\x11\x9e\x3d\x55\xc8\xe9\xf7\x60\x22\x59\xd0\x2d\xde\x0e\xc2\xd9\xee\x5e\x4d\x8a\xd8\xfd\x9e\x86\x77\xdd\xa9\x3d\x41\x62\xfb\xd1\xb9\x45\x19\xa4\x9c\x1a\x98\x3e\xb7\xb7\x2f\x56\x71\x8a\xa7\xf1\xe1\x61\x0b\x12\x6a\x61\x11\x61\x19\x11\x80\x1b\x36\x81\xa6\x8d\x08\xcd\x21\xa1\x14\xca\x1f\xf3\x52\x38\x8e\x0e\x64\x96\x99\x2d\x06\xd5\x16\x40\x11\x8a\x8b\x0b\x68\x07\xc9\x61\x90\xd6\xcc\x8c\xae\x3c\xb1\xb2\xc9\x0b\x7b\x4f\x30\x5a\xa3\xe4\x1e\x9b\x87\xd3\x75\xb2\xbe\x99\xa3\x51\xdf\x99\x9f\x85\x0e\x64\x1c\x8d\x29\x92\x78\xda\x14\xa6\xe0\x6a\x8a\x78\x5a\x68\x45\xce\xcd\xc8\x8f\x8f\x38\x1a\x4d\x48\xe5\x90\x5f\x7f\x21\x37\x9b\xd5\x9b\x3a\x1e\xaa\xfb\x02\x8e\x86\x7d\xba\x44\x72\x58\x43\xf6\x13\x1e\xa8\x6b\xb6\x96\x60\x86\xb1\x75\xa6\xe7\xbd\xb6\x7c\x68\x28\x42\x22\x8e\x89\xf3\x20\xb1\xe4\x4b\x19\x1a\x81\x1e\xd2\xe4\xe1\x85\x06\x98\xff\x43\xb4\xf2\xe8\x2a\x6f\xef\x94\x59\x28\x82\xe9\xa7\x0a\x45\xfe\x12\x94\x23\xe6\x2e\x97\x89\x39\x4c\xd5\x25\xf6\x04\x38\xc9\x60\x32\xbe\xc2\x58\xa3\x97\x1d\x59\x8f\xf0\x6a\x89\x58\x6b\xd3\x12\x1f\x61\x36\xc0\xae\x64\x71\xfd\xaf\xaa\xd1\x00\x10\x2a\xa4\xf0\x83\xbf\xf3\x61\x29\xf0\x67\x8b\xc5\xac\xed\x68\x32\xf6\x49\xd3\xa1\x26\x52\xc4\x4e\xde\xa8\xc1\xa1\xf3\xef\x25\x21\x7c\x07\xd9\x8e\xef\x19\xb0\x43\x45\x28\xf2\x9c\x13\x71\x0d\x20\x20\x11\xdc\x45\x42\xe0\x57\x32\x7c\x04\x2c\xec\xc8\xc3\x7e\xbd\x38\x06\xde\x46\x86\xb9\x23\xc7\x1e\x71\x79\xf3\xd2\xad\xaa\x58\x61\x40\xfa\xab\x6c\x76\x3c\x80\x07\xb2\x7a\xa0\xfb\x4f\xd7\x4d\x39\x6e\xd4\x24\xa8\x38\x2f\x70\x6c\x13\x2d\xf1\xd8\xa9\x59\x87\xa8\x33\x65\x3e\xd1\x58\xb9\xcc\x12\x44\xb5\x61\x4b\xa6\x7b\x55\xec\xea\x37\xe2\x55\xb2\x47\xc2\xd2\xea\x8f\xc0\xfd\x33\xef\x3f\x49\x14\x3a\x20\xff\x9e\xb8\x1d\x6a\x4f\x07\xe2\x02\x96\xf0\x10\xf9\x47\x68\x30\x73\x90\x7c\x28\x73\x36\xb2\x38\x98\x89\xa9\x2c\x16\x5b\xe2\x2c\x7d\xc0\x53\xf6\xf9\x73\x7c\x06\x26\x7e\x32\x1c\x3c\xc0\x65\xf2\x5e\x65\x53\xf9\x66\xb1\xda\x38\xa3\xa9\xea\x09\xbf\x11\xb4\x0d\x92\x53\x09\x7a\xe2\x92\x8a\x45\x33\x22\xbb\x13\x20\x9d\x38\xa8\xae\x5b\x55\x68\xcf\x58\x19\xd8\xc5\xc9\x7f\x33\x8a\xdb\x6c\x90\xc3\x7e\x98\x63\x61\x71\x73\x2b\x2a\x86\x76\xbc\xe8\x81\x79\xad\xd8\x27\x21\x07\xcd\x01\x33\x2f\x51\xba\xb9\x60\x5d\x7e\x1f\x85\xa8\x98\x59\xc1\xd0\xa3\x4d\xc9\xbd\x13\x72\x03\xdb\x28\x90\xaf\x53\x1b\xb6\x96\xe7\x66\xe0\xd3\xc4\x0d\xd4\x4d\x07\xdb\x3c\xb4\x85\x7b\x09\x03\x65\xfa\xbb\x4a\xb2\x3b\x35\x36\x37\x55\x06\x64\xbd\x1a\xf6\xd2\xa0\x67\x07\x19\x57\x82\x34\x72\x75\xf9\xfa\xf5\x9b\x77\x49\x08\x81\x75\x6e\x5a\x6b\xd4\x37\xd1\xc1\x74\xd6\xae\xe0\x66\x1a\x27\x68\x09\x91\x1c\x5d\xb9\xc4\x29\xb8\x9c\x0d\x67\x9e\x2f\x5b\x8b\xbc\xd5\x42\x5b\xc2\x5e\x55\xb4\xbf\x3d\x49\xc2\x0f\x30\x2a\x1f\xab\x60\xf0\x7f\x03\xff\xab\xfc\xcc\x24\x3b\x6b\x42\xd6\x92\x8e\xa4\xd2\x65\x27\xb1\xb5\xb6\x9d\x9d\xa1\xe0\x26\x34\x4a\x54\x25\xed\xbe\xb7\xb8\x17\x6e\x04\xfa\x44\x9c\xc3\x0c\xb4\x03\x32\x04\x20\xee\x68\xf4\x5f\x47\x14\x3f\xd1\x95\x61\x55\xdd\x6b\xa7\xd7\xba\xa3\x0d\xf3\xcf\xf1\x83\xd2\xe1\xd7\xe4\xba\x4b\x56\xb9\x76\xe2\x27\xd7\x4b\x23\x9a\x4e\x3a\x77\xf1\x68\xd4\x62\x00\x3e\xac\x3e\xf9\x47\x3f\xdf\x0c\xe8\xdc\xf0\xd3\xf7\x00\xf1\xf3\x0c\x5d\xbd\xb1\x43\x43\xc6\xd5\xe8\x29\x84\xeb\x92\xd3\x61\x1e\x83\x3c\x5f\xcc\x65\x22\xfc\x3f\x50\xe7\xc6\x0e\x77\xa9\x1f\xdf\xb2\x55\xc1\x6e\x88\x37\xdd\xcb\x6e\x2c\x4d\x4c\x50\x3b\x94\x71\xdf\x55\x78\x97\x27\x95\x45\xcf\x31\xbc\xd7\x0d\x19\xda\x6c\xff\x84\x44\xf3\x0f\xdf\x0f\x7d\xa1\xba\x1e\x04\xdb\x6f\x2a\x6c\x09\x1b\xe1\xa7\x17\x82\x31\x2f\x5c\x74\x81\x3c\xbc\xed\x82\xa9\x0b\xa3\x91\x5d\x1b\x94\x9d\x27\x03\xbc\xc8\x46\x13\x58\x0e\x76\x22\x37\x5c\x1f\xf9\xa8\x33\x72\x68\xd7\x0c\x1a\x2f\xeb\x50\x7a\x27\xd1\x9e\x1d\x6f\x84\x63\xe2\x56\x7b\xbd\x35\x76\xc8\xc8\x70\xab\x3a\xa0\xd3\x2a\x66\x89\x70\xc7\xdc\x55\x9d\x6e\x94\x71\xc8\xcc\xe8\x57\x48\x99\x15\x07\xe9\x86\x60\xd1\xe2\x08\x22\x35\x2f\x05\xf8\xc1\xdf\x0b\xa5\x18\x30\x54\x59\xc9\xd1\xdb\x5a\x1b\xed\xd1\x5d\x54\x7b\x2d\x3b\xd2\x74\xca\xf9\x4a\x72\x3c\x22\x61\x6b\x56\x60\x8f\x8c\x87\x3d\x3e\x79\x78\xd8\xd5\x33\x1b\x20\xbe\x18\xc2\xc7\x1a\x48\x3f\x4c\x10\xe4\xe7\xc1\xd7\xc9\xeb\x7e\x18\x0d\x99\xd6\x47\xa3\x8a\xc4\x40\xf7\x4c\x60\xa3\x8b\x8b\x4f\xfc\x20\x9b\x3b\x60\x2e\x83\xda\xa8\x41\x99\x06\x1d\xda\x24\xec\xef\xa2\xb3\x66\xab\x06\xd2\x35\x82\xb7\x18\x15\x0b\xc8\x35\x68\x48\xf7\x24\x69\xd2\x45\xf4\x97\x21\xe5\x5b\x50\xad\xbf\x0b\x80\x41\x31\x8e\x70\x6c\xde\x99\xe4\x87\x76\xf2\x71\x28\xfb\x03\x08\xa3\x60\x9b\x91\x03\xdd\x95\x11\xcd\xa0\x5a\x65\x80\xda\x4e\xb0\x3e\x1f\xdc\x0c\x02\x3e\x14\xd4\xdd\xd1\x34\x49\x54\xbf\xc5\xaf\xea\x20\x7d\xb3\xa3\x23\x97\xbf\xf0\x4f\x3c\x71\xd9\xca\xdf\x29\xf5\x36\x7e\xe0\x12\x70\xbc\x28\x1c\x1f\x9f\x0c\x4a\x36\x3b\xf6\x29\xb4\x9b\x9a\x2e\xc7\xa2\xc8\xf2\x2e\x1e\x03\x03\x3f\x41\x38\xd5\x8a\xbd\xfc\xa4\xf7\xe3\x5e\x44\x40\x2c\x0a\xab\xe4\xac\x3c\xd8\x59\x2d\x1f\xcf\x4c\x5d\x01\xbe\xfe\x94\x66\x8a\xe1\xe1\xc3\x1a\xa3\x54\x5b\xcb\x11\xdd\xcd\x91\xe9\x14\xbe\x47\x15\xc7\x22\x08\x97\xb9\x63\x30\x02\xba\xcd\x9d\xe7\x9e\xe6\xdf\xc1\x02\x27\x4b\x96\x8a\x7e\xe6\xeb\x6e\x54\x8f\x7e\xa6\x51\x0c\xfc\x34\x60\xe5\xf5\xf1\x8a\xc3\x21\x64\x0b\x84\x21\x56\xc4\x34\xd3\x64\xbb\xc2\x0b\x91\x69\xae\x2d\x40\x15\x5b\x2e\x8b\xf5\x32\xbb\x54\xf9\xfd\xf3\x97\xef\xd0\x3d\xe5\x81\xe2\x35\x99\x41\xc8\xb5\x8f\x58\xe4\xe3\x41\xd1\xdd\xc5\xcc\xf2\x19\xe2\x38\xc8\x9c\x18\xeb\x23\xdd\x47\x0b\xf7\x52\x7b\xe9\x77\xa9\x2e\xd8\xe4\xb5\x73\x24\xdc\x1a\x8d\xe3\x59\x08\x7a\x09\x3b\xb5\x81\x91\x95\x13\x2b\x60\x4b\xd7\x0a\x1a\xd9\x85\x3b\x05\x2f\x29\x91\x0b\x42\x22\xda\x78\xca\x13\xd2\xe0\x3d\x29\xf3\x6b\xcc\x01\x6d\x3c\x0c\x4f\xb3\x21\x3f\x07\xe7\x25\xc9\x1b\x0c\x07\xac\xb0\x9b\x8a\xf6\x88\x90\xce\x3b\x06\x7c\x55\xa0\x69\xd4\x9d\x36\x77\x28\x59\xf5\xc7\x94\x90\x89\xd8\x57\xb6\xd7\xaa\xfd\x26\xcb\x0b\x6e\x40\x37\x38\xfa\xff\xdf\xff\xf3\xff\x3e\xb9\x82\x76\x5f\xf9\xa1\x7b\x72\x15\x34\x18\x80\x27\x3a\x12\x02\xf1\xe6\xdf\xab\xd1\x1c\xd8\xe7\xe7\x3d\xfd\xaa\xc2\x37\xb2\x88\x6a\x34\x8e\x0f\x3d\xf0\x47\xc5\x5f\xc0\x29\x2a\x0e\xb4\x01\x2c\xa2\xaa\x4c\xdc\xe1\x5e\xdb\x62\x93\xfb\xeb\xa8\x9b\xbb\x9a\x6c\x57\x17\xe2\x3f\xe0\x4b\x60\xf0\x06\xde\xe7\x61\xcb\x88\xfc\x1f\x27\xed\x64\x13\xc9\x6f\x05\xe0\xe6\xc8\x97\x8d\xd2\x7e\x21\x4b\xb9\xe5\x18\x38\x76\x00\xec\xb4\x51\x55\x3f\xba\x1d\x1d\x89\x87\xda\x6e\x46\xb7\xc3\xab\xa9\x9f\xe8\xea\x73\x8e\x01\x87\x66\x86\x63\x2d\x07\x55\xef\xa3\x7f\xe0\x74\x75\xc7\x89\xc3\x5e\xce\xc9\xfa\x75\x54\x7e\x55\x55\xb4\xff\x91\x83\xa0\xab\xe2\x96\xc6\x5b\x99\x1f\x14\x22\x1d\x94\x02\x48\xaf\x86\x70\x98\x2f\x4d\x5b\x7b\xb9\xa5\x92\x20\x77\x70\x51\x3b\x08\x2f\xb7\x8c\x08\x31\xff\xc2\x3f\x2b\x2f\xf1\xb8\xf7\x9d\xdc\xce\xa3\x7e\xf4\x63\xd7\xcd\x63\x83\x74\x72\xad\x30\xf9\x1a\x7f\x54\x7b\x68\xa4\xb7\x46\xd1\xd6\x15\x3e\xaa\x06\xdd\x1e\x5d\x74\x80\x74\xd5\x56\x87\xfd\xb9\x6c\x03\xdf\xf5\x22\xb7\x00\xfa\x89\x24\xa8\x07\x79\x80\x34\x79\xa0\xcf\x9d\x76\x1c\x43\xe6\x05\xfd\xa2\x64\xbc\xb1\x42\xa0\x78\x61\x25\xc2\xa3\xf8\xcf\x6b\xe4\x26\xfc\xa6\x2c\x6f\x41\xa0\x1a\xd2\xe8\x84\x03\x34\x6f\xad\xa0\x0c\x92\x68\xdd\xce\x1e\x4c\x75\xaf\x5b\x65\x71\xcf\xe0\xeb\x67\x14\x45\x67\x3d\xd8\x83\x0b\x12\x1f\x50\x9b\x3e\x61\x78\x41\x4d\x0d\x57\xd5\x5e\xbc\x7b\x75\xfd\xaf\x02\x71\xc0\x38\xac\xaa\x38\x12\x2b\x7b\xaf\x06\xbe\x0c\xf9\x86\x7f\xa6\x4c\xbe\x40\x90\x91\x0c\xdd\x22\x54\xa2\x5c\x04\x75\x5e\x76\x05\xe4\x2d\x24\x2c\x00\x52\xa4\x96\xcb\xae\x5b\xc8\xe3\xa3\xbf\x7a\x7d\x8c\x87\x97\xad\x38\xfb\xf0\xc3\x47\x07\x2c\xf8\xec\xc3\x1f\x3e\x66\xc0\xe1\x74\x6b\x2a\x77\xb1\x00\x3f\x11\xbf\x2a\xd5\xc2\xd4\x5f\x61\xdc\x1d\x3a\xd3\x7e\xad\x0e\x24\x5b\x72\x16\x9d\x74\xd6\xf1\xc4\x1b\x3d\x7f\x73\x00\xf8\x17\xb2\x7f\x6d\xb5\x2f\x32\xfb\x41\xe1\x3c\xa0\x66\x39\x62\x71\x48\x59\x6a\x90\x0b\x80\x24\x97\xd7\x88\xcc\x58\x53\xc3\x96\x5a\x87\x05\x77\x45\x42\x3b\x64\x0a\x63\xcd\x13\xdc\x6f\x31\xb3\x68\x04\xb2\xa2\xbc\x25\x3e\x4c\xa1\x00\xb6\x1f\x9d\xaf\xd7\xaa\xb6\xa6\x96\x89\x36\xff\x19\x7c\x74\xd6\xe8\xc4\x2d\xc3\xfa\x84\x8d\x4f\xde\x91\x53\xdf\x60\x41\x4b\x14\xa1\x1f\x21\x34\x46\x8e\x1c\xd5\x0e\x0a\x5f\x83\xfd\xc8\x31\x23\xaf\x9d\x4a\xd7\x1c\xea\x06\x60\x83\x23\x5b\x8e\x2f\x18\x68\xb2\x5e\xe5\xf6\xa1\x59\xbf\x80\x6b\xd5\x18\xe9\x80\xcd\x8c\x79\x03\x90\xa5\x51\x18\x84\x64\xfa\xf8\xaa\xde\x91\x97\x08\x36\x29\x6d\x65\xe8\x2b\x5d\x5a\xe0\x97\x2d\xd2\x61\xa2\x81\xb0\x87\x57\x6f\xc2\x74\x63\xbf\xc3\x01\x2b\x5b\xad\x56\x79\x7d\x51\x97\x47\x13\x22\x88\xca\x69\x13\x3f\xa7\xd0\x04\x28\xcd\x69\x8f\x5a\x49\x8f\xbb\xe7\xf7\x2b\x80\x0d\x26\xb2\xbc\xc0\xd6\x52\xcf\x94\x58\xab\xad\xa6\x20\x46\xa8\xd1\x2a\xbe\x91\x99\x90\xac\x65\x73\xe7\x7a\x89\xb1\x6c\xa8\x3d\xb8\x3f\xdb\x21\x9b\xaf\x8d\xea\x6a\x74\x7c\x12\x17\x82\x3e\x63\x26\x72\xd6\x6c\xd2\xb3\xaf\xf9\x64\xce\xcb\xb6\xad\xfd\xbe\x0f\x07\x8a\x8f\xcf\xdc\xf7\x3f\x85\x6e\xff\xfc\x38\x83\x4a\x00\x8f\xd3\xb2\x6c\x29\xb0\x16\x7b\x33\xe4\x79\x53\xb7\xa0\x3c\x8f\x9b\xc6\x9b\x60\x0c\xe7\xd6\xe2\x05\xa2\x10\x95\x42\xa8\x4f\x5e\x99\x56\xb5\xa2\x4d\x92\x40\x36\x36\x8c\x84\x48\xdb\x1d\x6b\x6f\x69\x96\x26\x6e\x43\xfd\x0d\x00\x81\xec\x6c\xa7\x0a\x62\x33\x81\x3f\x81\xee\x3e\xc2\x3b\x43\xd1\x6e\x85\x19\xa9\xba\x24\x40\xa4\x1a\x82\xe8\x10\x6c\x5f\x26\xde\x15\x48\x78\x36\x18\xa6\x02\x5d\x4e\xb1\x3d\x18\x5b\x84\x82\x15\x09\xd8\x45\xc3\xf5\xa9\x55\xce\x07\x83\x07\x1e\xfa\x1d\xb1\x48\x54\xde\x43\xc8\x29\x31\xf1\x8d\x99\x4e\x5e\x66\x6b\x6b\x45\xc1\x86\x78\xc5\xa0\x32\x33\x8b\x2b\xc4\x65\x83\xd0\x40\xe7\x65\x24\xf2\xa4\x7d\x99\x16\x5b\x71\x98\xe6\x62\x60\xac\xdc\x68\x11\xe6\x42\x98\xfe\xb5\x76\xb5\x8c\xdc\xd1\xf8\x81\x4f\xce\x58\x0d\xed\x25\xbb\x6a\xd0\xed\x5c\x49\x3b\xef\x44\x70\x7e\xa8\x22\xe4\x0f\x58\x87\x3b\xee\x79\x77\x8f\x11\xa6\x82\xc2\x26\x45\xc8\x0c\x67\x11\x4c\x02\xbc\x17\xa3\x59\x8a\x26\x7f\x25\xb5\x16\x8c\x7a\x46\x55\xac\x26\xb5\x2a\x55\x54\xe8\x99\xb9\x68\xf8\xe5\x5d\x60\x6e\x5c\x1b\x5b\x93\x15\x21\x8d\x40\xd9\x9d\x23\x2b\x33\x81\x7d\x4f\xcc\x0e\x51\xc1\x3f\x55\x11\xfb\xb0\xd4\x87\x5d\x56\x6d\x60\xa9\xb3\x63\x57\x86\x16\x4e\x9b\x46\xa5\xa8\x5b\xaa\x0d\xf5\xaf\x1e\xb6\xa7\xa5\xdb\x61\x78\x5c\xcc\x27\x1d\x07\x18\x05\xdc\x1a\x8a\x4a\xec\x10\x97\x15\xb1\xc3\xb0\x7e\xb6\x52\x9b\xb4\xbc\xbc\x45\xbf\x5f\xda\x55\xfc\x2e\xdb\x41\xca\x9e\xce\xa6\xf2\x25\x91\x11\xad\x4b\x69\xc8\xbe\x7c\x52\x1b\x1b\x78\x2b\xb0\x1e\x90\x05\x69\x74\x40\x73\x45\xf5\x32\xdf\xc9\x20\x3b\xb5\x07\x63\xea\xd8\x9a\x7d\xb0\x78\x39\x3c\x23\x35\x30\x1e\x5c\x7c\xcf\x87\xf2\x69\xb0\xb1\xa9\x74\x39\x03\x34\xc3\x8c\x81\xbb\x71\xdd\xea\x81\x79\x28\x7d\xb0\x96\x99\xb8\x04\x7b\x7a\x63\xbd\x51\x9a\x72\x93\x8a\xa3\x60\xe5\x82\x3f\xc8\x89\x5a\x73\x1c\x80\x93\xaa\x7f\xbf\x80\xa0\x0a\xd2\x7e\xe0\xd8\x49\x54\x67\x0e\x1d\x24\xf6\x12\x2e\xd7\x0e\x42\xce\xe4\xce\x37\x4f\x89\x94\xbf\xa1\x13\xd2\x67\xda\xb4\x31\x4d\xa2\x01\x26\xde\x02\x8b\xe9\x49\x05\xe3\xcb\x5a\x31\x87\x37\xb5\xa7\x68\x5b\xe4\xb4\x70\xd5\xff\x0d\xfc\x8f\xa9\x46\x1d\xd8\xbc\x7c\x50\x43\xbc\x0a\x4f\x81\x38\x81\x5f\xa3\xb2\x94\x25\xaf\xa6\x0a\x52\x96\x05\x6b\x1d\x12\x49\xfb\xc5\xfc\x3c\xbb\xe9\x94\x1c\xea\x58\xfe\x0a\x3e\x45\x37\xc3\x12\x35\xae\x5c\xe1\x9a\x54\x93\xc3\xbc\xb6\xcb\x60\x54\x5d\x0e\x49\x35\xee\x97\x80\x6d\xaf\x4c\x01\xfb\xa6\x57\x26\xd7\xf7\x0a\xc4\xd6\xa9\x76\x82\x19\xcf\x3e\x96\xe1\xa5\xc3\x10\x2e\x78\xfa\xc3\x3f\xe7\xed\xcc\x80\xa8\x99\x72\x01\xd4\xd8\x1c\xee\xb5\x9d\x01\xf1\x82\x8b\xfb\xfa\x74\xf4\xd2\xf8\xa8\xc3\x6c\x80\x28\xb3\xee\x3b\xd9\xa8\x18\x18\x02\x81\xe2\x76\x5d\x54\x13\x91\x71\x65\x05\x3e\xc2\x15\x6d\xf3\xab\x78\xcc\x08\xab\x4b\x82\x78\xd8\xaa\x0d\x7a\xcf\x3b\x85\xc6\xd0\x72\x22\x4c\x8b\x6b\xb3\xb1\x39\x73\xc2\xbb\x28\xe6\xc8\xa5\xd0\xb0\x10\x9d\x18\x8b\xcb\xcd\x8f\x62\x4f\x1f\x85\x8b\xce\x72\x6d\x8b\xe8\x36\x74\xdb\x81\x22\x33\x4e\x1b\xc6\x97\xa2\x4f\xb4\x6a\xe1\x58\x01\x49\xe2\x94\x3f\x55\x64\x74\xec\x8b\x4c\x5c\xf9\xb3\xf0\x81\xd3\xe6\xda\x63\x62\x77\xc8\xab\x08\x47\x0c\xb5\x1b\xb9\x2d\xc5\x26\x21\xb4\x38\xbf\xbd\x5c\x8b\x0b\x71\xd6\xe2\xe4\x8e\x63\x09\x53\x37\x65\xd1\x4c\x0e\x99\x6c\x80\x09\x03\x5d\x8c\x70\x9e\x07\xdb\x3c\x9d\x6f\xd0\xbc\x8c\x67\x1d\xdd\x42\x89\x07\x17\xf8\x14\xe6\x24\xe6\xd9\x32\xe6\x92\x0f\xac\xb6\x04\xb1\xd5\x46\x9d\x46\x7d\xa2\x1c\x5b\xbc\xd1\xce\x3d\xcf\x59\xc9\xae\xab\xa3\x8d\xe9\xb2\xeb\x04\x7d\x2c\x82\x3a\x8e\x55\xec\x2d\x68\x71\xa9\xa9\x2d\x3b\x80\x2c\x15\xa2\xd9\xda\xd6\xeb\x23\x97\xa1\x65\x87\x11\xc4\x4e\x14\xd9\x2b\x03\x2a\x07\xc8\x61\x54\xe4\x55\x4c\x58\x28\xe2\x38\xda\xa3\x1d\xfc\x42\xce\x0a\xe7\xa3\xe7\xad\xc2\x2d\x82\x00\xd3\x40\x90\x37\xf8\x63\x09\x84\xdc\xa2\xa2\xda\xf5\x96\x43\x2b\x04\xc7\xec\xc5\x8a\x95\x74\xa9\xc4\x35\xde\x50\x1a\xbe\xa0\xdc\xde\x3a\x0f\xdb\x1c\x79\xc1\xbd\xb2\x78\x91\x14\x3f\x1f\xa8\x27\x15\xa0\x8a\x66\x25\x60\x25\x05\x2b\x12\xfd\x4e\x46\xa4\xe4\x5e\xf8\xe1\x0f\x1f\xdd\xa3\x9f\xcf\x3e\xfc\xf1\x23\xfa\x15\xce\x0a\xd7\x1b\x79\xa7\x16\x30\x90\x19\x8a\xa1\xd1\xea\x63\xc7\x68\xee\xb1\x63\xb6\xaf\x7c\xa2\xa1\xf8\xe4\xcb\x25\x1e\xe3\x20\x4e\x56\x78\x1b\xb3\xca\x15\x6e\xc6\x7d\xcd\x7d\x74\xc4\x01\xc2\x57\x2c\x1e\x28\x50\x4b\xa8\xf2\xb7\xf8\x9d\xba\xfb\x2f\x20\x1a\x9f\x61\x4f\x7f\x0b\xc5\xc2\x45\x00\x82\xce\x22\x0f\x5e\xb2\x63\x68\xf4\x10\x0d\x3e\x0b\x6d\x66\x95\xe1\x62\x7f\x8a\xcd\xb4\x99\x43\x23\xed\x02\x78\x70\x55\x9a\x96\x0b\x96\x86\x1f\xa1\xbf\x65\x56\x68\x54\x04\xe1\x41\xc7\x7b\xbe\x39\xf8\xa0\x90\xaa\x01\xee\x2d\x7e\x4e\x32\x1f\x42\x36\x14\x05\x78\xdb\x4c\x53\x8c\x41\x27\x03\xc5\x64\x26\x91\xe2\x27\x29\x74\x0b\x13\xea\x87\x8f\xee\x51\x24\x37\x7e\xfd\x8c\x93\xa5\x20\x3a\xd5\x17\x71\x84\xcf\xaf\xc4\xc2\x52\xee\xa0\x36\x11\x0f\x1f\x0d\xb7\x34\x3a\xd4\x55\xbe\x23\xca\x4a\xcd\xd7\x55\xd1\x5b\x0e\x2d\x7f\x83\x3f\x52\xcd\x21\xd8\x13\xca\xbb\x57\xd9\x67\x9c\xe6\x85\x1f\x0b\x27\x86\xe8\x79\x21\xac\x00\x1b\x1c\x0a\x77\x5f\x0e\x7f\x14\xf4\xb6\xff\xb2\x41\x33\x6a\xac\xb9\x57\x83\xe3\x2b\xa9\x8c\x91\x2d\x8f\xbf\xb6\x3a\x0d\xcf\xc4\x48\x11\xea\x06\xbd\xef\x42\xdc\xca\x7b\x35\xd9\xc4\x83\xc8\x13\x45\xa8\x32\xbf\xb1\x9d\x4d\x22\x16\x7e\x4d\x01\xc8\xb7\xe8\xac\x5d\x94\x8e\xd2\xd4\xe4\x95\x8b\xa1\x1a\xcb\x5d\x87\x20\x17\x3a\x43\x19\x13\x13\x57\x99\x19\x83\x6c\x50\x03\x31\xd4\x46\x08\xfd\x39\xc7\xc2\x97\xbc\x10\x34\x3a\x37\x2d\x82\x2d\xdf\x6a\x20\x19\x23\xf7\xcb\xd3\xa8\xbd\xa6\x9b\x0c\xda\x14\xae\x7a\x8c\xfb\xb4\xf3\xd8\x72\xe5\xc9\xe8\x4a\x6d\xfd\x8c\xc1\x35\x63\x93\xbd\x1c\xbc\x6e\x74\x2f\x23\xab\xbc\xc9\x52\x02\xa4\xf4\x5e\x36\x3b\x58\xd6\xb9\xd0\xf5\x1b\x19\x0e\xd8\x5e\x00\xf3\x11\xbb\x83\x27\x76\x5e\xae\x7f\x5b\x28\x1d\x43\xfe\xe5\xa5\x63\x22\xa0\xf8\xad\xa2\x43\xac\x4c\x5d\xcb\x0f\xb3\x38\xb3\xb1\xfb\x5e\x0e\xaa\x34\xa3\x42\x4a\xb4\xa3\x2e\xc2\x85\x51\x0a\xc0\xfe\x60\x45\x3c\x81\xc1\x37\x17\x60\x07\x2b\x0d\x80\x68\x29\x8c\xb6\x8b\x12\x2d\x46\x18\xbc\xc0\x8b\x8b\xd3\x0a\xb9\x86\x0b\xc1\xbf\x38\xbf\x38\xfd\x9b\x9e\xfa\x85\x9e\xdb\x7a\x50\x6e\xec\x70\x44\xd0\xeb\x9a\x3e\x36\xe4\x2f\x1c\x80\x30\xf0\x3d\x48\x5b\xa9\xae\x6c\x13\xa1\xb0\xf8\x7c\x07\x04\x72\xd7\xaa\x91\x20\xa8\x63\x9b\xa1\xaf\x3b\x25\xdb\xac\xf7\x83\xc2\xe8\xb3\x01\xff\x4e\xba\x3a\x7f\x71\x00\x46\x2c\xa2\x0f\xe6\x98\x09\xa5\xd6\xca\x1f\x30\x9c\x02\x5e\xca\x00\xe2\x92\xd1\xc9\xfd\x98\x4b\x11\x3f\x7c\x74\xdf\x63\x1d\xdf\x83\x28\xd1\x32\x27\xfd\x17\xfc\x20\x7e\xca\xa4\x9c\xe8\x7d\x0b\xd3\x00\xb9\x51\x18\xd4\x03\xce\x61\x6f\xc5\x5e\x0d\x5b\x85\xe2\x47\x1b\x4c\x11\xc4\xd7\x7f\x6a\x6c\xab\x02\xe3\xc6\xdf\x42\x1b\x6f\x63\xfa\x1f\x63\x3a\xe3\x47\x4c\x2c\x65\x84\x6a\x28\xed\x9f\x43\x2f\xce\x3e\xfc\x8f\x8f\x61\x8e\x7a\xb9\xae\x73\x76\x4d\x8e\x97\xf1\xb3\x80\x9a\x5a\x60\x52\x5e\x71\x00\x1d\xac\x75\x9c\xcf\x9b\xba\xb7\x35\x91\x26\xba\x22\x51\x06\xfb\x14\xe7\x23\xe9\xad\xe8\xd5\x00\x6c\x8a\xa9\x19\x5d\x4f\x57\x05\x69\x50\xfc\x1e\x52\x4d\x30\x6b\x62\xce\xbb\x19\xda\xc8\x97\x18\xa6\x64\x4b\x84\xa2\x95\x5e\xd6\xeb\x21\x38\x54\x4b\x2f\xa3\x6b\xe1\x32\x2e\x86\x6d\xc7\x14\x43\x00\xa8\x68\x37\x74\xb2\x96\x71\xdb\xd0\x76\xed\x6a\xbc\x46\x45\x46\xd5\x77\x7c\x37\xaa\xd3\x8d\x17\x31\x5d\x3b\xbe\xc4\x4f\xd1\x98\xb7\x14\xdb\x3a\xbe\x61\xb1\x19\x94\xdb\x61\xe4\x59\x00\xd8\xa8\x83\xd8\x5b\x94\x30\x23\x8b\x90\xa6\x46\x4f\x3a\xec\x6a\xe1\x8f\x53\x74\x83\x9d\x73\x98\x20\x93\x78\xb2\x11\x15\xfa\x3e\x7d\x19\x36\xf2\x59\x5f\xc2\x17\x59\x80\x8f\xe6\xd0\xd0\x6f\x77\xba\xae\xe9\x23\x14\x34\x1f\xf6\xd2\x90\x8f\xac\x36\xc2\x0e\xad\x1a\x38\xb0\x18\xde\x48\xf2\xbb\x05\xcc\x84\x6d\xc2\x52\x70\xf2\x2c\xad\x6c\x9c\xb0\xa3\xe1\x05\x88\xa5\xa2\x89\xf8\x37\x36\x8a\x3c\xf6\x71\x92\xf2\x44\x4e\x0e\xd2\x65\x57\x73\x96\x65\x48\xa4\x28\xc8\xf6\xed\xbf\x9c\xb5\xdf\x71\x68\x7c\xb9\x57\x73\x37\x47\x48\xa4\x8e\xe7\x9b\x37\x70\x51\xed\x30\x72\x1e\x4c\x19\xd8\x28\x00\x48\x9b\xed\x2a\x30\x31\xd6\x18\x32\x1f\x47\x14\x4e\x7e\xc9\xf9\x7d\x01\x83\xf1\x2d\x8c\x3a\x64\x8b\x9d\x4f\x77\xd2\x89\x48\xd8\xd5\x43\x27\x35\xad\x06\xba\x4f\x48\xa5\xc8\x3d\x1d\x9b\x6c\x1a\xb5\xaa\x32\x9f\x8f\x6c\x67\x4d\x96\x8a\x2c\x7b\xc1\xac\x92\xe5\x2e\x9b\x56\xa6\x00\x6d\xb2\x1f\x9e\xb9\xa2\x6e\x5b\xb7\xa3\xaa\x59\xef\x7d\x6d\x71\xd9\xc2\xd7\xb4\x05\x41\xdf\x9b\x62\x8e\xca\x4f\xd9\xa1\xda\x8d\x6b\xd8\xd0\x28\xdc\x1d\x6d\x18\x99\x9b\x8b\xb7\xc1\x3b\x9f\x4f\x94\x59\x34\x29\xd0\x4f\xf6\x9b\x45\xe2\x04\xf9\x17\xc3\xa3\xe5\x19\x0b\x3e\xc0\x79\x6e\xea\xf3\xd3\x51\xa1\x0d\x5b\x7c\x1b\x8e\x54\xbf\x2b\x3b\xa9\xe8\xae\x3a\xfc\xcf\x33\x62\x98\x63\x46\x55\xd3\x3c\x64\x8c\x88\x9c\x53\x52\x04\xdd\xf3\xe8\xbb\xf0\xf8\x78\x3c\x1e\x9f\xec\xf7\x4f\xda\xf6\xf1\x42\xaf\x33\x09\x32\x76\x7b\x72\x76\xcf\xa6\x9a\x09\xcf\xce\x30\x65\x02\xf9\x32\xed\xd0\x11\x23\x1f\xa7\xf7\x68\x9d\x5c\x2b\x0f\x73\x35\x3b\x4e\xa6\x95\x94\x46\xcf\xc1\x6e\x64\xfb\x4e\xa5\x3b\x39\xc0\x5e\xe8\xba\x61\xde\x97\x89\x32\x93\x65\x4d\x82\xeb\x3d\xd8\xc0\xe8\x8b\xc7\xc2\xa5\xdd\xa4\xc6\x4c\x88\x42\x8f\xa1\x9c\x24\x49\xa6\x44\x24\xb2\x46\x45\x62\x01\x70\x59\x8d\x48\xb5\xff\x77\xaa\x12\x4b\xd5\x2f\x4d\x83\xcf\x28\x13\xd5\x41\xdf\x69\x71\x21\xfe\xa2\xef\x34\xfe\x5e\x71\x38\xc4\x2c\xfc\xa1\xb7\x98\xfd\x4d\x91\x1f\xfa\x0a\x39\xe8\xc7\xb5\x53\x02\xed\xf4\x82\xde\xf7\xa0\x3b\x58\x63\xd7\x8a\x4e\xdf\xd1\xde\x6e\x9b\x11\xad\x0c\x47\x0e\x9a\xf1\x5f\x18\xc1\xc2\x6e\x15\x5e\x6d\x8f\x02\xbc\xf6\x3c\xa9\x56\x54\x21\xcf\x71\x0c\xa7\x53\xf3\x53\x6e\xbc\xc8\xc9\xc1\x63\x70\x1e\xf7\x72\x02\xcf\x1f\x7b\xc3\x04\x16\xda\x39\x9d\x45\xf6\x04\x4f\x31\x10\x72\xac\xaf\x39\x14\x3e\xe5\x07\x87\xab\xd2\xbf\x02\x7a\x4e\x3e\x37\x20\xad\x2b\x21\xd7\x76\x64\xb7\x24\xb6\x0b\x26\x06\xc1\xfd\xc0\x20\xe0\x5c\x13\xa8\xe6\x59\x1d\xe8\x1a\xce\x15\xf0\xb9\xc2\x99\xc3\xf3\xdf\x60\xdf\xc0\x72\x67\x8e\xc0\x71\xa6\x43\x4a\xcd\xe7\x07\xac\x48\x17\xfd\x49\x79\xd3\xfe\xd0\xd5\xa4\x02\x84\x37\xb6\x65\x28\x63\xbd\x6e\x54\xfd\x43\x90\x59\xf2\xeb\x4b\xe4\x61\xb0\x55\x2c\x26\x83\x0e\xc8\x52\x72\x0c\x4d\x0b\xeb\x5d\x0d\x1e\xe3\xd0\xc6\x11\x9a\x1f\x1d\xe3\x44\x42\x54\x93\x3b\xc6\xe5\xe9\x71\x86\xc3\xf1\x30\xbb\x8c\x88\x21\x9a\x46\xb8\x0b\x1b\x9c\xea\x5c\xb5\xf8\xd0\x5b\x48\x5b\xd1\x60\xb9\xf8\x5e\x4b\x96\x95\x05\x01\x67\xf1\x3e\xfb\x3e\x01\xb6\xa2\x4b\x3c\x1c\x05\xf3\x14\x10\x9d\xaf\xf3\x4c\x3a\x05\x84\x2f\xae\xd1\x3d\x90\x53\x20\xa3\x09\x07\x44\x17\xe2\x7d\xf8\x9d\x80\x97\x5c\x40\x63\xe6\xe7\xee\x71\x9c\x00\x4c\x42\xac\x0a\x6f\x84\x04\x47\x1a\xb2\x5f\x39\xdd\x62\x58\x38\x3c\xf1\x02\xad\xf5\x51\xc8\x47\x8d\xdc\xb6\x2a\x48\x3b\xe7\x85\x34\xc7\xd1\x2e\x0c\x3e\xbb\x12\x3c\x20\x52\x2b\x26\xde\x51\xd3\x8c\x89\x7b\x64\xc6\x11\x9f\x96\x8d\x0c\x4a\x49\x26\x2b\x3e\x18\x91\xe5\x9b\x54\x53\x3f\x58\x8f\xa7\x32\xb9\xfb\xe7\x4d\x48\x5c\x20\xf1\xbc\x40\xbc\x53\x42\x39\x49\x8f\x47\x21\x16\xaf\x7d\x89\x7e\x74\x3b\x7c\xa4\x4a\x36\x8d\x6e\x95\xf1\xb2\x4b\xea\x11\x06\x6c\xda\x69\xaf\xf0\x4a\x74\x46\x4d\x8c\x83\x99\xcd\x13\x8a\xa3\x23\x73\x77\x51\x8c\xa2\x13\x5c\x21\x57\xab\xd5\x74\xa2\xd4\xdc\x5e\x9a\xed\x2c\xbe\xde\xc4\xb4\x07\xc0\x27\x57\x65\xa8\x72\xc1\xf9\x22\x2c\x31\x18\x7f\x6e\x4e\x8c\x28\xbd\x9a\x51\x6b\xe2\x77\x16\x28\x85\x83\xb6\x9e\x4c\xcd\x85\x22\x71\x2b\xe6\x47\x5b\x12\x4d\xd9\x56\xd4\x0f\xea\x1e\x36\x23\xa4\x78\xa0\xeb\x42\x33\x82\xfd\x76\xa2\xfa\x84\x27\x54\x0a\x45\x44\x1b\xe7\x61\xb5\x92\xa7\x48\x18\xc1\x2f\xc3\x19\xef\x63\xd3\x13\x2d\xd8\x4f\xa2\x58\xfe\x2c\x59\x89\x39\xba\x73\xf2\x58\x06\xc3\x42\x8c\x8b\xb7\xe6\x2e\xd3\x85\x70\x43\x31\x64\x8c\x35\x4f\xe2\x94\x0c\x23\x81\xbb\x2f\x69\x9d\x25\xd2\x18\xe0\xb9\x74\xab\x9b\xf5\x29\xce\xc6\x3a\x4d\x44\x60\x6d\x71\x92\x1e\x76\x16\xd5\x65\x68\xd0\xa4\x8e\x2f\xc3\x96\xbb\x34\xb2\x40\x69\x07\xbe\xcf\xeb\x6d\xb6\x1c\xec\x26\xa7\xd3\x8c\x48\xf8\x0e\x02\xc8\x5b\xa9\x04\xdd\xfe\x39\xf6\xd2\xc5\x67\x26\x27\x9a\xf9\x4e\x35\x77\x0f\xf6\xba\x78\x65\xe1\x1f\xed\x2c\xb9\xe2\x44\x5c\xec\x90\x83\x9f\x0f\x15\x23\x1a\x50\x8c\x54\x5a\x5f\xf4\xb4\x1b\x47\x40\x64\x57\xd8\xfd\x3f\xd1\xa2\x50\x03\xb7\x08\x3f\x67\xbc\x37\x94\x9e\xf1\xde\x9b\x05\x0e\x90\x4f\xb1\x2f\xe5\xbc\x3b\x6b\xef\xe8\x2d\x93\x35\xfe\x4c\x39\x5b\xed\x43\xe6\x73\xed\xc5\x8b\x32\x77\x2d\x9d\x6e\xf2\x37\x5b\x7f\x81\x84\x05\x29\x80\xaf\x05\x65\x90\x7c\x35\x70\x0e\xea\x8e\xa6\x49\x2f\xdd\xde\x1e\x4d\x23\x5e\xdb\xc3\x1c\x15\x80\x69\x53\x07\x23\x54\x42\x09\x39\xf1\xe5\x96\xcf\x1b\xa9\x48\xc0\x94\x1c\xe1\x3f\x9b\x8a\x1c\xde\xee\x4d\x78\x81\xe7\x56\x2f\x6c\x8b\x59\x8f\xd8\xad\x78\xde\x23\xbe\x60\x00\x3b\xe2\x97\x05\x9f\x5b\x0a\x3a\x37\xf5\x8b\x8c\xd8\x65\x7b\x0f\x6a\x5d\x5b\xbc\xc5\xcb\x69\x0b\x8d\x01\x89\x6e\xc2\x12\x51\x53\xa1\xb7\x0f\xb3\xfe\x39\x45\x37\x3e\x8d\xec\x6a\xd6\x65\x40\x31\x0d\xaf\x2b\x42\x52\x09\xad\x3e\xcd\xa1\x43\xda\x04\xbc\x00\xe5\x87\x10\x7f\x0d\xa0\x28\xaf\xbe\x7f\x7b\xfd\x00\x78\xe8\xc0\x9f\x8b\xf7\xb0\xd6\x40\x21\x62\x50\xc4\x6d\xdf\xbf\xbd\xa6\x27\x57\xfd\x4e\x1d\x4b\x5f\x21\x2f\xd7\x19\x0d\x49\x29\x9c\x90\x85\x4e\x3e\xf1\xce\xac\x1a\x4e\x10\x06\x61\x6a\x86\x99\x50\xa8\xd3\xdb\x9d\x3f\x28\x0c\xa0\xf1\x00\xae\xd8\xb9\x25\x5c\x91\x7e\x27\x10\xc4\xc2\x9c\x33\xa5\x25\x3a\x85\x89\x77\x8c\x73\x99\xa8\x59\xd1\xff\x6e\xba\xe6\xa8\xa3\x5d\xe6\x74\xe3\xc4\x33\x84\x99\x97\x27\xd2\x38\x7f\x24\x57\xec\x65\x04\xaf\xe5\x1e\x83\x37\x01\xd4\x8f\x0f\xe2\x58\x85\x98\xec\x17\xe2\x35\xfd\x7a\x18\x1c\x63\xb9\xa7\x32\x97\xd9\xe7\x43\x7d\xcd\xc3\x68\xc0\x0e\x31\x3a\xd6\xe4\xd9\xe3\x8e\x34\xbb\xbf\xc1\x2e\xf4\x77\xf1\x37\x58\xdc\x7f\x17\x7f\xd3\xa6\x55\x9f\xfe\x1e\x0e\x44\xe2\x53\x74\xc0\x38\xce\x67\x41\x19\xc8\xd2\x0a\x44\xc0\x62\xf9\x3e\x3a\x76\xdd\x74\x42\x97\xda\x00\x47\xb2\xe9\x7d\x88\x55\xda\x58\xe3\x07\xbd\x1e\x27\x5a\x5a\x2b\xd1\xa5\xfb\x77\x72\xe2\x7a\x8a\x5f\xe2\xff\xb6\x26\xd7\xab\xc8\x3a\x8e\xb7\x79\xbc\xad\x41\xc3\x8c\x41\xa7\xb3\x08\x02\x78\xee\x50\xdc\x87\xf5\x16\xcd\x35\x76\xd0\x5b\x0d\x03\x8a\x85\xb2\x5e\xe0\xeb\xe5\x18\x93\x7b\x27\x1d\xe1\x8d\xb1\x85\x29\x60\x25\x55\x23\xe3\x23\x46\xae\xac\xa0\xd4\x78\x57\x13\x01\x3a\x0a\x6e\x18\xe7\x34\xd3\x01\xcd\xbd\x1a\x7c\x3c\x70\xf2\xe2\x9d\x15\x6f\xd5\x76\xec\xe4\x90\x5f\x44\x9e\x16\x98\x8e\x77\xc0\xc3\xc6\x2a\xdc\x9c\x80\xea\x62\x60\x5c\x19\x3f\x8f\x57\x92\xd9\x96\x0d\x42\xf4\x40\x71\xc3\xa6\xb5\x90\xd5\xc0\xa1\xd9\xe0\x09\x07\x59\x2e\x23\xa0\x14\x15\x67\xd4\xe0\x36\xe0\xe9\xdb\x52\x2b\xc8\x29\x26\xb6\x81\x02\xa1\x2c\xb4\x20\x39\xf8\x84\x50\x28\x7c\x32\x37\xd1\xdb\x09\x9a\xe2\x11\x4d\x2e\xa7\x27\xfb\x29\x41\x85\x47\x6c\xa8\x49\xe8\x7e\x57\xc6\xed\xcc\xd7\x19\xc5\x82\xbe\x80\x95\x4f\x3f\xdf\x84\x68\xd2\x73\xb0\xa8\x4f\xa7\x10\xd2\x25\x51\x32\x01\x1e\x57\x1a\x0f\x52\x19\x1c\x87\xa5\x5a\x7a\xf3\x98\x2f\xbb\xa2\x21\x02\xe3\x23\xb9\x85\xe6\x4d\x86\x69\x31\x94\x8e\xde\x64\x73\x18\xef\x7a\x68\xd3\xea\x7b\xdd\x8e\xb2\xc3\xc6\x3c\x84\xf7\x0f\x25\xde\xc6\x1a\xbc\x54\x7e\x12\xf7\xa4\x43\xc8\x3a\xe2\x03\xf5\xe8\x17\xbb\x49\xc1\xed\x17\x7b\x04\x5c\x2d\x7a\xba\xf0\x4a\xc2\x20\xf5\x22\x85\xa9\xce\x2d\xaf\x64\x56\xc5\xf9\x41\xb1\xfa\xc2\x2c\xfd\x71\x26\x8e\xb0\x6b\xca\xaf\x03\xe0\x44\x01\xe0\xa9\xf4\x72\x11\x2c\x0c\xe8\x9b\x70\xab\x43\x61\x21\x14\x3a\x5a\xe9\x65\x3a\xdb\x32\x96\x63\xe9\xac\x65\x73\xb7\x68\x35\x5b\xc4\xbf\xb0\xbe\x72\xc3\x1c\x10\x2e\x68\x8d\x78\xeb\x06\x2a\x06\x3e\x7d\x36\x97\xb2\x66\xe6\xe3\xb7\x39\x6b\x0a\x0d\x4e\xb7\x49\xb0\x2b\xd3\x88\xb5\x99\xa1\xa8\xbc\xa4\x86\x4d\x5b\xe2\x47\x27\x08\x15\x3a\x50\x04\x9a\xff\x47\xa8\x75\x9a\x50\x89\x11\x7d\x36\xc0\xd2\x69\x7c\x7f\x38\xc9\xd8\xb2\x30\x48\xb9\x9d\x14\x78\xe5\x91\x3c\x3b\xe6\xe6\xa7\x73\x8e\x2c\x02\xb9\xa0\xc2\x00\xc9\xcf\xf9\x18\xe0\x3c\x7a\x40\x52\xc4\xed\x2c\x22\x58\xee\x9e\xe6\x4e\xb7\x15\xf7\x3c\x22\xc0\x65\x88\xe7\x13\xa4\x26\xb4\xf1\xc3\xc6\xdc\x2b\xd3\xa2\x9b\xe0\x86\x4e\x74\x66\x36\x91\x87\x67\xca\x67\x4e\x1a\x4e\xa9\x24\xcb\xc8\x82\xaa\xf8\x99\x30\xc9\xf3\xd5\x1f\x36\xf4\xd7\xea\xc0\x0e\x79\x49\x25\x93\x77\x28\xb8\x06\xbe\x8c\x91\xe4\x02\xc3\x5d\x40\xb5\xb8\x23\xa4\x17\x01\x62\xd3\x42\x81\xe1\x74\xf3\xca\x20\x5d\x4b\xc1\xb9\x32\x45\xa9\xad\x27\x4e\x87\x97\x6d\x8b\xfd\x29\x9c\x0f\x4f\x16\x98\x44\xd3\x2c\x70\x95\xd1\x34\xe7\xf3\x65\x52\x71\x08\xa9\x39\x37\x3b\xdb\x21\xf7\xb1\xcb\x1b\xb6\xd0\xa5\xc5\x62\x85\x1b\x04\x3d\xd9\x0b\xf3\x31\x5d\xb6\xdb\xd1\xbb\xa8\xb9\xf1\x3d\x5d\x70\x9e\x6e\x8f\x93\x39\xfb\x40\x08\xce\xd0\x28\x3a\x87\x3b\x45\xb9\xab\x45\xaa\x71\x8c\xbc\x5c\xfb\x4e\x16\x9b\xc9\x35\x95\xcc\x78\x53\x18\x59\xf1\x7d\x9c\x14\x0c\x07\x24\xd1\xf5\x8c\xf0\xc5\x73\x39\x65\x3c\x1c\xb6\xeb\x51\x38\x54\x14\x24\xf3\xb2\xab\x72\x5e\x1c\xc8\x52\xc2\x73\x88\xed\x26\x13\x83\x4a\x3c\xc9\x63\xab\x0a\xba\x96\xec\xc7\x66\x47\x27\x77\x68\x3c\xc1\xe0\x33\xe2\xe6\xcd\xed\x3b\x41\x66\x53\x3f\xe8\xed\x16\x36\x60\xf1\x97\x9d\x32\xf8\xd2\xb2\xb3\x7b\xc5\xdc\xad\x69\x46\x32\xb1\xd1\x93\xb2\x07\x15\x62\x4b\x9a\x96\xb7\xa3\x3c\xc0\x75\xb0\x1b\x90\xbb\x99\xc0\x47\xef\xd1\x1d\xbb\x57\x8d\xde\x1c\x57\xe2\x5a\xc9\xc1\xd0\x0b\xad\xc1\x43\xf6\xc1\x2b\x91\xb1\x27\x18\xce\xe4\xa7\xef\x65\x6e\x5f\x66\x92\xe4\xd3\x97\x37\xaa\x19\x79\xa6\xa0\x4b\xc1\x1c\x03\x85\x1f\x3a\xdb\x45\xa6\x4d\x5b\xb3\x86\x3d\x40\xf0\x6d\xbd\x2f\x99\xa6\xb3\x36\xe4\x4f\xfa\x52\xd5\x5f\xca\x78\x19\xd5\xca\x93\xb9\x99\xdb\x72\x21\xde\x29\x87\xd1\xff\xf0\xfb\x33\xe0\x81\x04\xb7\xf4\x8a\x23\xde\x19\x40\x93\x22\x4d\x8b\x88\x35\xbc\x42\x8d\x12\x55\xa0\x91\x9b\x9b\x79\x16\xeb\x48\x5d\xc4\xa6\x1d\xa6\xfd\xa4\xb9\x4f\xee\x62\x54\xdd\x5f\x47\x35\xaa\x95\x78\xe9\xc5\x5e\x1e\xe9\xd5\xe2\x8d\x3a\x08\xa7\x1a\x6b\x5a\x17\xe2\x31\x68\x8f\x77\x46\x9d\x18\xfb\x70\x87\x77\x36\x24\xf3\xb6\x95\x46\x7f\xe5\xfc\x12\x88\xeb\x2d\xc5\x79\x7b\xcb\x3f\xe7\x40\xe4\x38\x01\xbd\x7a\x41\xbf\xe6\x20\x3d\xbf\xbf\x17\x5f\xe2\x9b\x83\xac\x6d\x0b\x63\xf6\x8b\x6d\x8f\x73\xf3\x67\x18\x9d\x68\x03\xc5\xb5\xdc\xdb\x03\x1e\xc5\xad\x8f\x98\xa1\xbd\x53\xdd\x86\x1e\xb0\x01\xfd\x4f\x85\xd0\x1e\x28\x50\xc4\x78\x2b\x82\x96\x10\xd3\x09\xcd\xe4\x78\xf5\x2c\xf7\x2e\xa4\x87\x1c\x8a\xa8\xf4\xd3\x36\x51\xe0\x0f\x6e\xd7\x4b\x92\xdd\x71\x34\xd1\xee\x49\x11\x57\xce\x41\xf7\xed\xb3\xcb\xd1\xc1\x9e\xd3\xd3\x73\xa9\xaa\x45\x1e\x80\x8f\x42\x05\x10\x52\x7e\xe8\xee\x7d\x16\xb4\x30\x89\xbc\xda\x61\x3d\x0b\x2d\xe2\x20\x93\x40\x20\x0a\x2f\x39\x83\x48\x17\x3b\x10\x28\x84\xab\x9e\x8a\x30\x0c\x9e\x8c\xaa\x2f\x0a\xf6\x91\x31\xe0\x38\x30\x76\xcb\x72\x17\x3f\x83\x4a\xc6\x15\x60\xac\xc1\x96\x92\x39\x71\x02\xad\xde\xbf\xbd\xce\x99\xe1\xb9\x90\xb0\x3d\x92\xc5\x60\x50\x5b\x39\xb4\x21\xc2\x08\x33\xe6\x9d\xf4\xc4\x80\xf3\x57\x14\x30\xec\x17\xa3\xa0\xbb\xe1\x77\xda\x60\x64\x4c\x14\xed\xd9\xe8\x05\x5a\x56\xf2\xd7\x00\x5e\x3c\xf6\xc0\x9e\x89\xd7\x87\x7a\xb0\xcb\xdf\xfe\xdb\xed\x9b\xd7\xe7\xe2\xd3\x93\xc3\xe1\xf0\x04\x8a\x3f\x19\x87\x4e\x19\xe8\x42\x7b\x2e\xfe\xd7\xab\xeb\x73\xa1\x7c\xf3\xdd\x4a\xbc\x22\xae\x9d\x98\x21\xbb\x4c\xa2\x3b\x34\xfa\x1f\x8e\xc3\x3f\xc1\xcd\x79\xc5\xb0\x41\x31\x7f\xbf\x32\x97\xbd\x60\xf4\xc2\x65\xb9\xf0\xf4\x23\x5e\x9a\xcb\xf6\xf1\x66\x50\x78\xd7\x0c\x7f\x4c\x33\x12\xdb\x43\xb0\x30\x3f\x31\xc6\xbf\x74\xe2\xf6\xc5\xe5\x1f\xfe\xf5\x7f\x8a\x17\xaf\x2e\xaf\xc4\x4e\x7d\x12\xad\xde\x2a\x3a\x88\x0a\x2b\xfa\x5e\x87\xb1\xfe\x5f\x4f\x60\x12\x3c\xb9\xd5\x5b\x23\xfd\x38\xa8\x30\xee\xc4\x1e\x72\xd1\xa2\x93\xcd\xdd\xd2\x73\x31\x53\x10\xdd\x58\xc3\x04\x78\xd9\x58\x53\xf6\x9e\x40\xc2\xc5\x8e\x2b\xbc\xd2\x91\x8c\xab\x30\x65\xe2\xfe\xbf\x53\x06\xf8\xe3\xd8\xb5\xe5\xd6\xb6\x56\x61\x0a\xa8\xf6\x4f\xd3\xc2\x18\xbd\xcb\x9a\x0e\x98\xd2\xbf\x61\xdc\x96\x5d\x70\x06\x81\xac\xd0\x3b\x04\x5e\x4d\x0b\xe3\x03\xbd\x99\x5a\x74\x21\x5e\xd2\x4b\xc1\x41\x2d\x4b\x79\x51\x35\x9b\x21\x61\x2b\xd9\x85\xb8\x56\x5e\xec\xa3\xd5\x0c\x67\x39\xa1\x9b\x17\x29\x9d\x05\x97\xb3\x03\x5d\x7e\xc9\x63\x7a\x05\x47\xba\x39\x0d\xcb\x6b\x2b\x8b\xd9\xcb\x18\x79\xd7\x9e\x16\xc9\x83\xb8\x2d\x64\xa5\xf0\x99\x29\x34\x1a\x86\xab\x5b\x1a\x20\x8e\xa9\xb6\x38\x76\xd9\x96\x11\xce\x06\x73\xd5\x7b\x5a\x66\x1a\xb3\x6c\x31\x3b\xf2\x7b\x34\xfa\xd2\x8d\xaf\x73\xba\xc7\xd6\x9e\x8b\x70\x07\xec\x9c\x3d\x9c\xce\xc3\xa5\xf1\xf6\x5c\x8c\x26\xfd\xa6\xfb\x37\xac\xf8\x85\x4f\xf4\xb0\x84\xcf\xe8\x00\xd7\x9e\xd3\xcb\x6f\x29\x61\x36\xde\x64\x25\x4f\xb7\xdc\xa8\x5d\xe1\xae\xdb\x43\xc0\x65\x4f\x02\x06\x9e\x04\xa9\x03\xf1\xe9\xb9\x79\xdd\x13\xc7\x81\xc2\x5b\xfa\x01\xd0\xe8\x4b\x91\x1f\x43\xff\xef\xa7\x64\x4e\x46\xec\x96\x3b\x9a\x66\x37\x58\xa3\x7f\x5f\xe8\x1b\x07\x92\x4b\x71\xe4\x4e\x00\xa4\xc9\x4a\xf0\x68\xca\x47\xbf\x04\xbc\x72\xb4\x7c\x60\x48\xa1\xd7\x42\x0c\xb6\x69\x46\xf2\x6c\x7f\xaa\x3c\xbe\xc2\xb3\xb4\x1b\x92\x31\x34\x72\xaf\xb4\x7f\x05\x0e\xce\xf2\x1f\xa9\x52\x14\xc1\xbc\xd8\xbf\x71\xf3\x2e\x15\xea\x65\x71\x74\xe6\xa3\x94\xe9\x5e\x2c\x1d\xcc\xf4\x0b\x06\x9c\xd4\x31\x13\xeb\x79\xdc\xe6\xda\x7a\xaa\xe1\x94\x06\x43\x97\x92\x83\x64\x1d\x5e\x02\xc4\x67\x20\x9e\xc6\xb4\x52\x1f\x0c\xfb\x24\x4a\x3e\xe5\x26\x89\x51\x51\x70\x3f\xc9\x65\x1a\xd0\x2c\xcb\x6b\x8d\x00\x82\x97\x1a\xb5\xf1\x2a\x84\xdf\x9c\xbd\xdc\x72\x9c\x90\xba\xd5\xae\xc1\x77\xcf\x1f\xc2\xfd\x94\x80\xbe\x0e\x3b\xb5\x39\x44\xf9\xa7\xd7\x08\x26\x99\xad\xdd\x4b\x74\xd8\x7b\x8a\x3f\x66\xfb\xe7\x4e\x1a\x43\xce\xc9\xf4\x2b\x1f\x8b\xbe\xb3\xc7\xf0\x74\xce\x53\xfc\xe2\xe7\x00\x17\x40\xb2\x87\x66\xd6\x3f\x5f\xd1\x73\x2f\xcf\xad\x6f\x76\xf2\x9b\x9f\xbe\x5f\xff\xcc\xef\xea\x3f\x1e\x94\xe8\xac\xbd\x0b\xf7\x12\x64\x8b\xf3\x3a\x3e\x1c\xd0\xc7\x07\x59\x92\xc3\x80\x6c\x5b\xf2\xf2\xd0\x86\x48\x91\xd1\x0d\x28\x17\x9f\xda\xe4\x56\x4d\x04\x29\x1c\x81\xd8\x4e\x26\x7d\xea\xcd\x52\x67\x92\x3a\x8c\x50\x48\x01\x34\xda\x0c\x4a\xb6\x4f\x50\x26\x20\x83\xcd\x4a\xbc\xdb\xa9\x63\x0c\x10\x8b\xef\x01\xe2\xb9\x60\xf9\x16\x02\x36\x2f\xbc\x92\x93\x1f\xaf\xd9\xba\x24\xf2\x7f\xf2\xe1\x06\x86\xdc\x20\x3b\x88\x39\x8a\x36\x35\x23\x37\x0c\x16\x2e\xff\x4b\xbd\x98\x3f\x4b\x13\xa1\xa6\xcf\xe7\xa4\x9e\x9e\x7c\x3e\x27\x2f\x9a\xbf\xa1\x93\x15\x45\xd9\x3d\x12\x61\xd1\xc7\xb5\x18\x96\xf9\x0b\x39\xa9\xab\x5f\xf0\x48\xce\xf2\xc8\x4d\x8d\x1f\x9f\x1d\xea\x87\x5c\xdc\xdb\xbc\x73\x5f\xf0\x5c\xce\x34\xfc\xd3\x17\xd8\x41\x96\xda\x92\x7b\x77\xc6\x06\x7c\xce\xe1\xbd\xd5\x9b\xcd\x8a\x22\x87\xd6\xce\x8e\x03\x3e\x19\xff\x0b\x7e\x8b\x5b\xfc\x26\x10\x8e\x9b\x76\xc1\x01\xd4\x28\x91\x6f\x96\x5f\xb0\xb7\x25\x25\xe2\x9d\x37\x34\xe9\xdd\x4b\xdd\xa1\xfa\x79\x21\x9e\xea\xcd\x86\xee\xbf\xbd\xb6\xf8\xb8\x20\xe5\xac\xa8\x88\xdb\xd9\x43\x0d\xbf\xf0\x35\x1d\xf4\xac\xda\xd9\x03\x15\xba\x85\x94\x0c\xcc\xf5\x9d\xf6\x35\x07\x2d\xbd\x85\x0f\x0c\xbb\x9a\x41\x8c\x06\x43\xac\x05\x98\xf7\xf4\x99\x43\x01\xca\x78\x05\x3d\x9c\x71\x9c\xb5\x31\x2e\x18\xaa\xff\xe9\xf4\x03\x67\x68\x80\x3b\x6b\x91\xff\xa0\x7e\x9f\x40\xf2\xd7\x29\xce\xda\x68\x79\x4d\x10\x4c\x68\x64\xaa\xbf\xbc\x7c\x4d\x9f\x18\x32\x94\x63\xc6\x60\xec\xd8\x67\xba\x63\x7a\xf3\xcb\x9a\x3d\xc6\x25\x53\x6d\x88\x97\x06\x79\x22\x4b\xce\x6e\x4d\xe5\xd1\x63\x09\x87\xb7\xb6\xde\x4b\x73\x8c\xf7\x29\x6f\xed\x5e\xb1\x6d\xe3\xa0\xc2\xeb\xe8\x3b\x7b\xc8\xae\x98\x59\x2b\xa0\x08\x43\x05\x82\x04\x3b\x23\xa0\xad\x42\xc0\xdc\xd5\x52\xe0\xdc\x90\x47\x51\x90\x83\x3c\x04\xab\x34\xc8\x44\x01\xa2\x1d\xe4\x06\x6f\xfc\xc0\xff\x98\xda\x0f\x2a\x15\xbb\x19\xd4\x93\x69\x31\xbe\x99\x03\xff\x62\x9a\xdc\x91\x57\x78\x1a\x81\x34\x32\xe1\x12\x99\xb7\xe2\xcc\x71\x58\x39\x5e\x70\x25\x62\x9a\xfd\x35\x7a\x0f\x5f\xf0\xdc\x17\x57\xb6\x55\x45\x9f\xf2\x2b\x3f\x37\x24\xb7\x89\x48\x07\xf4\x8c\xa0\x47\x7e\xfa\xc1\xb6\x63\xe3\x57\x45\xbb\x8b\xd2\x24\xa8\xa9\x30\xeb\x44\x67\xb7\x68\x0d\xc0\x38\xa0\xe4\xf3\x38\x9a\x56\x0d\xce\x93\x7b\xb3\xcc\xb8\xab\xde\xf7\x03\x99\xde\x03\x7a\x2f\xb7\xf1\x11\x22\xb9\xa5\x60\x06\x29\x0f\x2d\xc9\xe1\x85\xe5\xa2\x4c\xdc\x80\x83\x27\x74\x16\x4c\xd0\xcb\x2d\x0a\xbd\x4d\x1e\xbe\x1a\x74\x34\x6b\x82\xcc\x9a\x35\xa0\xd8\x59\x42\xea\x7c\x37\x09\x39\xa5\xb7\x7f\x36\xfc\xbc\x6c\x39\x7e\x6e\xcc\xe9\xac\x6c\x49\x29\xbe\xa6\x5f\xab\xd5\x6a\x61\xd6\xcc\x9f\xc9\xea\x07\xf5\x64\x3a\xd6\x19\x7c\x24\xc0\x5f\xd4\xe3\xae\x13\xbd\xd5\xc6\x0b\xba\xbd\x22\x7d\x31\x53\xc2\xc9\x03\x0f\xad\xb6\xe6\x09\x6e\x53\xa9\x19\xd3\x3b\x5b\xb1\x3a\x9e\x28\x69\xca\x4c\x67\x35\xde\x86\x09\x2b\x02\xaf\xc3\x94\xcb\x02\x67\x4f\x5a\x18\x78\x2f\x6d\xb6\xa0\x48\x0c\x4e\x50\xe5\x89\xf3\x02\x30\x6d\x79\x41\x0d\x89\x27\x55\x53\x98\xe5\x5d\x2e\xd4\x33\xbd\xff\x82\xaf\x9e\xba\xde\x9a\x78\x78\xeb\xe5\xf6\x81\x3d\x6d\x56\x5b\x7e\x02\x4a\x55\x7c\x66\x13\x9b\xae\x81\xf2\x36\x4d\x86\x87\x45\x0d\xe0\x94\xbc\x46\x66\xa2\xc6\x0c\x17\xdf\x3e\xcc\xd6\x55\x98\x07\x98\x9e\x4a\x84\xc8\x0f\xb8\x01\x87\xdf\x55\xf5\xc1\x0e\xdb\x8f\xf8\xd4\x3a\x45\xf9\x8d\x51\xfe\xf2\x33\x2d\xb4\xbb\x02\x4c\x7c\xb6\xf9\x04\x60\x7a\xca\x39\x61\x0c\x13\xf8\x39\x2c\xd3\xd2\x5f\x04\x00\xc8\xea\x8d\x4f\xfe\xb0\x5f\x3b\xbf\xfa\xb3\x0a\x11\xeb\xe9\x05\x7a\xbe\xee\x95\x57\x47\x8f\xbc\xa4\x4b\x44\x1c\x94\xbb\x62\x7f\xf3\x0b\x71\x83\x3f\x2a\x6d\xee\xb5\x07\xf9\x61\xaf\xc8\xe1\xec\x25\x26\xe0\x7e\x63\x8d\xaa\x0a\x8f\xec\x0a\x63\x09\xd7\xc1\x1b\xfb\x22\xf8\x65\x73\xfa\xe4\xa1\xf6\xe2\x61\xf5\x2c\x40\x2e\xa0\x2c\xef\xa8\x01\x72\xa4\xca\xc2\xed\x55\x80\x8e\xec\x11\x4a\x22\x09\x31\xf5\x21\xe8\xe2\x49\x1d\xe0\x0e\x63\x08\x0b\x87\xb8\x30\x3c\x83\x21\x85\x0b\x27\x15\x60\xd6\xa6\x88\x57\xe3\x56\xa9\x9a\x8c\xd7\xec\xe8\x6a\x6b\x2a\x06\xc2\x21\x3a\x35\xff\x89\xe0\x8b\x67\x25\xd8\x20\x29\xe9\x49\x2c\x4a\x16\x9d\xba\x57\x5d\x61\xa1\x44\x44\xa0\x09\xfc\xe9\xc4\x43\xf2\x6f\xa6\x73\xe3\x1f\x78\xab\x64\x8e\xe3\xc1\xd7\x4a\x10\x5d\x22\x68\xd6\x18\x1c\x87\x13\x8d\xa8\x32\xb7\xe8\xaf\xba\x9d\xb6\xfc\xec\x79\x7e\x6c\x34\x79\xff\x3c\x66\x2d\x3d\x84\x7e\xca\x49\xe3\x21\xbf\xf1\x12\x34\x63\x66\x05\xe1\x22\xa6\x2f\xf5\xe8\x60\x77\x74\x3b\x6c\xff\x39\x6f\xf4\xe2\x5d\xb7\x59\xab\x67\x6f\x75\x17\x8d\xfe\xba\x37\xbb\x4f\x7a\x40\x15\x1c\x66\x6a\xc4\x99\x3d\x24\x87\x1d\x7c\xb0\x48\xf9\xac\x5c\xde\xe0\x78\x70\x96\x79\x20\xb1\xd3\x02\x3d\x28\x47\x87\xe7\x9f\x7f\x55\xee\x84\xe7\xca\x43\xcf\xcb\x4d\x5b\x09\x9c\x29\x06\x7f\xcb\x1b\xf9\x60\x89\x5c\x9a\xb1\x13\x2f\x88\x7f\xfc\xc9\xb9\x65\x8f\x87\xcb\xb6\x0d\xd6\x3c\x7e\x61\x2a\xd0\x2f\x59\x0c\x37\x59\xc8\xe4\xe9\x83\x82\x89\x72\x28\xb7\xf2\xa5\xad\x62\xbe\x55\xcc\xeb\x57\xfc\x7f\xa7\xfb\xba\x78\x66\xee\x55\x4c\xcf\x5e\x9c\xfb\x31\x16\x63\x4b\x4f\x78\x83\x77\x92\x9e\xf8\x2b\xde\x9c\xee\xe9\xcd\xb7\x04\x44\xdf\xf4\x42\xf8\x52\xce\xb4\x7c\x59\x07\xfd\xaf\x07\xdb\xa9\xd8\x50\xf1\xd6\x76\x2a\x35\xaf\x0c\x7d\x56\x16\x8c\x65\x62\x3a\x9b\x05\xc2\x9b\x5f\x31\x1d\x5f\x73\x0c\x0f\x3e\xc6\x54\xde\x63\xf3\x40\xf6\x28\x8f\x33\x76\x54\x6f\x7e\x9c\x42\x1b\x8c\x18\xcd\xbb\xf1\x6b\x7b\xa8\x68\x2b\x5e\x61\x6c\xb5\x0b\xf1\x6f\x56\x1b\x4e\x29\x2b\xa5\x34\x90\x8c\xd2\x13\x0b\x6f\x41\xc7\xa2\xb7\x3e\xe7\xf9\x93\xa7\xa4\x70\x27\x8a\x8f\x48\xf1\x93\xa3\x28\xd8\x73\x04\x3f\x43\x6e\x21\xe5\x23\x48\x84\x75\xf2\xb2\x03\xdd\x2b\x2f\xea\xcd\x21\xbe\xa4\x62\xbc\x33\x3c\xad\xee\x3c\x98\xb8\xd1\xee\x16\xaf\x81\xa9\x7d\x68\x07\xba\x0a\xa7\x76\xe0\xd5\xe5\xb2\x1d\x39\xc4\x97\xb4\x03\x6a\xc1\x68\x51\xc1\x85\xfe\x64\x7b\x64\x1b\x9e\xb8\x2f\x3c\x1a\xa7\x4d\x4c\x8f\x19\xbd\xcb\xf6\x7f\xf4\x0a\x6d\x27\xf2\x8c\x5b\x2d\x6d\xa9\x94\x43\x4e\x7c\x0b\x22\x07\x79\x68\x2f\x3e\x82\xfb\x79\x26\x80\x61\xb9\xa0\x64\x04\xcd\x7c\xaf\x8b\xe0\xea\xf3\x7d\x89\xda\x95\x44\x44\x94\x15\x98\x37\x70\xe6\xe7\xb7\x64\x82\x0b\xaf\x8b\x90\xbc\x98\x6f\x2a\x28\x30\x86\x91\x6c\x11\xa2\x8e\x6b\x15\x16\x58\x56\xeb\x1c\x59\x64\xe6\x08\x15\x99\xf8\x1c\x2e\xac\xd8\x5c\xda\xcb\xce\x5b\x14\x9e\x41\x15\x77\x13\x03\xd4\x5e\x1e\xa7\x8f\xb8\x82\x88\x5d\xae\x9a\xd3\x8a\xd5\xbc\x29\x69\x5f\x7f\xae\xef\x95\x49\x13\xe6\xa4\x72\xb5\xca\x97\xfa\x7c\x82\xa4\x69\xb7\x1d\x30\x62\x59\x18\x6b\x60\x16\xd9\x54\x40\x84\x3f\xc6\x5e\x36\xd2\x4c\xb9\x01\x7a\xbc\x29\xb9\x7f\xfc\x10\x53\xf8\x8a\x06\x20\xdb\x78\xb8\x05\xc8\x16\x28\x46\xa6\x69\x73\x16\xf0\x50\x43\x68\xcd\x7f\x45\x43\x90\x6f\x7c\x61\x43\xce\x43\x2b\x48\x3a\x01\x2e\xb0\xb4\xfe\x1f\x6a\xdf\x44\x7d\xc2\xc9\xf9\x36\xd7\xa1\x02\x33\x40\x47\x4d\xd4\xef\x16\x1d\x35\x33\x73\xf4\x6a\x35\x5d\x25\x99\xa7\x69\xb6\x52\x32\xa7\xf6\xd0\x16\xf4\x29\xe5\xcb\x3f\xbc\xcb\x25\x54\xc6\x1a\x7a\x24\xdf\xf8\xfc\x82\x50\x86\x9c\xcf\x7e\xfc\x70\x64\x49\x07\x5f\xc6\x29\x9e\xbd\x8b\x07\x3e\x6c\xa4\x42\xe7\xad\xc1\xf9\x55\x55\x7d\xc0\xb1\xfa\x58\xb5\xd2\xed\xd6\x56\x0e\x78\xee\x10\x7e\x57\xc5\x0d\xe5\xaa\x78\x7e\x79\x22\xa1\xb9\x6a\x42\xd4\x82\x9e\x72\xf4\x3b\x50\x02\xa3\xf6\x70\x59\x24\x38\x7a\x91\x78\x1b\x44\xc4\xed\xc8\x91\x32\xd8\x17\x1d\x6f\xcb\x3a\xaf\xf6\xe2\x35\x25\x54\x7b\x6b\x34\xb9\xbd\xbe\xa2\x5f\xda\x6c\xab\x22\xdc\xcb\x33\xf8\xa0\x97\xee\x39\xe5\x5a\x3a\x5f\x79\xeb\xf1\x6d\xc3\x77\xf0\xff\x47\x71\xd6\x56\xa9\xeb\x68\xf3\xd6\xce\xa3\xf0\x74\x1b\x7e\xbb\x0c\x20\x79\xad\x51\xb4\x2a\xfe\xc8\x51\x60\x3b\xd1\x44\x3f\x66\xed\xe6\x56\x22\xd6\xd1\x2d\x55\x19\x82\xb8\xa0\xbb\x57\x2b\xbd\x5c\x07\xa3\xce\x4f\x6b\xb4\xd5\xae\x7f\x26\x83\xe7\x79\x96\x50\x8c\x48\x9e\x51\x9c\xf6\xa5\xe4\x72\x2f\x4d\xe9\xf4\x9a\x68\x91\xe4\xbc\x2c\xeb\x92\xcd\xac\x96\x70\x40\x93\xa7\x85\xeb\x07\x29\x25\x5c\x44\x28\xb0\x97\x6f\xf0\xe7\x59\x74\xe3\xa6\x48\xa2\xdb\x5d\x93\x9e\x90\x39\x39\x4f\xeb\xec\x56\x1b\x41\x26\xea\xb2\x7b\x2c\xb0\x97\x38\x43\x30\xa4\x02\x05\x46\xa8\xcd\x53\xf0\xb4\xdc\x4b\x57\x96\xc6\x05\x9a\x27\x70\x90\x91\x19\x60\x0a\x85\xea\x56\x4b\x13\x29\xe8\xe1\x71\x32\x91\x32\xbe\x04\xe9\x0e\x9a\x5e\x73\xbc\xc5\x1f\x8b\x30\xc3\x88\xc6\xca\xd1\x64\xb9\x4d\xa7\xa4\xa9\x47\xb3\xd6\xa6\xad\x2d\xbf\x89\x7a\x05\x89\x62\x34\x6b\xf4\xa9\x7b\x83\xeb\xd1\x3d\x58\x28\xdb\x18\x2f\xbb\x4e\x50\x56\x28\x99\xdd\xf4\x59\xde\x21\x13\x66\xde\x6b\xd9\x91\x53\x26\x05\xd1\x25\xd1\x43\x62\x18\x46\x76\xe7\x08\xd9\x5f\x84\x63\xd2\xca\x04\x11\xd1\x7c\x7d\x53\x71\x03\x00\x86\xaf\xef\xd5\xa4\x91\xe5\x5b\xf1\x0c\xf2\x19\x0c\x93\x26\x2e\xa2\xf8\xfa\x46\xe2\x56\x6b\xb6\xb4\xed\x9c\x68\x24\x28\xf6\x8d\x1d\x5a\xd6\x5c\x3b\xeb\x3c\xda\x9e\xe9\xf5\xbc\x87\x51\x9e\x6a\xf5\x83\x38\xbf\xa2\x1b\x5b\xed\xeb\x6d\x93\x9a\x6f\xc5\x56\x0e\x6b\xe0\xdc\xb0\xbb\x73\x6c\x19\x6b\x4a\x5b\xe7\x72\xf1\x87\x08\x8c\x0d\x6a\x41\x98\x5a\x40\x7f\xaa\x6d\x83\xc2\x98\x0c\xb2\xeb\x6a\xe7\x76\xec\x51\xf0\x56\xd1\xe9\xcc\xe3\x95\x73\xbb\xef\x25\x3f\x2f\xac\xf0\xec\xdd\x3d\xa6\x07\x2c\xbe\x6d\x24\x5e\x3a\xfe\x11\x23\xa8\x20\x6b\xc7\xd2\x41\xb4\x05\x6a\x7d\xf7\x60\x45\x93\xbe\x64\x7c\x3d\xa3\xed\x80\x4d\xf1\xea\x8b\x7a\x10\x82\x5e\xbc\xc5\x24\x3e\xf9\x69\x14\xfa\x54\x33\x17\x43\x51\xcf\x3a\x1f\x32\xd8\xaf\xdb\x6e\x66\x73\xfe\x81\x2a\x1e\x18\x85\xc7\x5f\x53\x6b\xde\x4d\x7e\x0a\xfb\x74\x2f\xb5\xd1\x7e\xb6\x14\xde\x62\x32\xbf\x6a\xfe\x0f\x2d\x88\x25\xc4\xff\xec\x82\x18\xb2\x56\x4d\xbb\x94\x0b\x08\xf8\x9e\x72\x3d\xf6\x5e\xe3\x46\x71\x4b\xef\x2b\xbf\xc7\xef\x9c\x61\x8f\xc3\x00\x42\xe2\xd6\x0e\x76\xf4\x9a\x1e\xf4\xa1\x34\xf1\x3c\xa4\xb9\x85\x02\x78\xd4\x71\xac\x47\x0e\x51\x17\xca\xbc\xc2\x64\xf1\x1e\x5f\x64\x4a\xa5\x50\x7e\x0a\x65\x64\x87\x06\x61\xb2\x54\xa3\x60\xc5\xa5\x2e\x43\x46\x56\x92\xcb\xd8\xb5\x97\x1c\x77\x8c\x81\xdf\x70\x4a\x06\x8b\x07\x8c\x6a\xa8\x3b\x6b\xef\xc6\xbe\x86\xae\x62\x50\x18\x4a\x16\xd7\x98\x2c\xde\x41\xf2\xbc\x86\xd0\xaa\x58\x6c\xd2\xa8\x53\xe5\x36\x83\x9a\x95\x79\x36\xa8\x39\x7c\xa0\xdc\x4e\xc9\x7e\x46\xb7\x17\x4a\xf6\x33\xaa\x21\xe4\x9c\x00\x08\x7b\x9a\x0a\x79\x29\xdd\xa2\x1e\x9d\x97\x78\xd9\x76\xa7\xea\xd0\xe8\x7e\x34\x85\x37\x20\xc7\x9f\x28\xc1\xf2\xd4\xb4\x55\x7c\x28\x38\x6b\x95\x5d\xff\x97\x6a\xbc\x0b\xd0\x6f\xe8\x33\x83\x5a\x5b\xeb\x9d\x1f\x64\x0f\xa2\x30\xfa\xa4\x13\x99\x7e\x09\xe9\x20\x0a\x37\x77\x33\x4a\x11\xf4\x9c\x54\x04\x7d\x9a\x56\x7b\xd7\x4b\x53\x3b\x3f\x8c\x8d\x1f\x07\xe5\x62\x85\xaf\x6e\x7b\x69\xc4\x6d\xcc\x98\xd5\x38\x2b\x99\xcf\xd0\x69\xe1\xa5\x9a\x1b\xd9\xec\xd4\x62\xd5\x57\x90\xf3\x60\xdd\xb3\xb2\x79\xe5\xb3\xe2\x4b\x2b\x65\xb0\x1b\xdd\x01\x53\x5a\x8f\xcd\x9d\xf2\xf5\x4e\xba\x5d\xed\xf1\x89\xb9\x0c\xd7\x4d\x00\x13\xbf\x20\x98\x78\x21\xdd\x4e\xbc\x43\xa3\xdb\x02\xd6\x6d\x53\xef\x95\x97\xe8\xa5\x94\x61\x79\x7e\x25\x5e\x71\xf2\x52\x29\x34\xc6\xd5\xac\x01\xf1\x2a\x04\xa1\x34\xc3\xf0\x06\xed\x75\xac\x14\x5d\x46\x90\x25\x6c\x46\x7d\xe2\x2d\xbd\x39\x36\xfc\x1a\xf1\x27\x0f\x6d\x78\x4b\x29\x19\x2c\xaa\x79\xdb\xa6\x0e\x3c\x12\x1d\x58\x30\x9a\xe3\xf3\x2b\x5c\xbe\x33\x0e\x96\x80\x89\x71\x3d\xbf\x12\x37\x72\x74\x8b\x80\xbd\xa4\xc5\x74\x12\x32\x54\x1f\x00\x43\xcd\x53\x38\xae\xd4\x11\x29\x89\xad\x90\x8e\xbd\xc2\xdb\xa0\x7b\x69\xe4\x56\xd5\xbd\x24\xbf\x51\xd0\xba\xc5\x2b\x4c\x13\x37\x90\xc6\xb0\x46\x1d\xf2\x43\x95\x74\xba\x7b\x49\x89\x01\x8c\x34\x0b\xd4\x27\x28\x25\xc8\xc2\x6d\x70\x91\x46\x16\xcd\x79\x45\xf4\x49\x4a\x4b\x1b\x68\x6f\x1d\xa7\x85\xa8\xc0\xf1\xe5\x26\x4e\xc7\x7b\x19\x83\xda\x6a\xe7\x39\x94\x03\x46\xdf\xc5\x4b\x7f\x6f\x31\x39\xe8\x37\xf9\x35\xce\x77\x16\x7b\x99\x75\xac\xf4\x5a\x0c\xdd\xfc\x7c\x64\xe2\x15\xe3\xc8\x5f\x09\xe1\x9e\xa1\xf2\x12\xdc\xf6\x4a\xcb\x43\x70\xdf\x23\x48\x98\x8e\x1d\x9f\x6d\x76\x79\x69\xd4\x2c\x83\xaa\x36\xc1\x70\x8d\x5a\x67\x46\xe5\x5e\x3a\x77\x40\xaf\xe4\x60\xed\xc6\xf3\x02\xa1\x3d\xdf\x3d\x43\x6b\x3b\xfa\x0e\x8f\x86\x9d\xc7\x42\xeb\x53\x58\x34\xf6\x6d\x8b\x22\x06\x13\x82\x73\x3e\x77\xae\x98\x68\x91\xcd\x14\x74\x88\x29\xe7\xc8\x5e\x7e\xe2\x77\xf8\x81\xa4\x1c\xb8\x58\x7e\xd2\xfb\x31\x37\x55\xd1\x50\x63\x67\xf5\x5e\x9f\x2c\x1b\xcc\x7c\xdf\xde\x2a\x2f\x9e\xfc\x80\x2f\x59\x3a\x25\xb6\x9d\x5d\x63\x20\x4a\x8a\xa6\xd9\x01\x8a\xef\x18\x87\x76\x75\x3e\x29\xd1\x40\x18\x1a\x8c\x3f\xcb\x49\xda\x0f\x76\xa7\xd7\xda\xd3\x80\x2c\x14\x08\x00\xe1\x61\xb9\x6d\x9c\xcb\x50\x13\x4f\xf1\xa2\x10\x06\xd6\x81\x0c\x9a\xa1\x76\xc8\xdc\x07\xc2\x9c\xc7\x83\xfa\x1a\x54\x0c\xf6\x9d\x9f\x61\xc8\xca\x64\x6f\xf2\x81\xd8\x47\x51\xe7\x72\x3c\x7a\xdf\xdb\x01\xba\x40\x93\xed\x73\xb8\x08\x5c\x10\x78\x21\x7b\x2f\x4d\x99\x64\xe2\x0f\x33\x86\x58\x7f\x98\x9c\x0f\x9e\x20\x97\x73\x03\x5f\x43\xa8\xed\xc1\x24\xc3\x63\xd6\x52\x7a\x2b\x01\xda\x9b\xc2\x1b\x58\x90\x4c\x41\xe6\xc5\x47\xc7\x40\xc9\xca\x83\x55\xc4\xf8\x32\xe9\x95\x2c\x3b\xc4\x48\x08\xe4\x88\xce\x66\xc9\xbc\x01\x3b\xe9\xd8\xf9\xe6\x44\xfd\xe9\x98\x14\xaf\x86\xe4\xd5\xe7\xf6\xb1\xb2\x01\x74\x94\x17\xef\xe0\xcc\x8e\x57\x5c\xd9\x94\x05\xbf\xab\xcb\x6c\xc8\x1e\x72\x1e\xb6\x03\xdf\xe0\x9f\x70\xf7\xe2\x7c\xbb\xe0\xf2\x58\x22\xe7\xde\x98\x50\xfa\x07\x61\x52\x3a\xfb\x09\xc7\x3e\x64\x85\x45\xc6\x3d\xad\x2f\x5b\xce\x45\x6d\x54\xa2\x3c\x95\xa5\xb4\xbc\x09\x94\x32\x3f\x1d\xa6\x74\xb6\x1f\x8a\x0b\xf1\x17\xfa\xc5\xe9\x68\x44\x24\xe9\x6d\x08\x69\xd3\xdb\x60\x0c\x09\xba\x19\xec\xdc\xbf\xab\x0a\xcd\xc5\xcc\x79\x27\x9d\x98\xf0\xde\xa2\x23\x54\x8a\xde\x3a\x08\xe1\x2f\x98\xbd\x73\x56\xd6\x1f\x4a\xc9\x1f\x43\xa4\x14\x85\x01\xc5\xda\x18\x5a\xac\xe5\xf4\xb9\x7f\x57\xd6\x48\x46\x33\x69\x5c\x86\x15\xa1\x96\xb7\x8f\xac\x35\x4e\x35\xe3\xa0\xfd\x11\xa3\x62\xda\xc6\x76\x74\x7b\x14\xd3\x30\x20\x26\xa4\x31\xec\xf4\xf2\x09\xa5\x62\x1c\x84\x0b\xf1\xc2\x3a\xcf\x29\x3d\x3d\x87\x78\x63\x87\x90\x82\x16\xbd\x16\x5d\xac\xb5\x69\xc5\xd3\xd7\x79\x7a\xd8\xbb\x42\xee\x0d\x7f\x2f\xc1\x64\x9e\x5a\x72\x30\xda\x6c\x7f\xe4\xf7\x49\x02\x0e\x7c\x51\xc5\x0e\xe4\x1a\xdd\x77\xd0\x5e\xaf\x3e\x79\x3c\x8d\x33\xd6\xf3\x5b\xa5\x3b\xbd\xdd\xa1\x1b\x82\xee\xd4\x96\xbc\xfe\x61\x5d\xad\x02\xe1\x41\x30\xe2\x67\x97\x50\x20\xe2\xb3\x97\x5f\xa4\x53\x39\x08\xf6\x08\x01\x62\x8f\xa4\xa7\xa8\x6f\x6a\xe9\x46\xac\x88\xb9\x27\xa1\xa7\x8f\xc8\x22\xcb\x88\x5b\x38\xb4\xde\xe9\xad\x79\xa2\xf1\xf9\x02\xe0\x5d\xaa\x6b\xf9\x62\x79\x11\xdd\x6e\x35\xab\x21\x38\x5f\x61\x1c\xfa\xcf\xb4\xc6\x8d\xa1\xe9\xb7\xe3\xe7\x5a\xbe\x97\x1a\x83\x24\xe2\xff\x93\x60\x0e\xf4\xc3\x35\x3f\xd1\xac\x7c\xb3\x4b\xa0\x78\x79\x9f\xe7\x05\xdd\x57\xf9\x14\xe6\x0d\xc5\xc4\x0f\x44\xa6\x98\xf8\x01\x33\x9e\xf7\x45\x00\xf2\x02\x28\x20\xf6\xb0\xfb\xd6\x4e\x02\xab\x72\xe2\xb2\x15\xb7\x97\x61\xd2\xef\x7d\x5f\xb3\x51\xfa\xf6\xd5\xbb\x9b\x07\x56\x11\x80\xf2\x0c\x47\xc8\x6c\x9a\x43\x16\x4f\x75\xcc\xca\xe6\x7b\x08\x9a\x42\x2b\x86\xcd\x35\xe8\xa7\x47\x4b\xc7\x2d\xc3\x3d\x24\xbd\xc1\xe4\x1d\x94\xf3\x83\x6e\xe8\x01\x5f\x2e\xb3\x12\xaf\xc6\xce\xeb\xbe\x53\x21\x25\xb8\x1e\xe2\xc5\xef\x5e\x0e\xe1\xa9\xd3\xc6\xee\xf7\x52\x3c\x3e\x7f\xbc\x2a\xf8\x4e\xed\xf1\x51\x69\x8e\x6a\xf8\xee\xfa\x56\xfc\x6a\x9a\xe1\x48\x1e\x0a\xdc\xd3\x3b\xdd\x03\x58\x7d\xaf\x06\x16\xb1\xef\x74\x8f\xb0\x7f\xc6\x94\xb0\xf0\xe5\xbe\x76\x6a\xb8\xd7\x4d\x9c\x6e\x37\x97\xaf\xd0\x7c\xa4\x1b\x95\xb3\x1d\xae\x1a\x5f\x00\x0a\x02\x7c\x6a\xc4\xe5\xe8\x6d\x21\xc0\x07\xd6\xa9\x7b\xdc\x8d\x74\x1f\x08\x98\x3f\x07\x32\x95\xb2\xc9\xdd\x20\x50\x7a\x26\xf1\x95\xd0\x85\xe0\x17\xb9\xfa\x54\x33\x28\xcb\x7c\xee\x4e\xd3\xaa\xe0\xe3\xf9\x36\x5e\xe2\xf9\x42\xbf\xbd\x1c\x59\x26\x72\x3d\xd4\xeb\xc5\x18\x67\x65\x89\x02\xb2\xa6\xad\x85\x1d\x28\x26\xa8\xa3\x2b\xc5\xbc\x44\x7e\xd6\x3e\x27\xec\x82\x3f\xdc\x03\x3e\x70\x3c\xe5\x50\x0e\xd3\xf1\x4a\xdb\x09\xd4\x24\x91\x21\xcc\xfa\x48\x4e\x18\x7c\x60\xc9\xa7\xcf\x49\xe8\x4b\x61\x1c\x95\x63\xa8\x3c\x5a\x21\x49\xf7\xb8\xab\xb2\x14\x96\x75\x73\x22\x85\x95\xcd\xf8\x8c\x30\x46\x68\x48\x9b\xe3\xab\x2c\xc1\xfd\xfd\x3a\x3b\x3c\xa4\xd9\x34\xf5\x7a\xe7\x43\xea\x60\x91\x8d\x47\xd6\x6c\x91\x2d\x4f\xae\x19\x56\xf6\x7d\xdc\xf7\xfb\xbe\x2b\x36\xfd\x0c\xe4\x9e\xf8\x66\x06\xf1\x67\x8e\x39\x99\x01\x51\xb8\x86\x1c\xe8\xfd\xdb\xeb\x00\x30\x95\x07\x38\xd9\x6e\x36\x9d\x36\xaa\xde\xd3\x85\x9d\x37\xf4\x29\x5e\xd9\x36\xd6\xcf\xe1\x4f\xea\xc1\x8e\x64\x72\xdd\x66\x31\xf0\xdf\x62\x22\x10\x27\x80\x0f\x23\xce\x83\x81\x8e\x19\x49\x7b\xcf\xb2\xb8\x22\xc8\xca\x2b\x01\xdd\x89\xc3\x68\x72\xe0\x80\x49\x07\xf1\x1c\xbc\xc1\x4b\x58\xf5\x60\xad\xaf\x7b\x49\x5b\x02\xa6\xd3\xbd\xae\xb7\xd6\x7a\x71\x23\xfd\x2e\x14\xea\xec\x76\x5e\xe2\xda\x6e\x4f\x80\x73\xe4\x51\x5a\x26\xa1\x0f\x94\x36\x9d\x47\xd8\xad\xd8\x36\xb7\xcb\x46\xfb\xf6\xc5\xf2\x50\x03\xd4\x5c\x7a\xcc\x32\x41\x18\xf6\x35\xc7\x50\xae\x69\x16\xb1\x6c\xec\xc5\x2f\x1c\x5a\x99\x26\x53\x5e\xec\xc4\xc8\x42\x56\x2e\xdc\x65\xc9\x1d\xfa\x8b\x84\xdc\x6b\xfc\x9a\x01\xe5\x24\x9b\x51\x0a\x00\xee\xd4\xb1\xc6\x18\x4b\x0c\xf4\xef\xea\x48\xb1\x95\x16\x00\xb7\x50\x5d\x04\xdb\x2a\x23\xbe\x7d\xec\xdc\xee\x09\x65\x3d\xfe\x6e\x56\x06\xf4\xed\xfd\xb8\xa7\x7b\xaa\xfa\x77\x45\xcf\xf3\x61\xa4\x73\xcc\xc0\xda\x40\x19\x10\x57\x90\xf1\x50\x51\xb7\x50\xca\x55\x69\xcc\x7b\x9b\x06\x2f\x37\x69\x2c\x8d\x21\x42\x17\x94\x49\x05\xe6\x44\x42\xdf\xc1\x20\xfc\xdf\xe2\x17\x89\x2b\x39\x36\x7c\x45\xa2\x4e\x8a\xd3\x33\x7c\x55\x22\xa8\x4f\x0c\xb9\x97\x9f\x92\x15\x05\x0d\x24\x64\x87\x99\x1a\x5e\x18\xbc\xc7\xa7\x8c\x07\xd5\xd6\x9d\x6e\x94\x71\xfc\x9c\x08\x27\x8a\x6b\x4e\x9c\xae\xf0\x9d\xf7\x7d\xbd\x45\xdc\x61\x7d\x63\x8c\xb6\xe7\x09\x33\xcb\x02\x68\x6c\x40\x1a\xd4\x7b\xbd\x8d\xcf\xd8\xb0\x48\x80\xe6\x31\x24\x85\x78\x15\x72\x03\x02\xbe\x49\x58\x6f\x40\xae\x04\xc2\xd3\x61\x49\x73\x4c\x6f\x58\xb2\xcc\x79\x95\xf2\xe2\x68\xb5\xeb\x34\x56\x4f\x83\x0f\xcc\xe2\x48\xb5\xeb\xe2\x25\xfb\x94\x9a\xab\x40\x29\x35\x57\xfd\x52\x2a\xf3\x80\x9c\x87\xb5\xeb\xda\xb9\x2e\xb0\xb1\xdb\xdb\xeb\x92\x57\xa6\xdc\x24\x1f\x7e\x0b\xc2\xfe\xa3\xde\x3a\xbf\x1d\x94\x7b\x24\xac\xe9\x8e\xdf\x65\x25\x78\x2a\xe5\x53\x87\x53\xa7\x38\xdc\x5f\x3b\xed\xd5\x1f\x1f\xe1\x51\xe8\x23\xaf\xdb\xf5\xa3\xef\x8a\x6d\x47\xe3\xdd\xcb\x6c\xdf\xd1\xcd\x09\xfa\x44\x4b\xac\x02\x5d\x20\x8b\x6b\x1c\x5e\x21\x21\x1d\x81\x3d\xf2\x4b\xd2\x86\x0d\x21\xc9\x82\x71\x3b\xc8\xe5\xc0\xd0\xae\x9d\x3d\x30\x2c\x3b\xa1\xc4\x27\xa2\xf0\x82\xf2\xdb\x80\xe6\x17\x4c\x4e\x0d\xa4\x07\x4d\xc2\xa3\xd7\x7c\xa3\x31\x34\x0f\xdf\xb9\x7e\x69\xe8\x42\x72\x5c\x25\xba\x4b\x96\xe5\x57\xd0\xfe\xdc\x98\x3c\x6d\xff\x8c\xb7\x84\x5e\x3c\xcc\x63\x78\x09\x34\xb2\xf7\xcd\x4e\xa6\x59\x7f\x45\x09\x71\x47\xa6\x90\x22\x0d\x4c\x85\x8e\x1d\x43\x28\xec\x08\xde\x87\x15\xd7\xe8\x09\x12\x3b\xeb\x94\x4f\x8a\x73\x51\xe8\x2d\xe4\x45\x45\x3b\x2f\x1c\x4a\x87\x80\x60\x71\xe4\x43\xb8\x8f\xc5\x91\xc7\xb8\x76\x75\xa7\xcc\x16\xa7\xdd\x7f\xc0\xa7\xb8\xc6\xcf\x48\x21\x8a\xe3\x81\x87\x11\x76\x64\x2b\x20\xa4\xe0\x99\x84\x1d\xd3\x46\xf1\x59\x65\x23\x1f\x9b\x5c\x28\x7a\x85\xdf\xcb\x2d\x64\xd8\x93\x9b\x25\xe7\x47\xb6\xa5\x3a\x9b\xb3\xac\x5f\xaf\xdf\x4c\x20\x17\x56\x37\xe7\x2c\x70\x03\xce\x59\x58\xfb\x78\x84\x81\x5b\x1e\xeb\xd1\x78\x78\x81\x7b\x1e\xae\x96\x00\x17\x41\xea\x0d\x5d\x4e\xbe\x10\xcf\xa0\x00\xbe\x8b\x6d\x5a\x8a\x62\x88\xeb\x0e\x92\x40\x96\xfc\x51\x9c\xdd\xcf\x4b\x3b\xba\xf4\xfb\x2e\x81\xa7\x67\x06\x39\x5e\x1d\x14\x4e\x92\x27\xf9\x61\x45\x1a\xa3\xef\xd5\x32\x89\x09\x72\x4e\xe1\xc8\xa6\xf1\xdc\x31\x79\x5d\xe2\x49\xe3\x22\x26\x82\x94\xad\xec\x89\x15\x10\xe8\x25\x7d\x97\x40\x78\x38\x7f\x2f\xbb\x08\xf5\x92\x13\x66\xb5\x9a\xbc\x4e\xc3\x8f\x44\xa5\x61\x20\xa7\xe1\x8c\xd1\xd1\x65\xbe\x65\xb1\x8b\xa1\xfb\xc1\xde\xeb\xe0\x9d\x4b\xf0\x37\x9c\x94\xb6\x4d\xfa\x4e\x98\x03\x04\xa3\x4e\x9b\x98\xbd\xd3\x51\x6d\xbe\xc2\xaf\x62\x76\x31\x8f\x80\x45\x4d\xb0\x89\x4d\xdc\x2a\xcf\x25\xa2\xec\xdb\x44\xca\x84\x33\xc7\xe7\x57\x91\x36\x74\x3c\x39\xe9\x4c\xa7\x37\x2a\x1e\x66\x72\x6f\xae\xf5\x46\x15\xc0\xb0\x9d\xbb\x10\x47\x0d\x36\xf2\x5b\xf1\xc6\x74\xc7\x49\x27\x72\x54\xdc\x93\x84\x29\x52\x46\xe3\x09\x73\x46\x18\x4a\x58\x26\x79\x80\xe6\x1d\x29\x03\xe7\x2d\x69\xca\x89\xb7\x03\xdf\x8a\x4b\xab\xf8\x39\x27\x4d\x28\xba\x51\x2d\x86\x06\x68\xeb\x58\x82\xe9\xfa\x2c\xe4\x88\x4b\xcc\x49\xec\x11\x74\x8b\xd8\x70\x50\x2d\x16\x1b\x0d\x50\xa1\x3d\x18\x45\x63\xa7\xb7\x3b\x7c\xc8\x24\x6b\x15\x05\xd3\x38\x1a\x2f\x3f\x89\x17\x21\x3f\xc7\x00\x82\x1a\x96\x06\x35\xca\xb1\x90\x86\xa5\xae\x31\x01\xf7\x71\x29\x9c\x36\xdb\x8e\xa2\x48\x7c\x77\xb2\x78\xdd\xec\xe4\x20\x1b\x7e\xf5\x2a\x22\xba\x4a\xa9\x25\x36\x28\xb3\x8c\x2d\x84\xae\x88\x38\xe8\x4d\xf0\x6f\x49\xcd\xc7\xe0\x15\x45\xc1\x6d\x53\xcb\x61\xcb\xc7\xd0\x97\xc3\x16\xdf\xd8\x74\x05\x6a\x94\xeb\x54\xb6\x43\x44\x49\x6f\xba\x47\x10\x38\xbe\x5c\x94\x43\xe3\x7b\x0c\x6c\x17\x59\x28\x81\x17\x1a\xb2\x02\x57\x78\xc1\x21\x79\xc1\x2e\x14\xc1\x50\x67\xa9\x04\x46\x39\x7b\xb0\x00\x1f\xb7\x13\xf8\xf3\xab\x05\xe0\x5c\x91\x8c\x53\x08\x14\xc8\xc5\x29\x04\x50\x2c\x18\xe6\x42\x21\x24\xcf\x6f\xdb\x06\x17\xf5\x55\x33\x50\xbc\x6b\xf8\xf7\x4e\xba\xbb\xe8\xbc\x5e\x9c\x47\x84\x34\xd7\xec\x54\x3b\x76\xa4\x51\xd0\xcf\x04\xaf\x3e\xf9\xe0\x06\x81\xcb\x37\x64\x60\x40\x08\x3b\xba\x10\x11\x02\x7e\x16\x00\xea\x93\x6a\xc6\xcc\x23\xea\x57\xfa\x66\x17\x84\x84\xc6\x86\x6b\x6c\xa3\x31\xda\x6c\x81\x3f\x92\x87\x77\x84\x59\x7a\xf5\x38\x34\x1d\x15\xd9\xa0\xd0\x9e\xac\x3f\x56\x1f\x06\xa2\x0a\x6e\xfe\xc1\x79\x9e\x1f\x0f\xed\xc8\x30\x33\xf1\xfc\x0f\xb0\x18\x16\xa6\xc5\xf0\x20\x75\x0c\x17\x82\xf1\x61\x08\x92\x43\x87\x44\x78\x76\x5f\x67\x29\x0d\x46\x28\xd6\xaa\x3a\xd5\xe0\xed\x6d\xe4\xb6\xf0\x21\x2e\xbb\x54\xb2\x55\x05\xc4\x53\xfe\x2c\x60\xb4\x21\xd3\x02\x65\x91\xb6\xf4\x92\xd2\x18\x65\x76\x9d\x21\x98\xeb\x08\x98\x43\x3d\xa1\x69\xec\x96\x53\xa6\x90\xa1\x66\x04\xba\xec\xba\x19\x35\x72\x5d\x28\x4f\xc3\x00\xfe\xd9\x9d\x93\xac\x4f\xd3\x61\x0c\x59\xb6\xc7\x59\xbc\x9a\xb5\x36\xda\xdc\x78\x44\xc2\xe5\x8c\xcf\xf9\xf8\x56\x1f\x88\xf6\x1f\x43\x68\x02\x3e\x4e\x0e\x5e\x1c\x99\xe7\x64\x11\xb7\xed\x0c\xe3\x8d\x55\x18\xb9\x92\x8b\x50\xb8\xca\xd9\x4b\x3b\x4b\xc5\x06\x65\xb2\x47\x75\xe8\xab\xa8\x0b\x2f\x35\x51\xd4\xd1\xb3\x0f\x3f\x7c\x74\x21\xec\x68\x81\xef\xc3\x1f\x3e\x02\xca\x0f\x7f\xfc\x48\x58\xf9\xc1\x5d\xc6\x9a\x1e\x4a\xcc\x4a\xfc\xf0\xd1\x7d\xef\x86\xe6\xfb\x69\x59\x21\xfd\x04\x0c\x32\xff\x47\x42\xdc\xcb\x41\x65\x8f\xc0\xe3\x5c\xa6\x64\xed\xf8\x89\x6c\xb2\x97\x9e\xb5\x21\x60\x4f\x15\x1f\x1e\xe0\x16\x85\xef\x09\x59\xa9\x97\xcb\x5d\x4c\x24\xe3\xe1\xa1\x67\x97\x2e\xc4\x6f\x14\x28\x92\x9f\x61\xca\x0a\x7c\x4f\x47\xb8\xdf\x53\xd1\x7f\xc1\x8e\x02\x82\xdf\x2a\x7a\x2b\x3e\x22\xe0\x97\xe1\xbf\x02\x01\x45\xa7\x4c\x18\x42\xb4\xca\xaf\x6a\x04\x87\xe1\x4c\xcd\xa0\x04\xd5\x0a\x34\x54\x7f\x39\x22\xa2\xc7\x24\x1a\xe7\x6f\x61\xde\x16\xaf\x3d\xe6\x08\xf1\x85\xaa\x93\xd4\x99\xa1\x23\x22\x7d\x35\x36\x26\xd5\x14\x5d\xa4\xd8\x57\x23\xc4\xb7\x3c\x67\xf8\xf8\x85\xcf\xaf\xef\x2c\x11\x2f\xbe\xc6\x1a\xa8\x66\xd4\x21\x3e\xe5\xfa\xcf\x2e\x1a\xe6\x4c\xb1\x8e\xc0\x7f\x02\x7e\x5e\xdc\x7f\x48\x8b\x7b\x11\x5d\x58\xdc\x18\xdb\xd6\xcb\x6d\xb6\xb2\xe5\xb6\xe8\x2c\x36\x11\xcb\x70\x3f\xe7\x6b\x3f\x47\x18\xae\x95\x22\xca\xd0\x38\xc4\xf9\x95\x2d\xab\x3e\x78\x6b\xbb\x8f\x95\xdc\xc2\x22\x97\x5b\x5b\x01\xf7\xe2\x9b\xeb\xc8\xc8\x8c\x3d\x54\xf4\x09\xbf\x7e\x00\x06\xf2\x03\xc7\xb2\x17\x67\xae\xfa\x61\x8f\x09\xf4\x12\x24\x26\xec\x30\x61\x67\x47\x7c\xde\xe7\x87\x16\x3f\x5b\x79\xc4\xaf\x03\x7e\x1d\x94\xba\xa3\xc2\xb8\x9f\xfd\x20\xf6\xd6\xf8\x1d\xa6\x1c\xf1\xfb\xa8\x24\x3f\x0e\x44\x31\xf3\x2f\x80\x35\x85\x8f\x33\x57\x51\x75\x9c\x1e\x3e\xce\x5c\x05\xb5\x72\x2a\xfd\x3c\x73\x55\x2b\x8f\x9c\x84\xbf\xce\x5c\x05\xd5\x73\x12\xfd\x3c\x43\x31\xc4\xef\x02\x42\xfa\x7d\xe6\x2a\x68\x07\x27\xd2\xcf\x33\x57\x0d\xf2\x50\xa7\x76\xf1\x2f\x4c\x4d\xad\xe2\x5f\x55\xf5\xa1\x1d\x6c\xff\xbb\x35\xea\x63\x15\x5e\x83\x4e\x8f\xb6\x3f\x1d\x6c\x1f\xbc\xf7\xd5\x40\xe7\x57\xf8\x30\xa0\xb7\x62\xec\x3b\x2b\xdb\x55\xc5\x01\x90\x6a\x6d\xfa\x31\x9a\x84\x39\x92\xfa\x63\xcf\x60\x29\x62\x3e\x5d\x5f\x3e\xf6\x6a\x55\xe1\xf9\x85\xb7\xb6\x5e\xa3\xf0\x89\x27\x17\xe8\x0c\xf3\xed\xdf\xfe\x86\xf0\xfa\x77\xf5\xf7\xbf\x8b\x57\xbf\x7c\x27\xd4\xa7\x46\xa9\xd6\x89\x3d\x3b\xe8\x05\xb0\xbd\xfc\xf4\xac\x80\x5c\x55\x7c\xab\x94\x3d\xc2\xe8\x56\x29\x56\x5f\xfd\xff\x01\x00\x00\xff\xff\xa6\xe2\xf2\x70\xb8\xed\x00\x00") +var _confLocaleLocale_enUsIni = []byte("\x1f\x8b\x08\x00\x00\x09\x6e\x88\x00\xff\xb4\xbd\x6d\x72\x1c\x39\x92\x28\xf8\x3f\x4e\x81\xd2\x18\x4d\x55\x66\x54\x96\x55\xf7\x9b\xb7\x6b\x65\xc5\xea\x65\x51\xa5\x8f\x19\x4a\xe2\x88\x52\xf7\x9b\x95\xc9\xa2\x90\x11\xc8\x4c\x0c\x23\x81\xe8\x00\x82\xa9\xac\xb6\xbe\xc1\x1e\x60\xcf\xb7\x27\x59\xf3\x0f\x7c\x45\x44\x52\x52\xf7\xbc\x3f\x64\x06\xe0\x70\x00\x0e\xc0\xe1\xee\x70\x38\x64\xdf\xd7\xad\x72\x8d\xb8\x10\x97\xa2\x97\xda\x74\xca\x39\xe1\x54\xb7\x79\xb2\xb3\xce\xab\x56\x3c\xd7\x5e\x38\x35\xdc\xeb\x46\x55\xd5\xce\xee\x95\xb8\x10\x2f\xec\x5e\x55\xad\x74\xbb\xb5\x95\x43\x2b\x2e\xc4\xd3\xf0\xbb\x52\x9f\xfa\xce\x0e\x00\xf4\x2b\xfd\xaa\x76\xaa\xeb\xa1\x8c\xea\xfa\xca\xe9\xad\xa9\xb5\x11\x17\xe2\x56\x6f\x8d\x78\x69\x28\xc5\x8e\x3e\x24\xbd\x19\x3d\xa5\x8d\x7d\x48\x7a\xdf\x57\x83\xda\x6a\xe7\xd5\x20\x2e\xc4\x5b\xfe\x59\x1d\xd4\xda\x69\x0f\x35\xfd\x85\x7e\x55\xf7\x6a\x70\xda\x02\xf6\x3f\xd3\xaf\xaa\x97\x5b\x00\xb8\x91\x5b\x55\x79\xb5\xef\x3b\x89\x05\xde\xf1\xcf\xaa\x93\x66\x3b\x12\xcc\x35\xff\xac\x9a\x41\x49\xaf\x6a\xa3\x0e\xe2\x42\x5c\xe1\xc7\x6a\xb5\xaa\x46\xa7\x86\xba\x1f\xec\x46\x77\xaa\x96\xa6\xad\xf7\xd4\xcd\xf7\x4e\x0d\x82\xd3\x85\x34\xad\x80\x74\xec\x82\x6a\x6b\x6d\x6a\xe9\xb8\x1f\xaa\x15\xda\x08\xe9\x2a\x44\x65\xe4\x3e\x94\x86\x9f\x95\xda\x4b\xdd\x01\xd5\xe0\x7f\xd5\x4b\xe7\x0e\x16\x49\x7b\xc3\x3f\xab\x41\xd5\xfe\xd8\x2b\x24\xc1\x93\x77\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\x27\xfa\xbc\xc9\x3e\xab\xbd\x1e\x06\x0b\xa4\x7d\x85\x3f\x2a\xa3\x0e\x35\xe0\x11\x17\xe2\xb5\x3a\xe4\x58\x20\x67\xaf\xb7\x03\x51\x11\x32\x5f\xe1\x17\x60\xa1\x3c\xc6\x44\x59\x11\xdb\xc6\x0e\x77\x9c\xfa\x0c\x7e\x4e\x50\xda\x61\xcb\xb9\x65\xbb\xa4\x91\x5b\xc5\xb9\xaf\xf0\xa3\x00\x70\x95\x6c\xf7\xda\xd4\xbd\x34\x0a\x48\x77\x09\x5f\xe2\x06\xbe\x2a\xd9\x34\x76\x34\xbe\x76\xca\x7b\x6d\xb6\x30\x06\x97\x94\x24\x6e\x39\xa9\xca\xf2\x62\xda\xd1\x8e\x71\x94\xc5\x85\xf8\x4f\x3b\x0e\xe2\x86\x3e\x29\x2f\x2b\x84\x99\xb1\x64\x25\x1b\xaf\xef\xb5\xd7\x8a\x2a\x0b\x1f\x55\x3f\x76\x5d\x3d\xa8\xbf\x8e\xca\x79\xc8\xba\x19\xbb\x4e\xbc\xe5\xef\x4a\x3b\x37\x62\x89\x97\xf8\xa3\xaa\x1a\x69\x1a\xec\xce\x15\xfe\xa8\xaa\x0f\xda\x38\x2f\xbb\xee\x63\xc5\x3f\x00\x98\x7e\x11\x9d\xbc\xf6\xd8\x58\x4e\x14\xb7\x5e\xf5\x0e\x08\x2d\x9e\xe9\xc1\xf9\x27\x5e\xef\x95\x78\x3b\x9a\xaa\xb5\xcd\x9d\x1a\x6a\x58\x90\xb8\x94\x5e\x6e\xc4\xd1\x8e\x8f\x07\x25\x86\xd1\x18\x6d\xb6\xe2\xb9\xdd\x3a\xa1\x8d\xd3\xad\x12\x4f\x11\xfa\x5c\xf4\x9d\x92\x4e\x89\x41\xc9\x56\xfc\x24\x85\x97\xc3\x56\xf9\x8b\x47\xf5\xba\x93\xe6\xee\x91\xd8\x0d\x6a\x73\xf1\xe8\xcc\x3d\xfa\xf9\xf9\xa8\x5b\xd5\x69\xa3\xdc\x4f\xdf\xcb\x9f\x45\x23\x07\xb5\x19\xbb\xee\x28\xd6\x6a\x03\x6b\xe5\x68\x47\xd1\xec\xa4\xd9\xc2\x3a\x39\xfa\x1d\x54\xa8\x8d\xf0\x3b\xed\x04\x2c\xd4\x6f\x2a\xa0\x92\xf6\xaa\x6e\xd7\x81\x29\x61\x83\x30\x79\x50\x4e\xbc\x3a\xde\xfe\xc7\xf5\xb9\xb8\xb1\xce\x6f\x07\x85\xbf\x6f\xff\xe3\x5a\x7b\xf5\xc7\x73\xf1\xea\xf6\xf6\x3f\xae\x85\x1d\xc4\x3b\xfd\xf4\x97\x55\xd5\xae\xeb\x40\x97\xa7\xd2\xcb\x35\x74\x21\x8e\x15\x64\xd2\x52\x8a\x79\xb8\xa0\x80\xe5\x21\x7b\x73\x1e\x17\x29\x2f\xd0\xc5\xe5\xd8\xae\x6b\x5e\xc3\x11\xc7\x6b\x58\xc8\xed\x3a\x11\xf8\x86\x48\x37\x3a\x25\x5e\xbe\x7e\xfd\xe6\xe9\x2f\x42\x99\xad\x36\x4a\x1c\xb4\xdf\x89\xd1\x6f\xfe\xcf\x7a\xab\x8c\x1a\x64\x57\x37\x1a\x68\x33\x38\xe5\xc5\xc6\x0e\xd4\xd3\x55\xe5\x5c\x57\xef\x6d\x0b\xb5\xdc\xde\x5e\x8b\x57\xb6\x55\x55\x2f\xfd\x0e\x1b\xe2\x77\x95\xfb\x6b\x07\xf4\x8a\x15\xbe\xdb\x29\x81\x53\x17\x81\xec\x26\x90\x47\xb4\xdc\xc6\x95\xf8\x69\x3d\xfc\x9c\xb5\x4b\xae\x9d\xed\x46\xcf\x25\x0e\x3b\x65\x70\x9c\x9c\x97\x83\x17\xd2\x05\xd6\xbf\xaa\xd4\x30\xd4\x6a\xdf\xfb\x23\x8c\x0e\xb7\x61\x8a\x9d\x90\x34\xd2\x18\xeb\xc5\x5a\x09\x84\x5f\x55\xc6\xd6\xb4\x52\x81\x6d\xb6\xda\xc9\x75\xa7\x6a\x62\xe9\x43\xe0\x48\xff\x09\x93\x83\x0a\x32\x84\x28\x20\x80\x62\xb0\x4d\x20\x77\x86\x99\x23\x8d\x40\xa4\x82\x97\x7a\xde\xc2\xc0\x17\xe2\xa8\x11\x6b\x88\x09\xb3\x16\x56\x61\x18\xc2\x9c\xb9\xec\xfb\x4e\x37\x54\xf5\x73\xca\x4b\xd3\x07\x36\x4d\x1e\xfb\x1c\x0e\x87\x3f\xe4\x65\x93\x60\xf4\x40\xd2\x41\x14\x3c\x18\xcb\xef\xd4\xa0\xc4\x6e\xdc\xd2\xc6\xd1\xd9\xb1\xfd\x06\x39\x78\xa0\x6f\xe2\x93\xe2\xad\xb5\x9e\xc6\x3c\x02\xa4\x2a\x2e\xbb\x0e\xf7\xe9\x41\xed\xad\x07\xc2\x71\x31\xe0\x45\x07\xdd\x75\xd0\x53\x27\xef\x55\x2b\xbc\xa5\xf5\xd6\xea\x41\x35\x80\x78\x55\x0d\xa3\xa9\x79\xb2\xbf\x1d\x0d\x4d\xf8\x90\x56\xce\x2c\x84\xda\x8f\xce\x8b\x9d\xbc\x57\x40\x78\x10\x16\xbc\x5d\x6c\x27\x76\x69\x18\x0d\x2e\xe1\x55\xd5\xda\xbd\xc4\x8d\xff\x29\xfe\xe0\xef\x1c\xbf\x76\x42\x6e\x36\xaa\xf1\x4e\xdc\xde\xbe\x10\x4d\x67\x8d\x12\xef\xdf\x5e\x3b\x58\x06\xbb\xba\xb7\x03\x0a\x09\xb7\x2f\xc4\x8d\x1d\x7c\x4c\xcb\x08\x0d\x10\x66\xdc\xaf\xd5\x20\x0e\x3b\xdd\xec\x88\xec\x50\x02\x66\xb1\x1a\x84\x76\x62\x74\xda\x6c\xcf\x45\xa7\xa0\x07\xda\xd3\x04\x80\x3e\x84\x59\x07\xe0\x1b\x25\xfd\x38\x28\xdc\xf4\xeb\xf5\xa8\x3b\xaf\x4d\x0d\x15\x32\x1e\x64\x0b\xe2\x17\xca\xc0\x12\xb7\x98\x71\x02\xbe\xee\x6d\x4f\xe2\x0c\xae\xaa\x75\x56\x8e\x11\xc2\x92\x87\x01\xb4\xbd\xa2\xf9\xee\xb8\x49\x30\xe1\x46\xed\x76\x62\x33\xd8\xbd\x70\x47\xe7\xd5\x1e\x0b\xb6\x52\xed\xad\x59\x55\x3b\xef\xfb\x40\x9b\x17\xef\xde\xdd\x10\x71\x62\xea\x43\xd4\x91\xd9\xdc\xc5\x59\xd2\x81\x60\x65\x04\xa0\x85\x69\x3c\x0e\xdd\x64\x86\xbf\x7f\x7b\x1d\x72\x4e\x8c\x1c\x34\xe1\x7b\xf8\x73\x9b\x06\x10\x67\x82\xb3\x7b\x75\xc0\xf9\xae\x8d\x40\x61\x67\x55\x75\x76\x5b\x0f\xd6\xfa\x30\xdd\xaf\xed\x96\xa6\x78\x91\x91\x6a\x7a\x1a\x26\x2d\x10\xe7\x30\x80\xf0\xd7\xd9\x2d\x32\x3c\xa0\xd7\xaa\x52\x06\x59\x4b\x63\x8d\xb3\x9d\x0a\x9c\xf3\x57\x4c\x15\x57\x94\x4a\x4c\x74\x01\x32\x8e\xd2\x4b\xe0\x2c\xad\xc6\x1e\x7b\x4b\xfc\x14\x00\xce\x85\xec\x9c\x15\xfd\xa0\x8d\x87\x8a\x71\x8c\x18\xc3\xaa\xaa\x6c\x0f\x25\x32\x1e\xf2\x86\x13\x12\xe3\xc0\x7e\xc7\x7c\x14\xf5\x70\xe6\xe8\x26\xdb\x9c\xdc\xde\xf7\x35\xef\x44\xb7\xaf\xde\xdd\xd0\x76\x84\xa9\x38\x09\x2e\xc4\xb3\xc1\xee\x53\x42\xa2\xcf\x2b\xc0\x87\x30\xb2\x6d\x07\xe5\xdc\xb9\x78\xfb\xec\x4a\xfc\xeb\x1f\xff\xf0\x87\x95\x78\xe9\x81\xed\x01\x27\xf8\x2f\x58\xc1\x92\x47\x21\x81\xda\x41\xf8\x9d\x12\x8f\x80\x8d\x3d\x12\x3f\x61\xee\xff\xa5\x3e\xc9\x7d\xdf\xa9\x55\x63\xf7\x3f\xc3\x2c\xdd\x4b\xbf\xaa\x20\x47\x0d\x81\x69\xdc\x2a\xd3\xaa\x81\x05\x57\xce\xca\x58\x2f\x67\x67\x62\x2c\xc9\xef\x40\xfb\x8d\x1e\xf6\x69\x80\x82\x64\x0f\x23\x05\x39\x41\x0a\xd4\x5d\x6d\xac\xd7\x9b\x63\x02\xc5\x9e\xbe\x86\x44\x9e\x9a\x15\xaf\x34\xde\xae\x22\x8d\x69\x5d\xe2\x0c\x7c\xe3\x77\x6a\x08\xe4\x76\x89\xde\x76\xb3\x01\xa1\x65\x32\x5b\xde\x50\x2a\xcd\x96\x1c\x24\x4e\x93\xa7\xcc\x30\xae\x9e\xbe\x16\xea\x5e\x19\x98\xd8\xfd\x60\xdb\xb1\xc1\x99\x13\x66\x4c\x27\x06\xe5\xec\x38\x34\x8a\x27\x6a\x64\xc8\xd0\x34\xe0\xfa\x8d\xec\xba\xe3\xaa\x0a\x1b\xe3\x76\x90\xf7\xd2\xcb\x21\xab\xe2\x79\x48\xe2\xd6\xcf\x60\x67\x8d\x8a\x25\xa0\xe7\xcd\xe8\x3c\x70\x0f\x6c\x85\xa3\x46\x51\xb6\x13\x72\x50\x62\xec\x3b\x2b\x5b\xd5\x8a\xf5\x11\x79\xbc\x83\xb9\xd0\xaa\x8d\x1c\x3b\xbf\xaa\x36\xaa\x05\xa6\xa4\xda\x9a\xeb\xea\xac\xbd\xc3\xca\x98\x54\xcf\x02\x80\xb8\x64\xa4\xd7\x08\x71\xaa\x64\x6c\x2c\x97\x8f\x60\xb1\x51\x5c\x83\xb7\x28\xa2\xa4\x7c\xdb\x2b\xc3\xdd\x08\x82\x89\x00\xb9\xa3\x15\xd6\x88\x4e\xaf\xb9\xd3\x89\x96\x13\x21\x23\x50\xe7\x16\xf4\xdb\x3c\x6f\xb1\xc0\x8c\xa8\x38\xe1\xdd\xb4\xec\xb9\xb0\xa6\x3b\xb2\x30\x02\x4b\x8c\x14\xc8\x20\x97\xb8\xc4\x96\xa2\xba\x16\x38\x12\x6b\x6d\x65\x7e\xac\xf6\x2d\x89\xbd\xe2\x5e\x76\xba\x05\x8c\x01\x01\xec\x16\xcb\x6d\x59\x55\x2c\x2b\xd7\xac\x69\xd7\xf7\x1a\xf5\xd8\xb8\xc4\x08\x25\x6b\xdf\x40\xe1\x3f\x03\x00\x28\xc8\x6e\xb1\x6c\x6c\xcd\x1b\xe8\xa4\x8b\x7a\x2c\xcd\x13\xe8\x2e\xd6\x00\xf2\xbb\x3b\x17\xf7\x1a\xc5\x00\x9e\xe4\x48\x97\x35\xc8\x98\x9d\x82\xaa\x9c\x52\x88\x41\x68\xf3\xfd\xd8\x53\x99\x15\x2b\x71\xac\x57\x05\xb9\x1f\xc4\xc1\xd6\x0a\x90\xd2\x50\xd6\x00\x4e\xcb\x64\x9d\xc8\x7d\x62\xd0\xdb\x9d\x17\xc6\x1e\xce\x89\x28\x87\x9d\x55\xb0\xe6\x5f\x3e\xbd\xf8\x81\xda\xb1\x05\xc9\x23\x16\x02\x99\x45\x8e\xde\x02\x7f\xe1\xa5\x47\x4d\x88\xb2\x1f\x42\xce\xd4\x45\x02\x9a\xea\xed\x33\x51\x33\x32\x3a\xe6\x6f\x79\x1e\x33\xb6\x04\x43\xa5\x83\xee\x4f\x15\x13\x23\x65\x5d\xaf\xde\x5a\xd4\x35\x83\x6e\x07\xc2\x54\xe5\x95\xf3\xf5\x56\xfb\x7a\x03\xdc\x16\x10\x3f\x03\x04\x20\xdb\x29\xe7\xc5\xe3\xad\xf6\x8f\x45\x63\xf7\x7b\x69\xda\x1f\xc5\xd9\x3d\xab\x09\x7f\x04\x36\x0a\x4b\x51\x77\x38\x22\xac\xc1\x0e\x8a\xb4\x81\x60\x3d\x69\xad\x72\x48\x78\x37\xf6\x28\x58\x44\x15\x8b\x35\xc1\xd6\x1e\x0c\x30\x0c\xdc\x2e\xec\x66\xa3\x1b\x2d\x3b\xb1\xd6\x46\x0e\xc7\x88\x05\xb7\xa1\x33\x77\x2e\x5e\xbf\x79\x87\x80\x5b\x0b\x72\x4f\x1b\x00\x56\x95\x36\x38\xb1\x41\x9d\xe0\xc1\xcf\x75\xa9\x90\xa4\xa9\x2d\x8d\x1d\x60\xef\xc7\xde\x84\x82\x27\x24\x65\x10\x1c\x48\x11\xd1\xa0\xcb\x22\x2c\x96\x8b\x42\x2d\x90\x61\x2f\x7d\xb3\x63\x91\x17\xa7\x8d\x76\xe6\xb1\xc7\x96\x36\xe3\x30\x28\xe3\x31\xf9\x47\x71\xe6\xc4\x93\x9f\xc5\x99\x8b\xd5\xe6\x3b\x31\xee\xcf\xb0\x1d\x8b\x8d\x56\x5d\x1b\x5a\x9b\xea\x04\xa9\x9b\x76\xba\xed\x7c\xb4\x20\x53\x50\xe6\x48\xeb\xb7\xe8\x5f\xb1\x30\xe2\xf4\x08\xd3\x3e\x23\x50\xde\xc9\x30\x6f\xdc\x48\x33\xfd\x42\xfc\x45\x75\x8d\xdd\xab\x6f\xc4\x5f\x14\xa8\xfa\xdb\x0e\x47\x4e\x7a\xd6\xc7\xad\x53\x38\xab\xce\x69\xa1\x6d\x46\x83\x7b\x86\x97\x77\x0a\x55\xf8\x34\x50\x4b\xe2\xda\x49\x62\x57\x1f\x76\x76\xaf\x3e\x56\x23\x29\x43\xb6\x6b\xa3\x3a\x8d\x4b\xc8\x0e\x24\x7f\x44\xdd\x3a\xc1\xc4\xd5\xe1\x0e\xda\x37\xbb\x3a\x1a\x1a\x81\x90\x5e\x7d\x42\xc1\x08\xb3\x92\xdd\x11\x96\x16\x64\x55\xfb\x23\xce\x0b\xe8\xf8\xab\x63\x9a\x16\x5a\xb9\xca\xed\xec\x01\xad\x76\x11\xe2\x76\x67\x0f\x68\xaf\x2b\x54\xa6\xd5\x6a\x55\x35\xb6\xeb\xe4\xda\xc2\xa8\xdc\x27\xf8\xab\x3c\xb5\x44\xbe\x3f\xd6\x76\xd8\x72\xb5\xa5\x95\x6a\x7f\x64\xc3\x18\xe7\x92\x61\xcc\x55\xc8\x5e\xd9\xa2\x8a\x5c\xf8\xcc\x55\x6c\x0f\x5a\x69\x53\xa3\xb9\x29\xd4\xfc\xd2\x90\x32\x93\xb7\xb3\xaa\x3e\xb0\xb5\xf5\x63\x15\xe0\x8a\x36\x11\x8f\x26\xa2\xbb\xc2\x04\xe8\x26\x36\x40\x57\x39\x25\x07\x5c\x10\xb7\xf8\xa3\xaa\x3e\xc8\xd1\xef\x3e\x66\xd6\xd0\x3a\xcc\xbc\x60\x15\x45\x8b\x1d\xb3\xc9\x24\xd6\xed\x54\x0f\x12\xe0\xde\xe1\x94\xed\x06\x25\xdb\x23\xeb\x8b\x71\xf2\xfe\x89\x36\x20\x6d\x80\x6d\x7f\x53\x39\x0b\x1c\xa4\xfe\x4a\x14\xbf\x68\xd3\x52\xf9\x72\xf3\x26\x33\xed\xbe\xc7\x69\x62\x87\xe1\x78\x5e\x5a\x12\x76\xd2\x89\xb5\x52\x26\x68\x7c\xed\x2a\xd8\x69\x60\x7a\xc9\x86\x98\x00\x9a\x96\x71\x05\x52\x49\x3b\x93\x2a\xa0\x85\xc4\xb7\xb9\x16\x62\xe3\x2e\x08\x98\x20\x59\x7d\x75\x15\x83\xda\x2b\x50\xd1\xea\x3d\x19\x7a\xe9\x4b\xbc\x52\xd5\xc6\x0e\x5b\x5c\x7b\xb4\x38\x2e\xc4\x33\x4c\x48\xab\x05\x00\x94\xcf\xb7\x1b\x86\x08\x29\x7f\x0a\x86\xf5\xda\xd8\x03\x1a\x5c\x41\xe4\x9a\x0e\xca\xd8\x03\x51\x57\x61\xfb\x22\x49\x08\x85\x70\xa7\x8c\x4f\xa4\xbd\x14\x46\x1d\x44\x0e\xc5\x04\x88\xf4\x05\x78\x60\x73\x3f\xad\x7f\x3e\x73\x3f\x7d\xbf\xfe\x39\xee\x20\xcd\x4e\x35\x77\x34\xa1\xb5\x59\xdb\x4f\x68\xdd\x41\x53\xa0\x12\x06\x16\xf8\x59\x2b\x76\x76\x1c\x58\xc3\x02\x0d\xc4\x2b\xcc\x2d\x46\xb2\x1f\x2c\xf0\xb8\x15\x99\x5e\x15\xad\x98\x34\x4b\xd1\x06\x0b\xf3\x14\xb7\xb9\x30\x51\xfb\xc1\xee\xf4\x5a\x7b\x60\x67\x68\x90\xb8\xc6\xff\x37\x9c\xac\xda\x09\x44\x26\x91\x0c\x91\xf9\x6a\x27\xfa\x58\x00\x1a\x89\xa0\xa9\x7f\x3c\xca\x69\x84\x61\x64\x91\x7e\x9d\xde\x6b\x3f\x9b\xa0\xc0\x8a\x25\x4f\x74\x36\x15\x87\xb1\xc1\x3e\x24\xea\x0e\xaa\x51\xc6\x77\xc7\x38\xa3\x0e\x52\x7b\xf1\x47\xb1\xd7\x66\xf4\xa0\x06\xef\x94\x11\x7e\x38\x0a\x09\x52\xcf\xaa\xda\x49\x57\x8f\x86\x87\x49\xb5\x61\xca\xbe\xd0\xb8\x39\x43\xbd\x61\x61\x65\x50\xa5\x6a\x28\xbe\x8d\x23\xf8\xdd\x8a\x8d\xc6\x58\x0a\x36\x4c\x68\x8f\x06\x3d\x46\x2e\xcd\x05\x3b\x08\xa3\x88\x42\xd8\x7f\x00\x83\x69\x63\x8d\x4a\xc4\xea\x74\x73\x07\x02\x3c\x8c\xef\x7a\xf4\xde\x82\x96\xda\xc1\x1c\xa4\x32\xa1\xcd\x57\x08\x88\x36\x84\x84\xef\x48\xc3\x52\x52\xa9\xc2\x62\x00\xe1\x97\x0b\x7f\x3b\xa8\xef\x52\xf1\xb8\x64\xb0\x04\xa3\xa0\xd2\xd9\x6a\x7a\x8b\x99\x74\x22\x10\xd6\x5c\xd8\x1a\x1b\xb6\xd1\xc6\xd1\x1c\x4a\x6a\x60\x3e\x2c\x0c\xf5\xa9\xd7\x03\xe8\x2b\x43\x12\x14\x56\x93\xba\x92\x42\x3f\xef\xb1\x2f\x5b\x9c\x76\x4f\x6f\x6d\xed\x76\x64\x07\x0a\xcd\x13\x9d\x32\xdb\xc2\x20\x8b\xa7\x7b\x38\x45\xfe\xe7\xaa\x32\xd6\xd4\xa8\x7d\x66\x6b\xe6\xb5\x35\x4f\x30\x2d\xaa\x2f\xa1\x34\x5b\xee\x43\x85\x80\x66\xb0\xe3\x76\xc7\xf6\xbd\xea\x03\x50\xed\x63\xc5\x43\xa1\x32\x9c\x3c\x51\x43\x4e\x18\x32\x5a\x8e\x11\x3e\x08\xc1\x7f\x56\x03\xa8\xfa\x08\x54\x4c\xc3\x53\x23\x52\x12\x24\xf2\xe6\x24\x00\xbd\xcd\x79\x06\x27\x6f\xc6\xee\x5c\x1c\x48\x32\x4a\x65\xa2\x99\x81\x65\x26\x98\x95\x74\xac\x59\x7d\xd8\xdb\x56\x76\x1f\xab\x23\x1e\xd6\xfc\xa7\x72\x95\xc1\x03\x32\x5b\xed\x6d\x4b\x85\x5e\xe1\x8f\xaa\xfa\xb0\xb1\xc3\xfe\x63\x05\xbb\xee\xeb\x89\xb6\x00\xdb\x33\xa7\x65\x12\x2b\x66\xfd\x9a\x1f\x00\xc6\x3e\xdf\x2c\x28\x16\x6f\x55\x3a\x07\xc4\x5f\xb1\xf3\xb7\xb7\x2f\xde\x05\xc3\xc7\xed\x0b\x71\xa7\x18\xf7\x0b\xef\x7b\xf7\x1e\xcd\x79\x64\x9b\x7b\xff\xf6\xba\xba\x91\x47\x90\xe2\x29\x99\x3f\x30\xe3\x9d\x92\x7b\x6e\x24\xfc\x24\x14\x97\xa3\xdf\x71\x22\xfc\xb4\x43\x6e\xc8\xae\x50\x34\xfd\xb5\x50\x63\x68\x15\x55\xaf\xd5\xe1\x97\x41\x9a\x26\x14\x06\x99\x61\x8d\x09\x54\xf2\xca\xee\xf7\xda\xdf\x8e\xfb\xbd\xc4\x33\x4b\xfa\x16\x8e\x12\x38\xfb\x95\x72\x8e\x4e\x69\x39\x7b\x4f\x09\x9c\x7d\xb5\xb3\xba\xc9\x72\x1b\xfc\xae\xde\x0d\x4a\x71\xad\xcf\xc2\x99\x48\x85\x72\x22\x09\x31\xf4\xab\x8a\x6a\xaf\xe2\xc3\xcb\xdf\x66\xe7\x03\xbf\x55\xb2\xeb\x77\x12\x25\xd1\x0c\x0c\x4d\xe1\x6b\x56\xd0\x05\x82\xe0\xc2\x1e\xf7\x6a\xd0\x0d\x1a\x51\xa4\xdb\x7d\xfb\xa4\xfe\x0e\xcf\x76\x64\xe3\xd5\xe0\x4a\x64\xad\xf5\xff\x18\x42\xf8\x4d\xab\xf2\x24\x5e\xd7\xfd\xc3\xcd\x9d\x61\x87\x14\xc4\xa7\xa0\x22\xa7\x7f\x0f\xe4\x2a\x30\x43\xba\x38\x03\x08\xd4\x5c\x12\x54\x04\xc2\x9d\x11\xb4\x18\x2f\x80\x2b\x78\x50\xaf\x8a\x3e\xec\xe5\xa7\xcf\x15\xdc\xdb\x85\x72\x64\x5a\x4d\x85\x58\x13\x93\xdc\xdb\x82\x93\xac\x7e\xab\xc6\xe1\x01\xe0\xf7\x6f\xaf\x57\xbf\x55\xda\x34\xdd\xd8\x9e\x6c\x88\x1b\xd7\xce\x0f\xa0\x81\x3d\x3e\x73\x8f\x01\xa5\xb9\x33\xf6\x60\x22\xfc\x7b\xfa\x16\xf8\xfd\x63\x38\xac\xaf\xb5\x61\x5d\x36\x1d\xdb\x8b\x56\xb7\xb0\x97\xa2\x4e\xba\x4a\x3c\x3d\xd7\x53\x23\x23\x40\x83\x1e\xdb\x11\x22\x2f\x04\x59\x13\x55\x76\xb9\x57\xab\xe4\x60\x50\x83\x1c\x56\x83\x2a\x67\x72\xdd\x0b\x36\xa2\x20\x6d\xa0\xa4\x86\x10\x2b\x3a\x59\x9a\x97\x9b\x70\xaa\x93\xc5\xed\xb0\x5d\x28\xfd\x66\x7e\xea\x75\xa2\xbc\x57\x72\xbf\x80\x20\xf2\xa0\x93\x05\x69\xec\xb1\xd0\xe8\x50\xc3\x2e\x98\xe8\xbc\x1c\x40\xad\x12\x95\x22\xc1\xf3\xb1\xc9\x35\xd5\x48\xe7\xd2\x1a\xb1\xaa\x94\xf1\x6a\x18\xd0\xd1\x23\xb3\x49\xb0\x8d\x88\xf7\xbd\x3d\x68\xd2\x6e\x84\x3d\x1c\xb4\x6e\x92\x62\x4b\x8a\x82\x40\x85\xa8\x14\x56\x71\x1a\xbd\x3d\x18\xd8\xa6\x3e\x87\x1f\xc1\xbe\x12\x75\x6e\xc2\x9a\x23\x66\xe4\x11\xe8\x14\xda\x68\x5f\x51\x9f\x34\x9e\x60\x3c\xd7\xf7\x8a\x2d\x2c\xd1\xb0\x84\x79\xab\xaa\x93\xce\x83\xd2\x4c\xbd\x22\x75\xc7\xde\xc3\x8a\x82\xfa\x20\x97\xca\xd1\x89\x06\x77\x0a\x26\x09\xdb\x6a\x64\xd7\xd9\x83\x6a\xcf\x85\x44\x99\x66\x50\xb4\x40\x65\x77\x90\x47\x87\x76\xc7\xc0\x64\xac\x09\x34\x01\x0e\x62\x8e\x62\x8b\xad\xca\x35\xe2\x55\x95\x0c\x3c\x6e\x57\xc3\xd6\x19\xe5\xb9\x03\x1a\x4e\x90\x43\xb0\x25\xf3\x3e\x13\x52\x78\xa7\xfd\x11\xd4\xf7\x91\x2c\xb9\x94\x9d\x21\x42\x37\x06\xde\x55\x16\xca\x9e\x83\xdc\x2b\x0e\x4a\x48\xe7\xc6\x3d\xd3\x5a\xa3\x9a\x81\x4d\xca\x4c\x6f\xe3\xba\x53\x4f\x48\x7f\xd2\x7e\x55\x81\x92\x9e\x0c\x4b\xb0\x33\x2b\xe3\xc3\x71\x1d\xa5\x93\x39\xc6\x79\xdd\x75\x40\xe9\xe0\xda\x53\xe8\x33\x98\x8b\xeb\x04\xc9\xe4\x76\xba\x17\x16\x0f\x4e\x72\x12\xa6\x69\x9b\x69\x0e\xde\x8a\x56\xa1\x7e\x66\x07\xe1\x07\x69\xdc\x46\xe1\x49\xd2\x5e\x6c\xf4\x00\xe3\x4c\x55\x83\x22\x42\xae\x3c\x27\x6a\x26\x55\x17\xab\xce\x37\x08\x1c\xbb\x6c\xa0\xca\xaa\xe9\x1c\x17\x8f\x2b\xb0\x0d\x48\xd5\x84\xc9\x85\x36\xc0\x34\x9b\x91\x00\x4f\x2e\x8b\x53\xf9\x45\x3a\x6c\x0a\xab\x0b\xd5\x8f\x33\xed\x33\xfd\xae\xc8\x55\xa6\x26\x71\xa7\x58\x15\xef\x30\x27\x08\x42\xd3\x85\x51\x7d\x80\x79\xff\xb1\x22\x91\xbb\x8e\xc7\x41\x57\x24\x82\x93\xfc\x8c\x89\xd5\x7f\x59\x6d\x6a\x3c\xdb\xf8\x37\xab\x0d\x1e\x84\x54\xc5\xf1\xff\xc4\x24\xc4\x4e\x4a\x47\xf4\x4b\x58\x77\xba\x09\x9e\x4a\xc7\x6a\x63\x71\x3d\xa1\xc5\xe8\x59\xf8\x5d\x39\x2f\x81\x4d\xf0\xe1\x35\xfc\x2a\x4c\x50\x54\x88\xec\x93\xcf\xc2\x6f\x4e\x8d\x49\xd5\x68\x62\xca\x7b\xfe\x59\x55\x20\x25\xaf\x90\xff\x82\x60\x8f\x67\x61\x19\xd7\x85\x4d\x15\xe6\x7f\xc8\x5b\x65\xf0\xbd\xf4\x5e\x0d\x86\xcc\xd9\xc4\x04\xf2\xa2\x9c\x1d\x51\xe0\xc2\x25\x30\xa0\x6d\xf0\xe0\xfa\x58\x25\x3f\xaf\xe0\xe2\xb5\x64\xc7\x8f\xe4\xa7\xd3\xad\x8a\x57\xb5\x63\x21\xfb\xdf\xd5\xd1\xb1\x05\x0b\x39\x06\xfe\x60\x63\x03\xba\x8a\x84\xd3\x73\x57\x1e\xa6\xa3\x41\x6e\x6e\x87\xe3\x39\x75\x21\x9e\xd2\x8f\x60\xb6\x18\x35\xf6\x51\xb7\x55\xd5\xe3\xc0\x65\x5e\x6a\x3c\x92\xb1\x13\xec\xa4\x98\x1b\x2e\x4a\x85\x5e\x3b\x41\x48\x50\x9a\x08\x07\x92\xb8\x77\x6e\xec\x80\x1c\x32\x9e\xae\xa8\x0e\x8f\xde\x4c\x76\xd8\xea\xce\xb1\x1c\x80\x1d\xd4\x3a\x9c\xc0\x25\xd7\x85\xbd\x6c\x95\xb8\xd7\x32\x5a\xb9\x32\x99\x26\x6e\xba\xc1\x34\x56\x28\x9d\xa8\xce\x90\xd9\x32\x88\x34\x61\x80\xbd\x0d\x2a\xa8\xdf\x29\x4d\x07\x60\x06\xc5\x9d\xcd\xd8\x75\x61\x4f\x7c\x36\x76\x1d\x39\xe2\xcc\xdd\x43\xa1\x0a\x3e\x08\xbc\xe6\x9f\xd5\xd8\xb7\xa0\x7c\x26\x5a\xbe\xc7\x84\x48\xcb\x32\x3f\x53\x2a\x91\xaa\xa1\x58\x34\x79\x11\x78\x9b\x69\x99\xdd\x71\x15\xd6\xf1\x82\xdb\x27\x2f\xe9\x76\x0a\x92\x0c\x44\xc8\xa3\xb8\xe3\x38\x50\xe4\x69\x81\xa4\x3d\xc8\xa3\xd8\xd9\x83\xe8\xb4\xb9\x73\x3c\x52\x40\xa7\x5c\xc1\x46\x43\x9e\xd7\x66\x54\xac\xf2\xc0\xcf\xb9\x93\x21\x9f\xcc\xf2\x39\xed\xfa\x18\xcc\x26\x74\x92\xcb\x53\x5f\xac\x8f\x02\xb5\xba\xd3\x47\xc2\xd3\xb3\xe0\x70\x14\x1c\x8e\x38\xf1\x24\x3a\x71\xb4\xf7\x4e\x89\x2b\x3a\x9d\xe6\xd5\xd5\xec\xac\x75\x6c\x6f\x4e\x7c\x0f\xd2\xd0\x70\xc4\x6c\x8f\x87\x25\xe1\xa1\x51\xbb\x0c\xa7\xe4\xb8\xc2\x79\x2d\xd5\x7c\x9e\x93\xa0\x79\x69\x5d\xf1\x39\xcf\x65\xc0\x49\xa7\xe0\xa1\x4f\xc8\x5d\x6a\xbd\x27\xc5\xf3\x7d\x38\x23\xc7\x01\x8f\x0a\x03\x66\xaf\xca\xf6\x4c\x67\x09\xd7\x1b\x0e\x6c\x3e\x33\x59\xc2\x54\xc8\x8f\x0d\x69\xf8\x23\x47\xb2\x5d\x21\xae\x85\x7e\xc4\x7c\x20\x5e\x96\xff\x1a\x0f\x78\xa3\x7d\x04\xd6\x58\x3d\x01\x61\x93\x42\x01\xb9\x28\x15\x87\xba\x4e\x4a\xc4\x93\xd6\xcf\x56\x4c\x28\x77\x90\xae\xe8\x38\xcf\xf1\x76\x15\x3c\x01\x85\xb1\x07\x3a\x2d\x46\x97\x2d\x72\x5b\x33\x78\xd4\x4c\x28\x32\xa6\xc2\x95\xfe\xb3\x2c\x25\x61\x26\x95\xc2\x45\x4d\xe2\x92\x18\xa7\x72\xc1\x29\x39\xe6\xb3\x5f\x72\xc1\x5f\x55\xf0\xf4\xc9\x39\x70\x3f\x68\x34\x71\x94\x9c\x78\xc6\x7b\x0b\x3e\x8b\x6c\xd6\xa2\xdf\x4a\x62\xaf\xab\x2a\xa0\x82\x7d\x0b\x7f\x85\x94\x68\x44\xbb\x55\xe8\xbc\xc9\xc9\x61\x21\x84\x5c\x9a\xff\xb1\x8d\x9d\x62\xae\x48\x7d\x7d\xca\x09\x93\xfc\xd0\x19\xca\x0e\x03\xb2\xd0\x9b\x01\xa4\x78\x15\x37\x0e\x6d\xc8\x6d\x28\x1e\x0a\x17\xdc\x49\x3c\x45\x76\x25\x0e\x92\xce\x0a\x02\xb3\xfa\xd3\xb4\xf6\x34\x8f\x7e\x2d\x4f\x19\xa8\x6f\xe5\x2a\xfa\xa6\x92\x6d\x8b\x73\x3c\x1d\xad\xb7\x38\x79\x4a\x8b\x22\x40\xe5\x10\x64\xb3\x8a\xa9\x75\x71\x06\xe2\xc8\x6c\xf4\xe5\xe7\x1e\x20\x7f\xfc\x37\x1c\x79\x14\x55\xa5\x23\x8f\xd8\xc8\xc9\x0a\x9b\xf5\x72\xbe\xd4\x64\xdb\xa2\x28\xc4\x73\x39\x13\x68\x78\x36\x47\xb9\x06\x6a\x21\x0d\x06\xc8\xf3\xef\xea\x88\xd2\x0f\xcf\x04\xdc\x9a\xb4\x13\x12\x1d\x07\xd1\xdb\x98\xd4\x19\x07\x7a\x0c\x08\x42\x30\x2e\xe8\xea\x5c\x8e\xf9\x25\xea\x6b\x4e\x31\x2c\x4a\x86\xd2\x1c\x41\xd2\x0f\x6b\x5d\xed\x81\x0e\xe4\xb8\x11\xdd\x4c\x67\x27\xa0\xe7\xac\x24\xed\xf4\x76\xd7\x1d\x85\xde\xf7\x76\xf0\x38\x93\xc2\xf9\x76\xd2\x61\xe1\x6b\x50\x8d\xdd\x1a\xfd\x3b\x12\x76\x4f\x7e\xa5\xd1\xd8\xfe\x93\xf3\x83\x35\xdb\x9f\x9f\x5a\x50\x2e\xef\x80\xfd\xec\xec\xe1\x4f\x3f\x7d\xcf\xe9\xe2\x0a\x87\xd0\x8e\x5e\x3c\xd7\xfe\xc5\xb8\x7e\xec\xc4\x76\xd4\x2d\x6e\xb9\x3f\xc9\xcc\x11\x9e\x3d\x55\xc8\xe9\xf7\x60\x22\x59\xd0\x2d\xde\x0e\xc2\xd9\xee\x5e\x4d\x8a\xd8\xfd\x9e\x86\x77\xdd\xa9\x3d\x41\x62\xfb\xd1\xb9\x45\x19\xa4\x9c\x1a\x98\x3e\xb7\xb7\x2f\x56\x71\x8a\xa7\xf1\xe1\x61\x0b\x12\x6a\x61\x11\x61\x19\x11\x80\x1b\x36\x81\xa6\x8d\x08\xcd\x21\xa1\x14\xca\x1f\xf3\x52\x38\x8e\x0e\x64\x96\x99\x2d\x06\xd5\x16\x40\x11\x8a\x8b\x0b\x68\x07\xc9\x61\x90\xd6\xcc\x8c\xae\x3c\xb1\xb2\xc9\x0b\x7b\x4f\x30\x5a\xa3\xe4\x1e\x9b\x87\xd3\x75\xb2\xbe\x99\xa3\x51\xdf\x99\x9f\x85\x0e\x64\x1c\x8d\x29\x92\x78\xda\x14\xa6\xe0\x6a\x8a\x78\x5a\x68\x45\xce\xcd\xc8\x8f\x8f\x38\x1a\x4d\x48\xe5\x90\x5f\x7f\x21\x37\x9b\xd5\x9b\x3a\x1e\xaa\xfb\x02\x8e\x86\x7d\xba\x44\x72\x58\x43\xf6\x13\x1e\xa8\x6b\xb6\x96\x60\x86\xb1\x75\xa6\xe7\xbd\xb6\x7c\x68\x28\x42\x22\x8e\x89\xf3\x20\xb1\xe4\x4b\x19\x1a\x81\x1e\xd2\xe4\xe1\x85\x06\x98\xff\x43\xb4\xf2\xe8\x2a\x6f\xef\x94\x59\x28\x82\xe9\xa7\x0a\x45\xfe\x12\x94\x23\xe6\x2e\x97\x89\x39\x4c\xd5\x25\xf6\x04\x38\xc9\x60\x32\xbe\xc2\x58\xa3\x97\x1d\x59\x8f\xf0\x6a\x89\x58\x6b\xd3\x12\x1f\x61\x36\xc0\xae\x64\x71\xfd\xaf\xaa\xd1\x00\x10\x2a\xa4\xf0\x83\xbf\xf3\x61\x29\xf0\x67\x8b\xc5\xac\xed\x68\x32\xf6\x49\xd3\xa1\x26\x52\xc4\x4e\xde\xa8\xc1\xa1\xf3\xef\x25\x21\x7c\x07\xd9\x8e\xef\x19\xb0\x43\x45\x28\xf2\x9c\x13\x71\x0d\x20\x20\x11\xdc\x45\x42\xe0\x57\x32\x7c\x04\x2c\xec\xc8\xc3\x7e\xbd\x38\x06\xde\x46\x86\xb9\x23\xc7\x1e\x71\x79\xf3\xd2\xad\xaa\x58\x61\x40\xfa\xab\x6c\x76\x3c\x80\x07\xb2\x7a\xa0\xfb\x4f\xd7\x4d\x39\x6e\xd4\x24\xa8\x38\x2f\x70\x6c\x13\x2d\xf1\xd8\xa9\x59\x87\xa8\x33\x65\x3e\xd1\x58\xb9\xcc\x12\x44\xb5\x61\x4b\xa6\x7b\x55\xec\xea\x37\xe2\x55\xb2\x47\xc2\xd2\xea\x8f\xc0\xfd\x33\xef\x3f\x49\x14\x3a\x20\xff\x9e\xb8\x1d\x6a\x4f\x07\xe2\x02\x96\xf0\x10\xf9\x47\x68\x30\x73\x90\x7c\x28\x73\x36\xb2\x38\x98\x89\xa9\x2c\x16\x5b\xe2\x2c\x7d\xc0\x53\xf6\xf9\x73\x7c\x06\x26\x7e\x32\x1c\x3c\xc0\x65\xf2\x5e\x65\x53\xf9\x66\xb1\xda\x38\xa3\xa9\xea\x09\xbf\x11\xb4\x0d\x92\x53\x09\x7a\xe2\x92\x8a\x45\x33\x22\xbb\x13\x20\x9d\x38\xa8\xae\x5b\x55\x68\xcf\x58\x19\xd8\xc5\xc9\x7f\x33\x8a\xdb\x6c\x90\xc3\x7e\x98\x63\x61\x71\x73\x2b\x2a\x86\x76\xbc\xe8\x81\x79\xad\xd8\x27\x21\x07\xcd\x01\x33\x2f\x51\xba\xb9\x60\x5d\x7e\x1f\x85\xa8\x98\x59\xc1\xd0\xa3\x4d\xc9\xbd\x13\x72\x03\xdb\x28\x90\xaf\x53\x1b\xb6\x96\xe7\x66\xe0\xd3\xc4\x0d\xd4\x4d\x07\xdb\x3c\xb4\x85\x7b\x09\x03\x65\xfa\xbb\x4a\xb2\x3b\x35\x36\x37\x55\x06\x64\xbd\x1a\xf6\xd2\xa0\x67\x07\x19\x57\x82\x34\x72\x75\xf9\xfa\xf5\x9b\x77\x49\x08\x81\x75\x6e\x5a\x6b\xd4\x37\xd1\xc1\x74\xd6\xae\xe0\x66\x1a\x27\x68\x09\x91\x1c\x5d\xb9\xc4\x29\xb8\x9c\x0d\x67\x9e\x2f\x5b\x8b\xbc\xd5\x42\x5b\xc2\x5e\x55\xb4\xbf\x3d\x49\xc2\x0f\x30\x2a\x1f\xab\x60\xf0\x7f\x03\xff\xab\xfc\xcc\x24\x3b\x6b\x42\xd6\x92\x8e\xa4\xd2\x65\x27\xb1\xb5\xb6\x9d\x9d\xa1\xe0\x26\x34\x4a\x54\x25\xed\xbe\xb7\xb8\x17\x6e\x04\xfa\x44\x9c\xc3\x0c\xb4\x03\x32\x04\x20\xee\x68\xf4\x5f\x47\x14\x3f\xd1\x95\x61\x55\xdd\x6b\xa7\xd7\xba\xa3\x0d\xf3\xcf\xf1\x83\xd2\xe1\xd7\xe4\xba\x4b\x56\xb9\x76\xe2\x27\xd7\x4b\x23\x9a\x4e\x3a\x77\xf1\x68\xd4\x62\x00\x3e\xac\x3e\xf9\x47\x3f\xdf\x0c\xe8\xdc\xf0\xd3\xf7\x00\xf1\xf3\x0c\x5d\xbd\xb1\x43\x43\xc6\xd5\xe8\x29\x84\xeb\x92\xd3\x61\x1e\x83\x3c\x5f\xcc\x65\x22\xfc\x3f\x50\xe7\xc6\x0e\x77\xa9\x1f\xdf\xb2\x55\xc1\x6e\x88\x37\xdd\xcb\x6e\x2c\x4d\x4c\x50\x3b\x94\x71\xdf\x55\x78\x97\x27\x95\x45\xcf\x31\xbc\xd7\x0d\x19\xda\x6c\xff\x84\x44\xf3\x0f\xdf\x0f\x7d\xa1\xba\x1e\x04\xdb\x6f\x2a\x6c\x09\x1b\xe1\xa7\x17\x82\x31\x2f\x5c\x74\x81\x3c\xbc\xed\x82\xa9\x0b\xa3\x91\x5d\x1b\x94\x9d\x27\x03\xbc\xc8\x46\x13\x58\x0e\x76\x22\x37\x5c\x1f\xf9\xa8\x33\x72\x68\xd7\x0c\x1a\x2f\xeb\x50\x7a\x27\xd1\x9e\x1d\x6f\x84\x63\xe2\x56\x7b\xbd\x35\x76\xc8\xc8\x70\xab\x3a\xa0\xd3\x2a\x66\x89\x70\xc7\xdc\x55\x9d\x6e\x94\x71\xc8\xcc\xe8\x57\x48\x99\x15\x07\xe9\x86\x60\xd1\xe2\x08\x22\x35\x2f\x05\xf8\xc1\xdf\x0b\xa5\x18\x30\x54\x59\xc9\xd1\xdb\x5a\x1b\xed\xd1\x5d\x54\x7b\x2d\x3b\xd2\x74\xca\xf9\x4a\x72\x3c\x22\x61\x6b\x56\x60\x8f\x8c\x87\x3d\x3e\x79\x78\xd8\xd5\x33\x1b\x20\xbe\x18\xc2\xc7\x1a\x48\x3f\x4c\x10\xe4\xe7\xc1\xd7\xc9\xeb\x7e\x18\x0d\x99\xd6\x47\xa3\x8a\xc4\x40\xf7\x4c\x60\xa3\x8b\x8b\x4f\xfc\x20\x9b\x3b\x60\x2e\x83\xda\xa8\x41\x99\x06\x1d\xda\x24\xec\xef\xa2\xb3\x66\xab\x06\xd2\x35\x82\xb7\x18\x15\x0b\xc8\x35\x68\x48\xf7\x24\x69\xd2\x45\xf4\x97\x21\xe5\x5b\x50\xad\xbf\x0b\x80\x41\x31\x8e\x70\x6c\xde\x99\xe4\x87\x76\xf2\x71\x28\xfb\x03\x08\xa3\x60\x9b\x91\x03\xdd\x95\x11\xcd\xa0\x5a\x65\x80\xda\x4e\xb0\x3e\x1f\xdc\x0c\x02\x3e\x14\xd4\xdd\xd1\x34\x49\x54\xbf\xc5\xaf\xea\x20\x7d\xb3\xa3\x23\x97\xbf\xf0\x4f\x3c\x71\xd9\xca\xdf\x29\xf5\x36\x7e\xe0\x12\x70\xbc\x28\x1c\x1f\x9f\x0c\x4a\x36\x3b\xf6\x29\xb4\x9b\x9a\x2e\xc7\xa2\xc8\xf2\x2e\x1e\x03\x03\x3f\x41\x38\xd5\x8a\xbd\xfc\xa4\xf7\xe3\x5e\x44\x40\x2c\x0a\xab\xe4\xac\x3c\xd8\x59\x2d\x1f\xcf\x4c\x5d\x01\xbe\xfe\x94\x66\x8a\xe1\xe1\xc3\x1a\xa3\x54\x5b\xcb\x11\xdd\xcd\x91\xe9\x14\xbe\x47\x15\xc7\x22\x08\x97\xb9\x63\x30\x02\xba\xcd\x9d\xe7\x9e\xe6\xdf\xc1\x02\x27\x4b\x96\x8a\x7e\xe6\xeb\x6e\x54\x8f\x7e\xa6\x51\x0c\xfc\x34\x60\xe5\xf5\xf1\x8a\xc3\x21\x64\x0b\x84\x21\x56\xc4\x34\xd3\x64\xbb\xc2\x0b\x91\x69\xae\x2d\x40\x15\x5b\x2e\x8b\xf5\x32\xbb\x54\xf9\xfd\xf3\x97\xef\xd0\x3d\xe5\x81\xe2\x35\x99\x41\xc8\xb5\x8f\x58\xe4\xe3\x41\xd1\xdd\xc5\xcc\xf2\x19\xe2\x38\xc8\x9c\x18\xeb\x23\xdd\x47\x0b\xf7\x52\x7b\xe9\x77\xa9\x2e\xd8\xe4\xb5\x73\x24\xdc\x1a\x8d\xe3\x59\x08\x7a\x09\x3b\xb5\x81\x91\x95\x13\x2b\x60\x4b\xd7\x0a\x1a\xd9\x85\x3b\x05\x2f\x29\x91\x0b\x42\x22\xda\x78\xca\x13\xd2\xe0\x3d\x29\xf3\x6b\xcc\x01\x6d\x3c\x0c\x4f\xb3\x21\x3f\x07\xe7\x25\xc9\x1b\x0c\x07\xac\xb0\x9b\x8a\xf6\x88\x90\xce\x3b\x06\x7c\x55\xa0\x69\xd4\x9d\x36\x77\x28\x59\xf5\xc7\x94\x90\x89\xd8\x57\xb6\xd7\xaa\xfd\x26\xcb\x0b\x6e\x40\x37\x38\xfa\xff\xdf\xff\xf3\xff\x3e\xb9\x82\x76\x5f\xf9\xa1\x7b\x72\x15\x34\x18\x80\x27\x3a\x12\x02\xf1\xe6\xdf\xab\xd1\x1c\xd8\xe7\xe7\x3d\xfd\xaa\xc2\x37\xb2\x88\x6a\x34\x8e\x0f\x3d\xf0\x47\xc5\x5f\xc0\x29\x2a\x0e\xb4\x01\x2c\xa2\xaa\x4c\xdc\xe1\x5e\xdb\x62\x93\xfb\xeb\xa8\x9b\xbb\x9a\x6c\x57\x17\xe2\x3f\xe0\x4b\x60\xf0\x06\xde\xe7\x61\xcb\x88\xfc\x1f\x27\xed\x64\x13\xc9\x6f\x05\xe0\xe6\xc8\x97\x8d\xd2\x7e\x21\x4b\xb9\xe5\x18\x38\x76\x00\xec\xb4\x51\x55\x3f\xba\x1d\x1d\x89\x87\xda\x6e\x46\xb7\xc3\xab\xa9\x9f\xe8\xea\x73\x8e\x01\x87\x66\x86\x63\x2d\x07\x55\xef\xa3\x7f\xe0\x74\x75\xc7\x89\xc3\x5e\xce\xc9\xfa\x75\x54\x7e\x55\x55\xb4\xff\x91\x83\xa0\xab\xe2\x96\xc6\x5b\x99\x1f\x14\x22\x1d\x94\x02\x48\xaf\x86\x70\x98\x2f\x4d\x5b\x7b\xb9\xa5\x92\x20\x77\x70\x51\x3b\x08\x2f\xb7\x8c\x08\x31\xff\xc2\x3f\x2b\x2f\xf1\xb8\xf7\x9d\xdc\xce\xa3\x7e\xf4\x63\xd7\xcd\x63\x83\x74\x72\xad\x30\xf9\x1a\x7f\x54\x7b\x68\xa4\xb7\x46\xd1\xd6\x15\x3e\xaa\x06\xdd\x1e\x5d\x74\x80\x74\xd5\x56\x87\xfd\xb9\x6c\x03\xdf\xf5\x22\xb7\x00\xfa\x89\x24\xa8\x07\x79\x80\x34\x79\xa0\xcf\x9d\x76\x1c\x43\xe6\x05\xfd\xa2\x64\xbc\xb1\x42\xa0\x78\x61\x25\xc2\xa3\xf8\xcf\x6b\xe4\x26\xfc\xa6\x2c\x6f\x41\xa0\x1a\xd2\xe8\x84\x03\x34\x6f\xad\xa0\x0c\x92\x68\xdd\xce\x1e\x4c\x75\xaf\x5b\x65\x71\xcf\xe0\xeb\x67\x14\x45\x67\x3d\xd8\x83\x0b\x12\x1f\x50\x9b\x3e\x61\x78\x41\x4d\x0d\x57\xd5\x5e\xbc\x7b\x75\xfd\xaf\x02\x71\xc0\x38\xac\xaa\x38\x12\x2b\x7b\xaf\x06\xbe\x0c\xf9\x86\x7f\xa6\x4c\xbe\x40\x90\x91\x0c\xdd\x22\x54\xa2\x5c\x04\x75\x5e\x76\x05\xe4\x2d\x24\x2c\x00\x52\xa4\x96\xcb\xae\x5b\xc8\xe3\xa3\xbf\x7a\x7d\x8c\x87\x97\xad\x38\xfb\xf0\xc3\x47\x07\x2c\xf8\xec\xc3\x1f\x3e\x66\xc0\xe1\x74\x6b\x2a\x77\xb1\x00\x3f\x11\xbf\x2a\xd5\xc2\xd4\x5f\x61\xdc\x1d\x3a\xd3\x7e\xad\x0e\x24\x5b\x72\x16\x9d\x74\xd6\xf1\xc4\x1b\x3d\x7f\x73\x00\xf8\x17\xb2\x7f\x6d\xb5\x2f\x32\xfb\x41\xe1\x3c\xa0\x66\x39\x62\x71\x48\x59\x6a\x90\x0b\x80\x24\x97\xd7\x88\xcc\x58\x53\xc3\x96\x5a\x87\x05\x77\x45\x42\x3b\x64\x0a\x63\xcd\x13\xdc\x6f\x31\xb3\x68\x04\xb2\xa2\xbc\x25\x3e\x4c\xa1\x00\xb6\x1f\x9d\xaf\xd7\xaa\xb6\xa6\x96\x89\x36\xff\x19\x7c\x74\xd6\xe8\xc4\x2d\xc3\xfa\x84\x8d\x4f\xde\x91\x53\xdf\x60\x41\x4b\x14\xa1\x1f\x21\x34\x46\x8e\x1c\xd5\x0e\x0a\x5f\x83\xfd\xc8\x31\x23\xaf\x9d\x4a\xd7\x1c\xea\x06\x60\x83\x23\x5b\x8e\x2f\x18\x68\xb2\x5e\xe5\xf6\xa1\x59\xbf\x80\x6b\xd5\x18\xe9\x80\xcd\x8c\x79\x03\x90\xa5\x51\x18\x84\x64\xfa\xf8\xaa\xde\x91\x97\x08\x36\x29\x6d\x65\xe8\x2b\x5d\x5a\xe0\x97\x2d\xd2\x61\xa2\x81\xb0\x87\x57\x6f\xc2\x74\x63\xbf\xc3\x01\x2b\x5b\xad\x56\x79\x7d\x51\x97\x47\x13\x22\x88\xca\x69\x13\x3f\xa7\xd0\x04\x28\xcd\x69\x8f\x5a\x49\x8f\xbb\xe7\xf7\x2b\x80\x0d\x26\xb2\xbc\xc0\xd6\x52\xcf\x94\x58\xab\xad\xa6\x20\x46\xa8\xd1\x2a\xbe\x91\x99\x90\xac\x65\x73\xe7\x7a\x89\xb1\x6c\xa8\x3d\xb8\x3f\xdb\x21\x9b\xaf\x8d\xea\x6a\x74\x7c\x12\x17\x82\x3e\x63\x26\x72\xd6\x6c\xd2\xb3\xaf\xf9\x64\xce\xcb\xb6\xad\xfd\xbe\x0f\x07\x8a\x8f\xcf\xdc\xf7\x3f\x85\x6e\xff\xfc\x38\x83\x4a\x00\x8f\xd3\xb2\x6c\x29\xb0\x16\x7b\x33\xe4\x79\x53\xb7\xa0\x3c\x8f\x9b\xc6\x9b\x60\x0c\xe7\xd6\xe2\x05\xa2\x10\x95\x42\xa8\x4f\x5e\x99\x56\xb5\xa2\x4d\x92\x40\x36\x36\x8c\x84\x48\xdb\x1d\x6b\x6f\x69\x96\x26\x6e\x43\xfd\x0d\x00\x81\xec\x6c\xa7\x0a\x62\x33\x81\x3f\x81\xee\x3e\xc2\x3b\x43\xd1\x6e\x85\x19\xa9\xba\x24\x40\xa4\x1a\x82\xe8\x10\x6c\x5f\x26\xde\x15\x48\x78\x36\x18\xa6\x02\x5d\x4e\xb1\x3d\x18\x5b\x84\x82\x15\x09\xd8\x45\xc3\xf5\xa9\x55\xce\x07\x83\x07\x1e\xfa\x1d\xb1\x48\x54\xde\x43\xc8\x29\x31\xf1\x8d\x99\x4e\x5e\x66\x6b\x6b\x45\xc1\x86\x78\xc5\xa0\x32\x33\x8b\x2b\xc4\x65\x83\xd0\x40\xe7\x65\x24\xf2\xa4\x7d\x99\x16\x5b\x71\x98\xe6\x62\x60\xac\xdc\x68\x11\xe6\x42\x98\xfe\xb5\x76\xb5\x8c\xdc\xd1\xf8\x81\x4f\xce\x58\x0d\xed\x25\xbb\x6a\xd0\xed\x5c\x49\x3b\xef\x44\x70\x7e\xa8\x22\xe4\x0f\x58\x87\x3b\xee\x79\x77\x8f\x11\xa6\x82\xc2\x26\x45\xc8\x0c\x67\x11\x4c\x02\xbc\x17\xa3\x59\x8a\x26\x7f\x25\xb5\x16\x8c\x7a\x46\x55\xac\x26\xb5\x2a\x55\x54\xe8\x99\xb9\x68\xf8\xe5\x5d\x60\x6e\x5c\x1b\x5b\x93\x15\x21\x8d\x40\xd9\x9d\x23\x2b\x33\x81\x7d\x4f\xcc\x0e\x51\xc1\x3f\x55\x11\xfb\xb0\xd4\x87\x5d\x56\x6d\x60\xa9\xb3\x63\x57\x86\x16\x4e\x9b\x46\xa5\xa8\x5b\xaa\x0d\xf5\xaf\x1e\xb6\xa7\xa5\xdb\x61\x78\x5c\xcc\x27\x1d\x07\x18\x05\xdc\x1a\x8a\x4a\xec\x10\x97\x15\xb1\xc3\xb0\x7e\xb6\x52\x9b\xb4\xbc\xbc\x45\xbf\x5f\xda\x55\xfc\x2e\xdb\x41\xca\x9e\xce\xa6\xf2\x25\x91\x11\xad\x4b\x69\xc8\xbe\x7c\x52\x1b\x1b\x78\x2b\xb0\x1e\x90\x05\x69\x74\x40\x73\x45\xf5\x32\xdf\xc9\x20\x3b\xb5\x07\x63\xea\xd8\x9a\x7d\xb0\x78\x39\x3c\x23\x35\x30\x1e\x5c\x7c\xcf\x87\xf2\x69\xb0\xb1\xa9\x74\x39\x03\x34\xc3\x8c\x81\xbb\x71\xdd\xea\x81\x79\x28\x7d\xb0\x96\x99\xb8\x04\x7b\x7a\x63\xbd\x51\x9a\x72\x93\x8a\xa3\x60\xe5\x82\x3f\xc8\x89\x5a\x73\x1c\x80\x93\xaa\x7f\xbf\x80\xa0\x0a\xd2\x7e\xe0\xd8\x49\x54\x67\x0e\x1d\x24\xf6\x12\x2e\xd7\x0e\x42\xce\xe4\xce\x37\x4f\x89\x94\xbf\xa1\x13\xd2\x67\xda\xb4\x31\x4d\xa2\x01\x26\xde\x02\x8b\xe9\x49\x05\xe3\xcb\x5a\x31\x87\x37\xb5\xa7\x68\x5b\xe4\xb4\x70\xd5\xff\x0d\xfc\x8f\xa9\x46\x1d\xd8\xbc\x7c\x50\x43\xbc\x0a\x4f\x81\x38\x81\x5f\xa3\xb2\x94\x25\xaf\xa6\x0a\x52\x96\x05\x6b\x1d\x12\x49\xfb\xc5\xfc\x3c\xbb\xe9\x94\x1c\xea\x58\xfe\x0a\x3e\x45\x37\xc3\x12\x35\xae\x5c\xe1\x9a\x54\x93\xc3\xbc\xb6\xcb\x60\x54\x5d\x0e\x49\x35\xee\x97\x80\x6d\xaf\x4c\x01\xfb\xa6\x57\x26\xd7\xf7\x0a\xc4\xd6\xa9\x76\x82\x19\xcf\x3e\x96\xe1\xa5\xc3\x10\x2e\x78\xfa\xc3\x3f\xe7\xed\xcc\x80\xa8\x99\x72\x01\xd4\xd8\x1c\xee\xb5\x9d\x01\xf1\x82\x8b\xfb\xfa\x74\xf4\xd2\xf8\xa8\xc3\x6c\x80\x28\xb3\xee\x3b\xd9\xa8\x18\x18\x02\x81\xe2\x76\x5d\x54\x13\x91\x71\x65\x05\x3e\xc2\x15\x6d\xf3\xab\x78\xcc\x08\xab\x4b\x82\x78\xd8\xaa\x0d\x7a\xcf\x3b\x85\xc6\xd0\x72\x22\x4c\x8b\x6b\xb3\xb1\x39\x73\xc2\xbb\x28\xe6\xc8\xa5\xd0\xb0\x10\x9d\x18\x8b\xcb\xcd\x8f\x62\x4f\x1f\x85\x8b\xce\x72\x6d\x8b\xe8\x36\x74\xdb\x81\x22\x33\x4e\x1b\xc6\x97\xa2\x4f\xb4\x6a\xe1\x58\x01\x49\xe2\x94\x3f\x55\x64\x74\xec\x8b\x4c\x5c\xf9\xb3\xf0\x81\xd3\xe6\xda\x63\x62\x77\xc8\xab\x08\x47\x0c\xb5\x1b\xb9\x2d\xc5\x26\x21\xb4\x38\xbf\xbd\x5c\x8b\x0b\x71\xd6\xe2\xe4\x8e\x63\x09\x53\x37\x65\xd1\x4c\x0e\x99\x6c\x80\x09\x03\x5d\x8c\x70\x9e\x07\xdb\x3c\x9d\x6f\xd0\xbc\x8c\x67\x1d\xdd\x42\x89\x07\x17\xf8\x14\xe6\x24\xe6\xd9\x32\xe6\x92\x0f\xac\xb6\x04\xb1\xd5\x46\x9d\x46\x7d\xa2\x1c\x5b\xbc\xd1\xce\x3d\xcf\x59\xc9\xae\xab\xa3\x8d\xe9\xb2\xeb\x04\x7d\x2c\x82\x3a\x8e\x55\xec\x2d\x68\x71\xa9\xa9\x2d\x3b\x80\x2c\x15\xa2\xd9\xda\xd6\xeb\x23\x97\xa1\x65\x87\x11\xc4\x4e\x14\xd9\x2b\x03\x2a\x07\xc8\x61\x54\xe4\x55\x4c\x58\x28\xe2\x38\xda\xa3\x1d\xfc\x42\xce\x0a\xe7\xa3\xe7\xad\xc2\x2d\x82\x00\xd3\x40\x90\x37\xf8\x63\x09\x84\xdc\xa2\xa2\xda\xf5\x96\x43\x2b\x04\xc7\xec\xc5\x8a\x95\x74\xa9\xc4\x35\xde\x50\x1a\xbe\xa0\xdc\xde\x3a\x0f\xdb\x1c\x79\xc1\xbd\xb2\x78\x91\x14\x3f\x1f\xa8\x27\x15\xa0\x8a\x66\x25\x60\x25\x05\x2b\x12\xfd\x4e\x46\xa4\xe4\x5e\xf8\xe1\x0f\x1f\xdd\xa3\x9f\xcf\x3e\xfc\xf1\x23\xfa\x15\xce\x0a\xd7\x1b\x79\xa7\x16\x30\x90\x19\x8a\xa1\xd1\xea\x63\xc7\x68\xee\xb1\x63\xb6\xaf\x7c\xa2\xa1\xf8\xe4\xcb\x25\x1e\xe3\x20\x4e\x56\x78\x1b\xb3\xca\x15\x6e\xc6\x7d\xcd\x7d\x74\xc4\x01\xc2\x57\x2c\x1e\x28\x50\x4b\xa8\xf2\xb7\xf8\x9d\xba\xfb\x2f\x20\x1a\x9f\x61\x4f\x7f\x0b\xc5\xc2\x45\x00\x82\xce\x22\x0f\x5e\xb2\x63\x68\xf4\x10\x0d\x3e\x0b\x6d\x66\x95\xe1\x62\x7f\x8a\xcd\xb4\x99\x43\x23\xed\x02\x78\x70\x55\x9a\x96\x0b\x96\x86\x1f\xa1\xbf\x65\x56\x68\x54\x04\xe1\x41\xc7\x7b\xbe\x39\xf8\xa0\x90\xaa\x01\xee\x2d\x7e\x4e\x32\x1f\x42\x36\x14\x05\x78\xdb\x4c\x53\x8c\x41\x27\x03\xc5\x64\x26\x91\xe2\x27\x29\x74\x0b\x13\xea\x87\x8f\xee\x51\x24\x37\x7e\xfd\x8c\x93\xa5\x20\x3a\xd5\x17\x71\x84\xcf\xaf\xc4\xc2\x52\xee\xa0\x36\x11\x0f\x1f\x0d\xb7\x34\x3a\xd4\x55\xbe\x23\xca\x4a\xcd\xd7\x55\xd1\x5b\x0e\x2d\x7f\x83\x3f\x52\xcd\x21\xd8\x13\xca\xbb\x57\xd9\x67\x9c\xe6\x85\x1f\x0b\x27\x86\xe8\x79\x21\xac\x00\x1b\x1c\x0a\x77\x5f\x0e\x7f\x14\xf4\xb6\xff\xb2\x41\x33\x6a\xac\xb9\x57\x83\xe3\x2b\xa9\x8c\x91\x2d\x8f\xbf\xb6\x3a\x0d\xcf\xc4\x48\x11\xea\x06\xbd\xef\x42\xdc\xca\x7b\x35\xd9\xc4\x83\xc8\x13\x45\xa8\x32\xbf\xb1\x9d\x4d\x22\x16\x7e\x4d\x01\xc8\xb7\xe8\xac\x5d\x94\x8e\xd2\xd4\xe4\x95\x8b\xa1\x1a\xcb\x5d\x87\x20\x17\x3a\x43\x19\x13\x13\x57\x99\x19\x83\x6c\x50\x03\x31\xd4\x46\x08\xfd\x39\xc7\xc2\x97\xbc\x10\x34\x3a\x37\x2d\x82\x2d\xdf\x6a\x20\x19\x23\xf7\xcb\xd3\xa8\xbd\xa6\x9b\x0c\xda\x14\xae\x7a\x8c\xfb\xb4\xf3\xd8\x72\xe5\xc9\xe8\x4a\x6d\xfd\x8c\xc1\x35\x63\x93\xbd\x1c\xbc\x6e\x74\x2f\x23\xab\xbc\xc9\x52\x02\xa4\xf4\x5e\x36\x3b\x58\xd6\xb9\xd0\xf5\x1b\x19\x0e\xd8\x5e\x00\xf3\x11\xbb\x83\x27\x76\x5e\xae\x7f\x5b\x28\x1d\x43\xfe\xe5\xa5\x63\x22\xa0\xf8\xad\xa2\x43\xac\x4c\x5d\xcb\x0f\xb3\x38\xb3\xb1\xfb\x5e\x0e\xaa\x34\xa3\x42\x4a\xb4\xa3\x2e\xc2\x85\x51\x0a\xc0\xfe\x60\x45\x3c\x81\xc1\x37\x17\x60\x07\x2b\x0d\x80\x68\x29\x8c\xb6\x8b\x12\x2d\x46\x18\xbc\xc0\x8b\x8b\xd3\x0a\xb9\x86\x0b\xc1\xbf\x38\xbf\x38\xfd\x9b\x9e\xfa\x85\x9e\xdb\x7a\x50\x6e\xec\x70\x44\xd0\xeb\x9a\x3e\x36\xe4\x2f\x1c\x80\x30\xf0\x3d\x48\x5b\xa9\xae\x6c\x13\xa1\xb0\xf8\x7c\x07\x04\x72\xd7\xaa\x91\x20\xa8\x63\x9b\xa1\xaf\x3b\x25\xdb\xac\xf7\x83\xc2\xe8\xb3\x01\xff\x4e\xba\x3a\x7f\x71\x00\x46\x2c\xa2\x0f\xe6\x98\x09\xa5\xd6\xca\x1f\x30\x9c\x02\x5e\xca\x00\xe2\x92\xd1\xc9\xfd\x98\x4b\x11\x3f\x7c\x74\xdf\x63\x1d\xdf\x83\x28\xd1\x32\x27\xfd\x17\xfc\x20\x7e\xca\xa4\x9c\xe8\x7d\x0b\xd3\x00\xb9\x51\x18\xd4\x03\xce\x61\x6f\xc5\x5e\x0d\x5b\x85\xe2\x47\x1b\x4c\x11\xc4\xd7\x7f\x6a\x6c\xab\x02\xe3\xc6\xdf\x42\x1b\x6f\x63\xfa\x1f\x63\x3a\xe3\x47\x4c\x2c\x65\x84\x6a\x28\xed\x9f\x43\x2f\xce\x3e\xfc\x8f\x8f\x61\x8e\x7a\xb9\xae\x73\x76\x4d\x8e\x97\xf1\xb3\x80\x9a\x5a\x60\x52\x5e\x71\x00\x1d\xac\x75\x9c\xcf\x9b\xba\xb7\x35\x91\x26\xba\x22\x51\x06\xfb\x14\xe7\x23\xe9\xad\xe8\xd5\x00\x6c\x8a\xa9\x19\x5d\x4f\x57\x05\x69\x50\xfc\x1e\x52\x4d\x30\x6b\x62\xce\xbb\x19\xda\xc8\x97\x18\xa6\x64\x4b\x84\xa2\x95\x5e\xd6\xeb\x21\x38\x54\x4b\x2f\xa3\x6b\xe1\x32\x2e\x86\x6d\xc7\x14\x43\x00\xa8\x68\x37\x74\xb2\x96\x71\xdb\xd0\x76\xed\x6a\xbc\x46\x45\x46\xd5\x77\x7c\x37\xaa\xd3\x8d\x17\x31\x5d\x3b\xbe\xc4\x4f\xd1\x98\xb7\x14\xdb\x3a\xbe\x61\xb1\x19\x94\xdb\x61\xe4\x59\x00\xd8\xa8\x83\xd8\x5b\x94\x30\x23\x8b\x90\xa6\x46\x4f\x3a\xec\x6a\xe1\x8f\x53\x74\x83\x9d\x73\x98\x20\x93\x78\xb2\x11\x15\xfa\x3e\x7d\x19\x36\xf2\x59\x5f\xc2\x17\x59\x80\x8f\xe6\xd0\xd0\x6f\x77\xba\xae\xe9\x23\x14\x34\x1f\xf6\xd2\x90\x8f\xac\x36\xc2\x0e\xad\x1a\x38\xb0\x18\xde\x48\xf2\xbb\x05\xcc\x84\x6d\xc2\x52\x70\xf2\x2c\xad\x6c\x9c\xb0\xa3\xe1\x05\x88\xa5\xa2\x89\xf8\x37\x36\x8a\x3c\xf6\x71\x92\xf2\x44\x4e\x0e\xd2\x65\x57\x73\x96\x65\x48\xa4\x28\xc8\xf6\xed\xbf\x9c\xb5\xdf\x71\x68\x7c\xb9\x57\x73\x37\x47\x48\xa4\x8e\xe7\x9b\x37\x70\x51\xed\x30\x72\x1e\x4c\x19\xd8\x28\x00\x48\x9b\xed\x2a\x30\x31\xd6\x18\x32\x1f\x47\x14\x4e\x7e\xc9\xf9\x7d\x01\x83\xf1\x2d\x8c\x3a\x64\x8b\x9d\x4f\x77\xd2\x89\x48\xd8\xd5\x43\x27\x35\xad\x06\xba\x4f\x48\xa5\xc8\x3d\x1d\x9b\x6c\x1a\xb5\xaa\x32\x9f\x8f\x6c\x67\x4d\x96\x8a\x2c\x7b\xc1\xac\x92\xe5\x2e\x9b\x56\xa6\x00\x6d\xb2\x1f\x9e\xb9\xa2\x6e\x5b\xb7\xa3\xaa\x59\xef\x7d\x6d\x71\xd9\xc2\xd7\xb4\x05\x41\xdf\x9b\x62\x8e\xca\x4f\xd9\xa1\xda\x8d\x6b\xd8\xd0\x28\xdc\x1d\x6d\x18\x99\x9b\x8b\xb7\xc1\x3b\x9f\x4f\x94\x59\x34\x29\xd0\x4f\xf6\x9b\x45\xe2\x04\xf9\x17\xc3\xa3\xe5\x19\x0b\x3e\xc0\x79\x6e\xea\xf3\xd3\x51\xa1\x0d\x5b\x7c\x1b\x8e\x54\xbf\x2b\x3b\xa9\xe8\xae\x3a\xfc\xcf\x33\x62\x98\x63\x46\x55\xd3\x3c\x64\x8c\x88\x9c\x53\x52\x04\xdd\xf3\xe8\xbb\xf0\xf8\x78\x3c\x1e\x9f\xec\xf7\x4f\xda\xf6\xf1\x42\xaf\x33\x09\x32\x76\x7b\x72\x76\xcf\xa6\x9a\x09\xcf\xce\x30\x65\x02\xf9\x32\xed\xd0\x11\x23\x1f\xa7\xf7\x68\x9d\x5c\x2b\x0f\x73\x35\x3b\x4e\xa6\x95\x94\x46\xcf\xc1\x6e\x64\xfb\x4e\xa5\x3b\x39\xc0\x5e\xe8\xba\x61\xde\x97\x89\x32\x93\x65\x4d\x82\xeb\x3d\xd8\xc0\xe8\x8b\xc7\xc2\xa5\xdd\xa4\xc6\x4c\x88\x42\x8f\xa1\x9c\x24\x49\xa6\x44\x24\xb2\x46\x45\x62\x01\x70\x59\x8d\x48\xb5\xff\x77\xaa\x12\x4b\xd5\x2f\x4d\x83\xcf\x28\x13\xd5\x41\xdf\x69\x71\x21\xfe\xa2\xef\x34\xfe\x5e\x71\x38\xc4\x2c\xfc\xa1\xb7\x98\xfd\x4d\x91\x1f\xfa\x0a\x39\xe8\xc7\xb5\x53\x02\xed\xf4\x82\xde\xf7\xa0\x3b\x58\x63\xd7\x8a\x4e\xdf\xd1\xde\x6e\x9b\x11\xad\x0c\x47\x0e\x9a\xf1\x5f\x18\xc1\xc2\x6e\x15\x5e\x6d\x8f\x02\xbc\xf6\x3c\xa9\x56\x54\x21\xcf\x71\x0c\xa7\x53\xf3\x53\x6e\xbc\xc8\xc9\xc1\x63\x70\x1e\xf7\x72\x02\xcf\x1f\x7b\xc3\x04\x16\xda\x39\x9d\x45\xf6\x04\x4f\x31\x10\x72\xac\xaf\x39\x14\x3e\xe5\x07\x87\xab\xd2\xbf\x02\x7a\x4e\x3e\x37\x20\xad\x2b\x21\xd7\x76\x64\xb7\x24\xb6\x0b\x26\x06\xc1\xfd\xc0\x20\xe0\x5c\x13\xa8\xe6\x59\x1d\xe8\x1a\xce\x15\xf0\xb9\xc2\x99\xc3\xf3\xdf\x60\xdf\xc0\x72\x67\x8e\xc0\x71\xa6\x43\x4a\xcd\xe7\x07\xac\x48\x17\xfd\x49\x79\xd3\xfe\xd0\xd5\xa4\x02\x84\x37\xb6\x65\x28\x63\xbd\x6e\x54\xfd\x43\x90\x59\xf2\xeb\x4b\xe4\x61\xb0\x55\x2c\x26\x83\x0e\xc8\x52\x72\x0c\x4d\x0b\xeb\x5d\x0d\x1e\xe3\xd0\xc6\x11\x9a\x1f\x1d\xe3\x44\x42\x54\x93\x3b\xc6\xe5\xe9\x71\x86\xc3\xf1\x30\xbb\x8c\x88\x21\x9a\x46\xb8\x0b\x1b\x9c\xea\x5c\xb5\xf8\xd0\x5b\x48\x5b\xd1\x60\xb9\xf8\x5e\x4b\x96\x95\x05\x01\x67\xf1\x3e\xfb\x3e\x01\xb6\xa2\x4b\x3c\x1c\x05\xf3\x14\x10\x9d\xaf\xf3\x4c\x3a\x05\x84\x2f\xae\xd1\x3d\x90\x53\x20\xa3\x09\x07\x44\x17\xe2\x7d\xf8\x9d\x80\x97\x5c\x40\x63\xe6\xe7\xee\x71\x9c\x00\x4c\x42\xac\x0a\x6f\x84\x04\x47\x1a\xb2\x5f\x39\xdd\x62\x58\x38\x3c\xf1\x02\xad\xf5\x51\xc8\x47\x8d\xdc\xb6\x2a\x48\x3b\xe7\x85\x34\xc7\xd1\x2e\x0c\x3e\xbb\x12\x3c\x20\x52\x2b\x26\xde\x51\xd3\x8c\x89\x7b\x64\xc6\x11\x9f\x96\x8d\x0c\x4a\x49\x26\x2b\x3e\x18\x91\xe5\x9b\x54\x53\x3f\x58\x8f\xa7\x32\xb9\xfb\xe7\x4d\x48\x5c\x20\xf1\xbc\x40\xbc\x53\x42\x39\x49\x8f\x47\x21\x16\xaf\x7d\x89\x7e\x74\x3b\x7c\xa4\x4a\x36\x8d\x6e\x95\xf1\xb2\x4b\xea\x11\x06\x6c\xda\x69\xaf\xf0\x4a\x74\x46\x4d\x8c\x83\x99\xcd\x13\x8a\xa3\x23\x73\x77\x51\x8c\xa2\x13\x5c\x21\x57\xab\xd5\x74\xa2\xd4\xdc\x5e\x9a\xed\x2c\xbe\xde\xc4\xb4\x07\xc0\x27\x57\x65\xa8\x72\xc1\xf9\x22\x2c\x31\x18\x7f\x6e\x4e\x8c\x28\xbd\x9a\x51\x6b\xe2\x77\x16\x28\x85\x83\xb6\x9e\x4c\xcd\x85\x22\x71\x2b\xe6\x47\x5b\x12\x4d\xd9\x56\xd4\x0f\xea\x1e\x36\x23\xa4\x78\xa0\xeb\x42\x33\x82\xfd\x76\xa2\xfa\x84\x27\x54\x0a\x45\x44\x1b\xe7\x61\xb5\x92\xa7\x48\x18\xc1\x2f\xc3\x19\xef\x63\xd3\x13\x2d\xd8\x4f\xa2\x58\xfe\x2c\x59\x89\x39\xba\x73\xf2\x58\x06\xc3\x42\x8c\x8b\xb7\xe6\x2e\xd3\x85\x70\x43\x31\x64\x8c\x35\x4f\xe2\x94\x0c\x23\x81\xbb\x2f\x69\x9d\x25\xd2\x18\xe0\xb9\x74\xab\x9b\xf5\x29\xce\xc6\x3a\x4d\x44\x60\x6d\x71\x92\x1e\x76\x16\xd5\x65\x68\xd0\xa4\x8e\x2f\xc3\x96\xbb\x34\xb2\x40\x69\x07\xbe\xcf\xeb\x6d\xb6\x1c\xec\x26\xa7\xd3\x8c\x48\xf8\x0e\x02\xc8\x5b\xa9\x04\xdd\xfe\x39\xf6\xd2\xc5\x67\x26\x27\x9a\xf9\x4e\x35\x77\x0f\xf6\xba\x78\x65\xe1\x1f\xed\x2c\xb9\xe2\x44\x5c\xec\x90\x83\x9f\x0f\x15\x23\x1a\x50\x8c\x54\x5a\x5f\xf4\xb4\x1b\x47\x40\x64\x57\xd8\xfd\x3f\xd1\xa2\x50\x03\xb7\x08\x3f\x67\xbc\x37\x94\x9e\xf1\xde\x9b\x05\x0e\x90\x4f\xb1\x2f\xe5\xbc\x3b\x6b\xef\xe8\x2d\x93\x35\xfe\x4c\x39\x5b\xed\x43\xe6\x73\xed\xc5\x8b\x32\x77\x2d\x9d\x6e\xf2\x37\x5b\x7f\x81\x84\x05\x29\x80\xaf\x05\x65\x90\x7c\x35\x70\x0e\xea\x8e\xa6\x49\x2f\xdd\xde\x1e\x4d\x23\x5e\xdb\xc3\x1c\x15\x80\x69\x53\x07\x23\x54\x42\x09\x39\xf1\xe5\x96\xcf\x1b\xa9\x48\xc0\x94\x1c\xe1\x3f\x9b\x8a\x1c\xde\xee\x4d\x78\x81\xe7\x56\x2f\x6c\x8b\x59\x8f\xd8\xad\x78\xde\x23\xbe\x60\x00\x3b\xe2\x97\x05\x9f\x5b\x0a\x3a\x37\xf5\x8b\x8c\xd8\x65\x7b\x0f\x6a\x5d\x5b\xbc\xc5\xcb\x69\x0b\x8d\x01\x89\x6e\xc2\x12\x51\x53\xa1\xb7\x0f\xb3\xfe\x39\x45\x37\x3e\x8d\xec\x6a\xd6\x65\x40\x31\x0d\xaf\x2b\x42\x52\x09\xad\x3e\xcd\xa1\x43\xda\x04\xbc\x00\xe5\x87\x10\x7f\x0d\xa0\x28\xaf\xbe\x7f\x7b\xfd\x00\x78\xe8\xc0\x9f\x8b\xf7\xb0\xd6\x40\x21\x62\x50\xc4\x6d\xdf\xbf\xbd\xa6\x27\x57\xfd\x4e\x1d\x4b\x5f\x21\x2f\xd7\x19\x0d\x49\x29\x9c\x90\x85\x4e\x3e\xf1\xce\xac\x1a\x4e\x10\x06\x61\x6a\x86\x99\x50\xa8\xd3\xdb\x9d\x3f\x28\x0c\xa0\xf1\x00\xae\xd8\xb9\x25\x5c\x91\x7e\x27\x10\xc4\xc2\x9c\x33\xa5\x25\x3a\x85\x89\x77\x8c\x73\x99\xa8\x59\xd1\xff\x6e\xba\xe6\xa8\xa3\x5d\xe6\x74\xe3\xc4\x33\x84\x99\x97\x27\xd2\x38\x7f\x24\x57\xec\x65\x04\xaf\xe5\x1e\x83\x37\x01\xd4\x8f\x0f\xe2\x58\x85\x98\xec\x17\xe2\x35\xfd\x7a\x18\x1c\x63\xb9\xa7\x32\x97\xd9\xe7\x43\x7d\xcd\xc3\x68\xc0\x0e\x31\x3a\xd6\xe4\xd9\xe3\x8e\x34\xbb\xbf\xc1\x2e\xf4\x77\xf1\x37\x58\xdc\x7f\x17\x7f\xd3\xa6\x55\x9f\xfe\x1e\x0e\x44\xe2\x53\x74\xc0\x38\xce\x67\x41\x19\xc8\xd2\x0a\x44\xc0\x62\xf9\x3e\x3a\x76\xdd\x74\x42\x97\xda\x00\x47\xb2\xe9\x7d\x88\x55\xda\x58\xe3\x07\xbd\x1e\x27\x5a\x5a\x2b\xd1\xa5\xfb\x77\x72\xe2\x7a\x8a\x5f\xe2\xff\xb6\x26\xd7\xab\xc8\x3a\x8e\xb7\x79\xbc\xad\x41\xc3\x8c\x41\xa7\xb3\x08\x02\x78\xee\x50\xdc\x87\xf5\x16\xcd\x35\x76\xd0\x5b\x0d\x03\x8a\x85\xb2\x5e\xe0\xeb\xe5\x18\x93\x7b\x27\x1d\xe1\x8d\xb1\x85\x29\x60\x25\x55\x23\xe3\x23\x46\xae\xac\xa0\xd4\x78\x57\x13\x01\x3a\x0a\x6e\x18\xe7\x34\xd3\x01\xcd\xbd\x1a\x7c\x3c\x70\xf2\xe2\x9d\x15\x6f\xd5\x76\xec\xe4\x90\x5f\x44\x9e\x16\x98\x8e\x77\xc0\xc3\xc6\x2a\xdc\x9c\x80\xea\x62\x60\x5c\x19\x3f\x8f\x57\x92\xd9\x96\x0d\x42\xf4\x40\x71\xc3\xa6\xb5\x90\xd5\xc0\xa1\xd9\xe0\x09\x07\x59\x2e\x23\xa0\x14\x15\x67\xd4\xe0\x36\xe0\xe9\xdb\x52\x2b\xc8\x29\x26\xb6\x81\x02\xa1\x2c\xb4\x20\x39\xf8\x84\x50\x28\x7c\x32\x37\xd1\xdb\x09\x9a\xe2\x11\x4d\x2e\xa7\x27\xfb\x29\x41\x85\x47\x6c\xa8\x49\xe8\x7e\x57\xc6\xed\xcc\xd7\x19\xc5\x82\xbe\x80\x95\x4f\x3f\xdf\x84\x68\xd2\x73\xb0\xa8\x4f\xa7\x10\xd2\x25\x51\x32\x01\x1e\x57\x1a\x0f\x52\x19\x1c\x87\xa5\x5a\x7a\xf3\x98\x2f\xbb\xa2\x21\x02\xe3\x23\xb9\x85\xe6\x4d\x86\x69\x31\x94\x8e\xde\x64\x73\x18\xef\x7a\x68\xd3\xea\x7b\xdd\x8e\xb2\xc3\xc6\x3c\x84\xf7\x0f\x25\xde\xc6\x1a\xbc\x54\x7e\x12\xf7\xa4\x43\xc8\x3a\xe2\x03\xf5\xe8\x17\xbb\x49\xc1\xed\x17\x7b\x04\x5c\x2d\x7a\xba\xf0\x4a\xc2\x20\xf5\x22\x85\xa9\xce\x2d\xaf\x64\x56\xc5\xf9\x41\xb1\xfa\xc2\x2c\xfd\x71\x26\x8e\xb0\x6b\xca\xaf\x03\xe0\x44\x01\xe0\xa9\xf4\x72\x11\x2c\x0c\xe8\x9b\x70\xab\x43\x61\x21\x14\x3a\x5a\xe9\x65\x3a\xdb\x32\x96\x63\xe9\xac\x65\x73\xb7\x68\x35\x5b\xc4\xbf\xb0\xbe\x72\xc3\x1c\x10\x2e\x68\x8d\x78\xeb\x06\x2a\x06\x3e\x7d\x36\x97\xb2\x66\xe6\xe3\xb7\x39\x6b\x0a\x0d\x4e\xb7\x49\xb0\x2b\xd3\x88\xb5\x99\xa1\xa8\xbc\xa4\x86\x4d\x5b\xe2\x47\x27\x08\x15\x3a\x50\x04\x9a\xff\x47\xa8\x75\x9a\x50\x89\x11\x7d\x36\xc0\xd2\x69\x7c\x7f\x38\xc9\xd8\xb2\x30\x48\xb9\x9d\x14\x78\xe5\x91\x3c\x3b\xe6\xe6\xa7\x73\x8e\x2c\x02\xb9\xa0\xc2\x00\xc9\xcf\xf9\x18\xe0\x3c\x7a\x40\x52\xc4\xed\x2c\x22\x58\xee\x9e\xe6\x4e\xb7\x15\xf7\x3c\x22\xc0\x65\x88\xe7\x13\xa4\x26\xb4\xf1\xc3\xc6\xdc\x2b\xd3\xa2\x9b\xe0\x86\x4e\x74\x66\x36\x91\x87\x67\xca\x67\x4e\x1a\x4e\xa9\x24\xcb\xc8\x82\xaa\xf8\x99\x30\xc9\xf3\xd5\x1f\x36\xf4\xd7\xea\xc0\x0e\x79\x49\x25\x93\x77\x28\xb8\x06\xbe\x8c\x91\xe4\x02\xc3\x5d\x40\xb5\xb8\x23\xa4\x17\x01\x62\xd3\x42\x81\xe1\x74\xf3\xca\x20\x5d\x4b\xc1\xb9\x32\x45\xa9\xad\x27\x4e\x87\x97\x6d\x8b\xfd\x29\x9c\x0f\x4f\x16\x98\x44\xd3\x2c\x70\x95\xd1\x34\xe7\xf3\x65\x52\x71\x08\xa9\x39\x37\x3b\xdb\x21\xf7\xb1\xcb\x1b\xb6\xd0\xa5\xc5\x62\x85\x1b\x04\x3d\xd9\x0b\xf3\x31\x5d\xb6\xdb\xd1\xbb\xa8\xb9\xf1\x3d\x5d\x70\x9e\x6e\x8f\x93\x39\xfb\x40\x08\xce\xd0\x28\x3a\x87\x3b\x45\xb9\xab\x45\xaa\x71\x8c\xbc\x5c\xfb\x4e\x16\x9b\xc9\x35\x95\xcc\x78\x53\x18\x59\xf1\x7d\x9c\x14\x0c\x07\x24\xd1\xf5\x8c\xf0\xc5\x73\x39\x65\x3c\x1c\xb6\xeb\x51\x38\x54\x14\x24\xf3\xb2\xab\x72\x5e\x1c\xc8\x52\xc2\x73\x88\xed\x26\x13\x83\x4a\x3c\xc9\x63\xab\x0a\xba\x96\xec\xc7\x66\x47\x27\x77\x68\x3c\xc1\xe0\x33\xe2\xe6\xcd\xed\x3b\x41\x66\x53\x3f\xe8\xed\x16\x36\x60\xf1\x97\x9d\x32\xf8\xd2\xb2\xb3\x7b\xc5\xdc\xad\x69\x46\x32\xb1\xd1\x93\xb2\x07\x15\x62\x4b\x9a\x96\xb7\xa3\x3c\xc0\x75\xb0\x1b\x90\xbb\x99\xc0\x47\xef\xd1\x1d\xbb\x57\x8d\xde\x1c\x57\xe2\x5a\xc9\xc1\xd0\x0b\xad\xc1\x43\xf6\xc1\x2b\x91\xb1\x27\x18\xce\xe4\xa7\xef\x65\x6e\x5f\x66\x92\xe4\xd3\x97\x37\xaa\x19\x79\xa6\xa0\x4b\xc1\x1c\x03\x85\x1f\x3a\xdb\x45\xa6\x4d\x5b\xb3\x86\x3d\x40\xf0\x6d\xbd\x2f\x99\xa6\xb3\x36\xe4\x4f\xfa\x52\xd5\x5f\xca\x78\x19\xd5\xca\x93\xb9\x99\xdb\x72\x21\xde\x29\x87\xd1\xff\xf0\xfb\x33\xe0\x81\x04\xb7\xf4\x8a\x23\xde\x19\x40\x93\x22\x4d\x8b\x88\x35\xbc\x42\x8d\x12\x55\xa0\x91\x9b\x9b\x79\x16\xeb\x48\x5d\xc4\xa6\x1d\xa6\xfd\xa4\xb9\x4f\xee\x62\x54\xdd\x5f\x47\x35\xaa\x95\x78\xe9\xc5\x5e\x1e\xe9\xd5\xe2\x8d\x3a\x08\xa7\x1a\x6b\x5a\x17\xe2\x31\x68\x8f\x77\x46\x9d\x18\xfb\x70\x87\x77\x36\x24\xf3\xb6\x0d\x2a\xa3\xd5\xdb\xf8\xf1\x10\x60\xd6\x83\x17\xd0\x72\x2f\xdd\xdd\xc4\xf7\x00\x34\xc1\xaf\xec\x45\x0a\xbf\x19\x4b\x38\x2f\xfd\x88\x2b\xed\xa1\xf6\xe7\x87\x16\xca\xf9\x25\x10\xd7\x5b\x8a\x53\xf7\x96\x7f\xce\x81\xc8\xf1\x03\xfb\x44\xbf\xe6\x20\x3d\xbf\x1f\x18\x5f\x12\x9c\x83\xac\x6d\x0b\x74\xfc\xc5\xb6\xc7\xb9\xf9\x36\xcc\xae\x68\xc3\x45\x5e\xd4\xdb\x03\x1e\x25\xae\x8f\x98\xa1\xbd\x53\xdd\x86\x1e\xe0\x01\xfd\x55\x85\xd0\x24\x28\x10\xc5\x78\x31\x82\x58\x00\x8f\x33\x9a\xf9\xf1\xea\x5c\xee\x1d\x49\x0f\x51\x14\x51\xf5\xa7\x6d\xa2\xc0\x25\xdc\xae\x97\xa4\x7b\xe0\x6c\x44\xbb\x2d\x45\x8c\x39\x07\xdd\xbd\xcf\x2e\x77\x07\x7b\x54\x4f\xcf\xbd\xaa\x16\x79\x18\x3e\x6a\x15\x40\x48\x79\xa3\xd8\x01\x59\xd0\xc5\x24\xb2\x6b\x87\xf5\x2c\xb4\x88\x83\x64\xe2\xcc\xc2\xf0\x98\x33\x88\x74\x31\x05\x81\x42\xb8\xed\xa9\x08\xc6\xe0\xc9\x28\xfc\xa2\x60\x7f\xd9\x06\x12\x07\xc6\x6e\x59\x6e\xe4\x67\x5c\xc9\x38\x04\x1b\x43\xb0\x05\x65\x4e\xa8\x40\xab\xf7\x6f\xaf\x73\x66\x7e\x2e\x24\x6c\xef\x64\xf1\x18\xd4\x56\x0e\x6d\x88\x90\xc2\x1b\xcb\x4e\x7a\xda\x40\xf2\x57\x20\x30\x6c\x19\xa3\xa0\xbb\xed\x77\xda\x60\x64\x4f\x54\x4d\xd8\x68\x07\x5a\x62\xf2\x37\x81\xbd\x64\xec\x61\x7b\xa1\xbd\x2a\xd4\x83\x5d\xfe\xf6\xdf\x6e\xdf\xbc\x3e\x17\x9f\x9e\x1c\x0e\x87\x27\x50\xfc\xc9\x38\x74\xca\x40\x17\xda\x73\xf1\xbf\x5e\x5d\x9f\x0b\xe5\x9b\xef\x56\xe2\x15\xed\x3a\x89\x99\xb3\xcb\x27\xba\x73\xa3\xff\xe4\x38\xfc\x13\xbb\x11\xaf\x18\x36\x88\xe6\xef\x6f\xe6\xb2\x23\x8c\x5e\xb8\xec\x17\x9e\xae\xc4\x4b\x7f\x99\x1c\xd2\x0c\x0a\xef\xca\xe1\x8f\x69\x46\x62\xdb\x08\x16\xe6\x27\xbe\x51\x20\x9d\xb8\x7d\x71\xf9\x87\x7f\xfd\x9f\xe2\xc5\xab\xcb\x2b\xb1\x53\x9f\x44\xab\xb7\x8a\x0e\xd2\xc2\x8a\xbe\xd7\x61\xac\xff\xd7\x13\x98\x04\x4f\x6e\xf5\xd6\x48\x3f\x0e\x2a\x8c\x3b\xb1\x87\x5c\x34\xea\x64\x73\xb7\xf4\xdc\xcd\x14\x44\x37\xd6\x30\x01\x5e\x36\xd6\x94\xbd\x27\x90\x70\x31\xe5\x0a\xaf\xa4\x24\xe3\x30\x4c\x99\x28\xbf\xec\x94\x01\xfe\x3e\x76\x6d\xb9\x35\xaf\x55\x98\x02\xaa\xfd\xd3\xb4\x30\x46\x1f\xb3\xa6\x03\xa6\xf4\x6f\x18\x77\x66\x17\x9c\x59\x20\x2b\xf4\x0e\x81\x57\xd3\xc2\xf8\xc0\x70\xa6\xd6\x5d\x88\x97\xf4\xd2\x71\x50\x2b\x53\x5e\x54\x2d\x67\x48\xd8\xca\x77\x21\xae\x95\x17\xfb\x68\xf5\xc3\x59\x4e\xe8\xe6\x45\x4a\x67\xc7\xe5\xec\x40\x97\x5f\xf2\x98\x64\xc1\x11\x70\x4e\xc3\xf2\xda\xcd\x62\xf6\x32\x46\x96\x3a\xa6\x45\xf2\x20\x74\x0b\x59\x29\xfc\x67\x0a\xed\x86\xe1\xf6\x96\x06\x88\x63\xc2\x2d\x8e\x5d\xb6\x65\x84\xb3\xcd\xdc\x74\x30\x2d\x33\x8d\xb9\xb6\x98\x1d\xf9\x3d\x1a\xad\xe9\xc6\xda\x39\xdd\xc3\x6b\xcf\x45\xb8\xc3\x76\xce\x1e\x5a\xe7\xe1\xd2\x7b\x7b\x2e\x46\x93\x7e\xd3\xfd\x21\x56\x5c\xc3\x27\x7a\x88\xc2\x67\x74\xe0\x6b\xcf\xe9\xe5\xba\x94\x30\x1b\x6f\xb2\xf2\xa7\x5b\x7a\xd4\xae\x70\x57\xef\x21\xe0\xb2\x27\x01\x03\x4f\x82\xd4\x81\xf8\x74\xde\xbc\xee\x89\xe3\x43\xe1\xed\xfd\x00\x68\xf4\x05\xc9\x8f\xd1\xff\xf7\x53\x32\x27\x23\x76\xcb\x1d\x4d\xb3\x1b\xac\xd1\xbf\x2f\xf4\x8d\x03\xe1\xa5\x38\x78\x27\x00\xd2\x64\x25\x78\x3c\x8a\x40\xbf\x0a\xbc\x32\xb5\x7c\xe0\x49\xa1\xe3\x42\x0c\xb9\x69\x46\xf2\xcc\x7f\xaa\x3c\xbe\x22\xb4\xb4\x1b\x92\x31\x37\x72\xaf\xb4\x7f\x05\x0e\xce\x92\x20\xa9\x82\x14\x81\xbd\xd8\xbf\x71\xf3\x2e\x0d\x02\xcb\xe2\xf4\xcc\xc7\x2a\xd3\x1d\x59\x3a\x98\xe9\x47\x0c\x38\xa9\x63\xa6\x96\xf0\xb8\xcd\xad\x0d\xa9\x86\x53\x1a\x18\x5d\xaa\x0e\x9a\x41\x78\xc9\x10\x9f\xb1\x78\x1a\xd3\x4a\x7d\x36\xec\x93\x28\xf9\x94\x9b\x24\x46\x75\xc1\xfd\x24\x97\x69\x40\x33\x2e\xaf\x65\x02\x08\x5e\xca\xd4\xc6\xab\x10\x3e\x74\xf6\xf2\xcc\x71\x42\xea\x56\xbb\x06\xdf\x6d\x7f\x08\xf7\x53\x02\xfa\x3a\xec\xd4\xe6\xf0\x4a\x01\xbd\xa6\x30\xc9\x6c\xed\x5e\xa2\xc3\xe1\x53\xfc\x31\xdb\x3f\x77\xd2\x18\x72\xae\xa6\x5f\xf9\x58\xf4\x9d\x3d\x86\xa7\x7f\x9e\xe2\x17\x3f\x67\xb8\x00\x92\x3d\x94\xb3\xfe\xf9\x8a\x9e\xab\x79\x6e\x7d\xb3\x93\xdf\xfc\xf4\xfd\xfa\x67\x90\x90\xd9\x56\xdf\x59\x7b\x17\xee\x55\xc8\x16\xe7\x75\x7c\xf8\xa0\x8f\x0f\xca\x24\x87\x07\xd9\xb6\xe4\xa5\xa2\x0d\x91\x22\xa3\x1b\x50\x2e\x3e\x15\xca\xad\x9a\x08\x52\x38\x02\xb1\x9d\x4c\xfa\xd4\x9b\xa5\xce\x24\x75\x1e\xa1\x90\x02\x68\x74\x02\xdd\xec\x09\xca\x04\x64\x70\x5a\x89\x77\x3b\x75\x8c\x01\x6e\xf1\x3d\x43\x3c\xd7\x2c\xdf\x72\xc0\xe6\x85\x57\x7e\xf2\xe3\x41\x5b\x97\x44\xfe\x4f\x3e\x9c\xc1\x90\x21\x64\xc7\x31\x47\xd1\xa6\x66\xe4\x86\xcd\xe2\xca\xc2\x52\x2f\xe6\xcf\xea\x44\xa8\xe9\xf3\x3f\xa9\xa7\x27\x9f\xff\xc9\x8b\xe6\x6f\x00\x65\x45\x51\x76\x8f\x44\x58\xf4\xd1\x2d\x86\x65\xfe\xc2\x4f\xea\xea\x17\x3c\xf2\xb3\x3c\x72\x53\xe3\xcd\x67\x87\xfa\x21\x17\xfd\x36\xef\xdc\x17\x3c\xf7\x33\x0d\x5f\xf5\x05\x76\x9c\xa5\xb6\xe4\xde\xa9\xb1\x01\x9f\x73\xd8\x6f\xf5\x66\xb3\xa2\xc8\xa7\xb5\xb3\xe3\x80\x4f\xde\xff\x82\xdf\xe2\x16\xbf\x09\x84\xe3\xbe\x5d\x70\x00\x38\x4a\xe4\x9b\xf1\x17\xec\x2d\x4a\x89\x78\x67\x0f\x4d\x92\xf7\x52\x77\xa8\x7e\x5e\x88\xa7\x7a\xb3\xa1\xfb\x7b\xaf\x2d\x3e\x8e\x48\x39\x2b\x2a\xe2\x76\xf6\x50\xc3\x2f\x7c\x0d\x08\x3d\xc3\x76\xf6\x40\x85\x6e\x21\x25\x03\x73\x7d\xa7\x7d\xcd\x41\x57\x6f\xe1\x03\xc3\xc6\x66\x10\xa3\xc1\x10\x71\x01\xe6\x3d\x7d\xe6\x50\x80\x32\x5e\xa1\x0f\x67\x34\x67\x6d\x8c\x6b\x86\xea\x7f\x3a\xbd\xc1\x19\x1a\xe0\xce\x5a\xe4\x3f\xa8\xdf\x27\x90\xfc\x75\x8d\xb3\x36\x5a\x8e\x13\x04\x13\x1a\x99\xea\x2f\x2f\x5f\xd3\x27\x86\x3c\xe5\x98\x37\x18\xfb\xf6\x99\xee\x98\xde\xfc\x32\x68\x8f\x71\xd5\x54\x1b\xe2\xbd\x41\x9e\xc8\x92\xb3\x5b\x5f\x79\xf4\x5b\xc2\xe1\xad\xad\xf7\xd2\x1c\xe3\x7d\xd0\x5b\xbb\x57\x6c\xdb\x38\xa8\xf0\xba\xfb\xce\x1e\xb2\x2b\x72\xd6\x0a\x28\xc2\x50\x81\x20\xc1\x4e\x0a\x68\xab\x10\xf0\x77\xb5\x14\xf8\x37\xe4\x51\x14\xe7\x20\x0f\xc1\x2a\x0d\x32\x51\x80\x68\x07\xb9\xc1\x1b\x4b\xf0\x3f\xa6\xf6\x83\x4a\xc5\x6e\x06\xf5\x64\x5a\x8c\x6f\x16\xc1\xbf\x98\x26\x77\xe4\xd5\x9e\x46\x20\x8d\x4c\xb8\x04\xe7\xad\x38\x73\x1c\x16\x8f\x17\x5c\x89\x98\x66\x7f\x8d\xde\xcf\x17\x3c\xf7\xc5\x95\x6d\x55\xd1\xa7\xfc\xca\xd2\x0d\xc9\x6d\x22\xd2\x01\x3d\x3b\xe8\x91\xa2\x7e\xb0\xed\xd8\xf8\x55\xd1\xee\xa2\x34\x09\x6a\x2a\xcc\x3a\xd1\xd9\x2d\x5a\x03\x30\x8e\x29\xf9\x6c\x8e\xa6\x55\x83\xf3\xe4\x9e\x2d\x33\xee\xaa\xf7\xfd\x40\x47\x07\x01\xbd\x97\xdb\xf8\x88\x92\xdc\x52\x30\x86\x94\x87\x96\xf0\xf0\x42\x74\x51\x26\x6e\xc0\xc1\x93\x3b\x0b\x86\xe8\xe5\x16\x85\xde\x26\x0f\xbf\x0d\x3a\x9a\x35\x41\x66\xcd\x1a\x50\xec\x2c\x21\x75\xbe\x9b\x84\x9c\xf2\xb6\x42\x36\xfc\xbc\x6c\x39\xfe\x6f\xcc\xe9\xac\x6c\x49\x29\xbe\xa6\x5f\xab\xd5\x6a\x61\xd6\xcc\x9f\xf9\xea\x07\xf5\x64\x3a\xd6\x19\x7c\x24\xc0\x5f\xd4\xe3\xae\x13\xbd\xd5\xc6\x0b\xba\x7d\x23\x7d\x31\x53\xc2\xc9\x09\x0f\xad\xb6\xe6\x09\x6e\x53\xa9\x19\xd3\x3b\x67\xb1\x3a\x9e\x28\x69\xca\x4c\x67\x35\xde\xe6\x09\x2b\x02\xaf\xf3\x94\xcb\x02\x67\x4f\x5a\x18\x78\xaf\x6e\xb6\xa0\x48\x0c\x4e\x50\xe5\x89\xf9\x02\x30\x6d\x79\x41\x0d\x89\x27\x6d\x53\x98\xe5\x5d\x2e\xd4\x33\xbd\xbf\x83\xaf\xb6\xba\xde\x9a\x78\xf8\xec\xe5\xf6\x81\x3d\x6d\x56\x5b\x7e\x82\x4b\x55\x7c\x66\x13\x9b\xae\x81\xf2\x36\x50\x86\x87\x45\x0d\xe0\x94\xbc\x46\x66\xa2\xc6\x0c\x17\xdf\x9e\xcc\xd6\x55\x98\x07\x98\x9e\x4a\x84\xc8\x15\xb8\x01\x87\xdf\x55\xf5\xc1\x0e\xdb\x8f\xf8\x54\x3c\x45\x29\x8e\x51\x0a\xf3\x33\x39\xb4\xbb\x02\x4c\x7c\x76\xfa\x04\x60\x7a\x8a\x3a\x61\x0c\x13\xf8\x39\x2c\xd3\xd2\xdf\x05\x00\xc8\xea\x8d\x4f\x16\xb1\x5f\x3e\xbf\x5a\xb4\x0a\x11\xf7\xe9\x05\x7d\xbe\xae\x96\x57\x47\x8f\xd4\xa4\x4b\x50\x1c\x54\xbc\x62\x7f\xf9\x0b\x71\x83\x3f\x2a\x6d\xee\xb5\x07\xf9\x61\xaf\xc8\x61\xee\x25\x26\xe0\x7e\x63\x8d\xaa\x0a\x8f\xf2\x0a\x63\x21\xd7\xc1\x9b\xfc\x22\xf8\x95\x73\xfa\xe4\xa1\xf9\xe2\x61\xf8\x2c\xc0\x2f\xa0\x2c\xef\xd8\x01\x72\xa4\xca\xc2\xed\x5b\x80\x8e\xec\x11\x4a\x22\x09\x31\xf5\x21\xe8\xe2\x49\x20\xe0\x0e\x63\x08\x6b\x87\xb8\x30\xbc\x84\x21\x85\x0b\x27\x15\x60\xd6\xa6\x88\xb7\xe3\x56\xa9\x9a\x8c\xd7\xec\xe8\x6a\x6e\x2a\x06\xc2\x21\x3a\x65\xff\x89\xe0\x8b\x67\x31\xd8\x20\x29\xe9\x49\x2f\x4a\x16\x9d\xba\x57\x5d\x61\xa1\x44\x44\xa0\x09\xfc\xe9\xc4\x43\xf8\x6f\xa6\x73\xe3\x1f\x78\x6b\x65\x8e\xe3\xc1\xd7\x56\x10\x5d\x22\x68\xd6\x18\x1c\x87\x13\x8d\x88\x82\xee\xd7\xde\xae\x5b\x7e\xb6\x3d\x3f\x36\x9a\xbc\xdf\x1e\xb3\x96\x1e\x72\x3f\xe5\x64\xf2\x90\xdf\x7b\x09\x9a\x31\xb3\x82\x70\x11\xd3\x97\x7a\xa4\xb0\x3b\xbd\x1d\xb6\xff\x9c\x37\x7d\xf1\x2e\xdd\xac\xd5\xb3\xb7\xc6\x8b\x46\x7f\xdd\x9b\xe3\x27\x3d\xb8\x0a\x0e\x33\x35\xe2\xcc\x1e\xc2\xc3\x0e\x3e\x58\xa4\x7c\x16\x2f\x6f\x70\x3c\x38\xcb\x3c\xa8\xd8\xe9\x82\x1e\xc4\xa3\xc3\xff\xcf\xbf\x8a\x77\xc2\xf3\xe6\xa1\xe7\xf1\xa6\xad\x04\xce\x14\x83\xd7\xe5\x8d\x7c\xb0\x44\x2e\xcd\xd8\x89\x17\xc7\x3f\xfe\x64\xde\xb2\xc7\xc6\x65\xdb\x06\x6b\x1e\xbf\x90\x15\xe8\x97\x2c\x86\x9b\x2c\xe4\xf3\xf4\x41\xc4\x44\x39\x94\x5b\xf9\xd2\x59\x31\xdf\x2a\xe6\xf5\x2b\xfe\xbf\xd3\x7d\x5d\x3c\x93\xf7\x2a\xa6\x67\x2f\xe6\xfd\x18\x8b\xb1\xa5\x27\xbc\x21\x3c\x49\x4f\xfc\x15\x6f\x7e\xf7\xf4\x66\x5d\x02\xa2\x6f\x7a\xe1\x7c\x29\x67\x5a\xbe\xac\x83\xfe\xd7\x83\xed\x54\x6c\xa8\x78\x6b\x3b\x95\x9a\x57\x86\x6e\x2b\x0b\xc6\x32\x31\x9d\xcd\x02\xe1\xcd\xb2\x98\x8e\xaf\x51\x86\x07\x2b\x63\x2a\xef\xb1\x79\x20\x7e\x94\xc7\x19\x3b\xaa\x37\x3f\x4e\xa1\x0d\x46\xbc\xe6\xdd\xf8\xb5\x3d\x54\xb4\x15\xaf\x30\x36\xdc\x85\xf8\x37\xab\x0d\xa7\x94\x95\x52\x1a\x48\x46\xe9\x89\x88\xb7\xa0\x63\xd1\x5b\xa5\xf3\xfc\xc9\x53\x58\xb8\x13\xc5\x47\xb0\xf8\xc9\x54\x14\xec\x39\x02\xa1\x21\xb7\x96\xf2\x11\x27\xc2\x3a\x79\x99\x82\xee\xc5\x17\xf5\xe6\x10\x5f\x52\x31\xde\x79\x9e\x56\x77\x1e\x4c\xdc\x68\x77\x8b\xd7\xd8\xd4\x3e\xb4\x03\x5d\x9d\x53\x3b\xf0\xea\x75\xd9\x8e\x1c\xe2\x4b\xda\x01\xb5\x60\xb4\xab\x70\x05\xe0\x64\x7b\x64\x1b\x9e\xe8\x2f\x3c\x32\xa7\x4d\x4c\x8f\x31\xbd\xcb\xf6\x7f\xf4\x6a\x6d\x27\xf2\x8c\x5b\x2d\x6d\xa9\x94\x43\x4e\x88\x0b\x22\x07\x79\x98\x2f\x3e\xe2\xfb\x79\x26\x80\x61\xc5\xa0\x64\x04\xcd\x7c\xc7\x8b\xe0\xf0\xf3\x7d\x89\xda\x95\x44\x44\x94\x15\x98\x37\x70\xe6\xe7\xb7\x64\x82\x0b\xaf\xa3\x90\xbc\x98\x6f\x2a\x28\x30\x86\x91\x6c\x11\xa2\x8e\x6b\x15\x16\x58\x56\xeb\x1c\x59\x64\xe6\x08\x15\x99\xf8\x1c\x2e\xac\xd8\x5c\xda\xcb\xce\x5b\x14\x9e\x41\x15\x77\x2b\x03\xd4\x5e\x1e\xa7\x8f\xd0\x82\x88\x5d\xae\x9a\xd3\x8a\xd5\xbc\x29\x69\x5f\x7f\xae\xef\x95\x49\x13\xe6\xa4\x72\xb5\xca\x97\xfa\x7c\x82\xa4\x69\xb7\x1d\x30\xe2\x5a\x18\x6b\x60\x16\xd9\x54\x40\x84\x3f\xc6\x5e\x36\xd2\x4c\xb9\x01\x7a\xec\x29\xb9\x7f\xfc\x10\x53\xf8\x8a\x06\x20\xdb\x78\xb8\x05\xc8\x16\x28\xc6\xa7\x69\x73\x16\xf0\x50\x43\x68\xcd\x7f\x45\x43\x90\x6f\x7c\x61\x43\xce\x43\x2b\x48\x3a\x01\x2e\xb0\xb4\xfe\x1f\x6a\xdf\x44\x7d\xc2\xc9\xf9\x36\xd7\xa1\x02\x33\x40\x47\x53\xd4\xef\x16\x1d\x4d\x33\x73\xf4\x6a\x35\x5d\x25\x99\xa7\x6c\xb6\x52\x32\xa7\xfc\xd0\x16\xf4\x89\xe5\xcb\x4b\xbc\xcb\x25\x54\xc6\x1a\x7a\xe4\xdf\xf8\xfc\x82\x53\x86\x9c\xcf\x7e\xfc\x70\x64\x49\x07\x5f\xf6\x29\x9e\xed\x8b\x07\x3e\x6c\xa4\x42\xe7\xad\xc1\xf9\x55\x55\x7d\xc0\xb1\xfa\x58\xb5\xd2\xed\xd6\x56\x0e\x78\xee\x10\x7e\x57\xc5\x0d\xeb\xaa\x78\x3e\x7a\x22\xa1\xb9\x6a\x42\xd4\x82\x9e\x72\xf4\x3b\x50\x02\xa3\xf6\x70\x59\x24\x38\x7a\x51\x79\x1b\x44\xc4\xed\xc8\x91\x3e\xd8\x97\x1e\x6f\xfb\x3a\xaf\xf6\xe2\x35\x25\x54\x7b\x6b\x34\xb9\xed\xbe\xa2\x5f\xda\x6c\xab\x22\x5c\xcd\x33\xf8\xa0\x97\xfa\x39\xe5\x5a\x3a\x5f\x79\xeb\xf1\x6d\xc6\x77\xf0\xff\x47\x71\xd6\x56\xa9\xeb\x68\xf3\xd6\xce\xa3\xf0\x74\x1b\x7e\xbb\x0c\x20\x79\xad\x51\xb4\x2d\xfe\xc8\x51\x60\x3b\x6b\x76\x12\x8c\xed\xe6\x56\x22\xd6\xd1\x2d\x55\x19\x82\xd0\xa0\xbb\x57\x2b\xbd\x5c\x07\xa3\xce\x4f\x6b\xb4\xd5\xae\x7f\x26\x83\xe7\x79\x96\x50\x8c\x48\x9e\x51\x9c\xf6\xa5\xe4\x72\x2f\x4d\xe9\xf4\x1a\x6a\x91\xe4\xbc\x2c\xeb\x92\xcd\xac\x96\x70\x40\x93\xa7\x85\xeb\x13\x29\x25\x5c\xa4\x28\xb0\x17\x6f\xfc\x17\x59\x74\x63\xa8\x48\xa2\xdb\x69\x93\x9e\x90\x39\x39\x4f\xeb\xec\x56\x1b\x41\x26\xea\xb2\x7b\x2c\xb0\x97\x38\x43\x30\xa7\x02\x05\x46\xd8\xcd\x53\x76\xc1\x99\xb4\x48\xc5\x05\x9a\x27\xb0\x97\xe8\x0c\x30\x85\x72\x75\xab\xa5\x89\x14\xf4\xf0\x38\x99\x48\x19\x5f\x82\x74\x07\x4d\xaf\x51\xde\xe2\x8f\x45\x98\x61\x44\x63\xe5\x68\xb2\xdc\xa6\x53\xd2\xd4\xa3\x59\x6b\xd3\xd6\x96\xdf\x74\xbd\x82\x44\x31\x9a\x35\xfa\xd4\xbd\xc1\xf5\xe8\x1e\x2c\x94\x6d\x8c\x97\x5d\x27\x28\x2b\x94\xcc\x6e\x2a\x2d\xef\x90\x09\x33\xef\xb5\xec\xc8\x29\x93\x82\xe8\x92\xe8\x21\x31\x8c\x24\xbb\x73\x84\xec\x2f\xc2\x31\x69\x65\x82\x88\x68\xbe\xbe\xa9\xb8\x01\x00\xc3\xd7\xf7\x6a\xd2\xc8\xf2\xad\x7b\x06\xf9\x0c\x86\x49\x13\x17\x51\x7c\x7d\x23\x71\xab\x35\x5b\xda\x76\x4e\x34\x12\x14\xfb\xc6\x0e\x2d\x6b\xae\x9d\x75\x1e\x6d\xcf\xf4\xfa\xdf\xc3\x28\x4f\xb5\xfa\x41\x9c\x5f\xd1\x8d\xad\xf6\xf5\xb6\x49\xcd\xb7\x62\x2b\x87\x35\x70\x6e\xd8\xdd\x39\x36\x8e\x35\xa5\xad\x73\xb9\xf8\x43\x04\xc6\x06\xb5\x20\x4c\x2d\xa0\x3f\xd5\xb6\x41\x61\x4c\x09\xd9\x75\xb5\x73\x3b\xf6\x28\x78\xab\xe8\x74\xe6\xf1\xca\xb9\xdd\xf7\x92\x9f\x47\x56\x78\xf6\xee\x1e\xd3\x03\x1c\xdf\x36\x12\x2f\x4d\xff\x88\x11\x60\x90\xb5\x63\xe9\x20\xda\x02\xb5\xbe\x7b\xb0\xa2\x49\x5f\x32\xbe\x9e\xd1\x76\xc0\xa6\x78\xf5\x45\x3d\x08\x41\x3b\xde\x62\x12\x9f\xfc\x34\x0a\x7d\xaa\x99\x8b\xa1\xa8\x67\x9d\x0f\x19\xec\xd7\x6d\x37\xb3\x39\xff\x40\x15\x0f\x8c\xc2\xe3\xaf\xa9\x35\xef\x26\x3f\xe5\x7d\xba\x97\xda\x68\x3f\x5b\x0a\x6f\x31\x99\x5f\x65\xff\x87\x16\xc4\x12\xe2\x7f\x76\x41\x0c\x59\xab\xa6\x5d\xca\x05\x04\x7c\x0f\xba\x1e\x7b\xaf\x71\xa3\xb8\xa5\xf7\xa1\xdf\xe3\x77\xce\xb0\xc7\x61\x00\x21\x71\x6b\x07\x3b\x7a\x4d\x0f\x12\x51\x9a\x78\x1e\xd2\xdc\x42\x01\x3c\xea\x38\xd6\x23\x87\xd8\x0b\x65\x5e\x61\xb2\x78\x8f\x2f\x4a\xa5\x52\x28\x3f\x85\x32\xb2\x43\x83\x30\x59\xaa\x51\xb0\xe2\x52\x97\x21\x23\x2b\xc9\x65\xec\xda\x4b\x8e\x9b\xc6\xc0\x6f\x38\x25\x83\xc5\x03\x46\x35\xd4\x9d\xb5\x77\x63\x5f\x43\x57\x31\xa8\x0d\x25\x8b\x6b\x4c\x16\xef\x20\x79\x5e\x43\x68\x55\x2c\x36\x69\xd4\xa9\x72\x9b\x41\xcd\xca\x3c\x1b\xd4\x1c\x3e\x50\x6e\xa7\x64\x3f\xa3\xdb\x0b\x25\xfb\x19\xd5\x10\x72\x4e\x00\x84\x3d\x4d\x85\xbc\x94\x6e\x51\x8f\xce\x4b\xbc\x6c\xbb\x53\x75\x68\x74\x3f\x9a\xc2\x1b\x90\xe3\x4f\x94\x60\x79\x6a\xda\x2a\x3e\x14\x9c\xb5\xca\xae\xff\x4b\x35\xde\x05\xe8\x37\xf4\x99\x41\xad\xad\xf5\xce\x0f\xb2\x07\x51\x18\x7d\xd2\x89\x4c\xbf\x84\x74\x10\x85\x9b\xbb\x19\xa5\x08\x7a\x4e\x2a\x82\x3e\x4d\xab\xbd\xeb\xa5\xa9\x9d\x1f\xc6\xc6\x8f\x83\x72\xb1\xc2\x57\xb7\xbd\x34\xe2\x36\x66\xcc\x6a\x9c\x95\xcc\x67\xe8\xb4\xf0\x52\xcd\x8d\x6c\x76\x6a\xb1\xea\x2b\xc8\x79\xb0\xee\x59\xd9\xbc\xf2\x59\xf1\xa5\x95\x32\xd8\x8d\xee\x80\x29\xad\xc7\xe6\x4e\xf9\x7a\x27\xdd\xae\xf6\xf8\x44\x5e\x86\xeb\x26\x80\x89\x5f\x10\x4c\xbc\x90\x6e\x27\xde\xa1\xd1\x6d\x01\xeb\xb6\xa9\xf7\xca\x4b\xf4\x52\xca\xb0\x3c\xbf\x12\xaf\x38\x79\xa9\x14\x1a\xe3\x6a\xd6\x80\x78\x15\x82\x50\x9a\x61\x78\x83\xf6\x3a\x56\x8a\x2e\x23\xc8\x12\x36\xa3\x3e\xf1\x96\xde\x1c\x1b\x7e\x4d\xf9\x93\x87\x36\xbc\xa5\x94\x0c\x16\xd5\xbc\x6d\x53\x07\x1e\x89\x0e\x2c\x18\x8d\xf2\xf9\x15\x2e\xdf\x19\x07\x4b\xc0\xc4\xb8\x9e\x5f\x89\x1b\x39\xba\x45\xc0\x5e\xd2\x62\x3a\x09\x19\xaa\x0f\x80\xa1\xe6\x29\x1c\x57\xea\x88\x94\xc4\x56\x48\xc7\x5e\xe1\x6d\xd6\xbd\x34\x72\xab\xea\x5e\x92\xdf\x28\x68\xdd\xe2\x15\xa6\x89\x1b\x48\x63\x58\xa3\x0e\xf9\xa1\x4a\x3a\xdd\xbd\xa4\xc4\x00\x46\x9a\x05\xea\x13\x94\x12\x64\xe1\x36\xb8\x48\x23\x8b\xe6\xbc\x22\x7a\x26\xa5\xa5\x0d\xb4\xb7\x8e\xd3\x42\x54\xe3\xf8\xf2\x14\xa7\xe3\xbd\x8c\x41\x6d\xb5\xf3\x1c\x8a\x02\xa3\x07\xe3\xa5\xc5\xb7\x98\x1c\xf4\x9b\xfc\x1a\xea\x3b\x8b\xbd\xcc\x3a\x56\x7a\x2d\x86\x6e\x7e\x3e\xb2\xf2\x8a\x71\xe4\xaf\x9c\x70\xcf\x50\x79\x09\x6e\x7b\xa5\xe5\x21\xb8\xef\x11\x24\x4c\xc7\x8e\xcf\x36\xbb\xbc\x34\x6a\x96\x41\x55\x9b\x60\xb8\x46\xad\x33\xa3\x72\x2f\x9d\x3b\xa0\x57\x72\xb0\x76\xe3\x79\x81\xd0\x9e\xef\x9e\xa1\xb5\x1d\x7d\x87\x47\xc3\xce\x63\xa1\xf5\x29\xac\x1b\xfb\xb6\x45\x11\x83\x09\xc1\x39\x9f\x3b\x57\x4c\xb4\xc8\x66\x0a\x3a\xc4\x94\x73\x64\x2f\x3f\x91\x72\x82\x24\xe5\xc0\xcb\xf2\x93\xde\x8f\xb9\xa9\x8a\x86\x1a\x3b\xab\xf7\xfa\x64\xd9\x60\xe6\xfb\xf6\x56\x79\xf1\xe4\x07\xbc\x3c\xe9\x94\xd8\x76\x76\x8d\x81\x34\x29\x1a\x68\x07\x28\xbe\x63\x1c\xda\xd5\xf9\xa4\x44\x03\x61\x68\x30\xfe\x2c\x27\x69\x3f\xd8\x9d\x5e\x6b\x4f\x03\xb2\x50\x20\x00\x84\x87\xf1\xb6\x71\x2e\x43\x4d\x3c\xc5\x8b\x42\x18\x18\x08\x32\x68\x86\xda\x21\x73\x1f\x08\x73\x1e\x0f\xea\x6b\x50\x31\xd8\x77\x7e\x86\x21\x2b\x93\xbd\x29\x08\x62\x1f\x45\xcd\xcb\xf1\xe8\x7d\x6f\x07\xe8\x02\x4d\xb6\xcf\xe1\x22\x70\x41\xe0\x85\xec\xbd\x34\x65\x92\x89\x3f\xcc\x18\x62\xfd\x61\x72\x3e\x78\x82\x5c\xce\x0d\x7c\xcd\xa1\xb6\x07\x93\x0c\x8f\x59\x4b\xe9\xad\x07\x68\x6f\x0a\xcf\x60\x41\x32\x05\x99\x17\x1f\x4d\x03\x25\x2b\x0f\xb6\x11\xe3\xe3\xa4\x57\xbe\xec\x10\x23\x39\x90\x23\x3a\x9b\x25\xf3\x06\xec\xa4\x63\xe7\x9b\x13\xf5\xa7\x63\x52\xbc\x1a\x92\x57\x9f\xdb\xc7\xca\x06\xd0\x51\x5e\xbc\x83\x33\x3b\x5e\x71\x65\x53\x16\xfc\xae\x2e\xb3\x21\x7b\xc8\x79\xd8\x0e\x1c\x81\x60\xc2\xdd\x8b\xf3\xed\x82\xcb\x63\x89\x9c\x7b\x63\x42\xe9\x1f\x84\x49\xe9\xec\x27\x1c\xfb\x90\x15\x16\x19\xf7\xb4\xbe\x6c\x39\x17\xb5\x51\x89\xf2\x54\x96\xd2\xf2\x26\x50\xca\xfc\x74\x98\xd2\xd9\x7e\x28\x2e\xc4\x5f\xe8\x17\xa7\xa3\x11\x91\xa4\xb7\x21\xa4\x4d\x6f\x83\x31\x24\xe8\x66\xb0\x73\xff\xae\x2a\x34\x17\x33\xe7\x9d\x74\x62\xc2\x7b\x8b\x8e\x50\x29\x7a\xab\x21\x84\xef\x60\xf6\xce\x59\x59\x7f\x28\x25\x7f\xcc\x91\x52\x14\x06\x44\x6b\x63\x68\xb4\x96\xd3\xe7\xfe\x5d\x59\x23\x19\xcd\xa4\x71\x19\x56\x84\x5a\xde\x3e\xb2\xd6\x38\xd5\x8c\x83\xf6\x47\x8c\xea\x69\x1b\xdb\xd1\xed\x51\x4c\xc3\x80\x9e\x90\xc6\xb0\xd3\xcb\x27\x94\x8a\x71\x1c\x2e\xc4\x0b\xeb\x3c\xa7\xf4\xf4\x9c\xe3\x8d\x1d\x42\x0a\x5a\xf4\x5a\x74\xb1\xd6\xa6\x15\x4f\x5f\xe7\xe9\x61\xef\x0a\xb9\x37\xfc\xbd\x04\x93\x79\x6a\xc9\xc1\x68\xb3\xfd\x91\xdf\x57\x09\x38\xf0\x45\x18\x3b\x90\x6b\x74\xdf\x41\x7b\xbd\xfa\xe4\xf1\x34\xce\x58\xcf\x6f\xad\xee\xf4\x76\x87\x6e\x08\xba\x53\x5b\xf2\xfa\x87\x75\xb5\x0a\x84\x07\xc1\x88\x9f\x8d\x42\x81\x88\xcf\x5e\x7e\x91\x4e\xe5\x20\xd8\x23\x04\x88\x3d\x92\x9e\xa2\xd6\xa9\xa5\x1b\xb1\x22\xe6\x9e\x84\x9e\x3e\x82\x8b\x2c\x23\x6e\xe1\xd0\x7a\xa7\xb7\xe6\x89\xc6\xe7\x17\x80\x77\xa9\xae\xe5\x8b\xe5\x45\x74\xbe\xd5\xac\x86\xe0\x7c\x85\x71\xf4\x3f\xd3\x1a\x37\x86\xa6\xdf\x8e\x9f\x6b\xf9\x5e\x6a\x0c\xf2\x88\xff\x4f\x82\x39\xd0\x0f\xd7\xfc\xc4\xb4\xf2\xcd\x2e\x81\xe2\xe5\x7d\x9e\x17\x74\x5f\xe5\x53\x98\x37\x14\xd3\x3f\x10\x99\x62\xfa\x07\xcc\x78\xde\x17\x01\xc8\x0b\xa0\x80\xd8\xc3\xee\x5b\x3b\x09\xac\xca\x89\xcb\x56\xdc\x5e\x86\x49\xbf\xf7\x7d\xcd\x46\xe9\xdb\x57\xef\x6e\x1e\x58\x45\x00\xca\x33\x1c\x21\xb3\x69\x0e\x59\x3c\xd5\x31\x2b\x9b\xef\x21\xe8\x0b\xad\x18\x36\xd7\xa0\x9f\x1e\x2d\x1d\xb7\x0c\xf7\x90\xf4\x06\x93\x77\x50\xce\x0f\xba\xa1\x07\x88\xb9\xcc\x4a\xbc\x1a\x3b\xaf\xfb\x4e\x85\x94\xe0\x7a\x88\x17\xbf\x7b\x39\x84\xa7\x5a\x1b\xbb\xdf\x4b\xf1\xf8\xfc\xf1\xaa\xe0\x3b\xb5\xc7\x47\xb1\x39\x2a\xe3\xbb\xeb\x5b\xf1\xab\x69\x86\x23\x79\x28\x70\x4f\xef\x74\x0f\x60\xf5\xbd\x1a\x58\xc4\xbe\xd3\x3d\xc2\xfe\x19\x53\xc2\xc2\x97\xfb\xda\xa9\xe1\x5e\x37\x71\xba\xdd\x5c\xbe\x42\xf3\x91\x6e\x54\xce\x76\xb8\x6a\x7c\xc1\x28\x08\xf0\xa9\x11\x97\xa3\xb7\x85\x00\x1f\x58\xa7\xee\x71\x37\xd2\x7d\x20\x60\xfe\x9c\xc9\x54\xca\x26\x77\x83\x40\xe9\x99\xc4\x57\x42\x17\x82\x5f\xe4\xea\x53\xcd\xa0\x2c\xf3\xb9\x3b\x4d\xab\x82\x8f\xe7\xdb\x78\x89\xe7\x0b\xfd\xf6\x72\x64\x99\xc8\xf5\x50\xaf\x17\x63\xb4\x95\x25\x0a\xc8\x9a\xb6\x16\x76\xa0\x98\xa0\x8e\xae\x14\xf3\x12\xf9\x59\xfb\x9c\xb0\x0b\xfe\x70\x0f\xf8\xc0\xf1\x94\x43\x39\x4c\xc7\x2b\x6d\x27\x50\x93\x44\x86\x30\xeb\x23\x39\x61\xf0\x81\x25\x9f\x3e\x27\xa1\x2f\x85\xa1\x54\x8e\xa1\xf2\x68\x8b\x24\xdd\xe3\xae\xca\x52\x58\xd6\xcd\x89\x14\x56\x36\xe3\x33\xc2\x18\xa1\x21\x6d\x8e\xaf\xb2\x04\xf7\xf7\xeb\xec\xf0\x90\x66\xd3\xd4\xeb\x9d\x0f\xa9\x83\x45\x36\x1e\x59\xb3\x45\xb6\x3c\xb9\x66\x58\xd9\xf7\x71\xdf\xef\xfb\xae\xd8\xf4\x33\x90\x7b\xe2\x9b\x19\xc4\x9f\x39\x66\x66\x06\x44\xe1\x1a\x72\xa0\xf7\x6f\xaf\x03\xc0\x54\x1e\xe0\x64\xbb\xd9\x74\xda\xa8\x7a\x4f\x17\x76\xde\xd0\xa7\x78\x65\xdb\x58\x3f\x87\x3f\xa9\x07\x3b\x92\xc9\x75\x9b\xc5\xf0\x7f\x8b\x89\x40\x9c\x00\x3e\x8c\x38\x0f\x06\x3a\x66\x24\xed\x3d\xcb\xe2\x8a\x20\x2b\xaf\x04\x74\x27\x0e\x03\xca\x81\x03\x26\x1d\xc4\x73\xf0\x06\x2f\x61\xd5\x83\xb5\xbe\xee\x25\x6d\x09\x98\x4e\xf7\xba\xde\x5a\xeb\xc5\x8d\xf4\xbb\x50\xa8\xb3\xdb\x79\x89\x6b\xbb\x3d\x01\xce\x91\x53\x69\x99\x84\x3e\x50\xda\x74\x1e\x61\xb7\x62\xdb\xdc\x2e\x1b\xed\xdb\x17\xcb\x43\x0d\x50\x73\xe9\x31\xcb\x04\x61\xd8\xd7\x1c\x03\xba\xa6\x59\xc4\xb2\xb1\x17\xbf\x70\x68\x68\x9a\x4c\x79\xb1\x13\x23\x0b\x59\xb9\x70\x97\x25\x77\xe8\x2f\x12\x72\xaf\xf1\x6b\x06\x94\x93\x6c\x46\x29\x00\xb8\x53\xc7\x1a\x63\x44\x31\xd0\xbf\xab\x23\xc5\x86\x5a\x00\xdc\x42\x75\x11\x6c\xab\x8c\xf8\xf6\xb1\x73\xbb\x27\x94\xf5\xf8\xbb\x59\x19\xd0\xb7\xf7\xe3\x9e\xee\xa9\xea\xdf\x15\x3d\x2f\x88\x91\xda\x31\x03\x6b\x03\x65\x40\x5c\x41\xc6\x43\x45\xdd\x42\x29\x57\xa5\x31\xef\x6d\x1a\xbc\xdc\xa4\xb1\x34\x86\x08\x5d\x50\x26\x15\x98\x13\x09\x7d\x07\x83\xf0\x7f\x8b\x5f\x24\xae\xe4\xd8\xf0\x15\x8c\x3a\x29\x4e\xcf\xf0\x55\x8c\xa0\x3e\x31\xe4\x5e\x7e\x4a\x56\x14\x34\x90\x90\x1d\x66\x6a\x78\x61\xf0\x1e\x9f\x62\x1e\x54\x5b\x77\xba\x51\xc6\xf1\x73\x28\x9c\x28\xae\x39\x71\xba\xc2\x77\xde\xf7\xf5\x16\x71\x87\xf5\x8d\x31\xe6\x9e\x27\xcc\x2c\x0b\xa0\xb1\x01\x69\x50\xef\xf5\x36\x3e\xc3\xc3\x22\x01\x9a\xc7\x90\x14\xe2\x55\xc8\x0d\x08\xf8\x26\x61\xbd\x01\xb9\x12\x08\x4f\x87\x25\xcd\x31\xbd\xc1\xc9\x32\xe7\x55\xca\x8b\xa3\xd5\xae\xd3\x58\x3d\x0d\x3e\x30\x8b\x23\xd5\xae\x8b\x97\xf8\x53\x6a\xae\x02\xa5\xd4\x5c\xf5\x4b\xa9\xcc\x03\x72\x1e\xd6\xae\x6b\xe7\xba\xc0\xc6\x6e\x6f\xaf\x4b\x5e\x99\x72\x93\x7c\xf8\x2d\x08\xfb\x8f\x7a\xeb\xfc\x76\x50\xee\x91\xb0\xa6\x3b\x7e\x97\x95\xe0\xa9\x94\x4f\x1d\x4e\x9d\xe2\x70\x7f\xed\xb4\x57\x7f\x7c\x84\x47\xa1\x8f\xbc\x6e\xd7\x8f\xbe\x2b\xb6\x1d\x8d\x77\x2f\xb3\x7d\x47\x37\x27\xe8\x13\x2d\xb1\x0a\x74\x81\x2c\x2e\x73\x78\x45\x85\x74\x04\xf6\xc8\x2f\x49\x1b\x36\x84\x24\x0b\xc6\xed\x20\x97\x03\x43\xbb\x76\xf6\xc0\xb0\xec\x84\x12\x9f\xb8\xc2\x0b\xca\x6f\x03\x9a\x5f\x30\x39\x35\x90\x1e\x64\x09\x8f\x76\xf3\x8d\xc6\xd0\x3c\x7c\xa7\xfb\xa5\xa1\x0b\xc9\x71\x95\xe8\x2e\x59\x96\x5f\x41\xfb\x73\x63\xf2\xb4\xfd\x33\xde\x12\x7a\xf1\x30\x8f\xe1\x25\xd0\xc8\xde\x37\x3b\x99\x66\xfd\x15\x25\xc4\x1d\x99\x42\x8a\x34\x30\x15\x3a\x76\x0c\xa1\xb0\x23\x78\x1f\x56\x5c\xa3\x27\x48\xec\xac\x53\x3e\x29\xce\x45\xa1\xb7\x90\x17\x15\xed\xbc\x70\x28\x1d\x02\x82\xc5\x91\x0f\xe1\x3e\x16\x47\x1e\x23\xda\xd5\x9d\x32\x5b\x9c\x76\xff\x01\x9f\xe2\x1a\x3f\x23\x85\x28\x8e\x07\x1e\x46\xd8\x91\xad\x80\x90\x82\x67\x12\x76\x4c\x1b\xc5\x67\x95\x8d\x7c\x6c\x72\xa1\xe8\x15\x7e\x2f\xb7\x90\x61\x4f\x6e\x96\x9c\x1f\xd9\x96\xea\x6c\xce\xb2\x7e\xbd\x7e\x33\x81\x5c\x58\xdd\x9c\xb3\xc0\x0d\x38\x67\x61\xed\xe3\x11\x06\x6e\x79\xac\x47\xe3\xe1\x05\xee\x79\xb8\x5a\x02\x5c\x04\xa9\x37\x74\x39\xf9\x42\x3c\x83\x02\xf8\xae\xb7\x69\x29\x0a\x23\xae\x3b\x48\x02\x59\xf2\x47\x71\x76\x3f\x2f\xed\xe8\xd2\xef\xbb\x04\x9e\x9e\x49\xe4\x78\x75\x50\x38\x49\x9e\xe4\x87\x15\x69\x8c\xbe\x57\xcb\x24\x26\xc8\x39\x85\x23\x9b\xc6\x73\xc7\xe4\x75\x89\x27\x8d\x8b\x98\x08\x52\xb6\xb2\x27\x56\x40\xa0\x97\xf4\x5d\x02\xe1\xe1\xfc\xbd\xec\x22\xd4\x4b\x4e\x98\xd5\x6a\xf2\x3a\x0d\x3f\x72\x95\x86\x81\x9c\x86\x33\x46\x47\x97\xf9\x96\xc5\x2e\x86\xee\x07\x7b\xaf\x83\x77\x2e\xc1\xdf\x70\x52\xda\x36\xe9\x3b\x61\x0e\x10\x8c\x3a\x6d\x62\xf6\x4e\x47\xb5\xf9\x0a\xbf\x8a\xd9\xc5\x3c\x02\x16\x35\xc1\x26\x36\x71\xab\x3c\x97\x88\xb2\x6f\x13\x29\x13\xce\x1c\x9f\x5f\x45\xda\xd0\xf1\xe4\xa4\x33\x9d\xde\xa8\x78\x98\xc9\xbd\xb9\xd6\x1b\x55\x00\xc3\x76\xee\x42\x1c\x35\xd8\xc8\x6f\xc5\x1b\xd3\x1d\x27\x9d\xc8\x51\x71\x4f\x12\xa6\x48\x19\x8d\x27\xcc\x19\x61\x28\x61\x99\xe4\x01\x9a\x77\xa4\x0c\x9c\xb7\xa4\x29\x27\xde\x0e\x7c\x2b\x2e\xad\xe2\xe7\x9c\x34\xa1\xe8\x46\xb5\x18\x1a\xa0\xad\x63\x09\xa6\xeb\xb3\x90\x23\x2e\x31\x27\xb1\x47\xd0\x2d\x62\xc3\x41\xb5\x58\x6c\x34\x40\x85\xf6\x60\x14\x8d\x9d\xde\xee\xf0\x21\x96\xac\x55\x14\x4c\xe3\x68\xbc\xfc\x24\x5e\x84\xfc\x1c\x03\x08\x6a\x58\x1a\xd4\x28\xc7\x42\x1a\x96\xba\xc6\x04\xdc\xc7\xa5\x70\xda\x6c\x3b\x8a\x22\xf1\xdd\xc9\xe2\x75\xb3\x93\x83\x6c\xf8\xd5\xae\x88\xe8\x2a\xa5\x96\xd8\xa0\xcc\x32\xb6\x10\xba\x22\xe2\xa0\x37\xcd\xbf\x25\x35\x1f\x83\x57\x14\x05\xb7\x4d\x2d\x87\x2d\x1f\x43\x5f\x0e\x5b\x7c\x23\xd4\x15\xa8\x51\xae\x53\xd9\x0e\x11\x25\xbd\xe9\x1e\x41\xe0\xf8\xf2\x52\x0e\x8d\xef\x49\xb0\x5d\x64\xa1\x04\x5e\x68\xc8\x0a\x5c\xe1\x05\x87\xe4\x05\xbb\x50\x04\x43\x9d\xa5\x12\x18\xe5\xec\xc1\x02\x7c\xdc\x4e\xe0\xcf\xaf\x16\x80\x73\x45\x32\x4e\x21\x50\x20\x17\xa7\x10\x40\xb1\x60\x98\x0b\x85\x90\x3c\xbf\x6d\x1b\x5c\xd4\x57\xcd\x40\xf1\xba\xe1\xdf\x3b\xe9\xee\xa2\xf3\x7a\x71\x1e\x11\xd2\x5c\xb3\x53\xed\xd8\x91\x46\x41\x3f\x13\xbc\xfa\xe4\x83\x1b\x04\x2e\xdf\x90\x81\x01\x21\xec\xe8\x42\x44\x08\xf8\x59\x00\xa8\x4f\xaa\x19\x33\x8f\xa8\x5f\xe9\x9b\x5d\x10\x12\x1a\x1b\xae\xb1\x8d\xc6\x68\xb3\x05\xfe\x48\x1e\xde\x11\x66\xe9\xd5\xe6\xd0\x74\x54\x64\x83\x42\x7b\xb2\xfe\x58\x7d\x18\x88\x2a\xb8\xf9\x07\xe7\x79\x7e\xfc\xb4\x23\xc3\xcc\xc4\xf3\x3f\xc0\x62\x58\x98\x16\xc3\x83\xd4\x31\x5c\x08\xc6\x87\x21\x48\x0e\x1d\x12\xe1\xd9\x7d\x9d\xa5\x34\x18\xa1\x58\xab\xea\x54\x83\xb7\xb7\x91\xdb\xc2\x87\xb8\xec\x52\xc9\x56\x15\x10\x4f\xf9\xb3\x80\xd1\x86\x4c\x0b\x94\x45\xda\xd2\x4b\x4a\x63\x94\xd9\x75\x86\x60\xae\x23\x60\x0e\xf5\x84\xa6\xb1\x5b\x4e\x99\x42\x86\x9a\x11\xe8\xb2\xeb\x66\xd4\xc8\x75\xa1\x3c\x0d\x1f\x20\xc8\xee\x9c\x64\x7d\x9a\x0e\x63\xc8\xb2\x3d\xce\xe2\xd5\xac\xb5\xd1\xe6\xc6\x23\x12\x2e\x67\x7c\xce\xc7\xb7\xfa\x40\xb4\xff\x18\x42\x13\xf0\x71\x72\xf0\xe2\xc8\x3c\x27\x8b\xb8\x6d\x67\x18\x6f\xac\xc2\xc8\x95\x5c\x84\xc2\x55\xce\x5e\x0a\x5a\x2a\x36\x28\x93\x3d\x0a\x44\x5f\x45\x5d\x78\xa9\x89\xa2\x8e\x9e\x7d\xf8\xe1\xa3\x0b\x61\x47\x0b\x7c\x1f\xfe\xf0\x11\x50\x7e\xf8\xe3\x47\xc2\xca\x0f\x06\x33\xd6\xf4\xd0\x63\x56\xe2\x87\x8f\xee\x7b\x37\x34\xdf\x4f\xcb\x0a\xe9\x27\x60\x90\xf9\x3f\x12\xe2\x5e\x0e\x2a\x7b\xc4\x1e\xe7\x32\x25\x6b\xc7\x4f\x7c\x93\xbd\xf4\xac\x0d\x01\x7b\xaa\xf8\x70\x02\xb7\x28\x7c\x4f\xc8\x4a\xbd\x5c\xee\x62\x22\x19\x0f\x0f\x3d\x1b\x75\x21\x7e\xa3\x40\x91\xfc\x8c\x54\x56\xe0\x7b\x3a\xc2\xfd\x9e\x8a\xfe\x0b\x76\x14\x10\xfc\x56\xd1\x5b\xf7\x11\x01\xbf\x6c\xff\x15\x08\x28\x3a\x65\xc2\x10\xa2\x55\x7e\x55\x23\x38\x0c\x67\x6a\x06\x25\xa8\x56\xa0\xa1\xfa\xcb\x11\x11\x3d\x26\xd1\x38\x7f\x0b\xf3\xb6\x78\xad\x32\x47\x88\x2f\x6c\x9d\xa4\xce\x0c\x1d\x11\xe9\xab\xb1\x31\xa9\xa6\xe8\x22\xc5\xbe\x1a\x21\xbe\x45\x3a\xc3\xc7\x2f\x94\x7e\x7d\x67\x89\x78\xf1\x35\xd9\x40\x35\xa3\x0e\xf1\x29\xda\x7f\x76\xd1\x30\x67\x8a\x75\x04\xfe\x13\xf0\xf3\xe2\xfe\x43\x5a\xdc\x8b\xe8\xc2\xe2\xc6\xd8\xb6\x5e\x6e\xb3\x95\x2d\xb7\x45\x67\xb1\x89\x58\x86\xfb\x39\x5f\xfb\x39\xc2\x70\xad\x14\x51\x86\xc6\x21\xce\xaf\x6c\x59\xf5\xc1\x5b\xdb\x7d\xac\xe4\x16\x16\xb9\xdc\xda\x0a\xb8\x17\xdf\x5c\x47\x46\x66\xec\xa1\xa2\x4f\xf8\xf5\x03\x30\x90\x1f\x38\x8a\xbd\x38\x73\xd5\x0f\x7b\x4c\xa0\x97\x2c\x31\x61\x87\x09\x3b\x3b\xe2\xf3\x44\x3f\xb4\xf8\xd9\xca\x23\x7e\x1d\xf0\xeb\xa0\xd4\x1d\x15\xc6\xfd\xec\x07\xb1\xb7\xc6\xef\x30\xe5\x88\xdf\x47\x25\xf9\x71\x23\x8a\x96\x7f\x01\xac\x29\x7c\x9c\xb9\x8a\xaa\xe3\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\x8a\x21\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\x0f\xed\x60\xfb\xdf\xad\x51\x1f\xab\xf0\x9a\x75\x7a\x74\xfe\xe9\x60\xfb\xe0\xbd\xaf\x06\x3a\xbf\xc2\x87\x0d\xf1\x71\x80\xce\xca\x76\x55\x71\x00\xa4\x5a\x9b\x7e\x8c\x26\x61\x8e\xa4\xfe\xd8\x33\x58\x8a\x98\x4f\xd7\x97\x8f\xbd\x5a\x55\x78\x7e\xe1\xad\xad\xd7\x28\x7c\xe2\xc9\x05\x3a\xc3\x7c\xfb\xb7\xbf\x21\xbc\xfe\x5d\xfd\xfd\xef\xe2\xd5\x2f\xdf\x09\xf5\xa9\x51\xaa\x75\x62\xcf\x0e\x7a\x01\x6c\x2f\x3f\x3d\x2b\x20\x57\x15\xdf\x2a\x65\x8f\x30\xba\x55\x8a\xd5\x57\xff\x7f\x00\x00\x00\xff\xff\xcf\x95\xff\xf3\x78\xee\x00\x00") func confLocaleLocale_enUsIniBytes() ([]byte, error) { return bindataRead( @@ -4387,7 +4387,7 @@ func confLocaleLocale_enUsIni() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "conf/locale/locale_en-US.ini", size: 60856, mode: os.FileMode(420), modTime: time.Unix(1489724112, 0)} + info := bindataFileInfo{name: "conf/locale/locale_en-US.ini", size: 61048, mode: os.FileMode(420), modTime: time.Unix(1489958797, 0)} a := &asset{bytes: bytes, info: info} return a, nil } diff --git a/public/css/gogs.css b/public/css/gogs.css index 8bba60166..9a273c808 100644 --- a/public/css/gogs.css +++ b/public/css/gogs.css @@ -2375,6 +2375,15 @@ footer .ui.language .menu { margin-left: 26px; padding-top: 0; } +.webhook .hook.history.list .right.menu .redelivery.button { + font-size: 12px; + margin-top: 6px; + height: 30px; +} +.webhook .hook.history.list .right.menu .redelivery.button .octicon { + font: normal normal normal 13px/1 Octicons; + width: 12px; +} .user-cards .list { padding: 0; } diff --git a/public/js/gogs.js b/public/js/gogs.js index 6b6a003d3..fd6a7d858 100644 --- a/public/js/gogs.js +++ b/public/js/gogs.js @@ -513,20 +513,6 @@ function initRepository() { } } -function initRepositoryCollaboration() { - console.log('initRepositoryCollaboration'); - - // Change collaborator access mode - $('.access-mode.menu .item').click(function () { - var $menu = $(this).parent(); - $.post($menu.data('url'), { - "_csrf": csrf, - "uid": $menu.data('uid'), - "mode": $(this).data('value') - }) - }); -} - function initWikiForm() { var $editArea = $('.repository.wiki textarea#edit_area'); if ($editArea.length > 0) { @@ -828,61 +814,6 @@ function initOrganization() { } } -function initUserSettings() { - console.log('initUserSettings'); - - // Options - if ($('.user.settings.profile').length > 0) { - $('#username').keyup(function () { - var $prompt = $('#name-change-prompt'); - if ($(this).val().toString().toLowerCase() != $(this).data('name').toString().toLowerCase()) { - $prompt.show(); - } else { - $prompt.hide(); - } - }); - } -} - -function initWebhook() { - if ($('.new.webhook').length == 0) { - return; - } - - $('.events.checkbox input').change(function () { - if ($(this).is(':checked')) { - $('.events.fields').show(); - } - }); - $('.non-events.checkbox input').change(function () { - if ($(this).is(':checked')) { - $('.events.fields').hide(); - } - }); - - // Highlight payload on first click - $('.hook.history.list .toggle.button').click(function () { - $($(this).data('target') + ' .nohighlight').each(function () { - var $this = $(this); - $this.removeClass('nohighlight'); - setTimeout(function(){ hljs.highlightBlock($this[0]) }, 500); - }) - }) - - // Test delivery - $('#test-delivery').click(function () { - var $this = $(this); - $this.addClass('loading disabled'); - $.post($this.data('link'), { - "_csrf": csrf - }).done( - setTimeout(function () { - window.location.href = $this.data('redirect'); - }, 5000) - ) - }); -} - function initAdmin() { if ($('.admin').length == 0) { return; @@ -1152,6 +1083,71 @@ function initCodeView() { } } +function initUserSettings() { + console.log('initUserSettings'); + + // Options + if ($('.user.settings.profile').length > 0) { + $('#username').keyup(function () { + var $prompt = $('#name-change-prompt'); + if ($(this).val().toString().toLowerCase() != $(this).data('name').toString().toLowerCase()) { + $prompt.show(); + } else { + $prompt.hide(); + } + }); + } +} + +function initRepositoryCollaboration() { + console.log('initRepositoryCollaboration'); + + // Change collaborator access mode + $('.access-mode.menu .item').click(function () { + var $menu = $(this).parent(); + $.post($menu.data('url'), { + "_csrf": csrf, + "uid": $menu.data('uid'), + "mode": $(this).data('value') + }) + }); +} + +function initWebhookSettings() { + $('.events.checkbox input').change(function () { + if ($(this).is(':checked')) { + $('.events.fields').show(); + } + }); + $('.non-events.checkbox input').change(function () { + if ($(this).is(':checked')) { + $('.events.fields').hide(); + } + }); + + // Highlight payload on first click + $('.hook.history.list .toggle.button').click(function () { + $($(this).data('target') + ' .nohighlight').each(function () { + var $this = $(this); + $this.removeClass('nohighlight'); + setTimeout(function(){ hljs.highlightBlock($this[0]) }, 500); + }) + }) + + // Trigger delivery + $('.delivery.button, .redelivery.button').click(function () { + var $this = $(this); + $this.addClass('loading disabled'); + $.post($this.data('link'), { + "_csrf": csrf + }).done( + setTimeout(function () { + window.location.href = $this.data('redirect'); + }, 5000) + ); + }); +} + $(document).ready(function () { csrf = $('meta[name=_csrf]').attr("content"); suburl = $('meta[name=_suburl]').attr("content"); @@ -1359,7 +1355,6 @@ $(document).ready(function () { initEditForm(); initEditor(); initOrganization(); - initWebhook(); initAdmin(); initCodeView(); @@ -1379,7 +1374,8 @@ $(document).ready(function () { var routes = { 'div.user.settings': initUserSettings, - 'div.repository.settings.collaboration': initRepositoryCollaboration + 'div.repository.settings.collaboration': initRepositoryCollaboration, + 'div.webhook.settings': initWebhookSettings }; var selector; diff --git a/public/less/_repository.less b/public/less/_repository.less index c06fcc456..2a9d490e1 100644 --- a/public/less/_repository.less +++ b/public/less/_repository.less @@ -1411,6 +1411,21 @@ } // End of .repository +// Should apply organization webhooks page +.webhook .hook.history.list { + .right.menu { + .redelivery.button { + font-size: 12px; + margin-top: 6px; + height: 30px; + .octicon { + font: normal normal normal 13px/1 Octicons; + width: 12px; + } + } + } +} + &.user-cards { .list { padding: 0; diff --git a/routers/api/v1/repo/hook.go b/routers/api/v1/repo/hook.go index ca8817dc3..1fcd87353 100644 --- a/routers/api/v1/repo/hook.go +++ b/routers/api/v1/repo/hook.go @@ -12,6 +12,7 @@ import ( api "github.com/gogits/go-gogs-client" "github.com/gogits/gogs/models" + "github.com/gogits/gogs/models/errors" "github.com/gogits/gogs/modules/context" "github.com/gogits/gogs/routers/api/v1/convert" ) @@ -106,7 +107,7 @@ func CreateHook(ctx *context.APIContext, form api.CreateHookOption) { func EditHook(ctx *context.APIContext, form api.EditHookOption) { w, err := models.GetWebhookOfRepoByID(ctx.Repo.Repository.ID, ctx.ParamsInt64(":id")) if err != nil { - if models.IsErrWebhookNotExist(err) { + if errors.IsWebhookNotExist(err) { ctx.Status(404) } else { ctx.Error(500, "GetWebhookOfRepoByID", err) diff --git a/routers/repo/webhook.go b/routers/repo/webhook.go index ce1422957..bc4701dd6 100644 --- a/routers/repo/webhook.go +++ b/routers/repo/webhook.go @@ -55,6 +55,7 @@ type OrgRepoCtx struct { // getOrgRepoCtx determines whether this is a repo context or organization context. func getOrgRepoCtx(ctx *context.Context) (*OrgRepoCtx, error) { if len(ctx.Repo.RepoLink) > 0 { + ctx.Data["PageIsRepositoryContext"] = true return &OrgRepoCtx{ RepoID: ctx.Repo.Repository.ID, Link: ctx.Repo.RepoLink, @@ -63,6 +64,7 @@ func getOrgRepoCtx(ctx *context.Context) (*OrgRepoCtx, error) { } if len(ctx.Org.OrgLink) > 0 { + ctx.Data["PageIsOrganizationContext"] = true return &OrgRepoCtx{ OrgID: ctx.Org.Organization.ID, Link: ctx.Org.OrgLink, @@ -284,11 +286,7 @@ func checkWebhook(ctx *context.Context) (*OrgRepoCtx, *models.Webhook) { w, err = models.GetWebhookByOrgID(ctx.Org.Organization.ID, ctx.ParamsInt64(":id")) } if err != nil { - if models.IsErrWebhookNotExist(err) { - ctx.Handle(404, "GetWebhookByID", nil) - } else { - ctx.Handle(500, "GetWebhookByID", err) - } + ctx.NotFoundOrServerError("GetWebhookOfRepoByID/GetWebhookByOrgID", errors.IsWebhookNotExist, err) return nil, nil } @@ -469,8 +467,7 @@ func TestWebhook(ctx *context.Context) { if err == nil { authorUsername = author.Name } else if !errors.IsUserNotExist(err) { - ctx.Flash.Error(fmt.Sprintf("GetUserByEmail.(author) [%s]: %v", commit.Author.Email, err)) - ctx.Status(500) + ctx.Handle(500, "GetUserByEmail.(author)", err) return } @@ -478,16 +475,14 @@ func TestWebhook(ctx *context.Context) { if err == nil { committerUsername = committer.Name } else if !errors.IsUserNotExist(err) { - ctx.Flash.Error(fmt.Sprintf("GetUserByEmail.(committer) [%s]: %v", commit.Committer.Email, err)) - ctx.Status(500) + ctx.Handle(500, "GetUserByEmail.(committer)", err) return } } fileStatus, err := commit.FileStatus() if err != nil { - ctx.Flash.Error("FileStatus: " + err.Error()) - ctx.Status(500) + ctx.Handle(500, "FileStatus", err) return } @@ -520,15 +515,37 @@ func TestWebhook(ctx *context.Context) { Pusher: apiUser, Sender: apiUser, } - if err := models.TestWebhook(ctx.Repo.Repository, models.HOOK_EVENT_PUSH, p, ctx.QueryInt64("id")); err != nil { - ctx.Flash.Error("TestWebhook: " + err.Error()) - ctx.Status(500) + if err := models.TestWebhook(ctx.Repo.Repository, models.HOOK_EVENT_PUSH, p, ctx.ParamsInt64("id")); err != nil { + ctx.Handle(500, "TestWebhook", err) } else { ctx.Flash.Info(ctx.Tr("repo.settings.webhook.test_delivery_success")) ctx.Status(200) } } +func RedeliveryWebhook(ctx *context.Context) { + webhook, err := models.GetWebhookOfRepoByID(ctx.Repo.Repository.ID, ctx.ParamsInt64(":id")) + if err != nil { + ctx.NotFoundOrServerError("GetWebhookOfRepoByID/GetWebhookByOrgID", errors.IsWebhookNotExist, err) + return + } + + hookTask, err := models.GetHookTaskOfWebhookByUUID(webhook.ID, ctx.Query("uuid")) + if err != nil { + ctx.NotFoundOrServerError("GetHookTaskOfWebhookByUUID/GetWebhookByOrgID", errors.IsHookTaskNotExist, err) + return + } + + hookTask.IsDelivered = false + if err = models.UpdateHookTask(hookTask); err != nil { + ctx.Handle(500, "UpdateHookTask", err) + } else { + go models.HookQueue.Add(ctx.Repo.Repository.ID) + ctx.Flash.Info(ctx.Tr("repo.settings.webhook.redelivery_success", hookTask.UUID)) + ctx.Status(200) + } +} + func DeleteWebhook(ctx *context.Context) { if err := models.DeleteWebhookOfRepoByID(ctx.Repo.Repository.ID, ctx.QueryInt64("id")); err != nil { ctx.Flash.Error("DeleteWebhookByRepoID: " + err.Error()) diff --git a/templates/.VERSION b/templates/.VERSION index 7fd49db06..5ec058935 100644 --- a/templates/.VERSION +++ b/templates/.VERSION @@ -1 +1 @@ -0.10.23.0318 \ No newline at end of file +0.10.24.0319 \ No newline at end of file diff --git a/templates/org/settings/webhook_new.tmpl b/templates/org/settings/webhook_new.tmpl index d9a6b1560..7f09fc942 100644 --- a/templates/org/settings/webhook_new.tmpl +++ b/templates/org/settings/webhook_new.tmpl @@ -11,8 +11,8 @@