diff --git a/README.md b/README.md index 68c583089..6e71030c6 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.84 (see [Releases](https://github.com/gogits/gogs/releases) for binary versions) +##### Current tip version: 0.9.85 (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 9bf756beb..eac083d97 100644 --- a/conf/locale/locale_en-US.ini +++ b/conf/locale/locale_en-US.ini @@ -447,6 +447,7 @@ cannot_edit_binary_files = Cannot edit binary files filename_help = To add directory, just type it and press /. To remove a directory, go to the beginning of the field and press backspace. fork_before_edit = You must fork this before editing new_branch = new branch +editor.file_delete_success = File '%s' has been deleted successfully! editor.commit_directly_to_this_branch = Commit directly to the %s branch. editor.create_new_branch = Create a new branch for this commit and start a pull request. editor.filename_cannot_be_empty = Filename cannot be empty. diff --git a/gogs.go b/gogs.go index fbf849254..acc7b5456 100644 --- a/gogs.go +++ b/gogs.go @@ -17,7 +17,7 @@ import ( "github.com/gogits/gogs/modules/setting" ) -const APP_VER = "0.9.84.0824" +const APP_VER = "0.9.85.0824" func init() { runtime.GOMAXPROCS(runtime.NumCPU()) diff --git a/models/repo.go b/models/repo.go index c8ac58488..728f8c59e 100644 --- a/models/repo.go +++ b/models/repo.go @@ -2260,7 +2260,7 @@ func (repo *Repository) GetForks() ([]*Repository, error) { // // uploadRepoFiles uploads new files to repository. -func (repo *Repository) UploadRepoFiles(doer *User, oldBranchName, branchName, treeName, message string, uuids []string) (err error) { +func (repo *Repository) UploadRepoFiles(doer *User, oldBranchName, branchName, treePath, message string, uuids []string) (err error) { repoWorkingPool.CheckIn(com.ToStr(repo.ID)) defer repoWorkingPool.CheckOut(com.ToStr(repo.ID)) @@ -2276,7 +2276,7 @@ func (repo *Repository) UploadRepoFiles(doer *User, oldBranchName, branchName, t repo.CheckoutNewBranch(oldBranchName, branchName) } - dirPath := path.Join(localPath, treeName) + dirPath := path.Join(localPath, treePath) os.MkdirAll(dirPath, os.ModePerm) // Copy uploaded files into repository. @@ -2298,7 +2298,7 @@ func (repo *Repository) UploadRepoFiles(doer *User, oldBranchName, branchName, t } if len(message) == 0 { - message = "Add files to '" + treeName + "'" + message = "Add files to '" + treePath + "'" } if err = git.AddChanges(localPath, true); err != nil { diff --git a/models/repo_editor.go b/models/repo_editor.go index bbe2ac04b..e89ad0a40 100644 --- a/models/repo_editor.go +++ b/models/repo_editor.go @@ -173,7 +173,7 @@ func (repo *Repository) UpdateRepoFile(doer *User, opts UpdateRepoFileOptions) ( } // GetDiffPreview produces and returns diff result of a file which is not yet committed. -func (repo *Repository) GetDiffPreview(branch, treeName, content string) (diff *Diff, err error) { +func (repo *Repository) GetDiffPreview(branch, treePath, content string) (diff *Diff, err error) { repoWorkingPool.CheckIn(com.ToStr(repo.ID)) defer repoWorkingPool.CheckOut(com.ToStr(repo.ID)) @@ -184,13 +184,13 @@ func (repo *Repository) GetDiffPreview(branch, treeName, content string) (diff * } localPath := repo.LocalCopyPath() - filePath := path.Join(localPath, treeName) + filePath := path.Join(localPath, treePath) os.MkdirAll(filepath.Dir(filePath), os.ModePerm) if err = ioutil.WriteFile(filePath, []byte(content), 0666); err != nil { return nil, fmt.Errorf("WriteFile: %v", err) } - cmd := exec.Command("git", "diff", treeName) + cmd := exec.Command("git", "diff", treePath) cmd.Dir = localPath cmd.Stderr = os.Stderr diff --git a/modules/auth/repo_form.go b/modules/auth/repo_form.go index 2eaefc544..e9e60c672 100644 --- a/modules/auth/repo_form.go +++ b/modules/auth/repo_form.go @@ -278,7 +278,7 @@ func (f *NewWikiForm) Validate(ctx *macaron.Context, errs binding.Errors) bindin // \/ \/ type EditRepoFileForm struct { - TreeName string `binding:"Required;MaxSize(500)"` + TreePath string `binding:"Required;MaxSize(500)"` Content string `binding:"Required"` CommitSummary string `binding:"MaxSize(100)` CommitMessage string diff --git a/modules/bindata/bindata.go b/modules/bindata/bindata.go index 84a5af758..804f16fa1 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\xfb\x72\xdb\x48\x92\x2f\xfc\x3f\x9e\x02\xed\x09\x87\xed\x08\x99\x1d\x3d\xb3\xdf\x25\x3a\xfa\xf2\xa9\xe5\xf6\x65\xd7\xb2\xb5\x96\x7a\xe6\x9b\xd3\xe1\x60\x83\x24\x44\x62\x4d\x02\x1c\x00\xb4\xac\x99\x98\x37\x38\x0f\x70\x9e\xef\x3c\xc9\xc9\xfc\x65\x66\x55\x16\x00\x4a\x76\xcf\xfa\x0f\x8b\xa8\xca\xba\x67\x65\xe5\xad\xb2\x8a\xfd\x7e\xbe\x2a\xbb\x65\xfe\x7d\x7e\x9a\xef\x8b\xaa\xde\x96\x5d\x97\x77\xe5\xf6\xfa\xe9\xa6\xe9\xfa\x72\x95\xbf\xa8\x7a\xfa\x6e\x3f\x56\xcb\x32\xcb\x36\xcd\xae\x24\xd0\x97\xf4\x27\x5b\x15\xdd\x66\xd1\x14\xed\x8a\x12\x9e\xd9\xef\xac\xfc\xb4\xdf\x36\x2d\x03\xfd\x2c\xbf\xb2\x4d\xb9\xdd\x73\x19\xfa\x93\x75\xd5\xba\x9e\x57\x35\x7d\x5e\xd2\xaf\xfc\x55\x2d\x29\xcd\xa1\xb7\xa4\xb7\x87\x5e\xd2\x0e\x7b\x4b\xfa\x65\x9f\xb5\xe5\xba\xa2\xde\xb4\x94\xf4\x4e\x7f\x66\x37\xe5\xa2\xab\x7a\x6e\xe9\x2f\xf2\x2b\xfb\x58\xb6\x5d\xd5\x70\xed\x7f\x96\x5f\xd9\xbe\x58\x33\xc0\x05\xfd\xc9\xfa\x72\xb7\xdf\x16\x28\x70\xa5\x3f\xb3\x6d\x51\xaf\x0f\x02\xf3\x5a\x7f\x66\xcb\xb6\xa4\xac\x79\x5d\xde\x50\xea\x19\x3e\x66\xb3\x59\x76\xa0\x49\x98\xef\xdb\xe6\xba\xda\x96\xf3\xa2\x5e\xcd\x77\x32\xcc\x5f\x28\x3d\xd7\xf4\x9c\xd2\x73\x4e\xc7\x10\xca\x15\x0d\x75\x5e\x74\x3a\x0e\x9a\x4b\x1a\x79\xd1\x65\xa8\xaa\x2e\x76\x56\x9a\x7f\x66\xe5\xae\xa8\xb6\x3c\x6b\xfc\x97\xfa\xdd\x75\x37\x0d\xa6\xf6\x42\x7f\xd2\x1c\xcc\xfb\xdb\x7d\x89\x29\x78\x7a\x45\xbf\xb2\x65\xb1\xef\x97\x9b\x82\xbb\x29\xbf\x32\x02\xda\x37\x34\x17\x4d\x7b\x0b\x38\xfb\xc8\x9a\x76\x5d\xd4\xd5\xdf\x8b\x5e\xe6\xe7\xad\xfb\xcc\x76\x55\xdb\x36\x3c\xb5\xe7\xf8\x91\xd1\xc8\xe7\x5c\x0f\xa5\xbc\xa1\x49\x70\xb5\x70\xce\xae\x5a\xb7\x32\x8b\x9c\x79\x8e\x2f\xae\x45\xf2\xb4\x26\xc9\x0a\xb5\x5d\x37\xed\x07\x4d\x7d\xce\x3f\x07\x55\x52\xe7\x34\x37\xed\x57\x51\xd3\x7a\x68\xee\x39\x3e\x12\x80\x2e\x2b\x56\x3b\x9a\xe1\x7d\x51\x97\x3c\x75\xa7\xfc\x45\xf3\x45\x5f\x59\xb1\x5c\x36\x87\xba\x9f\x77\x65\xdf\x57\xf5\x9a\xd7\xe0\x54\x92\xf2\x4b\x4d\xca\x5c\x5e\x48\xbb\x6d\x0e\x61\x95\x29\xfd\xaf\xf4\x99\x5f\xc8\xa7\xe4\xb9\x42\xc8\x0c\x25\xa9\xc9\xbe\xfa\x58\xf5\x55\x29\x8d\xd9\x47\xb6\x3f\x6c\xb7\x34\x9f\x7f\x3b\x94\x5d\xcf\x59\x17\xf4\x4d\x33\x20\xdf\x59\xd5\x75\x07\x94\x78\x85\x1f\x19\x2d\x6a\xbd\xc4\x70\xce\xf0\x23\xcb\x7e\xad\xea\xae\x2f\xb6\xdb\xf7\x99\xfe\x60\x60\xf9\x25\xf3\xd4\x57\x3d\x3a\xab\x89\xf9\x65\x5f\xee\x3b\x9e\xe8\xfc\x79\xd5\x76\xfd\xd3\xbe\x22\x54\x7b\x77\xa8\xb3\x55\xb3\xfc\x40\x48\xcc\x1b\x12\x5b\xe9\xd5\x75\x4e\x63\x7a\x44\x68\xdc\x1e\xea\x9a\x46\x91\xbf\x68\x68\x64\xd4\x4c\xb5\x2a\xf3\x67\x80\x3e\xc9\xf7\xdb\xb2\xe8\x08\xa4\x2c\x56\xf9\x77\x45\xde\x17\xed\xba\xec\xbf\x7f\x30\x5f\xd0\xe6\xf9\xf0\x20\xdf\xb4\xe5\xf5\xf7\x0f\x1e\x76\x0f\x7e\x78\x71\xa0\x62\xdb\xaa\x2e\xbb\xef\xbe\x2e\x7e\xc8\x97\x05\xe5\xd0\x58\x6f\xf3\x45\x79\xcd\x7b\x85\xda\xca\x09\x49\xeb\x35\xef\x93\xdb\x7e\xc3\x0d\xd2\x82\xd1\x8f\x2e\xe7\x8d\xfa\x55\xc6\xb3\x44\x1b\x79\xbe\x5a\x18\x51\x42\x87\x90\xdc\xd2\x2c\x9d\xdf\x5e\xfe\xe7\xeb\x93\xfc\x82\x28\xd3\xba\x2d\xf1\x9b\xfe\xa3\x12\x7f\xca\x69\xb4\x57\xd5\xb3\x9f\x66\x19\x95\xb5\x09\x79\x56\xf4\xc5\x82\xfb\x1e\x16\x89\x33\x65\x0f\x85\x3c\xec\x24\xa6\x75\xa0\x6b\x5d\x8f\xdd\xa9\x3b\x73\x72\x1f\x52\x1d\xba\x79\x43\x1d\x6f\x78\x07\x53\x7a\x98\xd9\x0b\x99\x33\xaa\x2a\x7f\xf5\xe6\xcd\xdb\x67\x3f\xe5\x65\xbd\xa6\x99\xc9\x6f\xaa\x7e\x93\x1f\xfa\xeb\xff\x77\xbe\x2e\xeb\xb2\x2d\xb6\xf3\x65\xc5\x93\xd2\x12\x5e\xe5\x34\x4b\x32\xc4\x59\xd6\x75\x5b\x22\x30\x2b\x6e\xe5\xf2\xf2\x75\x7e\x4e\x3f\xa9\x33\x54\x96\x3b\xd2\x6f\xb2\xee\x6f\x5b\x9e\xa8\xd0\xe0\xd5\xa6\xcc\x81\xb3\x00\x6a\xae\x87\xf3\x92\xaf\xb4\xaf\xb3\xfc\xbb\x45\xfb\x83\xeb\x5f\xb1\xe8\x9a\xed\xa1\xd7\x92\x37\x9b\xb2\xc6\x42\x11\x2a\xb5\x3d\x51\x2b\xa3\xfd\xb3\xac\x6c\xdb\x39\xd1\xcd\xfe\x96\x97\x47\xfb\x72\xac\x15\xa9\x8c\x50\xb9\x6e\x7a\x5a\xfe\x1c\xe5\xa4\x8a\xaa\xfe\x58\x6c\xab\x15\x2d\x52\x9c\xc8\xb4\x2c\x12\x57\x0d\xad\x37\x97\x26\x8c\x6e\x6e\x30\x45\xb4\xc1\x88\xac\xe7\x0f\x66\x0f\x40\x67\x1f\x3c\x7d\x30\xcb\xea\x66\x2e\x44\x80\x29\xf2\xaa\xea\x8a\x05\x51\x67\x39\x2d\x5a\x23\x76\x7f\x65\xbc\x93\xae\x28\x44\x9e\x40\xf0\x9a\xf0\x09\x04\xc2\xcf\x48\x59\x10\x99\x06\x2d\x51\x2a\xe2\xc7\x6e\x24\x27\xe0\x85\x50\x9d\x90\x30\x1a\x73\x66\x0b\x6d\x58\x79\xba\xdf\x6f\xab\xa5\x34\xfd\x42\xf2\x22\x82\xf2\x79\xac\x93\xe2\xe1\x80\x60\x96\xe7\xd0\x8c\x7a\xcd\x54\x29\x4f\xc8\x3b\xca\x6f\x4a\xda\x71\x9b\xc3\x5a\xce\xa4\x6d\x73\x58\x7d\x85\xc3\xc1\x56\x2e\x92\xe0\xfc\x5d\x43\x1d\x06\x56\x05\x80\xd8\xc4\x29\x11\x14\x66\x01\xda\x72\xd7\xf4\x3c\x71\x5a\x8c\xc9\xdc\x4d\x45\x99\x34\xd2\xae\xf8\x48\x87\x5b\xdf\xc8\x56\x5e\xd1\x56\x5d\x72\xc5\xb3\x8c\xc8\xca\x5c\xb7\x13\xd1\x1f\xd9\x52\x96\x96\xe2\x2e\xa0\x76\x07\xda\x85\x1b\xaa\x8c\x27\x9e\xf9\x10\xaa\x72\xaa\x9f\x18\x12\xd5\x03\xea\x40\x3b\xbe\xa1\x33\x93\x17\xfa\x19\x7e\xe8\xb7\xaf\x9f\x7a\x55\x5c\x5f\x53\xaf\x3a\xda\x4d\x2f\xf3\xe5\xb6\xa1\xad\xf8\xcb\xbb\xd7\x1d\x6f\xb4\xcd\x7c\xdf\xb4\xe0\x3f\x28\xeb\x82\x7e\x86\x34\x37\xd1\x0c\x51\x1f\x76\x0b\xfa\xba\xd9\x54\xcb\x8d\x4c\x3b\x97\xe0\xfd\x41\xa9\xd4\xc4\xa1\xa3\x25\x3c\xc9\x69\x6b\xd1\x08\x68\xca\x80\x00\x3c\x06\xc3\x3a\x06\xbf\x26\x1c\x3b\xb4\xb4\x9d\x36\x7d\xbf\xb7\x96\x5f\x5e\x5d\x5d\x48\xd3\x21\xf5\xae\xb6\x0b\x87\x19\x58\x83\x2d\x73\x44\x75\xde\xd4\x33\x20\xc9\xa1\xdd\x0e\xf0\x87\xc6\x6a\x39\x47\xe6\x85\xbb\xf0\x35\xff\x77\x19\xa7\x07\xf3\xdc\x11\xaf\x77\x03\x6c\xa2\x39\x06\x97\x32\xcb\xb6\xcd\x7a\xde\xd2\x6a\x18\x32\xbd\x6e\xd6\x82\x40\x49\x46\x6c\xe9\x99\xa1\x04\xcf\xc6\x4d\xcb\x5c\x1b\x41\x82\x60\xf1\x22\xd3\x26\x69\xf6\xdc\x4f\xb7\x4b\xde\x6a\x42\xdc\x1a\x68\x3b\xe4\x83\x4f\xa2\x4c\x10\x27\x77\xa6\xef\x68\xfe\x94\x9a\x5f\x9e\xd3\xac\x82\xa4\x23\xf5\xba\x6d\x76\x94\xfa\x9c\xfe\xc4\x84\xd8\xc7\x73\xae\x0f\x30\xc5\x6a\x45\x87\x4d\x77\x92\xbf\x7b\x7e\x96\xff\x5f\x7f\xfa\xe3\x1f\x67\xf9\xab\x9e\x37\x36\xe3\xfa\x7f\x31\x8e\x16\x3a\x13\x11\x94\x08\x60\x4f\x68\xfc\x80\x37\xea\x83\xfc\x3b\xe4\xfe\x7f\xe5\xa7\x82\xf8\xcc\x72\xb6\x6c\x76\x3f\x30\x71\xdf\x15\x44\x4a\x38\x87\xb0\x5f\xb7\xc5\x65\x59\xaf\xe8\x87\x70\x7d\x9a\xe5\x88\x8b\x66\x3b\x1e\x50\x98\xdf\xf9\xb2\xa9\xaf\xab\x96\xc7\xf3\x73\x0d\xdc\x32\xb6\x38\x3f\x93\x1c\x63\xa1\x68\xca\x88\x1e\x55\xd7\xb7\x11\x14\x23\x7d\xc3\x89\x8a\x1e\x99\xe0\xf0\x5c\x49\x7d\x98\xe3\x4b\x41\x6d\xc6\x82\xb7\x34\xba\xd6\xa6\xbb\x8b\xf3\xdd\x5c\x5f\xf3\x89\x6f\x67\x95\xb6\xf0\x56\x52\xe5\xd8\xf2\x20\x84\xda\x7b\x30\xf6\xcf\x74\x4b\x9c\x3d\x7b\x93\x97\x1f\x09\x77\x99\x86\xb6\xcd\xea\xb0\x04\xbe\x32\xec\x09\x93\x7e\x22\x38\x1d\xed\xb4\x65\xa9\xc8\x12\x48\x0e\x77\x8d\xe9\xda\x92\x80\x88\xd2\x18\xe9\x27\x6e\xf4\x23\x9d\x23\xad\x6b\xe2\x85\x25\x69\xef\x47\xb0\xa3\x4e\x85\x12\x3c\xf2\x25\x2d\x38\x21\x85\xf4\xa2\x93\x4e\x49\x36\x6d\x1e\xda\x15\x07\x92\x72\x8a\x15\xf5\x65\x71\x0b\x2a\xd6\x31\x2e\xac\xca\xeb\xe2\xb0\xa5\xd5\xbe\x2e\x69\xfd\x88\x5d\x5e\xcd\xb5\xad\x6d\xd3\x7c\x40\x63\x3a\x55\xcf\x0d\x20\x3f\xd5\x4a\x5f\x03\xe2\x58\xc9\xd0\x59\x2d\x1f\xc0\x42\xa7\xb4\x05\xda\x69\x7c\xbc\xc7\xfc\x66\x4f\xd3\xac\x93\xa9\x2b\x9d\xf3\x79\x4b\x39\x35\x51\x90\x85\x0e\x3a\xce\xe5\xe0\x18\xb5\xd9\xb9\x64\xe1\xd0\xe7\x4d\x16\x18\x4d\x2a\x10\xbe\x1b\x96\xa5\x9d\x53\x13\x87\x28\xc7\x2d\x6f\x31\x91\xbe\xec\xe4\x25\x02\x5d\x62\x9c\xf3\x28\xeb\xe8\xc0\x4d\xe4\x49\xf3\x43\xb3\xef\x84\x67\xcc\xc1\x6c\x70\x8d\x56\x01\x33\x59\xd3\x7d\x99\x65\xca\x68\xce\x55\x4c\x9d\x7f\xac\x20\x04\x86\x2d\x26\x55\xaa\xe8\xca\x33\xfc\x67\x06\x60\xe9\xb2\x9b\x2c\x1b\x7a\xf3\x96\x07\xd9\x05\x21\x50\xf0\x84\x87\x8b\x16\x98\xf9\x25\xcc\xfa\x58\xe1\xa0\x53\x24\xc7\xbc\x2c\x98\x3f\xa3\xa6\xa9\xa9\xae\x2c\x51\x03\x95\xff\x9a\xea\x44\x99\x99\x4a\x40\x2a\x94\x18\xd3\xcc\x0c\xcf\xaa\x01\xf7\x84\xd3\x94\x4a\xdb\xb4\x0e\x38\x9b\xbc\xad\xd6\x1b\x3a\x5d\x9a\x9b\x13\x99\x94\x9b\x4d\x53\xf2\x9e\x7f\xf5\xec\xfb\x6f\xa4\x1f\x6b\x3e\x5b\x43\x21\x3e\x95\x8b\x03\x6d\x08\x9a\x31\xdd\x7a\xd2\x85\xc0\xdd\x00\x72\x24\x6b\x09\xd0\x50\xe8\x1d\x31\x53\x81\xd0\x29\x7d\xf3\x79\x4a\xd8\x22\x8c\x94\x36\xc1\x59\x1a\x16\x42\xaa\x82\xd2\x7c\xdd\x40\x50\x33\xc1\x88\xd9\x85\xac\x27\xb1\x6b\xbe\xae\xfa\xf9\x35\x53\x5b\xae\xf8\x39\x57\xc0\xdc\x0b\xe5\xe4\x8f\x28\xeb\x51\x4e\x14\x9b\xa4\xcf\xd5\xb7\xf9\xc3\x8f\xca\x6a\xff\x89\xc9\x28\x6f\xc5\x6a\x8b\x15\x51\xf1\xaf\x2d\x85\x93\x36\xd5\x43\x60\x5b\xbb\xc3\x1e\x87\xbb\x72\xc8\x41\x8c\x5a\x35\x37\x35\x13\x0c\x1c\x17\x44\x1a\xab\x65\x45\x87\xdc\xa2\xaa\x0b\x3a\x1d\xad\x16\x1c\x43\x0f\x09\x25\xde\xbc\xbd\x02\xe0\xba\x59\x1c\xaa\xed\xca\x00\x66\x99\x71\xd1\xc4\x43\xeb\xe2\x7b\x79\xc4\x92\x2a\xe9\xcb\xb2\x69\xf9\xfc\xc5\x68\xac\xe0\x11\x5e\x90\x0f\x6f\x61\xde\x2b\x16\x04\x01\x8b\x72\x81\x6d\xe3\x69\xa0\xd5\x5f\x6e\x94\xa9\x03\xda\x54\x5d\xfd\xa8\x47\x4f\x97\x07\x6a\x8b\x56\x9e\x93\xa9\x60\x97\x3f\xfd\x81\xfe\xcf\x98\x45\x94\x43\x6b\x3d\x9e\x78\xce\xcc\x25\xf3\x20\x5b\x31\xe9\x6a\x82\xe3\x61\xa5\x0d\x83\xdd\x58\x7d\x7f\x0d\x05\xba\x83\x20\x2d\x6b\x89\xb6\xb4\xac\xe5\x57\xf4\x83\x45\xde\xf5\x16\x8b\x50\xf4\x2a\x97\x36\x34\x6f\x8c\x20\x27\xb2\x67\xae\x69\x68\x4c\xfe\xfb\xe2\x43\x09\x51\x36\xce\xf9\x14\xf7\x73\x74\xde\xb2\x5f\x59\x67\xf6\x3e\x3b\x08\xe7\xde\x6c\x57\x41\xba\xc4\x6e\x20\x6a\x54\x26\x2a\x9f\x08\x13\x10\xbd\x23\x09\x65\xb9\x99\x07\x85\x1b\x4f\x64\x5f\x7e\x02\x8f\x83\xac\xa8\x7f\xe3\x5d\xc2\x59\xd9\xee\x16\x4b\xcc\x03\x3f\xbf\x8d\x2b\xcc\x0a\x89\x6e\xd3\xdc\x40\x7b\x15\x20\x2e\x29\x05\x7a\xab\x84\xbf\x67\xad\xd7\xb2\xd9\x12\xbe\x37\xbc\x2a\x1f\x23\xfc\x99\x4f\x4d\x2b\xa7\x76\x49\x18\xd1\x66\x53\x6d\x0d\x65\x89\x82\x48\x73\x45\x41\xd4\x65\xa0\x94\xaa\x59\x04\x41\x25\x7c\x51\xbd\xc8\x8c\x16\x1e\x6a\x17\x6b\xf9\x55\x2d\x9c\xb7\xef\x27\xcd\xb1\x6a\x1d\xdf\x67\x06\x97\xf4\x49\xc8\xad\x4c\x3a\xab\x7d\x8a\x16\xd8\x7b\x89\x1f\x54\x9a\x08\xda\xe6\xbd\xd3\xfb\xcd\x0d\xb7\x4c\xff\x07\xdd\x94\xd2\xb4\xc8\x83\x6d\xca\x3d\xb3\x6b\xbb\x0e\x48\xb9\x65\x05\xc9\xad\x8a\x2f\x01\x3d\x7f\x94\xd3\x82\xf0\x95\x68\xec\x57\x59\xd7\xf0\x76\x9f\x7f\x61\x15\x3f\x55\x84\x88\x28\x9f\x9e\xb4\xa2\x90\x24\x29\x83\x07\x43\x7b\xfc\xf6\x24\x15\x6c\x37\x24\xbe\x2f\x4a\x3a\xf5\xb5\xd8\x6a\x66\x8a\x09\x46\x20\x12\xa7\xb1\x63\xa1\x44\xc5\x1e\x93\x92\xcd\x88\x05\xe0\x1e\x0a\x91\xd5\x56\x02\xb3\x09\x56\xd2\x73\x9c\x13\x6d\xd2\x84\xed\x4a\x96\x5e\xe6\x3b\x51\x5e\xca\x57\x7e\x5e\x66\x74\x16\xaf\xb1\x8f\x04\xd1\xbf\x67\xa5\xd5\x1a\x42\x9e\x62\x3e\x03\x94\xbd\x3f\x05\x14\xc2\x52\x7e\x34\x65\x31\xd1\xa5\x1b\x28\x11\x99\x13\x1a\x4e\x3f\x9d\x97\x94\x3d\xb3\x53\x45\x18\x14\xf0\xc6\x1d\xd1\xaa\x38\x89\xa7\x39\x6b\x7d\x3d\x94\xf2\xf9\x61\x54\x0c\xcf\x24\xeb\xbb\xc5\x0f\x0f\xbb\xef\xbe\x5e\xfc\x10\x08\xfb\x72\x53\x2e\x3f\x08\x72\x56\xf5\xa2\xf9\x04\xb5\x02\xd4\x5b\x25\xd5\x4a\x9b\xf5\xe1\x2a\xdf\x50\x2e\xa4\x5a\x22\x44\x54\x8c\xe6\x9d\x73\x93\x35\xa3\xbe\x30\xbd\x9a\x89\x3a\xb1\x14\xec\x8f\xf8\x08\xbd\x22\x63\x24\x4e\x1f\x43\x49\x2a\xb4\xa9\x16\x74\xa6\x11\x69\x82\x24\xfc\x1a\x7f\x2f\x34\xb9\x5c\x0d\x20\x1c\xa3\xd0\x06\x42\xca\x5a\xb8\x50\x80\x3b\x09\xd0\x38\x3e\x45\x99\x88\x2e\xbc\xb2\x98\xbf\x6d\xb5\xab\xfa\x11\x2a\x32\x59\x2d\x14\xa5\x55\xfd\x69\x6b\x83\x31\xc4\xd9\xa5\xc3\x89\xaa\x21\x5e\xc2\xd0\xf3\xa6\x20\xf1\xf9\x4f\x39\xb5\x71\xe8\x59\x42\x64\xa5\x54\x4f\xa7\x53\xc1\xcc\x08\x89\xce\x45\x37\x3f\xd4\xba\x4c\xc4\x20\x2b\x72\xbe\xac\x70\x66\x72\xbb\xb6\x85\x1c\x54\x2a\xb1\xe5\x8f\xc3\x0a\x3e\x99\xa9\x22\x14\xa5\xf8\x1c\xe3\xfe\x54\x2c\x5e\x14\x53\xb8\x40\x14\xbb\x2e\x65\x86\x30\x7e\x06\x63\xb4\x21\xa1\x39\x4e\x16\x49\xde\x1f\x98\xaf\xe6\xf5\x5d\x1c\xfa\xbe\x61\xe1\x71\xcb\x38\x28\x65\xac\xcf\x67\x00\x84\x78\x1d\xeb\xbb\x95\x65\x49\x67\x49\xe5\x5f\x70\x21\x1d\xe8\x88\x98\x32\x58\x88\x4f\x87\xa6\xa7\x7e\x80\x5a\x89\xd6\xb1\xa8\x6f\xa3\x42\x0b\x7d\xe0\xe6\xfa\xe9\x9e\x3c\x6e\xcb\x27\xb1\x2f\x61\xff\xa1\x84\xf6\x47\x4a\xbb\xad\xf9\x0e\x99\xa2\x32\xb7\x0d\x6c\x67\xe6\x52\x75\x99\x01\x35\xda\x74\x6a\x91\xcf\xbb\x8c\x28\x39\x71\xd1\x2b\xcc\x32\x0d\x02\xa5\x67\x83\xb6\xa2\xd0\x3e\x9e\xbe\x3e\xed\x71\x3c\x56\xfb\xa6\x99\xd3\xc9\x07\x7d\x8b\x75\x2f\xdf\x96\xf5\x3a\x51\x54\xc2\xfc\x05\x7c\xfb\xbf\x59\xb9\x58\xcf\x21\x61\xba\x0d\xf8\xa6\xa9\x9f\x22\x2d\x88\x28\x56\x5a\x55\xdb\xd6\x20\x57\xd3\x36\x87\xf5\x46\xb5\x54\xd9\xaf\x3c\x6b\xef\x33\x5d\xd7\xd2\xd5\xa9\x58\x6f\x39\xb6\xfe\xb2\xb7\x03\xbc\x31\xba\x7f\x2e\x5b\x16\xe7\x01\x94\x2c\xfc\xb1\x15\x49\x27\x24\x90\xf4\xc8\x19\xbd\xf3\x04\x48\x93\xaf\x0f\xdb\x93\xfc\x46\x58\xa6\x58\x26\xa8\x12\x94\x99\x62\x14\x17\xbb\x1f\x0d\xaf\x59\x15\x34\xbe\x5b\x58\x33\xfe\x4a\xc7\x6e\x0d\x0b\x52\x93\x51\x86\x14\x3a\xc7\x0f\x02\x65\x5d\xc8\xfb\x8c\x8f\xe3\x37\x03\x89\x80\xcf\x6d\x4d\x73\x5c\x29\xb2\x7e\xf6\x16\xb2\x30\xe6\x8b\x09\xe1\xe1\x5d\x19\x0d\x65\xf8\x15\x06\x7f\x79\xf9\xf2\xca\x94\x1b\x97\x2f\xf3\x0f\xa5\xd6\xfd\xb2\xef\xf7\xdd\x2f\x50\x9b\x89\x0e\x8c\x15\x66\x17\xc5\x2d\x73\xea\x92\xac\x1f\xc8\xb8\x2a\x8b\x9d\x76\x92\x7f\x4a\x15\xa7\xc4\x44\x68\x22\xff\x24\xce\xc3\xa9\x63\x33\xf0\xac\x3f\x27\xa2\x8a\xec\xa2\x8c\x58\x8b\x9f\xda\xa2\x5e\x5a\x61\x66\x35\x16\x48\x90\x92\x67\x24\x8a\x54\xfd\xe5\x81\x04\x12\x18\xf5\xe4\x9b\x96\x09\x09\x9a\x7d\x4e\x53\x21\x66\x4c\xcd\xde\x49\x82\x66\x9f\x6d\x1a\x96\xf6\x43\xee\x12\xdf\xd9\x55\x5b\x96\xda\xea\x73\xb3\x1d\x64\x60\x20\x85\xf7\x91\x5f\x59\x10\x6d\x4b\xb5\xee\xfd\x36\xd2\x72\xff\x96\x15\xdb\x3d\x49\xdf\xcc\xa2\x3a\x30\x28\x74\x17\x2a\x84\xe7\x00\xc1\xc6\x3e\xec\x08\x87\x97\x50\x94\x50\x81\xc7\x4f\xe7\x4f\x9c\x82\x3f\xad\x6c\x45\xf4\xee\x77\x55\xc8\xbf\x65\x57\xc6\x7a\xbb\xea\xef\x36\x8a\xa4\x3a\x4e\xa7\xb3\x83\x20\x20\x69\x44\xa8\x00\x84\xd3\x8f\xa5\x8e\x9e\xf5\xbb\x94\x40\x92\x4d\x52\xf5\xae\xf8\x74\x5f\xc1\x5d\x33\x51\x4e\xa8\x7a\x2c\x64\xc4\x5b\x87\x98\x6c\x70\x02\x67\x05\xee\x51\x60\xc2\x4d\x02\xa9\xea\xe5\xf6\xb0\x3a\xda\x91\xee\xb0\xa0\xbd\xce\x12\xd3\xa3\x87\xdd\x23\xae\xb2\xfe\x40\xcc\x51\x1d\xe0\x7f\x91\xef\x1c\xdf\xdf\x9a\x91\x79\x4e\xd5\x8a\x18\x99\x07\x73\x33\xf1\x78\x2b\x3e\x2f\x21\x0e\xce\x22\xa9\xf5\x22\x62\xd8\x9f\xd0\xa5\xa9\x08\x1f\x48\x14\x2b\xd0\x20\x2d\x13\x16\xce\xa2\x61\x7c\xce\xbc\xd6\x9c\x45\xaf\xda\xcb\x4a\x7c\x3e\x18\x47\x01\x6e\x0c\x10\x33\x31\x5b\x8c\xcb\x0d\x08\xc8\xd1\xe2\xc4\x51\x4e\x94\x7e\x3b\x36\xa9\x1c\x29\xdf\x13\x0d\x98\xa8\x20\x90\x86\xa3\x05\x65\xed\x51\xe8\xd0\x41\x22\x4e\x68\xdb\xb8\x1c\x43\xcd\xe2\x2c\x85\x09\xf7\x6b\xe3\x25\xcb\x30\xcf\xa9\x22\x80\x95\x6a\x84\x7e\x2d\x1c\x14\x9c\x3a\x40\xd5\x33\x7a\x1c\xed\x58\xf2\xed\x0e\x7c\xb4\xb2\x94\x2c\x9c\x6a\x3a\xa3\xcc\x34\xa1\xaa\x12\x4d\x1c\xaf\x9e\xf0\x89\x4f\x8f\xfb\xea\x07\xd8\x17\x56\xed\xb5\x47\xe3\x8a\xb5\xf2\x00\x74\xac\xda\xa0\xda\x28\x3f\x55\x30\x1e\xbc\xa8\x3e\x96\xaa\xdc\x08\x3a\x1d\xe4\xcd\xb2\x2d\xed\x7f\x16\x72\x65\x54\x22\xd2\x34\x1f\x79\x47\x71\x7b\x9c\x2b\xe5\xc4\x98\xa0\x83\x62\x24\x51\x35\x09\x2c\x9a\xe5\xea\x84\xad\xab\x3d\x78\x17\x6c\xd0\x62\x7b\x53\xdc\x76\x50\xf9\x19\x91\x61\x3b\x8c\x14\x67\x0a\x42\xfc\xdb\x1a\xbd\xf2\xd6\x3e\xda\x35\x36\x13\x6c\xb6\xe2\x13\x2d\xb0\x59\x37\x50\x74\x80\x42\xa8\x12\xf1\xa3\xe3\x1d\xf4\x00\x64\x25\x0d\x6b\x27\x58\xdc\x93\x6c\x57\x11\xcc\xef\x4a\xec\x27\xca\x9e\x30\x6f\x4b\xcd\x30\xaf\x49\x24\x58\xe6\xba\x82\x28\x81\x2e\x39\xad\xd7\x81\xea\x7f\x2a\x32\x52\x45\x73\xc8\x22\x77\x54\x04\xf1\x81\x49\xab\x62\xd6\x2a\x49\x17\xf5\x49\xd7\x57\xdb\x2d\xcf\xb4\xb9\xa4\x24\x32\x0b\x72\xb1\x4f\x30\x4d\xdd\xa6\xda\xe7\x0d\x6c\x16\x7e\x0a\x23\xda\x3a\xe9\x80\xed\x72\x25\x64\x30\xb6\xdd\xd0\x81\xdb\x5d\x97\x30\xe2\xec\xf2\x6b\x76\x9b\x98\x69\xd3\x2c\x6c\x88\x0b\xca\x91\x96\x45\x9c\x45\xd3\xfe\x80\xc0\xda\xb9\x85\x4a\x9b\x16\x23\x21\x2c\x05\xe8\x03\x66\x35\xd6\xd4\x59\x1f\x18\xcd\x46\x53\x00\x9e\x3f\x31\xf9\x4e\xce\xc3\x75\xa2\x25\x91\xf6\x81\x69\xf7\x8c\x3b\x13\x17\x8f\xb9\x70\x21\xc9\xae\xb8\x42\x8e\xf1\x27\xc3\x8d\x91\xfd\xca\x78\xff\x3e\x13\x4e\x78\x1e\x2c\x31\x67\xc2\x19\x0b\x5b\x8b\xc4\xec\xbf\x1a\x3a\x68\x61\x56\xf8\x77\xfa\x05\x1b\x44\x96\xd8\x96\x07\x2a\x1c\x75\xae\x61\x9c\xbc\x20\x54\xa2\xb3\x5e\x3d\x6c\x6e\xb3\xeb\x06\xfb\x09\x1a\x9e\xe7\xf6\x3b\x63\xff\x85\x16\xc8\x75\xa9\xbf\x12\x95\x91\x14\x12\x7d\xe2\x73\xfb\xad\xa9\x21\x89\xb6\x45\x48\xf9\x45\x7f\x66\xac\x93\xd8\xcd\x40\x7f\x99\xdf\x86\x19\xca\x51\x5d\x3e\x54\x19\xff\x2d\x6f\xe6\xe0\x89\xbf\x22\xca\x53\x8b\x0c\x27\x44\xc0\x17\xd5\xec\x50\x45\xf0\x7e\xe0\x5a\xb2\x5f\xcd\xf3\xe8\x7d\x16\xfd\x93\xcc\x35\x69\x4a\x85\x1e\xa6\x5f\x0c\x4b\x99\xee\xea\x4e\x79\xdf\xff\xa0\x9f\xaa\x8f\x02\xc5\xc0\x0f\x55\x28\xc0\x0f\xc1\x8c\xc7\x70\x67\x72\x9f\x99\xea\xf7\x52\xe5\x9e\xe2\xd4\xf7\xf9\x33\xf9\x61\xaa\x89\x43\x85\x31\x56\x24\x21\xec\xb1\x70\xce\xbb\x4a\x57\x32\x0c\x42\x9d\xeb\xbc\x72\x62\x24\xd9\x4a\x25\xe0\x26\xcc\x16\x88\xb3\x93\xcd\x3a\x4e\xc2\x65\xc5\x3c\x44\xdf\xda\xd9\x39\xd9\x7a\xc7\xe2\x3a\x81\xdd\x94\x0b\x33\x7e\xed\xcb\x56\xc7\xb9\x2b\x48\x08\xfd\x58\x15\x41\x2d\xe6\x78\x9a\x70\xe8\x9a\x5e\x2b\x91\x05\x21\x65\x88\x9a\xd1\x58\x1a\x5b\x60\xd6\xf6\x08\xfe\x53\xad\x95\xd8\x9e\x6a\xb0\x3b\xec\x1c\x65\x67\xe2\x73\x76\x0a\x83\x97\xc7\xd8\xad\x91\x9b\x50\x1b\xdc\x6b\xfd\x99\x1d\xf6\x6c\xd4\x72\x73\xf9\x0b\x12\xc2\x5c\xa6\xf9\x4e\xd6\xc3\xac\x5a\xb1\xa0\xd6\x12\xf0\x95\x13\xfe\xd8\xb2\xa3\xfb\x78\xc2\x5d\x51\xb7\xf4\x6a\x08\x12\x95\x40\xa0\x51\x3a\x70\x2c\x94\x38\x1a\x60\x6a\xe9\x9c\xcb\x59\xe3\xbc\xad\xea\x0f\x9d\xae\x14\xcf\x93\x97\x7b\xa1\xac\x23\x7c\x3f\x94\x2a\x89\xf0\xcf\xb1\x73\x9c\x1a\x45\xd5\x44\xba\xb8\x35\x6d\x86\x18\x51\x15\xf5\xd9\x34\x0b\x61\xeb\xb8\x35\x76\x68\x86\x35\x2b\xac\x59\x17\x61\x04\x8e\x14\x8d\xe6\x21\x3f\x13\xc3\xb0\xee\x2e\x12\xa9\x9a\x4e\xb5\xc7\x91\xee\x71\x1a\x94\x43\x4a\xf6\x74\x59\x62\x3d\xb2\x6a\xa7\x66\xa0\xc6\x0e\xd7\xbd\x34\x57\x53\x4a\x84\xd6\xad\x75\xa6\x26\x96\x53\xab\x53\x0c\xd0\x36\x26\x50\x97\x79\xb5\x13\x79\xf0\x17\x33\x4f\x63\xc1\x83\xc0\x80\xec\x59\xda\x9f\x21\x96\x68\xbb\x66\x60\xb9\x07\x59\x0c\x15\xbc\xc5\x4e\x96\x3f\x50\xa4\x66\x9b\xb0\x6b\x36\x8e\x90\xcf\x93\xe7\xf2\xdf\xc0\xb6\x1a\xd4\x16\xbc\xc7\xe6\x03\x10\x95\xf4\x13\xc8\x49\xae\xd8\xda\x3a\xca\x11\x0f\x7a\x3f\xda\x31\x56\xee\x86\x5d\xe2\xdc\xc0\x15\xc7\x57\x33\x73\x33\x63\x4d\xb3\x18\x6a\xe1\x0f\x24\x3e\x51\x35\xac\xbc\x52\x85\x23\x2a\xda\xe8\xbf\x4a\x52\x62\xcd\x22\x52\x74\x41\x92\x38\x15\xc2\xc9\x76\x19\x71\xa6\x0d\xf9\xea\x4f\x9b\xd0\xd7\xd2\x9c\x6c\x3c\x05\xde\xb7\x15\x34\x0f\x29\x25\x1e\xd1\xde\x84\xce\x82\xcc\x36\x70\x19\x89\xe4\x95\xc6\xad\x55\xf1\xb9\x85\x5f\x96\x12\x74\x5b\xb4\x03\x98\x2b\xd6\x64\xdb\x08\x96\x2b\xf8\x1f\xfa\x48\x1f\x42\x15\x65\xac\xcf\x34\x61\x90\x6f\x83\x91\x6c\x5b\x90\x89\xd1\xb0\x87\xdb\xc7\x32\x1c\x1c\x55\x2d\x1e\x3b\xc1\x1e\x9b\x50\xa7\xfc\x19\xc8\x15\xa1\x83\xd8\x03\x8c\x58\xfd\x38\x6c\x3d\xe2\xd1\xcf\xa9\x25\x41\xc6\x96\xee\xa2\xaf\x32\xea\x11\x70\x3c\x5a\xb5\x57\x40\x9e\x54\xd1\xc7\x50\x1e\x42\x54\x49\x21\x75\x9e\xd8\x39\x3a\xd1\xe6\x7c\xbe\x6d\x83\xf9\x8f\xff\x06\xb3\x46\xd2\x54\x34\x6b\x84\x4e\x0e\x76\xd8\x68\x94\xe3\xad\x46\x19\x60\x85\x14\x97\x1d\x43\xa3\xd8\x1c\xf8\x1a\x6e\x45\x24\x18\x9e\x1e\x4a\x02\xf7\xa3\x98\x80\xa3\x89\x5d\xdf\xe0\x37\x07\x67\x59\x11\x67\xba\x91\xce\x3c\x5d\xf3\x53\xc8\x6b\x34\x29\x02\x0b\xce\x90\x98\x09\xe6\xf4\x6d\xaf\x13\x17\x4d\xf3\x20\x3e\x13\xc1\x87\x71\x64\xb1\x3c\x51\x21\x69\x53\xad\x37\x34\xae\x6a\xc7\xae\x02\xc0\x24\xb3\x47\x47\x19\x96\xbf\x88\x44\x35\xeb\x9a\x95\x54\xdc\x82\x38\x2d\x06\x1d\xf8\x77\x5d\xdf\x36\xf5\xfa\x87\x67\x0d\x0b\x97\xac\xbb\xe1\xc3\xf5\xc7\xef\xbe\xd6\x74\x22\xc3\xbc\x84\xec\xe1\xfa\xa2\xea\x5f\x1e\x16\x8f\xba\x7c\xcd\xae\xda\xb0\x63\x15\xce\x81\x5b\x9d\x44\xc4\xa3\xf4\xa6\x0e\xd3\x02\x77\x6e\xda\xe3\x5d\xb3\xa5\x0d\x92\x16\x69\x76\x3b\x59\x5e\x22\x60\x3b\x81\x44\xff\xe1\x57\x52\xd6\x98\xb9\xb2\xd5\xf9\xa1\x0a\x67\x01\xc5\xe3\xfa\xe8\xb2\x19\x87\x9a\x68\x44\x94\x47\x64\xe0\xa5\x6a\x26\xe3\x41\x04\x75\x88\x95\x02\xff\x31\x2e\x85\x75\x64\xfd\xd2\x58\x17\x03\xb1\x85\xab\xb0\xe2\x54\x92\xfa\x21\x7c\x18\xa7\x2d\x47\xba\x50\x45\x2c\x87\xbc\x7c\xf6\x98\x2e\x19\x9c\x7b\xe8\x1e\xd0\x75\xb0\xbf\x95\xa2\xc9\xd8\x95\x9e\xd9\x00\x1c\x45\xd3\x19\x89\x34\x6d\x08\x93\x50\xb5\x52\x68\x9a\xf5\xc2\x53\x33\x71\xa1\x13\x8a\x26\x08\x49\xb2\x15\xd3\xeb\xcf\xa4\x66\xa3\x76\xe3\xc0\xad\xb9\xcf\xa0\x68\x18\xd3\x29\xa6\x83\xc6\x02\xfd\x89\x2e\xd4\x6b\xd5\x96\x20\x83\x9d\xb9\xa3\x9c\xf7\xa6\x51\xc3\x60\x6e\x89\x58\x13\x12\xec\xfa\x32\xd9\xca\xdc\x09\xb8\xdf\x8a\x73\x15\x14\x30\xff\x4f\xbe\x2a\x88\x0e\xf4\xcd\x07\x42\xa5\x71\x11\xa4\x1f\x2b\x14\xe8\x8b\x09\x47\x4a\x5d\x4e\x23\x71\x18\x8a\x4b\x6a\xd7\x3f\x4a\x60\x1c\x5d\xd1\x5a\x83\x83\x9b\x68\x8f\x70\x25\x82\xdd\x80\x56\x42\x47\x94\x0c\xa8\x17\x57\xd8\xff\xc4\xb1\xd5\x0c\x04\x81\x94\x7f\xe8\xb7\x5f\x96\xa4\x7e\xb7\x59\x88\x7a\x1f\x6a\x47\x3e\x05\x1d\xe6\x32\x15\x61\x90\x17\xc4\x70\xc0\xef\xf6\x54\x2a\xbc\xe2\xec\x4e\x9d\xd8\xd5\x3d\xc2\x8a\xbc\xd0\x44\xec\x01\x00\xca\x84\x77\x61\x22\xf0\x15\x15\x1f\x56\x8b\x3a\xde\xa8\x4b\x2d\xd6\x80\xb0\xce\x08\xe6\x46\x1c\x71\xf2\xd3\x8b\x57\x74\x60\x84\x06\xad\xd2\x9f\x8b\xe5\x46\x17\xf0\x46\xb4\x1e\x70\xd7\xd9\x6e\x87\x14\x37\x48\x12\x52\xdc\xee\x1a\xa0\x24\xb6\x78\x18\xd4\x68\x40\x32\x98\x34\x5f\xe6\xb8\xec\x9c\x26\x48\x5a\x43\x4f\x86\x67\x55\x18\xea\x57\x34\xb3\x41\x1f\xc9\x5b\x6b\x7f\xcb\xd4\xdf\x39\xde\x15\x32\x43\x37\xa0\xdf\x03\x8f\x3f\x82\x84\xd1\x3b\xe7\x2d\xdc\x06\xfa\x61\x1d\x56\x0a\xe2\x97\xd2\x93\x91\xc9\xc5\x8c\x44\x65\xb2\xd8\x14\x65\xd9\x5b\x3d\xe9\x98\xef\xa3\x33\x8c\xf8\x51\x71\x70\x07\x95\xf1\xa3\x72\xa8\x7c\x31\xd9\x6c\xc0\x68\x69\x7a\x40\x6f\x72\x39\x06\xc5\x71\x04\x4e\xb0\x22\x62\x09\x46\x38\x97\x78\xaa\xe5\xa6\xdc\x6e\x69\x3f\x68\xeb\xd1\x1e\xab\x43\x4f\x5c\x2c\x14\xc8\xc9\xb7\x65\xe4\x6d\x65\x2a\xbc\x2a\xcf\x2a\x23\x08\xda\x6e\xf0\x6e\x10\xe5\x83\x9d\xd6\x67\xa7\x6f\xde\xbc\xbd\x8a\x87\x34\xef\x83\x7a\x45\xac\xc4\x57\xc1\xf7\x71\xd4\x2f\xf3\x80\x0c\x0b\x98\x42\x44\x1f\x4c\x2d\x71\x0c\xce\x93\x29\xe7\xfd\xb1\x6e\x40\x7b\x1a\xee\x8b\xd1\xf2\xa4\xff\xab\x63\xeb\x97\xfd\xca\xdc\xcd\xfb\xcc\x14\xe2\x6f\xf9\x6f\xe6\x6d\x0a\xce\x16\x83\xad\x17\x4d\x36\xf1\xa6\x09\x75\xa0\x59\x8d\x6c\x0c\x20\xd2\x87\x02\xa2\x16\xcd\x7d\x83\xb3\xe2\x3a\x87\x29\xff\x84\x55\xa6\x4d\x8b\x0d\xc3\x93\x7b\xa8\xab\xbf\x1d\xc0\x9e\xc1\x02\x3f\xcb\xd8\xa5\x76\x51\x6d\xe5\x40\xf9\x73\xf8\x90\x74\xfe\x35\xb8\x0d\xe1\x1a\xa7\xaf\xef\xba\x3d\x7b\x24\xd3\xd9\xd0\x7d\xff\xe0\x50\xe5\xac\x45\x64\xe7\xba\x07\x3f\x90\xfc\xc2\x36\x79\x5a\x3e\x82\xf8\x61\x54\x1d\x5f\x78\x5c\x8a\xf2\x31\x78\xcb\x00\x6f\x35\x9d\x77\x0b\xf3\xbb\x89\xc6\x53\x26\xfe\x77\xb4\xc9\xb7\x2b\xe3\x38\x1e\xab\xd4\x4d\x73\x84\xbd\xfb\xb1\xd8\x1e\x52\x15\x0c\xb7\xce\x65\xba\x27\x19\xae\x7a\xc4\xb2\xf0\x9e\xc2\x7d\x5d\xce\x20\x6c\xf8\x11\x93\xd6\xdf\x7d\xef\x8f\x6f\xf6\x32\xe3\xf7\x55\x86\x9e\xa8\x92\x7a\x78\xd1\x13\x79\x76\x07\x83\xf3\x70\x11\x03\xa9\x13\xab\xe1\xee\x6c\x15\xdb\x5e\x14\xd4\xb9\x5b\x4d\x26\x2d\x18\x84\x57\xec\xde\xaa\x29\x30\x50\xb0\x6e\xd9\x56\xb8\x47\x22\xe9\x7c\xdb\x37\x77\x37\x7d\x91\xb8\xae\x7a\x12\xd6\xd9\x1b\x32\x34\x7e\x49\xc8\x4f\xf3\x34\x0b\x59\xb9\xdd\x1d\xee\x32\xa2\x1f\x74\xa4\xe1\xc2\xb0\xfc\xb2\x94\x51\x71\x3e\xfd\x05\x16\x1a\x39\x66\x39\x75\x2b\xf0\x0f\xfd\x9e\x28\xa5\x80\xd6\x24\x9b\x4a\x9a\x79\x55\x57\x4c\x01\x5e\xd1\x1f\x3a\xdd\x45\x12\x48\xf1\x55\xf8\x5c\x54\xa2\xda\x1e\x11\xc3\x43\x3d\xea\xdf\xa8\xcb\xa3\x8e\x8d\x6e\x81\xf4\xce\x82\xaa\xfd\x31\x7f\x48\xc8\xc5\x3d\x41\xaf\x09\x13\x05\x3c\xd4\xa2\x7a\xa6\xbf\x49\xa2\xcd\xbb\x63\x68\xe4\xd6\xd8\xd3\xbe\x2d\x96\x1f\x98\xb8\x10\xce\x94\x2d\x49\x05\x70\xea\x2a\xf8\xfc\xcb\x09\xd1\xd6\x34\x01\x62\x61\x50\x8f\x29\x29\x66\x95\x57\x2c\x41\x7c\x14\x4e\x4c\x2e\x18\xbf\xb2\x94\xc7\x2c\x7a\x3e\x31\x40\x13\x1c\x03\x9c\xaa\x3f\x06\xf9\xd6\x4f\x35\x17\xaa\xbd\x9c\x36\x24\x9f\x22\xac\x9f\x80\xf5\x8e\xa6\x6b\xc5\x36\xa9\x62\xdb\xe5\x2a\xef\x9a\x19\x3e\xbb\x61\xe3\xb6\x58\x1c\xfe\xa2\x3f\x61\x70\x58\x17\x7f\x97\xd4\xcb\xf0\x01\x0c\xef\x14\xe7\x3b\xb5\x1e\xd0\xdc\x2f\x37\xea\x36\xd7\x5c\xcf\xe5\xe2\x21\x4e\xec\xab\x60\x05\x65\x72\x01\x38\x5a\xcd\x5d\xf1\xa9\xda\x1d\x76\x79\x00\x44\x51\xde\x04\x0f\x53\xbb\xc6\x6c\xda\x3a\x31\xb4\x84\x7f\xb9\x91\x62\x58\xc3\xdd\xb6\x0a\xf6\x8f\x9b\xb3\x89\xcf\x68\x4a\xe2\x11\x93\xe9\x15\x72\xbb\x8a\x1b\xee\x90\xcb\x5d\x5c\x9f\x7b\x9c\x3c\x9b\x02\xaa\x48\x29\x26\xdc\xa2\x17\x44\xf1\x1e\xfc\x20\x8b\x6e\xe4\xd2\x6a\x55\xf4\x3f\xd7\x5b\xec\x0e\xff\x15\x62\x26\x34\x31\xe2\xd2\x19\xae\xc3\x45\x54\x9a\x80\x4a\x4e\x54\xe5\x6a\x0b\x77\xa5\xee\xeb\x17\xaf\xae\x70\xa1\x8e\x70\x52\xb4\x7b\x7a\x6b\x90\x3d\x6e\x66\xa1\x4e\x3e\x6c\xab\xae\x13\x26\xac\xae\x30\xf1\x4c\x08\x27\xf4\x7f\xa2\x32\xd0\xca\x52\x0c\xb0\xda\xa2\xbb\x3a\x7b\xb0\xa9\xaf\xfa\x2b\x49\xd4\x82\x9c\x08\x5d\x44\x6a\xc9\x33\xe7\xbb\xc2\xdf\xe5\xb4\x6a\x83\xd1\x36\x2e\x9b\xb7\xd7\xea\x56\x53\x42\xaf\x01\x01\x9a\xeb\x4c\x68\xb5\xa5\x2b\xe5\xbe\x0e\x47\x00\xee\xe2\xf1\x8d\x9c\x94\xf6\x23\x70\x40\xe1\xd7\xdd\x7b\x95\xd2\x46\x61\x6e\x69\x7f\x3b\x67\x4b\x02\x18\xa4\xfd\x6d\x4c\x70\x9c\x24\x65\xd0\x74\x3a\xe0\xe0\xed\x72\x81\x55\xfe\xdf\xff\xf3\x7f\x3d\x3d\xe3\x61\x9f\xf5\xed\x96\x7e\x29\xa3\xce\xf0\xb2\x0c\x52\x41\xfe\xf6\x3f\x48\xe0\xba\x51\xd7\x96\x5f\xe4\x57\x66\xdf\x20\x05\x94\xdf\xa9\x6e\x1f\x3f\x32\xfd\x62\x8a\x90\x69\x1c\x04\x26\x05\x19\x4b\xbb\x8a\x36\x24\xe9\xfa\xb3\xea\x6f\x87\x6a\xf9\x61\x2e\x2a\x9a\xef\xf3\xff\xe4\xaf\x1c\x77\xeb\xf5\xb8\x66\xca\x1f\xc8\x38\x90\x73\x70\x16\x78\x57\x76\x9c\x71\x7a\x9d\x25\x92\xfd\x22\x65\x3f\x6e\x8d\xf0\x1a\x20\x5f\xd8\xcb\xf6\x07\x76\xe6\x62\x84\xb0\xd6\x2e\x28\x05\x97\x1f\x39\x51\xe8\x79\xa8\x01\x2b\x3b\xaa\x03\xcd\x53\x77\xe5\x2e\xec\x24\x97\x85\x2c\xe7\x66\xbc\xe3\x6b\x69\x34\x64\x95\x78\x32\x75\x1d\x3d\xe3\xbb\x84\xe1\x6c\xd2\x33\xa9\x6f\x4b\xc8\x74\xf4\x27\xa3\x23\x8f\x5d\x14\xd5\x6a\xcd\xf7\xc1\xfb\x02\xe6\x5d\xa4\x9b\xcd\x9a\x8d\xde\xc5\x5a\x2b\x82\x30\xf7\x93\xfe\xcc\x28\x9d\xbf\xaf\xe8\xcf\x28\x2c\x03\x07\x71\x18\x07\x6f\xd8\x16\x8b\x12\xc9\xaf\xf1\x83\x90\x9f\x4e\xdd\x9e\x56\x44\xce\x20\xfb\xc8\x96\x70\xbb\x13\x44\xc4\xaf\x4c\xef\x0d\x89\x9d\x5b\x7e\x66\xb0\xd4\xb5\x05\x5b\x9b\xdf\x15\x37\xf2\x49\xd3\xa5\xc1\x3c\x5e\xca\x2f\x49\xc6\x95\x09\x01\xc5\x8d\x89\x00\x0f\x7e\x5d\x77\xc3\x85\xfd\x96\x2c\x76\x80\xdd\x32\x13\x67\xcb\x60\x16\x21\xca\xc8\x25\x43\x58\x50\xbe\x1f\x52\x8f\x03\x51\xc8\xf7\x1c\xf6\x75\x4a\x95\xcf\x0c\x9b\xc8\xc2\x7c\x88\x29\x92\xb5\x01\x6a\x84\x64\xdb\xd3\x5c\x78\x11\x33\x45\x09\x6b\x42\x5d\xaa\x57\x56\xe0\x39\x6b\x34\x50\x42\x26\x4a\xed\x22\x71\xbe\xd4\x92\xd4\x05\x1e\x45\xe1\x76\xc1\xed\x91\xd5\x88\x84\x98\x76\x8d\x98\x30\xb4\xe7\xab\xb3\xab\x7c\x15\x37\x16\xdf\x67\x81\xee\x49\x4b\xb3\x86\x9f\x8a\x3e\x24\x14\x5c\x89\xcf\x7b\x98\x95\x87\x5d\x90\x49\x79\xb3\x69\x3f\xbd\x48\x8c\xee\x72\xb9\x04\xe2\x67\x4a\x18\xe6\xfb\x2c\xa4\x9a\x79\x4f\xc5\x3c\x37\x08\x55\xf7\x06\xbd\xaf\x49\x5a\xab\x41\xc3\x3f\xc6\x3a\x06\xf3\xf0\x17\x5c\xae\x2e\x98\x7c\xb3\x22\x81\x95\xbe\x72\x29\x5f\x6a\x78\x6c\x13\xf4\xc4\x5c\x7e\x88\xb7\x54\x23\xa0\x19\x92\x6b\xd3\x3f\xa8\xe4\x1c\x5a\x3d\x11\x97\xc0\xbc\x59\xc2\x32\xb9\xca\xd8\x99\x64\xbe\x28\xe7\x74\x5e\x85\x8d\xf9\x57\x73\x32\x59\xc0\x39\xb8\xb0\x7d\x47\xf5\x41\xa7\xdd\xc0\xfa\xcc\x62\x5c\x6e\xab\x6c\x81\x03\x30\x39\x56\x27\x6e\x89\xb7\xbe\x42\xe8\x79\xe4\xf2\x78\x54\xf4\x7c\x56\x9d\x72\x98\xcc\xb1\x1a\x72\xd3\x2e\xe0\xe4\x99\x9c\x33\x9c\x65\x97\xf0\x0c\x3f\xb7\x65\x90\x4f\xa1\x36\x62\xf6\x2f\x1e\x88\x27\x72\x13\x1c\x2c\x0c\x2b\x69\x08\x83\xf7\x38\x4a\xbe\x9e\x31\xac\xa9\x45\x7c\x81\x75\x23\xdd\x22\xfa\x56\xae\x2b\x09\xb8\x02\x29\x8d\x25\x84\x72\xbb\x72\x95\x30\x01\x24\xbe\x85\xc3\x6e\xe0\x78\x94\x08\x2a\x18\x81\x9f\x12\x9c\x27\x18\xa7\x86\x58\x61\x00\xb6\x20\xf3\x6e\x0c\x4b\x52\x07\x8f\x62\x20\x64\xd3\xce\x14\x6d\xa4\x6f\xdb\x5b\x46\x02\x60\x71\x28\xa2\xdb\xce\x00\xac\xdf\xaa\xbc\x30\x66\x4b\xc0\x9f\xf2\x34\x3d\xc0\x65\x8a\xa0\xcc\x40\xc6\x2c\x34\x17\x8f\xa3\xd8\x82\x1d\x44\xa6\x10\x89\xbd\x8c\xf5\x5c\xe3\x5a\x3d\xfc\xf4\xd0\x1f\xc4\x23\x90\xc0\x24\x39\x53\x64\xbb\x57\x12\x5a\x0a\xab\xa6\x4b\xbe\x28\xc3\xc9\xf3\x5c\xb3\x26\xa2\x92\x48\x59\x3b\x38\x84\xb9\x90\x83\x2f\x9e\x0f\xc2\xe9\x26\x96\x83\x2e\x44\xaf\xf1\x12\xa8\xd6\x16\xd6\x9d\x4f\xbf\x22\x10\x81\x9a\xaf\xb1\x08\xd3\x2c\x27\xee\xbe\x50\xbb\xb4\x5c\x1d\x2c\x84\xfe\x0c\xb8\xaf\xbb\x1a\x0a\x43\x46\x3b\xb1\x48\x8c\x09\x93\xb0\xfc\xfe\xf4\xfe\xec\xfa\xe7\x8a\x57\x24\x14\xcc\x45\x5e\x8b\xd3\x13\x22\xcf\xa0\x85\x5b\x65\x57\xb5\xc0\x50\xc0\x0b\xa2\xd4\xb1\x86\xd4\x9a\x3e\xbf\xd9\xb8\x66\x75\xf5\xc6\x06\x20\x85\xce\x3b\x92\xe1\xca\x18\xb6\x86\x2f\xfb\x48\xc9\xd9\xdd\x9a\x8b\x78\x7d\x04\x86\x2b\xd5\xb9\xde\xb0\x64\x0a\x6a\x93\x34\x42\xb8\x68\xb8\x2a\x9b\xd4\x90\x92\xf5\xb3\x11\x67\xa9\x12\xf6\x40\x14\x42\xd5\x6f\x1c\x51\x4a\x47\x3a\xc2\xb3\x53\x99\x46\xc8\xf1\x71\xc9\x3e\x1f\xe3\x98\x3c\xc9\x41\xc8\x05\x2d\x55\x89\x78\x70\x35\xf1\x79\xc2\xb7\xcb\x11\x90\x9c\xd4\xa7\xf5\x80\xd4\xe7\x58\x0f\x39\x11\x78\x41\x18\x10\xfc\xbe\xd6\x44\x78\xa1\x83\xe4\xda\x98\x81\x10\xcc\x20\x4c\x10\xe1\xc5\x13\x66\xce\x9e\x19\x8f\x3a\x24\x08\x4a\xa8\x4c\x4e\x60\x01\xc1\x75\x2e\xe5\x22\x60\x5b\x42\x9f\xb9\x55\xc2\x66\x1d\xbf\xc5\x15\xe1\x63\x9c\x41\xba\xc3\x22\x66\xca\x87\x4a\x35\xc4\x11\x60\xef\xe0\x96\x9d\xb1\x2f\xea\x7e\xdc\xa2\x1e\xb9\x04\xbb\x97\x13\x43\xc2\x9a\x50\x5b\xcb\x6d\xb5\xb7\xd8\x77\x2c\x74\xb8\xd8\x4b\x2c\x3a\x58\x6e\x46\x88\x02\x56\x2d\x32\x34\x17\x92\x12\x38\x1a\xe3\x0d\x67\x63\x1e\xd1\x72\x06\x17\x56\x15\xef\x62\xfe\xb5\x18\x84\x98\x8b\x0a\x69\x05\x04\xee\xdc\xee\xa2\x84\xf4\xc8\x29\xe8\x95\x91\x90\xa3\x68\xf2\x0c\xaa\x22\x4d\xb3\x9b\xc8\x6f\xf9\x6f\x48\x25\x4a\xad\xda\x42\xfa\x1b\x6e\xea\x4a\xbc\x3c\xe6\xfd\xc0\x32\xbb\xe4\xd9\x90\x4d\x76\x59\x4c\x50\x38\x51\xa4\x20\xe4\xfb\xec\x25\xb1\xc6\xed\x3c\x94\x3f\xe3\xcf\x7c\x3b\xaa\x25\xf0\xdd\x9e\xed\x1e\x34\xe3\x61\xa8\xa9\x49\x30\x69\xce\x43\x4a\x8b\xbb\x29\x60\x8e\xa7\x91\xc0\xbe\xe5\x00\x1b\x8e\xeb\x4f\x2a\x66\xbd\xf5\xa0\x66\xa8\xb2\xa7\xe1\xe9\x78\xe5\x60\x11\x60\x0a\xf5\xe7\xb8\x9f\x0e\x48\xba\x59\x4c\x80\xb2\x4d\x35\xc2\xd1\xc0\x87\x40\x6a\xf4\x0f\x1b\x70\xb8\x7a\x71\x7d\x68\x69\x87\x0b\x24\x99\xf3\xfd\x96\x58\x95\x70\x6f\x1d\x40\x20\x61\xbc\x79\x92\x66\x42\x65\xda\x58\x52\x1f\x26\xb4\x2f\x16\xcc\x93\xaf\x30\x9b\xa1\x30\xcf\x55\xcc\x92\xa9\xb3\x4c\x95\xfb\xac\xe6\xa4\x4a\x9f\xc7\x87\x97\xe8\x47\x65\x22\x82\xae\x74\x3b\x51\xe2\x4e\x8c\x1a\xc2\x1c\xad\x79\x84\x37\x5a\xf2\x8e\xe5\x8d\x10\x1c\x2f\xee\x78\xd5\x47\xca\xa9\x4a\x0d\x8a\xb4\x71\xce\x8c\x23\x22\x04\xd1\x96\x43\x7b\xc9\xc7\x24\x68\xa7\x31\x2c\x89\xdc\xf1\xc9\x1a\xba\xba\x52\x03\xeb\x54\x21\x59\xe5\x15\x3b\x62\x4a\x19\x59\x67\x04\xc7\x39\x52\x64\xc7\x4a\x56\x18\x1b\xb4\xc8\x79\x48\x98\x28\xd2\x69\xa8\x2e\x8e\x95\x35\xce\x99\x41\x47\xdf\x2b\x6d\xea\x26\x41\x18\x4b\x01\xf2\x16\x3f\xa6\x40\xc4\xed\x20\x9c\x9c\xef\xf4\x7a\xb2\x39\x3e\x4e\x36\xcc\x3e\xff\xa1\xc4\x6b\xdc\x00\x68\x3f\xa3\x1c\xdf\x09\x63\xba\x2a\x5e\x26\xe7\x0d\x2e\x6a\xe1\xf3\x8e\x76\x62\x01\x69\x68\x54\x82\x77\x12\x56\x81\x65\x73\xfc\xce\x1f\xfe\xfa\xcd\xfb\x8e\x97\x21\xba\xef\xfc\xfa\xc7\xf7\xc4\x03\x3d\xfc\xf5\x4f\xef\xe1\xb7\x33\x2a\x3c\xbf\x66\xe1\x6a\x5c\x03\x0a\x1a\x34\x4e\xb8\xe6\x10\x8e\x36\xfa\x19\xe9\xc3\x27\x59\x8a\x4f\x7d\xba\xc5\x43\x88\xaf\xc1\x0e\x5f\x85\xac\x74\x87\xd7\x87\xdd\x5c\xc7\xd8\x09\x05\xb0\xaf\x50\xdc\x66\x60\x5e\x70\x93\xbf\x85\xef\x38\xdc\x3f\x30\xc3\xf7\x10\x23\xfd\xcd\x8a\x39\x29\x9a\x1d\x6d\x63\x50\xad\xcf\x92\xc4\xb5\xd8\x8f\xa1\x9b\x8d\x73\x18\x12\xe6\x07\x9a\xf1\xc0\xb7\xde\x96\xfd\x2c\x25\x69\xf8\xb0\xf1\xa6\x59\xd6\xa9\x00\xa2\x8b\x8e\x7b\x74\x1e\xbc\x2d\x31\xab\x06\xf7\x0e\x9f\x83\xcc\xbb\x2a\x6b\x93\x02\x4a\xa7\x23\x8a\x29\xe8\x60\xa1\x74\x9a\xe5\x0c\xa3\x39\xae\x56\x8c\x50\x84\x20\x0f\xc2\x74\xe3\xeb\x07\x20\x4b\x32\xe9\xd2\x5e\xa8\xc3\x3e\xbf\xb0\x16\x15\x61\x09\x2a\xd4\xa3\xa6\x25\xd5\xe3\xc8\x50\xf5\x0e\x96\xb2\xea\x5f\xd6\xc4\xbe\xd1\x90\xc3\x17\xf8\x11\x5b\xb6\xe0\x27\x60\xb0\xce\xdc\x67\x40\xf3\xc4\x0e\xae\x89\x16\x18\xca\x6e\xd3\xaa\xf2\x37\x71\xa7\xd3\x60\x21\x26\x8d\xf0\x2d\x19\xc3\xb5\x9a\x63\xff\xe8\x95\x2f\xad\x51\xd5\x01\xac\x59\x0a\x9d\x1b\x28\xed\xac\x6d\x96\x66\x88\x6c\xd2\x1f\x4b\x92\x33\xd1\x36\x5c\x3c\xb3\xd3\x7c\x1a\x6c\x13\xcf\x74\x7c\x0d\x01\xc4\x37\xe1\xe1\x6a\xc0\x97\x49\x76\x44\x4d\xdd\xb9\x88\x42\x96\x9e\x3a\x02\x39\x31\x18\xc9\x18\xdc\x2c\x49\x33\xc3\xdd\x72\xe9\x20\x6e\x98\x5b\x54\xbb\x71\x2d\x7a\x89\x02\xa0\xc1\x39\x62\x12\x6c\xda\x6b\x58\x78\x0c\xef\xf7\x52\x41\x26\x8b\x9e\xc2\xec\xf7\xe9\x5c\x61\xb4\xee\xe3\x9e\x2f\xd3\x8d\x47\xc3\x85\xf4\xf5\x1e\x17\x3b\x47\x26\xf7\x24\xfe\x56\xcb\x6a\x5f\x04\x52\x79\xe1\x52\x0c\xb2\xe8\xfb\x62\xb9\xe1\x6d\xed\x99\xae\xdf\x44\x1c\x56\x29\x98\xf1\x11\xc3\x81\xfe\x88\x20\x7e\x9b\x28\x1d\xa2\x59\xf9\xd2\x21\x91\xab\xf8\x2d\x13\xdd\xb9\x93\x0f\xbc\x0e\x5d\x33\xd9\xb3\x83\x04\xc5\x54\xf1\xcb\x29\x41\x4e\x9a\x84\xb3\x55\x32\xe0\xfe\xa6\xc9\x83\x66\x1f\xb1\xb8\xf9\x04\x4b\x75\x45\x50\x2a\x05\x89\x3c\xad\x16\xc1\xb3\xbe\xc7\xc5\xa0\x61\x83\xda\xc2\xf7\xb9\xfe\xd2\xfc\xc4\xe8\x90\x0f\x8c\x0d\x36\xf2\x86\x6d\xb1\x87\x2d\x56\x04\x5e\x8d\xf2\x71\x2d\xfe\x78\x06\x84\x80\xc8\x10\x2e\x43\x5b\xee\x10\x91\x70\xc9\xea\x63\xcd\xb9\x8b\x72\x59\x70\x80\x3f\xf4\x99\xc7\xba\xe1\x00\xcd\x71\xf4\xac\x84\xf9\xc8\xb7\x8c\xa5\x7e\xbe\xc6\xe8\x23\x51\xf3\x8a\x85\xea\x4d\xc9\x30\x98\xa9\x45\xd9\xdf\xe0\xba\x32\x9c\x9e\x79\x72\x45\x95\xd2\x7d\xeb\xb9\x08\xa2\x9e\x5f\xa3\x8d\xaf\x99\x95\x58\x29\x25\xfd\x03\x3e\x84\x9e\xea\x54\x0e\x04\x8d\x09\x34\x00\x35\xb2\x45\xbd\x01\x0e\xb3\x8e\xb7\x64\xdb\x04\x37\xb4\x32\xd9\x57\xe8\xfa\x77\x6c\x1a\x32\xc2\x8d\xdf\x84\xb0\xec\xd4\xac\xe9\x7f\x0a\xe9\x5a\x3f\x6a\x52\x2e\xc3\x9a\x91\xb4\x7f\xad\x7a\x2a\xfd\x6f\xef\x0d\x47\x69\xab\xcc\x3d\xb9\x06\x7e\xc6\xcf\x04\x6a\x28\xf2\xc7\x3c\x53\xc5\x3c\xc7\x5f\xd5\x41\x69\xbe\x1e\xea\x84\x2a\x32\x35\xc1\x95\x41\x32\xd4\x67\xcf\xaf\x24\xf5\x7a\x5f\xb6\x4c\xa6\x74\x36\x83\xeb\xda\x2c\x99\x1a\xb0\xdf\x6d\x6c\x89\xb1\x26\xe4\x5c\x8d\xaa\x0d\x74\x49\x61\x52\xb2\x24\x55\x70\x58\x67\xda\x1f\xe6\xb0\x48\x5f\xc1\x35\x69\xba\x2e\x85\x5d\x1d\xe2\x1d\x5d\x9e\x45\x2a\x04\x75\xb7\xa3\xb6\xd6\xf7\xaa\x9b\xe3\x9a\x82\xa8\x0a\xaf\xf4\xee\x01\x91\xa3\x3e\x0f\xe9\xd4\x9c\x5c\x92\x95\x40\xa3\x6b\x09\xdb\x1a\x62\x9b\x5f\xd3\xf7\x06\x41\x15\x19\xe0\xba\xe4\x70\x68\xe0\x30\x03\x89\x28\xea\x39\x3c\x71\x30\xd4\xc4\xe0\x9f\x0c\x43\xad\xff\x3a\x21\x83\x50\x89\xa1\x2a\x38\x57\x7c\x5e\x6d\xe2\x13\x3a\x55\x5f\x20\x01\x7d\x50\xb4\xd9\xb8\xbb\xe3\x6d\x0d\x63\x94\x0b\x3e\xec\x8a\x5a\x7c\xec\x2a\xbe\x5e\xce\x72\xbc\xc4\xd3\x81\xc7\x7f\xbf\x99\xa8\x59\x6a\x1b\x90\x14\x20\xcf\xd4\xce\x06\xc2\x1e\x6a\xdd\x80\x28\x15\x14\x9f\xbf\xa9\xc1\xff\x51\x1f\x90\x54\x11\x39\x3a\x58\xa6\x43\xf5\x24\xab\x16\x96\x22\x99\xb6\xc7\x7f\x78\xb8\x7a\x22\x9b\x18\x9e\xff\x23\x37\x29\x4e\x94\x81\xfb\xc3\x9b\xa9\x68\xd5\x21\xfa\x14\x94\x9c\x4d\x0b\x20\xd6\x23\xff\x96\x39\xe3\xae\x3b\xcb\xa2\x6e\xc0\x65\x4f\x28\x32\x5c\xee\xb4\x32\x63\x08\xb0\x8a\x2a\xa2\x87\x5d\xd2\x76\x33\xa7\xad\x31\x57\x49\x93\x8e\x13\xde\x28\xfc\x35\xec\x81\x49\x58\xc3\x9a\x83\xb8\x91\x0e\x88\xb5\xa4\x7c\x84\x48\x5c\x25\x21\xd1\xce\x9e\xcd\x6a\x6d\xb9\xf0\xab\xca\x51\x65\x06\x92\xea\x07\x14\x7e\x72\x72\x8c\xe3\x44\x1c\x1e\x9f\x31\xe1\xb5\xe7\x73\xe3\x98\x9f\xd1\x80\x59\x4d\xe9\xad\x99\xc9\x20\x4b\xb9\x7d\xc9\x7f\x7d\x46\x88\x99\xa9\x55\xcd\x65\xe5\xb5\x46\x54\xae\x29\x31\x86\xe3\x49\x30\x66\x3e\xba\xa5\x7f\x4f\x77\xbb\xa7\xab\xd5\xa3\x89\x51\x3b\x9e\x2d\x0c\x7b\x70\x1f\x44\x95\x23\x03\x2a\xe9\x6a\x72\x2c\xf0\xf4\xdc\xc1\x82\xe9\xd7\x89\xef\xa1\x16\x7c\x4e\x33\xd3\xe1\x4c\xdd\x82\xbb\x71\xf5\x3a\xa6\xff\xcd\x9e\xcd\x0b\xe6\x65\xce\x1b\x5a\x2e\xd0\xf8\xb1\x0c\xc4\x07\x97\x35\x88\xe2\x74\x67\x07\x83\xdb\x8d\xb2\x73\x44\xbb\x77\x47\x26\x45\x62\xc7\x1f\x9d\x12\xc7\xb6\xc7\x69\x0d\xac\xfb\x04\xe0\x34\xe3\x1e\x5b\xff\xef\x64\xde\xa7\x9a\x9f\x42\x83\x7b\xd8\xf7\xec\xa6\xfa\x50\x51\x81\xbf\xd0\x1f\xfc\x9e\x69\xdc\xad\x3c\xc6\xd9\xa2\x76\x39\xfb\xab\x24\xdf\xc6\xca\x39\x70\xe4\x60\x7b\x22\xab\x62\x73\x09\xd8\x2e\xb7\x0a\x0e\x5b\xf6\xc5\xf9\x20\xa7\x69\xb3\x3c\x40\xae\xbf\xd5\x6b\xe0\xff\x85\x3b\xd9\x0d\x31\x75\x1b\x8d\xf4\x0d\x96\xb9\xea\x15\xa9\x66\xd2\xa0\xe2\x38\x02\x44\xcc\xf5\x51\x1d\xdd\xe4\x62\xbe\xa6\x74\x9c\x9e\x02\xee\x9f\xdd\x41\x82\xb2\xc9\x9a\xae\x4c\x72\x84\x97\x5b\xbd\xbe\xd6\x37\x1a\x57\x59\xf2\x8f\xba\x7d\x1c\x73\x77\x50\x4d\x5c\x24\x10\x3a\x0e\x84\xa1\xd5\x96\x58\x18\x76\x6d\xdc\xef\x19\x82\x72\x44\x8c\x01\x0e\x4c\xe7\x94\xb9\x86\xf7\x53\xd1\x35\x19\x4f\xcc\x1b\x8e\x47\x2e\x13\x24\x20\xea\x5d\x32\x0d\xc5\xd7\x6b\x97\xe5\xfc\x1b\xe3\x12\xfc\x85\x03\x31\x23\x53\xdf\x84\x31\x65\xa9\x4b\xf9\xd2\x10\x50\x91\xf7\x7b\xd9\xf6\x88\x9e\x18\x56\x68\x6c\x82\x04\x22\xa1\xaa\xc1\xad\xb9\xd4\x0a\xe9\xea\xe8\x74\x99\x3b\x37\x89\x76\x3f\xdc\x6e\x77\xe9\x27\x47\x75\x9d\x7a\x72\xc7\xd2\x66\xb2\x58\x08\x2d\x21\xbf\x62\x96\x0b\x43\xab\x0c\xb5\xfb\x3e\x02\x36\x13\xb7\x7b\x0d\xb7\x76\x0c\x48\xec\xb4\x8a\x49\xc7\x80\xf0\xf6\x8d\x78\x6e\x1f\x03\x21\x51\xae\xbc\x46\x24\x13\x76\xa1\xd1\xdf\x11\x78\xd3\x34\x1f\x24\x08\xf1\x02\x3f\x63\xce\x9a\x5f\x1f\x91\x4c\x7e\x67\xe3\x65\x9a\x4b\xd2\x5d\xb5\xf4\x8f\x0e\xfd\xc4\x09\x13\x93\xa7\x31\x23\xde\x5a\x44\xe9\xcb\x64\x38\xea\xe2\xe3\xea\x51\x73\xf0\xb8\x22\xbd\x93\xce\x2c\xd3\xe7\x45\x74\x98\x8a\xe4\x30\x34\xf1\x87\xda\x8b\xd5\x47\x3e\x59\x56\xc9\xc3\x4c\x9a\x36\xd1\x19\x46\xaa\x70\xef\x4b\x1c\x93\x40\x2c\xbb\xdb\xae\x2f\x77\x6e\x7c\xac\x4b\x65\xa7\x70\x7e\x42\x42\xc9\x29\x9f\x8d\x1c\x35\x9b\x20\x50\x28\x85\x66\x07\xb1\x21\xb4\xa5\x0d\xc0\x13\x50\x7d\x5c\xe3\x67\x03\xc5\x96\xe1\xa0\x80\xc7\xc1\x6d\x00\x7f\x4e\xe2\xbb\x2f\x78\x86\xc4\x12\x2d\x26\x15\xf6\x0f\xc6\xf3\x3b\x34\x79\xb7\x69\x04\x51\x62\x16\xdd\x1c\xca\xb9\x34\x98\x16\x51\x77\xc2\xd1\xbe\x6c\x8f\x4c\x0c\x60\xe6\x0a\x33\x98\xa1\x2d\xdf\x47\xbb\x29\x71\x2b\xed\x8e\xba\xc2\xe0\xa6\xea\x0a\xf3\x77\xa4\x02\x4d\xc0\x9c\x04\xde\x2b\xcc\x24\x0c\x8f\xf9\x95\xd6\xc8\xb3\xf1\x1c\x30\xe3\xf2\xd2\x76\xd7\xdf\x8a\x4f\xcd\x74\x05\x6f\x8a\x1d\xae\x1c\x33\xd4\xb7\x77\xd6\x31\xb3\xf0\x81\x44\xa6\xe5\xd7\xdd\xe0\x08\x3b\x18\xcb\x9c\xba\xcf\xbb\xc6\xea\xa3\xf3\xb3\x94\xc8\xe2\x8c\x37\x9c\x0a\xf5\xfe\x07\x5f\x3e\xf8\x67\xfe\x0f\xde\x3d\xf4\xa7\x22\x52\xf2\xe9\x9f\xa6\x66\x08\x6f\x17\xf0\xce\x3c\x19\x5d\x95\x12\xf9\x85\x27\x01\xc5\x1c\xca\x40\x08\x1b\x60\x8c\x97\x98\x3a\xbb\x7f\x49\x3b\x5d\x23\xec\x30\x9b\xd3\x56\x74\x3a\xa5\x94\x78\x55\xc0\xfd\xe7\xef\x62\x1a\x7d\x86\xaf\xfc\x7f\x30\x1b\x18\x40\xf0\xa4\x1b\x02\xbe\xb1\xfa\xa0\x93\xbb\x08\x1a\xb8\x4a\xa2\xa1\x88\x7e\xbc\x08\xf1\xae\xbb\xd4\xc7\x3b\x3d\x7c\x62\xd0\x6a\x09\xa7\x52\xd4\x12\x59\x42\x82\xe8\x38\x72\xcc\x3a\x96\x3e\x68\x5b\x7a\x76\xc3\x7b\x57\xae\x0f\x5b\x92\x06\x9c\x9b\xff\xb0\xc0\x70\x59\xac\x1e\xe5\x1b\xe1\x06\xc3\x93\xc3\x61\x9a\x51\x97\xa3\x6b\xc1\xe1\x5f\x1d\xca\x5a\x7e\x3b\x41\x2e\xa5\x0f\x5b\x91\x03\xbc\xc3\x09\xfe\x54\x23\x78\xa5\xd7\x07\x93\x86\xdd\x6c\x68\x1f\xa0\x7a\x9a\xea\x85\x58\x84\x42\x1f\xe4\x16\xe1\x44\x0f\xa2\x75\xcb\xee\x11\xaa\x5a\x6a\x70\x84\x0a\xb4\x5c\x76\x1d\x5c\xfd\x88\xa2\x8c\x40\x59\x14\x64\xe9\x12\x6c\xcf\x69\x50\x18\xbf\x1d\x24\xd0\x18\x3b\x6b\xeb\xcf\xb7\x16\xaa\x6c\x0c\x16\x34\x22\x31\x3e\x59\x3a\x29\x3c\x17\x8a\x07\xd8\x10\xba\x48\x69\x6c\x3c\x66\xe8\xc3\x6b\x4d\x1a\x13\x1a\x3c\x01\x2e\xdf\x76\x13\xdd\x1b\x2c\x13\xe3\x84\x3c\xb0\x04\xc4\x13\xce\xbe\xba\x76\x38\x0c\x97\x3d\xbe\xb5\xfd\xb1\x5a\x1d\x88\x06\x71\x67\xee\xaa\xf7\x8f\x69\xbd\x34\x8f\xb8\x09\x72\xb4\xee\xc1\x80\xb0\xc3\xc3\xab\x7d\x08\x31\x77\x1d\x23\x27\x4e\x8e\x88\x89\x4f\x30\xf3\xe8\x4e\x42\x04\xc4\x3c\xc6\x40\xf3\x42\x90\x48\x38\xc0\x0f\x09\x04\x61\x58\xfa\xed\xe8\x58\x56\xbb\xcc\xcf\x2d\xd7\x89\x83\x90\xd5\x7b\x93\x60\xb6\xa0\x6f\xcd\x51\xaf\x44\x21\x1c\xbe\xac\x21\x8c\x8a\x9d\xba\xd1\x8b\xa8\xec\x03\x3b\xc9\xc0\x4e\xd6\x3f\xb1\xbf\x3c\x8f\xcc\x13\x67\xcf\x70\x21\x04\x15\x37\xcc\xe4\xf4\xe1\x98\xdb\x18\x49\x72\xef\x3c\x69\xb2\x0e\x47\x07\x41\x0c\x65\x18\x0e\x29\x12\xcc\x41\x60\x34\x74\x6d\x8a\x1e\x1d\x99\x28\x1b\x40\x12\xc5\xf0\xf7\xcc\xd6\xf1\x89\x8a\x84\xe8\xde\xdb\xc9\xc7\xeb\xfb\xe3\x51\xc2\xe6\xee\x10\x7b\x91\x85\x69\xa5\xbe\x02\x69\x0a\x61\x3f\x44\xb9\x96\x87\x47\x29\xd9\x13\x99\xa6\xfc\x44\x25\xf2\x93\x60\xfe\x97\x70\x6e\xee\xba\xb9\xb7\xcd\x76\xc7\xfb\x0a\x9f\x6a\x99\x80\x53\xbb\x0c\x6b\x5c\x19\xc4\x6d\x3e\x3f\xf7\x7c\x81\x80\x6d\xe4\xd7\xa2\x5c\x11\xb4\x18\x56\x7a\x14\x53\xee\x11\xfa\x8f\xb1\xe6\xd3\x95\x99\x68\x74\x4f\x0c\xae\xf1\xee\x37\x4b\x34\x1e\x57\x85\x35\x3a\xc0\xb0\xa0\x3f\x77\x74\x19\x61\x0a\x8c\xe0\x4e\x54\x35\x79\x22\xc4\x70\x93\xa1\x6b\x56\xa0\x3d\xde\xbd\xf4\x86\x7b\x3e\x71\xb3\xdd\x09\x0c\x1c\x3c\x3e\xb1\xb8\xb3\x17\x27\x8f\x27\xb1\xbc\x1f\x2d\x30\x08\xd5\x92\xd4\x95\x86\x6a\x19\xe3\xcb\xa0\x61\x8b\xd7\x32\x96\x00\x9b\xd6\x1b\x98\x7d\xc7\x26\x86\x34\x59\x2c\xb1\x01\xc8\x53\x4c\x8c\x8f\xd1\x7f\x7a\x23\x8f\xe4\x78\x39\x38\x5e\x83\x18\x1e\x8f\x03\x9c\xbd\x23\xbe\x8b\x75\x4a\x54\x62\xc7\x66\xee\x6c\x72\xd6\x34\x00\x83\x9b\x37\x71\x55\x95\x87\x82\x52\xa7\x40\xf5\x5d\xc5\xf9\x38\x73\x25\x10\x7c\x39\x5e\x35\x65\xa3\xd6\x62\x34\xf1\x49\x2c\xe6\xf4\xb6\xa9\xde\x59\x92\x58\x3b\x60\x24\x7d\xd9\x59\x22\xbd\x30\x1b\x8f\xc0\xbd\xfa\x02\x89\x3e\xde\x3c\x0c\xa6\xaa\xb9\x37\x9b\xc6\xb1\x55\xf7\x37\xc0\x88\x77\x23\xe2\xbd\x22\xa9\x0a\xfb\x03\x2d\x40\xd0\xda\xa9\x2a\x00\x86\x9b\xdd\x81\x26\x07\x5a\x3a\x48\xfc\xfa\x22\xe4\xdb\xcb\x2b\x18\x71\x69\xd1\x88\x65\x59\xf3\x09\x9f\xff\x85\x44\x44\x3c\xd1\xc5\x0f\x33\x2a\xf9\x64\x2f\x6d\xf8\x86\xcb\x03\x46\x37\xa5\x45\x46\xa9\x57\x7a\xde\xf9\xf0\x6c\x26\xa0\x8b\x31\x37\xc7\x6b\x89\x70\x76\xda\x97\xcb\xea\x9a\xb8\xda\xd7\xb4\x56\xb5\xbc\x07\x64\xfe\x27\x77\xba\xd1\x87\x91\xe0\x96\x22\xdb\x7c\xfd\x21\x2d\x99\x7e\x7f\xe8\x49\x38\x9a\x9e\x21\xe8\x54\x28\x12\x9b\xe1\xbb\xf4\xb8\x38\x15\xe4\xec\xaf\xf8\x90\xc9\xf5\x16\xdd\xe7\xec\x83\x51\x1f\xfc\x03\x52\xd2\xf4\xe7\x52\x76\xad\x6a\x86\x17\xc7\x42\x5f\x38\x30\x78\x87\xd8\x1c\xf8\xbe\x07\xdc\xa6\xe0\x52\xde\x19\x81\x47\x1e\xdf\xcb\x54\xb4\x08\xb5\xda\xf3\x65\x60\xd9\x6c\x8e\xba\xb1\x3e\x65\xb2\x8d\x38\x44\x74\xed\x66\x38\x4e\xc1\x7d\x31\xc6\x4a\x73\x24\x34\x1e\x4a\x3c\x8b\xb9\x2b\x6e\xe5\x8d\x2c\xb6\x99\x76\x74\x7a\xd6\xab\x70\x1b\x89\x9f\x29\xd8\x34\x37\xac\x8e\xb5\x7b\x1f\xa3\x25\x19\xf7\x2d\x5a\x13\xcd\x84\x38\x01\xd2\xed\x1b\x89\xc2\xf0\x4e\x7f\x8e\x81\xc4\x48\xc2\xa3\x7a\x29\xbf\xc6\x20\x7b\x7d\xd4\x21\x3c\xef\x30\x06\x59\x34\x2b\x5e\xb3\x9f\xe8\xcf\x58\x67\x17\x5e\xa9\x36\xc5\x1d\xf6\xf2\x9e\x6f\x48\x8a\xcf\x2b\x67\x10\x76\x96\xdb\x6b\x09\xbf\xcc\x02\x66\x69\x17\x01\xc1\xb1\xe8\x3b\x71\x1c\x77\x03\x15\xe8\x3c\x21\x70\x14\x5e\x8c\xf1\xb6\x7b\x7d\x8b\xd2\xc7\x54\x1c\xf6\x49\x6e\xb9\x69\xbf\x5e\x89\x70\x80\xd5\x84\x4d\x4b\x1e\x15\x3a\x61\xe1\x7a\xef\x2e\xd4\x98\x42\x6a\x2f\x0f\xfa\x70\x34\x4b\xa2\x01\x08\x69\x6e\x20\x22\x5d\xc9\x65\x2a\x17\x52\x24\xf2\xd4\x1c\xce\x8e\x27\x6c\xdc\x23\x0d\x01\xc3\x13\x24\xc1\x5f\x46\x10\xd1\x6d\x12\x40\x16\x6c\x6d\xc8\x23\x29\x78\xd4\x5e\xbe\x4c\xc8\x87\x23\xc0\xc9\xf3\xe1\xe8\xa8\x3e\xd4\x23\x4a\x16\x26\xac\xa6\x53\x71\x2e\x12\x3c\x57\xac\x77\x72\xc4\x90\xdf\xfb\xe4\x1b\x6f\x50\x49\x90\xa0\x5b\xb4\x1a\xa0\xab\x34\xc2\xcc\x97\x85\x40\x80\x7d\x0c\xd0\x62\xdb\x35\x56\x85\xdc\x27\xfa\xc0\x97\x34\x68\xbd\x21\x3b\xa8\xf2\x8b\xc5\xb8\x68\x9b\x61\x5a\x7c\xd8\x33\x79\x16\x5a\x6f\xed\x60\xc8\x8f\xff\xfd\xf2\xed\x9b\x93\xfc\xd3\xd3\x9b\x9b\x9b\xa7\x5c\xfc\xe9\xa1\xdd\x72\x78\xbd\x15\x07\x92\xff\xff\xcf\x5f\x9f\xe4\x65\xbf\x7c\x32\xcb\xcf\x85\x6a\x47\x62\xa8\x0e\x09\x70\x36\x82\x75\x9f\x08\xc4\xef\xa7\xe6\xba\x63\x54\x0b\xea\x1f\x45\xf1\xcc\x1d\xaf\x9e\xb9\xa2\xdb\x7b\x22\x70\x49\x77\x8c\xc2\xb2\x2d\xe1\xc9\x8d\x1f\x2e\x83\xb8\x86\x0f\x53\x21\x87\x87\x20\x15\xb5\xa3\xdd\x78\xb5\xd4\x27\x8e\x07\x20\xe6\xbc\x78\x06\xb7\xc5\xa8\xa0\xe5\x85\x0b\xa7\x30\x6b\x5c\x89\x4a\xb1\x95\x2c\x39\x60\x16\xa5\x2d\x44\xb9\xfa\x71\x58\x18\x57\xe3\xf1\x42\xe7\xf7\xf9\xbf\xe3\x1e\xe8\xc6\xcc\x2f\x9c\x65\xb8\x05\xe0\xd9\xb0\x30\xde\x5e\x72\xd2\x0f\x0d\x40\x5e\x94\x32\xe9\x2b\xe6\x05\x09\x6c\x54\x89\x2a\xc3\xd8\x05\x9c\x5f\x7b\x31\xe5\x18\x70\x4d\xaa\x1b\x17\x49\xcd\xf3\xd3\xd9\x36\x2f\x72\xeb\xf1\x44\xef\xcb\x9b\xed\x7a\x3c\x0f\x89\xfb\x47\xe2\xf8\x71\x07\x68\x88\xc0\xe2\x9d\x36\xc4\x0d\xf8\x44\x9c\x9b\x57\x27\xb9\x39\x06\x9f\xa8\x11\xee\xc4\xae\xae\xd0\xaf\x43\x1d\x7f\x8b\x53\xa6\x0a\x44\xf6\x09\x27\x00\xfe\xe4\xb0\x95\xb7\x34\x12\x9a\xc5\xea\xef\x13\x93\x82\xc3\x54\x22\x1b\x4c\x2e\xb2\xa3\xf0\x00\x55\x25\xdc\x58\x7c\x17\xd2\x9a\xeb\x13\x6d\xe5\x30\xc3\x3d\x86\x5d\xf6\x88\xc1\x3b\x45\x4d\x44\x5b\x15\xf0\x2e\xee\x7f\xa3\xd0\x7a\x7e\x0a\x2b\x2a\xf1\xcb\x12\xfa\x07\xe2\x97\x4a\x3c\xd3\xc7\xf9\x6c\x44\x5d\x23\xef\xaa\xd4\x75\xc4\x9f\x29\xe0\xa0\x8d\x11\x5b\xa4\x4b\x31\x16\xa7\x62\x0b\xc7\x38\x40\xb9\x32\x61\x9c\x89\xbd\x03\x80\x20\x90\xcf\x42\x5a\xca\x4f\x1b\x9d\xc1\xc9\x91\x12\x19\xdc\xfd\x03\x25\xf0\x67\x02\x73\xe6\xa9\xd3\x35\x83\xc0\xe5\x9a\x2d\x25\x16\xd4\x64\x14\xb7\xd5\xf3\x2a\x52\xab\x45\xe1\x93\x68\x81\x83\xcc\xe1\xab\xf4\x43\xda\x44\xcc\x79\x2d\xae\x16\xf2\xcb\xcf\xd6\x7e\xdb\xdc\x5a\x68\xdb\x67\xf8\xd2\x70\xfd\x7e\x64\x11\x4c\x07\x15\x21\xa7\xea\x8a\xcc\x34\xa0\x50\x3b\x64\x4a\x56\xc2\x3f\x95\x57\x98\xb1\xa4\xac\xd5\xa6\x3a\x2d\xe8\x0c\x62\xe1\xc3\xba\x90\xc6\x01\x94\xf7\x7d\x35\x42\xac\x9b\x1a\x84\x35\xf1\x03\xf8\xab\x7b\x59\x4f\xa5\xa8\x9a\x15\x41\xa1\x1b\x5e\x6f\x91\x38\x07\x4d\x8d\x62\x1c\x92\x35\x40\x0d\x43\xc7\xc6\x91\x1e\x0d\x1d\xeb\x8b\xfa\xf8\xb1\xae\x28\x4e\xfe\x30\x09\x93\xd6\xf0\x64\x59\xc6\xd1\x61\xe3\x50\x3f\x23\x40\xec\xf4\xca\x0d\x45\xa7\x7b\x97\xfa\x2e\x67\x98\x95\x1f\xdc\x67\x84\x8a\x1d\x5e\x38\xfe\x0c\x29\x6a\xaa\x2f\x71\x52\xdc\xec\xde\xe7\x1a\xb3\xaa\xae\xaf\x67\x8b\x96\x84\x08\x8e\xc7\x8a\xb7\xcb\xf9\x6c\xe2\xef\xfc\x12\xdf\x02\xa2\xd7\xe8\xbf\xd7\xfb\xf4\x92\xa8\xb7\x3e\xbe\x57\xb7\x5e\x49\x84\x3f\xea\xf0\x2d\xe7\x67\x94\x23\xbe\xa9\x6f\x1a\x04\xd6\x97\x9c\x99\x14\xc1\x83\xb9\xfc\x0b\x91\x64\xc3\x83\xb9\x28\x74\xc9\x29\x0e\xac\xdb\x6f\x89\xff\xd6\x87\xc3\x2f\xf9\x03\x11\x5a\x1c\xc4\xa1\x26\x49\xbc\x5c\x19\xcc\x2f\xf2\xe9\xa1\xb8\xca\x70\x3d\xc4\x54\xb0\x7c\xeb\x49\x6f\xa2\x43\x78\x88\xca\x59\x60\xa8\xc1\x11\x18\xa1\x55\x05\xe9\x20\x82\xf8\xc8\x93\x0f\x57\x41\x31\x14\x21\x74\xa2\x41\xb0\x7e\x7a\xf5\x46\x3e\x71\x75\x59\x6f\x45\x23\xcc\xcc\x73\x84\x2f\xe1\x2c\x7d\x55\x62\x8f\x9b\xf0\xa5\x5c\x3f\x26\x38\xce\xcb\x5d\xb2\xb9\x6d\x4a\xb8\xeb\x10\x68\x46\xea\xe0\x80\x34\x3b\xa2\x05\xc1\xd7\xf9\x92\x55\xaf\xfa\xce\x7f\x69\x2f\x83\x71\x30\x9a\xe8\xfe\xd9\x70\xc8\x8f\x5a\x83\x74\x84\x09\x31\x2d\x05\x57\x9b\x59\x6c\x9d\xd9\x54\x8c\x1d\xcb\x93\xd0\x48\xa2\x2d\x97\x5d\xaa\x20\x01\x62\xd5\x16\xd7\xf0\x0d\xe4\xbf\x21\x95\x06\x16\x8b\x5d\xb4\xe5\xd3\x61\x31\x5a\x3c\x41\xa9\x4b\xfc\x08\xe9\xea\xdb\xc7\x7f\x42\x5a\xb1\x11\xbf\x92\xb8\x32\x71\xc5\xcc\x37\x1c\xb7\xd8\x35\xc0\x81\x6e\xc4\x41\x83\xd8\x05\xf1\x81\x4d\xec\x11\x04\x4b\xf2\x63\xf5\x4e\x83\x08\x8e\xdd\x6d\xf2\x30\x3f\x1c\x4f\xac\x97\xc0\xb7\xfb\xb6\x59\x1d\xf8\x3d\x04\xdf\xef\xa4\xb4\xb0\x2f\xa5\x61\x23\xbf\x12\x0b\x19\x03\x71\x52\xe4\xbd\x02\xf6\x85\x69\x69\x22\xf8\x8d\x16\x89\xa5\xa0\x9b\xbc\xda\x51\xfd\x1f\xe5\x4d\x60\xa9\x9e\x78\xcb\x10\x98\x97\xd8\xcc\x5a\x62\x83\x5a\x1e\xf4\x53\xf6\xea\x50\x52\x26\xbe\x00\x6a\x46\xe1\x18\xd6\x82\xf2\xc1\xf7\x2d\x7d\xac\x2b\x66\x62\x39\x50\xb9\x8c\xdd\x75\x20\x39\x71\x2c\x75\x7c\xca\x58\x4e\xea\x2f\xe4\xd0\x42\xb7\xb3\xde\xef\x0f\x39\x2c\x1f\x09\x93\xff\x5a\x7e\xb1\xf6\x73\x8c\x4d\xe3\xd0\xd1\x94\xf7\x74\xb8\xd6\x0e\x3e\x4c\xc0\x5f\xca\x47\x6c\x63\x69\x88\x77\xc9\xc5\xff\xad\xe8\x13\x4c\x31\x85\xa9\x2e\x2d\x6d\xfb\xa7\x38\xbe\x62\x37\x86\x5e\x9f\xa1\x39\x45\x94\x88\x32\x23\x6c\x67\x7f\x3a\xdb\x29\x70\xa8\x4b\xb7\x0b\xb0\x27\x6e\x18\x78\xb6\x8e\x36\x9a\x30\x87\x11\x2a\x35\x94\x4d\x00\xcb\x51\xa8\x59\x51\xc1\x3e\x84\x99\x3e\xfd\xac\x9d\xa1\x07\x1d\x5e\x02\x61\x5d\x52\xb0\x39\x11\xca\xdc\x71\xd6\x8d\x5a\xf3\x86\x1b\x69\xe2\x9e\xc3\x6d\xb8\x07\x52\x7f\x3c\x57\x8f\xb2\x20\x4c\x41\x75\x8f\x8c\x58\x90\x51\x5d\xea\xbf\xec\xf6\x95\xe1\x41\x78\x52\x57\xfb\xaf\xb7\xb5\x70\x30\xdb\xef\x2c\xfb\xb5\x69\xd7\xef\xe3\xd3\x88\x41\x8f\x9f\xa8\xe2\xa1\xcd\x61\x98\xf0\x94\xd1\x11\xc0\xf8\xbc\x51\xac\xd1\x10\xf8\x05\x6f\xd3\x54\x03\xcf\x00\xa2\x4b\x93\x17\x7b\xe1\x97\x6a\x91\x7e\x43\xe8\x10\x79\x95\x4d\x1d\x46\x7d\x73\x12\x75\x2e\xba\x21\xfe\xa2\xf7\xaf\xd5\x05\x9a\x23\xa3\xf1\x0f\x7e\x38\xaf\x62\xd3\x1b\x1d\x3b\xe2\xce\xf2\x0a\x09\x38\x87\xd8\xa3\x85\xdf\xec\x13\xad\x28\xfd\xcd\x10\xf8\x4c\x4d\x07\x9c\xaa\xbf\x34\x7d\xf0\x78\x59\xf2\xd8\x98\x8b\x7f\x84\x67\x00\x13\x2f\x57\xae\x1c\xb3\x32\xe1\xff\x1e\x5e\x96\xd4\x4e\xc8\x14\x22\xf5\x2e\xe8\x24\x8c\x2e\x53\x07\xb9\x39\xc1\xeb\x5f\x88\x2f\xb1\x5e\xba\x57\xa4\xc2\xd3\x84\x75\x72\xc7\xb4\x9b\xc5\x66\x1c\xad\xd9\x88\x73\x7c\x2c\xc6\x4c\x23\xfc\x6e\x7f\x14\xf8\x24\x84\xa5\x2a\x58\x0a\x09\x83\x2d\xc9\xf9\x96\x24\xdd\x6d\xa2\x71\x41\x45\x2c\x21\xfc\x78\xe4\x71\xb5\xf1\x53\x9c\x5f\x1e\xc0\x74\x5c\xc7\xdd\x21\x4c\x9d\x7f\xe2\xd8\x2d\xf1\x0e\x4f\xd5\xe9\x47\xbd\xbc\x5a\x79\xf0\xba\x57\xc8\x9a\x7a\xe6\xeb\xf7\x38\x70\xa6\xa0\x8e\x2c\x25\x53\x10\x6a\xfa\x5c\x93\xb2\xfa\x85\x12\xa6\xfe\x6b\x6e\xa1\xe9\xe3\x95\xc3\x5e\x8f\x5e\xa2\x4a\x3a\xfd\x65\x2f\x52\x1d\x75\xc1\x48\x68\xc5\x50\x49\x31\x0a\x03\x8f\x01\xde\x59\x24\x0d\x0a\xef\x3b\x1c\x14\xeb\xce\x05\x42\xad\xa6\x12\x0e\x5e\x8c\x6b\xf7\xc7\x84\x3f\x62\x3a\xbf\x2b\x38\xfc\xb0\x97\x4c\x63\x42\xe8\x05\xdf\xc9\x3b\x4b\x78\xbe\xa4\x19\x98\x61\x7f\x7f\xc0\xf8\x69\x8b\x28\x2b\x31\x6e\x4c\xfb\x0c\x3e\xc6\xe6\x2f\x6a\xc4\xae\x5d\x18\x2e\x91\x58\x23\xa1\x8d\x33\x07\x0e\x54\x26\x77\xf0\x58\xaa\x52\xed\x59\x7c\x6b\x73\x9e\x04\x89\x3f\x8f\xaf\x79\xc6\x78\xf1\xdf\x86\x62\xea\x1c\x69\x2f\xcc\x0c\xd2\x23\xa5\xc4\x2d\x8a\xbd\x44\x6c\x8f\x40\xf2\x0d\x2e\x71\x32\x67\x58\x3e\x6d\x43\xfe\xce\xdb\x66\x5b\x86\x8e\xe6\xef\x1a\x76\x6f\x35\x90\x34\xf0\x40\x5a\x30\x94\x09\xe9\x2a\xf8\x5b\xc4\xee\x90\x2e\x8f\x93\x22\xba\x88\x4b\xd5\xd3\xd2\xad\x95\x70\xd6\x5a\x3b\x04\x95\x6f\x87\xd0\x35\x22\x81\xe9\xb9\xfa\x86\x9f\xcf\xc4\xa1\x3a\x43\x64\x03\x79\xfc\x53\x53\xd2\x46\x25\x8d\x79\x1c\x7d\xa7\x24\x17\xf7\x7b\x7d\xc9\x62\x9c\x3f\x88\x14\x8d\x33\x25\xc4\x88\xb6\xd7\x6f\x99\x45\xd7\xf8\x19\xb5\x98\x8d\xd3\xd0\xc9\x52\x2b\x58\xfc\xd8\xac\xdc\x31\x49\xda\xf5\x10\x9f\xd3\x30\xee\x0f\x0c\x9b\x3b\x31\x15\x2e\x34\x6b\xaa\x5b\x96\xf7\x9d\xa4\x15\xf8\x2a\xc6\x7e\xc8\xab\xf1\x49\x3f\x3c\xc4\xe7\xf4\x83\x5b\xc1\x5d\x6d\x11\xf9\xee\xe8\x0f\x07\x93\x13\xf7\xca\xc4\xa5\x6a\xd8\xc5\x18\xc3\xf8\xca\x9d\xe4\x70\x4b\x5b\x0d\x38\x13\xb6\xf9\x8c\x8f\x54\xc9\x11\x2f\xa2\x09\xe6\x41\x5c\x44\x27\x9f\x78\xb9\x9f\x08\xe0\x52\x3c\x97\x0c\xa0\xce\xf9\x33\x09\xd8\x37\x3e\x97\xa4\x5f\x91\xd9\x03\xf7\xa5\xb4\x41\x33\xef\x3f\x92\x05\xce\x02\xc9\x0a\xe7\xe7\x0f\x15\xb0\x7e\xb6\x92\x2b\x40\x44\xd7\x14\xde\x60\xae\xd5\x71\x65\x81\x98\x03\x2a\x10\xf1\x31\x9c\xed\x58\xcf\xb7\x39\x7b\x42\x09\xb3\x89\x0d\xd5\x5c\xf1\x00\xc5\xc6\x7d\xef\xfa\xca\xa1\x21\x1a\x7f\x9f\xb6\xba\xf3\x7e\xdc\xb8\x2b\xf1\x5c\x97\xf7\xb5\x03\xc2\x1c\x15\x93\x66\x7e\xab\x8f\x11\x24\xa2\xdd\xba\x45\xbc\x00\x5b\x6b\x26\x16\x0e\x15\x50\xe1\xb7\x61\x94\xac\xb0\x18\x50\x03\x78\xc4\x50\x45\x8f\xee\x22\x0a\x5f\xd0\x01\x90\x8d\xbb\x7b\x00\xb2\x20\x11\x6a\x38\xf2\x6b\x24\x01\x77\x75\x44\xf6\xfc\x17\x74\x04\x74\xe3\x33\x3b\x72\x62\xbd\xd0\x97\x72\x57\xab\xc9\xfd\x7f\x57\xff\x06\x82\x10\x90\x33\x79\xca\xd9\x88\x01\x3c\xc5\x20\xa9\x4d\x7a\x8a\x39\x85\xf3\x6c\x36\xdc\x25\xce\xd5\xcd\xed\x14\xe7\x55\x6b\x7d\x81\x53\x9b\xde\x3e\xd0\x53\x2e\x56\x55\xd3\xba\xe3\x09\xb8\xba\xf7\x37\x14\xd2\x68\xf3\xec\x68\xdd\xb7\xb7\xca\xe9\x20\x06\x70\x12\x2c\x3f\x46\x2e\x17\x99\x0e\xce\x1d\xf2\x8e\xf6\xaf\x58\xab\xf7\xd9\xaa\xe8\x36\x16\x2d\xf2\x99\xfd\xce\x44\x57\x26\x06\x6e\x3c\xaa\x1c\x5f\x53\xce\x87\xaf\x2b\xdf\xf9\x34\x76\xfa\x78\xfa\xf0\x35\xf5\x4e\xde\x13\x5a\x1b\x8b\xb8\x3e\xe8\xad\x39\x75\x86\xe5\x19\xc7\x6d\x2a\x56\x7d\x73\x42\xb6\x6b\xea\x4a\xfc\xee\xce\xe5\x57\xc5\x4f\x63\xfb\xab\x9f\xcf\xf9\x43\x62\x69\x6b\x0a\xdf\xf4\xcb\xfa\xa6\xc7\x2b\x1d\x57\xfc\xf7\xdb\xfc\xe1\x2a\x8b\x43\x87\x56\x9b\x15\x74\x4b\xd1\x8d\xca\x6f\x97\xef\xde\x61\xc6\xc5\xf5\xd6\x1e\x96\x8e\x35\xa0\x9b\xd0\xc1\x1f\x5c\xb7\xb5\x93\xa8\xf4\xd0\x4d\xb5\x68\xf7\x39\xe1\x0d\xc2\xfa\xff\x85\x69\x67\xbe\x5b\x40\xe9\xba\xf8\x41\x34\x97\x27\x2e\x21\x59\x10\x9f\xb1\x0f\x6f\x0b\x26\xc9\xe9\x51\x1a\xd3\xe5\xad\x90\x24\x89\x83\xd4\x26\x09\xc5\x72\xd4\x8a\x59\x60\x7c\x9a\xb9\x3f\xc7\x14\x73\x84\x4e\x6a\x4f\x1f\x98\xf3\x59\xe2\xf1\x9f\x24\xc9\xed\x92\xc1\x48\x44\x2f\xec\xd3\xb6\xcd\x9a\x8e\x4e\xd1\x35\xa7\xc3\x53\x7e\x3d\xad\xd3\xee\x45\x27\x55\x20\x3c\x94\x4f\x81\x31\xb8\x2f\xba\xb4\x34\xf6\xa7\x4f\xb0\x38\xe4\x43\xc0\x18\x87\x88\x88\xcf\x04\x22\x99\x18\x1e\x90\x49\x64\xf1\x29\xc8\xee\xa6\x92\x37\x1c\x2e\xf1\x63\x12\xa6\x3d\x40\xeb\x78\xa8\x5d\x2e\xbb\x19\x70\x5c\x0b\xbc\xc1\xd7\xe8\x8b\x27\x1c\x78\x20\xbc\xb7\x97\xbf\xc5\x76\xec\xee\x2c\xe4\xce\x45\xf6\x47\xd7\x37\xfe\xb4\xa4\xbb\x69\x30\x7d\x40\xc6\x9a\xf5\xa8\x55\x3f\xaf\x22\xca\x87\x5d\xe4\x3c\x0a\xc4\x40\x51\x6f\x05\xcb\xfe\xac\x3a\x06\xbd\x8c\x10\xa1\x9a\x2f\xef\x2a\xe8\x3f\xd3\x7b\xea\xcd\xa0\x93\x09\xcd\x33\x90\x7b\x6a\x18\x74\x71\xb2\x8a\x2f\xef\x24\x4e\xda\x7a\x2d\xa7\xce\x91\x4e\xde\xe2\x91\xc6\x76\xa5\x82\xeb\x96\x9d\x6a\x5f\x98\xa3\xdf\x3d\x55\x1e\xeb\xf5\x9d\x75\x7e\xc1\x30\xd6\x55\x3f\x5f\x2f\x63\xf7\xf9\x81\xda\x76\xc1\x84\x9b\x0f\xf7\x72\x29\xf1\x75\xea\x54\x69\x39\x5d\xfc\xae\x09\x46\x87\x58\x5d\x31\x55\xfd\xb1\xbe\xb5\x25\xbb\xe7\xb0\xa2\x8e\xdf\xf3\x55\x97\x81\x77\xa5\x98\x59\x1e\xcd\x28\xed\xeb\x42\x1f\x0f\x2a\x61\x5c\xef\x1e\x49\xb0\xe5\xc7\xcb\x02\x77\x13\xbf\xa5\xa3\xb8\x7e\x0a\xd2\x8e\xd2\xc6\xd9\xf2\x6c\x3d\xb9\xb3\xa1\xc1\x58\x1c\x5d\x77\x73\xdb\xa2\x2b\x7d\xf9\x59\x23\x70\x0e\x32\x7e\x18\x8c\x28\x4a\xc4\x40\xf2\x88\xc7\x4e\x26\xee\x31\xbb\x6b\x21\xc8\x36\x5f\xad\x13\x1f\x4f\x3d\xb4\x2d\x2e\xbc\x5a\x3a\x8f\x0c\xc8\xb7\x7b\xc7\x0a\x3d\x4a\x7a\xf1\x65\x63\xe4\x07\xc8\x46\x1b\xe1\x1d\x92\xf5\x41\xb2\xdf\xb5\x1d\xa6\x2a\xfe\x57\xb7\x43\xeb\x7a\x35\x7a\xa5\xde\xb1\x07\x78\x82\x89\xe6\xae\xaf\x70\x4c\x5c\xca\x93\x4c\xbf\xe0\xdb\x93\x6b\x7d\x86\x7f\xdd\xb4\x0d\x61\x9c\x04\x6f\xd6\xe7\xe4\x5f\x58\x5a\x37\x51\x00\x16\x8b\xdb\xf9\x41\x63\x55\x58\x99\x73\x24\x13\xdb\xc7\x81\x1e\x62\x29\x30\x4f\x56\x86\xf5\xd0\x4b\xb5\x5e\x80\x9b\xb2\x52\xa7\x96\xe1\x4a\x6a\x99\x66\xc1\x17\xbe\x34\x86\x17\x80\xdf\x6a\x8a\x83\x85\x9d\x90\x23\x22\x13\x06\x1c\xf6\x73\x1e\x2a\x42\x38\x48\x72\xfe\x1a\xc9\xf9\x15\x27\x8f\x5b\xb0\x5e\x85\x62\x83\x4e\x1d\x2b\x77\xdd\x96\xa3\x32\xcf\xf9\xe5\x9e\x21\xbc\xcd\xdc\xa6\x2c\xf6\xa3\x79\x7b\x49\x89\xa3\x59\x03\xe4\x78\x02\x00\x7b\x7c\x16\x7c\xa9\x6a\x05\x21\xda\x97\x78\xb5\xda\x1e\x6b\xa3\x82\x77\xd1\x10\xbe\x66\x26\xfe\x48\x09\xe5\xa6\x86\xbd\x52\xdb\xde\xa8\x57\xcd\x82\x43\xb2\x74\x06\xfd\x56\x3e\x1d\xd4\xa2\x69\x7a\x92\xe5\x08\x94\xd8\x48\xb8\xca\xca\x34\xfd\x64\xe9\xcc\x08\x2f\x3f\x8c\x66\x4a\xa0\xc7\x53\x25\xd0\xc7\xe7\x6a\xc7\xef\xa7\x51\x5b\xed\x61\xd9\x1f\x88\xe6\x84\x06\xcf\x2f\xf9\xdd\xb5\xcb\x90\x31\x6a\x71\x54\xd2\x63\xe8\xb0\xf0\x54\xcb\x4b\x7e\xfd\x6e\xb2\xe9\x33\xce\xb9\xb3\xed\x51\x59\xdf\xf8\xa8\xf8\xd4\x4e\x69\x1b\x22\x2c\x4c\x94\x16\x87\xe5\x87\xb2\xe7\xcb\xec\x9b\x39\x9c\x3a\x7c\x5d\x17\x06\x96\xff\x04\xb0\xfc\x25\x81\xe5\x57\xd0\xb8\x4d\xd4\x4a\xe7\xe8\xae\xec\x0b\x38\x21\xb9\x5a\x5e\x9c\xd1\x0a\x48\xf2\x54\x29\x68\xe2\xe6\x2a\xff\xe8\x2e\x64\x96\xd4\xd5\xf0\x16\xca\x3a\x15\x89\x4e\x03\xc8\x54\x6d\x1c\x97\x59\x0e\xf4\xe5\xed\x52\x5f\x6c\xfa\xd4\x73\x1f\xde\x49\x8a\x83\x85\x8c\x47\xb0\x46\x23\xe1\x87\x82\xb0\x2e\x04\x7e\x95\x12\x4a\xa1\x60\x11\x58\x08\x17\xc1\x5d\xb0\xef\xce\x14\xe0\xbe\x90\xcd\x74\x14\xd2\x9a\x37\x40\x6b\x79\x08\xa7\x8d\x76\x32\x95\x42\x56\x44\xc0\x96\x7b\x5f\xfa\xe4\x35\xe1\x1c\xfc\x1c\x70\xed\xcb\x1e\xbc\xe6\x34\x85\x65\x0b\xad\xb3\xa8\x44\x23\xad\xbd\x02\xac\x60\x22\x57\x40\x9a\x90\x14\xe3\x84\xf1\x02\x87\xfd\xb6\xbc\x24\x0c\x8d\xa4\xc5\x03\x94\xfe\x6a\x9a\x85\x07\x0b\x41\xd3\x35\x1d\xee\xe2\x6d\xb9\x66\x45\x85\x5c\x24\x47\x18\x2e\xdc\x08\x7a\x87\x64\x93\x6e\xfc\x1d\xaf\xab\x06\xa3\x74\x03\x4b\x9d\x12\x6d\x98\xf7\x87\x28\x9b\x69\x1d\x3e\x40\xaf\x8e\x0c\xa2\x8b\x79\xe5\xa5\x6a\x07\xf3\xce\x13\x48\x79\x6e\x50\x0c\x9b\x5b\x5f\x1a\x72\xa5\x09\x6a\x83\x1a\x5e\x43\xe6\x74\xb3\xbc\x2f\xba\x8e\x1f\xf6\x8d\xaa\x6e\x18\x0b\x58\xe5\x22\x17\x53\xa0\x6a\x87\xdb\xed\xa1\x56\x8e\xc9\x7a\xaf\x2c\x92\xec\x6a\x1f\xad\xcd\x1e\x4b\xd6\x9c\xfb\x8c\x8a\x71\x2e\x1c\xa6\xc0\xaf\x25\xc5\x91\x5d\xf1\x49\xdf\xde\x8b\x8f\x7b\x9e\xeb\x33\x9e\xee\xfe\xec\x99\xe5\xbe\xe6\x17\x3d\x8f\x95\x35\x1d\xdf\xe3\x4b\x22\x30\x4f\xbf\xc1\xe3\x5c\xb4\x1f\xd6\xdb\x66\x51\xb0\x13\x8b\xbc\xd3\x8a\x47\x41\x9f\x68\x1d\xfc\x1a\x90\x43\xca\xe1\x5b\xcf\xc5\x00\x49\x69\xf4\x9b\x6a\x41\x83\x12\x41\x7f\x5c\xc0\x00\xe4\x22\x18\xa0\x5c\x4b\x8a\xe2\x49\x21\x84\xf5\xe0\x0c\xc1\x50\x7e\xa4\x2b\x28\x2d\x0d\xe7\x61\x6f\xe7\x7b\x3d\x73\x75\x0c\x1f\xd5\xe0\xca\x40\xb9\x2c\x7b\x92\xd9\x3e\x89\xa3\xe4\xeb\x91\x47\x31\xe7\x86\x6c\xf7\xd5\x75\xf4\x0d\xcd\x49\x94\x89\xfa\x7d\xc3\x18\x21\xfd\x86\x9c\x77\x9a\x8f\x53\xdc\x40\x20\x52\xbe\x9a\x1d\xb5\x8e\xae\xa7\x12\xa6\x94\xfb\x1b\x2f\x57\xf3\x8b\x42\x39\xf3\xbc\x88\xf7\xcf\x22\x96\xbf\x2a\x1f\xa2\x5b\xc4\x00\xf5\xec\xb6\x1b\x63\x67\xd0\x91\xa0\x3a\x49\xdf\x01\x8e\xce\x22\x3e\x34\x47\xda\x8f\x36\x52\x84\xc6\xf3\xcd\x7b\xed\x58\xda\x01\xb1\xe3\x35\xad\xf7\xad\x4a\x95\x9b\x49\x57\x26\xdc\xa7\x4e\xdd\x92\xdd\xe5\x1b\x4c\xb5\xca\xfd\xe1\x01\x75\x4f\x8c\xdb\x09\x95\x47\x09\x4f\xbd\x91\x90\xba\xf9\x20\x29\x1a\x7e\xcc\xe6\x23\x2a\x58\x10\xee\x61\x7b\x6e\x3b\x27\xad\x49\x89\xf1\x9b\xe8\x69\x17\x24\x65\x6c\x1a\x96\x74\xd5\x1e\xe6\xf6\xd0\xb0\xaa\x82\x67\x50\x21\x0a\xf7\xd6\x5a\xda\xf0\xcd\x4a\x68\x86\x95\xce\x0e\xba\x3c\xa0\xb4\x49\xb7\xa5\x94\x84\x38\xb5\xab\xf6\x4a\xcc\x35\xcb\xf5\x5e\x52\xfc\xab\x23\x92\x52\x22\xc6\x10\x53\x1e\x89\x36\xb4\xd2\xf4\xb1\x53\x96\xeb\xa4\x56\x33\xe8\x9c\xab\x15\x50\xd3\x87\x85\xeb\x4d\x57\x92\x1c\xc1\xaf\x89\xd3\xce\xed\x9b\x65\xb3\xc5\x69\x29\x69\xbc\x69\x91\xa6\xb0\xc3\x5b\x1a\x92\x8a\x2b\xd1\x7c\xa5\xa4\xeb\x35\x65\x2f\xef\x8e\x5c\xf0\xbb\x23\x92\x02\xed\xdd\x0a\xfe\xd2\xac\xac\x7b\xf6\xc6\xa7\xdb\x49\x65\xb9\x17\xfa\x3d\x05\xe3\xdc\xab\x8a\x96\x9f\x3d\xf9\x56\x03\x01\x5b\x1d\x08\x5d\xdc\xb4\xe2\xe7\xbc\xdf\x72\x7f\xf9\x99\x63\x18\xde\xd8\x0c\x71\x40\x10\xd0\x4d\xb5\xde\xc0\xe3\x80\x48\xd2\x5a\x5c\xf8\x79\x17\xcd\x6c\xe2\x99\x0d\xd2\xf8\xe6\x60\x7f\xd4\xcc\xf2\x13\x7b\x57\x3a\x10\x8c\x08\x00\x61\x44\x45\x2f\x81\xa0\xca\xa9\x6b\x79\x79\xc8\x3d\x0a\x3d\x7c\x1e\x08\x04\x22\x1c\xd8\xdc\x7b\xbe\xca\xf5\xb4\x42\xd4\xd2\x9d\xbe\x85\x28\x77\x4c\x93\x80\x57\xb3\x51\x0b\xe6\x67\x85\xf0\x93\xf7\xf4\xa6\x3b\x58\xd7\x2f\x0f\xf7\xf5\x9c\x50\x01\x41\xde\xf0\xf7\x28\x58\xc7\xd2\xe0\x42\x1f\xdf\x2a\x59\x7f\x1c\xb3\x78\xa9\x14\x2f\xe4\xf2\xc9\x27\xc3\x1b\x09\x85\x69\x93\x2c\xa1\x30\xad\x66\x98\xf6\x02\x80\x18\xfc\x13\x88\x1d\x9f\xb5\xf3\xae\x60\xc2\x44\xa7\xca\x2a\xbf\x3c\x35\xa4\xdf\xf5\x7b\x7b\x72\xfb\xf2\xfc\xea\xe2\x8e\x5d\xc4\xa0\x8a\xe1\x80\x74\x68\xce\x59\x8a\xea\xc8\x72\xf8\x6e\x01\x1a\x64\xc7\xa8\x72\x06\xce\x75\xb2\x75\xba\x69\xb8\xbb\x78\x35\x46\x5e\x92\xbe\x68\xce\xf8\xe1\x7b\xbe\x14\x24\x65\x66\xf9\x39\xf1\x33\x15\xfb\x6a\x5a\x6b\xea\x2f\xc8\xaf\xd3\x96\xfb\xa2\xb5\x37\x85\xf0\xd6\x70\xfe\xe8\xe4\xd1\x2c\xa1\x3b\xf3\x1e\xcf\x85\x69\xa0\xb3\xab\xd7\x97\xf4\x73\xd9\xde\x8a\x33\x82\x8e\xf4\x43\xb5\x67\xb0\x39\xdf\x29\x13\x86\x9a\x52\x00\xfb\x67\xa4\xd8\xc6\x67\xab\x75\xd9\x7e\xe4\xe8\x9b\x8a\x3f\x17\xa7\xe7\x50\x16\x51\x92\x27\x3b\xda\x34\x42\x6d\x1b\xbb\x1e\x3b\x41\xcb\xd1\x24\xec\xba\x91\xce\x6a\x8f\xb3\x87\xfe\x58\x3d\x2e\x0a\xf0\x90\xa7\x16\xcf\x02\x9b\xe9\x11\x7f\x97\x42\x27\x6c\x5e\xa0\xea\x43\x39\x20\x2d\x73\xdf\x05\xa5\x59\x42\xc7\xfd\xa1\x9d\xd6\xf3\x99\x2e\x7a\xbe\x32\xc7\x60\xdd\x35\xea\xc9\x78\x4a\x69\x89\x04\x72\x2e\x47\x8b\xfa\x4a\x0c\xaa\x0e\x5e\x13\xe3\x12\xde\xac\x3e\x9e\xd8\x09\xd7\xb7\x3b\xdc\xdd\x14\xe5\xc0\x75\x55\xe1\x7e\xda\x91\xaa\x85\xff\x02\x0c\x61\x38\xfc\x2d\xd4\x38\xa9\x86\xe6\xc8\xe2\xc5\x90\x71\xfc\x40\x83\x18\x94\x5d\x64\x34\xe1\xe5\x71\xaa\x2a\xcf\xe5\x86\x39\xe0\xb9\xd2\x6e\xdc\xc7\x7a\x89\x76\xda\x54\xa8\xc1\xc0\xac\x2a\xd4\xd4\xce\xac\xb0\xc5\x7e\x1f\x8e\xee\xfd\x7e\x9b\x9c\xdb\x0e\xe4\xa3\x90\x3e\x07\xf1\x67\x0d\x51\xe7\x80\xe4\xda\xb7\x07\xe2\xdb\xdf\x0a\x30\x3c\xd2\x35\xb9\xb9\xbe\xe6\x17\xc9\xf9\xc5\x18\x0d\x94\xca\x9f\x1c\xcd\x3a\xb4\xaf\xc1\x0c\xe6\xac\xd3\x85\x8e\x94\xc7\xf4\x4c\x23\x1c\xbc\x43\x22\x0b\xa5\x06\xde\x1e\xb0\x94\xdc\xdf\x77\x87\x5a\xc4\x6d\x97\xa5\x0d\x71\x96\x6f\x04\x1c\x64\xdb\x34\xbd\x3d\xc9\xef\xd8\xc7\x77\x94\x4c\xbc\x42\xbf\x09\x13\xcc\x26\xec\xa5\xbc\x3d\xe9\xcb\xc0\x80\xbe\x94\x3b\x57\xa3\x42\xd4\xef\x71\x09\xea\xf7\x11\x70\x71\xd3\x32\xe6\xeb\x12\x5f\x72\x5c\x84\x1e\x23\xaa\xa1\x6c\x0b\x1b\xb0\xa4\x0d\xf1\x06\x73\x10\x2a\xee\x36\x0e\x35\x2e\x5f\x4e\xe3\x05\x43\x8d\xb9\x45\x97\x89\x27\x5d\xe7\x1a\xa7\x74\x2e\x28\xa7\x9c\x6f\x9f\xff\xa4\xe1\x4b\x05\xf3\x7c\xb1\x23\x68\xc0\x59\x9e\x99\x73\xc9\x5b\xb8\x82\x58\xee\x6b\x7c\x8d\x80\x92\x95\x1b\x4d\x25\x01\xf0\x9d\x47\x84\x57\x51\xa0\xff\x28\x6f\x25\xac\xca\x04\xe0\x9a\x9b\x0b\x60\xf4\x95\x3f\x7e\x44\x59\x4f\x25\xeb\xd1\x93\x51\x19\x96\xa6\x77\x87\x9d\x5c\x32\xad\xfe\x5e\xca\xbb\x17\xcc\x0d\x48\x06\x5a\xbb\x64\x6b\xcc\x19\x67\xdc\x55\xb4\x9b\x28\xd5\x85\xb5\x5b\x2d\xe2\xd2\x3d\x33\x8f\x89\xc9\xf5\x23\x48\xcf\xfe\xc7\x54\xcf\x44\xc7\x54\x2f\x3c\xc4\x54\xc5\x2a\xbf\x85\x28\xb5\xeb\xb6\xb6\x8b\x2e\x2f\x5f\xa7\x5b\x35\xe6\x46\x0e\xe3\x31\xb3\x8b\x0f\xf8\xd9\x2e\x7e\xde\xe3\x41\xce\x97\x9a\x9f\xb8\x12\x3a\xd5\x7e\x52\x35\x75\x58\x47\xf7\xb7\x6d\xd5\x97\x7f\x7a\x00\x2f\xa8\x07\x7d\xb5\x5a\x3c\x78\x92\x50\xbd\x6a\x59\xa6\x64\xaf\x5a\x1e\x99\x9f\xa0\xb9\x63\xc5\xd4\xd6\x45\xe1\x7c\x27\xef\x80\x29\x97\xa9\xee\xdb\xe9\xd4\x1a\x3d\x8a\xdc\x44\xa0\x46\x9e\x93\xb0\x7e\xf1\xed\xd2\xd6\x65\xc4\xd8\xe2\xb8\xaf\xfa\xce\xaa\xf9\x09\xc9\xb1\x83\xf2\x1e\x99\xbd\x4f\xa6\x17\xd9\xac\x7b\x78\x92\xec\x55\x2d\xf7\x53\xb5\x08\x46\x12\x34\x91\xe7\xdc\x7f\xaf\x7c\x1c\xf6\x7f\x84\xad\x36\x8a\xbb\xb1\x56\x19\xaa\x65\xb1\x27\xde\xba\x88\xac\xd4\x99\x24\x84\x03\x41\xe2\x2b\xf0\x05\xc8\xf9\x56\xdd\x08\x24\x06\x03\xae\x41\xd2\x46\x66\xbf\x81\x30\x58\xe2\x4c\xa2\xe8\x95\x14\x7a\xc7\x79\x41\x54\xf3\x85\xad\xb4\x45\x97\x09\x2b\x6f\xb1\x0f\x26\x57\x1e\x41\x92\xe6\xdb\xb2\x5e\x03\xed\xfe\x93\x3f\x89\x0b\xe6\xcf\x30\x43\x12\xd4\x00\xca\x6b\xbe\xbc\xf7\xbd\x85\x39\x80\x0e\x9b\x52\xc2\xda\xde\xcb\xae\xfa\xb5\xf1\x67\xf2\x39\xbe\xa7\x7b\xa8\xb0\x47\xc9\xaf\xe6\xdb\x3a\xd2\x26\x69\xdc\xea\xbd\xfc\xf9\xf5\xdb\x01\xe4\xc4\xee\xd6\x9c\x09\x6a\xa0\x39\x13\x7b\x1f\x2a\x6f\x10\x51\x95\xc4\xa0\xec\x06\x15\xc5\x6e\x31\xb8\x00\x32\x97\xa7\xac\x59\x10\xe3\x02\x78\xc2\x8c\x6f\x57\x70\x09\xec\x3b\x4e\x62\xde\x16\x8f\x56\x8f\x4a\x77\xfa\x66\x63\x04\x8f\xef\x53\x68\xf0\x23\x2e\x3c\x0b\x93\x2c\x5e\x3b\x61\x8e\xe1\xa9\x33\x3d\xc5\x02\x39\x9e\x61\xcb\x17\x3b\x55\x74\xd1\x83\x65\x6a\xb2\x26\x81\x2c\x56\x84\xfd\x72\xf3\x15\xa0\xa7\xf2\x9d\x02\xc1\x98\xfb\xb1\xd8\x06\xa8\x57\x9a\x30\x6a\xb5\xf6\x6d\xd6\xe2\xab\xe1\x08\x9d\x78\x98\x3a\x42\x27\x77\xb8\xa6\x0f\x72\x85\xe6\x2b\xbe\x95\xb9\x72\x0a\xfc\x85\x26\x19\xa8\x81\xc4\x9a\x0d\x42\xab\x0e\xfd\xa4\xcd\x55\x05\xc1\xeb\x0c\x5f\x09\x76\x29\x8d\xe0\x4d\x2d\xb0\x91\x4c\xb0\xae\x5c\x4a\x18\xf0\x7a\x19\x66\xc6\x6c\x54\x2f\xce\xc2\xdc\x88\x39\x6b\x30\x98\x6d\x75\x5d\x06\xe3\x97\x8e\xe6\x35\xa5\x25\xc0\x9b\xbe\xdf\x77\x16\x0e\x88\x23\xf7\x5d\xe6\x6f\xe9\x63\x30\x08\x5f\x95\x8e\x24\xd6\x14\x66\xa6\x82\x45\xd2\x4d\x8c\x24\x4c\x4f\xb9\x41\xeb\x89\xe4\xc0\xf5\x48\x1a\x52\xe2\x75\xab\x57\xa8\xe2\x2e\x7e\xa1\x49\x83\x19\xbd\x2e\x57\xb8\x11\xbe\x9a\x87\x12\x3a\xaf\xcf\x2d\x87\xe3\x24\x40\xfd\x18\xe6\xb7\xea\x63\xc7\x59\x45\x3f\xd9\x69\x86\xb2\xfe\x20\xa8\x02\x6b\xae\x10\x7e\xde\xf5\x4a\x62\x2b\xdc\xd6\x7d\xf1\x29\x7f\x69\xf9\xbe\x06\xb6\x91\xa0\x34\x73\xf1\xe0\x65\x08\x12\xa5\x5e\x23\x01\xe7\x78\xc1\x17\xe7\xd7\x5b\x09\x2a\xf0\xe4\x68\x71\x0e\xc6\xd2\xd2\x31\xa2\x1a\x5f\xab\xe8\x2c\xa6\xa6\xb5\x71\x99\xe9\xda\x2c\x92\x41\xa8\x43\x9e\x6f\x7b\x2c\x82\x22\x62\x19\x24\x05\x09\x23\x8b\x76\xad\x66\xcb\xd3\x76\x7d\x90\x57\x6d\x7d\xd5\x15\x07\xa4\x29\xdd\x09\x71\x5e\x59\x88\x9a\xc1\x19\x21\xe0\xec\xce\x99\x40\x23\x7a\xb8\x4a\xd6\x13\x25\xe0\xfd\xee\x0a\x9c\xc1\x1b\x3e\xfa\x4c\x4e\x14\x41\x28\xa7\x58\x02\x51\x9c\xee\x2c\xa0\xe6\x59\x01\xa7\x91\x8e\x81\xbd\xec\x12\x50\x88\x65\x96\x49\x14\x62\x28\x65\x0c\x19\x06\x8c\xa1\xb9\x2d\xcf\x96\xad\x04\x61\xe5\x3f\x57\xec\x33\x1a\x72\xfc\xe9\x64\x69\x1d\xd1\xbe\xd5\x41\x22\x36\xe8\xcf\x08\x1f\x1f\x30\x96\x5d\x6a\x19\x13\x8f\x1e\xa7\x00\xe5\xa7\x72\x79\x70\x8e\x32\x3f\xcb\xb7\x5a\xa6\x63\x35\x8d\x5d\x6d\x3a\xd4\x78\xf0\xfa\x42\x52\x1c\xcc\xd4\xab\x58\xd6\x75\x48\x40\x26\x09\x1d\x6d\x3f\x34\x6f\xf3\x9d\x99\xeb\xb7\x79\x54\xeb\xe3\x32\x5b\xb9\x75\x3e\xf0\x06\x37\x58\x04\x03\x59\x21\xf8\xc3\x3c\x04\x83\x40\x54\x10\x81\xd4\xc0\x10\x01\x5e\x7d\x9a\x95\x19\x63\x93\x5f\x68\xb5\x64\xa7\x40\xf6\x63\x00\x51\xc5\xe3\xe6\xa7\xdb\x58\x92\x86\xec\x21\x9e\xe9\x67\x02\x53\xd5\x22\x93\x4a\x96\x98\x57\x5f\x49\x9a\x56\xe9\x5c\xdc\x4d\xaf\x13\x1e\x4f\x0f\xca\xa3\x4b\x4d\x19\x42\x5a\xcb\x00\x62\x27\xb4\xe1\x6c\x78\x91\xc7\xa7\x21\xaa\xb4\xbb\x87\xe0\xc6\x34\x5c\x46\xcb\x6a\xf6\xcc\x41\xec\x67\xa3\xde\x06\xe5\x8c\xae\x88\x39\xec\xdf\xe7\xf8\x99\xfd\x2a\x73\xff\xde\x2e\x9e\xab\x95\xd1\x8c\xfb\xce\xa1\x2e\x89\x83\x25\x8f\x63\x67\x6d\x59\xbb\x27\x1b\xe4\x2b\x29\x94\x3c\x8e\xf9\x4d\x7c\x04\x93\x2f\x65\x1d\x7d\x5c\x3c\xbc\xd7\x8c\x5a\xf9\x96\x89\x58\x92\x07\x0f\x89\x76\xed\xf2\xeb\x61\x59\xb6\x3c\xa6\x60\x9c\xf9\x6f\x56\xb1\x8c\xd1\x5e\xb6\xfe\x4d\x5f\x93\x96\x6f\x37\xbe\xaf\xc5\x3c\xf6\xb5\x8c\xf4\x0f\xee\xb9\xe7\xf4\x29\x6e\x7b\xd4\xfa\x0b\x2a\x18\xbc\xc0\x1d\x9f\xb4\xfe\x92\x4e\xc8\x30\x86\x4f\xb4\xda\x9a\x25\xcf\x1b\xfa\x0a\xf5\xe5\xd5\x23\x83\x1a\x55\x27\x63\xfb\xe2\xda\x74\x84\xc3\xea\xc2\x40\xbf\xbc\x7b\x83\x07\xc9\xdd\x8b\xed\x4d\xfd\x25\xf3\x36\xf9\x0c\xe5\x6f\xfa\x5c\xe6\x17\x77\x2b\x04\x3b\x57\x3c\xb5\xef\xc1\xae\x11\xdc\x9f\x46\xfc\xb8\x91\x10\x3f\x90\x23\x76\x44\x7c\xa7\x0f\xdf\x0d\x60\xbb\x7f\x7b\x7c\xbc\x23\x06\x7b\xc8\x1e\x23\xd6\x77\x63\x41\x7f\x25\xb9\xea\xf4\xd9\x3f\x51\x06\x3f\x0c\x8f\xd9\x12\x3d\xe8\x9b\x66\xfb\x3e\x2b\xd6\x3c\x24\xfa\x3f\xe3\x1d\xac\x57\x73\xb1\x99\xe9\x67\x26\x9f\xfc\xeb\x1b\xae\xf9\x1b\x0d\xe6\xcb\x0f\x24\x7c\xb3\x43\xc2\xae\xaa\xf9\x0c\xe3\x84\x0d\x12\x36\x1c\x1f\x8f\x3f\x57\xf8\x5c\x15\xb7\xf8\xba\xc1\xd7\x4d\x59\x7e\x90\xc2\x20\xce\x54\xbc\xa9\x49\x48\xe2\x94\x5b\x7c\xdf\xf2\x33\x8d\x78\x7e\x61\x89\xa0\xc1\x78\x0d\xd3\x3e\xf0\xe6\x65\x0d\x4b\x1a\xd2\xed\x83\xd2\xb9\x55\x4d\x95\x9f\x0f\xd9\x3d\xf2\x56\x93\xf0\x8b\x1f\x69\xa3\xe6\x35\x49\x7e\x3e\xc4\x99\xda\x6f\xac\x42\xf9\x4d\xa9\xdc\x0f\x4d\x94\x9f\x94\xd6\x16\x37\xf3\xd8\x2f\xfd\x85\xd4\xd8\x2b\xfd\x45\xd3\xbb\x6a\x9b\x3d\x3f\x88\xf3\x3e\xb3\x87\xea\xe2\x0b\x75\xcf\x28\xcf\x3c\x94\x39\xa6\x15\x6b\xed\xed\xa1\xec\xc3\x9e\x83\xad\xcc\x32\x7b\x98\xb2\xaa\xf7\x87\xa0\x88\x8d\x8f\xa2\x0a\x58\x0c\x19\x2c\xf7\x33\x09\x6a\x96\x41\xcd\xcb\x71\xb4\x16\x60\x98\xa0\xe0\x65\x4d\x4b\xfe\xf8\x1f\xff\x00\x3c\xfd\xfe\xe7\x3f\xf3\xf3\x9f\x9e\xe4\xe5\x27\x8e\xde\xdf\xe5\x3b\x75\x42\x32\x30\xfa\x7e\x9e\x40\x72\x68\x18\x5c\x9b\x53\xaf\x17\xb9\x36\x87\xe6\xb3\xff\x13\x00\x00\xff\xff\xfd\x3b\xf1\x3c\x2f\xd8\x00\x00") +var _confLocaleLocale_enUsIni = []byte("\x1f\x8b\x08\x00\x00\x09\x6e\x88\x00\xff\xac\xbd\xfb\x72\xdb\x48\x92\x2f\xfc\x3f\x9e\x02\xed\x09\x87\xed\x08\x99\x1d\x3d\xb3\xdf\x25\x3a\xfa\xf2\xa9\xe5\xf6\x65\xd7\xb2\xb5\x96\x7a\xe6\x9b\xd3\xe1\x60\x83\x24\x44\x62\x4d\x02\x1c\x00\xb4\xac\x99\x98\x37\x38\x0f\x70\x9e\xef\x3c\xc9\xc9\xfc\x65\x66\x55\x16\x00\x4a\x76\xcf\xfa\x0f\x8b\xa8\xca\xba\x67\x65\xe5\xad\xb2\x8a\xfd\x7e\xbe\x2a\xbb\x65\xfe\x7d\x7e\x9a\xef\x8b\xaa\xde\x96\x5d\x97\x77\xe5\xf6\xfa\xe9\xa6\xe9\xfa\x72\x95\xbf\xa8\x7a\xfa\x6e\x3f\x56\xcb\x32\xcb\x36\xcd\xae\x24\xd0\x97\xf4\x27\x5b\x15\xdd\x66\xd1\x14\xed\x8a\x12\x9e\xd9\xef\xac\xfc\xb4\xdf\x36\x2d\x03\xfd\x2c\xbf\xb2\x4d\xb9\xdd\x73\x19\xfa\x93\x75\xd5\xba\x9e\x57\x35\x7d\x5e\xd2\xaf\xfc\x55\x2d\x29\xcd\xa1\xb7\xa4\xb7\x87\x5e\xd2\x0e\x7b\x4b\xfa\x65\x9f\xb5\xe5\xba\xa2\xde\xb4\x94\xf4\x4e\x7f\x66\x37\xe5\xa2\xab\x7a\x6e\xe9\x2f\xf2\x2b\xfb\x58\xb6\x5d\xd5\x70\xed\x7f\x96\x5f\xd9\xbe\x58\x33\xc0\x05\xfd\xc9\xfa\x72\xb7\xdf\x16\x28\x70\xa5\x3f\xb3\x6d\x51\xaf\x0f\x02\xf3\x5a\x7f\x66\xcb\xb6\xa4\xac\x79\x5d\xde\x50\xea\x19\x3e\x66\xb3\x59\x76\xa0\x49\x98\xef\xdb\xe6\xba\xda\x96\xf3\xa2\x5e\xcd\x77\x32\xcc\x5f\x28\x3d\xd7\xf4\x9c\xd2\x73\x4e\xc7\x10\xca\x15\x0d\x75\x5e\x74\x3a\x0e\x9a\x4b\x1a\x79\xd1\x65\xa8\xaa\x2e\x76\x56\x9a\x7f\x66\xe5\xae\xa8\xb6\x3c\x6b\xfc\x97\xfa\xdd\x75\x37\x0d\xa6\xf6\x42\x7f\xd2\x1c\xcc\xfb\xdb\x7d\x89\x29\x78\x7a\x45\xbf\xb2\x65\xb1\xef\x97\x9b\x82\xbb\x29\xbf\x32\x02\xda\x37\x34\x17\x4d\x7b\x0b\x38\xfb\xc8\x9a\x76\x5d\xd4\xd5\xdf\x8b\x5e\xe6\xe7\xad\xfb\xcc\x76\x55\xdb\x36\x3c\xb5\xe7\xf8\x91\xd1\xc8\xe7\x5c\x0f\xa5\xbc\xa1\x49\x70\xb5\x70\xce\xae\x5a\xb7\x32\x8b\x9c\x79\x8e\x2f\xae\x45\xf2\xb4\x26\xc9\x0a\xb5\x5d\x37\xed\x07\x4d\x7d\xce\x3f\x07\x55\x52\xe7\x34\x37\xed\x57\x51\xd3\x7a\x68\xee\x39\x3e\x12\x80\x2e\x2b\x56\x3b\x9a\xe1\x7d\x51\x97\x3c\x75\xa7\xfc\x45\xf3\x45\x5f\x59\xb1\x5c\x36\x87\xba\x9f\x77\x65\xdf\x57\xf5\x9a\xd7\xe0\x54\x92\xf2\x4b\x4d\xca\x5c\x5e\x48\xbb\x6d\x0e\x61\x95\x29\xfd\xaf\xf4\x99\x5f\xc8\xa7\xe4\xb9\x42\xc8\x0c\x25\xa9\xc9\xbe\xfa\x58\xf5\x55\x29\x8d\xd9\x47\xb6\x3f\x6c\xb7\x34\x9f\x7f\x3b\x94\x5d\xcf\x59\x17\xf4\x4d\x33\x20\xdf\x59\xd5\x75\x07\x94\x78\x85\x1f\x19\x2d\x6a\xbd\xc4\x70\xce\xf0\x23\xcb\x7e\xad\xea\xae\x2f\xb6\xdb\xf7\x99\xfe\x60\x60\xf9\x25\xf3\xd4\x57\x3d\x3a\xab\x89\xf9\x65\x5f\xee\x3b\x9e\xe8\xfc\x79\xd5\x76\xfd\xd3\xbe\x22\x54\x7b\x77\xa8\xb3\x55\xb3\xfc\x40\x48\xcc\x1b\x12\x5b\xe9\xd5\x75\x4e\x63\x7a\x44\x68\xdc\x1e\xea\x9a\x46\x91\xbf\x68\x68\x64\xd4\x4c\xb5\x2a\xf3\x67\x80\x3e\xc9\xf7\xdb\xb2\xe8\x08\xa4\x2c\x56\xf9\x77\x45\xde\x17\xed\xba\xec\xbf\x7f\x30\x5f\xd0\xe6\xf9\xf0\x20\xdf\xb4\xe5\xf5\xf7\x0f\x1e\x76\x0f\x7e\x78\x71\xa0\x62\xdb\xaa\x2e\xbb\xef\xbe\x2e\x7e\xc8\x97\x05\xe5\xd0\x58\x6f\xf3\x45\x79\xcd\x7b\x85\xda\xca\x09\x49\xeb\x35\xef\x93\xdb\x7e\xc3\x0d\xd2\x82\xd1\x8f\x2e\xe7\x8d\xfa\x55\xc6\xb3\x44\x1b\x79\xbe\x5a\x18\x51\x42\x87\x90\xdc\xd2\x2c\x9d\xdf\x5e\xfe\xe7\xeb\x93\xfc\x82\x28\xd3\xba\x2d\xf1\x9b\xfe\xa3\x12\x7f\xca\x69\xb4\x57\xd5\xb3\x9f\x66\x19\x95\xb5\x09\x79\x56\xf4\xc5\x82\xfb\x1e\x16\x89\x33\x65\x0f\x85\x3c\xec\x24\xa6\x75\xa0\x6b\x5d\x8f\xdd\xa9\x3b\x73\x72\x1f\x52\x1d\xba\x79\x43\x1d\x6f\x78\x07\x53\x7a\x98\xd9\x0b\x99\x33\xaa\x2a\x7f\xf5\xe6\xcd\xdb\x67\x3f\xe5\x65\xbd\xa6\x99\xc9\x6f\xaa\x7e\x93\x1f\xfa\xeb\xff\x77\xbe\x2e\xeb\xb2\x2d\xb6\xf3\x65\xc5\x93\xd2\x12\x5e\xe5\x34\x4b\x32\xc4\x59\xd6\x75\x5b\x22\x30\x2b\x6e\xe5\xf2\xf2\x75\x7e\x4e\x3f\xa9\x33\x54\x96\x3b\xd2\x6f\xb2\xee\x6f\x5b\x9e\xa8\xd0\xe0\xd5\xa6\xcc\x81\xb3\x00\x6a\xae\x87\xf3\x92\xaf\xb4\xaf\xb3\xfc\xbb\x45\xfb\x83\xeb\x5f\xb1\xe8\x9a\xed\xa1\xd7\x92\x37\x9b\xb2\xc6\x42\x11\x2a\xb5\x3d\x51\x2b\xa3\xfd\xb3\xac\x6c\xdb\x39\xd1\xcd\xfe\x96\x97\x47\xfb\x72\xac\x15\xa9\x8c\x50\xb9\x6e\x7a\x5a\xfe\x1c\xe5\xa4\x8a\xaa\xfe\x58\x6c\xab\x15\x2d\x52\x9c\xc8\xb4\x2c\x12\x57\x0d\xad\x37\x97\x26\x8c\x6e\x6e\x30\x45\xb4\xc1\x88\xac\xe7\x0f\x66\x0f\x40\x67\x1f\x3c\x7d\x30\xcb\xea\x66\x2e\x44\x80\x29\xf2\xaa\xea\x8a\x05\x51\x67\x39\x2d\x5a\x23\x76\x7f\x65\xbc\x93\xae\x28\x44\x9e\x40\xf0\x9a\xf0\x09\x04\xc2\xcf\x48\x59\x10\x99\x06\x2d\x51\x2a\xe2\xc7\x6e\x24\x27\xe0\x85\x50\x9d\x90\x30\x1a\x73\x66\x0b\x6d\x58\x79\xba\xdf\x6f\xab\xa5\x34\xfd\x42\xf2\x22\x82\xf2\x79\xac\x93\xe2\xe1\x80\x60\x96\xe7\xd0\x8c\x7a\xcd\x54\x29\x4f\xc8\x3b\xca\x6f\x4a\xda\x71\x9b\xc3\x5a\xce\xa4\x6d\x73\x58\x7d\x85\xc3\xc1\x56\x2e\x92\xe0\xfc\x5d\x43\x1d\x06\x56\x05\x80\xd8\xc4\x29\x11\x14\x66\x01\xda\x72\xd7\xf4\x3c\x71\x5a\x8c\xc9\xdc\x4d\x45\x99\x34\xd2\xae\xf8\x48\x87\x5b\xdf\xc8\x56\x5e\xd1\x56\x5d\x72\xc5\xb3\x8c\xc8\xca\x5c\xb7\x13\xd1\x1f\xd9\x52\x96\x96\xe2\x2e\xa0\x76\x07\xda\x85\x1b\xaa\x8c\x27\x9e\xf9\x10\xaa\x72\xaa\x9f\x18\x12\xd5\x03\xea\x40\x3b\xbe\xa1\x33\x93\x17\xfa\x19\x7e\xe8\xb7\xaf\x9f\x7a\x55\x5c\x5f\x53\xaf\x3a\xda\x4d\x2f\xf3\xe5\xb6\xa1\xad\xf8\xcb\xbb\xd7\x1d\x6f\xb4\xcd\x7c\xdf\xb4\xe0\x3f\x28\xeb\x82\x7e\x86\x34\x37\xd1\x0c\x51\x1f\x76\x0b\xfa\xba\xd9\x54\xcb\x8d\x4c\x3b\x97\xe0\xfd\x41\xa9\xd4\xc4\xa1\xa3\x25\x3c\xc9\x69\x6b\xd1\x08\x68\xca\x80\x00\x3c\x06\xc3\x3a\x06\xbf\x26\x1c\x3b\xb4\xb4\x9d\x36\x7d\xbf\xb7\x96\x5f\x5e\x5d\x5d\x48\xd3\x21\xf5\xae\xb6\x0b\x87\x19\x58\x83\x2d\x73\x44\x75\xde\xd4\x33\x20\xc9\xa1\xdd\x0e\xf0\x87\xc6\x6a\x39\x47\xe6\x85\xbb\xf0\x35\xff\x77\x19\xa7\x07\xf3\xdc\x11\xaf\x77\x03\x6c\xa2\x39\x06\x97\x32\xcb\xb6\xcd\x7a\xde\xd2\x6a\x18\x32\xbd\x6e\xd6\x82\x40\x49\x46\x6c\xe9\x99\xa1\x04\xcf\xc6\x4d\xcb\x5c\x1b\x41\x82\x60\xf1\x22\xd3\x26\x69\xf6\xdc\x4f\xb7\x4b\xde\x6a\x42\xdc\x1a\x68\x3b\xe4\x83\x4f\xa2\x4c\x10\x27\x77\xa6\xef\x68\xfe\x94\x9a\x5f\x9e\xd3\xac\x82\xa4\x23\xf5\xba\x6d\x76\x94\xfa\x9c\xfe\xc4\x84\xd8\xc7\x73\xae\x0f\x30\xc5\x6a\x45\x87\x4d\x77\x92\xbf\x7b\x7e\x96\xff\x5f\x7f\xfa\xe3\x1f\x67\xf9\xab\x9e\x37\x36\xe3\xfa\x7f\x31\x8e\x16\x3a\x13\x11\x94\x08\x60\x4f\x68\xfc\x80\x37\xea\x83\xfc\x3b\xe4\xfe\x7f\xe5\xa7\x82\xf8\xcc\x72\xb6\x6c\x76\x3f\x30\x71\xdf\x15\x44\x4a\x38\x87\xb0\x5f\xb7\xc5\x65\x59\xaf\xe8\x87\x70\x7d\x9a\xe5\x88\x8b\x66\x3b\x1e\x50\x98\xdf\xf9\xb2\xa9\xaf\xab\x96\xc7\xf3\x73\x0d\xdc\x32\xb6\x38\x3f\x93\x1c\x63\xa1\x68\xca\x88\x1e\x55\xd7\xb7\x11\x14\x23\x7d\xc3\x89\x8a\x1e\x99\xe0\xf0\x5c\x49\x7d\x98\xe3\x4b\x41\x6d\xc6\x82\xb7\x34\xba\xd6\xa6\xbb\x8b\xf3\xdd\x5c\x5f\xf3\x89\x6f\x67\x95\xb6\xf0\x56\x52\xe5\xd8\xf2\x20\x84\xda\x7b\x30\xf6\xcf\x74\x4b\x9c\x3d\x7b\x93\x97\x1f\x09\x77\x99\x86\xb6\xcd\xea\xb0\x04\xbe\x32\xec\x09\x93\x7e\x22\x38\x1d\xed\xb4\x65\xa9\xc8\x12\x48\x0e\x77\x8d\xe9\xda\x92\x80\x88\xd2\x18\xe9\x27\x6e\xf4\x23\x9d\x23\xad\x6b\xe2\x85\x25\x69\xef\x47\xb0\xa3\x4e\x85\x12\x3c\xf2\x25\x2d\x38\x21\x85\xf4\xa2\x93\x4e\x49\x36\x6d\x1e\xda\x15\x07\x92\x72\x8a\x15\xf5\x65\x71\x0b\x2a\xd6\x31\x2e\xac\xca\xeb\xe2\xb0\xa5\xd5\xbe\x2e\x69\xfd\x88\x5d\x5e\xcd\xb5\xad\x6d\xd3\x7c\x40\x63\x3a\x55\xcf\x0d\x20\x3f\xd5\x4a\x5f\x03\xe2\x58\xc9\xd0\x59\x2d\x1f\xc0\x42\xa7\xb4\x05\xda\x69\x7c\xbc\xc7\xfc\x66\x4f\xd3\xac\x93\xa9\x2b\x9d\xf3\x79\x4b\x39\x35\x51\x90\x85\x0e\x3a\xce\xe5\xe0\x18\xb5\xd9\xb9\x64\xe1\xd0\xe7\x4d\x16\x18\x4d\x2a\x10\xbe\x1b\x96\xa5\x9d\x53\x13\x87\x28\xc7\x2d\x6f\x31\x91\xbe\xec\xe4\x25\x02\x5d\x62\x9c\xf3\x28\xeb\xe8\xc0\x4d\xe4\x49\xf3\x43\xb3\xef\x84\x67\xcc\xc1\x6c\x70\x8d\x56\x01\x33\x59\xd3\x7d\x99\x65\xca\x68\xce\x55\x4c\x9d\x7f\xac\x20\x04\x86\x2d\x26\x55\xaa\xe8\xca\x33\xfc\x67\x06\x60\xe9\xb2\x9b\x2c\x1b\x7a\xf3\x96\x07\xd9\x05\x21\x50\xf0\x84\x87\x8b\x16\x98\xf9\x25\xcc\xfa\x58\xe1\xa0\x53\x24\xc7\xbc\x2c\x98\x3f\xa3\xa6\xa9\xa9\xae\x2c\x51\x03\x95\xff\x9a\xea\x44\x99\x99\x4a\x40\x2a\x94\x18\xd3\xcc\x0c\xcf\xaa\x01\xf7\x84\xd3\x94\x4a\xdb\xb4\x0e\x38\x9b\xbc\xad\xd6\x1b\x3a\x5d\x9a\x9b\x13\x99\x94\x9b\x4d\x53\xf2\x9e\x7f\xf5\xec\xfb\x6f\xa4\x1f\x6b\x3e\x5b\x43\x21\x3e\x95\x8b\x03\x6d\x08\x9a\x31\xdd\x7a\xd2\x85\xc0\xdd\x00\x72\x24\x6b\x09\xd0\x50\xe8\x1d\x31\x53\x81\xd0\x29\x7d\xf3\x79\x4a\xd8\x22\x8c\x94\x36\xc1\x59\x1a\x16\x42\xaa\x82\xd2\x7c\xdd\x40\x50\x33\xc1\x88\xd9\x85\xac\x27\xb1\x6b\xbe\xae\xfa\xf9\x35\x53\x5b\xae\xf8\x39\x57\xc0\xdc\x0b\xe5\xe4\x8f\x28\xeb\x51\x4e\x14\x9b\xa4\xcf\xd5\xb7\xf9\xc3\x8f\xca\x6a\xff\x89\xc9\x28\x6f\xc5\x6a\x8b\x15\x51\xf1\xaf\x2d\x85\x93\x36\xd5\x43\x60\x5b\xbb\xc3\x1e\x87\xbb\x72\xc8\x41\x8c\x5a\x35\x37\x35\x13\x0c\x1c\x17\x44\x1a\xab\x65\x45\x87\xdc\xa2\xaa\x0b\x3a\x1d\xad\x16\x1c\x43\x0f\x09\x25\xde\xbc\xbd\x02\xe0\xba\x59\x1c\xaa\xed\xca\x00\x66\x99\x71\xd1\xc4\x43\xeb\xe2\x7b\x79\xc4\x92\x2a\xe9\xcb\xb2\x69\xf9\xfc\xc5\x68\xac\xe0\x11\x5e\x90\x0f\x6f\x61\xde\x2b\x16\x04\x01\x8b\x72\x81\x6d\xe3\x69\xa0\xd5\x5f\x6e\x94\xa9\x03\xda\x54\x5d\xfd\xa8\x47\x4f\x97\x07\x6a\x8b\x56\x9e\x93\xa9\x60\x97\x3f\xfd\x81\xfe\xcf\x98\x45\x94\x43\x6b\x3d\x9e\x78\xce\xcc\x25\xf3\x20\x5b\x31\xe9\x6a\x82\xe3\x61\xa5\x0d\x83\xdd\x58\x7d\x7f\x0d\x05\xba\x83\x20\x2d\x6b\x89\xb6\xb4\xac\xe5\x57\xf4\x83\x45\xde\xf5\x16\x8b\x50\xf4\x2a\x97\x36\x34\x6f\x8c\x20\x27\xb2\x67\xae\x69\x68\x4c\xfe\xfb\xe2\x43\x09\x51\x36\xce\xf9\x14\xf7\x73\x74\xde\xb2\x5f\x59\x67\xf6\x3e\x3b\x08\xe7\xde\x6c\x57\x41\xba\xc4\x6e\x20\x6a\x54\x26\x2a\x9f\x08\x13\x10\xbd\x23\x09\x65\xb9\x99\x07\x85\x1b\x4f\x64\x5f\x7e\x02\x8f\x83\xac\xa8\x7f\xe3\x5d\xc2\x59\xd9\xee\x16\x4b\xcc\x03\x3f\xbf\x8d\x2b\xcc\x0a\x89\x6e\xd3\xdc\x40\x7b\x15\x20\x2e\x29\x05\x7a\xab\x84\xbf\x67\xad\xd7\xb2\xd9\x12\xbe\x37\xbc\x2a\x1f\x23\xfc\x99\x4f\x4d\x2b\xa7\x76\x49\x18\xd1\x66\x53\x6d\x0d\x65\x89\x82\x48\x73\x45\x41\xd4\x65\xa0\x94\xaa\x59\x04\x41\x25\x7c\x51\xbd\xc8\x8c\x16\x1e\x6a\x17\x6b\xf9\x55\x2d\x9c\xb7\xef\x27\xcd\xb1\x6a\x1d\xdf\x67\x06\x97\xf4\x49\xc8\xad\x4c\x3a\xab\x7d\x8a\x16\xd8\x7b\x89\x1f\x54\x9a\x08\xda\xe6\xbd\xd3\xfb\xcd\x0d\xb7\x4c\xff\x07\xdd\x94\xd2\xb4\xc8\x83\x6d\xca\x3d\xb3\x6b\xbb\x0e\x48\xb9\x65\x05\xc9\xad\x8a\x2f\x01\x3d\x7f\x94\xd3\x82\xf0\x95\x68\xec\x57\x59\xd7\xf0\x76\x9f\x7f\x61\x15\x3f\x55\x84\x88\x28\x9f\x9e\xb4\xa2\x90\x24\x29\x83\x07\x43\x7b\xfc\xf6\x24\x15\x6c\x37\x24\xbe\x2f\x4a\x3a\xf5\xb5\xd8\x6a\x66\x8a\x09\x46\x20\x12\xa7\xb1\x63\xa1\x44\xc5\x1e\x93\x92\xcd\x88\x05\xe0\x1e\x0a\x91\xd5\x56\x02\xb3\x09\x56\xd2\x73\x9c\x13\x6d\xd2\x84\xed\x4a\x96\x5e\xe6\x3b\x51\x5e\xca\x57\x7e\x5e\x66\x74\x16\xaf\xb1\x8f\x04\xd1\xbf\x67\xa5\xd5\x1a\x42\x9e\x62\x3e\x03\x94\xbd\x3f\x05\x14\xc2\x52\x7e\x34\x65\x31\xd1\xa5\x1b\x28\x11\x99\x13\x1a\x4e\x3f\x9d\x97\x94\x3d\xb3\x53\x45\x18\x14\xf0\xc6\x1d\xd1\xaa\x38\x89\xa7\x39\x6b\x7d\x3d\x94\xf2\xf9\x61\x54\x0c\xcf\x24\xeb\xbb\xc5\x0f\x0f\xbb\xef\xbe\x5e\xfc\x10\x08\xfb\x72\x53\x2e\x3f\x08\x72\x56\xf5\xa2\xf9\x04\xb5\x02\xd4\x5b\x25\xd5\x4a\x9b\xf5\xe1\x2a\xdf\x50\x2e\xa4\x5a\x22\x44\x54\x8c\xe6\x9d\x73\x93\x35\xa3\xbe\x30\xbd\x9a\x89\x3a\xb1\x14\xec\x8f\xf8\x08\xbd\x22\x63\x24\x4e\x1f\x43\x49\x2a\xb4\xa9\x16\x74\xa6\x11\x69\x82\x24\xfc\x1a\x7f\x2f\x34\xb9\x5c\x0d\x20\x1c\xa3\xd0\x06\x42\xca\x5a\xb8\x50\x80\x3b\x09\xd0\x38\x3e\x45\x99\x88\x2e\xbc\xb2\x98\xbf\x6d\xb5\xab\xfa\x11\x2a\x32\x59\x2d\x14\xa5\x55\xfd\x69\x6b\x83\x31\xc4\xd9\xa5\xc3\x89\xaa\x21\x5e\xc2\xd0\xf3\xa6\x20\xf1\xf9\x4f\x39\xb5\x71\xe8\x59\x42\x64\xa5\x54\x4f\xa7\x53\xc1\xcc\x08\x89\xce\x45\x37\x3f\xd4\xba\x4c\xc4\x20\x2b\x72\xbe\xac\x70\x66\x72\xbb\xb6\x85\x1c\x54\x2a\xb1\xe5\x8f\xc3\x0a\x3e\x99\xa9\x22\x14\xa5\xf8\x1c\xe3\xfe\x54\x2c\x5e\x14\x53\xb8\x40\x14\xbb\x2e\x65\x86\x30\x7e\x06\x63\xb4\x21\xa1\x39\x4e\x16\x49\xde\x1f\x98\xaf\xe6\xf5\x5d\x1c\xfa\xbe\x61\xe1\x71\xcb\x38\x28\x65\xac\xcf\x67\x00\x84\x78\x1d\xeb\xbb\x95\x65\x49\x67\x49\xe5\x5f\x70\x21\x1d\xe8\x88\x98\x32\x58\x88\x4f\x87\xa6\xa7\x7e\x80\x5a\x89\xd6\xb1\xa8\x6f\xa3\x42\x0b\x7d\xe0\xe6\xfa\xe9\x9e\x3c\x6e\xcb\x27\xb1\x2f\x61\xff\xa1\x84\xf6\x47\x4a\xbb\xad\xf9\x0e\x99\xa2\x32\xb7\x0d\x6c\x67\xe6\x52\x75\x99\x01\x35\xda\x74\x6a\x91\xcf\xbb\x8c\x28\x39\x71\xd1\x2b\xcc\x32\x0d\x02\xa5\x67\x83\xb6\xa2\xd0\x3e\x9e\xbe\x3e\xed\x71\x3c\x56\xfb\xa6\x99\xd3\xc9\x07\x7d\x8b\x75\x2f\xdf\x96\xf5\x3a\x51\x54\xc2\xfc\x05\x7c\xfb\xbf\x59\xb9\x58\xcf\x21\x61\xba\x0d\xf8\xa6\xa9\x9f\x22\x2d\x88\x28\x56\x5a\x55\xdb\xd6\x20\x57\xd3\x36\x87\xf5\x46\xb5\x54\xd9\xaf\x3c\x6b\xef\x33\x5d\xd7\xd2\xd5\xa9\x58\x6f\x39\xb6\xfe\xb2\xb7\x03\xbc\x31\xba\x7f\x2e\x5b\x16\xe7\x01\x94\x2c\xfc\xb1\x15\x49\x27\x24\x90\xf4\xc8\x19\xbd\xf3\x04\x48\x93\xaf\x0f\xdb\x93\xfc\x46\x58\xa6\x58\x26\xa8\x12\x94\x99\x62\x14\x17\xbb\x1f\x0d\xaf\x59\x15\x34\xbe\x5b\x58\x33\xfe\x4a\xc7\x6e\x0d\x0b\x52\x93\x51\x86\x14\x3a\xc7\x0f\x02\x65\x5d\xc8\xfb\x8c\x8f\xe3\x37\x03\x89\x80\xcf\x6d\x4d\x73\x5c\x29\xb2\x7e\xf6\x16\xb2\x30\xe6\x8b\x09\xe1\xe1\x5d\x19\x0d\x65\xf8\x15\x06\x7f\x79\xf9\xf2\xca\x94\x1b\x97\x2f\xf3\x0f\xa5\xd6\xfd\xb2\xef\xf7\xdd\x2f\x50\x9b\x89\x0e\x8c\x15\x66\x17\xc5\x2d\x73\xea\x92\xac\x1f\xc8\xb8\x2a\x8b\x9d\x76\x92\x7f\x4a\x15\xa7\xc4\x44\x68\x22\xff\x24\xce\xc3\xa9\x63\x33\xf0\xac\x3f\x27\xa2\x8a\xec\xa2\x8c\x58\x8b\x9f\xda\xa2\x5e\x5a\x61\x66\x35\x16\x48\x90\x92\x67\x24\x8a\x54\xfd\xe5\x81\x04\x12\x18\xf5\xe4\x9b\x96\x09\x09\x9a\x7d\x4e\x53\x21\x66\x4c\xcd\xde\x49\x82\x66\x9f\x6d\x1a\x96\xf6\x43\xee\x12\xdf\xd9\x55\x5b\x96\xda\xea\x73\xb3\x1d\x64\x60\x20\x85\xf7\x91\x5f\x59\x10\x6d\x4b\xb5\xee\xfd\x36\xd2\x72\xff\x96\x15\xdb\x3d\x49\xdf\xcc\xa2\x3a\x30\x28\x74\x17\x2a\x84\xe7\x00\xc1\xc6\x3e\xec\x08\x87\x97\x50\x94\x50\x81\xc7\x4f\xe7\x4f\x9c\x82\x3f\xad\x6c\x45\xf4\xee\x77\x55\xc8\xbf\x65\x57\xc6\x7a\xbb\xea\xef\x36\x8a\xa4\x3a\x4e\xa7\xb3\x83\x20\x20\x69\x44\xa8\x00\x84\xd3\x8f\xa5\x8e\x9e\xf5\xbb\x94\x40\x92\x4d\x52\xf5\xae\xf8\x74\x5f\xc1\x5d\x33\x51\x4e\xa8\x7a\x2c\x64\xc4\x5b\x87\x98\x6c\x70\x02\x67\x05\xee\x51\x60\xc2\x4d\x02\xa9\xea\xe5\xf6\xb0\x3a\xda\x91\xee\xb0\xa0\xbd\xce\x12\xd3\xa3\x87\xdd\x23\xae\xb2\xfe\x40\xcc\x51\x1d\xe0\x7f\x91\xef\x1c\xdf\xdf\x9a\x91\x79\x4e\xd5\x8a\x18\x99\x07\x73\x33\xf1\x78\x2b\x3e\x2f\x21\x0e\xce\x22\xa9\xf5\x22\x62\xd8\x9f\xd0\xa5\xa9\x08\x1f\x48\x14\x2b\xd0\x20\x2d\x13\x16\xce\xa2\x61\x7c\xce\xbc\xd6\x9c\x45\xaf\xda\xcb\x4a\x7c\x3e\x18\x47\x01\x6e\x0c\x10\x33\x31\x5b\x8c\xcb\x0d\x08\xc8\xd1\xe2\xc4\x51\x4e\x94\x7e\x3b\x36\xa9\x1c\x29\xdf\x13\x0d\x98\xa8\x20\x90\x86\xa3\x05\x65\xed\x51\xe8\xd0\x41\x22\x4e\x68\xdb\xb8\x1c\x43\xcd\xe2\x2c\x85\x09\xf7\x6b\xe3\x25\xcb\x30\xcf\xa9\x22\x80\x95\x6a\x84\x7e\x2d\x1c\x14\x9c\x3a\x40\xd5\x33\x7a\x1c\xed\x58\xf2\xed\x0e\x7c\xb4\xb2\x94\x2c\x9c\x6a\x3a\xa3\xcc\x34\xa1\xaa\x12\x4d\x1c\xaf\x9e\xf0\x89\x4f\x8f\xfb\xea\x07\xd8\x17\x56\xed\xb5\x47\xe3\x8a\xb5\xf2\x00\x74\xac\xda\xa0\xda\x28\x3f\x55\x30\x1e\xbc\xa8\x3e\x96\xaa\xdc\x08\x3a\x1d\xe4\xcd\xb2\x2d\xed\x7f\x16\x72\x65\x54\x22\xd2\x34\x1f\x79\x47\x71\x7b\x9c\x2b\xe5\xc4\x98\xa0\x83\x62\x24\x51\x35\x09\x2c\x9a\xe5\xea\x84\xad\xab\x3d\x78\x17\x6c\xd0\x62\x7b\x53\xdc\x76\x50\xf9\x19\x91\x61\x3b\x8c\x14\x67\x0a\x42\xfc\xdb\x1a\xbd\xf2\xd6\x3e\xda\x35\x36\x13\x6c\xb6\xe2\x13\x2d\xb0\x59\x37\x50\x74\x80\x42\xa8\x12\xf1\xa3\xe3\x1d\xf4\x00\x64\x25\x0d\x6b\x27\x58\xdc\x93\x6c\x57\x11\xcc\xef\x4a\xec\x27\xca\x9e\x30\x6f\x4b\xcd\x30\xaf\x49\x24\x58\xe6\xba\x82\x28\x81\x2e\x39\xad\xd7\x81\xea\x7f\x2a\x32\x52\x45\x73\xc8\x22\x77\x54\x04\xf1\x81\x49\xab\x62\xd6\x2a\x49\x17\xf5\x49\xd7\x57\xdb\x2d\xcf\xb4\xb9\xa4\x24\x32\x0b\x72\xb1\x4f\x30\x4d\xdd\xa6\xda\xe7\x0d\x6c\x16\x7e\x0a\x23\xda\x3a\xe9\x80\xed\x72\x25\x64\x30\xb6\xdd\xd0\x81\xdb\x5d\x97\x30\xe2\xec\xf2\x6b\x76\x9b\x98\x69\xd3\x2c\x6c\x88\x0b\xca\x91\x96\x45\x9c\x45\xd3\xfe\x80\xc0\xda\xb9\x85\x4a\x9b\x16\x23\x21\x2c\x05\xe8\x03\x66\x35\xd6\xd4\x59\x1f\x18\xcd\x46\x53\x00\x9e\x3f\x31\xf9\x4e\xce\xc3\x75\xa2\x25\x91\xf6\x81\x69\xf7\x8c\x3b\x13\x17\x8f\xb9\x70\x21\xc9\xae\xb8\x42\x8e\xf1\x27\xc3\x8d\x91\xfd\xca\x78\xff\x3e\x13\x4e\x78\x1e\x2c\x31\x67\xc2\x19\x0b\x5b\x8b\xc4\xec\xbf\x1a\x3a\x68\x61\x56\xf8\x77\xfa\x05\x1b\x44\x96\xd8\x96\x07\x2a\x1c\x75\xae\x61\x9c\xbc\x20\x54\xa2\xb3\x5e\x3d\x6c\x6e\xb3\xeb\x06\xfb\x09\x1a\x9e\xe7\xf6\x3b\x63\xff\x85\x16\xc8\x75\xa9\xbf\x12\x95\x91\x14\x12\x7d\xe2\x73\xfb\xad\xa9\x21\x89\xb6\x45\x48\xf9\x45\x7f\x66\xac\x93\xd8\xcd\x40\x7f\x99\xdf\x86\x19\xca\x51\x5d\x3e\x54\x19\xff\x2d\x6f\xe6\xe0\x89\xbf\x22\xca\x53\x8b\x0c\x27\x44\xc0\x17\xd5\xec\x50\x45\xf0\x7e\xe0\x5a\xb2\x5f\xcd\xf3\xe8\x7d\x16\xfd\x93\xcc\x35\x69\x4a\x85\x1e\xa6\x5f\x0c\x4b\x99\xee\xea\x4e\x79\xdf\xff\xa0\x9f\xaa\x8f\x02\xc5\xc0\x0f\x55\x28\xc0\x0f\xc1\x8c\xc7\x70\x67\x72\x9f\x99\xea\xf7\x52\xe5\x9e\xe2\xd4\xf7\xf9\x33\xf9\x61\xaa\x89\x43\x85\x31\x56\x24\x21\xec\xb1\x70\xce\xbb\x4a\x57\x32\x0c\x42\x9d\xeb\xbc\x72\x62\x24\xd9\x4a\x25\xe0\x26\xcc\x16\x88\xb3\x93\xcd\x3a\x4e\xc2\x65\xc5\x3c\x44\xdf\xda\xd9\x39\xd9\x7a\xc7\xe2\x3a\x81\xdd\x94\x0b\x33\x7e\xed\xcb\x56\xc7\xb9\x2b\x48\x08\xfd\x58\x15\x41\x2d\xe6\x78\x9a\x70\xe8\x9a\x5e\x2b\x91\x05\x21\x65\x88\x9a\xd1\x58\x1a\x5b\x60\xd6\xf6\x08\xfe\x53\xad\x95\xd8\x9e\x6a\xb0\x3b\xec\x1c\x65\x67\xe2\x73\x76\x0a\x83\x97\xc7\xd8\xad\x91\x9b\x50\x1b\xdc\x6b\xfd\x99\x1d\xf6\x6c\xd4\x72\x73\xf9\x0b\x12\xc2\x5c\xa6\xf9\x4e\xd6\xc3\xac\x5a\xb1\xa0\xd6\x12\xf0\x95\x13\xfe\xd8\xb2\xa3\xfb\x78\xc2\x5d\x51\xb7\xf4\x6a\x08\x12\x95\x40\xa0\x51\x3a\x70\x2c\x94\x38\x1a\x60\x6a\xe9\x9c\xcb\x59\xe3\xbc\xad\xea\x0f\x9d\xae\x14\xcf\x93\x97\x7b\xa1\xac\x23\x7c\x3f\x94\x2a\x89\xf0\xcf\xb1\x73\x9c\x1a\x45\xd5\x44\xba\xb8\x35\x6d\x86\x18\x51\x15\xf5\xd9\x34\x0b\x61\xeb\xb8\x35\x76\x68\x86\x35\x2b\xac\x59\x17\x61\x04\x8e\x14\x8d\xe6\x21\x3f\x13\xc3\xb0\xee\x2e\x12\xa9\x9a\x4e\xb5\xc7\x91\xee\x71\x1a\x94\x43\x4a\xf6\x74\x59\x62\x3d\xb2\x6a\xa7\x66\xa0\xc6\x0e\xd7\xbd\x34\x57\x53\x4a\x84\xd6\xad\x75\xa6\x26\x96\x53\xab\x53\x0c\xd0\x36\x26\x50\x97\x79\xb5\x13\x79\xf0\x17\x33\x4f\x63\xc1\x83\xc0\x80\xec\x59\xda\x9f\x21\x96\x68\xbb\x66\x60\xb9\x07\x59\x0c\x15\xbc\xc5\x4e\x96\x3f\x50\xa4\x66\x9b\xb0\x6b\x36\x8e\x90\xcf\x93\xe7\xf2\xdf\xc0\xb6\x1a\xd4\x16\xbc\xc7\xe6\x03\x10\x95\xf4\x13\xc8\x49\xae\xd8\xda\x3a\xca\x11\x0f\x7a\x3f\xda\x31\x56\xee\x86\x5d\xe2\xdc\xc0\x15\xc7\x57\x33\x73\x33\x63\x4d\xb3\x18\x6a\xe1\x0f\x24\x3e\x51\x35\xac\xbc\x52\x85\x23\x2a\xda\xe8\xbf\x4a\x52\x62\xcd\x22\x52\x74\x41\x92\x38\x15\xc2\xc9\x76\x19\x71\xa6\x0d\xf9\xea\x4f\x9b\xd0\xd7\xd2\x9c\x6c\x3c\x05\xde\xb7\x15\x34\x0f\x29\x25\x1e\xd1\xde\x84\xce\x82\xcc\x36\x70\x19\x89\xe4\x95\xc6\xad\x55\xf1\xb9\x85\x5f\x96\x12\x74\x5b\xb4\x03\x98\x2b\xd6\x64\xdb\x08\x96\x2b\xf8\x1f\xfa\x48\x1f\x42\x15\x65\xac\xcf\x34\x61\x90\x6f\x83\x91\x6c\x5b\x90\x89\xd1\xb0\x87\xdb\xc7\x32\x1c\x1c\x55\x2d\x1e\x3b\xc1\x1e\x9b\x50\xa7\xfc\x19\xc8\x15\xa1\x83\xd8\x03\x8c\x58\xfd\x38\x6c\x3d\xe2\xd1\xcf\xa9\x25\x41\xc6\x96\xee\xa2\xaf\x32\xea\x11\x70\x3c\x5a\xb5\x57\x40\x9e\x54\xd1\xc7\x50\x1e\x42\x54\x49\x21\x75\x9e\xd8\x39\x3a\xd1\xe6\x7c\xbe\x6d\x83\xf9\x8f\xff\x06\xb3\x46\xd2\x54\x34\x6b\x84\x4e\x0e\x76\xd8\x68\x94\xe3\xad\x46\x19\x60\x85\x14\x97\x1d\x43\xa3\xd8\x1c\xf8\x1a\x6e\x45\x24\x18\x9e\x1e\x4a\x02\xf7\xa3\x98\x80\xa3\x89\x5d\xdf\xe0\x37\x07\x67\x59\x11\x67\xba\x91\xce\x3c\x5d\xf3\x53\xc8\x6b\x34\x29\x02\x0b\xce\x90\x98\x09\xe6\xf4\x6d\xaf\x13\x17\x4d\xf3\x20\x3e\x13\xc1\x87\x71\x64\xb1\x3c\x51\x21\x69\x53\xad\x37\x34\xae\x6a\xc7\xae\x02\xc0\x24\xb3\x47\x47\x19\x96\xbf\x88\x44\x35\xeb\x9a\x95\x54\xdc\x82\x38\x2d\x06\x1d\xf8\x77\x5d\xdf\x36\xf5\xfa\x87\x67\x0d\x0b\x97\xac\xbb\xe1\xc3\xf5\xc7\xef\xbe\xd6\x74\x22\xc3\xbc\x84\xec\xe1\xfa\xa2\xea\x5f\x1e\x16\x8f\xba\x7c\xcd\xae\xda\xb0\x63\x15\xce\x81\x5b\x9d\x44\xc4\xa3\xf4\xa6\x0e\xd3\x02\x77\x6e\xda\xe3\x5d\xb3\xa5\x0d\x92\x16\x69\x76\x3b\x59\x5e\x22\x60\x3b\x81\x44\xff\xe1\x57\x52\xd6\x98\xb9\xb2\xd5\xf9\xa1\x0a\x67\x01\xc5\xe3\xfa\xe8\xb2\x19\x87\x9a\x68\x44\x94\x47\x64\xe0\xa5\x6a\x26\xe3\x41\x04\x75\x88\x95\x02\xff\x31\x2e\x85\x75\x64\xfd\xd2\x58\x17\x03\xb1\x85\xab\xb0\xe2\x54\x92\xfa\x21\x7c\x18\xa7\x2d\x47\xba\x50\x45\x2c\x87\xbc\x7c\xf6\x98\x2e\x19\x9c\x7b\xe8\x1e\xd0\x75\xb0\xbf\x95\xa2\xc9\xd8\x95\x9e\xd9\x00\x1c\x45\xd3\x19\x89\x34\x6d\x08\x93\x50\xb5\x52\x68\x9a\xf5\xc2\x53\x33\x71\xa1\x13\x8a\x26\x08\x49\xb2\x15\xd3\xeb\xcf\xa4\x66\xa3\x76\xe3\xc0\xad\xb9\xcf\xa0\x68\x18\xd3\x29\xa6\x83\xc6\x02\xfd\x89\x2e\xd4\x6b\xd5\x96\x20\x83\x9d\xb9\xa3\x9c\xf7\xa6\x51\xc3\x60\x6e\x89\x58\x13\x12\xec\xfa\x32\xd9\xca\xdc\x09\xb8\xdf\x8a\x73\x15\x14\x30\xff\x4f\xbe\x2a\x88\x0e\xf4\xcd\x07\x42\xa5\x71\x11\xa4\x1f\x2b\x14\xe8\x8b\x09\x47\x4a\x5d\x4e\x23\x71\x18\x8a\x4b\x6a\xd7\x3f\x4a\x60\x1c\x5d\xd1\x5a\x83\x83\x9b\x68\x8f\x70\x25\x82\xdd\x80\x56\x42\x47\x94\x0c\xa8\x17\x57\xd8\xff\xc4\xb1\xd5\x0c\x04\x81\x94\x7f\xe8\xb7\x5f\x96\xa4\x7e\xb7\x59\x88\x7a\x1f\x6a\x47\x3e\x05\x1d\xe6\x32\x15\x61\x90\x17\xc4\x70\xc0\xef\xf6\x54\x2a\xbc\xe2\xec\x4e\x9d\xd8\xd5\x3d\xc2\x8a\xbc\xd0\x44\xec\x01\x00\xca\x84\x77\x61\x22\xf0\x15\x15\x1f\x56\x8b\x3a\xde\xa8\x4b\x2d\xd6\x80\xb0\xce\x08\xe6\x46\x1c\x71\xf2\xd3\x8b\x57\x74\x60\x84\x06\xad\xd2\x9f\x8b\xe5\x46\x17\xf0\x46\xb4\x1e\x70\xd7\xd9\x6e\x87\x14\x37\x48\x12\x52\xdc\xee\x1a\xa0\x24\xb6\x78\x18\xd4\x68\x40\x32\x98\x34\x5f\xe6\xb8\xec\x9c\x26\x48\x5a\x43\x4f\x86\x67\x55\x18\xea\x57\x34\xb3\x41\x1f\xc9\x5b\x6b\x7f\xcb\xd4\xdf\x39\xde\x15\x32\x43\x37\xa0\xdf\x03\x8f\x3f\x82\x84\xd1\x3b\xe7\x2d\xdc\x06\xfa\x61\x1d\x56\x0a\xe2\x97\xd2\x93\x91\xc9\xc5\x8c\x44\x65\xb2\xd8\x14\x65\xd9\x5b\x3d\xe9\x98\xef\xa3\x33\x8c\xf8\x51\x71\x70\x07\x95\xf1\xa3\x72\xa8\x7c\x31\xd9\x6c\xc0\x68\x69\x7a\x40\x6f\x72\x39\x06\xc5\x71\x04\x4e\xb0\x22\x62\x09\x46\x38\x97\x78\xaa\xe5\xa6\xdc\x6e\x69\x3f\x68\xeb\xd1\x1e\xab\x43\x4f\x5c\x2c\x14\xc8\xc9\xb7\x65\xe4\x6d\x65\x2a\xbc\x2a\xcf\x2a\x23\x08\xda\x6e\xf0\x6e\x10\xe5\x83\x9d\xd6\x67\xa7\x6f\xde\xbc\xbd\x8a\x87\x34\xef\x83\x7a\x45\xac\xc4\x57\xc1\xf7\x71\xd4\x2f\xf3\x80\x0c\x0b\x98\x42\x44\x1f\x4c\x2d\x71\x0c\xce\x93\x29\xe7\xfd\xb1\x6e\x40\x7b\x1a\xee\x8b\xd1\xf2\xa4\xff\xab\x63\xeb\x97\xfd\xca\xdc\xcd\xfb\xcc\x14\xe2\x6f\xf9\x6f\xe6\x6d\x0a\xce\x16\x83\xad\x17\x4d\x36\xf1\xa6\x09\x75\xa0\x59\x8d\x6c\x0c\x20\xd2\x87\x02\xa2\x16\xcd\x7d\x83\xb3\xe2\x3a\x87\x29\xff\x84\x55\xa6\x4d\x8b\x0d\xc3\x93\x7b\xa8\xab\xbf\x1d\xc0\x9e\xc1\x02\x3f\xcb\xd8\xa5\x76\x51\x6d\xe5\x40\xf9\x73\xf8\x90\x74\xfe\x35\xb8\x0d\xe1\x1a\xa7\xaf\xef\xba\x3d\x7b\x24\xd3\xd9\xd0\x7d\xff\xe0\x50\xe5\xac\x45\x64\xe7\xba\x07\x3f\x90\xfc\xc2\x36\x79\x5a\x3e\x82\xf8\x61\x54\x1d\x5f\x78\x5c\x8a\xf2\x31\x78\xcb\x00\x6f\x35\x9d\x77\x0b\xf3\xbb\x89\xc6\x53\x26\xfe\x77\xb4\xc9\xb7\x2b\xe3\x38\x1e\xab\xd4\x4d\x73\x84\xbd\xfb\xb1\xd8\x1e\x52\x15\x0c\xb7\xce\x65\xba\x27\x19\xae\x7a\xc4\xb2\xf0\x9e\xc2\x7d\x5d\xce\x20\x6c\xf8\x11\x93\xd6\xdf\x7d\xef\x8f\x6f\xf6\x32\xe3\xf7\x55\x86\x9e\xa8\x92\x7a\x78\xd1\x13\x79\x76\x07\x83\xf3\x70\x11\x03\xa9\x13\xab\xe1\xee\x6c\x15\xdb\x5e\x14\xd4\xb9\x5b\x4d\x26\x2d\x18\x84\x57\xec\xde\xaa\x29\x30\x50\xb0\x6e\xd9\x56\xb8\x47\x22\xe9\x7c\xdb\x37\x77\x37\x7d\x91\xb8\xae\x7a\x12\xd6\xd9\x1b\x32\x34\x7e\x49\xc8\x4f\xf3\x34\x0b\x59\xb9\xdd\x1d\xee\x32\xa2\x1f\x74\xa4\xe1\xc2\xb0\xfc\xb2\x94\x51\x71\x3e\xfd\x05\x16\x1a\x39\x66\x39\x75\x2b\xf0\x0f\xfd\x9e\x28\xa5\x80\xd6\x24\x9b\x4a\x9a\x79\x55\x57\x4c\x01\x5e\xd1\x1f\x3a\xdd\x45\x12\x48\xf1\x55\xf8\x5c\x54\xa2\xda\x1e\x11\xc3\x43\x3d\xea\xdf\xa8\xcb\xa3\x8e\x8d\x6e\x81\xf4\xce\x82\xaa\xfd\x31\x7f\x48\xc8\xc5\x3d\x41\xaf\x09\x13\x05\x3c\xd4\xa2\x7a\xa6\xbf\x49\xa2\xcd\xbb\x63\x68\xe4\xd6\xd8\xd3\xbe\x2d\x96\x1f\x98\xb8\x10\xce\x94\x2d\x49\x05\x70\xea\x2a\xf8\xfc\xcb\x09\xd1\xd6\x34\x01\x62\x61\x50\x8f\x29\x29\x66\x95\x57\x2c\x41\x7c\x14\x4e\x4c\x2e\x18\xbf\xb2\x94\xc7\x2c\x7a\x3e\x31\x40\x13\x1c\x03\x9c\xaa\x3f\x06\xf9\xd6\x4f\x35\x17\xaa\xbd\x9c\x36\x24\x9f\x22\xac\x9f\x80\xf5\x8e\xa6\x6b\xc5\x36\xa9\x62\xdb\xe5\x2a\xef\x9a\x19\x3e\xbb\x61\xe3\xb6\x58\x1c\xfe\xa2\x3f\x61\x70\x58\x17\x7f\x97\xd4\xcb\xf0\x01\x0c\xef\x14\xe7\x3b\xb5\x1e\xd0\xdc\x2f\x37\xea\x36\xd7\x5c\xcf\xe5\xe2\x21\x4e\xec\xab\x60\x05\x65\x72\x01\x38\x5a\xcd\x5d\xf1\xa9\xda\x1d\x76\x79\x00\x44\x51\xde\x04\x0f\x53\xbb\xc6\x6c\xda\x3a\x31\xb4\x84\x7f\xb9\x91\x62\x58\xc3\xdd\xb6\x0a\xf6\x8f\x9b\xb3\x89\xcf\x68\x4a\xe2\x11\x93\xe9\x15\x72\xbb\x8a\x1b\xee\x90\xcb\x5d\x5c\x9f\x7b\x9c\x3c\x9b\x02\xaa\x48\x29\x26\xdc\xa2\x17\x44\xf1\x1e\xfc\x20\x8b\x6e\xe4\xd2\x6a\x55\xf4\x3f\xd7\x5b\xec\x0e\xff\x15\x62\x26\x34\x31\xe2\xd2\x19\xae\xc3\x45\x54\x9a\x80\x4a\x4e\x54\xe5\x6a\x0b\x77\xa5\xee\xeb\x17\xaf\xae\x70\xa1\x8e\x70\x52\xb4\x7b\x7a\x6b\x90\x3d\x6e\x66\xa1\x4e\x3e\x6c\xab\xae\x13\x26\xac\xae\x30\xf1\x4c\x08\x27\xf4\x7f\xa2\x32\xd0\xca\x52\x0c\xb0\xda\xa2\xbb\x3a\x7b\xb0\xa9\xaf\xfa\x2b\x49\xd4\x82\x9c\x08\x5d\x44\x6a\xc9\x33\xe7\xbb\xc2\xdf\xe5\xb4\x6a\x83\xd1\x36\x2e\x9b\xb7\xd7\xea\x56\x53\x42\xaf\x01\x01\x9a\xeb\x4c\x68\xb5\xa5\x2b\xe5\xbe\x0e\x47\x00\xee\xe2\xf1\x8d\x9c\x94\xf6\x23\x70\x40\xe1\xd7\xdd\x7b\x95\xd2\x46\x61\x6e\x69\x7f\x3b\x67\x4b\x02\x18\xa4\xfd\x6d\x4c\x70\x9c\x24\x65\xd0\x74\x3a\xe0\xe0\xed\x72\x81\x55\xfe\xdf\xff\xf3\x7f\x3d\x3d\xe3\x61\x9f\xf5\xed\x96\x7e\x29\xa3\xce\xf0\xb2\x0c\x52\x41\xfe\xf6\x3f\x48\xe0\xba\x51\xd7\x96\x5f\xe4\x57\x66\xdf\x20\x05\x94\xdf\xa9\x6e\x1f\x3f\x32\xfd\x62\x8a\x90\x69\x1c\x04\x26\x05\x19\x4b\xbb\x8a\x36\x24\xe9\xfa\xb3\xea\x6f\x87\x6a\xf9\x61\x2e\x2a\x9a\xef\xf3\xff\xe4\xaf\x1c\x77\xeb\xf5\xb8\x66\xca\x1f\xc8\x38\x90\x73\x70\x16\x78\x57\x76\x9c\x71\x7a\x9d\x25\x92\xfd\x22\x65\x3f\x6e\x8d\xf0\x1a\x20\x5f\xd8\xcb\xf6\x07\x76\xe6\x62\x84\xb0\xd6\x2e\x28\x05\x97\x1f\x39\x51\xe8\x79\xa8\x01\x2b\x3b\xaa\x03\xcd\x53\x77\xe5\x2e\xec\x24\x97\x85\x2c\xe7\x66\xbc\xe3\x6b\x69\x34\x64\x95\x78\x32\x75\x1d\x3d\xe3\xbb\x84\xe1\x6c\xd2\x33\xa9\x6f\x4b\xc8\x74\xf4\x27\xa3\x23\x8f\x5d\x14\xd5\x6a\xcd\xf7\xc1\xfb\x02\xe6\x5d\xa4\x9b\xcd\x9a\x8d\xde\xc5\x5a\x2b\x82\x30\xf7\x93\xfe\xcc\x28\x9d\xbf\xaf\xe8\xcf\x28\x2c\x03\x07\x71\x18\x07\x6f\xd8\x16\x8b\x12\xc9\xaf\xf1\x83\x90\x9f\x4e\xdd\x9e\x56\x44\xce\x20\xfb\xc8\x96\x70\xbb\x13\x44\xc4\xaf\x4c\xef\x0d\x89\x9d\x5b\x7e\x66\xb0\xd4\xb5\x05\x5b\x9b\xdf\x15\x37\xf2\x49\xd3\xa5\xc1\x3c\x5e\xca\x2f\x49\xc6\x95\x09\x01\xc5\x8d\x89\x00\x0f\x7e\x5d\x77\xc3\x85\xfd\x96\x2c\x76\x80\xdd\x32\x13\x67\xcb\x60\x16\x21\xca\xc8\x25\x43\x58\x50\xbe\x1f\x52\x8f\x03\x51\xc8\xf7\x1c\xf6\x75\x4a\x95\xcf\x0c\x9b\xc8\xc2\x7c\x88\x29\x92\xb5\x01\x6a\x84\x64\xdb\xd3\x5c\x78\x11\x33\x45\x09\x6b\x42\x5d\xaa\x57\x56\xe0\x39\x6b\x34\x50\x42\x26\x4a\xed\x22\x71\xbe\xd4\x92\xd4\x05\x1e\x45\xe1\x76\xc1\xed\x91\xd5\x88\x84\x98\x76\x8d\x98\x30\xb4\xe7\xab\xb3\xab\x7c\x15\x37\x16\xdf\x67\x81\xee\x49\x4b\xb3\x86\x9f\x8a\x3e\x24\x14\x5c\x89\xcf\x7b\x98\x95\x87\x5d\x90\x49\x79\xb3\x69\x3f\xbd\x48\x8c\xee\x72\xb9\x04\xe2\x67\x4a\x18\xe6\xfb\x2c\xa4\x9a\x79\x4f\xc5\x3c\x37\x08\x55\xf7\x06\xbd\xaf\x49\x5a\xab\x41\xc3\x3f\xc6\x3a\x06\xf3\xf0\x17\x5c\xae\x2e\x98\x7c\xb3\x22\x81\x95\xbe\x72\x29\x5f\x6a\x78\x6c\x13\xf4\xc4\x5c\x7e\x88\xb7\x54\x23\xa0\x19\x92\x6b\xd3\x3f\xa8\xe4\x1c\x5a\x3d\x11\x97\xc0\xbc\x59\xc2\x32\xb9\xca\xd8\x99\x64\xbe\x28\xe7\x74\x5e\x85\x8d\xf9\x57\x73\x32\x59\xc0\x39\xb8\xb0\x7d\x47\xf5\x41\xa7\xdd\xc0\xfa\xcc\x62\x5c\x6e\xab\x6c\x81\x03\x30\x39\x56\x27\x6e\x89\xb7\xbe\x42\xe8\x79\xe4\xf2\x78\x54\xf4\x7c\x56\x9d\x72\x98\xcc\xb1\x1a\x72\xd3\x2e\xe0\xe4\x99\x9c\x33\x9c\x65\x97\xf0\x0c\x3f\xb7\x65\x90\x4f\xa1\x36\x62\xf6\x2f\x1e\x88\x27\x72\x13\x1c\x2c\x0c\x2b\x69\x08\x83\xf7\x38\x4a\xbe\x9e\x31\xac\xa9\x45\x7c\x81\x75\x23\xdd\x22\xfa\x56\xae\x2b\x09\xb8\x02\x29\x8d\x25\x84\x72\xbb\x72\x95\x30\x01\x24\xbe\x85\xc3\x6e\xe0\x78\x94\x08\x2a\x18\x81\x9f\x12\x9c\x27\x18\xa7\x86\x58\x61\x00\xb6\x20\xf3\x6e\x0c\x4b\x52\x07\x8f\x62\x20\x64\xd3\xce\xd4\xcd\x02\x28\x14\x0f\x49\xf8\x00\xa7\x2a\xec\x69\x95\xae\xd6\xa2\xc8\x27\x23\xdc\xde\x32\x2a\x61\x2f\x84\x86\x75\xf3\x1a\x80\x8d\x5e\x55\x20\xc6\xb2\x09\xf8\x53\x9e\xec\x07\xb8\x92\x11\x54\x22\xc8\x98\x85\xe6\xe2\xa1\x16\x5b\xb0\xe3\xcc\xd4\x2a\x71\xac\xb1\x9e\x6b\x5c\xce\x87\xb7\x1f\xfa\x83\xa8\x06\x12\xde\x24\x67\xba\x6e\xb7\x53\x66\x7e\x7a\xb0\xf6\x8a\x38\x8b\x32\x9c\x5f\xcf\x35\x6b\x22\xb6\x89\x94\xb5\xe3\x47\x58\x14\x39\x3e\xe3\x29\x23\xd3\x9b\xd8\x1f\xba\x10\x03\xc7\xcb\xb1\x5a\x5b\xc0\x1e\x3e\x43\x8b\x40\x4a\x6a\xbe\x0c\x23\xac\xb7\x9c\xdb\xfb\x42\xad\xdb\x72\x01\xb1\x10\x2a\x36\xe0\xe1\xee\x6a\x28\x0c\x19\xed\xc4\x22\x31\xb2\x4c\x22\x38\x78\x1e\xe0\xb3\xeb\x9f\x2b\x76\x92\x68\x31\x17\xa9\x2f\x4e\x4f\x88\x5f\x83\x16\x6e\x95\xe9\xd5\x02\x43\x31\x31\x08\x64\xc7\x1a\x52\x9b\xfc\xfc\x66\xe3\x9a\x35\x0c\x1f\x99\x91\x14\x3a\xef\x48\x12\x2c\x63\xf0\x1b\xbe\x32\x24\x25\x67\x77\xeb\x3f\xe2\x25\x14\x98\xbf\x54\x73\x7b\xc3\xf2\x2d\x68\x56\xd2\x08\xe1\xa2\xe1\xaa\x6c\x75\x43\x4a\xd6\xf2\x46\x9c\xa5\x4a\xd8\x8f\x51\xc8\x5d\xbf\x71\xa4\x2d\x1d\xe9\x08\xcf\x4e\x65\x1a\xa1\x0d\x88\x4b\xf6\xf9\x18\xc7\x44\x4e\x8e\x53\x2e\x68\xa9\x7a\x14\x04\x87\x15\x9f\x27\xdc\xbf\x1c\x24\xc9\x79\x7f\x5a\x0f\x0e\x8c\x1c\xeb\x21\xe7\x0a\x2f\x08\x03\x42\x6a\xd0\x9a\x08\x2f\x74\x90\x5c\x1b\xb3\x21\x82\x19\x84\x09\x22\x02\x79\xf2\xce\xd9\x33\xe3\x74\x87\x04\x41\xc9\x9d\x49\x1b\x2c\x66\xb8\xce\xa5\xbc\x08\x2c\x54\xe8\x33\xb7\x4a\xd8\xac\xe3\xb7\xe8\x24\xcc\x0c\x30\x48\x77\x58\xc4\x4c\xf9\x50\xd9\x88\xf8\x0a\xec\x1d\xdc\xd5\x33\x26\x48\x9d\x98\x5b\xd4\x23\x57\x69\xf7\x72\xee\x48\x70\x14\x6a\x6b\xb9\xad\xf6\x16\x41\x8f\x45\x17\x17\xc1\x89\x05\x10\xcb\xcd\x08\x51\xc0\xf0\x45\xb6\xe8\x42\x52\x02\x5f\x64\x1c\xe6\x6c\xcc\x69\x5a\xce\xe0\xda\xab\xe2\x5d\xcc\xbf\x16\xb3\x12\xf3\x62\x21\xad\x80\xd8\x9e\xdb\x8d\x96\x90\x1e\xf9\x0d\xbd\x78\x12\x72\x14\x4d\x9e\x41\xe1\xa4\x69\x76\x9f\xf9\x2d\xff\x0d\xa9\x44\xa9\x55\xe7\x48\x7f\xc3\x7d\x5f\x89\xba\xc7\x1c\x24\x18\x6f\x97\x3c\x1b\x32\xdb\x2e\x8b\x09\x0a\x27\x8a\x2c\x85\x7c\x9f\xbd\x24\x06\xbb\x9d\x87\xf2\x67\xfc\x99\x6f\x47\xb5\x04\xee\xdd\x33\xef\x83\x66\x3c\x0c\x35\x35\x09\x26\xcd\x79\x48\x69\x71\x37\x05\xcc\x51\x39\x12\xd8\xb7\x1c\xa6\xc3\xc9\x0e\x49\xc5\xac\xfd\x1e\xd4\x0c\x85\xf8\x34\x3c\x1d\xaf\x1c\x72\x02\xac\xa5\xfe\x1c\xf7\xd3\x01\x49\x37\x8b\x09\x50\xb6\xcc\x46\x38\x1a\xf8\x10\x48\x5d\x07\xc2\x06\x1c\xae\x5e\x5c\x1f\x5a\xda\xe1\x02\x49\xe6\x7c\xbf\x25\x86\x27\xdc\x7e\x07\x10\x48\x18\x6f\x9e\xa4\x99\x50\x99\x36\x96\xd4\x87\x09\xed\x8b\x05\x73\xf6\x2b\xcc\x66\x28\xcc\x73\x15\xb3\x64\xea\x2c\x53\xa5\x47\xab\x39\xa9\xd2\xe7\xf1\xe1\x25\x5a\x56\x99\x88\xa0\x71\xdd\x4e\x94\xb8\x13\xa3\x86\x30\x47\x6b\x1e\xe1\x8d\x96\xbc\x63\x79\x23\x04\x47\x9d\x3b\x5e\xf5\x91\x72\xaa\x98\x83\x3a\x6e\x9c\x33\xe3\xb8\x0a\x41\x40\xe6\x00\x61\xf2\x31\x09\xda\x69\x24\x4c\x22\x77\x7c\xb2\x86\xae\xae\xd4\x4c\x3b\x55\x48\x56\x79\xc5\xee\x9c\x52\x46\xd6\x19\x21\x76\x8e\x14\xd9\xb1\xaa\x16\x26\x0b\x2d\x72\x1e\x12\x26\x8a\x74\x1a\xf0\x8b\x23\x6e\x8d\x73\x66\xd0\xf4\xf7\x4a\x9b\xba\x49\x10\xc6\x52\x80\xbc\xc5\x8f\x29\x10\x71\x5e\x08\x27\xe7\x3b\xbd\xe4\x6c\xee\x93\x93\x0d\xf3\xcd\x81\x50\xe2\x35\xee\x11\xb4\x9f\x51\x8e\x6f\x96\x31\x5d\x15\x5f\x95\xf3\x06\xd7\xbd\xf0\x79\x47\x3b\xb1\x80\x34\x34\x2a\xc1\x3b\x09\xab\xc0\x12\x3e\x7e\xe7\x0f\x7f\xfd\xe6\x7d\xc7\xcb\x10\x9d\x80\x7e\xfd\xe3\x7b\xe2\x81\x1e\xfe\xfa\xa7\xf7\xf0\xfe\x19\x15\x9e\x5f\xb3\x88\x36\xae\x01\x05\x0d\x1a\x27\x5c\x73\x08\x47\x1b\xfd\x8c\xf4\xe1\x93\x2c\xc5\xa7\x3e\xdd\xe2\x21\x50\xd8\x60\x87\xaf\x42\x56\xba\xc3\xeb\xc3\x6e\xae\x63\xec\x84\x02\xd8\x57\x28\x6e\x33\x30\x2f\xb8\xc9\xdf\xc2\x77\x1c\xee\x1f\x98\xe1\x7b\x88\x91\xfe\x66\xc5\x9c\x2c\xce\xee\xba\x31\x34\xd7\x67\xc9\xf3\x5a\xec\xc7\xd0\xcd\xc6\xb9\x1d\x09\xf3\x03\xfd\x7a\xe0\x5b\x6f\xcb\x7e\x96\x92\x34\x7c\xd8\x78\xd3\x2c\xeb\x54\x00\xd1\x45\xc7\x6d\x3c\x0f\xde\x96\x98\x55\x83\x7b\x87\xcf\x41\xe6\x5d\x95\xb5\x49\x01\xa5\xd3\x11\xc5\x14\x74\xb0\x50\x3a\xcd\x72\x86\xd1\x1c\x57\x2b\x46\x28\x42\x90\x07\x61\xba\xf1\xf5\x03\x90\x25\x99\x74\x69\x2f\xd4\x61\x9f\x5f\x58\x8b\x8a\xb0\x04\x15\xea\x51\x03\x95\x6a\x83\x64\xa8\x7a\x93\x4b\x59\xf5\x2f\x6b\x62\xdf\x68\xe0\xe2\x0b\xfc\x88\x2d\x5b\x08\x15\x30\x58\x67\xee\x33\xa0\x79\x62\x4d\xd7\x44\x0b\x2f\x65\x77\x72\x55\x85\x9c\x38\xe5\x69\xc8\x11\x93\x46\xf8\xae\x8d\xe1\x5a\xcd\x11\x84\xf4\xe2\x98\xd6\xa8\x4a\x05\xd6\x4f\x85\xce\x0d\x54\x7f\xd6\x36\x4b\x33\x44\x36\xe9\x8f\x25\xc9\x99\x68\x1b\x2e\x9e\xd9\x69\x3e\x0d\xb6\x89\x67\x3a\xbe\x86\x00\xe2\xe1\xf0\x70\x35\xe0\xcb\x24\x3b\xa2\xa6\xee\x5c\xc4\x32\x4b\x4f\x1d\x81\x9c\x18\x8c\x64\x0c\xee\xa7\xa4\x99\xe1\x86\xba\x74\x10\xf7\xd4\x2d\x36\xde\xb8\x16\xbd\x8a\x01\xd0\xe0\x62\x31\x09\x36\xed\x7b\x2c\x3c\x86\xf7\x9e\xa9\x20\x93\x45\x7f\x63\xf6\x1e\x75\x0e\x35\x5a\xf7\x71\xff\x99\xe9\xc6\xa3\x66\x47\xfa\x7a\x8f\x56\xc7\x91\xc9\x3d\x89\xbf\xd5\xb2\xda\x17\x81\x54\x5e\xb8\x14\x83\x2c\xfa\xbe\x58\x6e\x78\x5b\x7b\xa6\xeb\x37\x11\x87\x55\x0a\x66\x7c\xc4\x70\xa0\x85\x22\x88\xdf\x26\x4a\x87\x98\x58\xbe\x74\x48\xe4\x2a\x7e\xcb\x44\x03\xef\xe4\x03\xaf\x89\xd7\x4c\xf6\x0f\x21\x41\x31\x55\x1f\x73\x4a\x90\x93\x26\xe1\x6c\x95\x0c\xb8\xbf\x69\xf2\x60\x1f\x40\x44\x6f\x3e\xc1\x52\x5d\x11\x94\x4a\x41\x22\x4f\xab\x45\x08\xae\xef\x71\xbd\x68\xd8\xa0\xb6\xf0\x7d\xae\xbf\x34\x3f\x31\x5d\xe4\x03\x93\x85\x8d\xbc\x61\x8b\xee\x61\x8b\x15\x81\x6f\xa4\x7c\x5c\x8b\x57\x9f\x01\x21\xac\x32\x84\xcb\xd0\x96\x3b\x44\x24\xe8\xb2\x7a\x6a\x73\xee\xa2\x5c\x16\x1c\x26\x10\x7d\xe6\xb1\x6e\x38\xcc\x73\x1c\x3d\x2b\x61\x3e\xf2\x5d\x65\xa9\x9f\x2f\x43\xfa\x78\xd6\xbc\x62\xa1\x7a\x53\x32\x0c\x66\x6a\x51\xf6\x37\xb8\xf4\x0c\xd7\x69\x9e\x5c\x51\xa5\x74\xdf\x7a\x2e\x82\xa8\xe7\xd7\x68\xe3\x6b\x66\x25\x56\x4a\x49\xff\x80\x0f\xa1\xa7\x3a\x95\x03\x41\x63\x02\x0d\x40\x8d\x6c\x51\x6f\x80\xc3\xac\x29\x2e\xd9\xc2\xc1\x0d\xad\x4c\xf6\x15\xba\xfe\x1d\x1b\x98\x8c\x70\xe3\x37\x21\x2c\xbb\x46\x6b\xfa\x9f\x42\xba\xd6\x8f\x9a\x94\xcb\xb0\x66\x24\xed\x5f\xab\x9e\x4a\xff\xdb\x7b\xc3\x51\xda\x2a\x73\x4f\xae\x81\x9f\xf1\x33\x81\x1a\x8a\xfc\x31\xcf\x54\x31\xcf\xf1\x57\x75\x50\x9a\xaf\x87\x3a\xa1\x8a\x4c\x4d\x70\x88\x90\x0c\xf5\xfc\xf3\x2b\x49\xbd\xde\x97\x2d\x93\x29\x9d\xcd\xe0\x00\x37\x4b\xa6\x06\xec\x77\x1b\x5b\x62\xac\x09\x39\x57\xa3\x6a\x03\x5d\x52\x98\x94\x2c\x49\x15\x1c\x1c\x9a\xf6\x87\xb9\x3d\xd2\x57\x70\x70\x9a\xae\x4b\x61\x57\x87\x78\xd3\x97\x67\x91\x0a\x41\x69\xee\xa8\xad\xf5\xbd\xea\xe6\xb8\xec\x20\xaa\xc2\x2b\xbd\xc1\x40\xe4\xa8\xcf\x43\x3a\x35\x27\x57\x6d\x25\x5c\xe9\x5a\x82\xbf\x86\x08\xe9\xd7\xf4\xbd\x41\x68\x46\x06\xb8\x2e\x39\xa8\x1a\x38\xcc\x40\x22\x8a\x7a\x0e\x7f\x1e\x0c\x35\x71\x1b\x48\x86\xa1\x3e\x04\x3a\x21\x83\x80\x8b\xa1\x2a\xb8\x68\x7c\x5e\x6d\xe2\x59\x3a\x55\x5f\x20\x01\x7d\x50\xb4\xd9\xb8\xbb\xe3\x6d\x0d\x23\x9d\x0b\x3e\xec\x8a\x5a\x3c\xf5\x2a\xbe\xa4\xce\x72\xbc\x44\xe5\xc1\xbd\x81\x7e\x33\x51\xb3\xd4\x36\x20\x29\x40\x9e\xa9\x9d\x0d\x84\x3d\xd4\xba\x01\x51\x2a\x28\x3e\x7f\x53\xb7\x81\x47\x7d\x40\x52\x45\xe4\xe8\xa6\x99\x0e\xd5\x93\xac\x5a\x58\x8a\x64\xda\x1e\xff\xe1\xe1\xea\x89\x6c\x62\xdc\x1f\x18\x39\x5b\x71\xa2\x0c\xdc\x1f\xde\x4c\x45\xab\x0e\x31\xac\xa0\xe4\x6c\x5a\x00\xb1\x1e\xf9\xb7\xcc\x99\x88\xdd\x59\x16\x75\x03\x2e\x7b\x42\x91\xe1\x72\xa7\x95\x19\x43\x80\x55\x54\x11\x3d\xec\x92\xb6\x9b\x39\x6d\x8d\xb9\x4a\x9a\x74\x9c\xf0\x46\xe1\xaf\x61\x0f\x4c\xc2\x1a\xd6\x1c\xc4\x8d\x74\x40\xac\x25\xe5\x23\x44\xa2\x33\x09\x89\x76\x56\x71\x56\x6b\xcb\xb5\x61\x55\x8e\x2a\x33\x90\x54\x3f\xa0\xf0\x93\x93\x63\x1c\x27\xa2\xf9\xf8\x8c\x09\xdf\x3f\x9f\x1b\xc7\xfc\x8c\x06\xcc\x6a\x4a\x6f\x13\x4d\x06\x59\xca\x1d\x4e\xfe\xeb\x33\x42\xe4\x4d\xad\x6a\x2e\x2b\xaf\x35\xa2\x72\x4d\x89\x91\x20\x4f\x82\x49\xf4\xd1\x2d\xfd\x7b\xba\xdb\x3d\x5d\xad\x1e\x4d\x8c\xda\xf1\x6c\x61\xd8\x03\x93\x9c\x2a\x47\x06\x54\xd2\xd5\xe4\x58\xe0\xe9\xb9\x83\x1d\xd4\xaf\x13\xdf\x66\x2d\xf8\x9c\x66\xa6\xc3\x19\xcc\x05\x77\xe3\xea\x75\x4c\xff\x9b\x3d\x9b\x17\xcc\x57\x9d\x37\xb4\x5c\xc3\xf1\x63\x19\x88\x0f\x2e\x6b\x10\x0b\xea\xce\x0e\x06\xe7\x1d\x65\xe7\x88\x76\xef\x8e\x4c\x8a\x44\xa0\x3f\x3a\x25\x8e\x6d\x8f\xd3\x1a\x58\xf7\x09\xc0\x69\xc6\x3d\xb6\xfe\xdf\xc9\xbc\x4f\x35\x3f\x85\x06\xf7\xb0\xef\xd9\x4d\xf5\xa1\xa2\x02\x7f\xa1\x3f\xf8\x3d\xd3\xe8\x5d\x79\x8c\xd6\x45\xed\x72\xf6\x57\x49\xbe\x8d\x95\x73\xe0\x0e\xc2\xf6\x44\x56\xc5\xe6\x12\xf6\x5d\xee\x26\x1c\xb6\xec\xd1\xf3\x41\x4e\xd3\x66\x79\x80\x5c\x7f\xab\x97\xc9\xff\x0b\x37\xbb\x1b\x62\xea\x36\x1a\x2f\x1c\x2c\x73\xd5\x2b\x52\xcd\xa4\x41\xc5\x71\x84\x99\x98\xeb\xd3\x3c\xba\xc9\xc5\x08\x4e\xe9\x38\x3d\x05\xdc\x3f\xde\x83\x04\x65\x93\x35\x5d\x99\xe4\x08\x2f\x77\x83\x7d\xad\x6f\x34\x3a\xb3\xe4\x1f\x75\x1e\x39\xe6\x34\xa1\x9a\xb8\x48\x20\x74\x1c\x08\x66\xab\x2d\xb1\x30\xec\xda\xb8\xdf\xbf\x04\xe5\x88\x18\x03\x1c\x98\xce\x29\x73\x0d\x12\xa8\xa2\x6b\x32\x9e\x98\x37\x1c\x8f\x5c\x49\x48\x40\xd4\x47\x65\x1a\x8a\x2f\xe9\x2e\xcb\xf9\x37\xc6\x25\xf8\x6b\x0b\x62\x46\xa6\xbe\x09\x63\xca\x52\x97\xf2\xa5\x21\x2c\x23\xef\xf7\xb2\xed\x11\x83\x31\xac\xd0\xd8\x04\x09\x44\x42\x55\x83\xbb\x77\xa9\x15\xd2\xd5\xd1\xe9\x32\x77\x6e\x12\xed\x96\xb9\xdd\x11\xd3\x4f\x8e\x0d\x3b\xf5\x70\x8f\xa5\xcd\x64\xb1\x10\xa0\x42\x7e\xc5\x2c\x17\xcc\x56\x19\x6a\xf7\x7d\x04\x6c\x26\xce\xfb\x1a\xb4\xed\x18\x90\xd8\x69\x15\x93\x8e\x01\xe1\x05\x1d\xf1\xff\x3e\x06\x42\xa2\x5c\x79\x8d\x78\x28\xec\x88\xa3\xbf\x23\xf0\xa6\x69\x3e\x48\x28\xe3\x05\x7e\xc6\x9c\x35\xbf\x61\x22\x99\xfc\x5a\xc7\xcb\x34\x97\xa4\xbb\x6a\xe9\x9f\x2e\xfa\x89\x13\x26\x26\x4f\x23\x4f\xbc\xb5\xb8\xd4\x97\xc9\x70\xd4\x51\xc8\xd5\xa3\xe6\xe0\x71\x45\x7a\xb3\x9d\x59\xa6\xcf\x8b\x0b\x31\x15\x0f\x62\x68\xe2\x0f\xb5\x17\xab\x8f\x7c\xb2\xac\x92\xe7\x9d\x34\x6d\xa2\x33\x8c\x54\xe1\xf6\x98\xb8\x37\x81\x58\x76\xb7\x5d\x5f\xee\xdc\xf8\x58\x97\xca\xae\xe5\xfc\x10\x85\x92\x53\x3e\x1b\x39\xf6\x36\x41\xa0\x50\x0a\xcd\x6e\x66\x43\x68\x4b\x1b\x80\x27\xa0\xfa\x44\xc7\xcf\x06\x8a\x2d\xc3\xa1\x05\x8f\x83\xdb\x00\xfe\x9c\x44\x89\x5f\xf0\x0c\x89\x25\x5a\x4c\x2a\xec\x65\x8c\x47\x7c\x68\xf2\x6e\xd3\x38\xa4\xc4\x2c\xba\x39\x94\x73\x69\x30\x2d\xa2\xee\x84\xbb\x7e\xd9\x1e\x99\x18\xc0\xcc\x15\x66\x30\x43\x5b\xbe\xd5\x76\x53\xe2\x6e\xdb\x1d\x75\x85\xc1\x4d\xd5\x15\xe6\xef\x48\x05\x9a\x80\x39\x09\xbc\x57\x98\x49\x18\x1e\xf3\x2b\xad\x91\x67\xe3\x39\x60\xc6\xe5\xa5\xed\xae\xbf\x15\x9f\x9a\xe9\x0a\xde\x14\x3b\x5c\x5c\x66\xa8\x6f\xef\xac\x63\x66\x41\x08\x89\x4c\xcb\xaf\xbb\xc1\x11\xbc\x30\x96\x39\x75\x9f\x77\x8d\xd5\xc7\xf8\x67\x29\x91\xc5\x19\x6f\x38\x15\xea\xfd\x0f\xbe\xc2\xf0\xcf\xfc\x1f\xbc\x7b\xe8\x4f\x45\xa4\xe4\xd3\x3f\x4d\xcd\x10\x5e\x40\xe0\x9d\x79\x32\xba\x70\x25\xf2\x0b\x4f\x02\x8a\x39\x94\x81\x10\x36\xc0\x18\x2f\x31\x75\x76\x8b\x93\x76\xba\xc6\xe9\x61\x36\xa7\xad\xe8\x74\x4a\x29\xf1\xaa\x80\xfb\xcf\xdf\xc5\x34\xfa\x0c\x5f\xf9\xff\x60\x36\x30\x80\xe0\x61\x38\x84\x8d\x63\xf5\x41\x27\x37\x1a\x34\xfc\x95\xc4\x54\x11\xfd\x78\x11\xa2\x66\x77\xa9\xa7\x78\x7a\xf8\xc4\xd0\xd7\x12\x94\xa5\xa8\x25\x3e\x85\x84\xe2\x71\xe4\x98\x75\x2c\x7d\xd0\xb6\xf4\xec\xcc\xf7\xae\x5c\x1f\xb6\x24\x0d\xb8\xcb\x02\xc3\x02\xc3\x65\xb1\x7a\x94\x6f\x84\x1b\x0c\x4f\x0e\x07\x7b\x46\x5d\x8e\xae\x85\x6b\x03\xea\x50\xd6\xf2\x0b\x0c\x72\xb5\x7d\xd8\x8a\x1c\xe0\x1d\x4e\xf0\xa7\x1a\x07\x2c\xbd\x84\x98\x34\xec\x66\x43\xfb\x00\xd5\xd3\x54\x2f\xc4\x22\x14\xfa\x20\x77\x11\x27\x7a\x10\xad\x5b\x76\x1b\x51\xd5\x52\x83\x23\x54\xa0\xe5\xca\xec\xe0\x02\x49\x14\x65\x04\xca\x62\x29\x4b\x97\x60\x7b\x4e\x43\xcb\xf8\xed\x20\xe1\xca\xd8\xe5\x5b\x7f\xbe\xb5\x80\x67\x63\xb0\xa0\x11\x89\x51\xce\xd2\x49\xe1\xb9\x50\x3c\xc0\x86\xd0\x45\x4a\x23\xec\x31\x43\x1f\xde\x7c\xd2\xc8\xd2\xe0\x09\x70\x85\xb7\x9b\xe8\xde\x60\x99\x18\x27\xe4\x99\x26\x20\x9e\x70\xf6\xd5\xb5\xc3\x61\xb8\xec\xf1\xdd\xef\x8f\xd5\xea\x40\x34\x88\x3b\x73\x57\xbd\x7f\x4c\xeb\xa5\x79\xc4\x7d\x92\xa3\x75\x0f\x06\x84\x1d\x1e\xde\xfe\x43\xa0\xba\xeb\x18\x7f\x71\x72\x44\x4c\x7c\x82\x99\x47\x77\x12\xe2\x28\xe6\x31\x92\x9a\x17\x82\x44\xc2\x01\x7e\x48\x38\x09\xc3\xd2\x6f\x47\xc7\xb2\xda\x65\x7e\x6e\xb9\x4e\x1c\x84\xac\xde\x9b\x04\xb3\x05\x7d\x6b\x8e\x7a\x25\x0a\xe1\xf0\x65\x0d\x61\x54\xec\xd4\x8d\x5e\x67\x65\x4f\xda\x49\x06\x76\xb2\xfe\x89\xfd\xe5\x79\x64\x9e\x38\x7b\xcc\x0b\x81\xac\xb8\x61\x26\xa7\x0f\xc7\xdc\xc6\x48\x92\x7b\xe7\x49\x93\x75\x38\x3a\x08\x62\x28\xc3\xa0\x4a\x91\x60\x0e\xc2\xab\xa1\x6b\x53\xf4\xe8\xc8\x44\xd9\x00\x92\x58\x88\xbf\x67\xb6\x8e\x4f\x54\x24\x44\xf7\xde\x71\x3e\x5e\xdf\x1f\x8f\x12\x36\x77\x13\xd9\x8b\x2c\x4c\x2b\xf5\x2d\x49\x53\x08\xfb\x21\xca\xe5\x3e\x3c\x6d\xc9\x9e\xc8\x34\xe5\x27\x2a\x91\x9f\x04\xf3\xbf\x04\x85\x73\x97\xd6\xbd\x6d\xb6\x3b\xde\x57\x78\x66\xcb\x04\x9c\xda\x95\x5a\xe3\xca\x20\x6e\xf3\xf9\xb9\xe7\x6b\x08\x6c\x23\xbf\x16\xe5\x8a\xa0\xc5\xb0\xd2\xa3\x98\x72\x8f\xd0\x7f\x8c\x35\x9f\xae\xcc\x44\xa3\x7b\x22\x79\x8d\x77\xbf\x59\xa2\xf1\x44\x2b\xac\xd1\x01\x86\x05\xfd\xb9\xa3\xcb\x08\x76\x60\x04\x77\xa2\xaa\xc9\x13\x21\x06\xad\x0c\x5d\xb3\x02\xed\xf1\xee\xa5\xf7\xe4\xf3\x89\xfb\xf1\x4e\x60\xe0\x10\xf4\x89\xc5\x9d\xbd\x38\x79\x3c\x89\xe5\xfd\x68\x81\x41\xc0\x97\xa4\xae\x34\xe0\xcb\x18\x5f\x06\x0d\x5b\xd4\x97\xb1\x04\xd8\xb4\xde\xc0\xec\x3b\x36\x31\xa4\xc9\x62\x89\x0d\x40\x1e\x74\x62\x7c\x8c\xfe\xd3\x1b\x79\x6a\xc7\xcb\xc1\xf1\x32\xc5\xf0\x78\x1c\xe0\xec\x1d\x51\x62\xac\x53\xa2\x12\x3b\x36\x73\x67\x93\xb3\xa6\x61\x1c\xdc\xbc\x89\xab\xaa\x3c\x37\x94\x3a\x05\xaa\xef\x2a\xce\xc7\x99\x2b\x81\x10\xce\xf1\xc2\x2a\x1b\xb5\x16\xa3\x89\x4f\x22\x3a\xa7\x77\x56\xf5\xe6\x93\x44\xec\x01\x23\xe9\xcb\xce\x12\xe9\x85\xd9\x78\x84\xff\xd5\x77\x4c\xf4\x09\xe8\x61\x48\x56\xcd\xbd\xd9\x34\x8e\xad\xba\xbf\x01\x46\xbc\x1b\x11\xef\x15\x49\x55\xd8\x1f\x68\x01\x82\xd6\x4e\x55\x01\x30\xdc\xec\x0e\x34\x39\xd0\xd2\x41\xe2\xd7\x77\x25\xdf\x5e\x5e\xc1\x88\x4b\x8b\x46\x2c\xcb\x9a\x4f\xf8\xfc\x2f\x24\x22\xe2\xa1\x2f\x7e\xde\x51\xc9\x27\x7b\x69\xc3\x37\x5c\x9e\x41\xba\x29\x2d\xbe\x4a\xbd\xd2\xf3\xce\x07\x79\x33\x01\x5d\x8c\xb9\x39\xde\x5c\x84\xb3\xd3\xbe\x5c\x56\xd7\xc4\xd5\xbe\xa6\xb5\xaa\xe5\x55\x21\xf3\x3f\xb9\xd3\x8d\x3e\x8c\x04\x77\x1d\xd9\xe6\xeb\x0f\x69\xc9\xf4\xfb\x43\x4f\xc2\xd1\xf4\x0c\x41\xa7\x02\x9a\xd8\x0c\xdf\xa5\xc7\xc5\xa9\x20\x67\x7f\xc5\x87\x4c\xae\x77\xf1\x3e\x67\x1f\x8c\xfa\xe0\x9f\xa1\x92\xa6\x3f\x97\xb2\x6b\x55\x33\xbc\x5b\x16\xfa\xc2\xe1\xc5\x3b\x44\xf8\xc0\xf7\x3d\xe0\x36\x05\x97\xf2\x5a\x09\x3c\xf2\xf8\x76\xa7\xa2\x45\xa8\xd5\x1e\x41\x03\xcb\x66\x73\xd4\x8d\xf5\x29\x93\x6d\xc4\x21\xa2\x6b\x37\xc3\x71\x0a\xee\x8b\x31\x56\x9a\x23\xa1\xf1\x50\xe2\x71\xcd\x5d\x71\x2b\x2f\x6d\xb1\xcd\xb4\xa3\xd3\xb3\x5e\x85\x3b\x4d\xfc\xd8\xc1\xa6\xb9\x61\x75\xac\xdd\xfb\x18\x2d\xc9\xb8\x6f\xd1\x9a\x68\x26\xc4\x09\x90\x6e\xdf\x48\x2c\x87\x77\xfa\x73\x0c\x24\x46\x12\x1e\xd5\x4b\xf9\x35\x06\xd9\xeb\xd3\x10\xe1\x91\x88\x31\xc8\xa2\x59\xf1\x9a\xfd\x44\x7f\xc6\x3a\xbb\xf0\xd6\xb5\x29\xee\xb0\x97\xf7\x7c\xcf\x52\x7c\x5e\x39\x83\xb0\xb3\xdc\x5e\x4b\x10\x67\x16\x30\x4b\xbb\x4e\x08\x8e\x45\x5f\x9b\xe3\xe8\x1d\xa8\x40\xe7\x09\xe1\xa7\xf0\xee\x8c\xb7\xdd\xeb\x8b\x96\x3e\x32\xe3\xb0\x4f\x72\x57\x4e\xfb\xf5\x4a\x84\x03\xac\x26\x6c\x5a\xf2\x34\xd1\x09\x0b\xd7\x7b\x77\xa1\xc6\x14\x52\x7b\x79\x16\x88\x63\x62\x12\x0d\x40\x60\x74\x03\x11\xe9\x4a\x2e\x53\xb9\xc0\x24\x91\xa7\xe6\xa0\x78\x3c\x61\xe3\x1e\x69\x20\x19\x9e\x20\x09\x21\x33\x82\x88\x6e\x93\x00\xb2\x90\x6d\x43\x1e\x49\xc1\xa3\xf6\xf2\x65\x42\x3e\x1c\x01\x4e\x1e\x21\x47\x47\xf5\xb9\x1f\x51\xb2\x30\x61\x35\x9d\x8a\x73\x91\xe0\xb9\x62\xbd\x93\x23\x86\xfc\x6a\x28\xdf\x78\x83\x4a\x82\x04\xdd\xa2\xd5\x30\x5f\xa5\x11\x66\xbe\x2c\x04\x02\xec\x23\x89\x16\xdb\xae\xb1\x2a\xe4\x3e\xd1\x07\xbe\xa4\x41\xeb\x0d\xd9\x41\x95\x5f\x2c\xc6\x45\xdb\x0c\xd3\xe2\xc3\x9e\xc9\xb3\xd0\x7a\x6b\x07\x43\x7e\xfc\xef\x97\x6f\xdf\x9c\xe4\x9f\x9e\xde\xdc\xdc\x3c\xe5\xe2\x4f\x0f\xed\x96\x83\xf4\xad\x38\x1c\xfd\xff\x7f\xfe\xfa\x24\x2f\xfb\xe5\x93\x59\x7e\x2e\x54\x3b\x12\x43\x75\x48\x80\xb3\x11\xac\xfb\x44\x20\x7e\x3f\x35\xd7\x1d\xa3\x5a\x50\xff\xb4\x8a\x67\xee\x78\xf5\xcc\x15\xdd\x5e\x25\x81\x4b\xba\x63\x14\x96\x6d\x09\x4f\x6e\xfc\x70\x19\xc4\x35\x7c\x98\x0a\x5c\x3c\x04\xa9\xa8\x1d\xed\xc6\xab\xa5\x3e\x94\x3c\x00\x31\xe7\xc5\x33\xb8\x2d\x46\x05\x2d\x2f\x5c\x38\x85\x59\xe3\x4a\x54\x8a\xad\x64\xc9\x01\xb3\x28\x6d\x21\xca\xd5\x8f\xc3\xc2\xb8\x60\x8f\x77\x3e\xbf\xcf\xff\x1d\xb7\x49\x37\x66\x7e\xe1\x2c\xc3\x2d\x00\xcf\x86\x85\xf1\x82\x93\x93\x7e\x68\x00\xf2\x2e\x95\x49\x5f\x31\x2f\x48\x60\xa3\x4a\x54\x19\xc6\x2e\xe0\xfc\x66\x8c\x29\xc7\x80\x6b\x52\xdd\xb8\x48\x6a\x9e\x9f\xce\xb6\x79\x91\x5b\x8f\x27\x7a\xeb\xde\x6c\xd7\xe3\x79\x48\xdc\x3f\x12\xc7\x8f\x3b\x40\x43\x1c\x17\xef\xb4\x21\x6e\xc0\x27\xe2\xdc\xbc\x3a\xc9\xcd\x31\xf8\x44\x8d\x70\x27\x76\x75\x85\x7e\x1d\xea\xf8\x5b\x9c\x32\x55\x20\xb2\x4f\x38\x01\xf0\x27\x07\xbf\xbc\xa5\x91\xd0\x2c\x56\x7f\x9f\x98\x14\x1c\xa6\x12\x1f\x61\x72\x91\x1d\x85\x07\xa8\x2a\xe1\xc6\xe2\xbb\x90\xd6\x5c\x1f\x7a\x2b\x87\x19\xee\x49\xed\xb2\x47\x24\xdf\x29\x6a\x22\xda\xaa\x80\x77\x71\xff\x1b\x85\xd6\xf3\x53\x58\x51\x89\x82\x96\xd0\x3f\x10\xbf\x54\xe2\x99\x3e\xce\x67\x23\xea\x1a\x79\x57\xa5\xae\x23\xfe\x4c\x01\x07\x6d\x8c\xd8\x22\x5d\x8a\xb1\x38\x15\x5b\x38\xc6\x01\xca\x95\x09\xe3\x4c\xec\x35\x01\x84\x92\x7c\x16\xd2\x52\x7e\xda\xe8\x0c\x4e\x8e\x94\xc8\xe0\xee\x1f\x28\x81\x3f\x13\x98\x33\x4f\x9d\xae\x19\x04\x2e\xd7\x6c\x29\xb1\xd0\x28\xa3\xe8\xaf\x9e\x57\x91\x5a\x2d\x96\x9f\xc4\x1c\x1c\x64\x0e\xdf\xb6\x1f\xd2\x26\x62\xce\x6b\x71\xb5\x90\x5f\x7e\xb6\xf6\xdb\xe6\xd6\x02\xe4\x3e\xc3\x97\x06\xfd\xf7\x23\x8b\x60\x3a\xa8\x08\x39\x55\x57\x64\xa6\x01\x85\xda\x21\x53\xb2\x12\xfe\xa9\xbc\xe5\x8c\x25\x65\xad\x36\xd5\x69\xa1\x6b\x10\x51\x1f\xd6\x85\x34\x9a\xa0\xbc\x12\xac\x71\x66\xdd\xd4\x20\x38\x8a\x1f\xc0\x5f\xdd\xfb\x7c\x2a\x45\xd5\xac\x08\x0a\xdd\xf0\x7a\x8b\xc4\x39\x68\x6a\x14\xe3\xc0\xae\x01\x6a\x18\x80\x36\x8e\xf4\x68\x00\x5a\x5f\xd4\x47\xa1\x75\x45\x71\xf2\x87\x49\x98\xb4\x86\x27\xcb\x32\x8e\x31\x1b\x87\xfa\x19\x61\x66\xa7\x57\x6e\x28\x3a\xdd\xbb\xd4\x77\x39\xc3\xac\xfc\xe0\x3e\x23\xe0\xec\xf0\xc2\xf1\x67\x48\x51\x53\x7d\x89\x93\xe2\x66\xf7\x3e\xd7\x98\x55\x75\x7d\x3d\x5b\xb4\x24\x44\x70\x54\x57\xbc\x80\xce\x67\x13\x7f\xe7\x97\xf8\x16\x10\xbd\x46\xff\xbd\xde\xa7\x97\x44\xbd\xf5\xf1\xbd\xba\xf5\x4a\x22\xfc\x51\x87\x2f\x42\x3f\xa3\x1c\xf1\x4d\x7d\xd3\x20\x3c\xbf\xe4\xcc\xa4\x08\x9e\xdd\xe5\x5f\x88\x47\x1b\x9e\xdd\x45\xa1\x4b\x4e\x71\x60\xdd\x7e\x4b\xfc\xb7\x3e\x3f\x7e\xc9\x1f\x88\xf3\xe2\x20\x0e\x35\x49\xe2\xe5\xca\x60\x7e\x91\x4f\x0f\xc5\x55\x86\xeb\x21\xa6\x82\xe5\x5b\x4f\x7a\x13\x1d\xc2\x43\x54\xce\x02\x43\x0d\x8e\xc0\x08\xad\x2a\x48\x07\x11\xc4\xc7\xaf\x7c\xb8\x0a\x8a\xa1\x08\xa1\x13\x0d\x82\xf5\xd3\xab\x37\xf2\x89\xab\xcb\x7a\x2b\x1a\xc1\x6a\x9e\x23\x08\x0a\x67\xe9\xdb\x14\x7b\xdc\x84\x2f\xe5\xfa\x31\xc1\x71\x5e\xee\x92\xcd\x6d\x53\x82\x66\x87\x70\x35\x52\x07\x87\xb5\xd9\x11\x2d\x08\xbe\xce\x97\xac\x7a\x95\x0f\x96\xa0\xe4\x7d\x31\x0e\x69\x13\xdd\x3f\x1b\x0e\x1c\x52\x6b\xa8\x8f\x30\x21\xa6\xa5\xe0\x6a\x33\x8b\xd0\x33\x9b\x8a\xd4\x63\x79\x12\x60\x49\xb4\xe5\xb2\x4b\x15\x24\x40\xac\xda\xe2\x1a\xbe\x81\xfc\x37\xa4\xd2\xc0\x62\xb1\x8b\xb6\x7c\x3a\x2c\x46\x8b\x27\x28\x75\x89\x1f\x21\x5d\x7d\xfb\xf8\x4f\x48\x2b\x36\xe2\x57\x12\x57\x26\xae\x98\xf9\x86\xe3\x16\xbb\x06\x38\xd0\x8d\x38\x68\x10\xbb\x20\x3e\xd3\x89\x3d\x82\x90\x4b\x7e\xac\xde\x69\x10\x21\xb6\xbb\x4d\x1e\xe6\x87\xa3\x92\xf5\x12\x3e\x77\xdf\x36\xab\x03\xbf\xaa\xe0\xfb\x9d\x94\x16\xf6\xa5\x34\x6c\xe4\xb7\x66\x21\x63\x20\xda\x8a\xbc\x7a\xc0\xbe\x30\x2d\x4d\x04\xbf\xf4\x22\xb1\x14\x74\x93\x57\x3b\xaa\xff\xa3\xbc\x2c\x2c\xd5\x13\x6f\x19\xc2\xfb\x12\x9b\x59\x4b\x84\x51\xcb\x83\x7e\xca\xde\x2e\x4a\xca\xc4\x77\x44\xcd\x28\x1c\xc3\x5a\x50\x3e\xf8\xbe\xa5\x8f\x98\xc5\x4c\x2c\x87\x3b\x97\xb1\xbb\x0e\x24\x27\x8e\xa5\x8e\x4f\x19\xcb\x49\xfd\x85\x1c\x5a\xe8\x76\xd6\xfb\xfd\x21\x87\xe5\x23\x61\xf2\x5f\xcb\x2f\xd6\x7e\x8e\xb1\x69\x1c\x80\x9a\xf2\x9e\x0e\xd7\xda\xc1\x87\x09\xf8\x4b\xf9\x88\x6d\x2c\x0d\xf1\x2e\xb9\xf8\xbf\x15\x7d\x82\x29\xa6\x30\xd5\xa5\xa5\x6d\xff\x14\xc7\x57\xec\xc6\xd0\xeb\x33\x34\xa7\x88\x12\x51\x66\x84\xed\xec\x4f\x67\x3b\x05\x0e\x75\xe9\x76\x01\xf6\xc4\x0d\x03\xcf\xd6\xd1\x46\x13\xe6\x30\x42\xa5\x86\xb2\x09\x60\x39\x0a\x35\x2b\x2a\xd8\x87\x30\xd3\xa7\x9f\xb5\x33\xf4\xa0\xc3\x7b\x22\xac\x4b\x0a\x36\x27\x42\x99\x3b\xce\xba\x51\x6b\xde\x70\x23\x4d\xdc\x73\xb8\x0d\xf7\x40\xea\x8f\xe7\xea\x51\x16\x84\x29\xa8\xee\x91\x11\x0b\x32\xaa\x4b\xfd\x97\xdd\xbe\x32\x3c\x08\x0f\xf3\x6a\xff\xf5\xb6\x16\x0e\x66\xfb\x9d\x65\xbf\x36\xed\xfa\x7d\x7c\x60\x31\xe8\xf1\x13\x55\x3c\xb4\x39\x0c\x13\x1e\x44\x3a\x02\x18\x1f\x49\x8a\x35\x1a\x02\xbf\xe0\x6d\x9a\x6a\xe0\x19\x40\x74\x69\xf2\xee\x2f\xfc\x52\x2d\x5e\x70\x08\x1d\x22\x6f\xbb\xa9\xc3\xa8\x6f\x4e\x62\xd7\x45\x37\xc4\x5f\xf4\xfe\xb5\xba\x40\x73\x7c\x35\xfe\xc1\xcf\xef\x55\x6c\x7a\xa3\x63\x47\xdc\x59\x5e\x21\x01\xe7\x10\x7b\xb4\xf0\xcb\x7f\xa2\x15\xa5\xbf\x19\xc2\xa7\xa9\xe9\x80\x53\xf5\x97\xa6\x0f\x9e\x40\x4b\x9e\x2c\x73\xf1\x8f\xf0\x98\x60\xe2\xe5\xca\x95\x63\x56\x26\xfc\xdf\xc3\xfb\x94\xda\x09\x99\x42\xa4\xde\x05\x9d\x04\xe3\x65\xea\x20\x37\x27\x78\xfd\x0b\xf1\x25\xd6\x4b\xf7\x8a\x54\x78\xe0\xb0\x4e\xee\x98\x76\xb3\xd8\x8c\xa3\x35\x1b\x71\x8e\x8f\xc5\x98\x69\x84\xdf\xed\x8f\x02\x9f\x04\xc2\x54\x05\x4b\x21\xc1\xb4\x25\x39\xdf\x92\xa4\xbb\x4d\x34\x2e\xa8\x88\x25\x84\x1f\x8f\x3c\xd1\x36\x7e\xd0\xf3\xcb\xc3\xa0\x8e\xeb\xb8\x3b\x10\xaa\xf3\x4f\x1c\xbb\x25\xde\xe1\xa9\x3a\xfd\x34\x98\x57\x2b\x0f\xde\x08\x0b\x59\x53\x8f\x85\xfd\x1e\x07\xce\x14\xd4\x91\xa5\x64\x0a\x42\x4d\x9f\x6b\x52\x56\xbf\x50\xc2\xd4\x7f\xcd\x2d\x34\x7d\x02\x73\xd8\xeb\xd1\x7b\x56\x49\xa7\xbf\xec\x5d\xab\xa3\x2e\x18\x09\xad\x18\x2a\x29\x46\xc1\xe4\x31\xc0\x3b\x8b\xa4\xa1\xe5\x7d\x87\x83\x62\xdd\xb9\x40\xa8\xd5\x54\x82\xca\x8b\x71\xed\xfe\xc8\xf2\x47\x4c\xe7\x77\x85\x98\x1f\xf6\x92\x69\x4c\x08\xbd\xe0\x3b\x79\x67\x09\xcf\x97\x34\x03\x33\xec\xef\x0f\x3b\x3f\x6d\x11\x65\x25\xc6\x8d\x69\x9f\xc1\xc7\xd8\xfc\x45\x8d\xd8\xb5\x0b\xc3\x25\x12\x6b\x24\xb4\x71\xe6\xc0\x81\xca\xe4\x0e\x9e\x5c\x55\xaa\x3d\x8b\x2f\x76\xce\x93\x50\xf3\xe7\xf1\x4d\xd0\x18\x75\xfe\xdb\x50\x4c\x9d\x23\xed\x9d\x9a\x41\x7a\xa4\x94\xb8\x45\xb1\x97\xb8\xef\x11\x48\xbe\xc1\x25\x4e\xe6\x0c\xcb\xa7\x6d\xc8\xdf\x79\xdb\x6c\xcb\xd0\xd1\xfc\x5d\xc3\xee\xad\x06\x92\x06\x1e\x48\x0b\x86\x32\x21\x5d\x05\x7f\x8b\xfb\x1d\xd2\xe5\x89\x53\x44\x17\x71\xa9\x7a\x5a\xba\xb5\x12\xce\x5a\x6b\x87\xa0\xf2\xed\x10\xba\x46\x24\x30\x3d\x57\xdf\xf0\x23\x9c\x38\x54\x67\x88\x6c\x20\x4f\x88\x6a\x4a\xda\xa8\xa4\x31\x8f\xa3\xaf\x9d\xe4\xe2\x7e\xaf\xef\x61\x8c\xf3\x07\xf1\xa6\x71\xa6\x84\x48\xd3\xf6\x86\x2e\xb3\xe8\x1a\x3f\xa3\x16\xb3\x71\x1a\x80\x59\x6a\x05\x8b\x1f\x9b\x95\x3b\x26\x49\xbb\x1e\xe2\x73\x1a\xc6\xfd\x81\x61\x73\x27\xa6\xc2\x85\x66\x4d\x75\xcb\xf2\x4a\x94\xb4\x02\x5f\xc5\xd8\x0f\x79\x7b\x3e\xe9\x87\x87\xf8\x9c\x7e\x70\x2b\xb8\xab\x2d\x22\xdf\x1d\xfd\xe1\x60\x72\xe2\x5e\x99\xb8\x54\x0d\xbb\x18\x23\x21\x5f\xb9\x93\x1c\x6e\x69\xab\x01\x67\xc2\x36\x9f\xf1\x91\x2a\x39\xe2\x45\x34\xc1\x3c\x88\x8b\xe8\xe4\x43\x31\xf7\x13\x01\x5c\x8a\xe7\x92\x01\xd4\x39\x7f\x26\x01\xfb\xc6\xe7\x92\xf4\x2b\x32\x7b\xe0\xbe\x94\x36\x68\xe6\xfd\x47\xb2\xc0\x59\x38\x5a\xe1\xfc\xfc\xa1\x02\xd6\xcf\x56\x72\x05\x88\xe8\x9a\xc2\x1b\xcc\xb5\x3a\xae\x2c\x10\x73\x40\x05\x22\x3e\x86\xb3\x1d\xeb\xf9\x36\x67\x4f\x28\x61\x36\xb1\xa1\x9a\x2b\x1e\xa0\xd8\xb8\xef\x5d\x5f\x39\x34\x44\xe3\xef\xd3\x56\x77\xde\x8f\x1b\x77\x25\x9e\xeb\xf2\x4a\x77\x40\x98\xa3\x62\xd2\xcc\x6f\xf5\x31\x82\x44\xb4\x5b\xb7\x88\x17\x60\x6b\xcd\xc4\xc2\xa1\x02\x2a\xfc\x36\x8c\x92\x15\x16\x03\x6a\x00\x8f\x18\xaa\xe8\xd1\x5d\x44\xe1\x0b\x3a\x00\xb2\x71\x77\x0f\x40\x16\x24\x42\x0d\xc7\x8f\x8d\x24\xe0\xae\x8e\xc8\x9e\xff\x82\x8e\x80\x6e\x7c\x66\x47\x4e\xac\x17\xfa\xde\xee\x6a\x35\xb9\xff\xef\xea\xdf\x40\x10\x02\x72\x26\x0f\x42\x1b\x31\x80\xa7\x18\x24\xb5\x49\x4f\x31\xa7\x70\x9e\xcd\x86\xbb\xc4\xb9\xba\xb9\x9d\xe2\xbc\x6a\xad\x2f\x70\x6a\xd3\xdb\x07\x7a\xca\xc5\xaa\x6a\x5a\x77\x3c\x24\x57\xf7\xfe\x86\x42\x1a\xb3\x9e\x1d\xad\xfb\xf6\x56\x39\x1d\x44\x12\x4e\x42\xee\xc7\xf8\xe7\x22\xd3\xc1\xb9\x43\x5e\xe3\xfe\x15\x6b\xf5\x3e\x5b\x15\xdd\xc6\xa2\x45\x3e\xb3\xdf\x99\xe8\xca\xc4\xc0\x8d\xa7\x99\xe3\x9b\xcc\xf9\xf0\x8d\xe6\x3b\x1f\xd8\x4e\x9f\x60\x1f\xbe\xc9\xde\xc9\xab\x44\x6b\x63\x11\xd7\x07\xbd\x35\xa7\xce\xb0\x3c\xe3\xb8\x4d\xc5\xaa\x6f\x4e\xc8\x76\x4d\x5d\x89\xdf\xdd\xb9\xfc\xaa\xf8\x81\x6d\x7f\xf5\xf3\x39\x7f\x48\x44\x6e\x4d\xe1\x9b\x7e\x59\xdf\xf4\x78\xeb\xe3\x8a\xff\x7e\x9b\x3f\x5c\x65\x71\xe8\xd0\x6a\xb3\x82\x6e\x29\xba\x51\xf9\xed\xf2\xdd\x6b\xce\xb8\xb8\xde\xda\xf3\xd4\xb1\x06\x74\x13\x3a\xf8\x83\xeb\xb6\x76\x12\x95\x1e\xba\xa9\x16\xed\x3e\x27\xbc\x41\x58\xff\xbf\x30\xed\xcc\x77\x0b\x28\x5d\x17\x3f\x88\xe6\xf2\xc4\x25\x24\x0b\xe2\x33\xf6\xe1\x85\xc2\x24\x39\x3d\x4a\x63\xba\xbc\x38\x92\x24\x71\x90\xda\x24\xa1\x58\x8e\x5a\x31\x0b\x8c\x4f\x33\xf7\xe7\x98\x62\x8e\xd0\x49\xed\xe9\x33\x75\x3e\x4b\x3c\xfe\x93\x24\xb9\x5d\x32\x18\x89\xe8\x85\x7d\xda\xb6\x59\xd3\xd1\x29\xba\xe6\x74\x78\xca\xaf\xa7\x75\xda\xbd\xe8\xa4\x0a\x84\x87\xf2\x29\x30\x06\xf7\x45\x97\x96\xc6\xfe\xf4\x09\x16\xcd\x7c\x08\x18\xe3\x10\x11\xf1\x99\x40\x24\x13\xc3\x03\x32\x89\x2c\x3e\x05\xd9\xdd\x54\xf2\x12\xc4\x25\x7e\x4c\xc2\xb4\x07\x68\x1d\x0f\xb5\xcb\x65\x37\x03\x8e\x6b\x81\x97\xfc\x1a\x7d\x37\x85\x03\x0f\x84\x57\xfb\xf2\xb7\xd8\x8e\xdd\x9d\x85\xdc\xb9\xc8\xfe\xe8\xfa\x52\xa0\x96\x74\x37\x0d\xa6\x0f\xc8\x58\xb3\x1e\xb5\xea\xe7\x55\x44\xf9\xb0\x8b\x9c\x47\x81\x18\x28\xea\xad\x60\xd9\x9f\x55\xc7\xa0\x97\x11\x22\x54\xf3\xe5\x5d\x05\xfd\x67\x7a\x4f\xbd\x19\x74\x32\xa1\x79\x06\x72\x4f\x0d\x83\x2e\x4e\x56\xf1\xe5\x9d\xc4\x49\x5b\xaf\xe5\xd4\x39\xd2\xc9\x5b\x3c\xf5\xd8\xae\x54\x70\xdd\xb2\x53\xed\x0b\x73\xf4\xbb\xa7\xca\x63\xbd\xbe\xb3\xce\x2f\x18\xc6\xba\xea\xe7\xeb\x65\xec\x3e\x3f\x73\xdb\x2e\x98\x70\xf3\xe1\x5e\x2e\x25\xbe\x4e\x9d\x2a\x2d\xa7\x8b\xdf\x35\xc1\xe8\x10\xab\x2b\xa6\xaa\x3f\xd6\xb7\xb6\x64\xf7\x1c\x56\xd4\xf1\xab\xc0\xea\x32\xf0\xae\x14\x33\xcb\xa3\x19\xa5\x7d\x5d\xe8\x13\x44\x25\x8c\xeb\xdd\x23\x09\xb6\xfc\x78\x59\xe0\x6e\xe2\xb7\x74\x14\xd7\x4f\x41\xda\x51\xda\x38\x5b\x9e\xad\x27\x77\x36\x34\x18\x8b\xa3\xeb\x6e\x6e\x5b\x74\xa5\x2f\x3f\x6b\x04\xce\x41\xc6\x0f\x83\x11\x45\x89\x18\x48\x1e\xf1\xd8\xc9\xc4\x3d\x66\x77\x2d\x04\xd9\xe6\xab\x75\xe2\xe3\xa9\x87\xb6\xc5\x85\x57\x4b\xe7\x91\x01\xf9\x76\xef\x58\xa1\x47\x49\x2f\xbe\x6c\x8c\xfc\x8c\xd9\x68\x23\xbc\x43\xb2\x3e\x6b\xf6\xbb\xb6\xc3\x54\xc5\xff\xea\x76\x68\x5d\xaf\x46\x6f\xdd\x3b\xf6\x00\x0f\x39\xd1\xdc\xf5\x15\x8e\x89\x4b\x79\xd8\xe9\x17\x7c\x7b\x72\xad\x8f\xf9\xaf\x9b\xb6\x21\x8c\x93\xe0\xcd\xfa\x28\xfd\x0b\x4b\xeb\x26\x0a\xc0\x62\x71\x3b\x3f\x68\xac\x0a\x2b\x73\x8e\x64\x62\xfb\x38\xd0\x43\x2c\x05\xe6\xc9\xca\xb0\x1e\x7a\xa9\xd6\x0b\x70\x53\x56\xea\xd4\x32\x5c\x49\x2d\xd3\x2c\xf8\xc2\x97\xc6\xf0\x02\xf0\x5b\x4d\x71\xb0\xb0\x13\x72\x44\x64\xc2\x80\xc3\x7e\xce\x43\x45\x08\x07\x49\xce\x5f\x23\x39\xbf\xe2\xe4\x71\x0b\xd6\xab\x50\x6c\xd0\xa9\x63\xe5\xae\xdb\x72\x54\xe6\x39\xbf\xff\x33\x84\xb7\x99\xdb\x94\xc5\x7e\x34\x6f\x2f\x29\x71\x34\x6b\x80\x1c\x4f\x00\x60\x8f\xcf\x82\x2f\x55\xad\x20\x44\xfb\x12\xaf\x56\xdb\x63\x6d\x54\xf0\x2e\x1a\xc2\xd7\xcc\xc4\x1f\x29\xa1\xdc\xd4\xb0\x57\x6a\xdb\x1b\xf5\xaa\x59\x70\x48\x96\xce\xa0\xdf\xca\xa7\x83\x5a\x34\x4d\x4f\xb2\x1c\x81\x12\x1b\x09\x57\x59\x99\xa6\x9f\x2c\x9d\x19\xe1\xe5\x87\xd1\x4c\x09\xf4\x78\xaa\x04\xfa\xf8\x5c\xed\xf8\x15\x36\x6a\xab\x3d\x2c\xfb\x03\xd1\x9c\xd0\xe0\xf9\x25\xbf\xde\x76\x19\x32\x46\x2d\x8e\x4a\x7a\x0c\x1d\x16\x9e\x6a\x79\xc9\x6f\xe8\x4d\x36\x7d\xc6\x39\x77\xb6\x3d\x2a\xeb\x1b\x1f\x15\x9f\xda\x29\x6d\x43\x84\x85\x89\xd2\xe2\xb0\xfc\x50\xf6\x7c\x99\x7d\x33\x87\x53\x87\xaf\xeb\xc2\xc0\xf2\x9f\x00\x96\xbf\x24\xb0\xfc\x0a\x1a\xb7\x89\x5a\xe9\x1c\xdd\x95\x7d\x01\x27\x24\x57\xcb\x8b\x33\x5a\x01\x49\x9e\x2a\x05\x4d\xdc\x5c\xe5\x1f\xdd\x85\xcc\x92\xba\x1a\xde\x42\x59\xa7\x22\xd1\x69\x00\x99\xaa\x8d\xe3\x32\xcb\x81\xbe\xbc\x5d\xea\xbb\x4f\x9f\x7a\xee\xc3\x3b\x49\x71\xb0\x90\xf1\x08\xd6\x68\x24\xfc\x50\x10\xd6\x85\xc0\xaf\x52\x42\x29\x14\x2c\x02\x0b\xe1\x22\xb8\x0b\xf6\xdd\x99\x02\xdc\x17\xb2\x99\x8e\x42\x5a\xf3\x06\x68\x2d\x0f\xe1\xb4\xd1\x4e\xa6\x52\xc8\x8a\x08\xd8\x72\xef\x4b\x1f\xce\x26\x9c\x83\x9f\x03\xae\x7d\xd9\xb3\xd9\x9c\xa6\xb0\x6c\xa1\x75\x16\x95\x68\xa4\xb5\xb7\x84\x15\x4c\xe4\x0a\x48\x13\x92\x62\x9c\x30\x5e\xe0\xb0\xdf\x96\x97\x84\xa1\x91\xb4\x78\x80\xd2\x5f\x4d\xb3\xf0\x60\x21\x68\xba\xa6\xc3\x5d\xbc\x2d\xd7\xac\xa8\x90\x8b\xe4\x08\xc3\x85\x1b\x41\xef\x90\x6c\xd2\x8d\xbf\xe3\x75\xd5\x60\x94\x6e\x60\xa9\x53\xa2\x0d\xf3\xfe\x10\x65\x33\xad\xc3\x07\xe8\xd5\x91\x41\x74\x31\xaf\xbc\x54\xed\x60\xde\x79\x02\x29\x8f\x16\x8a\x61\x73\xeb\x4b\x43\xae\x34\x41\x6d\x50\xc3\x6b\xc8\x9c\x6e\x96\xf7\x45\xd7\xf1\xf3\xc0\x51\xd5\x0d\x63\x01\xab\x5c\xe4\x62\x0a\x54\xed\x70\xbb\x3d\xd4\xca\x31\x59\xef\x95\x45\x92\x5d\xed\xa3\xb5\xd9\x93\xcb\x9a\x73\x9f\x51\x31\xce\x85\xc3\x14\xf8\xb5\xa4\x38\xb2\x2b\x3e\xe9\x0b\x7e\xf1\x89\xd0\x73\x7d\x0c\xd4\xdd\x9f\x3d\xb3\xdc\xd7\xfc\x2e\xe8\xb1\xb2\xa6\xe3\x7b\x7c\x49\x04\xe6\xe9\x37\x78\xe2\x8b\xf6\xc3\x7a\xdb\x2c\x0a\x76\x62\x91\xd7\x5e\xf1\xb4\xe8\x13\xad\x83\x5f\x03\x72\x48\x39\x7c\x31\xba\x18\x20\x29\x8d\x7e\x53\x2d\x68\x50\x22\xe8\x8f\x0b\x18\x80\x5c\x04\x03\x94\x6b\x49\x51\x3c\x29\x84\xb0\x1e\x9c\x21\x18\xca\x4f\x7d\x05\xa5\xa5\xe1\x3c\xec\xed\x7c\xaf\x67\xae\x8e\xe1\xa3\x1a\x5c\x19\x28\x97\x65\x4f\x32\xdb\x27\x71\x94\x7c\x3d\xf2\xb4\xe6\xdc\x90\xed\xbe\xba\x8e\xbe\xc4\x39\x89\x32\x51\xbf\x6f\x18\x23\xa4\xdf\x90\xf3\x4e\xf3\x71\x8a\x1b\x08\x44\xca\x57\xb3\xa3\xd6\xd1\xf5\x54\xc2\x94\x72\x7f\xe3\xe5\x6a\x7e\x51\x28\x67\x9e\x17\xf1\xfe\x59\xc4\xf2\x57\xe5\x43\x74\x8b\x18\xa0\x9e\xdd\x76\x63\xec\x0c\x3a\x12\x54\x27\xe9\x3b\xc0\xd1\x59\xc4\x87\xe6\x48\xfb\xd1\x46\x8a\xd0\x78\xbe\x79\xaf\x1d\x4b\x3b\x20\x76\xbc\xa6\xf5\xbe\x55\xa9\x72\x33\xe9\xca\x84\xfb\xd4\xa9\x5b\xb2\xbb\x7c\x83\xa9\x56\xb9\x3f\x3c\xa0\xee\x89\x71\x3b\xa1\xf2\x28\xe1\xa9\x37\x12\x52\x37\x1f\x24\x45\xc3\x8f\xd9\x7c\x44\x05\x0b\xc2\x3d\x6c\xcf\x6d\xe7\xa4\x35\x29\x31\x7e\x59\x3d\xed\x82\xa4\x8c\x4d\xc3\x92\xae\xda\xc3\xdc\x9e\x2b\x56\x55\xf0\x0c\x2a\x44\xe1\xde\x5a\x4b\x1b\xbe\x7c\x09\xcd\xb0\xd2\xd9\x41\x97\x07\x94\x36\xe9\xb6\x94\x92\x10\xa7\x76\xd5\x5e\x89\xb9\x66\xb9\xde\x4b\x8a\x7f\x75\x44\x52\x4a\xc4\x18\x62\xca\x23\xd1\x86\x56\x9a\x3e\x76\xca\x72\x9d\xd4\x6a\x06\x9d\x73\xb5\x02\x6a\xfa\xb0\x70\xbd\xe9\x4a\x92\x23\xf8\x4d\x72\xda\xb9\x7d\xb3\x6c\xb6\x38\x2d\x25\x8d\x37\x2d\xd2\x14\x76\x78\x4b\x43\x52\x71\x25\x9a\xaf\x94\x74\xbd\xa6\xec\xe5\xdd\x91\x0b\x7e\x77\x44\x52\xa0\xbd\x5b\xc1\x5f\x9a\x95\x75\xcf\xde\xf8\x74\x3b\xa9\x2c\xf7\x42\xbf\xa7\x60\x9c\x7b\x55\xd1\xf2\xb3\x27\xdf\x6a\x20\x60\xab\x03\xa1\x8b\x9b\x56\xfc\x9c\xf7\x5b\xee\x2f\x3f\x96\x0c\xc3\x1b\x9b\x21\x0e\x08\x02\xba\xa9\xd6\x1b\x78\x1c\x10\x49\x5a\x8b\x0b\x3f\xef\xa2\x99\x4d\x3c\xb3\x41\x1a\xdf\x1c\xec\x8f\x9a\x59\x7e\x62\xef\x4a\x07\x82\x11\x01\x20\x8c\xa8\xe8\x25\x10\x54\x39\x75\x2d\x2f\x0f\xb9\x47\xa1\x87\xcf\x03\x81\x40\x84\x03\x9b\x7b\xcf\x57\xb9\x9e\x56\x88\x5a\xba\xd3\x17\x15\xe5\x8e\x69\x12\xf0\x6a\x36\x6a\xc1\xfc\xac\x10\x7e\xf2\x9e\xde\x74\x07\xeb\xfa\xe5\xe1\xbe\x9e\x13\x2a\x20\xc8\x1b\xfe\x1e\x05\xeb\x58\x1a\x5c\xe8\xe3\x5b\x25\xeb\x8f\x63\x16\x2f\x95\xe2\x85\x5c\x3e\xf9\x64\x78\x23\xa1\x30\x6d\x92\x25\x14\xa6\xd5\x0c\xd3\x5e\x00\x10\x83\x7f\x02\xb1\xe3\xb3\x76\xde\x15\x4c\x98\xe8\x54\x59\xe5\x97\xa7\x86\xf4\xbb\x7e\x6f\x0f\x77\x5f\x9e\x5f\x5d\xdc\xb1\x8b\x18\x54\x31\x1c\x90\x0e\xcd\x39\x4b\x51\x1d\x59\x0e\xdf\x2d\x40\x83\xec\x18\x55\xce\xc0\xb9\x4e\xb6\x4e\x37\x0d\x77\x17\xaf\xc6\xc8\x4b\xd2\x17\xcd\x19\x3f\x9f\xcf\x97\x82\xa4\xcc\x2c\x3f\x27\x7e\xa6\x62\x5f\x4d\x6b\x4d\xfd\x05\xf9\x8d\xdb\x72\x5f\xb4\xf6\xa6\x10\x5e\x2c\xce\x1f\x9d\x3c\x9a\x25\x74\x67\xde\xe3\xb9\x30\x0d\x74\x76\xf5\xfa\x92\x7e\x2e\xdb\x5b\x71\x46\xd0\x91\x7e\xa8\xf6\x0c\x36\xe7\x3b\x65\xc2\x50\x53\x0a\x60\xff\x8c\x14\xdb\xf8\x6c\xb5\x2e\xdb\x8f\x1c\x7d\x53\xf1\xe7\xe2\xf4\x1c\xca\x22\x4a\xf2\x64\x47\x9b\x46\xa8\x6d\x63\xd7\x63\x27\x68\x39\x9a\x84\x5d\x37\xd2\x59\xed\x71\xf6\xd0\x1f\xab\xc7\x45\x01\x1e\xf2\xd4\xe2\x59\x60\x33\x3d\xe2\xef\x52\xe8\x84\xcd\x0b\x54\x7d\x28\x07\xa4\x65\xee\xbb\xa0\x34\x4b\xe8\xb8\x3f\xb4\xd3\x7a\x3e\xd3\x45\xcf\x57\xe6\x18\xac\xbb\x46\x3d\x19\x4f\x29\x2d\x91\x40\xce\xe5\x68\x51\x5f\x89\x41\xd5\xc1\x6b\x62\x5c\xc2\x9b\xd5\xc7\x13\x3b\xe1\xfa\x76\x87\xbb\x9b\xa2\x1c\xb8\xae\x2a\xdc\x4f\x3b\x52\xb5\xf0\x5f\x80\x21\x0c\x87\xbf\x85\x1a\x27\xd5\xd0\x1c\x59\xbc\x18\x32\x8e\x1f\x68\x10\x83\xb2\x8b\x8c\x26\xbc\x3c\x4e\x55\xe5\xb9\xdc\x30\x07\x3c\x57\xda\x8d\xfb\x58\x2f\xd1\x4e\x9b\x0a\x35\x18\x98\x55\x85\x9a\xda\x99\x15\xb6\xd8\xef\xc3\xd1\xbd\xdf\x6f\x93\x73\xdb\x81\x7c\x14\xd2\xe7\x20\xfe\xac\x21\xea\x1c\x90\x5c\xfb\xf6\x40\x7c\xfb\x5b\x01\x86\x47\xba\x26\x37\xd7\xd7\xfc\xae\x39\xbf\x18\xa3\x81\x52\xf9\x93\xa3\x59\x87\xf6\x35\x98\xc1\x9c\x75\xba\xd0\x91\xf2\x98\x9e\x69\x84\x83\x77\x48\x64\xa1\xd4\xc0\xdb\x03\x96\x92\xfb\xfb\xee\x50\x8b\xb8\xed\xb2\xb4\x21\xce\xf2\x8d\x80\x83\x6c\x9b\xa6\xb7\x87\xfd\x1d\xfb\xf8\x8e\x92\x89\x57\xe8\x37\x61\x82\xd9\x84\xbd\x94\xb7\x27\x7d\x19\x18\xd0\x97\x72\xe7\x6a\x54\x88\xfa\x3d\x2e\x41\xfd\x3e\x02\x2e\x6e\x5a\xc6\x7c\x5d\xe2\x4b\x8e\x8b\xd0\x63\x44\x35\x94\x6d\x61\x03\x96\xb4\x21\xde\x60\x0e\x42\xc5\xdd\xc6\xa1\xc6\xe5\xcb\x69\xbc\x60\xa8\x31\xb7\xe8\x32\xf1\xa4\xeb\x5c\xe3\x94\xce\x05\xe5\x94\xf3\xed\xf3\x9f\x34\x7c\xa9\x60\x9e\x2f\x76\x04\x0d\x38\xcb\x33\x73\x2e\x79\x0b\x57\x10\xcb\x7d\x8d\xaf\x11\x50\xb2\x72\xa3\xa9\x24\x00\xbe\xf3\x88\xf0\x2a\x0a\xf4\x1f\xe5\xad\x84\x55\x99\x00\x5c\x73\x73\x01\x8c\xbe\xf2\xc7\x8f\x28\xeb\xa9\x64\x3d\x7a\x32\x2a\xc3\xd2\xf4\xee\xb0\x93\x4b\xa6\xd5\xdf\x4b\x79\xf7\x82\xb9\x01\xc9\x40\x6b\x97\x6c\x8d\x39\xe3\x8c\xbb\x8a\x76\x13\xa5\xba\xb0\x76\xab\x45\x5c\xba\x67\xe6\x31\x31\xb9\x7e\x04\xe9\xd9\xff\x98\xea\x99\xe8\x98\xea\x85\x87\x98\xaa\x58\xe5\xb7\x10\xa5\x76\xdd\xd6\x76\xd1\xe5\xe5\xeb\x74\xab\xc6\xdc\xc8\x61\x3c\x66\x76\xf1\x01\x3f\xdb\xc5\xcf\x7b\x3c\xc8\xf9\x52\xf3\x13\x57\x42\xa7\xda\x4f\xaa\xa6\x0e\xeb\xe8\xfe\xb6\xad\xfa\xf2\x4f\x0f\xe0\x05\xf5\xa0\xaf\x56\x8b\x07\x4f\x12\xaa\x57\x2d\xcb\x94\xec\x55\xcb\x23\xf3\x13\x34\x77\xac\x98\xda\xba\x28\x9c\xef\xe4\x1d\x30\xe5\x32\xd5\x7d\x3b\x9d\x5a\xa3\x47\x91\x9b\x08\xd4\xc8\x73\x12\xd6\x2f\xbe\x5d\xda\xba\x8c\x18\x5b\x1c\xf7\x55\xdf\x59\x35\x3f\x21\x39\x76\x50\xde\x23\xb3\xf7\xc9\xf4\x22\x9b\x75\x0f\x4f\x92\xbd\xaa\xe5\x7e\xaa\x16\xc1\x48\x82\x26\xf2\x9c\xfb\xef\x95\x8f\xc3\xfe\x8f\xb0\xd5\x46\x71\x37\xd6\x2a\x43\xb5\x2c\xf6\xc4\x5b\x17\x91\x95\x3a\x93\x84\x70\x20\x48\x7c\x05\xbe\x00\x39\xdf\xaa\x1b\x81\xc4\x60\xc0\x35\x48\xda\xc8\xec\x37\x10\x06\x4b\x9c\x49\x14\xbd\x92\x42\xef\x38\x2f\x88\x6a\xbe\xb0\x95\xb6\xe8\x32\x61\xe5\x2d\xf6\xc1\xe4\xca\x23\x48\xd2\x7c\x5b\xd6\x6b\xa0\xdd\x7f\xf2\x27\x71\xc1\xfc\x19\x66\x48\x82\x1a\x40\x79\xcd\x97\xf7\xbe\xb7\x30\x07\xd0\x61\x53\x4a\x58\xdb\x7b\xd9\x55\xbf\x36\xfe\x4c\x3e\xc7\xf7\x74\x0f\x15\xf6\x28\xf9\xd5\x7c\x5b\x47\xda\x24\x8d\x5b\xbd\x97\x3f\xbf\x7e\x3b\x80\x9c\xd8\xdd\x9a\x33\x41\x0d\x34\x67\x62\xef\x43\xe5\x0d\x22\xaa\x92\x18\x94\xdd\xa0\xa2\xd8\x2d\x06\x17\x40\xe6\xf2\x94\x35\x0b\x62\x5c\x00\x4f\x98\xf1\xed\x0a\x2e\x81\x7d\xc7\x49\xcc\xdb\xe2\xd1\xea\x51\xe9\x4e\xdf\x6c\x8c\xe0\xf1\x7d\x0a\x0d\x7e\xc4\x85\x67\x61\x92\xc5\x6b\x27\xcc\x31\x3c\x75\xa6\xa7\x58\x20\xc7\x33\x6c\xf9\x62\xa7\x8a\x2e\x7a\xb0\x4c\x4d\xd6\x24\x90\xc5\x8a\xb0\x5f\x6e\xbe\x02\xf4\x54\xbe\x53\x20\x18\x73\x3f\x16\xdb\x00\xf5\x4a\x13\x46\xad\xd6\xbe\xcd\x5a\x7c\x35\x1c\xa1\x13\x0f\x53\x47\xe8\xe4\x0e\xd7\xf4\x41\xae\xd0\x7c\xc5\xb7\x32\x57\x4e\x81\xbf\xd0\x24\x03\x35\x90\x58\xb3\x41\x68\xd5\xa1\x9f\xb4\xb9\xaa\x20\x78\x9d\xe1\x2b\xc1\x2e\xa5\x11\xbc\xa9\x05\x36\x92\x09\xd6\x95\x4b\x09\x03\x5e\x2f\xc3\xcc\x98\x8d\xea\xc5\x59\x98\x1b\x31\x67\x0d\x06\xb3\xad\xae\xcb\x60\xfc\xd2\xd1\xbc\xa6\xb4\x04\x78\xd3\xf7\xfb\xce\xc2\x01\x71\xe4\xbe\xcb\xfc\x2d\x7d\x0c\x06\xe1\xab\xd2\x91\xc4\x9a\xc2\xcc\x54\xb0\x48\xba\x89\x91\x84\xe9\x29\x37\x68\x3d\x91\x1c\xb8\x1e\x49\x43\x4a\xbc\x6e\xf5\x0a\x55\xdc\xc5\x2f\x34\x69\x30\xa3\xd7\xe5\x0a\x37\xc2\x57\xf3\x50\x42\xe7\xf5\xb9\xe5\x70\x9c\x04\xa8\x1f\xc3\xfc\x56\x7d\xec\x38\xab\xe8\x27\x3b\xcd\x50\xd6\x1f\x04\x55\x60\xcd\x15\xc2\xcf\xbb\x5e\x49\x6c\x85\xdb\xba\x2f\x3e\xe5\x2f\x2d\xdf\xd7\xc0\x36\x12\x94\x66\x2e\x1e\xbc\x0c\x41\xa2\xd4\x6b\x24\xe0\x1c\x2f\xf8\xe2\xfc\x7a\x2b\x41\x05\x9e\x1c\x2d\xce\xc1\x58\x5a\x3a\x46\x54\xe3\x6b\x15\x9d\xc5\xd4\xb4\x36\x2e\x33\x5d\x9b\x45\x32\x08\x75\xc8\xf3\x6d\x8f\x45\x50\x44\x2c\x83\xa4\x20\x61\x64\xd1\xae\xd5\x6c\x79\xda\xae\x0f\xf2\xaa\xad\xaf\xba\xe2\x80\x34\xa5\x3b\x21\xce\x2b\x0b\x51\x33\x38\x23\x04\x9c\xdd\x39\x13\x68\x44\x0f\x57\xc9\x7a\xa2\x04\xbc\xdf\x5d\x81\x33\x78\xc3\x47\x9f\xc9\x89\x22\x08\xe5\x14\x4b\x20\x8a\xd3\x9d\x05\xd4\x3c\x2b\xe0\x34\xd2\x31\xb0\x97\x5d\x02\x0a\xb1\xcc\x32\x89\x42\x0c\xa5\x8c\x21\xc3\x80\x31\x34\xb7\xe5\xd9\xb2\x95\x20\xac\xfc\xe7\x8a\x7d\x46\x43\x8e\x3f\x9d\x2c\xad\x23\xda\xb7\x3a\x48\xc4\x06\xfd\x19\xe1\xe3\x03\xc6\xb2\x4b\x2d\x63\xe2\xd1\xe3\x14\xa0\xfc\x54\x2e\x0f\xce\x51\xe6\x67\xf9\x56\xcb\x74\xac\xa6\xb1\xab\x4d\x87\x1a\x0f\x5e\x5f\x48\x8a\x83\x99\x7a\x15\xcb\xba\x0e\x09\xc8\x24\xa1\xa3\xed\x87\xe6\x6d\xbe\x33\x73\xfd\x36\x8f\x6a\x7d\x5c\x66\x2b\xb7\xce\x07\xde\xe0\x06\x8b\x60\x20\x2b\x04\x7f\x98\x87\x60\x10\x88\x0a\x22\x90\x1a\x18\x22\xc0\xab\x4f\xb3\x32\x63\x6c\xf2\x0b\xad\x96\xec\x14\xc8\x7e\x0c\x20\xaa\x78\xdc\xfc\x74\x1b\x4b\xd2\x90\x3d\xc4\x33\xfd\x4c\x60\xaa\x5a\x64\x52\xc9\x12\xf3\xea\x2b\x49\xd3\x2a\x9d\x8b\xbb\xe9\x75\xc2\xe3\xe9\x41\x79\x74\xa9\x29\x43\x48\x6b\x19\x40\xec\x84\x36\x9c\x0d\x2f\xf2\xf8\x34\x44\x95\x76\xf7\x10\xdc\x98\x86\xcb\x68\x59\xcd\x9e\x39\x88\xfd\x6c\xd4\xdb\xa0\x9c\xd1\x15\x31\x87\xfd\xfb\x1c\x3f\xb3\x5f\x65\xee\xdf\xdb\xc5\x73\xb5\x32\x9a\x71\xdf\x39\xd4\x25\x71\xb0\xe4\x71\xec\xac\x2d\x6b\xf7\x64\x83\x7c\x25\x85\x92\xc7\x31\xbf\x89\x8f\x60\xf2\xa5\xac\xa3\x8f\x8b\x87\xf7\x9a\x51\x2b\xdf\x32\x11\x4b\xf2\xe0\x21\xd1\xae\x5d\x7e\x3d\x2c\xcb\x96\xc7\x14\x8c\x33\xff\xcd\x2a\x96\x31\xda\xcb\xd6\xbf\xe9\x6b\xd2\xf2\xed\xc6\xf7\xb5\x98\xc7\xbe\x96\x91\xfe\xc1\x3d\xf7\x9c\x3e\xc5\x6d\x8f\x5a\x7f\x41\x05\x83\x17\xb8\xe3\x93\xd6\x5f\xd2\x09\x19\xc6\xf0\x89\x56\x5b\xb3\xe4\x79\x43\x5f\xa1\xbe\xbc\x7a\x64\x50\xa3\xea\x64\x6c\x5f\x5c\x9b\x8e\x70\x58\x5d\x18\xe8\x97\x77\x6f\xf0\x20\xb9\x7b\xb1\xbd\xa9\xbf\x64\xde\x26\x9f\xa1\xfc\x4d\x9f\xcb\xfc\xe2\x6e\x85\x60\xe7\x8a\xa7\xf6\x3d\xd8\x35\x82\xfb\xd3\x88\x1f\x37\x12\xe2\x07\x72\xc4\x8e\x88\xef\xf4\xe1\xbb\x01\x6c\xf7\x6f\x8f\x8f\x77\xc4\x60\x0f\xd9\x63\xc4\xfa\x6e\x2c\xe8\xaf\x24\x57\x9d\x3e\xfb\x27\xca\xe0\x87\xe1\x31\x5b\xa2\x07\x7d\xd3\x6c\xdf\x67\xc5\x9a\x87\x44\xff\x67\xbc\x83\xf5\x6a\x2e\x36\x33\xfd\xcc\xe4\x93\x7f\x7d\xc3\x35\x7f\xa3\xc1\x7c\xf9\x81\x84\x6f\x76\x48\xd8\x55\x35\x9f\x61\x9c\xb0\x41\xc2\x86\xe3\xe3\xf1\xe7\x0a\x9f\xab\xe2\x16\x5f\x37\xf8\xba\x29\xcb\x0f\x52\x18\xc4\x99\x8a\x37\x35\x09\x49\x9c\x72\x8b\xef\x5b\x7e\xa6\x11\xcf\x2f\x2c\x11\x34\x18\xaf\x61\xda\x07\xde\xbc\xac\x61\x49\x43\xba\x7d\x50\x3a\xb7\xaa\xa9\xf2\xf3\x21\xbb\x47\xde\x6a\x12\x7e\xf1\x23\x6d\xd4\xbc\x26\xc9\xcf\x87\x38\x53\xfb\x8d\x55\x28\xbf\x29\x95\xfb\xa1\x89\xf2\x93\xd2\xda\xe2\x66\x1e\xfb\xa5\xbf\x90\x1a\x7b\xa5\xbf\x68\x7a\x57\x6d\xb3\xe7\x07\x71\xde\x67\xf6\x50\x5d\x7c\xa1\xee\x19\xe5\x99\x87\x32\xc7\xb4\x62\xad\xbd\x3d\x94\x7d\xd8\x73\xb0\x95\x59\x66\x0f\x53\x56\xf5\xfe\x10\x14\xb1\xf1\x51\x54\x01\x8b\x21\x83\xe5\x7e\x26\x41\xcd\x32\xa8\x79\x39\x8e\xd6\x02\x0c\x13\x14\xbc\xac\x69\xc9\x1f\xff\xe3\x1f\x80\xa7\xdf\xff\xfc\x67\x7e\xfe\xd3\x93\xbc\xfc\xc4\xd1\xfb\xbb\x7c\xa7\x4e\x48\x06\x46\xdf\xcf\x13\x48\x0e\x0d\x83\x6b\x73\xea\xf5\x22\xd7\xe6\xd0\x7c\xf6\x7f\x02\x00\x00\xff\xff\x71\x90\x9f\xb9\x75\xd8\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: 55343, mode: os.FileMode(420), modTime: time.Unix(1471250630, 0)} + info := bindataFileInfo{name: "conf/locale/locale_en-US.ini", size: 55413, mode: os.FileMode(420), modTime: time.Unix(1472097943, 0)} a := &asset{bytes: bytes, info: info} return a, nil } diff --git a/modules/context/repo.go b/modules/context/repo.go index 2f6a5de7a..f5f26b1e5 100644 --- a/modules/context/repo.go +++ b/modules/context/repo.go @@ -41,14 +41,14 @@ type Repository struct { GitRepo *git.Repository BranchName string TagName string - TreeName string + TreePath string CommitID string RepoLink string CloneLink models.CloneLink CommitsCount int64 Mirror *models.Mirror - PullRequest *PullRequest + PullRequest *PullRequest } // IsOwner returns true if current user is the owner of repository. @@ -384,7 +384,7 @@ func RepoRef() macaron.Handler { if ctx.Repo.GitRepo.IsBranchExist(refName) || ctx.Repo.GitRepo.IsTagExist(refName) { if i < len(parts)-1 { - ctx.Repo.TreeName = strings.Join(parts[i+1:], "/") + ctx.Repo.TreePath = strings.Join(parts[i+1:], "/") } hasMatched = true break @@ -392,7 +392,7 @@ func RepoRef() macaron.Handler { } if !hasMatched && len(parts[0]) == 40 { refName = parts[0] - ctx.Repo.TreeName = strings.Join(parts[1:], "/") + ctx.Repo.TreePath = strings.Join(parts[1:], "/") } if ctx.Repo.GitRepo.IsBranchExist(refName) { diff --git a/public/js/gogs.js b/public/js/gogs.js index c87baa48a..25a1dc133 100644 --- a/public/js/gogs.js +++ b/public/js/gogs.js @@ -779,7 +779,7 @@ function initEditor() { }); if ($(this).val()) parts.push($(this).val()); - $('#tree-name').val(parts.join('/')); + $('#tree_path').val(parts.join('/')); }).trigger('keyup'); var $editArea = $('.repository.editor textarea#edit_area'); diff --git a/routers/api/v1/repo/file.go b/routers/api/v1/repo/file.go index 745b444ab..972dbefac 100644 --- a/routers/api/v1/repo/file.go +++ b/routers/api/v1/repo/file.go @@ -19,7 +19,7 @@ func GetRawFile(ctx *context.APIContext) { return } - blob, err := ctx.Repo.Commit.GetBlobByPath(ctx.Repo.TreeName) + blob, err := ctx.Repo.Commit.GetBlobByPath(ctx.Repo.TreePath) if err != nil { if git.IsErrNotExist(err) { ctx.Status(404) diff --git a/routers/repo/commit.go b/routers/repo/commit.go index 9cf339ece..dca7b1f9f 100644 --- a/routers/repo/commit.go +++ b/routers/repo/commit.go @@ -25,9 +25,9 @@ const ( func RefCommits(ctx *context.Context) { switch { - case len(ctx.Repo.TreeName) == 0: + case len(ctx.Repo.TreePath) == 0: Commits(ctx) - case ctx.Repo.TreeName == "search": + case ctx.Repo.TreePath == "search": SearchCommits(ctx) default: FileHistory(ctx) @@ -104,7 +104,7 @@ func SearchCommits(ctx *context.Context) { func FileHistory(ctx *context.Context) { ctx.Data["IsRepoToolbarCommits"] = true - fileName := ctx.Repo.TreeName + fileName := ctx.Repo.TreePath if len(fileName) == 0 { Commits(ctx) return diff --git a/routers/repo/download.go b/routers/repo/download.go index e9468aa06..85aa76472 100644 --- a/routers/repo/download.go +++ b/routers/repo/download.go @@ -25,7 +25,7 @@ func ServeData(ctx *context.Context, name string, reader io.Reader) error { if !isTextFile { _, isImageFile := base.IsImageFile(buf) if !isImageFile { - ctx.Resp.Header().Set("Content-Disposition", "attachment; filename=\""+path.Base(ctx.Repo.TreeName)+"\"") + ctx.Resp.Header().Set("Content-Disposition", "attachment; filename=\""+path.Base(ctx.Repo.TreePath)+"\"") ctx.Resp.Header().Set("Content-Transfer-Encoding", "binary") } } else if !ctx.QueryBool("render") { @@ -42,11 +42,11 @@ func ServeBlob(ctx *context.Context, blob *git.Blob) error { return err } - return ServeData(ctx, ctx.Repo.TreeName, dataRc) + return ServeData(ctx, ctx.Repo.TreePath, dataRc) } func SingleDownload(ctx *context.Context) { - blob, err := ctx.Repo.Commit.GetBlobByPath(ctx.Repo.TreeName) + blob, err := ctx.Repo.Commit.GetBlobByPath(ctx.Repo.TreePath) if err != nil { if git.IsErrNotExist(err) { ctx.Handle(404, "GetBlobByPath", nil) diff --git a/routers/repo/editor.go b/routers/repo/editor.go index aaacd8a80..c7ddb8a25 100644 --- a/routers/repo/editor.go +++ b/routers/repo/editor.go @@ -32,15 +32,14 @@ func editFile(ctx *context.Context, isNewFile bool) { ctx.Data["RequireSimpleMDE"] = true branchLink := ctx.Repo.RepoLink + "/src/" + ctx.Repo.BranchName - treeName := ctx.Repo.TreeName var treeNames []string - if len(treeName) > 0 { - treeNames = strings.Split(treeName, "/") + if len(ctx.Repo.TreePath) > 0 { + treeNames = strings.Split(ctx.Repo.TreePath, "/") } if !isNewFile { - entry, err := ctx.Repo.Commit.GetTreeEntryByPath(treeName) + entry, err := ctx.Repo.Commit.GetTreeEntryByPath(ctx.Repo.TreePath) if err != nil { if git.IsErrNotExist(err) { ctx.Handle(404, "GetTreeEntryByPath", err) @@ -83,7 +82,7 @@ func editFile(ctx *context.Context, isNewFile bool) { buf = append(buf, d...) if err, content := template.ToUTF8WithErr(buf); err != nil { if err != nil { - log.Error(4, "Convert content encoding: %s", err) + log.Error(4, "ToUTF8WithErr: %v", err) } ctx.Data["FileContent"] = string(buf) } else { @@ -93,7 +92,7 @@ func editFile(ctx *context.Context, isNewFile bool) { treeNames = append(treeNames, "") // Append empty string to allow user name the new file. } - ctx.Data["TreeName"] = treeName + ctx.Data["TreePath"] = ctx.Repo.TreePath ctx.Data["TreeNames"] = treeNames ctx.Data["BranchLink"] = branchLink ctx.Data["commit_summary"] = "" @@ -125,7 +124,7 @@ func editFilePost(ctx *context.Context, form auth.EditRepoFileForm, isNewFile bo oldBranchName := ctx.Repo.BranchName branchName := oldBranchName branchLink := ctx.Repo.RepoLink + "/src/" + branchName - oldTreeName := ctx.Repo.TreeName + oldTreePath := ctx.Repo.TreePath content := form.Content commitChoice := form.CommitChoice lastCommit := form.LastCommit @@ -135,16 +134,14 @@ func editFilePost(ctx *context.Context, form auth.EditRepoFileForm, isNewFile bo branchName = form.NewBranchName } - treeName := form.TreeName - treeName = strings.Trim(treeName, " ") - treeName = strings.Trim(treeName, "/") + form.TreePath = strings.Trim(form.TreePath, " /") var treeNames []string - if len(treeName) > 0 { - treeNames = strings.Split(treeName, "/") + if len(form.TreePath) > 0 { + treeNames = strings.Split(form.TreePath, "/") } - ctx.Data["TreeName"] = treeName + ctx.Data["TreePath"] = form.TreePath ctx.Data["TreeNames"] = treeNames ctx.Data["BranchLink"] = branchLink ctx.Data["FileContent"] = content @@ -162,24 +159,24 @@ func editFilePost(ctx *context.Context, form auth.EditRepoFileForm, isNewFile bo return } - if len(treeName) == 0 { - ctx.Data["Err_Filename"] = true + if len(form.TreePath) == 0 { + ctx.Data["Err_TreePath"] = true ctx.RenderWithErr(ctx.Tr("repo.editor.filename_cannot_be_empty"), EDIT, &form) return } if oldBranchName != branchName { if _, err := ctx.Repo.Repository.GetBranch(branchName); err == nil { - ctx.Data["Err_Branchname"] = true + ctx.Data["Err_NewBranchName"] = true ctx.RenderWithErr(ctx.Tr("repo.editor.branch_already_exists", branchName), EDIT, &form) return } } - var treepath string + var newTreePath string for index, part := range treeNames { - treepath = path.Join(treepath, part) - entry, err := ctx.Repo.Commit.GetTreeEntryByPath(treepath) + newTreePath = path.Join(newTreePath, part) + entry, err := ctx.Repo.Commit.GetTreeEntryByPath(newTreePath) if err != nil { if git.IsErrNotExist(err) { // Means there is no item with that name, so we're good @@ -191,13 +188,13 @@ func editFilePost(ctx *context.Context, form auth.EditRepoFileForm, isNewFile bo } if index != len(treeNames)-1 { if !entry.IsDir() { - ctx.Data["Err_Filename"] = true + ctx.Data["Err_TreePath"] = true ctx.RenderWithErr(ctx.Tr("repo.editor.directory_is_a_file", part), EDIT, &form) return } } else { if entry.IsDir() { - ctx.Data["Err_Filename"] = true + ctx.Data["Err_TreePath"] = true ctx.RenderWithErr(ctx.Tr("repo.editor.filename_is_a_directory", part), EDIT, &form) return } @@ -205,11 +202,11 @@ func editFilePost(ctx *context.Context, form auth.EditRepoFileForm, isNewFile bo } if !isNewFile { - _, err := ctx.Repo.Commit.GetTreeEntryByPath(oldTreeName) + _, err := ctx.Repo.Commit.GetTreeEntryByPath(oldTreePath) if err != nil { if git.IsErrNotExist(err) { - ctx.Data["Err_Filename"] = true - ctx.RenderWithErr(ctx.Tr("repo.editor.file_editing_no_longer_exists", oldTreeName), EDIT, &form) + ctx.Data["Err_TreePath"] = true + ctx.RenderWithErr(ctx.Tr("repo.editor.file_editing_no_longer_exists", oldTreePath), EDIT, &form) } else { ctx.Handle(500, "GetTreeEntryByPath", err) } @@ -223,7 +220,7 @@ func editFilePost(ctx *context.Context, form auth.EditRepoFileForm, isNewFile bo } for _, file := range files { - if file == treeName { + if file == form.TreePath { ctx.RenderWithErr(ctx.Tr("repo.editor.file_changed_while_editing", ctx.Repo.RepoLink+"/compare/"+lastCommit+"..."+ctx.Repo.CommitID), EDIT, &form) return } @@ -231,9 +228,9 @@ func editFilePost(ctx *context.Context, form auth.EditRepoFileForm, isNewFile bo } } - if oldTreeName != treeName { + if oldTreePath != form.TreePath { // We have a new filename (rename or completely new file) so we need to make sure it doesn't already exist, can't clobber. - entry, err := ctx.Repo.Commit.GetTreeEntryByPath(treeName) + entry, err := ctx.Repo.Commit.GetTreeEntryByPath(form.TreePath) if err != nil { if !git.IsErrNotExist(err) { ctx.Handle(500, "GetTreeEntryByPath", err) @@ -241,8 +238,8 @@ func editFilePost(ctx *context.Context, form auth.EditRepoFileForm, isNewFile bo } } if entry != nil { - ctx.Data["Err_Filename"] = true - ctx.RenderWithErr(ctx.Tr("repo.editor.file_already_exists", treeName), EDIT, &form) + ctx.Data["Err_TreePath"] = true + ctx.RenderWithErr(ctx.Tr("repo.editor.file_already_exists", form.TreePath), EDIT, &form) return } } @@ -252,9 +249,9 @@ func editFilePost(ctx *context.Context, form auth.EditRepoFileForm, isNewFile bo message = strings.TrimSpace(form.CommitSummary) } else { if isNewFile { - message = ctx.Tr("repo.editor.add", treeName) + message = ctx.Tr("repo.editor.add", form.TreePath) } else { - message = ctx.Tr("repo.editor.update", treeName) + message = ctx.Tr("repo.editor.update", form.TreePath) } } @@ -267,18 +264,18 @@ func editFilePost(ctx *context.Context, form auth.EditRepoFileForm, isNewFile bo LastCommitID: lastCommit, OldBranch: oldBranchName, NewBranch: branchName, - OldTreeName: oldTreeName, - NewTreeName: treeName, + OldTreeName: oldTreePath, + NewTreeName: form.TreePath, Message: message, Content: content, IsNewFile: isNewFile, }); err != nil { - ctx.Data["Err_Filename"] = true + ctx.Data["Err_TreePath"] = true ctx.RenderWithErr(ctx.Tr("repo.editor.failed_to_update_file", err), EDIT, &form) return } - ctx.Redirect(ctx.Repo.RepoLink + "/src/" + branchName + "/" + treeName) + ctx.Redirect(ctx.Repo.RepoLink + "/src/" + branchName + "/" + form.TreePath) } func EditFilePost(ctx *context.Context, form auth.EditRepoFileForm) { @@ -290,7 +287,7 @@ func NewFilePost(ctx *context.Context, form auth.EditRepoFileForm) { } func DiffPreviewPost(ctx *context.Context, form auth.EditPreviewDiffForm) { - treeName := ctx.Repo.TreeName + treeName := ctx.Repo.TreePath content := form.Content entry, err := ctx.Repo.Commit.GetTreeEntryByPath(treeName) @@ -325,7 +322,7 @@ func DiffPreviewPost(ctx *context.Context, form auth.EditPreviewDiffForm) { func DeleteFilePost(ctx *context.Context, form auth.DeleteRepoFileForm) { branchName := ctx.Repo.BranchName - treeName := ctx.Repo.TreeName + treeName := ctx.Repo.TreePath if ctx.HasError() { ctx.Redirect(ctx.Repo.RepoLink + "/src/" + branchName + "/" + treeName) @@ -342,5 +339,6 @@ func DeleteFilePost(ctx *context.Context, form auth.DeleteRepoFileForm) { return } + ctx.Flash.Success(ctx.Tr("repo.editor.file_delete_success", treeName)) ctx.Redirect(ctx.Repo.RepoLink + "/src/" + branchName) } diff --git a/routers/repo/issue.go b/routers/repo/issue.go index 2c23a7bea..9fe9cee06 100644 --- a/routers/repo/issue.go +++ b/routers/repo/issue.go @@ -331,6 +331,8 @@ func setTemplateIfExists(ctx *context.Context, ctxDataKey string, possibleFiles func NewIssue(ctx *context.Context) { ctx.Data["Title"] = ctx.Tr("repo.issues.new") ctx.Data["PageIsIssueList"] = true + ctx.Data["RequireHighlightJS"] = true + ctx.Data["RequireSimpleMDE"] = true setTemplateIfExists(ctx, ISSUE_TEMPLATE_KEY, IssueTemplateCandidates) renderAttachmentSettings(ctx) @@ -339,10 +341,6 @@ func NewIssue(ctx *context.Context) { return } - ctx.Data["RequireHighlightJS"] = true - ctx.Data["RequireSimpleMDE"] = true - ctx.Data["RepoName"] = ctx.Repo.Repository.Name - ctx.HTML(200, ISSUE_NEW) } @@ -403,7 +401,6 @@ func ValidateRepoMetas(ctx *context.Context, form auth.CreateIssueForm) ([]int64 func NewIssuePost(ctx *context.Context, form auth.CreateIssueForm) { ctx.Data["Title"] = ctx.Tr("repo.issues.new") ctx.Data["PageIsIssueList"] = true - ctx.Data["RepoName"] = ctx.Repo.Repository.Name ctx.Data["RequireHighlightJS"] = true ctx.Data["RequireSimpleMDE"] = true renderAttachmentSettings(ctx) @@ -493,6 +490,8 @@ func UploadIssueAttachment(ctx *context.Context) { } func ViewIssue(ctx *context.Context) { + ctx.Data["RequireHighlightJS"] = true + ctx.Data["RequireSimpleMDE"] = true ctx.Data["RequireDropzone"] = true renderAttachmentSettings(ctx) @@ -637,11 +636,6 @@ func ViewIssue(ctx *context.Context) { ctx.Data["Issue"] = issue ctx.Data["IsIssueOwner"] = ctx.Repo.IsWriter() || (ctx.IsSigned && issue.IsPoster(ctx.User.ID)) ctx.Data["SignInLink"] = setting.AppSubUrl + "/user/login?redirect_to=" + ctx.Data["Link"].(string) - - ctx.Data["RequireHighlightJS"] = true - ctx.Data["RequireSimpleMDE"] = true - ctx.Data["RepoName"] = ctx.Repo.Repository.Name - ctx.HTML(200, ISSUE_VIEW) } diff --git a/routers/repo/upload.go b/routers/repo/upload.go index c77bdce81..5e0f91668 100644 --- a/routers/repo/upload.go +++ b/routers/repo/upload.go @@ -39,7 +39,7 @@ func UploadFile(ctx *context.Context) { repoName := ctx.Repo.Repository.Name branchName := ctx.Repo.BranchName branchLink := ctx.Repo.RepoLink + "/src/" + branchName - treeName := ctx.Repo.TreeName + treeName := ctx.Repo.TreePath treeNames := []string{""} if len(treeName) > 0 { diff --git a/routers/repo/view.go b/routers/repo/view.go index c7e0003a3..173797cff 100644 --- a/routers/repo/view.go +++ b/routers/repo/view.go @@ -56,7 +56,7 @@ func Home(ctx *context.Context) { uploadFileLink := ctx.Repo.RepoLink + "/upload/" + branchName // Get tree path - treename := ctx.Repo.TreeName + treename := ctx.Repo.TreePath if len(treename) > 0 { if treename[len(treename)-1] == '/' { diff --git a/templates/.VERSION b/templates/.VERSION index 16cc0b999..98448cd5a 100644 --- a/templates/.VERSION +++ b/templates/.VERSION @@ -1 +1 @@ -0.9.84.0824 \ No newline at end of file +0.9.85.0824 \ No newline at end of file diff --git a/templates/repo/editor/edit.tmpl b/templates/repo/editor/edit.tmpl index f1115ace5..f6a239311 100644 --- a/templates/repo/editor/edit.tmpl +++ b/templates/repo/editor/edit.tmpl @@ -8,7 +8,7 @@
- @@ -80,7 +80,7 @@
-
+
@@ -91,7 +91,7 @@ - {{.i18n.Tr "repo.cancel"}} + {{.i18n.Tr "repo.cancel"}}
diff --git a/templates/repo/home.tmpl b/templates/repo/home.tmpl index 3f2e54c03..bba582774 100644 --- a/templates/repo/home.tmpl +++ b/templates/repo/home.tmpl @@ -2,6 +2,7 @@
{{template "repo/header" .}}
+ {{template "base/alert" .}}

{{if .Repository.DescriptionHtml}}{{.Repository.DescriptionHtml}}{{else}}{{.i18n.Tr "repo.no_desc"}}{{end}} {{.Repository.Website}}