From c912494609470f10401594391c6f2763684cb624 Mon Sep 17 00:00:00 2001 From: Unknwon Date: Sat, 23 Jul 2016 15:59:19 +0800 Subject: [PATCH] #3076 detect invalid tag name git error --- README.md | 2 +- conf/locale/locale_en-US.ini | 1 + gogs.go | 2 +- models/error.go | 19 ++++++++++++++++--- models/release.go | 5 ++++- modules/bindata/bindata.go | 4 ++-- public/css/gogs.css | 3 +++ public/less/_repository.less | 4 ++++ routers/repo/release.go | 9 ++++++--- templates/.VERSION | 2 +- templates/repo/release/new.tmpl | 2 +- 11 files changed, 40 insertions(+), 13 deletions(-) diff --git a/README.md b/README.md index 1a82c2931..a9e0e0a18 100644 --- a/README.md +++ b/README.md @@ -3,7 +3,7 @@ Gogs - Go Git Service [![Build Status](https://travis-ci.org/gogits/gogs.svg?bra ![](https://github.com/gogits/gogs/blob/master/public/img/gogs-large-resize.png?raw=true) -##### Current tip version: 0.9.48 (see [Releases](https://github.com/gogits/gogs/releases) for binary versions) +##### Current tip version: 0.9.49 (see [Releases](https://github.com/gogits/gogs/releases) for binary versions) | Web | UI | Preview | |:-------------:|:-------:|:-------:| diff --git a/conf/locale/locale_en-US.ini b/conf/locale/locale_en-US.ini index 604063d35..1f2463ec9 100644 --- a/conf/locale/locale_en-US.ini +++ b/conf/locale/locale_en-US.ini @@ -725,6 +725,7 @@ release.deletion = Release Deletion release.deletion_desc = Deleting this release will delete the corresponding Git tag. Do you want to continue? release.deletion_success = Release has been deleted successfully! release.tag_name_already_exist = Release with this tag name already exists. +release.tag_name_invalid = Tag name is not valid. release.downloads = Downloads [org] diff --git a/gogs.go b/gogs.go index 686f3ec52..3f53415c9 100644 --- a/gogs.go +++ b/gogs.go @@ -17,7 +17,7 @@ import ( "github.com/gogits/gogs/modules/setting" ) -const APP_VER = "0.9.48.0722" +const APP_VER = "0.9.49.0723" func init() { runtime.GOMAXPROCS(runtime.NumCPU()) diff --git a/models/error.go b/models/error.go index 69b296247..a6cf31218 100644 --- a/models/error.go +++ b/models/error.go @@ -387,7 +387,7 @@ func IsErrReleaseAlreadyExist(err error) bool { } func (err ErrReleaseAlreadyExist) Error() string { - return fmt.Sprintf("Release tag already exist [tag_name: %s]", err.TagName) + return fmt.Sprintf("release tag already exist [tag_name: %s]", err.TagName) } type ErrReleaseNotExist struct { @@ -401,7 +401,20 @@ func IsErrReleaseNotExist(err error) bool { } func (err ErrReleaseNotExist) Error() string { - return fmt.Sprintf("Release tag does not exist [id: %d, tag_name: %s]", err.ID, err.TagName) + return fmt.Sprintf("release tag does not exist [id: %d, tag_name: %s]", err.ID, err.TagName) +} + +type ErrInvalidTagName struct { + TagName string +} + +func IsErrInvalidTagName(err error) bool { + _, ok := err.(ErrInvalidTagName) + return ok +} + +func (err ErrInvalidTagName) Error() string { + return fmt.Sprintf("release tag name is not valid [tag_name: %s]", err.TagName) } // __________ .__ @@ -421,7 +434,7 @@ func IsErrBranchNotExist(err error) bool { } func (err ErrBranchNotExist) Error() string { - return fmt.Sprintf("Branch does not exist [name: %s]", err.Name) + return fmt.Sprintf("branch does not exist [name: %s]", err.Name) } // __ __ ___. .__ __ diff --git a/models/release.go b/models/release.go index 026ab8ff5..2355ef309 100644 --- a/models/release.go +++ b/models/release.go @@ -67,9 +67,12 @@ func createTag(gitRepo *git.Repository, rel *Release) error { return fmt.Errorf("GetBranchCommit: %v", err) } - // Trim '--' prefix to prevent command line argument vulnerability + // Trim '--' prefix to prevent command line argument vulnerability. rel.TagName = strings.TrimPrefix(rel.TagName, "--") if err = gitRepo.CreateTag(rel.TagName, commit.ID.String()); err != nil { + if strings.Contains(err.Error(), "is not a valid tag name") { + return ErrInvalidTagName{rel.TagName} + } return err } } else { diff --git a/modules/bindata/bindata.go b/modules/bindata/bindata.go index 5d21c0465..fcdacde49 100644 --- a/modules/bindata/bindata.go +++ b/modules/bindata/bindata.go @@ -4346,7 +4346,7 @@ func confLocaleLocale_deDeIni() (*asset, error) { return a, nil } -var _confLocaleLocale_enUsIni = []byte("\x1f\x8b\x08\x00\x00\x09\x6e\x88\x00\xff\xac\xbd\xeb\x72\xdc\x48\xae\x27\xfe\x9d\x4f\xc1\xf6\x84\xc3\x76\x84\x54\x1d\x3d\x7d\xfe\xff\xdd\xe8\x68\xbb\x57\x96\xda\x97\x73\x2c\x4b\x47\x92\xbb\x77\xb6\xc3\xc1\x66\x15\xa9\x2a\x8e\xab\xc8\x1a\x92\x25\x59\x33\x31\x6f\xb0\x0f\xb0\xcf\xb7\x4f\xb2\xc0\x0f\x40\x5e\x48\x96\x64\xf7\x1c\x7f\xb0\x58\x99\xc8\x1b\x12\x89\x04\x90\x48\x64\xbe\xdd\x66\x45\xd9\x2d\xd2\xe7\xe9\x51\xba\xcd\xab\x7a\x5d\x76\x5d\xda\x95\xeb\xeb\xc3\x55\xd3\xf5\x65\x91\xbe\xae\x7a\xfa\xdd\xde\x54\x8b\x32\x49\x56\xcd\xa6\x24\xd0\x37\xf4\x27\x29\xf2\x6e\x35\x6f\xf2\xb6\xa0\x84\x13\xfb\x4e\xca\xcf\xdb\x75\xd3\x32\xd0\xcf\xf2\x95\xac\xca\xf5\x96\xcb\xd0\x9f\xa4\xab\x96\x75\x56\xd5\xf4\xf3\x92\xbe\xd2\xb7\xb5\xa4\x34\xbb\xde\x92\xce\x76\xbd\xa4\xed\xb6\x96\xf4\x61\x9b\xb4\xe5\xb2\xa2\xde\xb4\x94\x74\xa1\x9f\xc9\x6d\x39\xef\xaa\x9e\x5b\xfa\x55\xbe\x92\x9b\xb2\xed\xaa\x86\x6b\xff\x45\xbe\x92\x6d\xbe\x64\x80\x73\xfa\x93\xf4\xe5\x66\xbb\xce\x51\xe0\x4a\x3f\x93\x75\x5e\x2f\x77\x02\xf3\x4e\x3f\x93\x45\x5b\x52\x56\x56\x97\xb7\x94\x7a\x8c\x1f\xb3\xd9\x2c\xd9\x11\x12\xb2\x6d\xdb\x5c\x57\xeb\x32\xcb\xeb\x22\xdb\xc8\x30\x3f\x50\x7a\xaa\xe9\x29\xa5\xa7\x9c\x8e\x21\x94\x05\x0d\x35\xcb\x3b\x1d\x07\xe1\x92\x46\x9e\x77\x09\xaa\xaa\xf3\x8d\x95\xe6\xcf\xa4\xdc\xe4\xd5\x9a\xb1\xc6\x7f\xa9\xdf\x5d\x77\xdb\x00\xb5\xe7\xfa\x49\x38\xc8\xfa\xbb\x6d\x09\x14\x1c\x5e\xd1\x57\xb2\xc8\xb7\xfd\x62\x95\x73\x37\xe5\x2b\x21\xa0\x6d\x43\xb8\x68\xda\x3b\xc0\xd9\x8f\xa4\x69\x97\x79\x5d\xfd\x3d\xef\x05\x3f\x67\xc1\xcf\x64\x53\xb5\x6d\xc3\xa8\x3d\xc5\x47\x42\x23\xcf\xb8\x1e\x4a\x79\x4f\x48\x08\x6a\xe1\x9c\x4d\xb5\x6c\x05\x8b\x9c\x79\x8a\x5f\x5c\x8b\xe4\x69\x4d\x92\xe5\x6a\xbb\x6e\xda\x4f\x9a\xfa\x8a\x3f\x07\x55\x52\xe7\x34\x37\xee\x57\x5e\xd3\x7c\x68\xee\x29\x7e\x44\x00\x5d\x92\x17\x1b\xc2\xf0\x36\xaf\x4b\x46\xdd\x11\xff\x22\x7c\xd1\xaf\x24\x5f\x2c\x9a\x5d\xdd\x67\x5d\xd9\xf7\x55\xbd\xe4\x39\x38\x92\xa4\xf4\x52\x93\x92\x20\xcf\xa5\xdd\x35\x3b\x37\xcb\x94\xfe\x17\xfa\x99\x9e\xcb\x4f\xc9\x0b\x0a\x21\xd3\x95\xa4\x26\xfb\xea\xa6\xea\xab\x52\x1a\xb3\x1f\xc9\x76\xb7\x5e\x13\x3e\xff\xb6\x2b\xbb\x9e\xb3\xce\xe9\x37\x61\x40\x7e\x27\x55\xd7\xed\x50\xe2\x2d\x3e\x12\x9a\xd4\x7a\x81\xe1\x1c\xe3\x23\x49\x7e\xab\xea\xae\xcf\xd7\xeb\x8f\x89\x7e\x30\xb0\x7c\x09\x9e\xfa\xaa\x47\x67\x35\x31\xbd\xec\xcb\x6d\xc7\x88\x4e\x5f\x55\x6d\xd7\x1f\xf6\x15\x91\xda\xc5\xae\x4e\x8a\x66\xf1\x89\x88\x98\x17\x24\x96\xd2\xdb\xeb\x94\xc6\xf4\x84\xc8\xb8\xdd\xd5\x35\x8d\x22\x7d\xdd\xd0\xc8\xa8\x99\xaa\x28\xd3\x13\x40\x1f\xa4\xdb\x75\x99\x77\x04\x52\xe6\x45\xfa\x63\x9e\xf6\x79\xbb\x2c\xfb\xe7\x8f\xb2\x39\x2d\x9e\x4f\x8f\xd2\x55\x5b\x5e\x3f\x7f\xf4\xb8\x7b\xf4\xe2\xf5\x8e\x8a\xad\xab\xba\xec\x7e\xfc\x36\x7f\x91\x2e\x72\xca\xa1\xb1\xde\xa5\xf3\xf2\x9a\xd7\x0a\xb5\x95\x12\x91\xd6\x4b\x5e\x27\x77\xfd\x8a\x1b\xa4\x09\xa3\x8f\x2e\xe5\x85\xfa\x4d\xc2\x58\xa2\x85\x9c\x15\x73\x63\x4a\xe8\x10\x92\x5b\xc2\xd2\xe9\xdd\xe5\x7f\xbe\x3b\x48\xcf\x89\x33\x2d\xdb\x12\xdf\xf4\x1f\x95\xf8\x3e\xa5\xd1\x5e\x55\x27\x2f\x67\x09\x95\x35\x84\x9c\xe4\x7d\x3e\xe7\xbe\xbb\x49\xe2\x4c\x59\x43\x2e\x0f\x2b\x89\x79\x1d\xf8\x5a\xd7\x63\x75\xea\xca\x9c\x5c\x87\x54\x87\x2e\x5e\x57\xc7\x7b\x5e\xc1\x94\xee\x30\x7b\x2e\x38\xa3\xaa\xd2\xb7\xef\xdf\x9f\x9d\xbc\x4c\xcb\x7a\x49\x98\x49\x6f\xab\x7e\x95\xee\xfa\xeb\xff\x9e\x2d\xcb\xba\x6c\xf3\x75\xb6\xa8\x18\x29\x2d\xd1\x55\x4a\x58\x92\x21\xce\x92\xae\x5b\x13\x83\x29\xb8\x95\xcb\xcb\x77\xe9\x29\x7d\x52\x67\xa8\x2c\x77\xa4\x5f\x25\xdd\xdf\xd6\x8c\x28\xd7\xe0\xd5\xaa\x4c\x41\xb3\x00\x6a\xae\x87\x78\x49\x0b\xed\xeb\x2c\xfd\x71\xde\xbe\x08\xfa\x97\xcf\xbb\x66\xbd\xeb\xb5\xe4\xed\xaa\xac\x31\x51\x44\x4a\x6d\x4f\xdc\xca\x78\xff\x2c\x29\xdb\x36\x23\xbe\xd9\xdf\xf1\xf4\x68\x5f\xf6\xb5\x22\x95\x11\x29\xd7\x4d\x4f\xd3\x9f\xa2\x9c\x54\x51\xd5\x37\xf9\xba\x2a\x68\x92\x3c\x22\xe3\xb2\x48\x2c\x1a\x9a\x6f\x2e\x4d\x14\xdd\xdc\x02\x45\xb4\xc0\x88\xad\xa7\x8f\x66\x8f\xc0\x67\x1f\x1d\x3e\x9a\x25\x75\x93\x09\x13\x60\x8e\x5c\x54\x5d\x3e\x27\xee\x2c\xbb\x45\x6b\xcc\xee\x2f\x4c\x77\xd2\x15\x85\x48\x23\x08\x9e\x13\xde\x81\xc0\xf8\x99\x28\x73\x62\xd3\xe0\x25\xca\x45\xc2\xb1\x1b\xcb\x71\x74\x21\x5c\xc7\x25\x8c\xc6\x9c\xd8\x44\x1b\x55\x1e\x6d\xb7\xeb\x6a\x21\x4d\xbf\x96\x3c\x4f\xa0\xbc\x1f\x2b\x52\x42\x38\x10\x98\xe5\x05\x64\x46\xbd\x66\xae\x94\x46\xec\x1d\xe5\x57\x25\xad\xb8\xd5\x6e\x29\x7b\xd2\xba\xd9\x15\xdf\x60\x73\xb0\x99\xf3\x2c\x38\xbd\x68\xa8\xc3\xa0\x2a\x07\xe0\x9b\x38\x22\x86\xc2\x22\x40\x5b\x6e\x9a\x9e\x11\xa7\xc5\x98\xcd\xdd\x56\x94\x49\x23\xed\xf2\x1b\xda\xdc\xfa\x46\x96\x72\x41\x4b\x75\xc1\x15\xcf\x12\x62\x2b\x99\x2e\x27\xe2\x3f\xb2\xa4\x2c\x2d\xa6\x5d\x40\x6d\x76\xb4\x0a\x57\x54\x19\x23\x9e\xe5\x10\xaa\x72\xaa\x9f\x18\x12\xd5\x03\xee\x40\x2b\xbe\xa1\x3d\x93\x27\xfa\x04\x1f\xfa\x3b\xac\x9f\x7a\x95\x5f\x5f\x53\xaf\x3a\x5a\x4d\x6f\xd2\xc5\xba\xa1\xa5\xf8\xe1\xe2\x5d\xc7\x0b\x6d\x95\x6d\x9b\x16\xf2\x07\x65\x9d\xd3\xa7\x4b\x0b\x10\xcd\x10\xf5\x6e\x33\xa7\x5f\xb7\xab\x6a\xb1\x12\xb4\x73\x09\x5e\x1f\x94\x4a\x4d\xec\x3a\x9a\xc2\x83\x94\x96\x16\x8d\x80\x50\x06\x02\xe0\x31\x18\xd5\x31\xf8\x35\xd1\xd8\xae\xa5\xe5\xb4\xea\xfb\xad\xb5\xfc\xe6\xea\xea\x5c\x9a\x76\xa9\xf7\xb5\x9d\x07\x94\x81\x39\x58\xb3\x44\x54\xa7\x4d\x3d\x03\x91\xec\xda\xf5\x80\x7e\x68\xac\x96\xb3\x07\x2f\xdc\x85\x6f\xf9\xbf\x4b\x8f\x1e\xe0\xb9\x23\x59\xef\x16\xd4\x44\x38\x86\x94\x32\x4b\xd6\xcd\x32\x6b\x69\x36\x8c\x98\xde\x35\x4b\x21\xa0\x28\xc3\xb7\x74\x62\x24\xc1\xd8\xb8\x6d\x59\x6a\x23\x48\x30\x2c\x9e\x64\x5a\x24\xcd\x96\xfb\x19\xac\x92\x33\x4d\xf0\x4b\x03\x6d\xbb\x7c\xc8\x49\x94\x09\xe6\x14\xec\xe9\x1b\xc2\x9f\x72\xf3\xcb\x53\xc2\x2a\x58\x3a\x52\xaf\xdb\x66\x43\xa9\xaf\xe8\x8f\x4f\xf0\x7d\x3c\xe5\xfa\x00\x93\x17\x05\x6d\x36\xdd\x41\x7a\xf1\xea\x38\xfd\xff\xbe\xff\xf3\x9f\x67\xe9\xdb\x9e\x17\x36\xd3\xfa\x5f\x99\x46\x73\xc5\x84\x07\x25\x06\xd8\x13\x19\x3f\xe2\x85\xfa\x28\xfd\x11\xb9\xff\xa3\xfc\x9c\x93\x9c\x59\xce\x16\xcd\xe6\x05\x33\xf7\x4d\x4e\xac\x84\x73\x88\xfa\x75\x59\x5c\x96\x75\x41\x1f\x22\xf5\x69\x56\xc0\x5c\x34\x3b\x90\x01\x45\xf8\xcd\x16\x4d\x7d\x5d\xb5\x3c\x9e\x9f\x6b\xd0\x96\x89\xc5\xe9\xb1\xe4\x98\x08\x45\x28\x23\x7e\x54\x5d\xdf\x79\x50\x8c\xf4\x3d\x27\x2a\x79\x24\x42\xc3\x99\xb2\x7a\x87\xe3\x4b\x21\x6d\xa6\x82\x33\x1a\x5d\x6b\xe8\xee\x3c\xbe\x9b\xeb\x6b\xde\xf1\x6d\xaf\xd2\x16\xce\x24\x55\xb6\xad\x10\x84\x48\x7b\x0b\xc1\xfe\x44\x97\xc4\xf1\xc9\xfb\xb4\xbc\x21\xda\x65\x1e\xda\x36\xc5\x6e\x01\x7a\x65\xd8\x03\x66\xfd\xc4\x70\x3a\x5a\x69\x8b\x52\x89\xc5\xb1\x1c\xee\x1a\xf3\xb5\x05\x01\x11\xa7\x31\xd6\x4f\xd2\xe8\x0d\xed\x23\x6d\xd0\xc4\x6b\x4b\xd2\xde\x8f\x60\x47\x9d\x72\x25\x78\xe4\x0b\x9a\x70\x22\x0a\xe9\x45\x27\x9d\x92\x6c\x5a\x3c\xb4\x2a\x76\xa4\xe5\xe4\x05\xf5\x65\x7e\x07\x2e\xd6\x31\x2d\x14\xe5\x75\xbe\x5b\xf7\xbe\x5f\x83\x2d\xc9\x5a\xba\x64\x45\x2b\xcc\x9b\x2c\x30\xea\x20\x88\xa7\x1b\x96\x25\x2a\xac\x49\xda\x92\xad\x8b\xc9\x55\x34\x19\xdb\xc5\x88\xd9\x95\x98\x9e\xcc\xeb\x0d\x3a\x5f\xa6\x3e\xc4\xf9\xae\xd9\x0b\x91\xbf\x52\x6c\xdc\x5c\xa3\x55\xc0\x02\xcb\x74\x5f\x66\x89\x0a\x6d\x99\xaa\x7c\xd9\x4d\x05\x85\xca\x91\xab\x54\xa9\x6a\x20\xf3\x85\x5f\x18\x80\x35\xb5\x6e\xb2\xac\xeb\xcd\x19\x0f\xb2\x73\x0a\x95\xe0\x9c\x87\x8b\x16\x58\x90\xa4\x59\xba\xa9\xb0\x69\x28\xc1\x00\x2f\x73\x96\x75\xa8\x69\x6a\xaa\x2b\x4b\xd4\x40\xe5\xbf\xa5\x3a\x51\x66\xa6\xda\x84\x0a\xf8\x26\x80\xb2\xf0\x50\x34\x90\x44\xb0\x33\x51\x69\x43\xeb\x40\x4a\x48\xdb\x6a\xb9\x22\x4e\xdd\xdc\x1e\x08\x52\x6e\x57\x4d\xc9\xeb\xe7\xed\xc9\xf3\xef\xa4\x1f\x4b\xde\xa7\x5c\x21\xde\xe1\xf2\x1d\x11\x17\x61\x4c\xc9\x58\xba\xe0\x24\x05\x40\x8e\xf4\x16\x01\x1a\x2a\x90\x23\xc1\xc4\x31\x0d\xe5\x15\x61\x9e\x32\x09\x0f\x23\xa5\x4d\x09\x95\x86\x85\x29\xa9\xd2\x91\x2d\x1b\x28\x3d\xa6\x64\xf0\xd6\x4b\x2a\x75\xd7\x67\xcb\xaa\xcf\xae\x99\x73\x71\xc5\xaf\xb8\x02\x96\x04\x28\x27\x7d\x42\x59\x4f\x52\xe2\x7e\xa4\xc9\x15\x3f\xa4\x8f\x6f\x54\x6c\xfd\x9e\x59\x52\x46\x8b\xa8\x5a\x63\x46\x54\x95\x6a\x4b\x91\x4a\x4d\x8d\x77\x22\x60\xb7\xdb\x62\xa3\x54\x69\xd3\xa9\x24\x45\x73\x5b\xf3\xe2\x03\xeb\x25\x36\x53\x2d\x2a\xda\x30\xe6\x55\x9d\xd3\x4e\x63\xb5\x80\xa5\x3f\x26\x92\x78\x7f\x76\x05\xc0\x65\x33\xdf\x55\xeb\xc2\x00\x66\x89\x49\xa4\x24\x8f\xea\xe4\x87\xb2\xbd\x25\x55\xd2\x97\x45\xd3\xf2\x5e\x86\xd1\x58\xc1\x3d\x72\x15\x6f\x84\x22\x08\x57\xac\x54\x01\x16\xe5\x9c\x08\xc4\x68\xa0\xd9\x5f\xac\x54\x40\x02\xd9\x54\x5d\xfd\xa4\x47\x4f\x17\x3b\x6a\x8b\x66\x9e\x93\xa9\x60\x97\x1e\xbe\xa0\xff\x13\x16\xb7\x64\x03\x58\x8e\x11\xcf\x99\xa9\x64\xee\x64\x29\x46\x5d\x8d\x68\xdc\xcd\xb4\x51\x70\x30\xd6\xb0\xbf\x46\x02\xdd\x4e\x88\x96\x2d\x2e\x6b\x9a\xd6\xf2\x1b\xfa\x60\xf5\x71\xb9\xc6\x24\xe4\xbd\xea\x78\x0d\xe1\x8d\x09\xe4\x40\xd6\xcc\x35\x0d\x8d\x59\x69\x9f\x7f\x2a\xa1\x16\x7a\x9c\x4f\x49\x12\x7b\xf1\x96\xfc\xc6\xf6\xa7\x8f\xc9\x4e\xa4\xe0\x66\x5d\x38\x4d\x0d\xab\x81\xb8\x51\x19\x99\x4f\x3c\x8c\x23\xf4\x8e\xa4\xfd\xc5\x2a\x73\xc6\x2b\x46\x64\x5f\x7e\x86\xbc\x80\x2c\x6f\xcb\xe2\x55\xc2\x59\xc9\xe6\x0e\x53\xcc\x03\x3f\xbd\xf3\x33\xcc\xca\xfd\xa2\x21\x2d\x7c\xde\x30\xa6\x6f\x4a\x07\x75\x1c\xa6\xc6\x05\xa8\x2e\x12\xd6\xb5\xaa\xd8\x9a\x41\x59\x62\x40\xd1\x5c\x31\xa0\x74\x09\xb8\x9f\x5a\xde\xc0\x24\x89\x06\xd4\x6e\x30\xa3\xc9\x84\x59\xc2\x5a\x7e\x5b\x8b\x64\x1a\xca\xe9\x84\x37\xb5\xca\x7d\x4c\x0c\x2e\xea\x93\xb0\x50\x41\x24\x9b\x45\xf2\x16\x14\x79\x89\x0f\x2a\x4d\x4c\x6a\xf5\x31\xb0\x8b\x65\x46\x2f\x66\x1f\x83\xed\x46\xf9\x94\x97\x51\x56\xe5\x96\xc5\x99\x4d\x07\x42\x5b\xb3\x01\xe1\x4e\xc5\x7b\x47\x72\x3f\xc9\x0e\x40\x34\x48\x7c\xf3\x9b\xa4\x6b\x78\x09\x67\x5f\x59\xc5\xcb\x8a\x88\x0b\xe5\xe3\xdd\x53\x0c\x76\x24\x85\xf3\x60\x68\xdd\xde\x1d\xc4\x8a\xdf\x8a\xd4\xdb\x79\x49\xc2\x87\x16\x2b\x66\xa6\xb8\x33\x51\x90\xba\x89\x55\x08\x23\x23\xd6\x8d\x94\x6c\xda\xe1\xb6\xce\x3d\x14\xc6\xa9\xad\x38\x61\x0c\xa2\x56\x28\x91\x4d\xb4\x49\x08\xdb\x94\x2c\xdd\x67\x1b\x31\xee\xc9\xaf\xf4\xb4\x4c\x68\x7f\x5d\x62\x6d\x08\xf1\x3e\x67\xa3\xce\x12\x4a\x90\x52\x33\x03\x94\x7d\xc8\xd9\x15\xc2\x52\x7e\x32\x63\x2a\xf1\x9a\x5b\x18\xd9\x88\x5b\x8c\xd0\x4f\x7b\x20\x65\xcf\x6c\xa7\x10\xa1\x03\xb2\x63\x47\xfc\xc7\x23\xf1\x28\x65\xab\x68\x08\xa5\x72\xb0\x1b\x15\xc3\x33\x1b\xfa\x71\xfe\xe2\x71\xf7\xe3\xb7\xf3\x17\x8e\x59\x2f\x56\xe5\xe2\x93\x10\x67\x55\xcf\x9b\xcf\x50\xbb\x61\xfe\x21\x8d\x9f\x17\xe0\xe3\x22\x25\x35\xbc\x85\xd6\x47\xcc\x85\x8a\x11\xde\x39\x37\x9a\x33\xea\x0b\xf3\xa0\x99\x98\xdb\x4a\xa1\x7e\x4f\x8f\xb0\xbb\x31\x45\x62\x47\x31\x92\xa4\x42\xab\x6a\x4e\xfb\x14\xb1\x1b\x68\x8a\xef\xf0\xf7\x5c\x93\xcb\x62\x00\x11\x6c\xfe\xad\x63\x8e\x6c\xa5\x72\x05\xb8\x93\x00\xf5\xe3\x53\x92\xf1\xe4\xc2\x33\x0b\xfc\xad\xab\x4d\xd5\x8f\x48\x91\x59\x65\xae\x24\xad\xe6\x41\x9b\x1b\x8c\xc1\x63\x97\x36\x1c\xaa\x86\xe4\x03\x23\xcf\xdb\x9c\xd4\xcb\xef\x53\x6a\x63\xd7\xb3\x06\xc5\x46\x9b\x9e\x76\x9c\x9c\x05\x0c\x52\x2d\xf3\x2e\xdb\xd5\x3a\x4d\x65\x61\xc4\xf9\xa6\xc2\x3e\xc8\xed\xda\x12\x0a\xa0\x62\x8d\x26\x7d\xea\x66\xf0\xd9\x4c\x0d\x85\x28\xc5\x7b\x13\xf7\xa7\x62\xf1\x3b\x9f\xa2\x05\xe2\xc2\x75\x29\x18\xc2\xf8\x19\x8c\xc9\x86\x94\x4a\x8f\x2c\xd2\x4c\x3f\x51\x0a\xe6\x77\xbe\xeb\xfb\x86\x95\xab\x35\xd3\xa0\x94\xb1\x3e\x1f\x03\x10\xea\xa7\xaf\xef\x4e\xa6\x25\xc6\x92\xea\x87\x90\x2c\x3a\xf0\x11\x31\xf5\xb3\x92\x1b\x0f\x4d\x77\x72\x07\x55\x88\x55\x2e\xaf\xef\xbc\xc1\x07\x7d\xe0\xe6\xfa\xe9\x9e\x3c\x6d\xcb\x67\xbe\x2f\x6e\xfd\xa1\x84\xf6\x47\x4a\x07\x4b\xf3\x02\x99\x62\x52\xb6\x05\x6c\xfb\xe0\x42\x6d\x7d\x8e\x34\xda\x18\xb5\xc8\xe7\x55\x46\x9c\x9c\x24\xe3\x02\x58\xa6\x41\xa0\xf4\x6c\xd0\x96\x57\x6a\xc7\xe8\xeb\xe3\x1e\xfb\xad\xb2\x6f\x9a\xac\x5b\x89\x3d\xc2\xba\x97\xae\xcb\x7a\x19\x19\xf2\x70\x3c\x04\x7a\xfb\xff\xd9\xf8\x56\x67\xd0\xc0\x82\x05\xf8\xbe\xa9\x0f\x91\xe6\xd4\x0e\x2b\xad\xa6\x5f\x6b\x90\xab\x69\x9b\xdd\x72\xa5\x56\x9c\xe4\x37\xc6\xda\xc7\x44\xe7\xb5\x0c\xea\x54\xaa\xb7\x1c\x9b\x7f\x59\xdb\x0e\xde\x84\xd7\x5f\xca\x96\xd5\x5d\x00\x45\x13\xbf\x6f\x46\x62\x84\x38\x96\xee\xa5\x9d\x8b\x90\x01\x69\xf2\xf5\x6e\x7d\x90\xde\x8a\x18\xe4\xcb\x38\x55\x5b\x05\x24\x26\x71\x39\x17\xa3\xe1\x35\x45\x4e\xe3\xbb\x83\xb5\xff\x2f\xb4\xed\xd6\x38\x61\x69\x12\xca\x90\x42\xa7\xf8\x20\x50\xb6\x15\x7c\x4c\x78\x3b\x7e\x3f\x90\xf2\x79\xdf\xd6\xb4\x40\xd2\x44\xd6\xcf\xe1\x09\x92\x1b\xf3\xf9\x84\x42\x70\x51\xfa\x83\x24\x7c\xb9\xc1\x5f\x5e\xbe\xb9\x32\xe5\xff\xf2\x4d\xfa\xa9\xd4\xba\xdf\xf4\xfd\xb6\xfb\x00\xb3\x92\xd8\x88\xd8\xa0\x74\x9e\xdf\xb1\xf4\x2d\xc9\xfa\x03\x19\x57\x65\xbe\xd1\x4e\xf2\xa7\x54\x71\x44\x42\x84\x26\xf2\x27\x49\x1e\x81\xb9\x32\x81\x1c\xfa\x73\xa4\x7e\xc8\x2a\x72\xba\x60\xa9\x47\x4b\xbf\x8f\x4c\xac\xbf\x27\xf9\x7a\x4b\xea\x2a\xcb\x74\x01\x18\xac\x89\x73\xd5\x5a\x53\x80\x60\xd5\xec\x36\x44\x20\x0b\x68\xe9\x54\xe0\xe9\x61\xf6\x2c\xb0\x2e\xc7\x95\x15\xc4\x4c\xfe\x50\x85\xfc\x2d\x24\xef\xeb\xed\xaa\xbf\xdb\x28\xa2\xea\x38\x9d\x18\x33\x41\x40\x34\xf7\x50\x0e\x08\x5b\x0b\x8b\xe9\x3d\x1b\x17\x29\x81\x54\x81\xa8\xea\x4d\xfe\xf9\xa1\x82\x9b\x66\xa2\x9c\xb0\x4c\x5f\xc8\x38\xa3\x0e\x31\x5a\x3d\x04\xce\xd6\xc3\xbd\xc0\x34\xf1\x04\x52\xd5\x8b\xf5\xae\xd8\xdb\x91\x6e\x37\xa7\x85\xc4\x2a\xc6\x93\xc7\xdd\x13\xae\xb2\xfe\x44\x92\x47\xed\xe0\x3f\xc8\xef\x14\xbf\x7f\xb0\x13\xce\x8c\xaa\x15\xbd\x2b\x75\x67\x9d\x24\x40\x15\xbc\x19\x41\x7f\x9a\x79\x3e\x16\xea\x54\x8e\xf8\x61\xc8\x51\x9d\xd7\xad\x7f\xb6\xde\x40\xbd\x24\x02\x9c\xf9\x53\xd9\x8c\x05\x99\x8c\x75\x95\x3a\x54\x2e\x98\xf9\xda\x76\x0d\x51\x07\x10\x33\xb1\x99\x8f\xcb\x0d\x56\xe7\xde\xe2\x24\xae\x4d\x94\x3e\x1b\xdb\xf3\xf7\x94\xef\x69\x81\x4d\x54\xe0\xd6\xdd\xde\x82\x32\xf7\x28\x44\x23\x2f\x86\x8c\x63\x5c\x8e\xa1\x66\x1e\x4b\x0e\xe1\xe1\xdc\x84\xaa\x98\xc3\x73\xac\x39\xb3\x15\x8a\xc8\xaf\xc5\xe9\x78\xa0\x3f\xab\x3d\x43\x79\xfd\x86\x55\xc5\x6e\xc7\xfb\x16\xab\x95\x22\x06\xc6\x18\x65\x89\x04\x55\x95\x68\x62\x7f\xf5\x44\x4f\xcc\x9a\x1f\xaa\x1f\x60\x5f\x59\x75\x68\x6e\x19\x57\xac\x95\x3b\xa0\x7d\xd5\x3a\x5b\x40\xf9\xb9\x82\xe5\xfa\x75\x75\x53\xaa\x35\xc0\x19\x41\x90\x37\x4b\xd6\xb4\xfe\x59\x83\x94\x51\x89\xbe\xd0\xdc\xf0\x8a\xe2\xf6\x38\x57\xca\x89\x25\x5b\x07\xc5\x44\xa2\x76\x05\x1c\xa7\x95\xc5\x01\x1f\xed\xf5\x10\x0c\xb0\x40\xf3\xf5\x6d\x7e\xd7\xc1\x46\x66\x4c\x86\x0f\x01\xa4\x38\x73\x10\x12\x8e\x96\xe8\x55\x78\xd4\x44\xab\xc6\x30\xc1\x67\x26\xbc\x5d\x38\x19\xe6\x16\x96\x01\x70\x08\xb5\xba\xdd\x04\x1b\xb3\xee\x2e\x6c\xd5\x60\x75\x9e\x75\x29\xc9\x0e\x2a\xc2\xd9\xaf\x32\xfb\x89\xb2\x07\x2c\x38\x52\x33\x2c\xc8\x11\x0b\x16\x5c\x57\x90\xd3\xd1\xa5\xc0\x4c\xb4\xa3\xfa\x0f\x45\x01\xa9\x08\x87\xac\xcf\x7a\xcb\x09\xef\x46\x34\x2b\x76\x54\x22\xe9\x62\x6f\xe8\xfa\x6a\xbd\x66\x4c\x9b\x3f\x44\xa4\x10\x20\x17\xeb\x04\x68\xea\x56\xd5\x36\x6d\x60\x30\x0f\x51\xe8\xc9\x36\x10\xbd\xf9\x50\xa8\x84\x82\xc3\x07\x07\x6d\x5e\x77\xd7\x25\x4e\x10\x36\xe9\x35\x9f\xd9\xcf\xb4\x69\x96\xe4\xc5\xff\x61\x4f\xcb\xa2\x2b\xa2\xe9\x70\x83\xc0\xdc\x05\x13\x15\x37\x2d\x27\x54\x30\x53\xa3\x0f\xc0\xaa\xaf\xa9\xb3\x3e\x30\x99\x8d\x50\x00\x81\x3a\x3a\x6f\x9c\xc4\xc3\x75\x64\x82\x90\xf6\x41\x69\x0f\x8c\x3b\x11\xff\x82\x6c\x4e\x99\x8b\x55\xb4\x2a\xae\x90\x93\x4a\xce\x68\x61\x24\xbf\x31\xdd\x7f\x4c\x44\xcc\xcc\xdc\x31\xc0\xb1\x88\x9d\x22\x33\x22\x31\xf9\x6b\x43\x1b\x2d\xec\xf0\xff\x4e\x5f\x2c\x4c\xd7\x49\x74\xb0\x39\xb0\x8f\xa8\x67\x07\xd3\xe4\x39\x91\x12\xed\xf5\xea\xde\x71\x47\x0a\x38\xd6\x13\xcc\x27\xaf\xec\x3b\xe1\xc3\xf3\x16\xc4\x75\xa9\x5f\x91\x3d\x46\x0a\x89\x01\xee\x95\x7d\x6b\xaa\x4b\xa2\x65\xe1\x52\x3e\xe8\x67\xc2\x0a\xff\x66\x06\xfe\xcb\xc2\x2c\xce\x40\x02\xae\xcb\x9b\x2a\xd3\xbf\xe5\xcd\x02\xf8\x6d\xde\x13\xe7\xa9\x45\x41\x12\x26\x10\x16\xd5\x6c\x57\x85\x3b\x7a\xe7\x5a\x92\xdf\xcc\xed\xe5\x63\xe2\x9d\x63\xcc\x2f\x66\xca\xe6\xac\xab\xb8\x53\x41\xf2\x3f\xe8\x53\x8d\x3b\xe0\x10\xf8\x50\xed\x1c\x87\xde\x76\x52\x09\xdf\x99\xe0\x67\xa2\xc6\xb2\xd8\x52\xa6\x34\xf4\x3c\x3d\x91\x0f\xd3\xf3\x77\x15\xc6\x54\x91\xb8\xbd\xc5\x44\x05\xae\x3c\x3a\x73\xae\xd3\xea\xc9\x15\x6a\xfa\x23\x35\x51\x2a\x81\xf4\x60\x07\x4f\xd8\x2b\xf9\xdc\x23\x50\x17\xd9\x72\x0d\x3d\xb2\x0e\x0e\xd5\xf8\xa8\x88\x75\x5f\x02\xbb\x2d\xe7\x29\xdb\x92\x89\xd0\x48\x2d\xd3\x71\x6e\x72\xd2\xe8\x6e\xaa\xdc\xd9\x98\x02\x19\xc6\x6d\xb2\x66\x24\x8a\x14\x2b\x88\xec\x62\xb3\x33\x11\xc6\x26\x94\x4d\x27\x42\xef\x54\x6b\x25\x87\x33\x35\xc4\x1b\xf6\xc4\xb1\x3d\xf0\x15\x7b\x20\xc1\xa5\x60\xec\x43\xc7\x4d\xe8\x21\xd5\x3b\xfd\x4c\x76\x5b\x3e\xf5\x09\x70\xf9\x01\x09\x0e\x97\x71\x7e\xa0\x38\x01\xab\x56\xcc\xd9\x88\x04\xbc\x08\x34\x29\x3e\xfa\xd0\x75\x3b\xe1\x1b\xa7\x4b\xb8\x18\x82\x78\x8b\x0a\x78\x92\x0e\x1c\x13\x25\xa7\xda\x40\x2d\xed\x6b\xe9\x8a\x56\xd1\xba\xaa\x3f\x75\x3a\x53\x8c\xa7\x50\x89\x84\xe5\x8b\xe8\x7b\x57\xca\xd9\x08\x3e\xc7\x9e\x58\x76\x3c\x86\x13\x41\xcf\x61\xec\x10\x4d\x0e\x0a\x8f\x84\xc7\x2c\x56\x4d\xd3\xa9\xb5\xd4\xb3\x22\x4e\x83\x31\x44\x39\x91\x62\xce\x41\x28\x62\x8f\xec\xc0\x12\x8b\x4e\xc9\x3d\xd3\xe3\x00\x0f\xad\xd4\x7f\xac\xc7\x04\x47\x56\xa7\x1c\x48\x2a\x9c\x2c\xf8\xac\xda\x88\x9b\xe3\x07\x3b\xae\xc4\x9c\x38\x19\x1e\xd9\xb3\xb8\x3f\xc3\x89\xd4\x76\xed\x90\xe0\x81\xf9\xb4\xd9\x0a\x4f\x9d\x64\x86\x1c\x93\x68\xd6\x91\x04\x65\xe3\x70\xf9\x8c\xbc\x20\xff\x3d\xce\x07\x9d\x9a\xce\xcb\x20\x1b\x80\xa8\x66\x1b\x41\x4e\x0a\xaa\xd6\xd6\x5e\x21\x75\xd0\xfb\x11\x51\x5b\xb9\x5b\x76\x91\x0a\x06\xae\x64\x58\xcc\xcc\xed\x88\x2d\xab\x72\xd8\x08\xff\x10\xf1\x91\xa9\x71\x52\x29\x55\x04\xeb\x5e\x1b\xfd\x57\x57\xbd\xaf\x59\xa4\xfc\xce\x09\xf7\x47\xc2\xdb\xf8\x1c\x42\x9c\x2b\x5d\xbe\xfa\x57\x46\x2c\xb0\x34\xa7\x8b\x90\x49\x6e\x5b\xa2\x15\x92\xc1\x63\x66\x39\x62\x8f\x11\x2b\x04\x27\x6c\xe0\x42\xe0\x39\x20\x8d\x5b\xab\xe2\xad\x04\x5f\x96\xe2\x6c\x39\xb4\x02\x58\x50\xd5\x64\x5b\x08\x96\x2b\xf4\xef\xfa\x48\x3f\x84\x71\xc9\x58\x4f\x34\x61\x90\x6f\x83\x91\x6c\x9b\x90\x89\xd1\xb0\xc7\xd3\x4d\xe9\x78\x7b\x55\x8b\x07\x87\x3b\x53\x8c\x18\x48\x7a\x02\x8e\x42\xe4\x20\xf6\x6f\xe3\x27\x3f\x0d\x5b\xf7\x74\xf4\x73\x6c\x39\x97\xb1\xc5\xab\xe8\x9b\x84\x7a\x04\x1a\xf7\x27\xb3\x05\x88\x27\x36\x6c\x31\x54\x08\x21\xa6\x13\x97\x9a\x45\x76\x7d\x98\xe8\xbf\xc6\x96\xcf\x22\xc1\x7f\x81\x19\x3f\x6a\xca\x9b\xf1\x5d\x27\x07\x2b\x6c\x34\xca\xf1\x52\xa3\x0c\x48\x27\x4a\xcb\x81\xcc\xa1\xd4\xec\x44\x0f\x6e\x45\x94\x0a\x46\x0f\x25\x41\x40\x51\x4a\xc0\xee\xc1\xae\x50\xf0\xa3\x82\xf3\xa4\x68\x18\xdd\xc8\x46\x1c\xcf\xf9\x11\x54\x28\x42\x8a\xc0\x42\x58\xa3\xfd\x9e\x85\x6f\x5b\xeb\x24\xd8\x12\x1e\xe4\xdc\xdf\xf9\xb4\x8d\x4e\xe8\x0e\x54\x6f\x59\x55\xcb\x15\x8d\xab\xda\xf0\x71\x37\x28\xc9\xce\x54\xbd\x5a\xc9\xbf\x88\x45\x35\xcb\x9a\xed\x46\xdc\x82\x38\xb1\x39\x9b\xef\x8f\x5d\xdf\x36\xf5\xf2\xc5\x49\xc3\xfa\x1e\x9b\x53\x78\xff\xfb\xe9\xc7\x6f\x35\x9d\xd8\x30\x4f\x21\x7b\x3c\xbe\xae\xfa\x37\xbb\xf9\x93\x2e\x5d\xb2\xeb\x2e\xce\x6d\xf2\xc0\xa1\x57\x1d\x1d\xc4\xc3\xf0\xb6\x76\x68\x81\x7b\x2f\xad\xf1\xae\x59\xd3\x02\x89\x8b\x34\x9b\x8d\x4c\x2f\x31\xb0\x8d\x40\xa2\xff\xf0\x8d\x28\x6b\x60\xae\x6c\x15\x3f\x54\xe1\xcc\x91\xb8\x9f\x1f\x9d\x36\x13\x22\x23\x23\x85\x8a\x71\x0c\x8c\x93\xdb\xba\x0f\x36\x22\x58\x28\xac\x14\x44\x84\x71\x29\xcc\x23\x9b\x7c\xc6\xe6\x11\x68\x12\x5c\x85\x15\xa7\x92\xd4\x0f\x11\x95\x38\xcd\x5a\x14\x21\xa1\x64\xeb\xb3\x10\x56\x40\xbc\xbc\xf7\x98\xed\x14\xc2\xb4\xeb\x1e\xc8\x75\xb0\xbe\x95\xa3\xc9\xd8\x95\x9f\xd9\x00\x02\x8e\xa6\x18\xf1\x3c\x6d\x08\x13\x71\xb5\x52\x78\x9a\xf5\x22\xe4\x66\xe2\x52\x25\x1c\x4d\x08\x92\xd4\x1d\xe6\xd7\x5f\xc8\xcd\x46\xed\xfa\x81\x5b\x73\x5f\xc0\xd1\x30\xa6\x23\xa0\x83\xc6\x02\x93\x86\x4e\xd4\x3b\x35\x60\x20\x83\x9d\x7b\xbd\xea\xf5\xbe\xd1\x83\xb0\xd4\x12\x31\x27\xa4\x6b\xf5\x65\xb4\x94\xb9\x13\x70\xc7\x14\x07\x21\xd8\x44\xfe\x5b\x5a\xe4\xc4\x07\xfa\xe6\x13\x91\xd2\xb8\x08\xd2\xf7\x15\x72\xfc\xc5\xf4\x17\xe5\x2e\x47\x9e\x39\x0c\x35\x1a\x3d\xc7\xde\xcb\x60\x02\xbe\xa2\xb5\x3a\x27\x2d\x31\xe8\xc0\x45\x9e\x5d\x59\x0a\xe1\x23\xca\x06\xd4\x13\xc9\xad\x7f\x92\xd8\x6a\x06\x82\x8e\xc8\x1f\xfa\x3b\x9c\x96\xa8\xfe\x60\xb1\x10\xf7\xde\xd5\x01\xfb\x14\x72\xc8\x04\x15\x6e\x90\xe7\x24\x70\xc0\x0f\xf3\x48\x2a\xbc\xe2\xec\x4e\x9d\x9a\xd5\x1d\xc0\x8a\xbc\xd6\x44\xac\x01\x00\x0a\xc2\x3b\x87\x08\xfc\xf2\xb6\x08\xab\x45\x9d\x47\xd4\xc5\x12\x73\x40\x54\x67\x0c\x73\x25\xce\x24\xe9\xd1\xf9\x5b\xda\x30\x5c\x83\x56\xe9\xcf\xf9\x62\xa5\x13\x78\x2b\x86\x08\xb8\x9c\xac\xd7\x43\x8e\xeb\x84\x7d\x29\x6e\xbe\xe7\x28\x89\x25\xee\x06\x35\x1a\x90\x0c\x26\xce\x17\x1c\x97\x5d\x60\x9c\x91\xd6\xd0\x93\xe1\x5e\xe5\x86\xfa\x0d\x61\xd6\x99\x08\x79\x69\x6d\xef\x98\xfb\x07\xce\x63\xb9\x60\xe8\x16\xfc\x7b\xe0\xb5\x46\x90\x38\xe4\x4d\x79\x09\xb7\x8e\x7f\x58\x87\x95\x83\x84\x53\x19\xb2\x91\xc9\xc9\xf4\x4c\x65\xb2\xd8\x14\x67\xd9\x5a\x3d\xf1\x98\x1f\xe2\x33\x4c\xf8\x5e\xb7\xbf\x87\xcb\x84\xa3\x0a\x48\xf9\x7c\xb2\x59\x47\xd1\xd2\xf4\x80\xdf\xa4\xb2\x0d\x8a\xa3\x04\xb7\x22\xda\x8a\x52\x44\xe0\x22\x4d\xb5\xdc\x96\xeb\x35\xad\x07\x6d\xdd\x9f\x3f\xea\xd0\x23\x97\x02\x05\x0a\x54\xd0\xd2\xcb\xb6\x82\x8a\xd0\xba\x66\x95\x11\x04\x2d\x37\x9c\xe6\x8b\x7d\xc0\x76\xeb\xe3\xa3\xf7\xef\xcf\xae\xfc\x26\xcd\xeb\xa0\x2e\x48\x94\xf8\xc6\xf9\xef\x8d\xfa\x65\x5e\x7c\x6e\x02\x63\x08\xef\x47\xa8\x25\xf6\xc1\x85\x6c\x2a\xf0\x76\x58\x36\xe0\x3d\x0d\xf7\xc5\x78\x79\xd4\xff\x62\xdf\xfc\x25\xbf\xb1\x74\xf3\x31\x31\x1b\xf5\x19\xff\x4d\x42\x33\x7f\x70\x3c\x82\xa5\xe7\x4f\x51\xfc\xcd\x03\xea\x40\x53\x8c\xcc\xfe\x60\xd2\xbb\x1c\xaa\x16\xe1\xbe\xc1\x5e\x71\x9d\xe2\xe8\xfa\x80\xad\x98\x4d\x8b\x05\xc3\xc8\xdd\xd5\xd5\xdf\x76\x10\xcf\x70\xe2\x3c\x4b\xd8\x2d\x74\x5e\xad\x65\x43\xf9\xc5\xfd\x90\x74\xfe\x1a\x78\xc7\x07\x8d\xd3\xaf\x1f\xbb\x2d\x7b\xd5\xd2\xde\xd0\x3d\x7f\xb4\xab\x52\x36\xec\xb1\x83\xd8\xa3\x17\xa4\xbf\xf0\x19\x34\x4d\x1f\x41\xbc\x18\x55\xc7\x17\xe0\x16\x62\x0f\x74\xde\x21\xa0\x5b\x4d\xe7\xd5\xc2\xf2\x6e\x64\x84\x14\xc4\xff\x81\x36\xf9\xb6\x9d\x1f\xc7\x53\xd5\xba\x09\x47\x58\xbb\x37\xf9\x7a\x17\x5b\x49\xb8\x75\x2e\xd3\x3d\x4b\xe0\xfa\xef\xcb\xc2\x5b\x08\xf7\x37\x39\x83\xa8\xe1\x27\x20\xad\xbf\xff\x1e\x18\xdf\xf4\x64\xc1\xef\x9b\x04\x3d\x51\xbb\xf1\xf0\xe2\x1f\xf2\xcc\x27\x9f\xf3\xe0\x98\x8f\xd4\x89\xd9\x08\xee\xf0\xe4\xeb\x5e\x6c\xc6\x69\x30\x9b\xcc\x5a\x30\x88\xd0\xd6\x7a\xa7\xa7\x73\x8e\x83\x75\x8b\xb6\xc2\xbd\x02\x49\xe7\xdb\x9f\x69\x70\xf3\xd3\x25\xfa\x76\x2f\x89\xee\x09\x45\xb3\x65\xd5\x93\x0a\xcf\xb7\xd8\xe0\x87\x9e\x10\xdb\xa0\x9d\x0c\xf7\x46\xe5\xcb\x52\x46\x45\x79\xd3\x17\x58\xd8\xca\x58\xd2\xd4\x15\xc0\x1f\xfa\x7b\xa2\x94\x02\xda\xad\x55\x3e\xb4\x68\xb2\xaa\xae\x78\xe1\xbf\xa5\x3f\xb4\xa9\x8b\x02\x10\x93\xa9\x88\xb7\xa8\x44\x8d\x3c\xa2\x7d\xbb\x7a\xd4\x8d\x4f\x67\x45\xfd\xf7\x82\x79\x51\xd7\x75\x35\xc0\x03\x6d\x48\x48\x5f\x22\x41\x6f\x8b\x12\xe3\xdb\xd5\x62\x04\xa6\xbf\x51\xa2\xa1\x3b\x90\x63\xe4\xf2\xd0\x61\xdf\xe6\x8b\x4f\xcc\x53\x88\x54\xca\x96\x94\x01\xf8\x2e\xe5\xbc\xed\xa5\x44\x5f\x4b\x42\x80\xd8\xfa\xd5\x31\x48\x8a\x59\xe5\x15\x2b\x0e\x37\x22\x80\xc9\x3d\xd3\xb7\x96\xf2\x94\x35\xce\x67\x06\x68\xfa\xa2\x83\x53\xab\xc7\x20\xdf\xfa\xa9\x07\x77\x7a\x72\x4d\xeb\x90\x37\x0f\x36\x4b\xe0\x1c\x8d\xd0\x55\xf0\xe9\x50\xbe\xee\x52\x55\x73\xed\x40\x3c\xb9\xe5\x63\x66\xb1\xfd\xff\xaa\x9f\x30\xfd\x2f\xf3\xbf\x4b\xea\xa5\xfb\x01\xc2\xee\x94\xd4\x3b\xb5\xe3\x13\xee\x17\x2b\xf5\x0e\x6b\xae\x33\xb9\x7f\x86\x8d\xfa\xca\x9d\x47\x32\x97\x00\x1c\xcd\xe6\x26\xff\x5c\x6d\x76\x9b\xd4\x01\xa2\x28\xd3\xfe\xe3\xf8\x84\x61\x36\x7d\x4e\x30\x3c\x93\xfe\xfa\xe3\x82\x61\x0d\xf7\x9f\x1a\xb0\x1b\x58\xc6\x87\x6d\xc6\x4a\x22\xc7\x8f\x44\x6f\x12\xdb\x8d\x4c\x77\x95\x58\xae\x64\x86\xb9\xfb\xb9\xb2\xd9\x9d\xf2\x98\x51\xc2\xa3\x77\x4e\x8c\xee\xd1\x0b\x99\x74\xe3\x92\x56\xab\x92\xff\xa9\x5e\x66\x0e\xe8\x5f\x21\x66\xc2\x0a\x3d\x2d\x1d\xe3\x56\x94\x27\xa5\x09\xa8\x68\x23\x55\x61\x36\x0f\x6e\x56\x7d\xfb\xfa\xed\x15\xee\x55\x11\x4d\x8a\x51\x4f\x2f\x8f\xb1\xb3\xf3\xcc\xd5\xc9\x7b\x6c\xd5\x75\x22\x7b\xd5\x15\x10\xcf\xfc\x6f\xc2\xec\x27\x96\x02\xad\x2c\xa6\x00\xab\xcd\x7b\x5a\xb3\xa3\x96\xba\x59\xbf\x95\x44\x2d\xc8\x89\x30\x41\xc4\x67\x6a\xe6\x63\x96\x87\x57\xfa\xac\x5a\x77\x7c\xea\xa7\x2d\x3c\x39\xd5\xa5\xa6\xfc\x5d\xef\x85\x37\xd7\x89\xb0\x68\x4b\x57\x86\x7d\xed\x38\x3f\xae\x64\xf1\x65\x92\x98\xe5\xe3\xfe\x78\x1e\xce\x7b\xe8\x3c\x49\x0b\x85\x85\xa4\xed\x5d\xc6\x36\x7e\xc8\x45\xdb\x3b\x9f\x10\x08\x90\x94\x41\xe8\x0c\x80\x9d\xdf\xc9\x39\x66\xf9\xff\xfe\xef\xff\x73\x78\xcc\xc3\x3e\xee\xdb\x35\x7d\xa9\x7c\xce\xf0\x32\x0d\x52\x41\x7a\xf6\x1f\xa4\x67\xdd\xaa\x93\xc9\x07\xf9\x4a\xec\x37\x58\x01\xe5\x77\x6a\xd2\xc7\x47\xa2\xbf\x98\x23\x24\x7a\x1d\x9e\x59\x41\xc2\x4a\xae\x92\x0d\x29\xb8\xe1\x16\xf5\xb7\x5d\xb5\xf8\x94\x89\x65\xe6\x79\xfa\x9f\xfc\x2b\xc5\x15\x6b\xdd\xa5\x99\xf3\x3b\x36\x0e\xe2\x1c\xec\x05\xa1\xc7\x36\xb6\x36\xbd\x89\xe1\xd9\x7e\x1e\x4b\x1d\x77\xc6\x78\x0d\x90\xef\x6d\x25\xdb\x1d\xbb\x55\x31\x41\x58\x6b\xe7\x94\x82\x3b\x70\x9c\x28\xfc\xdc\xd5\x80\x99\x1d\xd5\x81\xe6\xa9\xbb\x72\x25\x72\x52\xb8\x42\x56\xe0\x4d\x4b\xdc\x65\x4e\xdb\x85\x29\x3a\x89\x7a\x48\x1e\xf3\x95\x32\xb7\x37\xe9\x9e\xd4\xb7\x25\x54\x39\xfa\x93\xd0\x96\xc7\x9e\x78\x7a\x7e\xcc\xd7\x82\xfb\x1c\x07\xad\x48\xb7\xd3\x63\x3e\x7e\xce\x97\x5a\x11\x74\xb8\x97\xfa\x99\x50\x3a\xff\xbe\xa2\x3f\xa3\xdb\xf9\x7c\x97\x7f\x7c\x87\x7f\x9d\xcf\x4b\x24\xbf\xc3\x07\x11\x3f\xed\xba\x3d\xcd\x88\xec\x41\xf6\x23\x61\x94\x54\xbd\x10\x22\xbe\x12\xbd\xf2\x22\x27\xce\xf2\x99\xe0\x0c\xad\xcd\xf9\xdc\xf7\x22\xbf\x95\x9f\x84\x2e\x8d\xe9\xf0\x46\xbe\x24\x19\x37\x03\x04\x14\x17\x03\x1c\x3c\xc4\x74\x5d\x0d\xe7\xf6\x2d\x59\xec\xe7\xb9\x66\xd9\xcd\xa6\xc1\x0e\x82\x28\x23\x95\x0c\x91\x3c\x49\xa2\xbe\xad\x13\xeb\xf4\x6c\xdc\x79\xcb\x19\x5c\x18\x48\x17\x83\xfc\x6b\x31\x50\xbc\x62\xf3\x84\xa5\xe5\xd8\x09\x52\xf3\x05\x74\xe9\x1b\xde\x7b\xd1\xb7\x53\xf9\x72\x39\x85\xf8\xf3\x9e\x40\x86\xd1\x34\xbb\xdd\x71\xc6\x7f\x5d\x2a\xd1\xb4\x4a\xaf\xf4\xd7\xdd\x94\x90\x78\x1e\x6c\x99\xc0\x5c\x06\xc9\xb3\xe1\xfc\x05\x59\x35\x23\x6b\x8e\x53\x40\x5a\x9e\xc8\x0f\xb3\x17\x34\x67\x6d\xe6\xca\x1f\xf3\xcf\x74\x3d\xaa\xc5\x11\x44\x48\x0f\x83\x66\x42\x18\x6a\x6a\x12\x4c\x9a\x0b\x21\xa5\xc5\xcd\x14\x30\x69\xa3\x75\x04\x7b\x46\x09\x21\x39\x46\x15\xb3\x1e\x35\xa8\x19\xaa\xd5\x34\x3c\x6d\xb2\x7c\x01\x0f\xca\xa5\x7e\x8e\xfb\x19\x00\x49\x37\xf3\x09\x50\xb6\xf1\x79\x38\x1a\xf8\x10\x48\x8d\xd0\x8e\x67\x0d\x67\xcf\xcf\x0f\x4d\xed\x70\x82\x24\x33\x23\xc9\x77\x51\xba\xbb\x40\x00\x82\xfc\xc2\x71\x5d\xa2\x66\x5c\x65\xda\x58\x54\x1f\x10\xda\xe7\x73\xca\x26\x79\x8b\xb1\xe9\x0a\x33\xae\x7c\x96\xa0\xce\x32\x95\x21\x59\xcd\x51\x95\x61\x1e\x89\x5a\x99\x08\xee\x82\x08\x27\xc4\xaf\x27\x4a\xdc\x4b\x51\x43\x98\xbd\x35\x8f\xe8\x46\x4b\xde\x33\xbd\x1e\x82\xe3\x59\xec\xaf\x7a\x4f\x39\x95\xf5\x20\xe1\x8d\x73\x66\x7c\xcb\xcc\xf1\x5c\x0e\x3d\x20\x3f\x26\x41\x3b\x8d\xb1\x43\x6a\x11\x4b\x03\xae\xab\x85\x1a\xfc\xa6\x0a\xc9\x2c\x17\xd9\xfc\x4e\xcb\xc8\x3c\xe3\xf2\xee\x9e\x22\x1b\x96\xfe\xa1\xfc\x6a\x91\x53\x97\x30\x51\xa4\xd3\x50\x02\x7c\x97\x7f\x9c\x33\xe3\xcd\x0c\xbe\x4c\xcc\x9b\xba\x49\x10\xa6\x52\x80\x9c\xe1\x63\x0a\x44\xcc\xe0\x6a\xc8\xe2\x9d\x43\xae\x87\xd8\x41\xfc\x64\xc3\xec\x16\xe6\x4a\xbc\x83\x93\x58\xfb\x05\xe5\xd8\x6d\x98\xf9\xaa\x9c\x7a\x9c\x36\xf0\xe5\xc5\xcf\x7b\xda\xf1\x05\xa4\xa1\x51\x09\x5e\x49\x98\x05\x02\x91\xef\xf4\xf1\x6f\xdf\x7d\xec\x78\x1a\xfc\x71\xd2\x6f\x7f\xfe\xd8\x3d\x7a\xf1\xf8\xb7\xef\x3f\xe2\x1c\x69\x54\x38\xbb\x66\x43\xea\xb8\x06\x14\x34\xe8\x6d\x5b\xde\x54\xcd\xae\x13\x19\x0f\x9f\x9e\x3f\x7c\x96\xa9\xf8\xdc\xc7\x4b\xdc\x85\x20\x18\xac\xf0\xc2\x65\xc5\x2b\xbc\xde\x6d\x32\x1d\x63\x27\x1c\xc0\x7e\xb9\xe2\x86\x81\x2c\xe7\x26\x7f\x77\xbf\x79\xb8\x55\xc1\x83\xa5\xce\x9b\x11\xe5\x4f\xf2\xeb\x05\x06\xc2\x43\xff\xdd\xb5\xd4\x04\x67\x50\x57\x12\x95\x81\x25\x76\x77\x16\x76\x57\xf6\xb3\x98\x2b\xe1\x87\x75\x39\xce\xd2\x5e\x78\x10\x9d\x37\x78\x4b\x87\xe0\x6d\x09\xc4\x18\xdc\x05\x7e\x0e\x32\xef\xab\xac\x8d\x0a\x28\xab\xf5\x54\xa2\xa0\x03\x5c\x2b\xa6\x64\x1b\xfa\x3a\x34\x49\x7b\xae\x0e\xfb\xf9\x95\xb5\x88\x3c\x41\x42\xef\xb5\xab\x47\xcd\x16\x85\x88\xda\x32\x54\xf5\xb4\x15\xe8\xaf\x6c\x62\xdb\x68\x54\xb3\x73\x7c\xf8\x96\xed\xfe\x28\x64\xa4\xe3\xe0\xa7\xa3\xd4\xc8\xb4\xaa\x89\x76\xd7\xef\x1a\xaa\x17\xf8\xb7\xdd\xef\xe3\x33\x3e\x4e\x8a\x40\xab\x3a\xb3\xeb\x15\xaa\x83\x10\xeb\x64\xef\x48\x19\x1f\x11\x15\x5f\x92\x56\x6b\xfd\xde\xeb\x97\xd1\x01\xb0\x5d\xe7\x94\xd3\x7f\x9e\xd6\x70\xed\x96\x05\xec\x57\x3f\xd3\x1f\x37\xd6\x81\x97\x95\xf5\x8f\x5b\xa1\xee\xd3\x1f\x4b\x92\x5d\xd2\x96\xa0\xdf\xc5\xe3\x7c\xc2\x5d\xe3\x77\x79\xfc\x1a\x02\x88\xf5\xfc\x71\x31\x90\xd4\x24\xdb\x53\xba\xae\x65\x4e\x18\xec\x43\x02\x39\x31\x18\xc9\x18\xb8\x27\xc6\x99\xee\xb6\x8f\x74\x10\x77\x7e\x2c\x0e\xc7\xb8\x16\xf5\xc4\x03\xa8\x33\xdf\x4f\x82\x4d\xfb\xb5\x88\xd4\x11\x9e\xcc\xb0\x0c\x1f\xfa\xb2\xb0\x67\x42\x70\x58\xa3\x75\xef\x3f\x9b\x99\x6e\xdc\xeb\xd8\xd2\xd7\x07\x0e\x81\x03\xc6\xb9\xcd\xdb\xbe\x5a\x54\xdb\xdc\x31\xcf\xf3\x20\x25\x11\x95\x2b\x90\xde\x43\xd5\x4b\x33\xf9\x1c\x20\x27\x1a\x16\x27\x28\x55\x51\x38\x45\x3d\xce\xba\x69\x38\xc3\x98\x01\xf7\xb7\x4d\xea\x14\x42\x44\xf2\xe3\xfd\x25\x4f\xb9\xb0\xdd\xd0\xc4\x3a\xd2\xf2\xb3\x41\xb5\x08\x17\xf0\x1c\x9e\x9e\xc3\x06\xb5\x85\xe7\xa9\x7e\x69\x7e\xa4\xab\x0e\x75\x54\x1b\x79\xc3\x26\xbc\xdd\x1a\xd8\xc1\x19\xb8\xfc\xb8\x96\xd3\x5b\x03\x42\x38\x35\x96\x85\x7c\x5b\xc1\xfe\x20\xc1\xd6\xd4\x23\x87\x73\xe7\xe5\x22\xe7\xe8\x5f\xe8\x33\x8f\x75\xc5\xe1\xdd\xfc\xe8\x09\x84\xc3\xb2\x58\xfd\xec\x87\x1e\xc6\xb1\x63\x6e\xe8\xaa\x37\x3b\xcc\x00\x53\xf3\xb2\xbf\xc5\x7d\x13\xb8\xc8\x30\x72\xe5\xc8\xa0\xfb\x21\xdc\xe3\x89\x31\x7e\x8b\x36\xbe\xe5\x8d\xbe\x50\x26\xf9\x27\xfc\x10\x56\xa9\xa8\x1c\xa8\x01\x13\x64\x00\xce\x60\x93\x7a\x0b\x7a\xa2\x11\x6f\x4a\x56\x69\xb9\xa1\xc2\x34\x53\x61\xd9\x3f\xb2\x45\xc1\x78\x32\xbe\x69\x2d\xb0\x0b\x8c\xa6\x7f\xef\xd2\xb5\x7e\xd4\xa4\x32\x80\x35\x23\x69\xff\x5a\xf5\x54\xfa\xdf\x3e\x1a\x8d\x92\x12\x91\x85\x7c\x17\xf4\xe9\x7f\x46\x50\x43\x85\xdc\xe7\x89\xdd\x1f\x04\x55\x9a\x67\x6c\xa1\xf9\xba\x5f\x13\xa9\x08\x6a\x9c\x05\x5c\x32\xf4\x84\x37\x9c\x49\xea\xf5\xb6\x6c\x99\x65\x28\x36\xdd\x41\xe7\x2c\x42\x0d\x84\xe3\xd6\xb7\xc4\x54\xe3\x72\xae\x46\xd5\x3a\x1e\xa1\x30\x31\x8b\x90\x2a\x38\x28\x1c\xad\x0f\x3b\xde\xa6\x5f\xee\x20\x6b\xba\x2e\x85\x2d\x76\xfe\x92\x05\x63\x91\x0a\xc1\xea\x16\x70\x3e\xeb\x7b\xd5\x65\x70\x6a\x13\x7f\xfc\x2b\xf5\x54\x5b\x57\x8b\x3e\x75\xe9\xd4\x9c\xdc\x72\x90\x30\x45\x4b\x09\xfa\xe4\x22\x23\xd2\xc6\xda\xad\x10\x46\x86\x01\xae\x89\x4b\x6d\x1a\xc8\x7f\x8e\x45\xe4\x75\x86\x03\x1c\x0c\x35\xb2\x13\x47\xc3\x50\xa3\xb1\x22\x64\x10\x1c\xc6\x55\x05\x9b\xfc\x97\xd5\x26\x1e\x04\x53\xf5\x39\x16\x20\xb7\x80\x78\xc5\xdb\xb8\xbb\xfd\x6d\x0d\x23\x1c\x0a\x3d\x6c\xf2\x5a\x4e\x64\x2b\xbe\x1f\xc4\x5a\xb6\xdc\x36\x86\x7f\x58\xbf\x9a\xa8\x59\x6a\x1b\xb0\x14\x10\xcf\xd4\xca\x06\xc1\xee\x6a\x5d\x80\x28\x05\xdb\x23\x93\xf8\xef\x6a\x27\x7e\xd2\x3b\x22\x55\x42\xf6\xc7\xf1\xf1\x50\x43\x96\x55\xcb\xf6\x1e\xa1\xed\xe9\x9f\x1e\x17\xcf\x64\x11\xc3\x4f\x6c\x74\xba\xc6\x89\x32\xf0\x70\x23\x65\x2e\x5a\x75\xb8\x9b\xcf\x24\xc3\x1b\x05\x03\xd1\xf7\xec\xf7\x24\xb0\x09\x06\x7b\x99\xd7\xdc\x83\xec\x09\x33\x43\x90\x3b\x6d\x6a\x18\x02\x14\xde\x80\xf3\xb8\x8b\xda\x6e\x32\x5a\x1a\x99\xea\x81\xb4\x9d\xf0\x42\xe1\x5f\xc3\x1e\x98\xfe\x33\xac\xd9\x69\x12\xf1\x80\x48\x00\x98\xf3\x16\x22\xb7\xce\x85\x45\x07\x66\x50\x22\x07\xbd\x32\xa4\xfe\x10\x2a\x00\x44\xd5\x0f\x38\xfc\x24\x72\x4c\xfa\xc3\x2d\xe5\x30\x63\xe2\x8c\x37\xcc\xf5\x63\x3e\xa1\x01\xb3\x11\x31\x7d\x6a\x31\xe7\x9e\xc5\x83\x2c\xc5\x57\x9f\xff\x86\x19\x2e\x4a\x90\x56\x95\xc9\xcc\x6b\x8d\xa8\x5c\x53\x7c\xd4\x9a\x03\x77\xc9\xf7\xc9\x1d\xfd\x3b\xdc\x6c\x0e\x8b\xe2\xc9\xc4\xa8\x03\xf9\xc9\x0d\x7b\xe0\x3d\xa8\xa6\x8b\x01\x97\x0c\x6a\x0a\xc4\xd1\x69\xdc\x31\x40\x34\x4f\x1f\x78\xef\xe7\x7d\x9a\x85\x8e\xc2\x63\x4e\x68\xd7\xcf\x5e\xc7\xfc\xbf\x21\x6e\xe7\x7d\x92\x78\x41\x8b\xbb\x65\x38\x96\x81\x28\x1f\x64\x0d\xee\xb8\xdf\xdb\x41\x77\x5a\xa3\xe2\x1c\xf1\xee\xcd\x1e\xa4\x48\xe4\xc9\xbd\x28\x09\x44\x68\x8f\x56\x27\x46\x4f\x00\x4e\x0b\xd1\xbe\xf5\xff\x4a\x41\x7a\xaa\xf9\x29\x32\x78\x40\x94\x4e\x6e\xab\x4f\x15\x15\xf8\x95\xfe\xe0\x7b\xa6\x51\x09\x52\x1f\x85\x80\xda\xe5\xec\x6f\xa2\x7c\x1b\x2b\xe7\xc0\xfe\x4f\x7c\x1a\x86\xd2\x54\xc2\x3d\x8a\x0f\xda\x6e\xcd\x47\x38\x9f\x64\x37\x6d\x16\x3b\xa8\xec\x77\x7a\xaf\xe7\xaf\xb8\x64\xd3\x90\x50\xb7\xd2\x38\x81\x10\x99\xab\x5e\x89\x6a\x26\x0d\x2a\x8d\xe3\x86\x5f\xa6\x21\xb9\x75\x91\xf7\x88\x5b\x4b\xe9\xd8\x3d\x05\x3c\x0c\xda\x8d\x04\x15\x93\x35\x5d\x85\x64\x0f\x2f\x77\x40\xc2\x5a\xdf\x6b\x24\x39\xc9\x37\x8f\x06\xd5\xe7\xfd\x11\xc3\xaf\x88\x44\x99\xb3\x7c\xcc\x5e\x76\xec\x11\x8d\xf9\x56\x3b\x99\x67\x10\x3a\x0e\x04\xde\xd2\x96\x58\x31\x0d\xda\x80\x0f\xab\x36\xc0\x44\xc1\xdc\xb9\x4b\x99\xa0\xcd\x58\x80\x72\xc4\x8c\x01\x0e\x4a\xe7\x94\x4c\x83\x9f\xa8\x1a\x19\x8d\xc7\xe7\x0d\xc7\x23\xae\x67\x11\x88\xfa\xa8\x4d\x43\xf1\x65\x8c\x45\x99\x7d\x67\x52\x42\xe8\x9e\x86\x69\xe7\xbe\x89\x60\xca\x4a\xbc\xca\xa5\x2e\xdc\x0c\xaf\xf7\xb2\xed\x11\x5b\xc6\xcd\x50\xa6\x7b\xa8\xdf\x89\x41\x48\xa8\x6a\xe0\x63\x1d\xf9\x57\x77\x41\x1d\x9d\x4e\x73\x17\x20\xd1\x6e\x13\x99\x2f\xb0\xfe\xe4\x98\x57\x53\x01\xbb\x2d\x6d\x26\x93\x85\xbb\x82\xf2\xe5\xb3\x82\x20\x5d\x2a\x50\x07\xbf\xf7\x80\xcd\xc4\x49\x4b\x83\x51\xec\x03\x92\x58\xa6\x4a\x49\xfb\x80\x10\x39\x5b\x1c\x7e\xf6\x81\x90\x2a\x57\x5e\xe3\x2a\x2a\x1f\x18\xeb\xb7\x07\x5e\x35\xcd\x27\x09\xbb\x36\xc7\xa7\xcf\x59\x72\xec\x62\xc9\xe4\x28\xbd\x6f\xe2\x5c\xd2\xee\xaa\x45\x18\xb2\xfc\x25\x27\x4c\x20\x4f\x2f\x01\x9e\x59\x0c\xbd\xcb\x68\x38\x7a\x2b\x2c\xa8\x47\xef\xa9\x8d\x2b\xd2\x1b\x4c\x2c\x32\x7d\xd9\x15\xbd\xa9\xab\x79\xf1\x6d\xff\x99\xaf\x3d\x2f\x6e\x78\x67\x29\xa2\xb0\xee\x9a\x36\xd1\x19\x26\x2a\xe7\x25\x2c\x97\xf4\xc0\x2c\xd9\xb7\x18\x97\x35\x6c\x57\xc3\x2c\x1a\x77\x0b\x2a\xa0\x1d\x8e\xc8\x9b\x3d\x5c\xf2\x75\xa6\x7c\x96\x37\x4d\x4b\x43\x75\x1e\x3c\x02\xd5\x28\xbc\x3f\x1b\x28\x56\x07\x47\x47\xd9\x0f\x6e\x7d\xfd\x25\x0a\x5e\x39\x67\x64\x88\x07\x86\x9c\x6d\xb0\x07\x09\xe2\x74\x13\x9e\xee\xe2\x50\x4a\x24\x17\x06\xe8\x92\x2d\x68\x80\x01\x0e\x7e\xd8\xb3\x03\x31\x3b\x1c\xdf\x96\x70\x3b\x16\x43\x26\xdc\xb3\xca\x76\xcf\xf0\x01\x93\x29\xcc\x10\x0f\x7b\x2a\xd0\x04\x8c\xcd\x89\x4b\x0e\x23\x38\xc9\x4b\xaf\xb4\x46\x1e\xd5\x2b\xc0\x8c\xcb\x4b\xdb\x5d\x7f\x27\xa1\x7f\xa7\x2b\x78\x9f\x6f\x70\xa7\x84\xa1\x7e\xb8\xb7\x8e\x99\x85\x6c\x21\xce\xaa\x5f\x43\x37\x4b\x60\x27\x25\x3d\xef\x4e\xbd\x2d\x9f\x7e\xf7\xe7\xef\xff\xed\x99\xb9\x11\xdd\x5b\x3b\x22\xc3\xf8\x26\x8e\xc2\x9f\x0f\xb7\x73\xf4\xf2\xf8\x90\xda\x3a\x48\x4f\x7e\x7e\xf5\xfa\x90\x1a\x3d\x48\x67\xb3\xd9\xfe\x96\x3d\x6e\xc3\x90\xa5\xac\x48\xb2\xc6\x13\x9e\x7c\x0a\x83\xff\x07\xbb\xb5\xfd\x33\xfd\x07\x2f\x30\xfa\x53\x11\xb7\xf9\xfc\x4f\xb3\x44\xb8\x80\xae\xbc\x78\x0f\x46\xbe\xb7\xa2\xe2\x30\xd2\x51\x2c\x20\x35\xe8\x69\x03\x4a\x0b\x95\xaa\xce\x1c\xfa\x89\x19\xe8\xad\x6a\x96\x84\xda\x8a\x36\xb0\x98\x59\x17\xcc\x22\xda\xec\xef\x72\xb6\x79\x82\x5f\xe9\xff\x62\x49\xd1\x81\xe0\xcd\x08\x04\xf5\x60\x0b\x43\x27\x5e\x6e\x1a\x9c\x40\xae\xd7\x8a\x75\x3c\x77\x16\xeb\x2e\xf6\x1e\x8a\xf7\x27\x1f\xf5\x4f\xee\xe7\xe6\xb5\x5c\x55\x94\x8b\xd3\x01\xc7\x66\x33\x4c\xef\x0c\x32\x7d\x7a\xc5\xe1\xc9\x97\xbb\x35\x29\x0c\x81\x03\xd9\xb0\xc0\x70\x5a\xac\x1e\x15\x2d\xe1\x80\xc4\xc8\xe1\x38\x77\xa8\x2b\x60\x7d\xce\x95\x4c\x03\x1e\xb5\x1c\x50\x56\x6e\x39\x0d\x5b\x91\x3d\xbe\xc3\x26\x7f\xa8\x51\x1a\x62\x7f\xf4\xa8\xe1\x00\x1b\xda\x07\x58\xa7\xa6\x7a\x21\xe7\x41\xae\x0f\xe2\x96\x3e\xd1\x03\x1f\x93\xda\x1c\xd3\xd5\x72\x35\xd8\x65\x05\x5a\x6e\x4f\x0c\x9c\x0a\xbd\xb6\x23\x50\x16\x46\x4e\xba\x84\xc3\xe3\xf8\x96\x71\xb8\x1c\x24\x98\x04\xbb\x01\xe9\xe7\x99\x85\xa3\x18\x83\x39\xa3\x89\x8f\x41\x11\x23\x85\x71\xa1\x74\x80\x05\xa1\x93\x14\xc7\x3f\x61\x99\xdf\x85\x83\xd7\x83\x11\x88\x0d\xb8\xcd\xd1\x4d\x74\x6f\x30\x4d\x4c\x13\x12\xc1\x1d\x84\x27\xc2\x7f\x75\x1d\xd0\x30\xae\x0d\xf1\x35\xa0\x9b\xaa\xd8\x11\xcf\xe3\xce\xdc\x57\xef\x9f\xe3\x7a\x09\x8f\xf0\x31\xdc\x5b\xf7\x60\x40\x58\xe1\xee\x59\x10\x84\x11\xb9\xf6\xd1\x71\x26\x47\xc4\xcc\xc7\x9d\xca\xe8\x4a\x42\x94\x9b\xd4\xc7\xb9\x08\xf5\x24\x51\x82\x40\x1f\x72\xb3\xd0\xa8\xf4\x87\xd1\xce\xad\xc7\x28\x3f\xb7\x5c\x27\x36\x50\xb6\x00\x4e\x82\xd9\x84\x9e\x91\x2c\x20\x81\x76\x50\x08\x9b\x36\x1b\x11\xbd\xed\xa7\x6e\xf4\x66\x03\xbb\x97\x4d\xca\xb8\x93\xf5\x4f\xac\xaf\x50\x8c\x66\xc4\x59\x9c\x7f\x84\x1d\xe0\x86\x99\x9d\x3e\x1e\x0b\x24\x23\x65\xef\x22\x64\x4d\xd6\x61\x90\x13\x16\x03\x86\x32\xbc\x5f\xef\x19\xe6\x20\x18\x06\xba\x36\xc5\x8f\xf6\x20\xca\x06\x10\x45\xaa\xf9\x23\xd8\xda\x8f\x28\xcf\x88\x1e\xbc\xee\xb2\xbf\xbe\x3f\xef\x65\x6c\xc1\xa5\x94\x50\xab\x61\x5e\xa9\xcf\xcc\x98\xcd\x38\x1c\xa2\x38\x7c\xe3\xd5\x1b\x76\x7d\x25\x94\x1f\xa8\xd2\x7e\xe0\xce\xef\x25\x84\x47\x70\x7f\x29\x3c\x99\xed\xf6\xf7\x15\xce\xac\x82\x80\x23\xbb\x5d\x61\xd2\x1c\x34\x72\xde\x3f\xb7\x1c\xdc\x9f\x4f\xc8\xaf\xc5\xfe\x22\x64\x31\xac\x74\x2f\xa5\x3c\x60\x17\xd8\x27\xbd\x4f\x57\x66\xda\xd3\x03\x41\x1d\xc6\xab\xdf\xce\xa1\xf1\x7a\x13\xce\xa2\x1d\x0c\xdb\x02\xb2\x80\x2f\xe3\xde\x9b\x31\xdc\x89\xaa\x26\x77\x04\x1f\x52\xc8\x75\xcd\x0a\xb4\xfb\xbb\x17\x5f\x99\x4a\x27\xae\x4a\x05\x3a\x05\x47\xdf\x8c\xce\xdb\xf9\x0e\x32\x8f\x27\x3a\x77\xdf\x5b\x60\x70\xf7\x37\xaa\x2b\xbe\xfb\x3b\xa6\x97\x41\xc3\x76\x01\x78\xac\x24\x36\x6d\x78\x1e\x1c\x76\x6c\x62\x48\x93\xc5\xa2\x63\x02\x89\x4f\xcf\xf4\xe8\xaf\x5e\xac\x24\x72\x78\xa8\x2a\xfb\x0b\x94\xc3\xed\x71\x40\xb3\xf7\x5c\x18\xb6\x4e\x89\xd5\x6c\x1f\xe6\x8e\x27\xb1\xa6\x37\xfa\x02\xbc\x89\xaf\xa9\x44\x4f\x8f\xbd\xfa\xd4\xf9\x14\xfb\xe3\x2c\x28\x81\x00\x7b\xfe\x12\x03\x9f\x7b\xcd\x47\x88\x8f\xe2\xed\xc5\xf7\x18\xd4\x1b\x56\x2e\x6f\x43\x90\x0c\xcb\xce\x22\x6d\x89\xf5\x00\x04\x67\xd3\x10\xce\xfa\x3a\xdc\x30\x60\x96\xe6\xde\xae\x9a\x40\xac\x7a\xb8\x01\x26\xbc\x5b\xb1\x00\x28\x91\xaa\x3d\x60\x60\x28\x70\x86\x3d\xb5\x16\xe0\x6c\x67\xb3\x23\xe4\xc0\x90\x07\xa3\x80\x3e\x39\x73\x76\x79\x85\x73\x5e\x9a\x34\x12\x59\x96\xbc\xc3\xa7\xbf\x92\x6a\x89\x77\x0b\xf8\xe5\x17\x65\x9f\x8b\x05\x47\x74\xa8\x6a\x8d\xea\x7e\x5b\xda\x55\xdb\xba\xd0\xfd\x2e\x8c\xf7\x61\x3a\xbc\x9c\xf7\xa6\x78\x8e\x05\x6f\x4a\x6d\xcb\x45\x75\x4d\x52\xed\x3b\x9a\xab\x1a\x0f\xe5\xb9\x07\xc0\xee\xbd\x51\xe6\x46\x02\xff\x77\x3e\x16\x0e\x37\x69\xc9\x0c\xd7\x87\xee\x84\x23\xf4\x0c\x41\xa7\xee\xb6\x1a\x86\xef\x33\xf5\x62\x57\x90\xbd\xbf\xe2\x4d\x26\x55\xff\xec\x2f\x59\x07\xa3\x3e\x84\x51\xf5\xa5\xe9\x2f\xe5\xec\x5a\xd5\x0c\xcf\x30\xb8\xbe\x70\xf0\xc7\x0e\x97\x3d\xf1\xfb\x01\x70\x43\xc1\xa5\x04\x6a\x86\x4b\x1d\x7b\xfc\x2b\x59\xb8\x5a\xed\x4d\x07\x88\x6c\x86\xa3\x6e\x6c\x72\x99\x6c\xc3\x0f\x11\x5d\xbb\x1d\x8e\x53\x68\x5f\xce\x6b\xa5\x39\x52\x1a\x77\x25\xde\xdd\xd9\xe4\x77\xf2\x70\x00\x1f\xab\x76\xb4\x7b\xd6\x45\x67\x2f\xca\xf1\xd3\x94\xab\xe6\x96\x2d\xb6\x76\x39\x6b\x34\x25\xe3\xbe\xf9\x03\x47\x3b\x65\x9c\x00\xe9\xb6\x8d\xdc\xef\xbb\xd0\xcf\x31\x90\x9c\xa3\xf0\xa8\xde\xc8\xd7\x18\x64\xab\x51\x71\x5d\x7c\xdc\x31\xc8\xbc\x29\x78\xce\x5e\xd2\x9f\xb1\x59\xcf\x3d\x83\x67\xb6\x3d\xac\xe5\x2d\x47\x99\x13\xa7\x55\xce\x20\xea\x2c\xd7\xd7\x12\x62\x8f\x15\x4c\x1c\x04\x89\x07\x00\x5f\x8c\x95\xc7\x33\xf8\x22\x27\x2a\x50\x3c\x21\x12\x01\x42\x6e\x87\xc7\xfb\xfa\xd8\x4d\x18\xa4\x67\xd8\x27\xb8\x3d\x59\xbf\xde\x8a\x72\x80\xd9\xc4\xb1\x97\x44\x65\x3f\x60\xe5\x9a\x2d\x6b\xe6\x96\x68\x86\xac\xad\x44\x44\xe7\xf0\x48\xc4\x03\x10\xb6\xd2\x40\x44\xbb\x92\x0b\x22\xc1\x1d\x55\x2f\x53\x73\x7c\x14\x46\xd8\xb8\x47\x7a\xa7\x98\x11\x24\xb7\x89\x47\x10\xde\x69\x12\x40\x16\xbd\x63\x28\x23\x29\xb8\x37\x70\xbe\x89\xd8\x47\xc0\x80\xa3\xf7\x09\xd1\x51\x8d\x74\x2e\x46\x16\x66\xac\x66\x53\x09\xbc\x28\x18\x57\x6c\xe7\x0a\x98\x21\x3f\x28\x44\xfb\xaf\x98\x24\x48\xd1\xcd\xdb\xc2\x82\x79\x2a\x63\xe6\x0b\x92\x60\xc0\x61\x50\xa9\x7c\xdd\x35\x56\x05\x6d\x24\x04\xf2\x89\x6f\x59\xd0\x7c\x43\x77\x50\x63\x1b\xab\x71\xfe\xf8\x86\x79\xf1\x6e\xcb\xec\x59\x78\xbd\xb5\x83\x21\x3f\xfd\xf7\xcb\xb3\xf7\x07\xe9\xe7\xc3\xdb\xdb\xdb\x43\x2e\x7e\xb8\x6b\xd7\x1c\xaf\xa5\xe0\x60\xa1\xff\xf3\xf4\xdd\x41\x5a\xf6\x8b\x67\xb3\xf4\x54\xb8\xb6\x67\x86\xea\xb3\x00\x7f\x24\x38\x00\x10\x83\xf8\xe3\xdc\x5c\x57\x8c\x5a\x4f\xc3\xa8\xd2\xa1\x70\xc7\xb3\x67\xbe\xe4\x3a\x99\xe2\x53\x1e\x08\x0a\x8b\xb6\x84\x2b\x36\x3e\x82\x0c\x92\x1a\x3e\x4d\x85\x99\x1b\x82\x54\xd4\x8e\x76\xe3\xed\x42\xdf\x50\x1b\x80\x98\xaf\xe1\x31\xbc\x0c\xbd\x61\x97\x27\xce\xed\xc2\x6c\xa9\x25\x2e\xc5\x07\x69\xd1\x06\x33\x2f\x6d\x22\xca\xe2\xa7\x61\x61\x5c\xba\xc2\xb3\x45\xcf\xd3\x7f\xe7\x33\x64\x9e\x28\xa1\x2d\xce\x32\xda\x02\xf0\x6c\x58\x18\xc1\xeb\x03\xed\x87\x06\x20\x21\xf9\x4d\xfb\xf2\x79\x4e\x03\x1b\x55\xa2\xc6\x30\xf6\xe1\x26\x26\xec\x8c\x63\xa0\x35\xa9\x6e\x5c\x24\x3e\xc1\x9f\xce\x36\xbc\xc8\x7d\xab\x03\xbd\x89\x65\xc7\xdb\x53\x78\x48\xe5\xc6\xd9\x24\x8a\x02\xfe\x08\x50\x35\x61\x8d\x95\x5f\x61\x4c\xa9\xbe\x10\x51\x0e\x33\x82\xb7\xea\xca\x1e\x21\xd1\xa6\xd6\xa2\xd8\x7a\xdc\xac\xf9\xd5\x63\xfc\x4d\x77\x1f\x11\xe4\x24\x9c\x44\xc4\x3d\xc0\x3a\x62\x7d\x61\x7a\x33\x9c\x8d\x78\x93\x97\xfc\x94\x37\x8d\xa4\x1b\x05\x1c\xb4\x31\x12\x2a\x54\xb3\x1b\x2b\x23\xbe\x85\x7d\xf2\x93\xdc\x18\xb0\x7d\xdd\x22\xa5\x22\x26\xcf\x89\x4b\x8b\xa5\x51\x5b\xa5\xe0\xbb\xf1\x12\x65\x84\xc8\x3a\x0a\x39\x2a\xcb\xb5\xb1\x47\x31\x83\x20\x90\x14\xdf\x00\xb7\xcb\xa6\xa3\x30\x5a\xe1\x4e\x2f\xb5\x5a\x50\x14\x09\xde\x32\xc8\x1c\x3e\x1a\x39\x5c\xd9\x24\xda\xca\xab\xc2\xc7\xf2\x15\x62\x6b\xbb\x6e\xee\x2c\xd2\xd8\x09\x7e\x69\x80\xd3\x70\x64\x1e\x4c\x07\xe5\x21\xa7\xea\xf2\xa2\x28\xa0\x50\x3b\x34\x32\x36\x61\x1f\xca\xc3\x6e\x98\x52\xb6\x09\x53\x9d\x76\x19\x18\xd1\x43\x61\x9b\x8f\xc3\xb2\xc8\x93\x61\x1a\xb0\x2b\x40\x0d\xae\x9b\x86\x03\xf8\x4b\xf0\xb0\x87\xea\x20\x35\x9b\x51\x5c\x37\x42\xad\x3f\xf2\xbe\x99\x1a\xc5\x38\x42\x96\x83\x1a\x46\xf2\xf2\x23\xdd\x1b\xc9\x2b\x2c\x1a\x86\xf3\x0a\x8a\x62\xdf\x74\x48\x98\x3c\x6e\x8e\xa6\x65\x1c\xac\xcb\x0f\xf5\x0b\xe2\x75\x4d\xcf\xdc\x50\xf1\x78\x70\xaa\xef\xf3\x36\x29\xc2\xc1\x7d\x41\xe4\xae\x81\x6a\xfe\x25\x3a\xc8\x54\x5f\x3c\x52\x02\xec\x3e\xe4\x7b\x52\x54\xd7\xd7\xb3\x79\x4b\x22\x38\x87\xc7\xc2\x3b\x8d\xcc\xd9\xf9\x77\x7a\x89\xdf\x02\xc2\x3e\xc7\xa0\x0a\xf9\x90\x44\xbd\x31\xf1\x5c\xfd\x66\x25\x11\x0e\x9f\xc3\xe7\xe1\x4e\x28\x47\x9c\x3f\xdf\x37\x88\x73\x2a\x39\x33\x29\xc2\x2a\x40\xc6\x5f\x08\xec\x05\xef\x00\x3e\x55\x46\xa1\x4b\x4e\x09\xc0\xba\xed\x9a\xa4\x57\x7d\x8b\xf0\x92\x7f\xe0\xe6\x6c\x00\xb1\xab\x49\x8f\x2d\x0b\x83\xf9\x20\x3f\x43\x28\xae\xd2\xa6\xce\x76\x54\x5c\xfa\x11\x37\x5b\x11\xbd\xbd\x69\x13\x14\x6a\x70\x04\x46\x64\x55\x41\xb6\xf6\x20\x61\x20\x20\x82\xb0\x39\xf1\x10\x8a\x68\x30\xac\x97\x6f\xdf\xcb\x4f\xdc\xfe\xd5\x88\xbc\xb8\xfe\xcb\xde\xbe\x92\xa5\x71\x78\xb7\x5b\x84\xf1\x94\xdb\xb7\x04\xc7\x79\x69\x90\x6c\x7e\x91\x12\x7d\xd0\x5d\x00\x96\x3a\xf8\xa2\xf0\x86\x78\x81\x73\x26\xbe\x64\xc3\xa5\x3e\xc3\x59\xda\xdb\x09\x7c\x49\xd8\xfb\x57\x52\x0d\x5c\x44\xa1\x0c\x21\xa6\xe3\x73\xb5\x89\xdd\x79\x9e\x4d\xdd\x7d\xb6\x3c\xb9\xb2\x2e\xb6\x66\x7b\x85\x1e\xbf\x1c\x44\xd1\xe6\xd7\x70\xbe\xe3\xbf\x2e\x95\x06\xe6\x8b\x9d\xb7\xe5\xe1\xb0\x18\x4d\x9e\x90\xd4\x25\x3e\x5c\xba\x3a\xcf\xf1\x1f\x97\x96\xaf\xc4\x71\xc3\xcf\x8c\x9f\x31\x73\xbe\xa6\xf5\xf5\xb8\x4b\xbb\x8a\x8d\xe9\xba\x10\x07\x0d\x62\x15\xf8\xf7\x7d\xb0\x46\x70\x89\x3d\x1c\x6b\xe8\x95\x87\x58\x85\xdd\x2a\x75\xf8\xe1\x38\x0f\xbd\xc4\x21\xd3\x27\x52\x67\x51\xbf\xa3\xd2\x22\xbe\x94\x46\x8d\x78\x67\x97\x25\x74\x44\xf1\x91\xf0\xb1\xec\x6c\xd2\x12\x22\x38\xaa\x35\x4b\x73\x6e\x91\x57\x1b\xaa\xff\x46\x9e\x24\x93\xea\x49\x32\x73\x71\xd2\x48\x48\xab\x25\x54\x93\xe5\xc1\xba\x63\x71\xd9\xa3\x32\xfe\x01\x22\x3b\x52\xf5\xc1\x02\x28\x1f\x52\xdf\x22\x8c\x41\xc0\x22\x20\xc7\x8d\x94\xb1\x07\x1d\x88\x76\x1c\x4b\x1d\xef\x32\x96\x13\x3b\xe4\x04\x64\xa1\xcb\xf9\x5c\xbe\x5c\x0e\x6b\x17\x22\x22\xbf\x93\x2f\xb6\x1d\x8e\xa9\x69\x1c\xc9\x8f\xf2\x0e\x87\x73\x1d\xc0\x3b\x04\xfc\x5a\x3e\xe1\x13\x8a\x86\x64\x97\x54\x1c\xcc\xf2\x3e\xa2\x14\x33\x37\xfa\xd7\x6f\x0f\xb1\x7d\xf9\x6e\x0c\xdd\x2a\x5d\x73\x4a\x28\x9e\x64\x46\xd4\xce\x0e\x6b\xb6\x52\xe0\xb1\x16\x2f\x17\x50\x8f\x5f\x30\x70\x1d\x1d\x2d\x34\x11\x0e\x3d\x54\x7c\xcc\x34\x01\x2c\x5b\xa1\x66\x79\xf3\xf4\x10\x66\x7a\xf7\xb3\x76\x86\x2e\x6a\x08\xcc\xcc\x96\x18\x77\x62\x43\x24\x73\xcf\x5e\x37\x6a\x2d\x3c\xf6\x90\x26\x1e\xd8\xdc\x86\x6b\x20\x76\x78\x0b\xea\x51\x11\x84\x39\xa8\xae\x91\x91\x08\xe2\x7a\xa3\x2f\x96\x62\x9b\xb5\xef\x24\xf9\xad\x69\x97\x1f\xfd\x53\x30\xce\xa6\x1d\x99\xa5\x61\xd9\x60\x18\x17\xca\x7d\x0f\xa0\x0f\xef\xee\x6b\x34\x72\x7c\xcd\x8b\x6e\xfc\x5c\xbc\xd8\x95\xe4\xf9\x2f\xb8\x71\x5a\x18\xb5\x99\x05\x11\x91\x57\x28\xd4\xbf\x32\x6c\x4e\x62\x7b\x78\xaf\xbd\x0f\x7a\x99\x58\x7d\xab\x38\xfe\x04\x7f\xf0\x43\x21\x15\x1f\x43\xd1\x26\x22\xae\x1d\x6f\x91\x80\x5d\x85\xbd\x3b\xf8\x8d\x12\xb1\x10\xd2\xdf\x04\x0f\x29\xa8\x19\x9d\x53\xf5\x4b\xd3\x07\x8f\x35\x44\x8f\x2b\x04\x41\x4f\xf0\xec\x49\xe4\x14\xca\x95\x03\x2b\x13\xee\xe2\xee\x25\x1d\xed\x84\xa0\x10\xa9\xf7\x41\x47\x31\xca\x78\xad\xcb\x45\x03\x5e\xd5\xb9\xb8\xde\xea\x0d\x72\x25\x11\x3c\xc5\x52\x47\x77\x2b\xbb\x99\x6f\x26\xe0\x1c\x2b\xf1\x25\xf7\xc5\xf0\xf4\x34\xbb\xa9\xfe\x24\xf0\x51\xa0\x20\x35\x36\xe4\x12\x63\x50\x92\xd3\x35\xe9\xad\xeb\xc8\xfa\x80\x8a\x58\xde\xff\x69\xcf\x63\x12\xe3\xa7\x87\xbe\x3e\x4c\xd4\xb8\x8e\xfb\x03\x45\xfd\x51\xc7\xce\xe9\x47\x0d\x42\x13\xeb\xe0\x75\x03\x97\x35\xf5\xcc\xc1\x1f\xf1\x77\x8c\x41\x03\x26\x13\xa1\xc0\xd5\xf4\xa5\xc7\xab\xea\x46\x49\x94\xfa\xaf\x79\x51\xc6\x8f\xf5\x0c\x7b\x3d\x0a\xf3\x1f\x75\xfa\xeb\xc2\xfd\xef\x75\x47\x88\x78\xc5\xd0\xe4\x30\x8a\xb1\x89\x01\xde\x5b\x24\x8e\xb8\x19\x76\xd8\x19\x99\x03\x77\x00\x3d\x41\x94\x58\x9b\x72\xd0\xf4\x70\xc0\xcd\x3d\xc7\xc8\xf7\x45\xde\x1c\xf6\x92\x79\x8c\x8b\x23\x10\x76\xf2\xde\x12\xa1\x94\xd1\x0c\x8e\x24\xff\x78\x34\xce\xe9\xd3\x41\x36\x49\xdc\x9a\x25\x16\x52\x89\xe1\xcf\xdb\xb7\x58\xbd\x34\x7c\x89\xfe\xe9\x19\xad\xc7\x1c\xe4\x49\x41\xee\xe0\x71\x28\xe5\xda\x33\xff\xb6\x50\x16\x45\xe0\x3c\xf5\xaf\x17\xf9\x60\x9c\x3f\xb8\x62\xea\x28\x68\xe1\xbb\x07\xe9\x9e\x53\xe2\xd2\xc1\x56\xc2\x61\x7a\x20\xf9\x0d\x99\x6f\x32\x67\x58\x3e\x6e\x43\x9f\xe4\x6d\x9b\x75\xe9\x3a\x9a\x5e\x34\xec\x5a\x6a\x20\xf1\x15\xfc\xb8\xa0\x2b\xe3\xd2\x55\x8d\xb7\xb8\x88\x2e\x5d\x1e\x63\x42\xa8\x8c\x20\x55\x77\xcb\x60\xae\x44\x4e\xd6\xda\xa1\x76\xfc\x30\x84\x96\x27\x7e\x75\x5f\x7d\xcf\xcf\x05\x61\x53\x9d\xe1\x46\xbf\x3c\x76\xa4\x29\x71\xa3\x92\xc6\x12\x8b\x06\x81\x4e\xc5\x5b\x5d\xc3\x04\x8f\xf3\x07\xf1\xf8\xb0\xa7\xb8\x48\x7c\xf6\xda\x17\x0b\xdc\x1a\x49\xa2\x96\x23\xd4\x38\x40\x9d\xd4\x0a\x81\xdd\x37\x2b\x57\x32\xa2\x76\x43\x88\x2f\x69\x18\xee\xf6\xc3\xe6\x0e\xcc\x20\x0b\x3b\x99\x5a\x8a\x25\x78\xbe\xb4\x22\x0f\xa3\xbb\x7e\xb8\xa7\xf7\x7d\x3f\x42\x88\x2f\xe9\x07\xb7\x82\xab\xcd\xa2\xc0\xdd\xd3\x9f\xbc\xb0\xd7\x31\x22\xf7\xa2\x61\x17\x7d\xa4\xb8\xab\x60\x27\x87\x8b\x56\x31\x90\x4c\xf8\xfc\x63\xbc\xa5\x4a\x8e\x78\xd4\x4c\x08\x0f\xe2\x2e\x39\x19\x3f\xfb\x61\x26\x80\x3b\xe4\x5c\xd2\x81\x06\x8e\x90\x1e\x6c\x72\x5f\x92\x7e\x79\x61\x0f\xd2\x97\xf2\x06\xcd\x7c\x78\x4b\x16\x38\x8b\x1c\x2d\x92\x5f\xb8\xa9\x40\xf4\xb3\x99\x2c\x00\xe1\xdd\x34\x78\x81\x05\xad\x8e\x2b\x73\xcc\x1c\x50\x8e\x89\x8f\xe1\x6c\xc5\x86\x72\x5b\x70\x3a\xc0\x6c\xfb\xc0\xa4\x59\xe7\x96\x06\x28\x3e\xe8\x0e\xdd\x40\x39\xe2\x77\x13\x5e\x3f\xad\xee\xbd\x4e\x36\xee\x8a\xdf\xd7\xe5\x3d\x41\x47\x30\x7b\x95\x9e\x59\xb8\xd4\xc7\x04\xe2\xc9\x6e\xd9\xe2\x7a\xbd\xcd\x35\x33\x8b\x80\x14\x50\xe1\x0f\x6e\x94\x6c\x7e\x18\x70\x03\x78\x87\x50\x45\x4f\xee\x63\x0a\x5f\xd1\x01\xb0\x8d\xfb\x7b\x00\xb6\x20\xb1\x5a\xa8\x1b\x01\x0b\xb8\xaf\x23\xb2\xe6\xbf\xa2\x23\xe0\x1b\x5f\xd8\x91\x03\xeb\x85\xbe\x14\x56\x14\x93\xeb\xff\xbe\xfe\x0d\x14\x21\x10\x67\xf4\x74\x9d\x31\x03\x78\x4d\x41\x53\x9b\xf4\x9a\x0a\xcc\xc7\xb3\xd9\x70\x95\x04\x6e\x5f\xc1\x4a\x09\x3c\x4c\xad\x2f\x70\xf0\x52\x4f\x7c\xdd\xe5\x7c\x55\x35\xcd\x3b\xde\xd7\xa8\xfb\xd0\x5b\x3f\x8e\xe9\xc9\x4e\xc7\x7d\x7b\xa7\x92\x0e\x63\x24\x0e\x49\xea\xe3\x43\x8a\x4e\x07\x47\x07\x79\x37\xf0\x37\xcc\xd5\xc7\x84\xdf\xe0\xc5\x93\xcb\xbc\xfe\xed\x3b\x11\xcb\x97\x1c\xf6\xe2\x51\x39\xff\x9a\x5c\x3a\x7c\x5d\xee\xde\xa7\x00\xe3\xc7\x22\x87\xaf\x47\x76\x12\xac\x7d\x69\x22\xe2\x72\xa7\x97\xcc\xd4\x31\x94\x31\x7e\x47\x38\xd8\xb0\x21\x9b\x13\x92\x4d\x53\x57\xe2\x83\x76\x2a\x5f\x15\x3f\x05\x18\xde\x94\x7c\xc5\x3f\xe4\x91\x0c\x4d\xe1\x8b\x71\x49\xdf\xf4\x88\x85\x7c\xc5\x7f\x7f\x48\x1f\x17\x89\x1f\x3a\x6c\xd4\x6c\x6e\x5b\x88\xa5\x53\xbe\x83\xfc\xe0\x1d\x3a\xdc\xf3\x6e\xed\x61\x3d\x5f\x03\xba\x09\x8b\xfa\x2e\xe8\xb6\x76\x12\x95\xee\xba\xa9\x16\xed\xfa\x23\x3c\x23\xd8\x9a\x3f\x37\x5b\x0b\xbf\x28\x5f\xf0\x8b\xf2\x62\x87\x3c\x08\x12\xa2\x09\x09\x33\xb6\xee\xe1\x96\x28\x39\xde\x4a\x7d\xba\x44\x64\x8e\x92\x38\xf0\x6a\x94\x90\x2f\x46\xad\xd8\x79\x4a\x98\x66\xae\xc0\x3e\xc5\x9c\x82\xa3\xda\xe3\xd7\x3b\xc2\x2c\xf1\x7e\x8f\x92\xe4\xa6\xc5\x60\x24\x62\xe5\x0d\xd3\xd6\xcd\x92\xdf\x4a\x86\xad\x38\x1e\x9e\xca\xeb\x71\x9d\x76\x8d\x38\xaa\x02\x91\x8d\xc2\x14\x1c\xed\xf6\x79\x17\x97\xc6\xfa\x0c\x13\xf4\xee\xeb\x08\x90\xf4\xf7\x7c\xb1\xd2\xa0\x16\x13\x84\x64\x6a\xb8\x23\x26\xd1\xc5\xa7\x20\xbb\xdb\x4a\x22\xe5\x5e\xe2\x63\x12\xa6\xdd\xc1\x86\xb8\xab\x83\x5c\xbe\x9a\xcf\x61\x20\xf0\xc0\x49\xa3\x71\xa5\xf9\x9e\xbe\x7b\xcc\x24\x3d\xc3\x72\xec\xee\x2d\x14\xec\x8b\xec\x9b\xad\x0f\xa8\x68\xc9\xc0\xeb\x7e\x7a\x83\xf4\x35\xeb\x56\xab\x3e\x4f\xc1\x8b\xf5\x9d\x97\x3c\x72\x84\x0c\x51\xdf\x03\xcb\xfe\xa2\x3a\x06\xbd\xf4\x10\xfe\x5d\xfd\xaf\xee\x2a\xf8\x3f\xf3\x7b\xea\xcd\xa0\x93\x11\xcf\x33\x90\x07\x6a\x18\x74\x71\xb2\x8a\xaf\xef\x24\x76\xda\x7a\x29\xbb\xce\x9e\x4e\xde\xe1\x05\x9c\xb6\x50\xc5\x75\xcd\x0e\xa6\xaf\xcd\xe9\xed\x81\x2a\xf7\xf5\xfa\xde\x3a\xbf\x62\x18\xcb\xaa\xcf\x96\x0b\xdf\x7d\x7e\xfd\xab\x9d\x33\xe3\xe6\xcd\xbd\x5c\x48\x38\x9a\x3a\x36\x5a\x4e\x17\xbf\x0f\xc1\xe8\x10\x9b\x2b\xa6\xaa\xdf\xd7\xb7\xb6\xec\xee\xea\x05\x1b\xea\xf8\xb1\x34\x75\x00\xb8\x28\xe5\xd0\xe4\xc9\x8c\xd2\xbe\xcd\x35\x44\x7b\x89\xa3\xf2\xee\x89\x84\x07\x7e\xba\xc8\x71\x4f\xef\x07\xda\x8a\xeb\x43\xb0\x76\x94\x36\xc9\x96\xb1\xf5\xec\xde\x86\x06\x63\x09\xf8\x7a\x80\xdb\x16\x5d\xe9\xcb\x2f\x1a\x41\xe0\xee\x12\x0e\x83\x09\x45\x99\x18\x58\xde\xe0\x25\xe2\xf4\x29\xbb\x2e\xf1\x7b\x6e\xec\x97\xa5\xfe\x8e\xba\x69\x23\x38\xba\x33\xb0\x15\x7b\x06\x14\xb6\x7b\xcf\x0c\x3d\x89\x7a\xf1\x75\x63\xe4\x67\x1e\x46\x0b\xe1\x02\xc9\xfa\xec\xc3\x1f\x5a\x0e\x53\x15\xff\xab\xcb\xa1\x0d\x7a\x35\x7a\x02\x34\x10\x0f\x10\xe8\x9e\x70\xd7\x57\xd8\x26\x2e\x25\xf0\xfd\x07\xfc\x0e\xd9\xb5\xbe\x71\xba\x6c\xda\x86\x28\x4e\x22\x11\xeb\x5b\x9d\xaf\x2d\xad\x9b\x28\x80\x13\x8b\xbb\x6c\xa7\xa1\x1d\xac\xcc\x29\x92\x49\xec\xe3\xb8\x08\xbe\x14\x84\x27\x2b\xc3\x76\xe8\x85\x9e\x5e\x40\x9a\xb2\x52\x47\x96\x11\x94\xd4\x32\xcd\x9c\x2f\x3f\x69\xc8\x2b\x00\x9f\x69\x4a\x00\x8b\x53\x3f\x0e\xef\x4b\x14\xb0\xdb\x66\x3c\x54\x44\x3c\x90\xe4\xf4\x1d\x92\xd3\x2b\x4e\x1e\xb7\x60\xbd\x72\xc5\x06\x9d\xda\x57\x8e\x83\x3c\x0e\xcb\xbc\xe2\x58\x90\x43\x78\xc3\xdc\xaa\xcc\xb7\x23\xbc\xbd\xa1\xc4\x11\xd6\x00\x39\x46\x00\x60\xf7\x63\x21\x2c\x55\x15\x50\xa2\xc3\x12\x6f\x8b\xf5\xbe\x36\x2a\xf8\x0a\x0d\xe1\x6b\x16\xe2\xf7\x94\x50\x69\x6a\xd8\x2b\x3d\xa9\x1b\xf5\xaa\x99\x73\x04\x93\xce\xa0\xcf\xe4\x67\x00\x35\x6f\x9a\x9e\x74\x39\x02\x25\x31\x12\x6e\xa3\x82\xa6\x97\x96\xce\x82\xf0\xe2\xd3\x08\x53\x02\x3d\x46\x95\x40\xef\xc7\xd5\x86\x2f\x79\x53\x5b\xed\x6e\xd1\xef\x88\xe7\xb8\x06\x4f\x2f\xf9\xde\xf8\xa5\xcb\x18\xb5\x38\x2a\x19\x52\xe8\xb0\xf0\x54\xcb\x0b\x7e\x63\x64\xb2\xe9\x63\xce\xb9\xb7\xed\x51\xd9\xb0\xf1\x51\xf1\xa9\x95\x82\x37\xa2\x99\x29\xcd\x77\x8b\x4f\x65\xcf\x17\xbb\x57\x19\x5c\x34\xc2\xba\xce\x0d\x2c\x7d\x09\xb0\xf4\x0d\x81\xa5\x57\xb0\xb8\x4d\xd4\x4a\xfb\xe8\xa6\xec\x73\xb8\x14\x05\xb5\xbc\x3e\xa6\x19\x90\xe4\xa9\x52\xb0\xc4\x65\xaa\xff\xe8\x2a\x64\x91\x34\xa8\xe1\x0c\xc6\x3a\x55\x89\x8e\x1c\xc8\x54\x6d\x1c\x64\x58\x36\xf4\xc5\xdd\x62\x2d\xde\x2c\x9f\x7b\xee\xc3\x85\xa4\x04\xb0\xd0\xf1\x08\xd6\x78\x24\xbc\x4a\x10\x05\x85\xc0\xaf\x62\x46\x29\x1c\xcc\x03\x0b\xe3\x22\xb8\x73\xf6\xc4\x99\x02\xdc\xe6\xb2\x98\xf6\x42\x5a\xf3\x06\x68\x2d\x0f\xe1\xb4\xd1\x4e\x50\x29\x6c\x45\x14\x6c\xb9\x03\xa5\xef\x09\x12\xcd\xc1\x6b\x01\x57\xa0\xec\x35\x41\x4e\x53\x58\x3c\x8d\xed\x4f\x54\xfc\x21\xad\x7b\xcd\x5d\xc0\x44\xaf\x80\x36\x21\x29\x26\x09\xf3\x4c\x1c\xd9\xb7\xe5\x45\x51\x5b\x24\xcd\x6f\xa0\xf4\x57\xd3\x2c\x9a\x96\x8b\x00\xae\xe9\x70\x9d\x6e\xcb\x25\x1b\x2a\xe4\x52\x35\xa2\x56\xe1\x76\xcc\x05\x92\x4d\xbb\x09\xef\x3b\x5d\x35\x18\x65\x30\xb0\xd8\xc5\xd0\x86\xf9\x70\x44\xaf\x99\xd6\x11\xc6\x96\xd5\x91\x41\x75\x31\x1f\xbb\xd8\xec\x60\xbe\x76\x02\x29\x8f\xba\xc8\xc1\xe6\x3a\x2c\x0d\xbd\xd2\x14\xb5\x41\x0d\xef\xa0\x73\x06\x58\x76\x8f\x52\x3b\x53\x37\x0e\x0b\xd8\xe4\x22\x97\x34\x60\x6a\x87\x13\xed\xae\xb6\x47\xaf\x8d\x0c\xf6\x3d\x08\x6f\x2f\xd1\x7d\xe1\x9b\xf0\x1e\x17\x01\xa5\xc0\x4b\x25\xa6\x91\x4d\xfe\x59\x5f\x38\xf1\x4f\x28\x9d\xea\x63\x49\xc1\x5d\xd2\x63\xcb\x7d\xc7\xef\x26\xed\x2b\x6b\x36\xbe\xa7\x97\xc4\x60\x0e\xbf\xc3\x9b\x81\xb4\x1e\x96\xeb\x66\x9e\xb3\x4b\x8a\xbc\x86\x85\xa7\x97\x9e\x69\x1d\x55\x97\x85\x44\x39\x7c\x48\x2f\x1f\x10\x29\x8d\x7e\x55\xcd\x69\x50\xa2\xe8\x8f\x0b\x18\x80\x5c\x8a\x02\x54\xd0\x92\x92\x78\x54\x08\x21\x2e\x38\x43\x28\xb4\x69\x03\x2f\x00\xa3\x79\x9c\xb7\xf3\x1d\x97\x4c\xdd\xbc\x47\x35\x04\x65\x60\x5c\x96\x35\xc9\x62\x9f\x84\x1d\x0a\xeb\x91\xa7\x87\x32\x23\xb6\x87\xea\xda\xfb\x52\xd1\x24\xc9\x78\xfb\xbe\x51\x8c\xb0\x7e\x23\xce\x7b\x8f\x8f\x63\xda\x40\xdc\x4e\xbe\xa6\xec\xad\x8e\x41\x4f\x25\xaa\x27\xf7\xd7\x5f\x34\x6e\x58\x32\x65\x99\x17\xc1\xeb\x59\xc5\x0a\xaf\x8d\xbb\x48\x0f\x16\x5e\xb4\xc4\x15\x06\x1f\x47\x82\xb6\x04\xb5\x49\x86\x1d\xe0\x48\x25\xe2\x43\xb3\xa7\x7d\x7f\x46\x8a\x48\x72\x61\xf3\xa1\x75\x2c\xee\x80\x9c\xe3\x35\x6d\xe8\x29\x15\x1b\x37\xa3\xae\x4c\x38\x43\x1d\x0d\xdf\x85\xdd\xe3\xe9\x4b\xb5\xca\x5d\xda\x01\x77\x8f\x0e\xb7\x23\x2e\x8f\x12\x21\xf7\x46\x42\xec\xe6\x83\x24\x7f\xf0\x63\x67\x3e\x62\x82\x05\xe3\x1e\xb6\x17\x2c\xe7\xa8\x35\x29\x31\x7e\x70\x32\xee\x82\xa4\x8c\x8f\x86\x25\x5d\xad\x87\xa9\x3d\xe7\xa6\xa6\xe0\x19\x4c\x88\x22\xbd\xb5\x96\x36\x7c\x19\x08\x96\x61\xe5\xb3\x83\x2e\x0f\x38\x6d\xd4\x6d\x29\x25\x11\x41\xed\xda\xb9\x32\x73\xcd\x0a\x7a\x2f\x29\xe1\x13\x1a\x92\x52\x22\xde\x0e\x73\x1e\x89\xbc\x53\x68\xfa\xd8\x29\x2b\xe8\xa4\x56\x33\xe8\x5c\x50\x2b\xa0\xa6\x37\x8b\xa0\x37\x5d\x49\x7a\x04\x3f\xd5\x48\x2b\xb7\x6f\x16\x8d\xbc\xda\x2f\x69\xbc\x68\x91\xa6\xb0\xc3\x3b\x17\x92\x8a\xeb\xc1\x7c\x41\xa4\xeb\x35\x65\x2b\x8f\x68\x9c\xf3\x23\x1a\x92\x02\xeb\x5d\x01\xef\x67\x36\xd6\x9d\xbc\x0f\xd3\x6d\xa7\xb2\xdc\x73\xfd\x3d\x05\x13\xb8\x57\xe5\x2d\xbf\xe1\xf1\x83\xc6\xcd\xb5\x3a\x10\xe9\xb7\x69\xc5\x6b\x79\xbb\xe6\xfe\x72\x60\x26\x1c\xbc\xf1\x31\xc4\x0e\x31\x33\xf9\xa1\x76\x78\x1c\x10\x4b\x5a\x8a\x43\xbe\x3c\x2d\xac\x88\x67\x31\x48\xc3\x81\x43\xfc\xd1\x63\x96\x97\xec\x2b\x19\x80\x60\x44\x00\x70\x23\xca\x7b\x09\x8a\x54\x4e\x5d\x51\x4b\x5d\xee\x5e\xe8\xe1\x5b\x37\x60\x10\x6e\xc3\xe6\xde\x73\xe4\xff\xc3\x0a\x41\x3e\x99\x53\x95\xeb\x42\xef\x5b\x46\xc1\x9f\x66\xa3\x16\xcc\xcf\x0a\xd1\x1a\x1f\xe8\x4d\xb7\xb3\xae\x5f\xee\x1e\xea\x39\xde\xf8\x27\xd2\x95\xb7\xfe\xf7\x81\x75\xac\x0d\xea\x53\xd7\xaf\x4a\xb6\x1f\xfb\x2c\x9e\x2a\xa5\x0b\xb9\x4a\xf2\xd9\xe8\x46\x22\x47\x1a\x92\x25\x72\xa4\xd5\x8c\xa3\x3d\x07\x20\x07\xfe\x11\xc4\x86\xf7\xda\xac\xcb\x99\x31\xd1\xae\x52\xa4\x97\x47\x46\xf4\x9b\x7e\x6b\x0f\x1b\x5e\x9e\x5e\x9d\xdf\xb3\x8a\x18\x54\x29\x1c\x90\x01\x99\x73\x96\x92\x3a\xb2\x02\x7a\xb7\x60\x05\xb2\x62\xd4\x38\x03\xe7\x3a\x59\x3a\xdd\x34\xdc\x7d\xb2\x9a\xbc\x1b\x4e\xd2\x01\x07\xb6\xc6\x15\x1f\x29\x33\x4b\x4f\x49\x9e\xa9\xd8\x57\xd3\x5a\x53\x7f\x41\x7e\x03\xac\xdc\xe6\xad\x3d\x90\x83\x17\xdd\xd2\x27\x07\x4f\x66\x11\xdf\xc9\x7a\xbc\x7d\xa5\x41\xbf\xae\xde\x5d\xd2\xe7\xa2\xbd\x13\x67\x04\x1d\xe9\xa7\x6a\xcb\x60\x19\xdf\x10\x13\x81\x9a\x52\x00\xfb\x0b\x52\x6c\xe1\xf3\xa9\x75\xd9\xde\x70\xb0\x4a\xa5\x9f\xf3\xa3\x53\x18\x8b\x28\x29\x64\x3b\xda\x34\x22\x53\x9b\xb8\xee\x3b\x41\xd3\xd1\x44\xe2\xba\xb1\xce\x6a\x8b\xbd\x87\xfe\x58\x3d\x41\xd0\xdc\xa1\x4c\x2d\x9e\x05\x86\xe9\x91\x7c\x17\x43\x47\x62\x9e\xe3\xea\x43\x3d\x20\x2e\xf3\xd0\x75\xa3\x59\xc4\xc7\xc3\x4d\x3b\xae\xe7\x0b\x5d\xf4\xc2\xca\x02\x01\xeb\xbe\x51\x4f\xc6\x16\x8a\x4b\x44\x90\x99\x6c\x2d\xf6\xee\x74\x5c\xb5\xf3\x9a\x18\x97\x88\x5e\xa0\x1e\x21\x76\xc2\xf5\xed\x1e\x77\x37\x25\x39\x48\x5d\x95\xbb\x6d\xb6\xa7\x6a\x91\xbf\x00\x43\x14\x0e\x7f\x0b\x3d\x9c\xd4\x83\x66\x2f\xe2\xf9\xf0\x69\xfc\x9e\x81\x1c\x28\x07\x51\xc2\x44\x96\xc7\xae\xaa\x32\x57\x30\xcc\x81\xcc\x15\x77\xe3\x21\xd1\x4b\xac\xd3\x66\x42\x75\x07\xcc\x6a\x42\x8d\xcf\x99\x15\x36\xdf\x6e\xdd\xd6\x1d\xbc\x71\x8e\x05\x14\x80\xdc\x08\xeb\x0b\x20\x7e\xd1\x70\x6d\x01\x90\x5c\x81\x0e\x81\xf8\x26\xb4\x02\x0c\xb7\x74\x4d\x6e\xae\xaf\xf9\xdd\x47\x7e\xec\x44\xe3\x8a\xf2\x4f\x0e\xfe\xec\xda\xd7\x8b\xfd\x19\xdb\x74\x61\x23\xe5\x31\x9d\xe8\x6d\xff\x0b\x24\xb2\x52\x6a\xe0\xed\x0e\x53\xc9\xfd\xbd\xd8\xd5\xa2\x6e\x07\x59\xda\x10\x67\x85\x8d\x40\x82\x6c\x9b\xa6\xb7\x87\x4f\x03\xf1\xf1\x82\x92\x49\x56\xe8\x57\x0e\xc1\x7c\x84\xbd\xc8\xe4\xfd\xc5\xa0\x0c\x0e\xd0\x17\x72\x83\x6a\x54\x88\xfa\x3d\x2e\x41\xfd\xde\x03\x2e\x6e\x5a\x26\x7c\x5d\xe2\x97\x6c\x17\xae\xc7\x88\xf0\x27\xcb\xc2\x06\x2c\x69\x43\xba\x01\x0e\x5c\xc5\xdd\x2a\x20\x8d\xcb\x37\xd3\x74\xc1\x50\x63\x69\x31\xc8\x64\x51\xb7\xcf\x34\x46\x68\xa6\xcf\xd3\x8a\xe4\xdb\xa7\x2f\x35\x74\xa8\x50\x5e\x58\x6c\x0f\x19\x70\x56\x28\xcc\x05\xc9\x6b\xb8\x82\x58\xee\x3b\xfc\x1a\x01\x45\x33\x37\x42\x25\x01\xf0\x0d\x46\x84\x1a\x51\xa0\xff\x28\xef\x24\xc4\xc8\x04\xe0\x92\x9b\x73\x60\xf4\x2b\x7d\xfa\x84\xb2\x0e\x25\xeb\xc9\xb3\x51\x19\xd6\xa6\x37\xbb\x8d\x5c\x19\xad\xfe\x5e\xca\x33\x11\x2c\x0d\x48\x06\x5a\xbb\xe4\xd3\x98\x63\xce\xb8\xaf\x68\x37\x51\xaa\x73\x73\x57\xcc\xfd\xd4\x9d\x98\xc7\xc4\xe4\xfc\x11\x64\x28\xfe\xfb\xd4\x50\x88\xf6\xa9\xa1\xf2\xe0\x53\x95\xaa\xc2\x25\x44\xa9\x5d\xb7\xb6\x55\x74\x79\xf9\x2e\x5e\xaa\x3e\x37\x78\x57\x9e\xc5\xc5\x47\xfc\x80\x15\xbf\x86\xf1\x28\xe5\x2b\xca\xcf\x82\x12\x8a\xea\x10\xa9\x9a\x3a\xac\xa3\xfb\xdb\xba\xea\xcb\xef\x1f\xc1\x0b\xea\x51\x5f\x15\xf3\x47\xcf\x42\xa6\x57\xe1\xfe\x5c\xc0\xf5\xaa\xc5\x1e\xf4\x38\xc3\x1d\xdb\xa5\xd6\x41\x40\xca\x0b\x79\xe5\x4a\x85\x4c\xf5\xde\x8e\x31\x6b\xec\xc8\x0b\x13\x8e\x19\x85\x82\x84\xf5\x8b\xaf\x8a\xb6\x41\x86\x8f\xc4\x8d\xcb\xa7\x17\x56\xcd\x4b\x24\xfb\x0e\xca\x6b\x5b\xf6\xfa\x96\xde\x4a\xb3\xee\xe1\xf1\xac\xb7\xb5\x5c\x36\xd5\x22\x18\x89\x33\x44\x9e\x72\xff\x43\xdb\xe3\xb0\xff\x23\x62\xb5\x51\xdc\x4f\xb4\x2a\x4f\x2d\xf2\x2d\x89\xd6\xb9\x97\xa4\x8e\x25\xc1\xed\x07\x12\x2c\x81\x6f\x33\x66\x6b\xf5\x22\x90\x80\x0a\xb8\xd3\x48\xeb\xf8\xa6\xec\xfc\x60\x49\x30\xf1\x9a\x57\x54\xe8\x82\xf3\x9c\xa6\x36\x51\xd8\xe2\xac\xb8\x89\xb7\x38\x06\x93\x13\x8f\x70\x41\xd9\xba\xac\x97\x20\xba\xff\xe4\x9f\x24\x03\xf3\x4f\x87\x20\x09\x50\x00\xd3\x35\x5f\xc4\x7b\x6e\x21\x0b\x60\xc1\xa6\x14\x37\xb5\x0f\x0a\xab\xc1\xcc\x84\x1b\xf2\x29\x7e\x4f\x77\x50\x61\xf7\xf2\x5e\xcd\xb7\x59\xa4\x15\xd2\x04\x73\xf7\xe6\xe7\x77\x67\x03\xc8\x89\xa5\xad\x39\x13\xac\x40\x73\x26\x16\x3e\xec\xdd\xe0\xa0\xaa\x86\xc1\xd2\x0d\x16\x8a\xb5\x62\x70\x0e\x24\x73\x0f\x7f\xbf\xe2\x02\xec\xa4\xca\x25\x10\x1b\x0a\xab\x8e\x93\x58\xb0\xc5\x3b\xe0\xa3\xd2\x9d\x3e\x5d\xe8\xc1\xfd\x5b\x0e\x1a\x05\x88\x0b\xcf\x9c\x20\x81\x7d\xd0\xa1\x18\x5e\x3a\xd3\x18\x16\xc8\xbd\x08\x96\x23\x2a\xef\x9d\x87\x43\xa9\xc9\x8a\x04\x32\x2f\x88\xf2\xe5\x0a\x2b\x40\x8f\xe4\x77\x0c\x84\x73\xdc\x9b\x7c\xed\xa0\xde\x6a\xc2\xa8\xd5\x3a\x6c\xb3\x16\x37\x0d\x3f\x07\xe2\x5b\x1a\xf0\x38\xb9\xbd\x35\xbd\x85\x2b\x34\x5f\xd5\xad\xcc\x89\x53\xe0\xcf\x35\xc9\x40\x0d\xc4\xd7\x6c\x10\x5a\xb5\xeb\x26\x2d\xac\xca\xa9\x5c\xc7\xf8\x15\x91\x96\xb2\x07\x5e\xcf\x02\xeb\x39\x04\x5b\xc9\xa5\x84\x01\x2f\x17\x0e\x31\x76\x3a\xf5\xfa\xd8\xa1\x46\x0e\xb2\x06\x83\x59\x57\xd7\xa5\x3b\xf6\xd2\xd1\xbc\xa3\xb4\x08\x78\xd5\xf7\xdb\xce\x82\xe2\xe0\x41\xfd\xf4\x8c\x7e\x0c\x06\x11\x56\xa5\x23\x19\xd5\xb4\xad\x70\x14\x19\xe0\x45\x12\xa6\x31\x6e\xd0\xba\x17\x05\xe0\xba\x19\x0d\x79\xf0\xb2\xd5\xbb\x53\x7e\x05\xbf\xd6\xa4\x50\x6c\x74\xad\xb3\xb8\x38\xd9\x32\x43\xe9\x9e\xcc\x30\xd8\x93\xcd\x63\x74\xb6\x68\x25\x16\x24\xff\xb9\x62\x77\x3d\x97\x13\xf2\x06\x4b\xeb\x88\xf6\x8a\x9d\x5c\x7d\xd7\x4f\x0f\xef\x1f\x42\x15\x34\x59\xc6\xc4\xe3\xa9\x31\x40\xf9\xb9\x5c\xec\x02\x1f\x85\x9f\xe5\xb7\x1e\x0a\xfa\x6a\x1a\xbb\x55\xb2\xab\xf1\x70\xee\xb9\xa4\x04\x30\x53\xef\xf7\x58\xd7\x21\x7c\x9a\x10\xba\xb7\x7d\xd7\x3c\x2c\x30\x0c\x65\x5e\xb7\xe6\xcc\xaa\xcf\x60\xac\xe5\xfa\xee\xc0\x11\xd7\x60\x11\x55\xa1\xc0\x2d\xfa\xcc\xdd\xaa\x47\x78\x05\x81\xd4\x1b\xf6\x0e\x5e\xdd\x49\x75\x23\xe4\xd3\x16\xd7\x6a\xc9\xfe\x58\x7c\x84\x0c\xaa\xc6\x23\xc9\x47\x6b\x5f\x92\x86\x1c\x42\x9c\xe8\xcf\x08\xa6\xaa\x45\x1d\x90\x2c\x39\xd9\x7a\x2b\x69\x5a\x65\xe0\x5d\x6c\x2a\xb5\x7b\x84\xd9\xe9\xed\x97\x9a\x32\x84\xb4\x96\x01\xc4\xfe\x3f\x43\x6c\x84\xd2\x66\x98\x86\xe0\xb6\x81\x0b\x78\x30\xa6\xe1\x34\x5a\x56\xb3\x65\x06\xbe\x9d\x8d\x7a\xeb\xf4\x62\x9d\x11\xf3\x95\x7e\xc8\xe7\x2e\xf9\x4d\x70\xff\xd1\xee\xfc\xea\x01\x8f\x9d\xab\x06\xbe\x4c\x51\x40\xa1\xc7\xf2\x9c\x70\x5b\xd6\x41\xe4\x78\xf9\x15\x15\x8a\x9e\xf1\xfb\xce\x3f\xd7\xc7\xf7\x61\xf6\x3e\x52\xec\x1e\x8d\x45\xad\xec\xe0\x2f\x87\x78\x83\x27\x0f\xbb\x76\xf1\xed\xb0\x2c\x1f\xfa\xc4\x60\x9c\xf9\x6f\x56\xb1\x8c\xd1\x9e\xd7\xfd\x5d\x9f\xb4\x95\xdf\xc1\xf8\xbe\x95\x93\x89\x6f\x65\xa4\x7f\x0a\xde\x9c\x8d\xdf\x03\xb6\x97\x75\xbf\xa2\x82\xc1\x33\xc0\xfe\x5d\xdd\xaf\xe9\x84\x0c\x63\xf8\x98\xa4\xcd\x59\xf4\x10\x5b\x58\xa1\xbe\x11\xb9\x67\x50\xa3\xea\x64\x6c\x5f\x5d\x9b\x8e\x70\x58\x9d\x1b\xe8\xd7\x77\x6f\xf0\x2a\x72\xf0\xf2\x73\x53\x7f\x0d\xde\x26\x1f\xcc\xfb\x5d\x1f\xf6\xfb\xea\x6e\xb9\x98\xcb\x4a\xa7\xf6\x7b\xb0\x6a\x84\xf6\xa7\x09\xdf\x2f\x24\x04\x62\xe3\xd0\x07\x9e\xde\xe9\x47\xd8\x0d\x50\x7b\xf8\x00\xf2\x78\x45\x0c\xd6\x90\x3d\x9b\xaa\x2f\x5c\x82\xff\x4a\x72\xd5\xe9\x03\x65\x62\x87\x7b\xec\x9e\xdd\x24\x7e\xd0\x37\xcd\xfa\x63\x92\x2f\x79\x48\xf4\x7f\xc2\x2b\x58\x6f\x45\x62\x31\xd3\x67\x22\x3f\xf9\xeb\x3b\xae\xf9\x3b\x8d\x29\xca\x71\xda\xbf\xdb\x20\x81\x94\x77\xde\xc3\x38\x61\x85\x84\x15\x07\x1a\xe3\x9f\x05\x7e\x16\xf9\x1d\x7e\xdd\xe2\xd7\x6d\x59\x7e\x92\xc2\x60\xce\x54\xbc\xa9\x49\x46\xe5\x94\x3b\xfc\xbe\xe3\x07\xe5\x10\x05\x7e\x81\xd8\xa5\x78\xb7\xcf\x7e\xe0\x75\xbe\x1a\x87\x18\x48\xb7\x1f\x94\xce\xad\x6a\xaa\x7c\x3e\x66\xcf\xb4\x3b\x4d\xc2\x17\x3f\x27\x45\xcd\x6b\x92\x7c\x3e\xc6\x9e\xda\xaf\xac\x42\xf9\xa6\x54\xee\x87\x26\xca\x27\xa5\xb5\xf9\x6d\xe6\xfb\xa5\x5f\x48\xf5\xbd\xd2\x2f\x42\x6f\xd1\x36\x5b\x7e\x97\xe3\x63\x62\x4f\x6a\xf9\xb7\xb4\x4e\x28\xcf\x9c\x43\x39\x38\x10\x1b\x4c\xf1\x32\x0d\x9f\x3a\x6d\x39\xce\xc5\x2c\xb1\x27\xf4\xaa\x7a\xbb\x73\x36\x30\xff\x7c\xa3\x80\xf9\xc8\xa5\x72\x35\x8e\xdf\xe0\x4f\x60\x61\xe3\x80\x44\x73\x08\x4c\xb0\xad\xb1\x96\x9b\x3e\xfd\xc7\x3f\x00\x4f\xdf\xff\xfc\x67\x7a\xfa\xf2\x59\x5a\x7e\xe6\x20\xe2\x5d\xba\x51\xff\x0f\x03\xa3\xdf\xaf\x22\x48\x8e\xca\x81\x1b\x4b\xea\x70\x20\x37\x96\xd0\x7c\xf2\xff\x02\x00\x00\xff\xff\x19\x44\xe2\x82\x17\xc9\x00\x00") +var _confLocaleLocale_enUsIni = []byte("\x1f\x8b\x08\x00\x00\x09\x6e\x88\x00\xff\xac\xbd\xeb\x72\xdc\x48\xae\x27\xfe\x9d\x4f\xc1\xf6\x84\xc3\x76\x84\x54\x1d\x3d\x7d\xfe\xff\xdd\xe8\x68\xbb\x57\x96\xda\x97\x73\x2c\x4b\x47\x92\xbb\x77\xb6\xc3\xc1\x66\x15\xa9\x2a\x8e\xab\xc8\x1a\x92\x25\x59\x33\x31\x6f\xb0\x0f\xb0\xcf\xb7\x4f\xb2\xc0\x0f\x40\x5e\x48\x96\x64\xf7\x1c\x7f\xb0\x58\x99\xc8\x1b\x12\x89\x04\x90\x48\x64\xbe\xdd\x66\x45\xd9\x2d\xd2\xe7\xe9\x51\xba\xcd\xab\x7a\x5d\x76\x5d\xda\x95\xeb\xeb\xc3\x55\xd3\xf5\x65\x91\xbe\xae\x7a\xfa\xdd\xde\x54\x8b\x32\x49\x56\xcd\xa6\x24\xd0\x37\xf4\x27\x29\xf2\x6e\x35\x6f\xf2\xb6\xa0\x84\x13\xfb\x4e\xca\xcf\xdb\x75\xd3\x32\xd0\xcf\xf2\x95\xac\xca\xf5\x96\xcb\xd0\x9f\xa4\xab\x96\x75\x56\xd5\xf4\xf3\x92\xbe\xd2\xb7\xb5\xa4\x34\xbb\xde\x92\xce\x76\xbd\xa4\xed\xb6\x96\xf4\x61\x9b\xb4\xe5\xb2\xa2\xde\xb4\x94\x74\xa1\x9f\xc9\x6d\x39\xef\xaa\x9e\x5b\xfa\x55\xbe\x92\x9b\xb2\xed\xaa\x86\x6b\xff\x45\xbe\x92\x6d\xbe\x64\x80\x73\xfa\x93\xf4\xe5\x66\xbb\xce\x51\xe0\x4a\x3f\x93\x75\x5e\x2f\x77\x02\xf3\x4e\x3f\x93\x45\x5b\x52\x56\x56\x97\xb7\x94\x7a\x8c\x1f\xb3\xd9\x2c\xd9\x11\x12\xb2\x6d\xdb\x5c\x57\xeb\x32\xcb\xeb\x22\xdb\xc8\x30\x3f\x50\x7a\xaa\xe9\x29\xa5\xa7\x9c\x8e\x21\x94\x05\x0d\x35\xcb\x3b\x1d\x07\xe1\x92\x46\x9e\x77\x09\xaa\xaa\xf3\x8d\x95\xe6\xcf\xa4\xdc\xe4\xd5\x9a\xb1\xc6\x7f\xa9\xdf\x5d\x77\xdb\x00\xb5\xe7\xfa\x49\x38\xc8\xfa\xbb\x6d\x09\x14\x1c\x5e\xd1\x57\xb2\xc8\xb7\xfd\x62\x95\x73\x37\xe5\x2b\x21\xa0\x6d\x43\xb8\x68\xda\x3b\xc0\xd9\x8f\xa4\x69\x97\x79\x5d\xfd\x3d\xef\x05\x3f\x67\xc1\xcf\x64\x53\xb5\x6d\xc3\xa8\x3d\xc5\x47\x42\x23\xcf\xb8\x1e\x4a\x79\x4f\x48\x08\x6a\xe1\x9c\x4d\xb5\x6c\x05\x8b\x9c\x79\x8a\x5f\x5c\x8b\xe4\x69\x4d\x92\xe5\x6a\xbb\x6e\xda\x4f\x9a\xfa\x8a\x3f\x07\x55\x52\xe7\x34\x37\xee\x57\x5e\xd3\x7c\x68\xee\x29\x7e\x44\x00\x5d\x92\x17\x1b\xc2\xf0\x36\xaf\x4b\x46\xdd\x11\xff\x22\x7c\xd1\xaf\x24\x5f\x2c\x9a\x5d\xdd\x67\x5d\xd9\xf7\x55\xbd\xe4\x39\x38\x92\xa4\xf4\x52\x93\x92\x20\xcf\xa5\xdd\x35\x3b\x37\xcb\x94\xfe\x17\xfa\x99\x9e\xcb\x4f\xc9\x0b\x0a\x21\xd3\x95\xa4\x26\xfb\xea\xa6\xea\xab\x52\x1a\xb3\x1f\xc9\x76\xb7\x5e\x13\x3e\xff\xb6\x2b\xbb\x9e\xb3\xce\xe9\x37\x61\x40\x7e\x27\x55\xd7\xed\x50\xe2\x2d\x3e\x12\x9a\xd4\x7a\x81\xe1\x1c\xe3\x23\x49\x7e\xab\xea\xae\xcf\xd7\xeb\x8f\x89\x7e\x30\xb0\x7c\x09\x9e\xfa\xaa\x47\x67\x35\x31\xbd\xec\xcb\x6d\xc7\x88\x4e\x5f\x55\x6d\xd7\x1f\xf6\x15\x91\xda\xc5\xae\x4e\x8a\x66\xf1\x89\x88\x98\x17\x24\x96\xd2\xdb\xeb\x94\xc6\xf4\x84\xc8\xb8\xdd\xd5\x35\x8d\x22\x7d\xdd\xd0\xc8\xa8\x99\xaa\x28\xd3\x13\x40\x1f\xa4\xdb\x75\x99\x77\x04\x52\xe6\x45\xfa\x63\x9e\xf6\x79\xbb\x2c\xfb\xe7\x8f\xb2\x39\x2d\x9e\x4f\x8f\xd2\x55\x5b\x5e\x3f\x7f\xf4\xb8\x7b\xf4\xe2\xf5\x8e\x8a\xad\xab\xba\xec\x7e\xfc\x36\x7f\x91\x2e\x72\xca\xa1\xb1\xde\xa5\xf3\xf2\x9a\xd7\x0a\xb5\x95\x12\x91\xd6\x4b\x5e\x27\x77\xfd\x8a\x1b\xa4\x09\xa3\x8f\x2e\xe5\x85\xfa\x4d\xc2\x58\xa2\x85\x9c\x15\x73\x63\x4a\xe8\x10\x92\x5b\xc2\xd2\xe9\xdd\xe5\x7f\xbe\x3b\x48\xcf\x89\x33\x2d\xdb\x12\xdf\xf4\x1f\x95\xf8\x3e\xa5\xd1\x5e\x55\x27\x2f\x67\x09\x95\x35\x84\x9c\xe4\x7d\x3e\xe7\xbe\xbb\x49\xe2\x4c\x59\x43\x2e\x0f\x2b\x89\x79\x1d\xf8\x5a\xd7\x63\x75\xea\xca\x9c\x5c\x87\x54\x87\x2e\x5e\x57\xc7\x7b\x5e\xc1\x94\xee\x30\x7b\x2e\x38\xa3\xaa\xd2\xb7\xef\xdf\x9f\x9d\xbc\x4c\xcb\x7a\x49\x98\x49\x6f\xab\x7e\x95\xee\xfa\xeb\xff\x9e\x2d\xcb\xba\x6c\xf3\x75\xb6\xa8\x18\x29\x2d\xd1\x55\x4a\x58\x92\x21\xce\x92\xae\x5b\x13\x83\x29\xb8\x95\xcb\xcb\x77\xe9\x29\x7d\x52\x67\xa8\x2c\x77\xa4\x5f\x25\xdd\xdf\xd6\x8c\x28\xd7\xe0\xd5\xaa\x4c\x41\xb3\x00\x6a\xae\x87\x78\x49\x0b\xed\xeb\x2c\xfd\x71\xde\xbe\x08\xfa\x97\xcf\xbb\x66\xbd\xeb\xb5\xe4\xed\xaa\xac\x31\x51\x44\x4a\x6d\x4f\xdc\xca\x78\xff\x2c\x29\xdb\x36\x23\xbe\xd9\xdf\xf1\xf4\x68\x5f\xf6\xb5\x22\x95\x11\x29\xd7\x4d\x4f\xd3\x9f\xa2\x9c\x54\x51\xd5\x37\xf9\xba\x2a\x68\x92\x3c\x22\xe3\xb2\x48\x2c\x1a\x9a\x6f\x2e\x4d\x14\xdd\xdc\x02\x45\xb4\xc0\x88\xad\xa7\x8f\x66\x8f\xc0\x67\x1f\x1d\x3e\x9a\x25\x75\x93\x09\x13\x60\x8e\x5c\x54\x5d\x3e\x27\xee\x2c\xbb\x45\x6b\xcc\xee\x2f\x4c\x77\xd2\x15\x85\x48\x23\x08\x9e\x13\xde\x81\xc0\xf8\x99\x28\x73\x62\xd3\xe0\x25\xca\x45\xc2\xb1\x1b\xcb\x71\x74\x21\x5c\xc7\x25\x8c\xc6\x9c\xd8\x44\x1b\x55\x1e\x6d\xb7\xeb\x6a\x21\x4d\xbf\x96\x3c\x4f\xa0\xbc\x1f\x2b\x52\x42\x38\x10\x98\xe5\x05\x64\x46\xbd\x66\xae\x94\x46\xec\x1d\xe5\x57\x25\xad\xb8\xd5\x6e\x29\x7b\xd2\xba\xd9\x15\xdf\x60\x73\xb0\x99\xf3\x2c\x38\xbd\x68\xa8\xc3\xa0\x2a\x07\xe0\x9b\x38\x22\x86\xc2\x22\x40\x5b\x6e\x9a\x9e\x11\xa7\xc5\x98\xcd\xdd\x56\x94\x49\x23\xed\xf2\x1b\xda\xdc\xfa\x46\x96\x72\x41\x4b\x75\xc1\x15\xcf\x12\x62\x2b\x99\x2e\x27\xe2\x3f\xb2\xa4\x2c\x2d\xa6\x5d\x40\x6d\x76\xb4\x0a\x57\x54\x19\x23\x9e\xe5\x10\xaa\x72\xaa\x9f\x18\x12\xd5\x03\xee\x40\x2b\xbe\xa1\x3d\x93\x27\xfa\x04\x1f\xfa\x3b\xac\x9f\x7a\x95\x5f\x5f\x53\xaf\x3a\x5a\x4d\x6f\xd2\xc5\xba\xa1\xa5\xf8\xe1\xe2\x5d\xc7\x0b\x6d\x95\x6d\x9b\x16\xf2\x07\x65\x9d\xd3\xa7\x4b\x0b\x10\xcd\x10\xf5\x6e\x33\xa7\x5f\xb7\xab\x6a\xb1\x12\xb4\x73\x09\x5e\x1f\x94\x4a\x4d\xec\x3a\x9a\xc2\x83\x94\x96\x16\x8d\x80\x50\x06\x02\xe0\x31\x18\xd5\x31\xf8\x35\xd1\xd8\xae\xa5\xe5\xb4\xea\xfb\xad\xb5\xfc\xe6\xea\xea\x5c\x9a\x76\xa9\xf7\xb5\x9d\x07\x94\x81\x39\x58\xb3\x44\x54\xa7\x4d\x3d\x03\x91\xec\xda\xf5\x80\x7e\x68\xac\x96\xb3\x07\x2f\xdc\x85\x6f\xf9\xbf\x4b\x8f\x1e\xe0\xb9\x23\x59\xef\x16\xd4\x44\x38\x86\x94\x32\x4b\xd6\xcd\x32\x6b\x69\x36\x8c\x98\xde\x35\x4b\x21\xa0\x28\xc3\xb7\x74\x62\x24\xc1\xd8\xb8\x6d\x59\x6a\x23\x48\x30\x2c\x9e\x64\x5a\x24\xcd\x96\xfb\x19\xac\x92\x33\x4d\xf0\x4b\x03\x6d\xbb\x7c\xc8\x49\x94\x09\xe6\x14\xec\xe9\x1b\xc2\x9f\x72\xf3\xcb\x53\xc2\x2a\x58\x3a\x52\xaf\xdb\x66\x43\xa9\xaf\xe8\x8f\x4f\xf0\x7d\x3c\xe5\xfa\x00\x93\x17\x05\x6d\x36\xdd\x41\x7a\xf1\xea\x38\xfd\xff\xbe\xff\xf3\x9f\x67\xe9\xdb\x9e\x17\x36\xd3\xfa\x5f\x99\x46\x73\xc5\x84\x07\x25\x06\xd8\x13\x19\x3f\xe2\x85\xfa\x28\xfd\x11\xb9\xff\xa3\xfc\x9c\x93\x9c\x59\xce\x16\xcd\xe6\x05\x33\xf7\x4d\x4e\xac\x84\x73\x88\xfa\x75\x59\x5c\x96\x75\x41\x1f\x22\xf5\x69\x56\xc0\x5c\x34\x3b\x90\x01\x45\xf8\xcd\x16\x4d\x7d\x5d\xb5\x3c\x9e\x9f\x6b\xd0\x96\x89\xc5\xe9\xb1\xe4\x98\x08\x45\x28\x23\x7e\x54\x5d\xdf\x79\x50\x8c\xf4\x3d\x27\x2a\x79\x24\x42\xc3\x99\xb2\x7a\x87\xe3\x4b\x21\x6d\xa6\x82\x33\x1a\x5d\x6b\xe8\xee\x3c\xbe\x9b\xeb\x6b\xde\xf1\x6d\xaf\xd2\x16\xce\x24\x55\xb6\xad\x10\x84\x48\x7b\x0b\xc1\xfe\x44\x97\xc4\xf1\xc9\xfb\xb4\xbc\x21\xda\x65\x1e\xda\x36\xc5\x6e\x01\x7a\x65\xd8\x03\x66\xfd\xc4\x70\x3a\x5a\x69\x8b\x52\x89\xc5\xb1\x1c\xee\x1a\xf3\xb5\x05\x01\x11\xa7\x31\xd6\x4f\xd2\xe8\x0d\xed\x23\x6d\xd0\xc4\x6b\x4b\xd2\xde\x8f\x60\x47\x9d\x72\x25\x78\xe4\x0b\x9a\x70\x22\x0a\xe9\x45\x27\x9d\x92\x6c\x5a\x3c\xb4\x2a\x76\xa4\xe5\xe4\x05\xf5\x65\x7e\x07\x2e\xd6\x31\x2d\x14\xe5\x75\xbe\x5b\xf7\xbe\x5f\x83\x2d\xc9\x5a\xba\x64\x45\x2b\xcc\x9b\x2c\x30\xea\x20\x88\xa7\x1b\x96\x25\x2a\xac\x49\xda\x92\xad\x8b\xc9\x55\x34\x19\xdb\xc5\x88\xd9\x95\x98\x9e\xcc\xeb\x0d\x3a\x5f\xa6\x3e\xc4\xf9\xae\xd9\x0b\x91\xbf\x52\x6c\xdc\x5c\xa3\x55\xc0\x02\xcb\x74\x5f\x66\x89\x0a\x6d\x99\xaa\x7c\xd9\x4d\x05\x85\xca\x91\xab\x54\xa9\x6a\x20\xf3\x85\x5f\x18\x80\x35\xb5\x6e\xb2\xac\xeb\xcd\x19\x0f\xb2\x73\x0a\x95\xe0\x9c\x87\x8b\x16\x58\x90\xa4\x59\xba\xa9\xb0\x69\x28\xc1\x00\x2f\x73\x96\x75\xa8\x69\x6a\xaa\x2b\x4b\xd4\x40\xe5\xbf\xa5\x3a\x51\x66\xa6\xda\x84\x0a\xf8\x26\x80\xb2\xf0\x50\x34\x90\x44\xb0\x33\x51\x69\x43\xeb\x40\x4a\x48\xdb\x6a\xb9\x22\x4e\xdd\xdc\x1e\x08\x52\x6e\x57\x4d\xc9\xeb\xe7\xed\xc9\xf3\xef\xa4\x1f\x4b\xde\xa7\x5c\x21\xde\xe1\xf2\x1d\x11\x17\x61\x4c\xc9\x58\xba\xe0\x24\x05\x40\x8e\xf4\x16\x01\x1a\x2a\x90\x23\xc1\xc4\x31\x0d\xe5\x15\x61\x9e\x32\x09\x0f\x23\xa5\x4d\x09\x95\x86\x85\x29\xa9\xd2\x91\x2d\x1b\x28\x3d\xa6\x64\xf0\xd6\x4b\x2a\x75\xd7\x67\xcb\xaa\xcf\xae\x99\x73\x71\xc5\xaf\xb8\x02\x96\x04\x28\x27\x7d\x42\x59\x4f\x52\xe2\x7e\xa4\xc9\x15\x3f\xa4\x8f\x6f\x54\x6c\xfd\x9e\x59\x52\x46\x8b\xa8\x5a\x63\x46\x54\x95\x6a\x4b\x91\x4a\x4d\x8d\x77\x22\x60\xb7\xdb\x62\xa3\x54\x69\xd3\xa9\x24\x45\x73\x5b\xf3\xe2\x03\xeb\x25\x36\x53\x2d\x2a\xda\x30\xe6\x55\x9d\xd3\x4e\x63\xb5\x80\xa5\x3f\x26\x92\x78\x7f\x76\x05\xc0\x65\x33\xdf\x55\xeb\xc2\x00\x66\x89\x49\xa4\x24\x8f\xea\xe4\x87\xb2\xbd\x25\x55\xd2\x97\x45\xd3\xf2\x5e\x86\xd1\x58\xc1\x3d\x72\x15\x6f\x84\x22\x08\x57\xac\x54\x01\x16\xe5\x9c\x08\xc4\x68\xa0\xd9\x5f\xac\x54\x40\x02\xd9\x54\x5d\xfd\xa4\x47\x4f\x17\x3b\x6a\x8b\x66\x9e\x93\xa9\x60\x97\x1e\xbe\xa0\xff\x13\x16\xb7\x64\x03\x58\x8e\x11\xcf\x99\xa9\x64\xee\x64\x29\x46\x5d\x8d\x68\xdc\xcd\xb4\x51\x70\x30\xd6\xb0\xbf\x46\x02\xdd\x4e\x88\x96\x2d\x2e\x6b\x9a\xd6\xf2\x1b\xfa\x60\xf5\x71\xb9\xc6\x24\xe4\xbd\xea\x78\x0d\xe1\x8d\x09\xe4\x40\xd6\xcc\x35\x0d\x8d\x59\x69\x9f\x7f\x2a\xa1\x16\x7a\x9c\x4f\x49\x12\x7b\xf1\x96\xfc\xc6\xf6\xa7\x8f\xc9\x4e\xa4\xe0\x66\x5d\x38\x4d\x0d\xab\x81\xb8\x51\x19\x99\x4f\x3c\x8c\x23\xf4\x8e\xa4\xfd\xc5\x2a\x73\xc6\x2b\x46\x64\x5f\x7e\x86\xbc\x80\x2c\x6f\xcb\xe2\x55\xc2\x59\xc9\xe6\x0e\x53\xcc\x03\x3f\xbd\xf3\x33\xcc\xca\xfd\xa2\x21\x2d\x7c\xde\x30\xa6\x6f\x4a\x07\x75\x1c\xa6\xc6\x05\xa8\x2e\x12\xd6\xb5\xaa\xd8\x9a\x41\x59\x62\x40\xd1\x5c\x31\xa0\x74\x09\xb8\x9f\x5a\xde\xc0\x24\x89\x06\xd4\x6e\x30\xa3\xc9\x84\x59\xc2\x5a\x7e\x5b\x8b\x64\x1a\xca\xe9\x84\x37\xb5\xca\x7d\x4c\x0c\x2e\xea\x93\xb0\x50\x41\x24\x9b\x45\xf2\x16\x14\x79\x89\x0f\x2a\x4d\x4c\x6a\xf5\x31\xb0\x8b\x65\x46\x2f\x66\x1f\x83\xed\x46\xf9\x94\x97\x51\x56\xe5\x96\xc5\x99\x4d\x07\x42\x5b\xb3\x01\xe1\x4e\xc5\x7b\x47\x72\x3f\xc9\x0e\x40\x34\x48\x7c\xf3\x9b\xa4\x6b\x78\x09\x67\x5f\x59\xc5\xcb\x8a\x88\x0b\xe5\xe3\xdd\x53\x0c\x76\x24\x85\xf3\x60\x68\xdd\xde\x1d\xc4\x8a\xdf\x8a\xd4\xdb\x79\x49\xc2\x87\x16\x2b\x66\xa6\xb8\x33\x51\x90\xba\x89\x55\x08\x23\x23\xd6\x8d\x94\x6c\xda\xe1\xb6\xce\x3d\x14\xc6\xa9\xad\x38\x61\x0c\xa2\x56\x28\x91\x4d\xb4\x49\x08\xdb\x94\x2c\xdd\x67\x1b\x31\xee\xc9\xaf\xf4\xb4\x4c\x68\x7f\x5d\x62\x6d\x08\xf1\x3e\x67\xa3\xce\x12\x4a\x90\x52\x33\x03\x94\x7d\xc8\xd9\x15\xc2\x52\x7e\x32\x63\x2a\xf1\x9a\x5b\x18\xd9\x88\x5b\x8c\xd0\x4f\x7b\x20\x65\xcf\x6c\xa7\x10\xa1\x03\xb2\x63\x47\xfc\xc7\x23\xf1\x28\x65\xab\x68\x08\xa5\x72\xb0\x1b\x15\xc3\x33\x1b\xfa\x71\xfe\xe2\x71\xf7\xe3\xb7\xf3\x17\x8e\x59\x2f\x56\xe5\xe2\x93\x10\x67\x55\xcf\x9b\xcf\x50\xbb\x61\xfe\x21\x8d\x9f\x17\xe0\xe3\x22\x25\x35\xbc\x85\xd6\x47\xcc\x85\x8a\x11\xde\x39\x37\x9a\x33\xea\x0b\xf3\xa0\x99\x98\xdb\x4a\xa1\x7e\x4f\x8f\xb0\xbb\x31\x45\x62\x47\x31\x92\xa4\x42\xab\x6a\x4e\xfb\x14\xb1\x1b\x68\x8a\xef\xf0\xf7\x5c\x93\xcb\x62\x00\x11\x6c\xfe\xad\x63\x8e\x6c\xa5\x72\x05\xb8\x93\x00\xf5\xe3\x53\x92\xf1\xe4\xc2\x33\x0b\xfc\xad\xab\x4d\xd5\x8f\x48\x91\x59\x65\xae\x24\xad\xe6\x41\x9b\x1b\x8c\xc1\x63\x97\x36\x1c\xaa\x86\xe4\x03\x23\xcf\xdb\x9c\xd4\xcb\xef\x53\x6a\x63\xd7\xb3\x06\xc5\x46\x9b\x9e\x76\x9c\x9c\x05\x0c\x52\x2d\xf3\x2e\xdb\xd5\x3a\x4d\x65\x61\xc4\xf9\xa6\xc2\x3e\xc8\xed\xda\x12\x0a\xa0\x62\x8d\x26\x7d\xea\x66\xf0\xd9\x4c\x0d\x85\x28\xc5\x7b\x13\xf7\xa7\x62\xf1\x3b\x9f\xa2\x05\xe2\xc2\x75\x29\x18\xc2\xf8\x19\x8c\xc9\x86\x94\x4a\x8f\x2c\xd2\x4c\x3f\x51\x0a\xe6\x77\xbe\xeb\xfb\x86\x95\xab\x35\xd3\xa0\x94\xb1\x3e\x1f\x03\x10\xea\xa7\xaf\xef\x4e\xa6\x25\xc6\x92\xea\x87\x90\x2c\x3a\xf0\x11\x31\xf5\xb3\x92\x1b\x0f\x4d\x77\x72\x07\x55\x88\x55\x2e\xaf\xef\xbc\xc1\x07\x7d\xe0\xe6\xfa\xe9\x9e\x3c\x6d\xcb\x67\xbe\x2f\x6e\xfd\xa1\x84\xf6\x47\x4a\x07\x4b\xf3\x02\x99\x62\x52\xb6\x05\x6c\xfb\xe0\x42\x6d\x7d\x8e\x34\xda\x18\xb5\xc8\xe7\x55\x46\x9c\x9c\x24\xe3\x02\x58\xa6\x41\xa0\xf4\x6c\xd0\x96\x57\x6a\xc7\xe8\xeb\xe3\x1e\xfb\xad\xb2\x6f\x9a\xac\x5b\x89\x3d\xc2\xba\x97\xae\xcb\x7a\x19\x19\xf2\x70\x3c\x04\x7a\xfb\xff\xd9\xf8\x56\x67\xd0\xc0\x82\x05\xf8\xbe\xa9\x0f\x91\xe6\xd4\x0e\x2b\xad\xa6\x5f\x6b\x90\xab\x69\x9b\xdd\x72\xa5\x56\x9c\xe4\x37\xc6\xda\xc7\x44\xe7\xb5\x0c\xea\x54\xaa\xb7\x1c\x9b\x7f\x59\xdb\x0e\xde\x84\xd7\x5f\xca\x96\xd5\x5d\x00\x45\x13\xbf\x6f\x46\x62\x84\x38\x96\xee\xa5\x9d\x8b\x90\x01\x69\xf2\xf5\x6e\x7d\x90\xde\x8a\x18\xe4\xcb\x38\x55\x5b\x05\x24\x26\x71\x39\x17\xa3\xe1\x35\x45\x4e\xe3\xbb\x83\xb5\xff\x2f\xb4\xed\xd6\x38\x61\x69\x12\xca\x90\x42\xa7\xf8\x20\x50\xb6\x15\x7c\x4c\x78\x3b\x7e\x3f\x90\xf2\x79\xdf\xd6\xb4\x40\xd2\x44\xd6\xcf\xe1\x09\x92\x1b\xf3\xf9\x84\x42\x70\x51\xfa\x83\x24\x7c\xb9\xc1\x5f\x5e\xbe\xb9\x32\xe5\xff\xf2\x4d\xfa\xa9\xd4\xba\xdf\xf4\xfd\xb6\xfb\x00\xb3\x92\xd8\x88\xd8\xa0\x74\x9e\xdf\xb1\xf4\x2d\xc9\xfa\x03\x19\x57\x65\xbe\xd1\x4e\xf2\xa7\x54\x71\x44\x42\x84\x26\xf2\x27\x49\x1e\x81\xb9\x32\x81\x1c\xfa\x73\xa4\x7e\xc8\x2a\x72\xba\x60\xa9\x47\x4b\xbf\x8f\x4c\xac\xbf\x27\xf9\x7a\x4b\xea\x2a\xcb\x74\x01\x18\xac\x89\x73\xd5\x5a\x53\x80\x60\xd5\xec\x36\x44\x20\x0b\x68\xe9\x54\xe0\xe9\x61\xf6\x2c\xb0\x2e\xc7\x95\x15\xc4\x4c\xfe\x50\x85\xfc\x2d\x24\xef\xeb\xed\xaa\xbf\xdb\x28\xa2\xea\x38\x9d\x18\x33\x41\x40\x34\xf7\x50\x0e\x08\x5b\x0b\x8b\xe9\x3d\x1b\x17\x29\x81\x54\x81\xa8\xea\x4d\xfe\xf9\xa1\x82\x9b\x66\xa2\x9c\xb0\x4c\x5f\xc8\x38\xa3\x0e\x31\x5a\x3d\x04\xce\xd6\xc3\xbd\xc0\x34\xf1\x04\x52\xd5\x8b\xf5\xae\xd8\xdb\x91\x6e\x37\xa7\x85\xc4\x2a\xc6\x93\xc7\xdd\x13\xae\xb2\xfe\x44\x92\x47\xed\xe0\x3f\xc8\xef\x14\xbf\x7f\xb0\x13\xce\x8c\xaa\x15\xbd\x2b\x75\x67\x9d\x24\x40\x15\xbc\x19\x41\x7f\x9a\x79\x3e\x16\xea\x54\x8e\xf8\x61\xc8\x51\x9d\xd7\xad\x7f\xb6\xde\x40\xbd\x24\x02\x9c\xf9\x53\xd9\x8c\x05\x99\x8c\x75\x95\x3a\x54\x2e\x98\xf9\xda\x76\x0d\x51\x07\x10\x33\xb1\x99\x8f\xcb\x0d\x56\xe7\xde\xe2\x24\xae\x4d\x94\x3e\x1b\xdb\xf3\xf7\x94\xef\x69\x81\x4d\x54\xe0\xd6\xdd\xde\x82\x32\xf7\x28\x44\x23\x2f\x86\x8c\x63\x5c\x8e\xa1\x66\x1e\x4b\x0e\xe1\xe1\xdc\x84\xaa\x98\xc3\x73\xac\x39\xb3\x15\x8a\xc8\xaf\xc5\xe9\x78\xa0\x3f\xab\x3d\x43\x79\xfd\x86\x55\xc5\x6e\xc7\xfb\x16\xab\x95\x22\x06\xc6\x18\x65\x89\x04\x55\x95\x68\x62\x7f\xf5\x44\x4f\xcc\x9a\x1f\xaa\x1f\x60\x5f\x59\x75\x68\x6e\x19\x57\xac\x95\x3b\xa0\x7d\xd5\x3a\x5b\x40\xf9\xb9\x82\xe5\xfa\x75\x75\x53\xaa\x35\xc0\x19\x41\x90\x37\x4b\xd6\xb4\xfe\x59\x83\x94\x51\x89\xbe\xd0\xdc\xf0\x8a\xe2\xf6\x38\x57\xca\x89\x25\x5b\x07\xc5\x44\xa2\x76\x05\x1c\xa7\x95\xc5\x01\x1f\xed\xf5\x10\x0c\xb0\x40\xf3\xf5\x6d\x7e\xd7\xc1\x46\x66\x4c\x86\x0f\x01\xa4\x38\x73\x10\x12\x8e\x96\xe8\x55\x78\xd4\x44\xab\xc6\x30\xc1\x67\x26\xbc\x5d\x38\x19\xe6\x16\x96\x01\x70\x08\xb5\xba\xdd\x04\x1b\xb3\xee\x2e\x6c\xd5\x60\x75\x9e\x75\x29\xc9\x0e\x2a\xc2\xd9\xaf\x32\xfb\x89\xb2\x07\x2c\x38\x52\x33\x2c\xc8\x11\x0b\x16\x5c\x57\x90\xd3\xd1\xa5\xc0\x4c\xb4\xa3\xfa\x0f\x45\x01\xa9\x08\x87\xac\xcf\x7a\xcb\x09\xef\x46\x34\x2b\x76\x54\x22\xe9\x62\x6f\xe8\xfa\x6a\xbd\x66\x4c\x9b\x3f\x44\xa4\x10\x20\x17\xeb\x04\x68\xea\x56\xd5\x36\x6d\x60\x30\x0f\x51\xe8\xc9\x36\x10\xbd\xf9\x50\xa8\x84\x82\xc3\x07\x07\x6d\x5e\x77\xd7\x25\x4e\x10\x36\xe9\x35\x9f\xd9\xcf\xb4\x69\x96\xe4\xc5\xff\x61\x4f\xcb\xa2\x2b\xa2\xe9\x70\x83\xc0\xdc\x05\x13\x15\x37\x2d\x27\x54\x30\x53\xa3\x0f\xc0\xaa\xaf\xa9\xb3\x3e\x30\x99\x8d\x50\x00\x81\x3a\x3a\x6f\x9c\xc4\xc3\x75\x64\x82\x90\xf6\x41\x69\x0f\x8c\x3b\x11\xff\x82\x6c\x4e\x99\x8b\x55\xb4\x2a\xae\x90\x93\x4a\xce\x68\x61\x24\xbf\x31\xdd\x7f\x4c\x44\xcc\xcc\xdc\x31\xc0\xb1\x88\x9d\x22\x33\x22\x31\xf9\x6b\x43\x1b\x2d\xec\xf0\xff\x4e\x5f\x2c\x4c\xd7\x49\x74\xb0\x39\xb0\x8f\xa8\x67\x07\xd3\xe4\x39\x91\x12\xed\xf5\xea\xde\x71\x47\x0a\x38\xd6\x13\xcc\x27\xaf\xec\x3b\xe1\xc3\xf3\x16\xc4\x75\xa9\x5f\x91\x3d\x46\x0a\x89\x01\xee\x95\x7d\x6b\xaa\x4b\xa2\x65\xe1\x52\x3e\xe8\x67\xc2\x0a\xff\x66\x06\xfe\xcb\xc2\x2c\xce\x40\x02\xae\xcb\x9b\x2a\xd3\xbf\xe5\xcd\x02\xf8\x6d\xde\x13\xe7\xa9\x45\x41\x12\x26\x10\x16\xd5\x6c\x57\x85\x3b\x7a\xe7\x5a\x92\xdf\xcc\xed\xe5\x63\xe2\x9d\x63\xcc\x2f\x66\xca\xe6\xac\xab\xb8\x53\x41\xf2\x3f\xe8\x53\x8d\x3b\xe0\x10\xf8\x50\xed\x1c\x87\xde\x76\x52\x09\xdf\x99\xe0\x67\xa2\xc6\xb2\xd8\x52\xa6\x34\xf4\x3c\x3d\x91\x0f\xd3\xf3\x77\x15\xc6\x54\x91\xb8\xbd\xc5\x44\x05\xae\x3c\x3a\x73\xae\xd3\xea\xc9\x15\x6a\xfa\x23\x35\x51\x2a\x81\xf4\x60\x07\x4f\xd8\x2b\xf9\xdc\x23\x50\x17\xd9\x72\x0d\x3d\xb2\x0e\x0e\xd5\xf8\xa8\x88\x75\x5f\x02\xbb\x2d\xe7\x29\xdb\x92\x89\xd0\x48\x2d\xd3\x71\x6e\x72\xd2\xe8\x6e\xaa\xdc\xd9\x98\x02\x19\xc6\x6d\xb2\x66\x24\x8a\x14\x2b\x88\xec\x62\xb3\x33\x11\xc6\x26\x94\x4d\x27\x42\xef\x54\x6b\x25\x87\x33\x35\xc4\x1b\xf6\xc4\xb1\x3d\xf0\x15\x7b\x20\xc1\xa5\x60\xec\x43\xc7\x4d\xe8\x21\xd5\x3b\xfd\x4c\x76\x5b\x3e\xf5\x09\x70\xf9\x01\x09\x0e\x97\x71\x7e\xa0\x38\x01\xab\x56\xcc\xd9\x88\x04\xbc\x08\x34\x29\x3e\xfa\xd0\x75\x3b\xe1\x1b\xa7\x4b\xb8\x18\x82\x78\x8b\x0a\x78\x92\x0e\x1c\x13\x25\xa7\xda\x40\x2d\xed\x6b\xe9\x8a\x56\xd1\xba\xaa\x3f\x75\x3a\x53\x8c\xa7\x50\x89\x84\xe5\x8b\xe8\x7b\x57\xca\xd9\x08\x3e\xc7\x9e\x58\x76\x3c\x86\x13\x41\xcf\x61\xec\x10\x4d\x0e\x0a\x8f\x84\xc7\x2c\x56\x4d\xd3\xa9\xb5\xd4\xb3\x22\x4e\x83\x31\x44\x39\x91\x62\xce\x41\x28\x62\x8f\xec\xc0\x12\x8b\x4e\xc9\x3d\xd3\xe3\x00\x0f\xad\xd4\x7f\xac\xc7\x04\x47\x56\xa7\x1c\x48\x2a\x9c\x2c\xf8\xac\xda\x88\x9b\xe3\x07\x3b\xae\xc4\x9c\x38\x19\x1e\xd9\xb3\xb8\x3f\xc3\x89\xd4\x76\xed\x90\xe0\x81\xf9\xb4\xd9\x0a\x4f\x9d\x64\x86\x1c\x93\x68\xd6\x91\x04\x65\xe3\x70\xf9\x8c\xbc\x20\xff\x3d\xce\x07\x9d\x9a\xce\xcb\x20\x1b\x80\xa8\x66\x1b\x41\x4e\x0a\xaa\xd6\xd6\x5e\x21\x75\xd0\xfb\x11\x51\x5b\xb9\x5b\x76\x91\x0a\x06\xae\x64\x58\xcc\xcc\xed\x88\x2d\xab\x72\xd8\x08\xff\x10\xf1\x91\xa9\x71\x52\x29\x55\x04\xeb\x5e\x1b\xfd\x57\x57\xbd\xaf\x59\xa4\xfc\xce\x09\xf7\x47\xc2\xdb\xf8\x1c\x42\x9c\x2b\x5d\xbe\xfa\x57\x46\x2c\xb0\x34\xa7\x8b\x90\x49\x6e\x5b\xa2\x15\x92\xc1\x63\x66\x39\x62\x8f\x11\x2b\x04\x27\x6c\xe0\x42\xe0\x39\x20\x8d\x5b\xab\xe2\xad\x04\x5f\x96\xe2\x6c\x39\xb4\x02\x58\x50\xd5\x64\x5b\x08\x96\x2b\xf4\xef\xfa\x48\x3f\x84\x71\xc9\x58\x4f\x34\x61\x90\x6f\x83\x91\x6c\x9b\x90\x89\xd1\xb0\xc7\xd3\x4d\xe9\x78\x7b\x55\x8b\x07\x87\x3b\x53\x8c\x18\x48\x7a\x02\x8e\x42\xe4\x20\xf6\x6f\xe3\x27\x3f\x0d\x5b\xf7\x74\xf4\x73\x6c\x39\x97\xb1\xc5\xab\xe8\x9b\x84\x7a\x04\x1a\xf7\x27\xb3\x05\x88\x27\x36\x6c\x31\x54\x08\x21\xa6\x13\x97\x9a\x45\x76\x7d\x98\xe8\xbf\xc6\x96\xcf\x22\xc1\x7f\x81\x19\x3f\x6a\xca\x9b\xf1\x5d\x27\x07\x2b\x6c\x34\xca\xf1\x52\xa3\x0c\x48\x27\x4a\xcb\x81\xcc\xa1\xd4\xec\x44\x0f\x6e\x45\x94\x0a\x46\x0f\x25\x41\x40\x51\x4a\xc0\xee\xc1\xae\x50\xf0\xa3\x82\xf3\xa4\x68\x18\xdd\xc8\x46\x1c\xcf\xf9\x11\x54\x28\x42\x8a\xc0\x42\x58\xa3\xfd\x9e\x85\x6f\x5b\xeb\x24\xd8\x12\x1e\xe4\xdc\xdf\xf9\xb4\x8d\x4e\xe8\x0e\x54\x6f\x59\x55\xcb\x15\x8d\xab\xda\xf0\x71\x37\x28\xc9\xce\x54\xbd\x5a\xc9\xbf\x88\x45\x35\xcb\x9a\xed\x46\xdc\x82\x38\xb1\x39\x9b\xef\x8f\x5d\xdf\x36\xf5\xf2\xc5\x49\xc3\xfa\x1e\x9b\x53\x78\xff\xfb\xe9\xc7\x6f\x35\x9d\xd8\x30\x4f\x21\x7b\x3c\xbe\xae\xfa\x37\xbb\xf9\x93\x2e\x5d\xb2\xeb\x2e\xce\x6d\xf2\xc0\xa1\x57\x1d\x1d\xc4\xc3\xf0\xb6\x76\x68\x81\x7b\x2f\xad\xf1\xae\x59\xd3\x02\x89\x8b\x34\x9b\x8d\x4c\x2f\x31\xb0\x8d\x40\xa2\xff\xf0\x8d\x28\x6b\x60\xae\x6c\x15\x3f\x54\xe1\xcc\x91\xb8\x9f\x1f\x9d\x36\x13\x22\x23\x23\x85\x8a\x71\x0c\x8c\x93\xdb\xba\x0f\x36\x22\x58\x28\xac\x14\x44\x84\x71\x29\xcc\x23\x9b\x7c\xc6\xe6\x11\x68\x12\x5c\x85\x15\xa7\x92\xd4\x0f\x11\x95\x38\xcd\x5a\x14\x21\xa1\x64\xeb\xb3\x10\x56\x40\xbc\xbc\xf7\x98\xed\x14\xc2\xb4\xeb\x1e\xc8\x75\xb0\xbe\x95\xa3\xc9\xd8\x95\x9f\xd9\x00\x02\x8e\xa6\x18\xf1\x3c\x6d\x08\x13\x71\xb5\x52\x78\x9a\xf5\x22\xe4\x66\xe2\x52\x25\x1c\x4d\x08\x92\xd4\x1d\xe6\xd7\x5f\xc8\xcd\x46\xed\xfa\x81\x5b\x73\x5f\xc0\xd1\x30\xa6\x23\xa0\x83\xc6\x02\x93\x86\x4e\xd4\x3b\x35\x60\x20\x83\x9d\x7b\xbd\xea\xf5\xbe\xd1\x83\xb0\xd4\x12\x31\x27\xa4\x6b\xf5\x65\xb4\x94\xb9\x13\x70\xc7\x14\x07\x21\xd8\x44\xfe\x5b\x5a\xe4\xc4\x07\xfa\xe6\x13\x91\xd2\xb8\x08\xd2\xf7\x15\x72\xfc\xc5\xf4\x17\xe5\x2e\x47\x9e\x39\x0c\x35\x1a\x3d\xc7\xde\xcb\x60\x02\xbe\xa2\xb5\x3a\x27\x2d\x31\xe8\xc0\x45\x9e\x5d\x59\x0a\xe1\x23\xca\x06\xd4\x13\xc9\xad\x7f\x92\xd8\x6a\x06\x82\x8e\xc8\x1f\xfa\x3b\x9c\x96\xa8\xfe\x60\xb1\x10\xf7\xde\xd5\x01\xfb\x14\x72\xc8\x04\x15\x6e\x90\xe7\x24\x70\xc0\x0f\xf3\x48\x2a\xbc\xe2\xec\x4e\x9d\x9a\xd5\x1d\xc0\x8a\xbc\xd6\x44\xac\x01\x00\x0a\xc2\x3b\x87\x08\xfc\xf2\xb6\x08\xab\x45\x9d\x47\xd4\xc5\x12\x73\x40\x54\x67\x0c\x73\x25\xce\x24\xe9\xd1\xf9\x5b\xda\x30\x5c\x83\x56\xe9\xcf\xf9\x62\xa5\x13\x78\x2b\x86\x08\xb8\x9c\xac\xd7\x43\x8e\xeb\x84\x7d\x29\x6e\xbe\xe7\x28\x89\x25\xee\x06\x35\x1a\x90\x0c\x26\xce\x17\x1c\x97\x5d\x60\x9c\x91\xd6\xd0\x93\xe1\x5e\xe5\x86\xfa\x0d\x61\xd6\x99\x08\x79\x69\x6d\xef\x98\xfb\x07\xce\x63\xb9\x60\xe8\x16\xfc\x7b\xe0\xb5\x46\x90\x38\xe4\x4d\x79\x09\xb7\x8e\x7f\x58\x87\x95\x83\x84\x53\x19\xb2\x91\xc9\xc9\xf4\x4c\x65\xb2\xd8\x14\x67\xd9\x5a\x3d\xf1\x98\x1f\xe2\x33\x4c\xf8\x5e\xb7\xbf\x87\xcb\x84\xa3\x0a\x48\xf9\x7c\xb2\x59\x47\xd1\xd2\xf4\x80\xdf\xa4\xb2\x0d\x8a\xa3\x04\xb7\x22\xda\x8a\x52\x44\xe0\x22\x4d\xb5\xdc\x96\xeb\x35\xad\x07\x6d\xdd\x9f\x3f\xea\xd0\x23\x97\x02\x05\x0a\x54\xd0\xd2\xcb\xb6\x82\x8a\xd0\xba\x66\x95\x11\x04\x2d\x37\x9c\xe6\x8b\x7d\xc0\x76\xeb\xe3\xa3\xf7\xef\xcf\xae\xfc\x26\xcd\xeb\xa0\x2e\x48\x94\xf8\xc6\xf9\xef\x8d\xfa\x65\x5e\x7c\x6e\x02\x63\x08\xef\x47\xa8\x25\xf6\xc1\x85\x6c\x2a\xf0\x76\x58\x36\xe0\x3d\x0d\xf7\xc5\x78\x79\xd4\xff\x62\xdf\xfc\x25\xbf\xb1\x74\xf3\x31\x31\x1b\xf5\x19\xff\x4d\x42\x33\x7f\x70\x3c\x82\xa5\xe7\x4f\x51\xfc\xcd\x03\xea\x40\x53\x8c\xcc\xfe\x60\xd2\xbb\x1c\xaa\x16\xe1\xbe\xc1\x5e\x71\x9d\xe2\xe8\xfa\x80\xad\x98\x4d\x8b\x05\xc3\xc8\xdd\xd5\xd5\xdf\x76\x10\xcf\x70\xe2\x3c\x4b\xd8\x2d\x74\x5e\xad\x65\x43\xf9\xc5\xfd\x90\x74\xfe\x1a\x78\xc7\x07\x8d\xd3\xaf\x1f\xbb\x2d\x7b\xd5\xd2\xde\xd0\x3d\x7f\xb4\xab\x52\x36\xec\xb1\x83\xd8\xa3\x17\xa4\xbf\xf0\x19\x34\x4d\x1f\x41\xbc\x18\x55\xc7\x17\xe0\x16\x62\x0f\x74\xde\x21\xa0\x5b\x4d\xe7\xd5\xc2\xf2\x6e\x64\x84\x14\xc4\xff\x81\x36\xf9\xb6\x9d\x1f\xc7\x53\xd5\xba\x09\x47\x58\xbb\x37\xf9\x7a\x17\x5b\x49\xb8\x75\x2e\xd3\x3d\x4b\xe0\xfa\xef\xcb\xc2\x5b\x08\xf7\x37\x39\x83\xa8\xe1\x27\x20\xad\xbf\xff\x1e\x18\xdf\xf4\x64\xc1\xef\x9b\x04\x3d\x51\xbb\xf1\xf0\xe2\x1f\xf2\xcc\x27\x9f\xf3\xe0\x98\x8f\xd4\x89\xd9\x08\xee\xf0\xe4\xeb\x5e\x6c\xc6\x69\x30\x9b\xcc\x5a\x30\x88\xd0\xd6\x7a\xa7\xa7\x73\x8e\x83\x75\x8b\xb6\xc2\xbd\x02\x49\xe7\xdb\x9f\x69\x70\xf3\xd3\x25\xfa\x76\x2f\x89\xee\x09\x45\xb3\x65\xd5\x93\x0a\xcf\xb7\xd8\xe0\x87\x9e\x10\xdb\xa0\x9d\x0c\xf7\x46\xe5\xcb\x52\x46\x45\x79\xd3\x17\x58\xd8\xca\x58\xd2\xd4\x15\xc0\x1f\xfa\x7b\xa2\x94\x02\xda\xad\x55\x3e\xb4\x68\xb2\xaa\xae\x78\xe1\xbf\xa5\x3f\xb4\xa9\x8b\x02\x10\x93\xa9\x88\xb7\xa8\x44\x8d\x3c\xa2\x7d\xbb\x7a\xd4\x8d\x4f\x67\x45\xfd\xf7\x82\x79\x51\xd7\x75\x35\xc0\x03\x6d\x48\x48\x5f\x22\x41\x6f\x8b\x12\xe3\xdb\xd5\x62\x04\xa6\xbf\x51\xa2\xa1\x3b\x90\x63\xe4\xf2\xd0\x61\xdf\xe6\x8b\x4f\xcc\x53\x88\x54\xca\x96\x94\x01\xf8\x2e\xe5\xbc\xed\xa5\x44\x5f\x4b\x42\x80\xd8\xfa\xd5\x31\x48\x8a\x59\xe5\x15\x2b\x0e\x37\x22\x80\xc9\x3d\xd3\xb7\x96\xf2\x94\x35\xce\x67\x06\x68\xfa\xa2\x83\x53\xab\xc7\x20\xdf\xfa\xa9\x07\x77\x7a\x72\x4d\xeb\x90\x37\x0f\x36\x4b\xe0\x1c\x8d\xd0\x55\xf0\xe9\x50\xbe\xee\x52\x55\x73\xed\x40\x3c\xb9\xe5\x63\x66\xb1\xfd\xff\xaa\x9f\x30\xfd\x2f\xf3\xbf\x4b\xea\xa5\xfb\x01\xc2\xee\x94\xd4\x3b\xb5\xe3\x13\xee\x17\x2b\xf5\x0e\x6b\xae\x33\xb9\x7f\x86\x8d\xfa\xca\x9d\x47\x32\x97\x00\x1c\xcd\xe6\x26\xff\x5c\x6d\x76\x9b\xd4\x01\xa2\x28\xd3\xfe\xe3\xf8\x84\x61\x36\x7d\x4e\x30\x3c\x93\xfe\xfa\xe3\x82\x61\x0d\xf7\x9f\x1a\xb0\x1b\x58\xc6\x87\x6d\xc6\x4a\x22\xc7\x8f\x44\x6f\x12\xdb\x8d\x4c\x77\x95\x58\xae\x64\x86\xb9\xfb\xb9\xb2\xd9\x9d\xf2\x98\x51\xc2\xa3\x77\x4e\x8c\xee\xd1\x0b\x99\x74\xe3\x92\x56\xab\x92\xff\xa9\x5e\x66\x0e\xe8\x5f\x21\x66\xc2\x0a\x3d\x2d\x1d\xe3\x56\x94\x27\xa5\x09\xa8\x68\x23\x55\x61\x36\x0f\x6e\x56\x7d\xfb\xfa\xed\x15\xee\x55\x11\x4d\x8a\x51\x4f\x2f\x8f\xb1\xb3\xf3\xcc\xd5\xc9\x7b\x6c\xd5\x75\x22\x7b\xd5\x15\x10\xcf\xfc\x6f\xc2\xec\x27\x96\x02\xad\x2c\xa6\x00\xab\xcd\x7b\x5a\xb3\xa3\x96\xba\x59\xbf\x95\x44\x2d\xc8\x89\x30\x41\xc4\x67\x6a\xe6\x63\x96\x87\x57\xfa\xac\x5a\x77\x7c\xea\xa7\x2d\x3c\x39\xd5\xa5\xa6\xfc\x5d\xef\x85\x37\xd7\x89\xb0\x68\x4b\x57\x86\x7d\xed\x38\x3f\xae\x64\xf1\x65\x92\x98\xe5\xe3\xfe\x78\x1e\xce\x7b\xe8\x3c\x49\x0b\x85\x85\xa4\xed\x5d\xc6\x36\x7e\xc8\x45\xdb\x3b\x9f\x10\x08\x90\x94\x41\xe8\x0c\x80\x9d\xdf\xc9\x39\x66\xf9\xff\xfe\xef\xff\x73\x78\xcc\xc3\x3e\xee\xdb\x35\x7d\xa9\x7c\xce\xf0\x32\x0d\x52\x41\x7a\xf6\x1f\xa4\x67\xdd\xaa\x93\xc9\x07\xf9\x4a\xec\x37\x58\x01\xe5\x77\x6a\xd2\xc7\x47\xa2\xbf\x98\x23\x24\x7a\x1d\x9e\x59\x41\xc2\x4a\xae\x92\x0d\x29\xb8\xe1\x16\xf5\xb7\x5d\xb5\xf8\x94\x89\x65\xe6\x79\xfa\x9f\xfc\x2b\xc5\x15\x6b\xdd\xa5\x99\xf3\x3b\x36\x0e\xe2\x1c\xec\x05\xa1\xc7\x36\xb6\x36\xbd\x89\xe1\xd9\x7e\x1e\x4b\x1d\x77\xc6\x78\x0d\x90\xef\x6d\x25\xdb\x1d\xbb\x55\x31\x41\x58\x6b\xe7\x94\x82\x3b\x70\x9c\x28\xfc\xdc\xd5\x80\x99\x1d\xd5\x81\xe6\xa9\xbb\x72\x25\x72\x52\xb8\x42\x56\xe0\x4d\x4b\xdc\x65\x4e\xdb\x85\x29\x3a\x89\x7a\x48\x1e\xf3\x95\x32\xb7\x37\xe9\x9e\xd4\xb7\x25\x54\x39\xfa\x93\xd0\x96\xc7\x9e\x78\x7a\x7e\xcc\xd7\x82\xfb\x1c\x07\xad\x48\xb7\xd3\x63\x3e\x7e\xce\x97\x5a\x11\x74\xb8\x97\xfa\x99\x50\x3a\xff\xbe\xa2\x3f\xa3\xdb\xf9\x7c\x97\x7f\x7c\x87\x7f\x9d\xcf\x4b\x24\xbf\xc3\x07\x11\x3f\xed\xba\x3d\xcd\x88\xec\x41\xf6\x23\x61\x94\x54\xbd\x10\x22\xbe\x12\xbd\xf2\x22\x27\xce\xf2\x99\xe0\x0c\xad\xcd\xf9\xdc\xf7\x22\xbf\x95\x9f\x84\x2e\x8d\xe9\xf0\x46\xbe\x24\x19\x37\x03\x04\x14\x17\x03\x1c\x3c\xc4\x74\x5d\x0d\xe7\xf6\x2d\x59\xec\xe7\xb9\x66\xd9\xcd\xa6\xc1\x0e\x82\x28\x23\x95\x0c\x91\x3c\x49\xa2\xbe\xad\x13\xeb\xf4\x6c\xdc\x79\xcb\x19\x5c\x18\x48\x17\x83\xfc\x6b\x31\x50\xbc\x62\xf3\x84\xa5\xe5\xd8\x09\x52\xf3\x05\x74\xe9\x1b\xde\x7b\xd1\xb7\x53\xf9\x72\x39\x85\xf8\xf3\x9e\x40\x86\xd1\x34\xbb\xdd\x71\xc6\x7f\x5d\x2a\xd1\xb4\x4a\xaf\xf4\xd7\xdd\x94\x90\x78\x1e\x6c\x99\xc0\x5c\x06\xc9\xb3\xe1\xfc\x05\x59\x35\x23\x6b\x8e\x53\x40\x5a\x9e\xc8\x0f\xb3\x17\x34\x67\x6d\xe6\xca\x1f\xf3\xcf\x74\x3d\xaa\xc5\x11\x44\x48\x0f\x83\x66\x42\x18\x6a\x6a\x12\x4c\x9a\x0b\x21\xa5\xc5\xcd\x14\x30\x69\xa3\x75\x04\x7b\x46\x09\x21\x39\x46\x15\xb3\x1e\x35\xa8\x19\xaa\xd5\x34\x3c\x6d\xb2\x7c\x01\x0f\xca\xa5\x7e\x8e\xfb\x19\x00\x49\x37\xf3\x09\x50\xb6\xf1\x79\x38\x1a\xf8\x10\x48\x8d\xd0\x8e\x67\x0d\x67\xcf\xcf\x0f\x4d\xed\x70\x82\x24\x33\x23\xc9\x77\x51\xba\xbb\x40\x00\x82\xfc\xc2\x71\x5d\xa2\x66\x5c\x65\xda\x58\x54\x1f\x10\xda\xe7\x73\xca\x26\x79\x8b\xb1\xe9\x0a\x33\xae\x7c\x96\xa0\xce\x32\x95\x21\x59\xcd\x51\x95\x61\x1e\x89\x5a\x99\x08\xee\x82\x08\x27\xc4\xaf\x27\x4a\xdc\x4b\x51\x43\x98\xbd\x35\x8f\xe8\x46\x4b\xde\x33\xbd\x1e\x82\xe3\x59\xec\xaf\x7a\x4f\x39\x95\xf5\x20\xe1\x8d\x73\x66\x7c\xcb\xcc\xf1\x5c\x0e\x3d\x20\x3f\x26\x41\x3b\x8d\xb1\x43\x6a\x11\x4b\x03\xae\xab\x85\x1a\xfc\xa6\x0a\xc9\x2c\x17\xd9\xfc\x4e\xcb\xc8\x3c\xe3\xf2\xee\x9e\x22\x1b\x96\xfe\xa1\xfc\x6a\x91\x53\x97\x30\x51\xa4\xd3\x50\x02\x7c\x97\x7f\x9c\x33\xe3\xcd\x0c\xbe\x4c\xcc\x9b\xba\x49\x10\xa6\x52\x80\x9c\xe1\x63\x0a\x44\xcc\xe0\x6a\xc8\xe2\x9d\x43\xae\x87\xd8\x41\xfc\x64\xc3\xec\x16\xe6\x4a\xbc\x83\x93\x58\xfb\x05\xe5\xd8\x6d\x98\xf9\xaa\x9c\x7a\x9c\x36\xf0\xe5\xc5\xcf\x7b\xda\xf1\x05\xa4\xa1\x51\x09\x5e\x49\x98\x05\x02\x91\xef\xf4\xf1\x6f\xdf\x7d\xec\x78\x1a\xfc\x71\xd2\x6f\x7f\xfe\xd8\x3d\x7a\xf1\xf8\xb7\xef\x3f\xe2\x1c\x69\x54\x38\xbb\x66\x43\xea\xb8\x06\x14\x34\xe8\x6d\x5b\xde\x54\xcd\xae\x13\x19\x0f\x9f\x9e\x3f\x7c\x96\xa9\xf8\xdc\xc7\x4b\xdc\x85\x20\x18\xac\xf0\xc2\x65\xc5\x2b\xbc\xde\x6d\x32\x1d\x63\x27\x1c\xc0\x7e\xb9\xe2\x86\x81\x2c\xe7\x26\x7f\x77\xbf\x79\xb8\x55\xc1\x83\xa5\xce\x9b\x11\xe5\x4f\xf2\xeb\x05\x06\xc2\x43\xff\xdd\xb5\xd4\x04\x67\x50\x57\x12\x95\x81\x25\x76\x77\x16\x76\x57\xf6\xb3\x98\x2b\xe1\x87\x75\x39\xce\xd2\x5e\x78\x10\x9d\x37\x78\x4b\x87\xe0\x6d\x09\xc4\x18\xdc\x05\x7e\x0e\x32\xef\xab\xac\x8d\x0a\x28\xab\xf5\x54\xa2\xa0\x03\x5c\x2b\xa6\x64\x1b\xfa\x3a\x34\x49\x7b\xae\x0e\xfb\xf9\x95\xb5\x88\x3c\x41\x42\xef\xb5\xab\x47\xcd\x16\x85\x88\xda\x32\x54\xf5\xb4\x15\xe8\xaf\x6c\x62\xdb\x68\x54\xb3\x73\x7c\xf8\x96\xed\xfe\x28\x64\xa4\xe3\xe0\xa7\xa3\xd4\xc8\xb4\xaa\x89\x76\xd7\xef\x1a\xaa\x17\xf8\xb7\xdd\xef\xe3\x33\x3e\x4e\x8a\x40\xab\x3a\xb3\xeb\x15\xaa\x83\x10\xeb\x64\xef\x48\x19\x1f\x11\x15\x5f\x92\x56\x6b\xfd\xde\xeb\x97\xd1\x01\xb0\x5d\xe7\x94\xd3\x7f\x9e\xd6\x70\xed\x96\x05\xec\x57\x3f\xd3\x1f\x37\xd6\x81\x97\x95\xf5\x8f\x5b\xa1\xee\xd3\x1f\x4b\x92\x5d\xd2\x96\xa0\xdf\xc5\xe3\x7c\xc2\x5d\xe3\x77\x79\xfc\x1a\x02\x88\xf5\xfc\x71\x31\x90\xd4\x24\xdb\x53\xba\xae\x65\x4e\x18\xec\x43\x02\x39\x31\x18\xc9\x18\xb8\x27\xc6\x99\xee\xb6\x8f\x74\x10\x77\x7e\x2c\x0e\xc7\xb8\x16\xf5\xc4\x03\xa8\x33\xdf\x4f\x82\x4d\xfb\xb5\x88\xd4\x11\x9e\xcc\xb0\x0c\x1f\xfa\xb2\xb0\x67\x42\x70\x58\xa3\x75\xef\x3f\x9b\x99\x6e\xdc\xeb\xd8\xd2\xd7\x07\x0e\x81\x03\xc6\xb9\xcd\xdb\xbe\x5a\x54\xdb\xdc\x31\xcf\xf3\x20\x25\x11\x95\x2b\x90\xde\x43\xd5\x4b\x33\xf9\x1c\x20\x27\x1a\x16\x27\x28\x55\x51\x38\x45\x3d\xce\xba\x69\x38\xc3\x98\x01\xf7\xb7\x4d\xea\x14\x42\x44\xf2\xe3\xfd\x25\x4f\xb9\xb0\xdd\xd0\xc4\x3a\xd2\xf2\xb3\x41\xb5\x08\x17\xf0\x1c\x9e\x9e\xc3\x06\xb5\x85\xe7\xa9\x7e\x69\x7e\xa4\xab\x0e\x75\x54\x1b\x79\xc3\x26\xbc\xdd\x1a\xd8\xc1\x19\xb8\xfc\xb8\x96\xd3\x5b\x03\x42\x38\x35\x96\x85\x7c\x5b\xc1\xfe\x20\xc1\xd6\xd4\x23\x87\x73\xe7\xe5\x22\xe7\xe8\x5f\xe8\x33\x8f\x75\xc5\xe1\xdd\xfc\xe8\x09\x84\xc3\xb2\x58\xfd\xec\x87\x1e\xc6\xb1\x63\x6e\xe8\xaa\x37\x3b\xcc\x00\x53\xf3\xb2\xbf\xc5\x7d\x13\xb8\xc8\x30\x72\xe5\xc8\xa0\xfb\x21\xdc\xe3\x89\x31\x7e\x8b\x36\xbe\xe5\x8d\xbe\x50\x26\xf9\x27\xfc\x10\x56\xa9\xa8\x1c\xa8\x01\x13\x64\x00\xce\x60\x93\x7a\x0b\x7a\xa2\x11\x6f\x4a\x56\x69\xb9\xa1\xc2\x34\x53\x61\xd9\x3f\xb2\x45\xc1\x78\x32\xbe\x69\x2d\xb0\x0b\x8c\xa6\x7f\xef\xd2\xb5\x7e\xd4\xa4\x32\x80\x35\x23\x69\xff\x5a\xf5\x54\xfa\xdf\x3e\x1a\x8d\x92\x12\x91\x85\x7c\x17\xf4\xe9\x7f\x46\x50\x43\x85\xdc\xe7\x89\xdd\x1f\x04\x55\x9a\x67\x6c\xa1\xf9\xba\x5f\x13\xa9\x08\x6a\x9c\x05\x5c\x32\xf4\x84\x37\x9c\x49\xea\xf5\xb6\x6c\x99\x65\x28\x36\xdd\x41\xe7\x2c\x42\x0d\x84\xe3\xd6\xb7\xc4\x54\xe3\x72\xae\x46\xd5\x3a\x1e\xa1\x30\x31\x8b\x90\x2a\x38\x28\x1c\xad\x0f\x3b\xde\xa6\x5f\xee\x20\x6b\xba\x2e\x85\x2d\x76\xfe\x92\x05\x63\x91\x0a\xc1\xea\x16\x70\x3e\xeb\x7b\xd5\x65\x70\x6a\x13\x7f\xfc\x2b\xf5\x54\x5b\x57\x8b\x3e\x75\xe9\xd4\x9c\xdc\x72\x90\x30\x45\x4b\x09\xfa\xe4\x22\x23\xd2\xc6\xda\xad\x10\x46\x86\x01\xae\x89\x4b\x6d\x1a\xc8\x7f\x8e\x45\xe4\x75\x86\x03\x1c\x0c\x35\xb2\x13\x47\xc3\x50\xa3\xb1\x22\x64\x10\x1c\xc6\x55\x05\x9b\xfc\x97\xd5\x26\x1e\x04\x53\xf5\x39\x16\x20\xb7\x80\x78\xc5\xdb\xb8\xbb\xfd\x6d\x0d\x23\x1c\x0a\x3d\x6c\xf2\x5a\x4e\x64\x2b\xbe\x1f\xc4\x5a\xb6\xdc\x36\x86\x7f\x58\xbf\x9a\xa8\x59\x6a\x1b\xb0\x14\x10\xcf\xd4\xca\x06\xc1\xee\x6a\x5d\x80\x28\x05\xdb\x23\x93\xf8\xef\x6a\x27\x7e\xd2\x3b\x22\x55\x42\xf6\xc7\xf1\xf1\x50\x43\x96\x55\xcb\xf6\x1e\xa1\xed\xe9\x9f\x1e\x17\xcf\x64\x11\xc3\x4f\x6c\x74\xba\xc6\x89\x32\xf0\x70\x23\x65\x2e\x5a\x75\xb8\x9b\xcf\x24\xc3\x1b\x05\x03\xd1\xf7\xec\xf7\x24\xb0\x09\x06\x7b\x99\xd7\xdc\x83\xec\x09\x33\x43\x90\x3b\x6d\x6a\x18\x02\x14\xde\x80\xf3\xb8\x8b\xda\x6e\x32\x5a\x1a\x99\xea\x81\xb4\x9d\xf0\x42\xe1\x5f\xc3\x1e\x98\xfe\x33\xac\xd9\x69\x12\xf1\x80\x48\x00\x98\xf3\x16\x22\xb7\xce\x85\x45\x07\x66\x50\x22\x07\xbd\x32\xa4\xfe\x10\x2a\x00\x44\xd5\x0f\x38\xfc\x24\x72\x4c\xfa\xc3\x2d\xe5\x30\x63\xe2\x8c\x37\xcc\xf5\x63\x3e\xa1\x01\xb3\x11\x31\x7d\x6a\x31\xe7\x9e\xc5\x83\x2c\xc5\x57\x9f\xff\x86\x19\x2e\x4a\x90\x56\x95\xc9\xcc\x6b\x8d\xa8\x5c\x53\x7c\xd4\x9a\x03\x77\xc9\xf7\xc9\x1d\xfd\x3b\xdc\x6c\x0e\x8b\xe2\xc9\xc4\xa8\x03\xf9\xc9\x0d\x7b\xe0\x3d\xa8\xa6\x8b\x01\x97\x0c\x6a\x0a\xc4\xd1\x69\xdc\x31\x40\x34\x4f\x1f\x78\xef\xe7\x7d\x9a\x85\x8e\xc2\x63\x4e\x68\xd7\xcf\x5e\xc7\xfc\xbf\x21\x6e\xe7\x7d\x92\x78\x41\x8b\xbb\x65\x38\x96\x81\x28\x1f\x64\x0d\xee\xb8\xdf\xdb\x41\x77\x5a\xa3\xe2\x1c\xf1\xee\xcd\x1e\xa4\x48\xe4\xc9\xbd\x28\x09\x44\x68\x8f\x56\x27\x46\x4f\x00\x4e\x0b\xd1\xbe\xf5\xff\x4a\x41\x7a\xaa\xf9\x29\x32\x78\x40\x94\x4e\x6e\xab\x4f\x15\x15\xf8\x95\xfe\xe0\x7b\xa6\x51\x09\x52\x1f\x85\x80\xda\xe5\xec\x6f\xa2\x7c\x1b\x2b\xe7\xc0\xfe\x4f\x7c\x1a\x86\xd2\x54\xc2\x3d\x8a\x0f\xda\x6e\xcd\x47\x38\x9f\x64\x37\x6d\x16\x3b\xa8\xec\x77\x7a\xaf\xe7\xaf\xb8\x64\xd3\x90\x50\xb7\xd2\x38\x81\x10\x99\xab\x5e\x89\x6a\x26\x0d\x2a\x8d\xe3\x86\x5f\xa6\x21\xb9\x75\x91\xf7\x88\x5b\x4b\xe9\xd8\x3d\x05\x3c\x0c\xda\x8d\x04\x15\x93\x35\x5d\x85\x64\x0f\x2f\x77\x40\xc2\x5a\xdf\x6b\x24\x39\xc9\x37\x8f\x06\xd5\xe7\xfd\x11\xc3\xaf\x88\x44\x99\xb3\x7c\xcc\x5e\x76\xec\x11\x8d\xf9\x56\x3b\x99\x67\x10\x3a\x0e\x04\xde\xd2\x96\x58\x31\x0d\xda\x80\x0f\xab\x36\xc0\x44\xc1\xdc\xb9\x4b\x99\xa0\xcd\x58\x80\x72\xc4\x8c\x01\x0e\x4a\xe7\x94\x4c\x83\x9f\xa8\x1a\x19\x8d\xc7\xe7\x0d\xc7\x23\xae\x67\x11\x88\xfa\xa8\x4d\x43\xf1\x65\x8c\x45\x99\x7d\x67\x52\x42\xe8\x9e\x86\x69\xe7\xbe\x89\x60\xca\x4a\xbc\xca\xa5\x2e\xdc\x0c\xaf\xf7\xb2\xed\x11\x5b\xc6\xcd\x50\xa6\x7b\xa8\xdf\x89\x41\x48\xa8\x6a\xe0\x63\x1d\xf9\x57\x77\x41\x1d\x9d\x4e\x73\x17\x20\xd1\x6e\x13\x99\x2f\xb0\xfe\xe4\x98\x57\x53\x01\xbb\x2d\x6d\x26\x93\x85\xbb\x82\xf2\xe5\xb3\x82\x20\x5d\x2a\x50\x07\xbf\xf7\x80\xcd\xc4\x49\x4b\x83\x51\xec\x03\x92\x58\xa6\x4a\x49\xfb\x80\x10\x39\x5b\x1c\x7e\xf6\x81\x90\x2a\x57\x5e\xe3\x2a\x2a\x1f\x18\xeb\xb7\x07\x5e\x35\xcd\x27\x09\xbb\x36\xc7\xa7\xcf\x59\x72\xec\x62\xc9\xe4\x28\xbd\x6f\xe2\x5c\xd2\xee\xaa\x45\x18\xb2\xfc\x25\x27\x4c\x20\x4f\x2f\x01\x9e\x59\x0c\xbd\xcb\x68\x38\x7a\x2b\x2c\xa8\x47\xef\xa9\x8d\x2b\xd2\x1b\x4c\x2c\x32\x7d\xd9\x15\xbd\xa9\xab\x79\xf1\x6d\xff\x99\xaf\x3d\x2f\x6e\x78\x67\x29\xa2\xb0\xee\x9a\x36\xd1\x19\x26\x2a\xe7\x25\x2c\x97\xf4\xc0\x2c\xd9\xb7\x18\x97\x35\x6c\x57\xc3\x2c\x1a\x77\x0b\x2a\xa0\x1d\x8e\xc8\x9b\x3d\x5c\xf2\x75\xa6\x7c\x96\x37\x4d\x4b\x43\x75\x1e\x3c\x02\xd5\x28\xbc\x3f\x1b\x28\x56\x07\x47\x47\xd9\x0f\x6e\x7d\xfd\x25\x0a\x5e\x39\x67\x64\x88\x07\x86\x9c\x6d\xb0\x07\x09\xe2\x74\x13\x9e\xee\xe2\x50\x4a\x24\x17\x06\xe8\x92\x2d\x68\x80\x01\x0e\x7e\xd8\xb3\x03\x31\x3b\x1c\xdf\x96\x70\x3b\x16\x43\x26\xdc\xb3\xca\x76\xcf\xf0\x01\x93\x29\xcc\x10\x0f\x7b\x2a\xd0\x04\x8c\xcd\x89\x4b\x0e\x23\x38\xc9\x4b\xaf\xb4\x46\x1e\xd5\x2b\xc0\x8c\xcb\x4b\xdb\x5d\x7f\x27\xa1\x7f\xa7\x2b\x78\x9f\x6f\x70\xa7\x84\xa1\x7e\xb8\xb7\x8e\x99\x85\x6c\x21\xce\xaa\x5f\x43\x37\x4b\x60\x27\x25\x3d\xef\x4e\xbd\x2d\x9f\x7e\xf7\xe7\xef\xff\xed\x99\xb9\x11\xdd\x5b\x3b\x22\xc3\xf8\x26\x8e\xc2\x9f\x0f\xb7\x73\xf4\xf2\xf8\x90\xda\x3a\x48\x4f\x7e\x7e\xf5\xfa\x90\x1a\x3d\x48\x67\xb3\xd9\xfe\x96\x3d\x6e\xc3\x90\xa5\xac\x48\xb2\xc6\x13\x9e\x7c\x0a\x83\xff\x07\xbb\xb5\xfd\x33\xfd\x07\x2f\x30\xfa\x53\x11\xb7\xf9\xfc\x4f\xb3\x44\xb8\x80\xae\xbc\x78\x0f\x46\xbe\xb7\xa2\xe2\x30\xd2\x51\x2c\x20\x35\xe8\x69\x03\x4a\x0b\x95\xaa\xce\x1c\xfa\x89\x19\xe8\xad\x6a\x96\x84\xda\x8a\x36\xb0\x98\x59\x17\xcc\x22\xda\xec\xef\x72\xb6\x79\x82\x5f\xe9\xff\x62\x49\xd1\x81\xe0\xcd\x08\x04\xf5\x60\x0b\x43\x27\x5e\x6e\x1a\x9c\x40\xae\xd7\x8a\x75\x3c\x77\x16\xeb\x2e\xf6\x1e\x8a\xf7\x27\x1f\xf5\x4f\xee\xe7\xe6\xb5\x5c\x55\x94\x8b\xd3\x01\xc7\x66\x33\x4c\xef\x0c\x32\x7d\x7a\xc5\xe1\xc9\x97\xbb\x35\x29\x0c\x81\x03\xd9\xb0\xc0\x70\x5a\xac\x1e\x15\x2d\xe1\x80\xc4\xc8\xe1\x38\x77\xa8\x2b\x60\x7d\xce\x95\x4c\x03\x1e\xb5\x1c\x50\x56\x6e\x39\x0d\x5b\x91\x3d\xbe\xc3\x26\x7f\xa8\x51\x1a\x62\x7f\xf4\xa8\xe1\x00\x1b\xda\x07\x58\xa7\xa6\x7a\x21\xe7\x41\xae\x0f\xe2\x96\x3e\xd1\x03\x1f\x93\xda\x1c\xd3\xd5\x72\x35\xd8\x65\x05\x5a\x6e\x4f\x0c\x9c\x0a\xbd\xb6\x23\x50\x16\x46\x4e\xba\x84\xc3\xe3\xf8\x96\x71\xb8\x1c\x24\x98\x04\xbb\x01\xe9\xe7\x99\x85\xa3\x18\x83\x39\xa3\x89\x8f\x41\x11\x23\x85\x71\xa1\x74\x80\x05\xa1\x93\x14\xc7\x3f\x61\x99\xdf\x85\x83\xd7\x83\x11\x88\x0d\xb8\xcd\xd1\x4d\x74\x6f\x30\x4d\x4c\x13\x12\xc1\x1d\x84\x27\xc2\x7f\x75\x1d\xd0\x30\xae\x0d\xf1\x35\xa0\x9b\xaa\xd8\x11\xcf\xe3\xce\xdc\x57\xef\x9f\xe3\x7a\x09\x8f\xf0\x31\xdc\x5b\xf7\x60\x40\x58\xe1\xee\x59\x10\x84\x11\xb9\xf6\xd1\x71\x26\x47\xc4\xcc\xc7\x9d\xca\xe8\x4a\x42\x94\x9b\xd4\xc7\xb9\x08\xf5\x24\x51\x82\x40\x1f\x72\xb3\xd0\xa8\xf4\x87\xd1\xce\xad\xc7\x28\x3f\xb7\x5c\x27\x36\x50\xb6\x00\x4e\x82\xd9\x84\x9e\x91\x2c\x20\x81\x76\x50\x08\x9b\x36\x1b\x11\xbd\xed\xa7\x6e\xf4\x66\x03\xbb\x97\x4d\xca\xb8\x93\xf5\x4f\xac\xaf\x50\x8c\x66\xc4\x59\x9c\x7f\x84\x1d\xe0\x86\x99\x9d\x3e\x1e\x0b\x24\x23\x65\xef\x22\x64\x4d\xd6\x61\x90\x13\x16\x03\x86\x32\xbc\x5f\xef\x19\xe6\x20\x18\x06\xba\x36\xc5\x8f\xf6\x20\xca\x06\x10\x45\xaa\xf9\x23\xd8\xda\x8f\x28\xcf\x88\x1e\xbc\xee\xb2\xbf\xbe\x3f\xef\x65\x6c\xc1\xa5\x94\x50\xab\x61\x5e\xa9\xcf\xcc\x98\xcd\x38\x1c\xa2\x38\x7c\xe3\xd5\x1b\x76\x7d\x25\x94\x1f\xa8\xd2\x7e\xe0\xce\xef\x25\x84\x47\x70\x7f\x29\x3c\x99\xed\xf6\xf7\x15\xce\xac\x82\x80\x23\xbb\x5d\x61\xd2\x1c\x34\x72\xde\x3f\xb7\x1c\xdc\x9f\x4f\xc8\xaf\xc5\xfe\x22\x64\x31\xac\x74\x2f\xa5\x3c\x60\x17\xd8\x27\xbd\x4f\x57\x66\xda\xd3\x03\x41\x1d\xc6\xab\xdf\xce\xa1\xf1\x7a\x13\xce\xa2\x1d\x0c\xdb\x02\xb2\x80\x2f\xe3\xde\x9b\x31\xdc\x89\xaa\x26\x77\x04\x1f\x52\xc8\x75\xcd\x0a\xb4\xfb\xbb\x17\x5f\x99\x4a\x27\xae\x4a\x05\x3a\x05\x47\xdf\x8c\xce\xdb\xf9\x0e\x32\x8f\x27\x3a\x77\xdf\x5b\x60\x70\xf7\x37\xaa\x2b\xbe\xfb\x3b\xa6\x97\x41\xc3\x76\x01\x78\xac\x24\x36\x6d\x78\x1e\x1c\x76\x6c\x62\x48\x93\xc5\xa2\x63\x02\x89\x4f\xcf\xf4\xe8\xaf\x5e\xac\x24\x72\x78\xa8\x2a\xfb\x0b\x94\xc3\xed\x71\x40\xb3\xf7\x5c\x18\xb6\x4e\x89\xd5\x6c\x1f\xe6\x8e\x27\xb1\xa6\x37\xfa\x02\xbc\x89\xaf\xa9\x44\x4f\x8f\xbd\xfa\xd4\xf9\x14\xfb\xe3\x2c\x28\x81\x00\x7b\xfe\x12\x03\x9f\x7b\xcd\x47\x88\x8f\xe2\xed\xc5\xf7\x18\xd4\x1b\x56\x2e\x6f\x43\x90\x0c\xcb\xce\x22\x6d\x89\xf5\x00\x04\x67\xd3\x10\xce\xfa\x3a\xdc\x30\x60\x96\xe6\xde\xae\x9a\x40\xac\x7a\xb8\x01\x26\xbc\x5b\xb1\x00\x28\x91\xaa\x3d\x60\x60\x28\x70\x86\x3d\xb5\x16\xe0\x6c\x67\xb3\x23\xe4\xc0\x90\x07\xa3\x80\x3e\x39\x73\x76\x79\x85\x73\x5e\x9a\x34\x12\x59\x96\xbc\xc3\xa7\xbf\x92\x6a\x89\x77\x0b\xf8\xe5\x17\x65\x9f\x8b\x05\x47\x74\xa8\x6a\x8d\xea\x7e\x5b\xda\x55\xdb\xba\xd0\xfd\x2e\x8c\xf7\x61\x3a\xbc\x9c\xf7\xa6\x78\x8e\x05\x6f\x4a\x6d\xcb\x45\x75\x4d\x52\xed\x3b\x9a\xab\x1a\x0f\xe5\xb9\x07\xc0\xee\xbd\x51\xe6\x46\x02\xff\x77\x3e\x16\x0e\x37\x69\xc9\x0c\xd7\x87\xee\x84\x23\xf4\x0c\x41\xa7\xee\xb6\x1a\x86\xef\x33\xf5\x62\x57\x90\xbd\xbf\xe2\x4d\x26\x55\xff\xec\x2f\x59\x07\xa3\x3e\x84\x51\xf5\xa5\xe9\x2f\xe5\xec\x5a\xd5\x0c\xcf\x30\xb8\xbe\x70\xf0\xc7\x0e\x97\x3d\xf1\xfb\x01\x70\x43\xc1\xa5\x04\x6a\x86\x4b\x1d\x7b\xfc\x2b\x59\xb8\x5a\xed\x4d\x07\x88\x6c\x86\xa3\x6e\x6c\x72\x99\x6c\xc3\x0f\x11\x5d\xbb\x1d\x8e\x53\x68\x5f\xce\x6b\xa5\x39\x52\x1a\x77\x25\xde\xdd\xd9\xe4\x77\xf2\x70\x00\x1f\xab\x76\xb4\x7b\xd6\x45\x67\x2f\xca\xf1\xd3\x94\xab\xe6\x96\x2d\xb6\x76\x39\x6b\x34\x25\xe3\xbe\xf9\x03\x47\x3b\x65\x9c\x00\xe9\xb6\x8d\xdc\xef\xbb\xd0\xcf\x31\x90\x9c\xa3\xf0\xa8\xde\xc8\xd7\x18\x64\xab\x51\x71\x5d\x7c\xdc\x31\xc8\xbc\x29\x78\xce\x5e\xd2\x9f\xb1\x59\xcf\x3d\x83\x67\xb6\x3d\xac\xe5\x2d\x47\x99\x13\xa7\x55\xce\x20\xea\x2c\xd7\xd7\x12\x62\x8f\x15\x4c\x1c\x04\x89\x07\x00\x5f\x8c\x95\xc7\x33\xf8\x22\x27\x2a\x50\x3c\x21\x12\x01\x42\x6e\x87\xc7\xfb\xfa\xd8\x4d\x18\xa4\x67\xd8\x27\xb8\x3d\x59\xbf\xde\x8a\x72\x80\xd9\xc4\xb1\x97\x44\x65\x3f\x60\xe5\x9a\x2d\x6b\xe6\x96\x68\x86\xac\xad\x44\x44\xe7\xf0\x48\xc4\x03\x10\xb6\xd2\x40\x44\xbb\x92\x0b\x22\xc1\x1d\x55\x2f\x53\x73\x7c\x14\x46\xd8\xb8\x47\x7a\xa7\x98\x11\x24\xb7\x89\x47\x10\xde\x69\x12\x40\x16\xbd\x63\x28\x23\x29\xb8\x37\x70\xbe\x89\xd8\x47\xc0\x80\xa3\xf7\x09\xd1\x51\x8d\x74\x2e\x46\x16\x66\xac\x66\x53\x09\xbc\x28\x18\x57\x6c\xe7\x0a\x98\x21\x3f\x28\x44\xfb\xaf\x98\x24\x48\xd1\xcd\xdb\xc2\x82\x79\x2a\x63\xe6\x0b\x92\x60\xc0\x61\x50\xa9\x7c\xdd\x35\x56\x05\x6d\x24\x04\xf2\x89\x6f\x59\xd0\x7c\x43\x77\x50\x63\x1b\xab\x71\xfe\xf8\x86\x79\xf1\x6e\xcb\xec\x59\x78\xbd\xb5\x83\x21\x3f\xfd\xf7\xcb\xb3\xf7\x07\xe9\xe7\xc3\xdb\xdb\xdb\x43\x2e\x7e\xb8\x6b\xd7\x1c\xaf\xa5\xe0\x60\xa1\xff\xf3\xf4\xdd\x41\x5a\xf6\x8b\x67\xb3\xf4\x54\xb8\xb6\x67\x86\xea\xb3\x00\x7f\x24\x38\x00\x10\x83\xf8\xe3\xdc\x5c\x57\x8c\x5a\x4f\xc3\xa8\xd2\xa1\x70\xc7\xb3\x67\xbe\xe4\x3a\x99\xe2\x53\x1e\x08\x0a\x8b\xb6\x84\x2b\x36\x3e\x82\x0c\x92\x1a\x3e\x4d\x85\x99\x1b\x82\x54\xd4\x8e\x76\xe3\xed\x42\xdf\x50\x1b\x80\x98\xaf\xe1\x31\xbc\x0c\xbd\x61\x97\x27\xce\xed\xc2\x6c\xa9\x25\x2e\xc5\x07\x69\xd1\x06\x33\x2f\x6d\x22\xca\xe2\xa7\x61\x61\x5c\xba\xc2\xb3\x45\xcf\xd3\x7f\xe7\x33\x64\x9e\x28\xa1\x2d\xce\x32\xda\x02\xf0\x6c\x58\x18\xc1\xeb\x03\xed\x87\x06\x20\x21\xf9\x4d\xfb\xf2\x79\x4e\x03\x1b\x55\xa2\xc6\x30\xf6\xe1\x26\x26\xec\x8c\x63\xa0\x35\xa9\x6e\x5c\x24\x3e\xc1\x9f\xce\x36\xbc\xc8\x7d\xab\x03\xbd\x89\x65\xc7\xdb\x53\x78\x48\xe5\xc6\xd9\x24\x8a\x02\xfe\x08\x50\x35\x61\x8d\x95\x5f\x61\x4c\xa9\xbe\x10\x51\x0e\x33\x82\xb7\xea\xca\x1e\x21\xd1\xa6\xd6\xa2\xd8\x7a\xdc\xac\xf9\xd5\x63\xfc\x4d\x77\x1f\x11\xe4\x24\x9c\x44\xc4\x3d\xc0\x3a\x62\x7d\x61\x7a\x33\x9c\x8d\x78\x93\x97\xfc\x94\x37\x8d\xa4\x1b\x05\x1c\xb4\x31\x12\x2a\x54\xb3\x1b\x2b\x23\xbe\x85\x7d\xf2\x93\xdc\x18\xb0\x7d\xdd\x22\xa5\x22\x26\xcf\x89\x4b\x8b\xa5\x51\x5b\xa5\xe0\xbb\xf1\x12\x65\x84\xc8\x3a\x0a\x39\x2a\xcb\xb5\xb1\x47\x31\x83\x20\x90\x14\xdf\x00\xb7\xcb\xa6\xa3\x30\x5a\xe1\x4e\x2f\xb5\x5a\x50\x14\x09\xde\x32\xc8\x1c\x3e\x1a\x39\x5c\xd9\x24\xda\xca\xab\xc2\xc7\xf2\x15\x62\x6b\xbb\x6e\xee\x2c\xd2\xd8\x09\x7e\x69\x80\xd3\x70\x64\x1e\x4c\x07\xe5\x21\xa7\xea\xf2\xa2\x28\xa0\x50\x3b\x34\x32\x36\x61\x1f\xca\xc3\x6e\x98\x52\xb6\x09\x53\x9d\x76\x19\x18\xd1\x43\x61\x9b\x8f\xc3\xb2\xc8\x93\x61\x1a\xb0\x2b\x40\x0d\xae\x9b\x86\x03\xf8\x4b\xf0\xb0\x87\xea\x20\x35\x9b\x51\x5c\x37\x42\xad\x3f\xf2\xbe\x99\x1a\xc5\x38\x42\x96\x83\x1a\x46\xf2\xf2\x23\xdd\x1b\xc9\x2b\x2c\x1a\x86\xf3\x0a\x8a\x62\xdf\x74\x48\x98\x3c\x6e\x8e\xa6\x65\x1c\xac\xcb\x0f\xf5\x0b\xe2\x75\x4d\xcf\xdc\x50\xf1\x78\x70\xaa\xef\xf3\x36\x29\xc2\xc1\x7d\x41\xe4\xae\x81\x6a\xfe\x25\x3a\xc8\x54\x5f\x3c\x52\x02\xec\x3e\xe4\x7b\x52\x54\xd7\xd7\xb3\x79\x4b\x22\x38\x87\xc7\xc2\x3b\x8d\xcc\xd9\xf9\x77\x7a\x89\xdf\x02\xc2\x3e\xc7\xa0\x0a\xf9\x90\x44\xbd\x31\xf1\x5c\xfd\x66\x25\x11\x0e\x9f\xc3\xe7\xe1\x4e\x28\x47\x9c\x3f\xdf\x37\x88\x73\x2a\x39\x33\x29\xc2\x2a\x40\xc6\x5f\x08\xec\x05\xef\x00\x3e\x55\x46\xa1\x4b\x4e\x09\xc0\xba\xed\x9a\xa4\x57\x7d\x8b\xf0\x92\x7f\xe0\xe6\x6c\x00\xb1\xab\x49\x8f\x2d\x0b\x83\xf9\x20\x3f\x43\x28\xae\xd2\xa6\xce\x76\x54\x5c\xfa\x11\x37\x5b\x11\xbd\xbd\x69\x13\x14\x6a\x70\x04\x46\x64\x55\x41\xb6\xf6\x20\x61\x20\x20\x82\xb0\x39\xf1\x10\x8a\x68\x30\xac\x97\x6f\xdf\xcb\x4f\xdc\xfe\xd5\x88\xbc\xb8\xfe\xcb\xde\xbe\x92\xa5\x71\x78\xb7\x5b\x84\xf1\x94\xdb\xb7\x04\xc7\x79\x69\x90\x6c\x7e\x91\x12\x7d\xd0\x5d\x00\x96\x3a\xf8\xa2\xf0\x86\x78\x81\x73\x26\xbe\x64\xc3\xa5\x3e\xc3\x59\xda\xdb\x09\x7c\x49\xd8\xfb\x57\x52\x0d\x5c\x44\xa1\x0c\x21\xa6\xe3\x73\xb5\x89\xdd\x79\x9e\x4d\xdd\x7d\xb6\x3c\xb9\xb2\x2e\xb6\x66\x7b\x85\x1e\xbf\x1c\x44\xd1\xe6\xd7\x70\xbe\xe3\xbf\x2e\x95\x06\xe6\x8b\x9d\xb7\xe5\xe1\xb0\x18\x4d\x9e\x90\xd4\x25\x3e\x5c\xba\x3a\xcf\xf1\x1f\x97\x96\xaf\xc4\x71\xc3\xcf\x8c\x9f\x31\x73\xbe\xa6\xf5\xf5\xb8\x4b\xbb\x8a\x8d\xe9\xba\x10\x07\x0d\x62\x15\xf8\xf7\x7d\xb0\x46\x70\x89\x3d\x1c\x6b\xe8\x95\x87\x58\x85\xdd\x2a\x75\xf8\xe1\x38\x0f\xbd\xc4\x21\xd3\x27\x52\x67\x51\xbf\xa3\xd2\x22\xbe\x94\x46\x8d\x78\x67\x97\x25\x74\x44\xf1\x91\xf0\xb1\xec\x6c\xd2\x12\x22\x38\xaa\x35\x4b\x73\x6e\x91\x57\x1b\xaa\xff\x46\x9e\x24\x93\xea\x49\x32\x73\x71\xd2\x48\x48\xab\x25\x54\x93\xe5\xc1\xba\x63\x71\xd9\xa3\x32\xfe\x01\x22\x3b\x52\xf5\xc1\x02\x28\x1f\x52\xdf\x22\x8c\x41\xc0\x22\x20\xc7\x8d\x94\xb1\x07\x1d\x88\x76\x1c\x4b\x1d\xef\x32\x96\x13\x3b\xe4\x04\x64\xa1\xcb\xf9\x5c\xbe\x5c\x0e\x6b\x17\x22\x22\xbf\x93\x2f\xb6\x1d\x8e\xa9\x69\x1c\xc9\x8f\xf2\x0e\x87\x73\x1d\xc0\x3b\x04\xfc\x5a\x3e\xe1\x13\x8a\x86\x64\x97\x54\x1c\xcc\xf2\x3e\xa2\x14\x33\x37\xfa\xd7\x6f\x0f\xb1\x7d\xf9\x6e\x0c\xdd\x2a\x5d\x73\x4a\x28\x9e\x64\x46\xd4\xce\x0e\x6b\xb6\x52\xe0\xb1\x16\x2f\x17\x50\x8f\x5f\x30\x70\x1d\x1d\x2d\x34\x11\x0e\x3d\x54\x7c\xcc\x34\x01\x2c\x5b\xa1\x66\x79\xf3\xf4\x10\x66\x7a\xf7\xb3\x76\x86\x2e\x6a\x08\xcc\xcc\x96\x18\x77\x62\x43\x24\x73\xcf\x5e\x37\x6a\x2d\x3c\xf6\x90\x26\x1e\xd8\xdc\x86\x6b\x20\x76\x78\x0b\xea\x51\x11\x84\x39\xa8\xae\x91\x91\x08\x32\xaa\x4b\x1d\x84\x83\x75\x65\x74\xe0\x5e\xf4\xd2\xfe\xeb\x1b\xa7\xd8\x98\xed\x3b\x49\x7e\x6b\xda\xe5\x47\xff\x78\x8c\xb3\x82\x47\x86\x6c\xd8\x42\x18\xc6\x05\x7f\xdf\x03\xe8\x03\xc2\xfb\x1a\x8d\x80\x5f\xf3\x32\x1d\x3f\x30\x2f\x96\x28\x79\x30\x0c\x8e\x9f\x16\x78\x6d\x66\x61\x47\xe4\xdd\x0a\xf5\xc8\x0c\x9b\x93\x68\x20\xde\xcf\xef\x83\x5e\x3f\x56\x6f\x2c\x8e\x58\xc1\x1f\xfc\xb4\x48\xc5\x07\x57\xb4\xed\x88\x33\xc8\x5b\x24\x60\x1f\x62\x7f\x10\x7e\xd5\x44\x6c\x8a\xf4\x37\xc1\xd3\x0b\x6a\x78\xe7\x54\xfd\xd2\xf4\xc1\xf3\x0e\xd1\x73\x0c\x41\x98\x14\x3c\x94\x12\xb9\x91\x72\xe5\xc0\xca\x84\x83\xb9\x7b\x7b\x47\x3b\x21\x28\x44\xea\x7d\xd0\x51\x54\x33\xe6\x0e\x72\x35\x81\xe7\x3f\x17\x67\x5d\xbd\x73\xae\x44\x85\xc7\x5b\xea\xe8\x36\x66\x37\xf3\xcd\x04\xbc\x66\x25\xde\xe7\xbe\x18\x1e\xab\x66\xc7\xd6\x9f\x04\x3e\x0a\x2d\xa4\xe6\x89\x5c\xa2\x12\x4a\x72\xba\x26\x4d\x77\x1d\xd9\x2b\x50\x11\x6b\x08\x3f\xed\x79\x7e\x62\xfc\x58\xd1\xd7\x07\x96\x1a\xd7\x71\x7f\x68\xa9\x3f\xea\x0a\x3a\xfd\x0c\x42\x68\x94\x1d\xbc\x87\xe0\xb2\xa6\x1e\x46\xf8\x23\x1e\x92\x31\x68\xc0\x96\x22\x14\xb8\x9a\xbe\xf4\x40\x56\x1d\x2f\x89\x52\xff\x35\xbf\xcb\xf8\x79\x9f\x61\xaf\x47\x0f\x03\x44\x9d\xfe\xba\x07\x02\xf6\x3a\x30\x44\xbc\x62\x68\xa4\x18\x45\xe5\xc4\x00\xef\x2d\x12\xc7\xe8\x0c\x3b\xec\xcc\xd2\x81\x03\x81\x9e\x39\x4a\x74\x4e\x39\x9a\x7a\x38\x44\xe7\x9e\x83\xe7\xfb\x62\x75\x0e\x7b\xc9\x3c\xc6\x45\x1e\x08\x3b\x79\x6f\x89\x50\x2e\x69\x06\x87\x98\x7f\x3c\x7e\xe7\xf4\x79\x22\x1b\x31\x6e\xcd\x76\x0b\x39\xc6\xf0\xe7\x2d\x62\xac\x90\x1a\xbe\x44\x63\xf5\x8c\xd6\x63\x0e\x12\xa8\x20\x77\xf0\x9c\x94\x72\xed\x99\x7f\x8d\x28\x8b\x62\x76\x9e\xfa\xf7\x8e\x7c\xf8\xce\x1f\x5c\x31\x75\x2d\xb4\x80\xdf\x83\x74\xcf\x29\x71\x4d\x61\x2b\x01\x34\x3d\x90\xfc\x86\x94\x38\x99\x33\x2c\x1f\xb7\xa1\x8f\xf8\xb6\xcd\xba\x74\x1d\x4d\x2f\x1a\x76\x46\x35\x90\xf8\xd2\x7e\x5c\xd0\x95\x71\xe9\xaa\xf8\x5b\x24\x45\x97\x2e\xcf\x37\x21\xb8\x46\x90\xaa\xbb\x65\x30\x57\x22\x59\x6b\xed\x50\x54\x7e\x18\x42\xcb\xa3\xc0\xba\xaf\xbe\xe7\x07\x86\xb0\xa9\xce\x10\x03\x40\x9e\x47\xd2\x94\xb8\x51\x49\x63\x19\x47\xc3\x46\xa7\xe2\xdf\xae\x81\x85\xc7\xf9\x83\x08\x7e\xd8\x53\x5c\xec\x3e\x7b\x1f\x8c\x45\x74\x8d\x3d\x51\xcb\xa1\x6b\x1c\xd2\x4e\x6a\x85\x88\xef\x9b\x95\x4b\x1c\x51\xbb\x21\xc4\x97\x34\x0c\x07\xfd\x61\x73\x07\x66\xc2\x85\x65\x4d\x6d\xcb\x12\x6e\x5f\x5a\x91\xa7\xd4\x5d\x3f\xdc\x63\xfd\xbe\x1f\x21\xc4\x97\xf4\x83\x5b\xc1\x65\x68\x51\xf9\xee\xe9\x4f\x5e\xd8\x7b\x1a\x91\x43\xd2\xb0\x8b\x3e\xb6\xdc\x55\xb0\x93\xc3\xa9\xab\x18\x48\x26\x7c\x62\x32\xde\x52\x25\x47\x7c\x70\x26\x84\x07\x71\xb0\x9c\x8c\xb8\xfd\x30\x13\xc0\xad\x73\x2e\xe9\x40\x03\xd7\x49\x0f\x36\xb9\x2f\x49\xbf\xbc\xb0\x07\xe9\x4b\x79\x83\x66\x3e\xbc\x25\x0b\x9c\xc5\x9a\x16\xc9\x2f\xdc\x54\x20\xfa\xd9\x4c\x16\x80\xf0\x8e\x1d\xbc\xc0\x82\x56\xc7\x95\x39\x66\x0e\x28\xc7\xc4\xc7\x70\xb6\x62\x43\xb9\x2d\x38\x4f\x60\xb6\x7d\x60\xd2\xac\x73\x64\x03\x14\x1f\x8d\x87\x8e\xa3\x1c\x23\xbc\x09\x2f\xac\x56\xf7\x5e\x40\x1b\x77\xc5\xef\xeb\xf2\x02\xa1\x23\x98\xbd\x6a\xd2\x2c\x5c\xea\x63\x02\xf1\x64\xb7\x6c\x71\x21\xdf\xe6\x9a\x99\x45\x40\x0a\xa8\xf0\x07\x37\x4a\x36\x58\x0c\xb8\x01\xfc\x49\xa8\xa2\x27\xf7\x31\x85\xaf\xe8\x00\xd8\xc6\xfd\x3d\x00\x5b\x90\xe8\x2e\xd4\x8d\x80\x05\xdc\xd7\x11\x59\xf3\x5f\xd1\x11\xf0\x8d\x2f\xec\xc8\x81\xf5\x42\xdf\x16\x2b\x8a\xc9\xf5\x7f\x5f\xff\x06\x8a\x10\x88\x33\x7a\xec\xce\x98\x01\xfc\xac\xa0\xa9\x4d\xfa\x59\x05\x06\xe7\xd9\x6c\xb8\x4a\x02\x47\xb1\x60\xa5\x04\x3e\xa9\xd6\x17\xb8\x84\xa9\xef\xbe\xee\x72\xbe\xaa\x9a\xe6\x1d\x2f\x72\xd4\x7d\xe8\xdf\x1f\x47\x01\x65\x37\xe5\xbe\xbd\x53\x49\x87\x31\x12\x07\x31\xf5\x11\x25\x45\xa7\x83\x6b\x84\xbc\x34\xf8\x1b\xe6\xea\x63\xc2\xaf\xf6\xe2\x91\x66\x5e\xff\xf6\x9d\x88\xad\x4c\x8e\x87\xf1\x0c\x9d\x7f\x7f\x2e\x1d\xbe\x47\x77\xef\xe3\x81\xf1\xf3\x92\xc3\xf7\x26\x3b\x09\xef\xbe\x34\x11\x71\xb9\xd3\x6b\x69\xea\x4a\xca\x18\xbf\x23\x1c\x6c\xd8\xf4\xcd\x09\xc9\xa6\xa9\x2b\xf1\x5a\x3b\x95\xaf\x8a\x1f\x0f\x0c\xef\x56\xbe\xe2\x1f\xf2\xac\x86\xa6\xf0\x55\xba\xa4\x6f\x7a\x44\x4f\xbe\xe2\xbf\x3f\xa4\x8f\x8b\xc4\x0f\x1d\x56\x6d\x36\xd0\x2d\xc4\x36\x2a\xdf\x41\x7e\xf0\x72\x1d\x6e\x86\xb7\xf6\x14\x9f\xaf\x01\xdd\x84\x0d\x7e\x17\x74\x5b\x3b\x89\x4a\x77\xdd\x54\x8b\x76\x61\x12\xbe\x14\x6c\xff\x9f\x9b\x75\x86\xdf\xa0\x2f\xf8\x0d\x7a\xb1\x5c\x1e\x04\x09\xd1\x84\x84\x19\x5b\xf7\xd4\x4b\x94\x1c\x6f\xa5\x3e\x5d\x62\x38\x47\x49\x1c\xaa\x35\x4a\xc8\x17\xa3\x56\xec\x04\x26\x4c\x33\xe7\x61\x9f\x62\x6e\xc4\x51\xed\xf1\x7b\x1f\x61\x96\xf8\xcb\x47\x49\x72\x37\x63\x30\x12\xb1\x0b\x87\x69\xeb\x66\xc9\xaf\x2b\xc3\xba\x1c\x0f\x4f\xe5\xf5\xb8\x4e\xbb\x78\x1c\x55\x81\x58\x48\x61\x0a\x0e\x83\xfb\xbc\x8b\x4b\x63\x7d\x86\x09\x7a\x5b\x76\x04\x48\xfa\x7b\xbe\x58\x69\x18\x8c\x09\x42\x32\x35\xdc\x11\x93\xe8\xe2\x53\x90\xdd\x6d\x25\xb1\x75\x2f\xf1\x31\x09\xd3\xee\x60\x75\xdc\xd5\x41\x2e\x5f\xe6\xe7\xc0\x11\x78\x12\xa5\xd1\x48\xd4\x7c\xb3\xdf\x3d\x7f\x92\x9e\x61\x39\x76\xf7\x16\x0a\xf6\x45\xf6\xe6\xd6\x27\x57\xb4\x64\xe0\xa7\x3f\xbd\x41\xfa\x9a\x75\xab\x55\x2f\xa9\xe0\x8d\xfb\xce\x4b\x1e\x39\x82\x8c\xa8\xb7\x82\x65\x7f\x51\x1d\x83\x5e\x7a\x08\xff\x12\xff\x57\x77\x15\xfc\x9f\xf9\x3d\xf5\x66\xd0\xc9\x88\xe7\x19\xc8\x03\x35\x0c\xba\x38\x59\xc5\xd7\x77\x12\x3b\x6d\xbd\x94\x5d\x67\x4f\x27\xef\xf0\x66\x4e\x5b\xa8\xe2\xba\x66\x97\xd4\xd7\xe6\x26\xf7\x40\x95\xfb\x7a\x7d\x6f\x9d\x5f\x31\x8c\x65\xd5\x67\xcb\x85\xef\x3e\xbf\x17\xd6\xce\x99\x71\xf3\xe6\x5e\x2e\x24\x80\x4d\x1d\x1b\x2d\xa7\x8b\xdf\x87\x60\x74\x88\xcd\x15\x53\xd5\xef\xeb\x5b\x5b\x76\x77\xf5\x82\x0d\x75\xfc\xbc\x9a\xba\x0c\x5c\x94\x72\xcc\xf2\x64\x46\x69\xdf\xe6\x1a\xd4\xbd\xc4\xe1\x7a\xf7\x44\x02\x0a\x3f\x5d\xe4\xb8\xd9\xf7\x03\x6d\xc5\xf5\x21\x58\x3b\x4a\x9b\x64\xcb\xd8\x7a\x76\x6f\x43\x83\xb1\x04\x7c\x3d\xc0\x6d\x8b\xae\xf4\xe5\x17\x8d\x20\x70\x90\x09\x87\xc1\x84\xa2\x4c\x0c\x2c\x6f\xf0\x76\x71\xfa\x94\x9d\x9d\xf8\x05\x38\xf6\xe4\x52\x0f\x49\xdd\xb4\x11\x4e\xdd\x19\xd8\x8a\x3d\x03\x0a\xdb\xbd\x67\x86\x9e\x44\xbd\xf8\xba\x31\xf2\xc3\x10\xa3\x85\x70\x81\x64\x7d\x28\xe2\x0f\x2d\x87\xa9\x8a\xff\xd5\xe5\xd0\x06\xbd\x1a\x3d\x1a\x1a\x88\x07\x08\x8d\x4f\xb8\xeb\x2b\x6c\x13\x97\x12\x2a\xff\x03\x7e\x87\xec\x5a\x5f\x45\x5d\x36\x6d\x43\x14\x27\xb1\x8b\xf5\x75\xcf\xd7\x96\xd6\x4d\x14\xc0\x89\xc5\x5d\xb6\xd3\x60\x10\x56\xe6\x14\xc9\x24\xf6\x71\x24\x05\x5f\x0a\xc2\x93\x95\x61\x3b\xf4\x42\x4f\x2f\x20\x4d\x59\xa9\x23\xcb\x08\x4a\x6a\x99\x66\xce\xd7\xa5\x34\x48\x16\x80\xcf\x34\x25\x80\xc5\x39\x21\x07\x04\x26\x0a\xd8\x6d\x33\x1e\x2a\x62\x24\x48\x72\xfa\x0e\xc9\xe9\x15\x27\x8f\x5b\xb0\x5e\xb9\x62\x83\x4e\xed\x2b\xc7\x61\x21\x87\x65\x5e\x71\xf4\xc8\x21\xbc\x61\x6e\x55\xe6\xdb\x11\xde\xde\x50\xe2\x08\x6b\x80\x1c\x23\x00\xb0\xfb\xb1\x10\x96\xaa\x0a\x28\xd1\x61\x89\xb7\xc5\x7a\x5f\x1b\x15\xbc\x8b\x86\xf0\x35\x0b\xf1\x7b\x4a\xa8\x34\x35\xec\x95\x9e\xed\x8d\x7a\xd5\xcc\x39\xe6\x49\x67\xd0\x67\xf2\x33\x80\x9a\x37\x4d\x4f\xba\x1c\x81\x92\x18\x09\x47\x53\x41\xd3\x4b\x4b\x67\x41\x78\xf1\x69\x84\x29\x81\x1e\xa3\x4a\xa0\xf7\xe3\x6a\xc3\xd7\xc2\xa9\xad\x76\xb7\xe8\x77\xc4\x73\x5c\x83\xa7\x97\x7c\xd3\xfc\xd2\x65\x8c\x5a\x1c\x95\x0c\x29\x74\x58\x78\xaa\xe5\x05\xbf\x4a\x32\xd9\xf4\x31\xe7\xdc\xdb\xf6\xa8\x6c\xd8\xf8\xa8\xf8\xd4\x4a\xc1\xab\xd2\xcc\x94\xe6\xbb\xc5\xa7\xb2\xe7\xab\xe0\xab\x0c\x4e\x1d\x61\x5d\xe7\x06\x96\xbe\x04\x58\xfa\x86\xc0\xd2\x2b\x58\xdc\x26\x6a\xa5\x7d\x74\x53\xf6\x39\x9c\x90\x82\x5a\x5e\x1f\xd3\x0c\x48\xf2\x54\x29\x58\xe2\x32\xd5\x7f\x74\x15\xb2\x48\x1a\xd4\x70\x06\x63\x9d\xaa\x44\x47\x0e\x64\xaa\x36\x0e\x4b\x2c\x1b\xfa\xe2\x6e\xb1\x16\xff\x97\xcf\x3d\xf7\xe1\x42\x52\x02\x58\xe8\x78\x04\x6b\x3c\x12\x7e\x28\x88\x9b\x42\xe0\x57\x31\xa3\x14\x0e\xe6\x81\x85\x71\x11\xdc\x39\xfb\xee\x4c\x01\x6e\x73\x59\x4c\x7b\x21\xad\x79\x03\xb4\x96\x87\x70\xda\x68\x27\xa8\x14\xb6\x22\x0a\xb6\xdc\x9a\xd2\x17\x08\x89\xe6\xe0\xe7\x80\x4b\x53\xf6\xfe\x20\xa7\x29\x2c\x1e\xd3\xf6\x27\x2a\xfe\x90\xd6\xbd\xff\x2e\x60\xa2\x57\x40\x9b\x90\x14\x93\x84\x79\x26\x8e\xec\xdb\xf2\xa2\x38\x2f\x92\xe6\x37\x50\xfa\xab\x69\x16\x7f\xcb\xc5\x0c\xd7\x74\x38\x5b\xb7\xe5\x92\x0d\x15\x72\x0d\x1b\x71\xae\x70\x9f\xe6\x02\xc9\xa6\xdd\x84\x37\xa4\xae\x1a\x8c\x32\x18\x58\xec\x94\x68\xc3\x7c\x38\x06\xd8\x4c\xeb\x08\xa3\xd1\xea\xc8\xa0\xba\x98\x57\x5e\x6c\x76\x30\xef\x3c\x81\x94\x67\x60\xe4\x60\x73\x1d\x96\x86\x5e\x69\x8a\xda\xa0\x86\x77\xd0\x39\x03\x2c\xbb\x67\xac\x9d\xa9\x1b\x87\x05\x6c\x72\x91\x6b\x1d\x30\xb5\xc3\xed\x76\x57\xdb\x33\xd9\x46\x06\xfb\x9e\x90\xb7\xb7\xeb\xbe\xf0\x15\x79\x8f\x8b\x80\x52\xe0\xd7\x12\xd3\xc8\x26\xff\xac\x6f\xa2\xf8\x47\x97\x4e\xf5\x79\xa5\xe0\xf6\xe9\xb1\xe5\xbe\xe3\x97\x96\xf6\x95\x35\x1b\xdf\xd3\x4b\x62\x30\x87\xdf\xe1\x95\x41\x5a\x0f\xcb\x75\x33\xcf\xd9\x89\x45\xde\xcf\xc2\x63\x4d\xcf\xb4\x8e\xaa\xcb\x42\xa2\x1c\x3e\xbd\x97\x0f\x88\x94\x46\xbf\xaa\xe6\x34\x28\x51\xf4\xc7\x05\x0c\x40\xae\x51\x01\x2a\x68\x49\x49\x3c\x2a\x84\xa0\x18\x9c\x21\x14\xda\xb4\x81\x17\x80\xd1\x3c\xce\xdb\xf9\x56\x4c\xa6\x8e\xe1\xa3\x1a\x82\x32\x30\x2e\xcb\x9a\x64\xb1\x4f\x02\x15\x85\xf5\xc8\x63\x45\x99\x11\xdb\x43\x75\xed\x7d\xdb\x68\x92\x64\xbc\x7d\xdf\x28\x46\x58\xbf\x11\xe7\xbd\xc7\xc7\x31\x6d\x20\xd2\x27\x5f\x6c\xf6\x56\xc7\xa0\xa7\x12\x07\x94\xfb\xeb\xaf\x26\x37\x2c\x99\xb2\xcc\x8b\x70\xf7\xac\x62\x85\x17\xcd\x5d\x6c\x08\x0b\x48\x5a\xe2\xd2\x83\x8f\x3c\x41\x5b\x82\xda\x24\xc3\x0e\x70\x6c\x13\xf1\xa1\xd9\xd3\xbe\x3f\x23\x45\xec\xb9\xb0\xf9\xd0\x3a\x16\x77\x40\xce\xf1\x9a\x36\xf4\xad\x8a\x8d\x9b\x51\x57\x26\xdc\xa7\x8e\x86\x2f\xc9\xee\xf1\x0d\xa6\x5a\xe5\xf6\xed\x80\xbb\x47\x87\xdb\x11\x97\x47\x89\x90\x7b\x23\x21\x76\xf3\x41\x92\x3f\xf8\xb1\x33\x1f\x31\xc1\x82\x71\x0f\xdb\x0b\x96\x73\xd4\x9a\x94\x18\x3f\x51\x19\x77\x41\x52\xc6\x47\xc3\x92\xae\xd6\xc3\xd4\x1e\x80\x53\x53\xf0\x0c\x26\x44\x91\xde\x5a\x4b\x1b\xbe\x25\x04\xcb\xb0\xf2\xd9\x41\x97\x07\x9c\x36\xea\xb6\x94\x92\x18\xa2\x76\x51\x5d\x99\xb9\x66\x05\xbd\x97\x94\xf0\xd1\x0d\x49\x29\x11\xa1\x87\x39\x8f\xc4\xea\x29\x34\x7d\xec\x94\x15\x74\x52\xab\x19\x74\x2e\xa8\x15\x50\xd3\x9b\x45\xd0\x9b\xae\x24\x3d\x82\x1f\x77\xa4\x95\xdb\x37\x8b\x46\xde\xf9\x97\x34\x5e\xb4\x48\x53\xd8\xe1\x2d\x0d\x49\xc5\x85\x62\xbe\x52\xd2\xf5\x9a\xb2\x95\x67\x37\xce\xf9\xd9\x0d\x49\x81\xf5\xae\x80\xbf\x34\x1b\xeb\x4e\xde\x87\xe9\xb6\x53\x59\xee\xb9\xfe\x9e\x82\x09\xdc\xab\xf2\x96\x5f\xfd\xf8\x41\x23\xed\x5a\x1d\x88\x0d\xdc\xb4\xe2\xe7\xbc\x5d\x73\x7f\x39\x94\x13\x0e\xde\xf8\x18\x62\x87\x28\x9b\xfc\xb4\x3b\x3c\x0e\x88\x25\x2d\xc5\x85\x5f\x1e\x23\x56\xc4\xb3\x18\xa4\x01\xc4\x21\xfe\xe8\x31\xcb\x4b\xf6\xae\x0c\x40\x30\x22\x00\xb8\x11\xe5\xbd\x84\x51\x2a\xa7\x2e\xb5\xa5\x2e\x77\x2f\xf4\xf0\x75\x1c\x30\x08\xb7\x61\x73\xef\xf9\xad\x80\xc3\x0a\x61\x41\x99\x53\x95\xeb\x42\x6f\x68\x46\xe1\xa2\x66\xa3\x16\xcc\xcf\x0a\xf1\x1d\x1f\xe8\x4d\xb7\xb3\xae\x5f\xee\x1e\xea\x39\x91\x02\x42\xab\xe1\xef\x5e\xb0\x8e\xb5\x41\x7d\x1c\xfb\x55\xc9\xf6\x63\x9f\xc5\x53\xa5\x74\x21\x97\x4f\x3e\x1b\xdd\x48\xac\x49\x43\xb2\xc4\x9a\xb4\x9a\x71\xb4\xe7\x00\xe4\xc0\x3f\x82\xd8\xf0\x5e\x9b\x75\x39\x33\x26\xda\x55\x8a\xf4\xf2\xc8\x88\x7e\xd3\x6f\xed\x29\xc4\xcb\xd3\xab\xf3\x7b\x56\x11\x83\x2a\x85\x03\x32\x20\x73\xce\x52\x52\x47\x56\x40\xef\x16\xde\x40\x56\x8c\x1a\x67\xe0\x5c\x27\x4b\xa7\x9b\x86\xbb\x4f\x56\x93\x97\xc6\x49\x3a\xe0\x50\xd8\xb8\x14\x24\x65\x66\xe9\x29\xc9\x33\x15\xfb\x6a\x5a\x6b\xea\x2f\xc8\xaf\x86\x95\xdb\xbc\xb5\x27\x75\xf0\x06\x5c\xfa\xe4\xe0\xc9\x2c\xe2\x3b\x59\x8f\xd7\xb2\x34\x4c\xd8\xd5\xbb\x4b\xfa\x5c\xb4\x77\xe2\x8c\xa0\x23\xfd\x54\x6d\x19\x2c\xe3\x3b\x65\x22\x50\x53\x0a\x60\x7f\x41\x8a\x2d\x7c\x3e\xb5\x2e\xdb\x1b\x0e\x6f\xa9\xf4\x73\x7e\x74\x0a\x63\x11\x25\x85\x6c\x47\x9b\x46\x2c\x6b\x13\xd7\x7d\x27\x68\x3a\x9a\x48\x5c\x37\xd6\x59\x6d\xb1\xf7\xd0\x1f\xab\x27\x08\xb3\x3b\x94\xa9\xc5\xb3\xc0\x30\x3d\x92\xef\x62\xe8\x48\xcc\x73\x5c\x7d\xa8\x07\xc4\x65\x1e\xba\xa0\x34\x8b\xf8\x78\xb8\x69\xc7\xf5\x7c\xa1\x8b\x5e\x58\x59\x20\x60\xdd\x37\xea\xc9\x68\x44\x71\x89\x08\x32\x93\xad\xc5\x5e\xaa\x8e\xab\x76\x5e\x13\xe3\x12\xd1\x9b\xd5\x23\xc4\x4e\xb8\xbe\xdd\xe3\xee\xa6\x24\x07\xa9\xab\x72\xf7\xd3\xf6\x54\x2d\xf2\x17\x60\x88\xc2\xe1\x6f\xa1\x87\x93\x7a\xd0\xec\x45\x3c\x1f\x70\x8d\x5f\x40\x90\x03\xe5\x20\xae\x98\xc8\xf2\xd8\x55\x55\xe6\x0a\x86\x39\x90\xb9\xe2\x6e\x3c\x24\x7a\x89\x75\xda\x4c\xa8\xee\x80\x59\x4d\xa8\xf1\x39\xb3\xc2\xe6\xdb\xad\xdb\xba\x83\x57\xd1\xb1\x80\x02\x90\x1b\x61\x7d\x01\xc4\x2f\x1a\xe0\x2d\x00\x92\x4b\xd3\x21\x10\xdf\x9d\x56\x80\xe1\x96\xae\xc9\xcd\xf5\x35\xbf\x14\xc9\xcf\xa3\x68\x24\x52\xfe\xc9\xe1\xa2\x5d\xfb\x1a\x0a\x20\x63\x9b\x2e\x6c\xa4\x3c\xa6\x13\x8d\x0f\x70\x81\x44\x56\x4a\x0d\xbc\xdd\x61\x2a\xb9\xbf\x17\xbb\x5a\xd4\xed\x20\x4b\x1b\xe2\xac\xb0\x11\x48\x90\x6d\xd3\xf4\xf6\x54\x6a\x20\x3e\x5e\x50\x32\xc9\x0a\xfd\xca\x21\x98\x8f\xb0\x17\x99\xbc\xd8\x18\x94\xc1\x01\xfa\x42\xee\x5c\x8d\x0a\x51\xbf\xc7\x25\xa8\xdf\x7b\xc0\xc5\x4d\xcb\x84\xaf\x4b\xfc\x92\xed\xc2\xf5\x18\x31\x01\x65\x59\xd8\x80\x25\x6d\x48\x37\xc0\x81\xab\xb8\x5b\x05\xa4\x71\xf9\x66\x9a\x2e\x18\x6a\x2c\x2d\x06\x99\x2c\xea\xf6\x99\x46\x15\xcd\xf4\x41\x5b\x91\x7c\xfb\xf4\xa5\x06\x1b\x15\xca\x0b\x8b\xed\x21\x03\xce\x0a\x85\xb9\x20\x79\x0d\x57\x10\xcb\x7d\x87\x5f\x23\xa0\x68\xe6\x46\xa8\x24\x00\xbe\xf3\x88\xe0\x24\x0a\xf4\x1f\xe5\x9d\x04\x25\x99\x00\x5c\x72\x73\x0e\x8c\x7e\xa5\x4f\x9f\x50\xd6\xa1\x64\x3d\x79\x36\x2a\xc3\xda\xf4\x66\xb7\x91\x4b\xa6\xd5\xdf\x4b\x79\x58\x82\xa5\x01\xc9\x40\x6b\x97\x7c\x1a\x73\xcc\x19\xf7\x15\xed\x26\x4a\x75\x6e\xee\x8a\xb9\x9f\xba\x13\xf3\x98\x98\x9c\x3f\x82\x0c\xc5\x7f\x9f\x1a\x0a\xd1\x3e\x35\x54\x1e\x7c\xaa\x52\x55\xb8\x84\x28\xb5\xeb\xd6\xb6\x8a\x2e\x2f\xdf\xc5\x4b\xd5\xe7\x06\x2f\xd1\xb3\xb8\xf8\x88\x9f\xbc\xe2\xf7\x33\x1e\xa5\x7c\xa9\xf9\x59\x50\x42\x51\x1d\x22\x55\x53\x87\x75\x74\x7f\x5b\x57\x7d\xf9\xfd\x23\x78\x41\x3d\xea\xab\x62\xfe\xe8\x59\xc8\xf4\x2a\xdc\xb8\x0b\xb8\x5e\xb5\xd8\x83\x1e\x67\xb8\x63\xbb\xd4\x3a\x08\x61\x79\x21\xef\x62\xa9\x90\xa9\xde\xdb\x31\x66\x8d\x1d\x79\x61\xc2\x31\xa3\x50\x90\xb0\x7e\xf1\xe5\xd2\x36\xc8\xf0\xb1\xbb\x71\x5d\xf5\xc2\xaa\x79\x89\x64\xdf\x41\x79\x9f\xcb\xde\xeb\xd2\x7b\x6c\xd6\x3d\x3c\xb7\xf5\xb6\x96\xeb\xa9\x5a\x04\x23\x71\x86\xc8\x53\xee\x7f\x68\x7b\x1c\xf6\x7f\x44\xac\x36\x8a\xfb\x89\x56\xe5\xa9\x45\xbe\x25\xd1\x3a\xf7\x92\xd4\xb1\x24\xb8\xfd\x40\xc2\x2b\xf0\xfd\xc7\x6c\xad\x5e\x04\x12\x82\x01\xb7\x20\x69\x1d\xdf\x94\x9d\x1f\x2c\x09\x26\x5e\xf3\x8a\x0a\x5d\x70\x9e\xd3\xd4\x26\x0a\x5b\x64\x16\x37\xf1\x16\xf9\x60\x72\xe2\x11\x60\x28\x5b\x97\xf5\x12\x44\xf7\x9f\xfc\x93\x64\x60\xfe\xe9\x10\x24\x21\x0d\x60\xba\xe6\xab\x7b\xcf\x2d\xc8\x01\x2c\xd8\x94\xe2\xa6\xf6\x41\x61\x35\x98\x99\x70\x43\x3e\xc5\xef\xe9\x0e\x2a\xec\x5e\xde\xab\xf9\x36\x8b\xb4\x42\x9a\x60\xee\xde\xfc\xfc\xee\x6c\x00\x39\xb1\xb4\x35\x67\x82\x15\x68\xce\xc4\xc2\x87\xbd\x1b\x1c\x54\xd5\x30\x58\xba\xc1\x42\xb1\x56\x0c\xce\x81\x64\xee\xa9\xf0\x57\x5c\x80\x9d\x54\xb9\x04\xa2\x49\x61\xd5\x71\x12\x0b\xb6\x78\x39\x7c\x54\xba\xd3\xc7\x0e\x3d\xb8\x7f\xfd\x41\xe3\x06\x71\xe1\x99\x13\x24\xb0\x0f\x3a\x14\xc3\x4b\x67\x1a\xc3\x02\xb9\x17\xc1\x72\x44\xe5\xbd\xf3\x70\x28\x35\x59\x91\x40\xe6\x05\x51\xbe\x5c\x7a\x05\xe8\x91\xfc\x8e\x81\x70\x8e\x7b\x93\xaf\x1d\xd4\x5b\x4d\x18\xb5\x5a\x87\x6d\xd6\xe2\xa6\xe1\xe7\x40\x7c\x4b\x03\x1e\x27\xb7\xb7\xa6\xb7\x70\x85\xe6\xcb\xbd\x95\x39\x71\x0a\xfc\xb9\x26\x19\xa8\x81\xf8\x9a\x0d\x42\xab\x76\xdd\xa4\x85\x55\x39\x95\xeb\x18\xbf\x22\xd2\x52\xf6\xc0\xeb\x59\x60\x3d\x87\x60\x2b\xb9\x94\x30\xe0\xe5\xc2\x21\xc6\x4e\xa7\x5e\x1f\x3b\xd4\xc8\x41\xd6\x60\x30\xeb\xea\xba\x74\xc7\x5e\x3a\x9a\x77\x94\x16\x01\xaf\xfa\x7e\xdb\x59\x18\x1d\x3c\xc1\x9f\x9e\xd1\x8f\xc1\x20\xc2\xaa\x74\x24\xa3\x9a\xb6\x15\x8e\x22\x03\xbc\x48\xc2\x34\xc6\x0d\x5a\xf7\xa2\x00\x5c\x37\xa3\x21\x0f\x5e\xb6\x7a\x77\xca\xaf\xe0\xd7\x9a\x14\x8a\x8d\xae\x75\x16\x17\x27\x5b\x66\x28\xdd\x93\x19\x06\x7b\xb2\x79\x8c\xce\x16\xad\x44\x8f\xe4\x3f\x57\xec\xae\xe7\x72\x42\xde\x60\x69\x1d\xd1\x5e\xb1\x93\xcb\xf2\xfa\xe9\xe1\xfd\xd3\xa9\x82\x26\xcb\x98\x78\x6e\x35\x06\x28\x3f\x97\x8b\x5d\xe0\xa3\xf0\xb3\xfc\xd6\x43\x41\x5f\x4d\x63\xb7\x4a\x76\x35\x9e\xda\x3d\x97\x94\x00\x66\xea\xc5\x1f\xeb\x3a\x84\x4f\x13\x42\xf7\xb6\xef\x9a\x87\x05\x86\xa1\xcc\xeb\xd6\x9c\x59\xf5\xe1\x8c\xb5\x5c\xf8\x1d\x38\xe2\x1a\x2c\xe2\x30\x14\xb8\x77\x9f\xb9\x7b\xf8\x08\xc8\x20\x90\x7a\x27\xdf\xc1\xab\x3b\xa9\x6e\x84\x7c\xda\xe2\x5a\x2d\xd9\x1f\x8b\x8f\x90\x41\xd5\x78\x56\xf9\x68\xed\x4b\xd2\x90\x43\x88\x13\xfd\x19\xc1\x54\xb5\xa8\x03\x92\x25\x27\x5b\x6f\x25\x4d\xab\x0c\xbc\x8b\x4d\xa5\x76\xcf\x36\x3b\xbd\xfd\x52\x53\x86\x90\xd6\x32\x80\xd8\xff\x67\x88\x8d\x50\xda\x0c\xd3\x10\x0e\x37\x70\x01\x0f\xc6\x34\x9c\x46\xcb\x6a\xb6\xcc\xc0\xb7\xb3\x51\x6f\x9d\x5e\xac\x33\x62\xbe\xd2\x0f\xf9\xdc\x25\xbf\x09\xee\x3f\xda\x9d\x5f\x3d\xe0\xb1\x73\xd5\xc0\x97\x29\x0a\x41\xf4\x58\x1e\x20\x6e\xcb\x3a\x88\x35\x2f\xbf\xa2\x42\xd1\xc3\x7f\xdf\xf9\x07\xfe\xf8\x3e\xcc\xde\x67\x8d\xdd\x33\xb3\xa8\x95\x1d\xfc\xe5\x10\x6f\xf0\x48\x62\xd7\x2e\xbe\x1d\x96\xe5\x43\x9f\x18\x8c\x33\xff\xcd\x2a\x96\x31\xda\x83\xbc\xbf\xeb\x23\xb8\xf2\x3b\x18\xdf\xb7\x72\x32\xf1\xad\x8c\xf4\x4f\xc1\x2b\xb5\xf1\x0b\xc2\xf6\x16\xef\x57\x54\x30\x78\x38\xd8\xbf\xc4\xfb\x35\x9d\x90\x61\x0c\x9f\x9f\xb4\x39\x8b\x9e\x6e\x0b\x2b\xd4\x57\x25\xf7\x0c\x6a\x54\x9d\x8c\xed\xab\x6b\xd3\x11\x0e\xab\x73\x03\xfd\xfa\xee\x0d\xde\x51\x0e\xde\x8a\x6e\xea\xaf\xc1\xdb\xe4\x13\x7b\xbf\xeb\x53\x80\x5f\xdd\x2d\x17\xa5\x59\xe9\xd4\x7e\x0f\x56\x8d\xd0\xfe\x34\xe1\xfb\x85\x84\xd0\x6d\x1c\x2c\xc1\xd3\x3b\xfd\x08\xbb\x01\x6a\x0f\x9f\x4c\x1e\xaf\x88\xc1\x1a\xb2\x87\x56\xf5\x4d\x4c\xf0\x5f\x49\xae\x3a\x7d\xd2\x4c\xec\x70\x8f\xdd\x43\x9d\xc4\x0f\xfa\xa6\x59\x7f\x4c\xf2\x25\x0f\x89\xfe\x4f\x78\x05\xeb\xad\x48\x2c\x66\xfa\x4c\xe4\x27\x7f\x7d\xc7\x35\x7f\xa7\x51\x48\x39\xb2\xfb\x77\x1b\x24\x90\xf2\xce\x7b\x18\x27\xac\x90\xb0\xe2\xd0\x64\xfc\xb3\xc0\xcf\x22\xbf\xc3\xaf\x5b\xfc\xba\x2d\xcb\x4f\x52\x18\xcc\x99\x8a\x37\x35\xc9\xa8\x9c\x72\x87\xdf\x77\xfc\x04\x1d\xe2\xc6\x2f\x10\xed\x14\x2f\xfd\xd9\x0f\xbc\xe7\x57\xe3\x10\x03\xe9\xf6\x83\xd2\xb9\x55\x4d\x95\xcf\xc7\xec\x99\x76\xa7\x49\xf8\xe2\x07\xa8\xa8\x79\x4d\x92\xcf\xc7\xd8\x53\xfb\x95\x55\x28\xdf\x94\xca\xfd\xd0\x44\xf9\xa4\xb4\x36\xbf\xcd\x7c\xbf\xf4\x0b\xa9\xbe\x57\xfa\x45\xe8\x2d\xda\x66\xcb\x2f\x79\x7c\x4c\xec\x11\x2e\xff\xfa\xd6\x09\xe5\x99\x73\x28\x87\x13\x62\x83\x29\xde\xb2\xe1\x53\xa7\x2d\xc7\xb9\x98\x25\xf6\xe8\x5e\x55\x6f\x77\xce\x06\xe6\x1f\x7c\x14\x30\x1f\xeb\x54\xae\xc6\xf1\xab\xfd\x09\x2c\x6c\x1c\xc2\x68\x0e\x81\x09\xb6\x35\xd6\x72\xd3\xa7\xff\xf8\x07\xe0\xe9\xfb\x9f\xff\x4c\x4f\x5f\x3e\x4b\xcb\xcf\x1c\x76\xbc\x4b\x37\xea\xff\x61\x60\xf4\xfb\x55\x04\xc9\x51\x39\x70\x63\x49\x1d\x0e\xe4\xc6\x12\x9a\x4f\xfe\x5f\x00\x00\x00\xff\xff\xb6\x51\x97\xa5\x49\xc9\x00\x00") func confLocaleLocale_enUsIniBytes() ([]byte, error) { return bindataRead( @@ -4361,7 +4361,7 @@ func confLocaleLocale_enUsIni() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "conf/locale/locale_en-US.ini", size: 51479, mode: os.FileMode(420), modTime: time.Unix(1468718350, 0)} + info := bindataFileInfo{name: "conf/locale/locale_en-US.ini", size: 51529, mode: os.FileMode(420), modTime: time.Unix(1469259799, 0)} a := &asset{bytes: bytes, info: info} return a, nil } diff --git a/public/css/gogs.css b/public/css/gogs.css index 1a513b684..0be12be47 100644 --- a/public/css/gogs.css +++ b/public/css/gogs.css @@ -1968,6 +1968,9 @@ footer .ui.language .menu { .repository.new.release .target { min-width: 500px; } +.repository.new.release .target #tag-name { + margin-top: -4px; +} .repository.new.release .target .at { margin-left: -5px; margin-right: 5px; diff --git a/public/less/_repository.less b/public/less/_repository.less index da28528d3..023fab0ef 100644 --- a/public/less/_repository.less +++ b/public/less/_repository.less @@ -954,6 +954,10 @@ .target { min-width: 500px; + #tag-name { + margin-top: -4px; + } + .at { margin-left: -5px; margin-right: 5px; diff --git a/routers/repo/release.go b/routers/repo/release.go index 8985cdb8f..4aeec2b8d 100644 --- a/routers/repo/release.go +++ b/routers/repo/release.go @@ -188,10 +188,13 @@ func NewReleasePost(ctx *context.Context, form auth.NewReleaseForm) { } if err = models.CreateRelease(ctx.Repo.GitRepo, rel); err != nil { - if models.IsErrReleaseAlreadyExist(err) { - ctx.Data["Err_TagName"] = true + ctx.Data["Err_TagName"] = true + switch { + case models.IsErrReleaseAlreadyExist(err): ctx.RenderWithErr(ctx.Tr("repo.release.tag_name_already_exist"), RELEASE_NEW, &form) - } else { + case models.IsErrInvalidTagName(err): + ctx.RenderWithErr(ctx.Tr("repo.release.tag_name_invalid"), RELEASE_NEW, &form) + default: ctx.Handle(500, "CreateRelease", err) } return diff --git a/templates/.VERSION b/templates/.VERSION index 545d7828f..44624fa63 100644 --- a/templates/.VERSION +++ b/templates/.VERSION @@ -1 +1 @@ -0.9.48.0722 \ No newline at end of file +0.9.49.0723 \ No newline at end of file diff --git a/templates/repo/release/new.tmpl b/templates/repo/release/new.tmpl index e334ee749..9f947fa26 100644 --- a/templates/repo/release/new.tmpl +++ b/templates/repo/release/new.tmpl @@ -19,7 +19,7 @@ {{if .PageIsEditRelease}} {{.tag_name}}@{{.tag_target}} {{else}} - + @