From 039dc333670a7ece5b34a611b794d072b589ec65 Mon Sep 17 00:00:00 2001 From: Unknwon Date: Tue, 14 Feb 2017 16:22:16 -0500 Subject: [PATCH] git: delegate all server-side Git hooks (#1623) --- .github/ISSUE_TEMPLATE.md | 2 +- cmd/hook.go | 127 ++++++++++++++++++++ cmd/{serve.go => serv.go} | 102 ++++++++-------- cmd/update.go | 58 --------- cmd/web.go | 3 +- conf/locale/locale_en-US.ini | 4 +- gogs.go | 6 +- models/action.go | 2 +- models/migrations/migrations.go | 2 + models/migrations/v15.go | 82 +++++++++++++ models/models.go | 2 - models/repo.go | 54 +++++---- models/wiki.go | 4 +- modules/bindata/bindata.go | 4 +- modules/setting/setting.go | 1 - routers/admin/admin.go | 8 +- routers/install.go | 2 +- templates/.VERSION | 2 +- templates/admin/dashboard.tmpl | 2 +- vendor/github.com/gogits/git-module/git.go | 2 +- vendor/github.com/gogits/git-module/hook.go | 47 +++----- vendor/vendor.json | 6 +- 22 files changed, 337 insertions(+), 185 deletions(-) create mode 100644 cmd/hook.go rename cmd/{serve.go => serv.go} (75%) delete mode 100644 cmd/update.go create mode 100644 models/migrations/v15.go diff --git a/.github/ISSUE_TEMPLATE.md b/.github/ISSUE_TEMPLATE.md index da434e20..06110470 100644 --- a/.github/ISSUE_TEMPLATE.md +++ b/.github/ISSUE_TEMPLATE.md @@ -18,7 +18,7 @@ The issue will be closed without any reasons if it does not satisfy any of follo - [ ] Yes (provide example URL) - [ ] No - [ ] Not relevant -- Log gist: +- Log gist (usually found in `log/gogs.log`): ## Description diff --git a/cmd/hook.go b/cmd/hook.go new file mode 100644 index 00000000..a917554d --- /dev/null +++ b/cmd/hook.go @@ -0,0 +1,127 @@ +// Copyright 2014 The Gogs Authors. All rights reserved. +// Use of this source code is governed by a MIT-style +// license that can be found in the LICENSE file. + +package cmd + +import ( + "bufio" + "bytes" + "os" + "os/exec" + "path/filepath" + + "github.com/urfave/cli" + + "github.com/gogits/gogs/models" +) + +var ( + CmdHook = cli.Command{ + Name: "hook", + Usage: "Delegate commands to corresponding Git hooks", + Description: "All sub-commands should only be called by Git", + Flags: []cli.Flag{ + stringFlag("config, c", "custom/conf/app.ini", "Custom configuration file path"), + }, + Subcommands: []cli.Command{ + subcmdHookPreReceive, + subcmdHookUpadte, + subcmdHookPostReceive, + }, + } + + subcmdHookPreReceive = cli.Command{ + Name: "pre-receive", + Usage: "Delegate pre-receive Git hook", + Description: "This command should only be called by Git", + Action: runHookPreReceive, + } + subcmdHookUpadte = cli.Command{ + Name: "update", + Usage: "Delegate update Git hook", + Description: "This command should only be called by Git", + Action: runHookUpdate, + } + subcmdHookPostReceive = cli.Command{ + Name: "post-receive", + Usage: "Delegate post-receive Git hook", + Description: "This command should only be called by Git", + Action: runHookPostReceive, + } +) + +func runHookPreReceive(c *cli.Context) error { + if len(os.Getenv("SSH_ORIGINAL_COMMAND")) == 0 { + return nil + } + setup(c, "hooks/pre-receive.log") + + buf := bytes.NewBuffer(nil) + scanner := bufio.NewScanner(os.Stdin) + for scanner.Scan() { + buf.Write(scanner.Bytes()) + buf.WriteByte('\n') + } + + customHooksPath := os.Getenv(_ENV_REPO_CUSTOM_HOOKS_PATH) + hookCmd := exec.Command(filepath.Join(customHooksPath, "pre-receive")) + hookCmd.Stdout = os.Stdout + hookCmd.Stdin = buf + hookCmd.Stderr = os.Stderr + if err := hookCmd.Run(); err != nil { + fail("Internal error", "Fail to execute custom pre-receive hook: %v", err) + } + return nil +} + +func runHookUpdate(c *cli.Context) error { + if len(os.Getenv("SSH_ORIGINAL_COMMAND")) == 0 { + return nil + } + setup(c, "hooks/update.log") + + args := c.Args() + if len(args) != 3 { + fail("Arguments received are not equal to three", "Arguments received are not equal to three") + } else if len(args[0]) == 0 { + fail("First argument 'refName' is empty", "First argument 'refName' is empty") + } + + uuid := os.Getenv(_ENV_UPDATE_TASK_UUID) + if err := models.AddUpdateTask(&models.UpdateTask{ + UUID: uuid, + RefName: args[0], + OldCommitID: args[1], + NewCommitID: args[2], + }); err != nil { + fail("Internal error", "Fail to add update task '%s': %v", uuid, err) + } + + customHooksPath := os.Getenv(_ENV_REPO_CUSTOM_HOOKS_PATH) + hookCmd := exec.Command(filepath.Join(customHooksPath, "update"), args...) + hookCmd.Stdout = os.Stdout + hookCmd.Stdin = os.Stdin + hookCmd.Stderr = os.Stderr + if err := hookCmd.Run(); err != nil { + fail("Internal error", "Fail to execute custom pre-receive hook: %v", err) + } + return nil +} + +func runHookPostReceive(c *cli.Context) error { + if len(os.Getenv("SSH_ORIGINAL_COMMAND")) == 0 { + return nil + } + setup(c, "hooks/post-receive.log") + + customHooksPath := os.Getenv(_ENV_REPO_CUSTOM_HOOKS_PATH) + hookCmd := exec.Command(filepath.Join(customHooksPath, "post-receive")) + hookCmd.Stdout = os.Stdout + hookCmd.Stdin = os.Stdin + hookCmd.Stderr = os.Stderr + if err := hookCmd.Run(); err != nil { + fail("Internal error", "Fail to execute custom post-receive hook: %v", err) + } + return nil +} diff --git a/cmd/serve.go b/cmd/serv.go similarity index 75% rename from cmd/serve.go rename to cmd/serv.go index ef9b451d..b15f4e41 100644 --- a/cmd/serve.go +++ b/cmd/serv.go @@ -14,7 +14,7 @@ import ( "time" "github.com/Unknwon/com" - git "github.com/gogits/git-module" + "github.com/gogits/git-module" gouuid "github.com/satori/go.uuid" "github.com/urfave/cli" log "gopkg.in/clog.v1" @@ -26,10 +26,12 @@ import ( ) const ( - _ACCESS_DENIED_MESSAGE = "Repository does not exist or you do not have access" + _ACCESS_DENIED_MESSAGE = "Repository does not exist or you do not have access" + _ENV_UPDATE_TASK_UUID = "UPDATE_TASK_UUID" + _ENV_REPO_CUSTOM_HOOKS_PATH = "REPO_CUSTOM_HOOKS_PATH" ) -var CmdServ = cli.Command{ +var Serv = cli.Command{ Name: "serv", Usage: "This command should only be called by SSH shell", Description: `Serv provide access auth for repositories`, @@ -39,7 +41,13 @@ var CmdServ = cli.Command{ }, } -func setup(logPath string) { +func setup(c *cli.Context, logPath string) { + if c.IsSet("config") { + setting.CustomConf = c.String("config") + } else if c.GlobalIsSet("config") { + setting.CustomConf = c.GlobalString("config") + } + setting.NewContext() setting.NewService() log.New(log.FILE, log.FileConfig{ @@ -54,7 +62,7 @@ func setup(logPath string) { models.LoadConfigs() - if setting.UseSQLite3 || setting.UseTiDB { + if setting.UseSQLite3 { workDir, _ := setting.WorkDir() os.Chdir(workDir) } @@ -62,7 +70,7 @@ func setup(logPath string) { models.SetEngine() } -func parseCmd(cmd string) (string, string) { +func parseSSHCmd(cmd string) (string, string) { ss := strings.SplitN(cmd, " ", 2) if len(ss) != 2 { return "", "" @@ -157,11 +165,7 @@ func handleUpdateTask(uuid string, user, repoUser *models.User, reponame string, } func runServ(c *cli.Context) error { - if c.IsSet("config") { - setting.CustomConf = c.String("config") - } - - setup("serv.log") + setup(c, "serv.log") if setting.SSH.Disabled { println("Gogs: SSH has been disabled") @@ -172,21 +176,21 @@ func runServ(c *cli.Context) error { fail("Not enough arguments", "Not enough arguments") } - cmd := os.Getenv("SSH_ORIGINAL_COMMAND") - if len(cmd) == 0 { + sshCmd := os.Getenv("SSH_ORIGINAL_COMMAND") + if len(sshCmd) == 0 { println("Hi there, You've successfully authenticated, but Gogs does not provide shell access.") println("If this is unexpected, please log in with password and setup Gogs under another user.") return nil } - verb, args := parseCmd(cmd) - repoPath := strings.ToLower(strings.Trim(args, "'")) - rr := strings.SplitN(repoPath, "/", 2) - if len(rr) != 2 { + verb, args := parseSSHCmd(sshCmd) + repoFullName := strings.ToLower(strings.Trim(args, "'")) + repoFields := strings.SplitN(repoFullName, "/", 2) + if len(repoFields) != 2 { fail("Invalid repository path", "Invalid repository path: %v", args) } - username := strings.ToLower(rr[0]) - reponame := strings.ToLower(strings.TrimSuffix(rr[1], ".git")) + username := strings.ToLower(repoFields[0]) + reponame := strings.ToLower(strings.TrimSuffix(repoFields[1], ".git")) isWiki := false if strings.HasSuffix(reponame, ".wiki") { @@ -194,29 +198,30 @@ func runServ(c *cli.Context) error { reponame = reponame[:len(reponame)-5] } - repoUser, err := models.GetUserByName(username) + repoOwner, err := models.GetUserByName(username) if err != nil { if models.IsErrUserNotExist(err) { fail("Repository owner does not exist", "Unregistered owner: %s", username) } - fail("Internal error", "Failed to get repository owner (%s): %v", username, err) + fail("Internal error", "Fail to get repository owner '%s': %v", username, err) } - repo, err := models.GetRepositoryByName(repoUser.ID, reponame) + repo, err := models.GetRepositoryByName(repoOwner.ID, reponame) if err != nil { if models.IsErrRepoNotExist(err) { - fail(_ACCESS_DENIED_MESSAGE, "Repository does not exist: %s/%s", repoUser.Name, reponame) + fail(_ACCESS_DENIED_MESSAGE, "Repository does not exist: %s/%s", repoOwner.Name, reponame) } - fail("Internal error", "Failed to get repository: %v", err) + fail("Internal error", "Fail to get repository: %v", err) } + repo.Owner = repoOwner - requestedMode, has := allowedCommands[verb] - if !has { - fail("Unknown git command", "Unknown git command %s", verb) + requestMode, ok := allowedCommands[verb] + if !ok { + fail("Unknown git command", "Unknown git command '%s'", verb) } // Prohibit push to mirror repositories. - if requestedMode > models.ACCESS_MODE_READ && repo.IsMirror { + if requestMode > models.ACCESS_MODE_READ && repo.IsMirror { fail("mirror repository is read-only", "") } @@ -225,33 +230,35 @@ func runServ(c *cli.Context) error { key, err := models.GetPublicKeyByID(com.StrTo(strings.TrimPrefix(c.Args()[0], "key-")).MustInt64()) if err != nil { - fail("Invalid key ID", "Invalid key ID [%s]: %v", c.Args()[0], err) + fail("Invalid key ID", "Invalid key ID '%s': %v", c.Args()[0], err) } - if requestedMode == models.ACCESS_MODE_WRITE || repo.IsPrivate { + if requestMode == models.ACCESS_MODE_WRITE || repo.IsPrivate { // Check deploy key or user key. if key.IsDeployKey() { - if key.Mode < requestedMode { + if key.Mode < requestMode { fail("Key permission denied", "Cannot push with deployment key: %d", key.ID) } checkDeployKey(key, repo) } else { user, err = models.GetUserByKeyID(key.ID) if err != nil { - fail("internal error", "Failed to get user by key ID(%d): %v", key.ID, err) + fail("Internal error", "Fail to get user by key ID '%d': %v", key.ID, err) } mode, err := models.AccessLevel(user, repo) if err != nil { fail("Internal error", "Fail to check access: %v", err) - } else if mode < requestedMode { + } + + if mode < requestMode { clientMessage := _ACCESS_DENIED_MESSAGE if mode >= models.ACCESS_MODE_READ { clientMessage = "You do not have sufficient authorization for this action" } fail(clientMessage, - "User %s does not have level %v access to repository %s", - user.Name, requestedMode, repoPath) + "User '%s' does not have level '%v' access to repository '%s'", + user.Name, requestMode, repoFullName) } } } else { @@ -265,30 +272,31 @@ func runServ(c *cli.Context) error { } uuid := gouuid.NewV4().String() - os.Setenv("uuid", uuid) + os.Setenv(_ENV_UPDATE_TASK_UUID, uuid) + os.Setenv(_ENV_REPO_CUSTOM_HOOKS_PATH, filepath.Join(repo.RepoPath(), "custom_hooks")) // Special handle for Windows. if setting.IsWindows { verb = strings.Replace(verb, "-", " ", 1) } - var gitcmd *exec.Cmd + var gitCmd *exec.Cmd verbs := strings.Split(verb, " ") if len(verbs) == 2 { - gitcmd = exec.Command(verbs[0], verbs[1], repoPath) + gitCmd = exec.Command(verbs[0], verbs[1], repoFullName) } else { - gitcmd = exec.Command(verb, repoPath) + gitCmd = exec.Command(verb, repoFullName) } - gitcmd.Dir = setting.RepoRootPath - gitcmd.Stdout = os.Stdout - gitcmd.Stdin = os.Stdin - gitcmd.Stderr = os.Stderr - if err = gitcmd.Run(); err != nil { - fail("Internal error", "Failed to execute git command: %v", err) + gitCmd.Dir = setting.RepoRootPath + gitCmd.Stdout = os.Stdout + gitCmd.Stdin = os.Stdin + gitCmd.Stderr = os.Stderr + if err = gitCmd.Run(); err != nil { + fail("Internal error", "Fail to execute git command: %v", err) } - if requestedMode == models.ACCESS_MODE_WRITE { - handleUpdateTask(uuid, user, repoUser, reponame, isWiki) + if requestMode == models.ACCESS_MODE_WRITE { + handleUpdateTask(uuid, user, repoOwner, reponame, isWiki) } // Update user key activity. diff --git a/cmd/update.go b/cmd/update.go deleted file mode 100644 index da7f3093..00000000 --- a/cmd/update.go +++ /dev/null @@ -1,58 +0,0 @@ -// Copyright 2014 The Gogs Authors. All rights reserved. -// Use of this source code is governed by a MIT-style -// license that can be found in the LICENSE file. - -package cmd - -import ( - "os" - - "github.com/urfave/cli" - log "gopkg.in/clog.v1" - - "github.com/gogits/gogs/models" - "github.com/gogits/gogs/modules/setting" -) - -var CmdUpdate = cli.Command{ - Name: "update", - Usage: "This command should only be called by Git hook", - Description: `Update get pushed info and insert into database`, - Action: runUpdate, - Flags: []cli.Flag{ - stringFlag("config, c", "custom/conf/app.ini", "Custom configuration file path"), - }, -} - -func runUpdate(c *cli.Context) error { - if c.IsSet("config") { - setting.CustomConf = c.String("config") - } - - setup("update.log") - - if len(os.Getenv("SSH_ORIGINAL_COMMAND")) == 0 { - log.Trace("SSH_ORIGINAL_COMMAND is empty") - return nil - } - - args := c.Args() - if len(args) != 3 { - log.Fatal(2, "Arguments received are not equal to three") - } else if len(args[0]) == 0 { - log.Fatal(2, "First argument 'refName' is empty, shouldn't use") - } - - task := models.UpdateTask{ - UUID: os.Getenv("uuid"), - RefName: args[0], - OldCommitID: args[1], - NewCommitID: args[2], - } - - if err := models.AddUpdateTask(&task); err != nil { - log.Fatal(2, "AddUpdateTask: %v", err) - } - - return nil -} diff --git a/cmd/web.go b/cmd/web.go index b0277c25..6f8049a3 100644 --- a/cmd/web.go +++ b/cmd/web.go @@ -84,6 +84,7 @@ func checkVersion() { } // Check dependency version. + // LEGACY [0.11]: no need to check version as we check in vendor into version control checkers := []VerChecker{ {"github.com/go-xorm/xorm", func() string { return xorm.Version }, "0.6.0"}, {"github.com/go-macaron/binding", binding.Version, "0.3.2"}, @@ -94,7 +95,7 @@ func checkVersion() { {"github.com/go-macaron/toolbox", toolbox.Version, "0.1.0"}, {"gopkg.in/ini.v1", ini.Version, "1.8.4"}, {"gopkg.in/macaron.v1", macaron.Version, "1.1.7"}, - {"github.com/gogits/git-module", git.Version, "0.4.6"}, + {"github.com/gogits/git-module", git.Version, "0.4.7"}, {"github.com/gogits/go-gogs-client", gogs.Version, "0.12.1"}, } for _, c := range checkers { diff --git a/conf/locale/locale_en-US.ini b/conf/locale/locale_en-US.ini index 10ba89a5..28c60b4f 100644 --- a/conf/locale/locale_en-US.ini +++ b/conf/locale/locale_en-US.ini @@ -918,8 +918,8 @@ dashboard.git_gc_repos = Do garbage collection on repositories dashboard.git_gc_repos_success = All repositories have done garbage collection successfully. dashboard.resync_all_sshkeys = Rewrite '.ssh/authorized_keys' file (caution: non-Gogs keys will be lost) dashboard.resync_all_sshkeys_success = All public keys have been rewritten successfully. -dashboard.resync_all_update_hooks = Rewrite all update hook of repositories (needed when custom config path is changed) -dashboard.resync_all_update_hooks_success = All repositories' update hook have been rewritten successfully. +dashboard.resync_all_hooks = Resync pre-receive, update and post-receive hooks of all repositories. +dashboard.resync_all_hooks_success = All repositories' pre-receive, update and post-receive hooks have been resynced successfully. dashboard.reinit_missing_repos = Reinitialize all repository records that lost Git files dashboard.reinit_missing_repos_success = All repository records that lost Git files have been reinitialized successfully. diff --git a/gogs.go b/gogs.go index ccd83f8e..4661bccb 100644 --- a/gogs.go +++ b/gogs.go @@ -16,7 +16,7 @@ import ( "github.com/gogits/gogs/modules/setting" ) -const APP_VER = "0.9.146.0214" +const APP_VER = "0.9.147.0214" func init() { setting.AppVer = APP_VER @@ -29,8 +29,8 @@ func main() { app.Version = APP_VER app.Commands = []cli.Command{ cmd.CmdWeb, - cmd.CmdServ, - cmd.CmdUpdate, + cmd.Serv, + cmd.CmdHook, cmd.CmdDump, cmd.CmdCert, cmd.CmdAdmin, diff --git a/models/action.go b/models/action.go index 0f828b99..37103523 100644 --- a/models/action.go +++ b/models/action.go @@ -468,7 +468,7 @@ func CommitRepoAction(opts CommitRepoActionOptions) error { } if err = UpdateIssuesCommit(pusher, repo, opts.Commits.Commits); err != nil { - log.Error(4, "updateIssuesCommit: %v", err) + log.Error(4, "UpdateIssuesCommit: %v", err) } } diff --git a/models/migrations/migrations.go b/models/migrations/migrations.go index cf3785c6..d58a800d 100644 --- a/models/migrations/migrations.go +++ b/models/migrations/migrations.go @@ -72,6 +72,8 @@ var migrations = []Migration{ // v13 -> v14:v0.9.87 NewMigration("set comment updated with created", setCommentUpdatedWithCreated), + // v14 -> v15:v0.9.147 + NewMigration("generate and migrate Git hooks", generateAndMigrateGitHooks), } // Migrate database to current version diff --git a/models/migrations/v15.go b/models/migrations/v15.go new file mode 100644 index 00000000..0603dbbb --- /dev/null +++ b/models/migrations/v15.go @@ -0,0 +1,82 @@ +// Copyright 2017 The Gogs Authors. All rights reserved. +// Use of this source code is governed by a MIT-style +// license that can be found in the LICENSE file. + +package migrations + +import ( + "fmt" + "io/ioutil" + "os" + "path/filepath" + "strings" + + "github.com/Unknwon/com" + "github.com/go-xorm/xorm" + + "github.com/gogits/gogs/modules/setting" +) + +func generateAndMigrateGitHooks(x *xorm.Engine) (err error) { + type Repository struct { + ID int64 + OwnerID int64 + Name string + } + type User struct { + ID int64 + Name string + } + var ( + hookNames = []string{"pre-receive", "update", "post-receive"} + hookTpls = []string{ + fmt.Sprintf("#!/usr/bin/env %s\n\"%s\" hook --config='%s' pre-receive\n", setting.ScriptType, setting.AppPath, setting.CustomConf), + fmt.Sprintf("#!/usr/bin/env %s\n\"%s\" hook --config='%s' update $1 $2 $3\n", setting.ScriptType, setting.AppPath, setting.CustomConf), + fmt.Sprintf("#!/usr/bin/env %s\n\"%s\" hook --config='%s' post-receive\n", setting.ScriptType, setting.AppPath, setting.CustomConf), + } + ) + + // Cleanup old update.log files. + filepath.Walk(setting.LogRootPath, func(path string, info os.FileInfo, err error) error { + if !info.IsDir() && strings.HasPrefix(filepath.Base(path), "update.log") { + os.Remove(path) + } + return nil + }) + + return x.Where("id > 0").Iterate(new(Repository), + func(idx int, bean interface{}) error { + repo := bean.(*Repository) + user := new(User) + has, err := x.Where("id = ?", repo.OwnerID).Get(user) + if err != nil { + return fmt.Errorf("query owner of repository [repo_id: %d, owner_id: %d]: %v", repo.ID, repo.OwnerID, err) + } else if !has { + return nil + } + + repoPath := filepath.Join(setting.RepoRootPath, strings.ToLower(user.Name), strings.ToLower(repo.Name)) + ".git" + hookDir := filepath.Join(repoPath, "hooks") + customHookDir := filepath.Join(repoPath, "custom_hooks") + + for i, hookName := range hookNames { + oldHookPath := filepath.Join(hookDir, hookName) + newHookPath := filepath.Join(customHookDir, hookName) + + // Gogs didn't allow user to set custom update hook thus no migration for it. + // In case user runs this migration multiple times, and custom hook exists, + // we assume it's been migrated already. + if hookName != "update" && com.IsFile(oldHookPath) && !com.IsExist(newHookPath) { + os.MkdirAll(customHookDir, os.ModePerm) + if err = os.Rename(oldHookPath, newHookPath); err != nil { + return fmt.Errorf("move hook file to custom directory '%s' -> '%s': %v", oldHookPath, newHookPath, err) + } + } + + if err = ioutil.WriteFile(oldHookPath, []byte(hookTpls[i]), 0777); err != nil { + return fmt.Errorf("write hook file '%s': %v", oldHookPath, err) + } + } + return nil + }) +} diff --git a/models/models.go b/models/models.go index 7ebeac9b..7b32f8bd 100644 --- a/models/models.go +++ b/models/models.go @@ -88,8 +88,6 @@ func LoadConfigs() { setting.UsePostgreSQL = true case "mssql": setting.UseMSSQL = true - case "tidb": - setting.UseTiDB = true } DbCfg.Host = sec.Key("HOST").String() DbCfg.Name = sec.Key("NAME").String() diff --git a/models/repo.go b/models/repo.go index b24001e8..ba4dc6d3 100644 --- a/models/repo.go +++ b/models/repo.go @@ -36,10 +36,6 @@ import ( "github.com/gogits/gogs/modules/sync" ) -const ( - _TPL_UPDATE_HOOK = "#!/usr/bin/env %s\n%s update $1 $2 $3 --config='%s'\n" -) - var repoWorkingPool = sync.NewExclusivePool() var ( @@ -125,6 +121,7 @@ func NewRepoContext() { if version.Compare("1.7.1", setting.Git.Version, ">") { log.Fatal(4, "Gogs requires Git version greater or equal to 1.7.1") } + git.HookDir = "custom_hooks" // Git requires setting user.name and user.email in order to commit changes. for configKey, defaultValue := range map[string]string{"user.name": "Gogs", "user.email": "gogs@fake.local"} { @@ -715,20 +712,33 @@ func cleanUpMigrateGitConfig(configPath string) error { return nil } -func createUpdateHook(repoPath string) error { - return git.SetUpdateHook(repoPath, - fmt.Sprintf(_TPL_UPDATE_HOOK, setting.ScriptType, "\""+setting.AppPath+"\"", setting.CustomConf)) +var hooksTpls = map[string]string{ + "pre-receive": "#!/usr/bin/env %s\n\"%s\" hook --config='%s' pre-receive\n", + "update": "#!/usr/bin/env %s\n\"%s\" hook --config='%s' update $1 $2 $3\n", + "post-receive": "#!/usr/bin/env %s\n\"%s\" hook --config='%s' post-receive\n", +} + +func createDelegateHooks(repoPath string) (err error) { + for _, name := range git.HookNames { + hookPath := filepath.Join(repoPath, "hooks", name) + if err = ioutil.WriteFile(hookPath, + []byte(fmt.Sprintf(hooksTpls[name], setting.ScriptType, setting.AppPath, setting.CustomConf)), + os.ModePerm); err != nil { + return fmt.Errorf("create delegate hook '%s': %v", hookPath, err) + } + } + return nil } // Finish migrating repository and/or wiki with things that don't need to be done for mirrors. func CleanUpMigrateInfo(repo *Repository) (*Repository, error) { repoPath := repo.RepoPath() - if err := createUpdateHook(repoPath); err != nil { - return repo, fmt.Errorf("createUpdateHook: %v", err) + if err := createDelegateHooks(repoPath); err != nil { + return repo, fmt.Errorf("createDelegateHooks: %v", err) } if repo.HasWiki() { - if err := createUpdateHook(repo.WikiPath()); err != nil { - return repo, fmt.Errorf("createUpdateHook (wiki): %v", err) + if err := createDelegateHooks(repo.WikiPath()); err != nil { + return repo, fmt.Errorf("createDelegateHooks.(wiki): %v", err) } } @@ -737,7 +747,7 @@ func CleanUpMigrateInfo(repo *Repository) (*Repository, error) { } if repo.HasWiki() { if err := cleanUpMigrateGitConfig(path.Join(repo.WikiPath(), "config")); err != nil { - return repo, fmt.Errorf("cleanUpMigrateGitConfig (wiki): %v", err) + return repo, fmt.Errorf("cleanUpMigrateGitConfig.(wiki): %v", err) } } @@ -862,8 +872,8 @@ func initRepository(e Engine, repoPath string, u *User, repo *Repository, opts C // Init bare new repository. if err = git.InitRepository(repoPath, true); err != nil { return fmt.Errorf("InitRepository: %v", err) - } else if err = createUpdateHook(repoPath); err != nil { - return fmt.Errorf("createUpdateHook: %v", err) + } else if err = createDelegateHooks(repoPath); err != nil { + return fmt.Errorf("createDelegateHooks: %v", err) } tmpDir := filepath.Join(os.TempDir(), "gogs-"+repo.Name+"-"+com.ToStr(time.Now().Nanosecond())) @@ -1648,12 +1658,12 @@ func ReinitMissingRepositories() error { return nil } -// RewriteRepositoryUpdateHook rewrites all repositories' update hook. -func RewriteRepositoryUpdateHook() error { +// SyncRepositoryHooks rewrites all repositories' pre-receive, update and post-receive hooks +// to make sure the binary and custom conf path are up-to-date. +func SyncRepositoryHooks() error { return x.Where("id > 0").Iterate(new(Repository), func(idx int, bean interface{}) error { - repo := bean.(*Repository) - return createUpdateHook(repo.RepoPath()) + return createDelegateHooks(bean.(*Repository).RepoPath()) }) } @@ -2098,21 +2108,21 @@ func ForkRepository(u *User, oldRepo *Repository, name, desc string) (_ *Reposit repoPath := RepoPath(u.Name, repo.Name) _, stderr, err := process.ExecTimeout(10*time.Minute, - fmt.Sprintf("ForkRepository(git clone): %s/%s", u.Name, repo.Name), + fmt.Sprintf("ForkRepository 'git clone': %s/%s", u.Name, repo.Name), "git", "clone", "--bare", oldRepo.RepoPath(), repoPath) if err != nil { return nil, fmt.Errorf("git clone: %v", stderr) } _, stderr, err = process.ExecDir(-1, - repoPath, fmt.Sprintf("ForkRepository(git update-server-info): %s", repoPath), + repoPath, fmt.Sprintf("ForkRepository 'git update-server-info': %s", repoPath), "git", "update-server-info") if err != nil { return nil, fmt.Errorf("git update-server-info: %v", err) } - if err = createUpdateHook(repoPath); err != nil { - return nil, fmt.Errorf("createUpdateHook: %v", err) + if err = createDelegateHooks(repoPath); err != nil { + return nil, fmt.Errorf("createDelegateHooks: %v", err) } return repo, sess.Commit() diff --git a/models/wiki.go b/models/wiki.go index bc8aaf66..7547d552 100644 --- a/models/wiki.go +++ b/models/wiki.go @@ -64,8 +64,8 @@ func (repo *Repository) InitWiki() error { if err := git.InitRepository(repo.WikiPath(), true); err != nil { return fmt.Errorf("InitRepository: %v", err) - } else if err = createUpdateHook(repo.WikiPath()); err != nil { - return fmt.Errorf("createUpdateHook: %v", err) + } else if err = createDelegateHooks(repo.WikiPath()); err != nil { + return fmt.Errorf("createDelegateHooks: %v", err) } return nil } diff --git a/modules/bindata/bindata.go b/modules/bindata/bindata.go index 242224f0..2fd4d1ba 100644 --- a/modules/bindata/bindata.go +++ b/modules/bindata/bindata.go @@ -4371,7 +4371,7 @@ func confLocaleLocale_deDeIni() (*asset, error) { return a, nil } -var _confLocaleLocale_enUsIni = []byte("\x1f\x8b\x08\x00\x00\x09\x6e\x88\x00\xff\xac\xbd\xeb\x72\x1c\xb9\xb1\x30\xf8\xbf\x9e\x02\xd6\x09\x86\x66\x22\xa8\x9e\x18\xfb\xfb\x76\x37\x26\x46\xe3\xe5\x50\xa3\xcb\x39\x94\xc4\x23\x52\xf6\x7a\x15\x8a\x1a\x74\x15\xba\x1b\x66\x35\x50\x2e\xa0\xd8\xea\x71\x38\x62\x1f\x60\x1f\x60\xf7\xf5\xce\x93\x7c\x91\x17\xdc\xaa\xaa\x29\xc9\x3e\x7f\xc8\x2e\x20\x91\xb8\x27\x32\x13\x89\x4c\xd9\xf7\x75\xab\x5c\x23\x9e\x8a\x0b\xd1\x4b\x6d\x3a\xe5\x9c\x70\xaa\xdb\x3c\xd9\x59\xe7\x55\x2b\x5e\x68\x2f\x9c\x1a\xee\x75\xa3\xaa\x6a\x67\xf7\x4a\x3c\x15\x2f\xed\x5e\x55\xad\x74\xbb\xb5\x95\x43\x2b\x9e\x8a\x67\xe1\x77\xa5\x3e\xf5\x9d\x1d\x00\xe8\x17\xfa\x55\xed\x54\xd7\x43\x19\xd5\xf5\x95\xd3\x5b\x53\x6b\x23\x9e\x8a\x1b\xbd\x35\xe2\x95\xa1\x14\x3b\xfa\x90\xf4\x76\xf4\x94\x36\xf6\x21\xe9\x7d\x5f\x0d\x6a\xab\x9d\x57\x83\x78\x2a\xde\xf1\xcf\xea\xa0\xd6\x4e\x7b\xa8\xe9\xcf\xf4\xab\xba\x57\x83\xd3\x16\xb0\xff\x89\x7e\x55\xbd\xdc\x02\xc0\xb5\xdc\xaa\xca\xab\x7d\xdf\x49\x2c\x70\xcb\x3f\xab\x4e\x9a\xed\x48\x30\x57\xfc\xb3\x6a\x06\x25\xbd\xaa\x8d\x3a\x88\xa7\xe2\x12\x3f\x56\xab\x55\x35\x3a\x35\xd4\xfd\x60\x37\xba\x53\xb5\x34\x6d\xbd\xa7\x6e\xbe\x77\x6a\x10\x9c\x2e\xa4\x69\x05\xa4\x63\x17\x54\x5b\x6b\x53\x4b\xc7\xfd\x50\xad\xd0\x46\x48\x57\x21\x2a\x23\xf7\xa1\x34\xfc\xac\xd4\x5e\xea\x0e\x46\x0d\xfe\x57\xbd\x74\xee\x60\x71\x68\xaf\xf9\x67\x35\xa8\xda\x1f\x7b\x85\x43\xf0\xe4\xf6\xd8\xab\xaa\x91\xbd\x6f\x76\x12\x9a\x49\xbf\xaa\x6a\x50\xbd\x75\xda\xdb\xe1\x88\x70\xe1\xa3\xb2\xc3\x56\x1a\xfd\x9b\xf4\x34\x3e\x6f\xb3\xcf\x6a\xaf\x87\xc1\xc2\xd0\xbe\xc6\x1f\x95\x51\x87\x1a\xf0\x88\xa7\xe2\x8d\x3a\xe4\x58\x20\x67\xaf\xb7\x03\x8d\x22\x64\xbe\xc6\x2f\xc0\x42\x79\x8c\x89\xb2\x22\xb6\x8d\x1d\xee\x38\xf5\x39\xfc\x9c\xa0\xb4\xc3\x96\x73\xcb\x76\x49\x23\xb7\x8a\x73\x5f\xe3\x47\x01\xe0\x2a\xd9\xee\xb5\xa9\x7b\x69\x14\x0c\xdd\x05\x7c\x89\x6b\xf8\xaa\x64\xd3\xd8\xd1\xf8\xda\x29\xef\xb5\xd9\xc2\x1c\x5c\x50\x92\xb8\xe1\xa4\x2a\xcb\x8b\x69\x47\x3b\xc6\x59\x16\x4f\xc5\x5f\xec\x38\x88\x6b\xfa\xa4\xbc\xac\x10\x66\xc6\x92\x95\x6c\xbc\xbe\xd7\x5e\x2b\xaa\x2c\x7c\x54\xfd\xd8\x75\xf5\xa0\xfe\x36\x2a\xe7\x21\xeb\x7a\xec\x3a\xf1\x8e\xbf\x2b\xed\xdc\x88\x25\x5e\xe1\x8f\xaa\x6a\xa4\x69\xb0\x3b\x97\xf8\xa3\xaa\x3e\x68\xe3\xbc\xec\xba\x8f\x15\xff\x00\x60\xfa\x45\xe3\xe4\xb5\xc7\xc6\x72\xa2\xb8\xf1\xaa\x77\x30\xd0\xe2\xb9\x1e\x9c\x7f\xe2\xf5\x5e\x89\x77\xa3\xa9\x5a\xdb\xdc\xa9\xa1\x86\x0d\x89\x5b\xe9\xd5\x46\x1c\xed\xf8\x78\x50\x62\x18\x8d\xd1\x66\x2b\x5e\xd8\xad\x13\xda\x38\xdd\x2a\xf1\x0c\xa1\xcf\x45\xdf\x29\xe9\x94\x18\x94\x6c\xc5\x8f\x52\x78\x39\x6c\x95\x7f\xfa\xa8\x5e\x77\xd2\xdc\x3d\x12\xbb\x41\x6d\x9e\x3e\x3a\x73\x8f\x7e\x7a\x31\xea\x56\x75\xda\x28\xf7\xe3\x77\xf2\x27\xd1\xc8\x41\x6d\xc6\xae\x3b\x8a\xb5\xda\xc0\x5e\x39\xda\x51\x34\x3b\x69\xb6\xb0\x4f\x8e\x7e\x07\x15\x6a\x23\xfc\x4e\x3b\x01\x1b\xf5\x77\x15\x8c\x92\xf6\xaa\x6e\xd7\x81\x28\x61\x83\x30\x79\x50\x4e\xbc\x3e\xde\xfc\xe7\xd5\xb9\xb8\xb6\xce\x6f\x07\x85\xbf\x6f\xfe\xf3\x4a\x7b\xf5\x07\x61\x07\x71\xab\x9f\xfd\xbc\xaa\xda\x75\x1d\x06\xe4\x99\xf4\x72\x0d\x6d\x8f\x93\x04\x99\xb4\x87\x62\x1e\xee\x24\xa0\x75\x48\xd7\x9c\xc7\xdd\xc9\x3b\x73\x71\x1f\xb6\xeb\x9a\x37\x6f\xc4\xf1\x06\x76\x70\xbb\x4e\x23\x7b\x4d\x63\x36\x3a\x25\x5e\xbd\x79\xf3\xf6\xd9\xcf\x42\x99\xad\x36\x4a\x1c\xb4\xdf\x89\xd1\x6f\xfe\x8f\x7a\xab\x8c\x1a\x64\x57\x37\x1a\x06\x65\x70\xca\x8b\x8d\x1d\xa8\x8b\xab\xca\xb9\xae\xde\xdb\x16\x6a\xb9\xb9\xb9\x12\xaf\x6d\xab\xaa\x5e\xfa\x1d\x36\xc4\xef\x2a\xf7\xb7\x0e\x06\x2a\x56\x78\xbb\x53\x02\xd7\x2c\x02\xd9\xcd\x74\x5c\x44\xcb\x6d\x5d\x89\x1f\xd7\xc3\x4f\x59\xfb\xe4\xda\xd9\x6e\xf4\x5c\xf2\xb0\x53\x06\x27\xca\x79\x39\x78\x21\x5d\xa0\xfd\xab\x4a\x0d\x43\xad\xf6\xbd\x3f\xc2\xf4\x70\x5b\x4e\xd5\x42\xc8\x1a\x69\x8c\xf5\x62\xad\x04\x96\x23\x14\xda\xdc\xcb\x4e\xb7\xb5\xd7\x69\x20\xcb\xb2\x98\xd8\x5a\xe5\x04\x94\x96\x5d\x67\x0f\x38\x44\xb2\xf1\x6a\x70\xe2\xd1\xea\x11\xd2\xd9\x47\x4f\x1e\xad\x2a\x63\x6b\x22\x02\x40\x91\x5b\xed\xe4\xba\x53\x35\x9d\x16\x43\x20\x76\x7f\x81\x75\x47\x4d\x61\x08\x51\x40\xc0\x9c\xc0\x09\x84\x84\x1f\x16\xa5\x34\x02\x91\x0a\xa6\x22\x79\xdf\x03\xc9\x89\xeb\x82\xa8\x4e\x4c\x98\xf5\xb9\x0a\x13\x1d\x56\xe5\x45\xdf\x77\xba\xa1\xaa\x5f\x50\x5e\x5a\xa0\x70\x1e\xf3\xa0\xe4\x70\xb8\xc0\x42\x5e\xb6\xcc\x46\x0f\x93\x35\x88\x82\xbc\x63\xf9\x9d\x1a\x94\xd8\x8d\x5b\x3a\x93\x3a\x3b\xb6\xbf\xc3\xc3\x21\xcc\x5c\x22\xc1\xe2\x9d\xb5\x9e\x56\x55\x04\x48\x55\x5c\x74\x1d\xb2\x00\x83\xda\x5b\x0f\x03\xc7\xc5\x80\xcc\x1d\x74\xd7\x41\x4f\x9d\xbc\x57\xad\xf0\x96\xb6\x72\xab\x07\xd5\x00\xe2\x55\x35\x8c\xa6\xe6\xed\xf4\x6e\x34\xb4\xa5\x42\x5a\xb9\x76\x11\x6a\x3f\x3a\x2f\x76\xf2\x5e\xc1\xc0\x03\x1f\xe2\xed\x62\x3b\xb1\x4b\xc3\x68\x90\x3a\xac\xaa\xd6\xee\x25\xf2\x14\xcf\xf0\x07\x7f\xe7\xf8\xb5\x13\x72\xb3\x51\x8d\x77\xe2\xe6\xe6\xa5\x68\x3a\x6b\x94\x78\xff\xee\xca\xc1\x46\xdb\xd5\xbd\x1d\x90\xff\xb8\x79\x29\xae\xed\xe0\x63\x5a\x36\xd0\x00\x61\xc6\xfd\x5a\x0d\xe2\xb0\xd3\xcd\x8e\x86\x1d\x4a\xc0\xfe\x50\x83\xd0\x4e\x8c\x4e\x9b\xed\xb9\xe8\x14\xf4\x40\x7b\x5a\x00\xd0\x87\xb0\xea\x00\x7c\xa3\xa4\x1f\x07\xb5\xaa\x76\xde\xf7\xa1\xe6\x97\xb7\xb7\xd7\x54\x75\x4c\x7d\xa8\x6e\x99\xad\x0c\x9c\x83\x0e\x38\x22\x23\xac\x59\xe1\x22\x19\x87\x6e\xb2\x7e\xde\xbf\xbb\x0a\x39\x27\xc6\x05\x9a\xf0\x1d\xfc\xb9\x49\xc3\x83\xe3\xec\xec\x5e\x1d\x70\x35\x69\x23\x90\x4b\x59\x55\x9d\xdd\xd6\x83\xb5\x3e\x2c\xa6\x2b\xbb\xa5\x05\x54\x64\xa4\x9a\x9e\x85\x25\x01\xa3\x71\x18\x80\x6b\xeb\xec\x16\x09\x16\x4c\xf2\xaa\xaa\x6c\x0f\xed\xcc\x76\xc9\x5b\x4e\x48\x5b\x03\xeb\x8e\xf9\xc8\x27\x89\x1b\x22\x4e\xd9\x99\xbe\xf7\x7d\xcd\xd4\xfc\xe6\xf5\xed\x35\x91\x74\x4c\xdd\x0c\x76\x2f\x9e\x8a\xe7\x83\xdd\xa7\x84\xd4\xc6\xd7\x80\x0f\x61\x64\xdb\x0e\xca\xb9\x73\xf1\xee\xf9\xa5\xf8\x9f\x7f\xf8\xfd\xef\x57\xe2\x95\x87\x8d\x0d\x6b\xfd\xaf\xb0\x46\x25\x8f\x44\x02\xb5\x83\xf0\x3b\x25\x1e\xc1\x46\x7d\x24\x7e\xc4\xdc\xff\x53\x7d\x92\xfb\xbe\x53\xab\xc6\xee\x7f\x02\xe2\xbe\x97\x7e\x55\x41\x8e\x1a\xc2\xb6\xb8\x51\xa6\x55\x03\x73\x7d\x9c\x95\x11\x17\xce\xce\x78\x40\x62\x7e\xeb\xc6\x9a\x8d\x1e\xa0\x3f\xbf\x18\x5c\x5b\x81\x2d\x16\x97\x94\x13\x58\x28\xdd\xd5\xc6\x7a\xbd\x39\x26\x50\xec\xe9\x1b\x48\xe4\xe5\x51\xd1\x1a\xae\x99\xd4\xc7\x31\xbe\xa1\xa5\x0d\xab\xe0\xad\xdf\xa9\x21\x0c\xb7\x4b\xe3\x6d\x37\x1b\x38\xf1\xc3\x59\xc5\x35\xbc\xa5\x54\x3a\xb6\x72\x90\xba\xb7\x3d\x32\xf6\xcf\x78\x4b\x5c\x3e\x7b\x23\xd4\xbd\x32\xb0\xb8\xfa\xc1\xb6\x63\x83\xeb\x15\x60\xcf\x81\xf4\x8b\x41\x39\x3b\x0e\x8d\xe2\xc5\x12\x49\x0e\x34\x0d\xe8\x5a\x23\xbb\xee\xb8\xaa\x02\xe9\xdf\x0e\xf2\x5e\x7a\x39\x64\x55\xbc\x08\x49\xdc\xfa\x19\xec\xac\x51\xb1\x04\xf4\xbc\x19\x9d\xb7\x7b\x41\xad\x70\xd4\x28\xca\x76\x42\x0e\x4a\x8c\x7d\x67\x65\xab\x5a\xb1\x3e\x22\x15\x73\xb0\x16\x5a\xb5\x91\x63\xe7\x57\xd5\x46\xb5\x0a\xd8\xe5\xb6\xe6\xba\x3a\x6b\xef\xb0\x32\x1e\xaa\xe7\x01\x40\x5c\x30\xd2\x2b\x84\x38\x55\x32\x36\x96\xcb\x47\xb0\xd8\x28\xae\xc1\x5b\x3c\xde\x53\xbe\xed\x95\xe1\x6e\x84\x43\x5d\xc0\x79\xdb\x0a\x6b\x44\xa7\xd7\xdc\xe9\x34\x96\x93\x63\x34\x8c\xce\x0d\x08\x87\x79\xde\x62\x81\xd9\xa0\xe2\x82\x77\xd3\xb2\xe7\xc2\x9a\xee\xc8\xc7\x2d\x6c\x31\x92\xbe\xc2\xc9\xeb\x56\x95\xc2\x7e\xd6\x49\xd6\xe1\x8e\x07\x91\xa7\xcc\x8f\xd5\xbe\x23\x9e\x51\x20\xb3\x01\x18\x03\x02\x60\xb2\x96\xdb\xb2\xaa\x98\xd1\xac\x59\x4c\xad\xef\x35\x0a\x81\x71\x8b\x11\x4a\x16\x5d\x61\x84\xff\x04\x00\x20\x5d\xba\xc5\xb2\xb1\x35\x6f\xa1\x93\x2e\x0a\x81\xb4\x4e\xa0\xbb\x58\x03\x30\xbf\xee\x5c\xdc\x6b\x3c\xe8\x78\x91\xe3\xb8\xac\x81\x3f\xeb\x14\x54\xe5\x94\x42\x0c\x42\x9b\xef\xc6\x9e\xca\xac\x58\x02\x62\xa1\x24\x30\xcd\xc0\xf0\xb4\x16\xb9\x27\x3c\x4d\xbd\x8d\xc3\x3a\xe1\x6c\xc4\xa0\xb7\x3b\x2f\x8c\x3d\x9c\xd3\xa0\x1c\x76\x56\xc1\x9e\x7f\xf5\xec\xe9\xf7\xd4\x8e\x2d\x9c\xad\xb1\x10\x9c\xca\x72\xf4\x16\xe8\x0b\x6f\x3d\x6a\x42\xe4\x6e\x10\x72\x26\x6b\x11\xd0\x54\xe8\x9d\x31\x53\x91\xd0\x31\x7d\xcb\xf3\x98\xb0\x25\x18\x2a\x1d\x04\x67\xaa\x98\x08\x29\x0b\x4a\xf5\xd6\xa2\xa0\x16\x04\x23\x60\x17\x2a\xaf\x9c\xaf\xb7\xda\xd7\x1b\xa0\xb6\x80\xf8\x39\x20\x00\xee\x45\x39\x2f\x1e\x6f\xb5\x7f\x2c\x1a\xbb\xdf\x4b\xd3\xfe\x20\xce\xee\x99\xd5\xfe\x03\x90\x51\xd8\x8a\xba\xc3\x19\x61\xf1\x6f\x50\xc4\x49\x07\xd5\x43\x64\x5b\xdd\xd8\xe3\xe1\xce\x1c\x72\x14\xa3\x5a\x7b\x30\x40\x30\xf0\xb8\xb0\x9b\x8d\x6e\xb4\xec\xc4\x5a\x1b\x39\x1c\x23\x16\x3c\x86\xce\xdc\xb9\x78\xf3\xf6\x16\x01\xb7\x76\x3d\xea\xae\x0d\x00\xab\x2a\x70\xd1\xed\x3a\x4c\x7e\x2e\x8f\x84\x24\x4d\x6d\x69\xec\x00\xe7\x2f\xf6\x26\x14\x3c\xc1\x0b\xc2\xe1\x4d\xcc\xbb\x06\x41\x10\x61\xb1\x5c\x64\xdb\x60\x18\xf6\xd2\x37\x3b\x66\xea\x70\xd9\x68\x67\x1e\x7b\x6c\x69\x33\x0e\x83\x32\x1e\x93\x7f\x10\x67\x4e\x3c\xf9\x49\x9c\xb9\x58\x6d\x7e\x12\xe3\xf9\x0c\xc7\xb1\xd8\x68\xd5\xb5\xa1\xb5\xa9\x4e\xe0\x2b\xe9\xa4\xdb\xce\x67\x0b\x32\x05\x65\x8e\xb4\x7f\x8b\xfe\x15\x1b\x23\x2e\x8f\xb0\xec\xb3\x01\xca\x3b\x19\xd6\x8d\x1b\x69\xa5\x3f\x15\x7f\x56\x5d\x63\xf7\xea\x77\xe2\xcf\x0a\xe4\xe4\x6d\x87\x33\x27\x3d\x0b\xb3\xd6\x29\x5c\x55\xe7\xb4\xd1\x36\xa3\xc1\x33\xc3\xcb\x3b\x85\xf2\x6f\x9a\xa8\x25\x96\xe9\xe4\x60\x57\x1f\x76\x76\xaf\x3e\x56\x23\xb1\xfb\xb6\x6b\xa3\x48\x8a\x5b\xc8\x0e\xc4\x7f\x44\xf9\x34\xc1\xc4\xdd\xe1\x0e\xda\x37\xbb\x3a\x6a\xe9\x60\x20\xbd\xfa\x84\x8c\x11\x66\x25\xa5\x1d\x6c\x2d\xc8\xaa\xf6\x47\x5c\x17\xd0\xf1\xd7\xc7\xb4\x2c\xb4\x72\x95\xdb\xd9\x03\xaa\xbc\x22\xc4\xcd\xce\x1e\x50\xd9\x55\x08\x05\xab\xd5\xaa\x6a\x6c\xd7\xc9\xb5\x85\x59\xb9\x4f\xf0\x97\x79\x6a\x89\x7c\x7f\xac\xed\xb0\xe5\x6a\x4b\x15\xcf\xfe\xc8\x5a\x25\xce\x25\xad\x92\xab\x90\xbc\xb2\x3a\x12\xa9\xf0\x99\xab\x58\x99\xb2\xd2\xa6\x46\x5d\x4d\xa8\xf9\x95\x21\x76\x3d\x6f\x67\x55\x7d\x60\x55\xe5\xc7\x2a\xc0\x15\x6d\x22\x1a\x4d\x83\xee\x0a\xfd\x99\x9b\x28\xd0\x5c\xe5\x94\x1c\x70\x43\xdc\xe0\x8f\xaa\xfa\x20\x47\xbf\xfb\x98\xa9\x12\xeb\xb0\xf2\x82\x4a\x11\xd5\x5d\x4c\x26\x13\x5b\xb7\x53\x3d\x70\x80\x7b\x87\x4b\xb6\x1b\x94\x6c\x8f\x2c\x11\xc5\xc5\xfb\x47\x3a\x80\xb4\x01\xb2\xfd\xbb\xca\x59\xa0\x20\xf5\x57\xa2\xf8\x59\x9b\x96\xca\x97\x87\x37\xe9\x38\xf7\x3d\x2e\x13\x3b\x0c\xc7\xf3\x52\x56\xde\x49\x27\xd6\x4a\x99\x20\xd3\xb4\xab\xa0\xeb\x80\xe5\x25\x1b\x22\x02\xa8\x97\xc5\x1d\x48\x25\xed\x8c\xab\x80\x16\x12\xdd\xe6\x5a\x22\xff\x8a\xdc\x69\xce\xc4\x2e\xd4\x59\x0d\x6a\xaf\x40\x20\xaa\xf7\xa4\x0f\xa5\x2f\xf1\x5a\x55\x1b\x3b\x6c\x71\x97\xd1\x36\x78\x2a\x9e\x63\x42\xda\x17\x00\xa0\x7c\x7e\xb0\x30\x44\x48\xf9\x63\xd0\x3f\xd7\xc6\x1e\x50\x2f\x09\xcc\xd5\x74\xf8\xc7\x1e\x86\x6f\x15\x0e\x2a\xe2\x79\x90\xdd\x76\xca\xf8\x34\x88\x17\xc2\xa8\x83\xc8\xa1\x58\x74\x88\xbd\x02\x78\x20\x68\x3f\xae\x7f\x3a\x73\x3f\x7e\xb7\xfe\x29\x9e\x15\xcd\x4e\x35\x77\xb4\x74\xb5\x59\xdb\x4f\xa8\xa9\x40\x8d\x99\x12\x06\xb6\xf2\x59\x2b\x76\x76\x1c\x50\x50\x6e\x2c\xc8\x1a\x5e\x61\x6e\x31\x67\xfd\x60\x81\x9a\xad\x48\x43\xa9\x68\x6f\xa4\xf5\x88\xaa\x4a\x58\x91\x78\xa0\x85\x25\xd9\x0f\x76\xa7\xd7\xda\x03\xe1\x42\xe1\xfa\x0a\xff\x5f\x73\xb2\x6a\x27\x10\x19\xef\x31\x44\x32\xab\x9d\xe8\x63\x01\x68\x24\x82\xa6\xfe\xf1\x92\x49\xcb\x05\x66\x16\xc7\xaf\xd3\x7b\xed\x67\x4b\x11\x88\xae\xe4\x25\xcd\x1a\xd5\x30\x37\xd8\x87\x34\xba\x83\x6a\x94\xf1\xdd\x31\x2e\xcf\x83\xd4\x5e\xfc\x41\xec\xb5\x19\x3d\x08\x9d\x3b\x65\x84\x1f\x8e\x42\x02\x7f\xb3\xaa\x76\xd2\xd5\xa3\xe1\x69\x52\x6d\x58\x9c\x2f\x35\x1e\xc3\x50\x6f\xd8\x42\x19\x54\x29\x04\x8a\x6f\xe2\x0c\x7e\xbb\x62\xdd\x2a\x96\x82\xa3\x11\xda\xa3\x41\x62\x91\x4b\x6b\xc1\x0e\xc2\x28\x1a\x21\xec\x3f\x80\xc1\xb2\xb1\x46\xa5\xc1\xea\x74\x73\x07\xac\x3a\xcc\xef\x7a\xf4\xde\x82\x3c\xda\xc1\x1a\xa4\x32\xa1\xcd\x97\x08\x88\x12\x7b\xc2\x77\xa4\x69\x29\x47\xa9\xc2\x62\x00\xe1\x97\x0b\x7f\x33\xa8\x6f\x53\xf1\xb8\x65\xb0\x04\xa3\xa0\xd2\xd9\x6e\x7a\x87\x99\xa4\x38\x0f\x7b\x2e\x1c\x82\x0d\x6b\x34\xe3\x6c\x0e\xe5\x68\x60\x3e\x6c\x0c\xf5\xa9\xd7\x03\x48\x26\x43\x62\x09\x56\x93\xba\x92\xe8\x3e\xef\xb1\x2f\x5b\x9c\xce\x49\x6f\x6d\xed\x76\xa4\x75\x09\xcd\x13\x9d\x32\xdb\x42\x5d\x89\x97\x60\xb8\x44\xfe\xb7\x55\x65\xac\xa9\x51\xce\xcc\xf6\xcc\x1b\x6b\x9e\x60\x5a\x14\x54\x42\x69\x56\x70\x87\x0a\x01\xcd\x60\xc7\xed\x8e\x75\x55\xd5\x07\x18\xb5\x8f\x15\x4f\x85\xca\x70\xf2\x42\x0d\x39\x61\xca\x68\x3b\x46\xf8\xc0\xee\xfe\x49\x0d\x20\xd4\x23\x50\xb1\x0c\x4f\xcd\x48\x39\x20\x91\x0a\x27\x56\xe7\x5d\x4e\x33\x38\x79\x33\x76\xe7\xe2\x40\x3c\x50\x2a\x13\x15\x0a\xcc\x1d\xc1\xaa\xa4\xdb\xbf\xea\xc3\xde\xb6\xb2\xfb\x58\x1d\xf1\x4e\xe3\x2f\xca\x55\x06\xef\x91\x6c\xb5\xb7\x2d\x15\x7a\x8d\x3f\xaa\xea\xc3\xc6\x0e\xfb\x8f\x15\x9c\xaf\x6f\x26\x72\x01\x1c\xc4\x9c\x96\xf1\xa6\x98\xf5\x4b\x7e\x4f\x16\xfb\x7c\xbd\x20\x42\xbc\x53\xe9\xba\x0c\x7f\xc5\xce\xdf\xdc\xbc\xbc\x0d\x2a\x8e\x9b\x97\xe2\x4e\x31\xee\x97\xde\xf7\xee\x3d\x2a\xcf\x48\x13\xf6\xfe\xdd\x55\x75\x2d\x8f\xc0\xaf\x53\x32\x7f\x60\xc6\xad\x92\x7b\x6e\x24\xfc\x24\x14\x17\xa3\xdf\x71\x22\xfc\xb4\x43\xae\x94\xad\x90\x09\xfd\xa5\x10\x58\x68\x17\x55\x6f\xd4\xe1\xe7\x41\x9a\x26\x14\x06\xee\x60\x8d\x09\x54\xf2\xd2\xee\xf7\xda\xdf\x8c\xfb\xbd\xc4\xab\x3d\xfa\x16\x8e\x12\x38\xfb\xb5\x72\x8e\x2e\x33\x39\x7b\x4f\x09\x9c\x7d\xb9\xb3\x20\xf3\xc7\xdc\x06\xbf\xab\xdb\x41\x29\xae\xf5\x79\xb8\x41\xa8\x90\x23\x24\x76\x85\x7e\x55\x51\xc0\x55\x7c\xc7\xf7\xeb\x4c\xd7\xfd\x6b\x25\xbb\x7e\x27\x91\xe7\xcc\xc0\x50\xad\xbb\x66\x51\x5c\x20\x08\x6e\xec\x71\xaf\x06\xdd\xa0\xba\x44\xba\xdd\x37\x4f\xea\x6f\x33\x35\x7f\x89\xac\xb5\xfe\x9f\x43\x08\xbf\x69\x57\x26\xbc\x4e\xff\x16\x7a\x51\xa0\x83\x74\x71\x06\x10\x28\x3a\x24\xa8\x08\x84\x07\x16\x88\x11\x5e\xc0\x66\xf5\x20\xdf\x14\xa8\xf7\xf2\xd3\xe7\x0a\xee\xed\x42\x39\xd2\x6d\xa6\x42\x2c\x0a\x49\xee\x62\xb1\xc1\x57\xbf\x56\xe3\xf0\x00\xf0\xfb\x77\x57\xab\x5f\x2b\x6d\x9a\x6e\x6c\x4f\x36\xc4\x8d\x6b\xe7\x07\x10\x81\x1e\x9f\xb9\xc7\x80\xd2\xdc\x19\x7b\x30\x11\xfe\x3d\x7d\x0b\xfc\xfe\x21\x5c\x35\xd7\xda\xb0\x30\x99\x2e\x9d\x45\xab\x5b\x38\xe2\x50\x28\x5c\x25\x52\x9b\x0b\x8a\x71\x7f\xa2\x46\x8d\x05\xf9\x48\xa2\xe4\xa0\x48\x66\x96\x7b\xb5\x4a\xd7\xe3\x35\xb0\x47\x35\xc8\x52\x26\x17\x7e\xe0\x7c\x08\x4c\x00\x32\x50\x08\xb1\xa2\xcb\x8b\x79\xb9\x09\x01\x39\x59\xdc\x0e\xdb\x85\xd2\x6f\xe7\x17\x2b\x27\xca\x7b\x25\xf7\x0b\x08\x22\x69\x38\x59\x90\xe6\x1e\x0b\x8d\x0e\x45\xdc\x82\xb6\xcd\xcb\x01\xd4\x2a\x8d\x52\x1c\xf0\x7c\x6e\x72\x51\x31\x8e\x73\xa9\x0e\x58\x55\xca\x78\x35\x0c\x68\xa6\x90\x29\x05\x58\x49\xc3\xc7\xd1\x1e\x44\x59\x37\xc2\xd1\x0a\x62\x2f\x31\x97\xe5\x88\x02\x9f\x83\xa8\x14\x56\x71\x1a\xbd\x3d\x18\x38\x3d\x3e\x87\x1f\xc1\xbe\x12\x75\xae\x43\x9a\x23\x66\xe4\x11\xe8\x14\xda\xa8\xe0\x50\x9f\x34\x5e\x21\xbc\xd0\xf7\x8a\x55\x1c\x51\xb3\x83\x79\xab\xaa\x93\xce\x83\xd4\x4a\xbd\x22\x29\xc4\xde\xc3\x8e\x82\xfa\x20\x97\xca\xd1\x95\x02\x77\x0a\x16\x09\x2b\x4b\xf0\x5e\x53\xb5\xe7\x42\x22\xab\x31\x28\xda\xa0\xb2\x3b\xc8\xa3\x43\xc5\x5f\x20\x32\xd6\x84\x31\x01\x0a\x62\x8e\x62\x8b\xad\xca\x45\xd2\x55\x95\x34\x2c\x6e\x57\xc3\x89\x16\xd9\xac\x03\x6a\x2e\x90\x42\xb0\x2a\xf1\x3e\xe3\x1d\xf8\x00\xfc\x01\xe4\xe7\x91\x54\xa9\x94\x9d\x21\xc2\x4b\x78\x26\xf6\x0b\x65\xcf\x81\x1d\x15\x07\x25\xa4\x73\xe3\x9e\xc7\x5a\x23\xf7\x8f\x4d\xca\x74\x5f\xe3\xba\x53\x4f\x48\xac\xd1\x7e\x55\x81\x94\x9c\x34\x3b\x70\x60\x2a\xe3\xc3\x9d\x15\xa5\x93\x3e\xc4\x79\xdd\x75\x30\xd2\xc1\x30\xa5\x10\x33\x30\x17\xf7\x09\x0e\x93\xdb\xe9\x5e\x58\xbc\xb9\xc8\x87\x30\x2d\xdb\x8c\xa1\xf7\x56\xb4\x0a\xc5\x26\x3b\x08\x3f\x48\xe3\x36\x0a\xaf\x72\xf6\x62\xa3\x07\x98\x67\xaa\x1a\xe4\x03\x32\x44\x39\x51\x33\x49\xa0\x58\x75\x7e\x40\xe0\xdc\x65\x13\x55\x56\x4d\x57\x85\x78\x5f\x80\x6d\xc0\x51\x4d\x98\x5c\x68\x03\x2c\xb3\xd9\x10\xe0\xf5\x5d\x71\xf1\xbb\x38\x0e\x9b\x42\xed\x41\xf5\xe3\x4a\xfb\x4c\xbf\x2b\x32\xf4\xa8\x89\x0b\x29\x76\xc5\x2d\xe6\x04\xfe\x64\xba\x31\xaa\x0f\xb0\xee\x3f\x56\xc4\x09\xd7\xf1\x3e\xe6\x92\x38\x63\x62\x6b\x31\xb1\xfa\xab\xd5\xa6\xc6\xcb\x85\x7f\xb7\xda\xe0\x4d\x44\x55\xdc\x30\x4f\x74\x32\x6c\x62\x73\xc4\xab\xef\x75\xa7\x9b\x60\x67\x73\xac\x36\x16\xf7\x13\xaa\x6c\x9e\x87\xdf\x95\xf3\x12\xc8\x04\x6c\x06\xfe\x55\xe8\x80\xa8\x10\x29\x08\x9f\x87\xdf\x9c\x1a\x93\xaa\xd1\xc4\x94\xf7\xfc\xb3\xaa\x80\x79\x5d\x21\xfd\x05\x7e\x1b\x2f\xa3\x32\xaa\x0b\x87\x2a\xac\xff\x90\xb7\xca\xe0\x7b\xe9\xbd\x1a\x0c\xe9\x93\x89\x08\xe4\x45\x39\x3b\xa2\x88\x36\x10\x80\xa5\xfa\x10\xec\x8f\x3e\x56\xc9\x4a\x29\x18\x28\x2d\x29\xd2\xe3\xf0\xd3\xf5\x52\xc5\xbb\xda\x31\xef\xfb\x1f\xea\xe8\x58\x85\x84\x14\x03\x7f\xb0\x0e\x00\xad\x11\xc2\x15\xb2\x2b\x6f\x94\x51\x23\x36\x57\x84\xf1\x9a\x7a\x2a\x9e\xd1\x8f\xa0\x4d\x18\x35\xf6\x51\xb7\x55\xd5\xe3\xc4\x65\x36\x56\x3c\x93\xb1\x13\x6c\x62\x97\xeb\x13\x4a\x39\x5b\x3b\x41\x48\x90\x9b\x08\x37\x82\x78\x76\x6e\xec\x80\x14\x32\x5e\x6f\xa8\x0e\xef\xbe\x4c\x76\xdb\xe9\xce\xb1\x1c\x80\x1d\xd4\x3a\x5c\x81\xf5\x6a\xe0\x7e\xee\x65\xab\xc4\xbd\x96\x51\x93\x95\xf1\x34\xf1\xd0\x0d\xaa\xa8\x42\x16\x44\x29\x83\xf4\x86\x81\xa5\x09\x13\xec\x6d\x90\x0c\xfd\x4e\x69\xba\x81\x32\xc8\xee\x6c\xc6\xae\x0b\x67\xe2\xf3\xb1\xeb\xc8\xd6\x63\x6e\xdc\x08\x55\xf0\x4d\xdc\x15\xff\xac\xc6\xbe\x05\x99\x30\x8d\xe5\x7b\x4c\x88\x63\x59\xe6\x67\xb2\x1e\x8e\x6a\x28\x16\x35\x51\x04\xde\x66\xc2\x5f\x77\x5c\x85\x7d\xbc\x60\xb4\xc8\x5b\xba\x9d\x82\x24\xbd\x0d\xd2\x28\xee\x38\x4e\x14\x99\x1b\xe0\xd0\x1e\xe4\x51\xec\xec\x41\x74\xda\xdc\x39\x9e\x29\x18\xa7\x5c\xee\x45\xfd\x9a\xd7\x66\x54\x2c\x89\xc0\xcf\xb9\x89\x1c\x5f\x8d\xf2\x45\xe9\xfa\x18\xb4\x19\x74\x95\xca\x4b\x5f\xac\x8f\x02\x85\xad\xd3\x77\xb2\xd3\xcb\xd8\x70\x17\x1b\xee\x18\xf1\x2a\x38\x51\xb4\xf7\x4e\x89\x4b\xba\x1e\xe6\xdd\xd5\xec\xac\x75\xac\xf0\x4d\x74\x0f\xd2\x50\x9f\xc3\x64\x8f\xa7\x25\xe1\xa1\x59\xbb\x08\xd7\xd4\xb8\xc3\x79\x2f\xd5\x7c\xa1\x92\xa0\x79\x6b\x5d\xf2\x45\xcb\x45\xc0\x49\xd7\xd0\xa1\x4f\x48\x5d\x6a\xbd\x27\x79\xf0\x7d\xb8\xa4\xc6\x09\x8f\x02\x03\x66\xaf\xca\xf6\x4c\x57\x09\xd7\x1b\x6e\x4c\x3e\xb3\x58\xc2\x52\xc8\xef\xed\x68\xfa\x23\x45\xb2\x5d\xc1\xae\x85\x7e\xc4\x7c\x18\xbc\x2c\xff\x0d\xde\xb0\x46\xb5\x05\xec\xb1\x7a\x02\xc2\x92\x7e\x01\xb9\xc8\x15\x87\xba\x4e\x72\xc4\x93\xd6\xcf\x76\x4c\x28\x77\x90\xae\xe8\x38\xaf\xf1\x76\x15\x8c\xcd\x84\xb1\x07\xba\xae\x45\xab\x20\xb2\x8c\x32\x78\xd7\x4b\x28\x32\xa2\xc2\x95\xfe\xab\x24\x25\x61\x26\x91\xc2\x45\x49\xe2\x82\x08\xa7\x72\xc1\xa4\x36\xe6\xb3\x55\x6d\x41\x5f\x55\x30\xb5\xc9\x29\x70\x3f\x68\xd4\x3c\x94\x94\x78\x46\x7b\x0b\x3a\x8b\x64\xd6\xa2\xe1\x48\x22\xaf\xab\x2a\xa0\x82\x73\x0b\x7f\x85\x94\xa8\xdb\xba\x51\x68\x79\xc8\xc9\x61\x23\x84\x5c\x5a\xff\xb1\x8d\x9d\x62\xaa\x48\x7d\x7d\xc6\x09\x93\xfc\xd0\x19\xca\x0e\x13\xb2\xd0\x9b\x01\xb8\x78\x15\x0f\x0e\x6d\xc8\x6e\x27\xde\xca\x16\xd4\x49\x3c\x43\x72\x25\x0e\x92\x54\xf8\x81\x58\xfd\x71\x5a\x7b\x5a\x47\xbf\x94\xca\x7f\xea\x5b\xb9\x8b\x7e\x57\xc9\xb6\xc5\x35\x9e\xee\xb6\x5b\x5c\x3c\xa5\xa2\x0f\xa0\x72\x08\x52\x25\xc5\xd4\xba\xb8\x9a\x70\xa4\xcd\xf9\xf2\xeb\x08\xe0\x3f\xfe\x1b\x6e\x22\x8a\xaa\xd2\x4d\x44\x6c\xe4\x64\x87\xcd\x7a\x39\xdf\x6a\xb2\x6d\x91\x15\xe2\xb5\x9c\x31\x34\xbc\x9a\x23\x5f\x03\xb5\x90\x04\x03\xc3\xf3\x1f\xea\x88\xdc\x0f\xaf\x04\x3c\x9a\xb4\x13\x12\xad\xe7\xd0\x64\x96\xc4\x19\x07\x72\x0c\x30\x42\x30\x2f\x68\xaf\x5b\xce\xf9\x05\xca\x6b\x4e\x31\x2c\x72\x86\xd2\x1c\x81\xd3\x0f\x7b\x5d\xed\x61\x1c\xc8\x72\x22\x5a\x32\xce\xae\x20\xcf\x59\x48\xda\xe9\xed\xae\x3b\x0a\xbd\xef\xed\xe0\x71\x25\x85\x0b\xe6\x24\xc3\xc2\xd7\xa0\x1a\xbb\x35\xfa\x37\x1c\xd8\x3d\x99\x2e\x46\x1d\xf8\x8f\xce\x0f\xd6\x6c\x7f\x7a\x66\x41\xb8\xbc\x03\xf2\xb3\xb3\x87\x3f\xfe\xf8\x1d\xa7\x8b\x4b\x9c\x42\x3b\x7a\xf1\x42\xfb\x97\xe3\xfa\xb1\x13\xdb\x51\xb7\x78\xe4\xfe\x28\x33\x33\x6e\x36\x15\x21\xbb\xd2\x83\x89\xc3\x82\x46\xdd\x76\x10\xce\x76\xf7\x6a\x52\xc4\xee\xf7\x34\xbd\xeb\x4e\xed\x09\x12\xdb\x8f\xd6\x25\xca\xe0\xc8\xa9\x81\xc7\xe7\xe6\xe6\xe5\x2a\x2e\xf1\x34\x3f\x3c\x6d\x81\x43\x2d\x34\x22\xcc\x23\x02\x70\xc3\x9a\xc9\x74\x10\xa1\x3a\x24\x94\x42\xfe\x63\x5e\x0a\xe7\xd1\x01\xcf\x32\xd3\xc5\xa0\xd8\x02\x28\x42\x71\xf1\x14\xda\x41\x7c\x18\xa4\x35\x33\x5d\x28\x2f\xac\x6c\xf1\xc2\xd9\x13\x74\xc9\xc8\xb9\xc7\xe6\xe1\x72\x9d\xec\x6f\xa6\x68\xd4\x77\xa6\x67\xa1\x03\x19\x45\xe3\x11\x49\x34\x6d\x0a\x53\x50\x35\x45\x34\x2d\xb4\x22\xa7\x66\x64\x48\x47\x14\x8d\x16\xa4\x72\x48\xaf\xbf\x90\x9a\xcd\xea\x4d\x1d\x0f\xd5\x7d\x01\x45\xc3\x3e\x5d\xe0\x70\x58\x43\xfa\x13\x9e\xa8\x2b\xd6\x96\x60\x86\xb1\x75\x26\xe7\xbd\xb1\x7c\x97\x27\x42\x22\xce\x89\xf3\xc0\xb1\xe4\x5b\x19\x1a\x81\x46\xb8\x64\x62\x85\x0a\x98\xff\x5d\xb4\xf2\xe8\x2a\x6f\xef\x94\x59\x28\x82\xe9\xa7\x0a\x45\xfa\x12\x84\x23\xa6\x2e\x17\x89\x38\x4c\xc5\x25\xbe\x8a\x3f\x49\x60\x32\xba\xc2\x58\xa3\x99\x1b\x69\x8f\xf0\x61\x84\x58\x6b\xd3\x12\x1d\x61\x32\xc0\xb6\x5c\x71\xff\xaf\xaa\xd1\x00\x10\x0a\xa4\xf0\x83\xbf\xf3\x69\x29\xf0\x67\x9b\xc5\xac\xed\x68\x32\xf2\x49\xcb\xa1\xa6\xa1\x88\x9d\xbc\x56\x83\x43\xeb\xdb\x0b\x42\x78\x0b\xd9\x8e\x4d\xd9\xd9\xa2\x21\x14\x79\xc1\x89\xb8\x07\x10\x90\x06\xdc\xc5\x81\xc0\xaf\xa4\xf8\x08\x58\xd8\x92\x86\x0d\x6b\x71\x0e\xbc\x8d\x04\x73\x47\x96\x35\xe2\xe2\xfa\x95\x5b\x55\xb1\xc2\x80\xf4\x17\xd9\xec\x78\x02\x0f\xa4\xf5\x40\xfb\x9b\xae\x9b\x52\xdc\x28\x49\x50\xf1\xf0\xe2\x00\x4b\xe2\x16\x8f\x9d\x9a\x75\x88\x3a\x53\xe6\xd3\x18\x2b\x97\x69\x82\xa8\x36\x6c\xc9\xf4\xac\x8a\x5d\xfd\x9d\x78\x9d\xf4\x91\xb0\xb5\xfa\x23\x50\xff\xcc\xfc\x4e\xd2\x08\x1d\x90\x7e\x4f\xec\xfe\xb4\xa7\x7b\x6a\x01\x5b\x78\x88\xf4\x23\x34\x98\x29\x48\x3e\x95\x39\x19\x59\x9c\xcc\x44\x54\x16\x8b\x2d\x51\x96\x3e\xe0\x29\xfb\xfc\x39\x3a\x03\x0b\x3f\x29\x0e\x1e\xa0\x32\x79\xaf\xb2\xa5\x7c\xbd\x58\x6d\x5c\xd1\x54\xf5\x84\xde\x08\x3a\x06\xc9\xd6\x03\x4d\x61\x49\xc4\xa2\x15\x91\x19\xc6\x4b\x27\x0e\xaa\xeb\x56\x15\xea\x33\x56\x06\x4e\x71\x32\xa0\x8c\xec\x36\x2b\xe4\xb0\x1f\xe6\x58\x68\xdc\xdc\x8a\x8a\xa1\x1e\x2f\x9a\x40\x5e\x29\x36\x15\xc8\x41\x73\xc0\xcc\x4c\x93\xcc\xf7\xad\xcb\x9f\x3c\xd0\x28\x66\x5a\x30\x34\x29\x53\x72\xef\x84\xdc\xc0\x31\x0a\xc3\xd7\xa9\x0d\x6b\xcb\x73\x35\xf0\xe9\xc1\x0d\xa3\x9b\xee\x9b\x79\x6a\x0b\xab\x0f\x06\xca\xe4\x77\x95\x78\x77\x6a\x6c\xae\xaa\x0c\xc8\x7a\x35\xec\xa5\x41\x83\x0b\x52\xae\x04\x6e\xe4\xf2\xe2\xcd\x9b\xb7\xb7\x89\x09\x81\x7d\x6e\x5a\x6b\xd4\xef\xa2\x85\xe7\xac\x5d\xc1\xce\x33\x2e\xd0\x12\x22\x59\x9a\x72\x89\x53\x70\x39\x19\xce\x0c\x52\xb6\x16\x69\xab\x85\xb6\x84\xb3\xaa\x68\x7f\x7b\x72\x08\x3f\xc0\xac\x7c\xac\x82\xc2\xff\x2d\xfc\xaf\xf2\x3b\x93\xec\xae\x09\x49\x4b\xba\x92\x4a\xef\x69\xc4\xd6\xda\x76\x76\x87\x82\x87\xd0\x28\x51\x94\xb4\xfb\xde\xe2\x59\xb8\x11\x68\xaa\x70\x0e\x2b\xd0\x0e\x48\x10\x60\x70\x47\xa3\xff\x36\x22\xfb\x89\x16\x06\xab\xea\x5e\x3b\xbd\xd6\x1d\x1d\x98\x7f\x8a\x1f\x94\x0e\xbf\x26\x6f\x3e\xb2\xca\xb5\x13\x3f\xba\x5e\x1a\xd1\x74\xd2\xb9\xa7\x8f\x46\x2d\x06\xa0\xc3\xea\x93\x7f\xf4\xd3\xf5\x80\x36\x07\x3f\x7e\x07\x10\x3f\xcd\xd0\xd5\x1b\x3b\x34\xa4\x5c\x8d\x06\x3c\xb8\x2f\x39\x1d\xd6\x31\xf0\xf3\xc5\x5a\xa6\x81\xff\x27\xea\xdc\xd8\xe1\x2e\xf5\xe3\x1b\xd6\x2a\xd8\x0d\xd1\xa6\x7b\xd9\x8d\xa5\x8a\x09\x6a\x87\x32\xee\xdb\x0a\x1f\xb4\xa4\xb2\x68\xd0\x85\xaf\x92\x21\x43\x9b\xed\x1f\x71\xd0\xfc\xc3\xaf\x1b\x5f\xaa\xae\x07\xc6\xf6\x77\x15\xb6\x84\x95\xf0\xd3\xe7\xac\x98\x17\x5e\x9a\x40\x1e\x3e\x37\xc1\xd4\x85\xd9\xc8\x5e\xa6\xc9\xce\x93\x02\x5e\x64\xb3\x09\x24\x07\x3b\x91\x2b\xae\x8f\x7c\xd5\x19\x29\xb4\x6b\x06\x8d\xaf\x65\x28\xbd\x93\xa8\xcf\x8e\xef\x99\x31\x71\xab\xbd\xde\x1a\x3b\x64\xc3\x70\xa3\x3a\x18\xa7\x55\xcc\x12\xe1\x85\xb4\xab\x3a\xdd\x28\xe3\x90\x98\xd1\xaf\x90\x32\x2b\x0e\xdc\x0d\xc1\xa2\xc6\x11\x58\x6a\xde\x0a\xf0\x83\xbf\x17\x4a\x31\x60\xa8\xb2\x92\xa3\xb7\xb5\x36\xda\xa3\xbd\xa6\xf6\x5a\x76\x24\xe9\x94\xeb\x95\xf8\x78\x44\xc2\xda\xac\x40\x1e\x19\x0f\x9b\x5c\xf2\xf4\xb0\xad\x65\x36\x41\xfc\x32\x83\xaf\x35\x70\xfc\x30\x41\x90\xf9\x05\x3f\x86\xae\xfb\x61\x34\xa4\x5a\x1f\x8d\x2a\x12\xc3\xb8\x67\x0c\x1b\xbd\x8d\x7b\xe2\x07\xd9\xdc\x01\x71\x19\xd4\x46\x0d\xca\x34\x68\x67\x26\xe1\x7c\x17\x9d\x35\x5b\x35\x90\xac\x11\x8c\xb8\xa8\x58\x40\xae\x41\x42\xba\x27\x4e\x93\x9e\x51\xbf\x0a\x29\xdf\x80\x68\xfd\x6d\x00\x0c\x82\x71\x84\x63\xf5\xce\x24\x3f\xb4\x93\xaf\x43\xd9\x1e\x40\x18\x05\xc7\x8c\x1c\xe8\xb1\x8a\x68\x06\xd5\x2a\x03\xa3\xed\x04\xcb\xf3\xc1\xcc\x20\xe0\x43\x46\xdd\x1d\x4d\x93\x58\xf5\x1b\xfc\xaa\x0e\xd2\x37\x3b\xba\x72\xf9\x33\xff\xc4\x1b\x97\xad\xfc\x8d\x52\x6f\xe2\x07\x6e\x01\xc7\x9b\xc2\xf1\xf5\xc9\xa0\x64\xb3\x63\x53\x3f\xbb\xa9\xe9\xfd\x25\xb2\x2c\xb7\xf1\x1a\x18\xe8\x09\xc2\xa9\x56\xec\xe5\x27\xbd\x1f\xf7\x22\x02\x62\x51\xd8\x25\x67\xe5\xc5\xce\x6a\xf9\x7a\x66\x6a\x0a\xf0\xf5\xb7\x34\x53\x0c\x0f\x5f\xd6\x18\xa5\xda\x5a\x8e\x68\xef\x8d\x44\xa7\x30\x09\xaa\xf8\x25\x7d\x78\x91\x1c\x9f\xd2\xd3\x93\xe4\x3c\xf7\x34\xfd\x0e\x1a\x38\x59\x92\x54\x34\xf4\x5e\x77\xa3\x7a\xf4\x13\xcd\x62\xa0\xa7\x01\x2b\xef\x8f\xd7\xfc\x98\x3f\xdb\x20\x0c\xb1\x22\xa2\x99\x16\xdb\x25\xbe\x0a\x4c\x6b\x6d\x01\xaa\x38\x72\x99\xad\x97\xd9\xcb\xc2\xef\x5e\xbc\xba\x45\xf3\x94\x07\x8a\xd7\xa4\x06\x21\x8b\x3b\x22\x91\x8f\x07\xe0\x2c\x9d\xcd\x35\x9f\xc1\x0b\x81\xcc\x07\x63\x7d\xa4\x07\x61\xe1\x4d\x66\x2f\xfd\x2e\xd5\x05\x87\xbc\x76\x8e\x98\x5b\xa3\x71\x3e\x0b\x46\x2f\x61\xa7\x36\x30\xb2\x72\x61\x05\x6c\xc9\xae\xbf\x91\x5d\x30\xea\x7f\x45\x89\x5c\x10\x12\x51\xc7\x53\xde\x90\x06\xa3\x46\x99\xbf\x94\x0d\x68\xe3\x65\x78\x5a\x0d\xf9\x3d\x38\x6f\x49\x3e\x60\xd8\xdd\x82\xdd\x54\x74\x46\x84\x74\x3e\x31\x36\xf1\xe8\xc1\x97\x8e\x4e\x75\x9b\xf2\xcc\x41\xb7\x0c\xc5\x08\xe6\x06\xb6\xf6\x60\x80\x4b\xeb\x8f\x75\xa7\xcd\x1d\x32\x66\xfd\x31\x25\x64\x1c\xfa\xa5\xed\xb5\x6a\x33\xe0\x68\x45\x74\x8d\x8b\xe7\xbf\xfe\xdf\xff\xef\xc9\x25\x74\xfb\xd2\x0f\xdd\x93\xcb\x20\x00\x01\x3c\x4d\x03\x21\x10\x6f\xff\xa3\x1a\xcd\x81\x4d\x86\xde\xd3\xaf\x2a\x7c\x23\x85\xa9\x46\xe3\xf8\xce\x04\x7f\x54\xfc\x05\x84\xa6\x62\x2f\x13\x40\x61\xaa\xca\xc4\x03\xf2\x8d\x2d\xce\xc8\xbf\x8d\xba\xb9\xab\x49\xf5\xf5\x54\xfc\x27\x7c\x09\xf4\x5c\xc0\x6c\x02\x9c\x38\xf1\xf8\xc0\x35\x3f\x39\x83\x72\xab\x7e\x3c\x5b\xf9\xb1\x50\x3a\x6e\x64\xc9\xf6\x1c\x03\xc1\x0f\x80\x9d\x36\xaa\xea\x47\xb7\xa3\x1b\xf5\x50\xdb\xf5\xe8\x76\xf8\xb4\x14\x12\xe9\x1c\x89\x18\x70\x66\x67\x38\xb0\x7a\xed\xe8\x69\xfa\x32\x77\x87\x59\x99\xc5\xf5\x5e\x89\xb5\x6c\xee\x82\x24\x59\xd1\x11\x4a\xa6\x7f\xae\x8a\xa7\x22\x9f\x86\x7e\x50\x28\x2d\x0f\x4a\x01\xa4\x57\x43\xb0\x07\x90\xa6\xad\xbd\xdc\x52\x49\x60\x5d\xb8\xa8\x1d\x84\x97\x5b\x46\x84\x98\x7f\xe6\x9f\x95\x97\x78\x63\x7c\x2b\xb7\x73\xb7\x17\xfd\xd8\x75\x73\xe7\x18\x9d\x5c\x2b\x4c\xbe\xc2\x1f\xd5\x1e\x1a\xe9\xad\x51\x74\xfa\x85\x8f\xaa\x41\x83\x46\x17\x4d\x1b\x5d\xc5\xef\xb2\xc8\x82\x80\x7e\x62\x57\xeb\x41\x1e\x20\x4d\x1e\xe8\x73\xa7\x1d\x3b\x4b\x79\x49\xbf\x28\x19\x5f\x97\x10\x28\x3e\x2e\x89\xf0\x28\x29\xf0\x7e\xb8\x0e\xbf\x29\xcb\x5b\xe0\xbd\x06\xbc\x6f\xc3\x89\x08\x77\x6d\xde\x5a\x41\x19\xc4\xfc\xba\x9d\x3d\x98\xea\x5e\xb7\xca\xe2\xf1\xc2\x4f\xc5\xc8\x5d\xcc\x7a\xb0\x07\x17\x98\x43\x18\x55\xfa\x04\x12\x02\x12\x6d\x78\x56\xf6\xf2\xf6\xf5\xd5\xff\x14\x88\x03\xc6\x7b\x55\x55\xaa\x85\x39\x5f\xa1\xbb\x15\xba\x0c\x7e\xa3\x0e\xc4\x94\x71\x16\x5d\x11\xd6\xf1\xaa\x18\x2d\x59\x73\x00\xf8\x17\xb2\x7f\x69\xb5\x2f\x32\xfb\x41\xe1\xa8\xd0\x9d\x93\xa3\xcd\x8d\xcf\x17\x89\x15\x77\x01\x90\x88\x4b\x8d\xc8\x8c\x35\x35\x9c\x45\x75\x58\x66\x97\x44\x79\x20\x53\x18\x6b\x9e\xe0\x41\x85\x99\x45\x23\x70\x13\xe6\x2d\xf1\x61\x40\x03\xd8\x7e\x74\xbe\x5e\xab\xda\x9a\x5a\x26\x66\xee\x2f\xc1\xb8\x65\x8d\x46\xc9\x32\xac\x4a\x38\x31\xe4\x1d\x59\xc3\x0d\x16\xc4\x2b\x11\xfa\x11\xdc\x16\xe4\xc8\x91\x68\x92\xd7\x12\xec\x47\x8e\x19\xa9\xcc\x94\x2d\x65\x0f\x27\x00\x1b\x2c\xc0\x72\x7c\x41\xb3\x91\xf5\x2a\x57\xac\xcc\xfa\xb5\x93\xf7\xaa\xc6\x77\xf2\xac\x9f\xcb\x1b\x80\x9a\x2e\x7a\x44\x9f\x74\x06\x5f\xd5\x3b\x32\xaf\xc0\x26\x25\x22\x8e\xb6\xbf\xa5\xea\x7a\x59\x95\x1b\x16\x1a\x70\x49\xf8\x94\x24\x2c\x37\x36\xd8\x1b\xb0\xb2\xd5\x6a\x95\xd7\x17\x85\x60\xd4\xbd\x01\x8f\x99\x4e\xbf\x73\x7a\x54\x8f\x6c\x90\xf6\xc8\xce\xf7\x78\x6e\x7c\xb7\x02\xd8\xa0\x5b\xca\x0b\x6c\x2d\xf5\x4c\x89\xb5\xda\x6a\xf2\x5d\x83\xa2\xa0\xe2\xb7\x84\x09\x09\x50\x3b\xd7\x4b\xf4\x60\x42\xed\xc1\x93\xc9\x0e\xd9\x7a\x6d\x54\x57\xa3\xc5\x90\x78\x2a\xe8\x33\x66\x22\x3d\xc9\x16\x3d\xdb\x4e\x4f\xd6\xbc\x6c\xdb\xda\xef\xfb\x70\x13\xf7\xf8\xcc\x7d\xf7\x63\xe8\xf6\x4f\x8f\x33\xa8\x04\xf0\x38\x6d\xcb\x96\xfc\x29\xb1\x19\x40\x9e\x37\xb5\xa7\xc9\xf3\xb8\x69\x6c\xe3\x1d\xbd\x78\xb5\xf8\x20\x26\xf8\x53\x10\xea\x93\x57\xa6\x55\xad\x68\xd3\x19\x98\xcd\x0d\x23\xa1\xa1\xed\x8e\xb5\xb7\xb4\x4a\xe3\x8e\xe2\xfe\x06\x80\x30\xec\xac\xe0\x09\xfc\x26\x81\x3f\x81\xee\x3e\xc2\x37\x30\x51\xe1\x83\x19\xa9\xba\x74\x74\xa6\x1a\xc2\xa1\x19\x94\x46\x26\xda\xbe\x27\x3c\x1b\x74\xb0\x80\xb6\x9a\xd8\x1e\xf4\x4c\x41\x2e\x6a\x04\x9c\x1d\xe1\x39\xd0\x2a\xa7\x83\xc1\x74\x0d\x0d\x76\x98\x19\x28\xed\xea\xf3\x91\x98\x18\x95\x4c\x17\x2f\x93\xb5\xb5\x8a\xa7\xed\x73\xce\x5a\xf0\x73\x43\x65\xc3\x51\x49\x0c\x15\x1d\xf6\xe9\x44\xa4\xcd\x56\xdc\x42\xb9\xe8\x0f\x29\x97\xf6\xc3\x5a\x08\xcb\x1f\x4e\x7c\x19\xa9\xa3\xf1\x03\x5f\x39\xb1\xfc\xd6\x4b\xb6\x71\xa0\x77\xa5\x92\xce\xa1\x09\xc7\xf9\x50\x45\x48\x1f\xb0\x0e\x77\xdc\xf3\x59\x17\xfd\x0b\x05\x49\x47\x8a\x90\x19\x94\xf8\x3c\x04\xf8\xce\x43\x33\xfb\x49\x86\x3e\x6a\x2d\x18\xf5\x6c\x54\xb1\x9a\xd4\xaa\x54\x51\x21\xa0\xe5\x4c\xd1\x97\x77\x81\xa9\x71\x6d\x6c\x4d\xe2\x77\x9a\x81\xb2\x3b\x47\x96\x02\x02\xf9\x9e\xc8\xeb\x51\x32\x3e\x55\x11\x1b\x7f\xd4\x87\x5d\x56\x6d\x20\xa9\xb3\xfb\x4a\x86\x16\x4e\x9b\x46\x25\x5f\x4b\xaa\x0d\xf5\xaf\x1e\x56\x44\xa5\xd7\x4e\x78\xcf\xca\x57\x04\x07\x98\x05\x3c\x1a\x8a\x4a\xec\x10\xb7\x15\x91\xc3\xb0\x7f\xb6\x52\x9b\xb4\xbd\xbc\x45\x83\x59\x3a\x55\xfc\x2e\x3b\x41\xca\x9e\xce\x96\xf2\x05\x0d\x23\xaa\x65\xd2\x94\x7d\xf9\xa2\x36\x36\xd0\x56\x20\x3d\xc0\x19\xd1\xec\x80\xc8\x87\x72\x59\x7e\x92\x41\x76\x6a\x0f\x7a\x83\xb1\x35\x1b\x2f\xf1\x76\x78\x4e\xf2\x53\xd4\xf8\x7f\xc7\xb7\xd9\x69\xb2\xb1\xa9\xf4\xaa\x01\x44\xaa\x8c\x80\xbb\x71\xdd\xea\x81\x69\x28\x7d\xb0\x78\x96\xa8\x04\x9b\x48\x63\xbd\x91\x9b\x72\x93\x8a\x23\x63\xe5\x82\x21\xc5\x89\x5a\x73\x1c\x80\x93\xaa\x7f\xbf\x80\xa0\x0a\x3c\xee\x6a\xce\xeb\x86\x9c\xc9\x2b\x64\x9e\xea\x94\xbf\xa1\x2b\xc3\xe7\xda\xb4\x31\x4d\xa2\x46\x22\xbe\x56\x8a\xe9\xfb\xf8\x94\x88\x1f\x15\xc5\x1c\x3e\xac\x9e\xa1\xb2\x8d\xd3\xc2\xe3\xf3\xb7\xf0\x3f\xa6\x1a\x75\x60\x7d\xeb\x41\x0d\xf1\x71\x36\xf9\x55\x04\x3a\x8c\xac\x7f\x96\xbc\x9a\xb2\xfb\x59\x16\xec\x61\x48\x24\x79\x0e\xf3\xf3\xec\xa6\x53\x72\xa8\x63\xf9\x4b\xf8\x14\xdd\x0c\x4b\x94\x1f\x72\xf1\x61\x52\x4d\x0e\xf3\xc6\x2e\x83\x51\x75\x39\x24\xd5\xb8\x5f\x02\xb6\xbd\x32\x05\xec\xdb\x5e\x99\x5c\x7a\x29\x10\x5b\xa7\xda\x09\x66\xbc\x0c\x58\x86\x97\x0e\x9d\x8a\xe0\x75\x08\xff\x9c\xb7\x33\x03\xa2\x66\xca\x05\x50\x63\x73\xb8\x37\x76\x06\xc4\x1b\x29\x9e\xd7\xd3\xd9\x4b\xf3\xa3\x0e\xb3\x09\xa2\xcc\xba\xef\x64\xa3\xa2\xab\x02\x04\x8a\xc7\x70\x51\x4d\x44\xc6\x95\x15\xf8\x08\x57\x54\x56\xaf\xe2\xbd\x1b\xec\x1a\x09\x6c\x5f\xab\x36\x68\x4e\xee\x14\x6a\x07\xcb\x85\x30\x2d\xae\xcd\xc6\xe6\x44\xc7\xfc\xd7\xff\xf3\xff\x7b\xd4\xeb\xf2\x7a\x3a\x2a\x9f\xec\xfa\x8a\x67\xb8\x8f\x62\x5f\x1f\x85\x27\xb9\x72\x6d\x0b\x8f\x2b\xf4\x00\x80\x3c\xed\x4d\x9b\xc6\xcf\x77\x4f\xb4\x6b\x41\xd3\x8e\x83\xe2\x94\x3f\x55\x64\x74\x6c\x9e\x4b\xf4\xf6\xb3\xf0\x81\x86\xe6\x72\x61\x22\x64\x48\x85\x08\x47\xf4\x9d\x1a\xe9\x28\xf9\xcb\x20\xb4\xb8\xc2\xbd\x5c\x8b\xa7\xe2\xac\xc5\xe5\x1d\x67\x13\x16\x6f\xca\xa2\xb5\x1c\x32\x59\xa1\x10\xa6\xba\x98\xe3\x3c\x0f\x0e\x70\x52\xf9\xd3\xca\x8c\xea\xff\x6e\xa1\xc4\x83\x5b\x7c\x0a\x73\x12\xf3\x6c\x23\x73\xc9\x07\xf6\x5b\x82\xd8\x6a\xa3\x4e\xa3\x3e\x51\x8e\x95\xc0\xa8\xfa\x9d\xe7\xac\x64\xd7\xd5\x51\x67\x72\xd1\x75\x82\x3e\x16\x41\x1d\x3b\x9f\xf5\x16\xe4\xb3\xd4\xd4\x96\x6d\x22\x96\x0a\xd1\x6a\x6d\xeb\xf5\x91\xcb\xd0\xc6\x43\xaf\x56\x27\x8a\xec\x95\x01\x61\x02\x38\x2c\x2a\xf2\x3a\x26\x2c\x14\x71\xec\x63\xcf\x0e\x7e\x21\x67\x85\xeb\xd1\xf3\x61\xe1\x16\x41\x80\x6c\x20\xc8\x5b\xfc\xb1\x04\x42\x96\x42\x51\xa0\x7a\xc7\x4e\x00\x82\xad\xf2\x62\xc5\x4a\xba\x54\xe2\x0a\x1f\xed\x0c\x5f\x50\x6e\x6f\x9d\x87\x83\x8e\x0c\xc3\x5e\x5b\x7c\x5b\x89\x9f\x0f\xd4\x93\x0a\x50\x45\xb3\x12\xb0\x93\x70\x16\x40\x42\xc5\xdf\xe2\xec\xc3\xf7\x1f\x1d\x4c\x43\xb2\xb8\xfb\xf0\xfb\x8f\xee\xd1\x4f\x67\x1f\xfe\xf0\x11\x4d\xed\x66\x85\xeb\x8d\xbc\x53\x0b\x18\xb0\x60\x80\x46\x7d\x8e\x1d\xa3\x22\xc7\x8e\xd9\xc9\xf2\x89\xa6\xe2\x93\x2f\xb7\x78\xf4\xcd\x37\xd9\xe1\x6d\xcc\x2a\x77\xb8\x19\xf7\x35\xf7\xd1\x11\x05\x08\x5f\xb1\x78\x18\x81\x5a\x42\x95\xbf\xc6\xef\xd4\xdd\x7f\x03\xa6\xf7\x0c\x7b\xfa\x6b\x28\x16\x6c\xe3\x09\x3a\xf3\x86\x77\xc1\xb6\x92\xd1\x68\x32\x5c\xe3\xb7\x99\xbe\x85\x8b\xfd\x31\x36\xd3\x66\x36\x7e\x74\x0e\xe0\x5d\x4e\xe4\xdd\xe1\x04\x28\x49\x1a\x7e\x84\xfe\x96\x59\xa1\x51\x11\x84\x27\x1d\x9f\xbe\xe6\xe0\x83\xc2\x51\x0d\x70\xef\xf0\x73\x92\xf9\x10\xb2\xa1\x28\xc0\x07\x67\x5a\x62\x0c\x3a\x99\x28\x1e\x66\x62\x2a\x7e\x94\x42\xb7\xb0\xa0\xbe\xff\xe8\x1e\xc5\xe1\xc6\xaf\x9f\x70\xb1\x14\x83\x4e\xf5\x45\x1c\xe1\xf3\x2b\xb1\xb0\xc6\x61\x50\x9b\x88\x87\x6f\x4b\x5b\x9a\x1d\xea\x2a\x3f\x9b\x64\x71\xe5\xeb\xaa\xe8\x2d\xfb\x0a\xbf\xc6\x1f\xa9\xe6\xe0\x80\x08\x39\xde\xcb\xec\x33\x2e\xf3\xc2\xb4\x83\x13\x83\x47\xb7\xf0\x00\x9e\x55\x09\x85\x05\x2c\xbb\xe4\x09\x12\xd9\x5f\x6d\x90\x79\x1a\x6b\xee\xd5\xe0\xf8\x95\x26\x63\x64\x9d\xe2\x2f\xad\x4e\xd3\x33\x51\x3f\x84\xba\x41\xa2\x7b\x2a\x6e\xe4\xbd\x9a\x1c\xe2\x81\xe9\x89\x4c\x54\x99\xdf\xd8\xce\x26\x26\x0b\xbf\xa6\x00\x64\x6e\x73\xd6\x2e\xf2\x47\x69\x69\xf2\xce\x45\xf7\x81\xe5\xa9\x43\x90\x0b\x9d\xa1\x8c\x89\xf2\xaa\xcc\x8c\xee\x20\xa8\x81\xe8\x14\x22\xb8\xa3\x9c\x63\xe1\x77\x4f\x08\x1a\xed\x7d\x16\xc1\x96\x0d\xfd\x89\xc7\xc8\x4d\xd5\x34\xca\xa5\xc9\xb8\x5f\x9b\xc2\x7a\x8d\x71\x9f\xb6\xa7\x5a\xae\x3c\xa9\x53\xa9\xad\x9f\x51\xa5\x66\x64\xb2\x97\x83\xd7\x8d\xee\x65\x24\x95\xd7\x59\x4a\x80\x94\xde\xcb\x66\x07\xdb\x3a\x67\xba\x7e\x25\x95\x00\x6b\x02\x60\x3d\x62\x77\xf0\x16\xca\xcb\xf5\xaf\x0b\xa5\xa3\x1b\xba\xbc\x74\x4c\x04\x14\xbf\x56\x74\x29\x93\x09\x6c\xf9\xe5\x0c\x67\x36\x76\xdf\xcb\x41\x95\x0a\x52\x48\x89\x1a\xd2\x45\xb8\x30\x4b\x01\xd8\x1f\xac\x88\x57\x46\xe8\x44\x1f\x4e\xb0\x52\xb5\x87\x3a\xc0\xa8\x95\x28\xd1\xa2\xd7\xbb\xa7\xf8\x96\x6f\x5a\x21\xd7\xf0\x54\xf0\x2f\xce\x2f\x6e\xb3\xa6\xb7\x58\xa1\xe7\xb6\x1e\x94\x1b\x3b\x9c\x11\x34\x44\xa6\x8f\x0d\x99\xd0\x06\x20\xf4\x64\x0e\xdc\x56\xaa\x2b\x3b\x44\xc8\xcf\x39\x3f\x8b\x80\xdc\xb5\x6a\x24\x30\xea\xd8\x66\xe8\xeb\x4e\xc9\x36\xeb\xfd\xa0\xd0\x23\x6a\xc0\xbf\x93\xae\xce\x5d\xc8\xc3\x8c\x45\xf4\x41\xd1\x32\x19\xa9\xb5\xf2\x07\xf4\x30\x80\xef\x14\x60\x70\x49\x9d\xe4\x7e\xc8\xb9\x88\xef\x3f\xba\xef\xb0\x8e\xef\x80\x95\x68\x99\x92\xfe\x1b\x7e\x10\x3d\xe5\xa1\x9c\x48\x7e\x0b\xcb\x00\xa9\x51\x98\xd4\x03\xae\x61\x6f\xc5\x5e\x0d\x5b\x85\xec\x47\x1b\x94\x11\x44\xd7\x7f\x6c\x6c\xab\x02\xe1\xc6\xdf\x42\x1b\x6f\x63\xfa\x1f\x62\x3a\xe3\x47\x4c\xcc\x65\x84\x6a\x28\xed\x5f\x43\x2f\xce\x3e\xfc\x8f\x8f\x61\x8d\x7a\xb9\xae\x73\x72\x4d\xb6\x88\xf1\xb3\x80\x9a\xea\x60\x52\x5e\x71\xa1\x1a\xf4\x70\x9c\xcf\x87\xba\xb7\x35\x0d\x4d\xb4\xce\xa1\x0c\x36\xb3\xcd\x67\xd2\x5b\xd1\xab\x01\xc8\x14\x8f\x66\xb4\xc6\x5c\x15\x43\x83\xec\xf7\x90\x6a\x82\x55\x13\x73\x6e\x67\x68\x23\x5d\x62\x98\x92\x2c\x11\x8a\x56\x7a\x59\xaf\x87\x60\x63\x2c\xbd\x8c\xd6\x76\xcb\xb8\x18\xb6\x1d\xd3\xb3\x7a\x18\x45\xbb\xa1\x3b\xb3\x8c\xda\x86\xb6\x6b\x57\xe3\xcb\x22\x52\x97\xde\xf2\x73\xa1\x4e\x37\x5e\xc4\x74\xed\xf8\x5d\x3b\x79\x08\xde\x92\xbf\xe5\x18\x94\x60\x33\x28\xb7\x43\x6f\xa8\x00\xb0\x51\x07\xb1\xb7\xc8\x61\x46\x12\x21\x4d\x8d\xc6\x65\xd8\xd5\xc2\x44\xa5\xe8\x06\xdb\xab\xf0\x80\x4c\x7c\x9c\x46\x54\x68\x0e\xf4\x65\xd8\xc8\x8c\x7b\x09\x5f\x24\x01\x3e\x2a\x3a\x43\xbf\xdd\xe9\xba\xa6\xc1\x05\x68\x3d\xec\xa5\x21\xb3\x51\x6d\x84\x1d\x5a\x35\xb0\x0b\x2c\x7c\xa4\xe3\x77\x0b\x98\x09\xdb\x84\xa4\xe0\xe2\x59\xda\xd9\xb8\x60\x47\xc3\x1b\x10\x4b\x45\xe5\xef\xaf\xac\x14\x79\xec\xe3\x22\xe5\x85\x9c\x6c\x86\xcb\xae\xe6\x24\xcb\x10\x4b\x51\x0c\xdb\x37\xff\x76\xd6\x7e\x4b\x9b\x18\x1f\xeb\xcc\x2c\xff\x20\x91\x3a\x9e\x1f\xde\x40\x45\xb5\x43\x1f\x6f\xb0\x64\xe0\xa0\x00\x20\x6d\xb6\xab\x40\xc4\x58\x62\xc8\xcc\xfe\x90\x39\xf9\x39\xa7\xf7\x05\x0c\xba\x7c\x30\xea\x90\x6d\x76\xbe\xb7\x49\x77\x1d\xe1\x54\x0f\x9d\xd4\xb4\x1b\xe8\x89\x1d\x95\x22\x8b\x6d\x6c\xb2\x69\xd4\xaa\xca\x6c\x18\xb2\x93\x35\x69\x2a\xb2\xec\x05\xb5\x4a\x96\xbb\xac\x5a\x99\x02\xb4\x49\x83\x78\xe6\x8a\xba\x6d\xdd\x8e\xaa\x66\xb9\xf7\x8d\xc5\x6d\x0b\x5f\xd3\x16\x04\x79\x6f\x8a\x39\x0a\x3f\x65\x87\x6a\x37\xae\xe1\x40\x23\xc7\x6c\x74\x60\x64\x66\x1b\xde\x06\x83\x75\xbe\x2b\x66\xd6\xa4\x40\x3f\x39\x6f\x16\x07\x27\xf0\xbf\xe8\xc8\x2b\xcf\x58\x30\x8b\xcd\x73\x53\x9f\x9f\x8d\x0a\xb5\xd8\xe2\x9b\x70\x59\xfa\x6d\xd9\x49\x45\xcf\xb7\xe1\x7f\x9e\x11\x5d\xef\x32\xaa\x9a\xd6\x21\x63\x44\xe4\x9c\x92\xbc\xba\x9e\x47\xab\x84\xc7\xc7\xe3\xf1\xf8\x64\xbf\x7f\xd2\xb6\x8f\x17\x7a\x9d\x71\x90\xb1\xdb\x93\x5b\x79\x56\xd5\x4c\x68\x76\x86\x29\x63\xc8\x97\xc7\x0e\x4d\x2c\xf2\x79\x7a\x8f\xda\xc9\xb5\xf2\xb0\x56\xb3\x8b\x62\xda\x49\x69\xf6\x1c\x9c\x46\xb6\xef\x54\x7a\xa6\x02\xe4\x85\x5e\xe0\xe5\x7d\x99\x08\x33\x59\xd6\xc4\x0d\xdc\x83\x0d\x8c\xf6\x65\xcc\x5c\xda\x4d\x6a\xcc\x64\x50\x28\x04\xc5\xc9\x21\xc9\x84\x88\x34\xac\x51\x90\x58\x00\x5c\x16\x23\x52\xed\xff\x9d\xa2\xc4\x52\xf5\x4b\xcb\xe0\x33\xc2\x44\x75\xd0\x77\x5a\x3c\x15\x7f\xd6\x77\x1a\x7f\xaf\xd8\x71\x5f\xe6\xa8\xcf\x5b\xcc\xfe\x5d\x91\x1f\xfa\x0a\x39\x68\xaf\xb4\x53\x02\x35\xf5\x82\xe2\x3e\xd0\xb3\xa4\xb1\x6b\x45\xa7\xef\xe8\x6c\xb7\xcd\x88\x5a\x86\x23\xfb\x91\xf8\x2b\x3a\x75\xb0\x5b\x85\xaf\xbd\x23\x03\xaf\x3d\x2f\xaa\x15\x55\xc8\x6b\x1c\x3d\xcc\xd4\x1c\x9b\x8b\x37\x39\x99\x6e\x0c\xce\xe3\x59\x4e\xe0\x79\xf4\x2e\x4c\x60\xa6\x9d\xd3\x99\x65\x4f\xf0\xe4\x16\x20\xc7\xfa\x86\xdd\xb3\x53\x7e\xb0\xfd\x2e\x2d\x27\xa0\xe7\x64\x4d\x03\xdc\xba\x12\x72\x6d\x47\x36\x38\x62\xbd\x60\x22\x10\xdc\x0f\x74\x4c\xcd\x35\x81\x68\x9e\xd5\x81\xd6\xd2\x5c\x01\xdf\x2c\x9c\x39\xbc\xd9\x0d\xfa\x0d\x2c\x77\xe6\x08\x1c\x57\x3a\xa4\xd4\x7c\x7f\xc0\x82\x74\xd1\x9f\x94\x37\xed\x0f\xbd\xd6\x29\x40\xf8\x60\x5b\x86\x32\xd6\xeb\x46\xd5\xdf\x07\x9e\x25\x7f\xd1\x43\xb6\x03\x5b\xc5\x6c\x32\xc8\x80\xcc\x25\x47\x27\xaa\xb0\xdf\xd5\xe0\xd1\x63\x6a\x9c\xa1\xf9\xa5\x30\x2e\x24\x44\x35\x79\x76\x5b\xde\x0b\x67\x38\x1c\x4f\xb3\xcb\x06\x31\x38\x98\x08\xcf\x43\xf9\xf3\xcc\x55\x8b\x91\xbb\x42\xda\x8a\x26\xcb\xc5\x18\x22\x59\x56\xe6\x98\x9a\xd9\xfb\xec\xfb\x04\xd8\x8a\xde\xb5\xb0\xbf\xc6\x53\x40\x74\x73\xce\x2b\xe9\x14\x10\x86\xd0\xa2\xa7\x11\xa7\x40\x46\x13\x2e\x88\x9e\x8a\xf7\xe1\x77\x02\xde\x59\x7b\x47\x6e\xc9\xd7\xf8\x33\xe5\x6c\xb5\x0f\x99\x2f\xb4\x17\x2f\xcb\xdc\xb5\x74\xba\xc9\x63\x97\xfd\x0c\x09\x0b\x83\xc7\x06\xc6\x19\x24\x3f\x32\x98\x83\xba\xa3\x69\x52\xc4\xb7\x9b\xa3\x69\xc4\x1b\x7b\x98\xa3\x02\x30\x6d\xea\xc0\xbb\x27\x94\x90\x13\x9d\xb0\x7f\x9e\xb7\xa7\x7d\x29\xd9\x85\xef\x2a\x6b\x08\x0d\xfd\xdb\xe0\x4c\xff\xa6\x98\x02\xb6\x0f\xc8\x7a\xc4\x76\x56\xf3\x1e\xb1\x23\x0e\x60\x3a\xbf\xcc\x8d\xcd\x92\xfb\x9a\xa9\xa1\x48\xc4\x2e\xdb\x7b\x38\x0d\xdb\x22\x26\x1d\xa7\x2d\x34\x06\x36\x42\x7c\xec\x4a\x01\x28\x90\xc0\xbb\xa3\xf3\x6a\x9f\xf5\xcf\x29\x7a\x3b\x62\x64\x57\xf3\x11\x00\xe7\xf9\x7a\xd4\x9d\xd7\x06\x0b\x95\xd0\xea\xd3\x1c\x3a\xa4\x4d\xc0\x0b\x50\x8e\x2b\xf4\x4b\x00\xc5\x6d\xfe\xfe\xdd\xd5\x03\xe0\xa1\x03\x7f\x2a\x42\x5b\xac\x61\x84\xc8\xba\x82\x2e\xa5\xde\xbf\xbb\xa2\xc8\x63\x7e\xa7\x8e\xe5\x15\xab\x97\xeb\x6c\x0c\xe9\x2c\x9d\x0c\x0b\x29\x8c\xf1\xf5\x8d\x1a\x4e\x0c\x0c\xc2\xd4\x0c\x33\x19\xa1\x4e\x6f\x77\xfe\xa0\xf0\x29\xee\x03\xb8\x62\xe7\x96\x70\xc5\xf1\x3b\x81\x20\x16\xe6\x9c\xe9\x58\xe2\x6d\xba\xb8\x65\x9c\xcb\x83\x9a\x15\xfd\xef\x1e\xd7\x1c\x75\x64\x67\x4f\x37\x4e\x3c\x47\x98\x79\x79\x1a\x1a\xe7\x8f\x64\x9b\xb6\x8c\xe0\x8d\xdc\xa3\x1b\x08\x80\xfa\xe1\x41\x1c\xab\xe0\xd2\xf5\xa9\x78\x43\xbf\x1e\x06\x47\x57\xb0\xa9\xcc\x45\xf6\xf9\x50\x5f\xf3\x07\xb9\x8d\x44\x8f\x12\x22\x37\x55\xa0\x03\xf1\xef\xa3\x53\xc3\x3f\xc4\xdf\x61\x73\xff\x43\xfc\x5d\x9b\x56\x7d\xfa\x47\xd0\x23\xc5\xa8\x32\x40\x38\xce\x67\xcf\x3b\x49\x40\x85\x41\xc0\x62\xd9\xc8\xa3\xe4\x39\x59\xd0\xb9\x48\xec\xc2\x9b\xf8\xde\x07\xaf\x67\xc0\x39\x0e\x7a\x3d\x4e\x0e\xb7\x56\xa2\x8d\xdb\x6f\x74\xf7\xfd\x0c\xbf\xc4\xff\x0d\x9c\x75\x04\xc1\x60\x9b\xe8\x84\x13\x84\x5b\x47\xcf\xa3\xd8\x99\x20\x79\xa8\xa2\x0b\x10\x19\xc3\x06\xb8\xf2\x7d\x48\x79\x9e\x27\xdf\xff\xe4\xe2\x4a\x1a\xf2\xf6\x43\x8e\xcd\xb2\x13\xce\xdc\xab\xc1\x47\x75\x9a\x17\xb7\x56\xbc\x53\xdb\xb1\x93\x43\xfe\xf2\x68\x5a\x60\x3a\x2d\x01\x0f\xb3\xe2\x78\x86\xc0\xe0\x88\x81\x71\x65\x64\x37\xbe\x41\x62\x49\x7d\x50\xf7\x6a\x20\x47\x21\xd3\x5a\x88\x27\x72\xc8\x14\x3d\x61\xaf\x8a\xe5\x93\xe7\xa2\xe2\x6c\x34\xb8\x0d\xa8\x5b\x5c\x6a\x05\x5d\xf9\xc5\x36\xd0\xcb\xe7\x85\x16\xa4\xeb\xcb\xf0\xf6\x99\xf5\x8e\x13\xae\x84\xa0\xc9\x01\xc1\xe4\x35\x5a\x92\x0e\x09\x2a\x38\x93\xa7\x26\xa1\x71\x41\xe9\xa8\x2b\xdf\x0e\xe4\xfc\xf1\x29\x6c\x50\xfa\xf9\x36\xb8\x8f\x9c\x83\x45\x95\x57\xf2\x19\x59\x0e\x0a\x8c\x05\xaf\x03\xdc\x10\x3c\x49\xe5\x6b\x78\x38\xcf\x63\x1c\x3d\x76\xad\x8f\x6c\x16\x3a\x44\x70\x0b\xcd\x9b\x4c\xd3\xe2\xdb\x79\xbd\xc9\xd6\x30\xda\xa8\x6a\xd3\xea\x7b\xdd\x8e\xb2\xc3\xc6\x3c\x84\xf7\xf7\x25\xde\xc6\x1a\x7c\x45\x76\x12\xf7\xa4\x43\xb8\xc3\x63\x3c\x55\xb4\xfa\xd9\x24\x6f\xb6\x8b\x3d\x02\xe2\x13\xef\xf1\x78\x27\xa1\x57\x5a\x91\xfc\x52\xe6\x72\x25\x09\x8d\xb8\x3e\xc8\x39\x4f\x58\xa5\x3f\xcc\xb8\x06\xbe\x78\xfb\x65\x00\x9c\x78\x4e\x3f\x93\x5e\x2e\x82\x85\x09\x7d\x1b\xac\x51\x15\x16\x42\xde\xa0\x95\x5e\x26\xcd\x9d\xb1\xfc\x78\x7e\x2d\x9b\xbb\x45\x99\x60\x11\xff\xc2\xfe\xca\xc5\x0e\x18\xb8\x10\x20\x11\xad\x85\xa1\x62\x20\xa7\x67\x73\x66\x68\x26\x1c\xbf\xcb\x49\x53\x68\x70\xb2\x82\xc5\xae\x4c\x5d\xd4\x25\x82\x39\x31\xae\xc7\xa6\x2d\xd1\xa3\x13\x03\x15\x3a\x50\x78\x96\xfd\x67\x46\xeb\xf4\x40\x25\x42\xf4\x59\x8f\x0a\xa7\xf1\xfd\xfe\x24\x61\xcb\xfc\x1e\xe4\x52\x20\xd0\x4a\x8e\xcf\x1b\x34\xfe\x79\x17\xe9\x29\x31\x86\x0b\xd6\x1e\x87\xfc\x9c\x95\x1c\xe7\xd1\xbe\x83\x5c\x6c\x66\x2e\x40\xf2\xcb\x77\x77\xba\xad\xf8\xf2\x86\x06\xe0\x22\x3c\xe0\x0f\xcc\x0d\x6a\x30\xe0\xfc\xec\x95\x69\xd1\x08\x62\x43\xfa\x2a\x5a\x16\x53\xa4\x27\x57\xca\x67\xf4\x28\xa7\x24\x87\x65\x64\x41\xda\xfc\x8c\x5f\xc4\xf9\xee\x0f\xa6\x06\x18\xf6\x1a\xcd\x0d\x92\xe4\x24\xef\x90\xbf\x0c\x74\x19\x5d\xc7\x04\x82\xbb\x80\x6a\xf1\x44\x48\x2e\x80\x63\xd3\x42\x81\xe1\x74\xf3\x4a\xaf\x1c\x4b\xde\x38\x32\x79\xa6\xad\x27\x26\x15\x17\x6d\x8b\xfd\x29\x4c\x2b\x4e\x16\x98\xb8\xcf\x2a\x70\x95\xee\xb3\xe6\xeb\x65\x52\x71\xf0\xa1\x35\x17\xaa\xed\x90\x5b\x10\xe4\x0d\x5b\xe8\xd2\x62\xb1\xe2\x92\x87\x82\xe4\xc1\x7a\x4c\x8f\x04\x76\x14\x89\x2c\x57\x2d\xa4\x87\x59\xd3\xe3\x71\xb2\x66\x1f\xf0\xb9\x15\x1a\x45\x5a\xc6\x53\x23\x77\xb9\x38\x6a\xec\x14\x27\x17\x92\xd1\x26\x9c\x42\xb8\x95\x66\xb8\x6c\x2d\x8e\xe7\xe3\x2a\x2b\x81\x0e\xf1\xd3\xeb\xf7\xda\xdb\x7a\x3d\x1b\xf8\xc2\x3f\x7e\xf9\x00\x9e\x5f\x3b\x92\xff\x33\x64\x24\xf3\xb2\xab\x42\xb8\x02\x36\x1e\x9d\xa9\xb3\xaf\x1d\x0e\xab\x3f\x75\x70\xcd\xb9\x87\x9d\xcd\xd8\xaa\xcf\x57\x00\x0b\xef\x40\x1a\x13\x5e\xa4\xac\x3f\x99\x28\x56\xa2\x22\x94\xb5\x2b\x78\x33\xb7\x1f\x9b\x1d\x29\x3e\x51\x89\xc2\xb1\x7a\xdf\xde\xdc\xe2\x2d\xbd\x17\x7e\xd0\xdb\x2d\x9c\xf0\xe2\xcf\x3b\x65\x30\x78\xa2\xb3\x7b\xc5\xe4\xb3\x69\xc6\x01\xd5\x1b\x14\x25\xee\xa0\x82\xb7\x2a\xd3\xf2\x79\x97\xbb\xcc\x0c\xfa\x03\xba\xad\x17\x18\xc7\x16\xad\xd9\x7a\xd5\xe8\xcd\x71\x25\xae\x94\x1c\x0c\x05\x5d\x0b\x06\x46\x0f\xbe\x15\x89\x3d\xc1\x17\xce\x3f\x7e\x27\x7f\xca\x0f\x69\xca\xcc\xf7\x07\x9f\x84\xb3\xe1\x99\x82\x2e\xb9\x87\x0a\x23\xfc\x90\x6a\x1c\x4f\x05\x3a\xfb\x35\x1c\x32\x82\xdf\xdf\x7e\xc9\x3e\x98\xb5\x21\x8f\xd2\x47\x55\x7f\x29\x65\x67\x54\x2b\x8c\x05\x19\xdb\xf2\x54\xdc\x2a\x87\xfe\x84\xf0\xfb\x33\xe0\x61\x08\x6e\x28\x5c\x13\x9a\x5c\xf6\xa3\xdb\xf1\xb2\x88\x58\x43\x60\x49\x64\xd9\xc2\x18\xb9\xb9\xba\x67\xb1\x8e\xd4\x45\x6c\xda\x61\xda\x4f\x5a\xfb\x74\xdb\x4e\xd5\xfd\x6d\x54\xa3\xc2\x80\xc5\x7b\x79\xa4\x40\x84\x1b\x75\x10\x4e\x35\xd6\xb4\x2e\x3c\x54\xd5\x1e\x1f\xd3\x38\x31\xf6\xe1\x71\xd3\x6c\x4a\xe6\x6d\x4b\xd7\xc5\xe1\x8e\x78\x01\xc4\xf5\x96\x3c\xc7\xbc\xe3\x9f\x73\x20\xba\x77\x82\x5e\xbd\xa4\x5f\x73\x90\x9e\x03\xed\xc4\x90\x3b\x73\x90\xb5\x6d\x61\xce\x7e\xb6\xed\x71\xae\x06\x0d\xb3\x13\x75\xa1\xb8\x97\x7b\x7b\xc0\x98\x0f\xeb\x23\x66\x68\xef\x54\xb7\x21\x97\xf8\x20\x60\xaa\xf0\xe6\x19\x39\x96\xf8\x2c\x5b\xd0\x16\xe2\x71\x42\x67\x7e\x68\xb9\x9f\x1b\x67\x70\x94\xe0\xdc\xcf\xed\xb4\x4d\xf4\x22\x9a\xdb\xf5\x8a\x84\x03\x9c\x4d\xd4\x7f\x52\x6c\xb6\x73\x10\xae\xfb\xec\xd5\x58\xd0\xeb\xf4\x14\x17\x4d\xb5\x48\x03\x30\xcc\x44\x00\x21\xe9\x8a\x1e\x25\x66\x6e\x90\x12\x4f\xad\x1d\xd6\xb3\xd0\x22\x76\x5b\x05\x03\x44\x0e\xab\x66\x10\xc9\x2e\x16\x81\x82\x03\xcc\x29\x8f\xc4\xe0\x49\xb9\xfa\xb2\x20\x1f\x19\x01\x8e\x13\x63\xb7\xcc\xd8\x71\xbc\x33\x52\xb2\x00\x61\x0d\x3a\x95\xcc\x06\x06\xc6\xea\xfd\xbb\xab\x9c\x18\x9e\x0b\x09\xe7\x2f\xa9\x24\x06\xb5\x95\x43\x1b\x9e\x5e\x33\x61\xde\x49\x4f\x04\x38\xf7\xcb\x8c\x8e\x44\x18\x05\x3d\x9a\xbb\xd3\x06\x7d\x6d\xa1\xec\xc0\xca\x2f\x10\xe3\xd2\x75\x17\xd0\xe2\xb1\x07\xf2\x4c\xb4\x3e\xd4\x83\x5d\xfe\xe6\xdf\x6f\xde\xbe\x39\x17\x9f\x9e\x1c\x0e\x87\x27\x50\xfc\xc9\x38\x74\xca\x40\x17\xda\x73\xf1\x7f\xbd\xbe\x3a\x17\xca\x37\xdf\xae\xc4\x6b\xa2\xda\x89\x18\xb2\xc5\x09\x5a\x93\xa1\xf9\xc6\x38\xfc\x0b\xd4\x9c\x77\x0c\x2b\x16\xf3\x40\x55\x39\x73\x07\xb3\x17\xde\x1a\x84\x18\x4f\xf8\xe6\x20\x63\x14\x9a\x41\xa1\xa9\x3e\xfe\xc8\x32\x3a\xd9\xdc\x2d\xb9\x81\x9f\x82\xe8\xc6\x1a\x6e\xc6\xab\x86\x83\xcf\x4f\x40\x82\x75\xea\x25\xda\xa5\x26\x55\x27\x4c\x5c\x3c\x85\x77\xca\x00\x95\x1a\xbb\xb6\x3c\x60\xd6\x2a\x4c\x84\x6a\xff\x38\x2d\x8c\x6e\x35\x30\x76\xf2\x53\xf1\xef\xf8\xac\x7c\x17\x6e\xb4\x20\x2b\xac\x2d\x04\x5e\x4d\x0b\x63\x3c\xbc\x4c\xfa\x79\x2a\x5e\x51\x60\xbe\x20\x7d\xa5\xbc\x28\x81\xcd\x90\xb0\x32\xec\xa9\xb8\x52\x5e\xec\xa3\x72\x0c\xd7\x1a\xa1\x9b\x17\x29\x2d\x1e\x96\xb3\xc3\xb8\x90\x15\xca\x39\x7b\xda\x08\xe6\x00\xf3\x71\x28\xec\x7b\x0a\xcb\x9e\x07\x40\xa3\xd7\xa8\xdc\x2a\x87\xec\xbc\xcf\xc9\x7a\xbd\x3d\x17\xc1\xf2\xfb\x9c\xef\x35\xcf\xc3\x63\xb1\xf6\x5c\x8c\x26\xfd\x26\xab\x5b\x16\x88\xc2\x27\xda\x55\xc0\x27\xdf\x00\xed\x06\x6b\xf4\x6f\x0b\x83\x82\x87\x29\x79\x45\x59\x9c\xe4\x8c\xc2\x23\x28\x2b\xe1\xe6\xe2\x3b\x91\xd6\x10\xe9\x52\x4d\x33\x92\x61\xd5\x33\xe5\xd1\x2f\xfa\x12\x35\x21\x6d\x55\x5c\x77\x69\xff\x07\x0a\xcd\xe7\x27\xb1\xa2\xe4\x53\xb2\xa0\x7f\x48\xfc\x4a\x89\x67\xf9\x38\x5f\xcd\xa8\x6b\xe2\x5d\x99\xba\xce\xf8\x33\x06\x9c\xd4\x31\x63\x8b\x78\x2a\xe6\xe2\x54\xaa\xe1\x14\x07\x48\x6f\x62\x02\x67\x12\x62\xb3\xa0\x63\xde\x67\x31\xad\xe4\xa7\x03\x9d\xc1\x93\xa3\x24\x32\xf8\xdc\x16\x29\x41\x7e\x26\x00\x67\x5e\x5a\xd5\x03\x08\xda\xd4\x6b\xe3\x55\x70\x88\x34\xf3\xa5\x9d\xf3\x2a\x84\x35\x78\x46\x25\x0f\xae\x93\xcc\xd6\xee\x25\xde\xe8\x3e\xc3\x1f\x33\xda\xb4\x93\xc6\x90\xf5\x0a\xfd\xca\x47\xab\xef\xec\x31\xb8\x1b\x7f\x86\x5f\x1c\x42\x25\xef\x59\x02\xe3\x4e\x25\xc8\x25\x5c\x89\x99\x46\x28\xc4\x8e\x32\xe5\xa0\x64\xfb\x84\xe2\xe3\xe3\x94\xae\xc4\xed\x4e\x1d\xa3\xc3\x2a\x8c\x4f\x82\xb7\x0b\xa5\x6f\x56\x8a\xbc\xce\x5e\xbb\xb3\xa1\x41\x97\x48\x79\x07\xfe\x92\x05\x28\x65\x29\xca\x1c\x45\x9b\x9a\x91\xeb\x2d\x0a\x7b\xab\xa5\x5e\xcc\xdd\x64\x47\xa8\xa9\x3b\xef\xd4\xd3\x93\xee\xbc\xf3\xa2\xb9\x4f\xef\xac\x28\x9e\xfc\x71\x10\x16\x0d\x0c\x8a\x69\x99\x7b\xec\x4e\x5d\xfd\x02\xa7\xdd\xcb\x33\x37\x15\x9d\x3e\x3b\xd5\x0f\xd9\x17\xb5\x79\xe7\xbe\xc0\x7d\xf7\xf4\x55\xfd\x17\x48\x51\x4b\x6d\x49\x83\x92\x8d\xee\xe7\xac\x8d\x5a\xbd\xd9\xac\xc8\x3d\x51\xed\xec\x38\x60\x64\xc9\x9f\xf1\x5b\xdc\xe0\x37\x81\xb0\x3b\x8a\xa7\xec\x97\x82\x12\xf9\x59\xcf\x53\x36\x93\xa4\x44\x34\x38\x9e\x46\xd9\x7f\xa6\x37\x1b\x32\x3e\x7e\x63\x31\xd8\x09\xe5\xac\xa8\x08\x46\x25\x87\x5f\xe8\xdd\x3b\x46\x25\xc7\x42\x37\x90\x92\x81\xb9\xbe\xd3\x1e\x3d\x3b\x01\x18\x7c\xa0\x6f\xa7\x0c\x62\x34\xe8\xb9\x22\xc0\xbc\xa7\xcf\x1c\x0a\x50\xc6\xf7\x3f\x41\x05\x7b\xd6\x46\x77\x0b\x28\x3c\x24\xe5\x2c\xae\xd0\x00\x77\xd6\xc2\xb2\xd2\x28\x1d\x24\x90\xdc\x5b\xee\x59\x1b\x15\x43\x09\x82\x07\x1a\x09\xd6\xcf\xaf\xde\xd0\x27\x7a\x62\xe2\x07\xbb\xe8\xa0\xea\xb9\xee\x78\xbc\x39\xd2\x4f\x8f\xee\x1e\x28\x62\x3e\xc0\x41\x9e\xc8\x92\x33\x93\xd5\xdc\x45\x15\xe1\xf0\xd6\xd6\x7b\x69\x8e\xd1\x98\xfd\xc6\xee\x15\x4b\x46\x20\x41\x51\xb4\xc6\x9d\x3d\x64\xf6\xbd\xd6\x0a\x28\xc2\x50\x61\x40\x82\x96\x02\xd0\x56\xc1\x2b\xd7\x6a\xc9\x3b\x57\xc8\x23\xb7\x6a\xa4\x2d\xa7\x5d\xca\x20\x11\xa2\x1d\xe4\x06\xcd\x2d\xe1\x7f\x4c\xed\x07\x95\x8a\x5d\x0f\xea\xc9\xb4\x98\xf3\xbc\xa4\x6e\xf0\x47\x4c\x67\x73\x49\xf8\x17\xd3\xe4\x8e\x4c\x75\xd2\xcc\xa4\x19\x0b\x96\xbd\xde\x8a\x33\xc7\x5e\x3c\x78\x23\x4e\x2a\xc4\x5d\x90\x82\x1e\xe3\x1e\xb9\xb4\xad\x2a\xfa\x9a\xdb\x61\x62\xc0\x02\xb7\x13\x71\x7c\xbc\x15\xda\x93\x33\xf2\x7e\xb0\xed\xd8\xf8\x55\xd1\xee\xa2\x34\xb1\x2f\x2a\xac\x46\xd1\xd9\x2d\xca\x18\xe8\x76\x89\x62\xc8\x8c\x06\xc4\x6d\x8f\x71\xb3\xc8\x61\x08\x6f\x72\xbd\xef\x07\xd2\x18\x06\xf4\x5e\x6e\xa3\xb3\x74\xb9\xa5\x17\x66\x29\x0f\xf5\x53\x21\x12\x5c\x51\x26\x45\x65\x0e\x97\xc2\xc9\x77\x8b\x97\x5b\xe4\xfb\x9a\xdc\x4f\x1e\x30\xb1\xd6\xd0\xe5\xb6\xdb\x65\x0d\x28\x4e\x9c\x90\x3a\x3f\x65\x42\x4e\x69\x82\x95\x2d\x0b\xde\xce\xec\xae\x2c\xe6\x80\x7c\x44\x4c\xfe\x15\xfd\x5a\xad\x56\x0b\xab\x69\xee\xce\xbf\x1f\xd4\x93\xe9\x5c\x67\xf0\x71\x00\xfe\xac\x1e\x77\x9d\xe8\xad\x36\x5e\x90\x49\xa1\xf4\xc5\x4a\x09\x0a\x53\x9e\x5a\x6d\xcd\x13\x3c\xbe\x52\x33\xa6\x86\xb4\xb1\x3a\x5e\x28\x69\xc9\xcc\x56\x3b\x3a\x1a\xe7\x9d\x82\x36\x8a\xe5\x76\xc1\xd5\x93\x36\x0c\x1a\x0b\xcf\x36\x1a\x31\x87\x09\xaa\xbc\x28\x5b\x00\xa6\xa3\x90\xb3\x92\x82\x7d\x0a\xb3\x7c\xfa\x85\x7a\xa6\x46\x89\x18\x9d\xc9\xf5\xd6\xc4\x3b\x27\x2f\xb7\x0f\x9c\x75\xb3\xda\xf2\x8b\x1b\xaa\xe2\x33\x87\xdb\x74\x0f\x94\x26\x8e\x19\x1e\x66\x41\x80\x82\xf2\x1e\x99\xb1\x20\x33\x5c\x6c\x12\x9e\xed\xab\xb0\x0e\x62\x98\x73\x6e\x3f\x3f\xc7\xc3\x83\x39\xfc\xae\xaa\x0f\x76\xd8\x7e\x4c\xe1\x6a\xa3\x1e\xbf\x50\xc5\xa3\x36\x07\x60\x62\x78\xb9\x13\x80\x29\xe4\x5c\xc2\x18\x16\xf0\x0b\xd8\xa6\xa5\x06\x1e\x00\x48\x97\x46\x51\xd4\xd1\xd4\x37\x78\x27\x5f\x05\xd7\x98\x14\x29\x93\x6d\x70\xf3\xea\xc8\x63\x65\xb2\xec\x7c\xcf\x0f\xec\xd9\xaa\xfc\xa9\xb8\xc6\x1f\x95\x36\xf7\xda\x03\x5f\xb1\x57\x64\xce\xf2\x0a\x13\xf0\x1c\xb2\x46\x55\xe4\x0d\x9f\xa2\xeb\xba\x0a\x5d\xb7\xf1\xd5\x81\xc3\x97\x61\xf8\x8b\xd3\x27\x01\x25\x8b\x00\x90\x99\x3f\x32\x0c\xcd\x5a\x18\x0e\x03\x72\x1c\x95\x85\x27\x05\x31\xda\x6f\x08\xf1\x8b\x43\x88\xa9\x0f\x41\x17\xae\xbf\x81\x3a\x8c\xc1\x57\x07\xe2\xc2\x37\x73\x86\x84\x1c\x5c\x54\x18\x2e\xd6\x14\x8f\x88\xdd\x2a\x55\x93\xd1\x9a\x1d\xbd\x37\x48\xc5\x80\x69\x44\x93\xc9\x3f\x12\x7c\xe1\xfe\x96\x15\x2c\x92\x5c\xf7\x53\xb2\xe8\xd4\xbd\xea\x0a\x8d\x0b\x22\x02\x09\xe1\x8f\x27\x02\x5e\xce\xc3\x23\x7f\xbd\x4f\xe5\x39\x8e\x07\xbd\x2a\x23\xba\x34\xa0\x59\x63\x52\xa8\xe5\x79\x23\xfe\x69\x93\xe1\xe5\xf0\x8c\xb9\x32\x7a\x12\xa7\x31\x66\x2d\x05\x6c\xfc\x67\xac\x52\x4b\xd0\x8c\x98\x15\x03\x17\x31\x7d\xe9\x45\x34\x1b\xbb\xda\x61\xfb\xaf\xd9\xba\x96\x61\x88\xa7\xad\x9e\xc5\x14\x2c\x1a\xfd\x75\xb1\x05\x4f\x1a\x6e\x14\x14\x66\xaa\xda\x98\x05\xbc\xc0\x0e\x3e\x58\xa4\x0c\x7f\x91\x37\x38\xaa\xe3\x33\xc3\x09\xbe\x6b\xa5\xc0\x17\x74\x25\xf7\xf9\xe8\x17\x27\x2e\xdc\x1f\x0a\x83\x31\x6d\x25\x50\xa6\xe8\x91\x23\x6f\xe4\x83\x25\x72\x6e\xc6\x4e\x2e\x6f\xff\xf9\xd0\x18\xcb\xf7\xa8\x17\x6d\x1b\x74\x5c\xec\x09\x3f\x8c\x5f\xd2\xa3\x6d\x32\x0f\x75\xd3\xc0\x27\x69\xe4\x90\x6f\xa5\xc1\x9d\x84\xbd\x66\x5a\xbf\x4a\x51\x93\xeb\x22\x1c\xc6\xeb\x14\x97\x39\x45\xc6\xf8\x21\x16\x63\x93\xca\x10\x2b\x6c\x92\x9e\xe8\x2b\x3e\x67\xe9\x29\x36\x45\x02\xa2\x6f\x8a\x64\xb8\x94\x33\x2d\x5f\xd6\x41\xff\xeb\xc1\x76\x2a\x36\x54\xbc\xb3\x9d\x4a\xcd\x2b\xfd\x51\x94\x05\x63\x99\x98\xce\xea\x82\x10\x9b\x20\xa6\x53\x98\x69\x0e\x4c\x13\x53\xf9\x8c\xcd\xfd\x86\x22\x3f\xce\xd8\x51\xbc\xf9\x61\x0a\x6d\xd0\x41\x1f\x9f\xc6\x6f\xec\xa1\xa2\xa3\x78\x85\x0e\x2f\x28\x8c\x33\xa7\x94\x95\x52\x1a\x70\x46\xc9\xa3\xed\x3b\x90\xb1\x28\x26\xd1\x3c\x7f\xe2\xf2\x1e\x4f\xa2\xe8\xec\x3e\xc4\x31\x07\xc6\x9e\xdd\xaa\x18\xba\x6c\x2e\x9d\xb5\x13\xd6\x89\x23\x5d\x7a\xec\x53\xd4\x9b\x43\x7c\x49\xc5\xf8\x90\x63\x5a\xdd\x79\x50\xfc\xa2\x3e\x8e\x35\xd2\x14\xa9\x8f\x6a\x41\x0b\xc7\xd4\x0e\x7c\x4f\x52\xb6\x23\x87\xf8\x92\x76\x40\x2d\xf8\x84\x9f\x04\xc5\x07\xda\x23\xdb\x10\x8a\xb3\x30\xc4\x9a\x36\x31\x79\x4d\xbf\xcd\xce\x7f\x34\x66\x6b\x27\xfc\x8c\x5b\x2d\x1d\xa9\x94\x43\xb6\x47\x0b\x2c\x07\x19\x96\x2e\x06\xeb\xfa\x3c\x11\x40\x5f\x09\x50\x32\x82\x66\x26\xa3\x85\x2f\xcb\xf9\xb9\x44\xed\x4a\x2c\x22\xf2\x0a\x4c\x1b\x38\xf3\xf3\x47\x32\xc1\x05\x67\xce\xc4\x2f\xe6\x87\x0a\x32\x8c\x61\x26\x5b\x84\x48\x06\x2d\xb0\xc1\xb2\x5a\xe7\xc8\x22\x31\x47\xa8\x48\xc4\xe7\x70\x61\xc7\xe6\xdc\x5e\x76\x0b\xa1\xf0\xb2\x25\x74\x35\x18\xf0\x21\xd4\x5e\x1e\xa7\xc1\xa6\x80\xc5\x2e\x77\xcd\x69\xc1\x6a\xde\x94\x74\xae\xbf\xd0\xf7\xca\xa4\x05\x73\x52\xb8\x5a\xe5\x5b\x7d\xbe\x40\xd2\xb2\xdb\x0e\xe8\x46\x22\xcc\x35\x10\x8b\x6c\x29\x20\xc2\x1f\x62\x2f\x1b\x69\xa6\xd4\x00\xed\x68\x94\xdc\x3f\x7e\x88\x28\x7c\x45\x03\x90\x6c\x3c\xdc\x02\x24\x0b\xe4\xb8\xc8\xb4\x39\x09\x78\xa8\x21\xb4\xe7\xbf\xa2\x21\x48\x37\xbe\xb0\x21\xe7\xa1\x15\x1c\xf3\xbc\x6d\x17\xf7\xff\x43\xed\x9b\x88\x4f\xb8\x38\x8b\xa0\xfc\x81\x18\xa0\x7d\x19\xca\x77\x8b\xf6\x65\x99\x9a\x7a\xb5\x9a\xee\x92\xcc\x40\x2e\xdb\x29\x99\x2d\x6e\x68\x0b\x9a\xc2\xf1\x9b\x05\x3e\xe5\x12\x2a\x63\x0d\x05\xf3\x34\x3e\x7f\xd7\x50\xc6\xb7\x78\x3c\x00\xfb\x71\x64\x4e\x07\x1d\x91\x17\xe1\x39\x52\xac\x04\x92\x04\xd1\x24\x64\x70\x7e\x55\x55\x1f\x70\xae\x3e\x56\xad\x74\xbb\xb5\x95\x18\x7b\xfa\x59\xf8\x5d\x91\x86\x8d\xae\xc5\x31\x3c\x7e\x0a\x13\x37\x8b\x93\x3f\x19\xd4\x62\x3c\xe5\xe8\x77\x20\x04\x46\xe9\xe1\xa2\x48\x70\x14\x39\x6d\x1b\x58\xc4\xed\xc8\xcf\x17\xd9\x84\x16\xdf\xe2\x39\xaf\xf6\xe2\x0d\x25\x54\x7b\x6b\x34\x59\xeb\xbd\xa6\x5f\xda\x6c\xab\xe2\x0d\xee\x73\xf8\xa0\x88\x9c\x9c\x72\x25\x9d\xaf\xbc\xf5\x18\x83\xe5\x16\xfe\xff\x20\xce\xda\x2a\x75\x1d\x75\xe1\xda\x79\x64\x9e\x6e\xc2\x6f\x97\x01\x64\x21\xf5\xd1\x85\x00\x7f\xe4\x28\xb0\x9d\xa8\xba\x1f\xb3\x76\x73\x2b\x11\xeb\xe8\x96\xaa\x0c\x2f\x6b\xd1\x88\xa4\x95\x5e\xae\x83\x52\xe7\xc7\x35\xea\x6a\xd7\x3f\x91\xc2\xf3\x3c\x4b\x28\x66\x24\xcf\xe8\x63\x98\xd8\x22\xb9\x3c\x4b\x53\x3a\x45\x3d\x2a\x92\x9c\x97\x65\x5d\xb2\x99\xd5\x12\x2e\x6e\xf2\xb4\x60\x35\x9d\x52\x82\xfd\x74\x81\xbd\x8c\x15\x9a\x67\xd1\x43\x81\x22\x89\x1e\xa5\x4c\x7a\x42\xea\xe4\x3c\xad\xb3\x5b\x6d\x04\xa9\xa8\xcb\xee\x31\xc3\x5e\xe2\x0c\x2f\xd4\x0b\x14\xe8\x36\x2c\x4f\xc1\x3b\x64\x2f\x5d\x59\x1a\x37\x68\x9e\xc0\xcf\xaa\x67\x80\xc9\x3f\x95\x5b\x2d\x2d\xa4\x20\x87\xc7\xc5\x44\xc2\xf8\x12\xa4\x3b\x68\x0a\x1b\x73\x83\x3f\x16\x61\x86\x11\x95\x95\xa3\xc9\x72\x9b\x4e\x49\x53\x73\x38\x55\xcb\xb1\x9b\x2e\x21\x31\x84\x4e\x15\x6f\x71\x3f\xba\x07\x0b\x65\x07\xe3\x45\xd7\x09\x0e\xd7\xca\x25\xb3\x07\x0a\xcb\x27\x64\xc2\xcc\x67\x2d\x9b\x87\xc9\x24\x20\xba\xc4\x7a\x48\xf4\x8d\xc3\x46\x0e\x21\xfb\x8b\x70\x4c\x5a\x99\x20\x22\x9a\xaf\x6f\x2a\x1e\x00\x40\xf0\xf5\xbd\x9a\x34\xb2\x8c\x69\xc9\x20\x9f\xc1\x30\x69\xe2\x22\x8a\xaf\x6f\x24\x1e\xb5\x66\x4b\xc7\xce\x89\x46\x1e\x31\xde\xee\xd0\xb2\xe4\xda\x59\x87\x91\xb3\x39\x58\xc9\xc3\x28\x4f\xb5\xfa\x41\x9c\x5f\xd1\x8d\xad\xf6\xf5\xb6\x49\xcd\xb7\x62\x2b\x87\x35\x50\x6e\x38\xdd\x55\x43\x7e\x97\x4c\xa9\xeb\x5c\x2e\xfe\xd0\x00\x63\x83\x5a\x60\xa6\x16\xd0\x9f\x6a\xdb\xa0\xf0\xc5\xb7\xec\xba\xda\xb9\x1d\x5b\x1a\xbc\x53\x74\x3b\xf3\x78\xe5\xdc\xee\x3b\xc9\x61\xd0\x14\xde\xc9\xbb\xc7\xe4\x55\xf8\x9b\x46\xe2\x93\xc6\x1f\x30\x30\x0c\x92\x76\x2c\x1d\x58\x5b\x18\xad\x6f\x1f\xac\x68\xd2\x97\x8c\xae\x67\x63\x3b\x60\x53\xbc\xfa\xa2\x1e\x64\x76\x35\x79\x37\x60\xa1\x30\x11\x43\x92\x67\x37\xe5\xc0\x7d\x63\x94\x6a\x55\x4b\x6f\x6f\xd9\x34\x94\x4f\xed\x10\x96\x81\x2f\x48\x4f\x74\x28\xaf\xf7\x81\x19\x7a\x5c\xb4\xe2\xeb\xfa\xa8\x8d\xf6\xb3\x8d\xf0\x0e\x93\x39\xf6\xe2\x3f\xb5\x1d\x96\x10\xff\xab\xdb\x61\xc8\x5a\x35\xdd\x14\x39\x7b\x80\x51\xdf\xea\xb1\xf7\x1a\x8f\x89\x1b\x8a\x02\xf7\x1e\xbf\x73\x72\x3d\x0e\x03\xb0\x88\x5b\x3b\xd8\xd1\x6b\xf2\xb2\x4e\x69\xe2\x45\x48\x73\x0b\x05\xf0\xa2\xe3\x58\x8f\xec\x35\x24\x94\x79\x8d\xc9\xe2\x3d\xba\xc9\x4f\xa5\x90\x7b\x0a\x65\x64\x87\xea\x60\xd2\x53\x23\x5b\xc5\xa5\x2e\x42\x46\x56\x92\xcb\xd8\xb5\x97\xec\x0a\x82\x81\xdf\x72\x4a\x06\x8b\xd7\x8b\x6a\xa8\x3b\x6b\xef\xc6\xbe\x86\xae\xa2\x33\x0d\x4a\x16\x57\x98\x2c\x6e\x21\x79\x5e\x43\x68\x55\x2c\x36\x69\xd4\xa9\x72\x9b\x41\xcd\xca\x3c\x1f\xd4\x1c\x3e\x8c\xdc\x4e\xc9\x7e\x36\x6e\x2f\x95\xec\x67\xa3\x86\x90\xf3\x01\x40\xd8\xd3\xa3\x90\x97\xd2\x2d\x4a\xd1\x79\x89\x57\x6d\x77\xaa\x0e\x8d\x46\x49\x53\x78\x03\x5c\xfc\x89\x12\xcc\x4d\x4d\x5b\xc5\x57\x82\xb3\x56\xd9\xf5\x5f\x55\xe3\x5d\x80\x7e\x4b\x9f\x19\xd4\xda\x5a\xef\xfc\x20\x7b\x60\x84\xd1\xc2\x96\x86\xe9\xe7\x90\x0e\x8c\x70\x73\x37\x1b\x29\x82\x9e\x0f\x15\x41\x9f\x1e\xab\xbd\xeb\xa5\xa9\x9d\x1f\xc6\xc6\x8f\x83\x72\xb1\xc2\xd7\x37\xbd\x34\xe2\x26\x66\xcc\x6a\x9c\x95\xcc\x57\xe8\xb4\xf0\x52\xcd\x8d\x6c\x76\x6a\xb1\xea\x4b\xc8\x79\xb0\xee\x59\xd9\xbc\xf2\x59\xf1\xa5\x9d\x32\xd8\x8d\xee\x80\x28\xad\xc7\xe6\x4e\xf9\x7a\x27\xdd\xae\x46\x5b\x90\x1c\xd7\x75\x00\x13\x3f\x23\x98\x78\x29\xdd\x4e\xdc\xa2\xca\x6d\x01\xeb\xb6\xa9\xf7\xca\x4b\xb4\x5d\xca\xb0\xbc\xb8\x14\xaf\x39\x79\xa9\x14\xaa\xe2\x6a\x96\x7f\x78\x17\x02\x4b\x9a\x61\x78\x8b\xda\x3a\x16\x89\x2e\x22\xc8\x12\x36\xa3\x3e\xf1\x81\xde\x1c\x1b\x0e\xfd\xf6\xc9\x43\x1b\xde\x51\x4a\x06\x8b\x42\xde\xb6\xa9\x03\x8d\x44\xf3\x15\x74\xb0\xf3\xe2\x12\xb7\xef\x8c\x82\x25\x60\x22\x5c\x2f\x2e\xc5\xb5\x1c\xdd\x22\x60\x2f\x69\x33\x9d\x84\x0c\xd5\x07\xc0\x50\xf3\x14\x8e\x2b\x75\x34\x94\x44\x56\x48\xc2\xa6\xe7\x62\x7b\x69\xe4\x56\xd5\xbd\x24\x4b\x4d\x7c\x2d\xf6\x1a\xd3\xc4\x35\xa4\x31\xac\x51\x87\xfc\x4a\x25\xdd\xed\x86\x80\xe7\x0c\x46\x72\x05\x4a\x13\x94\x12\x38\xe1\x36\x98\x0d\x23\x89\xe6\xbc\xc2\x21\x10\xa5\xa5\x03\xb4\xb7\x8e\xd3\x82\xa3\xb6\xe8\x4c\x9f\xd3\xd1\xca\x7c\x50\x5b\xed\x3c\xbf\x3f\x47\x87\x68\xf8\x90\xe8\x1d\x26\x07\xe9\x26\x7f\x1a\x76\x6b\xb1\x97\x59\xc7\x4a\x5b\xc6\xd0\xcd\xcf\x3b\x8b\x5b\x31\x8e\xdc\x71\x33\xf7\x0c\x45\x97\x60\xcc\x57\xea\x1d\x82\x51\x1f\x41\x86\xf0\xac\x57\xf0\x3f\x2f\x8d\x72\x65\x10\xd4\x26\x18\xae\x50\xe6\xcc\x46\xb9\x97\xce\x1d\xec\xd0\x26\x5d\x37\xc5\xce\xd7\x9e\xdf\xb3\xa0\xae\x1d\xad\x75\x47\xc3\x1c\x53\x68\x3d\xb3\x48\xb4\xab\x73\xbf\x79\x21\x2e\x3c\xe7\x7c\xee\x56\x31\x8d\x45\xb6\x52\xd0\x1c\xa6\x5c\x23\x7b\xf9\x89\xc3\x7d\xa6\x30\xc5\xaf\x39\x20\x71\xf6\xec\xf6\x32\xe4\x5e\xe9\xbd\x3e\x59\x36\x28\xf9\xbe\xb9\x51\x5e\x3c\xf9\x1e\xc3\x06\x39\x25\xb6\x9d\x5d\xcb\x4e\xb0\x9f\x32\x0a\x6f\xfc\x2d\xe3\xd0\xae\xce\x17\xe5\x34\xac\xbd\x9c\x2c\xd2\x7e\xb0\x3b\xbd\xd6\x9e\x26\x64\xa1\x40\x00\x08\xb1\x3e\xb6\x71\x2d\x43\x4d\xbc\xc4\x8b\x42\xe8\x0d\x04\x32\x68\x85\xda\x21\x33\x1e\x08\x6b\x1e\xaf\xe9\x6b\x10\x30\xd8\x9e\x7c\x86\x21\x2b\x93\x85\x49\x01\xb6\x8f\x3c\x5a\xe5\x78\x26\xb1\x80\x3f\x87\xeb\x64\xd8\xde\xc5\x25\x93\x14\xfc\x61\xc5\x10\xe9\x0f\x8b\xf3\xc1\xfb\xe3\x72\x6d\xa0\x83\xda\xda\x1e\x4c\x52\x3b\x66\x2d\x25\xf7\xb5\xd0\xde\xf4\x26\xdb\x02\x67\x0a\x3c\x2f\xc6\x81\x00\x11\x2b\x7f\x61\x1f\x9d\x62\xa4\xc0\x05\x76\x88\xcf\xb7\xf1\xc6\x26\x28\x25\xf3\x06\xec\xa4\x63\xd3\x9b\x13\xf5\xa7\x4b\x52\x74\xa8\x95\x57\x9f\x6b\xc7\xca\x06\xd0\x45\x9e\x1d\x72\x93\xac\x52\xbb\x59\x34\x65\xc1\xea\xea\x22\x9b\xb2\x87\x4c\x8a\xed\xc0\xcf\x8e\x27\xd4\xbd\xb8\xdd\x2e\xa8\x3c\x96\xc8\xa9\x37\x26\x94\xd6\x41\x98\x94\x6e\x7e\xc2\xa5\x0f\xe9\x60\x91\x70\x4f\xeb\xcb\xb6\x73\x51\x1b\x95\x28\xef\x64\x29\x2d\x6f\x02\xa5\xcc\xef\x86\x29\x9d\xb5\x87\x31\x64\x3a\xeb\x82\x57\xa8\x42\xe4\x48\xc6\x21\x6d\x1a\x24\x17\x55\xc3\x4c\x67\x27\x4d\x9e\x50\xda\xa2\xd9\x54\x8a\x9c\xcd\x86\x17\xfa\x4c\xcc\x39\x2b\x6b\x3d\xa5\xe4\xd1\x68\x28\x45\xa1\x6b\xa2\x36\x3a\x29\x6a\x39\x7d\x6e\xcb\x95\x35\x92\xd1\x4c\x1a\x97\x61\x45\xa8\xe5\xc3\x22\x6b\x8d\x53\xcd\x38\x68\x7f\x84\x9d\xeb\x6d\x63\x3b\x7a\x9d\x86\x69\xb0\x69\x31\x8d\x61\xa7\x8f\x3b\x28\x15\x5f\x52\x3f\x15\x2f\xad\xf3\x9c\xd2\x53\x3c\x9a\x6b\x3b\x84\x14\xd4\xde\xb5\x68\x66\xad\x4d\x2b\x9e\xbd\xc9\xd3\xc3\x49\x15\x72\xaf\xf9\x7b\x09\x26\xb3\xca\x92\x83\xd1\x66\xfb\x03\x3b\x88\x0e\x38\xd0\xa5\xb5\x1d\xc8\x3c\xba\xef\xa0\xbd\x5e\x7d\xf2\x78\xf3\x66\xac\xe7\x60\x51\x3b\xbd\xdd\xa1\xc9\x81\xee\xd4\x96\x2c\xff\x61\x17\xad\xc2\xc0\x03\x1b\xc4\x7e\xef\x91\xfd\xe1\x7b\x96\x9f\xa5\x53\x39\x08\xf6\x08\x01\x62\x8f\xa4\x27\xff\x51\x6a\xe9\x35\x9f\x88\xb9\x27\xa1\xa7\x71\xbc\x90\x40\xc4\x03\x1b\x5a\xef\xf4\xd6\x3c\xd1\xe8\x3f\x76\xcf\x11\x59\xe9\x69\x6a\xe1\x27\x6b\x35\xab\x21\x18\x5a\xa1\x23\xd0\xcf\xb4\xc6\x8d\xa1\xe9\x37\xe3\xe7\x5a\xbe\x97\x1a\xdd\xad\xe1\xff\x93\x60\x0e\x03\x30\x73\x94\x3c\xe5\x9b\x5d\x02\xc5\xe7\xbf\xbc\x2e\xe8\xcd\xca\xa7\xb0\x6e\xc8\x29\x69\x18\x64\x72\x4a\x1a\x30\xe3\xdd\x5e\x04\xa0\x1b\xff\x02\x62\x0f\x67\x6d\xed\x24\x10\x26\x27\x2e\x5a\x71\x73\x11\x16\xfd\xde\xf7\x35\x2b\xa0\x6f\x5e\xdf\x5e\x3f\xb0\x8b\x00\x94\x57\x38\x42\x66\xcb\x1c\xb2\x78\xa9\x63\x56\xb6\xde\x83\x5f\x07\xda\x31\xac\x9c\x41\x9b\x3c\xda\x3a\x6e\x19\xee\x21\x5e\x0d\x16\xef\xa0\x9c\x1f\x74\x43\x11\xd4\xb8\xcc\x4a\xbc\x1e\x3b\xaf\xfb\x4e\x85\x94\x60\x66\xb8\x56\xc2\xa9\x5e\x0e\x21\xd6\x14\x86\x37\x17\x8f\xcf\x1f\xaf\x0a\xba\x53\x7b\x8c\xeb\xc7\xfe\xd1\x6e\xaf\x6e\xc4\x2f\xa6\x19\x8e\x64\x8d\xc0\x3d\xbd\xd3\x3d\x80\xd5\xf7\x6a\x60\x86\xfa\x4e\xf7\x08\xfb\x27\x4c\x09\x1b\x5f\xee\x6b\xa7\x86\x7b\xdd\xc4\xe5\x76\x7d\xf1\x1a\x95\x45\xba\x51\x39\xd9\xe1\xaa\xd1\x05\x7b\x60\xd7\x53\x23\x2e\x46\x6f\x0b\x76\x3d\x90\x4e\xdd\xe3\xd9\xa3\xfb\x30\x80\xb9\x3f\xe6\x29\x4f\x4d\xa6\x05\x61\xa4\x67\xfc\x5d\x09\x5d\xb0\x79\x91\xaa\x4f\xe5\x80\xb2\xcc\xe7\xde\x35\xad\x0a\x3a\x9e\x1f\xda\x25\x9e\x2f\xb4\xd1\xcb\x91\x65\x0c\xd6\x43\xbd\x5e\x74\xc3\x54\x96\x28\x20\x6b\x3a\x5a\xd8\x58\x62\x82\x3a\x9a\x4d\xcc\x4b\xe4\xf7\xea\xf3\x81\x5d\xb0\x7d\x7b\xc0\xde\x8d\x97\x1c\x72\x5d\x3a\x3e\x6b\x3b\x81\x9a\xf8\x2f\x84\x59\x1f\xc9\xe0\x82\x2f\x27\xf9\xa6\x39\xb1\x78\xc9\xd3\x9c\x72\x0c\x95\x3b\x54\x23\x5e\x1e\x4f\x55\xe6\xb9\xb2\x6e\x4e\x78\xae\xb2\x19\x9f\x61\xbd\x08\x0d\xc9\x6e\xfc\x6c\x25\x98\xba\x5f\x65\x17\x85\x4b\xd1\x5d\x57\x15\x5f\x48\x07\xfd\x6b\xbc\x9e\x66\xfd\x6b\x79\x4b\xcd\xb0\xb2\xef\xe3\xb9\xdf\xf7\x5d\x71\xe8\x67\x20\xf7\x44\x37\x33\x88\x3f\xb1\x5b\xbc\x0c\x88\x9e\x9a\xe7\x40\xef\xdf\x5d\x05\x80\x29\x3f\xc0\xc9\x76\xb3\xe9\xb4\x51\xf5\x9e\x1e\xe7\xbc\xa5\x4f\xf1\xda\xb6\xb1\x7e\x76\xa0\x50\x0f\x76\x24\x05\xeb\x16\x9f\xa3\x91\x57\x85\x77\x98\x08\x83\x13\xc0\x87\x11\xd7\xc1\x40\x57\x8a\x24\xab\x67\x59\x5c\x11\x64\xe5\x95\x80\xa4\xc4\x9e\xfe\xf8\x2d\xf3\xa4\x83\xc8\x9f\x0e\xd6\xfa\x1a\x6f\x0e\x0a\xe6\xf4\x9d\xb5\x5e\x5c\x4b\xbf\x8b\x33\xe0\xa5\xd7\x0d\xbe\xda\x2a\xca\xe0\xfd\x7c\x43\x0f\xc1\x66\x85\x3a\xbb\x9d\x97\xb8\xb2\xdb\x13\xe0\x64\x05\x16\x58\xbb\x1b\xfc\xa2\xc3\x28\xb6\x18\x5d\x2d\xd2\xa6\x0b\x23\x42\x69\xd3\x55\x89\x83\x14\x11\xbb\x5d\xb6\x76\x6e\x5e\x2e\x2f\x1c\x80\x9a\xf3\xa2\x59\x26\x06\x53\xae\xd9\xb7\x6b\x4d\x6b\x92\xf9\x6a\x2f\x7e\x66\x97\xaf\xb4\x34\xf3\x62\x27\xd6\x09\x64\xe5\xac\x62\x96\xdc\xa1\xa5\x49\xc8\xbd\xc2\xaf\x19\x50\x31\x73\xb3\xa1\x74\x3b\x7c\x88\x89\x3e\x5f\x18\xe8\x3f\xd4\x91\x7c\xbd\x2c\x00\x6e\xa1\xba\x08\xb6\x55\x46\x7c\xf3\xd8\xb9\xdd\x13\xca\x7a\xfc\xed\xac\x0c\xc8\xea\xfb\x71\x4f\x2f\x5f\xf5\x6f\x8a\xa2\xad\xa0\x07\x66\xcc\xc0\xda\x6e\xf4\x6f\x4a\x5c\x42\xc6\x43\x45\xdd\x42\x29\x17\xe7\xae\x5d\xa7\xa9\x7b\x16\xec\x31\x16\xe7\xaf\x5d\x17\xa1\x2e\x53\x6a\xce\xa2\xa7\xd4\x5c\x34\x49\xa9\xbc\xaa\xf2\x3d\xd6\xae\x6b\xe7\xba\xb0\xcd\x6e\x6e\xae\xca\xbd\x9c\x72\x13\xff\xf2\x0d\x30\xa3\x8f\x7a\xeb\xfc\x76\x50\xee\x91\xb0\xa6\x3b\x7e\x9b\x95\xe0\xa1\xce\x07\x95\x53\xa7\x38\xdc\xdf\x3a\xed\xd5\x1f\x1e\xa1\x91\xd5\x23\xaf\xdb\xf5\xa3\x6f\x0b\xb2\xa8\xf1\x1d\x60\x46\x17\x75\x73\x62\x7c\xa2\x5e\x50\x01\xaf\x9a\xb9\x06\x7d\x47\xd1\xe7\x98\x87\x65\xeb\xf0\x72\x68\x03\xc1\x4a\xbc\x4a\x24\x57\x39\x9f\x12\xda\xb5\xb3\x07\x86\x65\x83\x88\xe8\x43\x1e\x1f\xd1\xbe\x0b\x68\x7e\xc6\xe4\xd4\x40\x8a\x82\x17\xa2\xe2\xf1\xeb\xba\xd0\x3c\x0c\x84\xf7\xca\xd0\xa3\x59\x2e\x82\x3d\x89\x7a\xce\xd7\xd0\xfe\x5c\xb5\x39\x6d\xff\x6c\xb5\x86\x5e\x3c\xbc\x6a\x99\x5d\x6b\x64\xef\x9b\x9d\x4c\x8c\xda\x25\x25\xc4\x13\x83\x9c\x3e\x34\xb0\x14\x3a\x36\x52\x20\xc7\x10\xf8\x36\x53\x5c\xa1\x55\x42\xec\xac\x53\x3e\x09\x76\x45\xa1\x77\x90\x17\x05\xc1\xbc\x70\x28\x1d\x5c\xde\xc4\x99\x0f\x0e\x19\x16\x67\x1e\x3d\x37\xd5\x9d\x32\x5b\x5c\x76\xff\x09\x9f\xe2\x0a\x3f\xe3\x08\x91\xa7\x05\x54\x8d\xdb\x91\x75\x52\x90\x82\x1a\x72\x3b\x26\xd2\xf3\x59\x66\x38\x9f\x9b\xfc\xd0\x7e\x8d\xdf\xcb\x2d\x64\xd8\x93\xe4\x97\xf3\xc3\x3c\xee\x54\x67\xb3\xd9\x7b\xf9\xcb\xd5\xdb\x09\xe4\xc2\xee\xe6\x9c\x05\x6a\xc0\x39\x0b\x7b\x1f\x15\xea\x48\x44\x59\xce\x43\x55\x3a\x52\x51\xdc\x2d\x01\x2e\x82\xd4\x1b\x7a\x28\x4b\xd1\x8e\x29\x70\x9e\x69\xc9\x4f\x17\xee\xbb\x10\x76\x1d\xa3\x1c\xcf\x4a\x3b\x8e\x14\x9a\xc0\x53\x1c\x12\xf6\xc8\x04\x85\x13\x67\x44\x36\x41\x71\x8c\xd1\x0e\x68\x79\x88\x09\x72\x3e\xc2\x21\x9f\x6e\xc1\x92\x05\x20\xde\x7b\x2d\x62\x22\x48\xd9\xca\x9e\x48\x01\x81\x5e\xd0\x77\x09\x84\x57\xc5\xf7\xb2\x8b\x50\xaf\x38\x61\x56\xab\xc9\xeb\x34\x64\x09\x92\x11\x3a\x32\x60\xcd\x08\x1d\x3d\x2c\x5b\x3e\xc8\x19\xba\x1f\xec\xbd\x0e\x96\xa2\x04\x7f\xcd\x49\x01\x34\x80\x24\xcc\x01\x82\x51\xc7\x76\x5a\x7b\xa7\xa3\x58\x77\x89\x5f\xc5\xea\x62\x1a\x01\x9b\x9a\x60\x13\x99\xb8\x51\x9e\x4b\x44\xde\xac\x89\x23\x13\x6e\xc0\x5e\x5c\xc6\xb1\xa1\xcb\xb2\x49\x67\x3a\xbd\x51\xf1\x6a\x8d\x7b\x73\xa5\x37\xaa\x00\xde\x79\xdf\xbb\xe0\xa3\xe8\xe5\xed\xed\xf5\x8d\x78\x6b\xba\xe3\xa4\x13\x39\x2a\xee\x49\xc2\x14\x47\x46\xe3\x7d\x67\x36\x30\x94\xb0\x3c\xe4\x01\x9a\x4f\xa4\x0c\x9c\x8f\xa4\x29\x25\xde\x0e\xfc\x42\x2b\xed\xe2\x17\x9c\x34\x19\xd1\x8d\x6a\xf1\x99\x7a\x5b\xc7\x12\x3c\xae\xcf\x43\x8e\xb8\xc0\x9c\x44\x1e\x81\xf7\x8d\x0d\x07\xd6\x77\xb1\xd1\x00\x15\xda\x83\x9e\x1e\x76\x7a\xbb\x43\x97\xfd\x59\xab\xc8\xe1\xc3\xd1\x78\xf9\x49\xbc\x0c\xf9\x39\x86\xbd\xfc\x44\xa5\x81\xcd\x77\x74\x75\x43\xa5\xae\x30\x01\xcf\x71\x29\x9c\x36\xdb\x8e\x3c\x1d\x7c\x7b\xb2\x78\xdd\xec\xe4\x20\x1b\xcf\xfa\xe4\x80\xe8\x32\xa5\x96\xd8\xa0\xcc\x32\xb6\xe0\x5e\x21\xe2\xa0\xa0\x81\xdf\x90\x18\x8a\x0e\x16\x8a\x82\xdb\xa6\x96\xc3\x96\x2f\x45\x2f\x86\xed\x48\xb1\x94\x73\xd4\x7a\x3b\x04\x83\x0e\x3a\x21\x5e\xeb\xe0\x37\x67\x72\x46\x10\x38\xc6\xe8\xc8\xa1\xd1\xa5\x39\xcb\xed\x0b\x25\xd0\xb8\x3e\x2b\x70\x89\xc6\xf6\xc9\x22\x73\xa1\x08\xfa\x97\x4a\x25\xd0\xb5\xd4\x83\x05\xf8\xf2\x97\xc0\x5f\x5c\x2e\x00\xe7\xb2\x4b\x5c\x42\x20\xb3\x2c\x2e\x21\x80\x62\xc6\x10\x60\x90\x31\x0c\x56\xd1\xab\x66\x20\xcf\xb0\xf0\xef\x56\xba\xbb\x68\x2f\x5d\xa8\xc5\x43\x9a\x6b\x76\xaa\x1d\xc9\x8d\x04\xff\x4c\xf0\x29\x6c\x36\xed\xd2\x90\xb1\x10\x6a\xbb\x04\x50\x9f\x54\x33\x66\x66\x38\xbf\xd0\x37\xdf\x7b\x27\x34\x36\xbc\x9c\x1a\x0d\x86\x59\xbf\xa6\x94\x0c\x66\x29\xfa\x59\x68\x3a\x4a\x40\x41\x12\x3a\x59\x7f\xac\x3e\x8c\x77\x15\x2c\xcb\x83\xbd\x36\x07\x11\xea\x48\x3f\x30\x31\x36\x0f\xb0\xe8\xa1\xa4\x45\x8f\x14\x75\xf4\x50\x81\xae\x4a\x08\x92\xbd\x55\x44\x78\xb6\x98\x66\x66\xcc\x9a\x84\x89\x22\xe7\xd7\xb2\xa3\x93\x1d\x43\xea\x5f\x74\xa9\x64\xab\x0a\x88\x67\xfc\x59\xc0\x68\x43\x32\x29\x65\x91\xb0\xfd\x8a\xd2\x18\x65\x66\x41\x1f\xb4\x46\x31\x64\x7f\x54\x4d\xdd\x70\xca\x14\x32\xd4\x8c\x40\x17\x5d\x37\x1b\x8d\x5c\xe4\xc9\xd3\xd0\xd5\x75\xf6\xcc\x21\xeb\xd3\x74\x1a\x43\x96\xed\xd1\x02\x7a\x35\x6b\x6d\x54\xfd\xf0\x8c\x84\xf7\x00\x9f\x33\x2b\xad\x3e\xd0\xd8\x7f\x0c\xaf\xe1\xf9\x0e\x33\x98\x0e\x64\xe6\x7a\x85\x73\x2e\x0a\xc9\x5e\x0d\xca\x64\x71\x24\xe8\xab\x28\x54\x84\x64\xfd\x3e\x85\x5e\xf5\xf6\x81\x90\xf6\x31\x4a\x38\x62\xed\x47\xb7\xa3\x7b\xea\x49\xf8\x5a\x37\x34\xdf\x4d\xcb\x0a\xe9\x27\x60\x90\xf9\x3f\x02\x62\xea\x63\x88\xa7\xfe\x2b\xc7\x30\xa7\xef\xac\x7f\xdf\xd1\xe5\xdb\x77\xd4\xd3\x7f\xcb\x82\x8c\x97\x01\xe0\x43\x28\xf5\xaf\x40\x30\x89\xfb\x9e\x02\xa9\x7f\x4d\x23\xa8\x1b\xd3\xc0\xc0\x61\xce\x8a\xa0\x9a\x39\x42\x8e\xf7\x7b\xa2\x53\x33\x74\xd4\xb7\xaf\xc6\xc6\x3d\x9c\xa2\x8b\x1d\xfd\xfa\xe6\x4d\xc2\xe0\xff\xca\x09\xaa\x15\xd6\x7c\xcd\xb8\x2d\x06\x3f\xfd\x95\x83\xb4\x7e\x75\xb3\xa2\x07\x76\x5e\xa7\xe1\x7b\xb2\x6b\x68\xed\x2f\x2f\xfc\xb4\x91\xd0\xa9\xa1\x97\xdb\x6c\xbd\xcb\x6d\xd1\x0c\x5c\xed\x79\xc4\xfb\xf9\x8e\x98\xec\xa1\x10\x02\x9b\x03\x98\x22\xfd\xa5\x64\xed\x38\xbc\x23\xa9\x9a\xcf\x62\x08\xe5\xaa\xfa\xe0\xad\xed\x3e\x56\x72\x0b\x5d\x92\x5b\x5b\xc1\x0e\xe6\x97\xbf\xb8\x99\x8d\x3d\x54\xf4\x09\xbf\xbe\x07\xcc\xdf\xb3\x87\x61\x71\xe6\xaa\xef\xf7\x98\x40\x71\xba\x30\x61\x87\x09\x3b\x3b\x62\x54\x87\xef\x5b\xfc\x6c\xe5\x11\xbf\x0e\xf8\x75\x50\xea\x8e\x0a\x23\x71\xfe\x5e\xec\xad\xf1\x3b\x4c\x39\xe2\xf7\x51\x49\x8e\x09\x41\x9e\x8c\x31\xea\x69\xf8\xc0\xd8\xa6\x06\xef\xe9\x30\x3d\x7c\x9c\xb9\x0a\x6a\xe5\x54\xfa\x79\xe6\xaa\x56\x1e\x39\x09\x7f\x9d\xb9\x0a\xaa\xe7\x24\xfa\x79\x86\x67\xaa\xdf\x05\x84\xf4\xfb\xcc\x55\xd0\x0e\x4e\xa4\x9f\x67\xae\x1a\xe4\xa1\x4e\xed\xe2\x5f\x98\x9a\x5a\xc5\xbf\xaa\xea\x43\x3b\xd8\xfe\x37\x6b\xd4\xc7\x2a\x04\x24\x4c\x91\x08\x9f\x0d\xb6\x0f\xf6\xcf\x6a\xa0\x3b\x81\x10\x9e\x7d\xec\x3b\x2b\xdb\x55\x15\x02\x90\x6a\xd3\x8f\x51\x11\x9b\x42\xf1\x12\x58\xf2\x63\x4c\xcf\x3f\x8f\xbd\x5a\x55\xa8\xe6\xf5\xd6\xd6\x6b\x64\x98\x50\xc1\xeb\xf4\x6f\x4a\x7c\xf3\xf7\xbf\x23\xbc\xfe\x4d\xfd\xe3\x1f\xe2\xf5\xcf\xdf\x0a\xf5\xa9\x51\xaa\x75\x62\xcf\x26\x4e\x01\x6c\x2f\x3f\x3d\x2f\x20\x57\x15\xbf\xca\x63\x9b\x1a\x7a\x95\x87\xd5\x57\xff\x2b\x00\x00\xff\xff\x27\x27\xdd\xce\x5e\xde\x00\x00") +var _confLocaleLocale_enUsIni = []byte("\x1f\x8b\x08\x00\x00\x09\x6e\x88\x00\xff\xac\xbd\xeb\x72\x1c\xb9\xb1\x30\xf8\xbf\x9e\x02\xd6\x09\x86\x66\x22\xa8\x9e\x18\xfb\xfb\x76\x37\x26\x46\xe3\xe5\x50\xa3\xcb\x39\xd4\xe5\x90\x94\xbd\x5e\x85\xa2\x06\x5d\x85\xee\x86\x59\x0d\x94\x0b\x28\xb6\x7a\x1c\x8e\xd8\x07\xd8\x07\xd8\x7d\xbd\xf3\x24\x5f\xe4\x05\xb7\xaa\x6a\x4a\xb2\xcf\x1f\xb2\x0b\x48\x24\xee\x89\xcc\x44\x22\x53\xf6\x7d\xdd\x2a\xd7\x88\xa7\xe2\x42\xf4\x52\x9b\x4e\x39\x27\x9c\xea\x36\x4f\x76\xd6\x79\xd5\x8a\x17\xda\x0b\xa7\x86\x7b\xdd\xa8\xaa\xda\xd9\xbd\x12\x4f\xc5\x4b\xbb\x57\x55\x2b\xdd\x6e\x6d\xe5\xd0\x8a\xa7\xe2\x59\xf8\x5d\xa9\x4f\x7d\x67\x07\x00\xfa\x85\x7e\x55\x3b\xd5\xf5\x50\x46\x75\x7d\xe5\xf4\xd6\xd4\xda\x88\xa7\xe2\x46\x6f\x8d\x78\x65\x28\xc5\x8e\x3e\x24\xbd\x1d\x3d\xa5\x8d\x7d\x48\x7a\xdf\x57\x83\xda\x6a\xe7\xd5\x20\x9e\x8a\x6b\xfe\x59\x1d\xd4\xda\x69\x0f\x35\xfd\x99\x7e\x55\xf7\x6a\x70\xda\x02\xf6\x3f\xd1\xaf\xaa\x97\x5b\x00\x78\x27\xb7\xaa\xf2\x6a\xdf\x77\x12\x0b\xdc\xf2\xcf\xaa\x93\x66\x3b\x12\xcc\x15\xff\xac\x9a\x41\x49\xaf\x6a\xa3\x0e\xe2\xa9\xb8\xc4\x8f\xd5\x6a\x55\x8d\x4e\x0d\x75\x3f\xd8\x8d\xee\x54\x2d\x4d\x5b\xef\xa9\x9b\xef\x9d\x1a\x04\xa7\x0b\x69\x5a\x01\xe9\xd8\x05\xd5\xd6\xda\xd4\xd2\x71\x3f\x54\x2b\xb4\x11\xd2\x55\x88\xca\xc8\x7d\x28\x0d\x3f\x2b\xb5\x97\xba\x83\x51\x83\xff\x55\x2f\x9d\x3b\x58\x1c\xda\x77\xfc\xb3\x1a\x54\xed\x8f\xbd\xc2\x21\x78\x72\x7b\xec\x55\xd5\xc8\xde\x37\x3b\x09\xcd\xa4\x5f\x55\x35\xa8\xde\x3a\xed\xed\x70\x44\xb8\xf0\x51\xd9\x61\x2b\x8d\xfe\x4d\x7a\x1a\x9f\xb7\xd9\x67\xb5\xd7\xc3\x60\x61\x68\x5f\xe3\x8f\xca\xa8\x43\x0d\x78\xc4\x53\xf1\x46\x1d\x72\x2c\x90\xb3\xd7\xdb\x81\x46\x11\x32\x5f\xe3\x17\x60\xa1\x3c\xc6\x44\x59\x11\xdb\xc6\x0e\x77\x9c\xfa\x1c\x7e\x4e\x50\xda\x61\xcb\xb9\x65\xbb\xa4\x91\x5b\xc5\xb9\xaf\xf1\xa3\x00\x70\x95\x6c\xf7\xda\xd4\xbd\x34\x0a\x86\xee\x02\xbe\xc4\x3b\xf8\xaa\x64\xd3\xd8\xd1\xf8\xda\x29\xef\xb5\xd9\xc2\x1c\x5c\x50\x92\xb8\xe1\xa4\x2a\xcb\x8b\x69\x47\x3b\xc6\x59\x16\x4f\xc5\x5f\xec\x38\x88\x77\xf4\x49\x79\x59\x21\xcc\x8c\x25\x2b\xd9\x78\x7d\xaf\xbd\x56\x54\x59\xf8\xa8\xfa\xb1\xeb\xea\x41\xfd\x6d\x54\xce\x43\xd6\xbb\xb1\xeb\xc4\x35\x7f\x57\xda\xb9\x11\x4b\xbc\xc2\x1f\x55\xd5\x48\xd3\x60\x77\x2e\xf1\x47\x55\x7d\xd0\xc6\x79\xd9\x75\x1f\x2b\xfe\x01\xc0\xf4\x8b\xc6\xc9\x6b\x8f\x8d\xe5\x44\x71\xe3\x55\xef\x60\xa0\xc5\x73\x3d\x38\xff\xc4\xeb\xbd\x12\xd7\xa3\xa9\x5a\xdb\xdc\xa9\xa1\x86\x0d\x89\x5b\xe9\xd5\x46\x1c\xed\xf8\x78\x50\x62\x18\x8d\xd1\x66\x2b\x5e\xd8\xad\x13\xda\x38\xdd\x2a\xf1\x0c\xa1\xcf\x45\xdf\x29\xe9\x94\x18\x94\x6c\xc5\x8f\x52\x78\x39\x6c\x95\x7f\xfa\xa8\x5e\x77\xd2\xdc\x3d\x12\xbb\x41\x6d\x9e\x3e\x3a\x73\x8f\x7e\x7a\x31\xea\x56\x75\xda\x28\xf7\xe3\x77\xf2\x27\xd1\xc8\x41\x6d\xc6\xae\x3b\x8a\xb5\xda\xc0\x5e\x39\xda\x51\x34\x3b\x69\xb6\xb0\x4f\x8e\x7e\x07\x15\x6a\x23\xfc\x4e\x3b\x01\x1b\xf5\x77\x15\x8c\x92\xf6\xaa\x6e\xd7\x81\x28\x61\x83\x30\x79\x50\x4e\xbc\x3e\xde\xfc\xe7\xd5\xb9\x78\x67\x9d\xdf\x0e\x0a\x7f\xdf\xfc\xe7\x95\xf6\xea\x0f\xc2\x0e\xe2\x56\x3f\xfb\x79\x55\xb5\xeb\x3a\x0c\xc8\x33\xe9\xe5\x1a\xda\x1e\x27\x09\x32\x69\x0f\xc5\x3c\xdc\x49\x40\xeb\x90\xae\x39\x8f\xbb\x93\x77\xe6\xe2\x3e\x6c\xd7\x35\x6f\xde\x88\xe3\x0d\xec\xe0\x76\x9d\x46\xf6\x1d\x8d\xd9\xe8\x94\x78\xf5\xe6\xcd\xdb\x67\x3f\x0b\x65\xb6\xda\x28\x71\xd0\x7e\x27\x46\xbf\xf9\x3f\xea\xad\x32\x6a\x90\x5d\xdd\x68\x18\x94\xc1\x29\x2f\x36\x76\xa0\x2e\xae\x2a\xe7\xba\x7a\x6f\x5b\xa8\xe5\xe6\xe6\x4a\xbc\xb6\xad\xaa\x7a\xe9\x77\xd8\x10\xbf\xab\xdc\xdf\x3a\x18\xa8\x58\xe1\xed\x4e\x09\x5c\xb3\x08\x64\x37\xd3\x71\x11\x2d\xb7\x75\x25\x7e\x5c\x0f\x3f\x65\xed\x93\x6b\x67\xbb\xd1\x73\xc9\xc3\x4e\x19\x9c\x28\xe7\xe5\xe0\x85\x74\x81\xf6\xaf\x2a\x35\x0c\xb5\xda\xf7\xfe\x08\xd3\xc3\x6d\x39\x55\x0b\x21\x6b\xa4\x31\xd6\x8b\xb5\x12\x58\x8e\x50\x68\x73\x2f\x3b\xdd\xd6\x5e\xa7\x81\x2c\xcb\x62\x62\x6b\x95\x13\x50\x5a\x76\x9d\x3d\xe0\x10\xc9\xc6\xab\xc1\x89\x47\xab\x47\x48\x67\x1f\x3d\x79\xb4\xaa\x8c\xad\x89\x08\x00\x45\x6e\xb5\x93\xeb\x4e\xd5\x74\x5a\x0c\x81\xd8\xfd\x05\xd6\x1d\x35\x85\x21\x44\x01\x01\x73\x02\x27\x10\x12\x7e\x58\x94\xd2\x08\x44\x2a\x98\x8a\xe4\x7d\x0f\x24\x27\xae\x0b\xa2\x3a\x31\x61\xd6\xe7\x2a\x4c\x74\x58\x95\x17\x7d\xdf\xe9\x86\xaa\x7e\x41\x79\x69\x81\xc2\x79\xcc\x83\x92\xc3\xe1\x02\x0b\x79\xd9\x32\x1b\x3d\x4c\xd6\x20\x0a\xf2\x8e\xe5\x77\x6a\x50\x62\x37\x6e\xe9\x4c\xea\xec\xd8\xfe\x0e\x0f\x87\x30\x73\x89\x04\x8b\x6b\x6b\x3d\xad\xaa\x08\x90\xaa\xb8\xe8\x3a\x64\x01\x06\xb5\xb7\x1e\x06\x8e\x8b\x01\x99\x3b\xe8\xae\x83\x9e\x3a\x79\xaf\x5a\xe1\x2d\x6d\xe5\x56\x0f\xaa\x01\xc4\xab\x6a\x18\x4d\xcd\xdb\xe9\x7a\x34\xb4\xa5\x42\x5a\xb9\x76\x11\x6a\x3f\x3a\x2f\x76\xf2\x5e\xc1\xc0\x03\x1f\xe2\xed\x62\x3b\xb1\x4b\xc3\x68\x90\x3a\xac\xaa\xd6\xee\x25\xf2\x14\xcf\xf0\x07\x7f\xe7\xf8\xb5\x13\x72\xb3\x51\x8d\x77\xe2\xe6\xe6\xa5\x68\x3a\x6b\x94\x78\x7f\x7d\xe5\x60\xa3\xed\xea\xde\x0e\xc8\x7f\xdc\xbc\x14\xef\xec\xe0\x63\x5a\x36\xd0\x00\x61\xc6\xfd\x5a\x0d\xe2\xb0\xd3\xcd\x8e\x86\x1d\x4a\xc0\xfe\x50\x83\xd0\x4e\x8c\x4e\x9b\xed\xb9\xe8\x14\xf4\x40\x7b\x5a\x00\xd0\x87\xb0\xea\x00\x7c\xa3\xa4\x1f\x07\xb5\xaa\x76\xde\xf7\xa1\xe6\x97\xb7\xb7\xef\xa8\xea\x98\xfa\x50\xdd\x32\x5b\x19\x38\x07\x1d\x70\x44\x46\x58\xb3\xc2\x45\x32\x0e\xdd\x64\xfd\xbc\xbf\xbe\x0a\x39\x27\xc6\x05\x9a\xf0\x1d\xfc\xb9\x49\xc3\x83\xe3\xec\xec\x5e\x1d\x70\x35\x69\x23\x90\x4b\x59\x55\x9d\xdd\xd6\x83\xb5\x3e\x2c\xa6\x2b\xbb\xa5\x05\x54\x64\xa4\x9a\x9e\x85\x25\x01\xa3\x71\x18\x80\x6b\xeb\xec\x16\x09\x16\x4c\xf2\xaa\xaa\x6c\x0f\xed\xcc\x76\xc9\x5b\x4e\x48\x5b\x03\xeb\x8e\xf9\xc8\x27\x89\x1b\x22\x4e\xd9\x99\xbe\xf7\x7d\xcd\xd4\xfc\xe6\xf5\xed\x3b\x22\xe9\x98\xba\x19\xec\x5e\x3c\x15\xcf\x07\xbb\x4f\x09\xa9\x8d\xaf\x01\x1f\xc2\xc8\xb6\x1d\x94\x73\xe7\xe2\xfa\xf9\xa5\xf8\x9f\x7f\xf8\xfd\xef\x57\xe2\x95\x87\x8d\x0d\x6b\xfd\xaf\xb0\x46\x25\x8f\x44\x02\xb5\x83\xf0\x3b\x25\x1e\xc1\x46\x7d\x24\x7e\xc4\xdc\xff\x53\x7d\x92\xfb\xbe\x53\xab\xc6\xee\x7f\x02\xe2\xbe\x97\x7e\x55\x41\x8e\x1a\xc2\xb6\xb8\x51\xa6\x55\x03\x73\x7d\x9c\x95\x11\x17\xce\xce\x78\x40\x62\x7e\xeb\xc6\x9a\x8d\x1e\xa0\x3f\xbf\x18\x5c\x5b\x81\x2d\x16\x97\x94\x13\x58\x28\xdd\xd5\xc6\x7a\xbd\x39\x26\x50\xec\xe9\x1b\x48\xe4\xe5\x51\xd1\x1a\xae\x99\xd4\xc7\x31\xbe\xa1\xa5\x0d\xab\xe0\xad\xdf\xa9\x21\x0c\xb7\x4b\xe3\x6d\x37\x1b\x38\xf1\xc3\x59\xc5\x35\xbc\xa5\x54\x3a\xb6\x72\x90\xba\xb7\x3d\x32\xf6\xcf\x78\x4b\x5c\x3e\x7b\x23\xd4\xbd\x32\xb0\xb8\xfa\xc1\xb6\x63\x83\xeb\x15\x60\xcf\x81\xf4\x8b\x41\x39\x3b\x0e\x8d\xe2\xc5\x12\x49\x0e\x34\x0d\xe8\x5a\x23\xbb\xee\xb8\xaa\x02\xe9\xdf\x0e\xf2\x5e\x7a\x39\x64\x55\xbc\x08\x49\xdc\xfa\x19\xec\xac\x51\xb1\x04\xf4\xbc\x19\x9d\xb7\x7b\x41\xad\x70\xd4\x28\xca\x76\x42\x0e\x4a\x8c\x7d\x67\x65\xab\x5a\xb1\x3e\x22\x15\x73\xb0\x16\x5a\xb5\x91\x63\xe7\x57\xd5\x46\xb5\x0a\xd8\xe5\xb6\xe6\xba\x3a\x6b\xef\xb0\x32\x1e\xaa\xe7\x01\x40\x5c\x30\xd2\x2b\x84\x38\x55\x32\x36\x96\xcb\x47\xb0\xd8\x28\xae\xc1\x5b\x3c\xde\x53\xbe\xed\x95\xe1\x6e\x84\x43\x5d\xc0\x79\xdb\x0a\x6b\x44\xa7\xd7\xdc\xe9\x34\x96\x93\x63\x34\x8c\xce\x0d\x08\x87\x79\xde\x62\x81\xd9\xa0\xe2\x82\x77\xd3\xb2\xe7\xc2\x9a\xee\xc8\xc7\x2d\x6c\x31\x92\xbe\xc2\xc9\xeb\x56\x95\xc2\x7e\xd6\x49\xd6\xe1\x8e\x07\x91\xa7\xcc\x8f\xd5\x5e\x13\xcf\x28\x90\xd9\x00\x8c\x01\x01\x30\x59\xcb\x6d\x59\x55\xcc\x68\xd6\x2c\xa6\xd6\xf7\x1a\x85\xc0\xb8\xc5\x08\x25\x8b\xae\x30\xc2\x7f\x02\x00\x90\x2e\xdd\x62\xd9\xd8\x9a\xb7\xd0\x49\x17\x85\x40\x5a\x27\xd0\x5d\xac\x01\x98\x5f\x77\x2e\xee\x35\x1e\x74\xbc\xc8\x71\x5c\xd6\xc0\x9f\x75\x0a\xaa\x72\x4a\x21\x06\xa1\xcd\x77\x63\x4f\x65\x56\x2c\x01\xb1\x50\x12\x98\x66\x60\x78\x5a\x8b\xdc\x13\x9e\xa6\xde\xc6\x61\x9d\x70\x36\x62\xd0\xdb\x9d\x17\xc6\x1e\xce\x69\x50\x0e\x3b\xab\x60\xcf\xbf\x7a\xf6\xf4\x7b\x6a\xc7\x16\xce\xd6\x58\x08\x4e\x65\x39\x7a\x0b\xf4\x85\xb7\x1e\x35\x21\x72\x37\x08\x39\x93\xb5\x08\x68\x2a\xf4\xce\x98\xa9\x48\xe8\x98\xbe\xe5\x79\x4c\xd8\x12\x0c\x95\x0e\x82\x33\x55\x4c\x84\x94\x05\xa5\x7a\x6b\x51\x50\x0b\x82\x11\xb0\x0b\x95\x57\xce\xd7\x5b\xed\xeb\x0d\x50\x5b\x40\xfc\x1c\x10\x00\xf7\xa2\x9c\x17\x8f\xb7\xda\x3f\x16\x8d\xdd\xef\xa5\x69\x7f\x10\x67\xf7\xcc\x6a\xff\x01\xc8\x28\x6c\x45\xdd\xe1\x8c\xb0\xf8\x37\x28\xe2\xa4\x83\xea\x21\xb2\xad\x6e\xec\xf1\x70\x67\x0e\x39\x8a\x51\xad\x3d\x18\x20\x18\x78\x5c\xd8\xcd\x46\x37\x5a\x76\x62\xad\x8d\x1c\x8e\x11\x0b\x1e\x43\x67\xee\x5c\xbc\x79\x7b\x8b\x80\x5b\xbb\x1e\x75\xd7\x06\x80\x55\x15\xb8\xe8\x76\x1d\x26\x3f\x97\x47\x42\x92\xa6\xb6\x34\x76\x80\xf3\x17\x7b\x13\x0a\x9e\xe0\x05\xe1\xf0\x26\xe6\x5d\x83\x20\x88\xb0\x58\x2e\xb2\x6d\x30\x0c\x7b\xe9\x9b\x1d\x33\x75\xb8\x6c\xb4\x33\x8f\x3d\xb6\xb4\x19\x87\x41\x19\x8f\xc9\x3f\x88\x33\x27\x9e\xfc\x24\xce\x5c\xac\x36\x3f\x89\xf1\x7c\x86\xe3\x58\x6c\xb4\xea\xda\xd0\xda\x54\x27\xf0\x95\x74\xd2\x6d\xe7\xb3\x05\x99\x82\x32\x47\xda\xbf\x45\xff\x8a\x8d\x11\x97\x47\x58\xf6\xd9\x00\xe5\x9d\x0c\xeb\xc6\x8d\xb4\xd2\x9f\x8a\x3f\xab\xae\xb1\x7b\xf5\x3b\xf1\x67\x05\x72\xf2\xb6\xc3\x99\x93\x9e\x85\x59\xeb\x14\xae\xaa\x73\xda\x68\x9b\xd1\xe0\x99\xe1\xe5\x9d\x42\xf9\x37\x4d\xd4\x12\xcb\x74\x72\xb0\xab\x0f\x3b\xbb\x57\x1f\xab\x91\xd8\x7d\xdb\xb5\x51\x24\xc5\x2d\x64\x07\xe2\x3f\xa2\x7c\x9a\x60\xe2\xee\x70\x07\xed\x9b\x5d\x1d\xb5\x74\x30\x90\x5e\x7d\x42\xc6\x08\xb3\x92\xd2\x0e\xb6\x16\x64\x55\xfb\x23\xae\x0b\xe8\xf8\xeb\x63\x5a\x16\x5a\xb9\xca\xed\xec\x01\x55\x5e\x11\xe2\x66\x67\x0f\xa8\xec\x2a\x84\x82\xd5\x6a\x55\x35\xb6\xeb\xe4\xda\xc2\xac\xdc\x27\xf8\xcb\x3c\xb5\x44\xbe\x3f\xd6\x76\xd8\x72\xb5\xa5\x8a\x67\x7f\x64\xad\x12\xe7\x92\x56\xc9\x55\x48\x5e\x59\x1d\x89\x54\xf8\xcc\x55\xac\x4c\x59\x69\x53\xa3\xae\x26\xd4\xfc\xca\x10\xbb\x9e\xb7\xb3\xaa\x3e\xb0\xaa\xf2\x63\x15\xe0\x8a\x36\x11\x8d\xa6\x41\x77\x85\xfe\xcc\x4d\x14\x68\xae\x72\x4a\x0e\xb8\x21\x6e\xf0\x47\x55\x7d\x90\xa3\xdf\x7d\xcc\x54\x89\x75\x58\x79\x41\xa5\x88\xea\x2e\x26\x93\x89\xad\xdb\xa9\x1e\x38\xc0\xbd\xc3\x25\xdb\x0d\x4a\xb6\x47\x96\x88\xe2\xe2\xfd\x23\x1d\x40\xda\x00\xd9\xfe\x5d\xe5\x2c\x50\x90\xfa\x2b\x51\xfc\xac\x4d\x4b\xe5\xcb\xc3\x9b\x74\x9c\xfb\x1e\x97\x89\x1d\x86\xe3\x79\x29\x2b\xef\xa4\x13\x6b\xa5\x4c\x90\x69\xda\x55\xd0\x75\xc0\xf2\x92\x0d\x11\x01\xd4\xcb\xe2\x0e\xa4\x92\x76\xc6\x55\x40\x0b\x89\x6e\x73\x2d\x91\x7f\x45\xee\x34\x67\x62\x17\xea\xac\x06\xb5\x57\x20\x10\xd5\x7b\xd2\x87\xd2\x97\x78\xad\xaa\x8d\x1d\xb6\xb8\xcb\x68\x1b\x3c\x15\xcf\x31\x21\xed\x0b\x00\x50\x3e\x3f\x58\x18\x22\xa4\xfc\x31\xe8\x9f\x6b\x63\x0f\xa8\x97\x04\xe6\x6a\x3a\xfc\x63\x0f\xc3\xb7\x0a\x07\x15\xf1\x3c\xc8\x6e\x3b\x65\x7c\x1a\xc4\x0b\x61\xd4\x41\xe4\x50\x2c\x3a\xc4\x5e\x01\x3c\x10\xb4\x1f\xd7\x3f\x9d\xb9\x1f\xbf\x5b\xff\x14\xcf\x8a\x66\xa7\x9a\x3b\x5a\xba\xda\xac\xed\x27\xd4\x54\xa0\xc6\x4c\x09\x03\x5b\xf9\xac\x15\x3b\x3b\x0e\x28\x28\x37\x16\x64\x0d\xaf\x30\xb7\x98\xb3\x7e\xb0\x40\xcd\x56\xa4\xa1\x54\xb4\x37\xd2\x7a\x44\x55\x25\xac\x48\x3c\xd0\xc2\x92\xec\x07\xbb\xd3\x6b\xed\x81\x70\xa1\x70\x7d\x85\xff\xdf\x71\xb2\x6a\x27\x10\x19\xef\x31\x44\x32\xab\x9d\xe8\x63\x01\x68\x24\x82\xa6\xfe\xf1\x92\x49\xcb\x05\x66\x16\xc7\xaf\xd3\x7b\xed\x67\x4b\x11\x88\xae\xe4\x25\xcd\x1a\xd5\x30\x37\xd8\x87\x34\xba\x83\x6a\x94\xf1\xdd\x31\x2e\xcf\x83\xd4\x5e\xfc\x41\xec\xb5\x19\x3d\x08\x9d\x3b\x65\x84\x1f\x8e\x42\x02\x7f\xb3\xaa\x76\xd2\xd5\xa3\xe1\x69\x52\x6d\x58\x9c\x2f\x35\x1e\xc3\x50\x6f\xd8\x42\x19\x54\x29\x04\x8a\x6f\xe2\x0c\x7e\xbb\x62\xdd\x2a\x96\x82\xa3\x11\xda\xa3\x41\x62\x91\x4b\x6b\xc1\x0e\xc2\x28\x1a\x21\xec\x3f\x80\xc1\xb2\xb1\x46\xa5\xc1\xea\x74\x73\x07\xac\x3a\xcc\xef\x7a\xf4\xde\x82\x3c\xda\xc1\x1a\xa4\x32\xa1\xcd\x97\x08\x88\x12\x7b\xc2\x77\xa4\x69\x29\x47\xa9\xc2\x62\x00\xe1\x97\x0b\x7f\x33\xa8\x6f\x53\xf1\xb8\x65\xb0\x04\xa3\xa0\xd2\xd9\x6e\xba\xc6\x4c\x52\x9c\x87\x3d\x17\x0e\xc1\x86\x35\x9a\x71\x36\x87\x72\x34\x30\x1f\x36\x86\xfa\xd4\xeb\x01\x24\x93\x21\xb1\x04\xab\x49\x5d\x49\x74\x9f\xf7\xd8\x97\x2d\x4e\xe7\xa4\xb7\xb6\x76\x3b\xd2\xba\x84\xe6\x89\x4e\x99\x6d\xa1\xae\xc4\x4b\x30\x5c\x22\xff\xdb\xaa\x32\xd6\xd4\x28\x67\x66\x7b\xe6\x8d\x35\x4f\x30\x2d\x0a\x2a\xa1\x34\x2b\xb8\x43\x85\x80\x66\xb0\xe3\x76\xc7\xba\xaa\xea\x03\x8c\xda\xc7\x8a\xa7\x42\x65\x38\x79\xa1\x86\x9c\x30\x65\xb4\x1d\x23\x7c\x60\x77\xff\xa4\x06\x10\xea\x11\xa8\x58\x86\xa7\x66\xa4\x1c\x90\x48\x85\x13\xab\x73\x9d\xd3\x0c\x4e\xde\x8c\xdd\xb9\x38\x10\x0f\x94\xca\x44\x85\x02\x73\x47\xb0\x2a\xe9\xf6\xaf\xfa\xb0\xb7\xad\xec\x3e\x56\x47\xbc\xd3\xf8\x8b\x72\x95\xc1\x7b\x24\x5b\xed\x6d\x4b\x85\x5e\xe3\x8f\xaa\xfa\xb0\xb1\xc3\xfe\x63\x05\xe7\xeb\x9b\x89\x5c\x00\x07\x31\xa7\x65\xbc\x29\x66\xfd\x92\xdf\x93\xc5\x3e\xbf\x5b\x10\x21\xae\x55\xba\x2e\xc3\x5f\xb1\xf3\x37\x37\x2f\x6f\x83\x8a\xe3\xe6\xa5\xb8\x53\x8c\xfb\xa5\xf7\xbd\x7b\x8f\xca\x33\xd2\x84\xbd\xbf\xbe\xaa\xde\xc9\x23\xf0\xeb\x94\xcc\x1f\x98\x71\xab\xe4\x9e\x1b\x09\x3f\x09\xc5\xc5\xe8\x77\x9c\x08\x3f\xed\x90\x2b\x65\x2b\x64\x42\x7f\x29\x04\x16\xda\x45\xd5\x1b\x75\xf8\x79\x90\xa6\x09\x85\x81\x3b\x58\x63\x02\x95\xbc\xb4\xfb\xbd\xf6\x37\xe3\x7e\x2f\xf1\x6a\x8f\xbe\x85\xa3\x04\xce\x7e\xad\x9c\xa3\xcb\x4c\xce\xde\x53\x02\x67\x5f\xee\x2c\xc8\xfc\x31\xb7\xc1\xef\xea\x76\x50\x8a\x6b\x7d\x1e\x6e\x10\x2a\xe4\x08\x89\x5d\xa1\x5f\x55\x14\x70\x15\xdf\xf1\xfd\x3a\xd3\x75\xff\x5a\xc9\xae\xdf\x49\xe4\x39\x33\x30\x54\xeb\xae\x59\x14\x17\x08\x82\x1b\x7b\xdc\xab\x41\x37\xa8\x2e\x91\x6e\xf7\xcd\x93\xfa\xdb\x4c\xcd\x5f\x22\x6b\xad\xff\xe7\x10\xc2\x6f\xda\x95\x09\xaf\xd3\xbf\x85\x5e\x14\xe8\x20\x5d\x9c\x01\x04\x8a\x0e\x09\x2a\x02\xe1\x81\x05\x62\x84\x17\xb0\x59\x3d\xc8\x37\x05\xea\xbd\xfc\xf4\xb9\x82\x7b\xbb\x50\x8e\x74\x9b\xa9\x10\x8b\x42\x92\xbb\x58\x6c\xf0\xd5\xaf\xd5\x38\x3c\x00\xfc\xfe\xfa\x6a\xf5\x6b\xa5\x4d\xd3\x8d\xed\xc9\x86\xb8\x71\xed\xfc\x00\x22\xd0\xe3\x33\xf7\x18\x50\x9a\x3b\x63\x0f\x26\xc2\xbf\xa7\x6f\x81\xdf\x3f\x84\xab\xe6\x5a\x1b\x16\x26\xd3\xa5\xb3\x68\x75\x0b\x47\x1c\x0a\x85\xab\x44\x6a\x73\x41\x31\xee\x4f\xd4\xa8\xb1\x20\x1f\x49\x94\x1c\x14\xc9\xcc\x72\xaf\x56\xe9\x7a\xbc\x06\xf6\xa8\x06\x59\xca\xe4\xc2\x0f\x9c\x0f\x81\x09\x40\x06\x0a\x21\x56\x74\x79\x31\x2f\x37\x21\x20\x27\x8b\xdb\x61\xbb\x50\xfa\xed\xfc\x62\xe5\x44\x79\xaf\xe4\x7e\x01\x41\x24\x0d\x27\x0b\xd2\xdc\x63\xa1\xd1\xa1\x88\x5b\xd0\xb6\x79\x39\x80\x5a\xa5\x51\x8a\x03\x9e\xcf\x4d\x2e\x2a\xc6\x71\x2e\xd5\x01\xab\x4a\x19\xaf\x86\x01\xcd\x14\x32\xa5\x00\x2b\x69\xf8\x38\xda\x83\x28\xeb\x46\x38\x5a\x41\xec\x25\xe6\xb2\x1c\x51\xe0\x73\x10\x95\xc2\x2a\x4e\xa3\xb7\x07\x03\xa7\xc7\xe7\xf0\x23\xd8\x57\xa2\xce\x75\x48\x73\xc4\x8c\x3c\x02\x9d\x42\x1b\x15\x1c\xea\x93\xc6\x2b\x84\x17\xfa\x5e\xb1\x8a\x23\x6a\x76\x30\x6f\x55\x75\xd2\x79\x90\x5a\xa9\x57\x24\x85\xd8\x7b\xd8\x51\x50\x1f\xe4\x52\x39\xba\x52\xe0\x4e\xc1\x22\x61\x65\x09\xde\x6b\xaa\xf6\x5c\x48\x64\x35\x06\x45\x1b\x54\x76\x07\x79\x74\xa8\xf8\x0b\x44\xc6\x9a\x30\x26\x40\x41\xcc\x51\x6c\xb1\x55\xb9\x48\xba\xaa\x92\x86\xc5\xed\x6a\x38\xd1\x22\x9b\x75\x40\xcd\x05\x52\x08\x56\x25\xde\x67\xbc\x03\x1f\x80\x3f\x80\xfc\x3c\x92\x2a\x95\xb2\x33\x44\x78\x09\xcf\xc4\x7e\xa1\xec\x39\xb0\xa3\xe2\xa0\x84\x74\x6e\xdc\xf3\x58\x6b\xe4\xfe\xb1\x49\x99\xee\x6b\x5c\x77\xea\x09\x89\x35\xda\xaf\x2a\x90\x92\x93\x66\x07\x0e\x4c\x65\x7c\xb8\xb3\xa2\x74\xd2\x87\x38\xaf\xbb\x0e\x46\x3a\x18\xa6\x14\x62\x06\xe6\xe2\x3e\xc1\x61\x72\x3b\xdd\x0b\x8b\x37\x17\xf9\x10\xa6\x65\x9b\x31\xf4\xde\x8a\x56\xa1\xd8\x64\x07\xe1\x07\x69\xdc\x46\xe1\x55\xce\x5e\x6c\xf4\x00\xf3\x4c\x55\x83\x7c\x40\x86\x28\x27\x6a\x26\x09\x14\xab\xce\x0f\x08\x9c\xbb\x6c\xa2\xca\xaa\xe9\xaa\x10\xef\x0b\xb0\x0d\x38\xaa\x09\x93\x0b\x6d\x80\x65\x36\x1b\x02\xbc\xbe\x2b\x2e\x7e\x17\xc7\x61\x53\xa8\x3d\xa8\x7e\x5c\x69\x9f\xe9\x77\x45\x86\x1e\x35\x71\x21\xc5\xae\xb8\xc5\x9c\xc0\x9f\x4c\x37\x46\xf5\x01\xd6\xfd\xc7\x8a\x38\xe1\x3a\xde\xc7\x5c\x12\x67\x4c\x6c\x2d\x26\x56\x7f\xb5\xda\xd4\x78\xb9\xf0\xef\x56\x1b\xbc\x89\xa8\x8a\x1b\xe6\x89\x4e\x86\x4d\x6c\x8e\x78\xf5\xbd\xee\x74\x13\xec\x6c\x8e\xd5\xc6\xe2\x7e\x42\x95\xcd\xf3\xf0\xbb\x72\x5e\x02\x99\x80\xcd\xc0\xbf\x0a\x1d\x10\x15\x22\x05\xe1\xf3\xf0\x9b\x53\x63\x52\x35\x9a\x98\xf2\x9e\x7f\x56\x15\x30\xaf\x2b\xa4\xbf\xc0\x6f\xe3\x65\x54\x46\x75\xe1\x50\x85\xf5\x1f\xf2\x56\x19\x7c\x2f\xbd\x57\x83\x21\x7d\x32\x11\x81\xbc\x28\x67\x47\x14\xd1\x06\x02\xb0\x54\x1f\x82\xfd\xd1\xc7\x2a\x59\x29\x05\x03\xa5\x25\x45\x7a\x1c\x7e\xba\x5e\xaa\x78\x57\x3b\xe6\x7d\xff\x43\x1d\x1d\xab\x90\x90\x62\xe0\x0f\xd6\x01\xa0\x35\x42\xb8\x42\x76\xe5\x8d\x32\x6a\xc4\xe6\x8a\x30\x5e\x53\x4f\xc5\x33\xfa\x11\xb4\x09\xa3\xc6\x3e\xea\xb6\xaa\x7a\x9c\xb8\xcc\xc6\x8a\x67\x32\x76\x82\x4d\xec\x72\x7d\x42\x29\x67\x6b\x27\x08\x09\x72\x13\xe1\x46\x10\xcf\xce\x8d\x1d\x90\x42\xc6\xeb\x0d\xd5\xe1\xdd\x97\xc9\x6e\x3b\xdd\x39\x96\x03\xb0\x83\x5a\x87\x2b\xb0\x5e\x0d\xdc\xcf\xbd\x6c\x95\xb8\xd7\x32\x6a\xb2\x32\x9e\x26\x1e\xba\x41\x15\x55\xc8\x82\x28\x65\x90\xde\x30\xb0\x34\x61\x82\xbd\x0d\x92\xa1\xdf\x29\x4d\x37\x50\x06\xd9\x9d\xcd\xd8\x75\xe1\x4c\x7c\x3e\x76\x1d\xd9\x7a\xcc\x8d\x1b\xa1\x0a\xbe\x89\xbb\xe2\x9f\xd5\xd8\xb7\x20\x13\xa6\xb1\x7c\x8f\x09\x71\x2c\xcb\xfc\x4c\xd6\xc3\x51\x0d\xc5\xa2\x26\x8a\xc0\xdb\x4c\xf8\xeb\x8e\xab\xb0\x8f\x17\x8c\x16\x79\x4b\xb7\x53\x90\xa4\xb7\x41\x1a\xc5\x1d\xc7\x89\x22\x73\x03\x1c\xda\x83\x3c\x8a\x9d\x3d\x88\x4e\x9b\x3b\xc7\x33\x05\xe3\x94\xcb\xbd\xa8\x5f\xf3\xda\x8c\x8a\x25\x11\xf8\x39\x37\x91\xe3\xab\x51\xbe\x28\x5d\x1f\x83\x36\x83\xae\x52\x79\xe9\x8b\xf5\x51\xa0\xb0\x75\xfa\x4e\x76\x7a\x19\x1b\xee\x62\xc3\x1d\x23\x5e\x05\x27\x8a\xf6\xde\x29\x71\x49\xd7\xc3\xbc\xbb\x9a\x9d\xb5\x8e\x15\xbe\x89\xee\x41\x1a\xea\x73\x98\xec\xf1\xb4\x24\x3c\x34\x6b\x17\xe1\x9a\x1a\x77\x38\xef\xa5\x9a\x2f\x54\x12\x34\x6f\xad\x4b\xbe\x68\xb9\x08\x38\xe9\x1a\x3a\xf4\x09\xa9\x4b\xad\xf7\x24\x0f\xbe\x0f\x97\xd4\x38\xe1\x51\x60\xc0\xec\x55\xd9\x9e\xe9\x2a\xe1\x7a\xc3\x8d\xc9\x67\x16\x4b\x58\x0a\xf9\xbd\x1d\x4d\x7f\xa4\x48\xb6\x2b\xd8\xb5\xd0\x8f\x98\x0f\x83\x97\xe5\xbf\xc1\x1b\xd6\xa8\xb6\x80\x3d\x56\x4f\x40\x58\xd2\x2f\x20\x17\xb9\xe2\x50\xd7\x49\x8e\x78\xd2\xfa\xd9\x8e\x09\xe5\x0e\xd2\x15\x1d\xe7\x35\xde\xae\x82\xb1\x99\x30\xf6\x40\xd7\xb5\x68\x15\x44\x96\x51\x06\xef\x7a\x09\x45\x46\x54\xb8\xd2\x7f\x95\xa4\x24\xcc\x24\x52\xb8\x28\x49\x5c\x10\xe1\x54\x2e\x98\xd4\xc6\x7c\xb6\xaa\x2d\xe8\xab\x0a\xa6\x36\x39\x05\xee\x07\x8d\x9a\x87\x92\x12\xcf\x68\x6f\x41\x67\x91\xcc\x5a\x34\x1c\x49\xe4\x75\x55\x05\x54\x70\x6e\xe1\xaf\x90\x12\x75\x5b\x37\x0a\x2d\x0f\x39\x39\x6c\x84\x90\x4b\xeb\x3f\xb6\xb1\x53\x4c\x15\xa9\xaf\xcf\x38\x61\x92\x1f\x3a\x43\xd9\x61\x42\x16\x7a\x33\x00\x17\xaf\xe2\xc1\xa1\x0d\xd9\xed\xc4\x5b\xd9\x82\x3a\x89\x67\x48\xae\xc4\x41\x92\x0a\x3f\x10\xab\x3f\x4e\x6b\x4f\xeb\xe8\x97\x52\xf9\x4f\x7d\x2b\x77\xd1\xef\x2a\xd9\xb6\xb8\xc6\xd3\xdd\x76\x8b\x8b\xa7\x54\xf4\x01\x54\x0e\x41\xaa\xa4\x98\x5a\x17\x57\x13\x8e\xb4\x39\x5f\x7e\x1d\x01\xfc\xc7\x7f\xc3\x4d\x44\x51\x55\xba\x89\x88\x8d\x9c\xec\xb0\x59\x2f\xe7\x5b\x4d\xb6\x2d\xb2\x42\xbc\x96\x33\x86\x86\x57\x73\xe4\x6b\xa0\x16\x92\x60\x60\x78\xfe\x43\x1d\x91\xfb\xe1\x95\x80\x47\x93\x76\x42\xa2\xf5\x1c\x9a\xcc\x92\x38\xe3\x40\x8e\x01\x46\x08\xe6\x05\xed\x75\xcb\x39\xbf\x40\x79\xcd\x29\x86\x45\xce\x50\x9a\x23\x70\xfa\x61\xaf\xab\x3d\x8c\x03\x59\x4e\x44\x4b\xc6\xd9\x15\xe4\x39\x0b\x49\x3b\xbd\xdd\x75\x47\xa1\xf7\xbd\x1d\x3c\xae\xa4\x70\xc1\x9c\x64\x58\xf8\x1a\x54\x63\xb7\x46\xff\x86\x03\xbb\x27\xd3\xc5\xa8\x03\xff\xd1\xf9\xc1\x9a\xed\x4f\xcf\x2c\x08\x97\x77\x40\x7e\x76\xf6\xf0\xc7\x1f\xbf\xe3\x74\x71\x89\x53\x68\x47\x2f\x5e\x68\xff\x72\x5c\x3f\x76\x62\x3b\xea\x16\x8f\xdc\x1f\x65\x66\xc6\xcd\xa6\x22\x64\x57\x7a\x30\x71\x58\xd0\xa8\xdb\x0e\xc2\xd9\xee\x5e\x4d\x8a\xd8\xfd\x9e\xa6\x77\xdd\xa9\x3d\x41\x62\xfb\xd1\xba\x44\x19\x1c\x39\x35\xf0\xf8\xdc\xdc\xbc\x5c\xc5\x25\x9e\xe6\x87\xa7\x2d\x70\xa8\x85\x46\x84\x79\x44\x00\x6e\x58\x33\x99\x0e\x22\x54\x87\x84\x52\xc8\x7f\xcc\x4b\xe1\x3c\x3a\xe0\x59\x66\xba\x18\x14\x5b\x00\x45\x28\x2e\x9e\x42\x3b\x88\x0f\x83\xb4\x66\xa6\x0b\xe5\x85\x95\x2d\x5e\x38\x7b\x82\x2e\x19\x39\xf7\xd8\x3c\x5c\xae\x93\xfd\xcd\x14\x8d\xfa\xce\xf4\x2c\x74\x20\xa3\x68\x3c\x22\x89\xa6\x4d\x61\x0a\xaa\xa6\x88\xa6\x85\x56\xe4\xd4\x8c\x0c\xe9\x88\xa2\xd1\x82\x54\x0e\xe9\xf5\x17\x52\xb3\x59\xbd\xa9\xe3\xa1\xba\x2f\xa0\x68\xd8\xa7\x0b\x1c\x0e\x6b\x48\x7f\xc2\x13\x75\xc5\xda\x12\xcc\x30\xb6\xce\xe4\xbc\x37\x96\xef\xf2\x44\x48\xc4\x39\x71\x1e\x38\x96\x7c\x2b\x43\x23\xd0\x08\x97\x4c\xac\x50\x01\xf3\xbf\x8b\x56\x1e\x5d\xe5\xed\x9d\x32\x0b\x45\x30\xfd\x54\xa1\x48\x5f\x82\x70\xc4\xd4\xe5\x22\x11\x87\xa9\xb8\xc4\x57\xf1\x27\x09\x4c\x46\x57\x18\x6b\x34\x73\x23\xed\x11\x3e\x8c\x10\x6b\x6d\x5a\xa2\x23\x4c\x06\xd8\x96\x2b\xee\xff\x55\x35\x1a\x00\x42\x81\x14\x7e\xf0\x77\x3e\x2d\x05\xfe\x6c\xb3\x98\xb5\x1d\x4d\x46\x3e\x69\x39\xd4\x34\x14\xb1\x93\xef\xd4\xe0\xd0\xfa\xf6\x82\x10\xde\x42\xb6\x63\x53\x76\xb6\x68\x08\x45\x5e\x70\x22\xee\x01\x04\xa4\x01\x77\x71\x20\xf0\x2b\x29\x3e\x02\x16\xb6\xa4\x61\xc3\x5a\x9c\x03\x6f\x23\xc1\xdc\x91\x65\x8d\xb8\x78\xf7\xca\xad\xaa\x58\x61\x40\xfa\x8b\x6c\x76\x3c\x81\x07\xd2\x7a\xa0\xfd\x4d\xd7\x4d\x29\x6e\x94\x24\xa8\x78\x78\x71\x80\x25\x71\x8b\xc7\x4e\xcd\x3a\x44\x9d\x29\xf3\x69\x8c\x95\xcb\x34\x41\x54\x1b\xb6\x64\x7a\x56\xc5\xae\xfe\x4e\xbc\x4e\xfa\x48\xd8\x5a\xfd\x11\xa8\x7f\x66\x7e\x27\x69\x84\x0e\x48\xbf\x27\x76\x7f\xda\xd3\x3d\xb5\x80\x2d\x3c\x44\xfa\x11\x1a\xcc\x14\x24\x9f\xca\x9c\x8c\x2c\x4e\x66\x22\x2a\x8b\xc5\x96\x28\x4b\x1f\xf0\x94\x7d\xfe\x1c\x9d\x81\x85\x9f\x14\x07\x0f\x50\x99\xbc\x57\xd9\x52\x7e\xb7\x58\x6d\x5c\xd1\x54\xf5\x84\xde\x08\x3a\x06\xc9\xd6\x03\x4d\x61\x49\xc4\xa2\x15\x91\x19\xc6\x4b\x27\x0e\xaa\xeb\x56\x15\xea\x33\x56\x06\x4e\x71\x32\xa0\x8c\xec\x36\x2b\xe4\xb0\x1f\xe6\x58\x68\xdc\xdc\x8a\x8a\xa1\x1e\x2f\x9a\x40\x5e\x29\x36\x15\xc8\x41\x73\xc0\xcc\x4c\x93\xcc\xf7\xad\xcb\x9f\x3c\xd0\x28\x66\x5a\x30\x34\x29\x53\x72\xef\x84\xdc\xc0\x31\x0a\xc3\xd7\xa9\x0d\x6b\xcb\x73\x35\xf0\xe9\xc1\x0d\xa3\x9b\xee\x9b\x79\x6a\x0b\xab\x0f\x06\xca\xe4\x77\x95\x78\x77\x6a\x6c\xae\xaa\x0c\xc8\x7a\x35\xec\xa5\x41\x83\x0b\x52\xae\x04\x6e\xe4\xf2\xe2\xcd\x9b\xb7\xb7\x89\x09\x81\x7d\x6e\x5a\x6b\xd4\xef\xa2\x85\xe7\xac\x5d\xc1\xce\x33\x2e\xd0\x12\x22\x59\x9a\x72\x89\x53\x70\x39\x19\xce\x0c\x52\xb6\x16\x69\xab\x85\xb6\x84\xb3\xaa\x68\x7f\x7b\x72\x08\x3f\xc0\xac\x7c\xac\x82\xc2\xff\x2d\xfc\xaf\xf2\x3b\x93\xec\xae\x09\x49\x4b\xba\x92\x4a\xef\x69\xc4\xd6\xda\x76\x76\x87\x82\x87\xd0\x28\x51\x94\xb4\xfb\xde\xe2\x59\xb8\x11\x68\xaa\x70\x0e\x2b\xd0\x0e\x48\x10\x60\x70\x47\xa3\xff\x36\x22\xfb\x89\x16\x06\xab\xea\x5e\x3b\xbd\xd6\x1d\x1d\x98\x7f\x8a\x1f\x94\x0e\xbf\x26\x6f\x3e\xb2\xca\xb5\x13\x3f\xba\x5e\x1a\xd1\x74\xd2\xb9\xa7\x8f\x46\x2d\x06\xa0\xc3\xea\x93\x7f\xf4\xd3\xbb\x01\x6d\x0e\x7e\xfc\x0e\x20\x7e\x9a\xa1\xab\x37\x76\x68\x48\xb9\x1a\x0d\x78\x70\x5f\x72\x3a\xac\x63\xe0\xe7\x8b\xb5\x4c\x03\xff\x4f\xd4\xb9\xb1\xc3\x5d\xea\xc7\x37\xac\x55\xb0\x1b\xa2\x4d\xf7\xb2\x1b\x4b\x15\x13\xd4\x0e\x65\xdc\xb7\x15\x3e\x68\x49\x65\xd1\xa0\x0b\x5f\x25\x43\x86\x36\xdb\x3f\xe2\xa0\xf9\x87\x5f\x37\xbe\x54\x5d\x0f\x8c\xed\xef\x2a\x6c\x09\x2b\xe1\xa7\xcf\x59\x31\x2f\xbc\x34\x81\x3c\x7c\x6e\x82\xa9\x0b\xb3\x91\xbd\x4c\x93\x9d\x27\x05\xbc\xc8\x66\x13\x48\x0e\x76\x22\x57\x5c\x1f\xf9\xaa\x33\x52\x68\xd7\x0c\x1a\x5f\xcb\x50\x7a\x27\x51\x9f\x1d\xdf\x33\x63\xe2\x56\x7b\xbd\x35\x76\xc8\x86\xe1\x46\x75\x30\x4e\xab\x98\x25\xc2\x0b\x69\x57\x75\xba\x51\xc6\x21\x31\xa3\x5f\x21\x65\x56\x1c\xb8\x1b\x82\x45\x8d\x23\xb0\xd4\xbc\x15\xe0\x07\x7f\x2f\x94\x62\xc0\x50\x65\x25\x47\x6f\x6b\x6d\xb4\x47\x7b\x4d\xed\xb5\xec\x48\xd2\x29\xd7\x2b\xf1\xf1\x88\x84\xb5\x59\x81\x3c\x32\x1e\x36\xb9\xe4\xe9\x61\x5b\xcb\x6c\x82\xf8\x65\x06\x5f\x6b\xe0\xf8\x61\x82\x20\xf3\x0b\x7e\x0c\x5d\xf7\xc3\x68\x48\xb5\x3e\x1a\x55\x24\x86\x71\xcf\x18\x36\x7a\x1b\xf7\xc4\x0f\xb2\xb9\x03\xe2\x32\xa8\x8d\x1a\x94\x69\xd0\xce\x4c\xc2\xf9\x2e\x3a\x6b\xb6\x6a\x20\x59\x23\x18\x71\x51\xb1\x80\x5c\x83\x84\x74\x4f\x9c\x26\x3d\xa3\x7e\x15\x52\xbe\x01\xd1\xfa\xdb\x00\x18\x04\xe3\x08\xc7\xea\x9d\x49\x7e\x68\x27\x5f\x87\xb2\x3d\x80\x30\x0a\x8e\x19\x39\xd0\x63\x15\xd1\x0c\xaa\x55\x06\x46\xdb\x09\x96\xe7\x83\x99\x41\xc0\x87\x8c\xba\x3b\x9a\x26\xb1\xea\x37\xf8\x55\x1d\xa4\x6f\x76\x74\xe5\xf2\x67\xfe\x89\x37\x2e\x5b\xf9\x1b\xa5\xde\xc4\x0f\xdc\x02\x8e\x37\x85\xe3\xeb\x93\x41\xc9\x66\xc7\xa6\x7e\x76\x53\xd3\xfb\x4b\x64\x59\x6e\xe3\x35\x30\xd0\x13\x84\x53\xad\xd8\xcb\x4f\x7a\x3f\xee\x45\x04\xc4\xa2\xb0\x4b\xce\xca\x8b\x9d\xd5\xf2\xf5\xcc\xd4\x14\xe0\xeb\x6f\x69\xa6\x18\x1e\xbe\xac\x31\x4a\xb5\xb5\x1c\xd1\xde\x1b\x89\x4e\x61\x12\x54\xf1\x4b\xfa\xf0\x22\x39\x3e\xa5\xa7\x27\xc9\x79\xee\x69\xfa\x1d\x34\x70\xb2\x24\xa9\x68\xe8\xbd\xee\x46\xf5\xe8\x27\x9a\xc5\x40\x4f\x03\x56\xde\x1f\xaf\xf9\x31\x7f\xb6\x41\x18\x62\x45\x44\x33\x2d\xb6\x4b\x7c\x15\x98\xd6\xda\x02\x54\x71\xe4\x32\x5b\x2f\xb3\x97\x85\xdf\xbd\x78\x75\x8b\xe6\x29\x0f\x14\xaf\x49\x0d\x42\x16\x77\x44\x22\x1f\x0f\xc0\x59\x3a\x9b\x6b\x3e\x83\x17\x02\x99\x0f\xc6\xfa\x48\x0f\xc2\xc2\x9b\xcc\x5e\xfa\x5d\xaa\x0b\x0e\x79\xed\x1c\x31\xb7\x46\xe3\x7c\x16\x8c\x5e\xc2\x4e\x6d\x60\x64\xe5\xc2\x0a\xd8\x92\x5d\x7f\x23\xbb\x60\xd4\xff\x8a\x12\xb9\x20\x24\xa2\x8e\xa7\xbc\x21\x0d\x46\x8d\x32\x7f\x29\x1b\xd0\xc6\xcb\xf0\xb4\x1a\xf2\x7b\x70\xde\x92\x7c\xc0\xb0\xbb\x05\xbb\xa9\xe8\x8c\x08\xe9\x7c\x62\x6c\xe2\xd1\x83\x2f\x1d\x9d\xea\x36\xe5\x99\x83\x6e\x19\x8a\x11\xcc\x0d\x6c\xed\xc1\x00\x97\xd6\x1f\xeb\x4e\x9b\x3b\x64\xcc\xfa\x63\x4a\xc8\x38\xf4\x4b\xdb\x6b\xd5\x66\xc0\xd1\x8a\xe8\x1d\x2e\x9e\xff\xfa\x7f\xff\xbf\x27\x97\xd0\xed\x4b\x3f\x74\x4f\x2e\x83\x00\x04\xf0\x34\x0d\x84\x40\xbc\xfd\x8f\x6a\x34\x07\x36\x19\x7a\x4f\xbf\xaa\xf0\x8d\x14\xa6\x1a\x8d\xe3\x3b\x13\xfc\x51\xf1\x17\x10\x9a\x8a\xbd\x4c\x00\x85\xa9\x2a\x13\x0f\xc8\x37\xb6\x38\x23\xff\x36\xea\xe6\xae\x26\xd5\xd7\x53\xf1\x9f\xf0\x25\xd0\x73\x01\xb3\x09\x70\xe2\xc4\xe3\x03\xd7\xfc\xe4\x0c\xca\xad\xfa\xf1\x6c\xe5\xc7\x42\xe9\xb8\x91\x25\xdb\x73\x0c\x04\x3f\x00\x76\xda\xa8\xaa\x1f\xdd\x8e\x6e\xd4\x43\x6d\xef\x46\xb7\xc3\xa7\xa5\x90\x48\xe7\x48\xc4\x80\x33\x3b\xc3\x81\xd5\x6b\x47\x4f\xd3\x97\xb9\x3b\xcc\xca\x2c\xae\xf7\x4a\xac\x65\x73\x17\x24\xc9\x8a\x8e\x50\x32\xfd\x73\x55\x3c\x15\xf9\x34\xf4\x83\x42\x69\x79\x50\x0a\x20\xbd\x1a\x82\x3d\x80\x34\x6d\xed\xe5\x96\x4a\x02\xeb\xc2\x45\xed\x20\xbc\xdc\x32\x22\xc4\xfc\x33\xff\xac\xbc\xc4\x1b\xe3\x5b\xb9\x9d\xbb\xbd\xe8\xc7\xae\x9b\x3b\xc7\xe8\xe4\x5a\x61\xf2\x15\xfe\xa8\xf6\xd0\x48\x6f\x8d\xa2\xd3\x2f\x7c\x54\x0d\x1a\x34\xba\x68\xda\xe8\x2a\x7e\x97\x45\x16\x04\xf4\x13\xbb\x5a\x0f\xf2\x00\x69\xf2\x40\x9f\x3b\xed\xd8\x59\xca\x4b\xfa\x45\xc9\xf8\xba\x84\x40\xf1\x71\x49\x84\x47\x49\x81\xf7\xc3\xbb\xf0\x9b\xb2\xbc\x05\xde\x6b\xc0\xfb\x36\x9c\x88\x70\xd7\xe6\xad\x15\x94\x41\xcc\xaf\xdb\xd9\x83\xa9\xee\x75\xab\x2c\x1e\x2f\xfc\x54\x8c\xdc\xc5\xac\x07\x7b\x70\x81\x39\x84\x51\xa5\x4f\x20\x21\x20\xd1\x86\x67\x65\x2f\x6f\x5f\x5f\xfd\x4f\x81\x38\x60\xbc\x57\x55\xa5\x5a\x98\xf3\x15\xba\x5b\xa1\xcb\xe0\x37\xea\x40\x4c\x19\x67\xd1\x15\x61\x1d\xaf\x8a\xd1\x92\x35\x07\x80\x7f\x21\xfb\x97\x56\xfb\x22\xb3\x1f\x14\x8e\x0a\xdd\x39\x39\xda\xdc\xf8\x7c\x91\x58\x71\x17\x00\x89\xb8\xd4\x88\xcc\x58\x53\xc3\x59\x54\x87\x65\x76\x49\x94\x07\x32\x85\xb1\xe6\x09\x1e\x54\x98\x59\x34\x02\x37\x61\xde\x12\x1f\x06\x34\x80\xed\x47\xe7\xeb\xb5\xaa\xad\xa9\x65\x62\xe6\xfe\x12\x8c\x5b\xd6\x68\x94\x2c\xc3\xaa\x84\x13\x43\xde\x91\x35\xdc\x60\x41\xbc\x12\xa1\x1f\xc1\x6d\x41\x8e\x1c\x89\x26\x79\x2d\xc1\x7e\xe4\x98\x91\xca\x4c\xd9\x52\xf6\x70\x02\xb0\xc1\x02\x2c\xc7\x17\x34\x1b\x59\xaf\x72\xc5\xca\xac\x5f\x3b\x79\xaf\x6a\x7c\x27\xcf\xfa\xb9\xbc\x01\xa8\xe9\xa2\x47\xf4\x49\x67\xf0\x55\xbd\x23\xf3\x0a\x6c\x52\x22\xe2\x68\xfb\x5b\xaa\xae\x97\x55\xb9\x61\xa1\x01\x97\x84\x4f\x49\xc2\x72\x63\x83\xbd\x01\x2b\x5b\xad\x56\x79\x7d\x51\x08\x46\xdd\x1b\xf0\x98\xe9\xf4\x3b\xa7\x47\xf5\xc8\x06\x69\x8f\xec\x7c\x8f\xe7\xc6\x77\x2b\x80\x0d\xba\xa5\xbc\xc0\xd6\x52\xcf\x94\x58\xab\xad\x26\xdf\x35\x28\x0a\x2a\x7e\x4b\x98\x90\x00\xb5\x73\xbd\x44\x0f\x26\xd4\x1e\x3c\x99\xec\x90\xad\xd7\x46\x75\x35\x5a\x0c\x89\xa7\x82\x3e\x63\x26\xd2\x93\x6c\xd1\xb3\xed\xf4\x64\xcd\xcb\xb6\xad\xfd\xbe\x0f\x37\x71\x8f\xcf\xdc\x77\x3f\x86\x6e\xff\xf4\x38\x83\x4a\x00\x8f\xd3\xb6\x6c\xc9\x9f\x12\x9b\x01\xe4\x79\x53\x7b\x9a\x3c\x8f\x9b\xc6\x36\xde\xd1\x8b\x57\x8b\x0f\x62\x82\x3f\x05\xa1\x3e\x79\x65\x5a\xd5\x8a\x36\x9d\x81\xd9\xdc\x30\x12\x1a\xda\xee\x58\x7b\x4b\xab\x34\xee\x28\xee\x6f\x00\x08\xc3\xce\x0a\x9e\xc0\x6f\x12\xf8\x13\xe8\xee\x23\x7c\x03\x13\x15\x3e\x98\x91\xaa\x4b\x47\x67\xaa\x21\x1c\x9a\x41\x69\x64\xa2\xed\x7b\xc2\xb3\x41\x07\x0b\x68\xab\x89\xed\x41\xcf\x14\xe4\xa2\x46\xc0\xd9\x11\x9e\x03\xad\x72\x3a\x18\x4c\xd7\xd0\x60\x87\x99\x81\xd2\xae\x3e\x1f\x89\x89\x51\xc9\x74\xf1\x32\x59\x5b\xab\x78\xda\x3e\xe7\xac\x05\x3f\x37\x54\x36\x1c\x95\xc4\x50\xd1\x61\x9f\x4e\x44\xda\x6c\xc5\x2d\x94\x8b\xfe\x90\x72\x69\x3f\xac\x85\xb0\xfc\xe1\xc4\x97\x91\x3a\x1a\x3f\xf0\x95\x13\xcb\x6f\xbd\x64\x1b\x07\x7a\x57\x2a\xe9\x1c\x9a\x70\x9c\x0f\x55\x84\xf4\x01\xeb\x70\xc7\x3d\x9f\x75\xd1\xbf\x50\x90\x74\xa4\x08\x99\x41\x89\xcf\x43\x80\xef\x3c\x34\xb3\x9f\x64\xe8\xa3\xd6\x82\x51\xcf\x46\x15\xab\x49\xad\x4a\x15\x15\x02\x5a\xce\x14\x7d\x79\x17\x98\x1a\xd7\xc6\xd6\x24\x7e\xa7\x19\x28\xbb\x73\x64\x29\x20\x90\xef\x89\xbc\x1e\x25\xe3\x53\x15\xb1\xf1\x47\x7d\xd8\x65\xd5\x06\x92\x3a\xbb\xaf\x64\x68\xe1\xb4\x69\x54\xf2\xb5\xa4\xda\x50\xff\xea\x61\x45\x54\x7a\xed\x84\xf7\xac\x7c\x45\x70\x80\x59\xc0\xa3\xa1\xa8\xc4\x0e\x71\x5b\x11\x39\x0c\xfb\x67\x2b\xb5\x49\xdb\xcb\x5b\x34\x98\xa5\x53\xc5\xef\xb2\x13\xa4\xec\xe9\x6c\x29\x5f\xd0\x30\xa2\x5a\x26\x4d\xd9\x97\x2f\x6a\x63\x03\x6d\x05\xd2\x03\x9c\x11\xcd\x0e\x88\x7c\x28\x97\xe5\x27\x19\x64\xa7\xf6\xa0\x37\x18\x5b\xb3\xf1\x12\x6f\x87\xe7\x24\x3f\x45\x8d\xff\x77\x7c\x9b\x9d\x26\x1b\x9b\x4a\xaf\x1a\x40\xa4\xca\x08\xb8\x1b\xd7\xad\x1e\x98\x86\xd2\x07\x8b\x67\x89\x4a\xb0\x89\x34\xd6\x1b\xb9\x29\x37\xa9\x38\x32\x56\x2e\x18\x52\x9c\xa8\x35\xc7\x01\x38\xa9\xfa\xf7\x0b\x08\xaa\xc0\xe3\xae\xe6\xbc\x6e\xc8\x99\xbc\x42\xe6\xa9\x4e\xf9\x1b\xba\x32\x7c\xae\x4d\x1b\xd3\x24\x6a\x24\xe2\x6b\xa5\x98\xbe\x8f\x4f\x89\xf8\x51\x51\xcc\xe1\xc3\xea\x19\x2a\xdb\x38\x2d\x3c\x3e\x7f\x0b\xff\x63\xaa\x51\x07\xd6\xb7\x1e\xd4\x10\x1f\x67\x93\x5f\x45\xa0\xc3\xc8\xfa\x67\xc9\xab\x29\xbb\x9f\x65\xc1\x1e\x86\x44\x92\xe7\x30\x3f\xcf\x6e\x3a\x25\x87\x3a\x96\xbf\x84\x4f\xd1\xcd\xb0\x44\xf9\x21\x17\x1f\x26\xd5\xe4\x30\x6f\xec\x32\x18\x55\x97\x43\x52\x8d\xfb\x25\x60\xdb\x2b\x53\xc0\xbe\xed\x95\xc9\xa5\x97\x02\xb1\x75\xaa\x9d\x60\xc6\xcb\x80\x65\x78\xe9\xd0\xa9\x08\x5e\x87\xf0\xcf\x79\x3b\x33\x20\x6a\xa6\x5c\x00\x35\x36\x87\x7b\x63\x67\x40\xbc\x91\xe2\x79\x3d\x9d\xbd\x34\x3f\xea\x30\x9b\x20\xca\xac\xfb\x4e\x36\x2a\xba\x2a\x40\xa0\x78\x0c\x17\xd5\x44\x64\x5c\x59\x81\x8f\x70\x45\x65\xf5\x2a\xde\xbb\xc1\xae\x91\xc0\xf6\xb5\x6a\x83\xe6\xe4\x4e\xa1\x76\xb0\x5c\x08\xd3\xe2\xda\x6c\x6c\x4e\x74\xcc\x7f\xfd\x3f\xff\xbf\x47\xbd\x2e\xaf\xa7\xa3\xf2\xc9\xae\xaf\x78\x86\xfb\x28\xf6\xf5\x51\x78\x92\x2b\xd7\xb6\xf0\xb8\x42\x0f\x00\xc8\xd3\xde\xb4\x69\xfc\x7c\xf7\x44\xbb\x16\x34\xed\x38\x28\x4e\xf9\x53\x45\x46\xc7\xe6\xb9\x44\x6f\x3f\x0b\x1f\x68\x68\x2e\x17\x26\x42\x86\x54\x88\x70\x44\xdf\xa9\x91\x8e\x92\xbf\x0c\x42\x8b\x2b\xdc\xcb\xb5\x78\x2a\xce\x5a\x5c\xde\x71\x36\x61\xf1\xa6\x2c\x5a\xcb\x21\x93\x15\x0a\x61\xaa\x8b\x39\xce\xf3\xe0\x00\x27\x95\x3f\xad\xcc\xa8\xfe\xef\x16\x4a\x3c\xb8\xc5\xa7\x30\x27\x31\xcf\x36\x32\x97\x7c\x60\xbf\x25\x88\xad\x36\xea\x34\xea\x13\xe5\x58\x09\x8c\xaa\xdf\x79\xce\x4a\x76\x5d\x1d\x75\x26\x17\x5d\x27\xe8\x63\x11\xd4\xb1\xf3\x59\x6f\x41\x3e\x4b\x4d\x6d\xd9\x26\x62\xa9\x10\xad\xd6\xb6\x5e\x1f\xb9\x0c\x6d\x3c\xf4\x6a\x75\xa2\xc8\x5e\x19\x10\x26\x80\xc3\xa2\x22\xaf\x63\xc2\x42\x11\xc7\x3e\xf6\xec\xe0\x17\x72\x56\xb8\x1e\x3d\x1f\x16\x6e\x11\x04\xc8\x06\x82\xbc\xc5\x1f\x4b\x20\x64\x29\x14\x05\xaa\x6b\x76\x02\x10\x6c\x95\x17\x2b\x56\xd2\xa5\x12\x57\xf8\x68\x67\xf8\x82\x72\x7b\xeb\x3c\x1c\x74\x64\x18\xf6\xda\xe2\xdb\x4a\xfc\x7c\xa0\x9e\x54\x80\x2a\x9a\x95\x80\x9d\x84\xb3\x00\x12\x2a\xfe\x16\x67\x1f\xbe\xff\xe8\x60\x1a\x92\xc5\xdd\x87\xdf\x7f\x74\x8f\x7e\x3a\xfb\xf0\x87\x8f\x68\x6a\x37\x2b\x5c\x6f\xe4\x9d\x5a\xc0\x80\x05\x03\x34\xea\x73\xec\x18\x15\x39\x76\xcc\x4e\x96\x4f\x34\x15\x9f\x7c\xb9\xc5\xa3\x6f\xbe\xc9\x0e\x6f\x63\x56\xb9\xc3\xcd\xb8\xaf\xb9\x8f\x8e\x28\x40\xf8\x8a\xc5\xc3\x08\xd4\x12\xaa\xfc\x35\x7e\xa7\xee\xfe\x1b\x30\xbd\x67\xd8\xd3\x5f\x43\xb1\x60\x1b\x4f\xd0\x99\x37\xbc\x0b\xb6\x95\x8c\x46\x93\xe1\x1a\xbf\xcd\xf4\x2d\x5c\xec\x8f\xb1\x99\x36\xb3\xf1\xa3\x73\x00\xef\x72\x22\xef\x0e\x27\x40\x49\xd2\xf0\x23\xf4\xb7\xcc\x0a\x8d\x8a\x20\x3c\xe9\xf8\xf4\x35\x07\x1f\x14\x8e\x6a\x80\xbb\xc6\xcf\x49\xe6\x43\xc8\x86\xa2\x00\x1f\x9c\x69\x89\x31\xe8\x64\xa2\x78\x98\x89\xa9\xf8\x51\x0a\xdd\xc2\x82\xfa\xfe\xa3\x7b\x14\x87\x1b\xbf\x7e\xc2\xc5\x52\x0c\x3a\xd5\x17\x71\x84\xcf\xaf\xc4\xc2\x1a\x87\x41\x6d\x22\x1e\xbe\x2d\x6d\x69\x76\xa8\xab\xfc\x6c\x92\xc5\x95\xaf\xab\xa2\xb7\xec\x2b\xfc\x1d\xfe\x48\x35\x07\x07\x44\xc8\xf1\x5e\x66\x9f\x71\x99\x17\xa6\x1d\x9c\x18\x3c\xba\x85\x07\xf0\xac\x4a\x28\x2c\x60\xd9\x25\x4f\x90\xc8\xfe\x6a\x83\xcc\xd3\x58\x73\xaf\x06\xc7\xaf\x34\x19\x23\xeb\x14\x7f\x69\x75\x9a\x9e\x89\xfa\x21\xd4\x0d\x12\xdd\x53\x71\x23\xef\xd5\xe4\x10\x0f\x4c\x4f\x64\xa2\xca\xfc\xc6\x76\x36\x31\x59\xf8\x35\x05\x20\x73\x9b\xb3\x76\x91\x3f\x4a\x4b\x93\x77\x2e\xba\x0f\x2c\x4f\x1d\x82\x5c\xe8\x0c\x65\x4c\x94\x57\x65\x66\x74\x07\x41\x0d\x44\xa7\x10\xc1\x1d\xe5\x1c\x0b\xbf\x7b\x42\xd0\x68\xef\xb3\x08\xb6\x6c\xe8\x4f\x3c\x46\x6e\xaa\xa6\x51\x2e\x4d\xc6\xfd\xda\x14\xd6\x6b\x8c\xfb\xb4\x3d\xd5\x72\xe5\x49\x9d\x4a\x6d\xfd\x8c\x2a\x35\x23\x93\xbd\x1c\xbc\x6e\x74\x2f\x23\xa9\x7c\x97\xa5\x04\x48\xe9\xbd\x6c\x76\xb0\xad\x73\xa6\xeb\x57\x52\x09\xb0\x26\x00\xd6\x23\x76\x07\x6f\xa1\xbc\x5c\xff\xba\x50\x3a\xba\xa1\xcb\x4b\xc7\x44\x40\xf1\x6b\x45\x97\x32\x99\xc0\x96\x5f\xce\x70\x66\x63\xf7\xbd\x1c\x54\xa9\x20\x85\x94\xa8\x21\x5d\x84\x0b\xb3\x14\x80\xfd\xc1\x8a\x78\x65\x84\x4e\xf4\xe1\x04\x2b\x55\x7b\xa8\x03\x8c\x5a\x89\x12\x2d\x7a\xbd\x7b\x8a\x6f\xf9\xa6\x15\x72\x0d\x4f\x05\xff\xe2\xfc\xe2\x36\x6b\x7a\x8b\x15\x7a\x6e\xeb\x41\xb9\xb1\xc3\x19\x41\x43\x64\xfa\xd8\x90\x09\x6d\x00\x42\x4f\xe6\xc0\x6d\xa5\xba\xb2\x43\x84\xfc\x9c\xf3\xb3\x08\xc8\x5d\xab\x46\x02\xa3\x8e\x6d\x86\xbe\xee\x94\x6c\xb3\xde\x0f\x0a\x3d\xa2\x06\xfc\x3b\xe9\xea\xdc\x85\x3c\xcc\x58\x44\x1f\x14\x2d\x93\x91\x5a\x2b\x7f\x40\x0f\x03\xf8\x4e\x01\x06\x97\xd4\x49\xee\x87\x9c\x8b\xf8\xfe\xa3\xfb\x0e\xeb\xf8\x0e\x58\x89\x96\x29\xe9\xbf\xe1\x07\xd1\x53\x1e\xca\x89\xe4\xb7\xb0\x0c\x90\x1a\x85\x49\x3d\xe0\x1a\xf6\x56\xec\xd5\xb0\x55\xc8\x7e\xb4\x41\x19\x41\x74\xfd\xc7\xc6\xb6\x2a\x10\x6e\xfc\x2d\xb4\xf1\x36\xa6\xff\x21\xa6\x33\x7e\xc4\xc4\x5c\x46\xa8\x86\xd2\xfe\x35\xf4\xe2\xec\xc3\xff\xf8\x18\xd6\xa8\x97\xeb\x3a\x27\xd7\x64\x8b\x18\x3f\x0b\xa8\xa9\x0e\x26\xe5\x15\x17\xaa\x41\x0f\xc7\xf9\x7c\xa8\x7b\x5b\xd3\xd0\x44\xeb\x1c\xca\x60\x33\xdb\x7c\x26\xbd\x15\xbd\x1a\x80\x4c\xf1\x68\x46\x6b\xcc\x55\x31\x34\xc8\x7e\x0f\xa9\x26\x58\x35\x31\xe7\x76\x86\x36\xd2\x25\x86\x29\xc9\x12\xa1\x68\xa5\x97\xf5\x7a\x08\x36\xc6\xd2\xcb\x68\x6d\xb7\x8c\x8b\x61\xdb\x31\x3d\xab\x87\x51\xb4\x1b\xba\x33\xcb\xa8\x6d\x68\xbb\x76\x35\xbe\x2c\x22\x75\xe9\x2d\x3f\x17\xea\x74\xe3\x45\x4c\xd7\x8e\xdf\xb5\x93\x87\xe0\x2d\xf9\x5b\x8e\x41\x09\x36\x83\x72\x3b\xf4\x86\x0a\x00\x1b\x75\x10\x7b\x8b\x1c\x66\x24\x11\xd2\xd4\x68\x5c\x86\x5d\x2d\x4c\x54\x8a\x6e\xb0\xbd\x0a\x0f\xc8\xc4\xc7\x69\x44\x85\xe6\x40\x5f\x86\x8d\xcc\xb8\x97\xf0\x45\x12\xe0\xa3\xa2\x33\xf4\xdb\x9d\xae\x6b\x1a\x5c\x80\xd6\xc3\x5e\x1a\x32\x1b\xd5\x46\xd8\xa1\x55\x03\xbb\xc0\xc2\x47\x3a\x7e\xb7\x80\x99\xb0\x4d\x48\x0a\x2e\x9e\xa5\x9d\x8d\x0b\x76\x34\xbc\x01\xb1\x54\x54\xfe\xfe\xca\x4a\x91\xc7\x3e\x2e\x52\x5e\xc8\xc9\x66\xb8\xec\x6a\x4e\xb2\x0c\xb1\x14\xc5\xb0\x7d\xf3\x6f\x67\xed\xb7\xb4\x89\xf1\xb1\xce\xcc\xf2\x0f\x12\xa9\xe3\xf9\xe1\x0d\x54\x54\x3b\xf4\xf1\x06\x4b\x06\x0e\x0a\x00\xd2\x66\xbb\x0a\x44\x8c\x25\x86\xcc\xec\x0f\x99\x93\x9f\x73\x7a\x5f\xc0\xa0\xcb\x07\xa3\x0e\xd9\x66\xe7\x7b\x9b\x74\xd7\x11\x4e\xf5\xd0\x49\x4d\xbb\x81\x9e\xd8\x51\x29\xb2\xd8\xc6\x26\x9b\x46\xad\xaa\xcc\x86\x21\x3b\x59\x93\xa6\x22\xcb\x5e\x50\xab\x64\xb9\xcb\xaa\x95\x29\x40\x9b\x34\x88\x67\xae\xa8\xdb\xd6\xed\xa8\x6a\x96\x7b\xdf\x58\xdc\xb6\xf0\x35\x6d\x41\x90\xf7\xa6\x98\xa3\xf0\x53\x76\xa8\x76\xe3\x1a\x0e\x34\x72\xcc\x46\x07\x46\x66\xb6\xe1\x6d\x30\x58\xe7\xbb\x62\x66\x4d\x0a\xf4\x93\xf3\x66\x71\x70\x02\xff\x8b\x8e\xbc\xf2\x8c\x05\xb3\xd8\x3c\x37\xf5\xf9\xd9\xa8\x50\x8b\x2d\xbe\x09\x97\xa5\xdf\x96\x9d\x54\xf4\x7c\x1b\xfe\xe7\x19\xd1\xf5\x2e\xa3\xaa\x69\x1d\x32\x46\x44\xce\x29\xc9\xab\xeb\x79\xb4\x4a\x78\x7c\x3c\x1e\x8f\x4f\xf6\xfb\x27\x6d\xfb\x78\xa1\xd7\x19\x07\x19\xbb\x3d\xb9\x95\x67\x55\xcd\x84\x66\x67\x98\x32\x86\x7c\x79\xec\xd0\xc4\x22\x9f\xa7\xf7\xa8\x9d\x5c\x2b\x0f\x6b\x35\xbb\x28\xa6\x9d\x94\x66\xcf\xc1\x69\x64\xfb\x4e\xa5\x67\x2a\x40\x5e\xe8\x05\x5e\xde\x97\x89\x30\x93\x65\x4d\xdc\xc0\x3d\xd8\xc0\x68\x5f\xc6\xcc\xa5\xdd\xa4\xc6\x4c\x06\x85\x42\x50\x9c\x1c\x92\x4c\x88\x48\xc3\x1a\x05\x89\x05\xc0\x65\x31\x22\xd5\xfe\xdf\x29\x4a\x2c\x55\xbf\xb4\x0c\x3e\x23\x4c\x54\x07\x7d\xa7\xc5\x53\xf1\x67\x7d\xa7\xf1\xf7\x8a\x1d\xf7\x65\x8e\xfa\xbc\xc5\xec\xdf\x15\xf9\xa1\xaf\x90\x83\xf6\x4a\x3b\x25\x50\x53\x2f\x28\xee\x03\x3d\x4b\x1a\xbb\x56\x74\xfa\x8e\xce\x76\xdb\x8c\xa8\x65\x38\xb2\x1f\x89\xbf\xa2\x53\x07\xbb\x55\xf8\xda\x3b\x32\xf0\xda\xf3\xa2\x5a\x51\x85\xbc\xc6\xd1\xc3\x4c\xcd\xb1\xb9\x78\x93\x93\xe9\xc6\xe0\x3c\x9e\xe5\x04\x9e\x47\xef\xc2\x04\x66\xda\x39\x9d\x59\xf6\x04\x4f\x6e\x01\x72\xac\x6f\xd8\x3d\x3b\xe5\x07\xdb\xef\xd2\x72\x02\x7a\x4e\xd6\x34\xc0\xad\x2b\x21\xd7\x76\x64\x83\x23\xd6\x0b\x26\x02\xc1\xfd\x40\xc7\xd4\x5c\x13\x88\xe6\x59\x1d\x68\x2d\xcd\x15\xf0\xcd\xc2\x99\xc3\x9b\xdd\xa0\xdf\xc0\x72\x67\x8e\xc0\x71\xa5\x43\x4a\xcd\xf7\x07\x2c\x48\x17\xfd\x49\x79\xd3\xfe\xd0\x6b\x9d\x02\x84\x0f\xb6\x65\x28\x63\xbd\x6e\x54\xfd\x7d\xe0\x59\xf2\x17\x3d\x64\x3b\xb0\x55\xcc\x26\x83\x0c\xc8\x5c\x72\x74\xa2\x0a\xfb\x5d\x0d\x1e\x3d\xa6\xc6\x19\x9a\x5f\x0a\xe3\x42\x42\x54\x93\x67\xb7\xe5\xbd\x70\x86\xc3\xf1\x34\xbb\x6c\x10\x83\x83\x89\xf0\x3c\x94\x3f\xcf\x5c\xb5\x18\xb9\x2b\xa4\xad\x68\xb2\x5c\x8c\x21\x92\x65\x65\x8e\xa9\x99\xbd\xcf\xbe\x4f\x80\xad\xe8\x5d\x0b\xfb\x6b\x3c\x05\x44\x37\xe7\xbc\x92\x4e\x01\x61\x08\x2d\x7a\x1a\x71\x0a\x64\x34\xe1\x82\xe8\xa9\x78\x1f\x7e\x27\xe0\x9d\xb5\x77\xe4\x96\x7c\x8d\x3f\x53\xce\x56\xfb\x90\xf9\x42\x7b\xf1\xb2\xcc\x5d\x4b\xa7\x9b\x3c\x76\xd9\xcf\x90\xb0\x30\x78\x6c\x60\x9c\x41\xf2\x23\x83\x39\xa8\x3b\x9a\x26\x45\x7c\xbb\x39\x9a\x46\xbc\xb1\x87\x39\x2a\x00\xd3\xa6\x0e\xbc\x7b\x42\x09\x39\xd1\x09\xfb\xe7\x79\x7b\xda\x97\x92\x5d\xf8\xae\xb2\x86\xd0\xd0\xbf\x0d\xce\xf4\x6f\x8a\x29\x60\xfb\x80\xac\x47\x6c\x67\x35\xef\x11\x3b\xe2\x00\xa6\xf3\xcb\xdc\xd8\x2c\xb9\xaf\x99\x1a\x8a\x44\xec\xb2\xbd\x87\xd3\xb0\x2d\x62\xd2\x71\xda\x42\x63\x60\x23\xc4\xc7\xae\x14\x80\x02\x09\xbc\x3b\x3a\xaf\xf6\x59\xff\x9c\xa2\xb7\x23\x46\x76\x35\x1f\x01\x70\x9e\xaf\x47\xdd\x79\x6d\xb0\x50\x09\xad\x3e\xcd\xa1\x43\xda\x04\xbc\x00\xe5\xb8\x42\xbf\x04\x50\xdc\xe6\xef\xaf\xaf\x1e\x00\x0f\x1d\xf8\x53\x11\xda\x62\x0d\x23\x44\xd6\x15\x74\x29\xf5\xfe\xfa\x8a\x22\x8f\xf9\x9d\x3a\x96\x57\xac\x5e\xae\xb3\x31\xa4\xb3\x74\x32\x2c\xa4\x30\xc6\xd7\x37\x6a\x38\x31\x30\x08\x53\x33\xcc\x64\x84\x3a\xbd\xdd\xf9\x83\xc2\xa7\xb8\x0f\xe0\x8a\x9d\x5b\xc2\x15\xc7\xef\x04\x82\x58\x98\x73\xa6\x63\x89\xb7\xe9\xe2\x96\x71\x2e\x0f\x6a\x56\xf4\xbf\x7b\x5c\x73\xd4\x91\x9d\x3d\xdd\x38\xf1\x1c\x61\xe6\xe5\x69\x68\x9c\x3f\x92\x6d\xda\x32\x82\x37\x72\x8f\x6e\x20\x00\xea\x87\x07\x71\xac\x82\x4b\xd7\xa7\xe2\x0d\xfd\x7a\x18\x1c\x5d\xc1\xa6\x32\x17\xd9\xe7\x43\x7d\xcd\x1f\xe4\x36\x12\x3d\x4a\x88\xdc\x54\x81\x0e\xc4\xbf\x8f\x4e\x0d\xff\x10\x7f\x87\xcd\xfd\x0f\xf1\x77\x6d\x5a\xf5\xe9\x1f\x41\x8f\x14\xa3\xca\x00\xe1\x38\x9f\x3d\xef\x24\x01\x15\x06\x01\x8b\x65\x23\x8f\x92\xe7\x64\x41\xe7\x22\xb1\x0b\x6f\xe2\x7b\x1f\xbc\x9e\x01\xe7\x38\xe8\xf5\x38\x39\xdc\x5a\x89\x36\x6e\xbf\xd1\xdd\xf7\x33\xfc\x12\xff\x37\x70\xd6\x11\x04\x83\x6d\xa2\x13\x4e\x10\x6e\x1d\x3d\x8f\x62\x67\x82\xe4\xa1\x8a\x2e\x40\x64\x0c\x1b\xe0\xca\xf7\x21\xe5\x79\x9e\x7c\xff\x93\x8b\x2b\x69\xc8\xdb\x0f\x39\x36\xcb\x4e\x38\x73\xaf\x06\x1f\xd5\x69\x5e\xdc\x5a\x71\xad\xb6\x63\x27\x87\xfc\xe5\xd1\xb4\xc0\x74\x5a\x02\x1e\x66\xc5\xf1\x0c\x81\xc1\x11\x03\xe3\xca\xc8\x6e\x7c\x83\xc4\x92\xfa\xa0\xee\xd5\x40\x8e\x42\xa6\xb5\x10\x4f\xe4\x90\x29\x7a\xc2\x5e\x15\xcb\x27\xcf\x45\xc5\xd9\x68\x70\x1b\x50\xb7\xb8\xd4\x0a\xba\xf2\x8b\x6d\xa0\x97\xcf\x0b\x2d\x48\xd7\x97\xe1\xed\x33\xeb\x1d\x27\x5c\x09\x41\x93\x03\x82\xc9\x6b\xb4\x24\x1d\x12\x54\x70\x26\x4f\x4d\x42\xe3\x82\xd2\x51\x57\xbe\x1d\xc8\xf9\xe3\x53\xd8\xa0\xf4\xf3\x6d\x70\x1f\x39\x07\x8b\x2a\xaf\xe4\x33\xb2\x1c\x14\x18\x0b\x5e\x07\xb8\x21\x78\x92\xca\xd7\xf0\x70\x9e\xc7\x38\x7a\xec\x5a\x1f\xd9\x2c\x74\x88\xe0\x16\x9a\x37\x99\xa6\xc5\xb7\xf3\x7a\x93\xad\x61\xb4\x51\xd5\xa6\xd5\xf7\xba\x1d\x65\x87\x8d\x79\x08\xef\xef\x4b\xbc\x8d\x35\xf8\x8a\xec\x24\xee\x49\x87\x70\x87\xc7\x78\xaa\x68\xf5\xb3\x49\xde\x6c\x17\x7b\x04\xc4\x27\xde\xe3\xf1\x4e\x42\xaf\xb4\x22\xf9\xa5\xcc\xe5\x4a\x12\x1a\x71\x7d\x90\x73\x9e\xb0\x4a\x7f\x98\x71\x0d\x7c\xf1\xf6\xcb\x00\x38\xf1\x9c\x7e\x26\xbd\x5c\x04\x0b\x13\xfa\x36\x58\xa3\x2a\x2c\x84\xbc\x41\x2b\xbd\x4c\x9a\x3b\x63\xf9\xf1\xfc\x5a\x36\x77\x8b\x32\xc1\x22\xfe\x85\xfd\x95\x8b\x1d\x30\x70\x21\x40\x22\x5a\x0b\x43\xc5\x40\x4e\xcf\xe6\xcc\xd0\x4c\x38\xbe\xce\x49\x53\x68\x70\xb2\x82\xc5\xae\x4c\x5d\xd4\x25\x82\x39\x31\xae\xc7\xa6\x2d\xd1\xa3\x13\x03\x15\x3a\x50\x78\x96\xfd\x67\x46\xeb\xf4\x40\x25\x42\xf4\x59\x8f\x0a\xa7\xf1\xfd\xfe\x24\x61\xcb\xfc\x1e\xe4\x52\x20\xd0\x4a\x8e\xcf\x1b\x34\xfe\x79\x17\xe9\x29\x31\x86\x0b\xd6\x1e\x87\xfc\x9c\x95\x1c\xe7\xd1\xbe\x83\x5c\x6c\x66\x2e\x40\xf2\xcb\x77\x77\xba\xad\xf8\xf2\x86\x06\xe0\x22\x3c\xe0\x0f\xcc\x0d\x6a\x30\xe0\xfc\xec\x95\x69\xd1\x08\x62\x43\xfa\x2a\x5a\x16\x53\xa4\x27\x57\xca\x67\xf4\x28\xa7\x24\x87\x65\x64\x41\xda\xfc\x8c\x5f\xc4\xf9\xee\x0f\xa6\x06\x18\xf6\x1a\xcd\x0d\x92\xe4\x24\xef\x90\xbf\x0c\x74\x19\x5d\xc7\x04\x82\xbb\x80\x6a\xf1\x44\x48\x2e\x80\x63\xd3\x42\x81\xe1\x74\xf3\x4a\xaf\x1c\x4b\xde\x38\x32\x79\xa6\xad\x27\x26\x15\x17\x6d\x8b\xfd\x29\x4c\x2b\x4e\x16\x98\xb8\xcf\x2a\x70\x95\xee\xb3\xe6\xeb\x65\x52\x71\xf0\xa1\x35\x17\xaa\xed\x90\x5b\x10\xe4\x0d\x5b\xe8\xd2\x62\xb1\xe2\x92\x87\x82\xe4\xc1\x7a\x4c\x8f\x04\x76\x14\x89\x2c\x57\x2d\xa4\x87\x59\xd3\xe3\x71\xb2\x66\x1f\xf0\xb9\x15\x1a\x45\x5a\xc6\x53\x23\x77\xb9\x38\x6a\xec\x14\x27\x17\x92\xd1\x26\x9c\x42\xb8\x95\x66\xb8\x6c\x2d\x8e\xe7\xe3\x2a\x2b\x81\x0e\xf1\xd3\xeb\xf7\xda\xdb\x7a\x3d\x1b\xf8\xc2\x3f\x7e\xf9\x00\x9e\x5f\x3b\x92\xff\x33\x64\x24\xf3\xb2\xab\x42\xb8\x02\x36\x1e\x9d\xa9\xb3\xaf\x1d\x0e\xab\x3f\x75\x70\xcd\xb9\x87\x9d\xcd\xd8\xaa\xcf\x57\x00\x0b\xef\x40\x1a\x13\x5e\xa4\xac\x3f\x99\x28\x56\xa2\x22\x94\xb5\x2b\x78\x33\xb7\x1f\x9b\x1d\x29\x3e\x51\x89\xc2\xb1\x7a\xdf\xde\xdc\xe2\x2d\xbd\x17\x7e\xd0\xdb\x2d\x9c\xf0\xe2\xcf\x3b\x65\x30\x78\xa2\xb3\x7b\xc5\xe4\xb3\x69\xc6\x01\xd5\x1b\x14\x25\xee\xa0\x82\xb7\x2a\xd3\xf2\x79\x97\xbb\xcc\x0c\xfa\x03\xba\xad\x17\x18\xc7\x16\xad\xd9\x7a\xd5\xe8\xcd\x71\x25\xae\x94\x1c\x0c\x05\x5d\x0b\x06\x46\x0f\xbe\x15\x89\x3d\xc1\x17\xce\x3f\x7e\x27\x7f\xca\x0f\x69\xca\xcc\xf7\x07\x9f\x84\xb3\xe1\x99\x82\x2e\xb9\x87\x0a\x23\xfc\x90\x6a\x1c\x4f\x05\x3a\xfb\x35\x1c\x32\x82\xdf\xdf\x7e\xc9\x3e\x98\xb5\x21\x8f\xd2\x47\x55\x7f\x29\x65\x67\x54\x2b\x8c\x05\x19\xdb\xf2\x54\xdc\x2a\x87\xfe\x84\xf0\xfb\x33\xe0\x61\x08\x6e\x28\x5c\x13\x9a\x5c\xf6\xa3\xdb\xf1\xb2\x88\x58\x43\x60\x49\x64\xd9\xc2\x18\xb9\xb9\xba\x67\xb1\x8e\xd4\x45\x6c\xda\x61\xda\x4f\x5a\xfb\x74\xdb\x4e\xd5\xfd\x6d\x54\xa3\xc2\x80\xc5\x7b\x79\xa4\x40\x84\x1b\x75\x10\x4e\x35\xd6\xb4\x2e\x3c\x54\xd5\x1e\x1f\xd3\x38\x31\xf6\xe1\x71\xd3\x6c\x4a\xe6\x6d\x4b\xd7\xc5\xe1\x8e\x78\x01\xc4\xf5\x96\x3c\xc7\x5c\xf3\xcf\x39\x10\xdd\x3b\x41\xaf\x5e\xd2\xaf\x39\x48\xcf\x81\x76\x62\xc8\x9d\x39\xc8\xda\xb6\x30\x67\x3f\xdb\xf6\x38\x57\x83\x86\xd9\x89\xba\x50\xdc\xcb\xbd\x3d\x60\xcc\x87\xf5\x11\x33\xb4\x77\xaa\xdb\x90\x4b\x7c\x10\x30\x55\x78\xf3\x8c\x1c\x4b\x7c\x96\x2d\x68\x0b\xf1\x38\xa1\x33\x3f\xb4\xdc\xcf\x8d\x33\x38\x4a\x70\xee\xe7\x76\xda\x26\x7a\x11\xcd\xed\x7a\x45\xc2\x01\xce\x26\xea\x3f\x29\x36\xdb\x39\x08\xd7\x7d\xf6\x6a\x2c\xe8\x75\x7a\x8a\x8b\xa6\x5a\xa4\x01\x18\x66\x22\x80\x90\x74\x45\x8f\x12\x33\x37\x48\x89\xa7\xd6\x0e\xeb\x59\x68\x11\xbb\xad\x82\x01\x22\x87\x55\x33\x88\x64\x17\x8b\x40\xc1\x01\xe6\x94\x47\x62\xf0\xa4\x5c\x7d\x59\x90\x8f\x8c\x00\xc7\x89\xb1\x5b\x66\xec\x38\xde\x19\x29\x59\x80\xb0\x06\x9d\x4a\x66\x03\x03\x63\xf5\xfe\xfa\x2a\x27\x86\xe7\x42\xc2\xf9\x4b\x2a\x89\x41\x6d\xe5\xd0\x86\xa7\xd7\x4c\x98\x77\xd2\x13\x01\xce\xfd\x32\xa3\x23\x11\x46\x41\x8f\xe6\xee\xb4\x41\x5f\x5b\x28\x3b\xb0\xf2\x0b\xc4\xb8\x74\xdd\x05\xb4\x78\xec\x81\x3c\x13\xad\x0f\xf5\x60\x97\xbf\xf9\xf7\x9b\xb7\x6f\xce\xc5\xa7\x27\x87\xc3\xe1\x09\x14\x7f\x32\x0e\x9d\x32\xd0\x85\xf6\x5c\xfc\x5f\xaf\xaf\xce\x85\xf2\xcd\xb7\x2b\xf1\x9a\xa8\x76\x22\x86\x6c\x71\x82\xd6\x64\x68\xbe\x31\x0e\xff\x02\x35\xe7\x1d\xc3\x8a\xc5\x3c\x50\x55\xce\xdc\xc1\xec\x85\xb7\x06\x21\xc6\x13\xbe\x39\xc8\x18\x85\x66\x50\x68\xaa\x8f\x3f\xb2\x8c\x4e\x36\x77\x4b\x6e\xe0\xa7\x20\xba\xb1\x86\x9b\xf1\xaa\xe1\xe0\xf3\x13\x90\x60\x9d\x7a\x89\x76\xa9\x49\xd5\x09\x13\x17\x4f\xe1\x9d\x32\x40\xa5\xc6\xae\x2d\x0f\x98\xb5\x0a\x13\xa1\xda\x3f\x4e\x0b\xa3\x5b\x0d\x8c\x9d\xfc\x54\xfc\x3b\x3e\x2b\xdf\x85\x1b\x2d\xc8\x0a\x6b\x0b\x81\x57\xd3\xc2\x18\x0f\x2f\x93\x7e\x9e\x8a\x57\x14\x98\x2f\x48\x5f\x29\x2f\x4a\x60\x33\x24\xac\x0c\x7b\x2a\xae\x94\x17\xfb\xa8\x1c\xc3\xb5\x46\xe8\xe6\x45\x4a\x8b\x87\xe5\xec\x30\x2e\x64\x85\x72\xce\x9e\x36\x82\x39\xc0\x7c\x1c\x0a\xfb\x9e\xc2\xb2\xe7\x01\xd0\xe8\x35\x2a\xb7\xca\x21\x3b\xef\x73\xb2\x5e\x6f\xcf\x45\xb0\xfc\x3e\xe7\x7b\xcd\xf3\xf0\x58\xac\x3d\x17\xa3\x49\xbf\xc9\xea\x96\x05\xa2\xf0\x89\x76\x15\xf0\xc9\x37\x40\xbb\xc1\x1a\xfd\xdb\xc2\xa0\xe0\x61\x4a\x5e\x51\x16\x27\x39\xa3\xf0\x08\xca\x4a\xb8\xb9\xf8\x4e\xa4\x35\x44\xba\x54\xd3\x8c\x64\x58\xf5\x4c\x79\xf4\x8b\xbe\x44\x4d\x48\x5b\x15\xd7\x5d\xda\xff\x81\x42\xf3\xf9\x49\xac\x28\xf9\x94\x2c\xe8\x1f\x12\xbf\x52\xe2\x59\x3e\xce\x57\x33\xea\x9a\x78\x57\xa6\xae\x33\xfe\x8c\x01\x27\x75\xcc\xd8\x22\x9e\x8a\xb9\x38\x95\x6a\x38\xc5\x01\xd2\x9b\x98\xc0\x99\x84\xd8\x2c\xe8\x98\xf7\x59\x4c\x2b\xf9\xe9\x40\x67\xf0\xe4\x28\x89\x0c\x3e\xb7\x45\x4a\x90\x9f\x09\xc0\x99\x97\x56\xf5\x00\x82\x36\xf5\xda\x78\x15\x1c\x22\xcd\x7c\x69\xe7\xbc\x0a\x61\x0d\x9e\x51\xc9\x83\xeb\x24\xb3\xb5\x7b\x89\x37\xba\xcf\xf0\xc7\x8c\x36\xed\xa4\x31\x64\xbd\x42\xbf\xf2\xd1\xea\x3b\x7b\x0c\xee\xc6\x9f\xe1\x17\x87\x50\xc9\x7b\x96\xc0\xb8\x53\x09\x72\x09\x57\x62\xa6\x11\x0a\xb1\xa3\x4c\x39\x28\xd9\x3e\xa1\xf8\xf8\x38\xa5\x2b\x71\xbb\x53\xc7\xe8\xb0\x0a\xe3\x93\xe0\xed\x42\xe9\x9b\x95\x22\xaf\xb3\xd7\xee\x6c\x68\xd0\x25\x52\xde\x81\xbf\x64\x01\x4a\x59\x8a\x32\x47\xd1\xa6\x66\xe4\x7a\x8b\xc2\xde\x6a\xa9\x17\x73\x37\xd9\x11\x6a\xea\xce\x3b\xf5\xf4\xa4\x3b\xef\xbc\x68\xee\xd3\x3b\x2b\x8a\x27\x7f\x1c\x84\x45\x03\x83\x62\x5a\xe6\x1e\xbb\x53\x57\xbf\xc0\x69\xf7\xf2\xcc\x4d\x45\xa7\xcf\x4e\xf5\x43\xf6\x45\x6d\xde\xb9\x2f\x70\xdf\x3d\x7d\x55\xff\x05\x52\xd4\x52\x5b\xd2\xa0\x64\xa3\xfb\x39\x6b\xa3\x56\x6f\x36\x2b\x72\x4f\x54\x3b\x3b\x0e\x18\x59\xf2\x67\xfc\x16\x37\xf8\x4d\x20\xec\x8e\xe2\x29\xfb\xa5\xa0\x44\x7e\xd6\xf3\x94\xcd\x24\x29\x11\x0d\x8e\xa7\x51\xf6\x9f\xe9\xcd\x86\x8c\x8f\xdf\x58\x0c\x76\x42\x39\x2b\x2a\x82\x51\xc9\xe1\x17\x7a\xf7\x8e\x51\xc9\xb1\xd0\x0d\xa4\x64\x60\xae\xef\xb4\x47\xcf\x4e\x00\x06\x1f\xe8\xdb\x29\x83\x18\x0d\x7a\xae\x08\x30\xef\xe9\x33\x87\x02\x94\xf1\xfd\x4f\x50\xc1\x9e\xb5\xd1\xdd\x02\x0a\x0f\x49\x39\x8b\x2b\x34\xc0\x9d\xb5\xb0\xac\x34\x4a\x07\x09\x24\xf7\x96\x7b\xd6\x46\xc5\x50\x82\xe0\x81\x46\x82\xf5\xf3\xab\x37\xf4\x89\x9e\x98\xf8\xc1\x2e\x3a\xa8\x7a\xae\x3b\x1e\x6f\x8e\xf4\xd3\xa3\xbb\x07\x8a\x98\x0f\x70\x90\x27\xb2\xe4\xcc\x64\x35\x77\x51\x45\x38\xbc\xb5\xf5\x5e\x9a\x63\x34\x66\xbf\xb1\x7b\xc5\x92\x11\x48\x50\x14\xad\x71\x67\x0f\x99\x7d\xaf\xb5\x02\x8a\x30\x54\x18\x90\xa0\xa5\x00\xb4\x55\xf0\xca\xb5\x5a\xf2\xce\x15\xf2\xc8\xad\x1a\x69\xcb\x69\x97\x32\x48\x84\x68\x07\xb9\x41\x73\x4b\xf8\x1f\x53\xfb\x41\xa5\x62\xef\x06\xf5\x64\x5a\xcc\x79\x5e\x52\x37\xf8\x23\xa6\xb3\xb9\x24\xfc\x8b\x69\x72\x47\xa6\x3a\x69\x66\xd2\x8c\x05\xcb\x5e\x6f\xc5\x99\x63\x2f\x1e\xbc\x11\x27\x15\xe2\x2e\x48\x41\x8f\x71\x8f\x5c\xda\x56\x15\x7d\xcd\xed\x30\x31\x60\x81\xdb\x89\x38\x3e\xde\x0a\xed\xc9\x19\x79\x3f\xd8\x76\x6c\xfc\xaa\x68\x77\x51\x9a\xd8\x17\x15\x56\xa3\xe8\xec\x16\x65\x0c\x74\xbb\x44\x31\x64\x46\x03\xe2\xb6\xc7\xb8\x59\xe4\x30\x84\x37\xb9\xde\xf7\x03\x69\x0c\x03\x7a\x2f\xb7\xd1\x59\xba\xdc\xd2\x0b\xb3\x94\x87\xfa\xa9\x10\x09\xae\x28\x93\xa2\x32\x87\x4b\xe1\xe4\xbb\xc5\xcb\x2d\xf2\x7d\x4d\xee\x27\x0f\x98\x58\x6b\xe8\x72\xdb\xed\xb2\x06\x14\x27\x4e\x48\x9d\x9f\x32\x21\xa7\x34\xc1\xca\x96\x05\x6f\x67\x76\x57\x16\x73\x40\x3e\x22\x26\xff\x8a\x7e\xad\x56\xab\x85\xd5\x34\x77\xe7\xdf\x0f\xea\xc9\x74\xae\x33\xf8\x38\x00\x7f\x56\x8f\xbb\x4e\xf4\x56\x1b\x2f\xc8\xa4\x50\xfa\x62\xa5\x04\x85\x29\x4f\xad\xb6\xe6\x09\x1e\x5f\xa9\x19\x53\x43\xda\x58\x1d\x2f\x94\xb4\x64\x66\xab\x1d\x1d\x8d\xf3\x4e\x41\x1b\xc5\x72\xbb\xe0\xea\x49\x1b\x06\x8d\x85\x67\x1b\x8d\x98\xc3\x04\x55\x5e\x94\x2d\x00\xd3\x51\xc8\x59\x49\xc1\x3e\x85\x59\x3e\xfd\x42\x3d\x53\xa3\x44\x8c\xce\xe4\x7a\x6b\xe2\x9d\x93\x97\xdb\x07\xce\xba\x59\x6d\xf9\xc5\x0d\x55\xf1\x99\xc3\x6d\xba\x07\x4a\x13\xc7\x0c\x0f\xb3\x20\x40\x41\x79\x8f\xcc\x58\x90\x19\x2e\x36\x09\xcf\xf6\x55\x58\x07\x31\xcc\x39\xb7\x9f\x9f\xe3\xe1\xc1\x1c\x7e\x57\xd5\x07\x3b\x6c\x3f\xa6\x70\xb5\x51\x8f\x5f\xa8\xe2\x51\x9b\x03\x30\x31\xbc\xdc\x09\xc0\x14\x72\x2e\x61\x0c\x0b\xf8\x05\x6c\xd3\x52\x03\x0f\x00\xa4\x4b\xa3\x28\xea\x68\xea\x1b\xbc\x93\xaf\x82\x6b\x4c\x8a\x94\xc9\x36\xb8\x79\x75\xe4\xb1\x32\x59\x76\xbe\xe7\x07\xf6\x6c\x55\xfe\x54\xbc\xc3\x1f\x95\x36\xf7\xda\x03\x5f\xb1\x57\x64\xce\xf2\x0a\x13\xf0\x1c\xb2\x46\x55\xe4\x0d\x9f\xa2\xeb\xba\x0a\x5d\xb7\xf1\xd5\x81\xc3\x97\x61\xf8\x8b\xd3\x27\x01\x25\x8b\x00\x90\x99\x3f\x32\x0c\xcd\x5a\x18\x0e\x03\x72\x1c\x95\x85\x27\x05\x31\xda\x6f\x08\xf1\x8b\x43\x88\xa9\x0f\x41\x17\xae\xbf\x81\x3a\x8c\xc1\x57\x07\xe2\xc2\x37\x73\x86\x84\x1c\x5c\x54\x18\x2e\xd6\x14\x8f\x88\xdd\x2a\x55\x93\xd1\x9a\x1d\xbd\x37\x48\xc5\x80\x69\x44\x93\xc9\x3f\x12\x7c\xe1\xfe\x96\x15\x2c\x92\x5c\xf7\x53\xb2\xe8\xd4\xbd\xea\x0a\x8d\x0b\x22\x02\x09\xe1\x8f\x27\x02\x5e\xce\xc3\x23\x7f\xbd\x4f\xe5\x39\x8e\x07\xbd\x2a\x23\xba\x34\xa0\x59\x63\x52\xa8\xe5\x79\x23\xfe\x69\x93\xe1\xe5\xf0\x8c\xb9\x32\x7a\x12\xa7\x31\x66\x2d\x05\x6c\xfc\x67\xac\x52\x4b\xd0\x8c\x98\x15\x03\x17\x31\x7d\xe9\x45\x34\x1b\xbb\xda\x61\xfb\xaf\xd9\xba\x96\x61\x88\xa7\xad\x9e\xc5\x14\x2c\x1a\xfd\x75\xb1\x05\x4f\x1a\x6e\x14\x14\x66\xaa\xda\x98\x05\xbc\xc0\x0e\x3e\x58\xa4\x0c\x7f\x91\x37\x38\xaa\xe3\x33\xc3\x09\xbe\x6b\xa5\xc0\x17\x74\x25\xf7\xf9\xe8\x17\x27\x2e\xdc\x1f\x0a\x83\x31\x6d\x25\x50\xa6\xe8\x91\x23\x6f\xe4\x83\x25\x72\x6e\xc6\x4e\x2e\x6f\xff\xf9\xd0\x18\xcb\xf7\xa8\x17\x6d\x1b\x74\x5c\xec\x09\x3f\x8c\x5f\xd2\xa3\x6d\x32\x0f\x75\xd3\xc0\x27\x69\xe4\x90\x6f\xa5\xc1\x9d\x84\xbd\x66\x5a\xbf\x4a\x51\x93\xeb\x22\x1c\xc6\xeb\x14\x97\x39\x45\xc6\xf8\x21\x16\x63\x93\xca\x10\x2b\x6c\x92\x9e\xe8\x2b\x3e\x67\xe9\x29\x36\x45\x02\xa2\x6f\x8a\x64\xb8\x94\x33\x2d\x5f\xd6\x41\xff\xeb\xc1\x76\x2a\x36\x54\x5c\xdb\x4e\xa5\xe6\x95\xfe\x28\xca\x82\xb1\x4c\x4c\x67\x75\x41\x88\x4d\x10\xd3\x29\xcc\x34\x07\xa6\x89\xa9\x7c\xc6\xe6\x7e\x43\x91\x1f\x67\xec\x28\xde\xfc\x30\x85\x36\xe8\xa0\x8f\x4f\xe3\x37\xf6\x50\xd1\x51\xbc\x42\x87\x17\x14\xc6\x99\x53\xca\x4a\x29\x0d\x38\xa3\xe4\xd1\xf6\x1a\x64\x2c\x8a\x49\x34\xcf\x9f\xb8\xbc\xc7\x93\x28\x3a\xbb\x0f\x71\xcc\x81\xb1\x67\xb7\x2a\x86\x2e\x9b\x4b\x67\xed\x84\x75\xe2\x48\x97\x1e\xfb\x14\xf5\xe6\x10\x5f\x52\x31\x3e\xe4\x98\x56\x77\x1e\x14\xbf\xa8\x8f\x63\x8d\x34\x45\xea\xa3\x5a\xd0\xc2\x31\xb5\x03\xdf\x93\x94\xed\xc8\x21\xbe\xa4\x1d\x50\x0b\x3e\xe1\x27\x41\xf1\x81\xf6\xc8\x36\x84\xe2\x2c\x0c\xb1\xa6\x4d\x4c\x5e\xd3\x6f\xb3\xf3\x1f\x8d\xd9\xda\x09\x3f\xe3\x56\x4b\x47\x2a\xe5\x90\xed\xd1\x02\xcb\x41\x86\xa5\x8b\xc1\xba\x3e\x4f\x04\xd0\x57\x02\x94\x8c\xa0\x99\xc9\x68\xe1\xcb\x72\x7e\x2e\x51\xbb\x12\x8b\x88\xbc\x02\xd3\x06\xce\xfc\xfc\x91\x4c\x70\xc1\x99\x33\xf1\x8b\xf9\xa1\x82\x0c\x63\x98\xc9\x16\x21\x92\x41\x0b\x6c\xb0\xac\xd6\x39\xb2\x48\xcc\x11\x2a\x12\xf1\x39\x5c\xd8\xb1\x39\xb7\x97\xdd\x42\x28\xbc\x6c\x09\x5d\x0d\x06\x7c\x08\xb5\x97\xc7\x69\xb0\x29\x60\xb1\xcb\x5d\x73\x5a\xb0\x9a\x37\x25\x9d\xeb\x2f\xf4\xbd\x32\x69\xc1\x9c\x14\xae\x56\xf9\x56\x9f\x2f\x90\xb4\xec\xb6\x03\xba\x91\x08\x73\x0d\xc4\x22\x5b\x0a\x88\xf0\x87\xd8\xcb\x46\x9a\x29\x35\x40\x3b\x1a\x25\xf7\x8f\x1f\x22\x0a\x5f\xd1\x00\x24\x1b\x0f\xb7\x00\xc9\x02\x39\x2e\x32\x6d\x4e\x02\x1e\x6a\x08\xed\xf9\xaf\x68\x08\xd2\x8d\x2f\x6c\xc8\x79\x68\x05\xc7\x3c\x6f\xdb\xc5\xfd\xff\x50\xfb\x26\xe2\x13\x2e\xce\x22\x28\x7f\x20\x06\x68\x5f\x86\xf2\xdd\xa2\x7d\x59\xa6\xa6\x5e\xad\xa6\xbb\x24\x33\x90\xcb\x76\x4a\x66\x8b\x1b\xda\x82\xa6\x70\xfc\x66\x81\x4f\xb9\x84\xca\x58\x43\xc1\x3c\x8d\xcf\xdf\x35\x94\xf1\x2d\x1e\x0f\xc0\x7e\x1c\x99\xd3\x41\x47\xe4\x45\x78\x8e\x14\x2b\x81\x24\x41\x34\x09\x19\x9c\x5f\x55\xd5\x07\x9c\xab\x8f\x55\x2b\xdd\x6e\x6d\x25\xc6\x9e\x7e\x16\x7e\x57\xa4\x61\xa3\x6b\x71\x0c\x8f\x9f\xc2\xc4\xcd\xe2\xe4\x4f\x06\xb5\x18\x4f\x39\xfa\x1d\x08\x81\x51\x7a\xb8\x28\x12\x1c\x45\x4e\xdb\x06\x16\x71\x3b\xf2\xf3\x45\x36\xa1\xc5\xb7\x78\xce\xab\xbd\x78\x43\x09\xd5\xde\x1a\x4d\xd6\x7a\xaf\xe9\x97\x36\xdb\xaa\x78\x83\xfb\x1c\x3e\x28\x22\x27\xa7\x5c\x49\xe7\x2b\x6f\x3d\xc6\x60\xb9\x85\xff\x3f\x88\xb3\xb6\x4a\x5d\x47\x5d\xb8\x76\x1e\x99\xa7\x9b\xf0\xdb\x65\x00\x59\x48\x7d\x74\x21\xc0\x1f\x39\x0a\x6c\x27\xaa\xee\xc7\xac\xdd\xdc\x4a\xc4\x3a\xba\xa5\x2a\xc3\xcb\x5a\x34\x22\x69\xa5\x97\xeb\xa0\xd4\xf9\x71\x8d\xba\xda\xf5\x4f\xa4\xf0\x3c\xcf\x12\x8a\x19\xc9\x33\xfa\x18\x26\xb6\x48\x2e\xcf\xd2\x94\x4e\x51\x8f\x8a\x24\xe7\x65\x59\x97\x6c\x66\xb5\x84\x8b\x9b\x3c\x2d\x58\x4d\xa7\x94\x60\x3f\x5d\x60\x2f\x63\x85\xe6\x59\xf4\x50\xa0\x48\xa2\x47\x29\x93\x9e\x90\x3a\x39\x4f\xeb\xec\x56\x1b\x41\x2a\xea\xb2\x7b\xcc\xb0\x97\x38\xc3\x0b\xf5\x02\x05\xba\x0d\xcb\x53\xf0\x0e\xd9\x4b\x57\x96\xc6\x0d\x9a\x27\xf0\xb3\xea\x19\x60\xf2\x4f\xe5\x56\x4b\x0b\x29\xc8\xe1\x71\x31\x91\x30\xbe\x04\xe9\x0e\x9a\xc2\xc6\xdc\xe0\x8f\x45\x98\x61\x44\x65\xe5\x68\xb2\xdc\xa6\x53\xd2\xd4\x1c\x4e\xd5\x72\xec\xa6\x4b\x48\x0c\xa1\x53\xc5\x5b\xdc\x8f\xee\xc1\x42\xd9\xc1\x78\xd1\x75\x82\xc3\xb5\x72\xc9\xec\x81\xc2\xf2\x09\x99\x30\xf3\x59\xcb\xe6\x61\x32\x09\x88\x2e\xb1\x1e\x12\x7d\xe3\xb0\x91\x43\xc8\xfe\x22\x1c\x93\x56\x26\x88\x88\xe6\xeb\x9b\x8a\x07\x00\x10\x7c\x7d\xaf\x26\x8d\x2c\x63\x5a\x32\xc8\x67\x30\x4c\x9a\xb8\x88\xe2\xeb\x1b\x89\x47\xad\xd9\xd2\xb1\x73\xa2\x91\x47\x8c\xb7\x3b\xb4\x2c\xb9\x76\xd6\x61\xe4\x6c\x0e\x56\xf2\x30\xca\x53\xad\x7e\x10\xe7\x57\x74\x63\xab\x7d\xbd\x6d\x52\xf3\xad\xd8\xca\x61\x0d\x94\x1b\x4e\x77\xd5\x90\xdf\x25\x53\xea\x3a\x97\x8b\x3f\x34\xc0\xd8\xa0\x16\x98\xa9\x05\xf4\xa7\xda\x36\x28\x7c\xf1\x2d\xbb\xae\x76\x6e\xc7\x96\x06\xd7\x8a\x6e\x67\x1e\xaf\x9c\xdb\x7d\x27\x39\x0c\x9a\xc2\x3b\x79\xf7\x98\xbc\x0a\x7f\xd3\x48\x7c\xd2\xf8\x03\x06\x86\x41\xd2\x8e\xa5\x03\x6b\x0b\xa3\xf5\xed\x83\x15\x4d\xfa\x92\xd1\xf5\x6c\x6c\x07\x6c\x8a\x57\x5f\xd4\x83\xf0\xa4\xfe\x1a\x93\xf8\xe6\xa7\x51\x68\xa9\xc9\x54\x0c\x59\x3d\xeb\x7c\xc8\x60\x6b\x51\xbb\x99\xad\xf9\x87\xea\x78\x60\x1a\x1e\x7f\x4d\xb5\x79\x3f\x39\x66\xdf\xe9\x6e\x6a\xa3\xfd\x6c\x2f\x5c\x63\x32\x87\x5f\xfc\xa7\x76\xc4\x12\xe2\x7f\x75\x47\x0c\x59\xab\xa6\x5d\xca\x39\x04\x0c\xfc\x56\x8f\xbd\xd7\x78\x52\xdc\x50\x20\xb8\xf7\xf8\x9d\x53\xec\x71\x18\x80\x4b\xdc\xda\xc1\x8e\x5e\x93\xa3\x75\x4a\x13\x2f\x42\x9a\x5b\x28\x80\x77\x1d\xc7\x7a\x64\xc7\x21\xa1\xcc\x6b\x4c\x16\xef\xd1\x53\x7e\x2a\x85\x0c\x54\x28\x23\x3b\xd4\x08\x93\xaa\x1a\x39\x2b\x2e\x75\x11\x32\xb2\x92\x5c\xc6\xae\xbd\x64\x6f\x10\x0c\xfc\x96\x53\x32\x58\xbc\x61\x54\x43\xdd\x59\x7b\x37\xf6\x35\x74\x15\xfd\x69\x50\xb2\xb8\xc2\x64\x71\x0b\xc9\xf3\x1a\x42\xab\x62\xb1\x49\xa3\x4e\x95\xdb\x0c\x6a\x56\xe6\xf9\xa0\xe6\xf0\x61\xe4\x76\x4a\xf6\xb3\x71\x7b\xa9\x64\x3f\x1b\x35\x84\x9c\x0f\x00\xc2\x9e\x1e\x85\xbc\x94\x6e\x51\x90\xce\x4b\xbc\x6a\xbb\x53\x75\x68\xb4\x4b\x9a\xc2\x1b\x60\xe4\x4f\x94\x60\x86\x6a\xda\x2a\xbe\x15\x9c\xb5\xca\xae\xff\xaa\x1a\xef\x02\xf4\x5b\xfa\xcc\xa0\xd6\xd6\x7a\xe7\x07\xd9\x03\x2f\x8c\x46\xb6\x34\x4c\x3f\x87\x74\xe0\x85\x9b\xbb\xd9\x48\x11\xf4\x7c\xa8\x08\xfa\xf4\x58\xed\x5d\x2f\x4d\xed\xfc\x30\x36\x7e\x1c\x94\x8b\x15\xbe\xbe\xe9\xa5\x11\x37\x31\x63\x56\xe3\xac\x64\xbe\x42\xa7\x85\x97\x6a\x6e\x64\xb3\x53\x8b\x55\x5f\x42\xce\x83\x75\xcf\xca\xe6\x95\xcf\x8a\x2f\xed\x94\xc1\x6e\x74\x07\x44\x69\x3d\x36\x77\xca\xd7\x3b\xe9\x76\x35\x9a\x83\xe4\xb8\xde\x05\x30\xf1\x33\x82\x89\x97\xd2\xed\xc4\x2d\x6a\xdd\x16\xb0\x6e\x9b\x7a\xaf\xbc\x44\xf3\xa5\x0c\xcb\x8b\x4b\xf1\x9a\x93\x97\x4a\xa1\x36\xae\x66\x11\x88\x77\x21\x70\xa5\x19\x86\xb7\xa8\xb0\x63\xa9\xe8\x22\x82\x2c\x61\x33\xea\x13\x9f\xe9\xcd\xb1\xe1\xe8\x6f\x9f\x3c\xb4\xe1\x9a\x52\x32\x58\x94\xf3\xb6\x4d\x1d\x68\x24\x5a\xb0\xa0\x8f\x9d\x17\x97\xb8\x7d\x67\x14\x2c\x01\x13\xe1\x7a\x71\x29\xde\xc9\xd1\x2d\x02\xf6\x92\x36\xd3\x49\xc8\x50\x7d\x00\x0c\x35\x4f\xe1\xb8\x52\x47\x43\x49\x64\x85\x84\x6c\x7a\x31\xb6\x97\x46\x6e\x55\xdd\x4b\x32\xd6\xc4\x07\x63\xaf\x31\x4d\xbc\x83\x34\x86\x35\xea\x90\xdf\xaa\xa4\xeb\xdd\x10\xf3\x9c\xc1\x48\xb4\x40\x81\x82\x52\x02\x33\xdc\x06\xcb\x61\x24\xd1\x9c\x57\xf8\x04\xa2\xb4\x74\x80\xf6\xd6\x71\x5a\xf0\xd5\x16\xfd\xe9\x73\x3a\x1a\x9a\x0f\x6a\xab\x9d\xe7\x27\xe8\xe8\x13\x0d\xdf\x12\x5d\x63\x72\x10\x70\xf2\xd7\x61\xb7\x16\x7b\x99\x75\xac\x34\x67\x0c\xdd\xfc\xbc\xbf\xb8\x15\xe3\xc8\x7d\x37\x73\xcf\x50\x7a\x09\xf6\x7c\xa5\xea\x21\xd8\xf5\x11\x64\x88\xd0\x7a\x05\xff\xf3\xd2\x28\x5a\x06\x59\x6d\x82\xe1\x0a\xc5\xce\x6c\x94\x7b\xe9\xdc\xc1\x0e\x6d\x52\x77\x53\xf8\x7c\xed\xf9\x49\x0b\xaa\xdb\xd1\x60\x77\x34\x6c\x55\x16\x5a\xcf\x1a\x5b\xda\xd5\xb9\xeb\xbc\x10\x1a\x9e\x73\x3e\x77\xb1\x98\xc6\x22\x5b\x29\x68\x11\x53\xae\x91\xbd\xfc\xc4\x11\x3f\x53\xa4\xe2\xd7\x1c\x93\x38\x7b\x79\x7b\x19\x72\xaf\xf4\x5e\x9f\x2c\x1b\xf4\x7c\xdf\xdc\x28\x2f\x9e\x7c\x8f\x91\x83\x9c\x12\xdb\xce\xae\x65\x27\xd8\x55\x19\x45\x38\xfe\x96\x71\x68\x57\xe7\x8b\x72\x1a\xd9\x5e\x4e\x16\x69\x3f\xd8\x9d\x5e\x6b\x4f\x13\xb2\x50\x20\x00\x84\x70\x1f\xdb\xb8\x96\xa1\x26\x5e\xe2\x45\x21\x74\x08\x02\x19\xb4\x42\xed\x90\xd9\x0f\x84\x35\x8f\x37\xf5\x35\xc8\x18\x6c\x52\x3e\xc3\x90\x95\xc9\x22\xa5\x00\xdb\x47\x4e\xad\x72\x3c\x93\x70\xc0\x9f\xc3\x75\x32\x72\xef\xe2\x92\x49\x3a\xfe\xb0\x62\x88\xf4\x87\xc5\xf9\xe0\x15\x72\xb9\x36\xd0\x47\x6d\x6d\x0f\x26\x69\x1e\xb3\x96\x92\x07\x5b\x68\x6f\x7a\x96\x6d\x81\x33\x05\x9e\x17\x43\x41\x80\x94\x95\x3f\xb2\x8f\x7e\x31\x52\xec\x02\x3b\xc4\x17\xdc\x78\x69\x13\xf4\x92\x79\x03\x76\xd2\xb1\xf5\xcd\x89\xfa\xd3\x3d\x29\xfa\xd4\xca\xab\xcf\x15\x64\x65\x03\xe8\x2e\xcf\x0e\xb9\x55\x56\xa9\xe0\x2c\x9a\xb2\x60\x78\x75\x91\x4d\xd9\x43\x56\xc5\x76\xe0\x97\xc7\x13\xea\x5e\x5c\x70\x17\x54\x1e\x4b\xe4\xd4\x1b\x13\x4a\x03\x21\x4c\x4a\x97\x3f\xe1\xde\x87\xd4\xb0\x48\xb8\xa7\xf5\x65\xdb\xb9\xa8\x8d\x4a\x94\xd7\xb2\x94\x96\x37\x81\x52\xe6\xd7\xc3\x94\xce\x0a\xc4\x18\x35\x9d\xd5\xc1\x2b\xd4\x22\x72\x30\xe3\x90\x36\x8d\x93\x8b\xda\x61\xa6\xb3\x93\x26\x4f\x28\x6d\xd1\x6c\x2a\x45\xfe\x66\xc3\x23\x7d\x26\xe6\x9c\x95\xb5\x9e\x52\xf2\x80\x34\x94\xa2\xd0\x3b\x51\x1b\xfd\x14\xb5\x9c\x3e\x37\xe7\xca\x1a\xc9\x68\x26\x8d\xcb\xb0\x22\xd4\xf2\x61\x91\xb5\xc6\xa9\x66\x1c\xb4\x3f\xc2\xce\xf5\xb6\xb1\x1d\x3d\x50\xc3\x34\xd8\xb4\x98\xc6\xb0\xd3\xf7\x1d\x94\x8a\x8f\xa9\x9f\x8a\x97\xd6\x79\x4e\xe9\x29\x24\xcd\x3b\x3b\x84\x14\x54\xe0\xb5\x68\x69\xad\x4d\x2b\x9e\xbd\xc9\xd3\xc3\x49\x15\x72\xdf\xf1\xf7\x12\x4c\x66\x98\x25\x07\xa3\xcd\xf6\x07\xf6\x11\x1d\x70\xa0\x57\x6b\x3b\x90\x85\x74\xdf\x41\x7b\xbd\xfa\xe4\xf1\xf2\xcd\x58\xcf\xf1\xa2\x76\x7a\xbb\x43\xab\x03\xdd\xa9\x2d\x19\xff\xc3\x2e\x5a\x85\x81\x07\x36\x88\x5d\xdf\x23\xfb\xc3\x57\x2d\x3f\x4b\xa7\x72\x10\xec\x11\x02\xc4\x1e\x49\x4f\x2e\xa4\xd4\xd2\x83\x3e\x11\x73\x4f\x42\x4f\x43\x79\x21\x81\x88\x07\x36\xb4\xde\xe9\xad\x79\xa2\xd1\x85\xec\x9e\x83\xb2\xd2\xeb\xd4\xc2\x55\xd6\x6a\x56\x43\xb0\xb5\x42\x5f\xa0\x9f\x69\x8d\x1b\x43\xd3\x6f\xc6\xcf\xb5\x7c\x2f\x35\x7a\x5c\xc3\xff\x27\xc1\x1c\xc6\x60\xe6\x40\x79\xca\x37\xbb\x04\x8a\x2f\x80\x79\x5d\xd0\xb3\x95\x4f\x61\xdd\x90\x5f\xd2\x30\xc8\xe4\x97\x34\x60\xc6\xeb\xbd\x08\x40\x97\xfe\x05\xc4\x1e\xce\xda\xda\x49\x20\x4c\x4e\x5c\xb4\xe2\xe6\x22\x2c\xfa\xbd\xef\x6b\xd6\x41\xdf\xbc\xbe\x7d\xf7\xc0\x2e\x02\x50\x5e\xe1\x08\x99\x2d\x73\xc8\xe2\xa5\x8e\x59\xd9\x7a\x0f\xae\x1d\x68\xc7\xb0\x72\x06\xcd\xf2\x68\xeb\xb8\x65\xb8\x87\x78\x35\x58\xbc\x83\x72\x7e\xd0\x0d\x05\x51\xe3\x32\x2b\xf1\x7a\xec\xbc\xee\x3b\x15\x52\x82\xa5\xe1\x5a\x09\xa7\x7a\x39\x84\x70\x53\x18\xe1\x5c\x3c\x3e\x7f\xbc\x2a\xe8\x4e\xed\x31\xb4\x1f\xbb\x48\xbb\xbd\xba\x11\xbf\x98\x66\x38\x92\x41\x02\xf7\xf4\x4e\xf7\x00\x56\xdf\xab\x81\x19\xea\x3b\xdd\x23\xec\x9f\x30\x25\x6c\x7c\xb9\xaf\x9d\x1a\xee\x75\x13\x97\xdb\xbb\x8b\xd7\xa8\x2c\xd2\x8d\xca\xc9\x0e\x57\x8d\x5e\xd8\x03\xbb\x9e\x1a\x71\x31\x7a\x5b\xb0\xeb\x81\x74\xea\x1e\xcf\x1e\xdd\x87\x01\xcc\x5d\x32\x4f\x79\x6a\xb2\x2e\x08\x23\x3d\xe3\xef\x4a\xe8\x82\xcd\x8b\x54\x7d\x2a\x07\x94\x65\x3e\xf7\xb4\x69\x55\xd0\xf1\xfc\xd0\x2e\xf1\x7c\xa1\x99\x5e\x8e\x2c\x63\xb0\x1e\xea\xf5\xa2\x27\xa6\xb2\x44\x01\x59\xd3\xd1\xc2\xf6\x12\x13\xd4\xd1\x72\x62\x5e\x22\xbf\x5a\x9f\x0f\xec\x82\xf9\xdb\x03\x26\x6f\xbc\xe4\x90\xeb\xd2\xf1\x65\xdb\x09\xd4\xc4\x7f\x21\xcc\xfa\x48\x36\x17\x7c\x3f\xc9\x97\xcd\x89\xc5\x4b\xce\xe6\x94\x63\xa8\xdc\xa7\x1a\xf1\xf2\x78\xaa\x32\xcf\x95\x75\x73\xc2\x73\x95\xcd\xf8\x0c\xeb\x45\x68\x48\x76\xe3\x97\x2b\xc1\xda\xfd\x2a\xbb\x2b\x5c\x0a\xf0\xba\xaa\xf8\x4e\x3a\xe8\x5f\xe3\x0d\x35\xeb\x5f\xcb\x8b\x6a\x86\x95\x7d\x1f\xcf\xfd\xbe\xef\x8a\x43\x3f\x03\xb9\x27\xba\x99\x41\xfc\x89\x3d\xe3\x65\x40\xf4\xda\x3c\x07\x7a\x7f\x7d\x15\x00\xa6\xfc\x00\x27\xdb\xcd\xa6\xd3\x46\xd5\x7b\x7a\x9f\xf3\x96\x3e\xc5\x6b\xdb\xc6\xfa\xd9\x87\x42\x3d\xd8\x91\x14\xac\x5b\x7c\x91\x46\x8e\x15\xae\x31\x11\x06\x27\x80\x0f\x23\xae\x83\x81\x6e\x15\x49\x56\xcf\xb2\xb8\x22\xc8\xca\x2b\x01\x49\x89\x9d\xfd\xf1\x73\xe6\x49\x07\x91\x3f\x1d\xac\xf5\x35\xc6\x74\x2e\x98\xd3\x6b\x6b\xbd\x78\x27\xfd\x2e\xce\x80\x97\x5e\x37\xf8\x70\xab\x28\x83\x57\xf4\x0d\xbd\x05\x9b\x15\xea\xec\x76\x5e\xe2\xca\x6e\x4f\x80\x93\x21\x58\x60\xed\x6e\xf0\x8b\x0e\xa3\xd8\x62\xf4\xb6\x48\x9b\x2e\x8c\x08\xa5\x4d\x57\x25\x0e\x52\x44\xec\x76\xd9\xda\xb9\x79\xb9\xbc\x70\x00\x6a\xce\x8b\x66\x99\x18\x4f\xb9\x66\xf7\xae\x35\xad\x49\xe6\xab\xbd\xf8\x99\xbd\xbe\xd2\xd2\xcc\x8b\x9d\x58\x27\x90\x95\xb3\x8a\x59\x72\x87\xc6\x26\x21\xf7\x0a\xbf\x66\x40\xc5\xcc\xcd\x86\xd2\xed\xf0\x2d\x26\xba\x7d\x61\xa0\xff\x50\x47\x72\xf7\xb2\x00\xb8\x85\xea\x22\xd8\x56\x19\xf1\xcd\x63\xe7\x76\x4f\x28\xeb\xf1\xb7\xb3\x32\x20\xab\xef\xc7\x3d\x3d\x7e\xd5\xbf\x29\x0a\xb8\x82\x4e\x98\x31\x03\x6b\xbb\xd1\xbf\x29\x71\x09\x19\x0f\x15\x75\x0b\xa5\x5c\x9c\xbb\x76\x9d\xa6\xee\x59\x30\xc9\x58\x9c\xbf\x76\x5d\x44\xbb\x4c\xa9\x39\x8b\x9e\x52\x73\xd1\x24\xa5\xf2\xaa\xca\xf7\x58\xbb\xae\x9d\xeb\xc2\x36\xbb\xb9\xb9\x2a\xf7\x72\xca\x4d\xfc\xcb\x37\xc0\x8c\x3e\xea\xad\xf3\xdb\x41\xb9\x47\xc2\x9a\xee\xf8\x6d\x56\x82\x87\x3a\x1f\x54\x4e\x9d\xe2\x70\x7f\xeb\xb4\x57\x7f\x78\x84\x17\x73\x8f\xbc\x6e\xd7\x8f\xbe\x2d\xc8\xa2\xc6\xa7\x80\x19\x5d\xd4\xcd\x89\xf1\x89\x7a\x41\x05\xbc\x6a\xe6\x1d\xf4\x9a\x02\xd0\x31\x0f\xcb\x06\xe2\xe5\xd0\x06\x82\x95\x78\x95\x48\xae\x72\x3e\x25\xb4\x6b\x67\x0f\x0c\xcb\x36\x11\xd1\x8d\x3c\xbe\xa3\xbd\x0e\x68\x7e\xc6\xe4\xd4\x40\x0a\x84\x17\x02\xe3\xf1\x03\xbb\xd0\x3c\x8c\x85\xf7\xca\xd0\xbb\x59\x2e\x82\x3d\x89\x7a\xce\xd7\xd0\xfe\x5c\xb5\x39\x6d\xff\x6c\xb5\x86\x5e\x3c\xbc\x6a\x99\x5d\x6b\x64\xef\x9b\x9d\x4c\x8c\xda\x25\x25\xc4\x13\x83\xfc\x3e\x34\xb0\x14\x3a\xb6\x53\x20\xdf\x10\xf8\x3c\x53\x5c\xa1\x61\x42\xec\xac\x53\x3e\x09\x76\x45\xa1\x6b\xc8\x8b\x82\x60\x5e\x38\x94\x0e\x5e\x6f\xe2\xcc\x07\x9f\x0c\x8b\x33\x8f\xce\x9b\xea\x4e\x99\x2d\x2e\xbb\xff\x84\x4f\x71\x85\x9f\x71\x84\xc8\xd9\x02\xaa\xc6\xed\xc8\x3a\x29\x48\x41\x0d\xb9\x1d\x13\xe9\xf9\x2c\x33\x9c\xcf\x4d\x7e\x68\xbf\xc6\xef\xe5\x16\x32\xec\x49\xf2\xcb\xf9\x61\x1e\x77\xaa\xb3\xd9\xec\xbd\xfc\xe5\xea\xed\x04\x72\x61\x77\x73\xce\x02\x35\xe0\x9c\x85\xbd\x8f\x0a\x75\x24\xa2\x2c\xe7\xa1\x2a\x1d\xa9\x28\xee\x96\x00\x17\x41\xea\x0d\xbd\x95\xa5\x80\xc7\x14\x3b\xcf\xb4\xe4\xaa\x0b\xf7\x5d\x88\xbc\x8e\x81\x8e\x67\xa5\x1d\x07\x0b\x4d\xe0\x29\x14\x09\x3b\x65\x82\xc2\x89\x33\x22\xb3\xa0\x38\xc6\x68\x0a\xb4\x3c\xc4\x04\x39\x1f\xe1\x90\x4f\xb7\x60\xc9\x08\x10\xef\xbd\x16\x31\x11\xa4\x6c\x65\x4f\xa4\x80\x40\x2f\xe8\xbb\x04\xc2\xab\xe2\x7b\xd9\x45\xa8\x57\x9c\x30\xab\xd5\xe4\x75\x1a\x32\x06\xc9\x08\x1d\xd9\xb0\x66\x84\x8e\xde\x96\x2d\x1f\xe4\x0c\xdd\x0f\xf6\x5e\x07\x63\x51\x82\x7f\xc7\x49\x01\x34\x80\x24\xcc\x01\x82\x51\xc7\x76\x5a\x7b\xa7\xa3\x58\x77\x89\x5f\xc5\xea\x62\x1a\x01\x9b\x9a\x60\x13\x99\xb8\x51\x9e\x4b\x44\xde\xac\x89\x23\x13\x6e\xc0\x5e\x5c\xc6\xb1\xa1\xcb\xb2\x49\x67\x3a\xbd\x51\xf1\x6a\x8d\x7b\x73\xa5\x37\xaa\x00\xde\x79\xdf\xbb\xe0\xa6\xe8\xe5\xed\xed\xbb\x1b\xf1\xd6\x74\xc7\x49\x27\x72\x54\xdc\x93\x84\x29\x8e\x8c\xc6\xfb\xce\x6c\x60\x28\x61\x79\xc8\x03\x34\x9f\x48\x19\x38\x1f\x49\x53\x4a\xbc\x1d\xf8\x91\x56\xda\xc5\x2f\x38\x69\x32\xa2\x1b\xd5\xe2\x4b\xf5\xb6\x8e\x25\x78\x5c\x9f\x87\x1c\x71\x81\x39\x89\x3c\x02\xef\x1b\x1b\x0e\xac\xef\x62\xa3\x01\x2a\xb4\x07\x9d\x3d\xec\xf4\x76\x87\x5e\xfb\xb3\x56\x91\xcf\x87\xa3\xf1\xf2\x93\x78\x19\xf2\x73\x0c\x7b\xf9\x89\x4a\x03\x9b\xef\xe8\xea\x86\x4a\x5d\x61\x02\x9e\xe3\x52\x38\x6d\xb6\x1d\x39\x3b\xf8\xf6\x64\xf1\xba\xd9\xc9\x41\x36\x9e\xf5\xc9\x01\xd1\x65\x4a\x2d\xb1\x41\x99\x65\x6c\xc1\xc3\x42\xc4\x41\x71\x03\xbf\x21\x31\x14\x7d\x2c\x14\x05\xb7\x4d\x2d\x87\x2d\x5f\x8a\x5e\x0c\xdb\x91\xc2\x29\xe7\xa8\xf5\x76\x08\x06\x1d\x74\x42\xbc\xd6\xc1\x75\xce\xe4\x8c\x20\x70\x0c\xd3\x91\x43\xa3\x57\x73\x96\xdb\x17\x4a\xa0\x7d\x7d\x56\xe0\x12\xed\xed\x93\x51\xe6\x42\x11\x74\x31\x95\x4a\xa0\x77\xa9\x07\x0b\xf0\xe5\x2f\x81\xbf\xb8\x5c\x00\xce\x65\x97\xb8\x84\x40\x66\x59\x5c\x42\x00\xc5\x8c\x21\xc0\x20\x63\x18\x0c\xa3\x57\xcd\x40\xce\x61\xe1\xdf\xad\x74\x77\xd1\x64\xba\x50\x8b\x87\x34\xd7\xec\x54\x3b\x92\x27\x09\xfe\x99\xe0\x53\xe4\x6c\xda\xa5\x21\x63\x21\xda\x76\x09\xa0\x3e\xa9\x66\xcc\xcc\x70\x7e\xa1\x6f\xbe\xf7\x4e\x68\x6c\x78\x3c\x35\x1a\x8c\xb4\xfe\x8e\x52\x32\x98\xa5\x00\x68\xa1\xe9\x28\x01\x05\x49\xe8\x64\xfd\xb1\xfa\x30\xde\x55\x30\x2e\x0f\x26\xdb\x1c\x47\xa8\x23\xfd\xc0\xc4\xde\x3c\xc0\xa2\x93\x92\x16\x9d\x52\xd4\xd1\x49\x05\x7a\x2b\x21\x48\x76\x58\x11\xe1\xd9\x68\x9a\x99\x31\x6b\x12\x26\x0a\x9e\x5f\xcb\x8e\x4e\x76\x8c\xaa\x7f\xd1\xa5\x92\xad\x2a\x20\x9e\xf1\x67\x01\xa3\x0d\xc9\xa4\x94\x45\xc2\xf6\x2b\x4a\x63\x94\x99\x11\x7d\xd0\x1a\xc5\xa8\xfd\x51\x35\x75\xc3\x29\x53\xc8\x50\x33\x02\x5d\x74\xdd\x6c\x34\x72\x91\x27\x4f\x43\x6f\xd7\xd9\x4b\x87\xac\x4f\xd3\x69\x0c\x59\xb6\x47\x23\xe8\xd5\xac\xb5\x51\xf5\xc3\x33\x12\x9e\x04\x7c\xce\xb2\xb4\xfa\x40\x63\xff\x31\x3c\x88\xe7\x3b\xcc\x60\x3a\x90\x99\xeb\x15\xfe\xb9\x28\x2a\x7b\x35\x28\x93\x85\x92\xa0\xaf\xa2\x50\x11\x95\xf5\xfb\x14\x7d\xd5\xdb\x07\xa2\xda\xc7\x40\xe1\x88\xb5\x1f\xdd\x8e\xee\xa9\x27\x11\x6c\xdd\xd0\x7c\x37\x2d\x2b\xa4\x9f\x80\x41\xe6\xff\x08\x88\xa9\x8f\x21\xa4\xfa\xaf\x1c\xc6\x9c\xbe\xb3\xfe\x7d\x47\x97\x6f\xdf\x51\x4f\xff\x2d\x8b\x33\x5e\xc6\x80\x0f\xd1\xd4\xbf\x02\xc1\x24\xf4\x7b\x8a\xa5\xfe\x35\x8d\xa0\x6e\x4c\x63\x03\x87\x39\x2b\xe2\x6a\xe6\x08\x39\xe4\xef\x89\x4e\xcd\xd0\x51\xdf\xbe\x1a\x1b\xf7\x70\x8a\x2e\x76\xf4\xeb\x9b\x37\x89\x84\xff\x2b\x27\xa8\x56\x58\xf3\x35\xe3\xb6\x18\xff\xf4\x57\x8e\xd3\xfa\xd5\xcd\x8a\x4e\xd8\x79\x9d\x86\xef\xc9\xae\xa1\xb5\xbf\xbc\xf0\xd3\x46\x42\xbf\x86\x5e\x6e\xb3\xf5\x2e\xb7\x45\x33\x70\xb5\xe7\x41\xef\xe7\x3b\x62\xb2\x87\x42\x14\x6c\x8e\x61\x8a\xf4\x97\x92\xb5\xe3\x08\x8f\xa4\x6a\x3e\x8b\x51\x94\xab\xea\x83\xb7\xb6\xfb\x58\xc9\x2d\x74\x49\x6e\x6d\x05\x3b\x98\x1f\xff\xe2\x66\x36\xf6\x50\xd1\x27\xfc\xfa\x1e\x30\x7f\xcf\x4e\x86\xc5\x99\xab\xbe\xdf\x63\x02\x85\xea\xc2\x84\x1d\x26\xec\xec\x88\x81\x1d\xbe\x6f\xf1\xb3\x95\x47\xfc\x3a\xe0\xd7\x41\xa9\x3b\x2a\x8c\xc4\xf9\x7b\xb1\xb7\xc6\xef\x30\xe5\x88\xdf\x47\x25\x39\x2c\x04\x39\x33\xc6\xc0\xa7\xe1\x03\xc3\x9b\x1a\xbc\xa7\xc3\xf4\xf0\x71\xe6\x2a\xa8\x95\x53\xe9\xe7\x99\xab\x5a\x79\xe4\x24\xfc\x75\xe6\x2a\xa8\x9e\x93\xe8\xe7\x19\x9e\xa9\x7e\x17\x10\xd2\xef\x33\x57\x41\x3b\x38\x91\x7e\x9e\xb9\x6a\x90\x87\x3a\xb5\x8b\x7f\x61\x6a\x6a\x15\xff\xaa\xaa\x0f\xed\x60\xfb\xdf\xac\x51\x1f\xab\x10\x93\x30\x05\x23\x7c\x36\xd8\x3e\xd8\x3f\xab\x81\xee\x04\x42\x84\xf6\xb1\xef\xac\x6c\x57\x55\x88\x41\xaa\x4d\x3f\x46\x45\x6c\x8a\xc6\x4b\x60\xc9\x95\x31\xbd\x00\x3d\xf6\x6a\x55\xa1\x9a\xd7\x5b\x5b\xaf\x91\x61\x42\x05\xaf\xd3\xbf\x29\xf1\xcd\xdf\xff\x8e\xf0\xfa\x37\xf5\x8f\x7f\x88\xd7\x3f\x7f\x2b\xd4\xa7\x46\xa9\xd6\x89\x3d\x9b\x38\x05\xb0\xbd\xfc\xf4\xbc\x80\x5c\x55\xfc\x30\x8f\x6d\x6a\xe8\x61\x1e\x56\x5f\xfd\xaf\x00\x00\x00\xff\xff\x41\x90\x5c\x81\x61\xde\x00\x00") func confLocaleLocale_enUsIniBytes() ([]byte, error) { return bindataRead( @@ -4386,7 +4386,7 @@ func confLocaleLocale_enUsIni() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "conf/locale/locale_en-US.ini", size: 56926, mode: os.FileMode(420), modTime: time.Unix(1487060119, 0)} + info := bindataFileInfo{name: "conf/locale/locale_en-US.ini", size: 56929, mode: os.FileMode(420), modTime: time.Unix(1487105196, 0)} a := &asset{bytes: bytes, info: info} return a, nil } diff --git a/modules/setting/setting.go b/modules/setting/setting.go index d0fd21fd..0c7dcc65 100644 --- a/modules/setting/setting.go +++ b/modules/setting/setting.go @@ -106,7 +106,6 @@ var ( UseMySQL bool UsePostgreSQL bool UseMSSQL bool - UseTiDB bool // Webhook settings Webhook struct { diff --git a/routers/admin/admin.go b/routers/admin/admin.go index 89482959..15d71bbe 100644 --- a/routers/admin/admin.go +++ b/routers/admin/admin.go @@ -121,7 +121,7 @@ const ( CLEAN_MISSING_REPOS GIT_GC_REPOS SYNC_SSH_AUTHORIZED_KEY - SYNC_REPOSITORY_UPDATE_HOOK + SYNC_REPOSITORY_HOOKS REINIT_MISSING_REPOSITORY ) @@ -152,9 +152,9 @@ func Dashboard(ctx *context.Context) { case SYNC_SSH_AUTHORIZED_KEY: success = ctx.Tr("admin.dashboard.resync_all_sshkeys_success") err = models.RewriteAllPublicKeys() - case SYNC_REPOSITORY_UPDATE_HOOK: - success = ctx.Tr("admin.dashboard.resync_all_update_hooks_success") - err = models.RewriteRepositoryUpdateHook() + case SYNC_REPOSITORY_HOOKS: + success = ctx.Tr("admin.dashboard.resync_all_hooks_success") + err = models.SyncRepositoryHooks() case REINIT_MISSING_REPOSITORY: success = ctx.Tr("admin.dashboard.reinit_missing_repos_success") err = models.ReinitMissingRepositories() diff --git a/routers/install.go b/routers/install.go index dbdb2d6c..e4778d82 100644 --- a/routers/install.go +++ b/routers/install.go @@ -65,7 +65,7 @@ func GlobalInit() { highlight.NewContext() markdown.BuildSanitizer() if err := models.NewEngine(); err != nil { - log.Fatal(4, "Fail to initialize ORM engine: %v", err) + log.Fatal(2, "Fail to initialize ORM engine: %v", err) } models.HasEngine = true diff --git a/templates/.VERSION b/templates/.VERSION index f17ca3f9..79c7c09a 100644 --- a/templates/.VERSION +++ b/templates/.VERSION @@ -1 +1 @@ -0.9.146.0214 \ No newline at end of file +0.9.147.0214 \ No newline at end of file diff --git a/templates/admin/dashboard.tmpl b/templates/admin/dashboard.tmpl index af4563a0..acffdc43 100644 --- a/templates/admin/dashboard.tmpl +++ b/templates/admin/dashboard.tmpl @@ -40,7 +40,7 @@ {{.i18n.Tr "admin.dashboard.operation_run"}} - {{.i18n.Tr "admin.dashboard.resync_all_update_hooks"}} + {{.i18n.Tr "admin.dashboard.resync_all_hooks"}} {{.i18n.Tr "admin.dashboard.operation_run"}} diff --git a/vendor/github.com/gogits/git-module/git.go b/vendor/github.com/gogits/git-module/git.go index 35bf142f..0b759312 100644 --- a/vendor/github.com/gogits/git-module/git.go +++ b/vendor/github.com/gogits/git-module/git.go @@ -10,7 +10,7 @@ import ( "time" ) -const _VERSION = "0.4.6" +const _VERSION = "0.4.7" func Version() string { return _VERSION diff --git a/vendor/github.com/gogits/git-module/hook.go b/vendor/github.com/gogits/git-module/hook.go index 20da9939..fad81e43 100644 --- a/vendor/github.com/gogits/git-module/hook.go +++ b/vendor/github.com/gogits/git-module/hook.go @@ -10,16 +10,18 @@ import ( "os" "path" "strings" - - "github.com/Unknwon/com" ) -// hookNames is a list of Git server hooks' name that are supported. -var hookNames = []string{ - "pre-receive", - // "update", - "post-receive", -} +var ( + // Direcotry of hook file. Can be changed to "custom_hooks" for very purpose. + HookDir = "hooks" + // HookNames is a list of Git server hooks' name that are supported. + HookNames = []string{ + "pre-receive", + "update", + "post-receive", + } +) var ( ErrNotValidHook = errors.New("not a valid Git hook") @@ -27,7 +29,7 @@ var ( // IsValidHookName returns true if given name is a valid Git hook. func IsValidHookName(name string) bool { - for _, hn := range hookNames { + for _, hn := range HookNames { if hn == name { return true } @@ -51,7 +53,7 @@ func GetHook(repoPath, name string) (*Hook, error) { } h := &Hook{ name: name, - path: path.Join(repoPath, "hooks", name), + path: path.Join(repoPath, HookDir, name), } if isFile(h.path) { data, err := ioutil.ReadFile(h.path) @@ -74,7 +76,7 @@ func (h *Hook) Name() string { return h.name } -// Update updates hook settings. +// Update updates content hook file. func (h *Hook) Update() error { if len(strings.TrimSpace(h.Content)) == 0 { if isExist(h.path) { @@ -91,8 +93,8 @@ func ListHooks(repoPath string) (_ []*Hook, err error) { return nil, errors.New("hooks path does not exist") } - hooks := make([]*Hook, len(hookNames)) - for i, name := range hookNames { + hooks := make([]*Hook, len(HookNames)) + for i, name := range HookNames { hooks[i], err = GetHook(repoPath, name) if err != nil { return nil, err @@ -100,22 +102,3 @@ func ListHooks(repoPath string) (_ []*Hook, err error) { } return hooks, nil } - -const ( - HOOK_PATH_UPDATE = "hooks/update" -) - -// SetUpdateHook writes given content to update hook of the reposiotry. -func SetUpdateHook(repoPath, content string) (err error) { - log("Setting update hook: %s", repoPath) - hookPath := path.Join(repoPath, HOOK_PATH_UPDATE) - if com.IsExist(hookPath) { - err = os.Remove(hookPath) - } else { - err = os.MkdirAll(path.Dir(hookPath), os.ModePerm) - } - if err != nil { - return err - } - return ioutil.WriteFile(hookPath, []byte(content), 0777) -} diff --git a/vendor/vendor.json b/vendor/vendor.json index b1c83cf6..8c657f55 100644 --- a/vendor/vendor.json +++ b/vendor/vendor.json @@ -159,10 +159,10 @@ "revisionTime": "2016-08-10T03:50:02Z" }, { - "checksumSHA1": "ZHQdOAFE192O5dAsLx0drW+VP8U=", + "checksumSHA1": "eH7yo/XLaT4A9yurJ0rrRxdbBTE=", "path": "github.com/gogits/git-module", - "revision": "172cbc21accbf0085a58fd0832f46a9f694130e8", - "revisionTime": "2017-01-31T23:38:55Z" + "revision": "4d18cee9bde82bffe8c91747f1585afbf06311b2", + "revisionTime": "2017-02-14T20:50:54Z" }, { "checksumSHA1": "SdCLcPmklkXjPVMGkG1pYNmuO2Q=",