diff --git a/README.md b/README.md index 39ec98ff..8f531afd 100644 --- a/README.md +++ b/README.md @@ -1,2 +1,21 @@ # atlantis A [terraform](https://www.terraform.io/) collaboration tool that enables you to collaborate on infrastructure safely and securely. + +## Locking +When a **Run** is triggered, the set of infrastructure that is being modified is locked against any modification or planning until the **Run** has been +completed by an `apply` and the pull request has been merged + +``` +{ + "data_dir": "/var/lib/atlantis", + "locking": { + "backend": "file" + } +} + +{ + "locking": { + "backend": "dynamodb" + } +} +``` diff --git a/apply_executor.go b/apply_executor.go index 91c14ec6..bbafd3ad 100644 --- a/apply_executor.go +++ b/apply_executor.go @@ -13,7 +13,8 @@ import ( "github.com/aws/aws-sdk-go/aws" "github.com/aws/aws-sdk-go/service/s3" "github.com/aws/aws-sdk-go/service/s3/s3manager" - "github.com/google/go-github/github" + "github.com/hootsuite/atlantis/locking" + "time" ) type ApplyExecutor struct { @@ -60,7 +61,6 @@ func (a *ApplyExecutor) execute(ctx *ExecutionContext, prCtx *PullRequestContext } func (a *ApplyExecutor) setupAndApply(ctx *ExecutionContext, prCtx *PullRequestContext) ExecutionResult { - stashCtx := a.stashContext(ctx) a.github.UpdateStatus(prCtx, PendingStatus, "Applying...") if a.requireApproval { @@ -78,8 +78,6 @@ func (a *ApplyExecutor) setupAndApply(ctx *ExecutionContext, prCtx *PullRequestC } } - //runLog = append(runLog, "-> Confirmed pull request was plus one'd") - planPaths, err := a.downloadPlans(ctx.repoOwner, ctx.repoName, ctx.pullNum, ctx.command.environment, a.scratchDir, a.awsConfig, a.s3Bucket) if err != nil { errMsg := fmt.Sprintf("failed to download plans: %v", err) @@ -99,7 +97,7 @@ func (a *ApplyExecutor) setupAndApply(ctx *ExecutionContext, prCtx *PullRequestC //runLog = append(runLog, fmt.Sprintf("-> Downloaded plans: %v", planPaths)) applyOutputs := []PathResult{} for _, planPath := range planPaths { - output := a.apply(ctx, stashCtx, planPath) + output := a.apply(ctx, prCtx, planPath) output.Path = planPath applyOutputs = append(applyOutputs, output) } @@ -107,7 +105,7 @@ func (a *ApplyExecutor) setupAndApply(ctx *ExecutionContext, prCtx *PullRequestC return ExecutionResult{PathResults: applyOutputs} } -func (a *ApplyExecutor) apply(ctx *ExecutionContext, stashCtx *StashPullRequestContext, planPath string) PathResult { +func (a *ApplyExecutor) apply(ctx *ExecutionContext, prCtx *PullRequestContext, planPath string) PathResult { //runLog = append(runLog, fmt.Sprintf("-> Running apply %s", planPath)) planName := path.Base(planPath) planSubDir := a.determinePlanSubDir(planName, ctx.pullNum) @@ -164,18 +162,33 @@ func (a *ApplyExecutor) apply(ctx *ExecutionContext, stashCtx *StashPullRequestC } if remoteStatePath != "" { - //runLog = append(runLog, "-> Remote state configured") - // now lock the state prior to applying - stashLockResponse := a.stash.LockState(ctx.log, stashCtx, remoteStatePath) - if !stashLockResponse.Success { - msg := fmt.Sprintf("failed to lock state: %s", stashLockResponse.Message) - ctx.log.Err(msg) + tfEnv := ctx.command.environment + if tfEnv == "" { + tfEnv = "default" + } + run := locking.Run{ + RepoOwner: prCtx.owner, + RepoName: prCtx.repoName, + Path: execPath.Relative, + Env: tfEnv, + PullID: prCtx.number, + User: prCtx.terraformApplier, + Timestamp: time.Now(), + } + + lockAttempt, err := a.lockManager.TryLock(run) + if err != nil { return PathResult{ Status: "error", - Result: GeneralError{errors.New(msg)}, + Result: GeneralError{fmt.Errorf("failed to acquire lock: %s", err)}, + } + } + if lockAttempt.LockAcquired != true && lockAttempt.LockingRun.PullID != prCtx.number { + return PathResult{ + Status: "error", + Result: GeneralError{fmt.Errorf("failed to acquire lock: lock held by pull request #%d", lockAttempt.LockingRun.PullID)}, } } - //runLog = append(runLog, "-> Stash lock aquired") } // need to get auth data from assumed role @@ -226,23 +239,6 @@ func (a *ApplyExecutor) apply(ctx *ExecutionContext, stashCtx *StashPullRequestC } } -func (a *ApplyExecutor) validatePlusOne(prSubmitter string) func(*github.IssueComment) bool { - return func(c *github.IssueComment) bool { - if c == nil || c.Body == nil { - return false - } - body := *c.Body - if !(strings.Contains(body, ":+1:") || strings.Contains(body, "+1") || strings.ContainsRune(body, '\U0001f44d')) { - return false - } - if c.User == nil || c.User.Login == nil { - return false - } - // the plus-oner can't be the user that submitted the PR or ourselves (otherwise our comment telling the user they're missing a +1 would count as approval) - return *c.User.Login != prSubmitter && *c.User.Login != a.atlantisGithubUser - } -} - func (a *ApplyExecutor) downloadPlans(repoOwner string, repoName string, pullNum int, env string, outputDir string, awsConfig *AWSConfig, s3Bucket string) (planPaths []string, err error) { awsSession, err := awsConfig.CreateAWSSession() if err != nil { diff --git a/atlantis_config_file_test.go b/atlantis_config_file_test.go index 795654d4..1a2a2439 100644 --- a/atlantis_config_file_test.go +++ b/atlantis_config_file_test.go @@ -4,33 +4,34 @@ import ( "io/ioutil" "os" "testing" + . "github.com/hootsuite/atlantis/testing_util" ) var tempConfigFile = "/tmp/" + AtlantisConfigFile func TestConfigFileExists_invalid_path(t *testing.T) { var c Config - equals(t, c.Exists("/invalid/path"), false) + Equals(t, c.Exists("/invalid/path"), false) } func TestConfigFileExists_valid_path(t *testing.T) { var c Config var str = ` ---- +--- terraform_version: "0.0.1" -pre_apply: - commands: +pre_apply: + commands: - "echo" - "date" -pre_plan: - commands: +pre_plan: + commands: - "echo" - "date" stash_path: "file/path" ` writeAtlantisConfigFile([]byte(str)) defer os.Remove(tempConfigFile) - equals(t, c.Exists("/tmp"), true) + Equals(t, c.Exists("/tmp"), true) } func TestConfigFileRead_invalid_config(t *testing.T) { @@ -39,20 +40,20 @@ func TestConfigFileRead_invalid_config(t *testing.T) { writeAtlantisConfigFile(str) defer os.Remove(tempConfigFile) err := c.Read("/tmp") - assert(t, err != nil, "expect an error") + Assert(t, err != nil, "expect an error") } func TestConfigFileRead_valid_config(t *testing.T) { var c Config var str = ` ---- +--- terraform_version: "0.0.1" -pre_apply: - commands: +pre_apply: + commands: - "echo" - "date" -pre_plan: - commands: +pre_plan: + commands: - "echo" - "date" stash_path: "file/path" @@ -60,7 +61,7 @@ stash_path: "file/path" writeAtlantisConfigFile([]byte(str)) defer os.Remove(tempConfigFile) err := c.Read("/tmp") - assert(t, err == nil, "should be valid yaml") + Assert(t, err == nil, "should be valid json") } func writeAtlantisConfigFile(s []byte) error { diff --git a/base_executor.go b/base_executor.go index 043b8090..072ddfb5 100644 --- a/base_executor.go +++ b/base_executor.go @@ -1,6 +1,9 @@ package main -import "path/filepath" +import ( + "path/filepath" + "github.com/hootsuite/atlantis/locking" +) type BaseExecutor struct { github *GithubClient @@ -8,10 +11,10 @@ type BaseExecutor struct { scratchDir string s3Bucket string sshKey string - stash *StashPRClient ghComments *GithubCommentRenderer terraform *TerraformClient githubCommentRenderer *GithubCommentRenderer + lockManager locking.LockManager } type PullRequestContext struct { @@ -75,17 +78,6 @@ func (b *BaseExecutor) worstResult(results []PathResult) string { return worst } -func (b *BaseExecutor) stashContext(ctx *ExecutionContext) *StashPullRequestContext { - return &StashPullRequestContext{ - owner: ctx.repoOwner, - repoName: ctx.repoName, - number: ctx.pullNum, - pullRequestLink: ctx.pullLink, - terraformApplier: ctx.requesterUsername, - terraformApplierEmail: ctx.requesterEmail, - } -} - func (b *BaseExecutor) Exec(f func(*ExecutionContext, *PullRequestContext) ExecutionResult, ctx *ExecutionContext, github *GithubClient) { prCtx := b.githubContext(ctx) result := f(ctx, prCtx) diff --git a/bindata_assetfs.go b/bindata_assetfs.go index 0ae78f1a..d37a4e9b 100644 --- a/bindata_assetfs.go +++ b/bindata_assetfs.go @@ -7,7 +7,6 @@ // static/css/skeleton.css // static/images/atlantis-icon.png // static/images/atlantis-icon_512.png -// static/js/jquery-1.11.3.min.js // DO NOT EDIT! package main @@ -91,7 +90,7 @@ func staticAtlantisIconPng() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "static/atlantis-icon.png", size: 4339, mode: os.FileMode(420), modTime: time.Unix(1495302239, 0)} + info := bindataFileInfo{name: "static/atlantis-icon.png", size: 4339, mode: os.FileMode(420), modTime: time.Unix(1495690053, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -111,12 +110,12 @@ func staticAtlantisIcon_512Png() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "static/atlantis-icon_512.png", size: 13413, mode: os.FileMode(420), modTime: time.Unix(1495302239, 0)} + info := bindataFileInfo{name: "static/atlantis-icon_512.png", size: 13413, mode: os.FileMode(420), modTime: time.Unix(1495690053, 0)} a := &asset{bytes: bytes, info: info} return a, nil } -var _staticCssCustomCss = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xac\x58\x6d\x6f\xdb\x36\x10\xfe\xee\x5f\x71\x6b\x50\xa0\xc9\x4c\x47\x76\xde\x65\x60\x18\x10\xb4\x9f\x86\x61\xd8\x3f\xa0\xc5\x93\x45\x84\x22\x09\x92\x8e\xed\x16\xfe\xef\x03\x25\x51\xef\x72\xea\x62\x29\x6a\xd8\xd2\xdd\xc3\xbb\xe3\x73\xcf\x51\x5a\x24\x4a\x3a\xca\x25\x1a\xf8\x31\x03\xc8\xe9\x81\xec\x39\x73\x59\x0c\xcb\x28\x8a\xf4\x61\x0d\xa7\xd9\x22\x43\xca\x6a\x03\xb3\xe5\x92\x38\xa5\x63\x78\x34\x98\xaf\x67\x00\x0e\x0f\x8e\x50\xc1\xb7\x32\x86\x04\xa5\x43\x53\x7b\x71\xb9\x25\xa9\x92\x8e\x58\xfe\x1d\x0b\x80\xfa\x57\x0c\xcb\xc5\xaa\x42\x48\x94\x50\x26\x86\xab\x97\x97\x17\xff\x53\xa0\x73\x68\x88\xd5\x34\xe1\x72\x1b\x83\x54\x26\xa7\xa2\x00\x4d\x14\x43\x82\x07\x9a\x6b\x81\x83\x80\x96\x8b\x87\x0a\xb0\xba\xba\x51\xce\xa9\x3c\x86\x68\xe0\x4b\x36\x8a\x1d\x0b\x80\x7d\xc6\x1d\x16\x6b\x61\x0c\xda\xa0\x77\xdf\x2b\xc3\xc8\xde\x50\x1d\xc3\xc6\x20\x7d\x23\xfe\x82\x87\x90\xf4\x7d\x43\xcb\x4a\x30\x6e\xb5\xa0\x47\x1f\x9d\xc4\x0a\x5f\x3a\x94\x8e\x38\xba\x11\x48\xaa\xf4\x07\x49\xdf\xeb\xc3\xfa\x34\x73\xf5\xfa\xed\x7b\xab\xe2\xde\x82\xe6\x9c\x30\x74\x94\x0b\x5b\x98\x54\x25\x76\x86\x4a\x9b\x2a\x93\xc7\xb0\xd3\x1a\x4d\x42\x6d\x11\xed\x44\x51\x87\x75\x6c\xdd\x2a\x3c\xf6\xc8\xb7\x99\x8b\xe1\x31\x8a\xd6\xcd\x32\xd5\x4e\x0a\x4c\xdd\x7a\x16\xa2\xa1\x8e\x4e\x84\xe2\xd3\x87\xdf\x78\xae\x95\x71\x54\xba\xff\x25\xa0\xa5\x0f\xe8\x34\x5b\x70\x69\x1d\x95\x09\x12\x49\x73\x24\x8e\xb6\xaa\x99\xd2\x9c\x8b\x63\x0c\xb9\x92\xaa\xd8\xbc\x79\xf3\x75\xdd\xe7\xd9\x7d\xb1\xcc\x69\xb6\xd0\x82\x26\x98\x29\x11\xe8\x7c\x39\x54\x8f\xb2\x5b\x83\xc7\xc6\xc6\x1d\x05\xc6\xc0\x1d\x15\x3c\x99\xe8\x0c\x1f\x85\x50\x65\x67\xf0\x7c\x3b\x42\xa5\x69\x3f\x83\x5b\xae\x24\xb1\x28\x30\x71\x85\xe7\x98\x21\x40\x2a\x14\x75\x23\x3b\x73\x9a\x5d\x55\x10\x82\x5b\x37\x68\x9f\x67\x7d\xf0\x36\xb3\xdb\x1b\xf8\x8b\x9a\x2d\x1a\x70\x19\x95\xa0\x33\x8f\x73\x73\x3b\xfb\x33\x47\xc6\x29\x7c\xc9\xb9\x0c\x22\xf1\xf0\x10\xe9\xc3\x75\x81\xd4\x56\x89\x5e\x5b\x46\xbe\x66\x70\xf2\x46\xef\x54\xec\x90\x68\xa3\xb4\x1d\xb1\x7c\xa9\xe9\xd0\x6b\xe0\xa7\x3e\x42\x28\xdd\xc0\x72\xd9\x58\x86\x56\xdf\x1a\xce\x60\x91\x28\xb1\xcb\xe5\x7c\xea\x86\x9d\x80\x2b\x25\xa5\x04\x64\x2a\xb1\xc4\x62\xe2\xb8\x92\x95\xb9\xa6\x8c\x15\x54\xf6\x62\x58\xea\x4c\x6b\x01\x8b\x92\x91\xa3\xda\x19\x8b\x22\x25\x89\xd2\xc7\xca\xad\xda\x21\xe3\xe9\xbe\x1e\x16\x6c\x55\x0a\x6f\x1b\x29\x31\x88\xd2\x66\xca\x15\xba\xa4\xeb\x42\x6b\x65\xb9\x8f\x27\x06\xba\xb1\x4a\xec\x5c\x25\x09\xd5\x06\xdd\x3f\x7f\x2e\x7f\x67\x4d\x6b\x7d\x0e\xcd\x98\x3a\x2f\x8d\xd5\xf2\x07\x12\x4c\x82\xa0\x0d\xa9\x50\x28\x9b\x9b\xe0\xc2\x53\xc3\x85\xdb\x1b\xf8\xbb\x54\xca\x9b\x5b\x9f\x45\x25\x9b\xbf\x8f\x96\x70\xa3\x0c\x43\xe3\x33\x0f\x48\xa1\x8c\xa5\xdb\xbc\xf9\x5a\xca\x74\x48\xbd\x6e\x9b\x8d\x50\xc9\x5b\x27\xed\x26\xcb\x90\xd4\x63\x3d\x1b\x00\x36\x34\x79\xdb\x1a\xb5\x93\x2c\x86\xab\x34\x4d\xcb\xab\xdf\x09\x97\x0c\x0f\x31\x94\x43\xa8\x1d\x58\x0c\x4b\x7d\x00\xab\x04\x67\x70\x85\x88\x9d\xfb\x35\x55\xba\x26\xed\x14\x26\xe2\x0e\x85\x6e\x2a\xf4\x07\xf4\x06\x72\x37\xa3\x0e\x66\xdd\xc3\x00\xfe\x6b\x50\x9f\xa0\x21\xe3\x43\xb0\x71\xe7\x0e\xf3\x01\x87\x0c\x0a\xea\xf8\x7b\x18\x2b\x25\x4b\xcb\x49\xf0\x31\xa2\xe0\xf2\xed\xf2\x79\xb5\xf4\xaa\x33\x3d\x92\xce\x8c\x8c\x62\x11\x86\x89\x32\xb4\x8c\xbe\x49\x5d\x70\x89\x64\x6c\xeb\xc3\x49\x63\xb5\x5a\x0d\x83\x5f\xd0\xc4\x27\x5f\xe5\x10\x4c\xef\xee\x5e\xef\xbe\x85\x54\x33\x6a\x09\x53\xc9\x1b\x32\x22\xe9\x3b\xb4\x0f\x04\xed\x3a\xa6\xfc\x80\xac\x8a\xd2\xd3\x27\xea\xb6\xdc\x39\xac\xb3\x1c\x2f\x1c\x6f\x6f\xe0\x5f\x24\xea\x1d\x0d\x2f\x4e\x18\x2e\xc3\x92\x25\x05\x49\x80\x61\x22\x68\x59\x12\x70\x0a\x72\xea\x92\x0c\x8a\xf3\x97\x4a\xe1\x33\x6c\xa8\x45\x06\x0d\xcb\xca\x0e\x9d\xc8\x6b\x9a\x8f\xcf\x25\x1d\xcb\x70\xfe\x51\xda\x87\x53\x61\xe9\xf2\xd7\x42\x69\x94\x93\xad\x7a\x6a\x59\x8e\xf6\xc5\x59\x75\x1b\x2b\xea\x99\xd6\x2e\x3b\xf5\x6c\x17\x1b\xca\xf8\xce\xc6\x70\x1f\xe8\x58\x0e\xa4\x55\x47\x2c\xc9\x43\x90\x15\xb2\xc7\xcd\x1b\x77\x24\xe5\xc2\x79\x64\x66\x94\x26\x36\xa3\x4c\xed\xbf\x44\x10\xc1\xa3\x3e\x80\xd9\x6e\xe8\x97\x68\xee\xff\x2d\x96\xd7\xd7\xa5\xa3\xf7\xcd\xd5\xf7\x5f\x72\x2c\xfe\x2e\x71\xec\x54\xb9\xe8\xf8\x38\xe5\xc6\x3a\x92\x64\x5c\xb0\xe6\x8e\x27\x7f\x4c\x53\x87\x66\x0e\x17\x78\x6c\x30\x55\x06\x6b\x19\xaf\x64\xb0\x37\x60\xea\x92\x85\x4d\x28\x37\xa0\x10\x07\x4d\x0d\x86\x23\x63\x75\x7a\x8e\xe1\x13\x7c\xea\x4a\x77\xd4\x91\xf6\xe8\x3c\x33\xb4\xe2\xfe\x18\x44\xf0\x1d\xa5\xb3\x1d\x8d\xbd\xa4\x0e\xdd\xd9\x54\x49\x41\x51\xde\xd5\xc3\xc3\x1c\x9a\x8f\xe8\x7a\x64\x18\x04\x87\x3e\x03\x9b\x67\xab\xc0\xb2\x4a\x51\x2b\x7a\x2d\xa3\x7a\xf0\xff\xda\x16\x0c\xa3\xbd\x7b\x9e\x43\xf3\x71\x3e\xda\x7e\x4f\x84\x68\x97\x13\xd1\x2e\x07\xd1\xb6\x66\x52\x7d\x32\x8a\xda\xbe\x4d\xd7\xf6\x47\xd6\x30\xed\x0f\x81\xfa\x6b\xd7\xe3\x67\x6a\xa0\xb5\xd5\x7f\xf2\x08\x51\xaf\xf7\xac\x0f\xb0\xaa\x77\xea\xfc\xb4\xff\x68\x20\x5d\xf2\x00\x17\x5d\xf0\x94\xd6\x1c\xfa\x47\x46\x65\xeb\x2c\xfc\x73\x74\xea\xf2\xa8\x25\x89\xc5\xff\x68\x50\xf2\x02\x4d\xd0\x4b\xc0\xbc\x54\x55\x80\x63\x54\xec\x9d\x00\x3b\x5c\xcf\x5a\xb3\x62\xd8\x60\x6d\xe1\xef\x8c\xec\x21\xc6\xfc\x82\x06\x2b\x1c\xc6\x34\xa1\xd7\x3b\xcd\x92\xcd\x9b\x80\xf6\x13\x56\xe0\xcd\xaa\x7c\xc8\x5a\x14\xfc\x77\xdc\x55\xaf\x31\xc6\x19\xdb\x39\x80\x05\x27\xeb\xa8\xdb\xd9\x8f\xbd\xaa\x87\x8b\x66\xad\x1c\xad\xa3\xb9\xfe\x69\xcf\xba\x15\x88\x29\x19\x18\x62\xdf\x49\xdf\x2d\x84\x71\x9b\x50\xc3\xc8\xc6\x95\x63\xbe\x27\x3f\xc8\x7a\xaf\x05\x9a\x2d\x9a\xb2\x39\xcd\x16\xd6\x51\x9b\xf9\x33\x08\x09\xe7\xaa\x4b\x9f\x71\x3d\x84\x43\xf2\xce\x71\x1f\x5e\x5a\x71\x59\x1f\x06\xef\x1e\xa2\x2a\x8b\x1c\xad\xa5\x5b\x9c\xae\x64\xdb\x26\x51\x0c\x7f\x8c\xe6\x70\xb5\xfa\xfa\xfa\xfa\xb4\x5c\xcf\x9a\x09\xd7\xba\x14\x8c\xbe\x15\x7f\x1d\x4c\x82\xc6\x28\x73\x0e\xf9\xeb\xd3\xfd\xeb\xdd\x6b\x07\xb9\xb9\x34\x40\xfe\x2f\x00\x00\xff\xff\x0b\x23\x45\x0d\xcb\x13\x00\x00") +var _staticCssCustomCss = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xac\x58\x6d\x6f\xe3\x36\x0c\xfe\x9e\x5f\xa1\x5d\x71\xc0\xb5\xab\x52\x27\x6d\xfa\xe2\x00\xc3\x80\xe2\xee\xd3\x30\x0c\xfb\x07\x8a\x45\xc7\x42\x65\x49\x90\x94\x26\xb9\x43\xfe\xfb\x20\xc9\xf2\xbb\xd3\xcb\x61\x29\x1a\xc4\x36\x49\x91\xd4\xc3\x87\x94\xe7\x99\x14\x96\x30\x01\x1a\xfd\x98\x21\x54\x92\x03\xde\x33\x6a\x8b\x14\x2d\x92\x24\x51\x87\x35\x3a\xcd\xe6\x05\x10\x5a\x0b\xe8\x2d\x13\xd8\x4a\x95\xa2\x47\x0d\xe5\x7a\x86\x90\x85\x83\xc5\x84\xb3\xad\x48\x51\x06\xc2\x82\xae\xb5\x98\xd8\xe2\x5c\x0a\x8b\x0d\xfb\x0e\xde\x40\x7d\x95\xa2\xc5\x7c\x59\x59\xc8\x24\x97\x3a\x45\x57\x2f\x2f\x2f\xee\x92\x83\xb5\xa0\xb1\x51\x24\x63\x62\x9b\x22\x21\x75\x49\xb8\x37\x9a\x49\x0a\x18\x0e\xa4\x54\x1c\x06\x0e\x2d\xe6\xab\xca\x60\x75\x77\x23\xad\x95\x65\x8a\x92\x81\x2e\xde\x48\x7a\xf4\x06\xf6\x05\xb3\xe0\xd7\x82\x14\x29\x0d\x4e\x7d\x2f\x35\xc5\x7b\x4d\x54\x8a\x36\x1a\xc8\x1b\x76\x37\x9c\x09\x41\xde\x37\x24\x64\x82\x32\xa3\x38\x39\x3a\xef\x04\x54\xf6\x85\x05\x61\xb1\x25\x1b\x0e\xb8\x0a\x7f\x10\xf4\x83\x3a\xac\x4f\x33\x5b\xaf\xdf\x7e\xb6\xf4\xcf\xe6\xa4\x64\x98\x82\x25\x8c\x1b\x2f\x52\xa5\xd8\x6a\x22\x4c\x2e\x75\x99\xa2\x9d\x52\xa0\x33\x62\xbc\xb7\x13\x49\x1d\xe6\xb1\xf5\xc8\x6b\xec\x81\x6d\x0b\x9b\xa2\xc7\x24\x59\x37\xcb\x54\x3b\xc9\x21\xb7\xeb\x59\xf4\x86\x58\x32\xe1\x8a\x0b\x1f\xfd\xc6\x4a\x25\xb5\x25\xc2\xfe\x2f\x0e\x2d\x9c\x43\xa7\xd9\x9c\x09\x63\x89\xc8\x00\x0b\x52\x02\xb6\xa4\x95\xcd\x9c\x94\x8c\x1f\x53\x54\x4a\x21\xfd\xe6\xdd\x36\x3f\xd7\x7d\x9c\x3d\xf8\x65\x4e\xb3\xb9\xe2\x24\x83\x42\xf2\x08\xe7\xcb\x4d\xf5\x20\xbb\xd5\x70\x6c\x64\xec\x91\x43\x8a\x98\x25\x9c\x65\x13\x95\xe1\xbc\xe0\x32\x54\x06\x2b\xb7\x23\x50\x9a\xd6\xd3\xb0\x65\x52\x60\x03\x1c\x32\xeb\x35\xc7\x04\x11\xca\xb9\x24\x76\x64\x67\x4e\xb3\xab\xca\x04\x67\xc6\x0e\xca\xe7\x59\x1d\x9c\xcc\xec\xee\x06\xfd\x45\xf4\x16\x34\xb2\x05\x11\x48\x15\xce\xce\xcd\xdd\xec\xcf\x12\x28\x23\xe8\x4b\xc9\x44\x24\x89\xd5\x2a\x51\x87\x6b\x6f\xa9\xcd\x12\xbd\xb2\x4c\x5c\xce\xd0\xc9\x09\xbd\x13\xbe\x03\xac\xb4\x54\x66\x44\xf2\xa5\x86\x43\xaf\x80\x9f\xfa\x16\x62\xea\x06\x92\x8b\x46\x32\x96\xfa\x56\x33\x8a\xe6\x99\xe4\xbb\x52\xdc\x4e\x3d\x30\x13\xe6\x02\xa5\x04\x83\x54\x66\x06\x1b\xc8\x2c\x93\xa2\x12\x57\x84\x52\x0f\x65\x47\x86\x81\x67\x5a\x0b\x18\x10\x14\x1f\xe5\x4e\x1b\xe0\x39\xce\xa4\x3a\x56\x6a\xd5\x0e\x69\x07\xf7\xf5\x30\x61\xcb\x40\xbc\x6d\x4b\x99\x06\x10\xa6\x90\xd6\xf3\x92\xaa\x13\xad\xa4\x61\xce\x9f\x14\x91\x8d\x91\x7c\x67\x2b\x4a\xa8\x36\xe8\xe1\xf9\x73\xb8\x2e\x9a\xd2\xfa\x1c\x8b\x31\xb7\x8e\x1a\xab\xe5\x0f\x38\x8a\x44\x42\x1b\x42\xc1\x33\x9b\x9d\xc0\xc2\x53\x83\x85\xbb\x1b\xf4\x77\x60\xca\x9b\x3b\x17\x45\x45\x9b\xbf\x8f\xa6\x70\x23\x35\x05\xed\x22\x8f\x96\x62\x1a\x83\xda\x6d\xf3\x33\xd0\x74\x0c\xbd\x2e\x9b\x0d\x97\xd9\x5b\x27\xec\x26\xca\x18\xd4\x63\xdd\x1b\x10\xda\x90\xec\x6d\xab\xe5\x4e\xd0\x14\x5d\xe5\x79\x1e\xee\x7e\xc7\x4c\x50\x38\xa4\x28\x34\xa1\xb6\x63\x29\x5a\xa8\x03\x32\x92\x33\x8a\xae\x00\xa0\xf3\xbc\x86\x4a\x57\xa4\x1d\xc2\x84\xdf\x31\xd1\x4d\x86\xfe\x40\xbd\x86\xdc\x8d\xa8\x63\xb3\xae\x61\x84\xdc\xcf\xc8\x3e\x91\x43\xc6\x9b\x60\xa3\xce\x2c\x94\x03\x0c\x69\xe0\xc4\xb2\xf7\xd8\x56\x02\x4a\x43\x27\xf8\xd8\x22\x67\xe2\xed\xf2\x7e\xb5\x70\xac\x33\xdd\x92\xce\xb4\x0c\xbf\x08\x85\x4c\x6a\x12\xbc\x6f\x42\xe7\x4c\x00\x1e\xdb\xfa\x38\x69\x2c\x97\xcb\xa1\xf3\x73\x92\xb9\xe0\xab\x18\xa2\xe8\xfd\xfd\xeb\xfd\xb7\x18\x6a\x41\x0c\xa6\x32\x7b\x03\x8a\x05\x79\x47\xed\x81\xa0\x9d\xc7\x9c\x1d\x80\x56\x5e\x3a\xf8\x24\xdd\x92\x3b\x67\xeb\x2c\xc6\xbd\xe2\xdd\x0d\xfa\x17\xb0\x7c\x07\xcd\xfc\x84\x61\x0b\x08\x28\xf1\x20\x41\x14\x32\x4e\x42\x4a\x90\x95\xa8\x24\x36\x2b\x90\x9f\xbf\x64\x8e\x3e\xa3\x0d\x31\x40\x51\x83\xb2\x50\xa1\x13\x71\x4d\xe3\xf1\x39\xc0\x31\xb8\xf3\x8f\x54\xce\x9d\xca\x96\x0a\x57\x73\xa9\x40\x4c\x96\xea\xa9\x25\x39\x5a\x17\x67\xd9\x6d\x2c\xa9\x67\x4a\x3b\x54\xea\xd9\x2a\xd6\x84\xb2\x9d\x49\xd1\x43\x84\x63\x68\x48\xcb\x0e\x59\xe2\x55\xa4\x15\xbc\x87\xcd\x1b\xb3\x38\x67\xdc\x3a\xcb\x54\x4b\x85\x4d\x41\xa8\xdc\x7f\x49\x50\x82\x1e\xd5\x01\xe9\xed\x86\x7c\x49\x6e\xdd\xdf\x7c\x71\x7d\x1d\x14\x9d\x6e\x29\xbf\xff\x92\xa2\xff\x5c\xa2\xd8\xc9\xb2\xaf\xf8\x34\x67\xda\x58\x9c\x15\x8c\xd3\xe6\x89\x03\x7f\x4a\x72\x0b\x81\x6c\x7f\x52\x61\x03\xb9\xd4\x50\xb3\x78\xc5\x82\xbd\xfe\x52\x67\x2c\xee\x41\xc8\xbf\xe7\x06\x45\x34\xc4\x89\xb1\x1a\x9e\x53\xf4\x09\x7d\xea\x32\x77\xd2\x61\xf6\xe4\x3c\x30\x94\x64\x6e\x0a\xc2\xf0\x0e\xc2\x9a\x0e\xc5\x5e\x92\x86\x6e\x6b\xaa\x98\xc0\x67\x77\xb9\x5a\xdd\xa2\xe6\x2b\xb9\x1e\xe9\x05\x51\xa1\x0f\xc0\xe6\x68\x15\x41\x56\x11\x6a\x85\xae\x45\x52\xf7\xfd\x5f\xdb\x82\xa1\xb7\xf7\xcf\xb7\xa8\xf9\x3a\xef\x6d\xbf\x24\xa2\xb7\x8b\x09\x6f\x17\x03\x6f\x5b\x2d\xa9\x1e\x8c\x92\xb6\x6e\x53\xb4\xfd\x8e\x35\x0c\xfb\x43\x43\xfd\xb5\xeb\xee\x33\xd5\xcf\xda\xe4\x3f\x39\x41\xd4\xeb\x3d\xab\x03\x5a\xd6\x3b\x75\xbe\xd9\x7f\xd4\x8f\x2e\x39\xbf\x25\x17\x1c\xd2\x9a\x99\x7f\xa4\x53\xb6\x46\xe1\x9f\x83\x53\x17\x47\x2d\x46\xf4\xff\xc9\x20\xe5\xde\x1a\x27\x97\x18\x73\x4c\x55\x19\x1c\x83\x62\x6f\x00\xec\x60\xbd\x68\xb5\x8a\x61\x81\xb5\x79\xbf\xd3\xb1\x87\x36\x2e\xe1\x38\xaf\x30\xc6\x09\xbd\xda\x69\x96\x6c\x5e\x04\xb4\x0f\x58\x11\x37\xcb\x70\xc6\x9a\x7b\xfc\x5b\x66\xab\xb7\x18\xe3\x88\xed\xcc\x5f\x51\xc9\x58\x62\x77\xe6\x63\xad\xea\x6c\xd1\xac\x55\x82\xb1\xa4\x54\x3f\xad\x59\x97\x02\xd6\x01\x81\xd1\xf7\x9d\x70\xd5\x82\x29\x33\x19\xd1\x14\x6f\x6c\xe8\xf2\x3d\xfa\x01\xda\x7b\x2b\xd0\x6c\xd1\x94\xcc\x69\x36\x37\x96\x98\xc2\x8d\x20\x38\x8e\x55\x97\x1e\x71\x9d\x09\x0b\xf8\x9d\xc1\x3e\xbe\xb3\x62\xa2\x9e\x05\xef\x57\x49\x15\x45\x09\xc6\x90\x2d\x4c\x67\xb2\x2d\x93\x49\x0a\x3f\x46\x63\xb8\x5a\x7e\x7d\x7d\x7d\x5a\xac\x67\x4d\x87\x6b\xdd\x8a\x42\xdf\xfc\xa7\x63\x13\x83\xd6\x52\x9f\xb3\xfc\xf5\xe9\xe1\xf5\xfe\xb5\x63\xb9\xb9\x35\x62\x39\xec\x8b\x33\x56\x1f\xf6\x1e\x43\x99\x0d\x0e\x97\xb3\xde\x88\xbc\x78\x0e\x37\x1b\xb2\xad\x9b\xd4\xf8\x2b\x92\x06\x58\xcd\xaa\x43\xe0\x39\x98\x68\xb9\x77\x0f\xb3\x9d\x36\xce\x61\x0a\x39\xd9\x71\xdb\x06\x92\x2b\xb4\x1f\xad\x90\x56\xab\x55\xfd\x12\x64\x48\xa7\xa7\xd9\x7f\x01\x00\x00\xff\xff\x5e\x80\x8c\x32\xb4\x14\x00\x00") func staticCssCustomCssBytes() ([]byte, error) { return bindataRead( @@ -131,7 +130,7 @@ func staticCssCustomCss() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "static/css/custom.css", size: 5067, mode: os.FileMode(420), modTime: time.Unix(1495477158, 0)} + info := bindataFileInfo{name: "static/css/custom.css", size: 5300, mode: os.FileMode(420), modTime: time.Unix(1496212180, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -151,7 +150,7 @@ func staticCssNormalizeCss() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "static/css/normalize.css", size: 7797, mode: os.FileMode(420), modTime: time.Unix(1495302239, 0)} + info := bindataFileInfo{name: "static/css/normalize.css", size: 7797, mode: os.FileMode(420), modTime: time.Unix(1495690053, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -171,7 +170,7 @@ func staticCssSkeletonCss() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "static/css/skeleton.css", size: 11452, mode: os.FileMode(420), modTime: time.Unix(1495302239, 0)} + info := bindataFileInfo{name: "static/css/skeleton.css", size: 11452, mode: os.FileMode(420), modTime: time.Unix(1495690053, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -191,7 +190,7 @@ func staticImagesAtlantisIconPng() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "static/images/atlantis-icon.png", size: 4339, mode: os.FileMode(420), modTime: time.Unix(1495302239, 0)} + info := bindataFileInfo{name: "static/images/atlantis-icon.png", size: 4339, mode: os.FileMode(420), modTime: time.Unix(1495690053, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -211,27 +210,7 @@ func staticImagesAtlantisIcon_512Png() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "static/images/atlantis-icon_512.png", size: 13413, mode: os.FileMode(420), modTime: time.Unix(1495302239, 0)} - a := &asset{bytes: bytes, info: info} - return a, nil -} - -var _staticJsJquery1113MinJs = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xdc\xbd\x7b\x93\xdb\x36\xb2\x28\xfe\xff\xf9\x14\x23\xae\x0f\x0d\x58\x90\x46\x72\x92\xbd\x67\x29\x63\x58\x8e\x9d\x6c\xb2\x79\xee\xda\xbb\xc9\x1e\x8a\x4e\x81\x24\xf8\x18\x51\xa2\x86\xa2\xe6\x11\x91\xfb\xd9\x7f\x85\x06\x40\x82\x14\xe5\x64\xef\xb9\xbf\xaa\x5b\xb7\x5c\x1e\x91\x20\xde\x68\x34\xba\x1b\xfd\xb8\x7e\x31\xb9\xba\xfd\xeb\x91\x97\x4f\x57\xf7\xcb\xf9\x72\x39\xff\xe4\xaa\xbe\x42\x21\xbe\x7a\xb9\x58\x7c\x46\xae\x5e\x2e\x96\x9f\xe9\xef\x5f\x16\xc7\x5d\xc4\xaa\xac\xd8\x91\xab\xaf\x77\xe1\xfc\xaa\xbe\xba\xbd\x13\x5f\xe6\x45\x99\x5c\xe7\x59\xc8\x77\x07\x7e\xf5\xe2\xfa\x3f\x26\xf1\x71\x17\x8a\x7c\x88\x91\x00\x9f\xac\x22\xb8\xe5\x61\x65\x51\x5a\x3d\xed\x79\x11\x5f\x6d\x8b\xe8\x98\x73\xdb\xbe\xf0\x61\xce\x1f\xf7\x45\x59\x1d\xdc\xfe\x2b\x65\xf3\xa8\x08\x8f\x5b\xbe\xab\xdc\x00\x31\x32\x59\x60\xa7\x6b\x08\x9f\xb2\x18\x4d\xba\x2c\xb8\x4a\xcb\xe2\xe1\x6a\xc7\x1f\xae\xbe\x28\xcb\xa2\x44\x96\x1a\x45\xc9\xef\x8e\x59\xc9\x0f\x57\xec\xea\x21\xdb\x45\xc5\xc3\xd5\x43\x56\xa5\x57\xec\x4a\x97\xb4\xf0\xaa\xe4\xd5\xb1\xdc\x5d\x05\x88\xe1\xc6\x81\xbf\xc8\x3a\xee\x22\x1e\x67\x3b\x1e\x59\x13\xdd\x5d\x59\xde\x95\x3f\x4e\x95\x66\x07\xd2\x1f\xf9\x3d\x2b\xaf\x42\xea\xf9\x24\xa2\xe1\xfc\x20\x66\x88\x70\x1a\xce\xc3\x62\x17\xb2\x8a\xc4\x34\x9c\xef\x8f\x87\x94\x24\x34\x9c\x67\xbb\x88\x3f\xfe\x10\x93\x94\x9e\x1a\x92\xd1\x74\x5e\x15\xef\xaa\x32\xdb\x25\xe4\x96\xa6\xf3\x94\x1d\x7e\x78\xd8\xfd\x58\x16\x7b\x5e\x56\x4f\x64\x23\x32\xe5\xd4\x92\x0b\x66\x91\x2d\xed\xb7\xab\xfa\x2f\x06\xbf\x9d\xc7\xbb\x79\xb6\xcb\x2a\xf8\xd2\x90\x1d\xbd\xfe\xe0\xad\x0f\xeb\xe3\x97\x5f\x7c\xf9\xe5\xfa\xf1\xf5\xc2\x9f\xd6\x83\xf7\x67\xd7\x09\x29\xe8\xf5\x87\xd9\xf6\x30\xbb\x26\x7b\x7a\x3d\x43\xde\x3a\x62\xb3\x5f\x7d\x7c\x9d\x64\xe4\x6e\xbc\xb1\x60\x5e\x15\x7f\xdf\xef\x79\xf9\x86\x1d\x38\xc2\xcd\x4a\xb4\x4c\xb7\xf3\x7d\x59\x54\x85\x98\x30\x7a\x92\xd0\xe2\xe4\x24\x2c\x76\x87\xaa\x3c\x86\x55\x51\x3a\x5b\x72\xe0\x39\x87\x47\xcb\x22\x39\xdf\x25\x55\xea\x2c\x48\x55\xbc\x2e\x4b\xf6\xd4\xad\x70\xdb\x50\x34\x0f\x59\x9e\x23\x31\xdd\xb8\x21\x09\xaf\x7a\x50\xa0\x87\x7e\xcc\xf3\x09\x65\xee\xe2\x86\xb9\x22\xa7\xc7\xa6\xe2\x67\x2e\xeb\xf7\x1d\x99\xe6\x3b\xfd\xca\xc4\x6a\xbc\xab\x58\xb8\xe9\x55\x29\x56\x31\xa0\xdb\xf9\x96\x97\x09\x87\xac\x73\x63\x00\x08\x13\xd6\x41\xcc\x7c\x5f\xf2\xfb\x1f\x00\xac\x29\x00\x44\x20\xf2\x56\xfc\x51\xbe\xea\x17\x12\x34\x84\xb3\x30\x75\x46\xa7\x72\x3b\x17\xdf\xa0\x25\x22\x57\x6d\xcb\xf6\x63\xa3\x84\x2a\xdb\x4e\xa3\xed\x7c\xcb\xf6\xa8\x0f\x87\x01\x09\xdb\xec\x4c\x0e\x36\x20\xa1\xa8\x14\xe3\x86\x00\x4c\x8e\xcc\xf1\xa0\xe2\x68\xce\xf6\xfb\xfc\x49\xf5\xa8\x4c\x60\x9f\x1c\x44\x05\x71\x56\x1e\xaa\x4b\x15\xf0\x3b\xb4\xc0\x0d\xc9\xd9\x47\xb3\xcc\x96\xb8\x21\xfc\x6e\x64\xca\x8d\x15\x23\x21\x9d\xb2\x29\x12\xcb\x19\x38\x8b\x76\xbe\x07\xfd\x0c\x6f\xe8\xc2\xb6\x83\x9b\xd0\xf5\x60\x81\x43\xdf\x77\x3c\x5f\x54\xbf\x8b\x2e\x8e\xb2\x5d\xb0\xba\x3e\x5b\x5b\x01\x46\x0a\x2e\x9c\x98\x1c\x8a\xb2\x72\xc2\xb9\xf8\x21\x87\x3d\x4c\x5d\x38\x97\x0f\x0d\xd9\xce\xf9\x63\xc5\x77\x11\x85\x1d\xa7\x9e\x8d\x36\xc5\x90\x18\x11\x73\x1f\x11\x4e\x62\x92\xd0\x76\x22\xbd\x85\x5f\xd7\xa7\x86\xa4\x74\x49\xb2\x2e\x59\x0f\xfd\x96\x4e\x96\xab\x58\xa0\xb0\xa0\x28\x72\xce\x76\x1d\xc2\x4c\x6c\x1b\xdd\xd2\xa4\x57\x59\xaa\x2a\x9b\x4e\x31\x39\xc3\xb0\x49\x5d\x6f\xe7\xd9\xe1\x4b\xdd\xaf\x04\xd7\x35\x4a\xe8\xa9\xc1\x24\xa5\x94\x66\xb6\x8d\x12\x09\xb8\xe9\x6c\x86\x57\xd9\x4d\xba\x12\x15\x65\x31\x92\x3b\x0a\xf1\x5e\x4b\x18\x8b\x7e\x45\x57\xd9\xee\x8a\x63\x46\x13\x2f\xf2\x49\x48\xb9\xf8\x49\x26\x94\x86\xa2\x7b\xb6\x2d\x7e\x44\xab\x3f\xe6\x2c\xdb\xc9\xb9\x46\xa1\x68\x58\xec\xaa\xec\x00\x1b\x1d\x85\x18\x63\x17\x05\x2e\x0a\xe8\x64\x49\x62\xca\x6c\xbb\xfb\xc8\xb0\xcb\xc4\x4a\x3a\x6d\xba\x59\x17\x7c\x3d\x35\x44\x34\x4f\xf5\x3a\xa0\x5b\x12\x93\x10\x63\xe7\xbe\xc8\xa2\xab\x85\xea\x0d\x64\x09\x71\x0b\x40\x49\xb7\x70\xe8\xc4\x1f\xf7\x6c\x17\x15\x8e\x3a\x2a\xac\x29\xca\xa7\xdf\xb1\x2a\x9d\x97\x22\x79\x8b\x30\x9e\x97\x7c\x9f\xb3\x90\xa3\xeb\xf5\xdb\xeb\x84\x58\x16\x26\xd9\xe1\x6f\x9c\x45\x4f\xce\x64\x41\xb8\x38\x68\x7a\x70\x3c\x3c\x84\x98\xc0\xc0\x45\xb1\x37\x81\xb1\x21\xdd\x7a\x8c\x6c\x72\x4b\x27\x59\x94\xd2\xed\x5c\xac\x23\x54\xa3\xa6\xc6\x81\xbf\x7a\xa2\xea\x7a\xa4\x02\x26\xbe\x9c\x95\xfe\x49\x9e\x5a\x97\x71\xa7\x6d\x33\x4a\xd9\x5c\x9e\x6e\xa2\xc4\xf7\xc7\x2d\x2f\xb3\x70\xa4\xc8\xc4\x5c\x29\xdb\x66\xb3\x3d\x2b\x0f\xfc\xcb\xbc\x60\x62\x71\xa6\xcb\x1b\xba\x10\x15\x7c\xb1\xdd\x57\x4f\x72\xcd\xce\x77\x3b\x40\x78\x20\x20\x89\x61\x55\xeb\x52\xad\xd2\x04\x4a\x1b\x2b\x3e\x52\x1a\x4e\xff\xba\xd6\x00\x3f\x31\x46\x5b\xd7\x6c\xbe\x2b\x22\xfe\xfe\x69\xcf\x25\xf8\xcb\xb1\x23\x86\xbb\x96\xaa\xf2\x49\x50\x10\xcc\xdc\xfe\xb6\x3d\xb9\x95\x28\x93\x11\xcb\x48\xb7\xb0\xf1\xc5\x2c\xd0\x1d\x76\xc4\xca\x0e\x3f\xea\x97\x1f\x62\xab\x6b\xa9\x09\x59\x15\xa6\xa8\xc5\xca\x93\x65\x93\xc5\x68\x33\x2f\x1e\x76\xdf\xb2\x43\x85\xcf\xa6\xe1\xaa\xed\x43\x80\xcd\x49\xd2\x20\x2c\xe1\x9b\x52\x1a\xd4\xb5\x91\xb5\x21\xa2\xe9\x4b\xeb\x4b\x29\x73\xd9\xd4\xb2\x9c\x33\x0c\x21\x26\xd1\x00\x39\x9d\xea\xa6\x5e\xa6\x2a\xc7\x7e\x37\xcf\x8e\xfe\xde\x90\x24\x2f\x02\x96\x7f\x71\xcf\xf2\xae\xd1\x00\x9f\x02\xb1\x5f\xab\x32\xdb\xa2\x00\xdb\x36\x62\x73\xfe\xc8\xc3\x77\x61\x99\xed\x2b\x03\x5a\x03\x7c\x62\x73\x7e\xcf\x72\x63\x00\x18\x89\x51\x84\x6c\xcb\x73\x41\x53\x8c\x0d\x85\xb5\x1b\xb2\x20\xd6\xf6\x30\xb3\xba\x1d\xba\x27\x77\xb0\xd9\x22\xfe\x3d\xdb\xf2\xf1\x83\x56\xc2\x85\xf8\x6e\xdb\xdd\xf3\xbc\x2a\xbe\x2d\x1e\x34\x21\x23\x26\xb6\x9f\x32\x72\x74\x8b\x43\x56\xc0\x61\x44\x38\x5d\x08\xe4\xa5\x71\x77\x42\xc5\xa6\x17\xd0\x19\x02\x85\x9a\xe0\x93\x58\xc2\x55\x7c\xc3\x57\x5c\x22\xd6\x88\x06\xea\x78\x65\x1e\xf7\x49\x88\x49\x44\x29\x9d\x2c\x71\x50\x72\xb6\x69\x78\x7e\xe0\x57\xa2\x0c\x97\xcb\xfe\x3b\x4b\x5c\x6e\x4b\x4e\xb0\x28\xc8\x89\xf8\xf9\x7d\xed\x7d\xbc\x94\x86\x45\xd6\x10\xb1\xd4\x1f\x83\x3a\xcb\x72\x90\x80\xbc\x6e\xa5\x76\x02\x8f\x0a\x1a\x67\xc3\x07\x34\x9f\x41\x44\x07\x75\xed\xf9\xab\x21\x86\x42\x25\x6a\xcf\x00\xec\x6a\x12\x2d\x24\xd6\x01\x68\x67\x13\x7e\x05\xb5\xc7\xb0\x13\xcb\x91\x84\x84\x61\x4c\xc2\x86\x64\xbb\xf3\x36\xdb\xd5\x14\xeb\x16\xa8\x75\xd3\x07\x86\xa6\xa1\x18\x09\xe5\x76\x14\xb3\xd3\x12\x29\xa1\xbb\xb8\x09\x5d\x38\x34\xb6\xec\x11\x2d\x48\x34\x0d\xb1\x13\x3a\x8b\x55\x74\x13\xae\x42\xb9\x0a\xa1\x98\xd9\xc0\xb6\x03\x2f\xf4\x29\xa5\xed\x46\x0f\x1b\xf9\x30\x5b\x36\x04\x46\x32\x3a\x13\xd3\xb6\xb9\x88\x2e\x08\x6f\x61\x6d\xf5\x90\x66\x39\x47\xe1\x4d\x84\x99\xc7\xa7\x53\x9f\x06\x5e\x34\x9d\xfa\x00\x7c\xe2\xf8\xc3\x32\x43\x7b\x1e\x06\x5e\xe4\x0f\xb2\xb6\xfb\x42\x56\x49\x39\x11\x1b\xbb\xe4\xfb\xb3\xf9\x11\x23\xd7\x10\xef\xf9\x24\xa6\x0b\x41\x84\xe8\x9e\xa5\x74\x12\xae\x92\x9b\x78\x15\x4f\xa7\x38\xa2\x93\x00\x31\x2f\xf6\x49\x8c\x49\x34\xa1\x34\xb5\x6d\x0e\x54\x1b\xa4\xb6\x88\x8c\x0f\xe9\x5c\x73\x5f\x9d\x35\x20\xf6\x15\xc9\xa8\x07\xe3\x4b\x01\x6d\x1a\x2d\xea\x06\xc5\xe6\x90\xd0\x12\xd9\x76\x26\x1b\x8d\xf0\xaa\x05\xf2\x58\x02\xf9\x6f\x16\xd0\x5d\x54\xfb\xce\xf3\x49\x26\x98\x8f\x63\x16\x39\x4b\xb2\x2f\x8b\xc7\x51\xa8\x15\x84\x9e\x2a\x7a\x06\x91\x81\x6d\xa3\x98\x32\x2f\xf0\x49\x40\x19\x61\x34\xc6\xa4\x47\x9a\x31\xec\xa2\x90\x2a\x06\xa5\x25\xba\xc8\x4b\x4c\x38\x3d\xa7\x65\x99\xea\x59\x20\xa9\x58\xa2\xb9\x4c\x34\xac\x00\x0b\xb2\x9d\xcf\x45\xd7\x29\x33\x7f\xc4\xd1\x28\x7e\xa7\x53\xc2\x35\xd5\x24\x10\xe8\xc3\x39\xe5\x3c\x15\x14\xcd\x5b\x56\xf1\x86\x1c\x8e\x7b\xc1\x9d\x3b\x9b\x46\x74\x1f\xf8\x16\xeb\x73\x49\xa6\x5e\x7d\x7f\xdc\x06\xbc\xbc\x92\x7c\xec\x95\x1e\xd8\x15\x6c\x38\x28\x7e\xf5\x37\x9e\x7c\xf1\xb8\xbf\x92\x7b\x58\xd2\x48\x16\x50\xd4\x15\xb2\xae\x2c\x3c\x60\xa7\x53\xcf\xf2\xe4\xb9\x73\x65\x4d\x83\xa9\xe5\x5b\xfe\x19\x6e\xc6\x2b\x5d\xe6\xaa\xec\x38\x09\x4b\x82\x8d\x25\x16\x5b\xa0\xfa\x76\xbf\xb6\x44\xc2\x6a\x84\xda\x0a\x07\xd4\x82\x3b\x59\x3a\x4b\xb1\x61\x5b\x72\xc2\xb6\x03\x77\xb2\x70\x3a\x12\x2b\xac\x6b\x75\x14\x5b\x3b\x18\x7d\x6f\xc1\x83\x1b\xc1\x9e\xcc\x96\x00\x74\x8d\xe8\xda\x81\x9e\x91\x32\x1d\x87\x40\x52\x92\x91\x5b\xb2\x21\x39\xd9\x92\x1d\x29\xc8\x9e\xdc\x91\x92\x1c\x48\x45\x8e\xd4\x3a\x64\xbf\xfe\x9a\x73\x6b\xba\x7c\xa1\x57\x83\xdc\x1b\x32\x12\xf2\x40\x17\xe4\x91\x2e\xc8\x13\x4d\x19\xc2\xe4\x57\xf9\xf3\x5a\xfe\x7c\x3e\xce\xc4\x33\xd1\x77\xdb\x46\x39\x9d\x2c\x30\x59\x34\xe4\x0d\x5d\xbe\x7a\xf5\xc9\x92\xbc\xa5\xa7\x66\x28\x85\xf8\x42\x6c\xfc\x2f\xe9\x17\xf3\x7d\xb1\x27\x7f\x16\xbf\xc7\x43\x4a\xbe\xd2\x0f\x5f\xd3\x2f\x94\xcc\xe3\x2f\x83\xc6\x34\xee\x08\xe9\x82\x44\x1d\xfe\x32\x30\x24\x93\x98\x31\x68\x31\xe3\xaa\xc3\x8c\xdf\x50\x2b\x4c\x79\xb8\xe1\x51\x2d\x25\x07\x3c\xaa\xd9\xe1\x69\x17\xd6\xec\x58\x15\x71\x11\x1e\x0f\xf0\xb4\xcf\xd9\x53\x2d\xf8\xed\xb2\xc8\x0f\x75\xc4\x63\x5e\xd6\x51\x76\x60\x41\xce\xa3\x3a\xcd\xa2\x88\xef\xea\xec\xb0\x65\xfb\x3a\x2f\x8a\x7d\xbd\x3d\xe6\x55\xb6\xcf\x79\x5d\xec\xf9\xae\x2e\x39\x8b\x8a\x5d\xfe\x54\x2b\x71\x51\x54\x1f\xc2\x62\xcf\x23\x8b\x7c\x4b\x2d\x6f\xbd\x7e\x7c\xb9\x58\xaf\xab\xf5\xba\x5c\xaf\x77\xeb\x75\xec\x5b\xe4\x3b\x6a\x21\xd7\x59\xaf\xd7\xeb\x79\xed\xad\xd7\x0f\x33\xbf\xf6\x3e\xac\xd7\x8f\x8b\xc5\x6c\xbd\x7e\x64\x0b\x1f\x4f\x2d\xf2\x3d\xfd\xae\x3d\xf6\xac\x07\x8b\x58\x0f\x7f\xb0\x30\xf9\x81\x5a\xeb\xb5\x67\x4d\xbf\x9d\x5a\x2f\x90\x35\xfd\x6e\x6a\x61\xe4\x3a\xea\xdd\x7b\xf1\xe1\x59\x3d\xf9\x97\xef\x52\xac\x52\x5c\xe7\x39\xea\x9a\xfa\x20\x7e\x9f\xfb\xf8\x05\x7e\x5e\xaf\xad\xe1\x87\xb5\x25\xbe\xac\xad\x1a\x59\xd3\xef\xa7\x16\xc6\xb5\xaa\x65\xbd\xf6\x2d\xf2\x23\xb5\x9c\xae\xc1\xf5\x1a\x21\xf4\xef\x57\x8d\xeb\xe1\x17\x84\xbd\xf5\xda\xf7\x6b\x6b\xfa\xc3\xd4\xc2\x2f\x70\x3d\x7f\x81\xd7\x6b\xd1\x34\xf9\x2b\x15\xc0\x2a\xb7\x3d\xfa\x76\x6a\x4d\x2d\x62\x25\x16\x26\x7f\x33\xd3\xad\x0f\xd0\xc7\x29\x54\xfc\x41\x55\xea\x63\xdd\x0a\x7e\x21\xc7\x30\x7d\xa6\x0a\xbf\x1b\x29\xfc\x82\xc8\x1f\x0b\x93\xf7\x63\x9f\x91\x77\x33\xfd\x97\xe8\xe2\xb7\x53\x0b\xb7\x59\xff\xde\xcb\x4a\x75\xd6\x0f\xeb\xb5\xff\x7c\x6d\xf9\x2f\x5c\x73\xf6\xa0\xed\x7f\x98\x25\x7e\xc4\xe4\xa7\x61\x63\xdf\x4f\xad\x67\x16\x26\x3f\xd3\xd3\xd7\x6f\x9d\xde\xb7\x3f\xa8\xa9\xb7\x30\x79\xf3\xed\xeb\x77\xef\xfa\x5f\xd7\xeb\x79\xf7\xfd\xfd\xeb\x3f\xf7\xbf\x8a\x4f\x03\x48\x7a\x61\x61\x99\xf9\xf5\xfb\xf7\x7f\x73\x06\xbd\xf8\x01\x93\x1f\xdf\x7d\xf1\xf7\xb7\x3f\x0c\x3f\xfc\x88\xc9\x9b\xaf\xbe\xfe\x76\xd0\x35\x07\x01\xf0\x83\x74\xa7\xce\xd9\xa1\xaa\x77\x55\x2a\xfe\xcf\xc4\x0b\x9e\xa1\x30\xcd\xf2\xa8\x2e\xe2\x99\x40\x6e\x0a\x78\xd4\x6c\xf1\x7b\xbe\xab\x8b\x28\xaa\x11\xf2\xa6\x33\xbf\xc6\x68\xbd\x8e\x5e\xe0\x5d\xdd\xc1\xaf\xfa\xa0\xde\xd7\xeb\x68\x8a\x6b\xdc\x4e\x2d\x00\x8a\x95\x59\x98\x04\x45\x91\x0f\xc6\x2d\xf6\xc5\x37\x53\x0b\x3f\x53\x59\x76\x9c\x47\x87\x37\x52\xaa\x36\x1c\x9b\xa8\x4e\x2e\xb3\xd3\xf5\x8a\xdf\xd5\x49\x55\xe7\x72\x44\xdd\x00\xfb\x63\x40\xae\x33\x5b\xaf\x23\xec\x42\xd7\x8d\x8e\x21\x97\x7a\x1f\x66\x7e\xfd\x4c\x75\xb1\x21\xff\xa4\xd7\xa2\x57\xd9\x6e\x7f\xac\x14\x42\xaa\x45\x67\x58\xc9\x59\x1d\x1c\xab\xaa\xd8\xe1\x67\xd7\x19\xf9\x6f\x7a\xfd\x21\x5d\x47\xe2\xf1\x19\xbd\xfe\xe0\x7d\x38\xf9\xd3\xf5\x69\x7d\x78\xb1\xf6\x76\xac\xca\xee\xf9\xd5\xfa\xe1\x9a\xfc\x22\x6b\xfb\x03\xf2\x04\x06\x99\xe2\x1a\xad\x1f\xa6\xb8\x5e\xcf\x75\x02\x7e\x76\x4d\x18\xa3\xd7\xde\xf4\x5f\xfe\x35\x09\x18\xbd\x7e\x5e\xaf\xd7\xd7\x09\x09\x59\x0f\xf2\x60\x1f\x7a\xeb\x75\xc4\x66\xb1\x7f\x5a\x92\x3f\x36\x30\x0a\xb7\x96\x43\xc4\xf5\x1c\x46\x20\x40\x38\x62\x74\x94\xe6\xa2\xd6\xe2\xd1\x9a\x06\xb3\x3f\x7e\xf6\xd9\x27\x7f\xd4\x14\x90\xa0\xdf\xa2\xba\x0e\xdd\xc0\x59\xdc\x44\xae\x3c\xdb\xe7\x71\x59\x6c\xdf\xa4\xac\x7c\x53\x44\x1c\x45\x53\x28\x81\x9d\xd1\x8f\x37\x37\xcb\x45\xfd\xd9\x67\x2f\xff\xf4\x47\xb2\x5c\xbc\xfc\xc4\x8e\xea\xcf\xfe\xf8\xc9\xcb\x05\x70\x55\x26\x5d\xb3\x45\xb8\x01\xae\xfc\x2b\x45\xd9\x7c\x41\xbf\x96\xa4\xcc\xfd\x1c\xa0\xef\xfb\x22\xe2\x07\x4c\xfa\x6f\x5f\x78\xe6\xbb\x16\xf7\xb6\xe7\xb5\x62\xbe\x63\x86\x4f\x5f\xd1\x13\xd4\xeb\x7c\xa1\x72\xb9\xfd\x43\xea\xcf\x9a\xc5\x22\xaa\xd9\x00\xe3\x66\x94\x20\x67\x06\x3d\xae\x88\x70\xe6\x85\x1d\x55\x8d\x57\x2d\x3d\x1d\xce\x96\x4d\xd3\xb4\x14\x4a\xc2\x60\xc2\x23\xc2\x65\x5d\x31\x49\xd5\x79\x5f\xc0\x39\xff\x40\x1e\x05\x75\x8b\x02\x37\x98\x17\x0f\x3b\x5e\xbe\x55\x87\x7b\x5d\x07\xce\x3d\x9e\x50\xba\xb3\x6d\xc1\x58\x93\x40\x90\x1c\x3b\x12\x89\xb5\xf1\x7c\xb2\xa1\x41\x3b\xe6\x96\x19\x9a\x18\x2c\xfe\x84\xd5\xf5\x72\x42\xe9\xc6\xb6\xff\x24\x7f\x96\xf0\xaa\x0f\x5c\x60\x7d\x26\xdc\xb6\xf7\xc0\xfe\x2c\x55\x5e\x14\xd3\x5f\x80\x81\x17\xfc\x96\x38\xa8\x6f\x69\xec\x2d\x7d\xc8\xf3\x27\x2a\xca\x8b\xa7\x94\x06\xf3\x84\x57\x5f\xe4\x5c\xf4\xf5\xf3\xa7\xaf\x23\x74\x8b\xc9\x24\xad\xeb\x49\x3a\xdf\xb3\x92\xef\x2a\xb1\x3c\xbd\xb6\xd2\x79\x26\x18\xca\xdb\x36\x51\x92\xde\x29\x26\x51\xcb\xd0\x0e\x26\xc1\xb6\xa1\xa5\x5e\xda\x79\xbb\xd8\xb6\x2b\x14\x90\x14\xdb\xf6\x6f\xb5\x21\xfa\x1e\x7b\x2f\x7d\xfd\x5d\x43\x5e\x44\xcc\xf1\x1c\x3e\x7f\x7a\xcf\x92\xef\xd9\x56\x90\x8d\x98\x40\xef\x61\x1e\x3e\xf1\xb1\x6d\x87\xfd\x9c\x6f\x72\x76\x38\x88\xbc\xbf\x59\x67\x9b\x53\xf4\x99\x44\x8d\xe0\xda\xe6\x77\x07\xc1\xe4\x4e\xee\xea\x7a\x72\x37\xaf\xf8\x01\xf8\x5c\x98\xe3\x03\x2d\xe9\x91\x3c\xd0\x80\x3c\x52\xb5\x38\x8c\x08\xe2\x74\xd3\xdd\xab\x09\x1e\xef\x82\x54\x03\x9f\x0a\x9a\x08\x0e\x0a\x95\x72\xb1\x5e\x57\x55\x99\x05\xc7\x8a\x23\x2b\x8b\x2c\x8c\xdd\x03\x2d\xdb\x03\x26\x60\xc4\x5a\xaf\x9f\xd9\x16\x76\x82\xf9\x61\x98\x99\x1c\x30\x39\x50\xcb\xcb\x22\xfa\xdc\x9a\x1e\xa6\xd6\x73\xff\xca\x22\x39\x2d\xfa\x8c\x69\x3e\x9b\xe1\xc2\xcb\x7d\x7a\x98\x96\x0c\x89\x27\xbc\x7a\xa0\x8c\xe9\x71\xd9\xf6\x9e\xa1\xc0\x84\x8f\xba\x16\xa3\x2b\xe6\xb7\x45\xb6\x43\x16\xb1\xb0\x98\x94\x47\x2c\x90\xc2\xd9\x6c\x3e\xcc\xe1\x72\xe9\x9d\xba\x4b\x7a\x9d\xe7\xe8\x11\xe6\x51\xee\xf8\x27\x7c\x6a\xe2\x6c\xc7\xf2\xfc\xe9\x54\xd6\x75\x30\x2f\xf9\xb6\xb8\xe7\x83\x51\x37\x8d\xe2\xc0\xaf\x32\xd4\x89\x96\xfe\x46\xac\x67\x4b\x71\x1a\xc1\x46\xed\x76\xaf\x20\xa4\xa5\x58\x5f\x70\xa1\x6d\x72\x80\x42\xb1\x9f\x5b\xbe\x0c\x60\x2c\x9c\x0a\x7e\xe6\x46\x30\x63\x61\xca\xbf\x85\x79\xb1\xed\x88\xe7\xbc\xe2\x57\x81\xc7\xe6\x87\x34\x8b\x2b\x84\x7d\x12\x78\x90\xd7\xa7\x5c\xf7\x25\xe8\x9a\xcc\x98\x29\xfc\xf2\x8e\x3e\x9d\x2c\x08\xeb\xbe\xdf\xb2\x8e\xe7\xd9\xcd\xc3\x92\xb3\x8a\x2b\x10\x43\x56\x94\xdd\x5b\x78\xd5\xcd\xde\x64\xc2\x50\x80\x47\xe4\x91\x7a\xa2\xcc\xc5\xb0\x6d\xf3\x4d\x4d\xdf\x1b\x81\x69\x25\xfa\x11\x3c\xb3\x81\xd9\x36\xac\x8f\x21\x15\x4f\x57\x5b\xf8\x5c\x62\xc1\x67\x33\x1c\xcd\x59\x55\x95\x5f\xb1\x5d\x94\x73\x2f\xf4\xb8\xef\x53\x63\xd8\x79\xaf\xb6\x40\x80\x7a\x44\x43\xdb\x1e\x32\x63\x4b\x4a\x0d\xc4\x67\xdb\xe8\x5f\xc1\xfc\x50\x1c\xcb\x90\x7f\xbd\x8b\xf8\x63\x5d\xbf\xc1\x33\xf4\x2f\x36\x4c\x13\x3b\x38\xea\x61\x23\x2d\x2b\x09\x69\x38\xdf\xf1\xc7\xea\x5d\x16\xe4\xd9\x2e\x01\xe1\x8d\xc1\x97\xcc\x96\xad\xc4\xc4\x5d\x3a\xb3\x65\xd7\xe3\xad\xb9\x50\xa6\x94\x53\x0d\xe1\xc2\xb6\xd4\x5c\x28\x50\x13\xc0\x4f\x8a\x79\x87\xdb\x53\x4a\x99\x31\xbf\xbb\xff\x51\xfd\xc8\x68\xa0\xae\x2d\x49\xa5\xc0\x1b\xbe\xd0\x5e\x61\xb6\x97\x31\x64\x36\xa9\xc1\x94\x4e\x03\x62\x7e\x0a\x49\x24\xfb\xc3\x49\x4c\x19\xf2\x7c\x12\xea\x93\x32\xc0\x24\xa1\x71\x1f\x0c\x92\xd9\x0c\x87\x1e\xa7\xb1\x97\xf8\xbe\x6d\x23\x01\x05\x74\x82\x22\xf1\x23\x9e\x31\x6e\xc4\xbf\xb6\x4b\xfb\xde\x5e\xb0\xed\xb1\x1b\x7a\x36\x8a\xb7\x6d\x9b\x35\x21\x4d\xd8\x5c\x09\x2f\xe8\xa9\x21\xb1\x78\xcf\x0e\x3f\x7f\xf7\xed\x39\x47\x0e\x92\x46\x36\x3c\x81\x19\x6e\x79\x6d\xd5\x42\x7b\x0b\xec\x5a\x5f\xbd\xff\xee\xdb\x3e\xfe\x75\x26\xcb\x86\x6c\xa1\x55\x5e\xe9\x5a\x46\xb8\x7f\x4e\x12\xca\xdc\xf3\xd6\x9c\xfb\xf6\xce\x4a\x9e\xfb\xe2\xbc\x4d\x0c\x60\x4f\x86\xdd\x71\xd1\x8e\x26\xa4\xa0\x67\x1f\x08\x17\x69\x3c\x66\xc7\xbc\xfa\x47\xc6\x1f\x08\xb7\x6d\x3e\xa1\x54\x00\xcb\xde\xb6\x11\x9f\xb3\x28\xfa\xe2\x9e\xef\xaa\x6f\xb3\x43\xc5\x77\xbc\x74\xcf\x93\x90\x75\xdc\xe5\x05\x8b\x2c\xc2\x19\x99\x2c\xb1\xc3\xc5\x16\x66\x61\x0a\xb9\x6c\xbb\xf7\x8a\xac\x62\xd7\x65\xc7\x98\xec\xe9\x24\x46\x09\x26\x21\xec\x7b\x40\xc1\x07\x7a\x6b\x00\x8f\x29\xe3\x0f\xf5\xd1\x48\xad\xcc\x22\x13\x36\x38\xaf\xda\xcf\x16\x6e\x44\x8d\x63\x4b\x7e\xb1\x6e\xb6\xdf\xf3\x5d\x24\x11\x59\xa2\x30\xe6\x9b\x62\x2b\x31\xa6\x85\xb1\x6a\xee\xfc\xec\x17\xfc\xa2\x02\xe0\xf3\x56\xdb\xc3\x9c\x3e\x93\xc7\x5b\x72\x89\x2c\x90\x25\x05\xad\x72\xa1\x8b\x45\xaf\x8b\x0c\x0b\x1a\xe6\x48\x26\x83\x0a\x45\x5d\x75\x3d\x96\x8a\x8e\xc3\x6e\x8a\xc6\x5c\x14\xcd\xe3\x6c\x17\xcd\xbf\x7e\x3b\x10\xce\x64\xf1\xa8\xae\xcb\x90\xa2\x03\xca\x50\x23\x9b\x01\xd1\xd5\xdd\x4d\x85\x82\x20\xea\x8e\x0d\xd7\x0b\x7d\xc7\xf3\x9b\x86\x88\xd6\xf3\x8a\x97\xfd\xf6\xdb\xfd\xd6\x9e\xbd\x21\x23\x51\x57\xdd\xe8\x0a\x9e\x13\x2f\x02\x43\x37\x0d\x76\x90\x3a\x5f\xdb\xa1\xfe\x1f\x68\x56\x0e\xf9\x22\xae\x69\x7b\x22\xcf\xcc\xf3\x34\xd9\xc3\xde\xfc\xdc\xb3\xfc\xc8\x55\x9f\x89\xea\xeb\xfb\xd7\x7f\xa6\xe3\x90\xec\x8e\x09\xee\x7e\x6b\xc5\x8c\xe2\x17\x49\x59\x07\xc8\x4d\x37\x38\x27\xa4\x58\x2b\x0e\x1e\x15\x72\x47\xd4\xf3\xd5\xbd\xd7\xc5\xca\xc5\xa1\x6a\xbd\xb0\xe0\xb6\xe3\xa4\xcf\xd6\x18\xee\x1e\xb0\x38\xb5\x43\x03\x91\x29\xb2\x3c\x6c\x67\x29\xd2\x94\x50\xdc\xe8\xf9\x01\x81\xc9\x70\x86\xda\x5d\x65\xdb\xa3\xd2\xcd\xfd\x70\xf0\x1d\xcd\xdd\x0d\x91\x94\x62\x38\x77\xe2\x8f\x24\xc0\xbb\x2d\x3c\x9c\x18\xc1\x5b\xa0\xc1\xae\x3d\xdf\xae\xbb\x1d\x2f\xc5\x71\x40\xad\x57\xec\x4a\xd2\xc8\xc7\xa9\xf5\xfc\xe6\xd5\x35\xbb\x79\x25\x05\x06\x5d\xf2\x6c\x1d\xfb\xcf\xaf\xb6\x07\x96\xe7\xc5\x43\xc8\xf6\xd5\xb1\xe4\xf4\xf9\xf3\x9b\x57\xc5\x1e\x0e\x3d\x2d\xf1\x84\xb4\x6b\x99\x78\xf3\xea\x5a\x26\xdf\x58\x84\x9d\xaf\x9e\xe5\xf5\xab\xfb\x40\x9f\x3f\xf7\x5b\xdc\x65\xdb\x77\x72\xba\x2d\xef\xc5\x87\x67\x3e\xed\x64\x8c\xcf\xeb\xb5\xb5\x06\x81\xd2\x68\xa5\xba\x27\x5d\x55\x75\xad\xab\xea\xa4\x99\xae\x03\xd0\x5d\x4b\xa1\xcd\xa5\xba\xb2\xe8\x5f\x54\x0e\x7f\xac\xb6\x7f\xd1\x0b\xe5\x1c\x25\x07\x1e\x29\xd3\x7d\x1a\x2d\xc9\xfe\x00\xcd\x4d\x5f\x8c\x14\x9d\xff\x61\x3e\xf5\xa6\xff\xf2\xe1\x34\x19\xac\xae\xc4\x13\xc9\x90\xb2\x96\xd4\x14\x5e\x0d\x99\x23\xb1\x13\x2d\x62\x49\x61\x33\x74\xc5\x04\x8e\x00\x0f\xb2\xef\xc4\x19\x46\xac\xb7\x97\xa6\x49\x7c\xa7\xd1\xd8\xda\x41\x49\x29\xef\x6a\xc5\xc5\x97\x26\x8d\xef\x40\x04\x3e\x36\x69\xfa\x13\xb1\x1c\x2d\x29\xbf\x50\xcb\x0b\xe2\x3c\x5a\x98\xe8\x92\x64\xfe\xc2\x11\xf3\x85\xc5\x9e\xd9\x0a\x86\x82\x1f\x74\x7e\xbd\x7f\x0e\xb4\xd0\x9f\xea\xba\x98\x3f\xf0\x60\x93\x55\xdf\xf5\xf3\x8a\x0f\xdb\xe2\xd7\x91\xd4\x62\x2c\xe7\x61\x90\x28\x36\xe4\x60\xc5\xc2\x79\x94\x1d\xc2\x62\xb7\x03\x60\x85\xfc\xf4\xd0\x2a\x75\x00\x4b\x44\xba\x77\xef\x30\x11\xbb\x03\xc6\x56\xaa\xb1\x4d\xa8\x45\x7e\x14\xb0\x70\x47\xef\xda\x89\x37\x44\x6d\x77\x8a\x3f\xad\x05\xb5\x50\xd2\x72\x2c\x4f\x69\xe6\x09\xf4\x8c\x14\xf3\xb0\xd8\x8a\xd3\x51\x93\x79\x3f\x16\x87\x4c\x74\x1c\x93\x8a\x06\x75\x6d\x64\xdb\x55\x2c\xdb\x1d\xb0\x3b\x26\x7f\xfa\x53\x8f\x0b\x72\xd9\x90\xdc\x73\x04\xb7\x14\xf4\x19\xb8\x95\x71\xe1\x13\xd5\xf5\x04\x4d\x22\x29\x10\x8a\x0c\x55\x99\x09\x0a\xdb\xa6\xdd\xee\x11\x45\xd8\x61\x97\xba\x6e\xdb\xcb\x3f\xda\x17\xbf\xa2\x08\x9f\x4b\xd1\xe0\x92\x5d\x9e\x09\x01\xed\x09\x00\xc4\x17\xe3\x82\x7c\xb2\x58\xb5\x3c\x2a\xf9\x9c\x06\xee\x59\x3d\xcc\xbc\x34\xca\x05\x73\xbc\x58\x49\x59\xe6\xe4\x62\x9f\x66\x93\xe0\xd2\xa7\xf6\x00\x72\x23\x07\x45\x74\x8c\x07\xa0\x94\x0e\xe5\x52\x75\x1d\x60\xf7\xf2\x14\x04\xd8\x59\x92\xa5\x2d\x66\x5d\xea\x12\xbe\xe5\x82\x4e\xe6\x91\x58\xa1\x4b\x85\xa0\xa1\xc8\x15\xe3\x4b\xea\x7a\xd0\x0f\x4a\xe9\xbd\x6d\x57\xe8\x9e\x30\xec\xce\x96\x4e\x20\x73\x05\x97\x72\x05\xd8\x5d\x3a\x1b\xf7\x2f\x68\x43\x18\x9e\x89\x9f\x00\x3b\x0b\xe7\x53\x3b\x12\xa5\x97\x63\x0b\x74\x69\x62\xc3\x56\x09\xa1\x5b\x36\xa0\x03\x8c\xd7\x94\x7a\xcc\x27\x19\xf5\x02\x5f\x4a\x15\xeb\x7a\x12\x63\x03\x00\x93\xb6\xd3\xee\xd2\xe1\xe2\x25\x1e\xeb\xa0\x28\x2c\xe8\xa4\xb6\xac\x12\x0b\xac\x42\xca\x56\x1d\xbf\x6e\xc0\x4f\x3a\x3f\xee\xa4\x60\x25\x14\xb9\x82\xf1\x5c\x99\x99\x4b\xe6\x48\xbd\xc8\xa7\x94\x66\x5e\xe4\xe3\x68\x3a\xed\xe0\x20\x67\xf0\x8d\xc0\x17\x47\x65\xbb\x17\x5d\xce\xf4\xf3\xd2\x59\x34\x24\xc1\xce\xae\x21\x09\xd3\x18\x6f\xfc\xba\x15\xe4\xbf\xbb\x63\x9e\xcb\x3f\x01\x36\x8b\xb4\xf8\xf3\x6c\x31\xc6\xe0\x50\xcb\x82\x19\xc8\x82\x5b\x42\xf6\xef\xc4\xa2\xcf\x9f\x2d\xc5\x81\x4f\x26\x68\x72\x86\x9c\xeb\x7a\xb2\xaf\xeb\xd2\xb6\x4b\x89\x6b\x02\x5c\xd7\x77\xe2\x5c\x51\x6f\x18\xa4\x6d\x72\x0b\x1d\x0c\x3d\xb4\x2c\x46\x51\x5d\x8f\x20\x57\x01\x9c\x51\x2b\xa0\x05\xb9\x71\x97\xd0\xe2\x96\x56\xd8\xa2\xa4\x4f\x1c\x9f\x9a\x6e\x4e\x02\xb2\x93\x13\xe2\x31\x5f\x9f\x52\x37\x0b\x98\x1b\x8d\x83\x46\xe7\xf3\x37\xe6\x45\xab\xc0\x27\x0c\x98\xce\x41\x15\x1f\x2f\x0c\xc0\xce\x69\x4f\x4c\x35\x50\x3d\xf0\x49\x4c\xb9\x6d\xbf\x95\xb3\x64\xe6\x24\x83\x9c\xd8\xe5\x20\xf7\x9f\xec\x35\xd5\xd9\xd7\xe5\x9b\x50\x1a\xbb\xb1\x63\xf2\xc6\x62\x9d\xdc\x01\xaf\x13\x60\x07\xc5\x74\x84\xc5\x08\xc4\x39\x18\xcf\x0f\x7b\x1e\x66\x71\xc6\x23\x37\x96\x3c\x86\x03\x42\x3a\x31\x7e\xd0\x54\xa5\x1f\xd3\x54\xb5\xde\x3d\xed\x2a\xf6\x78\x05\x39\xc9\xd5\x71\x57\xf2\xb0\x48\x76\xd9\xaf\x3c\xba\xe2\x8f\xfb\x92\x1f\x0e\x59\xb1\x73\xae\xac\x29\x93\x53\x7a\xdc\x65\x77\x47\xfe\xae\x28\xc7\x84\x1a\x06\x8b\x00\xdb\x38\xa7\x93\x70\x1e\xf1\x8a\x87\xd5\xdb\xe3\x3e\xcf\x42\x56\xf1\x03\xd9\x50\x85\x11\xdf\x55\x82\xf6\x10\xec\x13\x28\x10\xa0\x85\x20\x42\xc4\x07\xf4\x39\x26\xb9\x66\x20\x02\xca\xbc\x58\x30\x10\x70\x46\x78\xb1\x6f\xdb\x48\x2c\x11\x1c\xdb\x31\xc6\x86\x78\x91\x29\x35\x6d\x90\x26\x91\x25\xd6\xc0\xb6\x01\xb9\x25\x61\x0d\xe1\x34\x81\x99\x7c\xcf\x1f\xc7\x06\x10\x52\xcb\x02\x54\x17\x1b\x47\xad\x18\x49\x2c\xef\x47\x04\x5a\xaa\xeb\x3f\xc9\x9f\x25\xbc\x4a\x56\xfa\x4c\x11\x6d\x5e\xf1\xc7\x0a\x2e\x2c\x77\x55\x8b\x04\xcd\x44\x50\x2a\x63\x94\xcd\xe1\x72\x12\x48\xc5\x15\x5b\x89\x04\x53\x12\x19\x4e\x29\x68\xf2\xea\xbb\x91\x4f\x64\xd3\x9f\x9a\xf8\x51\xf6\xf4\x1f\x62\xe9\x65\xbe\x6e\xde\xe0\x5e\x0a\xea\x08\x3a\x66\xb4\x21\x91\x94\x4f\x49\xdc\x70\xa0\x27\x43\x5a\xed\x7c\xb6\x20\x92\xec\xfd\xf1\xc0\x8f\x51\xe1\x64\x8c\x00\x32\x71\x7e\x26\x1d\xa8\x3b\xa7\x86\x08\x06\x4d\xfc\x96\x3c\x87\x8b\x4d\xe7\x64\xdd\x58\xce\x29\xca\x4a\xc7\xea\xd0\xae\xa5\x6c\x07\x26\x8b\x86\x58\x57\x23\xdf\x1b\x62\x4d\xdb\xe4\x92\xdf\x67\xc5\xf1\xa0\x46\xdf\x2b\xfb\xaf\x4b\x99\x9a\x86\xec\x4b\xfe\x25\x30\xfc\xce\x09\x6e\xc5\xc7\x04\x08\xde\xd2\xa7\xe2\xcf\x80\xf9\x27\xcc\xfb\xc4\xa7\x48\xfc\xad\x6b\xe6\x7d\x0a\x7f\x3f\xf3\xeb\xda\x54\x5d\x54\x59\x05\x8b\x02\x30\xf8\x52\xc0\x20\x14\xb4\xc4\xce\xf0\x3e\xf1\x41\xee\x4f\x5a\x40\x26\x9f\xe2\x46\x5d\xb8\x7f\xb4\x2f\x3d\x7c\x41\xac\x5d\x95\xca\x06\x96\x7e\x5b\xd3\x27\xd8\x55\xbd\xd3\x1b\x1a\x31\x6f\xe1\x8b\x8e\x7f\xea\xd3\x29\x12\x3f\xae\xe8\xb2\x78\xfc\xa3\x5f\xd7\x4b\xec\xbc\x7c\x81\x2c\x7e\xcf\x77\xb2\xb2\x4f\x40\x91\x37\x8a\xf4\x1b\x16\x65\x3f\x93\x65\xff\x97\x3f\x65\xde\x7f\x9d\x65\x70\xc4\x8f\x6d\x0f\x5b\x6c\xb4\x76\xc1\xd8\xce\x99\x88\xe6\x6d\x5b\xcc\x8e\x06\xb5\x9f\xe7\x30\x07\xea\xea\x47\xd4\xe1\x8a\x8d\xe8\xc0\x80\x5c\x91\x93\xf6\xa7\xdc\x09\x6d\xfb\x1f\x32\x7b\x28\xb8\xee\x80\x26\x28\x24\x93\x05\x96\x2f\xad\xfd\x14\xb2\xb0\xd5\x8a\x99\x67\x01\x9e\xe9\x67\xd0\x3d\xf6\x16\xa2\xde\x45\x37\x87\x81\x18\xf1\x4b\x5f\x5b\x67\x41\x8a\xb9\x5a\x9f\x60\xdc\x08\x80\x96\x20\xf4\xfe\xf5\x9f\x47\xac\x54\x86\x52\xa3\x71\x89\xbe\x94\x7d\xb8\x67\xaa\x74\x93\x9e\x50\xe5\xdf\xd6\x4c\x6e\x1a\xa5\x3b\x72\xde\xaf\x27\x8f\xc1\x45\x52\x2b\x95\x06\x83\x0b\x53\x47\x00\x7d\x68\xf5\x5f\xd8\xd4\x92\x8a\x01\xf5\x33\x6c\x89\x49\x7d\x42\x8c\x8c\xf4\x2b\x90\x6b\x30\x82\xd6\xc2\x4e\xf8\x62\xbc\xd4\xf5\x6f\x8b\xca\x86\x62\x32\x25\xd1\xb5\x30\xec\xb5\x06\x37\x64\xb0\x77\x89\x69\xd4\xd4\x26\xeb\xcb\x06\xaa\xce\x77\x14\x19\x86\x59\x52\xfb\x98\xbb\x82\x9b\x13\xf3\xe6\x04\x2e\xe2\x53\x81\xd4\x2d\x99\xe0\x0a\xca\x32\x74\xf4\x77\x97\x4f\xe0\xf5\x83\x7a\x0d\x6d\x7b\x41\x29\xe5\x2d\x9c\x85\xd8\xb1\x5e\x74\x1f\xcd\x0f\x37\xb3\xa5\x63\x3d\x33\xbf\x49\x70\xea\x60\x51\x36\xf5\x2f\x95\x05\x09\x5c\xc1\x5b\x28\xfa\xab\x40\x87\x18\xf0\xc6\xb0\xd2\xda\xec\x6b\x5d\xf3\x16\x4e\x75\xcd\xd3\x25\xd4\x3d\xb5\x66\x96\x33\x59\x62\x81\x20\xcf\xd1\x8d\x36\x42\x52\x3a\x07\x14\xb0\x0b\xd0\x69\x1d\xd8\x93\x84\x5a\x39\x3b\x54\x66\xfa\xec\x53\x4c\x52\x6a\x29\xa5\x1f\xe8\x89\x9e\x5e\x71\xe0\x45\x6a\x8a\xdc\x11\xfb\x90\x89\xc9\x1f\x18\x00\x2f\x7a\x92\xc9\x7e\xf4\xf4\x1c\x69\x3c\x11\xdc\x80\x65\x9c\x78\xd6\xc8\x29\x70\xd7\x67\x34\x4a\x9a\x0a\x1e\x6a\x7c\xb7\x90\x03\x9d\x64\xb6\x3d\x49\xc5\xa9\x7d\x07\x87\x73\xac\x29\x89\x3d\x3e\xe5\x2d\x77\x90\xd3\xdc\xdb\xfb\x82\xf7\x4c\xdd\xfc\xf2\xd6\x2b\x41\x15\x34\x1f\x92\xb4\x93\xe5\xaa\xa0\x7b\x6a\x15\xbb\x1c\x14\x42\x99\x6d\x4f\x0a\xdb\xee\x8d\xa4\x69\xb7\x7e\x16\xa3\x82\x7a\x89\x7b\x67\x1c\xf6\xce\xdd\x5c\xcc\x3c\x3c\xfb\x24\xb1\xed\x03\x3e\x6d\xe8\x9d\x77\xf4\xeb\x1a\x89\x1f\xb0\xd6\xba\xa5\x1b\x8f\xf9\xa0\xec\xb1\xa3\xb7\x02\xb1\x51\xfa\x60\xdb\xb7\xde\xd2\x27\xdb\x5e\xc2\x4b\x9f\xe4\x82\x8c\xbd\x33\x14\x63\xbc\x9d\xdf\x8e\x76\x3a\xdd\xd9\x76\x6e\xdb\x62\xd4\x75\x8d\xb6\x74\x47\x17\xb8\xae\x8b\xf9\xbe\xd8\x23\x50\xf2\xe8\x0f\xd4\xb6\xa7\xd3\xad\x6d\xe7\xc0\x11\x9e\x44\x2f\xa8\xf7\x40\x76\x64\xeb\xaf\xa4\x05\x41\x4b\x93\x1c\xc0\x3a\x0d\x05\xb2\xeb\x81\xea\x3a\x16\x54\xbd\xe8\x98\xec\x22\x16\xbd\x5d\xfa\x2b\x83\x40\xf9\x3d\x7d\xfa\x37\x17\x47\x75\x1a\xba\x84\x72\xd9\xa1\xdc\xe8\x90\x18\xc2\xd6\xc7\x44\x8e\xaa\x6f\xd4\xb0\x9d\x51\x4e\xb6\x52\x50\xb2\xfd\xcf\x88\x52\xba\xb0\xed\xed\x75\x74\x43\x17\x4d\x33\x72\xf2\x19\xea\xdf\x82\x1a\x05\x6a\xe9\x00\x8b\x15\xcd\x0f\xbc\x92\x04\xc9\xc1\x63\x03\xf6\xc1\x38\xc7\xad\xe3\x4e\x5d\x4d\xf2\xe8\x4a\x56\x20\x29\xed\x56\x0f\xdd\x3b\xfa\x2e\x70\x00\x5c\xf3\x47\x4b\x17\x85\xd4\x63\x84\x11\xcb\x22\x81\x4f\xcc\xb6\x06\x9a\xbb\x88\x0d\xf9\x11\xf3\xda\x96\x99\x4a\xf7\xc0\xa8\x5c\xb8\xac\x8d\xe8\x5f\xc4\x21\xe1\x25\x40\x73\x44\x3e\x9d\xa0\x50\xfc\x40\x4a\x83\xc7\x8e\x35\x51\xdd\x82\x84\xe2\x2b\x17\xe4\x99\x9c\x1b\xe7\xb4\x2b\x2a\x27\x1b\x13\xb5\x7a\x3e\x51\x06\xd4\xe9\xb9\x46\x46\x77\x41\x20\xa6\xa3\x3f\x06\x81\x59\x5a\xad\xaa\x84\x46\x9a\xd1\xe6\xc4\xf3\x05\x1a\x1b\xe8\x20\xa4\xb3\x19\x46\x31\x4d\xbc\xd4\x97\x94\x42\x2a\x86\x13\x88\x9f\x18\xf7\x07\x43\x38\x89\xbb\xf3\x10\x48\x0a\x12\x09\x9e\x55\x54\x0f\xf6\x03\x90\x08\xaf\x93\x50\x42\x6c\xd3\x60\x92\xb2\xc3\x70\x8c\x23\xf7\xf7\xa6\x64\x20\x30\x98\xdf\x06\x13\xcd\xfb\x5e\xa8\x85\x9d\x51\x22\xe4\xbc\x62\x14\x98\xac\x46\x5d\x07\xf2\x7e\x42\x70\x3d\x75\x0d\x9c\x63\x7b\xe6\x30\x71\xe6\x88\x76\x73\xb6\x4b\x2e\xb4\xf9\x93\xa2\xe0\xe0\xa4\xbe\x04\xc0\x50\x1e\xc0\x97\x9c\xf7\x71\x80\xa4\xcf\x54\x19\x56\x51\x71\x05\x5a\x17\x7b\x37\x98\x43\x4d\x43\x75\xa5\xc7\x6d\xee\x88\x0f\xa2\x03\xc3\x6f\x32\xbd\xd5\x22\xa7\xe1\xa0\xb9\x50\x60\x68\xa9\xb2\xdf\x91\x90\x4c\x1c\x9f\x9a\x7b\x1c\x8a\x24\x87\x4a\x26\xb8\x13\x49\x36\x98\x54\xac\xec\x19\xa4\x9b\x3a\x82\x45\xc8\xa4\x80\xb4\x7b\x16\xfb\x32\xed\xdd\x05\xca\x93\x76\x29\xad\xce\xb2\xa8\x21\x65\x51\x8c\x1a\xb8\x33\x4a\x69\xd1\x10\x50\x77\xbf\xf4\x7d\x37\x67\xa1\x60\xc0\x94\x1c\xd8\xb6\xd1\x04\x9a\xfc\x12\x74\xe4\xeb\xee\x19\x09\x8a\x6f\x32\x11\x78\x01\x04\xbf\x6c\x9e\x96\x3c\xae\xeb\x7f\xb1\x79\xc5\x02\xd0\x93\x01\x23\x6a\xb8\x11\x18\x27\x57\xf5\x7d\x01\x18\x85\x35\x44\xbf\xfe\x76\xe6\x45\x43\xd4\x5d\xcd\x28\x6d\xfd\x3b\xf5\x64\x02\xd1\x7f\x36\xd7\x86\x01\xb5\x25\xaf\xc6\x8c\x4f\xfa\xbe\xaa\x21\xfa\x69\xbc\x6f\xa6\xca\x93\xf9\xd6\x56\x00\xd3\x41\xba\x0a\xd5\x20\xf8\x76\x5f\x3d\xf5\xaa\xfc\x5d\x7c\x3c\xd8\x9c\x6a\x60\x7a\xf5\xc7\x31\xd3\x57\xd9\x87\x31\xb3\xdb\xf6\x74\x99\x43\xeb\x60\xd9\x9b\x72\x16\xf1\x72\x6c\x6c\xff\xad\x36\x6b\x3b\xa7\xb8\x21\x30\x81\x63\x99\xff\x39\x92\x59\xea\x09\xfd\x0f\x97\xc9\xd0\x36\xd2\xe0\x66\x24\x05\x0d\x01\x4d\xee\x73\x03\xdf\x61\x55\x97\xda\xb4\x6d\x4b\xd4\xd0\xd5\x6f\xdb\x48\x52\xff\x28\xa0\x43\x46\x03\x08\x59\x2c\x18\x0d\x5d\x66\x28\xaa\xd3\x2e\x0e\x0a\x03\xff\xe9\x49\xf2\x16\x3e\xa0\xc7\xc1\x67\x43\x22\xe9\x05\xb3\xa5\xc8\xc3\xef\x86\x39\x3a\x0e\xc6\x5b\xdc\x84\x6e\x38\x0d\x9c\x10\x72\xde\xf3\xdd\x79\x6d\x86\xc5\xcc\x2a\x00\x33\x19\xfa\x12\xb3\xe1\x3d\x39\x6b\x30\x29\xa2\xe8\x63\xc5\x97\xbf\x51\x3c\x3f\x1b\x4a\xcf\xd8\x8f\xb6\x7d\x5d\xcd\x66\x82\x00\x5a\xe9\x6a\xa2\x5e\x35\xc9\xef\xae\x66\x3a\x8d\x5e\x05\xe3\xb5\x80\x9a\x88\x06\xf0\x5d\x95\x52\x03\xdc\xef\x5a\x4b\xe8\x53\xc9\xa2\xac\x70\x26\x0b\x89\x46\x82\xe2\x51\x3c\xc7\x59\xce\xc5\xef\x9e\x1d\x0e\x0f\x45\x19\x89\xe7\x6c\xcb\x12\x91\xd8\xe0\x8e\x2a\x0b\x7c\xba\x65\xc8\x30\xac\x3e\x1d\x8e\xc1\x36\xab\x44\xfe\x92\x1f\x78\x75\x9e\x7f\x27\xf3\x6b\x35\xb4\x3b\x86\xf0\xa9\xb9\x63\x86\xa3\x13\xad\x65\x72\xe8\x7a\xdc\x23\xc7\x80\x09\xbf\x63\x24\x11\xac\x6a\x55\x6c\xf8\x2e\xfb\x95\xd3\x0b\xf6\x83\x9d\x19\x18\xfd\x55\x73\xf4\x59\x8c\x5a\x4d\xed\xc0\x5d\x38\x9b\x56\x4e\xba\x4a\x29\x03\xab\x48\x72\x2b\x1a\xd7\xe2\x2f\x4d\xe5\xe0\x13\x9a\x84\x75\x8d\x38\x7d\x27\xd5\xb8\x53\x0c\x12\x14\x0e\xba\xd4\xa9\xaa\x86\x7b\x0b\x5f\xb3\xaa\x75\x9d\x62\xa2\xec\x20\x63\xea\xf9\x58\x1c\x9a\x93\x25\x41\x9c\xbe\x6f\xab\xb0\x6d\x14\x52\xae\x75\x58\x49\x2c\xb3\x9f\xa4\xd0\x39\x94\x86\xe8\x50\xa9\x41\xc0\x5d\xc1\xfd\x7a\xd7\x68\xcb\x1c\xcb\xb5\x48\xae\xb2\xdd\x95\x9e\x48\x3c\x41\x9c\xfe\xec\x25\x7e\xdb\x62\x5d\xdf\x7a\x89\x6f\xdb\xe2\x83\x78\x42\x5c\xa4\xfd\x76\x2f\x12\xa2\x2e\x40\x1c\x7e\xa9\xf5\x2c\x46\x93\x50\x19\x43\xb7\x73\x9c\xaa\xef\x4e\xea\x76\xb2\x2f\xec\xfc\x8a\x18\xc9\x70\x3b\xfb\x8d\x61\x7c\xc8\xf4\x11\x20\x51\xe4\x82\xf4\x0c\x05\x2c\x6b\x15\xde\x04\xab\x60\x3a\xc5\xd1\x14\xac\x40\xa5\x88\xbe\x53\x79\x69\x6b\x3a\xb0\xbe\x55\x46\x30\x8f\xb2\x92\x70\x1a\xda\xb6\x29\x2e\x15\xfc\x09\x89\xe9\x63\x77\x5b\x15\xc8\x93\xc7\xed\x71\xdb\x71\x27\x3d\x07\xfb\x5f\xc5\xde\x05\xc6\xb5\x6f\x7b\x3b\xc3\x54\x89\x01\xc3\x9e\xc8\x9e\x00\x54\x0a\xbe\x29\x06\x80\x4c\xce\x2b\x1e\xa9\xd9\xb6\x99\xaa\xa3\xbd\xd3\xed\x8b\xa6\x2f\x77\x4a\x70\xec\x19\x1d\x30\x93\x04\xa5\xf2\x96\xce\xb6\xd3\x96\xe7\x4d\xbd\xa5\x6f\xca\xc1\x05\x0f\x4c\x53\xef\x25\xf4\x13\xee\xe9\x6e\x09\xa4\x9d\xf7\xc5\x50\x79\xad\x7a\xfa\xa5\x1d\x9b\xd5\x9b\x8b\x56\xe8\x34\xa2\xd3\x0c\x2e\x29\x3c\xee\xab\x8c\x23\x47\xbb\xc3\xc4\x11\xd2\xb6\x78\x64\x23\x98\x92\xf0\xd6\xbe\x7c\xc5\x6f\xa2\x55\x34\x9d\x62\xc9\x1d\x80\xb3\x15\x43\x7a\xdf\xd6\x73\xcf\x4c\x21\x8f\xae\x4b\xb0\x41\x9e\x4f\x52\xba\x20\x59\x07\x8a\xb7\x54\x5a\x3b\x07\xad\xaf\x17\xb0\x4a\x96\x6c\x90\xc0\x15\x21\x8a\xa1\x1e\xf1\x9e\xe8\xbb\x15\x72\x0b\xea\x04\xd2\x7a\xc2\x70\xa6\xd2\x76\xe1\xc1\xe8\x82\xc1\x2e\x45\xb6\x3d\x11\xcc\x9a\x6d\xa3\x88\x3e\x30\x14\x61\x4c\xb8\x6d\x4f\xb8\x4c\xe3\x22\x4d\xe4\xc7\x3d\x45\x62\x85\x03\x7b\x72\x22\x0a\x82\x0f\xcf\x07\xfd\x56\x35\x96\x3d\x8d\xeb\xfa\xc8\x50\x50\xd7\xd6\x0b\x8b\xa4\x9d\x4e\x84\x97\xfa\x4e\x0a\x9c\xdf\x1d\x9d\xb0\xba\x9e\xc4\xb6\x1d\xb8\x7b\xe7\x9e\xa1\x3d\xd9\x12\x06\xd5\x93\x92\x86\x2e\xaf\x6b\x14\xbb\xcc\x29\xea\x3a\xc2\xae\xe7\x3b\x89\x73\x07\x1a\xe1\xb6\x1d\xa2\x3b\x52\xca\x9c\x11\x3e\xdd\xd2\x7b\x86\x4a\xb2\xc3\x24\x42\xb7\x44\x4c\xac\xf8\xb0\xa1\xb7\x7d\x40\xd8\x08\xc6\x32\xa7\xb7\xde\x06\x66\xb4\xf4\x76\xde\xc6\x17\xbc\xe5\x9d\x7a\xca\x31\x98\x35\xc8\xeb\x22\x41\x7b\xcb\x07\xd1\x00\x18\xf2\x94\xa3\xf5\x95\xb2\xbe\x5b\xb9\x06\x77\xde\x46\x54\xb4\xe2\x40\xe9\x48\x0d\xb6\x5b\x92\xe1\xe6\x37\x8a\xa3\x5b\xca\xdd\xbf\xa0\x98\xe4\xd8\xd9\x8a\xa4\x9b\xd9\xd2\xb6\x51\xec\xdd\x8a\x1e\x26\xe2\x47\x74\x4f\xee\xd0\x12\x06\x0c\xb7\xf4\xa5\xbe\x4e\x2b\x88\xae\x1f\x3b\x25\x26\xdc\x55\x3d\x48\x48\x49\x32\xec\x68\xf3\x8c\x84\x94\x3d\xd5\xed\xc7\x3e\x72\x24\x70\xd0\x99\x4e\x33\xa2\xb9\xbe\x3c\xf2\x40\x5e\x2f\x70\xb7\x00\xdd\xa4\xae\x8d\x4f\xe2\x2c\x24\x19\x68\x0d\x2c\xc8\x86\x1e\x2e\xb0\xc5\x40\x55\xa6\x64\xb2\xc0\x24\xbf\x90\xe9\x2f\x28\x20\x92\xdf\x55\x19\xb7\xd4\x33\x05\x22\xdd\x3e\x9f\x24\x02\x76\xeb\x3a\x9c\x50\x7a\x2b\x8e\x1c\x14\xd0\x10\x77\x90\xb6\x51\xd9\x9d\x5c\x3d\x74\xbe\xc1\xa4\x48\x80\x37\xfe\x2a\xbe\xc9\x56\x99\xf2\x05\xd1\x1f\x6b\xa6\xc6\x8a\xb7\xd4\x3b\x30\x54\x31\xb4\xc5\x24\xc4\x52\x3c\x76\x52\xf9\xe5\xa1\x68\xe4\x56\xd3\x2c\xef\x32\x45\xaa\x3a\xe4\x30\x09\xbd\xa3\x2f\x67\x9a\xd3\xe9\x34\xeb\xf9\x02\x31\xdb\xe5\xba\xdd\x9e\xe4\xeb\x81\xa1\xec\x66\x69\xdb\xb2\x1b\xf0\x28\xce\xb5\x56\x4e\x9c\xcd\x96\x58\xfb\x19\x50\xe7\xac\x75\x25\x2f\x8b\xb2\xd9\x4b\x59\xa5\x6b\xbd\xb0\x1c\xcb\x6a\x0c\xe7\x49\xda\xa0\x26\x24\xfc\x26\xb3\xed\xc7\xae\xca\x4c\x20\x1a\x12\xdf\x70\x99\xda\x8a\x9e\xdb\x54\x38\x56\x71\xb3\xd5\xb4\xab\x3e\xa1\xa1\x87\x1d\x80\x3d\xf5\x0d\x46\x5a\x31\x8a\x61\x7c\x72\xb3\x20\x31\x1d\xa2\x18\xb2\x91\x65\x72\xb2\x05\x31\xf4\x82\xdc\x51\x6b\x61\x91\x92\xc6\xb6\xed\xf9\xe4\x20\x76\x56\x45\x6f\xc9\x51\xa0\x1a\xd0\x55\xd5\xea\xba\x48\xa0\x9c\x0d\x26\xf7\xf4\x61\x4a\x25\xc3\x51\xb9\x4b\xa7\xe7\x3f\xaa\xae\xe7\x4b\xf2\x48\x8f\x7a\x4f\x8a\x75\xd9\x48\x17\x5e\x52\xd5\x20\xc1\xab\xbb\x09\xa5\x8f\xb6\xad\xdc\x6d\xe5\xf4\xe8\xdd\xf9\x78\x75\x37\x9d\x4a\xbc\x60\xdb\x39\x3e\x6d\x5b\x43\xc3\x82\x32\x6f\x3b\x9d\xc2\x91\x59\x20\xb1\xf1\x52\x8c\x4f\x8a\x5e\xcb\xb1\x92\xc8\x8a\x36\x1e\xe8\x3d\x6e\x42\x10\x7f\xd2\x49\x21\xaa\xb1\xed\xfd\x6c\x46\x62\xdb\x2e\x75\x76\xc0\x44\xfb\x29\xbd\x23\xa1\x6d\x8b\x8e\xec\xfb\x6d\x05\xb2\xad\x02\x95\xe4\x00\x4d\x75\x37\xe0\xfb\x9b\x85\xd2\xe1\xba\x9b\xcd\x70\xe9\xdd\xf9\x75\x7d\x80\xbf\x48\xfc\xd0\x2f\xa5\x5a\x44\x86\xf1\xea\x20\x10\xc9\x01\x37\x1a\x3b\x64\xe4\x80\xc9\xc6\xb6\x05\x52\x3e\xb4\xab\x63\xdb\xfb\xd6\xd3\x89\x00\xbc\x9e\x8a\x01\xca\xba\x2b\x7c\x39\x36\x72\x4b\x2b\x4c\xca\xa6\x3d\x0e\x41\x1e\x88\x9d\x58\xe7\x4b\x69\x22\x75\xb2\xb2\x7c\x9c\xd6\x56\x3a\x0a\xe0\xcc\xe4\xb5\x41\x69\x4f\x62\x7c\x92\x77\x67\x09\x18\xfc\x75\xf0\xa4\xd5\x89\x66\x33\x1c\xd3\x47\x86\x02\x2f\xf4\x31\x89\xbd\xa3\xef\xb6\x5a\x08\x0e\xd7\x4f\xab\x98\xbe\x46\x8c\x3c\x89\x13\x4e\x9c\x7b\x71\x7b\xd1\x4e\x99\xa1\xe0\x9c\x75\x57\xf0\x7d\xb3\x5c\x38\x47\x45\x57\x0d\x9f\x10\x74\xcc\x55\x93\x6d\x33\x52\x50\x31\x9b\x09\x62\x74\xd7\x36\x23\xce\x16\xa9\x43\xc5\xe1\xde\x40\x90\x58\xda\x46\x0f\xd6\xf0\x96\x16\x82\x86\x2a\x8c\x1b\x52\x4c\xf4\x79\x76\xf3\xd2\xb6\xad\xaf\xdf\x8a\xdd\x8d\x36\x70\xc1\x80\x15\x7b\xdd\x1a\x15\x48\x9b\x14\xd3\x00\x6b\x2f\x76\x48\x8b\x66\x6e\xe1\x66\x1b\xd0\x0c\x28\xfd\xd1\xce\x08\x01\x6d\x34\xce\x32\xd9\x04\x25\xc6\x0c\xb0\xe8\x2f\xf6\x16\x3e\x99\xb4\x4a\x68\x7c\xb5\x83\xab\xdf\x9e\x74\x8e\x74\x28\xe3\x56\x33\x02\x92\xb0\xd6\xe3\x6c\x32\xfa\xf3\xdc\x34\x1a\xd7\xe6\x87\xee\xc2\x19\x1c\xdd\xd9\x6c\x06\xfd\x14\xa3\xcd\x7c\x62\x0c\x24\xa7\x9b\x1e\xba\x14\xb4\xee\x96\xca\xc1\x78\x39\x9c\xac\x31\xdd\x7e\x74\x4c\xda\xee\xf1\x56\x1f\x6f\xe3\xf6\x8f\xca\xda\xf3\x56\x1f\xb8\x19\x59\x8a\x41\xc6\xad\x92\x69\xc9\xc0\xb6\x96\x0d\xed\x4b\x05\xb4\x10\xae\x6f\x64\x14\x7c\xa1\x5d\x5d\xa7\x88\x91\x02\x63\x14\x83\x02\x12\xe1\xe4\x37\x2c\x30\x31\xe1\x0d\x31\xd5\x72\xe8\x51\x5b\xf3\x59\x58\x2b\xe5\x28\xf5\x56\x30\xbd\x38\x92\x73\xd5\x1e\x3a\x99\xe4\x64\x8b\x30\xe9\x6b\x3c\x5e\x30\x79\x59\x7e\x44\x81\x74\xdc\xaa\x71\x44\x55\xbb\x25\xdc\xfb\x0a\xf8\x69\xc9\x63\xfa\xfc\x0f\x52\xfd\xde\x22\xd6\x1f\xa4\xa0\xa8\x93\xd1\x0d\x24\x44\x22\xbf\xe0\x54\xeb\x7a\xc3\xa4\xbc\xa8\x06\xd9\x68\xca\xb3\x24\xad\xea\x87\x2c\xaa\x52\x8b\x5c\xb8\x9b\x0e\x5d\xa9\xd0\xe5\x0c\x35\xb7\x88\xd5\x5e\xa1\xf6\xe5\x4d\xee\xd2\x79\x29\xad\x98\x3a\xdd\xaf\x33\x9d\xe6\xd1\xa1\x81\x60\xec\x1a\x4c\x00\x8c\xc1\xf4\x15\xcc\x61\x27\x58\xe0\xb6\xd0\xfa\x8d\x71\xcb\xac\xed\xc0\x55\xc9\x4b\xe3\xac\x6b\x25\x98\x9b\x5c\x16\xcc\x75\x73\xa1\x4d\xcf\x40\x31\xe9\xd2\xc2\x29\x7f\x61\x83\x6e\x75\x6a\xe9\xaa\x67\xdf\x9c\xf5\x49\x7a\xee\x3a\x5b\x01\x2f\xf0\x41\x52\xeb\x0e\x66\xdc\x41\xd1\x45\x1d\xba\xc8\xd0\xa1\x8b\x4c\x1d\x3a\x4c\x12\xd6\x20\x86\x57\x5b\xd8\xf3\xf4\x00\x5e\x24\xf7\x25\x3d\x74\xda\x53\x2a\xc9\xb3\x1c\x4b\x7a\xa5\xdc\x97\xad\x34\x68\xab\xce\x32\x7a\x30\x0e\x35\xb2\x85\xbb\x19\x7a\xd0\x7a\x68\xe0\x0f\xea\xe7\xef\xbe\x7d\x5b\x84\xf4\x20\x1f\xc9\xb6\x53\x81\x3c\xb4\x8f\xa0\x9d\x58\xe9\x46\x00\xe9\xf4\x70\x1c\x39\xd2\xeb\x0f\xaf\xc0\x95\xc4\xfa\xf0\x62\x7d\xed\xde\x20\xd7\x79\xb5\xbe\x5e\x2f\x6f\x6a\xfc\xec\x9a\xdc\xd3\xeb\x0f\x73\xef\x83\xf3\x87\xb5\xb7\x9e\x13\xff\xc5\xb3\xeb\x4e\x90\xf1\xa0\xe7\x35\x8b\x51\xcf\x3f\x55\xd0\xde\xab\x6c\xe7\x49\xc9\xf7\x3d\x85\x11\x41\x30\xeb\xbb\x7f\xed\x3c\x8e\x44\x04\x54\x2a\xc3\x06\x8e\xa1\xe0\x4c\x1b\x74\xa4\x9e\x3e\x19\xdf\x15\x3e\x77\xa7\x05\x1d\xbc\x6f\xf5\x56\xdb\x2a\x25\xb1\xac\x1d\xb6\x05\xd4\x4c\x69\x89\x88\x8f\xb5\xbc\x9d\x2b\x1f\x71\x40\x2c\xdc\xd0\x85\xec\x45\xa3\x2b\xba\xe0\x3c\x23\xf0\x16\xbe\x71\xb5\x83\x18\xb5\x9c\x5d\x51\x21\xd0\xb5\xc1\x16\x26\x52\xc2\xa1\xf1\x38\x68\x50\x74\x6c\x84\x84\xab\xa1\xb6\x2e\xa8\xb4\xb8\x5e\xe4\x3b\x9e\xef\xf4\xb3\x20\x46\xd4\x20\x82\xb1\x41\xf4\x2d\xa5\xc1\xf7\xaf\xe1\xa7\x16\x9d\x40\x67\x6f\x4c\x79\x0b\xee\x5e\xc1\xa3\x18\xa7\x91\x3e\x1f\x8d\x05\xe8\x74\x7a\xf4\x94\x0f\x9d\x12\x23\x86\xf5\x94\x1b\x12\x74\x90\xb7\xd2\xc5\x8a\x2b\x29\x18\x40\x57\x67\x61\xe0\x05\x3e\x01\xa7\xcc\x9d\x68\x46\x09\x06\xcd\x42\x72\x0a\x04\x64\x89\xfc\x86\x2c\x84\x0e\x3a\xc1\x6f\x96\xae\xde\x73\x28\xc4\x4e\x08\x27\x91\x26\xbf\x20\xb3\x7e\x73\x7b\x6f\x53\xd0\xe3\x73\x18\x09\x5b\x35\xb0\x91\xd9\x1d\xb4\xf6\xa0\x1c\x25\x03\x95\x35\x59\x62\xf0\x43\x39\x7a\xcb\xf2\xd1\x82\x0b\x0c\x8e\x5a\xc7\x2e\x7e\x26\x2a\xe7\xb9\x1e\x96\x6d\x77\x14\x8d\x98\x7a\xa7\xed\x85\xb6\x02\x6d\xa4\x32\xf3\x23\x79\x32\xbd\x85\xfd\x2a\x1d\xcf\xac\x0f\x2f\xd0\x2b\x6f\xfd\xb0\xfe\xc9\x9f\xde\x60\xef\xc3\x8d\xff\xa2\x56\xce\x68\x5e\x80\xef\x99\xd7\xb4\xf5\x28\x3e\x4e\x45\x4b\x4f\xac\x26\x30\x8c\xee\x57\x29\xe6\x08\xa9\xf5\x4a\x1e\x44\x61\xca\xca\xd7\x15\x5a\x60\xdb\xb6\x6e\x7a\x49\x9a\x61\x9b\x2d\x71\xe7\xba\xed\x86\x7e\xe2\x7a\x92\xdf\x85\x8b\x77\xdf\xf9\x55\xfb\x25\x21\x93\xb0\xae\x27\xa1\xb7\xf4\x6d\x5b\x53\x8b\x93\xa0\xae\x83\xb9\xf4\x3f\xee\xa2\xa0\xae\x1f\xb1\x02\x1d\xec\x9c\x39\x7d\x0e\xda\x6f\x20\xf8\xd1\xfe\x4d\x02\x1a\x5c\x65\xbb\x43\xc5\x76\x21\xf8\xaa\x77\xc5\x0e\x77\x02\x62\x3a\x06\x27\xdb\x39\xb8\xbe\x15\x67\x32\x94\x24\x81\xd6\x48\x82\x6d\x3d\xe2\xc6\xe5\x09\x16\x9a\x1c\x95\x72\xa3\x68\xed\xdc\xc3\x71\x20\x1d\x2d\x4b\xc7\x91\xb8\x87\x86\x95\xa3\x6b\xec\xaa\x07\xc9\x85\xc8\x51\x81\x1a\x5c\x48\x20\xc5\x74\x99\xdd\x80\x53\xcf\xa7\xa1\xdd\x6e\xe8\xbd\xf4\x31\x89\xc0\x02\xb3\xa3\x01\x4f\x20\x2b\xc8\x22\x81\xf6\x0c\xe7\x28\x8f\xed\x24\x19\x6e\xba\xe9\x12\x76\xad\xe0\x22\x5a\xa3\x4d\xd3\xef\x39\x7d\x22\xbd\xed\x45\x19\xbc\x37\x3d\xad\x47\x98\x29\xd4\x2b\xa6\x2b\x95\xd9\xfb\x8d\x61\x67\xe8\x36\x71\x4c\xe5\xf0\x71\x5e\x72\x16\x3d\xb9\xea\x17\x76\x06\xda\x62\xa7\x73\x87\xd9\x29\x3e\xdb\x36\x1a\xf4\xb2\x7d\x24\xbd\x6e\x31\xfd\x84\x05\x14\x68\xff\xa5\x88\x29\xd4\xd5\xac\x5e\x1b\xb7\x42\x62\xdf\x90\x47\xba\x45\x4f\x72\x03\x7e\x2e\x77\x9c\x9c\xe9\x43\xbd\x2f\xf9\x3d\x72\x9d\xbf\xef\xaa\x2c\xaf\xc1\xb8\xf4\x9a\xbc\xa1\x27\xd0\xd9\x2a\xf9\x0e\x2e\xb8\xa4\xd6\xc6\x41\x3c\xef\xf8\x23\x5c\x52\x89\x62\xce\x64\xd1\xac\x3a\x37\xd6\x51\x56\x8e\x3b\xd1\x94\x0c\xae\xa0\x84\xb4\x94\x5a\x7a\xff\xe1\xa6\xcb\x8c\xd6\x9d\x70\x28\x0d\xc2\xb8\x69\x10\xb6\x45\x1c\xcf\xb3\x03\x38\xeb\x5e\xd2\x7e\x49\xc5\xf2\x72\x4c\x38\xe5\xa2\x8d\xf6\x2a\x83\x1c\xe4\x65\xb7\x73\xe9\x56\xd2\xf3\x47\x6e\xc6\x87\xce\x3d\xd8\x04\xee\x8f\x43\xe5\x39\xd4\x10\x7c\x83\xeb\x49\xe3\x30\x4b\xd9\x61\xf4\x2c\xdb\xea\x95\x81\x78\x0c\xea\x2c\x33\xa1\xf4\xf2\x31\x15\x8d\x1e\x53\xd2\xd3\xa6\x17\xf8\xe6\x31\xd5\x90\x30\x2f\x0e\xdc\xf4\x79\xdf\x1f\xae\x32\x99\x32\xbd\xdb\xc7\x62\x69\x12\xda\xa2\xee\xba\x3e\x3f\x5f\x05\x3a\x27\x41\xe7\xa4\x1e\xe0\xce\x59\xb4\x97\x02\x80\x20\xe4\x4e\x89\xfc\x55\x68\xdb\xa1\x98\xb0\xd5\xd0\xd8\x29\x46\x9d\xad\xf5\xab\xe5\xd2\xb6\x51\xe2\x26\x52\xf7\x45\xa9\x99\x0e\xed\xb1\x2f\xd0\x22\xe0\x42\x17\x9f\xe2\xf6\x1a\xb9\x77\x65\x36\x38\xd9\xe2\xee\xfe\xa4\x3d\x87\x63\xec\xc4\xa0\x82\x10\xf1\xc7\x51\x5d\x0c\x77\xc4\x8d\x6f\x47\x8d\x29\x9c\x40\xc4\x29\x07\x38\x40\x53\x69\x1a\xcf\x33\x81\x9f\xd5\x8a\x3b\x2a\xb7\x6d\xab\x07\xd3\x2b\x81\x5a\xfb\xf2\x50\x21\x0c\xf1\x00\x5e\xe7\x39\xd2\xe7\xa5\x33\x5b\x36\x84\x45\xd1\xb8\x07\xe9\xb3\x08\x0c\x6a\x6c\xbd\x68\x11\x09\xaf\x10\x26\xb0\x7c\x18\xdc\xaf\xb2\x28\xfa\x7c\x18\x65\xc2\xac\x90\x45\x11\xd2\xfe\x92\x07\x41\x0a\x9c\xc1\xbb\x86\x59\x86\x71\x63\x3a\x3f\x7d\x2b\xbb\x19\x15\x57\xcc\xdc\xf1\xcc\xb6\x97\x13\x73\x5f\x19\x17\xee\xca\x7d\xeb\x69\x44\xdf\x44\xab\x79\x9c\x1b\x90\x06\xca\xc8\xcb\x3c\xe4\x94\x9d\x91\xc2\x6c\x63\xa3\xdc\xce\xa3\xac\x44\x8c\x98\x17\x98\xb8\x2d\x01\x38\xf0\x92\xbe\xf7\x58\x51\x12\x0a\x12\x6b\xa8\x37\xa2\x0a\x88\x99\xe8\xa9\xdf\xe2\x46\x62\xcd\x4b\x79\x87\x6a\xc6\xaa\xee\xd7\x79\xfe\xd1\xa1\x8c\x34\xf1\x5b\x45\x2e\xb4\xf4\xfb\xc6\x6f\xb6\x07\x13\x20\x6a\xfb\x9d\x53\x37\x54\xa4\x16\xc5\x15\x92\xbe\xb0\x5e\xea\x2b\x42\x26\x10\xd4\xf5\xa9\xc1\x86\x0c\x41\x70\x54\xa4\x3d\xb1\x3e\x5a\x8f\x29\x7a\x10\x85\xf4\xd1\x36\x5a\x48\x0b\x14\x44\xdf\xb3\xb8\x04\x57\x2f\xae\x3a\x7c\x77\x95\x61\xb1\xa7\x93\xa4\xcb\xde\x96\xba\x75\xf4\x76\xf4\x7c\xc2\x4c\x7f\x81\x4d\x33\x70\x31\x2c\xce\x11\x8f\xf9\x1d\x69\x6b\x5c\xfd\x18\xe1\x55\x82\x8e\xd9\xb0\x60\xca\x7b\x7a\xf2\x9f\x61\xb8\xdf\x0c\x81\x96\x3a\xc3\x61\x11\x5c\x74\xb6\x6c\x28\xdc\xad\x9a\x64\xcd\x8d\xc0\xc9\x6f\x40\x5f\x18\xf2\x29\x8c\x22\x72\x7d\xde\x49\xea\x10\xa7\x7c\x5e\xf2\x7b\x5e\x82\x9a\x92\xaa\xc1\xe0\x78\xb0\x26\xf4\xbf\xa0\xd7\xeb\x77\xd3\xeb\x84\x7c\x49\x4f\x86\x82\xc2\x9f\xbb\x7d\xfd\xa5\x18\xf1\xa9\x15\x9d\x2b\x3c\xa0\x0c\x51\xd1\x17\x20\x7d\x25\x7d\xfd\x60\x70\x5d\x2e\x4e\x3b\x12\x34\xdb\xf9\x1b\x96\xe7\x01\x0b\x37\x7d\x6f\xc6\x8c\x8e\xe0\xef\x2f\x61\x60\xa2\x71\xa7\xa3\x58\x1a\xa2\x2c\x2c\x7b\xce\x8f\xc5\x99\x98\xd1\x09\x9b\x17\xbb\x90\xc3\xf5\xcb\x6d\x57\x7f\x2e\x0f\xd4\x90\xb2\xf9\x96\x6f\x8b\xf2\xc9\xb6\x73\x12\xd1\xc9\x82\xc4\x34\xa9\xeb\x05\x49\xe0\x90\x4d\x5b\x8f\x53\x74\xb2\x58\xa5\xb6\xcd\x95\x8b\xf0\x2c\x46\xa9\x17\xeb\x9b\xb3\x5c\x1c\x24\xb9\xa0\xbd\x41\x7f\x11\x2c\x0f\xab\x62\xff\xc3\xee\x4b\x96\x1f\x38\x3e\x85\x74\xb2\x54\xe7\x1b\x84\x27\x49\x6d\x1b\x65\x6e\xd6\x72\xef\xb7\x28\xd3\xe2\x66\xec\x84\xae\xe8\xba\xb3\xd1\x6a\x8e\xa0\x45\xb6\xa1\xa7\xde\x21\x22\x1d\x25\x6a\xc2\x4c\x77\x73\xd5\x86\xce\xba\x02\xcf\xf3\x6a\x29\x82\x41\x3c\x1f\x59\x48\xf9\xae\x0e\xf1\xaa\xe7\xb5\x3a\x72\xf5\x4d\x89\x6d\x6f\xe6\x29\x3b\x40\xac\x95\x54\x1f\xd3\x0e\xe8\x99\xea\x8e\x77\x64\x06\x8d\x6c\x3b\x46\x21\x6e\x70\x63\x38\x0b\x27\x81\xdb\x4d\xa2\x03\x11\x54\x68\x44\x6e\x05\x01\x68\x9e\xf4\x0d\x91\x0e\xe1\x46\x82\xec\xa4\x82\x80\x90\x00\xd5\xfa\x30\x1f\xd1\x35\xd7\xea\xb6\x62\x58\xfa\x24\x0f\x49\x4a\x22\x2c\x68\x12\x9c\xb6\x06\x9c\x64\x89\x05\x53\x85\xf8\x8d\xe8\x31\x9f\xcd\x48\x0c\x4f\xf1\x6c\x86\x1b\xb9\x0d\x1a\x32\xa4\x00\x5b\x8a\xc2\x14\xe6\xa4\x40\xed\x4c\x90\x72\x4c\xa9\x2f\x08\x86\x9a\x9c\xdd\x48\xb4\x11\xab\x6c\x43\xad\xee\x68\xc6\x8c\x86\x54\x12\xd2\xfd\xcc\x23\x51\x88\x26\x69\x43\xf2\xc2\x24\x06\x3a\x3f\x6b\xba\x8e\xb0\xae\x0d\x68\x52\x55\x8a\x42\xa3\x15\x66\xa0\xb3\xc8\x7f\xca\xaa\x5e\x90\x8a\xce\xc3\x5f\x5a\xd7\x91\x6d\x4f\x32\x50\x98\x0a\x61\x77\x83\xe9\x80\x52\x3f\x76\xb5\x1a\x32\x76\x42\x9f\x04\x6e\xd6\x82\x0e\xac\xbb\x6a\x5e\x34\x31\xd2\xe7\xcd\x5c\xb7\x3d\x8c\x16\x65\x94\x1b\xeb\xf5\x24\x6a\x5a\x0c\xb4\x31\xa3\xf2\xbc\xe5\x31\x2f\xcb\x51\xf5\x60\xcf\xb3\x4a\x7e\x28\xf2\x7b\x6e\x11\x2b\x2a\x76\xdc\x22\x06\x32\x42\x96\x40\x1c\x57\x12\x3d\x58\x98\xe8\xbc\x91\xe5\x13\x51\x10\x7c\x64\x12\x2b\x66\x59\xfe\x5b\xe5\x6e\x41\xd3\x17\xca\xed\x8a\x2a\x8b\x9f\x2c\x71\x88\x16\x49\xc9\x0f\x87\x41\x59\x5d\xcc\x17\x93\x6a\xed\xf9\x2e\x82\x13\x36\xa2\xa7\x43\xc5\xaa\xb1\x29\x0b\x1b\xc2\xf2\x07\xf6\x74\x18\xf9\xc6\xe7\x62\x58\xc6\x86\x9c\x8b\xee\xa2\xb3\x59\xad\x52\xf3\xc0\xd5\x6e\x29\xdb\x6c\x1d\x6a\xd7\xb3\x69\xb8\xe9\x1b\x47\x33\xea\xb2\x31\xa1\x7d\xee\x5a\x30\x3b\xb6\x0d\x14\x25\xf7\x62\x6f\xe9\xfb\xe8\xac\xd9\xc4\xb6\x93\xf1\x88\x61\x2b\x15\xbd\xa9\xab\x4f\x30\xc8\xdb\xec\xc0\xc5\x79\xae\x1e\x11\x96\x83\x0e\xe7\x6a\xc1\xd4\xa0\xc5\xbb\x58\x08\x41\xa3\xcb\xa9\x07\x56\x46\x2c\x07\x76\x42\x2f\xf6\x16\xfe\xd4\x12\x90\x67\xf9\xd0\x2e\xe0\xc2\xb0\xab\x55\x46\xe8\x4b\x64\x24\x90\xb6\x4b\x8d\xc0\x1a\x4c\xfa\xaf\xc4\x5d\x66\x41\x4e\xc1\xe3\xc7\xa2\xcb\xb5\x40\xca\x48\x84\x9d\xa8\x69\x08\x37\xce\xd1\x68\xbe\xcf\x40\x1b\x54\x2c\x0e\x39\x9f\x63\xd6\xcd\x71\xec\xbd\xf4\x49\x0a\x3e\x64\x57\x91\x9c\x56\x9a\x08\x36\x40\x9c\x34\xf0\x60\xce\x72\x48\xd3\x86\x04\xde\xf2\x03\xf3\xbd\x97\xbe\x46\x0c\x24\xf0\x5e\xc2\xbb\x40\x0c\x98\x70\x98\x10\x7f\x24\x54\x04\x1f\x9d\x2a\xee\x46\xce\xf8\x8e\xed\xe7\xa7\x49\xbb\xc3\xc1\x5d\x99\x9e\x31\x8e\x09\x84\x56\x00\x59\x3f\x27\x1c\xee\x0d\x1f\x52\x3e\xa6\x2f\xbe\x20\xe7\x81\x2d\x30\x84\x46\x6c\xf9\x61\x10\x3d\xd4\xf5\x47\xe0\x85\x3b\xe2\x90\x07\x53\x7b\x97\x39\x06\x64\x63\x31\x93\xe3\x14\x70\x9b\xcc\x05\x09\xc3\x7c\xaa\x38\x78\xe6\x9f\x85\x5d\xbb\x59\xba\x67\x5d\x74\x38\x58\x8c\x64\x6e\xa2\xe0\x0e\xf0\x9c\x68\xc0\x99\xcd\xe2\xba\x4e\x34\xc4\xb6\xe9\x4d\x23\x75\x77\xe1\xde\xfd\x66\x09\x4c\x7a\x06\xfa\xbf\xf2\x14\xe2\x98\xdc\xf6\x5f\x37\xbd\xd7\x56\xd4\x1d\x7a\x81\x3f\x98\x0b\x91\xd4\x4d\x87\xf9\xa6\x77\x90\xe8\xc3\x86\x84\x58\x6d\xa0\xe4\x7c\x03\x89\x1c\xb7\x24\xc3\x30\x80\xd6\xdf\xdd\x70\x24\xa2\x0e\x92\x18\x9b\x43\x91\x96\x5f\x41\x90\x47\x29\x51\xa3\xa3\x94\x3b\x7c\x1a\x76\x8b\x69\xc8\xea\x90\x7c\x1b\x45\x6d\x49\xa0\xc8\x4f\x2c\xab\x9c\x25\x49\x8b\x3c\x92\x1f\x7a\x84\xa5\xab\x2a\x16\xb9\xa6\x53\x47\xbd\xa1\xc9\x02\x37\xb2\xf8\x30\x30\x28\x93\x57\x7f\x93\xd9\xcc\x28\xe9\x40\xd8\x32\xa8\x5e\x46\x0f\x7d\x9a\x07\x45\xf4\xa4\x05\x9c\x07\x5e\xbd\xcf\xb6\xbc\x38\x56\x48\x15\xc2\xab\xb6\x00\xf8\xdd\x9d\x88\x4a\x6d\xbb\x57\xe9\xcd\xa2\xae\xd1\x57\xbd\xd9\x7b\x22\xde\xd6\x57\x22\xaa\xaa\xcc\x92\x84\x2b\x67\x09\xa5\x6d\xa3\x2d\x7a\xc2\x83\x54\x64\x41\x6d\x16\x26\xf0\xb1\x88\xe3\x36\x45\x30\xf9\x26\x97\xff\x35\xc2\xa7\xa7\x73\x6f\x9d\xe8\x49\x39\xe8\x1d\x78\xec\x7c\xfb\xc3\x77\xca\xf2\xeb\xdb\x82\x45\x3c\xb2\xc8\x5f\xc8\x64\x89\x09\x1b\xcf\x2e\xfd\x75\x42\x16\xec\xa0\xa7\x79\xc4\x7b\x0e\x3d\xa1\x4f\x70\xa8\x85\x29\xdb\x25\xdc\x22\x7f\x11\x55\x0d\x72\xa9\x4a\xb0\xa1\x9d\xf5\x17\x84\x4f\xe8\xbc\xdb\x75\x2d\x5b\x14\xc8\x48\xa4\x6b\xeb\x90\xb0\xd8\xee\x73\x5e\xc1\x75\xf9\x93\x9c\xe9\x77\xa2\x55\xc1\x05\x7d\x8d\xc4\xc4\xca\xe5\x07\xbd\xb0\x1e\xc0\x51\xd3\x10\x4b\xac\xf0\x57\x82\xee\xff\x8a\xf6\x90\xc5\xe5\xfa\xc7\x20\x40\xdb\xb6\x9e\x77\x1f\x9f\x27\x7d\x6c\xc6\xcf\xf3\x1a\xd3\x2d\xd5\xfd\x9e\x86\x2e\x54\x2f\xcc\xf8\x20\x97\x9e\x71\xe9\xa0\x89\xaa\xe0\x76\x21\xd5\x37\xea\xc0\x40\xb7\x36\x61\x4f\x43\x77\x61\xca\x25\x4f\x84\x4f\x0d\xb0\x0a\x51\xf1\x2e\x2c\x8b\x3c\xb7\xed\x8e\x39\xe1\x92\x7f\x31\x37\x10\xb4\xd1\x66\x46\x56\xce\xe3\xca\xd2\xde\xa5\x3b\x94\x60\xcc\x29\x27\x9f\x2d\x70\xd3\x5b\xc1\xa6\x41\x2d\x5f\xf1\x55\x8b\x36\x02\xdc\xc0\x58\xbe\x31\xfd\x6e\x92\x6f\xe1\x3a\xf0\xdb\xab\x6c\x77\xb5\x45\x1b\x6d\xb3\xdb\x06\xd2\xa3\xd6\x42\x70\x35\xdf\x92\xcd\x3c\xdb\xe5\xd9\x8e\x7f\x2e\xce\xc5\xef\x39\x8f\x0e\xdf\xb2\xa7\xe2\x58\x09\x3e\x6e\x7b\x46\xbc\x48\xa5\xe5\x55\xd8\xbb\x1d\x31\xdd\xbe\x0a\x14\x61\x81\x2e\x92\x34\xd8\xab\x9e\x72\x0e\x8a\x48\x4f\xa3\x9a\x29\x24\xba\xf8\x41\x96\x9d\x87\x87\x03\x38\x9d\xb1\xf6\x4a\xc7\xc5\x61\xc1\xa1\xc8\x8f\x15\x5f\x05\x45\x19\xf1\xd2\x59\xac\x40\xcd\xc4\x59\xac\xa4\xd6\x89\xb3\x58\x55\xc5\xde\x59\xac\xc4\x1c\x3b\xb3\x3f\xfd\xe9\x4f\x7f\xda\x3f\x5a\x24\xec\x79\x17\x8c\xf0\xc0\xd9\x20\x69\xfd\x82\xca\x76\x7f\x2d\x8a\xed\x84\xd2\x6f\x44\xe7\x87\x5d\x89\xb2\xc3\x3e\x67\x4f\x8e\x9c\xb9\xd5\x96\x95\x49\xb6\x73\x16\x5d\x87\xf6\x2c\x12\x74\xad\xb3\xdc\x3f\xaa\xce\x89\x27\x51\xa5\xb3\xb4\x2e\x4f\x39\xa3\x9f\xc0\xad\x77\x11\xc7\x07\x5e\xfd\x24\x0a\x0a\xaa\x01\x85\x46\x9f\xe8\x12\x63\x12\xf6\x3c\x8c\x47\xa0\xe0\x73\x46\x67\x8e\x4f\xec\x4a\x05\x2b\xa5\x74\x33\x97\x0e\x60\xbf\x90\x71\x3d\xf1\x69\x90\x40\x27\x0b\xd8\x1a\xca\x4d\xac\xd4\x83\x52\x10\x1b\x8c\xe4\x5e\x36\x8d\x22\x14\x01\x66\x59\x18\xf2\x7d\xf5\x96\x55\x6c\xc4\x97\xec\x76\xbe\x2b\xc4\x27\xcf\x30\xa1\x93\x3e\x1d\x06\x4e\xa3\x42\x3a\x35\xc3\x53\xb6\x1e\xc5\x97\x32\x62\xe9\x9f\xc4\x8f\x3b\x59\x3a\x70\x85\xa9\x4e\x9c\x51\x7f\x19\xad\xe7\x5b\xd8\x2b\xdf\xa9\xfb\xdc\x93\xbc\xcc\x7d\xb1\x6e\xea\xb5\xa7\x9f\x7d\xfc\xec\x9a\x7c\x4f\xaf\x91\xf7\x7a\xf6\xdf\x3e\xbe\x4e\xba\x13\xe5\x07\x43\xdd\xa3\xbb\x0a\x1a\xba\x5a\x6f\x23\x84\x44\xac\x62\x33\x6b\xda\x39\x1c\xfb\x9e\x58\xb3\x67\xcb\xe1\x30\xe1\x22\x75\xa8\xcc\x13\xe1\xf3\xfb\xeb\x50\x21\x12\x6a\x55\xe5\x11\x30\x72\x08\x01\xb6\x62\x96\x1f\xf4\xeb\xd2\xb1\xc4\x22\xc8\x37\x70\x1b\x33\x0d\xa7\x96\x7c\x9d\x86\xce\x77\xda\x4d\x8c\xab\x2e\x63\xff\xf2\xee\x87\xef\x41\xf0\x61\x38\x1b\xdb\xce\x45\xcf\xd5\x58\xa5\x7e\xbb\xe6\xd8\x9b\x73\x83\x8a\x1f\x47\xa3\x94\x66\x31\x42\x30\x01\xe0\xe8\xbb\xae\x01\x1b\x1a\x31\x4e\x25\xb3\x04\x06\x89\x85\xe8\x03\x64\xeb\xac\x40\xfe\xe3\x3f\xda\x3b\xa3\xb6\xa1\xbf\x76\xf1\x40\xe0\xa6\xa9\x03\x31\xc4\x70\x6b\xcd\x4e\x52\xa9\xea\x23\xa0\x12\x6c\x39\xda\x50\x1f\xb7\x34\x73\xb7\x32\xc6\x80\xc3\xc8\x86\x66\x2e\xf3\x52\xdf\x11\x7f\x6c\x1b\xf4\x36\x36\xb6\x7d\xeb\x6d\xc0\xd8\xa2\xae\xc5\x13\x4c\x04\xae\xeb\xf6\x1e\x34\x1a\xb9\x7c\x6a\xb5\x2e\x37\x75\x8d\x74\xb5\x54\x19\xb7\x77\x81\xe3\x9c\x14\x13\x51\x67\x5d\x23\xf1\x43\x33\xf7\xd4\x38\x27\x39\x7a\x47\xec\x88\x62\xdf\x60\x82\xce\x62\x8e\x06\xa3\x31\x47\x21\x5e\x28\x77\xa1\xa6\x2e\xaa\xaf\xb7\xf1\x49\x80\x9d\xb6\xeb\xfd\x4f\x90\x04\x4e\x7c\x12\xb0\xb9\x20\xbc\xae\x51\x02\xa9\xed\x03\xd8\x0d\x25\x54\xbe\x60\xd2\x0d\x1c\xe2\x03\x8b\xe9\x53\x11\x47\x51\x80\x7d\x3a\x06\xa5\x81\x0b\xbe\x02\x02\x9f\x48\x44\x13\x83\xc2\xe7\x59\x59\x8c\x9d\x98\x26\x24\x36\x8c\x8a\xfe\xd6\xd3\xa6\x1a\x59\xde\x48\x99\x42\xb4\x4b\x9a\xd0\xd8\x58\xd2\x54\x30\x3b\x5e\xbb\xfa\xbe\xd3\x3e\x82\x0d\x96\x97\x2a\x5d\x05\x29\x80\x76\x45\x82\x23\xfe\xc8\xb1\x0a\x4e\x5f\x07\xea\x0d\xb0\x1b\xd0\x40\x6b\xef\x4b\xd9\x76\x40\x8c\x11\x60\xec\x00\xa0\x47\x6e\x40\xbd\xc0\x77\x20\x5a\xb3\x39\x3e\x22\x35\x22\xae\x22\x57\x7c\x0e\x8c\xb8\x7d\xd8\x34\x5a\x32\x82\x3c\x28\x77\xdc\x5e\xe0\x71\x5f\xc6\xa5\x74\x27\x3f\xa2\x08\x3b\x67\x5b\xa7\x35\x97\x6a\x50\x58\xd7\xda\x91\x77\x3b\x12\xf2\xa3\x1c\x2b\x58\x25\xc1\xfc\xe4\x9c\xed\x60\x22\x3d\x06\xaa\x33\xce\x00\x7b\xd7\x75\x32\xa1\x89\x8a\x66\xec\x1a\xf5\xc1\xf4\x50\x19\xe8\xbb\x69\x3a\x8e\x44\xce\xf8\xa9\x21\x12\x8f\x3b\x27\x8b\xed\x05\x99\x78\x65\x39\x93\x05\xb1\xf8\x36\xe0\x91\x7a\xd6\x31\x09\x1d\x2b\xcc\x0f\x59\xe4\xbc\x7d\xf9\xbf\xde\xbc\xfd\xfc\x8f\x5f\xcc\x5e\x7f\xf1\xc7\xb7\xb3\xe5\x32\x8c\x67\x7f\xfa\xe3\xe7\xff\x35\xfb\xf4\xd3\x4f\x3f\xfb\xec\x93\xcf\x3e\x5d\x2c\x16\x0b\x0b\x84\x94\x50\xf3\xa8\xb6\x1b\x33\x75\xc1\xa0\x2f\x9e\xb9\xee\x62\x4f\x77\x6f\x64\x32\x61\xb6\x3d\xf9\x11\x0c\xc0\xa3\x7e\x9d\x3d\xfe\xf7\xaf\x1a\xe3\x29\x79\xed\xdb\x61\xde\x36\xe7\xdf\x94\xb3\xc4\x5f\x7e\x47\x75\x04\x18\xaf\x5f\x7e\x57\x95\x90\x77\x78\x61\x7f\xd6\x46\xab\x4d\x04\xbb\x41\xdf\xf4\x26\x62\xa3\xc5\x86\x66\xec\xca\x3c\xa4\x24\xa7\x67\x5c\xa4\xa8\x7b\x16\x40\xf4\xb1\xd4\xb7\x8b\x8d\x6b\xed\xc9\x76\xfe\x8b\xfc\x06\x77\x89\x07\x1e\x89\xa3\xe9\x20\x98\xac\x53\xd8\x1a\x95\x19\x3a\xfe\x89\x17\x4a\xc3\x35\xf1\x30\xdf\xb1\x2d\x27\x0b\xd0\xda\x6b\x7d\x8f\xc9\xd3\x50\xde\xfe\x98\x7b\x25\x52\x02\xd5\xcf\x30\x26\x3f\x48\x7b\x3a\x2f\x12\xd0\xbb\xba\xd0\x07\x98\x25\x2d\xae\x51\x0f\xe7\x91\x9a\xe5\xdd\x30\x88\x95\x0c\xda\x48\x8d\x58\xca\x72\x70\x83\x9d\x11\xc9\xc6\x6f\x17\x84\x00\xcc\x4e\xec\x8a\xee\x32\xa2\x67\x91\x30\x6c\x38\x4a\x1f\x5b\xef\x41\x78\xff\xb3\x26\xba\x42\x5d\x0f\x25\x3c\x68\x60\xb8\x3b\xf2\x23\xbf\x10\x8f\xb7\x95\xe3\xa3\x80\x82\x99\x5f\xfc\x68\xe1\xa9\x05\x45\x2c\x22\x26\xfd\x17\x7d\xae\x63\x41\x9f\x83\x5b\x63\x33\xc6\xbc\xdb\xcb\xd3\xd3\xda\x09\x31\x76\x5a\xd7\xf3\x98\x40\x20\xad\x6e\xb0\x11\x3f\xef\x17\x3e\x41\xd8\x2d\xd1\x09\xc5\x6b\x6d\xe7\x90\x4b\xb6\xdf\x29\x99\x80\x68\xab\xb5\x4b\x16\x3d\x80\x6c\x5f\x15\xc5\xe6\xd0\x3a\xd8\xe9\x2d\x04\xef\xea\x69\x56\x56\xb6\x6b\x85\xcd\x82\x39\x06\xc0\xee\x2a\x8c\x66\x33\xb0\xa2\x44\xa2\x23\x54\x29\xc9\x68\x97\xb6\x66\x59\x4c\x14\xde\x8b\xe1\x76\x8b\x70\xad\x98\x9b\x80\xc9\xe5\x24\xb2\x6d\xd8\x60\x70\x01\x02\x52\x3e\x24\xf6\x75\xd7\xd7\xf1\xc8\xcc\x6a\xfe\x21\x87\xd5\x49\x9a\xf5\x2c\x87\x40\x20\xb4\x6f\xe4\x24\xef\x57\x2e\x0b\xdc\x87\xe2\xce\xed\xdc\x40\x2d\xa2\x65\xbd\xe0\x02\x6a\xfa\x9f\x42\x19\x23\x66\x88\x5f\xc6\x96\x4e\x76\xfe\xe5\x20\x3c\xef\xc4\x50\xa4\x44\x32\x2e\xaf\x98\x55\x22\xf6\x3f\x19\x6e\xa4\x57\xa1\xab\x17\x5c\xa3\xa8\x36\x8e\x00\xf8\x69\x13\xa9\xce\xe8\x46\xe8\x83\x4b\xbb\xe5\x56\x7d\xd0\x50\x3b\x84\xa8\x85\x65\xb6\x6d\x2e\x27\x28\xe4\x2d\x40\x2a\xa8\xe1\xa5\xdb\x52\x23\x00\xfb\x5b\x5b\x73\xa4\x12\x71\xac\x96\x7f\xfd\x68\x3d\x0a\x50\xe5\x36\x20\x9e\x3f\x2a\x39\x37\xad\xac\x96\x84\xf7\x05\x30\x12\xc1\x93\xa4\xa7\x11\x95\x9a\x1b\x62\x36\x8b\xea\x9a\xf7\x84\x6a\x31\xf1\x62\x5f\xec\x8d\xcb\x0b\x27\x17\x02\x6c\x82\xd4\x26\x35\x02\x0d\xb5\x68\x20\xf6\x12\x9f\xb0\x1e\x0c\x63\xc9\xda\x03\x9c\x0a\x5c\x3e\x9d\x12\xf5\x06\xa0\x69\x58\x3c\xa7\x08\x13\x6e\xca\x29\x94\x60\xf4\x1d\xbd\xf6\xa6\x33\xdf\x15\x1c\x58\xf4\x62\x3d\xaf\xf1\x3a\x9a\x22\xd7\xf1\xf8\x17\x3e\x7c\x58\x47\xd3\x1a\x5f\xab\x40\x54\xe4\x3d\xf5\xac\xf7\xc5\xde\x22\xd6\xdf\x04\x7f\x6f\x11\xeb\xf3\xa2\xaa\x8a\xad\x45\xac\x6f\x79\x5c\x59\x3e\xf9\xfb\xa5\x78\xbd\x41\x5d\x33\x62\xed\x8a\x1d\x70\x47\x5b\xc1\xc2\x4b\xc7\xf6\xc0\xc0\x5b\x18\xd8\x92\x56\x61\x6d\xe0\xe3\x18\xf4\x35\xfe\x41\x25\x21\x7a\x38\x0c\xa4\xe6\xfa\x26\x5e\x99\xfb\x8f\xd9\x8d\x53\x1a\x82\x76\x6f\x7b\x34\x75\x97\xd2\xf8\xc4\x05\x7f\x2d\xf8\xa5\x54\x50\x89\x21\xd6\xcd\x40\xed\x29\x09\xbd\x54\x50\x6a\xd0\x42\xeb\x32\xae\x47\x8c\x8b\x0a\xfa\x31\xb1\x23\x2c\xa8\x78\x08\x4e\x7c\x0b\x9a\x6b\xa8\x33\x2e\xd0\x51\xc8\xb0\x83\x6e\x69\x40\x82\x4b\x77\x00\xb7\xb2\x04\xb8\x84\x0e\x21\x66\x81\xd2\xae\x6d\x2d\xe0\x03\xf0\xff\x45\x42\x92\xb8\x91\xa3\x2f\x01\x44\x4a\x4a\xf4\x27\xdc\xc1\x00\x77\x99\x73\xeb\xea\x7e\x60\x27\x73\x03\xf0\x34\x4a\x42\xec\xc4\x0d\xf9\x49\x32\xe2\xda\x39\x49\x0d\xee\x4a\xf0\xb3\xeb\xac\xbb\xeb\xbf\x2c\xd0\x50\x81\x25\xc8\x45\xe9\x52\xd8\x7e\xd0\x6b\xfa\x65\xc9\x12\xc8\xa1\x8c\x2c\x0c\x1b\xa1\xab\xab\x57\x79\xb6\xdb\x5c\xdf\xbc\x02\x43\xae\x9b\x57\xd7\xea\x57\x9b\x45\x5d\xb3\xe7\x37\x0c\xe2\x92\x40\xc3\x57\xa0\xb7\xfa\x5c\x77\xfd\xf9\xf5\x8d\x45\x36\xf3\x9c\xb3\x28\xdb\x25\x3f\xa5\x59\xc5\x0f\x7b\x16\x72\x25\xd3\x31\x4c\x89\x5a\xe6\x65\x33\xaf\x82\x22\x7a\xa2\x93\x0b\x81\x61\xac\x4a\x8a\xd3\x34\x54\x6d\xe6\x69\xb5\xcd\xdf\xf1\x32\x63\x79\xf6\x2b\xa7\x93\x8b\x05\xc5\x40\x86\xe5\x3e\x7b\x93\x17\x3b\x4e\xad\x57\xce\x8e\xdd\xdf\xbc\xba\x86\x1f\x81\x26\xcf\x26\x6f\xc7\xee\x2d\x3c\x0f\x45\x76\xb0\xf6\x99\x2c\xf0\xbc\x38\x56\x72\xa2\x88\xf4\x1b\xa4\xc2\x4c\x07\xc5\xa3\x45\x5a\xcf\x52\x02\x22\xc3\x41\x88\x17\xb2\x69\x13\x64\x9e\x36\x37\xe9\x4d\xff\x2b\x1d\x16\xf6\xe6\xf1\xd5\x75\xfb\x2c\xa6\x74\x57\x40\xcf\x75\x79\x30\x99\xe9\xf5\xad\x75\x08\xd9\xb3\x9d\x1a\xf4\x44\x70\x64\xe7\x26\x61\x6a\x11\x01\xec\x9e\x5f\xe9\x61\x3c\x57\x0f\xcf\xaf\x20\xa8\xc8\xf3\x4a\x2d\x2e\x24\xcb\x69\x1c\xf6\xe1\x52\x8f\xf4\x58\xdb\x61\x80\x20\x5a\x4c\x54\xd0\x8f\x08\x86\x82\xa1\xa4\x3a\xcc\xb3\x70\x63\x99\x82\xbd\x61\x25\xcb\x46\x0c\x6a\xd8\x91\x2c\xdc\x20\x8c\xc9\xff\x96\x94\x2f\x30\xa5\x7c\xd1\xb8\x94\xaf\x41\x67\xd2\x46\xc0\x87\x97\x24\x8e\x23\xce\x83\xa4\x80\x1e\x5c\x11\x15\xe1\xf1\x90\xed\xc0\x91\x50\x48\xad\x62\x67\x4d\x03\x82\x36\x5e\x30\xb5\x3e\x3f\x06\x41\xce\x0f\x96\x4f\x43\x29\x52\x12\xac\x6e\xdf\x66\x2f\x24\x96\x40\x00\x83\xec\x91\xc1\x04\x09\x66\x44\x31\x82\xa0\xbc\x84\x57\x91\x16\x52\xc2\x59\xf4\xf3\x47\x02\x14\x43\x64\xe2\x7f\xd2\xeb\x0f\x1b\xfe\x74\x0d\x21\x8a\x91\xeb\x6c\x8b\xe3\x81\xd7\xfb\x22\xdb\x55\xbc\xac\x95\xa6\xf1\x96\xef\x8e\xb8\x86\xa9\xbf\x86\x00\xc6\xc8\x75\xd4\xc8\x64\xc8\x75\xf8\x5b\x1c\xab\x20\x3f\x96\xf8\x99\x8a\x64\xec\x7d\x98\xfb\x2f\x20\xb4\xf2\x1c\xcd\xa7\xb8\xc6\xa6\x65\x19\x63\xa6\x17\xe4\x36\x39\x30\x92\x8d\x88\x8a\xa1\x48\x36\x42\x7f\x3e\xf5\x9d\xdb\x75\x17\x0d\xc0\xc4\x03\xf4\x9c\x92\xbc\x08\x58\x2e\x98\xf8\xa1\x02\x6f\xcf\x03\x6e\x2f\xd2\x7e\x1b\x67\xbf\x63\x14\x00\x93\x96\xf8\x14\xce\xd3\xf6\xde\x2e\xa3\x21\x09\x69\xa6\x53\x08\xa7\x59\x6b\x24\x00\x71\xd6\x8e\x59\x54\xd7\x48\x3e\x50\x2d\x20\xc3\x04\x25\xb4\x94\xdd\x3b\xc8\xb3\x4c\xbf\x49\x6f\x36\x1b\x5a\xaa\x2a\x31\x48\xda\xf4\xdb\xd8\xed\xaa\x22\x78\xb6\x94\xd2\x6f\xd4\x4d\xb9\xba\x37\x93\xd7\x89\xe0\x9a\x4e\xe2\x32\x6d\x05\xa9\x73\x08\xf2\x00\xac\x04\xa5\x96\xc6\x66\xce\x73\xbe\x35\x6e\xfe\x1b\x22\x93\x28\x84\x93\x00\x4e\xcb\xc2\xa6\x3e\xa0\x65\xf9\x24\x1d\xca\x78\x52\x30\x84\x57\x01\x82\x03\x2f\xf5\xa5\xe6\x60\x41\xef\x20\x4a\x30\xd9\x53\x08\xaf\x2b\x2b\x53\xd2\xa2\xb9\x36\x22\xc6\xa4\x00\x4f\x08\xba\x8b\x60\x79\xc9\x72\xaf\xf0\xeb\xfa\xd4\x90\x82\x22\xee\xde\xc2\x5e\x4d\x58\x05\xa7\x8b\x73\x3b\x0f\xb2\x5d\x04\xf2\xe8\xba\x2e\xc8\xc5\xb2\x79\x27\x23\x3c\x81\x17\xa8\x82\x14\x65\x96\x40\x1d\x77\x52\x5e\x12\x11\xb5\x90\x4e\x48\xc4\x52\x39\x72\xe1\x88\x5e\x52\x87\xf7\x23\x8d\x83\x5a\xfc\x05\x6b\x4b\x29\x7f\xe6\x98\x08\xd4\x0a\x27\xa4\xb3\x57\x06\xd2\x73\x0b\x37\x24\xc3\x04\xed\x68\xe2\x15\x62\x7e\xd4\x13\xb8\xb3\x69\x47\xf7\xa6\x38\xee\x2a\xba\x20\xb7\x02\x17\x1c\xf7\xb6\xad\x1e\x3a\x43\xca\x3d\xd9\xe0\x89\xd8\xed\x75\x8d\xce\xef\x12\xdd\x91\xeb\xc5\x82\x6c\x20\x4c\x23\xeb\x23\xe5\xb3\xdb\x43\x6b\x5a\x90\x0d\xc6\x98\xdc\x8a\x3a\xc4\x92\x88\x5f\xdd\x72\x8e\x49\xae\x61\x5e\xc3\x78\x3f\x81\xca\x99\xc3\x98\x70\x77\xa7\xb5\xf6\x06\x43\x9b\x4e\xc9\x82\xe4\xd8\xd9\x69\xc7\x13\x44\xaf\x9c\xdc\xb1\x62\x42\x26\x0b\xbc\x52\xb7\x2d\xe7\xda\x85\xbf\x7b\x07\x2b\x19\x1b\xa8\xcc\x0e\xf6\xb3\x6d\xc3\xfe\x52\x7b\x51\xf0\xf2\x17\xe0\xfc\x76\x08\xe7\xb7\xd2\xb9\x53\xda\x81\xfa\xad\x01\xea\xa9\x02\xf5\xf4\x63\xa0\x8e\x4f\xf9\x47\x20\x3d\x72\xf3\x3e\xa4\xe7\x7d\x48\xdf\xd1\x0d\xe4\x06\x77\x4e\x29\x44\x1d\x18\xf8\x75\x5f\xaf\xe7\xd8\x9a\x6a\xb0\x5b\xaf\xe7\xc8\x75\xe6\x2f\xd6\x82\x13\xb1\xf0\xd4\x42\xe2\xe9\x19\xb6\x30\xc9\x68\x4c\x77\xfd\xe1\xc5\xb3\x19\x4e\xe8\xce\x8b\x7d\x32\xe1\xd2\x0f\x48\x32\xd7\x1b\xa6\xae\x81\x37\x12\x4b\x0c\xe9\x12\x06\x52\xdb\x9e\xa4\x3a\x4c\x5e\x0b\xf6\x18\xf4\x0c\x65\x3e\xc3\xb6\xca\x7a\xf1\xc2\x92\xf7\x0c\x93\x2e\x1d\xb6\x82\x06\x97\x98\x2c\x31\x31\xcb\x0c\xe0\x67\x36\x23\xb9\x92\x24\xd9\xb6\x7e\x6a\x85\x19\x18\xaf\x32\xdb\x9e\xec\x3a\x31\x60\x3e\xaf\x38\x2b\xa3\xe2\x61\x27\xb2\xeb\x67\x5d\x60\x4f\x5a\x9c\xab\xb6\xd4\xd6\xd4\x87\x40\x8c\x14\x5d\x0e\x2d\x42\x11\x0b\xa0\xd8\x16\x71\xfa\x17\xe2\xfc\xde\x60\xbd\xa4\xb2\xb8\x28\x39\x15\xc0\x01\xb0\x2a\x00\x7a\x28\xe6\xde\x80\xac\x50\xd6\xa8\x9b\x38\x13\x6a\x58\x12\x44\x2d\x88\x45\xa0\x70\x7b\xdf\x23\xdb\xd9\x46\x50\xdb\x80\x7a\x51\x5d\x3f\x09\x68\x54\x4c\x8f\x76\x3c\x80\x5d\x19\xe5\xd7\x09\xc8\x9d\xf1\xad\x5d\x39\xc8\xd0\xbe\x19\x00\xec\x78\x20\xb7\x4f\x69\x4e\x21\xd6\xfc\x13\xf9\xa4\x17\x34\xcc\xb6\xff\x6b\xf0\x3e\x51\x51\xcc\xf6\xd3\xb3\xe3\x49\x0c\x7e\xdf\x49\x4f\xe7\x16\xbe\xa1\x0b\xdb\x46\x77\x74\x6f\x34\x49\xf6\xf4\xae\x95\x75\xdd\xa9\x1d\x84\x49\x42\x8d\xa2\x8e\x85\x5f\x2d\x6c\x1b\xd0\xd7\x9e\x04\x34\x30\x84\xe3\x6e\xe0\x88\xcd\xb1\x9d\xcb\xd5\xdc\x93\xf3\xeb\x27\xdb\x96\xb4\xf3\xe1\xbd\xec\x1a\xe5\xee\x4b\xe7\x13\x62\x4c\x01\xbd\xeb\x30\xb8\x99\xfe\x4b\x29\x08\xe5\xf6\xd5\x1d\xdd\x86\x77\xbf\xb9\x0d\x1d\x19\xff\x69\x5e\xf2\xc3\x31\xaf\xb4\xda\x6f\x30\x97\xfe\x84\xeb\x1a\xe9\x47\x1a\x09\x9e\x4f\xb1\xde\x70\xef\xd2\x13\x61\x12\x2f\xf0\x31\xd9\x9c\xa1\x96\xbd\x44\x2d\xbc\xae\x27\x1b\x3d\xff\x75\xdd\x3e\xb6\x51\xd4\x43\xb9\x03\xa4\xd3\x11\xb1\xf9\x27\x82\x20\x97\x74\x27\x48\xcc\xb3\x83\x34\xad\x40\x11\x96\x0a\xf8\x99\xa2\xbf\x35\xaa\xaa\xeb\x3d\x51\x2b\x9e\x4d\xf7\x62\x57\xa7\xb4\x17\xf4\x7f\x95\xae\x06\x29\x45\x1b\x86\x3f\xa7\xe9\x2a\xa7\x94\xa2\x68\x68\x27\xfb\x84\x6d\x5b\xe5\xcb\xcd\xd0\xc5\x75\x9d\xab\xaa\x64\xbf\xea\x9a\xe1\x66\xd7\xba\x2c\x42\x29\x2d\xbc\xdd\x74\xea\x63\xdb\x9e\x88\x05\xfe\xb1\x2c\xf6\x2c\x01\xe7\xcb\xef\xaa\x62\xbf\xe7\x11\xc2\x58\x45\xbc\xde\xdd\x2c\xdd\xcc\xd9\xb4\xa8\x56\x0c\x25\xa6\x48\x1f\x1b\x69\xb7\x11\xc1\xee\xc5\x93\xc5\xfc\xee\x60\x49\x89\x25\xb7\xb0\x85\x89\xbc\xa9\x80\x69\x4d\x49\x88\x49\x4c\x13\xdb\x4e\xbd\xc4\x37\xbe\x88\x92\xc6\x15\x20\xc4\x28\x69\x61\xa0\x57\xba\x4d\x95\xd6\x09\x01\x18\x80\xf1\x5d\xf5\x56\xce\x04\xc2\x8a\xd9\x87\x71\xec\x01\x6d\xc3\x70\xd5\xf7\x1f\x65\x6e\x31\x58\xdb\x46\x93\xcd\xfc\x17\x35\x85\x02\x06\xf4\xb3\x6a\x4f\xf9\xd8\x27\xa1\x34\x85\xc0\x83\x4e\x8a\x4d\x9b\xd8\x76\xe4\xed\xfd\x73\x80\xc8\x69\x24\x46\x98\x0b\xa4\xe6\x25\xea\x56\x8d\x9c\x93\xa5\x7b\xc9\x90\x79\x7b\x1f\x69\x0d\xa1\x12\x2e\xe5\x87\x19\xd5\x46\x68\x2b\xcc\xdb\x5b\x11\x3d\x23\x0d\xe8\xd6\x03\x31\xdb\xd7\x11\x6c\xf7\x40\x9c\x3d\x22\xc3\xbc\xa4\x67\x5c\x72\xae\x84\x7a\xdb\x2d\xb8\xb4\xb0\xef\xaf\xb9\x24\xa7\xe5\xd1\x7b\xbe\xcd\xda\xaf\xa7\x46\xba\x9a\x04\x93\x65\xd6\x6d\x10\xb9\x87\xa1\xe2\xc9\x46\x2c\xe2\x5b\xd5\x77\xb1\x10\xc6\xab\xec\x96\x12\xc4\xca\x2d\x79\x4a\xdb\xe6\x14\xb9\x75\x30\x73\x91\x5b\x41\xa9\xb7\x70\x1f\xd3\xd4\x0b\x14\xdc\xb3\x4b\x70\x7f\x62\xf3\xf0\x58\x8a\xcd\xa3\x3a\x16\x4b\x3e\x20\xe9\xea\xe1\x34\x6e\x9b\xf3\x12\xa3\xc2\xaf\xb7\x5b\x1e\x65\xac\xe2\xa3\x35\xa3\x09\xeb\xe1\xc8\xba\xee\xbf\x2b\x12\xd9\x20\x15\xc0\xeb\xbe\x6a\xea\x87\xe0\x96\x72\x31\x6d\xac\x62\x94\xcb\x0b\xdf\x90\x22\x34\x9c\x6e\xde\x52\x25\xbe\xb4\x44\x93\xc5\xeb\x9a\xeb\x3e\x63\x05\xd4\x6a\x60\x99\x71\xdb\x0f\x3e\x39\xf4\xb6\x0a\xb5\xdd\x0f\x28\x18\xf7\xb7\x16\x91\xb6\x40\xc6\x38\x11\xee\xac\x5f\x36\xf3\x7d\x71\xa8\xf4\xba\xd9\x76\xff\xbd\xb7\x8e\x84\x75\x30\xab\xe7\xf4\xf2\xad\xa7\xf6\xd6\x19\xf4\x49\x1f\x90\xc1\xca\xb3\x00\x0e\x62\xdb\xce\x4c\xeb\xed\x09\x9b\x4b\x67\xda\x75\x6d\x49\xe9\xca\x44\xf3\x80\x5a\xc8\x39\xa1\xd2\x29\x03\xcd\x7a\x96\x7c\x60\x26\xab\x1c\xaf\xf6\xaa\xcc\x5a\x77\xed\xa0\x7d\x34\x56\xb1\x72\x30\x08\xae\xd3\x16\xab\x54\x99\x58\x45\x34\x10\x34\x64\x48\xa3\x9e\x3b\x0d\xd2\x5e\x90\x70\x79\xa1\x2a\x7e\x04\xc9\x60\xb0\x50\xee\x16\x85\xd2\x70\x57\x59\x26\x67\x82\x34\x50\x2e\x4f\xd4\x27\x15\x22\x30\x6b\x43\x04\x62\x22\x2b\xe4\xad\x2f\x69\xde\x92\x80\xca\x73\xe9\x49\x80\x81\x93\x75\xd3\xcf\x9b\x76\x25\xd3\x57\xc1\x78\x76\x68\xac\x2d\x11\xa8\xbb\xdc\x14\x37\x98\x24\x0d\x89\xb3\xc7\x33\x6d\x63\x83\xfa\x68\x7d\xe9\x9a\xf6\x6d\x6a\xe2\x48\x4c\x99\xbe\xf6\x88\xb3\x47\xb8\x7c\xf0\xb8\xbf\x4a\xea\x1a\x0d\x13\x69\x42\xff\x5b\x33\x96\xf2\xfa\x16\xc4\x34\xf2\x5a\xee\x9f\xfd\x2f\x1b\xfe\x24\xd3\x4f\x0d\x26\x11\x05\xc5\xed\xfd\x41\x5b\x12\x17\xfb\x83\xd6\xfa\x50\x5f\xb0\xd3\x7d\x22\x8c\x9a\xd4\x52\x2c\xb0\x4a\xd4\xe7\x0f\x02\xb8\x3f\x01\x97\x2b\x4c\x2c\x5d\xec\x85\xad\xb1\x3f\xeb\x48\x16\xfd\x48\xe3\xf9\xa1\x0c\x95\x98\x46\x9c\xe4\xe4\x13\x29\x97\x80\xaf\x26\xa4\xb5\x25\xda\x8f\x3d\xd7\x6e\xf3\x2d\xaf\xd8\x37\xfc\x89\x4e\x26\xed\x33\x49\x94\x1d\xa5\x9b\xb4\x96\xd0\x24\xc6\x0e\x83\x5b\xa8\xfd\xc1\xb1\x58\x5e\x7d\xc3\x9f\xae\x02\x29\x3b\xbb\x0a\xd9\x2e\xe4\xb9\x00\xe7\xab\xb0\x2a\x73\xf1\xa9\x87\x03\xaf\x60\xf3\xff\x98\xb2\x03\xbf\x52\x6d\x5c\x81\xdf\x37\x1e\xa9\x0c\x40\x8a\x8a\x64\xd9\xc7\xab\x2a\xdb\xf2\x77\x15\xdb\xee\xaf\xee\x33\xfe\x70\xf5\x90\x66\x61\x6a\x19\xca\x30\x44\xaf\xa2\x73\x6a\x48\xb7\x34\xaa\x7b\x61\x2a\xb6\x7c\xca\xca\x37\x45\xc4\xaf\x36\xfc\x49\xfc\x17\xcf\x83\x2a\x06\xae\x67\x8c\x3b\x20\xad\xd6\x0b\x0d\xc3\x2c\xc2\x93\xf6\xeb\x3b\xd7\x95\xbb\xdd\xa3\x13\xcc\x55\x2b\x98\xb0\xa6\x21\x06\x28\xe9\x7e\x49\x2c\x72\x25\x7f\x0e\x57\x61\x9e\xf1\x5d\xf5\xb3\xfa\xfd\xe7\x55\x5c\x16\x5b\xb5\xa4\x57\x52\x99\xf3\x67\xf5\xfb\xcf\xab\x3d\x4b\xf8\xcf\xf0\xf7\x9f\x57\x87\xb0\xe4\x7c\xf7\xb3\xfa\xfd\xe7\x55\x55\xa8\x52\xbf\x3d\x3c\x53\x03\x24\x50\x58\x8d\x24\x34\x98\x1b\x6d\xaf\x06\x73\x00\x4d\x6b\xe7\x99\xc1\x5c\xf5\x1a\xf4\x31\x5a\x98\x1a\x52\x96\xe0\xd8\x68\xa0\x03\x0d\x48\x2b\x28\xa2\x27\xa2\xea\xec\x2a\x9b\x22\x0e\x21\xbd\x40\xcd\xf9\x5b\x1e\x57\x8a\x23\x36\x13\x16\x78\x26\x73\xc9\x32\x46\x2e\x33\x01\xa2\x5a\xc2\x34\xb5\xb5\xff\xb3\x57\xfb\xfb\x62\xdf\xab\x1c\xde\x07\x75\x77\x79\x8c\xf7\x05\xc6\x64\xc2\xe6\x3d\xb8\x05\xb2\x0d\x0d\x12\x69\x62\x6c\x45\xf0\x8c\xa6\x63\x46\x27\xa2\x73\x00\x48\x5a\x35\x50\x06\x98\x6c\xc1\x6b\x69\xc7\xee\xd2\x79\x69\xc7\xee\x27\xce\xa7\x76\xec\xbe\x74\x16\x12\x98\xd4\xe9\xec\x9c\xf2\x82\x45\xce\x49\xb3\x0f\x10\xac\x51\x86\x2b\x39\x9d\x31\xb1\xad\xea\x8e\x38\x98\x99\xa0\x52\x25\xfe\x13\xd9\xb1\x21\xf4\xed\x52\x11\x26\x93\xa5\x29\xf4\x25\x3d\x81\x89\xa5\x64\xd3\x56\x43\x82\xfc\x58\x8e\x36\x69\xd4\x49\x7b\xcd\x8a\x12\xca\x01\x8d\x78\x84\xa6\x4c\x4d\x90\xb3\x76\x8a\x63\x65\x35\x04\x8e\xc5\x8f\xb5\x64\x18\xb2\x4b\xda\x52\x5d\xef\xd9\x76\x77\xd5\x44\xa9\x3c\x0f\xa4\x6b\x4d\xe9\xeb\x43\xd4\xab\x1d\xe2\xc8\xbb\x8f\x5e\x87\x34\x01\xff\x5b\xb6\xf3\x6a\x99\x89\xc5\x2c\xdc\x34\x24\xe0\x71\x51\xf2\xe3\x4e\x2e\x93\x49\xb5\xf4\x2d\xb6\x3a\xff\x38\x92\x7a\xb1\x6d\x06\x74\x57\xb6\x63\xb9\xbe\xd9\x19\xa4\xcc\x65\xeb\x70\x49\xd5\x96\xc3\x8d\x00\x8e\x6c\x7b\xcc\x7b\x66\x90\x4a\x94\xd7\x19\xd9\x2b\x49\xad\x71\x0a\x91\x90\x48\xb9\x2d\x23\xd9\xe1\x9d\xaa\x01\x42\x3a\xf4\x5a\x75\x4e\x4d\x83\x57\x91\x3b\x60\x23\x10\xd7\xd1\x95\xcf\xc5\xdf\x4a\xf0\xc1\x31\xe1\x17\xb8\xa5\xf0\x8c\x1e\x14\xf8\xd2\x94\x0f\xd1\x51\x63\x1b\x77\x78\xfb\x3c\x6a\x63\x23\xe6\x72\xcc\xf4\x06\x94\xea\x86\x81\xb8\x3b\xcb\x6f\x79\x89\xb4\xea\xd9\xda\xd8\x36\xd2\x1a\x10\x32\x12\xf5\x37\x10\xc7\x2a\xd2\x5c\x58\xdf\x30\x47\xb0\xfa\xe0\x03\x4e\x0e\xe1\xa2\x6f\x93\x9e\xc7\x2b\x99\xd9\x45\x60\xe7\x57\x75\x5e\x9a\x7a\xab\xa0\x7d\x34\x01\x2b\xaa\xe8\x1c\x48\x38\x9f\x5f\xda\xba\x82\x6c\x93\x0c\x64\x73\xfe\x51\xce\x56\x07\x59\x82\x64\x77\x19\x73\x02\xed\xc5\x4b\xb6\x49\x02\x29\x9c\x07\x30\x92\xee\x1a\x94\x7b\x84\xf6\xa8\xa6\x72\x08\xfa\xb5\xae\xc5\x3e\x79\x40\x92\x3d\x90\xca\x3c\x1d\x09\x47\x27\x0b\x8c\x7b\x32\x24\xa9\x1a\xa9\xde\x0c\x17\x4f\xa7\xf3\x31\x3a\x81\x00\xda\x73\x26\x49\xa6\x7f\x84\x8b\x12\x19\xfa\xa0\x77\x6e\xdf\x7b\x3e\xfb\xab\x8b\x53\xcd\xc0\xd0\x62\xc8\xde\xb8\xe7\xfc\x8e\xd3\x9f\x64\x01\x86\x64\xc0\x00\xfd\x3b\x3d\x39\x1f\x59\xd7\x97\x41\xb5\xda\xed\x42\x8f\xd5\x22\x6c\x2e\x69\x36\x79\x8c\x50\xd0\x35\x15\xb9\xc6\xe6\xee\xdf\xe9\xd8\x47\xe6\x5e\xf5\x50\xf6\x66\x2c\xdf\xc7\xbe\x29\x03\xfd\xf3\x91\x00\xe2\x90\x2e\x76\x80\xe0\x12\x0b\x53\x3a\x16\x3c\x17\xf7\xbc\xb4\x24\x1d\x96\x73\x76\xcf\x75\xf2\xb1\xb2\x88\xba\x89\x55\xd9\xd5\x9b\x2c\xa0\x5e\x54\x11\xfd\x09\x4e\xa3\xa1\x5f\x93\x81\xa4\xc2\xa7\xa7\xde\x41\x16\x10\x2d\xf6\x72\x02\xc5\xec\x9c\x19\xee\x86\x9d\x2b\xc8\x01\x1d\x01\x2a\xeb\x2d\xf3\xae\xa8\x32\x88\xf4\xcf\xa5\x2e\x8f\xa9\x84\xa4\xa3\x49\x28\x35\x8b\xb8\xe5\xe2\x49\xd8\x49\x1b\xc6\xed\xc7\xb5\x6a\x46\x80\x49\xd8\x34\x0d\x26\x9b\xb9\xbc\x72\x57\x57\xe3\x75\x3d\x14\x12\xa8\xef\xf4\x04\x17\x68\xbf\xe7\x50\x8e\x8b\x72\x6b\x61\x77\xb2\x94\x07\xac\xae\x8f\x45\x0a\x99\x48\xf6\x77\xfe\x8b\xac\x58\x90\xeb\x10\x0d\x5d\x27\x58\x64\xcc\x71\x92\x3a\x7a\x43\x6a\x34\x17\xb4\x04\x80\xc4\x3f\x5d\xb2\x8a\x87\x85\xdd\x60\x2e\x7a\xa3\x83\xc4\x87\x86\xd2\x72\x48\xac\xde\xc8\x41\xeb\xd8\xec\x6b\x9b\x61\xbc\x63\x4c\x27\xff\x12\xe8\x7d\x05\x5a\x93\x17\x6a\x97\xde\x28\x71\x43\x2e\xd2\x09\xc3\x0a\xbb\x8b\x8d\xe1\x17\xe5\xaa\xc6\x88\xb3\x06\x12\x25\x25\x7b\xef\xae\xb1\x35\xad\x80\x2c\x3d\x80\x41\x41\xc2\x94\x93\x4c\x7d\xa3\xf3\x3f\x58\x5e\x75\x63\x23\xf3\xb4\x53\x86\x25\x8c\x49\x65\x8e\xcb\x30\x26\xbf\x5f\x86\xb1\x9f\x25\x7f\x0e\xdd\x6f\xe3\xa9\xb9\x08\x8d\x93\x7d\x75\x6d\x81\xb6\x4e\x2f\x71\xb8\xbc\xb2\xa3\x7b\x15\xd1\x53\x76\x60\xfe\x8b\x36\x0b\x35\x17\xc6\x52\x0a\x3a\xd2\xa9\x66\x9f\x4e\xd3\xe5\x65\xdc\x66\xd9\xc1\x5f\x6e\x8f\x87\x4a\xd5\x14\x01\xba\xed\x44\xb8\x67\x9b\x60\xac\xc1\xf3\x5a\x86\x2b\x3c\xda\xd0\xb2\x6b\xa6\x5b\x79\x5d\xbf\x12\x72\x42\x6f\x0c\xea\xf7\xbc\x5f\x92\xaa\x05\xd5\x10\x56\x5d\x98\x91\xfe\xa6\x5c\xa9\xd5\xe9\x02\x07\x63\x63\x9f\x05\xc4\xea\xad\xfe\xd9\x3e\x6b\x33\x8c\xb7\x35\x19\xc0\x6c\x5d\x8b\x99\x68\x89\x58\xf9\xfa\x5e\xdf\xc8\x7c\x7c\x02\xce\x40\xdf\xd8\xb1\x67\xfd\x6c\x77\xec\x05\x64\x6e\x4c\x80\x41\xef\x49\x4b\xb6\x8f\x75\x51\xc1\x26\xb8\x7c\x93\x4c\x4a\x07\xc5\x6d\xa2\x6b\x9c\x06\x1f\xc7\xe8\x2d\x17\xf3\xd1\x3d\x3c\xba\x47\xd5\xd4\x60\x32\x19\xdd\x5f\x72\xeb\x2a\x3e\xb0\xdd\xbb\xfa\x04\x96\x9c\x68\xcb\x26\x4a\x2e\xd1\xe4\xe6\xc6\xb4\xc5\xcd\x39\x3c\x5b\xaa\x80\xb4\x68\xbe\x7f\xf5\x00\x2b\xb5\x1a\x9e\xc0\x81\x3f\x82\x2f\x24\x79\x2f\x69\x96\xbe\x98\x42\x9d\xbb\x7a\xb9\x23\x12\xe0\x15\xaf\xeb\xe8\x5c\xd1\x83\x49\x83\x1c\x62\x64\x25\x88\xd7\xf5\x02\x4f\x97\x17\x70\xe5\xbf\xd5\xec\x6c\xb9\xe2\xae\x59\x39\xc7\x0e\x04\x93\x39\x67\x63\x8c\xae\x18\x37\xda\xa2\x12\xf0\x63\xd0\x57\xd2\xef\x45\x96\x3c\xd3\xef\xe8\xab\x19\x77\x4e\x84\xcf\x4d\x15\x21\x18\x5d\x58\xd7\x01\x09\xb4\x0a\x38\x28\xe8\xc5\x52\xc5\x4e\x8e\x72\x07\xf1\x0f\x42\xc2\xbc\xd8\x27\xfc\xcc\x39\xae\xba\x60\x95\x92\x24\x4a\x23\x17\x45\x34\x20\x21\x6d\x6b\x74\xd4\x07\xdb\x1e\x71\x45\x2e\x72\x87\x24\x6c\xf3\xaa\x57\xa3\x43\x98\xc8\x40\xa9\x38\xa2\x01\x6b\x7d\x0a\x4c\xa2\x9e\xdb\x64\xc3\x75\x37\x57\x8e\xb7\xa2\x51\x2f\x1b\x48\x3a\x89\x60\x98\x5c\x70\xbb\xd3\x90\x48\xea\xe6\x68\x7d\x0d\x94\x0c\xf4\xd2\x14\xcd\x7a\x6e\x14\x30\xc0\xaf\x8c\x44\x24\x04\xdb\xa0\x86\x14\xbb\x31\x36\xde\x94\xd4\x18\x2b\x29\x40\xaf\x88\xe3\x71\x86\x96\x70\xb1\xbc\x40\x71\xf7\xb9\x11\x91\xd2\x22\x12\x3d\x39\x91\x49\x6b\x92\x2d\x1a\xde\xaf\xc9\xd9\x88\x8c\x5b\xf9\xa8\x25\x31\xa7\xd6\xdc\x9a\x1a\x9f\x9c\xee\x13\xe9\xae\x29\x48\xd4\x5e\x20\x91\x4a\x7b\xb0\x1e\x01\x3e\xb8\xf6\x30\xc1\x2a\x8e\x11\x27\x01\x61\x1e\x1f\x38\x5c\x56\x14\x71\x40\xa5\x82\xc9\x25\x6b\xd7\x1e\x90\x80\xaf\x19\xb8\x94\x0a\x69\xc0\x7e\x63\x85\x4c\xdc\xc8\xda\x25\x3a\x93\x45\x9d\xf9\x2e\xbd\x54\x9f\x16\x9e\x88\x65\x82\x8b\x18\xa3\x3a\xe5\xa7\x64\xd4\xa0\x46\x19\xc2\x74\xf1\x17\xc6\x2a\x04\xac\xa0\x31\xbf\xe9\xcf\x24\x62\xdd\xf1\xc4\x99\x16\x11\xd7\xa0\xe8\xce\x3e\xaa\xe8\x1e\xf6\x35\x73\x55\x2c\x22\x7d\xa3\x83\x07\x9f\x51\xa0\x22\xc9\x77\x4e\x84\x41\xfc\xc4\xa8\xc5\x82\xa0\xac\x59\x59\x65\x61\xce\x6b\x76\xc8\x22\x5e\xb3\x63\x94\x15\x75\x10\x65\x75\xc8\x76\xf7\xec\x50\x83\x39\xb1\xf8\x93\x67\x87\xaa\x8e\x78\xc5\xb2\xfc\x50\xc7\x59\x12\x32\x08\x3b\x2c\x1e\x8f\x25\xaf\xe3\xa2\xa8\x78\x59\xcb\x90\xbc\x75\x9a\x94\xc5\x71\x5f\x6f\x59\xb9\xa9\xb7\x5c\x7c\xd8\xb1\xfb\xba\x38\x56\xfb\x63\x55\x6b\xab\x9e\xfa\xc0\x61\x2a\xea\xc3\x71\xbb\x65\xe5\x53\x5d\x65\x5b\x5e\xdf\x67\x11\x2f\x2c\x12\x33\x7a\x7d\x75\xfb\xd7\x23\x2f\x9f\xd6\xd1\x94\x5a\xc8\x05\x3c\x54\xaf\xa3\x29\xb6\xae\x13\x92\xc8\xcb\x1b\xad\x80\xf2\x0a\xb9\x8e\x35\xe5\x6c\x6a\x61\x6f\xbd\x3e\x5c\xdf\xf8\x16\xb1\x32\x0b\x93\x94\xd1\xeb\x0f\xeb\xc3\xf4\x9a\x64\x8c\x5e\xbf\x42\xee\x84\x95\x9c\xd5\x41\x59\x87\x45\x5e\x83\x69\x6b\x9d\x96\x75\xb6\x4d\x6a\xa9\x36\x9c\x67\x3b\xe8\x33\xab\xf7\xac\x64\x5b\x8c\x90\xb7\x7e\x70\xfc\xa9\xf4\x10\x8f\xd7\xd7\x37\xd7\x49\x46\x6e\xa1\x32\xf5\xe5\x9a\x6c\xc4\x2b\x28\xf8\x5f\x67\x24\x17\x2f\xb5\xfd\x07\x77\xfd\x30\x5d\x5d\x93\xad\x6c\xd7\x39\x84\x65\xb6\xaf\x6a\xf0\xfe\x00\xad\xe0\xeb\x8c\xec\x18\xbd\x56\x44\xeb\xfa\xf0\x02\xb9\x8e\xf7\x81\xfa\x35\x5d\x1f\x5e\x68\x65\xf3\xb9\xc8\x56\x88\x51\x3c\xab\xd7\xd7\xc8\x75\x6e\xd9\x3d\xab\x79\xb8\x65\x58\xd6\x78\x9d\x91\xbd\xf8\x5c\x95\x47\xbe\xbe\x46\xf3\x17\xf8\x9a\xdc\xc9\x51\xbf\x78\x35\x41\xae\xb3\xf6\xde\xbc\x7d\xfd\xfe\xf5\xda\xab\x67\x33\x5c\x8b\x04\x7f\xed\x8b\xe7\x9b\xf5\xe1\xc5\xb3\xeb\x84\x94\x8c\x9e\x64\x10\x69\xc7\x5b\x12\xeb\x95\xc4\x0d\x57\xdb\x63\x5e\x65\xfb\x9c\xd3\xe7\xfa\xe9\xf9\x8d\x45\xac\x57\xd7\xf2\xfb\x8d\xe5\x93\x9c\x27\x7c\x17\xc9\x52\x71\xc6\xf3\xe8\xc0\x2b\x99\xa7\x7b\xf3\x89\x98\x71\x99\x67\xcb\xf6\xf2\x33\x3c\xf8\x04\xa6\x58\x7e\x92\x38\x47\x7e\xd5\xcf\x3e\xa9\x04\x40\xc9\x0c\xd2\x80\x03\xbe\xab\x47\x9f\x54\xa5\xe3\xbd\x6c\xbf\xc9\x15\x50\x59\xe0\xd1\xc8\x1a\x16\xf9\x48\xde\x36\x63\x58\xe4\x00\xb3\xb2\x74\xfb\x66\xb6\x15\x39\xde\x27\x67\xe5\xab\x52\xb5\x57\xde\x8c\x34\xda\xca\xab\x07\xd6\x1e\xae\xb7\x20\x96\x45\x2c\xcb\x87\xb1\xfd\xfc\x2a\xca\xee\x65\x3d\xf0\xe0\x37\xe4\xc0\x68\xc4\xd0\x13\x26\x15\xa3\x07\xd6\x33\x7e\x18\xd7\xcc\xc7\xab\x92\xcd\x8b\x7d\x05\xfd\xa6\xf2\x39\x2b\x76\xa4\x64\xca\x30\x45\x3c\x88\x5d\x2a\x1e\xf4\xf8\xe0\x59\x6e\x64\xf8\x2e\x66\x1b\x4a\xa4\xf0\x1a\x75\xe8\xea\xc8\x06\x57\x55\x74\x41\xe2\xf6\x7c\x18\xb5\x5c\x99\x50\xfa\x8d\x3b\xfe\x49\xc5\xad\xc4\x4e\x5b\x01\xf8\xb1\xd6\x0e\xb7\x5f\xe7\xb9\x2a\x3c\x4c\x6e\x0b\x2a\x39\x81\x0c\x5a\x06\x34\x0f\x05\xdf\x8e\xa6\xcf\xdb\xba\x66\x2b\x15\x5c\x2e\xa2\x21\x1c\x54\x7c\x3a\xc5\x93\xa0\x27\x84\x10\x34\x9a\x1b\xeb\x8b\xf4\xd6\x7f\x6e\x4c\x8e\x8a\x7e\xd3\x88\xb3\xb3\x76\xac\x6b\x90\xbb\x1a\xbe\x7a\x03\xec\xb6\x8e\x77\x99\x4f\x20\x1a\x5b\x3b\x77\xf7\x80\xea\x7f\xd2\x61\xc6\x35\x8f\xdb\x4a\x7d\xcf\x8c\x69\xf0\x30\xba\xe8\x05\x07\xc1\x00\x67\x16\xee\xf5\xe5\xdc\x45\xb5\x69\xaf\x44\xac\xaa\x04\x87\xc2\x1f\xb5\x51\xf2\x16\xbe\x60\x85\x7a\xb6\x3f\x7d\x72\x79\x08\x82\xaa\x20\x76\xd8\x30\xf4\x65\x77\x5b\xfe\xb4\xe7\x14\xc9\xf5\xa0\xca\xd1\x3a\x44\x6d\x60\x5a\x53\x13\x4f\xad\x6b\x6b\xaa\x04\xe9\xac\x1f\xe2\x50\x1f\x95\x7b\xa6\x82\x5f\xc8\x69\x6c\x7d\x73\xbb\x5a\x5c\xe6\x2d\x7d\x47\xdf\x34\x9c\x85\x3f\x37\x6b\xfd\x95\x8d\x38\xab\xd7\xf0\x12\x52\xe6\x45\x3e\x06\x6f\xf3\x86\xa4\x48\xea\x6c\x7f\x71\xcf\x72\x8b\x48\x30\x52\x2c\xa9\x17\xf9\xbd\xaf\xa6\x0f\xb0\xd7\xaa\xa1\xb3\x50\xbf\x62\xdd\x3a\xad\xed\xfe\x35\x70\xa7\xc1\x4d\x12\xda\x71\xbe\x31\x78\xfc\x53\x9a\xdc\x2b\xe9\x57\x57\x7b\x78\xd0\x4a\xb5\x49\x67\x66\xb1\x6a\x43\x69\xa4\xb0\x49\xa4\x3b\xfe\xd4\x0b\xfd\x61\x9c\xdd\x3e\x9f\x1f\x12\x91\x47\xcc\x40\x23\x7d\x87\x40\x44\xdc\xbe\x0f\x92\x53\x43\x94\x5f\x11\x6c\x78\xfd\xf8\x7c\x88\x27\x56\x67\xc3\x56\xe1\x50\x82\x0b\xc1\xb3\xc8\xa4\x6f\x19\x65\xdb\xa6\x8a\x2b\x3e\x75\x2c\x9a\x8a\x65\x1e\x89\xf1\x71\xad\xdd\xde\x57\x68\x06\x0f\x33\x5a\xa1\x79\x15\x9c\xc1\x45\x5b\x31\x6e\x2c\x79\x9c\x5a\xd2\x09\x50\x00\x01\xaa\xa4\xe2\x0f\x7f\xac\x5c\xf4\x28\xda\x9b\xab\x58\x18\x10\x69\xea\x49\xa4\x60\xc7\xb0\x08\x0d\xdd\x5e\x4c\x39\xd0\x71\x6c\x6d\xed\x28\xeb\x9e\x71\xcf\x8c\x4f\x90\xfe\xad\x31\x1b\x08\x64\xaa\x32\xdb\x9a\x06\x8d\x52\x5d\xb2\x33\x78\x33\xf2\x8b\x1e\x48\xd9\xaa\xec\x78\x1f\xcd\x88\x0e\x0d\xb0\x4c\xd0\x1a\xf8\x99\xc6\x7b\x10\xf1\x0b\x86\x0b\x4f\xd0\xde\xbd\xba\xd4\x84\x5f\x18\xe9\x5e\x11\xf2\x34\x74\xdb\x7a\x25\x76\x86\x8a\x0f\xfa\x91\x0d\x3f\x3a\xc8\xe8\x64\x5d\x5b\xda\x2a\x0b\xde\xe5\xe8\x4c\x73\x3f\xda\x8f\x9c\x86\x7b\xde\x4a\xf2\x73\x6e\xcc\x70\x28\x23\xd5\xc2\xe9\x47\x2d\x81\xc1\x3b\x90\xb1\x00\xd2\x71\x82\x0c\x3f\x06\x21\x29\x26\x89\x8a\x14\x68\xbd\xb2\xa6\xa6\x57\xab\x1b\x0b\xbb\xb1\x98\x38\xd3\x4c\xcf\x41\x15\xeb\x2d\x4e\x67\x5f\x59\xb1\x9e\x77\xaf\x98\x56\x3d\x6f\xf0\x98\x4c\xd0\x10\xda\x87\x36\x92\x32\x36\x89\x19\x1e\x64\xd9\x4f\x18\xf4\x1e\xab\x9d\x7e\x04\x57\x20\xa9\xf8\x05\x24\xd2\xe2\x36\x81\x00\x12\x1f\xaf\xa6\xd3\x04\x47\x10\x5a\xfe\x73\x08\xd4\x09\x89\x59\x8c\x02\x88\x9c\x01\xb5\xa4\x34\x85\x30\xd3\x4c\x70\xf1\x11\x3c\xc6\xa3\x75\x25\xd3\x29\x7e\xdd\xd5\x02\x6c\x3e\xe0\xbd\xb8\x45\xd1\xb2\x47\x44\x6f\x33\x4c\x22\x23\x00\xea\xaf\xe2\xac\x9d\x64\xb6\x0d\x74\x46\x9b\x47\x34\x9b\x52\x2e\xc3\x09\xc7\x0d\x09\x8e\x59\x1e\x69\x6e\x68\x84\x23\xd7\xb8\xbc\x85\x03\x72\x4b\x72\xb2\xeb\x6c\xb9\x0b\x41\x55\x05\x98\xec\x05\xb5\x70\x27\xc6\x71\x73\x07\x11\x67\xb3\x18\x82\x81\xdf\xf9\x24\xae\x6b\x50\x00\xc1\xa3\xd6\xde\x31\xc6\xfa\xa0\xdf\x93\xd8\x08\xbb\x1d\xfb\x4e\xdc\xf9\x4c\xcc\x15\xfc\xc4\x18\x9f\x60\x12\x8b\xbe\xfd\xea\x38\x09\x47\x32\x8a\x6e\xd5\x01\x17\x4b\x9b\x1c\x41\x23\x62\x08\x26\xda\xc3\x91\x39\x2d\x99\x97\xf9\x75\x5d\xb2\x56\xab\x99\xa4\x06\x10\xe6\xde\xd2\x9f\xc6\xad\xaf\xb2\x8c\x11\xeb\xd5\xb3\xe5\xcd\xab\xeb\x67\x2f\x6f\x2c\x3c\xcd\xbd\x97\x3e\xe1\x34\x17\xfc\x6b\xe7\xb5\x28\xa5\x69\x67\xed\x0a\xb4\xd5\x88\x0d\xb4\x6d\xa7\xed\xe0\x6c\x7b\x2f\x09\x27\x3d\xa0\xf7\xfc\x11\x50\x1f\x4a\xdb\x61\x78\x0b\x1f\x03\x52\x07\x1a\x01\x9f\x62\xaa\xe8\x96\x09\xa5\x59\x5d\x6f\xda\xca\xdc\x96\xc6\x9f\x50\xe8\x7f\xef\xe3\xc2\x49\x9d\xd4\xa4\x64\xb8\x74\x91\xd3\x91\x7b\xe7\x5e\x98\x0c\xb2\xe8\x96\x9a\x59\x3d\xee\x13\x4d\xb3\xd8\xf6\xe4\xf6\xbc\x16\x51\xb5\xb9\x73\x6f\x71\xd3\xad\x7b\x6a\x06\x56\x20\x29\x1c\x07\xca\xf7\x25\xb5\xb4\xef\x05\xb3\xb3\x38\xed\x55\xd6\xfb\xb4\x4a\x69\xd1\xcd\xba\xb4\xb3\xb9\x34\xab\x31\xc6\xab\xd4\xb6\x8b\x7e\x6d\x67\x66\xd9\xe0\xa6\xac\xe4\x7b\x74\x64\x68\xdf\x5e\xbd\x91\x7b\x86\x01\xe6\x95\xed\x13\xdd\x7b\x77\x2a\x9e\x32\x38\x8f\x99\x2d\x01\xcc\xb5\xd7\xf8\x98\x44\x32\x12\xbe\x89\x4b\xe3\x01\x2e\xd5\x18\xa6\x0f\xde\x31\x36\xb6\x79\x02\xbb\x3b\xc5\x44\x3a\x4a\xe8\x9a\x4f\x3d\x0e\x21\x96\xf5\x1a\xeb\x1b\x21\x0b\xb7\xa1\x8f\xe2\x4e\x65\x55\xe2\x80\x42\x3a\xea\xd8\x8d\xb8\x5e\xd2\x7b\xbf\x0b\xaa\xb0\x80\x73\x40\x7b\x8f\xbb\xa5\xca\xbb\x14\xc9\x87\x86\xd4\x64\x37\xd4\x6f\xef\xf8\x06\xe6\xa5\x3e\x06\x5f\x09\x62\x9e\x80\xe6\xeb\xd9\x08\xc8\x08\xb8\x91\x97\x29\xa7\x4d\xb7\x5e\xec\x4b\xa3\x12\x4d\x87\xe1\x56\x76\xd6\xa6\xec\x3c\xee\xbb\x03\x79\x56\x44\x38\x76\xfa\xd4\x8b\x18\x4a\xd2\x52\x2f\xa2\xe6\xee\xaa\x51\xbc\x91\xdc\x6d\x1d\x8d\x65\xbe\x66\xa6\xa2\x21\x95\x03\xbc\xd4\x59\x2a\xca\xb0\x23\x8a\xc9\x89\x6d\x27\x7c\x44\x5c\x5d\x5d\x08\x37\xf3\x0f\x29\x83\x1b\xf9\xd2\x69\xb6\xb8\x32\xd2\x27\xe4\x54\xaa\x2b\xe0\x5e\x04\x69\x9f\x9d\x48\x3b\x94\xe9\xe2\x15\x9d\x19\xc4\x0c\xb7\x01\x83\x38\x83\x32\x24\xde\xd0\x53\x0d\x6e\x88\xac\xf8\x82\xfe\xdb\x3c\x2a\xb6\xdf\xb1\x5d\xb6\x1f\x0d\xd2\xd0\x52\xe9\xed\x05\x8b\xf2\x55\x39\x92\xf6\xa7\x61\x92\xe6\x51\x1e\x5a\x87\x4f\xab\x60\xe0\x40\xa1\x69\x64\xf4\x9a\xff\x8b\x3a\x98\xed\x0e\xbc\xac\x3e\x87\xcb\x44\xb1\x93\x7a\xd1\x6a\x44\x77\xe5\x3d\xe3\xff\x66\x6f\xcf\x2e\xc0\x07\x09\xc3\xe6\x5b\x01\x2c\x8b\xab\x8b\x3a\x8c\xff\x7f\x34\xda\x0b\xc8\xd6\xe0\x51\x43\xdc\x3e\xb3\xc8\xdc\x6d\xa7\x88\xdd\xc1\x37\xe1\x26\x1b\x19\xb5\x62\x87\x40\x12\x72\x61\x8f\x6e\xeb\x9c\xf9\x1d\x19\xf8\xe2\x0a\x07\xfc\x83\xe0\x11\x5b\xec\x1b\x0e\xb0\xaf\xa0\x9c\x7f\x95\x45\x4d\x9a\xc9\xac\xa3\x77\x52\x84\xb8\x2f\xaa\x3f\x8f\xff\xa1\xc7\xc7\xc0\xc2\x46\x8d\x42\xaa\x16\x79\x81\x8f\xc1\x3f\xfb\x69\x18\xae\x6e\x30\x0c\x06\x5e\xb4\x75\x14\x2e\x13\x9c\xfa\xc4\x70\xef\xd3\x4a\x0b\xac\x0e\x03\xc9\x8a\x25\x99\x0a\x4b\x4a\x4c\x54\x1e\x1d\x16\x71\x31\x08\xcd\x72\xce\x1b\x18\xfe\x83\x74\x98\xb1\xc9\xd2\x61\xca\x81\x0e\xa5\x81\xcb\x1c\x29\xf6\x07\xb7\x90\x63\x37\xb2\x50\xa9\xe9\x2b\xae\x21\x82\x75\xf8\x9d\x18\x51\xee\x38\x85\xda\xc0\x34\x31\xa4\x0b\xa5\x5d\x64\x04\x99\x35\x7c\xfb\x19\x97\x61\xbd\x78\x9a\x2d\x71\xd7\x52\x75\x31\x23\x56\x5f\x16\x36\x12\xac\xb6\xae\xb7\xac\x0b\xb6\x37\x19\x48\x22\x6d\x3b\xe9\x7f\xfd\x08\xbd\x27\x72\x94\xcc\x6b\x49\x54\xf6\x31\x12\x55\x1c\x82\x0c\x94\xa7\x46\x29\x50\x30\x8b\x03\x2b\x9d\xe8\x26\x5c\x85\x62\x7f\xc8\x49\x0a\xe5\x24\x0d\x25\x25\x68\x00\x64\x01\x00\x59\xcf\x0b\x8c\xc0\x66\x74\x61\x78\xbe\x6d\x02\xb5\xf3\x07\x27\x0e\xfb\xe8\xe9\xa1\x3a\xdc\x8f\x29\x73\x16\x66\xc4\xb8\xf8\xf9\x4d\x8c\x14\x88\x99\x18\x6a\x35\x0c\xc6\x03\xf8\x43\xc5\x95\x50\x3d\x50\xac\x82\x46\x89\x4a\x91\x50\xf6\x13\xac\xcc\x34\x56\x37\x9c\xaf\x29\x5a\x02\x9c\xa2\x55\x6c\xa0\xb7\x64\xf6\xb7\x35\xdb\x06\x25\x43\xdd\xfb\xc1\xd6\x61\x94\xab\x5b\x56\xcf\xd7\x71\xab\x42\x12\x75\xcc\x15\x5d\x90\xbc\xe7\xcb\x6c\x27\xb5\xe6\x0a\x9a\xcf\x96\x64\x4f\xc1\x39\xd4\x5d\x3f\xae\xca\x1e\x98\xcc\xbb\xba\xce\x6f\x96\x23\x31\xc3\xf6\x60\x89\xdb\x39\xe7\xb1\xed\x9d\x02\xbf\x3d\xc6\x97\xaf\xf3\x5a\x85\xe1\xdd\x9c\xdf\xa1\x10\xaf\xee\x40\x27\x78\xe1\xd3\xbd\x61\x99\x16\x92\x08\xc0\x1f\xc2\x88\x45\xc6\xa2\xc1\xbe\x16\xfd\xca\xc1\xe1\xc9\x76\xde\xe3\x34\x15\x7e\x3f\xa3\x4d\xc8\x44\xc5\x65\x05\xff\x28\x06\x6f\x22\x2d\xcb\x46\x98\x0a\x94\xd1\x50\x52\xc2\x02\xf6\x13\x15\x68\xed\xc8\x50\x66\x50\xcc\x8f\x0c\x8c\x68\x35\x76\xc8\x6f\x6e\x57\xb7\x60\x64\x96\x91\xdb\x09\xa5\x85\x76\xba\x09\x78\x29\x22\x93\x05\x68\x1e\xc4\x02\x71\x4a\x0e\x25\x91\xb2\xeb\xee\x48\x00\xcf\x42\x7a\x16\xbc\x5b\x9f\x44\xe4\x16\x86\x1b\x2b\x36\x3f\xf1\x92\x36\xf6\xf0\x70\x90\xb2\x8f\x09\x79\x62\x58\xac\xf8\x2a\x6e\xfb\x93\x88\xaa\x34\xfd\x1e\x99\xf4\xfb\xa4\xd3\x9a\xe8\x89\x45\x7b\xc7\x59\x4a\xc0\x2e\x3e\x9a\x1f\xca\xd0\xdd\xce\x7f\xe1\xf7\x2c\xff\x7b\x99\x83\x95\xb1\x7a\x96\x1f\x05\x5d\xdc\xd5\x82\x44\x53\xfc\xb1\xaa\xeb\xc8\xe4\xbc\xc4\x6b\x8b\x0c\xa4\x37\x0a\x8d\x7b\xee\x00\x4f\x62\xbc\xca\xa8\xb4\x28\xef\x9d\x1a\x52\xe9\x0b\x54\x65\x24\x82\x78\x5f\x38\x96\x7c\xb2\x34\xad\x26\x92\xd4\xa3\x45\x4c\xea\xc1\x51\x6a\x58\x3a\xf5\x35\x90\x2d\x16\x50\x2f\x96\xc6\x25\xaf\xf3\xdc\xb1\x0c\xbc\x32\xa2\xb3\x3a\x88\xc5\xc7\xce\x83\xa8\x42\xd8\x54\x70\xe5\x96\xd2\x6e\xb1\x56\xe9\x0d\x95\x12\xdc\x90\x46\x94\xd2\xd4\x40\x06\x12\x40\x40\x2b\x05\x25\x5e\xe4\x63\x2f\xf0\x51\x88\x89\xb6\xb7\xe6\x24\x94\x01\x3b\x7b\x54\xc1\x68\x64\xbd\x37\x8c\xbc\x65\xbd\xa0\x7a\x5f\x30\x64\x0a\xde\xe8\x76\x78\x2f\x8d\x02\xac\x31\xee\xfb\x02\x85\x32\xe0\x08\x68\xcf\x26\x5c\x2b\x3d\xbc\x29\xb6\xfb\x63\xc5\xa3\x77\x2a\xb4\x40\x74\xf9\x2b\xe2\x20\x48\x70\xa3\xb9\xf6\xd8\x2f\x3d\x00\x8a\x64\xc3\x09\xe0\xaa\x8b\x26\x05\x08\x10\x61\x62\xdc\xc4\x7c\x69\xdc\x24\x3c\x91\x90\xbe\x65\x1e\xeb\x2e\xf0\x21\x48\xd8\x17\xca\xa5\xaa\x74\x34\x28\xad\x67\xc5\x97\x37\x8c\xa2\x37\xe2\x30\x45\xd6\x2b\x19\x98\xf1\x0a\xfe\xca\x38\x01\xf4\xf9\xe2\xf9\x15\x44\x07\x80\x27\x19\xbc\x40\x3c\x5e\xdf\x58\xe6\x34\x04\x43\xf3\x2b\x70\x3a\xf4\x46\x20\xaa\x7e\x40\xc7\xba\xee\x25\xea\xcd\x88\xbb\x30\xe6\xc1\xfc\xa1\xcc\x2a\x8e\x94\xd7\x30\x10\x0b\x75\xdd\x7f\xc3\xda\x09\xc0\x04\x86\x09\x88\xa7\x39\xf3\xc4\xb7\xda\xcc\x0f\x69\x99\xed\x36\x3f\x95\x6c\x0f\x51\x0c\x0e\xb4\x6f\xac\xa4\x42\x40\x75\xe6\x9d\x8c\x4e\x96\x9d\x8d\x67\x17\x89\xfe\xdf\x89\x23\xe1\xfe\x3f\x16\x46\x62\xf6\xc0\x83\x4d\x56\xcd\x82\xe2\x71\x76\xc8\x7e\xcd\x76\x89\xa3\x96\x4e\x24\xad\x66\xdb\xe2\xd7\x4b\xdf\x2e\x24\x6b\x30\x0f\xc4\x9a\xfc\xdb\x71\x29\x82\xdf\x73\x65\xac\x06\x21\xe1\xd6\xfa\x4c\x4c\x09\xa3\x9f\x4c\x06\x61\x2b\xce\x43\x54\x74\xbe\x5f\x1b\xed\x7a\xed\xcf\x8c\x5e\x7f\x90\x9d\xbc\x26\x5f\xf5\x95\x33\x3e\x20\x6b\xfa\x6e\x6a\x61\xe4\x4e\xf6\x8f\xd8\x63\xb3\x5f\xff\xd3\x9f\x3e\x53\x0a\x1a\x5f\x33\xf2\x17\x46\xbe\x11\xc5\x51\x55\xec\xeb\x52\xac\x57\x1d\x80\x53\xd0\x5a\x2c\x17\x7e\x76\xbd\x02\xac\xd0\x43\x07\x2e\xfa\x9a\xf5\x62\xde\xb4\xce\x12\xfa\xf7\x94\x86\x03\x8d\x79\xb1\x07\x73\xa5\x8f\x65\x19\x36\x83\x02\x22\x1d\x6d\x9e\xf7\x40\x7f\x6a\xc8\x5f\xd8\x99\x03\xce\xbe\x20\x8a\xc9\x89\xee\x76\x4a\x58\xd7\x5f\x2b\xb1\x7c\xe8\x02\x12\xfe\x51\xa9\x27\xc3\x7d\x07\x0a\x70\x5d\x87\x5e\xe0\x3b\x3a\x2a\xa2\x6d\x23\x4b\x20\xa3\x04\x98\xc6\xcb\x37\x1b\xe0\x67\x6d\x2b\x9b\x93\x41\x98\xc9\x57\xea\x7c\x4e\xb0\x6d\xff\x59\x3d\x07\xd2\x71\x77\x2a\x97\x1e\x82\x87\x6e\xb3\x9d\x0c\x52\x12\x8b\x17\xf6\x28\x5f\xba\x74\x23\x55\x97\xa3\x89\xe8\xbf\xaa\x43\xa7\x45\x66\x19\x4e\x8c\x52\x31\xc6\x9d\x41\x7c\xe2\x26\x4e\x32\xb5\xac\x06\x3b\x67\x61\x79\xb4\xab\x06\x7d\x2a\x7c\xcd\xc6\x74\x01\x59\x2f\xdb\xff\x7c\x15\x8c\xe9\x96\xac\x61\x62\xdb\xa9\x6d\xa7\x10\x8d\x0c\x25\x34\x05\x87\x33\xe6\x6c\x4e\xbe\x19\x4e\xa7\x80\x57\x69\x32\x72\xdc\x49\x93\xab\xa7\x9c\x93\x98\x82\x15\x2b\x7c\x8c\x6d\x1b\xc9\x47\xda\x1f\x00\xa4\x61\x22\xeb\xa0\x56\x5c\xec\xaa\x77\xd9\xaf\xe0\xea\x36\x70\xad\x25\xdf\x5a\x8e\x98\xee\x74\xbe\xcf\x1e\x39\x18\xdf\x4e\x2d\xb1\x61\x55\x81\xc8\xac\x79\x74\xa6\xeb\xda\x62\xc7\xaa\xb0\x4c\x25\xb4\x6f\x7b\xda\x05\xa7\x84\x9f\x59\x5e\x85\x94\xa1\x36\xce\xcc\x84\x86\xb8\xd5\x76\x83\x06\x94\xf8\xb1\x52\xb1\xbf\x9d\x36\x0a\x38\x0d\xf0\x05\x05\xcd\xe6\xec\x0c\xea\x85\xc2\x85\x1b\xa8\x4b\x27\xc0\xff\x71\x1f\xaf\x11\xbd\xe4\x75\x95\xa9\x13\x8b\x46\xb6\xad\x0e\x1e\x7c\x0a\x3b\x84\x1f\xe7\x05\xab\x1c\x31\xdd\xab\x62\xcf\xc2\xac\x7a\x72\xe6\x9f\x59\x64\x33\x57\x6f\xd4\x5a\xcc\x3f\x83\xeb\x4d\x9d\x42\x36\xa2\xf4\x97\xa2\x1c\x9d\x4c\xc2\xf6\x85\xe8\xc3\x24\x60\xe1\x26\x29\x8b\xe3\x2e\x7a\x93\x67\x7b\x6a\x19\xa7\x81\x75\xe6\x1a\x74\xbc\x08\x38\x36\xcd\x39\x2b\x81\x77\x02\xc0\xea\xd7\x03\x6c\xf5\x58\x59\xb2\x99\x07\xc5\xe3\x3b\x38\x87\xa8\x0c\x31\xd3\x25\x08\x72\x1a\x52\xbe\x2b\x7e\xfd\xfc\x2c\xf1\x27\x38\xfa\xda\xf4\xce\xc1\xfd\x86\x9c\x4a\x9e\x67\x62\x55\xbe\xca\xa2\x88\xef\x7e\x80\x53\x65\x2c\xfa\x67\xbb\xe5\x32\x04\xbe\x26\xda\xa6\xff\xa6\x2a\xb8\x58\x26\x96\x65\xe2\x86\xc0\xce\xf8\x51\xd3\x04\x97\xf2\x73\x99\x9f\x0b\x4e\x5f\x56\xfd\x1d\x1c\x5b\xe0\x8f\xfa\x62\xa9\x54\x96\x4a\x7b\x3a\x9c\x59\x0f\x80\xb3\xff\x27\x43\x69\xfd\x1e\x4a\x47\xb6\x38\x4a\xe8\x18\x9f\xc6\x53\xc7\xc8\x9c\x99\xe8\xe8\xf2\x3f\x57\xea\x47\x0d\x48\x90\x37\xe7\x44\xcf\xa7\x22\x75\x38\x07\x16\xe1\x34\x86\xe8\xd5\x10\xbd\xf0\xec\xec\x06\x8f\xdb\xd6\xf2\x3f\xc5\x91\x8a\x2e\x1f\xed\xd2\xd5\x4e\x55\xec\x49\x4c\xad\x4f\xf7\xb0\x7b\x3e\x9e\x5d\xf6\x09\xf2\x36\x58\x9d\x8c\x19\xfd\x5d\xc4\x18\xc9\x06\x33\xfd\x7f\x11\x8d\xb9\xb0\xda\xde\x6d\xbb\xcd\x42\xb3\x3e\x01\xb9\xb0\x5a\x68\x51\x29\x4b\x38\xa1\xe8\x04\x02\x7e\x00\xb2\x43\x63\xf3\x97\x99\xd3\x6d\x34\x20\xbd\x81\x75\x94\x67\x86\x87\x7e\x9f\xb5\x32\x66\x79\xf3\xaa\x8a\xc4\x09\x10\xc1\x43\x25\x9f\x94\x56\xa6\x52\x1c\xcd\x2e\xe2\xfa\x2a\xb2\x30\xc9\x04\xbb\x35\x98\xf1\x8f\xcc\x48\x3b\x77\xc0\x27\x92\x84\x8a\xb3\x16\xea\x90\xa4\xf3\x57\xb0\xe9\x48\x62\xdb\xc8\xa8\x59\x15\x12\x88\x3a\xf3\x96\x67\xa9\x1f\xad\x6b\x2c\x54\x5c\x23\xe3\xb3\x1d\x1e\xd8\xfe\xcc\xa5\xbd\xf2\x33\x00\xfe\x95\x94\x2a\x18\x18\x86\x04\x38\xf1\x62\x5f\x93\x43\x5e\xec\x93\xee\x11\xfc\x18\xad\x38\x0d\xd5\xe1\xcd\x54\x70\x10\xb3\xb4\x91\x5b\x54\xd4\x72\xdc\x2a\x1a\x1b\xa3\xd7\x2c\xdf\xa7\x6c\x8d\xbc\x0f\xd8\x7f\xb1\xc6\xd7\x19\xf9\x9e\xd1\x6b\x75\x0a\xae\x0f\x2f\xe8\xfa\xf0\x42\x7e\xc4\xd7\xe4\x07\xa0\xfc\xc5\xc0\x6b\x58\x28\xe4\x4e\x66\xa1\xc7\x99\x8f\xe7\x53\x7c\x4d\x7e\xbc\xc0\x4a\xcc\x5f\x60\xcd\x41\xfc\x75\x98\xc5\x9b\xce\x7c\x4c\x55\x4e\x95\xe9\x6f\x8c\x9e\x5a\x34\x61\x75\x78\xe2\x3e\x3b\x64\x41\x96\x8b\xe3\xdb\x4a\xe1\x8c\xb2\x88\x5e\x59\x0b\xb6\x85\xd5\x90\x77\x8c\x9e\x72\x5e\x55\xbc\x7c\x27\x06\xb1\x4b\x1c\x01\xeb\x82\x44\xfb\x49\xa2\x56\xeb\x53\x08\x73\xf4\x9e\x51\xcf\x92\xa7\xa1\x45\xac\x1f\x2c\x62\x7d\x57\xfc\x6a\x11\x6b\x7b\xb0\xfc\xee\xd4\xf8\x7b\xa7\x0f\xa8\xc2\xab\x69\xde\x45\x85\x56\x91\xde\x6b\x5e\x57\x68\x21\x90\xcf\xdf\xf7\x7b\x2d\x53\x9f\x6a\x8f\x4c\x4b\x71\x42\x04\x84\xd3\xf7\xec\x5c\xeb\x01\x08\xa8\xf7\xcc\xe3\xfe\x34\x24\xc3\x16\xb4\x32\x4e\x27\x13\xf9\xc7\xb9\x1e\x24\x68\x20\x82\xbc\x69\x01\x74\xb3\x6a\x22\xbd\x49\x40\xd1\x27\xa2\xcc\x4b\x7c\x7d\x14\xd9\x36\x04\x96\x30\x0c\xa7\xac\x22\x8f\x5a\x81\x8c\x74\x8a\x65\x82\x39\x09\x5c\x28\x51\xd7\x9d\x8c\x45\x7a\x03\x1f\x6c\x11\x4c\x80\xc0\x18\x7c\xb0\xed\xbf\x83\x6b\xbe\x8f\xb5\x4a\xbe\x64\xff\x1f\x73\x5f\xdf\xe4\xb6\x8d\xe6\xf9\xff\x7e\x8a\x16\xd6\xc7\x22\x2c\xb4\x5a\x72\xbc\x57\x7b\xd4\xc0\xbc\x4c\x5e\x26\x99\xb1\x93\xcc\xd8\x99\x38\x61\x73\x5d\x00\x09\x4a\xec\x96\x44\x99\x94\xba\xdb\x69\xea\xbb\x5f\xe1\x79\x00\x10\xa4\xd8\xce\xee\xd6\x55\xdd\xfd\xd1\x2d\x12\x04\x41\xbc\xe3\x79\xfd\x3d\x61\xde\xf9\xc7\x51\x4a\xa3\x50\x71\xfd\x1e\x0b\xb3\x20\xf0\xbf\x3b\x51\x1e\x5e\xee\xa0\x14\x15\x67\x46\xca\x94\x7b\x22\x26\x4a\x71\x39\xac\x00\x00\xec\x89\x2e\x91\xde\x57\xce\x1a\x40\x46\x52\x47\x7a\x40\xc6\xa6\x9b\x48\x84\x65\x75\x82\x3a\xcf\x8e\xf5\x17\xd1\x47\xcc\xf8\xc9\x68\x67\x64\x67\x79\x15\xbf\x11\x07\x60\xc4\xc2\x39\xcb\x93\x45\x7a\x19\x66\x80\x9c\x33\x0d\x73\x44\xee\xdd\x3f\x10\x1a\xc9\xae\xcc\xf7\xc2\xf7\x4b\xb3\x33\xa3\xe0\x19\x20\x56\xc6\x04\xb7\x43\x12\x59\xd2\x92\xd0\xf8\x65\x44\x60\xd3\x47\x86\x65\x01\x11\xab\xe7\xcb\x97\x00\x90\xc6\x5f\x50\xb3\x95\x1a\x23\xc5\x70\x35\x75\x01\x3c\xb2\xe9\x3b\xc0\xdf\x9d\x33\x45\x29\xcb\xe3\xd0\x15\x6a\xf3\x5e\x76\xc1\x3e\xcc\xf6\x4b\x7a\xef\xd8\xb2\x27\xe7\xf9\x4d\x45\x21\xfb\x94\x00\x1f\x4a\xcc\x6b\x34\xf2\x6b\x31\x56\x72\x97\x38\x39\xab\xf5\x67\x4b\xb6\x1d\xbf\xea\x7a\xf4\xd7\xc1\x28\xe9\x9c\xdc\xef\x31\xe1\x8b\x5c\x22\xd1\x3f\x45\x0a\x6e\x19\x55\x8f\x4a\x0f\x02\xd2\xd1\x51\xbd\x90\x28\x2e\x0b\x61\x93\x05\x2b\x80\x7f\x9b\xbf\xe2\xaa\x6d\x0d\x09\x0c\x9b\x8f\xe2\x7f\xc5\x4a\x15\x94\x85\xf3\x57\xde\x53\x20\x8f\xec\x36\xef\x73\xbd\xca\xa9\x60\xd4\x32\xd7\xd4\x7a\xe8\xd5\xc7\x52\xea\x21\x6d\x5b\x05\x2a\xe2\xae\x00\xc5\x3d\x12\x40\xd1\xb6\x75\xb1\x27\xd5\xd4\x4e\xb6\xb6\x0d\x57\x63\x53\x8b\xe5\xac\xa0\xc0\xec\xfa\x56\xa0\x4d\x63\x50\xbc\x2c\xf7\xd5\xe7\x5e\xdd\x0e\x6b\xd9\x58\x68\x2b\x31\x99\x9d\x9c\xd8\xc4\xd2\x24\x0b\x12\x65\xa7\xd3\xe9\xc4\xb2\xa6\xf9\xe1\xb8\x95\xaa\x8e\x1e\xb3\x6a\x73\xdc\xee\x00\x8a\x10\x82\x1b\x94\x9b\xcd\x8f\xe6\x5b\xfa\x76\xa3\x1e\xfe\x52\x57\xf7\xf6\xfa\x2d\x08\x51\x31\x0a\x82\x3b\x17\x26\x73\xb6\x29\x77\xea\x3b\x77\x57\x75\x05\x20\x45\x01\x17\xfb\xb5\xd8\x35\xfa\xf2\xbe\xcc\xab\x7b\xb8\xfa\xfd\xfb\x5d\xae\x1e\xe0\xaa\xaa\xb6\x80\x28\x95\x35\x80\x30\xd2\x44\x8f\xc8\x7c\x92\xa8\x63\x28\x63\x62\xaf\x48\x44\xa0\xdb\xf1\xe6\xc4\xe0\x66\xc4\x54\x12\xbd\x10\xbf\x18\x98\x96\xfe\xfb\xe0\x5e\x58\xce\xd7\xb3\xaa\x1c\xc6\x46\x2c\x9d\x64\x05\x4e\x1e\x98\x85\x50\xd1\x64\x9d\x02\x82\x80\x77\xcf\x7f\x16\x61\xc9\xd6\x14\xad\xda\xed\x20\x26\x32\x05\xb9\x96\xbd\x5d\xa7\x9d\xf8\xc2\x49\x1c\xf4\x7c\x5f\xa9\x03\x29\xe1\xd2\x61\x35\x85\x8a\xaf\x40\x8b\x21\xf4\x5c\xcf\x29\x8d\x55\x54\x26\x12\xb0\x9b\x9d\x83\x4a\xe6\x05\xb6\x84\x10\x96\x8a\xff\xdd\x6c\x93\x19\x45\x6f\xc4\x50\x25\x8b\x74\xba\xa0\xcf\x55\xf2\x22\x9d\x7a\xb3\xd5\xae\x2a\x49\xa9\x66\x03\x76\x30\x3b\x08\x86\xe4\x98\x80\x76\xc0\xec\x53\xf6\xd1\x04\xd0\xc3\xe0\x35\x9c\x4a\xd8\x0f\xd9\x94\xc3\x3e\x7b\xce\xa1\xeb\x1d\x1e\x0f\xa3\x39\xc8\x5e\x1d\xd6\x73\xc7\xa1\x13\xda\xb6\xa1\x6e\x16\x27\xe5\x6e\xad\xea\x52\xaf\x8b\x49\xa8\xfb\xa4\x19\xf4\x89\xde\xa2\x33\x80\x21\x3f\x80\x57\x72\xae\x0f\x2c\x40\x16\x83\xf7\x6d\x68\xd8\x1b\xfa\x68\xe6\xfb\x53\x00\x55\xa3\xa3\xed\x1c\x2e\xfe\x78\x9c\xcd\xac\xf8\xcf\x8c\x76\x7f\x6c\xc3\xa2\x1b\xd2\x39\xcb\x7c\x61\x16\x86\x1f\x35\xfb\x56\x4e\x41\x4d\x53\x6f\xc5\xc6\x8c\x2b\x50\x3b\x6f\x05\x64\x7a\x0b\x31\x69\x91\x84\xc8\xda\x36\x8b\xc3\xde\x26\x54\x18\xa7\xd3\x39\x9a\x4f\xff\x70\xdc\xaa\xba\xcc\x42\x45\x63\xd5\xb6\xf3\x08\x3c\x78\x3a\xcd\x60\x42\x90\x89\x26\xcc\xec\xd9\xe9\x99\x06\xcf\x6b\x1e\x1f\xee\x45\xbe\xbb\x70\x16\xff\x68\x76\xd3\xf3\x10\x56\x34\x08\x10\x0f\xca\x3b\x0b\x62\x24\xef\x43\xc1\xfe\x21\xd8\xb9\x78\xe2\x57\xdb\x17\x27\x1a\xb9\x6b\x07\x35\xd0\x8c\xd4\x03\xd1\xc7\xf2\x20\x80\x33\xc5\x0e\xe8\x2f\x18\xb2\x2e\x8f\xcd\x76\x9c\xb3\xff\xc6\x51\xa3\x28\x53\x34\x9a\x53\x03\x58\x63\x76\x3b\x3b\x39\xa0\x7b\x9c\x7c\x6c\x64\xbf\x36\x55\xf9\xc1\xf4\x8f\x26\xa2\xfa\x42\xd2\x78\x20\x33\x35\x68\x8a\x66\xa6\x99\x5b\x0a\xca\xdf\x78\x36\x5f\x3c\xf7\xc6\x1b\xd9\x83\xd9\xb3\x05\x9d\x12\x12\x49\xd8\xf2\x09\x39\xeb\x21\x77\x5e\xd8\xd9\x9b\x0f\xe4\xb4\x00\x11\xd0\xcd\x17\x49\x63\x02\xec\x4e\xe8\xe4\x7e\xd3\xc5\x7c\xfe\x5c\x6a\xd6\x23\x22\x84\x15\x28\x40\xc4\xaa\xb5\x6d\xe6\xae\x08\x59\x66\x26\x0a\x38\x0b\xe5\x2b\xbe\x30\xf2\x34\x49\x35\x81\x88\x16\xe7\x75\xb9\x0d\x3b\x23\xee\x37\xa8\xc6\x0e\x82\x6c\x68\xcb\x09\x71\xc5\xcf\x7c\x9e\xf0\x4b\x96\x8c\x96\x10\xa2\x60\x92\x77\xbd\x14\xda\xca\xf0\x37\x9d\x9d\x75\xef\x73\x8a\x46\xc5\x94\x5c\x90\xa9\x32\x91\x06\xdd\x28\xfa\x62\x80\xd7\x22\xbc\x9d\x8d\x08\xd3\xd8\xe8\xe8\xca\x6e\x42\x3f\x3a\x4e\x0b\x83\xa8\x5f\x5a\x86\xeb\xaf\x82\x25\xc2\xd2\x75\x18\x28\xae\x0b\x50\xd9\xa9\xeb\x0d\x7b\x4e\x08\xb3\x6c\x39\x21\xcc\xb0\xea\x86\x24\x3b\xd7\xb4\xbb\x75\x2a\xa6\x7a\xa5\xa2\x79\x70\xe4\x1b\x92\x38\x4b\x62\xd0\xbb\x3f\x9e\xf4\xb6\x7f\x16\xbd\x3b\xce\x3c\x58\xcf\x28\xc9\xd2\xe5\x4b\xe3\x4a\xa5\x12\x31\x7d\x97\xe4\xa9\x2e\xbe\x48\xf2\xb4\x6d\x8b\x24\xbf\x7c\x01\xbf\x73\x8f\x5d\x3e\xb1\xbf\x78\x86\x55\xe1\xa0\x66\x7a\xff\xe6\xbf\x08\x3a\x34\xc6\x1d\x6e\xd8\x4f\xdb\x9e\x0d\x74\x20\xba\x21\x9a\x24\x87\x70\xcc\x5d\x68\x64\x6c\x6e\x6e\x08\x4c\x2f\x98\xb1\x32\xac\x4d\x91\xc8\x64\x95\xa6\x6e\xc9\xeb\x3b\x3c\x6a\x6d\x53\x8a\x53\xcf\xec\x17\xc2\xb8\x7b\x3a\x28\x06\xf6\x1b\xf6\x10\x3d\x31\x9d\x74\x1e\xa8\x95\x9e\x58\xb3\xae\xee\x47\x04\xb0\xff\x34\xd6\xaa\x60\xa9\xb4\x2e\xf3\x31\x51\xb0\xc9\x43\x4f\xec\x50\xad\x56\x9b\xb1\x18\x8e\x44\x56\xd5\x46\x89\x9d\x1f\x55\xd6\xc4\x95\xd5\x1f\x0e\x8d\x75\xb2\xfe\x80\xbd\x1e\x22\x06\xfc\x8c\x1f\x89\xb7\xf8\x6b\xdf\xb3\xb7\xf8\x2a\x04\xe5\xec\xb8\xfd\xdf\x7a\xac\xd4\xbf\x58\xa1\xb2\xba\xbf\xf8\x4d\x74\x78\x7a\xb3\x72\x57\x1e\xbc\x8c\xa7\xed\xec\xdd\xbd\x52\x3b\xfe\x9b\x60\x7e\x3e\xfe\x98\x55\xbb\xe6\x50\x1f\x21\x52\xcf\x6f\x82\xe9\xf7\x46\xc0\x44\x58\x61\xac\x60\x31\xb4\x91\xc1\xd4\xa9\xab\x3d\xcf\x2c\xb8\x42\x53\xee\x56\x9a\x25\x20\xcd\x3d\x6c\xdf\x08\xeb\x80\xf6\x95\x5c\x5a\x60\x37\x51\x1f\xac\x0d\xf1\x3d\x5e\x64\x00\x13\x8a\x85\xec\x72\x9e\xe3\xe5\x71\x57\x1e\x00\x34\xd5\xa7\x7b\xb2\x34\xd6\xbc\xab\xa6\x7a\x4e\x2c\x3b\xd6\xe7\xf6\x74\xd8\xb6\x3d\x4e\x7b\x57\xc9\x0e\x63\x59\x1f\x00\x2b\x75\x40\x87\x55\x63\x44\xee\xbf\xd3\x41\xfa\xbb\xe7\x27\x56\x1f\x77\xe7\x18\x40\x2c\xfb\xa3\x8f\xf9\x1d\x30\xcb\x8f\x35\x60\xd9\x19\x28\xe9\xaa\xe1\x9a\xe2\xc1\x5e\x4b\xbc\x1e\x4c\xad\xf9\xf0\xf0\xc5\xe7\x82\xcd\xd9\x62\xfc\x99\x45\xa1\x86\x52\xad\xf9\x71\x75\xcf\x43\xdb\xab\x97\x5d\xef\xd3\xe7\x72\xda\xdd\xf5\xcb\x6b\x0e\x6a\x6f\x4c\x1c\xfd\xa4\xce\xd4\x0b\xb1\xe0\x6d\xf9\xd6\x56\x0d\x34\x10\xea\x10\xc3\xff\xcf\x76\xaa\x7b\xce\xd0\x52\x8a\x9d\xcd\x59\x6f\x6a\xfa\xcf\x98\x5f\x1e\x7f\x74\x7e\xf0\x83\x43\xdf\x8c\xcd\x10\xdb\x58\xd7\x3a\xc1\x02\xc0\x11\x59\xdf\x5b\xc9\x8a\xb1\x46\xf1\xd2\x6c\xce\xd8\x32\x1f\xa1\x30\x41\xbe\x20\x5d\x9f\x99\x4c\x06\x01\x6a\x3f\x35\x81\x1d\xcb\x68\x4e\xa3\xfe\x67\x86\x84\x00\xd8\x64\x3d\x40\x77\xba\xf2\xcf\x52\x42\x61\x8b\x71\x72\x9f\x91\xea\x79\x84\xb1\x79\xaf\x4f\xff\x9a\x44\xda\xed\x99\xbd\xea\x6b\x76\xec\x7e\x2a\x60\x85\x0d\x6b\x0d\xbc\xda\xfd\xc9\x0d\x8c\x19\x3f\x87\xa1\xcc\x47\x92\x5f\xab\x02\x31\x02\x07\x98\x76\x50\x63\x9f\xf3\x83\x84\x9e\x35\xfa\xd8\xc7\x2d\xd6\x23\x6c\x27\x8f\xfa\x14\x17\xf5\x68\x9c\xf7\x13\x83\x8d\x66\xe4\xd9\xec\xdf\x2e\x41\x40\x95\x55\x4d\x28\x9e\xc3\xe5\x4f\xdf\xd3\xab\x17\x50\x72\xf1\xc0\xcf\x26\x1d\x73\x23\xc1\x1f\x51\xea\xfc\x4c\xb0\x0f\x82\x09\x89\xd1\xfa\xf0\x0c\x68\xf5\xf6\xdc\xea\x4d\x99\x3e\xbb\x62\x52\x0e\xa4\xc4\x71\x64\x04\xc5\x2d\xb5\x42\x65\x34\x4d\xe9\x24\xcb\x99\xe4\x57\x5d\xb0\xdc\x67\x57\x2c\x97\x3c\x29\x65\xca\x94\xe4\x8f\xe4\x39\x89\x92\xa7\x70\x61\xac\xc7\x8a\xde\xc3\xbb\x10\xd9\xb8\x75\x2a\x2e\xa5\x15\xd1\x19\xdb\x80\xe4\x8b\x74\xb0\x75\x8a\x6e\xeb\x64\x2b\x3e\x78\x84\x12\xbb\x09\xb0\x3c\xd3\x9c\x06\x81\x2d\x10\xa7\x7f\x66\xe6\x0f\xa5\x6c\xcd\x17\xac\xe4\x2f\xe0\xd4\x5f\x05\xc1\x2a\xf9\x22\xd5\xaf\xd1\xc7\x42\x6f\xd6\xfa\x96\x29\x7d\x08\x80\xb0\x77\x9a\xb7\xed\x62\x99\x57\x17\xe0\xb1\x48\x66\xff\x46\xd8\xea\x8a\xaf\x99\x9d\x97\xb6\x5c\xb6\x9a\x16\xd6\xbe\x7f\xad\x59\xf0\xb5\x6d\xdb\x95\xae\xcc\x62\x02\xea\xd2\xcb\xcb\xb2\x0b\xec\x0e\x16\x14\x99\x39\x4f\xa6\xab\xb6\xd5\xdf\x9a\xb3\xcc\x9c\x1b\x2c\x83\xb3\x44\xb3\xe0\xf1\x6a\xda\x63\xc5\xa3\xa9\xfe\x4f\x59\x76\x4a\x3d\xeb\xc3\x42\x76\x67\x7f\xa3\x0e\xef\xca\xad\xaa\x8e\x07\xff\xac\x7e\x66\xa3\x22\x9f\x28\x7b\x26\xb8\x41\xbd\xed\x04\x72\x2b\xd9\x8f\xd5\xfc\x68\xb4\xa4\xe2\x04\x0e\x1c\x10\xe7\x12\x05\x99\xcb\x97\xaf\xd4\x52\x4d\xf9\x8b\x4b\x49\x33\xfe\x2e\x51\x29\xcb\x13\x2b\x73\x9c\x66\x29\xcf\x93\x4e\x7a\x98\xa5\x5c\x38\x1e\x19\x8c\x5b\x2d\x5f\x90\x1b\xa5\x98\xa0\xcc\x93\xbe\xaf\xa5\x25\xd4\x3c\xff\x35\x1e\x2a\x09\x5c\x72\x92\x52\x1b\xc0\x40\xc9\x84\x3c\x27\xa9\x9e\x31\x73\xb6\xe2\x36\xde\xc3\x72\x65\x42\x50\x94\x45\xa8\x3b\xb0\x48\x71\xf7\xcf\x34\x91\xe5\xa4\x75\xde\x07\x4b\xf9\x84\xcb\xb4\x71\x95\x35\xf6\xdb\x8f\x27\xb6\x77\x3c\xd0\xc7\x9e\x4c\xe8\x67\x4d\x28\x7a\x31\x23\x19\x29\x1e\xf4\x52\x23\x74\x99\x61\x8c\x6c\x08\x85\x34\x0c\xfd\x0e\x01\xec\x8d\x69\xcd\x7a\x76\xdc\xc1\xc3\x3c\x08\xc2\xee\x06\x3c\xf6\xd6\x5e\x50\x76\xe6\xdf\xf8\x66\x89\xdd\x3b\x6d\x5b\x6a\x9a\x8b\x75\x29\xd3\x29\xdb\xcd\xc4\xe6\x5e\x7c\x6a\xfc\x09\x31\x96\xd6\xbd\x74\x79\xc9\xba\x88\xf6\x50\x55\x67\x69\xbf\xee\x47\x89\x07\x58\xc6\xa1\x0b\x4c\x68\xe5\x03\xe5\xee\x42\xb6\xad\x11\x12\x80\xba\x0c\x78\xb3\xea\x4e\xd5\xc5\xa6\xba\xe7\xc9\xde\x5d\xb3\xee\xf2\xbd\x77\xfd\x6b\x8a\xae\x8a\x03\xd1\x00\xdb\x70\x17\xfb\xfa\x26\xf6\x3a\xdf\x57\xb6\xb4\xed\xb7\x22\xec\xfc\xd5\x69\x74\xc3\x0c\x6b\xa5\x5f\xdb\x58\x9d\x84\xcf\xc0\xa3\x28\x91\x82\x28\x17\xb3\x82\x11\xe8\x0f\x4a\xe5\xcd\x6b\xf1\xa9\x3a\x1e\x20\x14\x3b\x94\x31\xe1\xbc\x5f\x7e\xbc\x37\x1c\x6c\xb4\xef\xf4\x36\x3d\x5e\x0e\xdc\x91\x6c\xd3\x20\x08\x9a\xeb\x0a\xa7\x6f\x3b\xb7\x40\x0d\x69\xdb\x8e\x8d\x97\xf7\x76\x57\x6a\x32\x4f\xfd\xae\xf4\x9f\x2c\xfc\x27\xbf\xfa\x4f\x5e\xa4\x27\xea\xc1\x47\x80\xcf\xbb\xe2\x80\xe3\x21\xcc\x66\xaa\xd0\x8d\xd3\x06\xd3\xd5\x8f\x60\xd7\x24\x78\xbc\xe8\x5e\x54\x4c\x71\xce\xc3\x8f\xb1\x6e\x8b\x22\x11\xc1\x75\x00\xef\xe1\xf5\x84\xeb\xed\x75\x52\x7b\x68\xdf\x75\x92\xa7\x34\xab\x76\x87\x72\x77\x54\xcb\x8f\x7c\x32\x3f\x55\x49\x9e\xf2\x3a\x08\x6a\x60\x17\x3b\xde\x29\x37\x71\xf7\x6e\x78\xe7\xe3\x33\x0c\xac\x57\x51\xea\x8d\x71\xe8\x4d\x92\xe1\x5c\xc0\x20\x74\x76\x9c\x6e\xd0\x5b\xfd\xb1\x8e\xed\x40\x94\xbb\x8b\x1a\x62\xd2\xd5\x33\x4c\xa1\xd1\xd8\x32\x67\x8f\x27\xf0\x36\x08\x6d\x36\x3e\xf9\x48\xd9\xc7\x78\x1b\x0a\xc7\x12\xed\x66\x79\xb5\x53\x3d\xb4\x35\xfd\xd4\x72\x48\xec\xfc\x39\x12\x82\x67\x01\x01\xdd\xd6\x62\x03\x0f\x5f\x54\xd4\xe7\x2d\xab\x44\xa6\xf4\xe4\x8d\x64\x45\x57\x7c\x2d\xc3\x8f\xb1\xee\xcb\x68\xce\x72\xb6\xa3\x0c\x9e\xd4\x6d\x1b\xea\x44\xbe\x32\xb4\xf4\x47\x40\x35\xd1\x07\x8f\x4d\x31\xbf\x9e\x62\x26\x6f\x5b\xbb\xb4\xf5\x9d\x3e\x0f\x7a\x78\x27\x37\x72\x24\x9c\x51\x07\xbb\x22\x70\x5f\xf6\x65\xa8\x19\x50\x00\x38\x9b\x44\x92\xa5\xac\xe3\xc6\x0b\xd4\xbc\x40\x04\x59\x7c\xc8\x8b\x64\xae\x0f\x3f\x13\x26\x1e\x40\xee\x0b\x1b\x98\x51\x67\x18\x88\x56\x73\x94\xa5\xa2\x50\x03\xc4\xa9\xfa\xa8\x5f\x19\x27\xe8\xb0\xa0\xdd\xbb\x79\xda\x55\xb3\xa0\x58\xdb\xb6\x0d\x5d\x9c\x1b\x26\xf5\x95\x32\x33\x50\x57\x98\xab\xae\xdd\xb7\xe7\xc7\x08\x9c\x4b\xb9\x95\x1f\x80\xe4\xf8\x6b\x55\xa8\xba\x56\x79\x48\x47\x16\xb3\xa9\x49\x09\x54\xc5\x09\xe2\x73\xf6\xec\xce\x15\xb5\xa1\x91\x97\xf6\x6c\x94\xfc\x99\x68\x5b\x7d\xf8\xb3\x8c\x7b\x4a\xcd\x1b\x1c\x37\x4d\x06\x4c\x6f\x1c\x9b\x75\x89\x64\xd7\x55\x97\xa2\x69\x8e\x82\x2f\x2e\x73\x50\x6d\x97\xfc\x66\x76\xd0\x14\x5a\xe7\x88\x67\x64\x1e\x36\x3d\x59\xa5\xb3\xfa\xb8\x0b\x3b\x14\x8b\xf5\x6c\x57\x1d\xca\xe2\xd3\x2f\xe5\x61\x1d\x0a\x96\xdc\xb0\x82\xe9\x51\x58\xbc\x2a\x82\xa0\x8c\xb3\x28\x5c\xcf\x6a\xd5\x54\x9b\x3b\xe5\xb2\xa4\x00\xe3\x7b\x62\x37\x7c\xad\x09\xd9\x6d\xd9\x28\x13\x6f\x49\x98\xd0\x3d\x3e\xa8\x8e\xa4\xac\xda\x1f\xbc\xb4\xc9\x9c\x3d\x1a\xb7\xf4\x6f\x80\xcc\x8e\x1e\x4f\x27\x96\x51\x17\x12\xc2\xd8\x0e\x97\xaa\x89\xa4\x4b\xfc\x11\x19\xc2\x28\x63\xae\x6b\x22\xd7\x79\xb6\x3f\xa2\xcc\x75\x0d\xc3\x16\x47\x49\xca\x3c\xda\xb5\x17\x7c\xd3\xea\x2e\x8d\x6c\x22\x14\xec\x46\xf3\x9d\x0d\x08\x1d\xf0\x72\xd6\xab\x28\xd0\x30\xe6\x01\x72\x08\xae\x1f\x5d\xcf\x1b\xdc\x2d\x96\x23\xd4\x7d\xe4\xdb\x74\x23\x3d\x3d\x67\x39\x97\xf1\x60\xa8\x22\xd8\x0b\x55\x0f\x45\x14\x43\x73\x4d\xe6\xce\xa5\xd0\x0d\x63\x86\xc3\xb8\xf0\xf0\xa2\xce\x87\x89\xc9\x94\x46\x3a\x59\x6f\xab\xbd\x54\x66\xfd\x84\x6e\xf9\x0d\xc6\x8e\x82\x6f\xdd\xc8\xf0\x76\xb4\xdd\xb4\x4f\x95\xe5\xd2\x91\x65\x37\x4c\x30\xfb\x4e\x47\x9d\x2d\x9d\xaf\xe9\x56\xec\xc3\x5b\xb6\x96\xec\x86\xb2\x9e\xd7\x9c\xfd\x0c\x88\x04\x82\xc0\xbf\xb5\xc1\x5d\xe1\x95\xe2\x01\x62\x3d\xd4\xa1\x9b\x3e\x25\xb3\x73\x4d\xec\xca\x6d\x74\xc3\x80\xca\x89\x4c\x09\x70\x73\x82\x18\xc8\x16\x97\xd1\x7e\xcb\xde\x53\xdc\xab\x4d\xaa\xbe\xb6\x8d\xce\xaa\xed\x5e\xaf\x61\x3a\x2b\x44\xb9\xb1\x39\xf4\xb5\x5b\xef\x26\x0d\xef\xe8\x69\x3b\xfb\x72\x57\x6e\x61\xc2\x75\x48\x52\xb7\x92\x3d\xc2\x40\x9d\x01\x6d\xf6\xba\x40\x50\xcd\xe1\x0b\x26\x38\x52\xc2\x91\xe0\xc2\x93\xc1\x2e\x87\x0e\x53\x62\x88\x71\x85\xa0\x5e\x4c\xe1\xc6\x26\xc1\xd5\x34\x31\xf7\xb3\xe3\x0e\x03\xaf\x4a\x74\xd0\x1f\x8d\xd3\x24\xe3\x5c\xba\x8c\x82\x46\xb9\xc4\xe9\x2b\x8c\x74\xbc\xd9\x2b\x95\x8f\x5b\xa1\x73\x11\x04\xe7\xb8\xaa\xb1\xbf\xf0\x05\x8d\x1e\x6d\x8f\x46\x59\xdb\x4e\xb2\x20\x90\xa8\x9d\xf2\xfa\x20\x08\x44\xb7\x7c\x05\xc3\x65\x15\x61\x56\x69\xe2\x54\x7e\xdb\xad\xa1\x20\x90\x27\x67\x07\xe2\x16\x3b\x87\x89\x52\x15\x45\x3c\x8f\xac\xda\xd2\xd5\xaa\xcb\x16\x77\x97\x51\x77\xa9\x4f\x0a\x64\xc0\x75\x73\x9b\xd8\xbb\x4e\xba\x5c\x69\xe4\xa5\x77\x18\x35\x06\x6f\x38\xb7\x8c\x82\xb9\x00\x4d\x1c\x3a\x03\xe2\x3d\x72\x0b\xf9\xac\xda\xe4\x3c\x77\x13\x8d\x75\x97\xbc\x87\xe4\xea\xb5\x19\xde\xa1\x41\x00\xbf\x9d\x28\x4c\x17\x06\x45\x07\xc1\x76\x96\x2b\x24\xf5\x81\xd9\x31\xe9\xf4\xa4\xf7\xa0\x9e\xac\xbd\x10\xb9\x7a\x57\xfd\x01\xf2\xaf\x81\x00\xf8\x99\x02\x45\xed\x2c\x0c\xd8\xdc\x12\x43\x9a\xc2\xd0\x07\x20\x4c\x7c\x15\x3a\x83\x05\x79\x62\xa8\x91\x3b\x31\xf3\xec\x33\xa1\x82\xfa\x34\x1f\x38\x88\x9a\xf9\x86\x61\x91\x35\x1d\x30\xa4\xa6\xf8\xad\xc4\x16\xf6\x67\x19\x2b\xe8\x32\x54\x1d\x78\x1d\x82\x8c\x17\xe5\xae\x6c\xd6\xa0\x5e\x92\x10\xd0\x23\x04\x2c\x6f\xab\x7c\x9f\xe1\x73\xbe\x62\xaa\x6d\x8b\x6e\xd0\x16\x71\x27\x29\x5f\x19\xb9\x26\xf6\xad\xc9\xc4\x56\x74\xb8\xb3\xf7\xd6\xc5\x18\x58\xbb\xce\xbe\x74\x21\x15\xf4\x1d\x93\x61\xe6\x6a\x73\xee\xe3\xee\xf0\x84\xf5\xee\x60\x31\x85\x65\x10\x88\x09\xc2\x0a\x7b\xd5\x12\x6d\xab\xe7\x16\x4b\xd2\x27\x60\x86\xb1\x12\x60\x9f\x63\x84\x79\x41\x20\xa6\xa4\xe3\x65\x09\xf4\x3d\xec\xb2\x8d\x07\xce\x07\x93\x0c\x0f\xa5\x55\xa2\xd2\x20\xd0\xff\xa1\xf2\x41\x90\x87\x2b\xc4\x81\xb0\x41\xb4\x11\x0e\xe6\x3c\x63\x26\xad\xa1\x4d\xf7\x12\x1e\x6b\x85\xdb\xcd\x2e\x2f\x97\xb4\xd0\xaf\xe8\x6d\x7d\x82\x10\x1f\x68\xbb\x03\x75\x85\x47\x50\xdb\x09\xe7\x9a\xa2\x83\x04\x3d\xc3\x70\x58\x33\xca\x24\x9f\x2c\x58\x61\x43\x90\x2b\xb6\xa0\x74\x19\x4a\xbd\xe3\xd0\xb3\xd5\x21\x00\xf0\x00\x47\x7f\x54\xae\x37\xb1\xe1\x44\xb9\xe9\xda\xcf\xf5\x2b\x84\x05\xf1\xfa\x4b\xd3\x67\x89\xed\x5d\x92\x32\xe5\xdd\x62\x67\xa7\xfd\xde\xce\xe3\xbc\xa3\x00\x80\x7e\xb5\x33\x73\x32\x77\x1c\xbc\xc1\x6a\xd0\x43\x8c\x31\xe6\xa0\x6f\xf1\xd7\xf3\x06\x9f\xe8\x49\xd2\x75\xac\xc4\x8e\x95\xd8\xb1\x06\x3b\x45\xf7\xa7\x4c\xdd\x7c\x07\xd3\x02\x9d\xd0\xf5\x27\xf8\x5e\xdb\xbe\x94\xd0\x97\x28\x3c\x9a\x2f\x57\xaf\x24\x20\x66\xe4\xe0\x43\xa4\xff\x9b\xca\xf6\x6e\xbc\x3d\xca\x4e\x7a\xdb\xa8\x13\xed\xd9\x20\x18\xc6\x93\x21\x6b\xc9\x90\xe9\x1c\x5a\x22\x20\xd1\x04\x1e\xc5\x32\x5d\x9a\x5f\xff\x50\x02\x45\x54\x5f\xe2\xde\xb6\x63\xda\xb1\xec\x89\x38\x06\x30\xbc\x76\x3b\x5b\xc9\x50\x42\x4f\x62\xc1\xbe\x37\x75\xb3\x29\x73\xf5\x75\x75\xbf\x8b\x56\xd2\xb0\xc3\x94\x41\xe2\xcf\x7b\x48\x82\xfa\x9b\xa4\x77\xa8\xb7\xd3\xc9\xa6\x99\x94\xe9\xfd\xf7\xfb\x5d\x67\xe2\x85\x65\x9c\x20\xfd\xc7\xe3\xc1\x7b\x00\x25\xe1\x03\x53\x50\xf7\xcc\x14\x77\xfa\x63\xa7\xeb\xf3\xcd\xdd\xb6\x52\xda\xad\x1a\x9a\x87\xb3\x91\x27\xa9\x25\xb8\xb2\xdb\xe1\xe6\x2b\x98\xec\xa6\x6d\x66\x04\x8a\x9d\x1c\x72\x99\xb9\x10\xac\x40\xa9\x0a\xae\x89\x10\x26\x42\xda\xb6\xfa\x0a\x97\xae\xb4\xd3\x2a\xbb\xbc\x64\x0b\xba\x94\x4e\x26\x65\x04\xe0\x10\xbe\xba\x93\x74\x7a\xf4\xdf\x20\x80\x03\x56\xc4\x52\x2b\xfa\x3b\x56\x9b\x21\xea\x43\x48\xa3\x2e\x87\x2e\xd2\x14\x04\x21\x96\xee\xc4\x86\x2f\xbe\x60\x5d\x6e\xbf\xa5\x1f\xf4\xfe\xf2\x41\xf0\x46\x1d\xbe\x37\x99\x43\xd7\x25\xfd\x42\xa8\x2d\x55\xd7\xda\x2f\x03\x8c\xa1\xdc\xdb\x1f\x04\x65\x1f\x10\xab\xc5\xe6\x07\x0a\x82\x3f\x36\x9b\xea\x3e\xfa\x9f\xf3\x39\x2b\x44\x73\x88\x5e\xcc\xe7\x1d\xba\xf2\xcb\xf9\xdc\x9c\xdc\xb9\xda\x88\x4f\xe3\x31\xde\x04\x10\x3d\x3d\x6a\x45\xa4\x6d\x2b\x00\x0c\x46\x9a\x53\xc1\x3b\x28\x24\x1b\xe3\x7d\x3c\x61\xb3\x64\x82\x2e\xb3\xf1\xf6\xd8\x3c\x06\x42\xe9\x7c\x72\xa0\x9a\x76\xf9\x19\x4f\xb7\x46\x1d\x3c\x5b\x8e\x6c\x23\x9a\xe6\x07\xb1\xd5\xab\xff\xf0\xff\xc8\x13\xee\xac\xaa\x16\x9a\x87\x19\x87\x81\xa7\x5d\x5c\x0c\x72\x28\xa5\x4c\x3c\xf9\x1d\x03\x53\xa7\xbf\x75\xe6\xe5\x04\x9e\x40\xfb\x07\xc2\x6e\xf5\xcb\x6f\xbd\xae\xe1\xe4\x80\xc1\x58\x5c\x0f\xb1\x5b\x7c\x9b\x5f\x1d\xaa\xfd\x95\x05\xa7\x58\xf5\xba\x13\x32\xe8\xea\xdc\xce\x74\x0f\xfd\x00\x46\x64\xe5\xef\x2a\xe7\xe4\x4a\xa0\xd1\x79\xff\x05\x9d\x0b\x6d\xf7\x74\xa7\xfd\xb8\x83\xc8\xbc\x00\x8c\x0a\x76\x4e\x1d\x0a\xaa\x72\x28\xa8\xec\x76\xa6\x76\x19\x74\xf5\x64\x72\xd6\x23\x18\x9c\xc9\xe6\x60\x99\x0b\x3d\xad\x0f\x32\x28\xf2\x6b\x97\xa0\xdc\x43\x26\xce\x47\xc1\xc2\xfb\x89\xc1\x94\x81\xda\x11\x50\x7f\xde\xce\x20\x13\xfa\xf5\x89\x41\xd3\x30\x9f\x7e\x1f\x01\x5f\xc9\x81\x9c\x95\x05\xf0\xc9\xcc\x04\xc4\xd1\xe5\xc1\xd5\x3f\x6d\x7e\xee\x80\x63\xad\x3f\xf8\x46\xf2\xab\xeb\xfa\x6a\xb5\xec\x11\xd4\x77\x62\x33\xa6\x99\x07\x3c\x71\x1b\x4e\x01\x2c\x53\x87\xb0\x3c\x0e\x43\x74\xc0\x0d\x8d\x91\x1a\x66\xad\xaa\xe5\x19\x24\x1a\x48\xd7\xf2\x58\xf4\x10\x61\xac\xf5\x86\xde\x7d\x28\x8d\x84\x51\x51\xa8\x58\x71\x30\xbc\x1f\x70\x47\x2a\x56\x53\xfd\xa0\x93\xda\x19\x7b\x69\x64\xde\xd5\x18\x1c\x9e\x45\x9e\x22\x24\x12\xe0\xf3\x4c\xe1\x74\xb8\x13\x1b\xcf\x16\xc1\xc4\xd3\x1f\x26\x8f\x83\x24\xa7\xa0\xd1\x36\xa6\x9f\xd2\x33\x87\x95\x4e\x67\xcf\x14\xb3\x43\x6b\x83\x6c\xe3\xf8\x2a\x6a\xb0\x6e\x9c\xf4\xa4\x57\x19\x35\x52\x13\xf5\xd9\x6a\xac\xce\xab\x01\xf8\xce\x2b\x75\x08\xbb\x4a\xd0\x38\x8b\xc2\x8c\x2b\xb3\x6a\x46\x2d\xaa\xac\xe9\xd9\x46\x02\xb0\x95\x89\x4d\xa3\xfb\x2d\xb3\xb8\x84\xde\x54\x72\x06\xe0\xc0\xa0\x8e\x9b\x16\x0c\x91\xc6\x4d\x65\x7c\x8b\x83\x09\x58\x04\x18\x6b\x3b\x03\x57\x08\xa0\xd6\x0c\x57\xf2\x79\xc9\x4e\x1c\xc9\x00\x07\xce\x1a\x5f\x80\xcc\xc1\xae\x7e\xb0\xdf\x06\xcb\x31\x48\xb8\x34\x52\x79\x61\x50\x72\xe6\xaf\x94\xe6\xd8\x62\x5d\x81\x08\xa2\xdf\x17\xb1\x9a\x2e\x22\x4b\xdd\xb2\x92\xcf\x5f\xa9\x78\x1d\x15\xb1\x8a\xe6\xcb\xf5\xab\x72\x59\xa2\x3c\x29\x43\xb0\xc9\x49\x38\xc9\xdc\xc7\x82\xa0\x44\x45\x43\xd8\xdb\x39\xe2\x6e\x57\x89\x0c\xf0\x7a\x36\x58\xfc\xf6\x39\xa1\xb4\x6d\x7b\xc0\x71\xf6\x49\x0f\x8f\xcd\xcf\xc1\x88\x0d\x37\x40\x28\xaa\x3c\x24\xdf\x86\x99\x59\x49\xac\xe8\x9c\x8e\x4c\x8c\x79\xe9\xf4\xc1\xab\x27\xed\x2e\x4d\xcc\x78\xdb\xa3\x05\x2c\xab\x5b\x65\xad\xd5\x7c\xcd\x27\x2a\xa0\x57\xe8\xf1\x94\x73\x95\xac\x40\x96\x6e\xe0\x4b\xbb\xd9\x6b\x0a\x83\xe9\x98\xeb\x7a\xbd\xe2\x73\xb0\x87\xce\x3b\xc0\xea\x8c\x4f\x2c\x72\xd8\x9a\xea\x07\x60\x2a\x81\x76\xfb\x28\x00\xf7\x32\x4f\x16\x3e\x64\xcc\x60\xc8\xf9\xe5\x82\x32\x75\x3a\xf5\x08\x77\xdc\x37\x59\x17\x3e\x2c\x65\x3d\xf1\x45\x6f\xc9\xa7\x43\xeb\x8c\x1e\xfe\x7f\x67\xb9\x17\x3b\xfc\x6e\x0f\xb5\x15\xd4\x2c\x38\x00\x52\x37\xd4\xe1\x74\x74\x47\x17\x58\x1a\xf4\xbf\x08\x1e\xfb\x4f\x6e\x5c\x4f\x9d\x18\x31\xa9\x76\x24\xb2\x1b\x3f\x35\x50\x41\x5b\xc9\x76\x92\x55\x12\xa1\x57\x6b\x58\x79\x18\x46\x87\xed\x8d\x7d\x86\xa9\x76\x6b\x3b\x8e\x3e\xbb\x2a\xd9\x47\xc9\xcf\x0e\x77\x56\xeb\x44\x38\xbb\xfa\x07\x89\x2e\xf4\xb3\x66\x90\x5b\xf8\xee\xd3\xb6\x86\x9d\xb1\xec\x93\x10\x69\xe7\xf1\x82\xba\x97\x3c\xde\xb8\xb7\x2b\x9d\xd5\xab\xaf\x21\xe9\x54\xc6\xcb\xce\xff\xa2\x40\xb7\x8b\x22\x08\x5e\x80\x6d\x86\xad\x83\x17\x5b\xa3\xa3\x76\x38\xff\x5b\xbc\x05\x19\xb4\x35\xad\x04\x34\x50\x00\xff\xea\x41\x98\x87\x92\xcb\x01\x68\xb4\x9e\x27\x30\x1a\xce\x0a\x3f\x34\x63\xb4\x85\x10\xd1\x9a\x05\xb4\x80\x16\xf1\x4e\x46\x5b\xe9\x9b\xde\x67\x71\xde\xed\xf5\xb9\x35\xc4\xe2\xfa\x44\x35\xc6\xfa\x12\x9c\x2f\xe0\x28\xf4\xf7\x5c\x49\xdd\x91\x8a\x85\x45\x8a\xba\xed\x08\x0a\x6d\x5c\xa1\xbe\x5b\x47\xee\x5c\x18\x4c\xc1\x03\xa2\x44\xb2\x6c\xaa\x89\x9b\xcc\x45\x48\xf4\xc6\x07\x6a\xf3\xc4\x30\x9f\xc7\x31\x91\x41\x20\xb1\x13\xc2\x6f\x10\x17\x2d\x08\xfa\x2a\x7e\x13\x65\x29\xe3\x05\xa2\x16\xeb\xbe\xd4\xa3\xf0\x6d\xf9\x00\x72\xe4\x8c\x3d\xd1\x95\x19\x8d\x6b\x19\x04\x1f\x65\xdb\x4e\xf6\xd2\xa5\x81\x26\x6f\xb2\x88\x44\xe2\xeb\x06\x89\xe1\x68\x2e\xc9\x34\xa3\x29\xb7\x99\xb6\xb6\x2b\x33\xa0\xe6\xce\xc3\x5b\x7c\x94\x71\x16\x81\x20\xd1\x0e\x6f\x84\x61\xc4\x47\x76\x12\x84\xf5\xee\xe8\xb7\x20\xe8\x62\x70\x0e\xc3\x9a\x58\xda\xb2\x33\x8a\x87\xb5\xee\xcc\x33\x47\xa9\x44\x09\x26\x86\xa1\x25\x27\x33\xca\xe4\x09\xf7\xc3\x9d\x3c\xdf\xda\xf4\x02\x71\x64\x08\x08\x14\x07\xe3\x98\xd1\x68\xb4\x03\xfb\xdf\x9e\x7c\x84\xba\xf7\x87\x24\xa3\x7f\xd4\xbf\x59\xaa\xc9\xed\xac\x8b\x57\x7c\x3e\x8a\x4d\x75\xac\x33\x65\x66\xc7\xd5\xf5\xfd\xf4\x6a\x45\x47\x45\x2e\x95\x34\x9e\x2d\x6e\xf2\x2f\x21\x89\x9f\x55\x5f\xd2\x7e\xcc\xf4\xce\xe3\xc6\x89\xea\xdb\x36\x2c\xb0\x44\x86\x85\x28\x27\x8f\xcc\xcc\x3b\xf1\x60\x7d\x47\x88\x90\x0d\xb9\x0b\x7d\x06\x3d\xd5\xcf\x99\x5d\x87\x4f\x76\x8e\xa4\xe9\x68\xe9\x7a\x10\x6d\x6b\x42\x6f\x33\x31\x43\xfd\xb9\xc1\x1d\x9d\x57\x50\x91\xb0\x1f\xec\x81\x4b\x1a\x6d\xf5\x60\x4a\xb3\xfe\x75\x29\xfa\xc3\xf8\xd1\x27\xa6\x90\x51\xb2\xf4\x36\x4b\xc0\x4a\xc9\xa8\xd7\xa7\xfd\x49\x03\xcf\x81\x7e\x1b\x09\x6d\xd3\x4d\xad\x0c\xb0\x22\xb1\x85\x52\xd3\xfe\x96\x8a\x44\xc7\x22\x79\x7e\x40\x66\x34\x96\xdd\xc1\x5b\xc9\x59\x99\xf3\x4a\x42\x28\x3e\xfd\x9b\x55\x55\x9d\x37\xe3\x7a\xa2\xe5\x70\x8c\xc2\xd1\x56\x49\x4a\x9d\x1b\x31\x54\x26\x36\xbf\x91\x95\x9c\x38\xea\x07\x23\x2c\x8f\xb9\xdb\xd8\x35\x3d\x52\xba\xab\x06\xd8\x0a\xef\x55\x56\x16\x25\xd0\x93\xf8\x11\xdf\xbd\x08\xc7\xe9\xc4\xfc\xe9\x60\x7c\x37\x55\x5e\x82\x20\x62\x7c\xc8\xdc\x00\xa3\x7b\x4a\x3c\x59\x44\x38\xd4\x1d\xdd\x84\x66\x18\xcc\x5a\x60\x9c\x3b\x5d\xf9\xc7\xd9\xd9\x57\xdc\xe4\x33\x5e\x9e\xe7\x07\x08\xda\x04\x77\x47\xc8\x5c\x6f\x53\xd4\x0a\x10\x06\x73\x1c\x85\x0a\x67\xcc\x40\xb7\x17\xfa\x22\x0b\x6b\xef\x33\x46\xe8\x8e\xbf\xc1\xa5\x66\x0d\x0d\x11\xd5\x18\x4a\x09\x63\xd2\x21\x9d\xd4\xda\xa0\x29\x2d\x0e\x69\x8b\xea\x44\x20\x9e\x0e\x26\xbf\x68\x75\x06\x9d\xd4\xa7\x97\xf4\xbe\xf8\x07\xf4\x12\x1a\x1b\x7f\x9e\x5e\xfa\xa9\x5f\x4c\x4f\xb6\x66\xb7\x5e\x10\xaa\x8d\xab\x00\x34\xd1\x0d\x6c\xbe\x48\x8d\xc8\x92\x79\x00\x52\x89\x48\x0d\x09\x2e\xe9\xe3\x69\x48\x59\x99\xe2\xa3\x47\x52\x54\x35\x89\xc8\xfa\xb0\xdd\x7c\x5b\xd5\x9a\xa8\xde\x88\xa6\x21\x91\x27\x22\x3b\xb1\xb3\xf6\x0e\x0c\x1e\xc7\x29\xb1\x15\x52\x62\x2b\xa4\xc4\x56\x96\x12\x2b\xf8\x02\xa1\xd7\x26\x3d\x1a\x0b\x6c\xa0\xa4\xd7\x72\xbd\xfb\x4b\xf0\x0f\xeb\xdc\x0c\x64\x6a\x49\x28\xa0\x76\x54\x47\xed\x28\x9f\xda\x41\xb9\x51\x47\xed\xe4\x91\x00\x67\xcd\x48\x75\x34\x97\xea\x68\x2e\x9d\xbd\xa3\xb9\x30\x33\x36\xda\x1e\xfe\x42\xa2\x03\xf1\x7f\x8e\x2b\x3e\x08\x09\x4e\xa7\xc4\x33\x90\x00\xdf\xb9\xef\x21\x86\xd2\x62\x4e\xa3\x46\xda\xc0\x42\xce\xa2\xac\x6d\x0f\xe7\x89\x10\xc7\xb4\x56\x45\x3c\x8f\x2e\x17\x27\xe3\x08\xd8\x97\xb1\xb9\xd0\xc4\x09\x8a\xd5\x18\x69\xea\x6c\x64\x71\xfb\xbd\xf8\x99\x75\xb7\xea\xaf\xe9\x97\x9d\xf7\xa1\x93\xca\xc1\x4a\xf6\x0c\xe1\x2d\x27\xf7\x44\xef\x08\x8f\xcb\xf5\x8d\x79\xe5\x80\xbb\xef\x07\x7b\xf2\xef\xfa\x19\x91\x00\xee\xab\x72\xcc\x00\x11\x46\x6a\x25\xf2\x1f\x77\x9b\x4f\x84\x91\xad\x78\x78\x0d\x6b\x4e\x4f\x6b\xb5\xd9\x18\xb8\x11\x73\xf7\x93\x31\x32\x66\xa4\xae\xee\xdf\xee\xc5\x4e\xa7\x57\x1b\x73\x75\x6c\xd4\x1b\xb1\x27\x8c\x00\x2c\xe9\x9f\xd1\x8d\x9e\x59\x37\xfa\x6f\xcc\x56\x3c\xe4\x3c\xed\xdc\x45\x11\x54\x4f\xb6\x03\xb2\x33\xe8\x49\x23\xa4\x74\xbd\xf8\x6d\xf9\xe0\x44\x9b\x44\xed\xb2\x0a\xaa\x85\x3b\xd7\x51\xf2\xab\xe4\xfa\x70\x5d\x5f\xef\xae\x8b\x74\x28\x00\x14\x79\xfe\x95\x5e\xa6\x4f\x49\x01\xbd\xc8\x1d\x3e\xac\xf4\xcd\xb9\x03\x9e\x08\x02\x61\xcd\x21\x3d\x81\xe0\x67\x20\xa2\xf5\x9c\x32\xb2\x3e\x5b\x8d\xd0\x17\x05\x1a\x9f\x27\xb7\x8d\x58\x31\xd9\x0d\x45\x7d\x1e\xa8\x8e\x09\x75\x7c\x42\xdb\x26\xe9\xb2\x7c\xb5\xb6\xc1\x41\x4c\x44\xd8\x75\xca\x72\xbe\xe0\x3e\xd2\x3f\x98\x00\xbb\x72\xe3\x90\x5c\x90\xa9\x97\x30\x25\x17\x1e\x58\xf1\x51\x32\x70\x29\xd4\xff\xe8\x63\xe1\x02\xa6\x28\x2e\x93\x02\x58\x8f\xce\x41\xfc\x82\x4c\xf1\xed\x3f\xcd\x83\x20\xcc\xa7\x1c\xef\x96\x2b\xeb\x3c\x9a\x53\xe6\x7d\x08\xf7\x36\xbf\x2e\x7c\x35\x40\xd0\x37\x00\x43\xff\xad\x31\x02\xd7\xe5\xc1\xe1\xd1\xb6\xff\x77\x47\xce\xab\xdf\xff\xd7\x83\xf7\xc4\xd8\xe1\xed\xd8\x08\xbe\xe2\x73\x9a\xf3\xdc\x95\xe4\x9e\x30\x33\xa2\x10\x4a\x05\xc7\x34\x22\xe4\xbf\x38\xac\xa8\x03\x1d\x0e\xab\xe7\xb3\x62\x86\x66\xf9\x94\xaf\xa4\xf4\xa1\xda\x79\x16\x4b\xb4\xfb\xe8\x16\x12\xf5\x01\xe8\xfb\x69\x86\xb1\xea\x9b\x72\xf9\xe2\x7a\x3b\xb8\x5e\x2d\xc3\xbe\x90\xbe\x3f\xb8\x9a\xc5\x94\xf4\x14\xf5\xed\x45\xfd\xfa\xd9\x09\x8b\x96\x60\xa6\x7c\x10\xc0\xf4\x26\x80\x09\x9d\xcc\x8b\x24\xd7\xa3\xa3\x66\x6b\xd1\xe0\xe7\x25\x8d\x55\xaf\x31\x92\x46\xaa\x6b\xae\x44\xb3\xd8\x30\xe3\x9c\xff\xad\xa7\x3d\xc7\x70\x76\xfd\xfa\x76\x00\x43\x68\x6b\xf3\xe1\x83\x7b\xf4\xe1\x03\x19\xce\xdc\xc1\x3d\xef\xdf\xb6\xad\x40\x36\x19\x74\x10\x4f\x97\x8a\x5e\xf0\x10\xac\xc2\xb4\x69\x5c\x84\xcd\xf5\x44\x13\x30\xd1\xce\x03\x53\x58\x43\x4a\x2f\xe6\x4c\x92\xa5\x3d\xbf\x87\x0b\x32\xb5\xc9\x9f\x5f\x13\x6e\xce\x83\x5c\xd2\xda\xf6\xce\x97\xd6\xc8\xd7\x3b\x1e\x89\xdc\x1c\xeb\x8b\xa2\xca\x8e\x0d\xfe\x2f\x77\xf8\x5b\x1d\x0f\x17\x9b\x4a\xe4\x17\xb5\x6a\xca\xdf\xd5\x05\x8a\x69\x2f\x8e\x3b\x48\xcc\x36\x65\x76\x7b\x91\xcb\x0d\x5e\x6c\xab\x63\xa3\xf2\xea\x7e\x87\x57\xc7\x3d\xfe\xea\x21\xc5\xab\xea\x4e\xd5\xe6\xea\x78\xc0\x0b\xcd\xb4\x98\xb4\x8d\x12\x77\xea\x22\x5b\x8b\xdd\x4a\x5d\x98\x90\xc8\xcd\x51\x6e\xcb\xc3\xc5\xad\xfa\x04\xe5\xde\xaa\x4f\xfb\x5a\x35\x8d\xbe\x38\xee\x2f\x54\x5d\x57\xf5\x05\x1c\xb8\x0f\x87\xad\xda\x1d\x89\x67\x9e\x38\x66\x7c\xd0\xb7\xcb\xe8\x78\xe5\x33\x0a\x7c\x8e\xab\x0d\x54\xd1\x26\x72\x45\x66\x16\x97\x0d\x36\x2e\xe9\x59\xdc\xa6\xb5\x6e\xe0\x67\x02\xa2\x77\x2d\x0e\x05\x9d\x75\x8d\x0e\x65\xdb\x0a\x7a\x62\x9a\x26\x7c\x8a\x9d\x3f\xb8\xa0\xf7\x50\x1f\x60\xdc\xd8\x71\x77\xf6\xca\xe0\x85\xa2\x70\x6f\x40\x8c\x0a\x0c\x66\xff\xc7\xb1\xf5\x9d\xfd\x05\x3b\xee\x9e\x78\xcb\xbd\xb3\x18\x39\x86\x62\xef\xf3\xe4\x39\x44\x1e\xb6\x09\x92\xe9\xa3\xe1\xf9\x73\x82\x62\x06\x20\x62\xee\xa4\x35\xd4\x60\xf7\x92\x5f\x5d\xc7\x57\xec\x41\xf2\xab\x90\xd1\x36\xbc\x4e\xda\x47\xda\x86\xa7\x36\xa5\x2d\x81\x88\xdd\xe4\xfa\x5a\x93\x3b\x69\x7b\x7d\x9d\xe8\xeb\x2b\x59\xec\xea\x83\xbe\x3d\x26\xd7\xb9\xb8\x2c\xbe\xbc\xfc\x36\x7d\x7c\x79\xa2\xcf\xc9\x75\xf3\x3c\x8a\xdb\x43\x7d\x54\x6d\x21\x36\x8d\x02\xb3\xad\xf6\x32\x0e\xe3\xc9\xfc\x3a\xa7\xd7\xf9\x34\x8c\xa3\xeb\xd9\x75\x3e\x6d\xa9\x2e\x5b\x7d\x93\x26\xd3\xcb\x34\x86\x04\x20\xa6\x80\x2c\xff\xeb\xdb\x1f\x7f\xe8\xa1\x5f\x6b\x1e\x66\xa6\x53\x35\xf9\xad\x7f\x31\x9f\xc3\x6c\xf7\xd2\x42\xcd\x67\xba\x58\x1e\x18\xfd\x4b\x59\x7a\x01\x9f\x75\x5e\x7b\x36\x16\xa9\x72\xab\xf9\x41\xf6\x21\x06\xc0\xd5\xbc\x93\x16\x80\xcf\x1b\x9f\x53\x36\x07\x77\x09\x01\x2a\x3f\xcd\x16\xe5\x53\x3e\x29\x2e\x27\x8a\xc1\xae\x44\x63\x77\x16\x10\xf3\x32\x99\x2a\x0a\x96\x28\xb0\x8c\x42\xf2\xfd\xee\x4e\x6c\xca\xfc\x42\xd7\x3c\xba\x20\x53\x09\x06\x24\xd0\x84\xf7\x6f\x5e\xf3\x33\x3b\x71\x86\x11\x0b\x65\x47\x71\x38\xfb\x40\x49\x3d\x7d\x06\x44\x9e\x11\xb3\xaf\x7f\x7c\xf3\x93\x2e\xab\x8e\xc3\x1c\x3c\x43\x5d\x02\x20\xd6\x21\x72\x48\x5d\x6d\xdf\x42\x59\xa1\x64\x10\xb3\xf4\xea\x61\xbb\x21\x94\xea\x56\xe9\x77\xbe\xcc\x0e\xe5\x9d\x7a\x6f\xac\x32\xc9\x9b\x32\xab\xab\xa6\x2a\x0e\x33\xcd\x24\xfe\xf8\x86\x68\xea\x4b\x34\x9f\x76\x19\x27\x30\xdc\xfa\xd8\xd6\x5b\xd5\xfb\x37\xaf\x43\x49\x69\x17\xab\x26\xb3\x26\x3c\xbe\xdc\x65\x00\x8b\x1d\x04\x93\xec\x09\xd3\x09\xa8\x6d\x0d\x1d\xe7\x39\xae\x9d\x75\xe5\xfb\x37\xaf\xb1\x27\x59\x86\x6e\xb3\x9f\x24\xfb\x5d\xb2\x2f\x25\xbf\xfa\xd7\xd9\xf3\x67\x57\xec\xcf\x7a\x92\x27\x71\x90\xd2\x0f\x3c\xf9\x8f\x20\x7d\x7e\xc5\xbe\x02\xc9\xc2\xec\x79\x4c\xa3\xe4\xe2\xfa\x90\x3e\x0f\x93\xff\x80\xd9\xfe\x9c\x5e\xd7\xf1\xb3\xab\xd5\x96\x7d\x6d\x85\x0f\xb2\x3a\x1e\x5a\xb1\xdf\xeb\xbf\xcb\xe6\x50\xd5\x62\xa5\xda\xd9\xf4\x12\x36\xa4\xa6\xac\x76\x6d\x51\x6e\x54\x5b\xab\xa6\xbd\x2f\xf3\x95\x3a\xd0\xe8\xd9\x15\xfb\xc6\xbc\xfe\x97\x6f\xde\xb5\xdf\x7d\xf3\xe5\xd7\xf4\xd9\x15\xfb\x56\xa7\x5d\x5f\x5d\x5f\x5d\xb1\xbf\xc0\xe3\xe4\xfa\x7e\x36\xbd\x4c\xa7\x91\x5e\x16\xfa\x01\xac\xbc\xeb\xab\xf8\x5f\xd3\xe7\xff\xbb\xa5\x21\x5e\x47\xe9\x73\xfd\x3c\x0a\xaf\xf3\x29\x6d\x69\x4b\xaf\xd8\x77\x92\x3f\x9e\xd8\xf7\xf0\xff\xaf\x92\x93\xe7\x57\xc4\xba\x54\x92\xe7\x26\x0e\xd1\xef\x92\x6f\xaa\x0c\xcc\x96\x81\x55\x35\xe3\xf2\x37\x49\xf5\xa3\x33\x83\x0b\x41\x28\xfb\x5d\x42\x4e\x4e\x08\xfb\x5d\x72\x73\x77\xfa\x24\xf9\x5f\x8c\xf7\xd8\xef\x03\xf9\x29\x12\x1c\xce\x7f\xe6\xb5\xf4\x78\xd8\xbe\xa1\xd1\xf9\xf4\x75\xe6\xad\x50\x63\xeb\x24\x0a\x8a\x8b\xfe\x47\x06\xe4\xed\x80\xc6\xce\xa8\xa5\x3f\xad\x16\x83\x4c\xd1\xd6\xc5\xe1\x4d\xea\xc5\x90\x3b\x90\x49\x88\xb5\xce\xd0\xeb\x48\x80\x6b\x5a\x92\x52\x67\x00\x9f\xe9\x75\x30\x78\x06\x7a\xde\xcc\x77\x90\x7a\x23\x87\xc6\xcc\x00\xa8\xa2\x89\x98\xef\x65\xd7\x1f\xab\x70\x8d\xcf\x4b\xb7\xfb\x24\xeb\x14\x8d\x3a\x81\x26\x10\x80\x32\x95\xf4\xa4\x04\xe6\x95\x1b\xbe\x36\x46\xd0\x4f\x19\x08\xdf\xb4\x6d\xd1\xb6\x2a\xb9\x49\xe3\x22\x9e\x84\x25\xbf\xb1\x02\xbf\x28\x94\x10\xc4\x5a\x93\x33\x8d\x6b\xda\x0d\x65\x2b\xfd\x6f\xb2\xa0\x27\xca\x4a\xa7\xb6\xf6\x33\x27\xf3\x94\xb6\xed\x44\x81\x33\x42\x10\xac\x60\x3a\x75\xed\xfe\x61\xe8\x18\xc6\xb7\x33\x71\x23\x1e\xde\xaa\xc3\xa1\xdc\xad\x9a\x59\xb1\x11\x07\xe3\xa4\xd3\xb6\x06\x9f\xd5\xf8\x22\x76\xd6\x1c\x49\x9e\x06\x41\x18\xaa\x24\x4f\x63\x11\x61\x84\x92\xc7\x13\xa5\xba\xd7\x25\x44\x28\xef\x36\x0c\xdf\x61\x48\xd3\x07\x7e\xb0\xf3\x1f\xc7\xbd\x7e\xb9\xb0\xa2\xda\x06\x60\xdc\x5c\xe3\x0c\x65\x4c\x9e\x13\x83\x44\x4b\xcb\x19\x76\x8d\xa7\x11\x54\x06\x27\x70\x5b\x6e\x4d\x40\x3b\xb0\xf9\xf8\x87\x6a\xf6\xd5\xae\x51\xdf\x29\x91\xab\x3a\x24\x26\x3e\xcf\xe5\x3b\x0c\xf2\x8e\x96\x27\x00\xa0\x89\x81\xc9\xcb\x22\x5c\x43\x18\x62\xfd\xdf\xe1\x0c\x3e\x96\x6e\x34\x56\x74\x29\x6b\x25\x6e\x4f\x65\x01\x58\xba\xe5\xee\x22\xa3\x05\x54\x0b\x5d\x18\x5d\x61\x19\xaa\xb7\x4a\x13\xc0\x3e\xab\x76\x77\xaa\x3e\xa8\xba\x49\x56\x00\x63\xa4\x1f\xa4\xe0\x11\x67\x4a\xcc\xdb\x36\xcc\x35\xb7\x04\x9e\x9d\xb9\x1d\xe8\x22\x0e\x8b\x09\x36\x3c\x08\xba\x8a\x14\x94\x65\x49\xd1\x21\x11\xb9\xee\xfd\x69\x38\xc9\xbd\x10\x59\x8f\x27\x76\xeb\x77\xad\x59\x5d\x18\x84\x3a\x59\xa4\x5d\x57\xf8\x15\xa6\x37\xc9\x6a\x28\x8f\xe9\x37\x28\x5d\x16\xfc\xd6\x0e\x8a\x0d\xaa\x4a\x81\x10\xa8\xcd\x08\x7c\x5b\xaa\x4d\xde\x60\xd8\xd0\x2c\x19\x49\x4f\xb9\xa4\x10\x76\x39\xd7\x74\x83\xae\xe2\xb7\xe0\xcd\x00\x82\x4d\x3f\x41\x53\x49\xae\x09\x10\xa8\xb8\x60\xde\xe7\x21\x56\x32\xcc\x95\x42\x0f\x8c\x0b\x83\x4c\x9e\x43\x94\x5f\x34\x4f\x29\x30\x2a\x2a\xbf\x49\x4a\x18\x8c\x22\x6d\xdb\x9b\x84\x3c\x87\x4b\x36\x59\x75\x71\x52\x6f\x60\x4e\x70\xe5\x93\xcf\xeb\x64\x91\x1a\x00\xb8\xae\x88\xb5\x1e\x4f\x57\x0a\xdc\x51\xfa\xb8\x02\x6f\x92\x58\x67\x53\x69\xa4\xff\x4d\x74\x02\xa0\xc2\xe9\x3c\xec\xd6\x8d\xa8\x2e\x95\x7a\xd3\x6b\x05\x39\x29\xa2\x25\x88\x84\x1c\xd6\x75\x75\xdf\x90\x94\x4a\xbe\x0a\xa5\x31\xe0\xd7\x47\x06\xde\x9b\x83\x62\xe3\x22\x28\x34\x07\x4d\x98\xf6\xce\x63\x06\x3f\xd1\x2a\xde\x44\xe4\x87\xea\x02\x87\xb0\x01\x10\x83\xba\xda\xea\x49\x39\x25\x17\x87\x4a\xf7\xc2\xe9\x74\xea\x97\xd3\x1c\xb3\x4c\x35\x0d\x61\xba\xeb\x23\xe9\x87\x41\x17\x40\x7a\x44\x73\xb6\x11\xcd\xe1\x4d\x95\x83\x82\x26\x7a\x3c\x31\x75\x10\x2b\xfd\xeb\x6f\x36\xd1\xe3\xb1\xde\x44\xbf\x4b\x88\x68\x13\x91\xbf\x7c\xf3\x8e\xb0\xb2\x79\x5d\x65\x62\x13\x7d\x6d\x64\xb8\x9f\xa4\xee\x0b\x86\x71\xb6\xa2\xc9\x9c\xed\xeb\x4a\x7f\x1c\x42\xed\xea\x2d\x45\xd3\x31\xfa\xc2\xec\x18\xef\xa0\x28\xb1\xdf\x6f\x4a\x3c\x3a\xaf\x1e\x2e\xef\xef\xef\x2f\x8b\xaa\xde\x5e\x1e\xeb\x0d\xc8\x05\x55\xbe\xd4\x2c\x54\xdd\xa8\x03\xff\xf9\xdd\xb7\x97\xff\x4e\x18\x46\xcf\x6d\x22\x00\xd0\xf8\xab\x64\x10\x5d\x16\x89\xab\xfd\x46\x94\x3b\x82\xd1\x15\x31\x45\x5f\x12\xf6\xa0\xef\x7b\x5f\xda\x6e\xd8\x85\xa3\xc7\xd8\x4d\x03\xa0\xce\x5e\x06\x9d\x62\x72\xdc\x88\x3b\x61\x02\xa1\x9d\x6c\xdd\x9b\xe8\x51\x97\xa9\xdf\xbe\xc2\xcf\xc1\x97\xae\xb0\x24\x78\xfb\xea\xc4\xfa\xcb\x05\x5f\x21\x36\xf1\xfd\x9b\xd7\xc4\xd4\xdd\x26\xbd\x53\x0f\x07\x5b\x19\x9b\xa6\xa9\x57\xfc\xae\x59\xb8\xba\xdd\x50\x31\x12\x21\x69\x89\x84\xe5\x05\xb4\x54\x77\x2f\xde\xea\x52\x34\x83\xef\xc8\x7d\x93\xae\xdb\x1b\x75\x64\xf0\x89\x79\xc7\x08\x8e\xb2\x1d\xa1\x87\x43\x34\x99\x9f\xdc\x3c\x38\x3e\xa1\xff\x91\xf1\x0f\x32\x84\xc3\xaa\x7f\x3e\x51\x26\x69\xf4\x83\x0c\xfb\xa9\x4c\xf3\x85\x3a\xe1\x27\xe7\x22\xf7\x5a\x86\xdf\x49\x0a\x89\xef\x6a\xb1\x6b\xf6\x55\x7d\xd0\x89\xdf\x9b\xc4\xc1\x67\xcf\x9d\xe0\x70\xb3\xf1\x1d\x77\xb8\x84\x13\xb1\xe7\x53\x6d\x20\x2a\x6e\xbb\x63\xf4\xb8\x37\xee\xb2\x1b\x7e\x3b\x33\x4d\x6e\xdb\x5b\xb6\xeb\x6e\x83\x20\xdc\x78\xf1\x56\x37\xb3\x9b\x8f\x47\x55\x7f\xa2\xf1\x36\xdc\x00\xab\x71\xa7\x76\x07\x56\xf5\x3c\x95\xd9\x9e\x6f\x67\x5f\x89\xcd\x46\x8a\xec\xb6\x09\x49\xb5\xcb\xd4\xc5\x56\x6d\xab\xfa\x13\xa1\xec\xa3\xde\xf4\x0e\xe2\x70\x6c\xbe\xaa\x72\x05\xa1\x2a\x6b\xbd\xc5\x37\xfa\xdf\x81\xcf\xd9\x91\x93\x4c\xec\x32\xb5\x51\x39\x61\x77\xfc\xb1\x56\x22\xff\xf4\x16\x96\xf3\x9c\x9d\x9d\x8e\x23\x58\x48\x65\x11\xbe\xe0\x9c\x1f\xf0\x28\xbb\xa1\x8f\xfa\x08\x71\x92\xaa\xaf\xa4\x8d\xab\x4e\x6f\x12\x79\x1e\x75\x93\xcb\xe4\x45\x7a\x92\xfc\x26\x11\x83\x27\xa7\x9e\x4d\x97\x44\xcb\x43\x79\xd2\x75\xfa\x72\xb3\xe9\x57\x6b\x2c\x42\x07\x54\x2a\x2e\x8c\x82\xb9\xd1\x2d\xf9\x78\x54\xcd\xe1\xac\x21\xbe\x6a\xb9\x57\x05\x07\xb4\xd5\xb6\xa1\xe0\x4d\x92\xa5\x1c\xe3\x7d\x0a\x56\x27\x02\xce\x22\x94\x56\x56\x77\xaa\xae\xcb\x5c\xbd\x31\x84\xc5\xa8\x89\x16\x18\x3b\x5a\xd2\x83\x0b\xfb\x6e\x37\x38\xe3\x7d\x0b\x1e\xf9\x2f\x5e\x1d\xa8\x03\x14\x10\xf4\x63\x22\x53\x9e\xe8\xff\x4c\x24\x32\x45\xaa\xe2\xe2\xce\xfa\xb0\x8a\xe4\xce\x8c\x79\x3a\x88\x9f\x2b\xa4\x9e\xec\x23\x0a\xa4\xb6\x3d\xda\x9c\xfa\xf4\x9b\x41\xc6\x50\x52\xf6\x10\xce\x99\x6d\xe7\x49\xd7\xa7\x72\x2e\xe1\x77\xb4\x73\x6e\xdc\xcf\x44\x9e\xb3\xbb\x99\x39\x00\xf8\x1d\xfa\xdd\xde\x21\x47\xc7\xef\xc0\xc9\x56\x9f\x63\xf5\x86\x87\xa1\x68\x5b\xb8\x6c\xdb\xdf\x25\x9d\xfa\x91\x0f\xbf\x04\x43\x5a\x77\xfb\xad\x64\xb0\xcd\x4f\xc9\xd5\x15\x98\x71\x83\x0a\x47\xce\xb6\xea\xb0\xae\x72\x4d\xbf\xa1\x9e\xe7\xd6\xa5\x60\x16\x76\xdb\xd1\x2f\x56\x54\xd0\x25\x01\x9b\x40\x9f\xe6\x44\x08\x49\x8d\x05\xd8\xed\x4c\x33\xc8\xcd\xd7\xd5\x56\x94\x3b\xe0\x6a\x2c\xbb\x04\xf5\x1f\x70\x4c\xac\x97\x9d\x4f\xc2\x49\xd6\xb6\x19\xd2\x01\xd0\x8c\x20\xc8\x92\x17\xe6\xee\x05\x12\x39\x00\xa4\x44\xd6\x87\xc3\x3e\x02\x61\x6c\xb2\x48\x63\xf2\xef\x73\x12\x91\x97\x2f\xbf\x20\x94\x72\xce\xf5\x49\x37\xc8\x06\xa5\xf5\xf2\xc1\xd7\x75\x03\x83\xe0\x76\xe6\x9d\x84\x9d\x18\xdc\x31\x17\x36\x9f\xe9\x11\x0e\xbb\xb3\xb0\x1d\xa4\x3b\xb9\x16\x39\x04\x1e\x10\x1b\x4a\xd9\x1b\xbd\x5f\xb2\x5b\x26\xd9\x1d\x65\xb8\xd2\x2d\x7c\xe2\x72\x6d\xe3\xd0\xeb\xaf\xe2\x49\xcc\xd6\x88\x09\xbb\x9d\xe1\x89\x3f\x9d\x02\xa5\x0f\x91\xe3\xad\xec\x8f\xc0\x8e\x78\x10\xf5\xa1\x1b\x54\xfc\xe9\xc7\x0f\x60\xb7\x20\xe0\xc6\x33\x90\x4f\xbe\x31\x27\x3f\x66\xa5\x4c\xbf\x74\xac\x37\xbd\x5c\xb0\xca\x4c\xfb\xcc\xf3\x29\x0f\xef\x9d\x9b\x62\x4c\x02\x12\x91\x98\xd0\xa9\x69\xae\x51\xe8\xe3\x1d\x0c\xa1\xc8\xd6\xe8\x2a\x0a\x5d\xa4\x67\xec\x9f\xbb\xd7\x3b\xc1\xd2\x9f\x25\x23\xcf\x16\x1f\x38\x99\xde\xc9\xe9\x94\x46\x6a\x3a\xfa\x19\xe2\x72\x80\x5b\x43\x61\x49\x1f\x08\x11\xec\xd3\x42\xe0\x5a\x79\x37\x1b\x6e\x54\x21\xf9\xbe\xb8\xb4\x79\x2e\xdf\x96\xbb\x4c\x11\x76\xf6\x26\x88\xa2\x0f\x62\xf5\xb9\x42\x7e\xa8\x76\xea\xf2\x8d\x9e\xe6\xa4\xcb\x4d\x29\x0b\xbb\x89\xd3\xf5\xa3\xbe\xf3\x08\x27\x70\x9a\xd4\xeb\xcd\x4b\xa3\xe3\x5f\xea\xb1\x4f\xac\x57\x0a\x65\x63\x2f\x7c\x09\x04\x16\xf1\xd7\x2c\xf0\x31\xb7\x33\x43\x7a\x25\xfd\x27\x69\xfc\xe4\x93\xa9\xa1\xe0\xfb\xc9\x31\x61\x17\x64\xfa\x57\x39\x25\xcb\x8b\x8f\x7c\x3e\x9b\x03\x94\x2e\x8d\xba\x62\xc0\x3f\xbf\xe3\x68\x6f\x67\x6b\x3c\x56\xe8\x48\x7d\x73\xe6\x1e\x03\x43\xab\xd9\xa2\x19\x06\x55\x7d\xab\x76\x39\x62\xcc\xbb\x5b\xd4\x0a\x6d\xd8\x1d\xbb\xa5\x1c\x3b\x11\xd7\x90\x5b\x44\x66\xaf\xa5\xcb\x23\x27\x70\x49\x5c\x45\x1e\xcd\x76\x1a\x2d\x0c\x51\xbe\x60\xce\xe1\x7e\x71\xa2\x77\x49\x9e\x86\xb7\xb6\x12\x25\x7f\xa3\x89\x18\xb3\x52\xe9\xe3\xdd\xac\x3b\xca\xf9\x42\x2f\xcb\xdd\x60\x01\x42\x70\xd8\xe4\x8e\xdd\xa6\x7a\x6a\x02\xbd\xac\x7b\xfd\x80\xbe\x60\xaf\xe6\xc0\xba\x8c\xa3\x95\xd9\x5a\x13\x93\x99\xd0\x13\x73\x6f\x52\x94\x52\x1d\xf8\x82\x95\xb3\x46\x53\xff\x35\x7b\xb0\xbc\xc7\x3d\xd2\x09\x70\xa4\x51\x60\x57\x2e\xee\x97\x0f\xe1\xe5\x82\xdd\xd3\x13\x9a\xae\xc3\x9d\xe6\x3d\x1c\x7d\x46\x3c\x80\xd2\x87\x3e\xeb\x7a\xc3\x6a\xd6\xb0\x23\xbb\x67\x0f\x5c\x2e\x5f\x4c\x38\xd7\x54\xd4\x81\xbf\x60\xab\x20\xe8\xf9\xb6\xad\x34\x1b\x68\xcc\x78\x0a\x00\xca\x21\xac\xd7\x49\xe2\xd5\x3c\x7e\x19\xcd\xd9\x0d\x17\xaf\xf8\x8b\xf9\x3c\x08\xbe\x98\xcf\x5f\x89\xb6\xfd\x62\xfe\x92\x73\x2e\xc0\x4c\xf4\xc8\x7f\x94\xe1\x2d\xbb\x03\x9c\xef\x23\xff\x49\xdf\x1c\xd9\x1d\xbb\xa1\xec\x26\x0e\x07\x2b\xfc\x9e\xdf\x8d\x49\x18\x5e\x8b\xe6\xe0\xd6\x34\xa1\xec\x7e\x6c\x33\xe0\xf7\x94\x3d\xf1\xbe\x5e\xbb\xee\x35\xb3\x90\xf9\x3d\xa5\xec\x05\x56\xb4\x6d\xc9\x77\xdf\x7c\xf9\xb5\x3e\x29\x70\xaf\x8c\x1f\x38\xd9\x55\x36\x42\x41\x64\xda\x83\xa9\x87\xad\xad\x48\x14\x3e\xf0\x23\x50\x0e\x8a\xd5\xfc\x88\xfb\x63\xc3\x8f\x78\x88\xb3\x1b\x3e\x69\x28\x8d\xc2\x86\x3f\x30\x7d\x84\x4f\x1e\x68\x10\x84\x0f\x9c\x18\xbe\x71\xfe\x0a\x22\x7e\xf3\xb9\x3e\x8c\x2c\x05\xc2\x85\xbb\x04\xa3\xb1\x50\xb6\xed\x83\x3e\xf3\xd9\x4d\x5c\xf5\x20\x4d\x36\x2c\xa9\xd9\x03\xbb\x4b\x69\x54\xf9\xa0\x26\x1b\x3d\x45\x1f\x58\x93\x76\x85\x6a\x6a\x29\xfc\xa8\x89\x5b\x33\x9c\xbd\xc9\x7d\x13\xe3\xf4\x36\xbc\x68\x04\x77\xdf\x60\x1d\xf5\x6c\x67\x37\x71\x1d\xe9\xe2\xf6\x00\x91\xe6\x7d\x24\xa5\xba\xa4\x70\xb0\x4e\xbe\x32\x4b\xce\xad\x95\xcb\x4b\x7b\xb8\x81\xcc\x7a\xec\x68\xab\xc0\xc7\xc4\xe1\x0c\x03\xd5\x0a\x8a\x81\x27\xad\x4d\x57\xd6\x76\x94\x11\xe0\xa5\x28\xbc\xf3\x16\x18\xc1\xa7\x7c\x2b\xf0\x1d\xd3\x07\xb2\x8b\x9f\xdd\xb3\xdc\x59\xa9\x03\x61\x64\x5f\x35\x23\xf6\x88\x43\x8d\x5e\xcf\xd7\x7a\x20\x8b\x85\x03\x55\xb5\x6d\xce\x72\x9e\xb1\xcc\x71\x3f\xc8\xdf\x84\xc0\xcb\x09\x64\xd8\x25\xb3\xdb\x6f\xa4\x50\x14\x90\x31\xbb\x95\xe5\xd6\x50\xce\x86\xcc\x1e\xf3\xe3\x18\x29\x13\x85\x00\xae\x5c\xdb\x56\xcb\xe6\x2f\x9c\x20\x60\xc1\xac\x14\x44\xf3\x93\x74\x00\x91\x71\x5f\x8b\xfd\x97\x9b\xbe\x57\xdf\x7f\xd7\xb6\xc3\x94\xd5\xb7\xeb\xb0\x86\x1c\xc6\x3d\xd0\x19\xb0\x3d\x15\x93\x9d\xce\xd4\xc7\x70\x4e\xbb\xe0\xd7\x4b\x9b\xad\x6f\xab\xe5\x07\xf1\x76\x85\x33\x09\x4e\x7c\x43\x77\x5d\x50\x7c\x1b\x16\x4c\x78\x71\xde\xad\x93\x40\x97\xd2\xf9\x0b\x88\x5e\x7a\x17\xb7\xc7\x06\xd8\x33\x60\xc5\x3d\x76\x42\x77\xc0\xf7\xbb\x9d\xfa\x03\x9f\x94\x27\x4d\x29\x06\x7d\x09\x45\x9d\xf5\xe6\x10\x84\x59\x3a\xf3\x08\x88\x3c\x65\x04\x24\x21\x5d\x66\x56\x77\x9a\x75\x23\x43\x23\x1b\xcb\x2e\x44\x60\x08\xfd\x64\xd4\xbe\xb0\x57\xc5\xe5\xd3\xe3\x9f\x9d\x8f\xbf\xec\x7b\x68\xd2\x08\x3f\x75\xdc\xf5\x3f\xd6\xef\x19\x1c\xdd\x90\x8e\xb8\xed\x38\xc3\x73\xb4\x93\xc0\x58\x8c\x6d\xdb\x99\x14\xb9\xc0\xec\xc6\x6e\xc3\xc5\xed\xa7\x27\x83\xde\x62\x6d\x51\xf7\xb5\xc1\x7b\x69\x2c\xf6\xdd\xa8\x49\xa2\x17\xbe\xe1\x4f\x7c\x1e\x04\xfd\x70\x3e\x7f\xe2\xf3\xb6\x9d\x74\x90\xf9\xbd\xd8\x98\x21\xf5\x50\x1a\x6d\x0c\x0d\x17\x88\xa5\x8b\x16\x35\x12\x3c\xe2\x34\xac\x22\x04\x37\xdb\xa8\x91\x3a\x4e\x46\x1b\xa3\xc7\x14\xa4\x2e\x7f\x97\xfc\xea\x7f\xbc\x98\x5f\xad\xd8\x3f\x24\xbf\xba\x4e\xae\xd3\x67\x57\xec\x2d\xb8\xf4\xc6\xd7\xbb\xab\x15\x7b\x67\x74\x76\x68\x10\x61\x0d\x92\xcb\xad\x58\x81\x7a\x4f\x1d\x40\xd3\x07\xa6\xc9\x3f\x7f\xd6\x94\xf9\x56\x7d\x5a\xa9\x1d\xbd\x2a\x3b\x82\xe4\x9f\x43\x61\xfa\x19\x64\xbd\xd9\x8b\x7b\x1e\xfa\x8a\x3e\x66\x6d\xfb\x0f\x6b\x90\x4a\xe3\x3c\x84\xf8\x05\xba\xb4\x29\x49\xc8\x34\x3c\x93\x3c\xa9\x58\x6a\xba\x75\x4a\x52\xc2\x14\x9a\x17\x50\x27\xba\xce\xda\xd6\xbe\x30\x81\x58\x0c\x9f\xf6\x60\x76\x9f\xc3\x56\x3f\x40\x72\x91\xd4\x7d\x46\x41\x71\x32\x51\x29\x96\x68\xb8\x41\x3e\xea\x7e\xc4\x93\x94\xa9\xc1\xa3\xc1\xe2\x91\x34\x96\xa1\x75\x85\x95\x31\x21\xfa\x34\x48\xac\x9b\x68\xca\x51\xcc\xfa\xf3\x3f\xbe\xd7\xc7\x6a\xb5\xd3\x6b\x40\xd0\x29\xe1\x64\x3a\xf2\x44\x52\x90\x39\x38\x0d\x8e\x34\x16\xcc\xbe\x88\x4f\xb3\x97\x3d\x45\x95\xcf\xbe\x7a\x60\x85\x82\xb6\xad\x30\x02\x35\x83\x3b\xf5\xd3\x46\x94\x3b\x07\x51\x64\x87\xa9\x17\xb5\x04\x17\x21\xb8\x42\xb0\xce\x27\xd9\x75\xbc\x07\x9c\xf8\x4f\x19\x66\x0c\x00\x12\xf5\xe0\x76\x18\x56\x37\x55\xb9\x0b\x49\xe0\x49\x35\xfe\x2e\x19\x99\x92\xe1\xc9\xd4\xa8\xba\x04\x7b\xe3\x91\x1d\xc3\xb2\xe8\x08\xac\x6e\x33\x62\xbb\xf4\x3a\xea\x27\x3d\xb5\xe5\x8c\x1e\x15\xc6\x39\x0f\xb7\x1a\x65\x54\xf5\x9d\x4d\x85\x88\x7d\x87\x56\x63\x21\x77\xa2\x16\x45\x6a\xf4\xe4\x81\xb9\xd7\xdb\x42\x77\x60\x54\x36\xb1\x3b\x58\xd9\x84\x24\xea\x3c\x79\x83\xe0\x67\xb3\x0c\x7a\x1e\xe4\x34\x08\x26\xef\xdc\xfa\x70\x46\x6a\xc6\x17\xb3\x9d\xfc\x62\x1f\x51\x88\xc2\xe9\xb5\xcd\xc7\x95\xf1\xbd\xe5\xfb\xb8\xed\x19\x8a\x14\xbb\x19\x92\xd1\x18\x9d\xe2\xb3\x11\xa7\xf8\x47\xdd\x86\x08\x9d\x62\x18\x7a\x95\x08\x37\xa2\x6f\x25\x23\xd7\xf5\xf5\x0e\x48\xaf\x68\x24\x6b\x36\x9e\x15\x28\x38\xb3\x59\xf7\xe6\xf0\xc3\xba\xe6\x4e\xab\x2a\x66\x3d\xbb\x8d\xf8\x6c\x78\x27\xd0\x33\x46\x41\x12\x04\x57\xff\x11\xae\xd4\xa1\xd5\x24\x5f\xab\x39\xd5\x56\x6f\x64\x28\xe7\x68\x8d\xa3\xb2\xde\xe9\xbc\x2e\x3f\x20\x3b\xff\x9b\x0c\x69\xdb\x3e\x93\x21\x3d\x45\xbf\x61\x74\xc7\x5f\x24\x9f\xb3\xf7\x60\x8d\xf0\xeb\x70\xe5\xe9\x5a\x86\x74\x29\x66\xe2\x70\x10\xd9\xfa\x1b\x14\x04\xf5\x6e\x43\x52\xed\xd0\xda\x8d\xf8\xab\xca\x5a\xf3\x09\xbd\x74\xde\x4b\xfa\x5e\x26\x22\x35\xcb\x1c\xe2\x66\x80\x20\xa6\xaa\x1b\x3e\x99\xfc\x2a\x83\x80\xdc\x97\x87\xf5\x57\xb5\xca\xd5\xee\x50\x8a\x4d\x43\xca\xdd\xc5\xaf\x52\xd7\xe8\x16\x6a\x04\xd9\xd8\xaf\xd2\xee\x05\x8e\x71\x0c\x07\x74\xde\x44\xf8\x22\xba\xb6\xc5\xaf\xf4\x61\xfd\x1f\x35\xcb\xea\x05\x58\xf1\x94\xa4\x5c\x60\x9b\xd9\x8a\x4f\xa7\xbf\x80\x7c\xb6\x80\x30\xfd\x21\xfa\xc9\x33\x01\x02\x29\x81\xcc\xb4\xbe\x6b\x54\x0d\xd3\x40\xcc\xf6\xa2\x69\xee\xab\x3a\xa7\x0c\x0a\x41\x25\x4d\xa7\x43\xec\x25\x6a\x7e\xce\x4b\x48\x54\xba\xec\xd4\xd6\x41\x50\xcc\x86\x12\xe7\xb1\xb4\xb0\x7b\x45\x7f\xb3\xd7\xee\x2c\x21\xef\x2f\x8d\x5c\x43\xe5\x97\x9a\x96\x20\x10\xf4\x6b\x2c\x9d\x93\xf7\x6f\x5e\x7f\x77\x38\xec\xcd\x03\x83\x5d\xa8\x50\x83\xdd\x79\x8b\x80\xf0\xa9\x38\x97\x98\x28\xa6\x1f\x81\xa5\x56\x81\xf2\x00\xd1\x93\x34\xa1\xa6\x16\x21\xc1\x00\xe1\xaa\xeb\x7a\x13\xc9\x0d\x74\x29\x10\xae\x4d\x73\x21\x6d\xab\xd9\xd7\xc2\x63\xdd\x41\xa1\x6b\x24\x79\xef\x21\xe0\x8b\x74\x9c\xfe\xac\xda\x41\x46\xe0\x6b\xd1\x3c\x12\x8c\xe5\xaa\x3d\x53\xf4\xe5\xa4\x5f\x90\xae\xbf\x95\xc7\x80\xaa\x1e\xf4\xe1\x6b\x5e\x18\xce\xf3\x1c\x06\xa2\x98\xf9\xea\xb4\x20\x08\x6f\x00\x91\x81\xf7\xd3\x51\x22\x52\xba\x72\x74\x9a\x11\x88\xdc\xd2\xc7\x92\x13\x72\x5a\xb7\xed\x44\xd8\x45\x0c\xd6\x00\xdd\x80\xc5\x8b\x17\x2f\xbe\xe0\x00\x53\x1f\xae\xf9\x8b\xf9\x4b\x1a\xad\x39\x7e\x28\x7e\x31\x9f\x47\x2f\xe7\x2f\x4f\x37\x41\x90\x87\xa8\x74\x2a\x66\xa3\x4a\x12\x38\x2a\xcc\xdc\x8c\x87\x5d\x18\xfb\x48\x41\x34\x1a\xed\x36\xe8\x5a\x2e\x23\xbd\x41\x0c\x75\x09\xf4\x51\x06\x81\xf4\xd7\xf0\xa9\x1f\x57\x46\x1a\x87\x2a\x2f\xa2\x8c\x98\xf5\x27\x96\xef\x4e\xe5\x5e\x7c\x36\xfa\xe2\xe7\x2c\xd9\xbe\x7b\xf7\xee\x27\x42\xfd\xc2\x7a\x3a\x38\xa7\xd0\x45\x16\xd2\x68\x6e\x3b\xb5\x2b\xbb\xe8\x69\x66\x9f\x48\x57\xd9\x76\x34\xfd\xe1\xb2\x7b\xd2\x53\xe0\x9a\xaf\x5d\x85\x71\xa4\xcb\x6c\x75\x36\x8a\x89\x57\x03\x85\x2b\x68\x4e\x4d\x11\x63\xac\xd5\xd6\xc8\xda\xbf\xd1\xa7\x9a\xa0\x4c\x9c\xba\x23\xc4\x29\x3a\x43\xc7\x22\xf7\xd8\x1d\x4b\x4a\x09\x14\x74\x83\xe3\x33\x8a\xbc\x27\x8b\xc1\x36\x01\xcf\xd0\x69\x06\x98\x6f\x61\x3e\xcb\xd1\xcc\x68\xb8\xd5\x8e\x7e\x0f\xec\x3b\xbc\x32\x3b\x5c\xbd\x4f\x20\x45\xd5\x6c\x0d\xd1\x17\x00\xa4\xd4\xb6\x9f\x86\x56\x84\xe3\x9b\x32\xc8\x29\x46\x4c\xdd\xac\x04\x84\x49\x63\xc7\x08\xe1\xd4\x31\xf5\x2b\xd4\xeb\x83\x5f\x94\xd5\xf1\x0f\x9e\x01\x8e\x55\x9d\x71\xdc\xc6\xe5\xac\x82\xa3\x8b\xcb\xb1\xc5\xd0\xb7\x84\xd6\xf4\xf7\x44\x7a\xeb\xa9\x6d\xaf\xf4\xbb\x2a\x6f\xad\xc8\xd6\x40\x3b\xc9\xde\xbe\x05\xb5\xf9\xdc\x67\xd0\xf8\xf8\x69\xc7\x2d\x3f\xc2\xb6\xd4\xbb\x27\xbc\x90\xb5\xad\x0a\x5f\xcc\xe7\xcc\x99\x64\xe8\xb5\x9f\xf5\xa5\x08\x92\x65\x1e\xcb\xff\xd4\x92\x36\xb5\x3b\x5b\xd9\x7a\x1c\x3f\x48\xcd\x11\x88\x8c\x5f\x85\x9c\x5e\xc7\x61\xcc\x83\xf6\x19\x6d\xaf\xe3\xeb\xf8\x6a\xd9\x5b\x74\x37\x4d\xb5\xdb\x47\x24\x33\x7a\x6a\x34\x3b\xd8\x5b\xb5\xf5\x79\xa0\xa5\x0f\x12\xa1\xdd\x40\xc2\x06\x60\xe0\xd5\x94\x7c\x40\x4d\x8a\x4f\x5a\x26\x02\x8c\xee\xc4\xe8\x02\xd0\xdf\x00\xcb\x84\x3d\xe9\x81\xa3\x0d\x43\x46\xca\x19\x64\x72\xc8\x90\x99\x1d\xa9\x63\xbd\xa1\x31\x39\xd6\x1b\x88\x52\xda\xdf\xf8\xa5\xd1\x9a\x4c\xc2\x9e\x56\x04\xdd\x76\x9c\xbf\xcc\x1f\xda\x9b\x68\xf2\xb7\xfb\x20\x28\xa1\x82\x80\xe8\xdf\x8e\x08\x5f\xb7\x2d\xc1\x66\x68\x1e\xa8\xaf\xdb\x08\x95\xad\xbe\xed\xcc\x01\x3f\xd6\x7f\x48\xe3\x41\x42\x48\xa3\x41\x0a\x5b\xc7\x32\x59\xa7\x5c\xff\x73\x64\xab\xc8\x18\x79\xb6\x20\x53\xe5\xb2\xdb\xde\x92\x03\x1d\x9b\xed\x35\xab\x00\x33\xd9\x91\xc5\xd3\x0b\xcc\x33\x0a\x33\xeb\x15\xad\x47\x52\x7e\xce\xb7\xac\x3a\xab\x60\x35\x25\x17\xf7\xa2\xb9\xd8\x55\x87\x0b\x3d\x8d\x40\x72\xbe\x4a\xe6\xe9\x89\xf5\xbb\x84\xa3\x00\x15\x10\xe9\x55\xca\xf4\x3f\xbf\xe4\x55\x67\x6c\x7f\x62\xf9\x08\xce\x3b\xbe\x00\x2c\x31\x34\xaf\xdf\xb9\xd9\xa0\xb3\x3e\x18\x4c\x65\x45\x29\x5b\x21\xaa\x89\xeb\xfb\x82\x06\x41\x11\xae\x40\x52\xb7\xe2\x45\x17\xe0\xc5\xed\x53\x7e\x8c\x40\xb0\x91\x01\x80\xbc\xa1\x90\x18\x08\xd7\x11\x3b\x71\xd1\xb3\x13\x1f\x75\x82\x32\x86\xb8\x7a\x6f\x07\x33\x95\x4f\x68\x8e\xcb\x8f\xa8\xc6\x86\x10\x7a\x93\x2c\x08\x92\xb4\x8b\xbe\x9d\xc8\xc1\xb6\x9a\x27\x8b\x94\xa6\x11\x04\x06\x90\xc7\x72\x93\x7f\x5b\x8b\x15\x3c\x49\x04\xb2\xbb\x88\x5b\x8a\x3c\x7e\x10\x6c\x43\x65\x3d\xdf\x20\xdc\xff\x56\xd5\x2b\x15\x26\x29\xcb\x7d\x59\x95\x91\xdd\x48\x04\xff\x04\x3b\xf3\xa5\xbb\x1a\xeb\x83\x31\x1c\x5d\xe9\xe2\xed\xca\x27\xe0\x3f\x97\xbe\x1b\x35\x3c\x5b\x73\xe1\x3b\xb4\x75\xcb\xec\x15\x07\xb7\x44\x6b\x31\x20\x8c\xe9\xe3\x9a\x59\x68\x6e\xc0\x03\xb4\xc9\x73\x88\x14\x3b\x14\x7e\x98\x0e\x37\xd2\xf1\x48\x8e\xc0\x68\x4b\xb0\xec\x23\x3f\xfd\xf8\xf6\x9d\x9e\xc2\xce\x69\xc6\x72\x2f\x3d\xb9\x77\xe1\xc9\xbc\xd1\xba\xcc\xd8\xd6\xd1\x41\x48\x0a\x41\x1f\x55\x37\xb5\xd9\x6a\xa6\x73\x87\x79\xbc\x0d\xc9\x9f\xf2\xf2\xee\x15\x71\x92\x5c\x6f\xaa\x69\xee\x19\x5c\xab\xc3\x1c\xc5\x96\xce\xa4\x23\xcc\x82\xa0\xcf\x50\xaf\x50\x3c\x92\x31\xd5\xb6\x9e\x71\xa6\x26\x65\x99\x64\x22\xd5\x34\x01\xca\x85\x9d\xee\xa1\xd3\xf3\xb3\x4e\x31\xc2\x06\x5a\x15\x5f\x3f\xd3\xd3\xdc\xb0\x4e\x4d\x79\xee\x6c\x3d\x74\x47\x1a\x73\xc1\x19\x13\x83\x1a\x84\xd4\x7c\x5c\xed\xb0\xaa\xd5\x3e\x74\x38\xa8\xbe\xa0\xda\x21\x07\xe8\x1d\x18\x23\x40\x98\x81\x33\x86\x5f\x9a\x6a\xb0\xb4\xcb\x19\x11\xe3\xa8\xd9\x3c\xeb\x7d\xaf\x6c\x7e\x29\x77\x79\x75\x1f\x0a\x1a\x8b\xe8\x7f\xf5\x20\x7c\xe2\x0e\x67\xa4\x54\xf7\x9a\x23\xc0\x63\x1f\xdf\x88\x26\x8b\xd3\xd6\x88\x69\x01\x49\x02\xe5\xb1\x9f\x03\x11\xf0\x4c\xd2\x6c\x10\xf9\xaa\x01\x49\x19\x84\xeb\xd9\xea\xdd\x60\xc7\x1f\x4f\x4b\xa2\x09\x90\x32\x03\xfd\x21\x10\x81\x28\xcb\xb5\xb9\x39\xa9\xd5\x46\x68\xfa\x9b\x50\xb6\xe6\x1b\x53\x8b\x10\x41\xbe\x4d\xd1\xa0\x02\x63\x65\x97\xb0\x51\x85\x26\xcc\x6e\x78\x48\x84\x6c\xaa\xcd\xf1\x00\x22\xe3\xdb\xb6\x25\x45\xf9\xa0\x72\xb8\x01\x3c\x67\x8b\x0d\x86\x68\x17\x2c\x29\x58\x99\xd2\x57\x97\x0b\x76\x13\x87\x39\xdf\xb8\x7a\x00\x1f\x9e\xcf\x0e\x9a\x93\xe3\xf9\x4c\x7f\x80\x46\xe1\xaa\x1f\x35\xb9\x6d\xe7\xfd\x68\xee\xa5\x4e\x3a\x5b\xb7\x20\x58\x94\x36\x34\x41\x06\x4b\xdb\x80\xed\xcd\x00\x8d\x39\xdc\xe9\x5f\xbc\xbb\x5c\xeb\xff\xd3\x55\x97\x45\x7f\x1b\xf2\xe8\x0b\x73\x7f\xb9\x86\x1f\x7d\xe8\x91\x63\xa3\x37\xae\x72\x77\x21\x63\x39\x83\x1b\xfb\xa9\x1d\x8d\x36\xd0\x45\x3b\x44\x12\xf1\x24\x82\xd5\x70\x44\xe9\xe7\xb0\x26\x3b\xca\x1e\x9c\xc7\xc6\x22\x82\xc2\xc2\xc1\x52\x67\x6e\xc6\x58\xf4\x69\x69\x01\xd1\x10\x25\xf0\xf1\x50\xed\xa3\x39\xd3\x2d\x88\xe6\xa7\x0e\xef\xd2\x44\x80\xeb\x2b\xb1\x40\x10\xd2\xa1\x33\x16\xc3\xf9\xcf\xb6\x40\x22\x89\x72\xd7\x80\xe8\x3b\x0e\xad\x48\x5b\x73\xaa\x7f\xae\x8e\xbb\xbc\xdc\xad\xbe\xda\x94\x6a\x77\xf8\x87\xca\x0e\x13\xce\xff\x06\x3b\xf1\x13\xcf\x43\x4a\x59\xc6\xf3\x2c\x2c\x28\x83\x8a\xc2\x2c\x98\x02\xdc\xdf\x4a\xfd\x8a\x0d\x03\x3c\x62\x1b\x59\x90\x5e\x6a\x32\x0d\x0a\x78\x57\xed\x61\x06\x40\xd3\x70\xda\xd8\x37\xdf\x0f\xdf\x7c\xad\xe7\x54\xf7\xaa\xbe\xd5\xef\x9e\x68\x94\x9f\x98\x9d\x87\x03\xbf\xde\x9e\xe6\x0f\x56\xe1\xb0\x33\x73\x07\x1e\x6a\xfc\x3f\xdc\x02\xc0\xd5\x92\xfb\x2b\x33\x96\x08\x58\x36\xd6\x0b\x51\x68\x24\xae\x38\xa8\x3f\x19\x9d\x12\x93\x7e\x2a\x1c\xc1\x1d\x98\x91\x1e\x43\x3c\x49\x20\xa4\xb2\x0b\xde\x0d\x7d\x0a\xdd\x68\xd7\x2c\xe4\xc4\xf0\xc4\xef\xaa\x3d\xc6\x27\x06\xe8\xec\x0c\x3b\x6d\x24\x9f\xee\xa0\x2e\xa3\x19\x1c\x5c\x33\x50\xf6\xa5\x6b\x20\xc6\xa3\x7b\xa7\xcf\x83\x89\x1d\x0c\xb3\x6e\xb0\xf8\x61\x56\x5d\x34\x31\xec\x07\xf3\xdb\xfb\x5f\x12\x77\x9f\xf5\x56\xdb\x66\x99\x55\x95\x82\x5a\xc0\x87\x7d\xc2\x6e\x02\x1b\x3a\xbb\x21\x8e\xec\x9d\xa0\x3b\xf5\xcb\x74\xc2\x73\x5d\xf8\xa9\x8f\x31\xee\xa6\x55\x44\xbc\x19\x47\x98\x9b\xa9\x98\x6e\xe6\xf0\x59\x3c\x68\x94\x6a\x5f\xfd\x6a\x99\x49\xba\x3c\x83\x05\xcf\x3f\x13\x62\x39\xb7\x12\xb5\x82\xc3\x49\xb4\x1c\x6e\x1e\x2a\x2e\x62\xb0\x32\x2d\xe2\x22\x91\x69\x54\x3c\x79\xa6\x25\x79\x1a\x09\xfd\x0f\x30\xb1\x8a\xb8\x70\x8b\x2d\xcc\xe2\x6d\x58\x50\x6f\x09\x85\x34\x52\x2c\x8b\x55\xe4\xa5\xbf\xd3\xec\x1d\x85\x22\xb8\x82\x30\xcb\xf9\x19\x94\x0f\xec\xaf\x43\x4c\x79\x4d\x41\xc0\x61\xf2\xf9\x98\xf6\x10\xe5\x7b\x5f\x3e\xa8\xcd\x4f\x66\xa4\xd8\xa8\xf3\x72\xa6\x49\x36\x8c\xd0\x4f\xd9\x77\xc2\x01\xb6\x01\x32\x65\x77\xd4\x24\x32\x9d\x92\xfd\x03\x89\x3a\xec\x25\xea\x8d\x2b\x6a\x4a\x23\x17\x76\x1f\x16\x41\x64\x00\xa1\xce\x91\xdc\xf1\x25\x17\x05\x1c\xb0\xb1\xc9\x54\x58\x71\x51\x24\x19\x21\x11\xa9\x8e\x07\x48\xf6\xde\x07\xde\x15\x86\x3c\xf7\x87\xbc\x1b\xd6\x61\x17\x6a\x16\xc0\x73\xf8\x77\xb4\x33\x44\xe0\xc8\xc0\x9d\x88\xf3\xc9\xbc\x6d\x31\xa6\x49\x6c\x03\x45\x46\x66\x45\x77\xe4\xf1\x70\x36\xf5\x54\x9e\xe7\x14\x8d\xd4\xac\xe6\x93\x93\x87\xe0\x86\x4a\xa6\x22\x05\xb2\x47\x76\x64\x0f\x70\xb4\xc3\x03\xc4\x05\xcf\x92\x33\x59\xe5\x9f\x80\x73\xac\x36\x1b\xfd\x3e\x53\xbd\x3b\x9b\x01\x17\xa4\xcd\xd0\xbf\xeb\x3e\x4e\xed\x68\x82\xfb\x2f\x2e\x6e\xdd\xb0\x15\x8d\x6c\xd8\x36\x84\x11\x59\xd1\x13\x93\xac\x88\xf3\xc8\x0a\x96\xdd\xe4\xb4\x7e\xec\x4d\xf9\xbb\x1a\xe1\x61\x3d\x80\x02\x73\xc0\x8b\x5d\xfe\x56\x6d\x0a\xe4\x7b\x44\x9e\xff\x59\x33\x92\xc4\xbe\xe9\x45\xb6\x51\x45\xb9\x53\x41\x80\xbf\x33\xb1\xcd\xed\x75\x48\x50\x91\x49\x58\xd2\x03\xc8\xb1\xc3\x60\x8e\x72\xa5\xb7\xf7\x9b\xbf\xeb\x9c\xac\xd0\xd7\xcf\x96\x1e\xbc\xdd\x57\xd5\xae\xd8\x94\xd9\x81\x8f\xd1\xb9\xb3\x67\x7a\xb3\x03\xea\xef\x19\x2f\x32\x0c\x4f\x62\xca\x72\x4f\xcc\xad\xca\x28\xdb\x9e\x98\x65\x6f\x38\x9e\xde\xee\xb1\x2e\x61\xab\x73\xd0\xe5\xbf\xfc\x9f\x00\x00\x00\xff\xff\x0e\x86\x65\x93\xd5\x76\x01\x00") - -func staticJsJquery1113MinJsBytes() ([]byte, error) { - return bindataRead( - _staticJsJquery1113MinJs, - "static/js/jquery-1.11.3.min.js", - ) -} - -func staticJsJquery1113MinJs() (*asset, error) { - bytes, err := staticJsJquery1113MinJsBytes() - if err != nil { - return nil, err - } - - info := bindataFileInfo{name: "static/js/jquery-1.11.3.min.js", size: 95957, mode: os.FileMode(420), modTime: time.Unix(1495477158, 0)} + info := bindataFileInfo{name: "static/images/atlantis-icon_512.png", size: 13413, mode: os.FileMode(420), modTime: time.Unix(1495690053, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -295,7 +274,6 @@ var _bindata = map[string]func() (*asset, error){ "static/css/skeleton.css": staticCssSkeletonCss, "static/images/atlantis-icon.png": staticImagesAtlantisIconPng, "static/images/atlantis-icon_512.png": staticImagesAtlantisIcon_512Png, - "static/js/jquery-1.11.3.min.js": staticJsJquery1113MinJs, } // AssetDir returns the file names below a certain @@ -350,9 +328,6 @@ var _bintree = &bintree{nil, map[string]*bintree{ "atlantis-icon.png": &bintree{staticImagesAtlantisIconPng, map[string]*bintree{}}, "atlantis-icon_512.png": &bintree{staticImagesAtlantisIcon_512Png, map[string]*bintree{}}, }}, - "js": &bintree{nil, map[string]*bintree{ - "jquery-1.11.3.min.js": &bintree{staticJsJquery1113MinJs, map[string]*bintree{}}, - }}, }}, }} diff --git a/docs/architecture.md b/docs/architecture.md index 7d86eb33..5352cdd1 100644 --- a/docs/architecture.md +++ b/docs/architecture.md @@ -15,20 +15,20 @@ results: - path-execution results naming: - - `Atlantis` has (currently) two `commands`: `plan`, `apply`. There could be more like `help` + - `Atlantis` has (currently) three `commands`: `plan`, `apply`, and `help` - `Terraform` has `commands` like `plan`, `apply`, `get`, `remote` - When a user comments with an `Atlantis` `command`, they trigger an `execution` - We determine the `Atlantis` `command` (ex. `plan` or `apply`) - We also determine the `context` of the `execution`, or `executionContext`. This consists of data like the `repo owner`, the `pull request number`, the `commentor username`, etc. - From the `command` type, we know which `executor` to use. Either the `PlanExecutor`, or the `ApplyExecutor` - We then tell the `executor` to `execute` the `command` - - There may be multiple `execution paths` involved in an `execution` because we may have to run `terraform plan/apply` in multiple `paths`. + - There may be multiple `terraform projects` involved in an `execution` because we may have to run `terraform plan/apply` in multiple `paths`. - The `executor` returns to us the `executionResult` - each `result` has one of three `statuses`: `successful`, `failed`, `errored` - `successful` is when... it was successful - `failed` is when it didn't work but because of a user-solvable problem, like their terraform was wrong, or that environment doesn't exist - `errored` is when there was an internal Atlantis error that couldn't be fixed by the user, like a request to github timed out - - `result` has sub-types to represent different results. For example there is a `PlanResult` that has the output of `terraform plan`, and the url to `stash` to discard the plan + - `result` has sub-types to represent different results. For example there is a `PlanResult` that has the output of `terraform plan`, and the url to discard the plan and lock - We then need to add a `comment` back to the `pull request`, so we `render` the `executionResult` using a `renderer`. In this case, we need the `GithubCommentRenderer` - We can then add the `comment` to the `pull request` by using the `githubClient` @@ -36,7 +36,6 @@ components: clients for external services: - github (created) - s3 (created) - - stash (created) clients for on-host "services": - git - aws cli @@ -58,3 +57,13 @@ logging guidelines: - if something is an error, ex. we couldn't clean up the workspace, use the words "failed to" in the log - never use colons "`:`" in a log since that's used to separate error descriptions and causes - if you need to have a break in your comment, either use `-` or `,` ex. `failed to clean directory, continuing regardless` or `POST /404 - Response code 404` + +Glossary + +* **Run**: Encompasses the two steps (plan and apply) for modifying infrastructure in a specific environment +* **Run Lock**: When a run has started but is not yet completed, the infrastructure and environment that's being modified is "locked" against +other runs being started for the same set of infrastructure and environment. We determine what infrastructure is being modified by combining the +repository name, the directory in the repository at which the terraform commands need to be run, and the environment that's being modified +* **Run Path**: The path relative to the repository's root at which terraform commands need to be executed for this Run +* **Run Key**: The unique id for the set of infrastructure that is being modified in a Run. It is a combination of the repository name, run path, and environment +* **Run Id**: The id for this specific Run diff --git a/github_comment_renderer.go b/github_comment_renderer.go index 1362fdac..773f29ce 100644 --- a/github_comment_renderer.go +++ b/github_comment_renderer.go @@ -47,10 +47,10 @@ var ( text: "```diff\n" + "{{.TerraformOutput}}\n" + "```\n\n" + - "* To **discard** this plan click [here]({{.DiscardPlanLink}}).", + "* To **discard** this plan click [here]({{.LockURL}}).", } RunLockedFailureTmpl *CompiledTemplate = &CompiledTemplate{ - text: "This plan is currently locked by {{.LockingPullLink}}\n" + + text: "This plan is currently locked by #{{.LockingPullID}}\n" + "The locking plan must be applied or discarded before future plans can execute.", } TerraformFailureTmpl *CompiledTemplate = &CompiledTemplate{ diff --git a/locking/boltdb_lock_manager.go b/locking/boltdb_lock_manager.go new file mode 100644 index 00000000..2fe72b9b --- /dev/null +++ b/locking/boltdb_lock_manager.go @@ -0,0 +1,113 @@ +package locking + +import ( + "github.com/boltdb/bolt" + "fmt" + "encoding/json" + "github.com/pkg/errors" + "encoding/hex" +) + +type BoltDBLockManager struct { + db *bolt.DB + locksBucket []byte +} + +func NewBoltDBLockManager(db *bolt.DB, locksBucket string) *BoltDBLockManager { + return &BoltDBLockManager{db, []byte(locksBucket)} +} + +func (b BoltDBLockManager) TryLock(run Run) (TryLockResponse, error) { + var response TryLockResponse + newRunSerialized, err := b.serialize(run) + if err != nil { + return response, errors.Wrap(err, "failed to serialize run") + } + + lockId := run.StateKey() + transactionErr := b.db.Update(func(tx *bolt.Tx) error { + locksBucket := tx.Bucket(b.locksBucket) + + // if there is no run at that key then we're free to create the lock + lockingRunSerialized := locksBucket.Get(lockId) + if lockingRunSerialized == nil { + locksBucket.Put(lockId, newRunSerialized) // not a readonly bucket so okay to ignore error + response = TryLockResponse{ + LockAcquired: true, + LockingRun: run, + LockID: b.lockIDToString(lockId), + } + return nil + } + + // otherwise the lock fails, return to caller the run that's holding the lock + var lockingRun Run + if err := b.deserialize(lockingRunSerialized, &lockingRun); err != nil { + return errors.Wrap(err, "failed to deserialize run") + } + response = TryLockResponse{ + LockAcquired: false, + LockingRun: lockingRun, + LockID: b.lockIDToString(lockId), + } + return nil + }) + + if transactionErr != nil { + return response, errors.Wrap(transactionErr, "DB transaction failed") + } + + return response, nil +} + +func (b BoltDBLockManager) Unlock(lockID string) error { + idAsHex, err := hex.DecodeString(lockID) + if err != nil { + return errors.Wrap(err, "id was not in correct format") + } + err = b.db.Update(func(tx *bolt.Tx) error { + locks := tx.Bucket(b.locksBucket) + return locks.Delete(idAsHex) + }) + return errors.Wrap(err, "DB transaction failed") +} + +func (b BoltDBLockManager) ListLocks() (map[string]Run, error) { + m := make(map[string]Run) + bytes := make(map[string][]byte) + + err := b.db.View(func(tx *bolt.Tx) error { + bucket := tx.Bucket(b.locksBucket) + c := bucket.Cursor() + for k, v := c.First(); k != nil; k, v = c.Next() { + bytes[b.lockIDToString(k)] = v + } + return nil + }) + if err != nil { + return m, errors.Wrap(err, "DB transaction failed") + } + + // deserialize bytes into the proper objects + for k, v := range bytes { + var run Run + if err := b.deserialize(v, &run); err != nil { + return m, errors.Wrap(err, fmt.Sprintf("failed to deserialize run at key %q", string(k))) + } + m[k] = run + } + + return m, nil +} + +func (b BoltDBLockManager) lockIDToString(key []byte) string { + return string(hex.EncodeToString(key)) +} + +func (b BoltDBLockManager) deserialize(bs []byte, run *Run) error { + return json.Unmarshal(bs, run) +} + +func (b BoltDBLockManager) serialize(run Run) ([]byte, error) { + return json.Marshal(run) +} diff --git a/locking/boltdb_lock_manager_test.go b/locking/boltdb_lock_manager_test.go new file mode 100644 index 00000000..18ec5403 --- /dev/null +++ b/locking/boltdb_lock_manager_test.go @@ -0,0 +1,260 @@ +package locking_test + +import ( + "testing" + "github.com/hootsuite/atlantis/locking" + "time" + . "github.com/hootsuite/atlantis/testing_util" + "os" + "github.com/boltdb/bolt" + "io/ioutil" + "github.com/pkg/errors" +) + +const LockBucket = "locks" + +var run = locking.Run{ + RepoOwner: "repoOwner", + RepoName: "repo", + Path: "parent/child", + Env: "default", + PullID: 1, + User: "user", + Timestamp: time.Now(), +} + +func keyWithNewField(fieldName string, value string) locking.Run { + copy := run + switch fieldName { + case "RepoOwner": + copy.RepoOwner = value + return copy + case "RepoName": + copy.RepoName = value + return copy + case "Path": + copy.Path = value + return copy + case "Env": + copy.Env = value + return copy + default: + return copy + } +} + +// NewTestDB returns a TestDB using a temporary path. +func NewTestDB() *bolt.DB { + // Retrieve a temporary path. + f, err := ioutil.TempFile("", "") + if err != nil { + panic(errors.Wrap(err, "failed to create temp file")) + } + path := f.Name() + f.Close() + + // Open the database. + db, err := bolt.Open(path, 0600, nil) + if err != nil { + panic(errors.Wrap(err, "could not start bolt DB")) + } + if err := db.Update(func(tx *bolt.Tx) error { + if _, err := tx.CreateBucketIfNotExists([]byte(LockBucket)); err != nil { + return errors.Wrap(err, "failed to create bucket") + } + return nil + }); err != nil { + panic(errors.Wrap(err, "could not create bucket")) + } + return db +} + +func cleanupDB(db *bolt.DB) { + os.Remove(db.Path()) + db.Close() +} + +func TestListWhenNoLocks(t *testing.T) { + db := NewTestDB() + defer cleanupDB(db) + b := locking.NewBoltDBLockManager(db, LockBucket) + m, err := b.ListLocks() + Ok(t, err) + Equals(t, 0, len(m)) +} + +func TestListLocks(t *testing.T) { + db := NewTestDB() + defer cleanupDB(db) + b := locking.NewBoltDBLockManager(db, LockBucket) + _, err := b.TryLock(run) + Ok(t, err) + + locks, err := b.ListLocks() + Assert(t, len(locks) == 1, "should have 1 lock") + for _, v := range locks { + Equals(t, run, v) + } +} + +type LockCommand struct { + run locking.Run + expected locking.TryLockResponse +} + +type UnlockCommand struct { + runKey string + expected error +} + +var regularLock = LockCommand{ + run, + locking.TryLockResponse{ + LockAcquired: true, + LockingRun: run, + LockID: "f13c9d87dc7156638cc075f0164d628f1338d23b17296dd391d922ea6fe6e9f8", + }, +} + +var tableTestData = []struct { + sequence []interface{} + description string +}{ + { + description: "regular lock should succeed", + sequence: []interface{}{regularLock}, + }, + { + description: "unlock when there are no locks should succeed", + sequence: []interface{}{ + UnlockCommand{ + "aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa", + nil, + }, + }, + }, + { + description: "lock and unlock should succeed", + sequence: []interface{}{ + regularLock, + UnlockCommand{ + "f13c9d87dc7156638cc075f0164d628f1338d23b17296dd391d922ea6fe6e9f8", + nil, + }, + }, + }, + { + description: "lock for same run path should fail", + sequence: []interface{}{ + regularLock, + LockCommand{ + run, + locking.TryLockResponse{ + LockAcquired: false, + LockingRun: regularLock.run, + LockID: regularLock.expected.LockID, + }, + }, + }, + }, + { + description: "lock when existing lock is for different repo owner should succeed", + sequence: []interface{}{ + regularLock, + LockCommand{ + keyWithNewField("RepoOwner", "different"), + locking.TryLockResponse{ + LockAcquired: true, + LockingRun: keyWithNewField("RepoOwner", "different"), + }, + }, + }, + }, + { + description: "lock when existing lock is for different repo should succeed", + sequence: []interface{}{ + regularLock, + LockCommand{ + keyWithNewField("RepoName", "different"), + locking.TryLockResponse{ + LockAcquired: true, + LockingRun: keyWithNewField("RepoName", "different"), + }, + }, + }, + }, + { + description: "lock when existing lock is for different path should succeed", + sequence: []interface{}{ + regularLock, + LockCommand{ + keyWithNewField("Path", "different"), + locking.TryLockResponse{ + LockAcquired: true, + LockingRun: keyWithNewField("Path", "different"), + }, + }, + }, + }, + { + description: "lock when existing lock is for different env should succeed", + sequence: []interface{}{ + regularLock, + LockCommand{ + keyWithNewField("Env", "different"), + locking.TryLockResponse{ + LockAcquired: true, + LockingRun: keyWithNewField("Env", "different"), + }, + }, + }, + }, + { + description: "lock, unlock, lock should succeed", + sequence: []interface{}{ + regularLock, + UnlockCommand{ + "f13c9d87dc7156638cc075f0164d628f1338d23b17296dd391d922ea6fe6e9f8", + nil, + }, + LockCommand{ + run, + locking.TryLockResponse{ + LockAcquired: true, + LockingRun: run, + LockID: regularLock.expected.LockID, + }, + }, + }, + }, +} + +func TestAllCases(t *testing.T) { + for _, testCase := range tableTestData { + t.Logf("testing: %q", testCase.description) + + db := NewTestDB() + b := locking.NewBoltDBLockManager(db, LockBucket) + + for i, cmd := range testCase.sequence { + t.Logf("index: %d", i) + switch cmd.(type) { + case LockCommand: + lockCmd := cmd.(LockCommand) + r, err := b.TryLock(lockCmd.run) + Ok(t, err) + Equals(t, lockCmd.expected.LockAcquired, r.LockAcquired) + Equals(t, lockCmd.expected.LockingRun, r.LockingRun) + if lockCmd.expected.LockID != "" { + Equals(t, lockCmd.expected.LockID, r.LockID) + } + case UnlockCommand: + unlockCmd := cmd.(UnlockCommand) + err := b.Unlock(unlockCmd.runKey) + Equals(t, unlockCmd.expected, err) + } + } + cleanupDB(db) + } +} + diff --git a/locking/dynamodb_lock_manager.go b/locking/dynamodb_lock_manager.go new file mode 100644 index 00000000..56fa3653 --- /dev/null +++ b/locking/dynamodb_lock_manager.go @@ -0,0 +1,152 @@ +package locking + +import ( + "github.com/aws/aws-sdk-go/service/dynamodb" + "github.com/aws/aws-sdk-go/aws/client" + "github.com/aws/aws-sdk-go/aws" + "github.com/pkg/errors" + "encoding/json" + "fmt" + "encoding/hex" + "github.com/aws/aws-sdk-go/service/dynamodb/dynamodbiface" +) + +type DynamoDBLockManager struct { + DB dynamodbiface.DynamoDBAPI + LockTable string +} + +func NewDynamoDBLockManager(lockTable string, p client.ConfigProvider) *DynamoDBLockManager { + return &DynamoDBLockManager{ + DB: dynamodb.New(p), + LockTable: lockTable, + } +} + +func (d *DynamoDBLockManager) TryLock(run Run) (TryLockResponse, error) { + var r TryLockResponse + newRunSerialized, err := d.serialize(run) + if err != nil { + return r, errors.Wrap(err, "serializing run data") + } + + // check if there is an existing lock + getItemParams := &dynamodb.GetItemInput{ + Key: map[string]*dynamodb.AttributeValue{ + "LockID": { + B: run.StateKey(), + }, + }, + TableName: aws.String(d.LockTable), + ConsistentRead: aws.Bool(true), + } + item, err := d.DB.GetItem(getItemParams) + if err != nil { + return r, errors.Wrap(err, "checking if lock exists") + } + + // if there is already a lock then we can't acquire a lock. Return the existing lock + if len(item.Item) != 0 { + runAttr, ok := item.Item["Run"] + if !ok || runAttr == nil || len(runAttr.B) == 0 { + return r, fmt.Errorf("found an existing lock at that id but it did not contain expected 'Run' key. We suggest manually deleting this key from DynamoDB") + } + var lockingRun Run + if err := d.deserialize(runAttr.B, &lockingRun); err != nil { + return r, errors.Wrap(err, "deserializing existing lock") + } + return TryLockResponse{ + LockAcquired: false, + LockingRun: lockingRun, + LockID: string(hex.EncodeToString(run.StateKey())), + }, nil + } + + // else we should be able to lock + putItem := &dynamodb.PutItemInput{ + Item: map[string]*dynamodb.AttributeValue{ + "LockID": {B: run.StateKey()}, + "Run": {B: newRunSerialized}, + }, + TableName: aws.String(d.LockTable), + // this will ensure that we don't insert the new item in a race situation + // where someone has written this key just after our read + ConditionExpression: aws.String("attribute_not_exists(LockID)"), + } + if _, err := d.DB.PutItem(putItem); err != nil { + return r, errors.Wrap(err, "writing lock") + } + return TryLockResponse{ + LockAcquired: true, + LockingRun: run, + LockID: string(hex.EncodeToString(run.StateKey())), + }, nil +} + +func (d *DynamoDBLockManager) Unlock(lockID string) error { + idAsBytes, err := hex.DecodeString(lockID) + if err != nil { + return errors.Wrap(err, "id was not in correct format") + } + + params := &dynamodb.DeleteItemInput{ + Key: map[string]*dynamodb.AttributeValue{ + "LockID": {B: idAsBytes}, + }, + TableName: aws.String(d.LockTable), + } + _, err = d.DB.DeleteItem(params) + return errors.Wrap(err, "deleting lock") +} + +func (d *DynamoDBLockManager) ListLocks() (map[string]Run, error) { + m := make(map[string]Run) + params := &dynamodb.ScanInput{ + ProjectionExpression: aws.String("LockID,Run"), + TableName: aws.String(d.LockTable), + } + + // loop to get all locks since if datasize is over 1MB the client will page. + // we're setting a counter here just in case something goes horribly wrong and we loop forever + var i int + var startKey map[string]*dynamodb.AttributeValue + for ; i < 1000; i++ { + params.SetExclusiveStartKey(startKey) + scanOut, err := d.DB.Scan(params) + if err != nil { + return m, errors.Wrap(err, "reading dynamodb") + } + for _, item := range scanOut.Items { + lockIDItem, ok := item["LockID"] + if !ok || lockIDItem == nil { + return m, fmt.Errorf("lock did not have expected key 'LockID'") + } + lockID := string(hex.EncodeToString(lockIDItem.B)) + runItem, ok := item["Run"] + if !ok || runItem == nil { + return m, fmt.Errorf("lock did not have expected key 'Run'") + } + + var run Run + if err := d.deserialize(runItem.B, &run); err != nil { + return m, fmt.Errorf("deserializing run at key %q: %s", lockID, err) + } + m[lockID] = run + } + startKey = scanOut.LastEvaluatedKey + + // if there are no more pages then we're done + if len(startKey) == 0 { + return m, nil + } + } + return m, errors.New("maxed out at 1000 scan iterations on the DynamoDB table. Something must be wrong") +} + +func (d *DynamoDBLockManager) deserialize(bs []byte, run *Run) error { + return json.Unmarshal(bs, run) +} + +func (d *DynamoDBLockManager) serialize(run Run) ([]byte, error) { + return json.Marshal(run) +} diff --git a/locking/dynamodb_lock_manager_test.go b/locking/dynamodb_lock_manager_test.go new file mode 100644 index 00000000..9e8b99fb --- /dev/null +++ b/locking/dynamodb_lock_manager_test.go @@ -0,0 +1,28 @@ +package locking_test + +import ( + "github.com/aws/aws-sdk-go/service/dynamodb/dynamodbiface" + "github.com/hootsuite/atlantis/locking" + "testing" + . "github.com/hootsuite/atlantis/testing_util" + "github.com/aws/aws-sdk-go/service/dynamodb" +) + +type mockDynamoDB struct { + dynamodbiface.DynamoDBAPI +} +func (m mockDynamoDB) Scan(s *dynamodb.ScanInput) (*dynamodb.ScanOutput, error) { + return &dynamodb.ScanOutput{ + Items: []map[string]*dynamodb.AttributeValue{}, + }, nil +} + +func TestListLocksEmpty(t *testing.T) { + lock := &locking.DynamoDBLockManager{ + &mockDynamoDB{}, + "lockTable", + } + m, err := lock.ListLocks() + Ok(t, err) + Equals(t, 0, len(m)) +} diff --git a/locking/lock_manager.go b/locking/lock_manager.go new file mode 100644 index 00000000..a78b88b6 --- /dev/null +++ b/locking/lock_manager.go @@ -0,0 +1,40 @@ +package locking + +import ( + "time" + "fmt" + "crypto/sha256" +) + +type Run struct { + RepoOwner string + RepoName string + Path string + Env string + PullID int + User string + Timestamp time.Time +} + +// StateKey returns the unique key to identify the set of infrastructure being modified by this run. +// Used in locking to determine what part of the infrastructure is locked. +func (r Run) StateKey() []byte { + // we combine the repository, path into the repo where terraform is being run and the environment + // to make up the state key and then hash it with sha256 + key := fmt.Sprintf("%s/%s/%s/%s", r.RepoOwner, r.RepoName, r.Path, r.Env) + h := sha256.New() + h.Write([]byte(key)) + return h.Sum(nil) +} + +type TryLockResponse struct { + LockAcquired bool + LockingRun Run // what is currently holding the lock + LockID string +} + +type LockManager interface { + TryLock(run Run) (TryLockResponse, error) + Unlock(lockID string) error + ListLocks() (map[string]Run, error) +} diff --git a/main.go b/main.go index ccb749ae..594a3672 100644 --- a/main.go +++ b/main.go @@ -2,35 +2,50 @@ package main import ( "encoding/json" - "errors" "fmt" "os" "strings" "github.com/urfave/cli" + "github.com/boltdb/bolt" + "time" + "github.com/pkg/errors" + "path" ) const ( + // flags ghUsernameFlag = "gh-username" - ghPasswordFlag = "gh-password" - ghHostnameFlag = "gh-hostname" - sshKeyFlag = "ssh-key" - portFlag = "port" - awsAssumeRoleFlag = "aws-assume-role-arn" - scratchDirFlag = "scratch-dir" - awsRegionFlag = "aws-region" - s3BucketFlag = "s3-bucket" - logLevelFlag = "log-level" - version = "2.0.0" - configFileFlag = "config-file" - requireApprovalFlag = "require-approval" + ghPasswordFlag = "gh-password" + ghHostnameFlag = "gh-hostname" + sshKeyFlag = "ssh-key" + portFlag = "port" + awsAssumeRoleFlag = "aws-assume-role-arn" + scratchDirFlag = "scratch-dir" + awsRegionFlag = "aws-region" + s3BucketFlag = "s3-bucket" + logLevelFlag = "log-level" + configFileFlag = "config-file" + requireApprovalFlag = "require-approval" + atlantisURLFlag = "atlantis-url" + dataDirFlag = "data-dir" + lockingBackendFlag = "locking-backend" + lockingTableFlag = "locking-table" - defaultGHHostname = "github.com" - defaultPort = 4141 - defaultScratchDir = "/tmp/atlantis" - defaultRegion = "us-east-1" - defaultS3Bucket = "atlantis" - defaultLogLevel = "info" + // defaults + boltDBRunLocksBucket = "runLocks" + version = "2.0.0" + defaultGHHostname = "github.com" + defaultPort = 4141 + defaultScratchDir = "/tmp/atlantis" + defaultRegion = "us-east-1" + defaultS3Bucket = "atlantis" + defaultLogLevel = "info" + defaultDataDir = "/var/lib/atlantis" + fileLockingBackend = "file" + dynamoDBLockingBackend = "dynamodb" + defaultLockingBackend = fileLockingBackend + defaultLockingTable = "atlantis-locks" ) type AtlantisConfig struct { @@ -44,7 +59,11 @@ type AtlantisConfig struct { AWSRegion *string `json:"aws-region"` S3Bucket *string `json:"s3-bucket"` LogLevel *string `json:"log-level"` + AtlantisURL *string `json:"atlantis-url"` RequireApproval bool `json:"require-approval"` + DataDir *string `json:"data-dir"` + LockingBackend *string `json:"locking-backend"` + LockingTable *string `json:"locking-table"` } func main() { @@ -54,13 +73,39 @@ func main() { app.Run(os.Args) } -// mainAction is the only "action" for this cli program. It starts the web server +// mainAction is the only "action" for this cli program. It starts the web server and initializes the bolt db func mainAction(c *cli.Context) error { - conf, err := validateConfig(c) + hostname, err := os.Hostname() + if err != nil { + return cli.NewExitError(fmt.Errorf("Failed to determine hostname: %v", err), 1) + } + conf, err := validateConfig(c, hostname) if err != nil { return cli.NewExitError(err.Error(), 1) } - return NewServer(conf).Start() + var db *bolt.DB + // if file is the locking backend then initialize the bolt DB + if conf.lockingBackend == fileLockingBackend { + if err := os.MkdirAll(conf.dataDir, 0755); err != nil { + return cli.NewExitError(fmt.Errorf("Failed to create data dir: %v", err), 1) + } + db, err = bolt.Open(path.Join(conf.dataDir, "atlantis.db"), 0600, &bolt.Options{Timeout: 1 * time.Second}) + if err != nil { + if err.Error() == "timeout" { + return cli.NewExitError(errors.New("Failed to start Bolt DB due to a timeout. A likely cause is Atlantis already running"), 1) + } + return cli.NewExitError(fmt.Errorf("Failed to start Bolt DB: %v", err), 1) + } + if err = initDB(db); err != nil { + return cli.NewExitError(fmt.Errorf("Failed to initialize Bolt DB: %v", err), 1) + } + defer db.Close() + } + server, err := NewServer(conf, db) + if err != nil { + return cli.NewExitError(fmt.Errorf("Failed to start server: %s", err), 1) + } + return server.Start() } // configureCli sets up the flags, name of the cli, etc. @@ -112,6 +157,10 @@ func configureCli(app *cli.App) { Value: defaultS3Bucket, Usage: "The S3 bucket name to store atlantis data (terraform plans, terraform state, etc.)", }, + cli.StringFlag{ + Name: atlantisURLFlag, + Usage: "The url that Atlantis can be reached at. Defaults to http, hostname, and configured port", + }, cli.BoolFlag{ Name: requireApprovalFlag, Usage: "Require pull requests to be \"Approved\" before allowing the apply command to be run", @@ -125,6 +174,21 @@ func configureCli(app *cli.App) { Name: configFileFlag, Usage: "Load configuration from `file`", }, + cli.StringFlag{ + Name: dataDirFlag, + Value: defaultDataDir, + Usage: "Directory to store Atlantis data", + }, + cli.StringFlag{ + Name: lockingBackendFlag, + Value: defaultLockingBackend, + Usage: "Which backend to use for locking: file (default) or dynamodb", + }, + cli.StringFlag{ + Name: lockingTableFlag, + Value: defaultLockingTable, + Usage: "Name of the DynamoDB table used for locking. Only required if locking-backend is set to dynamodb. Defaults to 'atlantis-locks'", + }, // todo: allow option of where to log // todo: network interface to bind to? by default localhost } @@ -139,7 +203,7 @@ version: {{.Version}}{{end}} ` } -func validateConfig(c *cli.Context) (*ServerConfig, error) { +func validateConfig(c *cli.Context, hostname string) (*ServerConfig, error) { // set defaults for non-required flags if not specified port := defaultPort ghHostname := defaultGHHostname @@ -152,6 +216,10 @@ func validateConfig(c *cli.Context) (*ServerConfig, error) { sshKey := "" assumeRole := "" requireApproval := false + atlantisURL := "" + dataDir := defaultDataDir + lockingBackend := defaultLockingBackend + lockingTable := defaultLockingTable // check if config file flag is set if c.IsSet(configFileFlag) { @@ -197,6 +265,18 @@ func validateConfig(c *cli.Context) (*ServerConfig, error) { if config.AssumeRole != nil { assumeRole = *config.AssumeRole } + if config.AtlantisURL != nil { + atlantisURL = *config.AtlantisURL + } + if config.DataDir != nil { + dataDir = *config.DataDir + } + if config.LockingBackend != nil { + lockingBackend = *config.LockingBackend + } + if config.LockingBackend != nil { + lockingTable = *config.LockingTable + } requireApproval = config.RequireApproval } @@ -241,10 +321,23 @@ func validateConfig(c *cli.Context) (*ServerConfig, error) { if c.IsSet(requireApprovalFlag) { requireApproval = c.Bool(requireApprovalFlag) } - + if c.IsSet(atlantisURLFlag) { + atlantisURL = c.String(atlantisURLFlag) + } else if atlantisURL == "" { + atlantisURL = fmt.Sprintf("http://%s:%d", hostname, port) + } if logLevel != "debug" && logLevel != "info" && logLevel != "warn" && logLevel != "error" { return nil, errors.New("Invalid log level") } + if c.IsSet(dataDirFlag) { + dataDir = c.String(dataDirFlag) + } + if c.IsSet(lockingBackendFlag) { + lockingBackend = c.String(lockingBackendFlag) + } + if c.IsSet(lockingTableFlag) { + lockingTable = c.String(lockingTableFlag) + } return &ServerConfig{ githubUsername: ghUsername, @@ -257,6 +350,19 @@ func validateConfig(c *cli.Context) (*ServerConfig, error) { awsRegion: awsRegion, s3Bucket: s3Bucket, logLevel: logLevel, + atlantisURL: atlantisURL, requireApproval: requireApproval, + dataDir: dataDir, + lockingBackend: lockingBackend, + lockingTable: lockingTable, }, nil } + +func initDB(db *bolt.DB) error { + return db.Update(func(tx *bolt.Tx) error { + if _, err := tx.CreateBucketIfNotExists([]byte(boltDBRunLocksBucket)); err != nil { + return errors.Wrap(err, "failed to create bucket") + } + return nil + }) +} diff --git a/main_test.go b/main_test.go index d8020349..bd617d14 100644 --- a/main_test.go +++ b/main_test.go @@ -9,8 +9,10 @@ import ( "os" "strings" "testing" + . "github.com/hootsuite/atlantis/testing_util" ) +var hostname = "hostname" var baseConfig *AtlantisConfig = &AtlantisConfig{ GithubHostname: stringPtr("test-gh-hostname"), GithubUsername: stringPtr("test-gh-username"), @@ -22,15 +24,17 @@ var baseConfig *AtlantisConfig = &AtlantisConfig{ AWSRegion: stringPtr("test-aws-region"), S3Bucket: stringPtr("test-s3-bucket"), LogLevel: stringPtr("info"), + AtlantisURL: stringPtr("http://test-atlantis-url"), RequireApproval: false, + DataDir: stringPtr("/datadir"), } func TestValidateConfig_missing_config_file_should_error(t *testing.T) { ctx := buildTestContext() - ok(t, ctx.Set(configFileFlag, "non-existent-file")) - _, err := validateConfig(ctx) - assert(t, err != nil, "expected an error") - assert(t, strings.Contains(err.Error(), "couldn't read config file"), "error did not contain expected message, was: %q", err.Error()) + Ok(t, ctx.Set(configFileFlag, "non-existent-file")) + _, err := validateConfig(ctx, hostname) + Assert(t, err != nil, "expected an error") + Assert(t, strings.Contains(err.Error(), "couldn't read config file"), "error did not contain expected message, was: %q", err.Error()) } func TestValidateConfig_non_json_config_file_should_error(t *testing.T) { @@ -38,28 +42,30 @@ func TestValidateConfig_non_json_config_file_should_error(t *testing.T) { defer os.Remove(configFile) ctx := buildTestContext() - ok(t, ctx.Set(configFileFlag, configFile)) - _, err := validateConfig(ctx) - assert(t, err != nil, "expected an error") - assert(t, strings.Contains(err.Error(), "failed to parse config file"), "error did not contain expected message, was: %q", err.Error()) + Ok(t, ctx.Set(configFileFlag, configFile)) + _, err := validateConfig(ctx, hostname) + Assert(t, err != nil, "expected an error") + Assert(t, strings.Contains(err.Error(), "failed to parse config file"), "error did not contain expected message, was: %q", err.Error()) } func TestValidateConfig_should_use_defaults(t *testing.T) { ctx := buildTestContext() - ok(t, ctx.Set(ghUsernameFlag, "gh-username")) - ok(t, ctx.Set(ghPasswordFlag, "gh-password")) - conf, err := validateConfig(ctx) - ok(t, err) - - equals(t, defaultGHHostname, conf.githubHostname) - equals(t, defaultPort, conf.port) - equals(t, defaultScratchDir, conf.scratchDir) - equals(t, defaultRegion, conf.awsRegion) - equals(t, defaultS3Bucket, conf.s3Bucket) - equals(t, defaultLogLevel, conf.logLevel) - equals(t, false, conf.requireApproval) - equals(t, "", conf.sshKey) - equals(t, "", conf.awsAssumeRole) + Ok(t, ctx.Set(ghUsernameFlag, "gh-username")) + Ok(t, ctx.Set(ghPasswordFlag, "gh-password")) + conf, err := validateConfig(ctx, hostname) + Ok(t, err) + + Equals(t, defaultGHHostname, conf.githubHostname) + Equals(t, defaultPort, conf.port) + Equals(t, defaultScratchDir, conf.scratchDir) + Equals(t, defaultRegion, conf.awsRegion) + Equals(t, defaultS3Bucket, conf.s3Bucket) + Equals(t, defaultLogLevel, conf.logLevel) + Equals(t, false, conf.requireApproval) + Equals(t, "", conf.sshKey) + Equals(t, "", conf.awsAssumeRole) + Equals(t, fmt.Sprintf("http://hostname:%d", defaultPort), conf.atlantisURL) + Equals(t, defaultDataDir, conf.dataDir) } func TestValidateConfig_config_file_should_work(t *testing.T) { @@ -67,49 +73,55 @@ func TestValidateConfig_config_file_should_work(t *testing.T) { defer os.Remove(configFile) ctx := buildTestContext() - ok(t, ctx.Set(configFileFlag, configFile)) - conf, err := validateConfig(ctx) - ok(t, err) - equals(t, "test-gh-hostname", conf.githubHostname) - equals(t, "test-gh-username", conf.githubUsername) - equals(t, "test-gh-password", conf.githubPassword) - equals(t, "test-ssh-key", conf.sshKey) - equals(t, "test-assume-role", conf.awsAssumeRole) - equals(t, 9999, conf.port) - equals(t, "test-scratch-dir", conf.scratchDir) - equals(t, "test-aws-region", conf.awsRegion) - equals(t, "test-s3-bucket", conf.s3Bucket) - equals(t, false, conf.requireApproval) - equals(t, "info", conf.logLevel) + Ok(t, ctx.Set(configFileFlag, configFile)) + conf, err := validateConfig(ctx, hostname) + Ok(t, err) + Equals(t, "test-gh-hostname", conf.githubHostname) + Equals(t, "test-gh-username", conf.githubUsername) + Equals(t, "test-gh-password", conf.githubPassword) + Equals(t, "test-ssh-key", conf.sshKey) + Equals(t, "test-assume-role", conf.awsAssumeRole) + Equals(t, 9999, conf.port) + Equals(t, "test-scratch-dir", conf.scratchDir) + Equals(t, "test-aws-region", conf.awsRegion) + Equals(t, "test-s3-bucket", conf.s3Bucket) + Equals(t, "info", conf.logLevel) + Equals(t, "http://test-atlantis-url", conf.atlantisURL) + Equals(t, false, conf.requireApproval) + Equals(t, "/datadir", conf.dataDir) } func TestValidateConfig_flags_should_work(t *testing.T) { ctx := buildTestContext() - ok(t, ctx.Set(ghHostnameFlag, "gh-hostname")) - ok(t, ctx.Set(ghUsernameFlag, "gh-username")) - ok(t, ctx.Set(ghPasswordFlag, "gh-password")) - ok(t, ctx.Set(sshKeyFlag, "ssh-key")) - ok(t, ctx.Set(awsAssumeRoleFlag, "assume-role")) - ok(t, ctx.Set(portFlag, "8888")) - ok(t, ctx.Set(scratchDirFlag, "scratch-dir")) - ok(t, ctx.Set(awsRegionFlag, "aws-region")) - ok(t, ctx.Set(s3BucketFlag, "s3-bucket")) - ok(t, ctx.Set(logLevelFlag, "debug")) - ok(t, ctx.Set(requireApprovalFlag, "true")) - - conf, err := validateConfig(ctx) - ok(t, err) - equals(t, "gh-hostname", conf.githubHostname) - equals(t, "gh-username", conf.githubUsername) - equals(t, "gh-password", conf.githubPassword) - equals(t, "ssh-key", conf.sshKey) - equals(t, "assume-role", conf.awsAssumeRole) - equals(t, 8888, conf.port) - equals(t, "scratch-dir", conf.scratchDir) - equals(t, "aws-region", conf.awsRegion) - equals(t, "s3-bucket", conf.s3Bucket) - equals(t, true, conf.requireApproval) - equals(t, "debug", conf.logLevel) + Ok(t, ctx.Set(ghHostnameFlag, "gh-hostname")) + Ok(t, ctx.Set(ghUsernameFlag, "gh-username")) + Ok(t, ctx.Set(ghPasswordFlag, "gh-password")) + Ok(t, ctx.Set(sshKeyFlag, "ssh-key")) + Ok(t, ctx.Set(awsAssumeRoleFlag, "assume-role")) + Ok(t, ctx.Set(portFlag, "8888")) + Ok(t, ctx.Set(scratchDirFlag, "scratch-dir")) + Ok(t, ctx.Set(awsRegionFlag, "aws-region")) + Ok(t, ctx.Set(s3BucketFlag, "s3-bucket")) + Ok(t, ctx.Set(logLevelFlag, "debug")) + Ok(t, ctx.Set(atlantisURLFlag, "http://new-atlantis-url")) + Ok(t, ctx.Set(requireApprovalFlag, "true")) + Ok(t, ctx.Set(dataDirFlag, "/new/dir")) + + conf, err := validateConfig(ctx, hostname) + Ok(t, err) + Equals(t, "gh-hostname", conf.githubHostname) + Equals(t, "gh-username", conf.githubUsername) + Equals(t, "gh-password", conf.githubPassword) + Equals(t, "ssh-key", conf.sshKey) + Equals(t, "assume-role", conf.awsAssumeRole) + Equals(t, 8888, conf.port) + Equals(t, "scratch-dir", conf.scratchDir) + Equals(t, "aws-region", conf.awsRegion) + Equals(t, "s3-bucket", conf.s3Bucket) + Equals(t, "debug", conf.logLevel) + Equals(t, "http://new-atlantis-url", conf.atlantisURL) + Equals(t, true, conf.requireApproval) + Equals(t, "/new/dir", conf.dataDir) } func TestValidateConfig_flags_should_override_config_file(t *testing.T) { @@ -117,34 +129,38 @@ func TestValidateConfig_flags_should_override_config_file(t *testing.T) { defer os.Remove(configFile) ctx := buildTestContext() - ok(t, ctx.Set(configFileFlag, configFile)) + Ok(t, ctx.Set(configFileFlag, configFile)) // override all flags - ok(t, ctx.Set(ghHostnameFlag, "overridden-gh-hostname")) - ok(t, ctx.Set(ghUsernameFlag, "overridden-gh-username")) - ok(t, ctx.Set(ghPasswordFlag, "overridden-gh-password")) - ok(t, ctx.Set(sshKeyFlag, "overridden-ssh-key")) - ok(t, ctx.Set(awsAssumeRoleFlag, "overridden-assume-role")) - ok(t, ctx.Set(portFlag, "8888")) - ok(t, ctx.Set(scratchDirFlag, "overridden-scratch-dir")) - ok(t, ctx.Set(awsRegionFlag, "overridden-aws-region")) - ok(t, ctx.Set(s3BucketFlag, "overridden-s3-bucket")) - ok(t, ctx.Set(requireApprovalFlag, "true")) - ok(t, ctx.Set(logLevelFlag, "debug")) - - conf, err := validateConfig(ctx) - ok(t, err) - equals(t, "overridden-gh-hostname", conf.githubHostname) - equals(t, "overridden-gh-username", conf.githubUsername) - equals(t, "overridden-gh-password", conf.githubPassword) - equals(t, "overridden-ssh-key", conf.sshKey) - equals(t, "overridden-assume-role", conf.awsAssumeRole) - equals(t, 8888, conf.port) - equals(t, "overridden-scratch-dir", conf.scratchDir) - equals(t, "overridden-aws-region", conf.awsRegion) - equals(t, "overridden-s3-bucket", conf.s3Bucket) - equals(t, true, conf.requireApproval) - equals(t, "debug", conf.logLevel) + Ok(t, ctx.Set(ghHostnameFlag, "overridden-gh-hostname")) + Ok(t, ctx.Set(ghUsernameFlag, "overridden-gh-username")) + Ok(t, ctx.Set(ghPasswordFlag, "overridden-gh-password")) + Ok(t, ctx.Set(sshKeyFlag, "overridden-ssh-key")) + Ok(t, ctx.Set(awsAssumeRoleFlag, "overridden-assume-role")) + Ok(t, ctx.Set(portFlag, "8888")) + Ok(t, ctx.Set(scratchDirFlag, "overridden-scratch-dir")) + Ok(t, ctx.Set(awsRegionFlag, "overridden-aws-region")) + Ok(t, ctx.Set(s3BucketFlag, "overridden-s3-bucket")) + Ok(t, ctx.Set(logLevelFlag, "debug")) + Ok(t, ctx.Set(atlantisURLFlag, "overridden-url")) + Ok(t, ctx.Set(requireApprovalFlag, "true")) + Ok(t, ctx.Set(dataDirFlag, "/overridden/dir")) + + conf, err := validateConfig(ctx, hostname) + Ok(t, err) + Equals(t, "overridden-gh-hostname", conf.githubHostname) + Equals(t, "overridden-gh-username", conf.githubUsername) + Equals(t, "overridden-gh-password", conf.githubPassword) + Equals(t, "overridden-ssh-key", conf.sshKey) + Equals(t, "overridden-assume-role", conf.awsAssumeRole) + Equals(t, 8888, conf.port) + Equals(t, "overridden-scratch-dir", conf.scratchDir) + Equals(t, "overridden-aws-region", conf.awsRegion) + Equals(t, "overridden-s3-bucket", conf.s3Bucket) + Equals(t, "debug", conf.logLevel) + Equals(t, "overridden-url", conf.atlantisURL) + Equals(t, true, conf.requireApproval) + Equals(t, "/overridden/dir", conf.dataDir) } func TestValidateConfig_missing_required_flags_should_error(t *testing.T) { @@ -153,12 +169,12 @@ func TestValidateConfig_missing_required_flags_should_error(t *testing.T) { for _, flag := range []string{ghUsernameFlag, ghPasswordFlag} { ctx := buildTestContext() - ok(t, ctx.Set(configFileFlag, configFile)) - ok(t, ctx.Set(flag, "")) - _, err := validateConfig(ctx) - assert(t, err != nil, "expected an error") + Ok(t, ctx.Set(configFileFlag, configFile)) + Ok(t, ctx.Set(flag, "")) + _, err := validateConfig(ctx, hostname) + Assert(t, err != nil, "expected an error") expected := fmt.Sprintf("Error: must specify the --%s flag", flag) - assert(t, strings.Contains(err.Error(), expected), "error did not contain expected message, was: %q, expected: %q", err.Error(), expected) + Assert(t, strings.Contains(err.Error(), expected), "error did not contain expected message, was: %q, expected: %q", err.Error(), expected) } } @@ -166,12 +182,12 @@ func TestValidateConfig_invalid_log_level_should_error(t *testing.T) { configFile := writeJSONConfigFile(t, baseConfig) defer os.Remove(configFile) ctx := buildTestContext() - ok(t, ctx.Set(configFileFlag, configFile)) - ok(t, ctx.Set(logLevelFlag, "invalid-level")) - _, err := validateConfig(ctx) - assert(t, err != nil, "expected an error") + Ok(t, ctx.Set(configFileFlag, configFile)) + Ok(t, ctx.Set(logLevelFlag, "invalid-level")) + _, err := validateConfig(ctx, hostname) + Assert(t, err != nil, "expected an error") expected := fmt.Sprintf("Invalid log level") - assert(t, strings.Contains(err.Error(), expected), "error did not contain expected message, was: %q, expected: %q", err.Error(), expected) + Assert(t, strings.Contains(err.Error(), expected), "error did not contain expected message, was: %q, expected: %q", err.Error(), expected) } func TestValidateConfig_valid_log_levels_should_validate(t *testing.T) { @@ -180,11 +196,11 @@ func TestValidateConfig_valid_log_levels_should_validate(t *testing.T) { for _, level := range []string{"debug", "info", "warn", "error"} { ctx := buildTestContext() - ok(t, ctx.Set(configFileFlag, configFile)) - ok(t, ctx.Set(logLevelFlag, level)) - conf, err := validateConfig(ctx) - assert(t, err == nil, "Did not expect error for valid log level %q: %v", level, err) - equals(t, level, conf.logLevel) + Ok(t, ctx.Set(configFileFlag, configFile)) + Ok(t, ctx.Set(logLevelFlag, level)) + conf, err := validateConfig(ctx, hostname) + Assert(t, err == nil, "Did not expect error for valid log level %q: %v", level, err) + Equals(t, level, conf.logLevel) } } @@ -194,24 +210,24 @@ func TestValidateConfig_uppercase_log_levels_should_validate(t *testing.T) { for _, level := range []string{"DEBUG", "INFO", "WARN", "ERROR"} { ctx := buildTestContext() - ok(t, ctx.Set(configFileFlag, configFile)) - ok(t, ctx.Set(logLevelFlag, level)) - conf, err := validateConfig(ctx) - assert(t, err == nil, "Did not expect error for valid log level %q: %v", level, err) - equals(t, strings.ToLower(level), conf.logLevel) + Ok(t, ctx.Set(configFileFlag, configFile)) + Ok(t, ctx.Set(logLevelFlag, level)) + conf, err := validateConfig(ctx, hostname) + Assert(t, err == nil, "Did not expect error for valid log level %q: %v", level, err) + Equals(t, strings.ToLower(level), conf.logLevel) } } func writeJSONConfigFile(t *testing.T, config *AtlantisConfig) string { bytes, err := json.Marshal(config) - ok(t, err) + Ok(t, err) return writeConfigFile(t, string(bytes)) } func writeConfigFile(t *testing.T, contents string) string { path := "/tmp/atlantis-test-config-file" invalidJSON := []byte(contents) - ok(t, ioutil.WriteFile(path, invalidJSON, 0644)) + Ok(t, ioutil.WriteFile(path, invalidJSON, 0644)) return path } diff --git a/middleware/middleware.go b/middleware/middleware.go index 9d72767a..23427b40 100644 --- a/middleware/middleware.go +++ b/middleware/middleware.go @@ -2,9 +2,8 @@ package middleware import ( "net/http" - - "github.com/hootsuite/atlantis/logging" "github.com/urfave/negroni" + "github.com/hootsuite/atlantis/logging" ) func NewNon200Logger(logger *logging.SimpleLogger) *FailedRequestLogger { @@ -12,7 +11,7 @@ func NewNon200Logger(logger *logging.SimpleLogger) *FailedRequestLogger { } // FailedRequestLogger logs the request when a response code >= 400 is sent -type FailedRequestLogger struct { +type FailedRequestLogger struct{ logger *logging.SimpleLogger } diff --git a/plan_executor.go b/plan_executor.go index 8348c81a..81ed4bff 100644 --- a/plan_executor.go +++ b/plan_executor.go @@ -1,7 +1,6 @@ package main import ( - "bytes" "errors" "fmt" "io/ioutil" @@ -9,19 +8,21 @@ import ( "os/exec" "path/filepath" "strings" - + "github.com/hootsuite/atlantis/locking" + "time" "github.com/hootsuite/atlantis/logging" ) -// PlanExecutor handles everything related to running the Terraform plan including integration with Stash, S3, Terraform, and Github +// PlanExecutor handles everything related to running the Terraform plan including integration with S3, Terraform, and Github type PlanExecutor struct { BaseExecutor + atlantisURL string } /** Result Types **/ type PlanSuccess struct { TerraformOutput string - DiscardPlanLink string + LockURL string } func (p PlanSuccess) Template() *CompiledTemplate { @@ -29,7 +30,7 @@ func (p PlanSuccess) Template() *CompiledTemplate { } type RunLockedFailure struct { - LockingPullLink string + LockingPullID int } func (r RunLockedFailure) Template() *CompiledTemplate { @@ -66,7 +67,6 @@ func (p *PlanExecutor) execute(ctx *ExecutionContext, prCtx *PullRequestContext) } func (p *PlanExecutor) setupAndPlan(ctx *ExecutionContext, prCtx *PullRequestContext) ExecutionResult { - stashCtx := p.stashContext(ctx) p.github.UpdateStatus(prCtx, "pending", "Planning...") // todo: lock when cloning or somehow separate workspaces @@ -184,7 +184,7 @@ func (p *PlanExecutor) setupAndPlan(ctx *ExecutionContext, prCtx *PullRequestCon p.terraform.tfExecutableName = "terraform" } } - generatePlanResponse := p.plan(ctx.log, p.stash, stashCtx, cloneDir, p.scratchDir, tfPlanName, s3Client, path, ctx.command.environment, s3Key, p.sshKey, ctx.pullCreator, config.StashPath) + generatePlanResponse := p.plan(ctx.log, prCtx, cloneDir, p.scratchDir, tfPlanName, s3Client, path, ctx.command.environment, s3Key, p.sshKey, ctx.pullCreator, config.StashPath) generatePlanResponse.Path = path.Relative planOutputs = append(planOutputs, generatePlanResponse) } @@ -195,8 +195,7 @@ func (p *PlanExecutor) setupAndPlan(ctx *ExecutionContext, prCtx *PullRequestCon // plan runs the steps necessary to run `terraform plan`. If there is an error, the error message will be encapsulated in error // and the GeneratePlanResponse struct will also contain the full log including the error func (p *PlanExecutor) plan(log *logging.SimpleLogger, - stash *StashPRClient, - stashCtx *StashPullRequestContext, + prCtx *PullRequestContext, repoDir string, planOutDir string, tfPlanName string, @@ -208,40 +207,40 @@ func (p *PlanExecutor) plan(log *logging.SimpleLogger, pullRequestCreator string, stashPath string) PathResult { log.Info("generating plan for path %q", path) - var discardUrl string - var remoteStatePath string + run := locking.Run{ + RepoOwner: prCtx.owner, + RepoName: prCtx.repoName, + Path: path.Relative, + Env: tfEnvName, + PullID: prCtx.number, + User: prCtx.terraformApplier, + Timestamp: time.Now(), + } // NOTE: THIS CODE IS TO SUPPORT TERRAFORM PROJECTS THAT AREN'T USING ATLANTIS CONFIG FILE. if stashPath == "" { - remoteStatePath, err := p.terraform.ConfigureRemoteState(log, path, tfEnvName, sshKey) + _, err := p.terraform.ConfigureRemoteState(log, path, tfEnvName, sshKey) if err != nil { return PathResult{ Status: "error", Result: GeneralError{fmt.Errorf("failed to configure remote state: %s", err)}, } } - - stashLockResponse := stash.LockState(log, stashCtx, remoteStatePath) - if !stashLockResponse.Success { - return PathResult{ - Status: "failure", - Result: RunLockedFailure{stashLockResponse.PullRequestLink}, - } + } + lockAttempt, err := p.lockManager.TryLock(run) + if err != nil { + return PathResult{ + Status:" failure", + Result: GeneralError{fmt.Errorf("failed to lock state: %v", err)}, } + } - discardUrl = stashLockResponse.DiscardUrl - } else { - // use state path from config file - remoteStatePath = generateStatePath(stashPath, tfEnvName) - stashLockResponse := stash.LockState(log, stashCtx, remoteStatePath) - if !stashLockResponse.Success { - return PathResult{ - Status: "failure", - Result: RunLockedFailure{stashLockResponse.PullRequestLink}, - } + // the run is locked unless the locking run is the same pull id as this run + if lockAttempt.LockAcquired == false && lockAttempt.LockingRun.PullID != prCtx.number { + return PathResult{ + Status: "failure", + Result: RunLockedFailure{lockAttempt.LockingRun.PullID}, } - - discardUrl = stashLockResponse.DiscardUrl } // Run terraform plan @@ -301,9 +300,10 @@ func (p *PlanExecutor) plan(log *logging.SimpleLogger, Output: output, } log.Err("error running terraform plan: %v", output) - log.Info("unlocking stash state since plan failed") - stash.UnlockState(log, stashCtx, remoteStatePath) - // todo: log if error locking state in stash + log.Info("unlocking state since plan failed") + if err := p.lockManager.Unlock(lockAttempt.LockID); err != nil { + log.Err("error unlocking state: %v", err) + } return PathResult{ Status: "failure", Result: err, @@ -314,8 +314,9 @@ func (p *PlanExecutor) plan(log *logging.SimpleLogger, if err := UploadPlanFile(s3Client, s3Key, tfPlanOutputPath); err != nil { err = fmt.Errorf("failed to upload to S3: %v", err) log.Err(err.Error()) - stash.UnlockState(log, stashCtx, remoteStatePath) - // todo: log if error locking state in stash + if err := p.lockManager.Unlock(lockAttempt.LockID); err != nil { + log.Err("error unlocking state: %v", err) + } return PathResult{ Status: "error", Result: GeneralError{err}, @@ -332,7 +333,7 @@ func (p *PlanExecutor) plan(log *logging.SimpleLogger, Status: "success", Result: PlanSuccess{ TerraformOutput: output, - DiscardPlanLink: stashUrl + discardUrl, // todo: stashUrl shouldn't be here, wrong level of abstraction + LockURL: fmt.Sprintf("%s%s/%s?method=DELETE", p.atlantisURL, lockPath, lockAttempt.LockID), }, } } @@ -358,15 +359,6 @@ func (p *PlanExecutor) trimSuffix(s, suffix string) string { return s } -func concatStr(s []string) string { - var buffer bytes.Buffer - for _, str := range s { - buffer.WriteString(str) - } - - return buffer.String() -} - func (p *PlanExecutor) removeDuplicates(paths []ExecutionPath) []ExecutionPath { deDuped := []ExecutionPath{} seen := map[ExecutionPath]bool{} diff --git a/pre_run.go b/pre_run.go index 003ea1bd..92e75663 100644 --- a/pre_run.go +++ b/pre_run.go @@ -6,7 +6,6 @@ import ( "io/ioutil" "os" "os/exec" - "github.com/hootsuite/atlantis/logging" ) diff --git a/pre_run_test.go b/pre_run_test.go index dbe5d313..17c4ce1a 100644 --- a/pre_run_test.go +++ b/pre_run_test.go @@ -4,11 +4,11 @@ import ( "log" "os" "testing" - + . "github.com/hootsuite/atlantis/testing_util" "github.com/hootsuite/atlantis/logging" ) -var level = logging.Info +var level logging.LogLevel = logging.Info var logger = &logging.SimpleLogger{ Source: "server", Log: log.New(os.Stderr, "", log.LstdFlags), @@ -17,30 +17,30 @@ var logger = &logging.SimpleLogger{ func TestPreRunCreateScript_empty(t *testing.T) { scriptName, err := createScript(nil) - assert(t, scriptName == "", "there should not be a script name") - assert(t, err == nil, "there should not be an error") + Assert(t, scriptName == "", "there should not be a script name") + Assert(t, err == nil, "there should not be an error") } func TestPreRunCreateScript_valid(t *testing.T) { cmds := []string{"echo", "date"} scriptName, err := createScript(cmds) - assert(t, scriptName != "", "there should be a script name") - assert(t, err == nil, "there should not be an error") + Assert(t, scriptName != "", "there should be a script name") + Assert(t, err == nil, "there should not be an error") } func TestPreRunExecuteScript_invalid(t *testing.T) { cmds := []string{"invalid", "command"} scriptName, _ := createScript(cmds) _, err := execute(scriptName) - assert(t, err != nil, "there should be an error") + Assert(t, err != nil, "there should be an error") } func TestPreRunExecuteScript_valid(t *testing.T) { cmds := []string{"echo", "date"} scriptName, _ := createScript(cmds) output, err := execute(scriptName) - assert(t, err == nil, "there should not be an error") - assert(t, output != "", "there should be output") + Assert(t, err == nil, "there should not be an error") + Assert(t, output != "", "there should be output") } func TestPreRun_valid(t *testing.T) { @@ -52,7 +52,7 @@ func TestPreRun_valid(t *testing.T) { config.PreApply = preApply config.StashPath = "/some/path" err := PreRun(&config, logger, "/some/path", &Command{environment: "staging", commandType: Plan}) - assert(t, err == nil, "should not error") + Assert(t, err == nil, "should not error") } @@ -63,6 +63,5 @@ func TestPreRun_partial_valid(t *testing.T) { config.PrePlan = prePlan config.StashPath = "/some/path" err := PreRun(&config, logger, "/some/path", &Command{environment: "staging", commandType: Plan}) - assert(t, err == nil, "should not error") - + Assert(t, err == nil, "should not error") } diff --git a/request_parser.go b/request_parser.go index 33529b2d..21b610c4 100644 --- a/request_parser.go +++ b/request_parser.go @@ -66,7 +66,7 @@ func (r *RequestParser) determineCommand(comment *github.IssueCommentEvent) (*Co } func (r *RequestParser) extractCommentData(comment *github.IssueCommentEvent, params *ExecutionContext) error { - missingField := "" // todo move this to shared + missingField := "" owner := comment.Repo.Owner.Login if owner == nil { diff --git a/server.go b/server.go index 97795444..9cea37fd 100644 --- a/server.go +++ b/server.go @@ -2,21 +2,29 @@ package main import ( "context" - "encoding/json" "fmt" "log" "net/http" "net/url" "os" "strings" + "encoding/json" - "github.com/elazarl/go-bindata-assetfs" "github.com/google/go-github/github" - "github.com/hootsuite/atlantis/logging" - "github.com/hootsuite/atlantis/middleware" - "github.com/hootsuite/atlantis/recovery" "github.com/urfave/cli" + "github.com/hootsuite/atlantis/recovery" + "github.com/hootsuite/atlantis/locking" + "github.com/boltdb/bolt" "github.com/urfave/negroni" + "github.com/hootsuite/atlantis/middleware" + "github.com/hootsuite/atlantis/logging" + "github.com/elazarl/go-bindata-assetfs" + "github.com/gorilla/mux" + "github.com/pkg/errors" +) + +const ( + lockPath = "/locks" ) // WebhookServer listens for Github webhooks and runs the necessary Atlantis command @@ -33,20 +41,25 @@ type Server struct { logger *logging.SimpleLogger githubComments *GithubCommentRenderer requestParser *RequestParser + lockManager locking.LockManager } type ServerConfig struct { - githubUsername string - githubPassword string - githubHostname string - sshKey string - awsAssumeRole string - port int - scratchDir string - awsRegion string - s3Bucket string - logLevel string - requireApproval bool + githubUsername string + githubPassword string + githubHostname string + sshKey string + awsAssumeRole string + port int + scratchDir string + awsRegion string + s3Bucket string + logLevel string + atlantisURL string + requireApproval bool + dataDir string + lockingBackend string + lockingTable string } type ExecutionContext struct { @@ -59,16 +72,16 @@ type ExecutionContext struct { repoSSHUrl string head string // commit base sha - base string - pullLink string - branch string - htmlUrl string - pullCreator string - command *Command + base string + pullLink string + branch string + htmlUrl string + pullCreator string + command *Command log *logging.SimpleLogger } -func NewServer(config *ServerConfig) *Server { +func NewServer(config *ServerConfig, db *bolt.DB) (*Server, error) { tp := github.BasicAuthTransport{ Username: strings.TrimSpace(config.githubUsername), Password: strings.TrimSpace(config.githubPassword), @@ -77,7 +90,6 @@ func NewServer(config *ServerConfig) *Server { githubClientCtx := context.Background() githubBaseClient.BaseURL, _ = url.Parse(fmt.Sprintf("https://%s/api/v3/", config.githubHostname)) githubClient := &GithubClient{client: githubBaseClient, ctx: githubClientCtx} - stashClient := &StashClient{} terraformClient := &TerraformClient{ tfExecutableName: "terraform", } @@ -86,19 +98,29 @@ func NewServer(config *ServerConfig) *Server { AWSRegion: config.awsRegion, AWSRoleArn: config.awsAssumeRole, } + var lockManager locking.LockManager + if config.lockingBackend == dynamoDBLockingBackend { + session, err := awsConfig.CreateAWSSession() + if err != nil { + return nil, errors.Wrap(err, "creating aws session for DynamoDB") + } + lockManager = locking.NewDynamoDBLockManager(config.lockingTable, session) + } else { + lockManager = locking.NewBoltDBLockManager(db, boltDBRunLocksBucket) + } baseExecutor := BaseExecutor{ github: githubClient, awsConfig: awsConfig, scratchDir: config.scratchDir, s3Bucket: config.s3Bucket, sshKey: config.sshKey, - stash: &StashPRClient{client: stashClient}, ghComments: githubComments, terraform: terraformClient, githubCommentRenderer: githubComments, + lockManager: lockManager, } applyExecutor := &ApplyExecutor{BaseExecutor: baseExecutor, requireApproval: config.requireApproval, atlantisGithubUser: config.githubUsername} - planExecutor := &PlanExecutor{BaseExecutor: baseExecutor} + planExecutor := &PlanExecutor{BaseExecutor: baseExecutor, atlantisURL: config.atlantisURL} helpExecutor := &HelpExecutor{BaseExecutor: baseExecutor} logger := logging.NewSimpleLogger("server", log.New(os.Stderr, "", log.LstdFlags), false, logging.ToLogLevel(config.logLevel)) return &Server{ @@ -114,14 +136,23 @@ func NewServer(config *ServerConfig) *Server { logger: logger, githubComments: githubComments, requestParser: &RequestParser{}, - } + lockManager: lockManager, + }, nil } func (s *Server) Start() error { - router := http.NewServeMux() - router.HandleFunc("/", s.index) - router.Handle("/static/", http.FileServer(&assetfs.AssetFS{Asset: Asset, AssetDir: AssetDir, AssetInfo: AssetInfo})) - router.HandleFunc("/hooks", s.postHooks) + router := mux.NewRouter() + router.HandleFunc("/", s.index).Methods("GET").MatcherFunc(func(r *http.Request, rm *mux.RouteMatch) bool { + return r.URL.Path == "/" || r.URL.Path == "/index.html" + }) + router.PathPrefix("/static/").Handler(http.FileServer(&assetfs.AssetFS{Asset: Asset, AssetDir: AssetDir, AssetInfo: AssetInfo})) + router.HandleFunc("/hooks", s.postHooks).Methods("POST") + router.HandleFunc("/locks/{id}", s.deleteLock).Methods("DELETE") + // todo: remove this route when there is a detail view + // right now we need this route because from the pull request comment in GitHub only a GET request can be made + // in the future, the pull discard link will link to the detail view which will have a Delete button which will + // make an real DELETE call but we don't have a detail view right now + router.HandleFunc("/locks/{id}", s.deleteLock).Queries("method", "DELETE").Methods("GET") n := negroni.New(&negroni.Recovery{ Logger: log.New(os.Stdout, "", log.LstdFlags), PrintStack: false, @@ -134,33 +165,42 @@ func (s *Server) Start() error { } func (s *Server) index(w http.ResponseWriter, r *http.Request) { - if r.URL.Path != "/" && r.URL.Path != "/index.html" { - http.NotFound(w, r) + locks, err := s.lockManager.ListLocks() + if err != nil { + w.WriteHeader(http.StatusServiceUnavailable) + fmt.Fprintf(w, "Could not retrieve locks: %s", err) return } - // this is just a placeholder to test the ui - type result struct { - RepoOwner string - RepoName string - PullRequestId int - Timestamp string - } - res := result{} - res.RepoOwner = "anubhavmishra" - res.RepoName = "atlantis-test" - res.PullRequestId = 10 - res.Timestamp = "2017-05-08T11:18:43.91646206-07:00" - - var results []result - results = append(results, res) + + type runLock struct { + locking.Run + ID string + } + var results []runLock + for id, v := range locks { + results = append(results, runLock{ + v, + id, + }) + } indexTemplate.Execute(w, results) } -func (s *Server) postHooks(w http.ResponseWriter, r *http.Request) { - if r.Method != "POST" { - http.NotFound(w, r) +func (s *Server) deleteLock(w http.ResponseWriter, r *http.Request) { + id, ok := mux.Vars(r)["id"] + if !ok { + w.WriteHeader(http.StatusBadRequest) + fmt.Fprint(w, "no lock id in request") + } + if err := s.lockManager.Unlock(id); err != nil { + w.WriteHeader(http.StatusBadRequest) + fmt.Fprintf(w, "Failed to unlock: %s", err) return } + fmt.Fprint(w, "Unlocked successfully") +} + +func (s *Server) postHooks(w http.ResponseWriter, r *http.Request) { githubReqID := "X-Github-Delivery=" + r.Header.Get("X-Github-Delivery") // try to parse webhook data as a comment event diff --git a/stash_client.go b/stash_client.go deleted file mode 100644 index dcece480..00000000 --- a/stash_client.go +++ /dev/null @@ -1,72 +0,0 @@ -package main - -import ( - "bytes" - "encoding/json" - "io/ioutil" - "net/http" - - "github.com/hootsuite/atlantis/logging" -) - -const stashUrl = "http://stash.hootops.com" - -type StashClient struct{} - -type StashLockResponse struct { - Message string `json:"message"` - PullRequestLink string `json:"pull_request_link"` - DiscardUrl string `json:"discard_url"` - StatusCode int64 `json:"status_code"` - Success bool `json:"success"` -} - -type StashUnlockResponse struct { - Message string `json:"message"` - Success bool `json:"success"` -} - -// todo: refactor so this returns error -func (s *StashClient) LockState(log *logging.SimpleLogger, path string, state []byte) StashLockResponse { - req, err := http.NewRequest("POST", stashUrl+"/lock/"+path, bytes.NewBuffer(state)) - req.Header.Set("Content-Type", "application/json") - - client := &http.Client{} - resp, err := client.Do(req) - if err != nil { - log.Err("failed making lock request to Stash: %v", err) - } - defer resp.Body.Close() - body, _ := ioutil.ReadAll(resp.Body) - log.Debug("stash response body: %s", string(body)) - - var jsonData StashLockResponse - err = json.Unmarshal(body, &jsonData) - if err != nil { - log.Err("failed parsing lock stash response: %v", err) - } - - return jsonData -} - -func (s *StashClient) UnlockState(log *logging.SimpleLogger, path string, state []byte) StashUnlockResponse { - req, err := http.NewRequest("POST", stashUrl+"/unlock/"+path, bytes.NewBuffer(state)) - req.Header.Set("Content-Type", "application/json") - - client := &http.Client{} - resp, err := client.Do(req) - if err != nil { - log.Err("failed making unlock request to Stash: %v", err) - } - defer resp.Body.Close() - body, _ := ioutil.ReadAll(resp.Body) - log.Info("stash response body: %s", string(body)) - - var jsonData StashUnlockResponse - err = json.Unmarshal(body, &jsonData) - if err != nil { - log.Err("failed parsing unlock stash response: %v", err) - } - - return jsonData -} diff --git a/stash_pr_client.go b/stash_pr_client.go deleted file mode 100644 index 933a01e7..00000000 --- a/stash_pr_client.go +++ /dev/null @@ -1,45 +0,0 @@ -package main - -import ( - "encoding/json" - "fmt" - - "github.com/hootsuite/atlantis/logging" -) - -type StashPullRequestContext struct { - owner string - repoName string - number int - pullRequestLink string - terraformApplier string - terraformApplierEmail string -} - -type StashPRClient struct { - client *StashClient -} - -func (s *StashPRClient) LockState(log *logging.SimpleLogger, ctx *StashPullRequestContext, path string) StashLockResponse { - state := map[string]string{ - "pull_request_id": fmt.Sprintf("%d", ctx.number), - "pull_request_link": ctx.pullRequestLink, - "owner_name": ctx.owner, - "repo_name": ctx.repoName, - "terraform_applier": ctx.terraformApplier, - "terraform_applier_email": ctx.terraformApplierEmail, - } - stateJson, _ := json.Marshal(state) // todo: swallowing error here since don't want to construct StashLockResponse, but I think that StashLockResponse should not encapsulate the idea of an error - return s.client.LockState(log, path, stateJson) -} - -func (s *StashPRClient) UnlockState(log *logging.SimpleLogger, ctx *StashPullRequestContext, path string) StashUnlockResponse { - state := map[string]string{ - "pull_request_link": ctx.pullRequestLink, - "terraform_applier": ctx.terraformApplier, - "repo_name": ctx.repoName, - "terraform_applier_email": ctx.terraformApplierEmail, - } - stateJson, _ := json.Marshal(state) // todo: swallowing error here since don't want to construct StashLockResponse, but I think that StashLockResponse should not encapsulate the idea of an error - return s.client.UnlockState(log, path, stateJson) -} diff --git a/static/css/custom.css b/static/css/custom.css index bb2b9400..999a2161 100644 --- a/static/css/custom.css +++ b/static/css/custom.css @@ -142,7 +142,7 @@ tbody { -webkit-filter: drop-shadow(0 0 6px rgba(0,0,0,.1)); -moz-filter: drop-shadow(0 0 6px rgba(0,0,0,.1)); filter: drop-shadow(0 0 6px rgba(0,0,0,.1)); } - .popover-item:first-child .popover-link:after, + .popover-item:first-child .popover-link:after, .popover-item:first-child .popover-link:before { bottom: 100%; left: 50%; @@ -232,4 +232,21 @@ tbody { background-color: #E74C3C; border: #E74C3C; color: #FFFFFF; -} \ No newline at end of file +} +.unlock{ + height: 16px; + margin-top: 12px; + line-height: 18px; + padding: 0 10px; + font-family: monospace; +} +.list-unlock{ + float: right; +} +.lock-row{ + cursor: default; +} +.unlock-link{ + color: #555; + text-decoration: none; +} diff --git a/static/js/jquery-1.11.3.min.js b/static/js/jquery-1.11.3.min.js deleted file mode 100644 index 0f60b7bd..00000000 --- a/static/js/jquery-1.11.3.min.js +++ /dev/null @@ -1,5 +0,0 @@ -/*! jQuery v1.11.3 | (c) 2005, 2015 jQuery Foundation, Inc. | jquery.org/license */ -!function(a,b){"object"==typeof module&&"object"==typeof module.exports?module.exports=a.document?b(a,!0):function(a){if(!a.document)throw new Error("jQuery requires a window with a document");return b(a)}:b(a)}("undefined"!=typeof window?window:this,function(a,b){var c=[],d=c.slice,e=c.concat,f=c.push,g=c.indexOf,h={},i=h.toString,j=h.hasOwnProperty,k={},l="1.11.3",m=function(a,b){return new m.fn.init(a,b)},n=/^[\s\uFEFF\xA0]+|[\s\uFEFF\xA0]+$/g,o=/^-ms-/,p=/-([\da-z])/gi,q=function(a,b){return b.toUpperCase()};m.fn=m.prototype={jquery:l,constructor:m,selector:"",length:0,toArray:function(){return d.call(this)},get:function(a){return null!=a?0>a?this[a+this.length]:this[a]:d.call(this)},pushStack:function(a){var b=m.merge(this.constructor(),a);return b.prevObject=this,b.context=this.context,b},each:function(a,b){return m.each(this,a,b)},map:function(a){return this.pushStack(m.map(this,function(b,c){return a.call(b,c,b)}))},slice:function(){return this.pushStack(d.apply(this,arguments))},first:function(){return this.eq(0)},last:function(){return this.eq(-1)},eq:function(a){var b=this.length,c=+a+(0>a?b:0);return this.pushStack(c>=0&&b>c?[this[c]]:[])},end:function(){return this.prevObject||this.constructor(null)},push:f,sort:c.sort,splice:c.splice},m.extend=m.fn.extend=function(){var a,b,c,d,e,f,g=arguments[0]||{},h=1,i=arguments.length,j=!1;for("boolean"==typeof g&&(j=g,g=arguments[h]||{},h++),"object"==typeof g||m.isFunction(g)||(g={}),h===i&&(g=this,h--);i>h;h++)if(null!=(e=arguments[h]))for(d in e)a=g[d],c=e[d],g!==c&&(j&&c&&(m.isPlainObject(c)||(b=m.isArray(c)))?(b?(b=!1,f=a&&m.isArray(a)?a:[]):f=a&&m.isPlainObject(a)?a:{},g[d]=m.extend(j,f,c)):void 0!==c&&(g[d]=c));return g},m.extend({expando:"jQuery"+(l+Math.random()).replace(/\D/g,""),isReady:!0,error:function(a){throw new Error(a)},noop:function(){},isFunction:function(a){return"function"===m.type(a)},isArray:Array.isArray||function(a){return"array"===m.type(a)},isWindow:function(a){return null!=a&&a==a.window},isNumeric:function(a){return!m.isArray(a)&&a-parseFloat(a)+1>=0},isEmptyObject:function(a){var b;for(b in a)return!1;return!0},isPlainObject:function(a){var b;if(!a||"object"!==m.type(a)||a.nodeType||m.isWindow(a))return!1;try{if(a.constructor&&!j.call(a,"constructor")&&!j.call(a.constructor.prototype,"isPrototypeOf"))return!1}catch(c){return!1}if(k.ownLast)for(b in a)return j.call(a,b);for(b in a);return void 0===b||j.call(a,b)},type:function(a){return null==a?a+"":"object"==typeof a||"function"==typeof a?h[i.call(a)]||"object":typeof a},globalEval:function(b){b&&m.trim(b)&&(a.execScript||function(b){a.eval.call(a,b)})(b)},camelCase:function(a){return a.replace(o,"ms-").replace(p,q)},nodeName:function(a,b){return a.nodeName&&a.nodeName.toLowerCase()===b.toLowerCase()},each:function(a,b,c){var d,e=0,f=a.length,g=r(a);if(c){if(g){for(;f>e;e++)if(d=b.apply(a[e],c),d===!1)break}else for(e in a)if(d=b.apply(a[e],c),d===!1)break}else if(g){for(;f>e;e++)if(d=b.call(a[e],e,a[e]),d===!1)break}else for(e in a)if(d=b.call(a[e],e,a[e]),d===!1)break;return a},trim:function(a){return null==a?"":(a+"").replace(n,"")},makeArray:function(a,b){var c=b||[];return null!=a&&(r(Object(a))?m.merge(c,"string"==typeof a?[a]:a):f.call(c,a)),c},inArray:function(a,b,c){var d;if(b){if(g)return g.call(b,a,c);for(d=b.length,c=c?0>c?Math.max(0,d+c):c:0;d>c;c++)if(c in b&&b[c]===a)return c}return-1},merge:function(a,b){var c=+b.length,d=0,e=a.length;while(c>d)a[e++]=b[d++];if(c!==c)while(void 0!==b[d])a[e++]=b[d++];return a.length=e,a},grep:function(a,b,c){for(var d,e=[],f=0,g=a.length,h=!c;g>f;f++)d=!b(a[f],f),d!==h&&e.push(a[f]);return e},map:function(a,b,c){var d,f=0,g=a.length,h=r(a),i=[];if(h)for(;g>f;f++)d=b(a[f],f,c),null!=d&&i.push(d);else for(f in a)d=b(a[f],f,c),null!=d&&i.push(d);return e.apply([],i)},guid:1,proxy:function(a,b){var c,e,f;return"string"==typeof b&&(f=a[b],b=a,a=f),m.isFunction(a)?(c=d.call(arguments,2),e=function(){return a.apply(b||this,c.concat(d.call(arguments)))},e.guid=a.guid=a.guid||m.guid++,e):void 0},now:function(){return+new Date},support:k}),m.each("Boolean Number String Function Array Date RegExp Object Error".split(" "),function(a,b){h["[object "+b+"]"]=b.toLowerCase()});function r(a){var b="length"in a&&a.length,c=m.type(a);return"function"===c||m.isWindow(a)?!1:1===a.nodeType&&b?!0:"array"===c||0===b||"number"==typeof b&&b>0&&b-1 in a}var s=function(a){var b,c,d,e,f,g,h,i,j,k,l,m,n,o,p,q,r,s,t,u="sizzle"+1*new Date,v=a.document,w=0,x=0,y=ha(),z=ha(),A=ha(),B=function(a,b){return a===b&&(l=!0),0},C=1<<31,D={}.hasOwnProperty,E=[],F=E.pop,G=E.push,H=E.push,I=E.slice,J=function(a,b){for(var c=0,d=a.length;d>c;c++)if(a[c]===b)return c;return-1},K="checked|selected|async|autofocus|autoplay|controls|defer|disabled|hidden|ismap|loop|multiple|open|readonly|required|scoped",L="[\\x20\\t\\r\\n\\f]",M="(?:\\\\.|[\\w-]|[^\\x00-\\xa0])+",N=M.replace("w","w#"),O="\\["+L+"*("+M+")(?:"+L+"*([*^$|!~]?=)"+L+"*(?:'((?:\\\\.|[^\\\\'])*)'|\"((?:\\\\.|[^\\\\\"])*)\"|("+N+"))|)"+L+"*\\]",P=":("+M+")(?:\\((('((?:\\\\.|[^\\\\'])*)'|\"((?:\\\\.|[^\\\\\"])*)\")|((?:\\\\.|[^\\\\()[\\]]|"+O+")*)|.*)\\)|)",Q=new RegExp(L+"+","g"),R=new RegExp("^"+L+"+|((?:^|[^\\\\])(?:\\\\.)*)"+L+"+$","g"),S=new RegExp("^"+L+"*,"+L+"*"),T=new RegExp("^"+L+"*([>+~]|"+L+")"+L+"*"),U=new RegExp("="+L+"*([^\\]'\"]*?)"+L+"*\\]","g"),V=new RegExp(P),W=new RegExp("^"+N+"$"),X={ID:new RegExp("^#("+M+")"),CLASS:new RegExp("^\\.("+M+")"),TAG:new RegExp("^("+M.replace("w","w*")+")"),ATTR:new RegExp("^"+O),PSEUDO:new RegExp("^"+P),CHILD:new RegExp("^:(only|first|last|nth|nth-last)-(child|of-type)(?:\\("+L+"*(even|odd|(([+-]|)(\\d*)n|)"+L+"*(?:([+-]|)"+L+"*(\\d+)|))"+L+"*\\)|)","i"),bool:new RegExp("^(?:"+K+")$","i"),needsContext:new RegExp("^"+L+"*[>+~]|:(even|odd|eq|gt|lt|nth|first|last)(?:\\("+L+"*((?:-\\d)?\\d*)"+L+"*\\)|)(?=[^-]|$)","i")},Y=/^(?:input|select|textarea|button)$/i,Z=/^h\d$/i,$=/^[^{]+\{\s*\[native \w/,_=/^(?:#([\w-]+)|(\w+)|\.([\w-]+))$/,aa=/[+~]/,ba=/'|\\/g,ca=new RegExp("\\\\([\\da-f]{1,6}"+L+"?|("+L+")|.)","ig"),da=function(a,b,c){var d="0x"+b-65536;return d!==d||c?b:0>d?String.fromCharCode(d+65536):String.fromCharCode(d>>10|55296,1023&d|56320)},ea=function(){m()};try{H.apply(E=I.call(v.childNodes),v.childNodes),E[v.childNodes.length].nodeType}catch(fa){H={apply:E.length?function(a,b){G.apply(a,I.call(b))}:function(a,b){var c=a.length,d=0;while(a[c++]=b[d++]);a.length=c-1}}}function ga(a,b,d,e){var f,h,j,k,l,o,r,s,w,x;if((b?b.ownerDocument||b:v)!==n&&m(b),b=b||n,d=d||[],k=b.nodeType,"string"!=typeof a||!a||1!==k&&9!==k&&11!==k)return d;if(!e&&p){if(11!==k&&(f=_.exec(a)))if(j=f[1]){if(9===k){if(h=b.getElementById(j),!h||!h.parentNode)return d;if(h.id===j)return d.push(h),d}else if(b.ownerDocument&&(h=b.ownerDocument.getElementById(j))&&t(b,h)&&h.id===j)return d.push(h),d}else{if(f[2])return H.apply(d,b.getElementsByTagName(a)),d;if((j=f[3])&&c.getElementsByClassName)return H.apply(d,b.getElementsByClassName(j)),d}if(c.qsa&&(!q||!q.test(a))){if(s=r=u,w=b,x=1!==k&&a,1===k&&"object"!==b.nodeName.toLowerCase()){o=g(a),(r=b.getAttribute("id"))?s=r.replace(ba,"\\$&"):b.setAttribute("id",s),s="[id='"+s+"'] ",l=o.length;while(l--)o[l]=s+ra(o[l]);w=aa.test(a)&&pa(b.parentNode)||b,x=o.join(",")}if(x)try{return H.apply(d,w.querySelectorAll(x)),d}catch(y){}finally{r||b.removeAttribute("id")}}}return i(a.replace(R,"$1"),b,d,e)}function ha(){var a=[];function b(c,e){return a.push(c+" ")>d.cacheLength&&delete b[a.shift()],b[c+" "]=e}return b}function ia(a){return a[u]=!0,a}function ja(a){var b=n.createElement("div");try{return!!a(b)}catch(c){return!1}finally{b.parentNode&&b.parentNode.removeChild(b),b=null}}function ka(a,b){var c=a.split("|"),e=a.length;while(e--)d.attrHandle[c[e]]=b}function la(a,b){var c=b&&a,d=c&&1===a.nodeType&&1===b.nodeType&&(~b.sourceIndex||C)-(~a.sourceIndex||C);if(d)return d;if(c)while(c=c.nextSibling)if(c===b)return-1;return a?1:-1}function ma(a){return function(b){var c=b.nodeName.toLowerCase();return"input"===c&&b.type===a}}function na(a){return function(b){var c=b.nodeName.toLowerCase();return("input"===c||"button"===c)&&b.type===a}}function oa(a){return ia(function(b){return b=+b,ia(function(c,d){var e,f=a([],c.length,b),g=f.length;while(g--)c[e=f[g]]&&(c[e]=!(d[e]=c[e]))})})}function pa(a){return a&&"undefined"!=typeof a.getElementsByTagName&&a}c=ga.support={},f=ga.isXML=function(a){var b=a&&(a.ownerDocument||a).documentElement;return b?"HTML"!==b.nodeName:!1},m=ga.setDocument=function(a){var b,e,g=a?a.ownerDocument||a:v;return g!==n&&9===g.nodeType&&g.documentElement?(n=g,o=g.documentElement,e=g.defaultView,e&&e!==e.top&&(e.addEventListener?e.addEventListener("unload",ea,!1):e.attachEvent&&e.attachEvent("onunload",ea)),p=!f(g),c.attributes=ja(function(a){return a.className="i",!a.getAttribute("className")}),c.getElementsByTagName=ja(function(a){return a.appendChild(g.createComment("")),!a.getElementsByTagName("*").length}),c.getElementsByClassName=$.test(g.getElementsByClassName),c.getById=ja(function(a){return o.appendChild(a).id=u,!g.getElementsByName||!g.getElementsByName(u).length}),c.getById?(d.find.ID=function(a,b){if("undefined"!=typeof b.getElementById&&p){var c=b.getElementById(a);return c&&c.parentNode?[c]:[]}},d.filter.ID=function(a){var b=a.replace(ca,da);return function(a){return a.getAttribute("id")===b}}):(delete d.find.ID,d.filter.ID=function(a){var b=a.replace(ca,da);return function(a){var c="undefined"!=typeof a.getAttributeNode&&a.getAttributeNode("id");return c&&c.value===b}}),d.find.TAG=c.getElementsByTagName?function(a,b){return"undefined"!=typeof b.getElementsByTagName?b.getElementsByTagName(a):c.qsa?b.querySelectorAll(a):void 0}:function(a,b){var c,d=[],e=0,f=b.getElementsByTagName(a);if("*"===a){while(c=f[e++])1===c.nodeType&&d.push(c);return d}return f},d.find.CLASS=c.getElementsByClassName&&function(a,b){return p?b.getElementsByClassName(a):void 0},r=[],q=[],(c.qsa=$.test(g.querySelectorAll))&&(ja(function(a){o.appendChild(a).innerHTML="",a.querySelectorAll("[msallowcapture^='']").length&&q.push("[*^$]="+L+"*(?:''|\"\")"),a.querySelectorAll("[selected]").length||q.push("\\["+L+"*(?:value|"+K+")"),a.querySelectorAll("[id~="+u+"-]").length||q.push("~="),a.querySelectorAll(":checked").length||q.push(":checked"),a.querySelectorAll("a#"+u+"+*").length||q.push(".#.+[+~]")}),ja(function(a){var b=g.createElement("input");b.setAttribute("type","hidden"),a.appendChild(b).setAttribute("name","D"),a.querySelectorAll("[name=d]").length&&q.push("name"+L+"*[*^$|!~]?="),a.querySelectorAll(":enabled").length||q.push(":enabled",":disabled"),a.querySelectorAll("*,:x"),q.push(",.*:")})),(c.matchesSelector=$.test(s=o.matches||o.webkitMatchesSelector||o.mozMatchesSelector||o.oMatchesSelector||o.msMatchesSelector))&&ja(function(a){c.disconnectedMatch=s.call(a,"div"),s.call(a,"[s!='']:x"),r.push("!=",P)}),q=q.length&&new RegExp(q.join("|")),r=r.length&&new RegExp(r.join("|")),b=$.test(o.compareDocumentPosition),t=b||$.test(o.contains)?function(a,b){var c=9===a.nodeType?a.documentElement:a,d=b&&b.parentNode;return a===d||!(!d||1!==d.nodeType||!(c.contains?c.contains(d):a.compareDocumentPosition&&16&a.compareDocumentPosition(d)))}:function(a,b){if(b)while(b=b.parentNode)if(b===a)return!0;return!1},B=b?function(a,b){if(a===b)return l=!0,0;var d=!a.compareDocumentPosition-!b.compareDocumentPosition;return d?d:(d=(a.ownerDocument||a)===(b.ownerDocument||b)?a.compareDocumentPosition(b):1,1&d||!c.sortDetached&&b.compareDocumentPosition(a)===d?a===g||a.ownerDocument===v&&t(v,a)?-1:b===g||b.ownerDocument===v&&t(v,b)?1:k?J(k,a)-J(k,b):0:4&d?-1:1)}:function(a,b){if(a===b)return l=!0,0;var c,d=0,e=a.parentNode,f=b.parentNode,h=[a],i=[b];if(!e||!f)return a===g?-1:b===g?1:e?-1:f?1:k?J(k,a)-J(k,b):0;if(e===f)return la(a,b);c=a;while(c=c.parentNode)h.unshift(c);c=b;while(c=c.parentNode)i.unshift(c);while(h[d]===i[d])d++;return d?la(h[d],i[d]):h[d]===v?-1:i[d]===v?1:0},g):n},ga.matches=function(a,b){return ga(a,null,null,b)},ga.matchesSelector=function(a,b){if((a.ownerDocument||a)!==n&&m(a),b=b.replace(U,"='$1']"),!(!c.matchesSelector||!p||r&&r.test(b)||q&&q.test(b)))try{var d=s.call(a,b);if(d||c.disconnectedMatch||a.document&&11!==a.document.nodeType)return d}catch(e){}return ga(b,n,null,[a]).length>0},ga.contains=function(a,b){return(a.ownerDocument||a)!==n&&m(a),t(a,b)},ga.attr=function(a,b){(a.ownerDocument||a)!==n&&m(a);var e=d.attrHandle[b.toLowerCase()],f=e&&D.call(d.attrHandle,b.toLowerCase())?e(a,b,!p):void 0;return void 0!==f?f:c.attributes||!p?a.getAttribute(b):(f=a.getAttributeNode(b))&&f.specified?f.value:null},ga.error=function(a){throw new Error("Syntax error, unrecognized expression: "+a)},ga.uniqueSort=function(a){var b,d=[],e=0,f=0;if(l=!c.detectDuplicates,k=!c.sortStable&&a.slice(0),a.sort(B),l){while(b=a[f++])b===a[f]&&(e=d.push(f));while(e--)a.splice(d[e],1)}return k=null,a},e=ga.getText=function(a){var b,c="",d=0,f=a.nodeType;if(f){if(1===f||9===f||11===f){if("string"==typeof a.textContent)return a.textContent;for(a=a.firstChild;a;a=a.nextSibling)c+=e(a)}else if(3===f||4===f)return a.nodeValue}else while(b=a[d++])c+=e(b);return c},d=ga.selectors={cacheLength:50,createPseudo:ia,match:X,attrHandle:{},find:{},relative:{">":{dir:"parentNode",first:!0}," ":{dir:"parentNode"},"+":{dir:"previousSibling",first:!0},"~":{dir:"previousSibling"}},preFilter:{ATTR:function(a){return a[1]=a[1].replace(ca,da),a[3]=(a[3]||a[4]||a[5]||"").replace(ca,da),"~="===a[2]&&(a[3]=" "+a[3]+" "),a.slice(0,4)},CHILD:function(a){return a[1]=a[1].toLowerCase(),"nth"===a[1].slice(0,3)?(a[3]||ga.error(a[0]),a[4]=+(a[4]?a[5]+(a[6]||1):2*("even"===a[3]||"odd"===a[3])),a[5]=+(a[7]+a[8]||"odd"===a[3])):a[3]&&ga.error(a[0]),a},PSEUDO:function(a){var b,c=!a[6]&&a[2];return X.CHILD.test(a[0])?null:(a[3]?a[2]=a[4]||a[5]||"":c&&V.test(c)&&(b=g(c,!0))&&(b=c.indexOf(")",c.length-b)-c.length)&&(a[0]=a[0].slice(0,b),a[2]=c.slice(0,b)),a.slice(0,3))}},filter:{TAG:function(a){var b=a.replace(ca,da).toLowerCase();return"*"===a?function(){return!0}:function(a){return a.nodeName&&a.nodeName.toLowerCase()===b}},CLASS:function(a){var b=y[a+" "];return b||(b=new RegExp("(^|"+L+")"+a+"("+L+"|$)"))&&y(a,function(a){return b.test("string"==typeof a.className&&a.className||"undefined"!=typeof a.getAttribute&&a.getAttribute("class")||"")})},ATTR:function(a,b,c){return function(d){var e=ga.attr(d,a);return null==e?"!="===b:b?(e+="","="===b?e===c:"!="===b?e!==c:"^="===b?c&&0===e.indexOf(c):"*="===b?c&&e.indexOf(c)>-1:"$="===b?c&&e.slice(-c.length)===c:"~="===b?(" "+e.replace(Q," ")+" ").indexOf(c)>-1:"|="===b?e===c||e.slice(0,c.length+1)===c+"-":!1):!0}},CHILD:function(a,b,c,d,e){var f="nth"!==a.slice(0,3),g="last"!==a.slice(-4),h="of-type"===b;return 1===d&&0===e?function(a){return!!a.parentNode}:function(b,c,i){var j,k,l,m,n,o,p=f!==g?"nextSibling":"previousSibling",q=b.parentNode,r=h&&b.nodeName.toLowerCase(),s=!i&&!h;if(q){if(f){while(p){l=b;while(l=l[p])if(h?l.nodeName.toLowerCase()===r:1===l.nodeType)return!1;o=p="only"===a&&!o&&"nextSibling"}return!0}if(o=[g?q.firstChild:q.lastChild],g&&s){k=q[u]||(q[u]={}),j=k[a]||[],n=j[0]===w&&j[1],m=j[0]===w&&j[2],l=n&&q.childNodes[n];while(l=++n&&l&&l[p]||(m=n=0)||o.pop())if(1===l.nodeType&&++m&&l===b){k[a]=[w,n,m];break}}else if(s&&(j=(b[u]||(b[u]={}))[a])&&j[0]===w)m=j[1];else while(l=++n&&l&&l[p]||(m=n=0)||o.pop())if((h?l.nodeName.toLowerCase()===r:1===l.nodeType)&&++m&&(s&&((l[u]||(l[u]={}))[a]=[w,m]),l===b))break;return m-=e,m===d||m%d===0&&m/d>=0}}},PSEUDO:function(a,b){var c,e=d.pseudos[a]||d.setFilters[a.toLowerCase()]||ga.error("unsupported pseudo: "+a);return e[u]?e(b):e.length>1?(c=[a,a,"",b],d.setFilters.hasOwnProperty(a.toLowerCase())?ia(function(a,c){var d,f=e(a,b),g=f.length;while(g--)d=J(a,f[g]),a[d]=!(c[d]=f[g])}):function(a){return e(a,0,c)}):e}},pseudos:{not:ia(function(a){var b=[],c=[],d=h(a.replace(R,"$1"));return d[u]?ia(function(a,b,c,e){var f,g=d(a,null,e,[]),h=a.length;while(h--)(f=g[h])&&(a[h]=!(b[h]=f))}):function(a,e,f){return b[0]=a,d(b,null,f,c),b[0]=null,!c.pop()}}),has:ia(function(a){return function(b){return ga(a,b).length>0}}),contains:ia(function(a){return a=a.replace(ca,da),function(b){return(b.textContent||b.innerText||e(b)).indexOf(a)>-1}}),lang:ia(function(a){return W.test(a||"")||ga.error("unsupported lang: "+a),a=a.replace(ca,da).toLowerCase(),function(b){var c;do if(c=p?b.lang:b.getAttribute("xml:lang")||b.getAttribute("lang"))return c=c.toLowerCase(),c===a||0===c.indexOf(a+"-");while((b=b.parentNode)&&1===b.nodeType);return!1}}),target:function(b){var c=a.location&&a.location.hash;return c&&c.slice(1)===b.id},root:function(a){return a===o},focus:function(a){return a===n.activeElement&&(!n.hasFocus||n.hasFocus())&&!!(a.type||a.href||~a.tabIndex)},enabled:function(a){return a.disabled===!1},disabled:function(a){return a.disabled===!0},checked:function(a){var b=a.nodeName.toLowerCase();return"input"===b&&!!a.checked||"option"===b&&!!a.selected},selected:function(a){return a.parentNode&&a.parentNode.selectedIndex,a.selected===!0},empty:function(a){for(a=a.firstChild;a;a=a.nextSibling)if(a.nodeType<6)return!1;return!0},parent:function(a){return!d.pseudos.empty(a)},header:function(a){return Z.test(a.nodeName)},input:function(a){return Y.test(a.nodeName)},button:function(a){var b=a.nodeName.toLowerCase();return"input"===b&&"button"===a.type||"button"===b},text:function(a){var b;return"input"===a.nodeName.toLowerCase()&&"text"===a.type&&(null==(b=a.getAttribute("type"))||"text"===b.toLowerCase())},first:oa(function(){return[0]}),last:oa(function(a,b){return[b-1]}),eq:oa(function(a,b,c){return[0>c?c+b:c]}),even:oa(function(a,b){for(var c=0;b>c;c+=2)a.push(c);return a}),odd:oa(function(a,b){for(var c=1;b>c;c+=2)a.push(c);return a}),lt:oa(function(a,b,c){for(var d=0>c?c+b:c;--d>=0;)a.push(d);return a}),gt:oa(function(a,b,c){for(var d=0>c?c+b:c;++db;b++)d+=a[b].value;return d}function sa(a,b,c){var d=b.dir,e=c&&"parentNode"===d,f=x++;return b.first?function(b,c,f){while(b=b[d])if(1===b.nodeType||e)return a(b,c,f)}:function(b,c,g){var h,i,j=[w,f];if(g){while(b=b[d])if((1===b.nodeType||e)&&a(b,c,g))return!0}else while(b=b[d])if(1===b.nodeType||e){if(i=b[u]||(b[u]={}),(h=i[d])&&h[0]===w&&h[1]===f)return j[2]=h[2];if(i[d]=j,j[2]=a(b,c,g))return!0}}}function ta(a){return a.length>1?function(b,c,d){var e=a.length;while(e--)if(!a[e](b,c,d))return!1;return!0}:a[0]}function ua(a,b,c){for(var d=0,e=b.length;e>d;d++)ga(a,b[d],c);return c}function va(a,b,c,d,e){for(var f,g=[],h=0,i=a.length,j=null!=b;i>h;h++)(f=a[h])&&(!c||c(f,d,e))&&(g.push(f),j&&b.push(h));return g}function wa(a,b,c,d,e,f){return d&&!d[u]&&(d=wa(d)),e&&!e[u]&&(e=wa(e,f)),ia(function(f,g,h,i){var j,k,l,m=[],n=[],o=g.length,p=f||ua(b||"*",h.nodeType?[h]:h,[]),q=!a||!f&&b?p:va(p,m,a,h,i),r=c?e||(f?a:o||d)?[]:g:q;if(c&&c(q,r,h,i),d){j=va(r,n),d(j,[],h,i),k=j.length;while(k--)(l=j[k])&&(r[n[k]]=!(q[n[k]]=l))}if(f){if(e||a){if(e){j=[],k=r.length;while(k--)(l=r[k])&&j.push(q[k]=l);e(null,r=[],j,i)}k=r.length;while(k--)(l=r[k])&&(j=e?J(f,l):m[k])>-1&&(f[j]=!(g[j]=l))}}else r=va(r===g?r.splice(o,r.length):r),e?e(null,g,r,i):H.apply(g,r)})}function xa(a){for(var b,c,e,f=a.length,g=d.relative[a[0].type],h=g||d.relative[" "],i=g?1:0,k=sa(function(a){return a===b},h,!0),l=sa(function(a){return J(b,a)>-1},h,!0),m=[function(a,c,d){var e=!g&&(d||c!==j)||((b=c).nodeType?k(a,c,d):l(a,c,d));return b=null,e}];f>i;i++)if(c=d.relative[a[i].type])m=[sa(ta(m),c)];else{if(c=d.filter[a[i].type].apply(null,a[i].matches),c[u]){for(e=++i;f>e;e++)if(d.relative[a[e].type])break;return wa(i>1&&ta(m),i>1&&ra(a.slice(0,i-1).concat({value:" "===a[i-2].type?"*":""})).replace(R,"$1"),c,e>i&&xa(a.slice(i,e)),f>e&&xa(a=a.slice(e)),f>e&&ra(a))}m.push(c)}return ta(m)}function ya(a,b){var c=b.length>0,e=a.length>0,f=function(f,g,h,i,k){var l,m,o,p=0,q="0",r=f&&[],s=[],t=j,u=f||e&&d.find.TAG("*",k),v=w+=null==t?1:Math.random()||.1,x=u.length;for(k&&(j=g!==n&&g);q!==x&&null!=(l=u[q]);q++){if(e&&l){m=0;while(o=a[m++])if(o(l,g,h)){i.push(l);break}k&&(w=v)}c&&((l=!o&&l)&&p--,f&&r.push(l))}if(p+=q,c&&q!==p){m=0;while(o=b[m++])o(r,s,g,h);if(f){if(p>0)while(q--)r[q]||s[q]||(s[q]=F.call(i));s=va(s)}H.apply(i,s),k&&!f&&s.length>0&&p+b.length>1&&ga.uniqueSort(i)}return k&&(w=v,j=t),r};return c?ia(f):f}return h=ga.compile=function(a,b){var c,d=[],e=[],f=A[a+" "];if(!f){b||(b=g(a)),c=b.length;while(c--)f=xa(b[c]),f[u]?d.push(f):e.push(f);f=A(a,ya(e,d)),f.selector=a}return f},i=ga.select=function(a,b,e,f){var i,j,k,l,m,n="function"==typeof a&&a,o=!f&&g(a=n.selector||a);if(e=e||[],1===o.length){if(j=o[0]=o[0].slice(0),j.length>2&&"ID"===(k=j[0]).type&&c.getById&&9===b.nodeType&&p&&d.relative[j[1].type]){if(b=(d.find.ID(k.matches[0].replace(ca,da),b)||[])[0],!b)return e;n&&(b=b.parentNode),a=a.slice(j.shift().value.length)}i=X.needsContext.test(a)?0:j.length;while(i--){if(k=j[i],d.relative[l=k.type])break;if((m=d.find[l])&&(f=m(k.matches[0].replace(ca,da),aa.test(j[0].type)&&pa(b.parentNode)||b))){if(j.splice(i,1),a=f.length&&ra(j),!a)return H.apply(e,f),e;break}}}return(n||h(a,o))(f,b,!p,e,aa.test(a)&&pa(b.parentNode)||b),e},c.sortStable=u.split("").sort(B).join("")===u,c.detectDuplicates=!!l,m(),c.sortDetached=ja(function(a){return 1&a.compareDocumentPosition(n.createElement("div"))}),ja(function(a){return a.innerHTML="","#"===a.firstChild.getAttribute("href")})||ka("type|href|height|width",function(a,b,c){return c?void 0:a.getAttribute(b,"type"===b.toLowerCase()?1:2)}),c.attributes&&ja(function(a){return a.innerHTML="",a.firstChild.setAttribute("value",""),""===a.firstChild.getAttribute("value")})||ka("value",function(a,b,c){return c||"input"!==a.nodeName.toLowerCase()?void 0:a.defaultValue}),ja(function(a){return null==a.getAttribute("disabled")})||ka(K,function(a,b,c){var d;return c?void 0:a[b]===!0?b.toLowerCase():(d=a.getAttributeNode(b))&&d.specified?d.value:null}),ga}(a);m.find=s,m.expr=s.selectors,m.expr[":"]=m.expr.pseudos,m.unique=s.uniqueSort,m.text=s.getText,m.isXMLDoc=s.isXML,m.contains=s.contains;var t=m.expr.match.needsContext,u=/^<(\w+)\s*\/?>(?:<\/\1>|)$/,v=/^.[^:#\[\.,]*$/;function w(a,b,c){if(m.isFunction(b))return m.grep(a,function(a,d){return!!b.call(a,d,a)!==c});if(b.nodeType)return m.grep(a,function(a){return a===b!==c});if("string"==typeof b){if(v.test(b))return m.filter(b,a,c);b=m.filter(b,a)}return m.grep(a,function(a){return m.inArray(a,b)>=0!==c})}m.filter=function(a,b,c){var d=b[0];return c&&(a=":not("+a+")"),1===b.length&&1===d.nodeType?m.find.matchesSelector(d,a)?[d]:[]:m.find.matches(a,m.grep(b,function(a){return 1===a.nodeType}))},m.fn.extend({find:function(a){var b,c=[],d=this,e=d.length;if("string"!=typeof a)return this.pushStack(m(a).filter(function(){for(b=0;e>b;b++)if(m.contains(d[b],this))return!0}));for(b=0;e>b;b++)m.find(a,d[b],c);return c=this.pushStack(e>1?m.unique(c):c),c.selector=this.selector?this.selector+" "+a:a,c},filter:function(a){return this.pushStack(w(this,a||[],!1))},not:function(a){return this.pushStack(w(this,a||[],!0))},is:function(a){return!!w(this,"string"==typeof a&&t.test(a)?m(a):a||[],!1).length}});var x,y=a.document,z=/^(?:\s*(<[\w\W]+>)[^>]*|#([\w-]*))$/,A=m.fn.init=function(a,b){var c,d;if(!a)return this;if("string"==typeof a){if(c="<"===a.charAt(0)&&">"===a.charAt(a.length-1)&&a.length>=3?[null,a,null]:z.exec(a),!c||!c[1]&&b)return!b||b.jquery?(b||x).find(a):this.constructor(b).find(a);if(c[1]){if(b=b instanceof m?b[0]:b,m.merge(this,m.parseHTML(c[1],b&&b.nodeType?b.ownerDocument||b:y,!0)),u.test(c[1])&&m.isPlainObject(b))for(c in b)m.isFunction(this[c])?this[c](b[c]):this.attr(c,b[c]);return this}if(d=y.getElementById(c[2]),d&&d.parentNode){if(d.id!==c[2])return x.find(a);this.length=1,this[0]=d}return this.context=y,this.selector=a,this}return a.nodeType?(this.context=this[0]=a,this.length=1,this):m.isFunction(a)?"undefined"!=typeof x.ready?x.ready(a):a(m):(void 0!==a.selector&&(this.selector=a.selector,this.context=a.context),m.makeArray(a,this))};A.prototype=m.fn,x=m(y);var B=/^(?:parents|prev(?:Until|All))/,C={children:!0,contents:!0,next:!0,prev:!0};m.extend({dir:function(a,b,c){var d=[],e=a[b];while(e&&9!==e.nodeType&&(void 0===c||1!==e.nodeType||!m(e).is(c)))1===e.nodeType&&d.push(e),e=e[b];return d},sibling:function(a,b){for(var c=[];a;a=a.nextSibling)1===a.nodeType&&a!==b&&c.push(a);return c}}),m.fn.extend({has:function(a){var b,c=m(a,this),d=c.length;return this.filter(function(){for(b=0;d>b;b++)if(m.contains(this,c[b]))return!0})},closest:function(a,b){for(var c,d=0,e=this.length,f=[],g=t.test(a)||"string"!=typeof a?m(a,b||this.context):0;e>d;d++)for(c=this[d];c&&c!==b;c=c.parentNode)if(c.nodeType<11&&(g?g.index(c)>-1:1===c.nodeType&&m.find.matchesSelector(c,a))){f.push(c);break}return this.pushStack(f.length>1?m.unique(f):f)},index:function(a){return a?"string"==typeof a?m.inArray(this[0],m(a)):m.inArray(a.jquery?a[0]:a,this):this[0]&&this[0].parentNode?this.first().prevAll().length:-1},add:function(a,b){return this.pushStack(m.unique(m.merge(this.get(),m(a,b))))},addBack:function(a){return this.add(null==a?this.prevObject:this.prevObject.filter(a))}});function D(a,b){do a=a[b];while(a&&1!==a.nodeType);return a}m.each({parent:function(a){var b=a.parentNode;return b&&11!==b.nodeType?b:null},parents:function(a){return m.dir(a,"parentNode")},parentsUntil:function(a,b,c){return m.dir(a,"parentNode",c)},next:function(a){return D(a,"nextSibling")},prev:function(a){return D(a,"previousSibling")},nextAll:function(a){return m.dir(a,"nextSibling")},prevAll:function(a){return m.dir(a,"previousSibling")},nextUntil:function(a,b,c){return m.dir(a,"nextSibling",c)},prevUntil:function(a,b,c){return m.dir(a,"previousSibling",c)},siblings:function(a){return m.sibling((a.parentNode||{}).firstChild,a)},children:function(a){return m.sibling(a.firstChild)},contents:function(a){return m.nodeName(a,"iframe")?a.contentDocument||a.contentWindow.document:m.merge([],a.childNodes)}},function(a,b){m.fn[a]=function(c,d){var e=m.map(this,b,c);return"Until"!==a.slice(-5)&&(d=c),d&&"string"==typeof d&&(e=m.filter(d,e)),this.length>1&&(C[a]||(e=m.unique(e)),B.test(a)&&(e=e.reverse())),this.pushStack(e)}});var E=/\S+/g,F={};function G(a){var b=F[a]={};return m.each(a.match(E)||[],function(a,c){b[c]=!0}),b}m.Callbacks=function(a){a="string"==typeof a?F[a]||G(a):m.extend({},a);var b,c,d,e,f,g,h=[],i=!a.once&&[],j=function(l){for(c=a.memory&&l,d=!0,f=g||0,g=0,e=h.length,b=!0;h&&e>f;f++)if(h[f].apply(l[0],l[1])===!1&&a.stopOnFalse){c=!1;break}b=!1,h&&(i?i.length&&j(i.shift()):c?h=[]:k.disable())},k={add:function(){if(h){var d=h.length;!function f(b){m.each(b,function(b,c){var d=m.type(c);"function"===d?a.unique&&k.has(c)||h.push(c):c&&c.length&&"string"!==d&&f(c)})}(arguments),b?e=h.length:c&&(g=d,j(c))}return this},remove:function(){return h&&m.each(arguments,function(a,c){var d;while((d=m.inArray(c,h,d))>-1)h.splice(d,1),b&&(e>=d&&e--,f>=d&&f--)}),this},has:function(a){return a?m.inArray(a,h)>-1:!(!h||!h.length)},empty:function(){return h=[],e=0,this},disable:function(){return h=i=c=void 0,this},disabled:function(){return!h},lock:function(){return i=void 0,c||k.disable(),this},locked:function(){return!i},fireWith:function(a,c){return!h||d&&!i||(c=c||[],c=[a,c.slice?c.slice():c],b?i.push(c):j(c)),this},fire:function(){return k.fireWith(this,arguments),this},fired:function(){return!!d}};return k},m.extend({Deferred:function(a){var b=[["resolve","done",m.Callbacks("once memory"),"resolved"],["reject","fail",m.Callbacks("once memory"),"rejected"],["notify","progress",m.Callbacks("memory")]],c="pending",d={state:function(){return c},always:function(){return e.done(arguments).fail(arguments),this},then:function(){var a=arguments;return m.Deferred(function(c){m.each(b,function(b,f){var g=m.isFunction(a[b])&&a[b];e[f[1]](function(){var a=g&&g.apply(this,arguments);a&&m.isFunction(a.promise)?a.promise().done(c.resolve).fail(c.reject).progress(c.notify):c[f[0]+"With"](this===d?c.promise():this,g?[a]:arguments)})}),a=null}).promise()},promise:function(a){return null!=a?m.extend(a,d):d}},e={};return d.pipe=d.then,m.each(b,function(a,f){var g=f[2],h=f[3];d[f[1]]=g.add,h&&g.add(function(){c=h},b[1^a][2].disable,b[2][2].lock),e[f[0]]=function(){return e[f[0]+"With"](this===e?d:this,arguments),this},e[f[0]+"With"]=g.fireWith}),d.promise(e),a&&a.call(e,e),e},when:function(a){var b=0,c=d.call(arguments),e=c.length,f=1!==e||a&&m.isFunction(a.promise)?e:0,g=1===f?a:m.Deferred(),h=function(a,b,c){return function(e){b[a]=this,c[a]=arguments.length>1?d.call(arguments):e,c===i?g.notifyWith(b,c):--f||g.resolveWith(b,c)}},i,j,k;if(e>1)for(i=new Array(e),j=new Array(e),k=new Array(e);e>b;b++)c[b]&&m.isFunction(c[b].promise)?c[b].promise().done(h(b,k,c)).fail(g.reject).progress(h(b,j,i)):--f;return f||g.resolveWith(k,c),g.promise()}});var H;m.fn.ready=function(a){return m.ready.promise().done(a),this},m.extend({isReady:!1,readyWait:1,holdReady:function(a){a?m.readyWait++:m.ready(!0)},ready:function(a){if(a===!0?!--m.readyWait:!m.isReady){if(!y.body)return setTimeout(m.ready);m.isReady=!0,a!==!0&&--m.readyWait>0||(H.resolveWith(y,[m]),m.fn.triggerHandler&&(m(y).triggerHandler("ready"),m(y).off("ready")))}}});function I(){y.addEventListener?(y.removeEventListener("DOMContentLoaded",J,!1),a.removeEventListener("load",J,!1)):(y.detachEvent("onreadystatechange",J),a.detachEvent("onload",J))}function J(){(y.addEventListener||"load"===event.type||"complete"===y.readyState)&&(I(),m.ready())}m.ready.promise=function(b){if(!H)if(H=m.Deferred(),"complete"===y.readyState)setTimeout(m.ready);else if(y.addEventListener)y.addEventListener("DOMContentLoaded",J,!1),a.addEventListener("load",J,!1);else{y.attachEvent("onreadystatechange",J),a.attachEvent("onload",J);var c=!1;try{c=null==a.frameElement&&y.documentElement}catch(d){}c&&c.doScroll&&!function e(){if(!m.isReady){try{c.doScroll("left")}catch(a){return setTimeout(e,50)}I(),m.ready()}}()}return H.promise(b)};var K="undefined",L;for(L in m(k))break;k.ownLast="0"!==L,k.inlineBlockNeedsLayout=!1,m(function(){var a,b,c,d;c=y.getElementsByTagName("body")[0],c&&c.style&&(b=y.createElement("div"),d=y.createElement("div"),d.style.cssText="position:absolute;border:0;width:0;height:0;top:0;left:-9999px",c.appendChild(d).appendChild(b),typeof b.style.zoom!==K&&(b.style.cssText="display:inline;margin:0;border:0;padding:1px;width:1px;zoom:1",k.inlineBlockNeedsLayout=a=3===b.offsetWidth,a&&(c.style.zoom=1)),c.removeChild(d))}),function(){var a=y.createElement("div");if(null==k.deleteExpando){k.deleteExpando=!0;try{delete a.test}catch(b){k.deleteExpando=!1}}a=null}(),m.acceptData=function(a){var b=m.noData[(a.nodeName+" ").toLowerCase()],c=+a.nodeType||1;return 1!==c&&9!==c?!1:!b||b!==!0&&a.getAttribute("classid")===b};var M=/^(?:\{[\w\W]*\}|\[[\w\W]*\])$/,N=/([A-Z])/g;function O(a,b,c){if(void 0===c&&1===a.nodeType){var d="data-"+b.replace(N,"-$1").toLowerCase();if(c=a.getAttribute(d),"string"==typeof c){try{c="true"===c?!0:"false"===c?!1:"null"===c?null:+c+""===c?+c:M.test(c)?m.parseJSON(c):c}catch(e){}m.data(a,b,c)}else c=void 0}return c}function P(a){var b;for(b in a)if(("data"!==b||!m.isEmptyObject(a[b]))&&"toJSON"!==b)return!1; - -return!0}function Q(a,b,d,e){if(m.acceptData(a)){var f,g,h=m.expando,i=a.nodeType,j=i?m.cache:a,k=i?a[h]:a[h]&&h;if(k&&j[k]&&(e||j[k].data)||void 0!==d||"string"!=typeof b)return k||(k=i?a[h]=c.pop()||m.guid++:h),j[k]||(j[k]=i?{}:{toJSON:m.noop}),("object"==typeof b||"function"==typeof b)&&(e?j[k]=m.extend(j[k],b):j[k].data=m.extend(j[k].data,b)),g=j[k],e||(g.data||(g.data={}),g=g.data),void 0!==d&&(g[m.camelCase(b)]=d),"string"==typeof b?(f=g[b],null==f&&(f=g[m.camelCase(b)])):f=g,f}}function R(a,b,c){if(m.acceptData(a)){var d,e,f=a.nodeType,g=f?m.cache:a,h=f?a[m.expando]:m.expando;if(g[h]){if(b&&(d=c?g[h]:g[h].data)){m.isArray(b)?b=b.concat(m.map(b,m.camelCase)):b in d?b=[b]:(b=m.camelCase(b),b=b in d?[b]:b.split(" ")),e=b.length;while(e--)delete d[b[e]];if(c?!P(d):!m.isEmptyObject(d))return}(c||(delete g[h].data,P(g[h])))&&(f?m.cleanData([a],!0):k.deleteExpando||g!=g.window?delete g[h]:g[h]=null)}}}m.extend({cache:{},noData:{"applet ":!0,"embed ":!0,"object ":"clsid:D27CDB6E-AE6D-11cf-96B8-444553540000"},hasData:function(a){return a=a.nodeType?m.cache[a[m.expando]]:a[m.expando],!!a&&!P(a)},data:function(a,b,c){return Q(a,b,c)},removeData:function(a,b){return R(a,b)},_data:function(a,b,c){return Q(a,b,c,!0)},_removeData:function(a,b){return R(a,b,!0)}}),m.fn.extend({data:function(a,b){var c,d,e,f=this[0],g=f&&f.attributes;if(void 0===a){if(this.length&&(e=m.data(f),1===f.nodeType&&!m._data(f,"parsedAttrs"))){c=g.length;while(c--)g[c]&&(d=g[c].name,0===d.indexOf("data-")&&(d=m.camelCase(d.slice(5)),O(f,d,e[d])));m._data(f,"parsedAttrs",!0)}return e}return"object"==typeof a?this.each(function(){m.data(this,a)}):arguments.length>1?this.each(function(){m.data(this,a,b)}):f?O(f,a,m.data(f,a)):void 0},removeData:function(a){return this.each(function(){m.removeData(this,a)})}}),m.extend({queue:function(a,b,c){var d;return a?(b=(b||"fx")+"queue",d=m._data(a,b),c&&(!d||m.isArray(c)?d=m._data(a,b,m.makeArray(c)):d.push(c)),d||[]):void 0},dequeue:function(a,b){b=b||"fx";var c=m.queue(a,b),d=c.length,e=c.shift(),f=m._queueHooks(a,b),g=function(){m.dequeue(a,b)};"inprogress"===e&&(e=c.shift(),d--),e&&("fx"===b&&c.unshift("inprogress"),delete f.stop,e.call(a,g,f)),!d&&f&&f.empty.fire()},_queueHooks:function(a,b){var c=b+"queueHooks";return m._data(a,c)||m._data(a,c,{empty:m.Callbacks("once memory").add(function(){m._removeData(a,b+"queue"),m._removeData(a,c)})})}}),m.fn.extend({queue:function(a,b){var c=2;return"string"!=typeof a&&(b=a,a="fx",c--),arguments.lengthh;h++)b(a[h],c,g?d:d.call(a[h],h,b(a[h],c)));return e?a:j?b.call(a):i?b(a[0],c):f},W=/^(?:checkbox|radio)$/i;!function(){var a=y.createElement("input"),b=y.createElement("div"),c=y.createDocumentFragment();if(b.innerHTML="
a",k.leadingWhitespace=3===b.firstChild.nodeType,k.tbody=!b.getElementsByTagName("tbody").length,k.htmlSerialize=!!b.getElementsByTagName("link").length,k.html5Clone="<:nav>"!==y.createElement("nav").cloneNode(!0).outerHTML,a.type="checkbox",a.checked=!0,c.appendChild(a),k.appendChecked=a.checked,b.innerHTML="",k.noCloneChecked=!!b.cloneNode(!0).lastChild.defaultValue,c.appendChild(b),b.innerHTML="",k.checkClone=b.cloneNode(!0).cloneNode(!0).lastChild.checked,k.noCloneEvent=!0,b.attachEvent&&(b.attachEvent("onclick",function(){k.noCloneEvent=!1}),b.cloneNode(!0).click()),null==k.deleteExpando){k.deleteExpando=!0;try{delete b.test}catch(d){k.deleteExpando=!1}}}(),function(){var b,c,d=y.createElement("div");for(b in{submit:!0,change:!0,focusin:!0})c="on"+b,(k[b+"Bubbles"]=c in a)||(d.setAttribute(c,"t"),k[b+"Bubbles"]=d.attributes[c].expando===!1);d=null}();var X=/^(?:input|select|textarea)$/i,Y=/^key/,Z=/^(?:mouse|pointer|contextmenu)|click/,$=/^(?:focusinfocus|focusoutblur)$/,_=/^([^.]*)(?:\.(.+)|)$/;function aa(){return!0}function ba(){return!1}function ca(){try{return y.activeElement}catch(a){}}m.event={global:{},add:function(a,b,c,d,e){var f,g,h,i,j,k,l,n,o,p,q,r=m._data(a);if(r){c.handler&&(i=c,c=i.handler,e=i.selector),c.guid||(c.guid=m.guid++),(g=r.events)||(g=r.events={}),(k=r.handle)||(k=r.handle=function(a){return typeof m===K||a&&m.event.triggered===a.type?void 0:m.event.dispatch.apply(k.elem,arguments)},k.elem=a),b=(b||"").match(E)||[""],h=b.length;while(h--)f=_.exec(b[h])||[],o=q=f[1],p=(f[2]||"").split(".").sort(),o&&(j=m.event.special[o]||{},o=(e?j.delegateType:j.bindType)||o,j=m.event.special[o]||{},l=m.extend({type:o,origType:q,data:d,handler:c,guid:c.guid,selector:e,needsContext:e&&m.expr.match.needsContext.test(e),namespace:p.join(".")},i),(n=g[o])||(n=g[o]=[],n.delegateCount=0,j.setup&&j.setup.call(a,d,p,k)!==!1||(a.addEventListener?a.addEventListener(o,k,!1):a.attachEvent&&a.attachEvent("on"+o,k))),j.add&&(j.add.call(a,l),l.handler.guid||(l.handler.guid=c.guid)),e?n.splice(n.delegateCount++,0,l):n.push(l),m.event.global[o]=!0);a=null}},remove:function(a,b,c,d,e){var f,g,h,i,j,k,l,n,o,p,q,r=m.hasData(a)&&m._data(a);if(r&&(k=r.events)){b=(b||"").match(E)||[""],j=b.length;while(j--)if(h=_.exec(b[j])||[],o=q=h[1],p=(h[2]||"").split(".").sort(),o){l=m.event.special[o]||{},o=(d?l.delegateType:l.bindType)||o,n=k[o]||[],h=h[2]&&new RegExp("(^|\\.)"+p.join("\\.(?:.*\\.|)")+"(\\.|$)"),i=f=n.length;while(f--)g=n[f],!e&&q!==g.origType||c&&c.guid!==g.guid||h&&!h.test(g.namespace)||d&&d!==g.selector&&("**"!==d||!g.selector)||(n.splice(f,1),g.selector&&n.delegateCount--,l.remove&&l.remove.call(a,g));i&&!n.length&&(l.teardown&&l.teardown.call(a,p,r.handle)!==!1||m.removeEvent(a,o,r.handle),delete k[o])}else for(o in k)m.event.remove(a,o+b[j],c,d,!0);m.isEmptyObject(k)&&(delete r.handle,m._removeData(a,"events"))}},trigger:function(b,c,d,e){var f,g,h,i,k,l,n,o=[d||y],p=j.call(b,"type")?b.type:b,q=j.call(b,"namespace")?b.namespace.split("."):[];if(h=l=d=d||y,3!==d.nodeType&&8!==d.nodeType&&!$.test(p+m.event.triggered)&&(p.indexOf(".")>=0&&(q=p.split("."),p=q.shift(),q.sort()),g=p.indexOf(":")<0&&"on"+p,b=b[m.expando]?b:new m.Event(p,"object"==typeof b&&b),b.isTrigger=e?2:3,b.namespace=q.join("."),b.namespace_re=b.namespace?new RegExp("(^|\\.)"+q.join("\\.(?:.*\\.|)")+"(\\.|$)"):null,b.result=void 0,b.target||(b.target=d),c=null==c?[b]:m.makeArray(c,[b]),k=m.event.special[p]||{},e||!k.trigger||k.trigger.apply(d,c)!==!1)){if(!e&&!k.noBubble&&!m.isWindow(d)){for(i=k.delegateType||p,$.test(i+p)||(h=h.parentNode);h;h=h.parentNode)o.push(h),l=h;l===(d.ownerDocument||y)&&o.push(l.defaultView||l.parentWindow||a)}n=0;while((h=o[n++])&&!b.isPropagationStopped())b.type=n>1?i:k.bindType||p,f=(m._data(h,"events")||{})[b.type]&&m._data(h,"handle"),f&&f.apply(h,c),f=g&&h[g],f&&f.apply&&m.acceptData(h)&&(b.result=f.apply(h,c),b.result===!1&&b.preventDefault());if(b.type=p,!e&&!b.isDefaultPrevented()&&(!k._default||k._default.apply(o.pop(),c)===!1)&&m.acceptData(d)&&g&&d[p]&&!m.isWindow(d)){l=d[g],l&&(d[g]=null),m.event.triggered=p;try{d[p]()}catch(r){}m.event.triggered=void 0,l&&(d[g]=l)}return b.result}},dispatch:function(a){a=m.event.fix(a);var b,c,e,f,g,h=[],i=d.call(arguments),j=(m._data(this,"events")||{})[a.type]||[],k=m.event.special[a.type]||{};if(i[0]=a,a.delegateTarget=this,!k.preDispatch||k.preDispatch.call(this,a)!==!1){h=m.event.handlers.call(this,a,j),b=0;while((f=h[b++])&&!a.isPropagationStopped()){a.currentTarget=f.elem,g=0;while((e=f.handlers[g++])&&!a.isImmediatePropagationStopped())(!a.namespace_re||a.namespace_re.test(e.namespace))&&(a.handleObj=e,a.data=e.data,c=((m.event.special[e.origType]||{}).handle||e.handler).apply(f.elem,i),void 0!==c&&(a.result=c)===!1&&(a.preventDefault(),a.stopPropagation()))}return k.postDispatch&&k.postDispatch.call(this,a),a.result}},handlers:function(a,b){var c,d,e,f,g=[],h=b.delegateCount,i=a.target;if(h&&i.nodeType&&(!a.button||"click"!==a.type))for(;i!=this;i=i.parentNode||this)if(1===i.nodeType&&(i.disabled!==!0||"click"!==a.type)){for(e=[],f=0;h>f;f++)d=b[f],c=d.selector+" ",void 0===e[c]&&(e[c]=d.needsContext?m(c,this).index(i)>=0:m.find(c,this,null,[i]).length),e[c]&&e.push(d);e.length&&g.push({elem:i,handlers:e})}return h]","i"),ha=/^\s+/,ia=/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^>]*)\/>/gi,ja=/<([\w:]+)/,ka=/\s*$/g,ra={option:[1,""],legend:[1,"
","
"],area:[1,"",""],param:[1,"",""],thead:[1,"","
"],tr:[2,"","
"],col:[2,"","
"],td:[3,"","
"],_default:k.htmlSerialize?[0,"",""]:[1,"X
","
"]},sa=da(y),ta=sa.appendChild(y.createElement("div"));ra.optgroup=ra.option,ra.tbody=ra.tfoot=ra.colgroup=ra.caption=ra.thead,ra.th=ra.td;function ua(a,b){var c,d,e=0,f=typeof a.getElementsByTagName!==K?a.getElementsByTagName(b||"*"):typeof a.querySelectorAll!==K?a.querySelectorAll(b||"*"):void 0;if(!f)for(f=[],c=a.childNodes||a;null!=(d=c[e]);e++)!b||m.nodeName(d,b)?f.push(d):m.merge(f,ua(d,b));return void 0===b||b&&m.nodeName(a,b)?m.merge([a],f):f}function va(a){W.test(a.type)&&(a.defaultChecked=a.checked)}function wa(a,b){return m.nodeName(a,"table")&&m.nodeName(11!==b.nodeType?b:b.firstChild,"tr")?a.getElementsByTagName("tbody")[0]||a.appendChild(a.ownerDocument.createElement("tbody")):a}function xa(a){return a.type=(null!==m.find.attr(a,"type"))+"/"+a.type,a}function ya(a){var b=pa.exec(a.type);return b?a.type=b[1]:a.removeAttribute("type"),a}function za(a,b){for(var c,d=0;null!=(c=a[d]);d++)m._data(c,"globalEval",!b||m._data(b[d],"globalEval"))}function Aa(a,b){if(1===b.nodeType&&m.hasData(a)){var c,d,e,f=m._data(a),g=m._data(b,f),h=f.events;if(h){delete g.handle,g.events={};for(c in h)for(d=0,e=h[c].length;e>d;d++)m.event.add(b,c,h[c][d])}g.data&&(g.data=m.extend({},g.data))}}function Ba(a,b){var c,d,e;if(1===b.nodeType){if(c=b.nodeName.toLowerCase(),!k.noCloneEvent&&b[m.expando]){e=m._data(b);for(d in e.events)m.removeEvent(b,d,e.handle);b.removeAttribute(m.expando)}"script"===c&&b.text!==a.text?(xa(b).text=a.text,ya(b)):"object"===c?(b.parentNode&&(b.outerHTML=a.outerHTML),k.html5Clone&&a.innerHTML&&!m.trim(b.innerHTML)&&(b.innerHTML=a.innerHTML)):"input"===c&&W.test(a.type)?(b.defaultChecked=b.checked=a.checked,b.value!==a.value&&(b.value=a.value)):"option"===c?b.defaultSelected=b.selected=a.defaultSelected:("input"===c||"textarea"===c)&&(b.defaultValue=a.defaultValue)}}m.extend({clone:function(a,b,c){var d,e,f,g,h,i=m.contains(a.ownerDocument,a);if(k.html5Clone||m.isXMLDoc(a)||!ga.test("<"+a.nodeName+">")?f=a.cloneNode(!0):(ta.innerHTML=a.outerHTML,ta.removeChild(f=ta.firstChild)),!(k.noCloneEvent&&k.noCloneChecked||1!==a.nodeType&&11!==a.nodeType||m.isXMLDoc(a)))for(d=ua(f),h=ua(a),g=0;null!=(e=h[g]);++g)d[g]&&Ba(e,d[g]);if(b)if(c)for(h=h||ua(a),d=d||ua(f),g=0;null!=(e=h[g]);g++)Aa(e,d[g]);else Aa(a,f);return d=ua(f,"script"),d.length>0&&za(d,!i&&ua(a,"script")),d=h=e=null,f},buildFragment:function(a,b,c,d){for(var e,f,g,h,i,j,l,n=a.length,o=da(b),p=[],q=0;n>q;q++)if(f=a[q],f||0===f)if("object"===m.type(f))m.merge(p,f.nodeType?[f]:f);else if(la.test(f)){h=h||o.appendChild(b.createElement("div")),i=(ja.exec(f)||["",""])[1].toLowerCase(),l=ra[i]||ra._default,h.innerHTML=l[1]+f.replace(ia,"<$1>")+l[2],e=l[0];while(e--)h=h.lastChild;if(!k.leadingWhitespace&&ha.test(f)&&p.push(b.createTextNode(ha.exec(f)[0])),!k.tbody){f="table"!==i||ka.test(f)?""!==l[1]||ka.test(f)?0:h:h.firstChild,e=f&&f.childNodes.length;while(e--)m.nodeName(j=f.childNodes[e],"tbody")&&!j.childNodes.length&&f.removeChild(j)}m.merge(p,h.childNodes),h.textContent="";while(h.firstChild)h.removeChild(h.firstChild);h=o.lastChild}else p.push(b.createTextNode(f));h&&o.removeChild(h),k.appendChecked||m.grep(ua(p,"input"),va),q=0;while(f=p[q++])if((!d||-1===m.inArray(f,d))&&(g=m.contains(f.ownerDocument,f),h=ua(o.appendChild(f),"script"),g&&za(h),c)){e=0;while(f=h[e++])oa.test(f.type||"")&&c.push(f)}return h=null,o},cleanData:function(a,b){for(var d,e,f,g,h=0,i=m.expando,j=m.cache,l=k.deleteExpando,n=m.event.special;null!=(d=a[h]);h++)if((b||m.acceptData(d))&&(f=d[i],g=f&&j[f])){if(g.events)for(e in g.events)n[e]?m.event.remove(d,e):m.removeEvent(d,e,g.handle);j[f]&&(delete j[f],l?delete d[i]:typeof d.removeAttribute!==K?d.removeAttribute(i):d[i]=null,c.push(f))}}}),m.fn.extend({text:function(a){return V(this,function(a){return void 0===a?m.text(this):this.empty().append((this[0]&&this[0].ownerDocument||y).createTextNode(a))},null,a,arguments.length)},append:function(){return this.domManip(arguments,function(a){if(1===this.nodeType||11===this.nodeType||9===this.nodeType){var b=wa(this,a);b.appendChild(a)}})},prepend:function(){return this.domManip(arguments,function(a){if(1===this.nodeType||11===this.nodeType||9===this.nodeType){var b=wa(this,a);b.insertBefore(a,b.firstChild)}})},before:function(){return this.domManip(arguments,function(a){this.parentNode&&this.parentNode.insertBefore(a,this)})},after:function(){return this.domManip(arguments,function(a){this.parentNode&&this.parentNode.insertBefore(a,this.nextSibling)})},remove:function(a,b){for(var c,d=a?m.filter(a,this):this,e=0;null!=(c=d[e]);e++)b||1!==c.nodeType||m.cleanData(ua(c)),c.parentNode&&(b&&m.contains(c.ownerDocument,c)&&za(ua(c,"script")),c.parentNode.removeChild(c));return this},empty:function(){for(var a,b=0;null!=(a=this[b]);b++){1===a.nodeType&&m.cleanData(ua(a,!1));while(a.firstChild)a.removeChild(a.firstChild);a.options&&m.nodeName(a,"select")&&(a.options.length=0)}return this},clone:function(a,b){return a=null==a?!1:a,b=null==b?a:b,this.map(function(){return m.clone(this,a,b)})},html:function(a){return V(this,function(a){var b=this[0]||{},c=0,d=this.length;if(void 0===a)return 1===b.nodeType?b.innerHTML.replace(fa,""):void 0;if(!("string"!=typeof a||ma.test(a)||!k.htmlSerialize&&ga.test(a)||!k.leadingWhitespace&&ha.test(a)||ra[(ja.exec(a)||["",""])[1].toLowerCase()])){a=a.replace(ia,"<$1>");try{for(;d>c;c++)b=this[c]||{},1===b.nodeType&&(m.cleanData(ua(b,!1)),b.innerHTML=a);b=0}catch(e){}}b&&this.empty().append(a)},null,a,arguments.length)},replaceWith:function(){var a=arguments[0];return this.domManip(arguments,function(b){a=this.parentNode,m.cleanData(ua(this)),a&&a.replaceChild(b,this)}),a&&(a.length||a.nodeType)?this:this.remove()},detach:function(a){return this.remove(a,!0)},domManip:function(a,b){a=e.apply([],a);var c,d,f,g,h,i,j=0,l=this.length,n=this,o=l-1,p=a[0],q=m.isFunction(p);if(q||l>1&&"string"==typeof p&&!k.checkClone&&na.test(p))return this.each(function(c){var d=n.eq(c);q&&(a[0]=p.call(this,c,d.html())),d.domManip(a,b)});if(l&&(i=m.buildFragment(a,this[0].ownerDocument,!1,this),c=i.firstChild,1===i.childNodes.length&&(i=c),c)){for(g=m.map(ua(i,"script"),xa),f=g.length;l>j;j++)d=i,j!==o&&(d=m.clone(d,!0,!0),f&&m.merge(g,ua(d,"script"))),b.call(this[j],d,j);if(f)for(h=g[g.length-1].ownerDocument,m.map(g,ya),j=0;f>j;j++)d=g[j],oa.test(d.type||"")&&!m._data(d,"globalEval")&&m.contains(h,d)&&(d.src?m._evalUrl&&m._evalUrl(d.src):m.globalEval((d.text||d.textContent||d.innerHTML||"").replace(qa,"")));i=c=null}return this}}),m.each({appendTo:"append",prependTo:"prepend",insertBefore:"before",insertAfter:"after",replaceAll:"replaceWith"},function(a,b){m.fn[a]=function(a){for(var c,d=0,e=[],g=m(a),h=g.length-1;h>=d;d++)c=d===h?this:this.clone(!0),m(g[d])[b](c),f.apply(e,c.get());return this.pushStack(e)}});var Ca,Da={};function Ea(b,c){var d,e=m(c.createElement(b)).appendTo(c.body),f=a.getDefaultComputedStyle&&(d=a.getDefaultComputedStyle(e[0]))?d.display:m.css(e[0],"display");return e.detach(),f}function Fa(a){var b=y,c=Da[a];return c||(c=Ea(a,b),"none"!==c&&c||(Ca=(Ca||m("